1 struct cpuinfo_mock_file filesystem[] = { 2 #if CPUINFO_ARCH_ARM64 3 { 4 .path = "/proc/cpuinfo", 5 .size = 1716, 6 .content = 7 "Processor\t: AArch64 Processor rev 12 (aarch64)\n" 8 "processor\t: 0\n" 9 "BogoMIPS\t: 38.40\n" 10 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 11 "CPU implementer\t: 0x51\n" 12 "CPU architecture: 8\n" 13 "CPU variant\t: 0x7\n" 14 "CPU part\t: 0x803\n" 15 "CPU revision\t: 12\n" 16 "\n" 17 "processor\t: 1\n" 18 "BogoMIPS\t: 38.40\n" 19 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 20 "CPU implementer\t: 0x51\n" 21 "CPU architecture: 8\n" 22 "CPU variant\t: 0x7\n" 23 "CPU part\t: 0x803\n" 24 "CPU revision\t: 12\n" 25 "\n" 26 "processor\t: 2\n" 27 "BogoMIPS\t: 38.40\n" 28 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 29 "CPU implementer\t: 0x51\n" 30 "CPU architecture: 8\n" 31 "CPU variant\t: 0x7\n" 32 "CPU part\t: 0x803\n" 33 "CPU revision\t: 12\n" 34 "\n" 35 "processor\t: 3\n" 36 "BogoMIPS\t: 38.40\n" 37 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 38 "CPU implementer\t: 0x51\n" 39 "CPU architecture: 8\n" 40 "CPU variant\t: 0x7\n" 41 "CPU part\t: 0x803\n" 42 "CPU revision\t: 12\n" 43 "\n" 44 "processor\t: 4\n" 45 "BogoMIPS\t: 38.40\n" 46 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 47 "CPU implementer\t: 0x51\n" 48 "CPU architecture: 8\n" 49 "CPU variant\t: 0x6\n" 50 "CPU part\t: 0x802\n" 51 "CPU revision\t: 13\n" 52 "\n" 53 "processor\t: 5\n" 54 "BogoMIPS\t: 38.40\n" 55 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 56 "CPU implementer\t: 0x51\n" 57 "CPU architecture: 8\n" 58 "CPU variant\t: 0x6\n" 59 "CPU part\t: 0x802\n" 60 "CPU revision\t: 13\n" 61 "\n" 62 "processor\t: 6\n" 63 "BogoMIPS\t: 38.40\n" 64 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 65 "CPU implementer\t: 0x51\n" 66 "CPU architecture: 8\n" 67 "CPU variant\t: 0x6\n" 68 "CPU part\t: 0x802\n" 69 "CPU revision\t: 13\n" 70 "\n" 71 "processor\t: 7\n" 72 "BogoMIPS\t: 38.40\n" 73 "Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp\n" 74 "CPU implementer\t: 0x51\n" 75 "CPU architecture: 8\n" 76 "CPU variant\t: 0x6\n" 77 "CPU part\t: 0x802\n" 78 "CPU revision\t: 13\n" 79 "\n" 80 "Hardware\t: Qualcomm Technologies, Inc SDM845\n", 81 }, 82 #elif CPUINFO_ARCH_ARM 83 { 84 .path = "/proc/cpuinfo", 85 .size = 2348, 86 .content = 87 "Processor\t: AArch64 Processor rev 13 (aarch64)\n" 88 "processor\t: 0\n" 89 "model name\t: ARMv8 Processor rev 12 (v8l)\n" 90 "BogoMIPS\t: 38.40\n" 91 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 92 "CPU implementer\t: 0x51\n" 93 "CPU architecture: 8\n" 94 "CPU variant\t: 0x7\n" 95 "CPU part\t: 0x803\n" 96 "CPU revision\t: 12\n" 97 "\n" 98 "processor\t: 1\n" 99 "model name\t: ARMv8 Processor rev 12 (v8l)\n" 100 "BogoMIPS\t: 38.40\n" 101 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 102 "CPU implementer\t: 0x51\n" 103 "CPU architecture: 8\n" 104 "CPU variant\t: 0x7\n" 105 "CPU part\t: 0x803\n" 106 "CPU revision\t: 12\n" 107 "\n" 108 "processor\t: 2\n" 109 "model name\t: ARMv8 Processor rev 12 (v8l)\n" 110 "BogoMIPS\t: 38.40\n" 111 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 112 "CPU implementer\t: 0x51\n" 113 "CPU architecture: 8\n" 114 "CPU variant\t: 0x7\n" 115 "CPU part\t: 0x803\n" 116 "CPU revision\t: 12\n" 117 "\n" 118 "processor\t: 3\n" 119 "model name\t: ARMv8 Processor rev 12 (v8l)\n" 120 "BogoMIPS\t: 38.40\n" 121 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 122 "CPU implementer\t: 0x51\n" 123 "CPU architecture: 8\n" 124 "CPU variant\t: 0x7\n" 125 "CPU part\t: 0x803\n" 126 "CPU revision\t: 12\n" 127 "\n" 128 "processor\t: 4\n" 129 "model name\t: ARMv8 Processor rev 13 (v8l)\n" 130 "BogoMIPS\t: 38.40\n" 131 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 132 "CPU implementer\t: 0x51\n" 133 "CPU architecture: 8\n" 134 "CPU variant\t: 0x6\n" 135 "CPU part\t: 0x802\n" 136 "CPU revision\t: 13\n" 137 "\n" 138 "processor\t: 5\n" 139 "model name\t: ARMv8 Processor rev 13 (v8l)\n" 140 "BogoMIPS\t: 38.40\n" 141 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 142 "CPU implementer\t: 0x51\n" 143 "CPU architecture: 8\n" 144 "CPU variant\t: 0x6\n" 145 "CPU part\t: 0x802\n" 146 "CPU revision\t: 13\n" 147 "\n" 148 "processor\t: 6\n" 149 "model name\t: ARMv8 Processor rev 13 (v8l)\n" 150 "BogoMIPS\t: 38.40\n" 151 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 152 "CPU implementer\t: 0x51\n" 153 "CPU architecture: 8\n" 154 "CPU variant\t: 0x6\n" 155 "CPU part\t: 0x802\n" 156 "CPU revision\t: 13\n" 157 "\n" 158 "processor\t: 7\n" 159 "model name\t: ARMv8 Processor rev 13 (v8l)\n" 160 "BogoMIPS\t: 38.40\n" 161 "Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n" 162 "CPU implementer\t: 0x51\n" 163 "CPU architecture: 8\n" 164 "CPU variant\t: 0x6\n" 165 "CPU part\t: 0x802\n" 166 "CPU revision\t: 13\n" 167 "\n" 168 "Hardware\t: Qualcomm Technologies, Inc SDM845\n", 169 }, 170 #endif 171 { 172 .path = "/sys/class/kgsl/kgsl-3d0/bus_split", 173 .size = 2, 174 .content = "1\n", 175 }, 176 { 177 .path = "/sys/class/kgsl/kgsl-3d0/clock_mhz", 178 .size = 4, 179 .content = "257\n", 180 }, 181 { 182 .path = "/sys/class/kgsl/kgsl-3d0/default_pwrlevel", 183 .size = 2, 184 .content = "6\n", 185 }, 186 { 187 .path = "/sys/class/kgsl/kgsl-3d0/dev", 188 .size = 6, 189 .content = "234:0\n", 190 }, 191 { 192 .path = "/sys/class/kgsl/kgsl-3d0/freq_table_mhz", 193 .size = 29, 194 .content = "710 675 596 520 414 342 257 \n", 195 }, 196 { 197 .path = "/sys/class/kgsl/kgsl-3d0/ft_hang_intr_status", 198 .size = 2, 199 .content = "0\n", 200 }, 201 { 202 .path = "/sys/class/kgsl/kgsl-3d0/ft_long_ib_detect", 203 .size = 2, 204 .content = "1\n", 205 }, 206 { 207 .path = "/sys/class/kgsl/kgsl-3d0/ft_pagefault_policy", 208 .size = 4, 209 .content = "0x0\n", 210 }, 211 { 212 .path = "/sys/class/kgsl/kgsl-3d0/ft_policy", 213 .size = 5, 214 .content = "0xC2\n", 215 }, 216 { 217 .path = "/sys/class/kgsl/kgsl-3d0/gpu_available_frequencies", 218 .size = 71, 219 .content = "710000000 675000000 596000000 520000000 414000000 342000000 257000000 \n", 220 }, 221 { 222 .path = "/sys/class/kgsl/kgsl-3d0/gpu_busy_percentage", 223 .size = 4, 224 .content = "7 %\n", 225 }, 226 { 227 .path = "/sys/class/kgsl/kgsl-3d0/gpu_clock_stats", 228 .size = 28, 229 .content = "82129 3395 0 0 0 0 4684346 \n", 230 }, 231 { 232 .path = "/sys/class/kgsl/kgsl-3d0/gpu_llc_slice_enable", 233 .size = 2, 234 .content = "1\n", 235 }, 236 { 237 .path = "/sys/class/kgsl/kgsl-3d0/gpu_model", 238 .size = 12, 239 .content = "Adreno630v2\n", 240 }, 241 { 242 .path = "/sys/class/kgsl/kgsl-3d0/gpubusy", 243 .size = 16, 244 .content = " 0 0\n", 245 }, 246 { 247 .path = "/sys/class/kgsl/kgsl-3d0/gpuclk", 248 .size = 10, 249 .content = "257000000\n", 250 }, 251 { 252 .path = "/sys/class/kgsl/kgsl-3d0/gpuhtw_llc_slice_enable", 253 .size = 2, 254 .content = "1\n", 255 }, 256 { 257 .path = "/sys/class/kgsl/kgsl-3d0/hwcg", 258 .size = 2, 259 .content = "1\n", 260 }, 261 { 262 .path = "/sys/class/kgsl/kgsl-3d0/idle_timer", 263 .size = 3, 264 .content = "80\n", 265 }, 266 { 267 .path = "/sys/class/kgsl/kgsl-3d0/lm", 268 .size = 2, 269 .content = "0\n", 270 }, 271 { 272 .path = "/sys/class/kgsl/kgsl-3d0/max_gpuclk", 273 .size = 10, 274 .content = "710000000\n", 275 }, 276 { 277 .path = "/sys/class/kgsl/kgsl-3d0/max_pwrlevel", 278 .size = 2, 279 .content = "0\n", 280 }, 281 { 282 .path = "/sys/class/kgsl/kgsl-3d0/min_clock_mhz", 283 .size = 4, 284 .content = "257\n", 285 }, 286 { 287 .path = "/sys/class/kgsl/kgsl-3d0/min_pwrlevel", 288 .size = 2, 289 .content = "6\n", 290 }, 291 { 292 .path = "/sys/class/kgsl/kgsl-3d0/num_pwrlevels", 293 .size = 2, 294 .content = "7\n", 295 }, 296 { 297 .path = "/sys/class/kgsl/kgsl-3d0/pmqos_active_latency", 298 .size = 4, 299 .content = "460\n", 300 }, 301 { 302 .path = "/sys/class/kgsl/kgsl-3d0/popp", 303 .size = 2, 304 .content = "0\n", 305 }, 306 { 307 .path = "/sys/class/kgsl/kgsl-3d0/preempt_count", 308 .size = 4, 309 .content = "0x1\n", 310 }, 311 { 312 .path = "/sys/class/kgsl/kgsl-3d0/preempt_level", 313 .size = 4, 314 .content = "0x1\n", 315 }, 316 { 317 .path = "/sys/class/kgsl/kgsl-3d0/preemption", 318 .size = 2, 319 .content = "1\n", 320 }, 321 { 322 .path = "/sys/class/kgsl/kgsl-3d0/pwrscale", 323 .size = 2, 324 .content = "1\n", 325 }, 326 { 327 .path = "/sys/class/kgsl/kgsl-3d0/reset_count", 328 .size = 4, 329 .content = "325\n", 330 }, 331 { 332 .path = "/sys/class/kgsl/kgsl-3d0/skipsaverestore", 333 .size = 2, 334 .content = "1\n", 335 }, 336 { 337 .path = "/sys/class/kgsl/kgsl-3d0/sptp_pc", 338 .size = 2, 339 .content = "1\n", 340 }, 341 { 342 .path = "/sys/class/kgsl/kgsl-3d0/thermal_pwrlevel", 343 .size = 2, 344 .content = "0\n", 345 }, 346 { 347 .path = "/sys/class/kgsl/kgsl-3d0/throttling", 348 .size = 2, 349 .content = "1\n", 350 }, 351 { 352 .path = "/sys/class/kgsl/kgsl-3d0/usesgmem", 353 .size = 2, 354 .content = "1\n", 355 }, 356 { 357 .path = "/sys/class/kgsl/kgsl-3d0/wake_nice", 358 .size = 3, 359 .content = "-7\n", 360 }, 361 { 362 .path = "/sys/class/kgsl/kgsl-3d0/wake_timeout", 363 .size = 4, 364 .content = "100\n", 365 }, 366 { 367 .path = "/sys/devices/soc0/accessory_chip", 368 .size = 2, 369 .content = "0\n", 370 }, 371 { 372 .path = "/sys/devices/soc0/build_id", 373 .size = 1, 374 .content = "\n", 375 }, 376 { 377 .path = "/sys/devices/soc0/chip_family", 378 .size = 5, 379 .content = "0x4f\n", 380 }, 381 { 382 .path = "/sys/devices/soc0/chip_name", 383 .size = 7, 384 .content = "SDM845\n", 385 }, 386 { 387 .path = "/sys/devices/soc0/family", 388 .size = 11, 389 .content = "Snapdragon\n", 390 }, 391 { 392 .path = "/sys/devices/soc0/foundry_id", 393 .size = 2, 394 .content = "3\n", 395 }, 396 { 397 .path = "/sys/devices/soc0/hw_platform", 398 .size = 4, 399 .content = "MTP\n", 400 }, 401 { 402 .path = "/sys/devices/soc0/image_crm_version", 403 .size = 5, 404 .content = 405 "REL\n" 406 "\n", 407 }, 408 { 409 .path = "/sys/devices/soc0/image_variant", 410 .size = 17, 411 .content = 412 "starqltesq-user\n" 413 "\n", 414 }, 415 { 416 .path = "/sys/devices/soc0/image_version", 417 .size = 24, 418 .content = 419 "10:R16NW:G960USQU1ARB7\n" 420 "\n", 421 }, 422 { 423 .path = "/sys/devices/soc0/images", 424 .size = 698, 425 .content = 426 "0:\n" 427 "\tCRM:\t\t00:BOOT.XF.2.0-00340-SDM845LZB-1\n" 428 "\tVariant:\tSDM845LA\n" 429 "\tVersion:\tSWDG4715\n" 430 "\n" 431 "1:\n" 432 "\tCRM:\t\t01:TZ.XF.5.0.1-132629-63\n" 433 "\tVariant:\t \n" 434 "\tVersion:\tCRM\n" 435 "\n" 436 "10:\n" 437 "\tCRM:\t\t10:R16NW:G960USQU1ARB7\n" 438 "\n" 439 "\tVariant:\tstarqltesq-user\n" 440 "\n" 441 "\tVersion:\tREL\n" 442 "\n" 443 "\n" 444 "11:\n" 445 "\tCRM:\t\t11:MPSS.AT.4.0.c2.5-00045-SDM845_GEN_PACK-1.135721.1\n" 446 "\tVariant:\tsdm845.gen.prodQ\n" 447 "\tVersion:\tSWDG4510-VM01\n" 448 "\n" 449 "12:\n" 450 "\tCRM:\t\t12:ADSP.HT.4.0.c2-00006-SDM845-1\n" 451 "\tVariant:\t845.adsp.prodQ\n" 452 "\tVersion:\tSWDG4510-VM01\n" 453 "\n" 454 "14:\n" 455 "\tCRM:\t\t14:VIDEO.VE.5.0-00062-PROD-1536691\n" 456 "\tVariant:\tPROD\n" 457 "\tVersion:\t:HARV-MMUNDHRA\n" 458 "\n" 459 "15:\n" 460 "\tCRM:\t\t15:SLPI.HY.1.0-00272-SDM845AZL-1.129244.1\n" 461 "\tVariant:\tAAAAAAAAQ\n" 462 "\tVersion:\tSWDG4715\n" 463 "\n" 464 "16:\n" 465 "\tCRM:\t\t16:CDSP.HT.1.0-00428-SDM845-1\n" 466 "\tVariant:\t845.cdsp.prodQ\n" 467 "\tVersion:\tSWDG4715\n" 468 "\n", 469 }, 470 { 471 .path = "/sys/devices/soc0/machine", 472 .size = 7, 473 .content = "SDM845\n", 474 }, 475 { 476 .path = "/sys/devices/soc0/ncluster_array_offset", 477 .size = 5, 478 .content = "0xb0\n", 479 }, 480 { 481 .path = "/sys/devices/soc0/ndefective_parts_array_offset", 482 .size = 5, 483 .content = "0xb4\n", 484 }, 485 { 486 .path = "/sys/devices/soc0/nmodem_supported", 487 .size = 5, 488 .content = "0xff\n", 489 }, 490 { 491 .path = "/sys/devices/soc0/nproduct_id", 492 .size = 6, 493 .content = "0x3f4\n", 494 }, 495 { 496 .path = "/sys/devices/soc0/num_clusters", 497 .size = 4, 498 .content = "0x1\n", 499 }, 500 { 501 .path = "/sys/devices/soc0/num_defective_parts", 502 .size = 4, 503 .content = "0x6\n", 504 }, 505 { 506 .path = "/sys/devices/soc0/platform_subtype", 507 .size = 8, 508 .content = "Unknown\n", 509 }, 510 { 511 .path = "/sys/devices/soc0/platform_subtype_id", 512 .size = 2, 513 .content = "0\n", 514 }, 515 { 516 .path = "/sys/devices/soc0/platform_version", 517 .size = 6, 518 .content = "65536\n", 519 }, 520 { 521 .path = "/sys/devices/soc0/pmic_die_revision", 522 .size = 7, 523 .content = "131072\n", 524 }, 525 { 526 .path = "/sys/devices/soc0/pmic_model", 527 .size = 6, 528 .content = "65556\n", 529 }, 530 { 531 .path = "/sys/devices/soc0/raw_device_family", 532 .size = 4, 533 .content = "0x6\n", 534 }, 535 { 536 .path = "/sys/devices/soc0/raw_device_number", 537 .size = 4, 538 .content = "0x0\n", 539 }, 540 { 541 .path = "/sys/devices/soc0/raw_id", 542 .size = 4, 543 .content = "139\n", 544 }, 545 { 546 .path = "/sys/devices/soc0/raw_version", 547 .size = 2, 548 .content = "2\n", 549 }, 550 { 551 .path = "/sys/devices/soc0/revision", 552 .size = 4, 553 .content = "2.1\n", 554 }, 555 { 556 .path = "/sys/devices/soc0/select_image", 557 .size = 3, 558 .content = "10\n", 559 }, 560 { 561 .path = "/sys/devices/soc0/serial_number", 562 .size = 11, 563 .content = "3372745183\n", 564 }, 565 { 566 .path = "/sys/devices/soc0/soc_id", 567 .size = 4, 568 .content = "321\n", 569 }, 570 { 571 .path = "/sys/devices/soc0/vendor", 572 .size = 9, 573 .content = "Qualcomm\n", 574 }, 575 { 576 .path = "/sys/devices/system/cpu/isolated", 577 .size = 1, 578 .content = "\n", 579 }, 580 { 581 .path = "/sys/devices/system/cpu/kernel_max", 582 .size = 2, 583 .content = "7\n", 584 }, 585 { 586 .path = "/sys/devices/system/cpu/modalias", 587 .size = 81, 588 .content = "cpu:type:aarch64:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000A\n", 589 }, 590 { 591 .path = "/sys/devices/system/cpu/offline", 592 .size = 1, 593 .content = "\n", 594 }, 595 { 596 .path = "/sys/devices/system/cpu/online", 597 .size = 4, 598 .content = "0-7\n", 599 }, 600 { 601 .path = "/sys/devices/system/cpu/possible", 602 .size = 4, 603 .content = "0-7\n", 604 }, 605 { 606 .path = "/sys/devices/system/cpu/present", 607 .size = 4, 608 .content = "0-7\n", 609 }, 610 { 611 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/big_cpu_num", 612 .size = 4, 613 .content = "4-7\n", 614 }, 615 { 616 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/big_max_freq", 617 .size = 11, 618 .content = "4294967295\n", 619 }, 620 { 621 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/big_min_freq", 622 .size = 7, 623 .content = "902400\n", 624 }, 625 { 626 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/hmp_boost_type", 627 .size = 2, 628 .content = "2\n", 629 }, 630 { 631 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/hmp_prev_boost_type", 632 .size = 2, 633 .content = "0\n", 634 }, 635 { 636 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/ltl_cpu_num", 637 .size = 4, 638 .content = "0-3\n", 639 }, 640 { 641 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/ltl_divider", 642 .size = 2, 643 .content = "2\n", 644 }, 645 { 646 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/ltl_max_freq", 647 .size = 7, 648 .content = "883200\n", 649 }, 650 { 651 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/ltl_min_freq", 652 .size = 7, 653 .content = "150000\n", 654 }, 655 { 656 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/ltl_min_lock", 657 .size = 7, 658 .content = "566400\n", 659 }, 660 { 661 .path = "/sys/devices/system/cpu/cpufreq/cpufreq_limit/requests", 662 .size = 21, 663 .content = "label\t\tmin\tmax\tsince\n", 664 }, 665 { 666 .path = "/sys/devices/system/cpu/cpuidle/current_driver", 667 .size = 9, 668 .content = "msm_idle\n", 669 }, 670 { 671 .path = "/sys/devices/system/cpu/cpuidle/current_governor_ro", 672 .size = 5, 673 .content = "qcom\n", 674 }, 675 { 676 .path = "/sys/devices/system/cpu/cpu0/core_ctl/active_cpus", 677 .size = 2, 678 .content = "4\n", 679 }, 680 { 681 .path = "/sys/devices/system/cpu/cpu0/core_ctl/busy_up_thres", 682 .size = 9, 683 .content = "0 0 0 0 \n", 684 }, 685 { 686 .path = "/sys/devices/system/cpu/cpu0/core_ctl/busy_down_thres", 687 .size = 9, 688 .content = "0 0 0 0 \n", 689 }, 690 { 691 .path = "/sys/devices/system/cpu/cpu0/core_ctl/enable", 692 .size = 2, 693 .content = "1\n", 694 }, 695 { 696 .path = "/sys/devices/system/cpu/cpu0/core_ctl/global_state", 697 .size = 1340, 698 .content = 699 "CPU0\n" 700 "\tCPU: 0\n" 701 "\tOnline: 1\n" 702 "\tIsolated: 0\n" 703 "\tFirst CPU: 0\n" 704 "\tBusy%: 30\n" 705 "\tIs busy: 1\n" 706 "\tNot preferred: 0\n" 707 "\tNr running: 6\n" 708 "\tActive CPUs: 4\n" 709 "\tNeed CPUs: 4\n" 710 "\tNr isolated CPUs: 0\n" 711 "\tBoost: 0\n" 712 "CPU1\n" 713 "\tCPU: 1\n" 714 "\tOnline: 1\n" 715 "\tIsolated: 0\n" 716 "\tFirst CPU: 0\n" 717 "\tBusy%: 20\n" 718 "\tIs busy: 1\n" 719 "\tNot preferred: 0\n" 720 "\tNr running: 6\n" 721 "\tActive CPUs: 4\n" 722 "\tNeed CPUs: 4\n" 723 "\tNr isolated CPUs: 0\n" 724 "\tBoost: 0\n" 725 "CPU2\n" 726 "\tCPU: 2\n" 727 "\tOnline: 1\n" 728 "\tIsolated: 0\n" 729 "\tFirst CPU: 0\n" 730 "\tBusy%: 22\n" 731 "\tIs busy: 1\n" 732 "\tNot preferred: 0\n" 733 "\tNr running: 6\n" 734 "\tActive CPUs: 4\n" 735 "\tNeed CPUs: 4\n" 736 "\tNr isolated CPUs: 0\n" 737 "\tBoost: 0\n" 738 "CPU3\n" 739 "\tCPU: 3\n" 740 "\tOnline: 1\n" 741 "\tIsolated: 0\n" 742 "\tFirst CPU: 0\n" 743 "\tBusy%: 8\n" 744 "\tIs busy: 1\n" 745 "\tNot preferred: 0\n" 746 "\tNr running: 6\n" 747 "\tActive CPUs: 4\n" 748 "\tNeed CPUs: 4\n" 749 "\tNr isolated CPUs: 0\n" 750 "\tBoost: 0\n" 751 "CPU4\n" 752 "\tCPU: 4\n" 753 "\tOnline: 1\n" 754 "\tIsolated: 1\n" 755 "\tFirst CPU: 4\n" 756 "\tBusy%: 0\n" 757 "\tIs busy: 0\n" 758 "\tNot preferred: 0\n" 759 "\tNr running: 1\n" 760 "\tActive CPUs: 2\n" 761 "\tNeed CPUs: 2\n" 762 "\tNr isolated CPUs: 2\n" 763 "\tBoost: 0\n" 764 "CPU5\n" 765 "\tCPU: 5\n" 766 "\tOnline: 1\n" 767 "\tIsolated: 1\n" 768 "\tFirst CPU: 4\n" 769 "\tBusy%: 0\n" 770 "\tIs busy: 0\n" 771 "\tNot preferred: 0\n" 772 "\tNr running: 1\n" 773 "\tActive CPUs: 2\n" 774 "\tNeed CPUs: 2\n" 775 "\tNr isolated CPUs: 2\n" 776 "\tBoost: 0\n" 777 "CPU6\n" 778 "\tCPU: 6\n" 779 "\tOnline: 1\n" 780 "\tIsolated: 0\n" 781 "\tFirst CPU: 4\n" 782 "\tBusy%: 11\n" 783 "\tIs busy: 0\n" 784 "\tNot preferred: 0\n" 785 "\tNr running: 1\n" 786 "\tActive CPUs: 2\n" 787 "\tNeed CPUs: 2\n" 788 "\tNr isolated CPUs: 2\n" 789 "\tBoost: 0\n" 790 "CPU7\n" 791 "\tCPU: 7\n" 792 "\tOnline: 1\n" 793 "\tIsolated: 0\n" 794 "\tFirst CPU: 4\n" 795 "\tBusy%: 0\n" 796 "\tIs busy: 0\n" 797 "\tNot preferred: 0\n" 798 "\tNr running: 1\n" 799 "\tActive CPUs: 2\n" 800 "\tNeed CPUs: 2\n" 801 "\tNr isolated CPUs: 2\n" 802 "\tBoost: 0\n", 803 }, 804 { 805 .path = "/sys/devices/system/cpu/cpu0/core_ctl/is_big_cluster", 806 .size = 2, 807 .content = "0\n", 808 }, 809 { 810 .path = "/sys/devices/system/cpu/cpu0/core_ctl/max_cpus", 811 .size = 2, 812 .content = "4\n", 813 }, 814 { 815 .path = "/sys/devices/system/cpu/cpu0/core_ctl/min_cpus", 816 .size = 2, 817 .content = "1\n", 818 }, 819 { 820 .path = "/sys/devices/system/cpu/cpu0/core_ctl/need_cpus", 821 .size = 2, 822 .content = "4\n", 823 }, 824 { 825 .path = "/sys/devices/system/cpu/cpu0/core_ctl/not_preferred", 826 .size = 36, 827 .content = 828 "CPU#0: 0\n" 829 "CPU#1: 0\n" 830 "CPU#2: 0\n" 831 "CPU#3: 0\n", 832 }, 833 { 834 .path = "/sys/devices/system/cpu/cpu0/core_ctl/offline_delay_ms", 835 .size = 4, 836 .content = "100\n", 837 }, 838 { 839 .path = "/sys/devices/system/cpu/cpu0/core_ctl/task_thres", 840 .size = 11, 841 .content = "4294967295\n", 842 }, 843 { 844 .path = "/sys/devices/system/cpu/cpu0/cpuidle/driver/name", 845 .size = 9, 846 .content = "msm_idle\n", 847 }, 848 { 849 .path = "/sys/devices/system/cpu/cpu0/cpufreq/affected_cpus", 850 .size = 8, 851 .content = "0 1 2 3\n", 852 }, 853 { 854 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq", 855 .size = 8, 856 .content = "1766400\n", 857 }, 858 { 859 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq", 860 .size = 7, 861 .content = "300000\n", 862 }, 863 { 864 .path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency", 865 .size = 2, 866 .content = "0\n", 867 }, 868 { 869 .path = "/sys/devices/system/cpu/cpu0/cpufreq/related_cpus", 870 .size = 8, 871 .content = "0 1 2 3\n", 872 }, 873 { 874 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies", 875 .size = 136, 876 .content = "300000 403200 480000 576000 652800 748800 825600 902400 979200 1056000 1132800 1228800 1324800 1420800 1516800 1612800 1689600 1766400 \n", 877 }, 878 { 879 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors", 880 .size = 23, 881 .content = "performance schedutil \n", 882 }, 883 { 884 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", 885 .size = 7, 886 .content = "748800\n", 887 }, 888 { 889 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver", 890 .size = 12, 891 .content = "osm-cpufreq\n", 892 }, 893 { 894 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor", 895 .size = 10, 896 .content = "schedutil\n", 897 }, 898 { 899 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq", 900 .size = 8, 901 .content = "1766400\n", 902 }, 903 { 904 .path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq", 905 .size = 7, 906 .content = "748800\n", 907 }, 908 { 909 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state", 910 .size = 207, 911 .content = 912 "300000 0\n" 913 "403200 0\n" 914 "480000 0\n" 915 "576000 0\n" 916 "652800 0\n" 917 "748800 66938\n" 918 "825600 1324\n" 919 "902400 680\n" 920 "979200 569\n" 921 "1056000 839\n" 922 "1132800 3428\n" 923 "1228800 4671\n" 924 "1324800 1242\n" 925 "1420800 3520\n" 926 "1516800 1109\n" 927 "1612800 830\n" 928 "1689600 477\n" 929 "1766400 11777\n", 930 }, 931 { 932 .path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/total_trans", 933 .size = 6, 934 .content = "11086\n", 935 }, 936 { 937 .path = "/sys/devices/system/cpu/cpu0/isolate", 938 .size = 2, 939 .content = "0\n", 940 }, 941 { 942 .path = "/sys/devices/system/cpu/cpu0/regs/identification/midr_el1", 943 .size = 19, 944 .content = "0x00000000517f803c\n", 945 }, 946 { 947 .path = "/sys/devices/system/cpu/cpu0/regs/identification/revidr_el1", 948 .size = 19, 949 .content = "0x0000000000000000\n", 950 }, 951 { 952 .path = "/sys/devices/system/cpu/cpu0/sched_load_boost", 953 .size = 2, 954 .content = "0\n", 955 }, 956 { 957 .path = "/sys/devices/system/cpu/cpu0/topology/core_id", 958 .size = 2, 959 .content = "0\n", 960 }, 961 { 962 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings", 963 .size = 3, 964 .content = "0f\n", 965 }, 966 { 967 .path = "/sys/devices/system/cpu/cpu0/topology/core_siblings_list", 968 .size = 4, 969 .content = "0-3\n", 970 }, 971 { 972 .path = "/sys/devices/system/cpu/cpu0/topology/physical_package_id", 973 .size = 2, 974 .content = "0\n", 975 }, 976 { 977 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings", 978 .size = 3, 979 .content = "01\n", 980 }, 981 { 982 .path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list", 983 .size = 2, 984 .content = "0\n", 985 }, 986 { 987 .path = "/sys/devices/system/cpu/cpu0/cache/index0/allocation_policy", 988 .size = 18, 989 .content = "ReadWriteAllocate\n", 990 }, 991 { 992 .path = "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size", 993 .size = 3, 994 .content = "64\n", 995 }, 996 { 997 .path = "/sys/devices/system/cpu/cpu0/cache/index0/level", 998 .size = 2, 999 .content = "1\n", 1000 }, 1001 { 1002 .path = "/sys/devices/system/cpu/cpu0/cache/index0/number_of_sets", 1003 .size = 4, 1004 .content = "128\n", 1005 }, 1006 { 1007 .path = "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_list", 1008 .size = 2, 1009 .content = "0\n", 1010 }, 1011 { 1012 .path = "/sys/devices/system/cpu/cpu0/cache/index0/shared_cpu_map", 1013 .size = 3, 1014 .content = "01\n", 1015 }, 1016 { 1017 .path = "/sys/devices/system/cpu/cpu0/cache/index0/size", 1018 .size = 4, 1019 .content = "32K\n", 1020 }, 1021 { 1022 .path = "/sys/devices/system/cpu/cpu0/cache/index0/type", 1023 .size = 5, 1024 .content = "Data\n", 1025 }, 1026 { 1027 .path = "/sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity", 1028 .size = 2, 1029 .content = "4\n", 1030 }, 1031 { 1032 .path = "/sys/devices/system/cpu/cpu0/cache/index0/write_policy", 1033 .size = 10, 1034 .content = "WriteBack\n", 1035 }, 1036 { 1037 .path = "/sys/devices/system/cpu/cpu0/cache/index1/allocation_policy", 1038 .size = 13, 1039 .content = "ReadAllocate\n", 1040 }, 1041 { 1042 .path = "/sys/devices/system/cpu/cpu0/cache/index1/coherency_line_size", 1043 .size = 3, 1044 .content = "64\n", 1045 }, 1046 { 1047 .path = "/sys/devices/system/cpu/cpu0/cache/index1/level", 1048 .size = 2, 1049 .content = "1\n", 1050 }, 1051 { 1052 .path = "/sys/devices/system/cpu/cpu0/cache/index1/number_of_sets", 1053 .size = 4, 1054 .content = "128\n", 1055 }, 1056 { 1057 .path = "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_list", 1058 .size = 2, 1059 .content = "0\n", 1060 }, 1061 { 1062 .path = "/sys/devices/system/cpu/cpu0/cache/index1/shared_cpu_map", 1063 .size = 3, 1064 .content = "01\n", 1065 }, 1066 { 1067 .path = "/sys/devices/system/cpu/cpu0/cache/index1/size", 1068 .size = 4, 1069 .content = "32K\n", 1070 }, 1071 { 1072 .path = "/sys/devices/system/cpu/cpu0/cache/index1/type", 1073 .size = 12, 1074 .content = "Instruction\n", 1075 }, 1076 { 1077 .path = "/sys/devices/system/cpu/cpu0/cache/index1/ways_of_associativity", 1078 .size = 2, 1079 .content = "4\n", 1080 }, 1081 { 1082 .path = "/sys/devices/system/cpu/cpu0/cache/index2/allocation_policy", 1083 .size = 18, 1084 .content = "ReadWriteAllocate\n", 1085 }, 1086 { 1087 .path = "/sys/devices/system/cpu/cpu0/cache/index2/coherency_line_size", 1088 .size = 3, 1089 .content = "64\n", 1090 }, 1091 { 1092 .path = "/sys/devices/system/cpu/cpu0/cache/index2/level", 1093 .size = 2, 1094 .content = "2\n", 1095 }, 1096 { 1097 .path = "/sys/devices/system/cpu/cpu0/cache/index2/number_of_sets", 1098 .size = 4, 1099 .content = "512\n", 1100 }, 1101 { 1102 .path = "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_list", 1103 .size = 2, 1104 .content = "0\n", 1105 }, 1106 { 1107 .path = "/sys/devices/system/cpu/cpu0/cache/index2/shared_cpu_map", 1108 .size = 3, 1109 .content = "01\n", 1110 }, 1111 { 1112 .path = "/sys/devices/system/cpu/cpu0/cache/index2/size", 1113 .size = 5, 1114 .content = "128K\n", 1115 }, 1116 { 1117 .path = "/sys/devices/system/cpu/cpu0/cache/index2/type", 1118 .size = 8, 1119 .content = "Unified\n", 1120 }, 1121 { 1122 .path = "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity", 1123 .size = 2, 1124 .content = "4\n", 1125 }, 1126 { 1127 .path = "/sys/devices/system/cpu/cpu0/cache/index2/write_policy", 1128 .size = 10, 1129 .content = "WriteBack\n", 1130 }, 1131 { 1132 .path = "/sys/devices/system/cpu/cpu0/cache/index3/allocation_policy", 1133 .size = 18, 1134 .content = "ReadWriteAllocate\n", 1135 }, 1136 { 1137 .path = "/sys/devices/system/cpu/cpu0/cache/index3/coherency_line_size", 1138 .size = 3, 1139 .content = "64\n", 1140 }, 1141 { 1142 .path = "/sys/devices/system/cpu/cpu0/cache/index3/level", 1143 .size = 2, 1144 .content = "3\n", 1145 }, 1146 { 1147 .path = "/sys/devices/system/cpu/cpu0/cache/index3/number_of_sets", 1148 .size = 5, 1149 .content = "2048\n", 1150 }, 1151 { 1152 .path = "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list", 1153 .size = 4, 1154 .content = "0-7\n", 1155 }, 1156 { 1157 .path = "/sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_map", 1158 .size = 3, 1159 .content = "ff\n", 1160 }, 1161 { 1162 .path = "/sys/devices/system/cpu/cpu0/cache/index3/size", 1163 .size = 6, 1164 .content = "2048K\n", 1165 }, 1166 { 1167 .path = "/sys/devices/system/cpu/cpu0/cache/index3/type", 1168 .size = 8, 1169 .content = "Unified\n", 1170 }, 1171 { 1172 .path = "/sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity", 1173 .size = 3, 1174 .content = "16\n", 1175 }, 1176 { 1177 .path = "/sys/devices/system/cpu/cpu0/cache/index3/write_policy", 1178 .size = 10, 1179 .content = "WriteBack\n", 1180 }, 1181 { 1182 .path = "/sys/devices/system/cpu/cpu1/cpuidle/driver/name", 1183 .size = 9, 1184 .content = "msm_idle\n", 1185 }, 1186 { 1187 .path = "/sys/devices/system/cpu/cpu1/cpufreq/affected_cpus", 1188 .size = 8, 1189 .content = "0 1 2 3\n", 1190 }, 1191 { 1192 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq", 1193 .size = 8, 1194 .content = "1766400\n", 1195 }, 1196 { 1197 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq", 1198 .size = 7, 1199 .content = "300000\n", 1200 }, 1201 { 1202 .path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency", 1203 .size = 2, 1204 .content = "0\n", 1205 }, 1206 { 1207 .path = "/sys/devices/system/cpu/cpu1/cpufreq/related_cpus", 1208 .size = 8, 1209 .content = "0 1 2 3\n", 1210 }, 1211 { 1212 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_frequencies", 1213 .size = 136, 1214 .content = "300000 403200 480000 576000 652800 748800 825600 902400 979200 1056000 1132800 1228800 1324800 1420800 1516800 1612800 1689600 1766400 \n", 1215 }, 1216 { 1217 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors", 1218 .size = 23, 1219 .content = "performance schedutil \n", 1220 }, 1221 { 1222 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq", 1223 .size = 7, 1224 .content = "748800\n", 1225 }, 1226 { 1227 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver", 1228 .size = 12, 1229 .content = "osm-cpufreq\n", 1230 }, 1231 { 1232 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor", 1233 .size = 10, 1234 .content = "schedutil\n", 1235 }, 1236 { 1237 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_max_freq", 1238 .size = 8, 1239 .content = "1766400\n", 1240 }, 1241 { 1242 .path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq", 1243 .size = 7, 1244 .content = "748800\n", 1245 }, 1246 { 1247 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/time_in_state", 1248 .size = 207, 1249 .content = 1250 "300000 0\n" 1251 "403200 0\n" 1252 "480000 0\n" 1253 "576000 0\n" 1254 "652800 0\n" 1255 "748800 67202\n" 1256 "825600 1324\n" 1257 "902400 680\n" 1258 "979200 569\n" 1259 "1056000 839\n" 1260 "1132800 3428\n" 1261 "1228800 4671\n" 1262 "1324800 1242\n" 1263 "1420800 3520\n" 1264 "1516800 1109\n" 1265 "1612800 830\n" 1266 "1689600 477\n" 1267 "1766400 11777\n", 1268 }, 1269 { 1270 .path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/total_trans", 1271 .size = 6, 1272 .content = "11086\n", 1273 }, 1274 { 1275 .path = "/sys/devices/system/cpu/cpu1/isolate", 1276 .size = 2, 1277 .content = "0\n", 1278 }, 1279 { 1280 .path = "/sys/devices/system/cpu/cpu1/regs/identification/midr_el1", 1281 .size = 19, 1282 .content = "0x00000000517f803c\n", 1283 }, 1284 { 1285 .path = "/sys/devices/system/cpu/cpu1/regs/identification/revidr_el1", 1286 .size = 19, 1287 .content = "0x0000000000000000\n", 1288 }, 1289 { 1290 .path = "/sys/devices/system/cpu/cpu1/sched_load_boost", 1291 .size = 2, 1292 .content = "0\n", 1293 }, 1294 { 1295 .path = "/sys/devices/system/cpu/cpu1/topology/core_id", 1296 .size = 2, 1297 .content = "1\n", 1298 }, 1299 { 1300 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings", 1301 .size = 3, 1302 .content = "0f\n", 1303 }, 1304 { 1305 .path = "/sys/devices/system/cpu/cpu1/topology/core_siblings_list", 1306 .size = 4, 1307 .content = "0-3\n", 1308 }, 1309 { 1310 .path = "/sys/devices/system/cpu/cpu1/topology/physical_package_id", 1311 .size = 2, 1312 .content = "0\n", 1313 }, 1314 { 1315 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings", 1316 .size = 3, 1317 .content = "02\n", 1318 }, 1319 { 1320 .path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list", 1321 .size = 2, 1322 .content = "1\n", 1323 }, 1324 { 1325 .path = "/sys/devices/system/cpu/cpu1/cache/index0/allocation_policy", 1326 .size = 18, 1327 .content = "ReadWriteAllocate\n", 1328 }, 1329 { 1330 .path = "/sys/devices/system/cpu/cpu1/cache/index0/coherency_line_size", 1331 .size = 3, 1332 .content = "64\n", 1333 }, 1334 { 1335 .path = "/sys/devices/system/cpu/cpu1/cache/index0/level", 1336 .size = 2, 1337 .content = "1\n", 1338 }, 1339 { 1340 .path = "/sys/devices/system/cpu/cpu1/cache/index0/number_of_sets", 1341 .size = 4, 1342 .content = "128\n", 1343 }, 1344 { 1345 .path = "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_list", 1346 .size = 2, 1347 .content = "1\n", 1348 }, 1349 { 1350 .path = "/sys/devices/system/cpu/cpu1/cache/index0/shared_cpu_map", 1351 .size = 3, 1352 .content = "02\n", 1353 }, 1354 { 1355 .path = "/sys/devices/system/cpu/cpu1/cache/index0/size", 1356 .size = 4, 1357 .content = "32K\n", 1358 }, 1359 { 1360 .path = "/sys/devices/system/cpu/cpu1/cache/index0/type", 1361 .size = 5, 1362 .content = "Data\n", 1363 }, 1364 { 1365 .path = "/sys/devices/system/cpu/cpu1/cache/index0/ways_of_associativity", 1366 .size = 2, 1367 .content = "4\n", 1368 }, 1369 { 1370 .path = "/sys/devices/system/cpu/cpu1/cache/index0/write_policy", 1371 .size = 10, 1372 .content = "WriteBack\n", 1373 }, 1374 { 1375 .path = "/sys/devices/system/cpu/cpu1/cache/index1/allocation_policy", 1376 .size = 13, 1377 .content = "ReadAllocate\n", 1378 }, 1379 { 1380 .path = "/sys/devices/system/cpu/cpu1/cache/index1/coherency_line_size", 1381 .size = 3, 1382 .content = "64\n", 1383 }, 1384 { 1385 .path = "/sys/devices/system/cpu/cpu1/cache/index1/level", 1386 .size = 2, 1387 .content = "1\n", 1388 }, 1389 { 1390 .path = "/sys/devices/system/cpu/cpu1/cache/index1/number_of_sets", 1391 .size = 4, 1392 .content = "128\n", 1393 }, 1394 { 1395 .path = "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_list", 1396 .size = 2, 1397 .content = "1\n", 1398 }, 1399 { 1400 .path = "/sys/devices/system/cpu/cpu1/cache/index1/shared_cpu_map", 1401 .size = 3, 1402 .content = "02\n", 1403 }, 1404 { 1405 .path = "/sys/devices/system/cpu/cpu1/cache/index1/size", 1406 .size = 4, 1407 .content = "32K\n", 1408 }, 1409 { 1410 .path = "/sys/devices/system/cpu/cpu1/cache/index1/type", 1411 .size = 12, 1412 .content = "Instruction\n", 1413 }, 1414 { 1415 .path = "/sys/devices/system/cpu/cpu1/cache/index1/ways_of_associativity", 1416 .size = 2, 1417 .content = "4\n", 1418 }, 1419 { 1420 .path = "/sys/devices/system/cpu/cpu1/cache/index2/allocation_policy", 1421 .size = 18, 1422 .content = "ReadWriteAllocate\n", 1423 }, 1424 { 1425 .path = "/sys/devices/system/cpu/cpu1/cache/index2/coherency_line_size", 1426 .size = 3, 1427 .content = "64\n", 1428 }, 1429 { 1430 .path = "/sys/devices/system/cpu/cpu1/cache/index2/level", 1431 .size = 2, 1432 .content = "2\n", 1433 }, 1434 { 1435 .path = "/sys/devices/system/cpu/cpu1/cache/index2/number_of_sets", 1436 .size = 4, 1437 .content = "512\n", 1438 }, 1439 { 1440 .path = "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_list", 1441 .size = 2, 1442 .content = "1\n", 1443 }, 1444 { 1445 .path = "/sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map", 1446 .size = 3, 1447 .content = "02\n", 1448 }, 1449 { 1450 .path = "/sys/devices/system/cpu/cpu1/cache/index2/size", 1451 .size = 5, 1452 .content = "128K\n", 1453 }, 1454 { 1455 .path = "/sys/devices/system/cpu/cpu1/cache/index2/type", 1456 .size = 8, 1457 .content = "Unified\n", 1458 }, 1459 { 1460 .path = "/sys/devices/system/cpu/cpu1/cache/index2/ways_of_associativity", 1461 .size = 2, 1462 .content = "4\n", 1463 }, 1464 { 1465 .path = "/sys/devices/system/cpu/cpu1/cache/index2/write_policy", 1466 .size = 10, 1467 .content = "WriteBack\n", 1468 }, 1469 { 1470 .path = "/sys/devices/system/cpu/cpu1/cache/index3/allocation_policy", 1471 .size = 18, 1472 .content = "ReadWriteAllocate\n", 1473 }, 1474 { 1475 .path = "/sys/devices/system/cpu/cpu1/cache/index3/coherency_line_size", 1476 .size = 3, 1477 .content = "64\n", 1478 }, 1479 { 1480 .path = "/sys/devices/system/cpu/cpu1/cache/index3/level", 1481 .size = 2, 1482 .content = "3\n", 1483 }, 1484 { 1485 .path = "/sys/devices/system/cpu/cpu1/cache/index3/number_of_sets", 1486 .size = 5, 1487 .content = "2048\n", 1488 }, 1489 { 1490 .path = "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_list", 1491 .size = 4, 1492 .content = "0-7\n", 1493 }, 1494 { 1495 .path = "/sys/devices/system/cpu/cpu1/cache/index3/shared_cpu_map", 1496 .size = 3, 1497 .content = "ff\n", 1498 }, 1499 { 1500 .path = "/sys/devices/system/cpu/cpu1/cache/index3/size", 1501 .size = 6, 1502 .content = "2048K\n", 1503 }, 1504 { 1505 .path = "/sys/devices/system/cpu/cpu1/cache/index3/type", 1506 .size = 8, 1507 .content = "Unified\n", 1508 }, 1509 { 1510 .path = "/sys/devices/system/cpu/cpu1/cache/index3/ways_of_associativity", 1511 .size = 3, 1512 .content = "16\n", 1513 }, 1514 { 1515 .path = "/sys/devices/system/cpu/cpu1/cache/index3/write_policy", 1516 .size = 10, 1517 .content = "WriteBack\n", 1518 }, 1519 { 1520 .path = "/sys/devices/system/cpu/cpu2/cpuidle/driver/name", 1521 .size = 9, 1522 .content = "msm_idle\n", 1523 }, 1524 { 1525 .path = "/sys/devices/system/cpu/cpu2/cpufreq/affected_cpus", 1526 .size = 8, 1527 .content = "0 1 2 3\n", 1528 }, 1529 { 1530 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq", 1531 .size = 8, 1532 .content = "1766400\n", 1533 }, 1534 { 1535 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_min_freq", 1536 .size = 7, 1537 .content = "300000\n", 1538 }, 1539 { 1540 .path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency", 1541 .size = 2, 1542 .content = "0\n", 1543 }, 1544 { 1545 .path = "/sys/devices/system/cpu/cpu2/cpufreq/related_cpus", 1546 .size = 8, 1547 .content = "0 1 2 3\n", 1548 }, 1549 { 1550 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_frequencies", 1551 .size = 136, 1552 .content = "300000 403200 480000 576000 652800 748800 825600 902400 979200 1056000 1132800 1228800 1324800 1420800 1516800 1612800 1689600 1766400 \n", 1553 }, 1554 { 1555 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors", 1556 .size = 23, 1557 .content = "performance schedutil \n", 1558 }, 1559 { 1560 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq", 1561 .size = 7, 1562 .content = "748800\n", 1563 }, 1564 { 1565 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_driver", 1566 .size = 12, 1567 .content = "osm-cpufreq\n", 1568 }, 1569 { 1570 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_governor", 1571 .size = 10, 1572 .content = "schedutil\n", 1573 }, 1574 { 1575 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_max_freq", 1576 .size = 8, 1577 .content = "1766400\n", 1578 }, 1579 { 1580 .path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq", 1581 .size = 7, 1582 .content = "748800\n", 1583 }, 1584 { 1585 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/time_in_state", 1586 .size = 207, 1587 .content = 1588 "300000 0\n" 1589 "403200 0\n" 1590 "480000 0\n" 1591 "576000 0\n" 1592 "652800 0\n" 1593 "748800 67472\n" 1594 "825600 1326\n" 1595 "902400 680\n" 1596 "979200 570\n" 1597 "1056000 839\n" 1598 "1132800 3428\n" 1599 "1228800 4673\n" 1600 "1324800 1242\n" 1601 "1420800 3520\n" 1602 "1516800 1109\n" 1603 "1612800 830\n" 1604 "1689600 477\n" 1605 "1766400 11777\n", 1606 }, 1607 { 1608 .path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/total_trans", 1609 .size = 6, 1610 .content = "11090\n", 1611 }, 1612 { 1613 .path = "/sys/devices/system/cpu/cpu2/isolate", 1614 .size = 2, 1615 .content = "0\n", 1616 }, 1617 { 1618 .path = "/sys/devices/system/cpu/cpu2/regs/identification/midr_el1", 1619 .size = 19, 1620 .content = "0x00000000517f803c\n", 1621 }, 1622 { 1623 .path = "/sys/devices/system/cpu/cpu2/regs/identification/revidr_el1", 1624 .size = 19, 1625 .content = "0x0000000000000000\n", 1626 }, 1627 { 1628 .path = "/sys/devices/system/cpu/cpu2/sched_load_boost", 1629 .size = 2, 1630 .content = "0\n", 1631 }, 1632 { 1633 .path = "/sys/devices/system/cpu/cpu2/topology/core_id", 1634 .size = 2, 1635 .content = "2\n", 1636 }, 1637 { 1638 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings", 1639 .size = 3, 1640 .content = "0f\n", 1641 }, 1642 { 1643 .path = "/sys/devices/system/cpu/cpu2/topology/core_siblings_list", 1644 .size = 4, 1645 .content = "0-3\n", 1646 }, 1647 { 1648 .path = "/sys/devices/system/cpu/cpu2/topology/physical_package_id", 1649 .size = 2, 1650 .content = "0\n", 1651 }, 1652 { 1653 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings", 1654 .size = 3, 1655 .content = "04\n", 1656 }, 1657 { 1658 .path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list", 1659 .size = 2, 1660 .content = "2\n", 1661 }, 1662 { 1663 .path = "/sys/devices/system/cpu/cpu2/cache/index0/allocation_policy", 1664 .size = 18, 1665 .content = "ReadWriteAllocate\n", 1666 }, 1667 { 1668 .path = "/sys/devices/system/cpu/cpu2/cache/index0/coherency_line_size", 1669 .size = 3, 1670 .content = "64\n", 1671 }, 1672 { 1673 .path = "/sys/devices/system/cpu/cpu2/cache/index0/level", 1674 .size = 2, 1675 .content = "1\n", 1676 }, 1677 { 1678 .path = "/sys/devices/system/cpu/cpu2/cache/index0/number_of_sets", 1679 .size = 4, 1680 .content = "128\n", 1681 }, 1682 { 1683 .path = "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_list", 1684 .size = 2, 1685 .content = "2\n", 1686 }, 1687 { 1688 .path = "/sys/devices/system/cpu/cpu2/cache/index0/shared_cpu_map", 1689 .size = 3, 1690 .content = "04\n", 1691 }, 1692 { 1693 .path = "/sys/devices/system/cpu/cpu2/cache/index0/size", 1694 .size = 4, 1695 .content = "32K\n", 1696 }, 1697 { 1698 .path = "/sys/devices/system/cpu/cpu2/cache/index0/type", 1699 .size = 5, 1700 .content = "Data\n", 1701 }, 1702 { 1703 .path = "/sys/devices/system/cpu/cpu2/cache/index0/ways_of_associativity", 1704 .size = 2, 1705 .content = "4\n", 1706 }, 1707 { 1708 .path = "/sys/devices/system/cpu/cpu2/cache/index0/write_policy", 1709 .size = 10, 1710 .content = "WriteBack\n", 1711 }, 1712 { 1713 .path = "/sys/devices/system/cpu/cpu2/cache/index1/allocation_policy", 1714 .size = 13, 1715 .content = "ReadAllocate\n", 1716 }, 1717 { 1718 .path = "/sys/devices/system/cpu/cpu2/cache/index1/coherency_line_size", 1719 .size = 3, 1720 .content = "64\n", 1721 }, 1722 { 1723 .path = "/sys/devices/system/cpu/cpu2/cache/index1/level", 1724 .size = 2, 1725 .content = "1\n", 1726 }, 1727 { 1728 .path = "/sys/devices/system/cpu/cpu2/cache/index1/number_of_sets", 1729 .size = 4, 1730 .content = "128\n", 1731 }, 1732 { 1733 .path = "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_list", 1734 .size = 2, 1735 .content = "2\n", 1736 }, 1737 { 1738 .path = "/sys/devices/system/cpu/cpu2/cache/index1/shared_cpu_map", 1739 .size = 3, 1740 .content = "04\n", 1741 }, 1742 { 1743 .path = "/sys/devices/system/cpu/cpu2/cache/index1/size", 1744 .size = 4, 1745 .content = "32K\n", 1746 }, 1747 { 1748 .path = "/sys/devices/system/cpu/cpu2/cache/index1/type", 1749 .size = 12, 1750 .content = "Instruction\n", 1751 }, 1752 { 1753 .path = "/sys/devices/system/cpu/cpu2/cache/index1/ways_of_associativity", 1754 .size = 2, 1755 .content = "4\n", 1756 }, 1757 { 1758 .path = "/sys/devices/system/cpu/cpu2/cache/index2/allocation_policy", 1759 .size = 18, 1760 .content = "ReadWriteAllocate\n", 1761 }, 1762 { 1763 .path = "/sys/devices/system/cpu/cpu2/cache/index2/coherency_line_size", 1764 .size = 3, 1765 .content = "64\n", 1766 }, 1767 { 1768 .path = "/sys/devices/system/cpu/cpu2/cache/index2/level", 1769 .size = 2, 1770 .content = "2\n", 1771 }, 1772 { 1773 .path = "/sys/devices/system/cpu/cpu2/cache/index2/number_of_sets", 1774 .size = 4, 1775 .content = "512\n", 1776 }, 1777 { 1778 .path = "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_list", 1779 .size = 2, 1780 .content = "2\n", 1781 }, 1782 { 1783 .path = "/sys/devices/system/cpu/cpu2/cache/index2/shared_cpu_map", 1784 .size = 3, 1785 .content = "04\n", 1786 }, 1787 { 1788 .path = "/sys/devices/system/cpu/cpu2/cache/index2/size", 1789 .size = 5, 1790 .content = "128K\n", 1791 }, 1792 { 1793 .path = "/sys/devices/system/cpu/cpu2/cache/index2/type", 1794 .size = 8, 1795 .content = "Unified\n", 1796 }, 1797 { 1798 .path = "/sys/devices/system/cpu/cpu2/cache/index2/ways_of_associativity", 1799 .size = 2, 1800 .content = "4\n", 1801 }, 1802 { 1803 .path = "/sys/devices/system/cpu/cpu2/cache/index2/write_policy", 1804 .size = 10, 1805 .content = "WriteBack\n", 1806 }, 1807 { 1808 .path = "/sys/devices/system/cpu/cpu2/cache/index3/allocation_policy", 1809 .size = 18, 1810 .content = "ReadWriteAllocate\n", 1811 }, 1812 { 1813 .path = "/sys/devices/system/cpu/cpu2/cache/index3/coherency_line_size", 1814 .size = 3, 1815 .content = "64\n", 1816 }, 1817 { 1818 .path = "/sys/devices/system/cpu/cpu2/cache/index3/level", 1819 .size = 2, 1820 .content = "3\n", 1821 }, 1822 { 1823 .path = "/sys/devices/system/cpu/cpu2/cache/index3/number_of_sets", 1824 .size = 5, 1825 .content = "2048\n", 1826 }, 1827 { 1828 .path = "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_list", 1829 .size = 4, 1830 .content = "0-7\n", 1831 }, 1832 { 1833 .path = "/sys/devices/system/cpu/cpu2/cache/index3/shared_cpu_map", 1834 .size = 3, 1835 .content = "ff\n", 1836 }, 1837 { 1838 .path = "/sys/devices/system/cpu/cpu2/cache/index3/size", 1839 .size = 6, 1840 .content = "2048K\n", 1841 }, 1842 { 1843 .path = "/sys/devices/system/cpu/cpu2/cache/index3/type", 1844 .size = 8, 1845 .content = "Unified\n", 1846 }, 1847 { 1848 .path = "/sys/devices/system/cpu/cpu2/cache/index3/ways_of_associativity", 1849 .size = 3, 1850 .content = "16\n", 1851 }, 1852 { 1853 .path = "/sys/devices/system/cpu/cpu2/cache/index3/write_policy", 1854 .size = 10, 1855 .content = "WriteBack\n", 1856 }, 1857 { 1858 .path = "/sys/devices/system/cpu/cpu3/cpuidle/driver/name", 1859 .size = 9, 1860 .content = "msm_idle\n", 1861 }, 1862 { 1863 .path = "/sys/devices/system/cpu/cpu3/cpufreq/affected_cpus", 1864 .size = 8, 1865 .content = "0 1 2 3\n", 1866 }, 1867 { 1868 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq", 1869 .size = 8, 1870 .content = "1766400\n", 1871 }, 1872 { 1873 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_min_freq", 1874 .size = 7, 1875 .content = "300000\n", 1876 }, 1877 { 1878 .path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency", 1879 .size = 2, 1880 .content = "0\n", 1881 }, 1882 { 1883 .path = "/sys/devices/system/cpu/cpu3/cpufreq/related_cpus", 1884 .size = 8, 1885 .content = "0 1 2 3\n", 1886 }, 1887 { 1888 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_frequencies", 1889 .size = 136, 1890 .content = "300000 403200 480000 576000 652800 748800 825600 902400 979200 1056000 1132800 1228800 1324800 1420800 1516800 1612800 1689600 1766400 \n", 1891 }, 1892 { 1893 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors", 1894 .size = 23, 1895 .content = "performance schedutil \n", 1896 }, 1897 { 1898 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq", 1899 .size = 7, 1900 .content = "748800\n", 1901 }, 1902 { 1903 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_driver", 1904 .size = 12, 1905 .content = "osm-cpufreq\n", 1906 }, 1907 { 1908 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_governor", 1909 .size = 10, 1910 .content = "schedutil\n", 1911 }, 1912 { 1913 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_max_freq", 1914 .size = 8, 1915 .content = "1766400\n", 1916 }, 1917 { 1918 .path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq", 1919 .size = 7, 1920 .content = "748800\n", 1921 }, 1922 { 1923 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/time_in_state", 1924 .size = 207, 1925 .content = 1926 "300000 0\n" 1927 "403200 0\n" 1928 "480000 0\n" 1929 "576000 0\n" 1930 "652800 0\n" 1931 "748800 67730\n" 1932 "825600 1331\n" 1933 "902400 683\n" 1934 "979200 570\n" 1935 "1056000 840\n" 1936 "1132800 3428\n" 1937 "1228800 4677\n" 1938 "1324800 1242\n" 1939 "1420800 3520\n" 1940 "1516800 1111\n" 1941 "1612800 832\n" 1942 "1689600 477\n" 1943 "1766400 11784\n", 1944 }, 1945 { 1946 .path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/total_trans", 1947 .size = 6, 1948 .content = "11114\n", 1949 }, 1950 { 1951 .path = "/sys/devices/system/cpu/cpu3/isolate", 1952 .size = 2, 1953 .content = "0\n", 1954 }, 1955 { 1956 .path = "/sys/devices/system/cpu/cpu3/regs/identification/midr_el1", 1957 .size = 19, 1958 .content = "0x00000000517f803c\n", 1959 }, 1960 { 1961 .path = "/sys/devices/system/cpu/cpu3/regs/identification/revidr_el1", 1962 .size = 19, 1963 .content = "0x0000000000000000\n", 1964 }, 1965 { 1966 .path = "/sys/devices/system/cpu/cpu3/sched_load_boost", 1967 .size = 2, 1968 .content = "0\n", 1969 }, 1970 { 1971 .path = "/sys/devices/system/cpu/cpu3/topology/core_id", 1972 .size = 2, 1973 .content = "3\n", 1974 }, 1975 { 1976 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings", 1977 .size = 3, 1978 .content = "0f\n", 1979 }, 1980 { 1981 .path = "/sys/devices/system/cpu/cpu3/topology/core_siblings_list", 1982 .size = 4, 1983 .content = "0-3\n", 1984 }, 1985 { 1986 .path = "/sys/devices/system/cpu/cpu3/topology/physical_package_id", 1987 .size = 2, 1988 .content = "0\n", 1989 }, 1990 { 1991 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings", 1992 .size = 3, 1993 .content = "08\n", 1994 }, 1995 { 1996 .path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list", 1997 .size = 2, 1998 .content = "3\n", 1999 }, 2000 { 2001 .path = "/sys/devices/system/cpu/cpu3/cache/index0/allocation_policy", 2002 .size = 18, 2003 .content = "ReadWriteAllocate\n", 2004 }, 2005 { 2006 .path = "/sys/devices/system/cpu/cpu3/cache/index0/coherency_line_size", 2007 .size = 3, 2008 .content = "64\n", 2009 }, 2010 { 2011 .path = "/sys/devices/system/cpu/cpu3/cache/index0/level", 2012 .size = 2, 2013 .content = "1\n", 2014 }, 2015 { 2016 .path = "/sys/devices/system/cpu/cpu3/cache/index0/number_of_sets", 2017 .size = 4, 2018 .content = "128\n", 2019 }, 2020 { 2021 .path = "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_list", 2022 .size = 2, 2023 .content = "3\n", 2024 }, 2025 { 2026 .path = "/sys/devices/system/cpu/cpu3/cache/index0/shared_cpu_map", 2027 .size = 3, 2028 .content = "08\n", 2029 }, 2030 { 2031 .path = "/sys/devices/system/cpu/cpu3/cache/index0/size", 2032 .size = 4, 2033 .content = "32K\n", 2034 }, 2035 { 2036 .path = "/sys/devices/system/cpu/cpu3/cache/index0/type", 2037 .size = 5, 2038 .content = "Data\n", 2039 }, 2040 { 2041 .path = "/sys/devices/system/cpu/cpu3/cache/index0/ways_of_associativity", 2042 .size = 2, 2043 .content = "4\n", 2044 }, 2045 { 2046 .path = "/sys/devices/system/cpu/cpu3/cache/index0/write_policy", 2047 .size = 10, 2048 .content = "WriteBack\n", 2049 }, 2050 { 2051 .path = "/sys/devices/system/cpu/cpu3/cache/index1/allocation_policy", 2052 .size = 13, 2053 .content = "ReadAllocate\n", 2054 }, 2055 { 2056 .path = "/sys/devices/system/cpu/cpu3/cache/index1/coherency_line_size", 2057 .size = 3, 2058 .content = "64\n", 2059 }, 2060 { 2061 .path = "/sys/devices/system/cpu/cpu3/cache/index1/level", 2062 .size = 2, 2063 .content = "1\n", 2064 }, 2065 { 2066 .path = "/sys/devices/system/cpu/cpu3/cache/index1/number_of_sets", 2067 .size = 4, 2068 .content = "128\n", 2069 }, 2070 { 2071 .path = "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_list", 2072 .size = 2, 2073 .content = "3\n", 2074 }, 2075 { 2076 .path = "/sys/devices/system/cpu/cpu3/cache/index1/shared_cpu_map", 2077 .size = 3, 2078 .content = "08\n", 2079 }, 2080 { 2081 .path = "/sys/devices/system/cpu/cpu3/cache/index1/size", 2082 .size = 4, 2083 .content = "32K\n", 2084 }, 2085 { 2086 .path = "/sys/devices/system/cpu/cpu3/cache/index1/type", 2087 .size = 12, 2088 .content = "Instruction\n", 2089 }, 2090 { 2091 .path = "/sys/devices/system/cpu/cpu3/cache/index1/ways_of_associativity", 2092 .size = 2, 2093 .content = "4\n", 2094 }, 2095 { 2096 .path = "/sys/devices/system/cpu/cpu3/cache/index2/allocation_policy", 2097 .size = 18, 2098 .content = "ReadWriteAllocate\n", 2099 }, 2100 { 2101 .path = "/sys/devices/system/cpu/cpu3/cache/index2/coherency_line_size", 2102 .size = 3, 2103 .content = "64\n", 2104 }, 2105 { 2106 .path = "/sys/devices/system/cpu/cpu3/cache/index2/level", 2107 .size = 2, 2108 .content = "2\n", 2109 }, 2110 { 2111 .path = "/sys/devices/system/cpu/cpu3/cache/index2/number_of_sets", 2112 .size = 4, 2113 .content = "512\n", 2114 }, 2115 { 2116 .path = "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_list", 2117 .size = 2, 2118 .content = "3\n", 2119 }, 2120 { 2121 .path = "/sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map", 2122 .size = 3, 2123 .content = "08\n", 2124 }, 2125 { 2126 .path = "/sys/devices/system/cpu/cpu3/cache/index2/size", 2127 .size = 5, 2128 .content = "128K\n", 2129 }, 2130 { 2131 .path = "/sys/devices/system/cpu/cpu3/cache/index2/type", 2132 .size = 8, 2133 .content = "Unified\n", 2134 }, 2135 { 2136 .path = "/sys/devices/system/cpu/cpu3/cache/index2/ways_of_associativity", 2137 .size = 2, 2138 .content = "4\n", 2139 }, 2140 { 2141 .path = "/sys/devices/system/cpu/cpu3/cache/index2/write_policy", 2142 .size = 10, 2143 .content = "WriteBack\n", 2144 }, 2145 { 2146 .path = "/sys/devices/system/cpu/cpu3/cache/index3/allocation_policy", 2147 .size = 18, 2148 .content = "ReadWriteAllocate\n", 2149 }, 2150 { 2151 .path = "/sys/devices/system/cpu/cpu3/cache/index3/coherency_line_size", 2152 .size = 3, 2153 .content = "64\n", 2154 }, 2155 { 2156 .path = "/sys/devices/system/cpu/cpu3/cache/index3/level", 2157 .size = 2, 2158 .content = "3\n", 2159 }, 2160 { 2161 .path = "/sys/devices/system/cpu/cpu3/cache/index3/number_of_sets", 2162 .size = 5, 2163 .content = "2048\n", 2164 }, 2165 { 2166 .path = "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_list", 2167 .size = 4, 2168 .content = "0-7\n", 2169 }, 2170 { 2171 .path = "/sys/devices/system/cpu/cpu3/cache/index3/shared_cpu_map", 2172 .size = 3, 2173 .content = "ff\n", 2174 }, 2175 { 2176 .path = "/sys/devices/system/cpu/cpu3/cache/index3/size", 2177 .size = 6, 2178 .content = "2048K\n", 2179 }, 2180 { 2181 .path = "/sys/devices/system/cpu/cpu3/cache/index3/type", 2182 .size = 8, 2183 .content = "Unified\n", 2184 }, 2185 { 2186 .path = "/sys/devices/system/cpu/cpu3/cache/index3/ways_of_associativity", 2187 .size = 3, 2188 .content = "16\n", 2189 }, 2190 { 2191 .path = "/sys/devices/system/cpu/cpu3/cache/index3/write_policy", 2192 .size = 10, 2193 .content = "WriteBack\n", 2194 }, 2195 { 2196 .path = "/sys/devices/system/cpu/cpu4/core_ctl/active_cpus", 2197 .size = 2, 2198 .content = "2\n", 2199 }, 2200 { 2201 .path = "/sys/devices/system/cpu/cpu4/core_ctl/busy_up_thres", 2202 .size = 13, 2203 .content = "60 60 60 60 \n", 2204 }, 2205 { 2206 .path = "/sys/devices/system/cpu/cpu4/core_ctl/busy_down_thres", 2207 .size = 13, 2208 .content = "30 30 30 30 \n", 2209 }, 2210 { 2211 .path = "/sys/devices/system/cpu/cpu4/core_ctl/enable", 2212 .size = 2, 2213 .content = "1\n", 2214 }, 2215 { 2216 .path = "/sys/devices/system/cpu/cpu4/core_ctl/global_state", 2217 .size = 1336, 2218 .content = 2219 "CPU0\n" 2220 "\tCPU: 0\n" 2221 "\tOnline: 1\n" 2222 "\tIsolated: 0\n" 2223 "\tFirst CPU: 0\n" 2224 "\tBusy%: 1\n" 2225 "\tIs busy: 1\n" 2226 "\tNot preferred: 0\n" 2227 "\tNr running: 1\n" 2228 "\tActive CPUs: 4\n" 2229 "\tNeed CPUs: 4\n" 2230 "\tNr isolated CPUs: 0\n" 2231 "\tBoost: 0\n" 2232 "CPU1\n" 2233 "\tCPU: 1\n" 2234 "\tOnline: 1\n" 2235 "\tIsolated: 0\n" 2236 "\tFirst CPU: 0\n" 2237 "\tBusy%: 1\n" 2238 "\tIs busy: 1\n" 2239 "\tNot preferred: 0\n" 2240 "\tNr running: 1\n" 2241 "\tActive CPUs: 4\n" 2242 "\tNeed CPUs: 4\n" 2243 "\tNr isolated CPUs: 0\n" 2244 "\tBoost: 0\n" 2245 "CPU2\n" 2246 "\tCPU: 2\n" 2247 "\tOnline: 1\n" 2248 "\tIsolated: 0\n" 2249 "\tFirst CPU: 0\n" 2250 "\tBusy%: 4\n" 2251 "\tIs busy: 1\n" 2252 "\tNot preferred: 0\n" 2253 "\tNr running: 1\n" 2254 "\tActive CPUs: 4\n" 2255 "\tNeed CPUs: 4\n" 2256 "\tNr isolated CPUs: 0\n" 2257 "\tBoost: 0\n" 2258 "CPU3\n" 2259 "\tCPU: 3\n" 2260 "\tOnline: 1\n" 2261 "\tIsolated: 0\n" 2262 "\tFirst CPU: 0\n" 2263 "\tBusy%: 0\n" 2264 "\tIs busy: 1\n" 2265 "\tNot preferred: 0\n" 2266 "\tNr running: 1\n" 2267 "\tActive CPUs: 4\n" 2268 "\tNeed CPUs: 4\n" 2269 "\tNr isolated CPUs: 0\n" 2270 "\tBoost: 0\n" 2271 "CPU4\n" 2272 "\tCPU: 4\n" 2273 "\tOnline: 1\n" 2274 "\tIsolated: 1\n" 2275 "\tFirst CPU: 4\n" 2276 "\tBusy%: 0\n" 2277 "\tIs busy: 0\n" 2278 "\tNot preferred: 0\n" 2279 "\tNr running: 0\n" 2280 "\tActive CPUs: 2\n" 2281 "\tNeed CPUs: 2\n" 2282 "\tNr isolated CPUs: 2\n" 2283 "\tBoost: 0\n" 2284 "CPU5\n" 2285 "\tCPU: 5\n" 2286 "\tOnline: 1\n" 2287 "\tIsolated: 1\n" 2288 "\tFirst CPU: 4\n" 2289 "\tBusy%: 0\n" 2290 "\tIs busy: 0\n" 2291 "\tNot preferred: 0\n" 2292 "\tNr running: 0\n" 2293 "\tActive CPUs: 2\n" 2294 "\tNeed CPUs: 2\n" 2295 "\tNr isolated CPUs: 2\n" 2296 "\tBoost: 0\n" 2297 "CPU6\n" 2298 "\tCPU: 6\n" 2299 "\tOnline: 1\n" 2300 "\tIsolated: 0\n" 2301 "\tFirst CPU: 4\n" 2302 "\tBusy%: 0\n" 2303 "\tIs busy: 0\n" 2304 "\tNot preferred: 0\n" 2305 "\tNr running: 0\n" 2306 "\tActive CPUs: 2\n" 2307 "\tNeed CPUs: 2\n" 2308 "\tNr isolated CPUs: 2\n" 2309 "\tBoost: 0\n" 2310 "CPU7\n" 2311 "\tCPU: 7\n" 2312 "\tOnline: 1\n" 2313 "\tIsolated: 0\n" 2314 "\tFirst CPU: 4\n" 2315 "\tBusy%: 0\n" 2316 "\tIs busy: 0\n" 2317 "\tNot preferred: 0\n" 2318 "\tNr running: 0\n" 2319 "\tActive CPUs: 2\n" 2320 "\tNeed CPUs: 2\n" 2321 "\tNr isolated CPUs: 2\n" 2322 "\tBoost: 0\n", 2323 }, 2324 { 2325 .path = "/sys/devices/system/cpu/cpu4/core_ctl/is_big_cluster", 2326 .size = 2, 2327 .content = "1\n", 2328 }, 2329 { 2330 .path = "/sys/devices/system/cpu/cpu4/core_ctl/max_cpus", 2331 .size = 2, 2332 .content = "4\n", 2333 }, 2334 { 2335 .path = "/sys/devices/system/cpu/cpu4/core_ctl/min_cpus", 2336 .size = 2, 2337 .content = "2\n", 2338 }, 2339 { 2340 .path = "/sys/devices/system/cpu/cpu4/core_ctl/need_cpus", 2341 .size = 2, 2342 .content = "2\n", 2343 }, 2344 { 2345 .path = "/sys/devices/system/cpu/cpu4/core_ctl/not_preferred", 2346 .size = 36, 2347 .content = 2348 "CPU#4: 0\n" 2349 "CPU#5: 0\n" 2350 "CPU#6: 0\n" 2351 "CPU#7: 0\n", 2352 }, 2353 { 2354 .path = "/sys/devices/system/cpu/cpu4/core_ctl/offline_delay_ms", 2355 .size = 4, 2356 .content = "100\n", 2357 }, 2358 { 2359 .path = "/sys/devices/system/cpu/cpu4/core_ctl/task_thres", 2360 .size = 2, 2361 .content = "4\n", 2362 }, 2363 { 2364 .path = "/sys/devices/system/cpu/cpu4/cpuidle/driver/name", 2365 .size = 9, 2366 .content = "msm_idle\n", 2367 }, 2368 { 2369 .path = "/sys/devices/system/cpu/cpu4/cpufreq/affected_cpus", 2370 .size = 8, 2371 .content = "4 5 6 7\n", 2372 }, 2373 { 2374 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq", 2375 .size = 8, 2376 .content = "2803200\n", 2377 }, 2378 { 2379 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_min_freq", 2380 .size = 7, 2381 .content = "825600\n", 2382 }, 2383 { 2384 .path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_transition_latency", 2385 .size = 2, 2386 .content = "0\n", 2387 }, 2388 { 2389 .path = "/sys/devices/system/cpu/cpu4/cpufreq/related_cpus", 2390 .size = 8, 2391 .content = "4 5 6 7\n", 2392 }, 2393 { 2394 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_frequencies", 2395 .size = 182, 2396 .content = "825600 902400 979200 1056000 1209600 1286400 1363200 1459200 1536000 1612800 1689600 1766400 1843200 1920000 1996800 2092800 2169600 2246400 2323200 2400000 2476800 2553600 2649600 \n", 2397 }, 2398 { 2399 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_governors", 2400 .size = 23, 2401 .content = "performance schedutil \n", 2402 }, 2403 { 2404 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq", 2405 .size = 7, 2406 .content = "825600\n", 2407 }, 2408 { 2409 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_driver", 2410 .size = 12, 2411 .content = "osm-cpufreq\n", 2412 }, 2413 { 2414 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_governor", 2415 .size = 10, 2416 .content = "schedutil\n", 2417 }, 2418 { 2419 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq", 2420 .size = 8, 2421 .content = "2803200\n", 2422 }, 2423 { 2424 .path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq", 2425 .size = 7, 2426 .content = "825600\n", 2427 }, 2428 { 2429 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state", 2430 .size = 280, 2431 .content = 2432 "825600 87365\n" 2433 "902400 90\n" 2434 "979200 211\n" 2435 "1056000 540\n" 2436 "1209600 409\n" 2437 "1286400 268\n" 2438 "1363200 443\n" 2439 "1459200 126\n" 2440 "1536000 56\n" 2441 "1612800 499\n" 2442 "1689600 251\n" 2443 "1766400 156\n" 2444 "1843200 87\n" 2445 "1920000 85\n" 2446 "1996800 172\n" 2447 "2092800 115\n" 2448 "2169600 96\n" 2449 "2246400 70\n" 2450 "2323200 687\n" 2451 "2400000 98\n" 2452 "2476800 238\n" 2453 "2553600 75\n" 2454 "2649600 118\n" 2455 "2803200 6280\n", 2456 }, 2457 { 2458 .path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/total_trans", 2459 .size = 5, 2460 .content = "6193\n", 2461 }, 2462 { 2463 .path = "/sys/devices/system/cpu/cpu4/isolate", 2464 .size = 2, 2465 .content = "1\n", 2466 }, 2467 { 2468 .path = "/sys/devices/system/cpu/cpu4/regs/identification/midr_el1", 2469 .size = 19, 2470 .content = "0x00000000516f802d\n", 2471 }, 2472 { 2473 .path = "/sys/devices/system/cpu/cpu4/regs/identification/revidr_el1", 2474 .size = 19, 2475 .content = "0x0000000000000001\n", 2476 }, 2477 { 2478 .path = "/sys/devices/system/cpu/cpu4/sched_load_boost", 2479 .size = 2, 2480 .content = "0\n", 2481 }, 2482 { 2483 .path = "/sys/devices/system/cpu/cpu4/topology/core_id", 2484 .size = 2, 2485 .content = "0\n", 2486 }, 2487 { 2488 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings", 2489 .size = 3, 2490 .content = "f0\n", 2491 }, 2492 { 2493 .path = "/sys/devices/system/cpu/cpu4/topology/core_siblings_list", 2494 .size = 4, 2495 .content = "4-7\n", 2496 }, 2497 { 2498 .path = "/sys/devices/system/cpu/cpu4/topology/physical_package_id", 2499 .size = 2, 2500 .content = "1\n", 2501 }, 2502 { 2503 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings", 2504 .size = 3, 2505 .content = "10\n", 2506 }, 2507 { 2508 .path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list", 2509 .size = 2, 2510 .content = "4\n", 2511 }, 2512 { 2513 .path = "/sys/devices/system/cpu/cpu4/cache/index0/allocation_policy", 2514 .size = 18, 2515 .content = "ReadWriteAllocate\n", 2516 }, 2517 { 2518 .path = "/sys/devices/system/cpu/cpu4/cache/index0/coherency_line_size", 2519 .size = 3, 2520 .content = "64\n", 2521 }, 2522 { 2523 .path = "/sys/devices/system/cpu/cpu4/cache/index0/level", 2524 .size = 2, 2525 .content = "1\n", 2526 }, 2527 { 2528 .path = "/sys/devices/system/cpu/cpu4/cache/index0/number_of_sets", 2529 .size = 3, 2530 .content = "64\n", 2531 }, 2532 { 2533 .path = "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_list", 2534 .size = 2, 2535 .content = "4\n", 2536 }, 2537 { 2538 .path = "/sys/devices/system/cpu/cpu4/cache/index0/shared_cpu_map", 2539 .size = 3, 2540 .content = "10\n", 2541 }, 2542 { 2543 .path = "/sys/devices/system/cpu/cpu4/cache/index0/size", 2544 .size = 4, 2545 .content = "64K\n", 2546 }, 2547 { 2548 .path = "/sys/devices/system/cpu/cpu4/cache/index0/type", 2549 .size = 5, 2550 .content = "Data\n", 2551 }, 2552 { 2553 .path = "/sys/devices/system/cpu/cpu4/cache/index0/ways_of_associativity", 2554 .size = 3, 2555 .content = "16\n", 2556 }, 2557 { 2558 .path = "/sys/devices/system/cpu/cpu4/cache/index0/write_policy", 2559 .size = 10, 2560 .content = "WriteBack\n", 2561 }, 2562 { 2563 .path = "/sys/devices/system/cpu/cpu4/cache/index1/allocation_policy", 2564 .size = 13, 2565 .content = "ReadAllocate\n", 2566 }, 2567 { 2568 .path = "/sys/devices/system/cpu/cpu4/cache/index1/coherency_line_size", 2569 .size = 3, 2570 .content = "64\n", 2571 }, 2572 { 2573 .path = "/sys/devices/system/cpu/cpu4/cache/index1/level", 2574 .size = 2, 2575 .content = "1\n", 2576 }, 2577 { 2578 .path = "/sys/devices/system/cpu/cpu4/cache/index1/number_of_sets", 2579 .size = 4, 2580 .content = "256\n", 2581 }, 2582 { 2583 .path = "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_list", 2584 .size = 2, 2585 .content = "4\n", 2586 }, 2587 { 2588 .path = "/sys/devices/system/cpu/cpu4/cache/index1/shared_cpu_map", 2589 .size = 3, 2590 .content = "10\n", 2591 }, 2592 { 2593 .path = "/sys/devices/system/cpu/cpu4/cache/index1/size", 2594 .size = 4, 2595 .content = "64K\n", 2596 }, 2597 { 2598 .path = "/sys/devices/system/cpu/cpu4/cache/index1/type", 2599 .size = 12, 2600 .content = "Instruction\n", 2601 }, 2602 { 2603 .path = "/sys/devices/system/cpu/cpu4/cache/index1/ways_of_associativity", 2604 .size = 2, 2605 .content = "4\n", 2606 }, 2607 { 2608 .path = "/sys/devices/system/cpu/cpu4/cache/index2/allocation_policy", 2609 .size = 18, 2610 .content = "ReadWriteAllocate\n", 2611 }, 2612 { 2613 .path = "/sys/devices/system/cpu/cpu4/cache/index2/coherency_line_size", 2614 .size = 3, 2615 .content = "64\n", 2616 }, 2617 { 2618 .path = "/sys/devices/system/cpu/cpu4/cache/index2/level", 2619 .size = 2, 2620 .content = "2\n", 2621 }, 2622 { 2623 .path = "/sys/devices/system/cpu/cpu4/cache/index2/number_of_sets", 2624 .size = 4, 2625 .content = "512\n", 2626 }, 2627 { 2628 .path = "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_list", 2629 .size = 2, 2630 .content = "4\n", 2631 }, 2632 { 2633 .path = "/sys/devices/system/cpu/cpu4/cache/index2/shared_cpu_map", 2634 .size = 3, 2635 .content = "10\n", 2636 }, 2637 { 2638 .path = "/sys/devices/system/cpu/cpu4/cache/index2/size", 2639 .size = 5, 2640 .content = "256K\n", 2641 }, 2642 { 2643 .path = "/sys/devices/system/cpu/cpu4/cache/index2/type", 2644 .size = 8, 2645 .content = "Unified\n", 2646 }, 2647 { 2648 .path = "/sys/devices/system/cpu/cpu4/cache/index2/ways_of_associativity", 2649 .size = 2, 2650 .content = "8\n", 2651 }, 2652 { 2653 .path = "/sys/devices/system/cpu/cpu4/cache/index2/write_policy", 2654 .size = 10, 2655 .content = "WriteBack\n", 2656 }, 2657 { 2658 .path = "/sys/devices/system/cpu/cpu4/cache/index3/allocation_policy", 2659 .size = 18, 2660 .content = "ReadWriteAllocate\n", 2661 }, 2662 { 2663 .path = "/sys/devices/system/cpu/cpu4/cache/index3/coherency_line_size", 2664 .size = 3, 2665 .content = "64\n", 2666 }, 2667 { 2668 .path = "/sys/devices/system/cpu/cpu4/cache/index3/level", 2669 .size = 2, 2670 .content = "3\n", 2671 }, 2672 { 2673 .path = "/sys/devices/system/cpu/cpu4/cache/index3/number_of_sets", 2674 .size = 5, 2675 .content = "2048\n", 2676 }, 2677 { 2678 .path = "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_list", 2679 .size = 4, 2680 .content = "0-7\n", 2681 }, 2682 { 2683 .path = "/sys/devices/system/cpu/cpu4/cache/index3/shared_cpu_map", 2684 .size = 3, 2685 .content = "ff\n", 2686 }, 2687 { 2688 .path = "/sys/devices/system/cpu/cpu4/cache/index3/size", 2689 .size = 6, 2690 .content = "2048K\n", 2691 }, 2692 { 2693 .path = "/sys/devices/system/cpu/cpu4/cache/index3/type", 2694 .size = 8, 2695 .content = "Unified\n", 2696 }, 2697 { 2698 .path = "/sys/devices/system/cpu/cpu4/cache/index3/ways_of_associativity", 2699 .size = 3, 2700 .content = "16\n", 2701 }, 2702 { 2703 .path = "/sys/devices/system/cpu/cpu4/cache/index3/write_policy", 2704 .size = 10, 2705 .content = "WriteBack\n", 2706 }, 2707 { 2708 .path = "/sys/devices/system/cpu/cpu5/cpuidle/driver/name", 2709 .size = 9, 2710 .content = "msm_idle\n", 2711 }, 2712 { 2713 .path = "/sys/devices/system/cpu/cpu5/cpufreq/affected_cpus", 2714 .size = 8, 2715 .content = "4 5 6 7\n", 2716 }, 2717 { 2718 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_max_freq", 2719 .size = 8, 2720 .content = "2803200\n", 2721 }, 2722 { 2723 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_min_freq", 2724 .size = 7, 2725 .content = "825600\n", 2726 }, 2727 { 2728 .path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_transition_latency", 2729 .size = 2, 2730 .content = "0\n", 2731 }, 2732 { 2733 .path = "/sys/devices/system/cpu/cpu5/cpufreq/related_cpus", 2734 .size = 8, 2735 .content = "4 5 6 7\n", 2736 }, 2737 { 2738 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_frequencies", 2739 .size = 182, 2740 .content = "825600 902400 979200 1056000 1209600 1286400 1363200 1459200 1536000 1612800 1689600 1766400 1843200 1920000 1996800 2092800 2169600 2246400 2323200 2400000 2476800 2553600 2649600 \n", 2741 }, 2742 { 2743 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_governors", 2744 .size = 23, 2745 .content = "performance schedutil \n", 2746 }, 2747 { 2748 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq", 2749 .size = 7, 2750 .content = "825600\n", 2751 }, 2752 { 2753 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_driver", 2754 .size = 12, 2755 .content = "osm-cpufreq\n", 2756 }, 2757 { 2758 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_governor", 2759 .size = 10, 2760 .content = "schedutil\n", 2761 }, 2762 { 2763 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_max_freq", 2764 .size = 8, 2765 .content = "2803200\n", 2766 }, 2767 { 2768 .path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq", 2769 .size = 7, 2770 .content = "825600\n", 2771 }, 2772 { 2773 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/time_in_state", 2774 .size = 280, 2775 .content = 2776 "825600 87664\n" 2777 "902400 90\n" 2778 "979200 211\n" 2779 "1056000 540\n" 2780 "1209600 409\n" 2781 "1286400 268\n" 2782 "1363200 443\n" 2783 "1459200 126\n" 2784 "1536000 56\n" 2785 "1612800 499\n" 2786 "1689600 251\n" 2787 "1766400 156\n" 2788 "1843200 87\n" 2789 "1920000 85\n" 2790 "1996800 172\n" 2791 "2092800 115\n" 2792 "2169600 96\n" 2793 "2246400 70\n" 2794 "2323200 687\n" 2795 "2400000 98\n" 2796 "2476800 238\n" 2797 "2553600 75\n" 2798 "2649600 118\n" 2799 "2803200 6280\n", 2800 }, 2801 { 2802 .path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/total_trans", 2803 .size = 5, 2804 .content = "6193\n", 2805 }, 2806 { 2807 .path = "/sys/devices/system/cpu/cpu5/isolate", 2808 .size = 2, 2809 .content = "1\n", 2810 }, 2811 { 2812 .path = "/sys/devices/system/cpu/cpu5/regs/identification/midr_el1", 2813 .size = 19, 2814 .content = "0x00000000516f802d\n", 2815 }, 2816 { 2817 .path = "/sys/devices/system/cpu/cpu5/regs/identification/revidr_el1", 2818 .size = 19, 2819 .content = "0x0000000000000001\n", 2820 }, 2821 { 2822 .path = "/sys/devices/system/cpu/cpu5/sched_load_boost", 2823 .size = 2, 2824 .content = "0\n", 2825 }, 2826 { 2827 .path = "/sys/devices/system/cpu/cpu5/topology/core_id", 2828 .size = 2, 2829 .content = "1\n", 2830 }, 2831 { 2832 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings", 2833 .size = 3, 2834 .content = "f0\n", 2835 }, 2836 { 2837 .path = "/sys/devices/system/cpu/cpu5/topology/core_siblings_list", 2838 .size = 4, 2839 .content = "4-7\n", 2840 }, 2841 { 2842 .path = "/sys/devices/system/cpu/cpu5/topology/physical_package_id", 2843 .size = 2, 2844 .content = "1\n", 2845 }, 2846 { 2847 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings", 2848 .size = 3, 2849 .content = "20\n", 2850 }, 2851 { 2852 .path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list", 2853 .size = 2, 2854 .content = "5\n", 2855 }, 2856 { 2857 .path = "/sys/devices/system/cpu/cpu5/cache/index0/allocation_policy", 2858 .size = 18, 2859 .content = "ReadWriteAllocate\n", 2860 }, 2861 { 2862 .path = "/sys/devices/system/cpu/cpu5/cache/index0/coherency_line_size", 2863 .size = 3, 2864 .content = "64\n", 2865 }, 2866 { 2867 .path = "/sys/devices/system/cpu/cpu5/cache/index0/level", 2868 .size = 2, 2869 .content = "1\n", 2870 }, 2871 { 2872 .path = "/sys/devices/system/cpu/cpu5/cache/index0/number_of_sets", 2873 .size = 3, 2874 .content = "64\n", 2875 }, 2876 { 2877 .path = "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_list", 2878 .size = 2, 2879 .content = "5\n", 2880 }, 2881 { 2882 .path = "/sys/devices/system/cpu/cpu5/cache/index0/shared_cpu_map", 2883 .size = 3, 2884 .content = "20\n", 2885 }, 2886 { 2887 .path = "/sys/devices/system/cpu/cpu5/cache/index0/size", 2888 .size = 4, 2889 .content = "64K\n", 2890 }, 2891 { 2892 .path = "/sys/devices/system/cpu/cpu5/cache/index0/type", 2893 .size = 5, 2894 .content = "Data\n", 2895 }, 2896 { 2897 .path = "/sys/devices/system/cpu/cpu5/cache/index0/ways_of_associativity", 2898 .size = 3, 2899 .content = "16\n", 2900 }, 2901 { 2902 .path = "/sys/devices/system/cpu/cpu5/cache/index0/write_policy", 2903 .size = 10, 2904 .content = "WriteBack\n", 2905 }, 2906 { 2907 .path = "/sys/devices/system/cpu/cpu5/cache/index1/allocation_policy", 2908 .size = 13, 2909 .content = "ReadAllocate\n", 2910 }, 2911 { 2912 .path = "/sys/devices/system/cpu/cpu5/cache/index1/coherency_line_size", 2913 .size = 3, 2914 .content = "64\n", 2915 }, 2916 { 2917 .path = "/sys/devices/system/cpu/cpu5/cache/index1/level", 2918 .size = 2, 2919 .content = "1\n", 2920 }, 2921 { 2922 .path = "/sys/devices/system/cpu/cpu5/cache/index1/number_of_sets", 2923 .size = 4, 2924 .content = "256\n", 2925 }, 2926 { 2927 .path = "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_list", 2928 .size = 2, 2929 .content = "5\n", 2930 }, 2931 { 2932 .path = "/sys/devices/system/cpu/cpu5/cache/index1/shared_cpu_map", 2933 .size = 3, 2934 .content = "20\n", 2935 }, 2936 { 2937 .path = "/sys/devices/system/cpu/cpu5/cache/index1/size", 2938 .size = 4, 2939 .content = "64K\n", 2940 }, 2941 { 2942 .path = "/sys/devices/system/cpu/cpu5/cache/index1/type", 2943 .size = 12, 2944 .content = "Instruction\n", 2945 }, 2946 { 2947 .path = "/sys/devices/system/cpu/cpu5/cache/index1/ways_of_associativity", 2948 .size = 2, 2949 .content = "4\n", 2950 }, 2951 { 2952 .path = "/sys/devices/system/cpu/cpu5/cache/index2/allocation_policy", 2953 .size = 18, 2954 .content = "ReadWriteAllocate\n", 2955 }, 2956 { 2957 .path = "/sys/devices/system/cpu/cpu5/cache/index2/coherency_line_size", 2958 .size = 3, 2959 .content = "64\n", 2960 }, 2961 { 2962 .path = "/sys/devices/system/cpu/cpu5/cache/index2/level", 2963 .size = 2, 2964 .content = "2\n", 2965 }, 2966 { 2967 .path = "/sys/devices/system/cpu/cpu5/cache/index2/number_of_sets", 2968 .size = 4, 2969 .content = "512\n", 2970 }, 2971 { 2972 .path = "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_list", 2973 .size = 2, 2974 .content = "5\n", 2975 }, 2976 { 2977 .path = "/sys/devices/system/cpu/cpu5/cache/index2/shared_cpu_map", 2978 .size = 3, 2979 .content = "20\n", 2980 }, 2981 { 2982 .path = "/sys/devices/system/cpu/cpu5/cache/index2/size", 2983 .size = 5, 2984 .content = "256K\n", 2985 }, 2986 { 2987 .path = "/sys/devices/system/cpu/cpu5/cache/index2/type", 2988 .size = 8, 2989 .content = "Unified\n", 2990 }, 2991 { 2992 .path = "/sys/devices/system/cpu/cpu5/cache/index2/ways_of_associativity", 2993 .size = 2, 2994 .content = "8\n", 2995 }, 2996 { 2997 .path = "/sys/devices/system/cpu/cpu5/cache/index2/write_policy", 2998 .size = 10, 2999 .content = "WriteBack\n", 3000 }, 3001 { 3002 .path = "/sys/devices/system/cpu/cpu5/cache/index3/allocation_policy", 3003 .size = 18, 3004 .content = "ReadWriteAllocate\n", 3005 }, 3006 { 3007 .path = "/sys/devices/system/cpu/cpu5/cache/index3/coherency_line_size", 3008 .size = 3, 3009 .content = "64\n", 3010 }, 3011 { 3012 .path = "/sys/devices/system/cpu/cpu5/cache/index3/level", 3013 .size = 2, 3014 .content = "3\n", 3015 }, 3016 { 3017 .path = "/sys/devices/system/cpu/cpu5/cache/index3/number_of_sets", 3018 .size = 5, 3019 .content = "2048\n", 3020 }, 3021 { 3022 .path = "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_list", 3023 .size = 4, 3024 .content = "0-7\n", 3025 }, 3026 { 3027 .path = "/sys/devices/system/cpu/cpu5/cache/index3/shared_cpu_map", 3028 .size = 3, 3029 .content = "ff\n", 3030 }, 3031 { 3032 .path = "/sys/devices/system/cpu/cpu5/cache/index3/size", 3033 .size = 6, 3034 .content = "2048K\n", 3035 }, 3036 { 3037 .path = "/sys/devices/system/cpu/cpu5/cache/index3/type", 3038 .size = 8, 3039 .content = "Unified\n", 3040 }, 3041 { 3042 .path = "/sys/devices/system/cpu/cpu5/cache/index3/ways_of_associativity", 3043 .size = 3, 3044 .content = "16\n", 3045 }, 3046 { 3047 .path = "/sys/devices/system/cpu/cpu5/cache/index3/write_policy", 3048 .size = 10, 3049 .content = "WriteBack\n", 3050 }, 3051 { 3052 .path = "/sys/devices/system/cpu/cpu6/cpuidle/driver/name", 3053 .size = 9, 3054 .content = "msm_idle\n", 3055 }, 3056 { 3057 .path = "/sys/devices/system/cpu/cpu6/cpufreq/affected_cpus", 3058 .size = 8, 3059 .content = "4 5 6 7\n", 3060 }, 3061 { 3062 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_max_freq", 3063 .size = 8, 3064 .content = "2803200\n", 3065 }, 3066 { 3067 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_min_freq", 3068 .size = 7, 3069 .content = "825600\n", 3070 }, 3071 { 3072 .path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_transition_latency", 3073 .size = 2, 3074 .content = "0\n", 3075 }, 3076 { 3077 .path = "/sys/devices/system/cpu/cpu6/cpufreq/related_cpus", 3078 .size = 8, 3079 .content = "4 5 6 7\n", 3080 }, 3081 { 3082 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_frequencies", 3083 .size = 182, 3084 .content = "825600 902400 979200 1056000 1209600 1286400 1363200 1459200 1536000 1612800 1689600 1766400 1843200 1920000 1996800 2092800 2169600 2246400 2323200 2400000 2476800 2553600 2649600 \n", 3085 }, 3086 { 3087 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_governors", 3088 .size = 23, 3089 .content = "performance schedutil \n", 3090 }, 3091 { 3092 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_cur_freq", 3093 .size = 7, 3094 .content = "825600\n", 3095 }, 3096 { 3097 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_driver", 3098 .size = 12, 3099 .content = "osm-cpufreq\n", 3100 }, 3101 { 3102 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_governor", 3103 .size = 10, 3104 .content = "schedutil\n", 3105 }, 3106 { 3107 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_max_freq", 3108 .size = 8, 3109 .content = "2803200\n", 3110 }, 3111 { 3112 .path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq", 3113 .size = 7, 3114 .content = "825600\n", 3115 }, 3116 { 3117 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/time_in_state", 3118 .size = 280, 3119 .content = 3120 "825600 87975\n" 3121 "902400 90\n" 3122 "979200 211\n" 3123 "1056000 540\n" 3124 "1209600 409\n" 3125 "1286400 272\n" 3126 "1363200 443\n" 3127 "1459200 126\n" 3128 "1536000 56\n" 3129 "1612800 499\n" 3130 "1689600 251\n" 3131 "1766400 156\n" 3132 "1843200 87\n" 3133 "1920000 85\n" 3134 "1996800 172\n" 3135 "2092800 115\n" 3136 "2169600 96\n" 3137 "2246400 70\n" 3138 "2323200 687\n" 3139 "2400000 98\n" 3140 "2476800 238\n" 3141 "2553600 75\n" 3142 "2649600 118\n" 3143 "2803200 6280\n", 3144 }, 3145 { 3146 .path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/total_trans", 3147 .size = 5, 3148 .content = "6195\n", 3149 }, 3150 { 3151 .path = "/sys/devices/system/cpu/cpu6/isolate", 3152 .size = 2, 3153 .content = "0\n", 3154 }, 3155 { 3156 .path = "/sys/devices/system/cpu/cpu6/regs/identification/midr_el1", 3157 .size = 19, 3158 .content = "0x00000000516f802d\n", 3159 }, 3160 { 3161 .path = "/sys/devices/system/cpu/cpu6/regs/identification/revidr_el1", 3162 .size = 19, 3163 .content = "0x0000000000000001\n", 3164 }, 3165 { 3166 .path = "/sys/devices/system/cpu/cpu6/sched_load_boost", 3167 .size = 2, 3168 .content = "0\n", 3169 }, 3170 { 3171 .path = "/sys/devices/system/cpu/cpu6/topology/core_id", 3172 .size = 2, 3173 .content = "2\n", 3174 }, 3175 { 3176 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings", 3177 .size = 3, 3178 .content = "f0\n", 3179 }, 3180 { 3181 .path = "/sys/devices/system/cpu/cpu6/topology/core_siblings_list", 3182 .size = 4, 3183 .content = "4-7\n", 3184 }, 3185 { 3186 .path = "/sys/devices/system/cpu/cpu6/topology/physical_package_id", 3187 .size = 2, 3188 .content = "1\n", 3189 }, 3190 { 3191 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings", 3192 .size = 3, 3193 .content = "40\n", 3194 }, 3195 { 3196 .path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list", 3197 .size = 2, 3198 .content = "6\n", 3199 }, 3200 { 3201 .path = "/sys/devices/system/cpu/cpu6/cache/index0/allocation_policy", 3202 .size = 18, 3203 .content = "ReadWriteAllocate\n", 3204 }, 3205 { 3206 .path = "/sys/devices/system/cpu/cpu6/cache/index0/coherency_line_size", 3207 .size = 3, 3208 .content = "64\n", 3209 }, 3210 { 3211 .path = "/sys/devices/system/cpu/cpu6/cache/index0/level", 3212 .size = 2, 3213 .content = "1\n", 3214 }, 3215 { 3216 .path = "/sys/devices/system/cpu/cpu6/cache/index0/number_of_sets", 3217 .size = 3, 3218 .content = "64\n", 3219 }, 3220 { 3221 .path = "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_list", 3222 .size = 2, 3223 .content = "6\n", 3224 }, 3225 { 3226 .path = "/sys/devices/system/cpu/cpu6/cache/index0/shared_cpu_map", 3227 .size = 3, 3228 .content = "40\n", 3229 }, 3230 { 3231 .path = "/sys/devices/system/cpu/cpu6/cache/index0/size", 3232 .size = 4, 3233 .content = "64K\n", 3234 }, 3235 { 3236 .path = "/sys/devices/system/cpu/cpu6/cache/index0/type", 3237 .size = 5, 3238 .content = "Data\n", 3239 }, 3240 { 3241 .path = "/sys/devices/system/cpu/cpu6/cache/index0/ways_of_associativity", 3242 .size = 3, 3243 .content = "16\n", 3244 }, 3245 { 3246 .path = "/sys/devices/system/cpu/cpu6/cache/index0/write_policy", 3247 .size = 10, 3248 .content = "WriteBack\n", 3249 }, 3250 { 3251 .path = "/sys/devices/system/cpu/cpu6/cache/index1/allocation_policy", 3252 .size = 13, 3253 .content = "ReadAllocate\n", 3254 }, 3255 { 3256 .path = "/sys/devices/system/cpu/cpu6/cache/index1/coherency_line_size", 3257 .size = 3, 3258 .content = "64\n", 3259 }, 3260 { 3261 .path = "/sys/devices/system/cpu/cpu6/cache/index1/level", 3262 .size = 2, 3263 .content = "1\n", 3264 }, 3265 { 3266 .path = "/sys/devices/system/cpu/cpu6/cache/index1/number_of_sets", 3267 .size = 4, 3268 .content = "256\n", 3269 }, 3270 { 3271 .path = "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_list", 3272 .size = 2, 3273 .content = "6\n", 3274 }, 3275 { 3276 .path = "/sys/devices/system/cpu/cpu6/cache/index1/shared_cpu_map", 3277 .size = 3, 3278 .content = "40\n", 3279 }, 3280 { 3281 .path = "/sys/devices/system/cpu/cpu6/cache/index1/size", 3282 .size = 4, 3283 .content = "64K\n", 3284 }, 3285 { 3286 .path = "/sys/devices/system/cpu/cpu6/cache/index1/type", 3287 .size = 12, 3288 .content = "Instruction\n", 3289 }, 3290 { 3291 .path = "/sys/devices/system/cpu/cpu6/cache/index1/ways_of_associativity", 3292 .size = 2, 3293 .content = "4\n", 3294 }, 3295 { 3296 .path = "/sys/devices/system/cpu/cpu6/cache/index2/allocation_policy", 3297 .size = 18, 3298 .content = "ReadWriteAllocate\n", 3299 }, 3300 { 3301 .path = "/sys/devices/system/cpu/cpu6/cache/index2/coherency_line_size", 3302 .size = 3, 3303 .content = "64\n", 3304 }, 3305 { 3306 .path = "/sys/devices/system/cpu/cpu6/cache/index2/level", 3307 .size = 2, 3308 .content = "2\n", 3309 }, 3310 { 3311 .path = "/sys/devices/system/cpu/cpu6/cache/index2/number_of_sets", 3312 .size = 4, 3313 .content = "512\n", 3314 }, 3315 { 3316 .path = "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_list", 3317 .size = 2, 3318 .content = "6\n", 3319 }, 3320 { 3321 .path = "/sys/devices/system/cpu/cpu6/cache/index2/shared_cpu_map", 3322 .size = 3, 3323 .content = "40\n", 3324 }, 3325 { 3326 .path = "/sys/devices/system/cpu/cpu6/cache/index2/size", 3327 .size = 5, 3328 .content = "256K\n", 3329 }, 3330 { 3331 .path = "/sys/devices/system/cpu/cpu6/cache/index2/type", 3332 .size = 8, 3333 .content = "Unified\n", 3334 }, 3335 { 3336 .path = "/sys/devices/system/cpu/cpu6/cache/index2/ways_of_associativity", 3337 .size = 2, 3338 .content = "8\n", 3339 }, 3340 { 3341 .path = "/sys/devices/system/cpu/cpu6/cache/index2/write_policy", 3342 .size = 10, 3343 .content = "WriteBack\n", 3344 }, 3345 { 3346 .path = "/sys/devices/system/cpu/cpu6/cache/index3/allocation_policy", 3347 .size = 18, 3348 .content = "ReadWriteAllocate\n", 3349 }, 3350 { 3351 .path = "/sys/devices/system/cpu/cpu6/cache/index3/coherency_line_size", 3352 .size = 3, 3353 .content = "64\n", 3354 }, 3355 { 3356 .path = "/sys/devices/system/cpu/cpu6/cache/index3/level", 3357 .size = 2, 3358 .content = "3\n", 3359 }, 3360 { 3361 .path = "/sys/devices/system/cpu/cpu6/cache/index3/number_of_sets", 3362 .size = 5, 3363 .content = "2048\n", 3364 }, 3365 { 3366 .path = "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_list", 3367 .size = 4, 3368 .content = "0-7\n", 3369 }, 3370 { 3371 .path = "/sys/devices/system/cpu/cpu6/cache/index3/shared_cpu_map", 3372 .size = 3, 3373 .content = "ff\n", 3374 }, 3375 { 3376 .path = "/sys/devices/system/cpu/cpu6/cache/index3/size", 3377 .size = 6, 3378 .content = "2048K\n", 3379 }, 3380 { 3381 .path = "/sys/devices/system/cpu/cpu6/cache/index3/type", 3382 .size = 8, 3383 .content = "Unified\n", 3384 }, 3385 { 3386 .path = "/sys/devices/system/cpu/cpu6/cache/index3/ways_of_associativity", 3387 .size = 3, 3388 .content = "16\n", 3389 }, 3390 { 3391 .path = "/sys/devices/system/cpu/cpu6/cache/index3/write_policy", 3392 .size = 10, 3393 .content = "WriteBack\n", 3394 }, 3395 { 3396 .path = "/sys/devices/system/cpu/cpu7/cpuidle/driver/name", 3397 .size = 9, 3398 .content = "msm_idle\n", 3399 }, 3400 { 3401 .path = "/sys/devices/system/cpu/cpu7/cpufreq/affected_cpus", 3402 .size = 8, 3403 .content = "4 5 6 7\n", 3404 }, 3405 { 3406 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_max_freq", 3407 .size = 8, 3408 .content = "2803200\n", 3409 }, 3410 { 3411 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_min_freq", 3412 .size = 7, 3413 .content = "825600\n", 3414 }, 3415 { 3416 .path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_transition_latency", 3417 .size = 2, 3418 .content = "0\n", 3419 }, 3420 { 3421 .path = "/sys/devices/system/cpu/cpu7/cpufreq/related_cpus", 3422 .size = 8, 3423 .content = "4 5 6 7\n", 3424 }, 3425 { 3426 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_frequencies", 3427 .size = 182, 3428 .content = "825600 902400 979200 1056000 1209600 1286400 1363200 1459200 1536000 1612800 1689600 1766400 1843200 1920000 1996800 2092800 2169600 2246400 2323200 2400000 2476800 2553600 2649600 \n", 3429 }, 3430 { 3431 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_governors", 3432 .size = 23, 3433 .content = "performance schedutil \n", 3434 }, 3435 { 3436 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_cur_freq", 3437 .size = 7, 3438 .content = "825600\n", 3439 }, 3440 { 3441 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_driver", 3442 .size = 12, 3443 .content = "osm-cpufreq\n", 3444 }, 3445 { 3446 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_governor", 3447 .size = 10, 3448 .content = "schedutil\n", 3449 }, 3450 { 3451 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_max_freq", 3452 .size = 8, 3453 .content = "2803200\n", 3454 }, 3455 { 3456 .path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq", 3457 .size = 7, 3458 .content = "825600\n", 3459 }, 3460 { 3461 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/time_in_state", 3462 .size = 280, 3463 .content = 3464 "825600 88241\n" 3465 "902400 90\n" 3466 "979200 211\n" 3467 "1056000 540\n" 3468 "1209600 409\n" 3469 "1286400 273\n" 3470 "1363200 448\n" 3471 "1459200 127\n" 3472 "1536000 58\n" 3473 "1612800 500\n" 3474 "1689600 253\n" 3475 "1766400 156\n" 3476 "1843200 87\n" 3477 "1920000 85\n" 3478 "1996800 173\n" 3479 "2092800 115\n" 3480 "2169600 96\n" 3481 "2246400 70\n" 3482 "2323200 687\n" 3483 "2400000 98\n" 3484 "2476800 240\n" 3485 "2553600 75\n" 3486 "2649600 118\n" 3487 "2803200 6293\n", 3488 }, 3489 { 3490 .path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/total_trans", 3491 .size = 5, 3492 .content = "6266\n", 3493 }, 3494 { 3495 .path = "/sys/devices/system/cpu/cpu7/isolate", 3496 .size = 2, 3497 .content = "1\n", 3498 }, 3499 { 3500 .path = "/sys/devices/system/cpu/cpu7/regs/identification/midr_el1", 3501 .size = 19, 3502 .content = "0x00000000516f802d\n", 3503 }, 3504 { 3505 .path = "/sys/devices/system/cpu/cpu7/regs/identification/revidr_el1", 3506 .size = 19, 3507 .content = "0x0000000000000001\n", 3508 }, 3509 { 3510 .path = "/sys/devices/system/cpu/cpu7/sched_load_boost", 3511 .size = 2, 3512 .content = "0\n", 3513 }, 3514 { 3515 .path = "/sys/devices/system/cpu/cpu7/topology/core_id", 3516 .size = 2, 3517 .content = "3\n", 3518 }, 3519 { 3520 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings", 3521 .size = 3, 3522 .content = "f0\n", 3523 }, 3524 { 3525 .path = "/sys/devices/system/cpu/cpu7/topology/core_siblings_list", 3526 .size = 4, 3527 .content = "4-7\n", 3528 }, 3529 { 3530 .path = "/sys/devices/system/cpu/cpu7/topology/physical_package_id", 3531 .size = 2, 3532 .content = "1\n", 3533 }, 3534 { 3535 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings", 3536 .size = 3, 3537 .content = "80\n", 3538 }, 3539 { 3540 .path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list", 3541 .size = 2, 3542 .content = "7\n", 3543 }, 3544 { 3545 .path = "/sys/devices/system/cpu/cpu7/cache/index0/allocation_policy", 3546 .size = 18, 3547 .content = "ReadWriteAllocate\n", 3548 }, 3549 { 3550 .path = "/sys/devices/system/cpu/cpu7/cache/index0/coherency_line_size", 3551 .size = 3, 3552 .content = "64\n", 3553 }, 3554 { 3555 .path = "/sys/devices/system/cpu/cpu7/cache/index0/level", 3556 .size = 2, 3557 .content = "1\n", 3558 }, 3559 { 3560 .path = "/sys/devices/system/cpu/cpu7/cache/index0/number_of_sets", 3561 .size = 3, 3562 .content = "64\n", 3563 }, 3564 { 3565 .path = "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_list", 3566 .size = 2, 3567 .content = "7\n", 3568 }, 3569 { 3570 .path = "/sys/devices/system/cpu/cpu7/cache/index0/shared_cpu_map", 3571 .size = 3, 3572 .content = "80\n", 3573 }, 3574 { 3575 .path = "/sys/devices/system/cpu/cpu7/cache/index0/size", 3576 .size = 4, 3577 .content = "64K\n", 3578 }, 3579 { 3580 .path = "/sys/devices/system/cpu/cpu7/cache/index0/type", 3581 .size = 5, 3582 .content = "Data\n", 3583 }, 3584 { 3585 .path = "/sys/devices/system/cpu/cpu7/cache/index0/ways_of_associativity", 3586 .size = 3, 3587 .content = "16\n", 3588 }, 3589 { 3590 .path = "/sys/devices/system/cpu/cpu7/cache/index0/write_policy", 3591 .size = 10, 3592 .content = "WriteBack\n", 3593 }, 3594 { 3595 .path = "/sys/devices/system/cpu/cpu7/cache/index1/allocation_policy", 3596 .size = 13, 3597 .content = "ReadAllocate\n", 3598 }, 3599 { 3600 .path = "/sys/devices/system/cpu/cpu7/cache/index1/coherency_line_size", 3601 .size = 3, 3602 .content = "64\n", 3603 }, 3604 { 3605 .path = "/sys/devices/system/cpu/cpu7/cache/index1/level", 3606 .size = 2, 3607 .content = "1\n", 3608 }, 3609 { 3610 .path = "/sys/devices/system/cpu/cpu7/cache/index1/number_of_sets", 3611 .size = 4, 3612 .content = "256\n", 3613 }, 3614 { 3615 .path = "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_list", 3616 .size = 2, 3617 .content = "7\n", 3618 }, 3619 { 3620 .path = "/sys/devices/system/cpu/cpu7/cache/index1/shared_cpu_map", 3621 .size = 3, 3622 .content = "80\n", 3623 }, 3624 { 3625 .path = "/sys/devices/system/cpu/cpu7/cache/index1/size", 3626 .size = 4, 3627 .content = "64K\n", 3628 }, 3629 { 3630 .path = "/sys/devices/system/cpu/cpu7/cache/index1/type", 3631 .size = 12, 3632 .content = "Instruction\n", 3633 }, 3634 { 3635 .path = "/sys/devices/system/cpu/cpu7/cache/index1/ways_of_associativity", 3636 .size = 2, 3637 .content = "4\n", 3638 }, 3639 { 3640 .path = "/sys/devices/system/cpu/cpu7/cache/index2/allocation_policy", 3641 .size = 18, 3642 .content = "ReadWriteAllocate\n", 3643 }, 3644 { 3645 .path = "/sys/devices/system/cpu/cpu7/cache/index2/coherency_line_size", 3646 .size = 3, 3647 .content = "64\n", 3648 }, 3649 { 3650 .path = "/sys/devices/system/cpu/cpu7/cache/index2/level", 3651 .size = 2, 3652 .content = "2\n", 3653 }, 3654 { 3655 .path = "/sys/devices/system/cpu/cpu7/cache/index2/number_of_sets", 3656 .size = 4, 3657 .content = "512\n", 3658 }, 3659 { 3660 .path = "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_list", 3661 .size = 2, 3662 .content = "7\n", 3663 }, 3664 { 3665 .path = "/sys/devices/system/cpu/cpu7/cache/index2/shared_cpu_map", 3666 .size = 3, 3667 .content = "80\n", 3668 }, 3669 { 3670 .path = "/sys/devices/system/cpu/cpu7/cache/index2/size", 3671 .size = 5, 3672 .content = "256K\n", 3673 }, 3674 { 3675 .path = "/sys/devices/system/cpu/cpu7/cache/index2/type", 3676 .size = 8, 3677 .content = "Unified\n", 3678 }, 3679 { 3680 .path = "/sys/devices/system/cpu/cpu7/cache/index2/ways_of_associativity", 3681 .size = 2, 3682 .content = "8\n", 3683 }, 3684 { 3685 .path = "/sys/devices/system/cpu/cpu7/cache/index2/write_policy", 3686 .size = 10, 3687 .content = "WriteBack\n", 3688 }, 3689 { 3690 .path = "/sys/devices/system/cpu/cpu7/cache/index3/allocation_policy", 3691 .size = 18, 3692 .content = "ReadWriteAllocate\n", 3693 }, 3694 { 3695 .path = "/sys/devices/system/cpu/cpu7/cache/index3/coherency_line_size", 3696 .size = 3, 3697 .content = "64\n", 3698 }, 3699 { 3700 .path = "/sys/devices/system/cpu/cpu7/cache/index3/level", 3701 .size = 2, 3702 .content = "3\n", 3703 }, 3704 { 3705 .path = "/sys/devices/system/cpu/cpu7/cache/index3/number_of_sets", 3706 .size = 5, 3707 .content = "2048\n", 3708 }, 3709 { 3710 .path = "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_list", 3711 .size = 4, 3712 .content = "0-7\n", 3713 }, 3714 { 3715 .path = "/sys/devices/system/cpu/cpu7/cache/index3/shared_cpu_map", 3716 .size = 3, 3717 .content = "ff\n", 3718 }, 3719 { 3720 .path = "/sys/devices/system/cpu/cpu7/cache/index3/size", 3721 .size = 6, 3722 .content = "2048K\n", 3723 }, 3724 { 3725 .path = "/sys/devices/system/cpu/cpu7/cache/index3/type", 3726 .size = 8, 3727 .content = "Unified\n", 3728 }, 3729 { 3730 .path = "/sys/devices/system/cpu/cpu7/cache/index3/ways_of_associativity", 3731 .size = 3, 3732 .content = "16\n", 3733 }, 3734 { 3735 .path = "/sys/devices/system/cpu/cpu7/cache/index3/write_policy", 3736 .size = 10, 3737 .content = "WriteBack\n", 3738 }, 3739 { NULL }, 3740 }; 3741 #ifdef __ANDROID__ 3742 struct cpuinfo_mock_property properties[] = { 3743 { 3744 .key = "DEVICE_PROVISIONED", 3745 .value = "1", 3746 }, 3747 { 3748 .key = "af.fast_track_multiplier", 3749 .value = "1", 3750 }, 3751 { 3752 .key = "audio.deep_buffer.media", 3753 .value = "true", 3754 }, 3755 { 3756 .key = "audio.offload.buffer.size.kb", 3757 .value = "32", 3758 }, 3759 { 3760 .key = "audio.offload.gapless.enabled", 3761 .value = "true", 3762 }, 3763 { 3764 .key = "audio.offload.video", 3765 .value = "true", 3766 }, 3767 { 3768 .key = "audioflinger.bootsnd", 3769 .value = "0", 3770 }, 3771 { 3772 .key = "av.offload.enable", 3773 .value = "true", 3774 }, 3775 { 3776 .key = "bt.max.hfpclient.connections", 3777 .value = "1", 3778 }, 3779 { 3780 .key = "config.disable_consumerir", 3781 .value = "true", 3782 }, 3783 { 3784 .key = "config.disable_rtt", 3785 .value = "true", 3786 }, 3787 { 3788 .key = "dalvik.vm.appimageformat", 3789 .value = "lz4", 3790 }, 3791 { 3792 .key = "dalvik.vm.dex2oat-Xms", 3793 .value = "64m", 3794 }, 3795 { 3796 .key = "dalvik.vm.dex2oat-Xmx", 3797 .value = "512m", 3798 }, 3799 { 3800 .key = "dalvik.vm.dexopt.secondary", 3801 .value = "true", 3802 }, 3803 { 3804 .key = "dalvik.vm.heapgrowthlimit", 3805 .value = "256m", 3806 }, 3807 { 3808 .key = "dalvik.vm.heapmaxfree", 3809 .value = "8m", 3810 }, 3811 { 3812 .key = "dalvik.vm.heapminfree", 3813 .value = "2m", 3814 }, 3815 { 3816 .key = "dalvik.vm.heapsize", 3817 .value = "512m", 3818 }, 3819 { 3820 .key = "dalvik.vm.heapstartsize", 3821 .value = "8m", 3822 }, 3823 { 3824 .key = "dalvik.vm.heaptargetutilization", 3825 .value = "0.75", 3826 }, 3827 { 3828 .key = "dalvik.vm.image-dex2oat-Xms", 3829 .value = "64m", 3830 }, 3831 { 3832 .key = "dalvik.vm.image-dex2oat-Xmx", 3833 .value = "64m", 3834 }, 3835 { 3836 .key = "dalvik.vm.isa.arm.features", 3837 .value = "default", 3838 }, 3839 { 3840 .key = "dalvik.vm.isa.arm.variant", 3841 .value = "cortex-a9", 3842 }, 3843 { 3844 .key = "dalvik.vm.isa.arm64.features", 3845 .value = "default", 3846 }, 3847 { 3848 .key = "dalvik.vm.isa.arm64.variant", 3849 .value = "kryo300", 3850 }, 3851 { 3852 .key = "dalvik.vm.stack-trace-file", 3853 .value = "/data/anr/traces.txt", 3854 }, 3855 { 3856 .key = "dalvik.vm.usejit", 3857 .value = "true", 3858 }, 3859 { 3860 .key = "dalvik.vm.usejitprofiles", 3861 .value = "true", 3862 }, 3863 { 3864 .key = "debug.atrace.tags.enableflags", 3865 .value = "0", 3866 }, 3867 { 3868 .key = "debug.egl.hw", 3869 .value = "0", 3870 }, 3871 { 3872 .key = "debug.force_rtl", 3873 .value = "0", 3874 }, 3875 { 3876 .key = "debug.gralloc.gfx_ubwc_disable", 3877 .value = "0", 3878 }, 3879 { 3880 .key = "debug.mdpcomp.logs", 3881 .value = "0", 3882 }, 3883 { 3884 .key = "debug.sensor.logging.slpi", 3885 .value = "true", 3886 }, 3887 { 3888 .key = "debug.sf.enable_hwc_vds", 3889 .value = "1", 3890 }, 3891 { 3892 .key = "debug.sf.hw", 3893 .value = "0", 3894 }, 3895 { 3896 .key = "debug.sf.latch_unsignaled", 3897 .value = "1", 3898 }, 3899 { 3900 .key = "debug.sf.layerdump", 3901 .value = "0", 3902 }, 3903 { 3904 .key = "dev.bootcomplete", 3905 .value = "1", 3906 }, 3907 { 3908 .key = "dev.mtp.opensession", 3909 .value = "1", 3910 }, 3911 { 3912 .key = "dev.pm.dyn_samplingrate", 3913 .value = "1", 3914 }, 3915 { 3916 .key = "dev.ssrm.app.install.standby", 3917 .value = "-1", 3918 }, 3919 { 3920 .key = "dev.ssrm.appsync3p", 3921 .value = "true", 3922 }, 3923 { 3924 .key = "dev.ssrm.atc_ap_current", 3925 .value = "0,0,0,0,0,0,0,0", 3926 }, 3927 { 3928 .key = "dev.ssrm.atc_ap_power", 3929 .value = "0,0,0,0,0,0,0,0", 3930 }, 3931 { 3932 .key = "dev.ssrm.atc_etc_current", 3933 .value = "77,16,61,0,0,0,0", 3934 }, 3935 { 3936 .key = "dev.ssrm.atc_etc_power", 3937 .value = "308,64,244,0,0,0,0", 3938 }, 3939 { 3940 .key = "dev.ssrm.gamelevel", 3941 .value = "-4,6,-2,4", 3942 }, 3943 { 3944 .key = "dev.ssrm.init", 3945 .value = "1", 3946 }, 3947 { 3948 .key = "dev.ssrm.mode", 3949 .value = "dm;", 3950 }, 3951 { 3952 .key = "dev.ssrm.pst", 3953 .value = "241", 3954 }, 3955 { 3956 .key = "dev.ssrm.smart_switch", 3957 .value = "true", 3958 }, 3959 { 3960 .key = "diag.oriented", 3961 .value = "APO", 3962 }, 3963 { 3964 .key = "gsm.current.phone-type", 3965 .value = "1", 3966 }, 3967 { 3968 .key = "gsm.network.type", 3969 .value = "Unknown", 3970 }, 3971 { 3972 .key = "gsm.operator.alpha", 3973 .value = "", 3974 }, 3975 { 3976 .key = "gsm.operator.iso-country", 3977 .value = "us", 3978 }, 3979 { 3980 .key = "gsm.operator.ispsroaming", 3981 .value = "false", 3982 }, 3983 { 3984 .key = "gsm.operator.isroaming", 3985 .value = "false", 3986 }, 3987 { 3988 .key = "gsm.operator.numeric", 3989 .value = "310410", 3990 }, 3991 { 3992 .key = "gsm.sim.operator.alpha", 3993 .value = "", 3994 }, 3995 { 3996 .key = "gsm.sim.operator.iso-country", 3997 .value = "", 3998 }, 3999 { 4000 .key = "gsm.sim.operator.numeric", 4001 .value = "", 4002 }, 4003 { 4004 .key = "gsm.sim.state", 4005 .value = "ABSENT", 4006 }, 4007 { 4008 .key = "gsm.version.baseband", 4009 .value = "G960USQU1ARB7", 4010 }, 4011 { 4012 .key = "gsm.version.ril-impl", 4013 .value = "Samsung RIL v4.0", 4014 }, 4015 { 4016 .key = "hwservicemanager.ready", 4017 .value = "true", 4018 }, 4019 { 4020 .key = "init.svc.BCS-daemon", 4021 .value = "running", 4022 }, 4023 { 4024 .key = "init.svc.DR-daemon", 4025 .value = "running", 4026 }, 4027 { 4028 .key = "init.svc.SMD-daemon", 4029 .value = "running", 4030 }, 4031 { 4032 .key = "init.svc.adbd", 4033 .value = "running", 4034 }, 4035 { 4036 .key = "init.svc.adsprpcd", 4037 .value = "running", 4038 }, 4039 { 4040 .key = "init.svc.apaservice", 4041 .value = "running", 4042 }, 4043 { 4044 .key = "init.svc.argos-daemon", 4045 .value = "running", 4046 }, 4047 { 4048 .key = "init.svc.at_distributor", 4049 .value = "stopped", 4050 }, 4051 { 4052 .key = "init.svc.atfwd", 4053 .value = "running", 4054 }, 4055 { 4056 .key = "init.svc.audio-hal-2-0", 4057 .value = "running", 4058 }, 4059 { 4060 .key = "init.svc.audioserver", 4061 .value = "running", 4062 }, 4063 { 4064 .key = "init.svc.auditd", 4065 .value = "running", 4066 }, 4067 { 4068 .key = "init.svc.bluetooth-1-0", 4069 .value = "running", 4070 }, 4071 { 4072 .key = "init.svc.bootanim", 4073 .value = "stopped", 4074 }, 4075 { 4076 .key = "init.svc.bootchecker", 4077 .value = "stopped", 4078 }, 4079 { 4080 .key = "init.svc.bsd", 4081 .value = "running", 4082 }, 4083 { 4084 .key = "init.svc.cameraserver", 4085 .value = "running", 4086 }, 4087 { 4088 .key = "init.svc.cdsprpcd", 4089 .value = "running", 4090 }, 4091 { 4092 .key = "init.svc.configstore-hal-1-0", 4093 .value = "running", 4094 }, 4095 { 4096 .key = "init.svc.crashdata-sh", 4097 .value = "stopped", 4098 }, 4099 { 4100 .key = "init.svc.cs-early-boot", 4101 .value = "stopped", 4102 }, 4103 { 4104 .key = "init.svc.cs-post-boot", 4105 .value = "stopped", 4106 }, 4107 { 4108 .key = "init.svc.dhkprov1x", 4109 .value = "stopped", 4110 }, 4111 { 4112 .key = "init.svc.dhkprov2x", 4113 .value = "stopped", 4114 }, 4115 { 4116 .key = "init.svc.diag_uart_log", 4117 .value = "stopped", 4118 }, 4119 { 4120 .key = "init.svc.drm", 4121 .value = "running", 4122 }, 4123 { 4124 .key = "init.svc.drm-hal-1-0", 4125 .value = "running", 4126 }, 4127 { 4128 .key = "init.svc.drm-widevine-hal-1-0", 4129 .value = "running", 4130 }, 4131 { 4132 .key = "init.svc.epmlogd", 4133 .value = "stopped", 4134 }, 4135 { 4136 .key = "init.svc.esecomm", 4137 .value = "running", 4138 }, 4139 { 4140 .key = "init.svc.faced", 4141 .value = "running", 4142 }, 4143 { 4144 .key = "init.svc.factory_ssc", 4145 .value = "running", 4146 }, 4147 { 4148 .key = "init.svc.flash_recovery", 4149 .value = "stopped", 4150 }, 4151 { 4152 .key = "init.svc.gatekeeper-1-0", 4153 .value = "running", 4154 }, 4155 { 4156 .key = "init.svc.gatekeeperd", 4157 .value = "running", 4158 }, 4159 { 4160 .key = "init.svc.gralloc-2-0", 4161 .value = "running", 4162 }, 4163 { 4164 .key = "init.svc.health-hal-1-0", 4165 .value = "running", 4166 }, 4167 { 4168 .key = "init.svc.healthd", 4169 .value = "running", 4170 }, 4171 { 4172 .key = "init.svc.hidl_memory", 4173 .value = "running", 4174 }, 4175 { 4176 .key = "init.svc.hostapd", 4177 .value = "stopped", 4178 }, 4179 { 4180 .key = "init.svc.hwcomposer-2-1", 4181 .value = "running", 4182 }, 4183 { 4184 .key = "init.svc.hwservicemanager", 4185 .value = "running", 4186 }, 4187 { 4188 .key = "init.svc.icd", 4189 .value = "stopped", 4190 }, 4191 { 4192 .key = "init.svc.imsd", 4193 .value = "running", 4194 }, 4195 { 4196 .key = "init.svc.installd", 4197 .value = "running", 4198 }, 4199 { 4200 .key = "init.svc.insthk", 4201 .value = "stopped", 4202 }, 4203 { 4204 .key = "init.svc.iod", 4205 .value = "running", 4206 }, 4207 { 4208 .key = "init.svc.iop-hal-2-0", 4209 .value = "running", 4210 }, 4211 { 4212 .key = "init.svc.ipacm", 4213 .value = "running", 4214 }, 4215 { 4216 .key = "init.svc.ipacm-diag", 4217 .value = "running", 4218 }, 4219 { 4220 .key = "init.svc.irisd", 4221 .value = "running", 4222 }, 4223 { 4224 .key = "init.svc.irsc_util", 4225 .value = "stopped", 4226 }, 4227 { 4228 .key = "init.svc.jackservice", 4229 .value = "running", 4230 }, 4231 { 4232 .key = "init.svc.keymaster-3-0", 4233 .value = "running", 4234 }, 4235 { 4236 .key = "init.svc.keystore", 4237 .value = "running", 4238 }, 4239 { 4240 .key = "init.svc.light-hal-2-0", 4241 .value = "running", 4242 }, 4243 { 4244 .key = "init.svc.lmkd", 4245 .value = "running", 4246 }, 4247 { 4248 .key = "init.svc.loc_launcher", 4249 .value = "running", 4250 }, 4251 { 4252 .key = "init.svc.logd", 4253 .value = "running", 4254 }, 4255 { 4256 .key = "init.svc.logd-reinit", 4257 .value = "stopped", 4258 }, 4259 { 4260 .key = "init.svc.macloader", 4261 .value = "stopped", 4262 }, 4263 { 4264 .key = "init.svc.media", 4265 .value = "running", 4266 }, 4267 { 4268 .key = "init.svc.mediacodec", 4269 .value = "running", 4270 }, 4271 { 4272 .key = "init.svc.mediadrm", 4273 .value = "running", 4274 }, 4275 { 4276 .key = "init.svc.mediaextractor", 4277 .value = "running", 4278 }, 4279 { 4280 .key = "init.svc.mediametrics", 4281 .value = "running", 4282 }, 4283 { 4284 .key = "init.svc.memtrack-hal-1-0", 4285 .value = "running", 4286 }, 4287 { 4288 .key = "init.svc.netd", 4289 .value = "running", 4290 }, 4291 { 4292 .key = "init.svc.nxpnfc_hal_svc", 4293 .value = "running", 4294 }, 4295 { 4296 .key = "init.svc.pd_mapper", 4297 .value = "running", 4298 }, 4299 { 4300 .key = "init.svc.per_mgr", 4301 .value = "running", 4302 }, 4303 { 4304 .key = "init.svc.per_proxy", 4305 .value = "running", 4306 }, 4307 { 4308 .key = "init.svc.per_proxy_helper", 4309 .value = "stopped", 4310 }, 4311 { 4312 .key = "init.svc.perf-hal-1-0", 4313 .value = "running", 4314 }, 4315 { 4316 .key = "init.svc.power-hal-1-0", 4317 .value = "running", 4318 }, 4319 { 4320 .key = "init.svc.powersnd", 4321 .value = "stopped", 4322 }, 4323 { 4324 .key = "init.svc.prepare_param", 4325 .value = "stopped", 4326 }, 4327 { 4328 .key = "init.svc.proca", 4329 .value = "running", 4330 }, 4331 { 4332 .key = "init.svc.pvclicense_sample", 4333 .value = "stopped", 4334 }, 4335 { 4336 .key = "init.svc.qcom-c_core-sh", 4337 .value = "stopped", 4338 }, 4339 { 4340 .key = "init.svc.qcom-c_main-sh", 4341 .value = "stopped", 4342 }, 4343 { 4344 .key = "init.svc.qcom-post-boot", 4345 .value = "stopped", 4346 }, 4347 { 4348 .key = "init.svc.qcom-sh", 4349 .value = "stopped", 4350 }, 4351 { 4352 .key = "init.svc.qcom-usb-sh", 4353 .value = "stopped", 4354 }, 4355 { 4356 .key = "init.svc.qdutils_disp-1-0", 4357 .value = "running", 4358 }, 4359 { 4360 .key = "init.svc.qseecomd", 4361 .value = "running", 4362 }, 4363 { 4364 .key = "init.svc.qti_esepowermanager_service", 4365 .value = "running", 4366 }, 4367 { 4368 .key = "init.svc.remotedisplay", 4369 .value = "running", 4370 }, 4371 { 4372 .key = "init.svc.resetreason", 4373 .value = "stopped", 4374 }, 4375 { 4376 .key = "init.svc.ril-daemon", 4377 .value = "running", 4378 }, 4379 { 4380 .key = "init.svc.rmt_storage", 4381 .value = "running", 4382 }, 4383 { 4384 .key = "init.svc.run-mobicore", 4385 .value = "running", 4386 }, 4387 { 4388 .key = "init.svc.scs", 4389 .value = "stopped", 4390 }, 4391 { 4392 .key = "init.svc.sdp_cryptod", 4393 .value = "running", 4394 }, 4395 { 4396 .key = "init.svc.sec-camera-provider-2-4", 4397 .value = "running", 4398 }, 4399 { 4400 .key = "init.svc.sec-miscpower-1-0", 4401 .value = "running", 4402 }, 4403 { 4404 .key = "init.svc.sec-vibrator-1-0", 4405 .value = "running", 4406 }, 4407 { 4408 .key = "init.svc.sec_fps_hal", 4409 .value = "running", 4410 }, 4411 { 4412 .key = "init.svc.sec_gnss_service", 4413 .value = "running", 4414 }, 4415 { 4416 .key = "init.svc.secure_storage", 4417 .value = "running", 4418 }, 4419 { 4420 .key = "init.svc.seemp_healthd", 4421 .value = "running", 4422 }, 4423 { 4424 .key = "init.svc.sem_daemon", 4425 .value = "stopped", 4426 }, 4427 { 4428 .key = "init.svc.sensor-sh", 4429 .value = "stopped", 4430 }, 4431 { 4432 .key = "init.svc.sensors", 4433 .value = "running", 4434 }, 4435 { 4436 .key = "init.svc.sensors-hal-1-0", 4437 .value = "running", 4438 }, 4439 { 4440 .key = "init.svc.servicemanager", 4441 .value = "running", 4442 }, 4443 { 4444 .key = "init.svc.smcinvoked", 4445 .value = "running", 4446 }, 4447 { 4448 .key = "init.svc.storaged", 4449 .value = "running", 4450 }, 4451 { 4452 .key = "init.svc.surfaceflinger", 4453 .value = "running", 4454 }, 4455 { 4456 .key = "init.svc.swapon", 4457 .value = "stopped", 4458 }, 4459 { 4460 .key = "init.svc.tbaseLoader", 4461 .value = "stopped", 4462 }, 4463 { 4464 .key = "init.svc.tftp_server", 4465 .value = "running", 4466 }, 4467 { 4468 .key = "init.svc.thermal-engine", 4469 .value = "running", 4470 }, 4471 { 4472 .key = "init.svc.thermal-hal-1-0", 4473 .value = "running", 4474 }, 4475 { 4476 .key = "init.svc.time_daemon", 4477 .value = "running", 4478 }, 4479 { 4480 .key = "init.svc.tombstoned", 4481 .value = "running", 4482 }, 4483 { 4484 .key = "init.svc.tui_comm-1-0", 4485 .value = "running", 4486 }, 4487 { 4488 .key = "init.svc.ueventd", 4489 .value = "running", 4490 }, 4491 { 4492 .key = "init.svc.vndservicemanager", 4493 .value = "running", 4494 }, 4495 { 4496 .key = "init.svc.vold", 4497 .value = "running", 4498 }, 4499 { 4500 .key = "init.svc.vr-1-0", 4501 .value = "running", 4502 }, 4503 { 4504 .key = "init.svc.webview_zygote32", 4505 .value = "running", 4506 }, 4507 { 4508 .key = "init.svc.wifi_hal_legacy", 4509 .value = "running", 4510 }, 4511 { 4512 .key = "init.svc.wificond", 4513 .value = "running", 4514 }, 4515 { 4516 .key = "init.svc.wpa_supplicant", 4517 .value = "stopped", 4518 }, 4519 { 4520 .key = "init.svc.wsmd", 4521 .value = "running", 4522 }, 4523 { 4524 .key = "init.svc.zygote", 4525 .value = "running", 4526 }, 4527 { 4528 .key = "init.svc.zygote_secondary", 4529 .value = "running", 4530 }, 4531 { 4532 .key = "iop.enable_prefetch_ofr", 4533 .value = "1", 4534 }, 4535 { 4536 .key = "keyguard.no_require_sim", 4537 .value = "true", 4538 }, 4539 { 4540 .key = "media.aac_51_output_enabled", 4541 .value = "true", 4542 }, 4543 { 4544 .key = "media.stagefright.enable-aac", 4545 .value = "true", 4546 }, 4547 { 4548 .key = "media.stagefright.enable-fma2dp", 4549 .value = "true", 4550 }, 4551 { 4552 .key = "media.stagefright.enable-http", 4553 .value = "true", 4554 }, 4555 { 4556 .key = "media.stagefright.enable-player", 4557 .value = "true", 4558 }, 4559 { 4560 .key = "media.stagefright.enable-qcp", 4561 .value = "true", 4562 }, 4563 { 4564 .key = "media.stagefright.enable-scan", 4565 .value = "true", 4566 }, 4567 { 4568 .key = "mm.enable.qcom_parser", 4569 .value = "13631487", 4570 }, 4571 { 4572 .key = "mm.enable.smoothstreaming", 4573 .value = "true", 4574 }, 4575 { 4576 .key = "mmp.enable.3g2", 4577 .value = "true", 4578 }, 4579 { 4580 .key = "net.bt.name", 4581 .value = "Android", 4582 }, 4583 { 4584 .key = "net.knoxscep.version", 4585 .value = "2.2.0", 4586 }, 4587 { 4588 .key = "net.knoxvpn.version", 4589 .value = "2.2.0", 4590 }, 4591 { 4592 .key = "net.qtaguid_enabled", 4593 .value = "1", 4594 }, 4595 { 4596 .key = "net.smart_switch.disabled", 4597 .value = "1", 4598 }, 4599 { 4600 .key = "net.tcp.2g_init_rwnd", 4601 .value = "10", 4602 }, 4603 { 4604 .key = "net.tcp.buffersize.default", 4605 .value = "4096,87380,524288,4096,16384,110208", 4606 }, 4607 { 4608 .key = "net.tcp.buffersize.edge", 4609 .value = "4093,26280,35040,4096,16384,35040", 4610 }, 4611 { 4612 .key = "net.tcp.buffersize.evdo", 4613 .value = "4094,87380,524288,4096,16384,262144", 4614 }, 4615 { 4616 .key = "net.tcp.buffersize.gprs", 4617 .value = "4092,8760,11680,4096,8760,11680", 4618 }, 4619 { 4620 .key = "net.tcp.buffersize.hsdpa", 4621 .value = "4094,87380,1220608,4096,16384,1220608", 4622 }, 4623 { 4624 .key = "net.tcp.buffersize.hspa", 4625 .value = "4094,87380,1220608,4096,16384,1220608", 4626 }, 4627 { 4628 .key = "net.tcp.buffersize.hspap", 4629 .value = "4094,87380,1220608,4096,16384,1220608", 4630 }, 4631 { 4632 .key = "net.tcp.buffersize.hsupa", 4633 .value = "4094,87380,1220608,4096,16384,1220608", 4634 }, 4635 { 4636 .key = "net.tcp.buffersize.lte", 4637 .value = "2097152,4194304,8388608,262144,524288,1048576", 4638 }, 4639 { 4640 .key = "net.tcp.buffersize.umts", 4641 .value = "4094,87380,110208,4096,16384,110208", 4642 }, 4643 { 4644 .key = "net.tcp.default_init_rwnd", 4645 .value = "60", 4646 }, 4647 { 4648 .key = "nfc.boot.reason", 4649 .value = "1", 4650 }, 4651 { 4652 .key = "nfc.fw.dfl_areacode", 4653 .value = "ATT", 4654 }, 4655 { 4656 .key = "nfc.fw.downloadmode_force", 4657 .value = "0", 4658 }, 4659 { 4660 .key = "nfc.fw.rfreg_display_ver", 4661 .value = "2", 4662 }, 4663 { 4664 .key = "nfc.fw.rfreg_ver", 4665 .value = "MAJ:15, MIN: 2", 4666 }, 4667 { 4668 .key = "nfc.fw.ver", 4669 .value = "NXP 11.1.15", 4670 }, 4671 { 4672 .key = "nfc.nxp.fwdnldstatus", 4673 .value = "0", 4674 }, 4675 { 4676 .key = "nfc.product.support.ese", 4677 .value = "1", 4678 }, 4679 { 4680 .key = "nfc.product.support.uicc", 4681 .value = "0", 4682 }, 4683 { 4684 .key = "persist.audio.a2dp_avc", 4685 .value = "1", 4686 }, 4687 { 4688 .key = "persist.audio.allsoundmute", 4689 .value = "0", 4690 }, 4691 { 4692 .key = "persist.audio.corefx", 4693 .value = "1", 4694 }, 4695 { 4696 .key = "persist.audio.effectcpufreq", 4697 .value = "350000", 4698 }, 4699 { 4700 .key = "persist.audio.finemediavolume", 4701 .value = "1", 4702 }, 4703 { 4704 .key = "persist.audio.fluence.speaker", 4705 .value = "true", 4706 }, 4707 { 4708 .key = "persist.audio.fluence.voicecall", 4709 .value = "true", 4710 }, 4711 { 4712 .key = "persist.audio.fluence.voicerec", 4713 .value = "false", 4714 }, 4715 { 4716 .key = "persist.audio.globaleffect", 4717 .value = "1", 4718 }, 4719 { 4720 .key = "persist.audio.headsetsysvolume", 4721 .value = "9", 4722 }, 4723 { 4724 .key = "persist.audio.hphonesysvolume", 4725 .value = "9", 4726 }, 4727 { 4728 .key = "persist.audio.k2hd", 4729 .value = "1", 4730 }, 4731 { 4732 .key = "persist.audio.mpseek", 4733 .value = "0", 4734 }, 4735 { 4736 .key = "persist.audio.mysound", 4737 .value = "1", 4738 }, 4739 { 4740 .key = "persist.audio.nxp_lvvil", 4741 .value = "0", 4742 }, 4743 { 4744 .key = "persist.audio.pcmdump", 4745 .value = "0", 4746 }, 4747 { 4748 .key = "persist.audio.ringermode", 4749 .value = "1", 4750 }, 4751 { 4752 .key = "persist.audio.sales_code", 4753 .value = "ATT", 4754 }, 4755 { 4756 .key = "persist.audio.soundalivefxsec", 4757 .value = "1", 4758 }, 4759 { 4760 .key = "persist.audio.stereospeaker", 4761 .value = "1", 4762 }, 4763 { 4764 .key = "persist.audio.sysvolume", 4765 .value = "9", 4766 }, 4767 { 4768 .key = "persist.audio.uhqa", 4769 .value = "1", 4770 }, 4771 { 4772 .key = "persist.audio.voipcpufreq", 4773 .value = "585600", 4774 }, 4775 { 4776 .key = "persist.cne.feature", 4777 .value = "0", 4778 }, 4779 { 4780 .key = "persist.data.df.agg.dl_pkt", 4781 .value = "10", 4782 }, 4783 { 4784 .key = "persist.data.df.agg.dl_size", 4785 .value = "4096", 4786 }, 4787 { 4788 .key = "persist.data.df.dev_name", 4789 .value = "rmnet_usb0", 4790 }, 4791 { 4792 .key = "persist.data.df.dl_mode", 4793 .value = "5", 4794 }, 4795 { 4796 .key = "persist.data.df.iwlan_mux", 4797 .value = "9", 4798 }, 4799 { 4800 .key = "persist.data.df.mux_count", 4801 .value = "8", 4802 }, 4803 { 4804 .key = "persist.data.df.ul_mode", 4805 .value = "5", 4806 }, 4807 { 4808 .key = "persist.data.mode", 4809 .value = "concurrent", 4810 }, 4811 { 4812 .key = "persist.data.netmgrd.qos.enable", 4813 .value = "false", 4814 }, 4815 { 4816 .key = "persist.data.wda.enable", 4817 .value = "true", 4818 }, 4819 { 4820 .key = "persist.debug.wfd.enable", 4821 .value = "1", 4822 }, 4823 { 4824 .key = "persist.demo.hdmirotationlock", 4825 .value = "false", 4826 }, 4827 { 4828 .key = "persist.fuse_sdcard", 4829 .value = "true", 4830 }, 4831 { 4832 .key = "persist.mm.enable.prefetch", 4833 .value = "true", 4834 }, 4835 { 4836 .key = "persist.nfc.log.index", 4837 .value = "1", 4838 }, 4839 { 4840 .key = "persist.radio.add_power_save", 4841 .value = "1", 4842 }, 4843 { 4844 .key = "persist.radio.apm_sim_not_pwdn", 4845 .value = "1", 4846 }, 4847 { 4848 .key = "persist.radio.atfwd.start", 4849 .value = "true", 4850 }, 4851 { 4852 .key = "persist.radio.latest-modeltype", 4853 .value = "2", 4854 }, 4855 { 4856 .key = "persist.radio.lte_vrte_ltd", 4857 .value = "1", 4858 }, 4859 { 4860 .key = "persist.radio.max_ims_instance", 4861 .value = "2", 4862 }, 4863 { 4864 .key = "persist.radio.multisim.config", 4865 .value = "ss", 4866 }, 4867 { 4868 .key = "persist.radio.new.profid", 4869 .value = "true", 4870 }, 4871 { 4872 .key = "persist.radio.sib16_support", 4873 .value = "1", 4874 }, 4875 { 4876 .key = "persist.radio.silent-reset", 4877 .value = "56", 4878 }, 4879 { 4880 .key = "persist.radio.sim.onoff", 4881 .value = "1", 4882 }, 4883 { 4884 .key = "persist.ril.dfm.srlte", 4885 .value = "false", 4886 }, 4887 { 4888 .key = "persist.ril.ims.eutranParam", 4889 .value = "3", 4890 }, 4891 { 4892 .key = "persist.ril.ims.utranParam", 4893 .value = "0", 4894 }, 4895 { 4896 .key = "persist.ril.modem.board", 4897 .value = "SDM845", 4898 }, 4899 { 4900 .key = "persist.ril.radiocapa.tdscdma", 4901 .value = "true", 4902 }, 4903 { 4904 .key = "persist.rmnet.data.enable", 4905 .value = "true", 4906 }, 4907 { 4908 .key = "persist.service.tspcmd.spay", 4909 .value = "true", 4910 }, 4911 { 4912 .key = "persist.sys.ccm.date", 4913 .value = "Sun Feb 11 14:49:26 KST 2018", 4914 }, 4915 { 4916 .key = "persist.sys.clssprld1", 4917 .value = "1000", 4918 }, 4919 { 4920 .key = "persist.sys.clssprld2", 4921 .value = "228", 4922 }, 4923 { 4924 .key = "persist.sys.csc_status", 4925 .value = "normal", 4926 }, 4927 { 4928 .key = "persist.sys.dalvik.vm.lib.2", 4929 .value = "libart.so", 4930 }, 4931 { 4932 .key = "persist.sys.display_density", 4933 .value = "480", 4934 }, 4935 { 4936 .key = "persist.sys.dualapp.prop", 4937 .value = "1", 4938 }, 4939 { 4940 .key = "persist.sys.enablehomekey", 4941 .value = "false", 4942 }, 4943 { 4944 .key = "persist.sys.force_sw_gles", 4945 .value = "0", 4946 }, 4947 { 4948 .key = "persist.sys.knox.device_owner", 4949 .value = "false", 4950 }, 4951 { 4952 .key = "persist.sys.knox.userinfo", 4953 .value = "", 4954 }, 4955 { 4956 .key = "persist.sys.locale", 4957 .value = "en-US", 4958 }, 4959 { 4960 .key = "persist.sys.localedefault", 4961 .value = "", 4962 }, 4963 { 4964 .key = "persist.sys.localenosim", 4965 .value = "en-US", 4966 }, 4967 { 4968 .key = "persist.sys.members.cp_support", 4969 .value = "on", 4970 }, 4971 { 4972 .key = "persist.sys.omc.notification", 4973 .value = "AT&T Chat In", 4974 }, 4975 { 4976 .key = "persist.sys.omc.ringtone", 4977 .value = "AT&T Firefly", 4978 }, 4979 { 4980 .key = "persist.sys.omc_etcpath", 4981 .value = "/odm/omc/ATT/etc", 4982 }, 4983 { 4984 .key = "persist.sys.omc_path", 4985 .value = "/odm/omc/ATT/conf", 4986 }, 4987 { 4988 .key = "persist.sys.omc_respath", 4989 .value = "/odm/omc/ATT/res", 4990 }, 4991 { 4992 .key = "persist.sys.omc_support", 4993 .value = "true", 4994 }, 4995 { 4996 .key = "persist.sys.omcnw_path", 4997 .value = "/odm/omc/ATT/conf", 4998 }, 4999 { 5000 .key = "persist.sys.pcovalue", 5001 .value = "-1", 5002 }, 5003 { 5004 .key = "persist.sys.ppr", 5005 .value = "true", 5006 }, 5007 { 5008 .key = "persist.sys.preloads.file_cache_expired", 5009 .value = "1", 5010 }, 5011 { 5012 .key = "persist.sys.prev_omcnwcode", 5013 .value = "ATT", 5014 }, 5015 { 5016 .key = "persist.sys.prev_salescode", 5017 .value = "ATT", 5018 }, 5019 { 5020 .key = "persist.sys.profiler_ms", 5021 .value = "0", 5022 }, 5023 { 5024 .key = "persist.sys.setupwizard", 5025 .value = "FINISH", 5026 }, 5027 { 5028 .key = "persist.sys.silent", 5029 .value = "1", 5030 }, 5031 { 5032 .key = "persist.sys.storage_preload", 5033 .value = "2", 5034 }, 5035 { 5036 .key = "persist.sys.tcpOptimizer.on", 5037 .value = "1", 5038 }, 5039 { 5040 .key = "persist.sys.timezone", 5041 .value = "America/Los_Angeles", 5042 }, 5043 { 5044 .key = "persist.sys.usb.config", 5045 .value = "mtp,adb", 5046 }, 5047 { 5048 .key = "persist.sys.usb.config.extra", 5049 .value = "none", 5050 }, 5051 { 5052 .key = "persist.sys.usb.dualrole", 5053 .value = "true", 5054 }, 5055 { 5056 .key = "persist.sys.usb.ffbm-00.func", 5057 .value = "diag", 5058 }, 5059 { 5060 .key = "persist.sys.usb.ffbm-01.func", 5061 .value = "diag", 5062 }, 5063 { 5064 .key = "persist.sys.usb.ffbm-02.func", 5065 .value = "diag", 5066 }, 5067 { 5068 .key = "persist.sys.vold.firstboot", 5069 .value = "1", 5070 }, 5071 { 5072 .key = "persist.sys.vzw_wifi_running", 5073 .value = "false", 5074 }, 5075 { 5076 .key = "persist.sys.webview.vmsize", 5077 .value = "114785072", 5078 }, 5079 { 5080 .key = "persist.sys.wfd.virtual", 5081 .value = "0", 5082 }, 5083 { 5084 .key = "persist.timed.enable", 5085 .value = "true", 5086 }, 5087 { 5088 .key = "persist.vendor.audio.fluence.speaker", 5089 .value = "true", 5090 }, 5091 { 5092 .key = "persist.vendor.audio.fluence.voicecall", 5093 .value = "true", 5094 }, 5095 { 5096 .key = "persist.vendor.audio.fluence.voicerec", 5097 .value = "false", 5098 }, 5099 { 5100 .key = "persist.vendor.audio.ras.enabled", 5101 .value = "false", 5102 }, 5103 { 5104 .key = "persist.vendor.bt.a2dp_offload_cap", 5105 .value = "sbc-aptx-aptxtws-aptxhd-aac", 5106 }, 5107 { 5108 .key = "persist.vendor.radio.custom_ecc", 5109 .value = "1", 5110 }, 5111 { 5112 .key = "persist.vendor.radio.rat_on", 5113 .value = "combine", 5114 }, 5115 { 5116 .key = "persist.vendor.radio.sib16_support", 5117 .value = "1", 5118 }, 5119 { 5120 .key = "pm.dexopt.ab-ota", 5121 .value = "speed-profile", 5122 }, 5123 { 5124 .key = "pm.dexopt.bg-dexopt", 5125 .value = "speed-profile", 5126 }, 5127 { 5128 .key = "pm.dexopt.boot", 5129 .value = "verify", 5130 }, 5131 { 5132 .key = "pm.dexopt.first-boot", 5133 .value = "quicken", 5134 }, 5135 { 5136 .key = "pm.dexopt.install", 5137 .value = "quicken", 5138 }, 5139 { 5140 .key = "qcom.bluetooth.soc", 5141 .value = "cherokee", 5142 }, 5143 { 5144 .key = "qcom.hw.aac.encoder", 5145 .value = "true", 5146 }, 5147 { 5148 .key = "ril.CompleteMsg", 5149 .value = "OK", 5150 }, 5151 { 5152 .key = "ril.ICC_TYPE", 5153 .value = "0", 5154 }, 5155 { 5156 .key = "ril.ICC_TYPE0", 5157 .value = "0", 5158 }, 5159 { 5160 .key = "ril.NwNmId", 5161 .value = "", 5162 }, 5163 { 5164 .key = "ril.RildInit", 5165 .value = "1", 5166 }, 5167 { 5168 .key = "ril.airplane.mode", 5169 .value = "0", 5170 }, 5171 { 5172 .key = "ril.app.pco", 5173 .value = "-1", 5174 }, 5175 { 5176 .key = "ril.approved_codever", 5177 .value = "none", 5178 }, 5179 { 5180 .key = "ril.approved_cscver", 5181 .value = "none", 5182 }, 5183 { 5184 .key = "ril.approved_modemver", 5185 .value = "none", 5186 }, 5187 { 5188 .key = "ril.atd_status", 5189 .value = "1_0_0", 5190 }, 5191 { 5192 .key = "ril.backoffstate", 5193 .value = "1024", 5194 }, 5195 { 5196 .key = "ril.callcount", 5197 .value = "0", 5198 }, 5199 { 5200 .key = "ril.cdma.esn", 5201 .value = "8034847B", 5202 }, 5203 { 5204 .key = "ril.cs_svc", 5205 .value = "1", 5206 }, 5207 { 5208 .key = "ril.data.intfprefix", 5209 .value = "rmnet_data", 5210 }, 5211 { 5212 .key = "ril.debug.modemfactory", 5213 .value = "CSC Feature State: IMS ON, EPDG ON", 5214 }, 5215 { 5216 .key = "ril.debug.ntc", 5217 .value = "M:ATT, S:ATT, T:GSM, C:USA", 5218 }, 5219 { 5220 .key = "ril.ecclist0", 5221 .value = "911,112,*911,#911,000,08,110,999,118,119", 5222 }, 5223 { 5224 .key = "ril.ecclist00", 5225 .value = "112,911,999,000,110,118,119,911,112,08,000,110,118,119,999", 5226 }, 5227 { 5228 .key = "ril.ecclist_net0", 5229 .value = "", 5230 }, 5231 { 5232 .key = "ril.eri_num", 5233 .value = "1", 5234 }, 5235 { 5236 .key = "ril.eri_ver_1", 5237 .value = "E:None ", 5238 }, 5239 { 5240 .key = "ril.hasisim", 5241 .value = "0", 5242 }, 5243 { 5244 .key = "ril.hw_ver", 5245 .value = "REV1.1", 5246 }, 5247 { 5248 .key = "ril.ims.ecsupport", 5249 .value = "0", 5250 }, 5251 { 5252 .key = "ril.initPB", 5253 .value = "0", 5254 }, 5255 { 5256 .key = "ril.lte_ps_only", 5257 .value = "0", 5258 }, 5259 { 5260 .key = "ril.manufacturedate", 5261 .value = "20180305", 5262 }, 5263 { 5264 .key = "ril.modem.board", 5265 .value = "SDM845", 5266 }, 5267 { 5268 .key = "ril.official_cscver", 5269 .value = "G960UOYN1ARB7", 5270 }, 5271 { 5272 .key = "ril.pco.default", 5273 .value = "-1", 5274 }, 5275 { 5276 .key = "ril.pco.hipri", 5277 .value = "-1", 5278 }, 5279 { 5280 .key = "ril.product_code", 5281 .value = "SM-G960UZKAATT", 5282 }, 5283 { 5284 .key = "ril.radiostate", 5285 .value = "10", 5286 }, 5287 { 5288 .key = "ril.region_props", 5289 .value = "ATT.USA.US.ATT", 5290 }, 5291 { 5292 .key = "ril.rfcal_date", 5293 .value = "2018.03.07", 5294 }, 5295 { 5296 .key = "ril.serialnumber", 5297 .value = "R38K306CCJV", 5298 }, 5299 { 5300 .key = "ril.servicestate", 5301 .value = "2", 5302 }, 5303 { 5304 .key = "ril.signal.param", 5305 .value = "-8,255,255", 5306 }, 5307 { 5308 .key = "ril.simoperator", 5309 .value = "", 5310 }, 5311 { 5312 .key = "ril.ss.routing", 5313 .value = "1", 5314 }, 5315 { 5316 .key = "ril.subinfo", 5317 .value = "0:-2", 5318 }, 5319 { 5320 .key = "ril.sw_ver", 5321 .value = "G960USQU1ARB7", 5322 }, 5323 { 5324 .key = "ril.twwan911Timer", 5325 .value = "0", 5326 }, 5327 { 5328 .key = "ro.adb.secure", 5329 .value = "1", 5330 }, 5331 { 5332 .key = "ro.af.client_heap_size_kbyte", 5333 .value = "7168", 5334 }, 5335 { 5336 .key = "ro.allow.mock.location", 5337 .value = "0", 5338 }, 5339 { 5340 .key = "ro.ap_serial", 5341 .value = "0xC90801DF", 5342 }, 5343 { 5344 .key = "ro.baseband", 5345 .value = "sdm", 5346 }, 5347 { 5348 .key = "ro.board.platform", 5349 .value = "sdm845", 5350 }, 5351 { 5352 .key = "ro.boot.ap_serial", 5353 .value = "0xC90801DF", 5354 }, 5355 { 5356 .key = "ro.boot.baseband", 5357 .value = "sdm", 5358 }, 5359 { 5360 .key = "ro.boot.boot_recovery", 5361 .value = "0", 5362 }, 5363 { 5364 .key = "ro.boot.bootdevice", 5365 .value = "1d84000.ufshc", 5366 }, 5367 { 5368 .key = "ro.boot.bootloader", 5369 .value = "G960USQU1ARB7", 5370 }, 5371 { 5372 .key = "ro.boot.carrierid", 5373 .value = "ATT", 5374 }, 5375 { 5376 .key = "ro.boot.carrierid.param.offset", 5377 .value = "9437644", 5378 }, 5379 { 5380 .key = "ro.boot.cp_debug_level", 5381 .value = "0x55FF", 5382 }, 5383 { 5384 .key = "ro.boot.ddr_start_type", 5385 .value = "1", 5386 }, 5387 { 5388 .key = "ro.boot.debug_level", 5389 .value = "0x4f4c", 5390 }, 5391 { 5392 .key = "ro.boot.dram_info", 5393 .value = "01,06,01,4G", 5394 }, 5395 { 5396 .key = "ro.boot.em.did", 5397 .value = "20208BC90801DF11", 5398 }, 5399 { 5400 .key = "ro.boot.em.model", 5401 .value = "SM-G960U", 5402 }, 5403 { 5404 .key = "ro.boot.em.status", 5405 .value = "0x0", 5406 }, 5407 { 5408 .key = "ro.boot.flash.locked", 5409 .value = "1", 5410 }, 5411 { 5412 .key = "ro.boot.hardware", 5413 .value = "qcom", 5414 }, 5415 { 5416 .key = "ro.boot.im.param.offset", 5417 .value = "9437232", 5418 }, 5419 { 5420 .key = "ro.boot.me.param.offset", 5421 .value = "9437312", 5422 }, 5423 { 5424 .key = "ro.boot.other.locked", 5425 .value = "1", 5426 }, 5427 { 5428 .key = "ro.boot.pr.param.offset", 5429 .value = "9437472", 5430 }, 5431 { 5432 .key = "ro.boot.prototype.param.offset", 5433 .value = "9437660", 5434 }, 5435 { 5436 .key = "ro.boot.revision", 5437 .value = "14", 5438 }, 5439 { 5440 .key = "ro.boot.sales.param.offset", 5441 .value = "9437648", 5442 }, 5443 { 5444 .key = "ro.boot.sales_code", 5445 .value = "ATT", 5446 }, 5447 { 5448 .key = "ro.boot.sec_atd.tty", 5449 .value = "/dev/ttyHS8", 5450 }, 5451 { 5452 .key = "ro.boot.security_mode", 5453 .value = "1526595585", 5454 }, 5455 { 5456 .key = "ro.boot.serialno", 5457 .value = "3551423248573398", 5458 }, 5459 { 5460 .key = "ro.boot.sku.param.offset", 5461 .value = "9437552", 5462 }, 5463 { 5464 .key = "ro.boot.sn.param.offset", 5465 .value = "9437392", 5466 }, 5467 { 5468 .key = "ro.boot.swp_config", 5469 .value = "1", 5470 }, 5471 { 5472 .key = "ro.boot.ucs_mode", 5473 .value = "0", 5474 }, 5475 { 5476 .key = "ro.boot.usrf", 5477 .value = "9438192", 5478 }, 5479 { 5480 .key = "ro.boot.verifiedbootstate", 5481 .value = "green", 5482 }, 5483 { 5484 .key = "ro.boot.warranty_bit", 5485 .value = "0", 5486 }, 5487 { 5488 .key = "ro.boot_recovery", 5489 .value = "0", 5490 }, 5491 { 5492 .key = "ro.bootimage.build.date", 5493 .value = "Sun Feb 11 14:49:26 KST 2018", 5494 }, 5495 { 5496 .key = "ro.bootimage.build.date.utc", 5497 .value = "1518328166", 5498 }, 5499 { 5500 .key = "ro.bootimage.build.fingerprint", 5501 .value = "samsung/starqltesq/starqltesq:8.0.0/R16NW/G960USQU1ARB7:user/release-keys", 5502 }, 5503 { 5504 .key = "ro.bootloader", 5505 .value = "G960USQU1ARB7", 5506 }, 5507 { 5508 .key = "ro.bootmode", 5509 .value = "unknown", 5510 }, 5511 { 5512 .key = "ro.build.PDA", 5513 .value = "G960USQU1ARB7", 5514 }, 5515 { 5516 .key = "ro.build.ab_update", 5517 .value = "false", 5518 }, 5519 { 5520 .key = "ro.build.changelist", 5521 .value = "13056303", 5522 }, 5523 { 5524 .key = "ro.build.characteristics", 5525 .value = "default", 5526 }, 5527 { 5528 .key = "ro.build.date", 5529 .value = "Sun Feb 11 14:49:26 KST 2018", 5530 }, 5531 { 5532 .key = "ro.build.date.utc", 5533 .value = "1518328166", 5534 }, 5535 { 5536 .key = "ro.build.description", 5537 .value = "starqltesq-user 8.0.0 R16NW G960USQU1ARB7 release-keys", 5538 }, 5539 { 5540 .key = "ro.build.display.id", 5541 .value = "R16NW.G960USQU1ARB7", 5542 }, 5543 { 5544 .key = "ro.build.fingerprint", 5545 .value = "samsung/starqltesq/starqltesq:8.0.0/R16NW/G960USQU1ARB7:user/release-keys", 5546 }, 5547 { 5548 .key = "ro.build.flavor", 5549 .value = "starqltesq-user", 5550 }, 5551 { 5552 .key = "ro.build.host", 5553 .value = "SWDG4715", 5554 }, 5555 { 5556 .key = "ro.build.id", 5557 .value = "R16NW", 5558 }, 5559 { 5560 .key = "ro.build.official.release", 5561 .value = "true", 5562 }, 5563 { 5564 .key = "ro.build.product", 5565 .value = "starqltesq", 5566 }, 5567 { 5568 .key = "ro.build.scafe.version", 5569 .value = "2018A", 5570 }, 5571 { 5572 .key = "ro.build.selinux", 5573 .value = "1", 5574 }, 5575 { 5576 .key = "ro.build.selinux.enforce", 5577 .value = "1", 5578 }, 5579 { 5580 .key = "ro.build.shutdown_timeout", 5581 .value = "0", 5582 }, 5583 { 5584 .key = "ro.build.tags", 5585 .value = "release-keys", 5586 }, 5587 { 5588 .key = "ro.build.type", 5589 .value = "user", 5590 }, 5591 { 5592 .key = "ro.build.user", 5593 .value = "dpi", 5594 }, 5595 { 5596 .key = "ro.build.version.all_codenames", 5597 .value = "REL", 5598 }, 5599 { 5600 .key = "ro.build.version.base_os", 5601 .value = "", 5602 }, 5603 { 5604 .key = "ro.build.version.codename", 5605 .value = "REL", 5606 }, 5607 { 5608 .key = "ro.build.version.incremental", 5609 .value = "G960USQU1ARB7", 5610 }, 5611 { 5612 .key = "ro.build.version.preview_sdk", 5613 .value = "0", 5614 }, 5615 { 5616 .key = "ro.build.version.release", 5617 .value = "8.0.0", 5618 }, 5619 { 5620 .key = "ro.build.version.sdk", 5621 .value = "26", 5622 }, 5623 { 5624 .key = "ro.build.version.security_index", 5625 .value = "1", 5626 }, 5627 { 5628 .key = "ro.build.version.security_patch", 5629 .value = "2018-02-01", 5630 }, 5631 { 5632 .key = "ro.build.version.sem", 5633 .value = "2601", 5634 }, 5635 { 5636 .key = "ro.build.version.sep", 5637 .value = "90000", 5638 }, 5639 { 5640 .key = "ro.carrier", 5641 .value = "unknown", 5642 }, 5643 { 5644 .key = "ro.carrierid", 5645 .value = "ATT", 5646 }, 5647 { 5648 .key = "ro.carrierid.param.offset", 5649 .value = "9437644", 5650 }, 5651 { 5652 .key = "ro.cfg.dha_cached_max", 5653 .value = "24", 5654 }, 5655 { 5656 .key = "ro.chipname", 5657 .value = "SDM845", 5658 }, 5659 { 5660 .key = "ro.com.google.clientidbase", 5661 .value = "android-samsung-ss", 5662 }, 5663 { 5664 .key = "ro.com.google.clientidbase.am", 5665 .value = "android-att-us", 5666 }, 5667 { 5668 .key = "ro.com.google.clientidbase.ms", 5669 .value = "android-att-us", 5670 }, 5671 { 5672 .key = "ro.com.google.gmsversion", 5673 .value = "8.0_r4", 5674 }, 5675 { 5676 .key = "ro.config.alarm_alert", 5677 .value = "Morning_Glory.ogg", 5678 }, 5679 { 5680 .key = "ro.config.dha_cached_max", 5681 .value = "19", 5682 }, 5683 { 5684 .key = "ro.config.dha_cached_min", 5685 .value = "6", 5686 }, 5687 { 5688 .key = "ro.config.dha_empty_init", 5689 .value = "24", 5690 }, 5691 { 5692 .key = "ro.config.dha_empty_max", 5693 .value = "24", 5694 }, 5695 { 5696 .key = "ro.config.dha_empty_min", 5697 .value = "8", 5698 }, 5699 { 5700 .key = "ro.config.dha_lmk_scale", 5701 .value = "1.0", 5702 }, 5703 { 5704 .key = "ro.config.dha_pwhitelist_enable", 5705 .value = "1", 5706 }, 5707 { 5708 .key = "ro.config.dha_pwhl_key", 5709 .value = "512", 5710 }, 5711 { 5712 .key = "ro.config.dha_th_rate", 5713 .value = "2.0", 5714 }, 5715 { 5716 .key = "ro.config.dmverity", 5717 .value = "true", 5718 }, 5719 { 5720 .key = "ro.config.fall_prevent_enable", 5721 .value = "true", 5722 }, 5723 { 5724 .key = "ro.config.iccc_version", 5725 .value = "3.0", 5726 }, 5727 { 5728 .key = "ro.config.kap", 5729 .value = "true", 5730 }, 5731 { 5732 .key = "ro.config.kap_default_on", 5733 .value = "true", 5734 }, 5735 { 5736 .key = "ro.config.knox", 5737 .value = "v30", 5738 }, 5739 { 5740 .key = "ro.config.media_sound", 5741 .value = "Media_preview_Touch_the_light.ogg", 5742 }, 5743 { 5744 .key = "ro.config.notification_sound", 5745 .value = "Skyline.ogg", 5746 }, 5747 { 5748 .key = "ro.config.notification_sound_2", 5749 .value = "S_Charming_Bell.ogg", 5750 }, 5751 { 5752 .key = "ro.config.ringtone", 5753 .value = "Over_the_Horizon.ogg", 5754 }, 5755 { 5756 .key = "ro.config.ringtone_2", 5757 .value = "Basic_Bell.ogg", 5758 }, 5759 { 5760 .key = "ro.config.rm_preload_enabled", 5761 .value = "1", 5762 }, 5763 { 5764 .key = "ro.config.tima", 5765 .value = "1", 5766 }, 5767 { 5768 .key = "ro.config.timaversion", 5769 .value = "3.0", 5770 }, 5771 { 5772 .key = "ro.config.vc_call_vol_steps", 5773 .value = "7", 5774 }, 5775 { 5776 .key = "ro.control_privapp_permissions", 5777 .value = "log", 5778 }, 5779 { 5780 .key = "ro.cp_debug_level", 5781 .value = "0x55FF", 5782 }, 5783 { 5784 .key = "ro.crypto.fs_crypto_blkdev", 5785 .value = "/dev/block/dm-3", 5786 }, 5787 { 5788 .key = "ro.crypto.state", 5789 .value = "encrypted", 5790 }, 5791 { 5792 .key = "ro.crypto.type", 5793 .value = "block", 5794 }, 5795 { 5796 .key = "ro.csc.amazon.partnerid", 5797 .value = "att", 5798 }, 5799 { 5800 .key = "ro.csc.country_code", 5801 .value = "USA", 5802 }, 5803 { 5804 .key = "ro.csc.countryiso_code", 5805 .value = "US", 5806 }, 5807 { 5808 .key = "ro.csc.facebook.partnerid", 5809 .value = "att:4b2a1409-4fa0-4d4c-a184-95f0f26d4192", 5810 }, 5811 { 5812 .key = "ro.csc.omcnw_code", 5813 .value = "ATT", 5814 }, 5815 { 5816 .key = "ro.csc.sales_code", 5817 .value = "ATT", 5818 }, 5819 { 5820 .key = "ro.dalvik.vm.native.bridge", 5821 .value = "0", 5822 }, 5823 { 5824 .key = "ro.debug_level", 5825 .value = "0x4f4c", 5826 }, 5827 { 5828 .key = "ro.debuggable", 5829 .value = "0", 5830 }, 5831 { 5832 .key = "ro.device_owner", 5833 .value = "false", 5834 }, 5835 { 5836 .key = "ro.em.did", 5837 .value = "20208BC90801DF11", 5838 }, 5839 { 5840 .key = "ro.em.model", 5841 .value = "SM-G960U", 5842 }, 5843 { 5844 .key = "ro.em.status", 5845 .value = "0x0", 5846 }, 5847 { 5848 .key = "ro.em.version", 5849 .value = "20", 5850 }, 5851 { 5852 .key = "ro.emmc_checksum", 5853 .value = "unknown", 5854 }, 5855 { 5856 .key = "ro.error.receiver.default", 5857 .value = "com.samsung.receiver.error", 5858 }, 5859 { 5860 .key = "ro.expect.recovery_id", 5861 .value = "0xddcc25f76a8f0f655368af4baaa6d26dc6ce5e57000000000000000000000000", 5862 }, 5863 { 5864 .key = "ro.frp.pst", 5865 .value = "/dev/block/persistent", 5866 }, 5867 { 5868 .key = "ro.gfx.driver.0", 5869 .value = "com.samsung.gpudriver.S9Adreno630_80", 5870 }, 5871 { 5872 .key = "ro.hardware", 5873 .value = "qcom", 5874 }, 5875 { 5876 .key = "ro.hardware.egl", 5877 .value = "adreno", 5878 }, 5879 { 5880 .key = "ro.hardware.gatekeeper", 5881 .value = "mdfpp", 5882 }, 5883 { 5884 .key = "ro.hardware.keystore", 5885 .value = "mdfpp", 5886 }, 5887 { 5888 .key = "ro.hardware.nfc_nci", 5889 .value = "nqx.default", 5890 }, 5891 { 5892 .key = "ro.hdcp2.rx", 5893 .value = "tz", 5894 }, 5895 { 5896 .key = "ro.hmac_mismatch", 5897 .value = "unknown", 5898 }, 5899 { 5900 .key = "ro.hwui.drop_shadow_cache_size", 5901 .value = "6", 5902 }, 5903 { 5904 .key = "ro.hwui.gradient_cache_size", 5905 .value = "2", 5906 }, 5907 { 5908 .key = "ro.hwui.layer_cache_size", 5909 .value = "58", 5910 }, 5911 { 5912 .key = "ro.hwui.path_cache_size", 5913 .value = "16", 5914 }, 5915 { 5916 .key = "ro.hwui.r_buffer_cache_size", 5917 .value = "8", 5918 }, 5919 { 5920 .key = "ro.hwui.shape_cache_size", 5921 .value = "4", 5922 }, 5923 { 5924 .key = "ro.hwui.text_large_cache_height", 5925 .value = "2048", 5926 }, 5927 { 5928 .key = "ro.hwui.text_large_cache_width", 5929 .value = "4096", 5930 }, 5931 { 5932 .key = "ro.hwui.text_small_cache_height", 5933 .value = "1024", 5934 }, 5935 { 5936 .key = "ro.hwui.text_small_cache_width", 5937 .value = "1024", 5938 }, 5939 { 5940 .key = "ro.hwui.texture_cache_flushrate", 5941 .value = "0.4", 5942 }, 5943 { 5944 .key = "ro.hwui.texture_cache_size", 5945 .value = "88", 5946 }, 5947 { 5948 .key = "ro.im.param.offset", 5949 .value = "9437232", 5950 }, 5951 { 5952 .key = "ro.kernel.qemu", 5953 .value = "0", 5954 }, 5955 { 5956 .key = "ro.kernel.qemu.gles", 5957 .value = "0", 5958 }, 5959 { 5960 .key = "ro.knox.enhance.zygote.aslr", 5961 .value = "0", 5962 }, 5963 { 5964 .key = "ro.logd.auditd", 5965 .value = "false", 5966 }, 5967 { 5968 .key = "ro.me.param.offset", 5969 .value = "9437312", 5970 }, 5971 { 5972 .key = "ro.multisim.simslotcount", 5973 .value = "1", 5974 }, 5975 { 5976 .key = "ro.nfc.port", 5977 .value = "I2C", 5978 }, 5979 { 5980 .key = "ro.oem.key1", 5981 .value = "ATT", 5982 }, 5983 { 5984 .key = "ro.oem_unlock_supported", 5985 .value = "1", 5986 }, 5987 { 5988 .key = "ro.omc.build.id", 5989 .value = "16902995", 5990 }, 5991 { 5992 .key = "ro.omc.build.version", 5993 .value = "G960UOYN1ARB7", 5994 }, 5995 { 5996 .key = "ro.omc.changetype", 5997 .value = "DATA_RESET_OFF,TRUE", 5998 }, 5999 { 6000 .key = "ro.omc.disabler", 6001 .value = "TRUE", 6002 }, 6003 { 6004 .key = "ro.omc.img_mount", 6005 .value = "0", 6006 }, 6007 { 6008 .key = "ro.omc.region", 6009 .value = "US", 6010 }, 6011 { 6012 .key = "ro.opengles.version", 6013 .value = "196610", 6014 }, 6015 { 6016 .key = "ro.pr.param.offset", 6017 .value = "9437472", 6018 }, 6019 { 6020 .key = "ro.product.board", 6021 .value = "sdm845", 6022 }, 6023 { 6024 .key = "ro.product.brand", 6025 .value = "samsung", 6026 }, 6027 { 6028 .key = "ro.product.cpu.abi", 6029 .value = "arm64-v8a", 6030 }, 6031 { 6032 .key = "ro.product.cpu.abilist", 6033 .value = "arm64-v8a,armeabi-v7a,armeabi", 6034 }, 6035 { 6036 .key = "ro.product.cpu.abilist32", 6037 .value = "armeabi-v7a,armeabi", 6038 }, 6039 { 6040 .key = "ro.product.cpu.abilist64", 6041 .value = "arm64-v8a", 6042 }, 6043 { 6044 .key = "ro.product.device", 6045 .value = "starqltesq", 6046 }, 6047 { 6048 .key = "ro.product.first_api_level", 6049 .value = "26", 6050 }, 6051 { 6052 .key = "ro.product.locale", 6053 .value = "en-US", 6054 }, 6055 { 6056 .key = "ro.product.manufacturer", 6057 .value = "samsung", 6058 }, 6059 { 6060 .key = "ro.product.model", 6061 .value = "SM-G960U", 6062 }, 6063 { 6064 .key = "ro.product.name", 6065 .value = "starqltesq", 6066 }, 6067 { 6068 .key = "ro.product_ship", 6069 .value = "true", 6070 }, 6071 { 6072 .key = "ro.property_service.version", 6073 .value = "2", 6074 }, 6075 { 6076 .key = "ro.prototype.param.offset", 6077 .value = "9437660", 6078 }, 6079 { 6080 .key = "ro.qc.sdk.audio.fluencetype", 6081 .value = "none", 6082 }, 6083 { 6084 .key = "ro.qc.sdk.audio.ssr", 6085 .value = "false", 6086 }, 6087 { 6088 .key = "ro.qualcomm.cabl", 6089 .value = "1", 6090 }, 6091 { 6092 .key = "ro.radio.noril", 6093 .value = "no", 6094 }, 6095 { 6096 .key = "ro.revision", 6097 .value = "14", 6098 }, 6099 { 6100 .key = "ro.ril.svdo", 6101 .value = "false", 6102 }, 6103 { 6104 .key = "ro.ril.svlte1x", 6105 .value = "false", 6106 }, 6107 { 6108 .key = "ro.sales.param.offset", 6109 .value = "9437648", 6110 }, 6111 { 6112 .key = "ro.secure", 6113 .value = "1", 6114 }, 6115 { 6116 .key = "ro.securestorage.support", 6117 .value = "true", 6118 }, 6119 { 6120 .key = "ro.security.ese.cosname", 6121 .value = "JCOP4.0_0050534A", 6122 }, 6123 { 6124 .key = "ro.security.esest", 6125 .value = "per0201exi", 6126 }, 6127 { 6128 .key = "ro.security.fips.ux", 6129 .value = "Enabled", 6130 }, 6131 { 6132 .key = "ro.security.fips_bssl.ver", 6133 .value = "1.2", 6134 }, 6135 { 6136 .key = "ro.security.fips_scrypto.ver", 6137 .value = "2.2", 6138 }, 6139 { 6140 .key = "ro.security.fips_skc.ver", 6141 .value = "1.9", 6142 }, 6143 { 6144 .key = "ro.security.icd.flagmode", 6145 .value = "multi", 6146 }, 6147 { 6148 .key = "ro.security.keystore.keytype", 6149 .value = "sak,gak", 6150 }, 6151 { 6152 .key = "ro.security.mdf.release", 6153 .value = "2", 6154 }, 6155 { 6156 .key = "ro.security.mdf.ux", 6157 .value = "Enabled", 6158 }, 6159 { 6160 .key = "ro.security.mdf.ver", 6161 .value = "3.1", 6162 }, 6163 { 6164 .key = "ro.security.reactive.version", 6165 .value = "2.0.11", 6166 }, 6167 { 6168 .key = "ro.security.vpnpp.release", 6169 .value = "1.0", 6170 }, 6171 { 6172 .key = "ro.security.vpnpp.ver", 6173 .value = "2.1", 6174 }, 6175 { 6176 .key = "ro.security.wlan.release", 6177 .value = "1", 6178 }, 6179 { 6180 .key = "ro.security.wlan.ver", 6181 .value = "1.0", 6182 }, 6183 { 6184 .key = "ro.security_mode", 6185 .value = "1526595585", 6186 }, 6187 { 6188 .key = "ro.serialno", 6189 .value = "3551423248573398", 6190 }, 6191 { 6192 .key = "ro.sf.init.lcd_density", 6193 .value = "640", 6194 }, 6195 { 6196 .key = "ro.sf.lcd_density", 6197 .value = "480", 6198 }, 6199 { 6200 .key = "ro.simbased.changetype", 6201 .value = "XAA,OMC", 6202 }, 6203 { 6204 .key = "ro.sku.param.offset", 6205 .value = "9437552", 6206 }, 6207 { 6208 .key = "ro.sn.param.offset", 6209 .value = "9437392", 6210 }, 6211 { 6212 .key = "ro.swp_config", 6213 .value = "1", 6214 }, 6215 { 6216 .key = "ro.telephony.call_ring.multiple", 6217 .value = "false", 6218 }, 6219 { 6220 .key = "ro.telephony.default_cdma_sub", 6221 .value = "0", 6222 }, 6223 { 6224 .key = "ro.telephony.default_network", 6225 .value = "9", 6226 }, 6227 { 6228 .key = "ro.treble.enabled", 6229 .value = "true", 6230 }, 6231 { 6232 .key = "ro.use_data_netmgrd", 6233 .value = "false", 6234 }, 6235 { 6236 .key = "ro.usrf", 6237 .value = "9438192", 6238 }, 6239 { 6240 .key = "ro.vendor.audio.sdk.fluencetype", 6241 .value = "none", 6242 }, 6243 { 6244 .key = "ro.vendor.audio.sdk.ssr", 6245 .value = "false", 6246 }, 6247 { 6248 .key = "ro.vendor.build.date", 6249 .value = "Sun Feb 11 14:49:26 KST 2018", 6250 }, 6251 { 6252 .key = "ro.vendor.build.date.utc", 6253 .value = "1518328166", 6254 }, 6255 { 6256 .key = "ro.vendor.build.fingerprint", 6257 .value = "samsung/starqltesq/starqltesq:8.0.0/R16NW/G960USQU1ARB7:user/release-keys", 6258 }, 6259 { 6260 .key = "ro.vendor.camera.sep_cts.verified", 6261 .value = "false", 6262 }, 6263 { 6264 .key = "ro.vendor.extension_library", 6265 .value = "libqti-perfd-client.so", 6266 }, 6267 { 6268 .key = "ro.vendor.qti.core_ctl_max_cpu", 6269 .value = "4", 6270 }, 6271 { 6272 .key = "ro.vendor.qti.core_ctl_min_cpu", 6273 .value = "2", 6274 }, 6275 { 6276 .key = "ro.warranty_bit", 6277 .value = "0", 6278 }, 6279 { 6280 .key = "ro.wifi.channels", 6281 .value = "", 6282 }, 6283 { 6284 .key = "ro.wsmd.enable", 6285 .value = "true", 6286 }, 6287 { 6288 .key = "ro.zygote", 6289 .value = "zygote64_32", 6290 }, 6291 { 6292 .key = "ro.zygote.disable_gl_preload", 6293 .value = "true", 6294 }, 6295 { 6296 .key = "sdm.debug.disable_dest_scalar", 6297 .value = "1", 6298 }, 6299 { 6300 .key = "sdm.debug.disable_display_ubwc_ff_voting", 6301 .value = "1", 6302 }, 6303 { 6304 .key = "sdm.debug.disable_inline_rotator", 6305 .value = "1", 6306 }, 6307 { 6308 .key = "sdm.debug.disable_scalar", 6309 .value = "0", 6310 }, 6311 { 6312 .key = "sdm.debug.prefersplit", 6313 .value = "1", 6314 }, 6315 { 6316 .key = "secmm.codecsolution.ready", 6317 .value = "1", 6318 }, 6319 { 6320 .key = "secmm.player.uhqamode", 6321 .value = "True", 6322 }, 6323 { 6324 .key = "security.ASKS.policy_version", 6325 .value = "180123", 6326 }, 6327 { 6328 .key = "security.ASKS.version", 6329 .value = "1.4", 6330 }, 6331 { 6332 .key = "security.mdf", 6333 .value = "Ready", 6334 }, 6335 { 6336 .key = "security.mdf.result", 6337 .value = "None", 6338 }, 6339 { 6340 .key = "security.perf_harden", 6341 .value = "1", 6342 }, 6343 { 6344 .key = "security.semdaemonfinish", 6345 .value = "1", 6346 }, 6347 { 6348 .key = "service.media.powersnd", 6349 .value = "1", 6350 }, 6351 { 6352 .key = "service.poa.modem_reset_count", 6353 .value = "0", 6354 }, 6355 { 6356 .key = "service.secureui.screeninfo", 6357 .value = "1080x2220", 6358 }, 6359 { 6360 .key = "service.sf.present_timestamp", 6361 .value = "1", 6362 }, 6363 { 6364 .key = "storage.support.sdcard", 6365 .value = "1", 6366 }, 6367 { 6368 .key = "storage.support.usb", 6369 .value = "1", 6370 }, 6371 { 6372 .key = "sys.aa_noti", 6373 .value = "", 6374 }, 6375 { 6376 .key = "sys.aasservice.aason", 6377 .value = "true", 6378 }, 6379 { 6380 .key = "sys.bartender.batterystats.ver", 6381 .value = "17", 6382 }, 6383 { 6384 .key = "sys.bluetooth.tty", 6385 .value = "ttyHS0", 6386 }, 6387 { 6388 .key = "sys.boot.end_package", 6389 .value = "1", 6390 }, 6391 { 6392 .key = "sys.boot.loop_forever", 6393 .value = "1", 6394 }, 6395 { 6396 .key = "sys.boot.start_preload", 6397 .value = "1", 6398 }, 6399 { 6400 .key = "sys.boot_completed", 6401 .value = "1", 6402 }, 6403 { 6404 .key = "sys.cameramode.cam_binning", 6405 .value = "0", 6406 }, 6407 { 6408 .key = "sys.cameramode.cam_fps", 6409 .value = "-1", 6410 }, 6411 { 6412 .key = "sys.config.activelaunch_enable", 6413 .value = "true", 6414 }, 6415 { 6416 .key = "sys.config.amp_perf_enable", 6417 .value = "true", 6418 }, 6419 { 6420 .key = "sys.config.mars_version", 6421 .value = "2.10", 6422 }, 6423 { 6424 .key = "sys.daydream.connected", 6425 .value = "0", 6426 }, 6427 { 6428 .key = "sys.disable_ext_animation", 6429 .value = "1", 6430 }, 6431 { 6432 .key = "sys.dockstate", 6433 .value = "0", 6434 }, 6435 { 6436 .key = "sys.dualapp.profile_id", 6437 .value = "", 6438 }, 6439 { 6440 .key = "sys.enterprise.billing.dualsim", 6441 .value = "true", 6442 }, 6443 { 6444 .key = "sys.enterprise.billing.version", 6445 .value = "1.3.0", 6446 }, 6447 { 6448 .key = "sys.is_members", 6449 .value = "exist", 6450 }, 6451 { 6452 .key = "sys.isdumpstaterunning", 6453 .value = "0", 6454 }, 6455 { 6456 .key = "sys.listeners.registered", 6457 .value = "true", 6458 }, 6459 { 6460 .key = "sys.logbootcomplete", 6461 .value = "1", 6462 }, 6463 { 6464 .key = "sys.mdniecontrolservice.mscon", 6465 .value = "true", 6466 }, 6467 { 6468 .key = "sys.nfc.support", 6469 .value = "1", 6470 }, 6471 { 6472 .key = "sys.oem_unlock_allowed", 6473 .value = "0", 6474 }, 6475 { 6476 .key = "sys.post_boot.parsed", 6477 .value = "1", 6478 }, 6479 { 6480 .key = "sys.pvclicense.loaded", 6481 .value = "true", 6482 }, 6483 { 6484 .key = "sys.qca1530", 6485 .value = "detect", 6486 }, 6487 { 6488 .key = "sys.qseecomd.enable", 6489 .value = "true", 6490 }, 6491 { 6492 .key = "sys.sbf.mnoname0", 6493 .value = "ATT_US", 6494 }, 6495 { 6496 .key = "sys.siop.level", 6497 .value = "-3", 6498 }, 6499 { 6500 .key = "sys.skip_lockscreen", 6501 .value = "0", 6502 }, 6503 { 6504 .key = "sys.sysctl.extra_free_kbytes", 6505 .value = "61222", 6506 }, 6507 { 6508 .key = "sys.usb.config", 6509 .value = "mtp,adb", 6510 }, 6511 { 6512 .key = "sys.usb.ffs.ready", 6513 .value = "1", 6514 }, 6515 { 6516 .key = "sys.usb.rmnet.func.name", 6517 .value = "gsi", 6518 }, 6519 { 6520 .key = "sys.usb.rndis.func.name", 6521 .value = "gsi", 6522 }, 6523 { 6524 .key = "sys.usb.rps_mask", 6525 .value = "0", 6526 }, 6527 { 6528 .key = "sys.usb.state", 6529 .value = "mtp,adb", 6530 }, 6531 { 6532 .key = "sys.use_fifo_ui", 6533 .value = "0", 6534 }, 6535 { 6536 .key = "sys.vendor.shutdown.waittime", 6537 .value = "500", 6538 }, 6539 { 6540 .key = "sys.vs.display", 6541 .value = "", 6542 }, 6543 { 6544 .key = "sys.vs.mode", 6545 .value = "false", 6546 }, 6547 { 6548 .key = "sys.vs.visible", 6549 .value = "false", 6550 }, 6551 { 6552 .key = "sys.vzw_sim_state", 6553 .value = "ABSENT", 6554 }, 6555 { 6556 .key = "sys.wifitracing.started", 6557 .value = "1", 6558 }, 6559 { 6560 .key = "telephony.lteOnCdmaDevice", 6561 .value = "0", 6562 }, 6563 { 6564 .key = "tunnel.audio.encode", 6565 .value = "true", 6566 }, 6567 { 6568 .key = "use.voice.path.for.pcm.voip", 6569 .value = "true", 6570 }, 6571 { 6572 .key = "vendor.audio.adm.buffering.ms", 6573 .value = "6", 6574 }, 6575 { 6576 .key = "vendor.audio.dolby.ds2.enabled", 6577 .value = "false", 6578 }, 6579 { 6580 .key = "vendor.audio.dolby.ds2.hardbypass", 6581 .value = "false", 6582 }, 6583 { 6584 .key = "vendor.audio.flac.sw.decoder.24bit", 6585 .value = "true", 6586 }, 6587 { 6588 .key = "vendor.audio.hw.aac.encoder", 6589 .value = "true", 6590 }, 6591 { 6592 .key = "vendor.audio.noisy.broadcast.delay", 6593 .value = "600", 6594 }, 6595 { 6596 .key = "vendor.audio.offload.buffer.size.kb", 6597 .value = "32", 6598 }, 6599 { 6600 .key = "vendor.audio.offload.gapless.enabled", 6601 .value = "true", 6602 }, 6603 { 6604 .key = "vendor.audio.offload.multiaac.enable", 6605 .value = "true", 6606 }, 6607 { 6608 .key = "vendor.audio.offload.multiple.enabled", 6609 .value = "false", 6610 }, 6611 { 6612 .key = "vendor.audio.offload.passthrough", 6613 .value = "false", 6614 }, 6615 { 6616 .key = "vendor.audio.offload.pstimeout.secs", 6617 .value = "3", 6618 }, 6619 { 6620 .key = "vendor.audio.offload.track.enable", 6621 .value = "true", 6622 }, 6623 { 6624 .key = "vendor.audio.parser.ip.buffer.size", 6625 .value = "262144", 6626 }, 6627 { 6628 .key = "vendor.audio.safx.pbe.enabled", 6629 .value = "true", 6630 }, 6631 { 6632 .key = "vendor.audio.tunnel.encode", 6633 .value = "false", 6634 }, 6635 { 6636 .key = "vendor.audio.use.sw.alac.decoder", 6637 .value = "true", 6638 }, 6639 { 6640 .key = "vendor.audio.use.sw.ape.decoder", 6641 .value = "true", 6642 }, 6643 { 6644 .key = "vendor.audio_hal.in_period_size", 6645 .value = "144", 6646 }, 6647 { 6648 .key = "vendor.audio_hal.period_multiplier", 6649 .value = "4", 6650 }, 6651 { 6652 .key = "vendor.audio_hal.period_size", 6653 .value = "192", 6654 }, 6655 { 6656 .key = "vendor.display.enable_default_color_mode", 6657 .value = "1", 6658 }, 6659 { 6660 .key = "vendor.fm.a2dp.conc.disabled", 6661 .value = "true", 6662 }, 6663 { 6664 .key = "vendor.ril.debug.sales_code", 6665 .value = "ATT", 6666 }, 6667 { 6668 .key = "vendor.sec.rild.libpath", 6669 .value = "/vendor/lib64/libsec-ril.so", 6670 }, 6671 { 6672 .key = "vendor.voice.path.for.pcm.voip", 6673 .value = "true", 6674 }, 6675 { 6676 .key = "vold.crypt.type", 6677 .value = "default", 6678 }, 6679 { 6680 .key = "vold.decrypt", 6681 .value = "trigger_restart_framework", 6682 }, 6683 { 6684 .key = "vold.has_adoptable", 6685 .value = "0", 6686 }, 6687 { 6688 .key = "vold.post_fs_data_done", 6689 .value = "1", 6690 }, 6691 { 6692 .key = "vzw.os.rooted", 6693 .value = "false", 6694 }, 6695 { 6696 .key = "wifi.interface", 6697 .value = "wlan0", 6698 }, 6699 { NULL }, 6700 }; 6701 #endif /* __ANDROID__ */ 6702