• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct cpuinfo_mock_file filesystem[] = {
2 #if CPUINFO_ARCH_ARM64
3 	{
4 		.path = "/proc/cpuinfo",
5 		.size = 1030,
6 		.content =
7 			"processor\t: 0\n"
8 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
9 			"CPU implementer\t: 0x41\n"
10 			"CPU architecture: 8\n"
11 			"CPU variant\t: 0x0\n"
12 			"CPU part\t: 0xd03\n"
13 			"CPU revision\t: 3\n"
14 			"\n"
15 			"processor\t: 1\n"
16 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
17 			"CPU implementer\t: 0x41\n"
18 			"CPU architecture: 8\n"
19 			"CPU variant\t: 0x0\n"
20 			"CPU part\t: 0xd03\n"
21 			"CPU revision\t: 3\n"
22 			"\n"
23 			"processor\t: 2\n"
24 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
25 			"CPU implementer\t: 0x41\n"
26 			"CPU architecture: 8\n"
27 			"CPU variant\t: 0x0\n"
28 			"CPU part\t: 0xd03\n"
29 			"CPU revision\t: 3\n"
30 			"\n"
31 			"processor\t: 3\n"
32 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
33 			"CPU implementer\t: 0x41\n"
34 			"CPU architecture: 8\n"
35 			"CPU variant\t: 0x0\n"
36 			"CPU part\t: 0xd03\n"
37 			"CPU revision\t: 3\n"
38 			"\n"
39 			"processor\t: 4\n"
40 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
41 			"CPU implementer\t: 0x41\n"
42 			"CPU architecture: 8\n"
43 			"CPU variant\t: 0x1\n"
44 			"CPU part\t: 0xd07\n"
45 			"CPU revision\t: 2\n"
46 			"\n"
47 			"processor\t: 5\n"
48 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
49 			"CPU implementer\t: 0x41\n"
50 			"CPU architecture: 8\n"
51 			"CPU variant\t: 0x1\n"
52 			"CPU part\t: 0xd07\n"
53 			"CPU revision\t: 2\n"
54 			"\n"
55 			"Hardware\t: Qualcomm Technologies, Inc MSM8992\n",
56 	},
57 #elif CPUINFO_ARCH_ARM
58 	{
59 		.path = "/proc/cpuinfo",
60 		.size = 1348,
61 		.content =
62 			"processor\t: 0\n"
63 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm aes pmull sha1 sha2 crc32\n"
64 			"CPU implementer\t: 0x41\n"
65 			"CPU architecture: 8\n"
66 			"CPU variant\t: 0x0\n"
67 			"CPU part\t: 0xd03\n"
68 			"CPU revision\t: 3\n"
69 			"\n"
70 			"processor\t: 1\n"
71 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm aes pmull sha1 sha2 crc32\n"
72 			"CPU implementer\t: 0x41\n"
73 			"CPU architecture: 8\n"
74 			"CPU variant\t: 0x0\n"
75 			"CPU part\t: 0xd03\n"
76 			"CPU revision\t: 3\n"
77 			"\n"
78 			"processor\t: 2\n"
79 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm aes pmull sha1 sha2 crc32\n"
80 			"CPU implementer\t: 0x41\n"
81 			"CPU architecture: 8\n"
82 			"CPU variant\t: 0x0\n"
83 			"CPU part\t: 0xd03\n"
84 			"CPU revision\t: 3\n"
85 			"\n"
86 			"processor\t: 3\n"
87 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm aes pmull sha1 sha2 crc32\n"
88 			"CPU implementer\t: 0x41\n"
89 			"CPU architecture: 8\n"
90 			"CPU variant\t: 0x0\n"
91 			"CPU part\t: 0xd03\n"
92 			"CPU revision\t: 3\n"
93 			"\n"
94 			"processor\t: 4\n"
95 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm aes pmull sha1 sha2 crc32\n"
96 			"CPU implementer\t: 0x41\n"
97 			"CPU architecture: 8\n"
98 			"CPU variant\t: 0x1\n"
99 			"CPU part\t: 0xd07\n"
100 			"CPU revision\t: 2\n"
101 			"\n"
102 			"processor\t: 5\n"
103 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm aes pmull sha1 sha2 crc32\n"
104 			"CPU implementer\t: 0x41\n"
105 			"CPU architecture: 8\n"
106 			"CPU variant\t: 0x1\n"
107 			"CPU part\t: 0xd07\n"
108 			"CPU revision\t: 2\n"
109 			"\n"
110 			"Hardware\t: Qualcomm Technologies, Inc MSM8992\n",
111 	},
112 #endif
113 	{
114 		.path = "/sys/class/kgsl/kgsl-3d0/default_pwrlevel",
115 		.size = 2,
116 		.content = "5\n",
117 	},
118 	{
119 		.path = "/sys/class/kgsl/kgsl-3d0/max_gpuclk",
120 		.size = 10,
121 		.content = "600000000\n",
122 	},
123 	{
124 		.path = "/sys/devices/soc0/accessory_chip",
125 		.size = 2,
126 		.content = "0\n",
127 	},
128 	{
129 		.path = "/sys/devices/soc0/build_id",
130 		.size = 25,
131 		.content = "8992A-ESAAANAZA-40000000\n",
132 	},
133 	{
134 		.path = "/sys/devices/soc0/foundry_id",
135 		.size = 2,
136 		.content = "0\n",
137 	},
138 	{
139 		.path = "/sys/devices/soc0/hw_platform",
140 		.size = 7,
141 		.content = "(null)\n",
142 	},
143 	{
144 		.path = "/sys/devices/soc0/image_crm_version",
145 		.size = 12,
146 		.content = "LGEARND7B14\n",
147 	},
148 	{
149 		.path = "/sys/devices/soc0/image_variant",
150 		.size = 10,
151 		.content = "ESAAANAZA\n",
152 	},
153 	{
154 		.path = "/sys/devices/soc0/image_version",
155 		.size = 21,
156 		.content = "00:BOOT.BF.2.3-00366\n",
157 	},
158 	{
159 		.path = "/sys/devices/soc0/machine",
160 		.size = 11,
161 		.content = "Snapdragon\n",
162 	},
163 	{
164 		.path = "/sys/devices/soc0/platform_subtype",
165 		.size = 8,
166 		.content = "Unknown\n",
167 	},
168 	{
169 		.path = "/sys/devices/soc0/platform_subtype_id",
170 		.size = 2,
171 		.content = "0\n",
172 	},
173 	{
174 		.path = "/sys/devices/soc0/platform_version",
175 		.size = 3,
176 		.content = "11\n",
177 	},
178 	{
179 		.path = "/sys/devices/soc0/pmic_die_revision",
180 		.size = 7,
181 		.content = "131072\n",
182 	},
183 	{
184 		.path = "/sys/devices/soc0/pmic_model",
185 		.size = 6,
186 		.content = "65545\n",
187 	},
188 	{
189 		.path = "/sys/devices/soc0/raw_id",
190 		.size = 5,
191 		.content = "2409\n",
192 	},
193 	{
194 		.path = "/sys/devices/soc0/raw_version",
195 		.size = 2,
196 		.content = "0\n",
197 	},
198 	{
199 		.path = "/sys/devices/soc0/revision",
200 		.size = 4,
201 		.content = "1.0\n",
202 	},
203 	{
204 		.path = "/sys/devices/soc0/select_image",
205 		.size = 2,
206 		.content = "0\n",
207 	},
208 	{
209 		.path = "/sys/devices/soc0/soc_id",
210 		.size = 4,
211 		.content = "251\n",
212 	},
213 	{
214 		.path = "/sys/devices/soc0/vendor",
215 		.size = 9,
216 		.content = "Qualcomm\n",
217 	},
218 	{
219 		.path = "/sys/devices/system/cpu/kernel_max",
220 		.size = 2,
221 		.content = "5\n",
222 	},
223 	{
224 		.path = "/sys/devices/system/cpu/modalias",
225 		.size = 66,
226 		.content = "cpu:type:aarch64:feature:,0000,0001,0002,0003,0004,0005,0006,0007\n",
227 	},
228 	{
229 		.path = "/sys/devices/system/cpu/offline",
230 		.size = 4,
231 		.content = "4-5\n",
232 	},
233 	{
234 		.path = "/sys/devices/system/cpu/online",
235 		.size = 4,
236 		.content = "0-3\n",
237 	},
238 	{
239 		.path = "/sys/devices/system/cpu/possible",
240 		.size = 4,
241 		.content = "0-5\n",
242 	},
243 	{
244 		.path = "/sys/devices/system/cpu/present",
245 		.size = 4,
246 		.content = "0-5\n",
247 	},
248 	{
249 		.path = "/sys/devices/system/cpu/cpufreq/all_time_in_state",
250 		.size = 43,
251 		.content = "freq\t\tcpu0\t\tcpu1\t\tcpu2\t\tcpu3\t\tcpu4\t\tcpu5\t\t\n",
252 	},
253 	{
254 		.path = "/sys/devices/system/cpu/cpufreq/current_in_state",
255 		.size = 882,
256 		.content =
257 			"CPU0:384000=18250 460800=24330 600000=26920 672000=34600 787200=38150 864000=46880 960000=55940 1248000=81740 1440000=105870 \n"
258 			"CPU1:384000=7665 460800=10219 600000=11306 672000=14532 787200=16023 864000=19690 960000=23495 1248000=34331 1440000=44465 \n"
259 			"CPU2:384000=7848 460800=10462 600000=11576 672000=14878 787200=16405 864000=20158 960000=24054 1248000=35148 1440000=45524 \n"
260 			"CPU3:384000=8760 460800=11678 600000=12922 672000=16608 787200=18312 864000=22502 960000=26851 1248000=39235 1440000=50818 \n"
261 			"CPU4:384000=67740 480000=82960 633600=105870 768000=133160 864000=150160 960000=167180 1248000=230040 1344000=261430 1440000=290460 1536000=317200 1632000=352870 1689600=374360 1824000=443880 \n"
262 			"CPU5:384000=49450 480000=60561 633600=77285 768000=97207 864000=109617 960000=122041 1248000=167929 1344000=190844 1440000=212036 1536000=231556 1632000=257595 1689600=273283 1824000=324032 \n",
263 	},
264 	{
265 		.path = "/sys/devices/system/cpu/cpuidle/current_driver",
266 		.size = 9,
267 		.content = "msm_idle\n",
268 	},
269 	{
270 		.path = "/sys/devices/system/cpu/cpuidle/current_governor_ro",
271 		.size = 5,
272 		.content = "null\n",
273 	},
274 	{
275 		.path = "/sys/devices/system/cpu/cpu0/cpuidle/driver/name",
276 		.size = 9,
277 		.content = "msm_idle\n",
278 	},
279 	{
280 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/affected_cpus",
281 		.size = 8,
282 		.content = "0 1 2 3\n",
283 	},
284 	{
285 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq",
286 		.size = 8,
287 		.content = "1440000\n",
288 	},
289 	{
290 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq",
291 		.size = 7,
292 		.content = "384000\n",
293 	},
294 	{
295 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency",
296 		.size = 2,
297 		.content = "0\n",
298 	},
299 	{
300 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/related_cpus",
301 		.size = 8,
302 		.content = "0 1 2 3\n",
303 	},
304 	{
305 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies",
306 		.size = 66,
307 		.content = "384000 460800 600000 672000 787200 864000 960000 1248000 1440000 \n",
308 	},
309 	{
310 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors",
311 		.size = 54,
312 		.content = "interactive ondemand userspace powersave performance \n",
313 	},
314 	{
315 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq",
316 		.size = 8,
317 		.content = "1440000\n",
318 	},
319 	{
320 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver",
321 		.size = 4,
322 		.content = "msm\n",
323 	},
324 	{
325 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor",
326 		.size = 12,
327 		.content = "interactive\n",
328 	},
329 	{
330 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq",
331 		.size = 7,
332 		.content = "384000\n",
333 	},
334 	{
335 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state",
336 		.size = 95,
337 		.content =
338 			"384000 192\n"
339 			"460800 44\n"
340 			"600000 18\n"
341 			"672000 5\n"
342 			"787200 95\n"
343 			"864000 42\n"
344 			"960000 103\n"
345 			"1248000 21\n"
346 			"1440000 4796\n",
347 	},
348 	{
349 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/total_trans",
350 		.size = 3,
351 		.content = "56\n",
352 	},
353 	{
354 		.path = "/sys/devices/system/cpu/cpu0/topology/core_id",
355 		.size = 2,
356 		.content = "0\n",
357 	},
358 	{
359 		.path = "/sys/devices/system/cpu/cpu0/topology/core_siblings",
360 		.size = 3,
361 		.content = "0f\n",
362 	},
363 	{
364 		.path = "/sys/devices/system/cpu/cpu0/topology/core_siblings_list",
365 		.size = 4,
366 		.content = "0-3\n",
367 	},
368 	{
369 		.path = "/sys/devices/system/cpu/cpu0/topology/physical_package_id",
370 		.size = 2,
371 		.content = "0\n",
372 	},
373 	{
374 		.path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings",
375 		.size = 3,
376 		.content = "01\n",
377 	},
378 	{
379 		.path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list",
380 		.size = 2,
381 		.content = "0\n",
382 	},
383 	{
384 		.path = "/sys/devices/system/cpu/cpu1/cpuidle/driver/name",
385 		.size = 9,
386 		.content = "msm_idle\n",
387 	},
388 	{
389 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/affected_cpus",
390 		.size = 8,
391 		.content = "0 1 2 3\n",
392 	},
393 	{
394 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq",
395 		.size = 8,
396 		.content = "1440000\n",
397 	},
398 	{
399 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq",
400 		.size = 7,
401 		.content = "384000\n",
402 	},
403 	{
404 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency",
405 		.size = 2,
406 		.content = "0\n",
407 	},
408 	{
409 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/related_cpus",
410 		.size = 8,
411 		.content = "0 1 2 3\n",
412 	},
413 	{
414 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_frequencies",
415 		.size = 66,
416 		.content = "384000 460800 600000 672000 787200 864000 960000 1248000 1440000 \n",
417 	},
418 	{
419 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors",
420 		.size = 54,
421 		.content = "interactive ondemand userspace powersave performance \n",
422 	},
423 	{
424 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq",
425 		.size = 7,
426 		.content = "384000\n",
427 	},
428 	{
429 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver",
430 		.size = 4,
431 		.content = "msm\n",
432 	},
433 	{
434 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor",
435 		.size = 12,
436 		.content = "interactive\n",
437 	},
438 	{
439 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq",
440 		.size = 7,
441 		.content = "384000\n",
442 	},
443 	{
444 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/time_in_state",
445 		.size = 95,
446 		.content =
447 			"384000 283\n"
448 			"460800 51\n"
449 			"600000 25\n"
450 			"672000 5\n"
451 			"787200 99\n"
452 			"864000 42\n"
453 			"960000 127\n"
454 			"1248000 23\n"
455 			"1440000 4899\n",
456 	},
457 	{
458 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/total_trans",
459 		.size = 3,
460 		.content = "72\n",
461 	},
462 	{
463 		.path = "/sys/devices/system/cpu/cpu1/topology/core_id",
464 		.size = 2,
465 		.content = "1\n",
466 	},
467 	{
468 		.path = "/sys/devices/system/cpu/cpu1/topology/core_siblings",
469 		.size = 3,
470 		.content = "0f\n",
471 	},
472 	{
473 		.path = "/sys/devices/system/cpu/cpu1/topology/core_siblings_list",
474 		.size = 4,
475 		.content = "0-3\n",
476 	},
477 	{
478 		.path = "/sys/devices/system/cpu/cpu1/topology/physical_package_id",
479 		.size = 2,
480 		.content = "0\n",
481 	},
482 	{
483 		.path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings",
484 		.size = 3,
485 		.content = "02\n",
486 	},
487 	{
488 		.path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list",
489 		.size = 2,
490 		.content = "1\n",
491 	},
492 	{
493 		.path = "/sys/devices/system/cpu/cpu2/cpuidle/driver/name",
494 		.size = 9,
495 		.content = "msm_idle\n",
496 	},
497 	{
498 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/affected_cpus",
499 		.size = 8,
500 		.content = "0 1 2 3\n",
501 	},
502 	{
503 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq",
504 		.size = 8,
505 		.content = "1440000\n",
506 	},
507 	{
508 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_min_freq",
509 		.size = 7,
510 		.content = "384000\n",
511 	},
512 	{
513 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency",
514 		.size = 2,
515 		.content = "0\n",
516 	},
517 	{
518 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/related_cpus",
519 		.size = 8,
520 		.content = "0 1 2 3\n",
521 	},
522 	{
523 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_frequencies",
524 		.size = 66,
525 		.content = "384000 460800 600000 672000 787200 864000 960000 1248000 1440000 \n",
526 	},
527 	{
528 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors",
529 		.size = 54,
530 		.content = "interactive ondemand userspace powersave performance \n",
531 	},
532 	{
533 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq",
534 		.size = 7,
535 		.content = "384000\n",
536 	},
537 	{
538 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_driver",
539 		.size = 4,
540 		.content = "msm\n",
541 	},
542 	{
543 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_governor",
544 		.size = 12,
545 		.content = "interactive\n",
546 	},
547 	{
548 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq",
549 		.size = 7,
550 		.content = "384000\n",
551 	},
552 	{
553 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/time_in_state",
554 		.size = 95,
555 		.content =
556 			"384000 492\n"
557 			"460800 59\n"
558 			"600000 34\n"
559 			"672000 5\n"
560 			"787200 99\n"
561 			"864000 42\n"
562 			"960000 142\n"
563 			"1248000 32\n"
564 			"1440000 4899\n",
565 	},
566 	{
567 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/total_trans",
568 		.size = 3,
569 		.content = "86\n",
570 	},
571 	{
572 		.path = "/sys/devices/system/cpu/cpu2/topology/core_id",
573 		.size = 2,
574 		.content = "2\n",
575 	},
576 	{
577 		.path = "/sys/devices/system/cpu/cpu2/topology/core_siblings",
578 		.size = 3,
579 		.content = "0f\n",
580 	},
581 	{
582 		.path = "/sys/devices/system/cpu/cpu2/topology/core_siblings_list",
583 		.size = 4,
584 		.content = "0-3\n",
585 	},
586 	{
587 		.path = "/sys/devices/system/cpu/cpu2/topology/physical_package_id",
588 		.size = 2,
589 		.content = "0\n",
590 	},
591 	{
592 		.path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings",
593 		.size = 3,
594 		.content = "04\n",
595 	},
596 	{
597 		.path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list",
598 		.size = 2,
599 		.content = "2\n",
600 	},
601 	{
602 		.path = "/sys/devices/system/cpu/cpu3/cpuidle/driver/name",
603 		.size = 9,
604 		.content = "msm_idle\n",
605 	},
606 	{
607 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/affected_cpus",
608 		.size = 8,
609 		.content = "0 1 2 3\n",
610 	},
611 	{
612 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq",
613 		.size = 8,
614 		.content = "1440000\n",
615 	},
616 	{
617 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_min_freq",
618 		.size = 7,
619 		.content = "384000\n",
620 	},
621 	{
622 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency",
623 		.size = 2,
624 		.content = "0\n",
625 	},
626 	{
627 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/related_cpus",
628 		.size = 8,
629 		.content = "0 1 2 3\n",
630 	},
631 	{
632 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_frequencies",
633 		.size = 66,
634 		.content = "384000 460800 600000 672000 787200 864000 960000 1248000 1440000 \n",
635 	},
636 	{
637 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors",
638 		.size = 54,
639 		.content = "interactive ondemand userspace powersave performance \n",
640 	},
641 	{
642 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq",
643 		.size = 7,
644 		.content = "384000\n",
645 	},
646 	{
647 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_driver",
648 		.size = 4,
649 		.content = "msm\n",
650 	},
651 	{
652 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_governor",
653 		.size = 12,
654 		.content = "interactive\n",
655 	},
656 	{
657 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq",
658 		.size = 7,
659 		.content = "384000\n",
660 	},
661 	{
662 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/time_in_state",
663 		.size = 95,
664 		.content =
665 			"384000 703\n"
666 			"460800 76\n"
667 			"600000 36\n"
668 			"672000 5\n"
669 			"787200 99\n"
670 			"864000 42\n"
671 			"960000 157\n"
672 			"1248000 40\n"
673 			"1440000 4922\n",
674 	},
675 	{
676 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/total_trans",
677 		.size = 4,
678 		.content = "102\n",
679 	},
680 	{
681 		.path = "/sys/devices/system/cpu/cpu3/topology/core_id",
682 		.size = 2,
683 		.content = "3\n",
684 	},
685 	{
686 		.path = "/sys/devices/system/cpu/cpu3/topology/core_siblings",
687 		.size = 3,
688 		.content = "0f\n",
689 	},
690 	{
691 		.path = "/sys/devices/system/cpu/cpu3/topology/core_siblings_list",
692 		.size = 4,
693 		.content = "0-3\n",
694 	},
695 	{
696 		.path = "/sys/devices/system/cpu/cpu3/topology/physical_package_id",
697 		.size = 2,
698 		.content = "0\n",
699 	},
700 	{
701 		.path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings",
702 		.size = 3,
703 		.content = "08\n",
704 	},
705 	{
706 		.path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list",
707 		.size = 2,
708 		.content = "3\n",
709 	},
710 	{
711 		.path = "/sys/devices/system/cpu/cpu4/cpuidle/driver/name",
712 		.size = 9,
713 		.content = "msm_idle\n",
714 	},
715 	{
716 		.path = "/sys/devices/system/cpu/cpu5/cpuidle/driver/name",
717 		.size = 9,
718 		.content = "msm_idle\n",
719 	},
720 	{ NULL },
721 };
722 #ifdef __ANDROID__
723 struct cpuinfo_mock_property properties[] = {
724 	{
725 		.key = "af.fast_track_multiplier",
726 		.value = "1",
727 	},
728 	{
729 		.key = "audio_hal.period_size",
730 		.value = "192",
731 	},
732 	{
733 		.key = "dalvik.vm.appimageformat",
734 		.value = "lz4",
735 	},
736 	{
737 		.key = "dalvik.vm.boot-dex2oat-threads",
738 		.value = "4",
739 	},
740 	{
741 		.key = "dalvik.vm.dex2oat-Xms",
742 		.value = "64m",
743 	},
744 	{
745 		.key = "dalvik.vm.dex2oat-Xmx",
746 		.value = "512m",
747 	},
748 	{
749 		.key = "dalvik.vm.dex2oat-threads",
750 		.value = "4",
751 	},
752 	{
753 		.key = "dalvik.vm.dexopt.secondary",
754 		.value = "true",
755 	},
756 	{
757 		.key = "dalvik.vm.heapgrowthlimit",
758 		.value = "192m",
759 	},
760 	{
761 		.key = "dalvik.vm.heapmaxfree",
762 		.value = "8m",
763 	},
764 	{
765 		.key = "dalvik.vm.heapminfree",
766 		.value = "512k",
767 	},
768 	{
769 		.key = "dalvik.vm.heapsize",
770 		.value = "512m",
771 	},
772 	{
773 		.key = "dalvik.vm.heapstartsize",
774 		.value = "8m",
775 	},
776 	{
777 		.key = "dalvik.vm.heaptargetutilization",
778 		.value = "0.75",
779 	},
780 	{
781 		.key = "dalvik.vm.image-dex2oat-Xms",
782 		.value = "64m",
783 	},
784 	{
785 		.key = "dalvik.vm.image-dex2oat-Xmx",
786 		.value = "64m",
787 	},
788 	{
789 		.key = "dalvik.vm.image-dex2oat-threads",
790 		.value = "4",
791 	},
792 	{
793 		.key = "dalvik.vm.isa.arm.features",
794 		.value = "default",
795 	},
796 	{
797 		.key = "dalvik.vm.isa.arm.variant",
798 		.value = "cortex-a53.a57",
799 	},
800 	{
801 		.key = "dalvik.vm.isa.arm64.features",
802 		.value = "default",
803 	},
804 	{
805 		.key = "dalvik.vm.isa.arm64.variant",
806 		.value = "cortex-a53",
807 	},
808 	{
809 		.key = "dalvik.vm.stack-trace-file",
810 		.value = "/data/anr/traces.txt",
811 	},
812 	{
813 		.key = "dalvik.vm.usejit",
814 		.value = "true",
815 	},
816 	{
817 		.key = "dalvik.vm.usejitprofiles",
818 		.value = "true",
819 	},
820 	{
821 		.key = "debug.atrace.tags.enableflags",
822 		.value = "0",
823 	},
824 	{
825 		.key = "debug.force_rtl",
826 		.value = "0",
827 	},
828 	{
829 		.key = "dev.bootcomplete",
830 		.value = "1",
831 	},
832 	{
833 		.key = "drm.service.enabled",
834 		.value = "true",
835 	},
836 	{
837 		.key = "gsm.current.phone-type",
838 		.value = "2",
839 	},
840 	{
841 		.key = "gsm.network.type",
842 		.value = "Unknown",
843 	},
844 	{
845 		.key = "gsm.operator.alpha",
846 		.value = "",
847 	},
848 	{
849 		.key = "gsm.operator.iso-country",
850 		.value = "",
851 	},
852 	{
853 		.key = "gsm.operator.isroaming",
854 		.value = "false",
855 	},
856 	{
857 		.key = "gsm.operator.numeric",
858 		.value = "00000",
859 	},
860 	{
861 		.key = "gsm.sim.operator.alpha",
862 		.value = "",
863 	},
864 	{
865 		.key = "gsm.sim.operator.iso-country",
866 		.value = "",
867 	},
868 	{
869 		.key = "gsm.sim.operator.numeric",
870 		.value = "",
871 	},
872 	{
873 		.key = "gsm.sim.state",
874 		.value = "ABSENT",
875 	},
876 	{
877 		.key = "gsm.version.baseband",
878 		.value = "M8994F-2.6.39.3.03",
879 	},
880 	{
881 		.key = "gsm.version.ril-impl",
882 		.value = "Qualcomm RIL 1.0",
883 	},
884 	{
885 		.key = "hwservicemanager.ready",
886 		.value = "true",
887 	},
888 	{
889 		.key = "init.svc.adbd",
890 		.value = "running",
891 	},
892 	{
893 		.key = "init.svc.atfwd",
894 		.value = "running",
895 	},
896 	{
897 		.key = "init.svc.audioserver",
898 		.value = "running",
899 	},
900 	{
901 		.key = "init.svc.bootanim",
902 		.value = "stopped",
903 	},
904 	{
905 		.key = "init.svc.bullhead-sh",
906 		.value = "stopped",
907 	},
908 	{
909 		.key = "init.svc.cameraserver",
910 		.value = "running",
911 	},
912 	{
913 		.key = "init.svc.cnd",
914 		.value = "running",
915 	},
916 	{
917 		.key = "init.svc.cnss-daemon",
918 		.value = "running",
919 	},
920 	{
921 		.key = "init.svc.configstore-hal-1-0",
922 		.value = "running",
923 	},
924 	{
925 		.key = "init.svc.devstart_sh",
926 		.value = "stopped",
927 	},
928 	{
929 		.key = "init.svc.drm",
930 		.value = "running",
931 	},
932 	{
933 		.key = "init.svc.dumpstate-1-0",
934 		.value = "running",
935 	},
936 	{
937 		.key = "init.svc.flash-nanohub-fw",
938 		.value = "stopped",
939 	},
940 	{
941 		.key = "init.svc.flash_recovery",
942 		.value = "stopped",
943 	},
944 	{
945 		.key = "init.svc.fps_hal",
946 		.value = "running",
947 	},
948 	{
949 		.key = "init.svc.gatekeeperd",
950 		.value = "running",
951 	},
952 	{
953 		.key = "init.svc.gralloc-2-0",
954 		.value = "running",
955 	},
956 	{
957 		.key = "init.svc.healthd",
958 		.value = "running",
959 	},
960 	{
961 		.key = "init.svc.hidl_memory",
962 		.value = "running",
963 	},
964 	{
965 		.key = "init.svc.hostapd",
966 		.value = "stopped",
967 	},
968 	{
969 		.key = "init.svc.hwservicemanager",
970 		.value = "running",
971 	},
972 	{
973 		.key = "init.svc.imsdatadaemon",
974 		.value = "running",
975 	},
976 	{
977 		.key = "init.svc.imsqmidaemon",
978 		.value = "running",
979 	},
980 	{
981 		.key = "init.svc.installd",
982 		.value = "running",
983 	},
984 	{
985 		.key = "init.svc.irsc_util",
986 		.value = "stopped",
987 	},
988 	{
989 		.key = "init.svc.keystore",
990 		.value = "running",
991 	},
992 	{
993 		.key = "init.svc.lmkd",
994 		.value = "running",
995 	},
996 	{
997 		.key = "init.svc.loc_launcher",
998 		.value = "running",
999 	},
1000 	{
1001 		.key = "init.svc.logd",
1002 		.value = "running",
1003 	},
1004 	{
1005 		.key = "init.svc.logd-reinit",
1006 		.value = "stopped",
1007 	},
1008 	{
1009 		.key = "init.svc.media",
1010 		.value = "running",
1011 	},
1012 	{
1013 		.key = "init.svc.mediacodec",
1014 		.value = "running",
1015 	},
1016 	{
1017 		.key = "init.svc.mediadrm",
1018 		.value = "running",
1019 	},
1020 	{
1021 		.key = "init.svc.mediaextractor",
1022 		.value = "running",
1023 	},
1024 	{
1025 		.key = "init.svc.mediametrics",
1026 		.value = "running",
1027 	},
1028 	{
1029 		.key = "init.svc.msm_irqbalance",
1030 		.value = "running",
1031 	},
1032 	{
1033 		.key = "init.svc.netd",
1034 		.value = "running",
1035 	},
1036 	{
1037 		.key = "init.svc.netmgrd",
1038 		.value = "running",
1039 	},
1040 	{
1041 		.key = "init.svc.per_mgr",
1042 		.value = "running",
1043 	},
1044 	{
1045 		.key = "init.svc.per_proxy",
1046 		.value = "running",
1047 	},
1048 	{
1049 		.key = "init.svc.perfd",
1050 		.value = "running",
1051 	},
1052 	{
1053 		.key = "init.svc.qcamerasvr",
1054 		.value = "running",
1055 	},
1056 	{
1057 		.key = "init.svc.qmuxd",
1058 		.value = "running",
1059 	},
1060 	{
1061 		.key = "init.svc.qseecomd",
1062 		.value = "running",
1063 	},
1064 	{
1065 		.key = "init.svc.qti",
1066 		.value = "running",
1067 	},
1068 	{
1069 		.key = "init.svc.ril-daemon",
1070 		.value = "running",
1071 	},
1072 	{
1073 		.key = "init.svc.rmt_storage",
1074 		.value = "running",
1075 	},
1076 	{
1077 		.key = "init.svc.servicemanager",
1078 		.value = "running",
1079 	},
1080 	{
1081 		.key = "init.svc.start_hci_filter",
1082 		.value = "running",
1083 	},
1084 	{
1085 		.key = "init.svc.storaged",
1086 		.value = "running",
1087 	},
1088 	{
1089 		.key = "init.svc.surfaceflinger",
1090 		.value = "running",
1091 	},
1092 	{
1093 		.key = "init.svc.thermal-engine",
1094 		.value = "running",
1095 	},
1096 	{
1097 		.key = "init.svc.time_daemon",
1098 		.value = "running",
1099 	},
1100 	{
1101 		.key = "init.svc.tombstoned",
1102 		.value = "running",
1103 	},
1104 	{
1105 		.key = "init.svc.ueventd",
1106 		.value = "running",
1107 	},
1108 	{
1109 		.key = "init.svc.usb-hal-1-0",
1110 		.value = "running",
1111 	},
1112 	{
1113 		.key = "init.svc.vndservicemanager",
1114 		.value = "running",
1115 	},
1116 	{
1117 		.key = "init.svc.vold",
1118 		.value = "running",
1119 	},
1120 	{
1121 		.key = "init.svc.webview_zygote32",
1122 		.value = "running",
1123 	},
1124 	{
1125 		.key = "init.svc.wifi_hal_legacy",
1126 		.value = "running",
1127 	},
1128 	{
1129 		.key = "init.svc.wificond",
1130 		.value = "running",
1131 	},
1132 	{
1133 		.key = "init.svc.wpa_supplicant",
1134 		.value = "running",
1135 	},
1136 	{
1137 		.key = "init.svc.zygote",
1138 		.value = "running",
1139 	},
1140 	{
1141 		.key = "init.svc.zygote_secondary",
1142 		.value = "running",
1143 	},
1144 	{
1145 		.key = "keyguard.no_require_sim",
1146 		.value = "true",
1147 	},
1148 	{
1149 		.key = "media.aac_51_output_enabled",
1150 		.value = "true",
1151 	},
1152 	{
1153 		.key = "media.recorder.show_manufacturer_and_model",
1154 		.value = "true",
1155 	},
1156 	{
1157 		.key = "net.bt.name",
1158 		.value = "Android",
1159 	},
1160 	{
1161 		.key = "net.lte.ims.data.enabled",
1162 		.value = "true",
1163 	},
1164 	{
1165 		.key = "net.qtaguid_enabled",
1166 		.value = "1",
1167 	},
1168 	{
1169 		.key = "net.tcp.default_init_rwnd",
1170 		.value = "60",
1171 	},
1172 	{
1173 		.key = "partition.system.verified",
1174 		.value = "2",
1175 	},
1176 	{
1177 		.key = "partition.vendor.verified",
1178 		.value = "2",
1179 	},
1180 	{
1181 		.key = "persist.audio.fluence.speaker",
1182 		.value = "true",
1183 	},
1184 	{
1185 		.key = "persist.audio.fluence.voicecall",
1186 		.value = "true",
1187 	},
1188 	{
1189 		.key = "persist.audio.fluence.voicecomm",
1190 		.value = "true",
1191 	},
1192 	{
1193 		.key = "persist.audio.fluence.voicerec",
1194 		.value = "false",
1195 	},
1196 	{
1197 		.key = "persist.camera.tnr.preview",
1198 		.value = "0",
1199 	},
1200 	{
1201 		.key = "persist.camera.tnr.video",
1202 		.value = "0",
1203 	},
1204 	{
1205 		.key = "persist.data.iwlan.enable",
1206 		.value = "true",
1207 	},
1208 	{
1209 		.key = "persist.hwc.mdpcomp.enable",
1210 		.value = "true",
1211 	},
1212 	{
1213 		.key = "persist.media.treble_omx",
1214 		.value = "false",
1215 	},
1216 	{
1217 		.key = "persist.qcril.disable_retry",
1218 		.value = "true",
1219 	},
1220 	{
1221 		.key = "persist.radio.adb_log_on",
1222 		.value = "0",
1223 	},
1224 	{
1225 		.key = "persist.radio.always_send_plmn",
1226 		.value = "true",
1227 	},
1228 	{
1229 		.key = "persist.radio.apm_sim_not_pwdn",
1230 		.value = "1",
1231 	},
1232 	{
1233 		.key = "persist.radio.custom_ecc",
1234 		.value = "1",
1235 	},
1236 	{
1237 		.key = "persist.radio.data_con_rprt",
1238 		.value = "true",
1239 	},
1240 	{
1241 		.key = "persist.radio.data_no_toggle",
1242 		.value = "1",
1243 	},
1244 	{
1245 		.key = "persist.radio.eons.enabled",
1246 		.value = "false",
1247 	},
1248 	{
1249 		.key = "persist.radio.eri64_as_home",
1250 		.value = "1",
1251 	},
1252 	{
1253 		.key = "persist.radio.mode_pref_nv10",
1254 		.value = "1",
1255 	},
1256 	{
1257 		.key = "persist.radio.nitz_lons_0_0",
1258 		.value = "AT&T",
1259 	},
1260 	{
1261 		.key = "persist.radio.nitz_lons_1_0",
1262 		.value = "",
1263 	},
1264 	{
1265 		.key = "persist.radio.nitz_lons_2_0",
1266 		.value = "",
1267 	},
1268 	{
1269 		.key = "persist.radio.nitz_lons_3_0",
1270 		.value = "",
1271 	},
1272 	{
1273 		.key = "persist.radio.nitz_plmn_0",
1274 		.value = "310 410",
1275 	},
1276 	{
1277 		.key = "persist.radio.nitz_sons_0_0",
1278 		.value = "AT&T",
1279 	},
1280 	{
1281 		.key = "persist.radio.nitz_sons_1_0",
1282 		.value = "",
1283 	},
1284 	{
1285 		.key = "persist.radio.nitz_sons_2_0",
1286 		.value = "",
1287 	},
1288 	{
1289 		.key = "persist.radio.nitz_sons_3_0",
1290 		.value = "",
1291 	},
1292 	{
1293 		.key = "persist.radio.process_sups_ind",
1294 		.value = "1",
1295 	},
1296 	{
1297 		.key = "persist.radio.redir_party_num",
1298 		.value = "0",
1299 	},
1300 	{
1301 		.key = "persist.radio.ril_payload_on",
1302 		.value = "0",
1303 	},
1304 	{
1305 		.key = "persist.radio.snapshot_enabled",
1306 		.value = "1",
1307 	},
1308 	{
1309 		.key = "persist.radio.snapshot_timer",
1310 		.value = "10",
1311 	},
1312 	{
1313 		.key = "persist.radio.use_cc_names",
1314 		.value = "true",
1315 	},
1316 	{
1317 		.key = "persist.speaker.prot.enable",
1318 		.value = "true",
1319 	},
1320 	{
1321 		.key = "persist.sys.dalvik.vm.lib.2",
1322 		.value = "libart.so",
1323 	},
1324 	{
1325 		.key = "persist.sys.gps.lpp",
1326 		.value = "",
1327 	},
1328 	{
1329 		.key = "persist.sys.locale",
1330 		.value = "en-US",
1331 	},
1332 	{
1333 		.key = "persist.sys.profiler_ms",
1334 		.value = "0",
1335 	},
1336 	{
1337 		.key = "persist.sys.timezone",
1338 		.value = "America/Los_Angeles",
1339 	},
1340 	{
1341 		.key = "persist.sys.usb.config",
1342 		.value = "adb",
1343 	},
1344 	{
1345 		.key = "persist.sys.webview.vmsize",
1346 		.value = "112887376",
1347 	},
1348 	{
1349 		.key = "pm.dexopt.ab-ota",
1350 		.value = "speed-profile",
1351 	},
1352 	{
1353 		.key = "pm.dexopt.bg-dexopt",
1354 		.value = "speed-profile",
1355 	},
1356 	{
1357 		.key = "pm.dexopt.boot",
1358 		.value = "verify",
1359 	},
1360 	{
1361 		.key = "pm.dexopt.first-boot",
1362 		.value = "quicken",
1363 	},
1364 	{
1365 		.key = "pm.dexopt.install",
1366 		.value = "quicken",
1367 	},
1368 	{
1369 		.key = "qcom.bluetooth.soc",
1370 		.value = "rome",
1371 	},
1372 	{
1373 		.key = "ril.ecclist",
1374 		.value = "911,*911,#911,112,000,08,110,999,118,119,111,113,117,122,125",
1375 	},
1376 	{
1377 		.key = "ril.nosim.ecc_list_1",
1378 		.value = "111,113,117,122,125",
1379 	},
1380 	{
1381 		.key = "ril.nosim.ecc_list_count",
1382 		.value = "1",
1383 	},
1384 	{
1385 		.key = "ril.qcril_pre_init_lock_held",
1386 		.value = "0",
1387 	},
1388 	{
1389 		.key = "rild.libpath",
1390 		.value = "/vendor/lib64/libril-qc-qmi-1.so",
1391 	},
1392 	{
1393 		.key = "ro.adb.secure",
1394 		.value = "1",
1395 	},
1396 	{
1397 		.key = "ro.allow.mock.location",
1398 		.value = "0",
1399 	},
1400 	{
1401 		.key = "ro.atrace.core.services",
1402 		.value = "com.google.android.gms,com.google.android.gms.ui,com.google.android.gms.persistent",
1403 	},
1404 	{
1405 		.key = "ro.audio.flinger_standbytime_ms",
1406 		.value = "300",
1407 	},
1408 	{
1409 		.key = "ro.baseband",
1410 		.value = "msm",
1411 	},
1412 	{
1413 		.key = "ro.board.platform",
1414 		.value = "msm8992",
1415 	},
1416 	{
1417 		.key = "ro.boot.authorized_kernel",
1418 		.value = "true",
1419 	},
1420 	{
1421 		.key = "ro.boot.baseband",
1422 		.value = "msm",
1423 	},
1424 	{
1425 		.key = "ro.boot.bootloader",
1426 		.value = "BHZ21c",
1427 	},
1428 	{
1429 		.key = "ro.boot.bootreason",
1430 		.value = "oem_powerkey",
1431 	},
1432 	{
1433 		.key = "ro.boot.dlcomplete",
1434 		.value = "0",
1435 	},
1436 	{
1437 		.key = "ro.boot.emmc",
1438 		.value = "true",
1439 	},
1440 	{
1441 		.key = "ro.boot.flash.locked",
1442 		.value = "1",
1443 	},
1444 	{
1445 		.key = "ro.boot.hardware",
1446 		.value = "bullhead",
1447 	},
1448 	{
1449 		.key = "ro.boot.hardware.sku",
1450 		.value = "LGH790",
1451 	},
1452 	{
1453 		.key = "ro.boot.revision",
1454 		.value = "rev_1.0",
1455 	},
1456 	{
1457 		.key = "ro.boot.serialno",
1458 		.value = "0105b6567ac4ced5",
1459 	},
1460 	{
1461 		.key = "ro.boot.verifiedbootstate",
1462 		.value = "green",
1463 	},
1464 	{
1465 		.key = "ro.boot.veritymode",
1466 		.value = "enforcing",
1467 	},
1468 	{
1469 		.key = "ro.boot.wificountrycode",
1470 		.value = "US",
1471 	},
1472 	{
1473 		.key = "ro.bootimage.build.date",
1474 		.value = "Mon Aug 28 18:57:48 UTC 2017",
1475 	},
1476 	{
1477 		.key = "ro.bootimage.build.date.utc",
1478 		.value = "1503946668",
1479 	},
1480 	{
1481 		.key = "ro.bootimage.build.fingerprint",
1482 		.value = "google/bullhead/bullhead:8.0.0/OPR4.170623.009/4302492:user/release-keys",
1483 	},
1484 	{
1485 		.key = "ro.bootloader",
1486 		.value = "BHZ21c",
1487 	},
1488 	{
1489 		.key = "ro.bootmode",
1490 		.value = "unknown",
1491 	},
1492 	{
1493 		.key = "ro.build.characteristics",
1494 		.value = "nosdcard",
1495 	},
1496 	{
1497 		.key = "ro.build.date",
1498 		.value = "Mon Aug 28 18:57:48 UTC 2017",
1499 	},
1500 	{
1501 		.key = "ro.build.date.utc",
1502 		.value = "1503946668",
1503 	},
1504 	{
1505 		.key = "ro.build.description",
1506 		.value = "bullhead-user 8.0.0 OPR4.170623.009 4302492 release-keys",
1507 	},
1508 	{
1509 		.key = "ro.build.display.id",
1510 		.value = "OPR4.170623.009",
1511 	},
1512 	{
1513 		.key = "ro.build.expect.baseband",
1514 		.value = "M8994F-2.6.39.3.03",
1515 	},
1516 	{
1517 		.key = "ro.build.expect.bootloader",
1518 		.value = "BHZ21c",
1519 	},
1520 	{
1521 		.key = "ro.build.fingerprint",
1522 		.value = "google/bullhead/bullhead:8.0.0/OPR4.170623.009/4302492:user/release-keys",
1523 	},
1524 	{
1525 		.key = "ro.build.flavor",
1526 		.value = "bullhead-user",
1527 	},
1528 	{
1529 		.key = "ro.build.host",
1530 		.value = "wpiu13.hot.corp.google.com",
1531 	},
1532 	{
1533 		.key = "ro.build.id",
1534 		.value = "OPR4.170623.009",
1535 	},
1536 	{
1537 		.key = "ro.build.product",
1538 		.value = "bullhead",
1539 	},
1540 	{
1541 		.key = "ro.build.tags",
1542 		.value = "release-keys",
1543 	},
1544 	{
1545 		.key = "ro.build.type",
1546 		.value = "user",
1547 	},
1548 	{
1549 		.key = "ro.build.user",
1550 		.value = "android-build",
1551 	},
1552 	{
1553 		.key = "ro.build.version.all_codenames",
1554 		.value = "REL",
1555 	},
1556 	{
1557 		.key = "ro.build.version.base_os",
1558 		.value = "",
1559 	},
1560 	{
1561 		.key = "ro.build.version.codename",
1562 		.value = "REL",
1563 	},
1564 	{
1565 		.key = "ro.build.version.incremental",
1566 		.value = "4302492",
1567 	},
1568 	{
1569 		.key = "ro.build.version.preview_sdk",
1570 		.value = "0",
1571 	},
1572 	{
1573 		.key = "ro.build.version.release",
1574 		.value = "8.0.0",
1575 	},
1576 	{
1577 		.key = "ro.build.version.sdk",
1578 		.value = "26",
1579 	},
1580 	{
1581 		.key = "ro.build.version.security_patch",
1582 		.value = "2017-10-05",
1583 	},
1584 	{
1585 		.key = "ro.camera.notify_nfc",
1586 		.value = "1",
1587 	},
1588 	{
1589 		.key = "ro.carrier",
1590 		.value = "unknown",
1591 	},
1592 	{
1593 		.key = "ro.com.android.dataroaming",
1594 		.value = "false",
1595 	},
1596 	{
1597 		.key = "ro.com.android.prov_mobiledata",
1598 		.value = "false",
1599 	},
1600 	{
1601 		.key = "ro.com.google.clientidbase",
1602 		.value = "android-google",
1603 	},
1604 	{
1605 		.key = "ro.config.alarm_alert",
1606 		.value = "Oxygen.ogg",
1607 	},
1608 	{
1609 		.key = "ro.config.notification_sound",
1610 		.value = "Tethys.ogg",
1611 	},
1612 	{
1613 		.key = "ro.config.ringtone",
1614 		.value = "Titania.ogg",
1615 	},
1616 	{
1617 		.key = "ro.config.vc_call_vol_steps",
1618 		.value = "7",
1619 	},
1620 	{
1621 		.key = "ro.control_privapp_permissions",
1622 		.value = "enforce",
1623 	},
1624 	{
1625 		.key = "ro.crypto.fs_crypto_blkdev",
1626 		.value = "/dev/block/dm-2",
1627 	},
1628 	{
1629 		.key = "ro.crypto.state",
1630 		.value = "encrypted",
1631 	},
1632 	{
1633 		.key = "ro.crypto.type",
1634 		.value = "block",
1635 	},
1636 	{
1637 		.key = "ro.dalvik.vm.native.bridge",
1638 		.value = "0",
1639 	},
1640 	{
1641 		.key = "ro.debuggable",
1642 		.value = "0",
1643 	},
1644 	{
1645 		.key = "ro.device_owner",
1646 		.value = "false",
1647 	},
1648 	{
1649 		.key = "ro.error.receiver.system.apps",
1650 		.value = "com.google.android.gms",
1651 	},
1652 	{
1653 		.key = "ro.expect.recovery_id",
1654 		.value = "0xd24d616d72d2e4db78f2d45a9fddcdb17d50e3fd000000000000000000000000",
1655 	},
1656 	{
1657 		.key = "ro.facelock.black_timeout",
1658 		.value = "700",
1659 	},
1660 	{
1661 		.key = "ro.facelock.det_timeout",
1662 		.value = "2500",
1663 	},
1664 	{
1665 		.key = "ro.facelock.est_max_time",
1666 		.value = "600",
1667 	},
1668 	{
1669 		.key = "ro.facelock.rec_timeout",
1670 		.value = "3500",
1671 	},
1672 	{
1673 		.key = "ro.frp.pst",
1674 		.value = "/dev/block/platform/soc.0/f9824900.sdhci/by-name/persistent",
1675 	},
1676 	{
1677 		.key = "ro.hardware",
1678 		.value = "bullhead",
1679 	},
1680 	{
1681 		.key = "ro.hwui.drop_shadow_cache_size",
1682 		.value = "6",
1683 	},
1684 	{
1685 		.key = "ro.hwui.gradient_cache_size",
1686 		.value = "1",
1687 	},
1688 	{
1689 		.key = "ro.hwui.layer_cache_size",
1690 		.value = "32",
1691 	},
1692 	{
1693 		.key = "ro.hwui.path_cache_size",
1694 		.value = "16",
1695 	},
1696 	{
1697 		.key = "ro.hwui.r_buffer_cache_size",
1698 		.value = "8",
1699 	},
1700 	{
1701 		.key = "ro.hwui.text_large_cache_height",
1702 		.value = "1024",
1703 	},
1704 	{
1705 		.key = "ro.hwui.text_large_cache_width",
1706 		.value = "2048",
1707 	},
1708 	{
1709 		.key = "ro.hwui.text_small_cache_height",
1710 		.value = "1024",
1711 	},
1712 	{
1713 		.key = "ro.hwui.text_small_cache_width",
1714 		.value = "1024",
1715 	},
1716 	{
1717 		.key = "ro.hwui.texture_cache_flushrate",
1718 		.value = "0.4",
1719 	},
1720 	{
1721 		.key = "ro.hwui.texture_cache_size",
1722 		.value = "56",
1723 	},
1724 	{
1725 		.key = "ro.min_freq_0",
1726 		.value = "384000",
1727 	},
1728 	{
1729 		.key = "ro.min_freq_4",
1730 		.value = "384000",
1731 	},
1732 	{
1733 		.key = "ro.oem_unlock_supported",
1734 		.value = "1",
1735 	},
1736 	{
1737 		.key = "ro.opengles.version",
1738 		.value = "196610",
1739 	},
1740 	{
1741 		.key = "ro.product.board",
1742 		.value = "bullhead",
1743 	},
1744 	{
1745 		.key = "ro.product.brand",
1746 		.value = "google",
1747 	},
1748 	{
1749 		.key = "ro.product.cpu.abi",
1750 		.value = "arm64-v8a",
1751 	},
1752 	{
1753 		.key = "ro.product.cpu.abilist",
1754 		.value = "arm64-v8a,armeabi-v7a,armeabi",
1755 	},
1756 	{
1757 		.key = "ro.product.cpu.abilist32",
1758 		.value = "armeabi-v7a,armeabi",
1759 	},
1760 	{
1761 		.key = "ro.product.cpu.abilist64",
1762 		.value = "arm64-v8a",
1763 	},
1764 	{
1765 		.key = "ro.product.device",
1766 		.value = "bullhead",
1767 	},
1768 	{
1769 		.key = "ro.product.first_api_level",
1770 		.value = "23",
1771 	},
1772 	{
1773 		.key = "ro.product.locale",
1774 		.value = "en-US",
1775 	},
1776 	{
1777 		.key = "ro.product.manufacturer",
1778 		.value = "LGE",
1779 	},
1780 	{
1781 		.key = "ro.product.model",
1782 		.value = "Nexus 5X",
1783 	},
1784 	{
1785 		.key = "ro.product.name",
1786 		.value = "bullhead",
1787 	},
1788 	{
1789 		.key = "ro.property_service.version",
1790 		.value = "2",
1791 	},
1792 	{
1793 		.key = "ro.qc.sdk.audio.fluencetype",
1794 		.value = "fluencepro",
1795 	},
1796 	{
1797 		.key = "ro.recovery_id",
1798 		.value = "0x952a5168adfd47b78c6ee8f3ea86ebba59d843cb000000000000000000000000",
1799 	},
1800 	{
1801 		.key = "ro.retaildemo.video_path",
1802 		.value = "/data/preloads/demo/retail_demo.mp4",
1803 	},
1804 	{
1805 		.key = "ro.revision",
1806 		.value = "rev_1.0",
1807 	},
1808 	{
1809 		.key = "ro.ril.svdo",
1810 		.value = "false",
1811 	},
1812 	{
1813 		.key = "ro.ril.svlte1x",
1814 		.value = "false",
1815 	},
1816 	{
1817 		.key = "ro.secure",
1818 		.value = "1",
1819 	},
1820 	{
1821 		.key = "ro.serialno",
1822 		.value = "0105b6567ac4ced5",
1823 	},
1824 	{
1825 		.key = "ro.setupwizard.enterprise_mode",
1826 		.value = "1",
1827 	},
1828 	{
1829 		.key = "ro.setupwizard.rotation_locked",
1830 		.value = "true",
1831 	},
1832 	{
1833 		.key = "ro.sf.lcd_density",
1834 		.value = "420",
1835 	},
1836 	{
1837 		.key = "ro.telephony.call_ring.multiple",
1838 		.value = "0",
1839 	},
1840 	{
1841 		.key = "ro.telephony.default_cdma_sub",
1842 		.value = "0",
1843 	},
1844 	{
1845 		.key = "ro.telephony.default_network",
1846 		.value = "22",
1847 	},
1848 	{
1849 		.key = "ro.treble.enabled",
1850 		.value = "false",
1851 	},
1852 	{
1853 		.key = "ro.url.legal",
1854 		.value = "http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html",
1855 	},
1856 	{
1857 		.key = "ro.url.legal.android_privacy",
1858 		.value = "http://www.google.com/intl/%s/mobile/android/basic/privacy.html",
1859 	},
1860 	{
1861 		.key = "ro.vendor.build.date",
1862 		.value = "Mon Aug 28 18:57:48 UTC 2017",
1863 	},
1864 	{
1865 		.key = "ro.vendor.build.date.utc",
1866 		.value = "1503946668",
1867 	},
1868 	{
1869 		.key = "ro.vendor.build.fingerprint",
1870 		.value = "google/bullhead/bullhead:8.0.0/OPR4.170623.009/4302492:user/release-keys",
1871 	},
1872 	{
1873 		.key = "ro.vendor.extension_library",
1874 		.value = "libqti-perfd-client.so",
1875 	},
1876 	{
1877 		.key = "ro.wifi.channels",
1878 		.value = "",
1879 	},
1880 	{
1881 		.key = "ro.zygote",
1882 		.value = "zygote64_32",
1883 	},
1884 	{
1885 		.key = "security.perf_harden",
1886 		.value = "1",
1887 	},
1888 	{
1889 		.key = "service.bootanim.exit",
1890 		.value = "1",
1891 	},
1892 	{
1893 		.key = "service.sf.present_timestamp",
1894 		.value = "0",
1895 	},
1896 	{
1897 		.key = "sys.boot_completed",
1898 		.value = "1",
1899 	},
1900 	{
1901 		.key = "sys.logbootcomplete",
1902 		.value = "1",
1903 	},
1904 	{
1905 		.key = "sys.oem_unlock_allowed",
1906 		.value = "0",
1907 	},
1908 	{
1909 		.key = "sys.qcom.devup",
1910 		.value = "1",
1911 	},
1912 	{
1913 		.key = "sys.rescue_boot_count",
1914 		.value = "1",
1915 	},
1916 	{
1917 		.key = "sys.sysctl.extra_free_kbytes",
1918 		.value = "24300",
1919 	},
1920 	{
1921 		.key = "sys.sysctl.tcp_def_init_rwnd",
1922 		.value = "60",
1923 	},
1924 	{
1925 		.key = "sys.usb.config",
1926 		.value = "adb",
1927 	},
1928 	{
1929 		.key = "sys.usb.configfs",
1930 		.value = "0",
1931 	},
1932 	{
1933 		.key = "sys.usb.controller",
1934 		.value = "f9200000.dwc3",
1935 	},
1936 	{
1937 		.key = "sys.usb.ffs.max_read",
1938 		.value = "262144",
1939 	},
1940 	{
1941 		.key = "sys.usb.ffs.max_write",
1942 		.value = "262144",
1943 	},
1944 	{
1945 		.key = "sys.usb.ffs.ready",
1946 		.value = "1",
1947 	},
1948 	{
1949 		.key = "sys.usb.mtp.device_type",
1950 		.value = "3",
1951 	},
1952 	{
1953 		.key = "sys.usb.state",
1954 		.value = "adb",
1955 	},
1956 	{
1957 		.key = "sys.wifitracing.started",
1958 		.value = "1",
1959 	},
1960 	{
1961 		.key = "telephony.lteOnCdmaDevice",
1962 		.value = "1",
1963 	},
1964 	{
1965 		.key = "vidc.debug.perf.mode",
1966 		.value = "2",
1967 	},
1968 	{
1969 		.key = "vidc.enc.dcvs.extra-buff-count",
1970 		.value = "2",
1971 	},
1972 	{
1973 		.key = "vold.decrypt",
1974 		.value = "trigger_restart_framework",
1975 	},
1976 	{
1977 		.key = "vold.has_adoptable",
1978 		.value = "0",
1979 	},
1980 	{
1981 		.key = "vold.post_fs_data_done",
1982 		.value = "1",
1983 	},
1984 	{
1985 		.key = "wifi.interface",
1986 		.value = "wlan0",
1987 	},
1988 	{
1989 		.key = "wifi.supplicant_scan_interval",
1990 		.value = "15",
1991 	},
1992 	{ NULL },
1993 };
1994 #endif /* __ANDROID__ */
1995