blob: 3cc2e069cce13850218980f0c4050f32b0ccd9e5 [file] [log] [blame]
Marat Dukhand00216b2018-03-02 11:43:51 -08001struct cpuinfo_mock_file filesystem[] = {
2 {
3 .path = "/proc/cpuinfo",
4 .size = 1540,
5 .content =
6 "Processor\t: AArch64 Processor rev 4 (aarch64)\n"
7 "processor\t: 0\n"
8 "BogoMIPS\t: 38.40\n"
9 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
10 "CPU implementer\t: 0x51\n"
11 "CPU architecture: 8\n"
12 "CPU variant\t: 0xa\n"
13 "CPU part\t: 0x801\n"
14 "CPU revision\t: 4\n"
15 "\n"
16 "processor\t: 1\n"
17 "BogoMIPS\t: 38.40\n"
18 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
19 "CPU implementer\t: 0x51\n"
20 "CPU architecture: 8\n"
21 "CPU variant\t: 0xa\n"
22 "CPU part\t: 0x801\n"
23 "CPU revision\t: 4\n"
24 "\n"
25 "processor\t: 2\n"
26 "BogoMIPS\t: 38.40\n"
27 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
28 "CPU implementer\t: 0x51\n"
29 "CPU architecture: 8\n"
30 "CPU variant\t: 0xa\n"
31 "CPU part\t: 0x801\n"
32 "CPU revision\t: 4\n"
33 "\n"
34 "processor\t: 3\n"
35 "BogoMIPS\t: 38.40\n"
36 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
37 "CPU implementer\t: 0x51\n"
38 "CPU architecture: 8\n"
39 "CPU variant\t: 0xa\n"
40 "CPU part\t: 0x801\n"
41 "CPU revision\t: 4\n"
42 "\n"
43 "processor\t: 4\n"
44 "BogoMIPS\t: 38.40\n"
45 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
46 "CPU implementer\t: 0x51\n"
47 "CPU architecture: 8\n"
48 "CPU variant\t: 0xa\n"
49 "CPU part\t: 0x800\n"
50 "CPU revision\t: 1\n"
51 "\n"
52 "processor\t: 5\n"
53 "BogoMIPS\t: 38.40\n"
54 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
55 "CPU implementer\t: 0x51\n"
56 "CPU architecture: 8\n"
57 "CPU variant\t: 0xa\n"
58 "CPU part\t: 0x800\n"
59 "CPU revision\t: 1\n"
60 "\n"
61 "processor\t: 6\n"
62 "BogoMIPS\t: 38.40\n"
63 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
64 "CPU implementer\t: 0x51\n"
65 "CPU architecture: 8\n"
66 "CPU variant\t: 0xa\n"
67 "CPU part\t: 0x800\n"
68 "CPU revision\t: 1\n"
69 "\n"
70 "processor\t: 7\n"
71 "BogoMIPS\t: 38.40\n"
72 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
73 "CPU implementer\t: 0x51\n"
74 "CPU architecture: 8\n"
75 "CPU variant\t: 0xa\n"
76 "CPU part\t: 0x800\n"
77 "CPU revision\t: 1\n"
78 "\n"
79 "Hardware\t: Qualcomm Technologies, Inc MSM8998\n",
80 },
81 {
82 .path = "/sys/devices/system/cpu/kernel_max",
83 .size = 2,
84 .content = "7\n",
85 },
86 {
87 .path = "/sys/devices/system/cpu/possible",
88 .size = 4,
89 .content = "0-7\n",
90 },
91 {
92 .path = "/sys/devices/system/cpu/present",
93 .size = 4,
94 .content = "0-7\n",
95 },
96 {
97 .path = "/sys/devices/system/cpu/online",
98 .size = 4,
99 .content = "0-7\n",
100 },
101 {
102 .path = "/sys/devices/system/cpu/offline",
103 .size = 1,
104 .content = "\n",
105 },
106 {
107 .path = "/sys/devices/system/cpu/modalias",
108 .size = 66,
109 .content = "cpu:type:aarch64:feature:,0000,0001,0002,0003,0004,0005,0006,0007\n",
110 },
111 {
112 .path = "/sys/devices/system/cpu/cpuidle/current_driver",
113 .size = 9,
114 .content = "msm_idle\n",
115 },
116 {
117 .path = "/sys/devices/system/cpu/cpuidle/current_governor_ro",
118 .size = 5,
119 .content = "qcom\n",
120 },
121 {
122 .path = "/sys/devices/system/cpu/cpu0/cpuidle/driver/name",
123 .size = 9,
124 .content = "msm_idle\n",
125 },
126 {
127 .path = "/sys/devices/system/cpu/cpu0/cpufreq/affected_cpus",
128 .size = 8,
129 .content = "0 1 2 3\n",
130 },
131 {
132 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq",
133 .size = 8,
134 .content = "1900800\n",
135 },
136 {
137 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq",
138 .size = 7,
139 .content = "300000\n",
140 },
141 {
142 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency",
143 .size = 2,
144 .content = "0\n",
145 },
146 {
147 .path = "/sys/devices/system/cpu/cpu0/cpufreq/related_cpus",
148 .size = 8,
149 .content = "0 1 2 3\n",
150 },
151 {
152 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies",
153 .size = 167,
154 .content = "300000 364800 441600 518400 595200 672000 748800 825600 883200 960000 1036800 1094400 1171200 1248000 1324800 1401600 1478400 1555200 1670400 1747200 1824000 1900800 \n",
155 },
156 {
157 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors",
158 .size = 67,
159 .content = "interactive conservative ondemand userspace powersave performance \n",
160 },
161 {
162 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq",
163 .size = 7,
164 .content = "518400\n",
165 },
166 {
167 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver",
168 .size = 4,
169 .content = "msm\n",
170 },
171 {
172 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor",
173 .size = 12,
174 .content = "interactive\n",
175 },
176 {
177 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq",
178 .size = 7,
179 .content = "518400\n",
180 },
181 {
182 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state",
183 .size = 247,
184 .content =
185 "300000 0\n"
186 "364800 0\n"
187 "441600 0\n"
188 "518400 8924\n"
189 "595200 212\n"
190 "672000 146\n"
191 "748800 161\n"
192 "825600 127\n"
193 "883200 74\n"
194 "960000 112\n"
195 "1036800 225\n"
196 "1094400 52\n"
197 "1171200 62\n"
198 "1248000 1879\n"
199 "1324800 316\n"
200 "1401600 93\n"
201 "1478400 125\n"
202 "1555200 154\n"
203 "1670400 122\n"
204 "1747200 85\n"
205 "1824000 544\n"
206 "1900800 11279\n",
207 },
208 {
209 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/total_trans",
210 .size = 5,
211 .content = "2644\n",
212 },
213 {
214 .path = "/sys/devices/system/cpu/cpu0/topology/core_id",
215 .size = 2,
216 .content = "0\n",
217 },
218 {
219 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings",
220 .size = 3,
221 .content = "0f\n",
222 },
223 {
224 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings_list",
225 .size = 4,
226 .content = "0-3\n",
227 },
228 {
229 .path = "/sys/devices/system/cpu/cpu0/topology/physical_package_id",
230 .size = 2,
231 .content = "0\n",
232 },
233 {
234 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings",
235 .size = 3,
236 .content = "01\n",
237 },
238 {
239 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list",
240 .size = 2,
241 .content = "0\n",
242 },
243 {
244 .path = "/sys/devices/system/cpu/cpu0/cache/index0/allocation_policy",
245 .size = 18,
246 .content = "ReadWriteAllocate\n",
247 },
248 {
249 .path = "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size",
250 .size = 3,
251 .content = "64\n",
252 },
253 {
254 .path = "/sys/devices/system/cpu/cpu0/cache/index0/level",
255 .size = 2,
256 .content = "1\n",
257 },
258 {
259 .path = "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets",
260 .size = 4,
261 .content = "128\n",
262 },
263 {
264 .path = "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list",
265 .size = 2,
266 .content = "0\n",
267 },
268 {
269 .path = "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map",
270 .size = 3,
271 .content = "01\n",
272 },
273 {
274 .path = "/sys/devices/system/cpu/cpu0/cache/index0/size",
275 .size = 4,
276 .content = "32K\n",
277 },
278 {
279 .path = "/sys/devices/system/cpu/cpu0/cache/index0/type",
280 .size = 5,
281 .content = "Data\n",
282 },
283 {
284 .path = "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity",
285 .size = 2,
286 .content = "4\n",
287 },
288 {
289 .path = "/sys/devices/system/cpu/cpu0/cache/index0/write_policy",
290 .size = 10,
291 .content = "WriteBack\n",
292 },
293 {
294 .path = "/sys/devices/system/cpu/cpu0/cache/index1/allocation_policy",
295 .size = 13,
296 .content = "ReadAllocate\n",
297 },
298 {
299 .path = "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size",
300 .size = 3,
301 .content = "64\n",
302 },
303 {
304 .path = "/sys/devices/system/cpu/cpu0/cache/index1/level",
305 .size = 2,
306 .content = "1\n",
307 },
308 {
309 .path = "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets",
310 .size = 4,
311 .content = "256\n",
312 },
313 {
314 .path = "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list",
315 .size = 2,
316 .content = "0\n",
317 },
318 {
319 .path = "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map",
320 .size = 3,
321 .content = "01\n",
322 },
323 {
324 .path = "/sys/devices/system/cpu/cpu0/cache/index1/size",
325 .size = 4,
326 .content = "32K\n",
327 },
328 {
329 .path = "/sys/devices/system/cpu/cpu0/cache/index1/type",
330 .size = 12,
331 .content = "Instruction\n",
332 },
333 {
334 .path = "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity",
335 .size = 2,
336 .content = "2\n",
337 },
338 {
339 .path = "/sys/devices/system/cpu/cpu0/cache/index2/allocation_policy",
340 .size = 18,
341 .content = "ReadWriteAllocate\n",
342 },
343 {
344 .path = "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size",
345 .size = 3,
346 .content = "64\n",
347 },
348 {
349 .path = "/sys/devices/system/cpu/cpu0/cache/index2/level",
350 .size = 2,
351 .content = "2\n",
352 },
353 {
354 .path = "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets",
355 .size = 5,
356 .content = "1024\n",
357 },
358 {
359 .path = "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list",
360 .size = 4,
361 .content = "0-3\n",
362 },
363 {
364 .path = "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map",
365 .size = 3,
366 .content = "0f\n",
367 },
368 {
369 .path = "/sys/devices/system/cpu/cpu0/cache/index2/size",
370 .size = 6,
371 .content = "1024K\n",
372 },
373 {
374 .path = "/sys/devices/system/cpu/cpu0/cache/index2/type",
375 .size = 8,
376 .content = "Unified\n",
377 },
378 {
379 .path = "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity",
380 .size = 3,
381 .content = "16\n",
382 },
383 {
384 .path = "/sys/devices/system/cpu/cpu0/cache/index2/write_policy",
385 .size = 10,
386 .content = "WriteBack\n",
387 },
388 {
389 .path = "/sys/devices/system/cpu/cpu1/cpuidle/driver/name",
390 .size = 9,
391 .content = "msm_idle\n",
392 },
393 {
394 .path = "/sys/devices/system/cpu/cpu1/cpufreq/affected_cpus",
395 .size = 8,
396 .content = "0 1 2 3\n",
397 },
398 {
399 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq",
400 .size = 8,
401 .content = "1900800\n",
402 },
403 {
404 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq",
405 .size = 7,
406 .content = "300000\n",
407 },
408 {
409 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency",
410 .size = 2,
411 .content = "0\n",
412 },
413 {
414 .path = "/sys/devices/system/cpu/cpu1/cpufreq/related_cpus",
415 .size = 8,
416 .content = "0 1 2 3\n",
417 },
418 {
419 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_frequencies",
420 .size = 167,
421 .content = "300000 364800 441600 518400 595200 672000 748800 825600 883200 960000 1036800 1094400 1171200 1248000 1324800 1401600 1478400 1555200 1670400 1747200 1824000 1900800 \n",
422 },
423 {
424 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors",
425 .size = 67,
426 .content = "interactive conservative ondemand userspace powersave performance \n",
427 },
428 {
429 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq",
430 .size = 7,
431 .content = "518400\n",
432 },
433 {
434 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver",
435 .size = 4,
436 .content = "msm\n",
437 },
438 {
439 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor",
440 .size = 12,
441 .content = "interactive\n",
442 },
443 {
444 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq",
445 .size = 7,
446 .content = "518400\n",
447 },
448 {
449 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/time_in_state",
450 .size = 247,
451 .content =
452 "300000 0\n"
453 "364800 0\n"
454 "441600 0\n"
455 "518400 9142\n"
456 "595200 214\n"
457 "672000 148\n"
458 "748800 163\n"
459 "825600 127\n"
460 "883200 74\n"
461 "960000 112\n"
462 "1036800 225\n"
463 "1094400 52\n"
464 "1171200 62\n"
465 "1248000 1897\n"
466 "1324800 316\n"
467 "1401600 93\n"
468 "1478400 125\n"
469 "1555200 154\n"
470 "1670400 122\n"
471 "1747200 85\n"
472 "1824000 544\n"
473 "1900800 11279\n",
474 },
475 {
476 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/total_trans",
477 .size = 5,
478 .content = "2665\n",
479 },
480 {
481 .path = "/sys/devices/system/cpu/cpu1/topology/core_id",
482 .size = 2,
483 .content = "1\n",
484 },
485 {
486 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings",
487 .size = 3,
488 .content = "0f\n",
489 },
490 {
491 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings_list",
492 .size = 4,
493 .content = "0-3\n",
494 },
495 {
496 .path = "/sys/devices/system/cpu/cpu1/topology/physical_package_id",
497 .size = 2,
498 .content = "0\n",
499 },
500 {
501 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings",
502 .size = 3,
503 .content = "02\n",
504 },
505 {
506 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list",
507 .size = 2,
508 .content = "1\n",
509 },
510 {
511 .path = "/sys/devices/system/cpu/cpu1/cache/index0/allocation_policy",
512 .size = 18,
513 .content = "ReadWriteAllocate\n",
514 },
515 {
516 .path = "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size",
517 .size = 3,
518 .content = "64\n",
519 },
520 {
521 .path = "/sys/devices/system/cpu/cpu1/cache/index0/level",
522 .size = 2,
523 .content = "1\n",
524 },
525 {
526 .path = "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets",
527 .size = 4,
528 .content = "128\n",
529 },
530 {
531 .path = "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list",
532 .size = 2,
533 .content = "1\n",
534 },
535 {
536 .path = "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map",
537 .size = 3,
538 .content = "02\n",
539 },
540 {
541 .path = "/sys/devices/system/cpu/cpu1/cache/index0/size",
542 .size = 4,
543 .content = "32K\n",
544 },
545 {
546 .path = "/sys/devices/system/cpu/cpu1/cache/index0/type",
547 .size = 5,
548 .content = "Data\n",
549 },
550 {
551 .path = "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity",
552 .size = 2,
553 .content = "4\n",
554 },
555 {
556 .path = "/sys/devices/system/cpu/cpu1/cache/index0/write_policy",
557 .size = 10,
558 .content = "WriteBack\n",
559 },
560 {
561 .path = "/sys/devices/system/cpu/cpu1/cache/index1/allocation_policy",
562 .size = 13,
563 .content = "ReadAllocate\n",
564 },
565 {
566 .path = "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size",
567 .size = 3,
568 .content = "64\n",
569 },
570 {
571 .path = "/sys/devices/system/cpu/cpu1/cache/index1/level",
572 .size = 2,
573 .content = "1\n",
574 },
575 {
576 .path = "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets",
577 .size = 4,
578 .content = "256\n",
579 },
580 {
581 .path = "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list",
582 .size = 2,
583 .content = "1\n",
584 },
585 {
586 .path = "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map",
587 .size = 3,
588 .content = "02\n",
589 },
590 {
591 .path = "/sys/devices/system/cpu/cpu1/cache/index1/size",
592 .size = 4,
593 .content = "32K\n",
594 },
595 {
596 .path = "/sys/devices/system/cpu/cpu1/cache/index1/type",
597 .size = 12,
598 .content = "Instruction\n",
599 },
600 {
601 .path = "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity",
602 .size = 2,
603 .content = "2\n",
604 },
605 {
606 .path = "/sys/devices/system/cpu/cpu1/cache/index2/allocation_policy",
607 .size = 18,
608 .content = "ReadWriteAllocate\n",
609 },
610 {
611 .path = "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size",
612 .size = 3,
613 .content = "64\n",
614 },
615 {
616 .path = "/sys/devices/system/cpu/cpu1/cache/index2/level",
617 .size = 2,
618 .content = "2\n",
619 },
620 {
621 .path = "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets",
622 .size = 5,
623 .content = "1024\n",
624 },
625 {
626 .path = "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list",
627 .size = 4,
628 .content = "0-3\n",
629 },
630 {
631 .path = "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map",
632 .size = 3,
633 .content = "0f\n",
634 },
635 {
636 .path = "/sys/devices/system/cpu/cpu1/cache/index2/size",
637 .size = 6,
638 .content = "1024K\n",
639 },
640 {
641 .path = "/sys/devices/system/cpu/cpu1/cache/index2/type",
642 .size = 8,
643 .content = "Unified\n",
644 },
645 {
646 .path = "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity",
647 .size = 3,
648 .content = "16\n",
649 },
650 {
651 .path = "/sys/devices/system/cpu/cpu1/cache/index2/write_policy",
652 .size = 10,
653 .content = "WriteBack\n",
654 },
655 {
656 .path = "/sys/devices/system/cpu/cpu2/cpuidle/driver/name",
657 .size = 9,
658 .content = "msm_idle\n",
659 },
660 {
661 .path = "/sys/devices/system/cpu/cpu2/cpufreq/affected_cpus",
662 .size = 8,
663 .content = "0 1 2 3\n",
664 },
665 {
666 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq",
667 .size = 8,
668 .content = "1900800\n",
669 },
670 {
671 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_min_freq",
672 .size = 7,
673 .content = "300000\n",
674 },
675 {
676 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency",
677 .size = 2,
678 .content = "0\n",
679 },
680 {
681 .path = "/sys/devices/system/cpu/cpu2/cpufreq/related_cpus",
682 .size = 8,
683 .content = "0 1 2 3\n",
684 },
685 {
686 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_frequencies",
687 .size = 167,
688 .content = "300000 364800 441600 518400 595200 672000 748800 825600 883200 960000 1036800 1094400 1171200 1248000 1324800 1401600 1478400 1555200 1670400 1747200 1824000 1900800 \n",
689 },
690 {
691 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors",
692 .size = 67,
693 .content = "interactive conservative ondemand userspace powersave performance \n",
694 },
695 {
696 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq",
697 .size = 7,
698 .content = "518400\n",
699 },
700 {
701 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_driver",
702 .size = 4,
703 .content = "msm\n",
704 },
705 {
706 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_governor",
707 .size = 12,
708 .content = "interactive\n",
709 },
710 {
711 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq",
712 .size = 7,
713 .content = "518400\n",
714 },
715 {
716 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/time_in_state",
717 .size = 247,
718 .content =
719 "300000 0\n"
720 "364800 0\n"
721 "441600 0\n"
722 "518400 9372\n"
723 "595200 214\n"
724 "672000 148\n"
725 "748800 163\n"
726 "825600 127\n"
727 "883200 74\n"
728 "960000 112\n"
729 "1036800 225\n"
730 "1094400 52\n"
731 "1171200 62\n"
732 "1248000 1919\n"
733 "1324800 316\n"
734 "1401600 93\n"
735 "1478400 125\n"
736 "1555200 154\n"
737 "1670400 122\n"
738 "1747200 85\n"
739 "1824000 544\n"
740 "1900800 11279\n",
741 },
742 {
743 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/total_trans",
744 .size = 5,
745 .content = "2687\n",
746 },
747 {
748 .path = "/sys/devices/system/cpu/cpu2/topology/core_id",
749 .size = 2,
750 .content = "2\n",
751 },
752 {
753 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings",
754 .size = 3,
755 .content = "0f\n",
756 },
757 {
758 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings_list",
759 .size = 4,
760 .content = "0-3\n",
761 },
762 {
763 .path = "/sys/devices/system/cpu/cpu2/topology/physical_package_id",
764 .size = 2,
765 .content = "0\n",
766 },
767 {
768 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings",
769 .size = 3,
770 .content = "04\n",
771 },
772 {
773 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list",
774 .size = 2,
775 .content = "2\n",
776 },
777 {
778 .path = "/sys/devices/system/cpu/cpu2/cache/index0/allocation_policy",
779 .size = 18,
780 .content = "ReadWriteAllocate\n",
781 },
782 {
783 .path = "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size",
784 .size = 3,
785 .content = "64\n",
786 },
787 {
788 .path = "/sys/devices/system/cpu/cpu2/cache/index0/level",
789 .size = 2,
790 .content = "1\n",
791 },
792 {
793 .path = "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets",
794 .size = 4,
795 .content = "128\n",
796 },
797 {
798 .path = "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list",
799 .size = 2,
800 .content = "2\n",
801 },
802 {
803 .path = "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map",
804 .size = 3,
805 .content = "04\n",
806 },
807 {
808 .path = "/sys/devices/system/cpu/cpu2/cache/index0/size",
809 .size = 4,
810 .content = "32K\n",
811 },
812 {
813 .path = "/sys/devices/system/cpu/cpu2/cache/index0/type",
814 .size = 5,
815 .content = "Data\n",
816 },
817 {
818 .path = "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity",
819 .size = 2,
820 .content = "4\n",
821 },
822 {
823 .path = "/sys/devices/system/cpu/cpu2/cache/index0/write_policy",
824 .size = 10,
825 .content = "WriteBack\n",
826 },
827 {
828 .path = "/sys/devices/system/cpu/cpu2/cache/index1/allocation_policy",
829 .size = 13,
830 .content = "ReadAllocate\n",
831 },
832 {
833 .path = "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size",
834 .size = 3,
835 .content = "64\n",
836 },
837 {
838 .path = "/sys/devices/system/cpu/cpu2/cache/index1/level",
839 .size = 2,
840 .content = "1\n",
841 },
842 {
843 .path = "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets",
844 .size = 4,
845 .content = "256\n",
846 },
847 {
848 .path = "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list",
849 .size = 2,
850 .content = "2\n",
851 },
852 {
853 .path = "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map",
854 .size = 3,
855 .content = "04\n",
856 },
857 {
858 .path = "/sys/devices/system/cpu/cpu2/cache/index1/size",
859 .size = 4,
860 .content = "32K\n",
861 },
862 {
863 .path = "/sys/devices/system/cpu/cpu2/cache/index1/type",
864 .size = 12,
865 .content = "Instruction\n",
866 },
867 {
868 .path = "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity",
869 .size = 2,
870 .content = "2\n",
871 },
872 {
873 .path = "/sys/devices/system/cpu/cpu2/cache/index2/allocation_policy",
874 .size = 18,
875 .content = "ReadWriteAllocate\n",
876 },
877 {
878 .path = "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size",
879 .size = 3,
880 .content = "64\n",
881 },
882 {
883 .path = "/sys/devices/system/cpu/cpu2/cache/index2/level",
884 .size = 2,
885 .content = "2\n",
886 },
887 {
888 .path = "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets",
889 .size = 5,
890 .content = "1024\n",
891 },
892 {
893 .path = "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list",
894 .size = 4,
895 .content = "0-3\n",
896 },
897 {
898 .path = "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map",
899 .size = 3,
900 .content = "0f\n",
901 },
902 {
903 .path = "/sys/devices/system/cpu/cpu2/cache/index2/size",
904 .size = 6,
905 .content = "1024K\n",
906 },
907 {
908 .path = "/sys/devices/system/cpu/cpu2/cache/index2/type",
909 .size = 8,
910 .content = "Unified\n",
911 },
912 {
913 .path = "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity",
914 .size = 3,
915 .content = "16\n",
916 },
917 {
918 .path = "/sys/devices/system/cpu/cpu2/cache/index2/write_policy",
919 .size = 10,
920 .content = "WriteBack\n",
921 },
922 {
923 .path = "/sys/devices/system/cpu/cpu3/cpuidle/driver/name",
924 .size = 9,
925 .content = "msm_idle\n",
926 },
927 {
928 .path = "/sys/devices/system/cpu/cpu3/cpufreq/affected_cpus",
929 .size = 8,
930 .content = "0 1 2 3\n",
931 },
932 {
933 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq",
934 .size = 8,
935 .content = "1900800\n",
936 },
937 {
938 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_min_freq",
939 .size = 7,
940 .content = "300000\n",
941 },
942 {
943 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency",
944 .size = 2,
945 .content = "0\n",
946 },
947 {
948 .path = "/sys/devices/system/cpu/cpu3/cpufreq/related_cpus",
949 .size = 8,
950 .content = "0 1 2 3\n",
951 },
952 {
953 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_frequencies",
954 .size = 167,
955 .content = "300000 364800 441600 518400 595200 672000 748800 825600 883200 960000 1036800 1094400 1171200 1248000 1324800 1401600 1478400 1555200 1670400 1747200 1824000 1900800 \n",
956 },
957 {
958 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors",
959 .size = 67,
960 .content = "interactive conservative ondemand userspace powersave performance \n",
961 },
962 {
963 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq",
964 .size = 7,
965 .content = "518400\n",
966 },
967 {
968 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_driver",
969 .size = 4,
970 .content = "msm\n",
971 },
972 {
973 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_governor",
974 .size = 12,
975 .content = "interactive\n",
976 },
977 {
978 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq",
979 .size = 7,
980 .content = "518400\n",
981 },
982 {
983 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/time_in_state",
984 .size = 247,
985 .content =
986 "300000 0\n"
987 "364800 0\n"
988 "441600 0\n"
989 "518400 9580\n"
990 "595200 214\n"
991 "672000 148\n"
992 "748800 165\n"
993 "825600 129\n"
994 "883200 74\n"
995 "960000 112\n"
996 "1036800 225\n"
997 "1094400 52\n"
998 "1171200 62\n"
999 "1248000 1953\n"
1000 "1324800 316\n"
1001 "1401600 93\n"
1002 "1478400 125\n"
1003 "1555200 154\n"
1004 "1670400 122\n"
1005 "1747200 85\n"
1006 "1824000 544\n"
1007 "1900800 11279\n",
1008 },
1009 {
1010 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/total_trans",
1011 .size = 5,
1012 .content = "2719\n",
1013 },
1014 {
1015 .path = "/sys/devices/system/cpu/cpu3/topology/core_id",
1016 .size = 2,
1017 .content = "3\n",
1018 },
1019 {
1020 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings",
1021 .size = 3,
1022 .content = "0f\n",
1023 },
1024 {
1025 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings_list",
1026 .size = 4,
1027 .content = "0-3\n",
1028 },
1029 {
1030 .path = "/sys/devices/system/cpu/cpu3/topology/physical_package_id",
1031 .size = 2,
1032 .content = "0\n",
1033 },
1034 {
1035 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings",
1036 .size = 3,
1037 .content = "08\n",
1038 },
1039 {
1040 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list",
1041 .size = 2,
1042 .content = "3\n",
1043 },
1044 {
1045 .path = "/sys/devices/system/cpu/cpu3/cache/index0/allocation_policy",
1046 .size = 18,
1047 .content = "ReadWriteAllocate\n",
1048 },
1049 {
1050 .path = "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size",
1051 .size = 3,
1052 .content = "64\n",
1053 },
1054 {
1055 .path = "/sys/devices/system/cpu/cpu3/cache/index0/level",
1056 .size = 2,
1057 .content = "1\n",
1058 },
1059 {
1060 .path = "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets",
1061 .size = 4,
1062 .content = "128\n",
1063 },
1064 {
1065 .path = "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list",
1066 .size = 2,
1067 .content = "3\n",
1068 },
1069 {
1070 .path = "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map",
1071 .size = 3,
1072 .content = "08\n",
1073 },
1074 {
1075 .path = "/sys/devices/system/cpu/cpu3/cache/index0/size",
1076 .size = 4,
1077 .content = "32K\n",
1078 },
1079 {
1080 .path = "/sys/devices/system/cpu/cpu3/cache/index0/type",
1081 .size = 5,
1082 .content = "Data\n",
1083 },
1084 {
1085 .path = "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity",
1086 .size = 2,
1087 .content = "4\n",
1088 },
1089 {
1090 .path = "/sys/devices/system/cpu/cpu3/cache/index0/write_policy",
1091 .size = 10,
1092 .content = "WriteBack\n",
1093 },
1094 {
1095 .path = "/sys/devices/system/cpu/cpu3/cache/index1/allocation_policy",
1096 .size = 13,
1097 .content = "ReadAllocate\n",
1098 },
1099 {
1100 .path = "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size",
1101 .size = 3,
1102 .content = "64\n",
1103 },
1104 {
1105 .path = "/sys/devices/system/cpu/cpu3/cache/index1/level",
1106 .size = 2,
1107 .content = "1\n",
1108 },
1109 {
1110 .path = "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets",
1111 .size = 4,
1112 .content = "256\n",
1113 },
1114 {
1115 .path = "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list",
1116 .size = 2,
1117 .content = "3\n",
1118 },
1119 {
1120 .path = "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map",
1121 .size = 3,
1122 .content = "08\n",
1123 },
1124 {
1125 .path = "/sys/devices/system/cpu/cpu3/cache/index1/size",
1126 .size = 4,
1127 .content = "32K\n",
1128 },
1129 {
1130 .path = "/sys/devices/system/cpu/cpu3/cache/index1/type",
1131 .size = 12,
1132 .content = "Instruction\n",
1133 },
1134 {
1135 .path = "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity",
1136 .size = 2,
1137 .content = "2\n",
1138 },
1139 {
1140 .path = "/sys/devices/system/cpu/cpu3/cache/index2/allocation_policy",
1141 .size = 18,
1142 .content = "ReadWriteAllocate\n",
1143 },
1144 {
1145 .path = "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size",
1146 .size = 3,
1147 .content = "64\n",
1148 },
1149 {
1150 .path = "/sys/devices/system/cpu/cpu3/cache/index2/level",
1151 .size = 2,
1152 .content = "2\n",
1153 },
1154 {
1155 .path = "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets",
1156 .size = 5,
1157 .content = "1024\n",
1158 },
1159 {
1160 .path = "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list",
1161 .size = 4,
1162 .content = "0-3\n",
1163 },
1164 {
1165 .path = "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map",
1166 .size = 3,
1167 .content = "0f\n",
1168 },
1169 {
1170 .path = "/sys/devices/system/cpu/cpu3/cache/index2/size",
1171 .size = 6,
1172 .content = "1024K\n",
1173 },
1174 {
1175 .path = "/sys/devices/system/cpu/cpu3/cache/index2/type",
1176 .size = 8,
1177 .content = "Unified\n",
1178 },
1179 {
1180 .path = "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity",
1181 .size = 3,
1182 .content = "16\n",
1183 },
1184 {
1185 .path = "/sys/devices/system/cpu/cpu3/cache/index2/write_policy",
1186 .size = 10,
1187 .content = "WriteBack\n",
1188 },
1189 {
1190 .path = "/sys/devices/system/cpu/cpu4/cpuidle/driver/name",
1191 .size = 9,
1192 .content = "msm_idle\n",
1193 },
1194 {
1195 .path = "/sys/devices/system/cpu/cpu4/cpufreq/affected_cpus",
1196 .size = 8,
1197 .content = "4 5 6 7\n",
1198 },
1199 {
1200 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq",
1201 .size = 8,
1202 .content = "2457600\n",
1203 },
1204 {
1205 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_min_freq",
1206 .size = 7,
1207 .content = "300000\n",
1208 },
1209 {
1210 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_transition_latency",
1211 .size = 2,
1212 .content = "0\n",
1213 },
1214 {
1215 .path = "/sys/devices/system/cpu/cpu4/cpufreq/related_cpus",
1216 .size = 8,
1217 .content = "4 5 6 7\n",
1218 },
1219 {
1220 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_frequencies",
1221 .size = 239,
1222 .content = "300000 345600 422400 499200 576000 652800 729600 806400 902400 979200 1056000 1132800 1190400 1267200 1344000 1420800 1497600 1574400 1651200 1728000 1804800 1881600 1958400 2035200 2112000 2208000 2265600 2323200 2342400 2361600 2457600 \n",
1223 },
1224 {
1225 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_governors",
1226 .size = 67,
1227 .content = "interactive conservative ondemand userspace powersave performance \n",
1228 },
1229 {
1230 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq",
1231 .size = 7,
1232 .content = "806400\n",
1233 },
1234 {
1235 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_driver",
1236 .size = 4,
1237 .content = "msm\n",
1238 },
1239 {
1240 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_governor",
1241 .size = 12,
1242 .content = "interactive\n",
1243 },
1244 {
1245 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq",
1246 .size = 8,
1247 .content = "2361600\n",
1248 },
1249 {
1250 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq",
1251 .size = 7,
1252 .content = "806400\n",
1253 },
1254 {
1255 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state",
1256 .size = 335,
1257 .content =
1258 "300000 0\n"
1259 "345600 0\n"
1260 "422400 0\n"
1261 "499200 0\n"
1262 "576000 0\n"
1263 "652800 0\n"
1264 "729600 0\n"
1265 "806400 13748\n"
1266 "902400 99\n"
1267 "979200 82\n"
1268 "1056000 146\n"
1269 "1132800 49\n"
1270 "1190400 30\n"
1271 "1267200 55\n"
1272 "1344000 54\n"
1273 "1420800 52\n"
1274 "1497600 79\n"
1275 "1574400 1010\n"
1276 "1651200 78\n"
1277 "1728000 80\n"
1278 "1804800 77\n"
1279 "1881600 68\n"
1280 "1958400 212\n"
1281 "2035200 126\n"
1282 "2112000 75\n"
1283 "2208000 76\n"
1284 "2265600 95\n"
1285 "2323200 32\n"
1286 "2342400 8\n"
1287 "2361600 7145\n"
1288 "2457600 2180\n",
1289 },
1290 {
1291 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/total_trans",
1292 .size = 5,
1293 .content = "1755\n",
1294 },
1295 {
1296 .path = "/sys/devices/system/cpu/cpu4/topology/core_id",
1297 .size = 2,
1298 .content = "0\n",
1299 },
1300 {
1301 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings",
1302 .size = 3,
1303 .content = "f0\n",
1304 },
1305 {
1306 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings_list",
1307 .size = 4,
1308 .content = "4-7\n",
1309 },
1310 {
1311 .path = "/sys/devices/system/cpu/cpu4/topology/physical_package_id",
1312 .size = 2,
1313 .content = "1\n",
1314 },
1315 {
1316 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings",
1317 .size = 3,
1318 .content = "10\n",
1319 },
1320 {
1321 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list",
1322 .size = 2,
1323 .content = "4\n",
1324 },
1325 {
1326 .path = "/sys/devices/system/cpu/cpu4/cache/index0/allocation_policy",
1327 .size = 18,
1328 .content = "ReadWriteAllocate\n",
1329 },
1330 {
1331 .path = "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size",
1332 .size = 3,
1333 .content = "64\n",
1334 },
1335 {
1336 .path = "/sys/devices/system/cpu/cpu4/cache/index0/level",
1337 .size = 2,
1338 .content = "1\n",
1339 },
1340 {
1341 .path = "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets",
1342 .size = 3,
1343 .content = "64\n",
1344 },
1345 {
1346 .path = "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list",
1347 .size = 2,
1348 .content = "4\n",
1349 },
1350 {
1351 .path = "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map",
1352 .size = 3,
1353 .content = "10\n",
1354 },
1355 {
1356 .path = "/sys/devices/system/cpu/cpu4/cache/index0/size",
1357 .size = 4,
1358 .content = "64K\n",
1359 },
1360 {
1361 .path = "/sys/devices/system/cpu/cpu4/cache/index0/type",
1362 .size = 5,
1363 .content = "Data\n",
1364 },
1365 {
1366 .path = "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity",
1367 .size = 3,
1368 .content = "16\n",
1369 },
1370 {
1371 .path = "/sys/devices/system/cpu/cpu4/cache/index0/write_policy",
1372 .size = 10,
1373 .content = "WriteBack\n",
1374 },
1375 {
1376 .path = "/sys/devices/system/cpu/cpu4/cache/index1/allocation_policy",
1377 .size = 13,
1378 .content = "ReadAllocate\n",
1379 },
1380 {
1381 .path = "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size",
1382 .size = 3,
1383 .content = "64\n",
1384 },
1385 {
1386 .path = "/sys/devices/system/cpu/cpu4/cache/index1/level",
1387 .size = 2,
1388 .content = "1\n",
1389 },
1390 {
1391 .path = "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets",
1392 .size = 4,
1393 .content = "256\n",
1394 },
1395 {
1396 .path = "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list",
1397 .size = 2,
1398 .content = "4\n",
1399 },
1400 {
1401 .path = "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map",
1402 .size = 3,
1403 .content = "10\n",
1404 },
1405 {
1406 .path = "/sys/devices/system/cpu/cpu4/cache/index1/size",
1407 .size = 4,
1408 .content = "64K\n",
1409 },
1410 {
1411 .path = "/sys/devices/system/cpu/cpu4/cache/index1/type",
1412 .size = 12,
1413 .content = "Instruction\n",
1414 },
1415 {
1416 .path = "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity",
1417 .size = 2,
1418 .content = "4\n",
1419 },
1420 {
1421 .path = "/sys/devices/system/cpu/cpu4/cache/index2/allocation_policy",
1422 .size = 18,
1423 .content = "ReadWriteAllocate\n",
1424 },
1425 {
1426 .path = "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size",
1427 .size = 3,
1428 .content = "64\n",
1429 },
1430 {
1431 .path = "/sys/devices/system/cpu/cpu4/cache/index2/level",
1432 .size = 2,
1433 .content = "2\n",
1434 },
1435 {
1436 .path = "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets",
1437 .size = 5,
1438 .content = "2048\n",
1439 },
1440 {
1441 .path = "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list",
1442 .size = 4,
1443 .content = "4-7\n",
1444 },
1445 {
1446 .path = "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map",
1447 .size = 3,
1448 .content = "f0\n",
1449 },
1450 {
1451 .path = "/sys/devices/system/cpu/cpu4/cache/index2/size",
1452 .size = 6,
1453 .content = "2048K\n",
1454 },
1455 {
1456 .path = "/sys/devices/system/cpu/cpu4/cache/index2/type",
1457 .size = 8,
1458 .content = "Unified\n",
1459 },
1460 {
1461 .path = "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity",
1462 .size = 3,
1463 .content = "16\n",
1464 },
1465 {
1466 .path = "/sys/devices/system/cpu/cpu4/cache/index2/write_policy",
1467 .size = 10,
1468 .content = "WriteBack\n",
1469 },
1470 {
1471 .path = "/sys/devices/system/cpu/cpu5/cpuidle/driver/name",
1472 .size = 9,
1473 .content = "msm_idle\n",
1474 },
1475 {
1476 .path = "/sys/devices/system/cpu/cpu5/cpufreq/affected_cpus",
1477 .size = 8,
1478 .content = "4 5 6 7\n",
1479 },
1480 {
1481 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_max_freq",
1482 .size = 8,
1483 .content = "2457600\n",
1484 },
1485 {
1486 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_min_freq",
1487 .size = 7,
1488 .content = "300000\n",
1489 },
1490 {
1491 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_transition_latency",
1492 .size = 2,
1493 .content = "0\n",
1494 },
1495 {
1496 .path = "/sys/devices/system/cpu/cpu5/cpufreq/related_cpus",
1497 .size = 8,
1498 .content = "4 5 6 7\n",
1499 },
1500 {
1501 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_frequencies",
1502 .size = 239,
1503 .content = "300000 345600 422400 499200 576000 652800 729600 806400 902400 979200 1056000 1132800 1190400 1267200 1344000 1420800 1497600 1574400 1651200 1728000 1804800 1881600 1958400 2035200 2112000 2208000 2265600 2323200 2342400 2361600 2457600 \n",
1504 },
1505 {
1506 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_governors",
1507 .size = 67,
1508 .content = "interactive conservative ondemand userspace powersave performance \n",
1509 },
1510 {
1511 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq",
1512 .size = 7,
1513 .content = "806400\n",
1514 },
1515 {
1516 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_driver",
1517 .size = 4,
1518 .content = "msm\n",
1519 },
1520 {
1521 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_governor",
1522 .size = 12,
1523 .content = "interactive\n",
1524 },
1525 {
1526 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_max_freq",
1527 .size = 8,
1528 .content = "2361600\n",
1529 },
1530 {
1531 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq",
1532 .size = 7,
1533 .content = "806400\n",
1534 },
1535 {
1536 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/time_in_state",
1537 .size = 335,
1538 .content =
1539 "300000 0\n"
1540 "345600 0\n"
1541 "422400 0\n"
1542 "499200 0\n"
1543 "576000 0\n"
1544 "652800 0\n"
1545 "729600 0\n"
1546 "806400 13975\n"
1547 "902400 99\n"
1548 "979200 82\n"
1549 "1056000 146\n"
1550 "1132800 49\n"
1551 "1190400 30\n"
1552 "1267200 55\n"
1553 "1344000 54\n"
1554 "1420800 52\n"
1555 "1497600 79\n"
1556 "1574400 1010\n"
1557 "1651200 78\n"
1558 "1728000 80\n"
1559 "1804800 77\n"
1560 "1881600 68\n"
1561 "1958400 212\n"
1562 "2035200 126\n"
1563 "2112000 75\n"
1564 "2208000 76\n"
1565 "2265600 95\n"
1566 "2323200 32\n"
1567 "2342400 8\n"
1568 "2361600 7145\n"
1569 "2457600 2180\n",
1570 },
1571 {
1572 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/total_trans",
1573 .size = 5,
1574 .content = "1755\n",
1575 },
1576 {
1577 .path = "/sys/devices/system/cpu/cpu5/topology/core_id",
1578 .size = 2,
1579 .content = "1\n",
1580 },
1581 {
1582 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings",
1583 .size = 3,
1584 .content = "f0\n",
1585 },
1586 {
1587 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings_list",
1588 .size = 4,
1589 .content = "4-7\n",
1590 },
1591 {
1592 .path = "/sys/devices/system/cpu/cpu5/topology/physical_package_id",
1593 .size = 2,
1594 .content = "1\n",
1595 },
1596 {
1597 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings",
1598 .size = 3,
1599 .content = "20\n",
1600 },
1601 {
1602 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list",
1603 .size = 2,
1604 .content = "5\n",
1605 },
1606 {
1607 .path = "/sys/devices/system/cpu/cpu5/cache/index0/allocation_policy",
1608 .size = 18,
1609 .content = "ReadWriteAllocate\n",
1610 },
1611 {
1612 .path = "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size",
1613 .size = 3,
1614 .content = "64\n",
1615 },
1616 {
1617 .path = "/sys/devices/system/cpu/cpu5/cache/index0/level",
1618 .size = 2,
1619 .content = "1\n",
1620 },
1621 {
1622 .path = "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets",
1623 .size = 3,
1624 .content = "64\n",
1625 },
1626 {
1627 .path = "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list",
1628 .size = 2,
1629 .content = "5\n",
1630 },
1631 {
1632 .path = "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map",
1633 .size = 3,
1634 .content = "20\n",
1635 },
1636 {
1637 .path = "/sys/devices/system/cpu/cpu5/cache/index0/size",
1638 .size = 4,
1639 .content = "64K\n",
1640 },
1641 {
1642 .path = "/sys/devices/system/cpu/cpu5/cache/index0/type",
1643 .size = 5,
1644 .content = "Data\n",
1645 },
1646 {
1647 .path = "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity",
1648 .size = 3,
1649 .content = "16\n",
1650 },
1651 {
1652 .path = "/sys/devices/system/cpu/cpu5/cache/index0/write_policy",
1653 .size = 10,
1654 .content = "WriteBack\n",
1655 },
1656 {
1657 .path = "/sys/devices/system/cpu/cpu5/cache/index1/allocation_policy",
1658 .size = 13,
1659 .content = "ReadAllocate\n",
1660 },
1661 {
1662 .path = "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size",
1663 .size = 3,
1664 .content = "64\n",
1665 },
1666 {
1667 .path = "/sys/devices/system/cpu/cpu5/cache/index1/level",
1668 .size = 2,
1669 .content = "1\n",
1670 },
1671 {
1672 .path = "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets",
1673 .size = 4,
1674 .content = "256\n",
1675 },
1676 {
1677 .path = "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list",
1678 .size = 2,
1679 .content = "5\n",
1680 },
1681 {
1682 .path = "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map",
1683 .size = 3,
1684 .content = "20\n",
1685 },
1686 {
1687 .path = "/sys/devices/system/cpu/cpu5/cache/index1/size",
1688 .size = 4,
1689 .content = "64K\n",
1690 },
1691 {
1692 .path = "/sys/devices/system/cpu/cpu5/cache/index1/type",
1693 .size = 12,
1694 .content = "Instruction\n",
1695 },
1696 {
1697 .path = "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity",
1698 .size = 2,
1699 .content = "4\n",
1700 },
1701 {
1702 .path = "/sys/devices/system/cpu/cpu5/cache/index2/allocation_policy",
1703 .size = 18,
1704 .content = "ReadWriteAllocate\n",
1705 },
1706 {
1707 .path = "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size",
1708 .size = 3,
1709 .content = "64\n",
1710 },
1711 {
1712 .path = "/sys/devices/system/cpu/cpu5/cache/index2/level",
1713 .size = 2,
1714 .content = "2\n",
1715 },
1716 {
1717 .path = "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets",
1718 .size = 5,
1719 .content = "2048\n",
1720 },
1721 {
1722 .path = "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list",
1723 .size = 4,
1724 .content = "4-7\n",
1725 },
1726 {
1727 .path = "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map",
1728 .size = 3,
1729 .content = "f0\n",
1730 },
1731 {
1732 .path = "/sys/devices/system/cpu/cpu5/cache/index2/size",
1733 .size = 6,
1734 .content = "2048K\n",
1735 },
1736 {
1737 .path = "/sys/devices/system/cpu/cpu5/cache/index2/type",
1738 .size = 8,
1739 .content = "Unified\n",
1740 },
1741 {
1742 .path = "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity",
1743 .size = 3,
1744 .content = "16\n",
1745 },
1746 {
1747 .path = "/sys/devices/system/cpu/cpu5/cache/index2/write_policy",
1748 .size = 10,
1749 .content = "WriteBack\n",
1750 },
1751 {
1752 .path = "/sys/devices/system/cpu/cpu6/cpuidle/driver/name",
1753 .size = 9,
1754 .content = "msm_idle\n",
1755 },
1756 {
1757 .path = "/sys/devices/system/cpu/cpu6/cpufreq/affected_cpus",
1758 .size = 8,
1759 .content = "4 5 6 7\n",
1760 },
1761 {
1762 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_max_freq",
1763 .size = 8,
1764 .content = "2457600\n",
1765 },
1766 {
1767 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_min_freq",
1768 .size = 7,
1769 .content = "300000\n",
1770 },
1771 {
1772 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_transition_latency",
1773 .size = 2,
1774 .content = "0\n",
1775 },
1776 {
1777 .path = "/sys/devices/system/cpu/cpu6/cpufreq/related_cpus",
1778 .size = 8,
1779 .content = "4 5 6 7\n",
1780 },
1781 {
1782 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_frequencies",
1783 .size = 239,
1784 .content = "300000 345600 422400 499200 576000 652800 729600 806400 902400 979200 1056000 1132800 1190400 1267200 1344000 1420800 1497600 1574400 1651200 1728000 1804800 1881600 1958400 2035200 2112000 2208000 2265600 2323200 2342400 2361600 2457600 \n",
1785 },
1786 {
1787 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_governors",
1788 .size = 67,
1789 .content = "interactive conservative ondemand userspace powersave performance \n",
1790 },
1791 {
1792 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_cur_freq",
1793 .size = 7,
1794 .content = "806400\n",
1795 },
1796 {
1797 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_driver",
1798 .size = 4,
1799 .content = "msm\n",
1800 },
1801 {
1802 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_governor",
1803 .size = 12,
1804 .content = "interactive\n",
1805 },
1806 {
1807 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_max_freq",
1808 .size = 8,
1809 .content = "2361600\n",
1810 },
1811 {
1812 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq",
1813 .size = 7,
1814 .content = "806400\n",
1815 },
1816 {
1817 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/time_in_state",
1818 .size = 335,
1819 .content =
1820 "300000 0\n"
1821 "345600 0\n"
1822 "422400 0\n"
1823 "499200 0\n"
1824 "576000 0\n"
1825 "652800 0\n"
1826 "729600 0\n"
1827 "806400 14202\n"
1828 "902400 99\n"
1829 "979200 82\n"
1830 "1056000 146\n"
1831 "1132800 49\n"
1832 "1190400 30\n"
1833 "1267200 55\n"
1834 "1344000 54\n"
1835 "1420800 52\n"
1836 "1497600 79\n"
1837 "1574400 1010\n"
1838 "1651200 78\n"
1839 "1728000 80\n"
1840 "1804800 77\n"
1841 "1881600 68\n"
1842 "1958400 212\n"
1843 "2035200 126\n"
1844 "2112000 75\n"
1845 "2208000 76\n"
1846 "2265600 95\n"
1847 "2323200 32\n"
1848 "2342400 8\n"
1849 "2361600 7145\n"
1850 "2457600 2180\n",
1851 },
1852 {
1853 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/total_trans",
1854 .size = 5,
1855 .content = "1755\n",
1856 },
1857 {
1858 .path = "/sys/devices/system/cpu/cpu6/topology/core_id",
1859 .size = 2,
1860 .content = "2\n",
1861 },
1862 {
1863 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings",
1864 .size = 3,
1865 .content = "f0\n",
1866 },
1867 {
1868 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings_list",
1869 .size = 4,
1870 .content = "4-7\n",
1871 },
1872 {
1873 .path = "/sys/devices/system/cpu/cpu6/topology/physical_package_id",
1874 .size = 2,
1875 .content = "1\n",
1876 },
1877 {
1878 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings",
1879 .size = 3,
1880 .content = "40\n",
1881 },
1882 {
1883 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list",
1884 .size = 2,
1885 .content = "6\n",
1886 },
1887 {
1888 .path = "/sys/devices/system/cpu/cpu6/cache/index0/allocation_policy",
1889 .size = 18,
1890 .content = "ReadWriteAllocate\n",
1891 },
1892 {
1893 .path = "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size",
1894 .size = 3,
1895 .content = "64\n",
1896 },
1897 {
1898 .path = "/sys/devices/system/cpu/cpu6/cache/index0/level",
1899 .size = 2,
1900 .content = "1\n",
1901 },
1902 {
1903 .path = "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets",
1904 .size = 3,
1905 .content = "64\n",
1906 },
1907 {
1908 .path = "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list",
1909 .size = 2,
1910 .content = "6\n",
1911 },
1912 {
1913 .path = "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map",
1914 .size = 3,
1915 .content = "40\n",
1916 },
1917 {
1918 .path = "/sys/devices/system/cpu/cpu6/cache/index0/size",
1919 .size = 4,
1920 .content = "64K\n",
1921 },
1922 {
1923 .path = "/sys/devices/system/cpu/cpu6/cache/index0/type",
1924 .size = 5,
1925 .content = "Data\n",
1926 },
1927 {
1928 .path = "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity",
1929 .size = 3,
1930 .content = "16\n",
1931 },
1932 {
1933 .path = "/sys/devices/system/cpu/cpu6/cache/index0/write_policy",
1934 .size = 10,
1935 .content = "WriteBack\n",
1936 },
1937 {
1938 .path = "/sys/devices/system/cpu/cpu6/cache/index1/allocation_policy",
1939 .size = 13,
1940 .content = "ReadAllocate\n",
1941 },
1942 {
1943 .path = "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size",
1944 .size = 3,
1945 .content = "64\n",
1946 },
1947 {
1948 .path = "/sys/devices/system/cpu/cpu6/cache/index1/level",
1949 .size = 2,
1950 .content = "1\n",
1951 },
1952 {
1953 .path = "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets",
1954 .size = 4,
1955 .content = "256\n",
1956 },
1957 {
1958 .path = "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list",
1959 .size = 2,
1960 .content = "6\n",
1961 },
1962 {
1963 .path = "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map",
1964 .size = 3,
1965 .content = "40\n",
1966 },
1967 {
1968 .path = "/sys/devices/system/cpu/cpu6/cache/index1/size",
1969 .size = 4,
1970 .content = "64K\n",
1971 },
1972 {
1973 .path = "/sys/devices/system/cpu/cpu6/cache/index1/type",
1974 .size = 12,
1975 .content = "Instruction\n",
1976 },
1977 {
1978 .path = "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity",
1979 .size = 2,
1980 .content = "4\n",
1981 },
1982 {
1983 .path = "/sys/devices/system/cpu/cpu6/cache/index2/allocation_policy",
1984 .size = 18,
1985 .content = "ReadWriteAllocate\n",
1986 },
1987 {
1988 .path = "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size",
1989 .size = 3,
1990 .content = "64\n",
1991 },
1992 {
1993 .path = "/sys/devices/system/cpu/cpu6/cache/index2/level",
1994 .size = 2,
1995 .content = "2\n",
1996 },
1997 {
1998 .path = "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets",
1999 .size = 5,
2000 .content = "2048\n",
2001 },
2002 {
2003 .path = "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list",
2004 .size = 4,
2005 .content = "4-7\n",
2006 },
2007 {
2008 .path = "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map",
2009 .size = 3,
2010 .content = "f0\n",
2011 },
2012 {
2013 .path = "/sys/devices/system/cpu/cpu6/cache/index2/size",
2014 .size = 6,
2015 .content = "2048K\n",
2016 },
2017 {
2018 .path = "/sys/devices/system/cpu/cpu6/cache/index2/type",
2019 .size = 8,
2020 .content = "Unified\n",
2021 },
2022 {
2023 .path = "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity",
2024 .size = 3,
2025 .content = "16\n",
2026 },
2027 {
2028 .path = "/sys/devices/system/cpu/cpu6/cache/index2/write_policy",
2029 .size = 10,
2030 .content = "WriteBack\n",
2031 },
2032 {
2033 .path = "/sys/devices/system/cpu/cpu7/cpuidle/driver/name",
2034 .size = 9,
2035 .content = "msm_idle\n",
2036 },
2037 {
2038 .path = "/sys/devices/system/cpu/cpu7/cpufreq/affected_cpus",
2039 .size = 8,
2040 .content = "4 5 6 7\n",
2041 },
2042 {
2043 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_max_freq",
2044 .size = 8,
2045 .content = "2457600\n",
2046 },
2047 {
2048 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_min_freq",
2049 .size = 7,
2050 .content = "300000\n",
2051 },
2052 {
2053 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_transition_latency",
2054 .size = 2,
2055 .content = "0\n",
2056 },
2057 {
2058 .path = "/sys/devices/system/cpu/cpu7/cpufreq/related_cpus",
2059 .size = 8,
2060 .content = "4 5 6 7\n",
2061 },
2062 {
2063 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_frequencies",
2064 .size = 239,
2065 .content = "300000 345600 422400 499200 576000 652800 729600 806400 902400 979200 1056000 1132800 1190400 1267200 1344000 1420800 1497600 1574400 1651200 1728000 1804800 1881600 1958400 2035200 2112000 2208000 2265600 2323200 2342400 2361600 2457600 \n",
2066 },
2067 {
2068 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_governors",
2069 .size = 67,
2070 .content = "interactive conservative ondemand userspace powersave performance \n",
2071 },
2072 {
2073 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_cur_freq",
2074 .size = 7,
2075 .content = "806400\n",
2076 },
2077 {
2078 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_driver",
2079 .size = 4,
2080 .content = "msm\n",
2081 },
2082 {
2083 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_governor",
2084 .size = 12,
2085 .content = "interactive\n",
2086 },
2087 {
2088 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_max_freq",
2089 .size = 8,
2090 .content = "2361600\n",
2091 },
2092 {
2093 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq",
2094 .size = 7,
2095 .content = "806400\n",
2096 },
2097 {
2098 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/time_in_state",
2099 .size = 335,
2100 .content =
2101 "300000 0\n"
2102 "345600 0\n"
2103 "422400 0\n"
2104 "499200 0\n"
2105 "576000 0\n"
2106 "652800 0\n"
2107 "729600 0\n"
2108 "806400 14422\n"
2109 "902400 99\n"
2110 "979200 82\n"
2111 "1056000 146\n"
2112 "1132800 49\n"
2113 "1190400 30\n"
2114 "1267200 55\n"
2115 "1344000 54\n"
2116 "1420800 52\n"
2117 "1497600 79\n"
2118 "1574400 1010\n"
2119 "1651200 78\n"
2120 "1728000 80\n"
2121 "1804800 77\n"
2122 "1881600 68\n"
2123 "1958400 212\n"
2124 "2035200 126\n"
2125 "2112000 75\n"
2126 "2208000 76\n"
2127 "2265600 95\n"
2128 "2323200 32\n"
2129 "2342400 8\n"
2130 "2361600 7145\n"
2131 "2457600 2180\n",
2132 },
2133 {
2134 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/total_trans",
2135 .size = 5,
2136 .content = "1755\n",
2137 },
2138 {
2139 .path = "/sys/devices/system/cpu/cpu7/topology/core_id",
2140 .size = 2,
2141 .content = "3\n",
2142 },
2143 {
2144 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings",
2145 .size = 3,
2146 .content = "f0\n",
2147 },
2148 {
2149 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings_list",
2150 .size = 4,
2151 .content = "4-7\n",
2152 },
2153 {
2154 .path = "/sys/devices/system/cpu/cpu7/topology/physical_package_id",
2155 .size = 2,
2156 .content = "1\n",
2157 },
2158 {
2159 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings",
2160 .size = 3,
2161 .content = "80\n",
2162 },
2163 {
2164 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list",
2165 .size = 2,
2166 .content = "7\n",
2167 },
2168 {
2169 .path = "/sys/devices/system/cpu/cpu7/cache/index0/allocation_policy",
2170 .size = 18,
2171 .content = "ReadWriteAllocate\n",
2172 },
2173 {
2174 .path = "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size",
2175 .size = 3,
2176 .content = "64\n",
2177 },
2178 {
2179 .path = "/sys/devices/system/cpu/cpu7/cache/index0/level",
2180 .size = 2,
2181 .content = "1\n",
2182 },
2183 {
2184 .path = "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets",
2185 .size = 3,
2186 .content = "64\n",
2187 },
2188 {
2189 .path = "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list",
2190 .size = 2,
2191 .content = "7\n",
2192 },
2193 {
2194 .path = "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map",
2195 .size = 3,
2196 .content = "80\n",
2197 },
2198 {
2199 .path = "/sys/devices/system/cpu/cpu7/cache/index0/size",
2200 .size = 4,
2201 .content = "64K\n",
2202 },
2203 {
2204 .path = "/sys/devices/system/cpu/cpu7/cache/index0/type",
2205 .size = 5,
2206 .content = "Data\n",
2207 },
2208 {
2209 .path = "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity",
2210 .size = 3,
2211 .content = "16\n",
2212 },
2213 {
2214 .path = "/sys/devices/system/cpu/cpu7/cache/index0/write_policy",
2215 .size = 10,
2216 .content = "WriteBack\n",
2217 },
2218 {
2219 .path = "/sys/devices/system/cpu/cpu7/cache/index1/allocation_policy",
2220 .size = 13,
2221 .content = "ReadAllocate\n",
2222 },
2223 {
2224 .path = "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size",
2225 .size = 3,
2226 .content = "64\n",
2227 },
2228 {
2229 .path = "/sys/devices/system/cpu/cpu7/cache/index1/level",
2230 .size = 2,
2231 .content = "1\n",
2232 },
2233 {
2234 .path = "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets",
2235 .size = 4,
2236 .content = "256\n",
2237 },
2238 {
2239 .path = "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list",
2240 .size = 2,
2241 .content = "7\n",
2242 },
2243 {
2244 .path = "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map",
2245 .size = 3,
2246 .content = "80\n",
2247 },
2248 {
2249 .path = "/sys/devices/system/cpu/cpu7/cache/index1/size",
2250 .size = 4,
2251 .content = "64K\n",
2252 },
2253 {
2254 .path = "/sys/devices/system/cpu/cpu7/cache/index1/type",
2255 .size = 12,
2256 .content = "Instruction\n",
2257 },
2258 {
2259 .path = "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity",
2260 .size = 2,
2261 .content = "4\n",
2262 },
2263 {
2264 .path = "/sys/devices/system/cpu/cpu7/cache/index2/allocation_policy",
2265 .size = 18,
2266 .content = "ReadWriteAllocate\n",
2267 },
2268 {
2269 .path = "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size",
2270 .size = 3,
2271 .content = "64\n",
2272 },
2273 {
2274 .path = "/sys/devices/system/cpu/cpu7/cache/index2/level",
2275 .size = 2,
2276 .content = "2\n",
2277 },
2278 {
2279 .path = "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets",
2280 .size = 5,
2281 .content = "2048\n",
2282 },
2283 {
2284 .path = "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list",
2285 .size = 4,
2286 .content = "4-7\n",
2287 },
2288 {
2289 .path = "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map",
2290 .size = 3,
2291 .content = "f0\n",
2292 },
2293 {
2294 .path = "/sys/devices/system/cpu/cpu7/cache/index2/size",
2295 .size = 6,
2296 .content = "2048K\n",
2297 },
2298 {
2299 .path = "/sys/devices/system/cpu/cpu7/cache/index2/type",
2300 .size = 8,
2301 .content = "Unified\n",
2302 },
2303 {
2304 .path = "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity",
2305 .size = 3,
2306 .content = "16\n",
2307 },
2308 {
2309 .path = "/sys/devices/system/cpu/cpu7/cache/index2/write_policy",
2310 .size = 10,
2311 .content = "WriteBack\n",
2312 },
2313 { NULL },
2314};
2315#ifdef __ANDROID__
2316struct cpuinfo_mock_property properties[] = {
2317 {
2318 .key = "DEVICE_PROVISIONED",
2319 .value = "1",
2320 },
2321 {
2322 .key = "af.fast_track_multiplier",
2323 .value = "2",
2324 },
2325 {
2326 .key = "audio.cts.media",
2327 .value = "false",
2328 },
2329 {
2330 .key = "audio.deep_buffer.media",
2331 .value = "true",
2332 },
2333 {
2334 .key = "audio.offload.min.duration.secs",
2335 .value = "30",
2336 },
2337 {
2338 .key = "audio.offload.video",
2339 .value = "true",
2340 },
2341 {
2342 .key = "bt.max.hfpclient.connections",
2343 .value = "1",
2344 },
2345 {
2346 .key = "dalvik.vm.appimageformat",
2347 .value = "lz4",
2348 },
2349 {
2350 .key = "dalvik.vm.dex2oat-Xms",
2351 .value = "64m",
2352 },
2353 {
2354 .key = "dalvik.vm.dex2oat-Xmx",
2355 .value = "512m",
2356 },
2357 {
2358 .key = "dalvik.vm.dexopt.secondary",
2359 .value = "true",
2360 },
2361 {
2362 .key = "dalvik.vm.heapgrowthlimit",
2363 .value = "256m",
2364 },
2365 {
2366 .key = "dalvik.vm.heapmaxfree",
2367 .value = "8m",
2368 },
2369 {
2370 .key = "dalvik.vm.heapminfree",
2371 .value = "512k",
2372 },
2373 {
2374 .key = "dalvik.vm.heapsize",
2375 .value = "512m",
2376 },
2377 {
2378 .key = "dalvik.vm.heapstartsize",
2379 .value = "8m",
2380 },
2381 {
2382 .key = "dalvik.vm.heaptargetutilization",
2383 .value = "0.75",
2384 },
2385 {
2386 .key = "dalvik.vm.image-dex2oat-Xms",
2387 .value = "64m",
2388 },
2389 {
2390 .key = "dalvik.vm.image-dex2oat-Xmx",
2391 .value = "64m",
2392 },
2393 {
2394 .key = "dalvik.vm.isa.arm.features",
2395 .value = "default",
2396 },
2397 {
2398 .key = "dalvik.vm.isa.arm.variant",
2399 .value = "cortex-a9",
2400 },
2401 {
2402 .key = "dalvik.vm.isa.arm64.features",
2403 .value = "default",
2404 },
2405 {
2406 .key = "dalvik.vm.isa.arm64.variant",
2407 .value = "generic",
2408 },
2409 {
2410 .key = "dalvik.vm.stack-trace-file",
2411 .value = "/data/anr/traces.txt",
2412 },
2413 {
2414 .key = "dalvik.vm.usejit",
2415 .value = "true",
2416 },
2417 {
2418 .key = "dalvik.vm.usejitprofiles",
2419 .value = "true",
2420 },
2421 {
2422 .key = "debug.atrace.tags.enableflags",
2423 .value = "0",
2424 },
2425 {
2426 .key = "debug.force_rtl",
2427 .value = "0",
2428 },
2429 {
2430 .key = "debug.gralloc.enable_fb_ubwc",
2431 .value = "1",
2432 },
2433 {
2434 .key = "debug.gralloc.gfx_ubwc_disable",
2435 .value = "0",
2436 },
2437 {
2438 .key = "debug.sf.dump",
2439 .value = "0",
2440 },
2441 {
2442 .key = "debug.sf.dump.enable",
2443 .value = "true",
2444 },
2445 {
2446 .key = "debug.sf.dump.external",
2447 .value = "true",
2448 },
2449 {
2450 .key = "debug.sf.dump.primary",
2451 .value = "true",
2452 },
2453 {
2454 .key = "debug.sf.enable_hwc_vds",
2455 .value = "1",
2456 },
2457 {
2458 .key = "debug.sf.hw",
2459 .value = "1",
2460 },
2461 {
2462 .key = "debug.sf.latch_unsignaled",
2463 .value = "1",
2464 },
2465 {
2466 .key = "dev.bootcomplete",
2467 .value = "1",
2468 },
2469 {
2470 .key = "dev.pm.dyn_samplingrate",
2471 .value = "1",
2472 },
2473 {
2474 .key = "drm.service.enabled",
2475 .value = "true",
2476 },
2477 {
2478 .key = "gsm.current.phone-type",
2479 .value = "1,1",
2480 },
2481 {
2482 .key = "gsm.network.type",
2483 .value = "Unknown,Unknown",
2484 },
2485 {
2486 .key = "gsm.operator.alpha",
2487 .value = "",
2488 },
2489 {
2490 .key = "gsm.operator.iso-country",
2491 .value = "",
2492 },
2493 {
2494 .key = "gsm.operator.isroaming",
2495 .value = "false,false",
2496 },
2497 {
2498 .key = "gsm.operator.numeric",
2499 .value = "",
2500 },
2501 {
2502 .key = "gsm.sim.operator.alpha",
2503 .value = ",",
2504 },
2505 {
2506 .key = "gsm.sim.operator.iso-country",
2507 .value = ",",
2508 },
2509 {
2510 .key = "gsm.sim.operator.numeric",
2511 .value = ",",
2512 },
2513 {
2514 .key = "gsm.sim.state",
2515 .value = "ABSENT,ABSENT",
2516 },
2517 {
2518 .key = "gsm.version.baseband",
2519 .value = "MPSS.AT.2.0.c4.7-00070-8998_GEN_PACK-2.130961.1.131284.2",
2520 },
2521 {
2522 .key = "gsm.version.baseband1",
2523 .value = "MPSS.AT.2.0.c4.7-00070-8998_GEN_PACK-2.130961.1.131284.2",
2524 },
2525 {
2526 .key = "gsm.version.ril-impl",
2527 .value = "Qualcomm RIL 1.0",
2528 },
2529 {
2530 .key = "hwservicemanager.ready",
2531 .value = "true",
2532 },
2533 {
2534 .key = "init.svc.OPNetlinkService",
2535 .value = "running",
2536 },
2537 {
2538 .key = "init.svc.adbd",
2539 .value = "running",
2540 },
2541 {
2542 .key = "init.svc.adsprpcd",
2543 .value = "running",
2544 },
2545 {
2546 .key = "init.svc.audio-hal-2-0",
2547 .value = "running",
2548 },
2549 {
2550 .key = "init.svc.audioserver",
2551 .value = "running",
2552 },
2553 {
2554 .key = "init.svc.bluetooth-1-0",
2555 .value = "running",
2556 },
2557 {
2558 .key = "init.svc.bootanim",
2559 .value = "stopped",
2560 },
2561 {
2562 .key = "init.svc.camera-provider-2-4",
2563 .value = "running",
2564 },
2565 {
2566 .key = "init.svc.cameraserver",
2567 .value = "running",
2568 },
2569 {
2570 .key = "init.svc.cnd",
2571 .value = "running",
2572 },
2573 {
2574 .key = "init.svc.cnss-daemon",
2575 .value = "running",
2576 },
2577 {
2578 .key = "init.svc.configstore-hal-1-0",
2579 .value = "running",
2580 },
2581 {
2582 .key = "init.svc.crashdata-sh",
2583 .value = "stopped",
2584 },
2585 {
2586 .key = "init.svc.dashd",
2587 .value = "running",
2588 },
2589 {
2590 .key = "init.svc.display-color-hal-1-0",
2591 .value = "running",
2592 },
2593 {
2594 .key = "init.svc.dpmQmiMgr",
2595 .value = "running",
2596 },
2597 {
2598 .key = "init.svc.dpmd",
2599 .value = "running",
2600 },
2601 {
2602 .key = "init.svc.drm",
2603 .value = "running",
2604 },
2605 {
2606 .key = "init.svc.drm-hal-1-0",
2607 .value = "running",
2608 },
2609 {
2610 .key = "init.svc.drm-widevine-hal-1-0",
2611 .value = "running",
2612 },
2613 {
2614 .key = "init.svc.energy-awareness",
2615 .value = "stopped",
2616 },
2617 {
2618 .key = "init.svc.faceulnative",
2619 .value = "running",
2620 },
2621 {
2622 .key = "init.svc.filebuilderd",
2623 .value = "stopped",
2624 },
2625 {
2626 .key = "init.svc.flash_recovery",
2627 .value = "stopped",
2628 },
2629 {
2630 .key = "init.svc.fps_hal",
2631 .value = "running",
2632 },
2633 {
2634 .key = "init.svc.gatekeeper-1-0",
2635 .value = "running",
2636 },
2637 {
2638 .key = "init.svc.gatekeeperd",
2639 .value = "running",
2640 },
2641 {
2642 .key = "init.svc.gralloc-2-0",
2643 .value = "running",
2644 },
2645 {
2646 .key = "init.svc.health-hal-1-0",
2647 .value = "running",
2648 },
2649 {
2650 .key = "init.svc.healthd",
2651 .value = "running",
2652 },
2653 {
2654 .key = "init.svc.hidl_memory",
2655 .value = "running",
2656 },
2657 {
2658 .key = "init.svc.hostapd",
2659 .value = "stopped",
2660 },
2661 {
2662 .key = "init.svc.hostapd_dual",
2663 .value = "stopped",
2664 },
2665 {
2666 .key = "init.svc.hvdcp_opti",
2667 .value = "running",
2668 },
2669 {
2670 .key = "init.svc.hwcomposer-2-1",
2671 .value = "running",
2672 },
2673 {
2674 .key = "init.svc.hwservicemanager",
2675 .value = "running",
2676 },
2677 {
2678 .key = "init.svc.ifaadaemon",
2679 .value = "running",
2680 },
2681 {
2682 .key = "init.svc.ims_rtp_daemon",
2683 .value = "running",
2684 },
2685 {
2686 .key = "init.svc.imsdatadaemon",
2687 .value = "running",
2688 },
2689 {
2690 .key = "init.svc.imsqmidaemon",
2691 .value = "running",
2692 },
2693 {
2694 .key = "init.svc.installd",
2695 .value = "running",
2696 },
2697 {
2698 .key = "init.svc.ipacm",
2699 .value = "running",
2700 },
2701 {
2702 .key = "init.svc.ipacm-diag",
2703 .value = "running",
2704 },
2705 {
2706 .key = "init.svc.irsc_util",
2707 .value = "stopped",
2708 },
2709 {
2710 .key = "init.svc.keymaster-3-0",
2711 .value = "running",
2712 },
2713 {
2714 .key = "init.svc.keystore",
2715 .value = "running",
2716 },
2717 {
2718 .key = "init.svc.light-hal-2-0",
2719 .value = "running",
2720 },
2721 {
2722 .key = "init.svc.lmkd",
2723 .value = "running",
2724 },
2725 {
2726 .key = "init.svc.loc_launcher",
2727 .value = "running",
2728 },
2729 {
2730 .key = "init.svc.logd",
2731 .value = "running",
2732 },
2733 {
2734 .key = "init.svc.logd-reinit",
2735 .value = "stopped",
2736 },
2737 {
2738 .key = "init.svc.media",
2739 .value = "running",
2740 },
2741 {
2742 .key = "init.svc.mediacodec",
2743 .value = "running",
2744 },
2745 {
2746 .key = "init.svc.mediadrm",
2747 .value = "running",
2748 },
2749 {
2750 .key = "init.svc.mediaextractor",
2751 .value = "running",
2752 },
2753 {
2754 .key = "init.svc.mediametrics",
2755 .value = "running",
2756 },
2757 {
2758 .key = "init.svc.memtrack-hal-1-0",
2759 .value = "running",
2760 },
2761 {
2762 .key = "init.svc.mlid",
2763 .value = "running",
2764 },
2765 {
2766 .key = "init.svc.netd",
2767 .value = "running",
2768 },
2769 {
2770 .key = "init.svc.netmgrd",
2771 .value = "running",
2772 },
2773 {
2774 .key = "init.svc.oem_audio_device",
2775 .value = "stopped",
2776 },
2777 {
2778 .key = "init.svc.oemlogkit",
2779 .value = "running",
2780 },
2781 {
2782 .key = "init.svc.pd_mapper",
2783 .value = "running",
2784 },
2785 {
2786 .key = "init.svc.per_mgr",
2787 .value = "running",
2788 },
2789 {
2790 .key = "init.svc.per_proxy",
2791 .value = "running",
2792 },
2793 {
2794 .key = "init.svc.perf-hal-1-0",
2795 .value = "running",
2796 },
2797 {
2798 .key = "init.svc.port-bridge",
2799 .value = "running",
2800 },
2801 {
2802 .key = "init.svc.power-hal-1-0",
2803 .value = "running",
2804 },
2805 {
2806 .key = "init.svc.ppd",
2807 .value = "running",
2808 },
2809 {
2810 .key = "init.svc.qcom-c_core-sh",
2811 .value = "stopped",
2812 },
2813 {
2814 .key = "init.svc.qcom-c_main-sh",
2815 .value = "stopped",
2816 },
2817 {
2818 .key = "init.svc.qcom-post-boot",
2819 .value = "stopped",
2820 },
2821 {
2822 .key = "init.svc.qcom-sh",
2823 .value = "stopped",
2824 },
2825 {
2826 .key = "init.svc.qcom-usb-sh",
2827 .value = "stopped",
2828 },
2829 {
2830 .key = "init.svc.qdutils_disp-1-0",
2831 .value = "running",
2832 },
2833 {
2834 .key = "init.svc.qseecomd",
2835 .value = "running",
2836 },
2837 {
2838 .key = "init.svc.qteeconnector-hal-1-0",
2839 .value = "running",
2840 },
2841 {
2842 .key = "init.svc.qti",
2843 .value = "running",
2844 },
2845 {
2846 .key = "init.svc.qti_esepowermanager_service",
2847 .value = "running",
2848 },
2849 {
2850 .key = "init.svc.qti_gnss_service",
2851 .value = "running",
2852 },
2853 {
2854 .key = "init.svc.qvop-daemon",
2855 .value = "running",
2856 },
2857 {
2858 .key = "init.svc.qvrd",
2859 .value = "running",
2860 },
2861 {
2862 .key = "init.svc.ril-daemon",
2863 .value = "running",
2864 },
2865 {
2866 .key = "init.svc.ril-daemon2",
2867 .value = "running",
2868 },
2869 {
2870 .key = "init.svc.rmt_storage",
2871 .value = "running",
2872 },
2873 {
2874 .key = "init.svc.self-init",
2875 .value = "stopped",
2876 },
2877 {
2878 .key = "init.svc.sensor-sh",
2879 .value = "stopped",
2880 },
2881 {
2882 .key = "init.svc.sensors",
2883 .value = "running",
2884 },
2885 {
2886 .key = "init.svc.sensors-hal-1-0",
2887 .value = "running",
2888 },
2889 {
2890 .key = "init.svc.servicemanager",
2891 .value = "running",
2892 },
2893 {
2894 .key = "init.svc.smartadjust",
2895 .value = "running",
2896 },
2897 {
2898 .key = "init.svc.storaged",
2899 .value = "running",
2900 },
2901 {
2902 .key = "init.svc.surfaceflinger",
2903 .value = "running",
2904 },
2905 {
2906 .key = "init.svc.tftp_server",
2907 .value = "running",
2908 },
2909 {
2910 .key = "init.svc.thermal-engine",
2911 .value = "running",
2912 },
2913 {
2914 .key = "init.svc.thermal-hal-1-0",
2915 .value = "running",
2916 },
2917 {
2918 .key = "init.svc.time_daemon",
2919 .value = "running",
2920 },
2921 {
2922 .key = "init.svc.tombstoned",
2923 .value = "running",
2924 },
2925 {
2926 .key = "init.svc.tui_comm-1-0",
2927 .value = "running",
2928 },
2929 {
2930 .key = "init.svc.ueventd",
2931 .value = "running",
2932 },
2933 {
2934 .key = "init.svc.usb-hal-1-0",
2935 .value = "running",
2936 },
2937 {
2938 .key = "init.svc.vendor.imsrcsservice",
2939 .value = "running",
2940 },
2941 {
2942 .key = "init.svc.vendor.msm_irqbalance",
2943 .value = "running",
2944 },
2945 {
2946 .key = "init.svc.vibrator-1-0",
2947 .value = "running",
2948 },
2949 {
2950 .key = "init.svc.vndservicemanager",
2951 .value = "running",
2952 },
2953 {
2954 .key = "init.svc.vold",
2955 .value = "running",
2956 },
2957 {
2958 .key = "init.svc.vr-1-0",
2959 .value = "running",
2960 },
2961 {
2962 .key = "init.svc.webview_zygote32",
2963 .value = "running",
2964 },
2965 {
2966 .key = "init.svc.wifi_hal_legacy",
2967 .value = "running",
2968 },
2969 {
2970 .key = "init.svc.wificond",
2971 .value = "running",
2972 },
2973 {
2974 .key = "init.svc.wpa_supplicant",
2975 .value = "running",
2976 },
2977 {
2978 .key = "init.svc.zygote",
2979 .value = "running",
2980 },
2981 {
2982 .key = "init.svc.zygote_secondary",
2983 .value = "running",
2984 },
2985 {
2986 .key = "keyguard.no_require_sim",
2987 .value = "true",
2988 },
2989 {
2990 .key = "log.tag.BeamManager",
2991 .value = "INFO",
2992 },
2993 {
2994 .key = "log.tag.BeamShareActivity",
2995 .value = "INFO",
2996 },
2997 {
2998 .key = "log.tag.BluetoothHidDev",
2999 .value = "INFO",
3000 },
3001 {
3002 .key = "log.tag.BluetoothHidHost",
3003 .value = "INFO",
3004 },
3005 {
3006 .key = "log.tag.BluetoothMap",
3007 .value = "INFO",
3008 },
3009 {
3010 .key = "log.tag.BluetoothOpp",
3011 .value = "INFO",
3012 },
3013 {
3014 .key = "log.tag.BluetoothPan",
3015 .value = "INFO",
3016 },
3017 {
3018 .key = "log.tag.BluetoothPbap",
3019 .value = "INFO",
3020 },
3021 {
3022 .key = "log.tag.BluetoothPbapVcardManager",
3023 .value = "INFO",
3024 },
3025 {
3026 .key = "log.tag.BluetoothPeripheralHandover",
3027 .value = "INFO",
3028 },
3029 {
3030 .key = "log.tag.BluetoothSap",
3031 .value = "INFO",
3032 },
3033 {
3034 .key = "log.tag.BluetoothSocket",
3035 .value = "INFO",
3036 },
3037 {
3038 .key = "log.tag.DockService",
3039 .value = "INFO",
3040 },
3041 {
3042 .key = "log.tag.FlpHardwareProvider",
3043 .value = "INFO",
3044 },
3045 {
3046 .key = "log.tag.FlpServiceProvider",
3047 .value = "INFO",
3048 },
3049 {
3050 .key = "log.tag.ForegroundUtils",
3051 .value = "INFO",
3052 },
3053 {
3054 .key = "log.tag.FusedLocationProvider",
3055 .value = "INFO",
3056 },
3057 {
3058 .key = "log.tag.GNPProxy",
3059 .value = "INFO",
3060 },
3061 {
3062 .key = "log.tag.GeoFenceKeeper",
3063 .value = "INFO",
3064 },
3065 {
3066 .key = "log.tag.GeoFenceService",
3067 .value = "INFO",
3068 },
3069 {
3070 .key = "log.tag.GeofenceManager",
3071 .value = "INFO",
3072 },
3073 {
3074 .key = "log.tag.GeofenceServiceProvider",
3075 .value = "INFO",
3076 },
3077 {
3078 .key = "log.tag.GmsNetworkLocationProvi",
3079 .value = "INFO",
3080 },
3081 {
3082 .key = "log.tag.GnssLocationProvider",
3083 .value = "INFO",
3084 },
3085 {
3086 .key = "log.tag.GpsXtraDownloader",
3087 .value = "INFO",
3088 },
3089 {
3090 .key = "log.tag.GpsXtraDownloader-Q",
3091 .value = "INFO",
3092 },
3093 {
3094 .key = "log.tag.HandoverClient",
3095 .value = "INFO",
3096 },
3097 {
3098 .key = "log.tag.HandoverServer",
3099 .value = "INFO",
3100 },
3101 {
3102 .key = "log.tag.Handsfree",
3103 .value = "INFO",
3104 },
3105 {
3106 .key = "log.tag.IZatManager",
3107 .value = "INFO",
3108 },
3109 {
3110 .key = "log.tag.InPostcard",
3111 .value = "INFO",
3112 },
3113 {
3114 .key = "log.tag.IzatProviderBase",
3115 .value = "INFO",
3116 },
3117 {
3118 .key = "log.tag.IzatProviderEngine",
3119 .value = "INFO",
3120 },
3121 {
3122 .key = "log.tag.IzatService",
3123 .value = "INFO",
3124 },
3125 {
3126 .key = "log.tag.IzatServiceBase",
3127 .value = "INFO",
3128 },
3129 {
3130 .key = "log.tag.IzatSettingsInjector",
3131 .value = "INFO",
3132 },
3133 {
3134 .key = "log.tag.LBSSystemMonitorService",
3135 .value = "INFO",
3136 },
3137 {
3138 .key = "log.tag.LocSvc_ApiV02",
3139 .value = "INFO",
3140 },
3141 {
3142 .key = "log.tag.LocSvc_EngAdapter",
3143 .value = "INFO",
3144 },
3145 {
3146 .key = "log.tag.LocSvc_LBSApiBase",
3147 .value = "INFO",
3148 },
3149 {
3150 .key = "log.tag.LocSvc_LBSApiV02",
3151 .value = "INFO",
3152 },
3153 {
3154 .key = "log.tag.LocSvc_LBSProxy",
3155 .value = "INFO",
3156 },
3157 {
3158 .key = "log.tag.LocSvc_LocUlpProxy",
3159 .value = "INFO",
3160 },
3161 {
3162 .key = "log.tag.LocSvc_NiA",
3163 .value = "INFO",
3164 },
3165 {
3166 .key = "log.tag.LocSvc_NiH",
3167 .value = "INFO",
3168 },
3169 {
3170 .key = "log.tag.LocSvc_afw",
3171 .value = "INFO",
3172 },
3173 {
3174 .key = "log.tag.LocSvc_api_v02",
3175 .value = "INFO",
3176 },
3177 {
3178 .key = "log.tag.LocSvc_eng",
3179 .value = "INFO",
3180 },
3181 {
3182 .key = "log.tag.LocSvc_ext",
3183 .value = "INFO",
3184 },
3185 {
3186 .key = "log.tag.LocSvc_java",
3187 .value = "INFO",
3188 },
3189 {
3190 .key = "log.tag.LocSvc_jni",
3191 .value = "INFO",
3192 },
3193 {
3194 .key = "log.tag.LocSvc_launcher",
3195 .value = "INFO",
3196 },
3197 {
3198 .key = "log.tag.LocSvc_libulp",
3199 .value = "INFO",
3200 },
3201 {
3202 .key = "log.tag.LocationManagerService",
3203 .value = "INFO",
3204 },
3205 {
3206 .key = "log.tag.LocationServiceReceiver",
3207 .value = "INFO",
3208 },
3209 {
3210 .key = "log.tag.LocationSettings",
3211 .value = "INFO",
3212 },
3213 {
3214 .key = "log.tag.LocationSettingsBase",
3215 .value = "INFO",
3216 },
3217 {
3218 .key = "log.tag.MQClient",
3219 .value = "INFO",
3220 },
3221 {
3222 .key = "log.tag.NFC",
3223 .value = "INFO",
3224 },
3225 {
3226 .key = "log.tag.NetworkLocationProvider",
3227 .value = "INFO",
3228 },
3229 {
3230 .key = "log.tag.NetworkLocationService",
3231 .value = "INFO",
3232 },
3233 {
3234 .key = "log.tag.NfcDispatcher",
3235 .value = "INFO",
3236 },
3237 {
3238 .key = "log.tag.NfcHandover",
3239 .value = "INFO",
3240 },
3241 {
3242 .key = "log.tag.NlpProxy",
3243 .value = "INFO",
3244 },
3245 {
3246 .key = "log.tag.NlpProxyProvider",
3247 .value = "INFO",
3248 },
3249 {
3250 .key = "log.tag.NpProxy",
3251 .value = "INFO",
3252 },
3253 {
3254 .key = "log.tag.OsAgent",
3255 .value = "INFO",
3256 },
3257 {
3258 .key = "log.tag.PosMgr",
3259 .value = "INFO",
3260 },
3261 {
3262 .key = "log.tag.QCALOG",
3263 .value = "INFO",
3264 },
3265 {
3266 .key = "log.tag.RilInfoMonitor",
3267 .value = "INFO",
3268 },
3269 {
3270 .key = "log.tag.SapRilReceiver",
3271 .value = "INFO",
3272 },
3273 {
3274 .key = "log.tag.SettingsInjector",
3275 .value = "INFO",
3276 },
3277 {
3278 .key = "log.tag.SnepClient",
3279 .value = "INFO",
3280 },
3281 {
3282 .key = "log.tag.SnepMessenger",
3283 .value = "INFO",
3284 },
3285 {
3286 .key = "log.tag.SnepServer",
3287 .value = "INFO",
3288 },
3289 {
3290 .key = "log.tag.UlpEngine",
3291 .value = "INFO",
3292 },
3293 {
3294 .key = "log.tag.UlpService",
3295 .value = "INFO",
3296 },
3297 {
3298 .key = "log.tag.UnifiedLocationProvider",
3299 .value = "INFO",
3300 },
3301 {
3302 .key = "log.tag.UnifiedLocationService",
3303 .value = "INFO",
3304 },
3305 {
3306 .key = "log.tag.Wiper",
3307 .value = "INFO",
3308 },
3309 {
3310 .key = "log.tag.XTActivity",
3311 .value = "INFO",
3312 },
3313 {
3314 .key = "log.tag.XTBroadcastReceiver",
3315 .value = "INFO",
3316 },
3317 {
3318 .key = "log.tag.XTSettingInjectorSrv",
3319 .value = "INFO",
3320 },
3321 {
3322 .key = "log.tag.XTSrv",
3323 .value = "INFO",
3324 },
3325 {
3326 .key = "log.tag.XTWiFiLP",
3327 .value = "INFO",
3328 },
3329 {
3330 .key = "log.tag.XTWiFiOS",
3331 .value = "INFO",
3332 },
3333 {
3334 .key = "log.tag.XTWiFiZpp",
3335 .value = "INFO",
3336 },
3337 {
3338 .key = "log.tag.gpsone_dmn",
3339 .value = "INFO",
3340 },
3341 {
3342 .key = "media.aac_51_output_enabled",
3343 .value = "true",
3344 },
3345 {
3346 .key = "media.settings.xml",
3347 .value = "/vendor/etc/media_profiles_vendor.xml",
3348 },
3349 {
3350 .key = "media.stagefright.enable-aac",
3351 .value = "true",
3352 },
3353 {
3354 .key = "media.stagefright.enable-http",
3355 .value = "true",
3356 },
3357 {
3358 .key = "media.stagefright.enable-player",
3359 .value = "true",
3360 },
3361 {
3362 .key = "media.stagefright.enable-qcp",
3363 .value = "true",
3364 },
3365 {
3366 .key = "media.stagefright.enable-scan",
3367 .value = "true",
3368 },
3369 {
3370 .key = "mm.enable.qcom_parser",
3371 .value = "16760831",
3372 },
3373 {
3374 .key = "mm.enable.smoothstreaming",
3375 .value = "true",
3376 },
3377 {
3378 .key = "mmp.enable.3g2",
3379 .value = "true",
3380 },
3381 {
3382 .key = "net.bt.name",
3383 .value = "Android",
3384 },
3385 {
3386 .key = "net.hostname",
3387 .value = "OnePlus_5T",
3388 },
3389 {
3390 .key = "net.lte.ims.data.enabled2147483643",
3391 .value = "true",
3392 },
3393 {
3394 .key = "net.lte.ims.data.enabled2147483644",
3395 .value = "true",
3396 },
3397 {
3398 .key = "net.qtaguid_enabled",
3399 .value = "1",
3400 },
3401 {
3402 .key = "net.tcp.2g_init_rwnd",
3403 .value = "10",
3404 },
3405 {
3406 .key = "net.tcp.buffersize.default",
3407 .value = "4096,87380,524288,4096,16384,110208",
3408 },
3409 {
3410 .key = "net.tcp.buffersize.edge",
3411 .value = "4093,26280,35040,4096,16384,35040",
3412 },
3413 {
3414 .key = "net.tcp.buffersize.evdo",
3415 .value = "4094,87380,524288,4096,16384,262144",
3416 },
3417 {
3418 .key = "net.tcp.buffersize.gprs",
3419 .value = "4092,8760,11680,4096,8760,11680",
3420 },
3421 {
3422 .key = "net.tcp.buffersize.hsdpa",
3423 .value = "4094,87380,1220608,4096,16384,1220608",
3424 },
3425 {
3426 .key = "net.tcp.buffersize.hspa",
3427 .value = "4094,87380,1220608,4096,16384,1220608",
3428 },
3429 {
3430 .key = "net.tcp.buffersize.hspap",
3431 .value = "4094,87380,1220608,4096,16384,1220608",
3432 },
3433 {
3434 .key = "net.tcp.buffersize.hsupa",
3435 .value = "4094,87380,1220608,4096,16384,1220608",
3436 },
3437 {
3438 .key = "net.tcp.buffersize.lte",
3439 .value = "2097152,4194304,8388608,262144,524288,1048576",
3440 },
3441 {
3442 .key = "net.tcp.buffersize.umts",
3443 .value = "4094,87380,110208,4096,16384,110208",
3444 },
3445 {
3446 .key = "net.tcp.buffersize.wifi",
3447 .value = "524288,2097152,4194304,262144,524288,1048576",
3448 },
3449 {
3450 .key = "net.tcp.default_init_rwnd",
3451 .value = "60",
3452 },
3453 {
3454 .key = "nfc.app_log_level",
3455 .value = "1",
3456 },
3457 {
3458 .key = "nfc.nxp_log_level_dnld",
3459 .value = "1",
3460 },
3461 {
3462 .key = "nfc.nxp_log_level_extns",
3463 .value = "1",
3464 },
3465 {
3466 .key = "nfc.nxp_log_level_global",
3467 .value = "1",
3468 },
3469 {
3470 .key = "nfc.nxp_log_level_hal",
3471 .value = "1",
3472 },
3473 {
3474 .key = "nfc.nxp_log_level_nci",
3475 .value = "1",
3476 },
3477 {
3478 .key = "nfc.nxp_log_level_tml",
3479 .value = "1",
3480 },
3481 {
3482 .key = "nxpWechatDebugEnable",
3483 .value = "1",
3484 },
3485 {
3486 .key = "oem.device.imeicache0",
3487 .value = "868233036737854",
3488 },
3489 {
3490 .key = "oem.device.imeicache1",
3491 .value = "868233036737847",
3492 },
3493 {
3494 .key = "oem.drm.widevine.level",
3495 .value = "L3",
3496 },
3497 {
3498 .key = "oplib.oneplus_sdk_utils",
3499 .value = "0.1.2",
3500 },
3501 {
3502 .key = "oplib.oneplus_sdk_wrapper",
3503 .value = "0.1.0",
3504 },
3505 {
3506 .key = "persist.audio.EuropeanStandard",
3507 .value = "false",
3508 },
3509 {
3510 .key = "persist.backup.ntpServer",
3511 .value = "\"0.pool.ntp.org\"",
3512 },
3513 {
3514 .key = "persist.cne.feature",
3515 .value = "1",
3516 },
3517 {
3518 .key = "persist.crash.cnt",
3519 .value = "0",
3520 },
3521 {
3522 .key = "persist.data.df.agg.dl_pkt",
3523 .value = "10",
3524 },
3525 {
3526 .key = "persist.data.df.agg.dl_size",
3527 .value = "4096",
3528 },
3529 {
3530 .key = "persist.data.df.dev_name",
3531 .value = "rmnet_usb0",
3532 },
3533 {
3534 .key = "persist.data.df.dl_mode",
3535 .value = "5",
3536 },
3537 {
3538 .key = "persist.data.df.iwlan_mux",
3539 .value = "9",
3540 },
3541 {
3542 .key = "persist.data.df.mux_count",
3543 .value = "8",
3544 },
3545 {
3546 .key = "persist.data.df.ul_mode",
3547 .value = "5",
3548 },
3549 {
3550 .key = "persist.data.iwlan.enable",
3551 .value = "true",
3552 },
3553 {
3554 .key = "persist.data.mode",
3555 .value = "concurrent",
3556 },
3557 {
3558 .key = "persist.data.netmgrd.qos.enable",
3559 .value = "true",
3560 },
3561 {
3562 .key = "persist.data.wda.enable",
3563 .value = "true",
3564 },
3565 {
3566 .key = "persist.debug.coresight.config",
3567 .value = "none",
3568 },
3569 {
3570 .key = "persist.debug.wfd.enable",
3571 .value = "1",
3572 },
3573 {
3574 .key = "persist.demo.hdmirotationlock",
3575 .value = "false",
3576 },
3577 {
3578 .key = "persist.dirac.acs.controller",
3579 .value = "qem",
3580 },
3581 {
3582 .key = "persist.dpm.feature",
3583 .value = "11",
3584 },
3585 {
3586 .key = "persist.fuse_sdcard",
3587 .value = "true",
3588 },
3589 {
3590 .key = "persist.hwc.enable_vds",
3591 .value = "1",
3592 },
3593 {
3594 .key = "persist.mm.enable.prefetch",
3595 .value = "true",
3596 },
3597 {
3598 .key = "persist.nfc.smartcard.config",
3599 .value = "SIM1,eSE1",
3600 },
3601 {
3602 .key = "persist.oem.dump",
3603 .value = "0",
3604 },
3605 {
3606 .key = "persist.qua.op",
3607 .value = "1656702",
3608 },
3609 {
3610 .key = "persist.radio.adb_log_on",
3611 .value = "0",
3612 },
3613 {
3614 .key = "persist.radio.apm_sim_not_pwdn",
3615 .value = "1",
3616 },
3617 {
3618 .key = "persist.radio.apns_ver_xml",
3619 .value = "8",
3620 },
3621 {
3622 .key = "persist.radio.enhance_ecall",
3623 .value = "true",
3624 },
3625 {
3626 .key = "persist.radio.eons.enabled",
3627 .value = "false",
3628 },
3629 {
3630 .key = "persist.radio.force_on_dc",
3631 .value = "true",
3632 },
3633 {
3634 .key = "persist.radio.hw_mbn_update",
3635 .value = "0",
3636 },
3637 {
3638 .key = "persist.radio.msim.stackid_0",
3639 .value = "0",
3640 },
3641 {
3642 .key = "persist.radio.msim.stackid_1",
3643 .value = "1",
3644 },
3645 {
3646 .key = "persist.radio.multisim.config",
3647 .value = "dsds",
3648 },
3649 {
3650 .key = "persist.radio.reset.rild0",
3651 .value = "0",
3652 },
3653 {
3654 .key = "persist.radio.reset.rild1",
3655 .value = "0",
3656 },
3657 {
3658 .key = "persist.radio.ril_payload_on",
3659 .value = "0",
3660 },
3661 {
3662 .key = "persist.radio.serialno",
3663 .value = "98ce3528",
3664 },
3665 {
3666 .key = "persist.radio.sglte_target",
3667 .value = "0",
3668 },
3669 {
3670 .key = "persist.radio.stack_id_0",
3671 .value = "0",
3672 },
3673 {
3674 .key = "persist.radio.stack_id_1",
3675 .value = "1",
3676 },
3677 {
3678 .key = "persist.radio.start_ota_daemon",
3679 .value = "0",
3680 },
3681 {
3682 .key = "persist.radio.sw_mbn_update",
3683 .value = "0",
3684 },
3685 {
3686 .key = "persist.rild.nitz_long_ons_0",
3687 .value = "",
3688 },
3689 {
3690 .key = "persist.rild.nitz_long_ons_1",
3691 .value = "",
3692 },
3693 {
3694 .key = "persist.rild.nitz_long_ons_2",
3695 .value = "",
3696 },
3697 {
3698 .key = "persist.rild.nitz_long_ons_3",
3699 .value = "",
3700 },
3701 {
3702 .key = "persist.rild.nitz_plmn",
3703 .value = "",
3704 },
3705 {
3706 .key = "persist.rild.nitz_short_ons_0",
3707 .value = "",
3708 },
3709 {
3710 .key = "persist.rild.nitz_short_ons_1",
3711 .value = "",
3712 },
3713 {
3714 .key = "persist.rild.nitz_short_ons_2",
3715 .value = "",
3716 },
3717 {
3718 .key = "persist.rild.nitz_short_ons_3",
3719 .value = "",
3720 },
3721 {
3722 .key = "persist.rmnet.data.enable",
3723 .value = "true",
3724 },
3725 {
3726 .key = "persist.sys.assert.enable",
3727 .value = "false",
3728 },
3729 {
3730 .key = "persist.sys.assert.panic",
3731 .value = "false",
3732 },
3733 {
3734 .key = "persist.sys.bootloader",
3735 .value = "yes",
3736 },
3737 {
3738 .key = "persist.sys.cfu_auto",
3739 .value = "1",
3740 },
3741 {
3742 .key = "persist.sys.cnd.iwlan",
3743 .value = "1",
3744 },
3745 {
3746 .key = "persist.sys.crash",
3747 .value = "yes",
3748 },
3749 {
3750 .key = "persist.sys.dalvik.vm.lib.2",
3751 .value = "libart.so",
3752 },
3753 {
3754 .key = "persist.sys.device_first_boot",
3755 .value = "0",
3756 },
3757 {
3758 .key = "persist.sys.diag.max.size",
3759 .value = "200",
3760 },
3761 {
3762 .key = "persist.sys.dpmd.nsrm",
3763 .value = "1",
3764 },
3765 {
3766 .key = "persist.sys.dpmd.tcm",
3767 .value = "2",
3768 },
3769 {
3770 .key = "persist.sys.embryo.rename",
3771 .value = "0",
3772 },
3773 {
3774 .key = "persist.sys.event",
3775 .value = "yes",
3776 },
3777 {
3778 .key = "persist.sys.font",
3779 .value = "2",
3780 },
3781 {
3782 .key = "persist.sys.force_sw_gles",
3783 .value = "0",
3784 },
3785 {
3786 .key = "persist.sys.idle.soff",
3787 .value = "56,143588",
3788 },
3789 {
3790 .key = "persist.sys.kernel",
3791 .value = "yes",
3792 },
3793 {
3794 .key = "persist.sys.launcher.set",
3795 .value = "true",
3796 },
3797 {
3798 .key = "persist.sys.locale",
3799 .value = "en-US",
3800 },
3801 {
3802 .key = "persist.sys.main",
3803 .value = "yes",
3804 },
3805 {
3806 .key = "persist.sys.oem.region",
3807 .value = "OverSeas",
3808 },
3809 {
3810 .key = "persist.sys.oem_smooth",
3811 .value = "1",
3812 },
3813 {
3814 .key = "persist.sys.pre_bootloader",
3815 .value = "yes",
3816 },
3817 {
3818 .key = "persist.sys.profiler_ms",
3819 .value = "0",
3820 },
3821 {
3822 .key = "persist.sys.public.type",
3823 .value = "daily",
3824 },
3825 {
3826 .key = "persist.sys.qsee",
3827 .value = "yes",
3828 },
3829 {
3830 .key = "persist.sys.qxdm",
3831 .value = "no",
3832 },
3833 {
3834 .key = "persist.sys.radio",
3835 .value = "yes",
3836 },
3837 {
3838 .key = "persist.sys.system",
3839 .value = "yes",
3840 },
3841 {
3842 .key = "persist.sys.theme_first_launch",
3843 .value = "false",
3844 },
3845 {
3846 .key = "persist.sys.theme_version",
3847 .value = "OnePlus5TOxygen_43.O.30_GLO_030_1802230142",
3848 },
3849 {
3850 .key = "persist.sys.timezone",
3851 .value = "America/New_York",
3852 },
3853 {
3854 .key = "persist.sys.usb.config",
3855 .value = "adb",
3856 },
3857 {
3858 .key = "persist.sys.usb.config.extra",
3859 .value = "none",
3860 },
3861 {
3862 .key = "persist.sys.usb.ffbm-00.func",
3863 .value = "diag",
3864 },
3865 {
3866 .key = "persist.sys.usb.ffbm-01.func",
3867 .value = "diag",
3868 },
3869 {
3870 .key = "persist.sys.usb.ffbm-02.func",
3871 .value = "diag",
3872 },
3873 {
3874 .key = "persist.sys.usb.oneplusConfig",
3875 .value = "false",
3876 },
3877 {
3878 .key = "persist.sys.version.lastota",
3879 .value = "OnePlus5TOxygen_43.O.04_GLO_004_1711152324",
3880 },
3881 {
3882 .key = "persist.sys.version.ota",
3883 .value = "OnePlus5TOxygen_43.O.30_GLO_030_1802230142",
3884 },
3885 {
3886 .key = "persist.sys.webview.vmsize",
3887 .value = "114785072",
3888 },
3889 {
3890 .key = "persist.sys.wfd.virtual",
3891 .value = "0",
3892 },
3893 {
3894 .key = "persist.timed.enable",
3895 .value = "true",
3896 },
3897 {
3898 .key = "persist.ts.rtmakeup",
3899 .value = "false",
3900 },
3901 {
3902 .key = "persist.vendor.audio.aanc.enable",
3903 .value = "true",
3904 },
3905 {
3906 .key = "persist.vendor.audio.fluence.speaker",
3907 .value = "true",
3908 },
3909 {
3910 .key = "persist.vendor.audio.fluence.voicecall",
3911 .value = "true",
3912 },
3913 {
3914 .key = "persist.vendor.audio.fluence.voicerec",
3915 .value = "true",
3916 },
3917 {
3918 .key = "persist.vendor.audio.ras.enabled",
3919 .value = "false",
3920 },
3921 {
3922 .key = "persist.vendor.bt.a2dp_offload_cap",
3923 .value = "false",
3924 },
3925 {
3926 .key = "persist.vendor.bt.enable.splita2dp",
3927 .value = "false",
3928 },
3929 {
3930 .key = "persist.vendor.dpm.feature",
3931 .value = "11",
3932 },
3933 {
3934 .key = "persist.vendor.dpm.tcm",
3935 .value = "2",
3936 },
3937 {
3938 .key = "persist.vendor.radio.adb_log_on",
3939 .value = "0",
3940 },
3941 {
3942 .key = "persist.vendor.radio.custom_ecc",
3943 .value = "1",
3944 },
3945 {
3946 .key = "persist.vendor.radio.data_con_rprt",
3947 .value = "1",
3948 },
3949 {
3950 .key = "persist.vendor.radio.data_ltd_sys_ind",
3951 .value = "1",
3952 },
3953 {
3954 .key = "persist.vendor.radio.eons.enabled",
3955 .value = "false",
3956 },
3957 {
3958 .key = "persist.vendor.radio.force_on_dc",
3959 .value = "true",
3960 },
3961 {
3962 .key = "persist.vendor.radio.ignore_dom_time",
3963 .value = "10",
3964 },
3965 {
3966 .key = "persist.vendor.radio.msim.stackid_0",
3967 .value = "0",
3968 },
3969 {
3970 .key = "persist.vendor.radio.msim.stackid_1",
3971 .value = "1",
3972 },
3973 {
3974 .key = "persist.vendor.radio.rat_on",
3975 .value = "combine",
3976 },
3977 {
3978 .key = "persist.vendor.radio.ril_payload_on",
3979 .value = "0",
3980 },
3981 {
3982 .key = "persist.vendor.radio.sglte_target",
3983 .value = "0",
3984 },
3985 {
3986 .key = "persist.vendor.radio.sib16_support",
3987 .value = "1",
3988 },
3989 {
3990 .key = "persist.vendor.radio.stack_id_0",
3991 .value = "0",
3992 },
3993 {
3994 .key = "persist.vendor.radio.stack_id_1",
3995 .value = "1",
3996 },
3997 {
3998 .key = "pm.dexopt.ab-ota",
3999 .value = "speed-profile",
4000 },
4001 {
4002 .key = "pm.dexopt.bg-dexopt",
4003 .value = "speed-profile",
4004 },
4005 {
4006 .key = "pm.dexopt.boot",
4007 .value = "verify",
4008 },
4009 {
4010 .key = "pm.dexopt.first-boot",
4011 .value = "quicken",
4012 },
4013 {
4014 .key = "pm.dexopt.install",
4015 .value = "quicken",
4016 },
4017 {
4018 .key = "qcom.bluetooth.soc",
4019 .value = "cherokee",
4020 },
4021 {
4022 .key = "ril.ecclist",
4023 .value = "*911,#911,000,08,110,999,118,119,120,122,911,112",
4024 },
4025 {
4026 .key = "ril.ecclist1",
4027 .value = "*911,#911,000,08,110,999,118,119,120,122,911,112",
4028 },
4029 {
4030 .key = "ril.qcril_pre_init_lock_held",
4031 .value = "0",
4032 },
4033 {
4034 .key = "ril.subscription.types",
4035 .value = "NV,RUIM",
4036 },
4037 {
4038 .key = "rild.libpath",
4039 .value = "/vendor/lib64/libril-qc-qmi-1.so",
4040 },
4041 {
4042 .key = "ro.adb.secure",
4043 .value = "1",
4044 },
4045 {
4046 .key = "ro.allow.mock.location",
4047 .value = "0",
4048 },
4049 {
4050 .key = "ro.baseband",
4051 .value = "msm",
4052 },
4053 {
4054 .key = "ro.board.platform",
4055 .value = "msm8998",
4056 },
4057 {
4058 .key = "ro.boot.angela",
4059 .value = "disabled",
4060 },
4061 {
4062 .key = "ro.boot.baseband",
4063 .value = "msm",
4064 },
4065 {
4066 .key = "ro.boot.battery.absent",
4067 .value = "false",
4068 },
4069 {
4070 .key = "ro.boot.bootdevice",
4071 .value = "1da4000.ufshc",
4072 },
4073 {
4074 .key = "ro.boot.console",
4075 .value = "ttyMSM0",
4076 },
4077 {
4078 .key = "ro.boot.enable_dm_verity",
4079 .value = "1",
4080 },
4081 {
4082 .key = "ro.boot.flash.locked",
4083 .value = "1",
4084 },
4085 {
4086 .key = "ro.boot.hardware",
4087 .value = "qcom",
4088 },
4089 {
4090 .key = "ro.boot.hw_version",
4091 .value = "43",
4092 },
4093 {
4094 .key = "ro.boot.keymaster",
4095 .value = "1",
4096 },
4097 {
4098 .key = "ro.boot.mode",
4099 .value = "normal",
4100 },
4101 {
4102 .key = "ro.boot.pcba_number",
4103 .value = "001780107C19032200000301",
4104 },
4105 {
4106 .key = "ro.boot.project_name",
4107 .value = "17801",
4108 },
4109 {
4110 .key = "ro.boot.rf_version",
4111 .value = "21",
4112 },
4113 {
4114 .key = "ro.boot.rpmb_enable",
4115 .value = "true",
4116 },
4117 {
4118 .key = "ro.boot.secboot",
4119 .value = "enabled",
4120 },
4121 {
4122 .key = "ro.boot.serialno",
4123 .value = "98ce3528",
4124 },
4125 {
4126 .key = "ro.boot.startupmode",
4127 .value = "pon1",
4128 },
4129 {
4130 .key = "ro.boot.verifiedbootstate",
4131 .value = "green",
4132 },
4133 {
4134 .key = "ro.boot.veritymode",
4135 .value = "enforcing",
4136 },
4137 {
4138 .key = "ro.bootimage.build.date",
4139 .value = "Fri Feb 23 01:35:28 CST 2018",
4140 },
4141 {
4142 .key = "ro.bootimage.build.date.utc",
4143 .value = "1519320928",
4144 },
4145 {
4146 .key = "ro.bootimage.build.fingerprint",
4147 .value = "OnePlus/OnePlus5T/OnePlus5T:8.0.0/OPR1.170623.032/02040656:user/release-keys",
4148 },
4149 {
4150 .key = "ro.bootloader",
4151 .value = "unknown",
4152 },
4153 {
4154 .key = "ro.bootmode",
4155 .value = "normal",
4156 },
4157 {
4158 .key = "ro.build.characteristics",
4159 .value = "nosdcard",
4160 },
4161 {
4162 .key = "ro.build.date",
4163 .value = "Fri Feb 23 01:35:28 CST 2018",
4164 },
4165 {
4166 .key = "ro.build.date.Ymd",
4167 .value = "180223",
4168 },
4169 {
4170 .key = "ro.build.date.YmdHM",
4171 .value = "201802230142",
4172 },
4173 {
4174 .key = "ro.build.date.utc",
4175 .value = "1519320928",
4176 },
4177 {
4178 .key = "ro.build.date.ymd",
4179 .value = "180223",
4180 },
4181 {
4182 .key = "ro.build.description",
4183 .value = "OnePlus5T-user 8.0.0 OPR1.170623.032 88 release-keys",
4184 },
4185 {
4186 .key = "ro.build.display.full_id",
4187 .value = "ONEPLUS A5010_43_O.30_180223",
4188 },
4189 {
4190 .key = "ro.build.display.id",
4191 .value = "ONEPLUS A5010_43_180223",
4192 },
4193 {
4194 .key = "ro.build.fingerprint",
4195 .value = "OnePlus/OnePlus5T/OnePlus5T:8.0.0/OPR1.170623.032/02040656:user/release-keys",
4196 },
4197 {
4198 .key = "ro.build.flavor",
4199 .value = "OnePlus5T-user",
4200 },
4201 {
4202 .key = "ro.build.host",
4203 .value = "ubuntu-143",
4204 },
4205 {
4206 .key = "ro.build.id",
4207 .value = "OPR1.170623.032",
4208 },
4209 {
4210 .key = "ro.build.id.hardware",
4211 .value = "ONEPLUS A5010_43_",
4212 },
4213 {
4214 .key = "ro.build.kernel.id",
4215 .value = "4.4-G1802230142",
4216 },
4217 {
4218 .key = "ro.build.oemfingerprint",
4219 .value = "8.0.0/OPR1.170623.032/02040656:user/release-keys",
4220 },
4221 {
4222 .key = "ro.build.ota.versionname",
4223 .value = "OnePlus5TOxygen_43_1802230142",
4224 },
4225 {
4226 .key = "ro.build.product",
4227 .value = "OnePlus5T",
4228 },
4229 {
4230 .key = "ro.build.release_type",
4231 .value = "release",
4232 },
4233 {
4234 .key = "ro.build.shutdown_timeout",
4235 .value = "0",
4236 },
4237 {
4238 .key = "ro.build.soft.majorversion",
4239 .value = "A",
4240 },
4241 {
4242 .key = "ro.build.soft.version",
4243 .value = "O.30",
4244 },
4245 {
4246 .key = "ro.build.tags",
4247 .value = "release-keys",
4248 },
4249 {
4250 .key = "ro.build.type",
4251 .value = "user",
4252 },
4253 {
4254 .key = "ro.build.user",
4255 .value = "OnePlus",
4256 },
4257 {
4258 .key = "ro.build.version.all_codenames",
4259 .value = "REL",
4260 },
4261 {
4262 .key = "ro.build.version.base_os",
4263 .value = "",
4264 },
4265 {
4266 .key = "ro.build.version.codename",
4267 .value = "REL",
4268 },
4269 {
4270 .key = "ro.build.version.incremental",
4271 .value = "88",
4272 },
4273 {
4274 .key = "ro.build.version.ota",
4275 .value = "OnePlus5TOxygen_43.O.30_GLO_030_1802230142",
4276 },
4277 {
4278 .key = "ro.build.version.preview_sdk",
4279 .value = "0",
4280 },
4281 {
4282 .key = "ro.build.version.release",
4283 .value = "8.0.0",
4284 },
4285 {
4286 .key = "ro.build.version.sdk",
4287 .value = "26",
4288 },
4289 {
4290 .key = "ro.build.version.security_patch",
4291 .value = "2017-12-01",
4292 },
4293 {
4294 .key = "ro.carrier",
4295 .value = "unknown",
4296 },
4297 {
4298 .key = "ro.com.android.dataroaming",
4299 .value = "true",
4300 },
4301 {
4302 .key = "ro.com.google.gmsversion",
4303 .value = "8.0_r4",
4304 },
4305 {
4306 .key = "ro.common.soft",
4307 .value = "OnePlus5T",
4308 },
4309 {
4310 .key = "ro.config.alarm_alert",
4311 .value = "spring.ogg",
4312 },
4313 {
4314 .key = "ro.config.mms_notification",
4315 .value = "free.ogg",
4316 },
4317 {
4318 .key = "ro.config.notification_sound",
4319 .value = "meet.ogg",
4320 },
4321 {
4322 .key = "ro.config.ringtone",
4323 .value = "oneplus_tune.ogg",
4324 },
4325 {
4326 .key = "ro.control_privapp_permissions",
4327 .value = "log",
4328 },
4329 {
4330 .key = "ro.crypto.state",
4331 .value = "encrypted",
4332 },
4333 {
4334 .key = "ro.crypto.type",
4335 .value = "file",
4336 },
4337 {
4338 .key = "ro.dalvik.vm.native.bridge",
4339 .value = "0",
4340 },
4341 {
4342 .key = "ro.debuggable",
4343 .value = "0",
4344 },
4345 {
4346 .key = "ro.device_owner",
4347 .value = "false",
4348 },
4349 {
4350 .key = "ro.dirac.acs.storeSettings",
4351 .value = "1",
4352 },
4353 {
4354 .key = "ro.dirac.ignore_error",
4355 .value = "1",
4356 },
4357 {
4358 .key = "ro.display.series",
4359 .value = "OnePlus 5T",
4360 },
4361 {
4362 .key = "ro.expect.recovery_id",
4363 .value = "0xa71dd5cecaf339b481306ad0ec249b0861bb76d0000000000000000000000000",
4364 },
4365 {
4366 .key = "ro.frp.pst",
4367 .value = "/dev/block/bootdevice/by-name/config",
4368 },
4369 {
4370 .key = "ro.hardware",
4371 .value = "qcom",
4372 },
4373 {
4374 .key = "ro.hardware.nfc_nci",
4375 .value = "nqx.default",
4376 },
4377 {
4378 .key = "ro.hwui.drop_shadow_cache_size",
4379 .value = "6",
4380 },
4381 {
4382 .key = "ro.hwui.gradient_cache_size",
4383 .value = "1",
4384 },
4385 {
4386 .key = "ro.hwui.layer_cache_size",
4387 .value = "48",
4388 },
4389 {
4390 .key = "ro.hwui.path_cache_size",
4391 .value = "32",
4392 },
4393 {
4394 .key = "ro.hwui.r_buffer_cache_size",
4395 .value = "8",
4396 },
4397 {
4398 .key = "ro.hwui.text_large_cache_height",
4399 .value = "4096",
4400 },
4401 {
4402 .key = "ro.hwui.text_large_cache_width",
4403 .value = "2048",
4404 },
4405 {
4406 .key = "ro.hwui.text_small_cache_height",
4407 .value = "1024",
4408 },
4409 {
4410 .key = "ro.hwui.text_small_cache_width",
4411 .value = "1024",
4412 },
4413 {
4414 .key = "ro.hwui.texture_cache_flushrate",
4415 .value = "0.4",
4416 },
4417 {
4418 .key = "ro.hwui.texture_cache_size",
4419 .value = "72",
4420 },
4421 {
4422 .key = "ro.nfc.port",
4423 .value = "I2C",
4424 },
4425 {
4426 .key = "ro.oem_unlock_supported",
4427 .value = "true",
4428 },
4429 {
4430 .key = "ro.oxygen.version",
4431 .value = "5.0.4",
4432 },
4433 {
4434 .key = "ro.product.board",
4435 .value = "msm8998",
4436 },
4437 {
4438 .key = "ro.product.brand",
4439 .value = "OnePlus",
4440 },
4441 {
4442 .key = "ro.product.cpu.abi",
4443 .value = "arm64-v8a",
4444 },
4445 {
4446 .key = "ro.product.cpu.abilist",
4447 .value = "arm64-v8a,armeabi-v7a,armeabi",
4448 },
4449 {
4450 .key = "ro.product.cpu.abilist32",
4451 .value = "armeabi-v7a,armeabi",
4452 },
4453 {
4454 .key = "ro.product.cpu.abilist64",
4455 .value = "arm64-v8a",
4456 },
4457 {
4458 .key = "ro.product.device",
4459 .value = "OnePlus5T",
4460 },
4461 {
4462 .key = "ro.product.first_api_level",
4463 .value = "23",
4464 },
4465 {
4466 .key = "ro.product.locale",
4467 .value = "en-US",
4468 },
4469 {
4470 .key = "ro.product.manufacturer",
4471 .value = "OnePlus",
4472 },
4473 {
4474 .key = "ro.product.model",
4475 .value = "ONEPLUS A5010",
4476 },
4477 {
4478 .key = "ro.product.name",
4479 .value = "OnePlus5T",
4480 },
4481 {
4482 .key = "ro.property_service.version",
4483 .value = "2",
4484 },
4485 {
4486 .key = "ro.qcom.ad",
4487 .value = "1",
4488 },
4489 {
4490 .key = "ro.qcom.ad.calib.data",
4491 .value = "/system/etc/calib.cfg",
4492 },
4493 {
4494 .key = "ro.qcom.ad.sensortype",
4495 .value = "2",
4496 },
4497 {
4498 .key = "ro.qualcomm.cabl",
4499 .value = "0",
4500 },
4501 {
4502 .key = "ro.remount.time",
4503 .value = "0",
4504 },
4505 {
4506 .key = "ro.revision",
4507 .value = "0",
4508 },
4509 {
4510 .key = "ro.rf_version",
4511 .value = "TDD_FDD_All",
4512 },
4513 {
4514 .key = "ro.ril.supportLTE",
4515 .value = "1",
4516 },
4517 {
4518 .key = "ro.secure",
4519 .value = "1",
4520 },
4521 {
4522 .key = "ro.serialno",
4523 .value = "98ce3528",
4524 },
4525 {
4526 .key = "ro.setupwizard.mode",
4527 .value = "OPTIONAL",
4528 },
4529 {
4530 .key = "ro.sf.lcd_density",
4531 .value = "420",
4532 },
4533 {
4534 .key = "ro.sys.sdcardfs",
4535 .value = "true",
4536 },
4537 {
4538 .key = "ro.telephony.call_ring.multiple",
4539 .value = "false",
4540 },
4541 {
4542 .key = "ro.telephony.default_network",
4543 .value = "22,20",
4544 },
4545 {
4546 .key = "ro.treble.enabled",
4547 .value = "false",
4548 },
4549 {
4550 .key = "ro.use_data_netmgrd",
4551 .value = "true",
4552 },
4553 {
4554 .key = "ro.vendor.at_library",
4555 .value = "libqti-at.so",
4556 },
4557 {
4558 .key = "ro.vendor.audio.sdk.fluencetype",
4559 .value = "fluencepro",
4560 },
4561 {
4562 .key = "ro.vendor.audio.sdk.ssr",
4563 .value = "false",
4564 },
4565 {
4566 .key = "ro.vendor.extension_library",
4567 .value = "libqti-perfd-client.so",
4568 },
4569 {
4570 .key = "ro.vendor.gt_library",
4571 .value = "libqti-gt.so",
4572 },
4573 {
4574 .key = "ro.vendor.qti.core_ctl_max_cpu",
4575 .value = "4",
4576 },
4577 {
4578 .key = "ro.vendor.qti.core_ctl_min_cpu",
4579 .value = "2",
4580 },
4581 {
4582 .key = "ro.vendor.qti.sys.fw.bg_apps_limit",
4583 .value = "32",
4584 },
4585 {
4586 .key = "ro.vendor.qti.sys.fw.bservice_age",
4587 .value = "5000",
4588 },
4589 {
4590 .key = "ro.vendor.qti.sys.fw.bservice_enable",
4591 .value = "true",
4592 },
4593 {
4594 .key = "ro.vendor.qti.sys.fw.bservice_limit",
4595 .value = "5",
4596 },
4597 {
4598 .key = "ro.vendor.ril.svdo",
4599 .value = "false",
4600 },
4601 {
4602 .key = "ro.vendor.ril.svlte1x",
4603 .value = "false",
4604 },
4605 {
4606 .key = "ro.vendor.sensors.dev_ori",
4607 .value = "true",
4608 },
4609 {
4610 .key = "ro.vendor.sensors.dpc",
4611 .value = "true",
4612 },
4613 {
4614 .key = "ro.vendor.sensors.mot_detect",
4615 .value = "true",
4616 },
4617 {
4618 .key = "ro.vendor.sensors.multishake",
4619 .value = "true",
4620 },
4621 {
4622 .key = "ro.vendor.sensors.pmd",
4623 .value = "true",
4624 },
4625 {
4626 .key = "ro.vendor.sensors.sta_detect",
4627 .value = "true",
4628 },
4629 {
4630 .key = "ro.wifi.channels",
4631 .value = "",
4632 },
4633 {
4634 .key = "ro.xxversion",
4635 .value = "v0.5",
4636 },
4637 {
4638 .key = "ro.zygote",
4639 .value = "zygote64_32",
4640 },
4641 {
4642 .key = "sched.colocate.enable",
4643 .value = "1",
4644 },
4645 {
4646 .key = "sdm.debug.disable_skip_validate",
4647 .value = "1",
4648 },
4649 {
4650 .key = "sdm.perf_hint_window",
4651 .value = "0",
4652 },
4653 {
4654 .key = "security.perf_harden",
4655 .value = "1",
4656 },
4657 {
4658 .key = "selinux.restorecon_recursive",
4659 .value = "/data/misc_ce/0",
4660 },
4661 {
4662 .key = "service.bootanim.exit",
4663 .value = "1",
4664 },
4665 {
4666 .key = "service.sf.present_timestamp",
4667 .value = "1",
4668 },
4669 {
4670 .key = "sys.automode",
4671 .value = "0",
4672 },
4673 {
4674 .key = "sys.boot_completed",
4675 .value = "1",
4676 },
4677 {
4678 .key = "sys.cgroup.active",
4679 .value = "0",
4680 },
4681 {
4682 .key = "sys.cgroup.version",
4683 .value = "v15112601",
4684 },
4685 {
4686 .key = "sys.dci3p",
4687 .value = "0",
4688 },
4689 {
4690 .key = "sys.games.gt.prof",
4691 .value = "1",
4692 },
4693 {
4694 .key = "sys.listeners.registered",
4695 .value = "true",
4696 },
4697 {
4698 .key = "sys.logbootcomplete",
4699 .value = "1",
4700 },
4701 {
4702 .key = "sys.night_mode",
4703 .value = "0",
4704 },
4705 {
4706 .key = "sys.oem_unlock_allowed",
4707 .value = "0",
4708 },
4709 {
4710 .key = "sys.post_boot.parsed",
4711 .value = "1",
4712 },
4713 {
4714 .key = "sys.radio.mcc",
4715 .value = "310",
4716 },
4717 {
4718 .key = "sys.rescue_boot_count",
4719 .value = "1",
4720 },
4721 {
4722 .key = "sys.srgb",
4723 .value = "0",
4724 },
4725 {
4726 .key = "sys.sysctl.extra_free_kbytes",
4727 .value = "27337",
4728 },
4729 {
4730 .key = "sys.sysctl.tcp_def_init_rwnd",
4731 .value = "60",
4732 },
4733 {
4734 .key = "sys.usb.config",
4735 .value = "adb",
4736 },
4737 {
4738 .key = "sys.usb.ffs.ready",
4739 .value = "1",
4740 },
4741 {
4742 .key = "sys.usb.rmnet.func.name",
4743 .value = "gsi",
4744 },
4745 {
4746 .key = "sys.usb.rndis.func.name",
4747 .value = "gsi",
4748 },
4749 {
4750 .key = "sys.usb.rps_mask",
4751 .value = "0",
4752 },
4753 {
4754 .key = "sys.usb.state",
4755 .value = "adb",
4756 },
4757 {
4758 .key = "sys.vendor.shutdown.waittime",
4759 .value = "500",
4760 },
4761 {
4762 .key = "sys.wifitracing.started",
4763 .value = "1",
4764 },
4765 {
4766 .key = "telephony.lteOnCdmaDevice",
4767 .value = "1,1",
4768 },
4769 {
4770 .key = "vendor.audio.dolby.ds2.enabled",
4771 .value = "false",
4772 },
4773 {
4774 .key = "vendor.audio.dolby.ds2.hardbypass",
4775 .value = "false",
4776 },
4777 {
4778 .key = "vendor.audio.flac.sw.decoder.24bit",
4779 .value = "true",
4780 },
4781 {
4782 .key = "vendor.audio.hw.aac.encoder",
4783 .value = "true",
4784 },
4785 {
4786 .key = "vendor.audio.noisy.broadcast.delay",
4787 .value = "600",
4788 },
4789 {
4790 .key = "vendor.audio.offload.buffer.size.kb",
4791 .value = "32",
4792 },
4793 {
4794 .key = "vendor.audio.offload.gapless.enabled",
4795 .value = "true",
4796 },
4797 {
4798 .key = "vendor.audio.offload.multiaac.enable",
4799 .value = "true",
4800 },
4801 {
4802 .key = "vendor.audio.offload.multiple.enabled",
4803 .value = "true",
4804 },
4805 {
4806 .key = "vendor.audio.offload.passthrough",
4807 .value = "false",
4808 },
4809 {
4810 .key = "vendor.audio.offload.track.enable",
4811 .value = "true",
4812 },
4813 {
4814 .key = "vendor.audio.parser.ip.buffer.size",
4815 .value = "0",
4816 },
4817 {
4818 .key = "vendor.audio.safx.pbe.enabled",
4819 .value = "true",
4820 },
4821 {
4822 .key = "vendor.audio.tunnel.encode",
4823 .value = "false",
4824 },
4825 {
4826 .key = "vendor.audio.use.sw.alac.decoder",
4827 .value = "true",
4828 },
4829 {
4830 .key = "vendor.audio.use.sw.ape.decoder",
4831 .value = "true",
4832 },
4833 {
4834 .key = "vendor.audio_hal.period_size",
4835 .value = "192",
4836 },
4837 {
4838 .key = "vendor.camera.aux.packagelist",
4839 .value = "org.codeaurora.snapcam,com.oneplus.camera,com.oneplus.factorymode",
4840 },
4841 {
4842 .key = "vendor.display.enable_default_color_mode",
4843 .value = "0",
4844 },
4845 {
4846 .key = "vendor.fm.a2dp.conc.disabled",
4847 .value = "true",
4848 },
4849 {
4850 .key = "vendor.voice.path.for.pcm.voip",
4851 .value = "true",
4852 },
4853 {
4854 .key = "vidc.enc.dcvs.extra-buff-count",
4855 .value = "2",
4856 },
4857 {
4858 .key = "vold.datafs.type",
4859 .value = "EXT4",
4860 },
4861 {
4862 .key = "vold.emulated.ready",
4863 .value = "1",
4864 },
4865 {
4866 .key = "vold.fbe.decrypted",
4867 .value = "1",
4868 },
4869 {
4870 .key = "vold.has_adoptable",
4871 .value = "0",
4872 },
4873 {
4874 .key = "vold.internalSD.mount",
4875 .value = "1",
4876 },
4877 {
4878 .key = "vold.internalSD.startcopy",
4879 .value = "1",
4880 },
4881 {
4882 .key = "vold.post_fs_data_done",
4883 .value = "1",
4884 },
4885 {
4886 .key = "wifi.interface",
4887 .value = "wlan0",
4888 },
4889 { NULL },
4890};
4891#endif /* __ANDROID__ */