-
Notifications
You must be signed in to change notification settings - Fork 0
/
ip7_adt_dumped.txt
2854 lines (2854 loc) · 153 KB
/
ip7_adt_dumped.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
device-tree:
target-type (4): "D10"
mlb-serial-number (29): "syscfg/MLB#/0x20,zeroes/0x20"
compatible (25): "D10AP\0iPhone9,1\0AppleARM\0"
secure-root-prefix (3): "md"
AAPL,phandle (4): 0x1
platform-name (32): ""
device_type (8): "bootrom"
region-info (29): "syscfg/Regn/0x20,zeroes/0x20"
regulatory-model-number (17): "syscfg/RMd#/0x20"
model-number (29): "syscfg/Mod#/0x20,zeroes/0x20"
#address-cells (4): 2
#size-cells (4): 2
serial-number (29): "syscfg/SrNm/0x20,zeroes/0x20"
clock-frequency (4): 0
manufacturer (11): "Apple Inc."
model (10): "iPhone9,1"
config-number (29): "syscfg/CFG#/0x20,zeroes/0x20"
name (12): "device-tree"
chosen:
crypto-hash-method (9): "sha2-384"
housing-color (12): "syscfg/CLHS"
unique-chip-id (8): 0
board-id (4): 0
die-id (8): 0
gid-aes-key (4): 0
production-cert (4): 0
mac-address-wifi0 (31): "macaddr/wifiaddr,syscfg/WMac/6"
mac-address-ethernet1 (31): "macaddr/ethaddr1,syscfg/EMc2/6"
dram-vendor (16): ""
mix-n-match-prevention-status (4): 0
display-scale (4): 0
software-bundle-version (29): "syscfg/SBVr/0x10,zeroes/0x10"
certificate-production-status (4): 0
boot-manifest-hash (48): ""
boot-nonce (8): 0
effective-production-status-sep (4): 0
nvram-proxy-data (8192): ""
uid-aes-key (4): 0
bootp-response (300): ""
image4-supported (0)
AAPL,phandle (4): 0x2
development-cert (4): 0
name (7): "chosen"
enclosure-material (12): "syscfg/EnMt"
display-corner-radius (4): 0
marketing-hardware-behavior (12): "syscfg/MkBH"
mac-address-ethernet0 (30): "macaddr/ethaddr,syscfg/EMac/6"
dram-vendor-id (4): 0
coverglass-color (12): "syscfg/CLCG"
firmware-version (256): ""
root-matching (256): ""
software-behavior (29): "syscfg/SwBh/0x10,zeroes/0x10"
backing-color (12): "syscfg/CLBG"
certificate-security-mode (4): 0
consistent-debug-root (8): 0
effective-security-mode-ap (4): 0
effective-security-mode-sep (4): 0
random-seed (64): ""
secure-boot (4): 0
system-trusted (4): 0
backing-glass-material (12): "syscfg/BGMt"
chip-id (4): 0
cover-glass-material (12): "syscfg/CGMt"
mac-address-bluetooth0 (29): "macaddr/btaddr,syscfg/BMac/6"
debug-enabled (4): 0
display-rotation (4): 0
#address-cells (4): 2
marketing-software-behavior (12): "syscfg/MkBS"
effective-production-status-ap (4): 0
manifest-properties:
UnusedIntegerProperty10 (8): 0
UnusedBooleanProperty3 (4): 0
UnusedIntegerProperty6 (8): 0
UnusedBooleanProperty18 (4): 0
UnusedBooleanProperty11 (4): 0
UnusedIntegerProperty15 (8): 0
UnusedIntegerProperty2 (8): 0
UnusedBooleanProperty6 (4): 0
UnusedIntegerProperty9 (8): 0
UnusedStringProperty2 (64): ""
UnusedBooleanProperty16 (4): 0
UnusedStringProperty5 (64): ""
UnusedIntegerProperty13 (8): 0
UnusedBooleanProperty2 (4): 0
UnusedIntegerProperty5 (8): 0
UnusedBooleanProperty9 (4): 0
UnusedStringProperty8 (64): ""
UnusedBooleanProperty14 (4): 0
UnusedIntegerProperty18 (8): 0
UnusedIntegerProperty1 (8): 0
UnusedIntegerProperty11 (8): 0
UnusedBooleanProperty5 (4): 0
UnusedIntegerProperty8 (8): 0
UnusedStringProperty0 (64): ""
UnusedBooleanProperty19 (4): 0
AAPL,phandle (4): 0x3
UnusedBooleanProperty12 (4): 0
UnusedIntegerProperty16 (8): 0
UnusedStringProperty3 (64): ""
UnusedBooleanProperty1 (4): 0
UnusedIntegerProperty4 (8): 0
UnusedBooleanProperty8 (4): 0
name (20): "manifest-properties"
UnusedStringProperty6 (64): ""
UnusedBooleanProperty17 (4): 0
UnusedBooleanProperty10 (4): 0
UnusedIntegerProperty0 (8): 0
UnusedIntegerProperty14 (8): 0
UnusedBooleanProperty4 (4): 0
UnusedIntegerProperty7 (8): 0
UnusedStringProperty9 (64): ""
UnusedBooleanProperty15 (4): 0
UnusedIntegerProperty19 (8): 0
UnusedStringProperty1 (64): ""
UnusedIntegerProperty12 (8): 0
UnusedBooleanProperty0 (4): 0
UnusedBooleanProperty7 (4): 0
UnusedIntegerProperty3 (8): 0
UnusedStringProperty4 (64): ""
UnusedBooleanProperty13 (4): 0
UnusedIntegerProperty17 (8): 0
UnusedStringProperty7 (64): ""
manifest-object-properties:
UnusedIntegerProperty10 (8): 0
UnusedBooleanProperty3 (4): 0
UnusedIntegerProperty6 (8): 0
UnusedBooleanProperty18 (4): 0
UnusedBooleanProperty11 (4): 0
UnusedIntegerProperty15 (8): 0
UnusedIntegerProperty2 (8): 0
UnusedBooleanProperty6 (4): 0
UnusedIntegerProperty9 (8): 0
UnusedStringProperty2 (64): ""
UnusedBooleanProperty16 (4): 0
UnusedStringProperty5 (64): ""
UnusedIntegerProperty13 (8): 0
UnusedBooleanProperty2 (4): 0
UnusedIntegerProperty5 (8): 0
UnusedBooleanProperty9 (4): 0
UnusedStringProperty8 (64): ""
UnusedBooleanProperty14 (4): 0
UnusedIntegerProperty18 (8): 0
UnusedIntegerProperty1 (8): 0
UnusedIntegerProperty11 (8): 0
UnusedBooleanProperty5 (4): 0
UnusedIntegerProperty8 (8): 0
UnusedStringProperty0 (64): ""
UnusedBooleanProperty19 (4): 0
AAPL,phandle (4): 0x4
UnusedBooleanProperty12 (4): 0
UnusedIntegerProperty16 (8): 0
UnusedStringProperty3 (64): ""
UnusedBooleanProperty1 (4): 0
UnusedIntegerProperty4 (8): 0
UnusedBooleanProperty8 (4): 0
name (27): "manifest-object-properties"
UnusedStringProperty6 (64): ""
UnusedBooleanProperty17 (4): 0
UnusedBooleanProperty10 (4): 0
UnusedIntegerProperty0 (8): 0
UnusedIntegerProperty14 (8): 0
UnusedBooleanProperty4 (4): 0
UnusedIntegerProperty7 (8): 0
UnusedStringProperty9 (64): ""
UnusedBooleanProperty15 (4): 0
UnusedIntegerProperty19 (8): 0
UnusedStringProperty1 (64): ""
UnusedIntegerProperty12 (8): 0
UnusedBooleanProperty0 (4): 0
UnusedBooleanProperty7 (4): 0
UnusedIntegerProperty3 (8): 0
UnusedStringProperty4 (64): ""
UnusedBooleanProperty13 (4): 0
UnusedIntegerProperty17 (8): 0
UnusedStringProperty7 (64): ""
memory-map:
MemoryMapReserved-14 (16): ""
MemoryMapReserved-5 (16): ""
MemoryMapReserved-11 (16): ""
MemoryMapReserved-0 (16): ""
MemoryMapReserved-6 (16): ""
AAPL,phandle (4): 0x5
MemoryMapReserved-15 (16): ""
MemoryMapReserved-1 (16): ""
MemoryMapReserved-7 (16): ""
MemoryMapReserved-12 (16): ""
MemoryMapReserved-2 (16): ""
MemoryMapReserved-8 (16): ""
MemoryMapReserved-3 (16): ""
MemoryMapReserved-9 (16): ""
MemoryMapReserved-10 (16): ""
MemoryMapReserved-13 (16): ""
MemoryMapReserved-4 (16): ""
name (11): "memory-map"
kernel-only (5): "true"
iBoot:
AAPL,phandle (4): 0x6
populate-registry-time (4): 0
load-kernel-start (4): 0
start-time (4): 0
debug-wait-start (4): 0
name (6): "iBoot"
options:
name (8): "options"
AAPL,phandle (4): 0x7
cpus:
#address-cells (4): 1
#size-cells (4): 0
name (5): "cpus"
AAPL,phandle (4): 0x8
cpu0:
AAPL,phandle (4): 0x9
fixed-frequency (8): 0
bus-frequency (8): 0
cpu-version (4): 0
memory-frequency (8): 0
name (5): "cpu0"
function-error_handler (12): "\x0f\0\0\0HrrE\0\0\0\0"
interrupt-parent (4): 0x10
reg-private (8): 0x202010000
state (8): "running"
compatible (30): "apple,hurricane-zephyr\0ARM,v8\0"
peripheral-frequency (8): 0
interrupts (12): 40 01 00 00 53 00 00 00 41 01 00 00
timebase-frequency (8): 0
function-enable_core (12): "\x12\0\0\0eroC\x01\0\0\0"
clock-frequency (8): 0
function-ipi_dispatch (12): "\x10\0\0\0DIPI@\x01\0\0"
function-ipi_dispatch_other (12): "\x10\0\0\0DIPIA\x01\0\0"
function-cpu_idle (8): "\x12\0\0\0Iupc"
device_type (4): "cpu"
reg (4): 0
cpu1:
reg-private (8): 0x202110000
state (8): "waiting"
function-cpu_idle (8): "\x12\0\0\0Iupc"
compatible (30): "apple,hurricane-zephyr\0ARM,v8\0"
interrupt-parent (4): 0x10
interrupts (12): 42 01 00 00 56 00 00 00 43 01 00 00
reg (4): 0x1
AAPL,phandle (4): 0xa
device_type (4): "cpu"
function-ipi_dispatch_other (12): "\x10\0\0\0DIPIC\x01\0\0"
function-error_handler (12): "\x0f\0\0\0HrrE\x01\0\0\0"
function-ipi_dispatch (12): "\x10\0\0\0DIPIB\x01\0\0"
function-enable_core (12): "\x12\0\0\0eroC\x02\0\0\0"
name (5): "cpu1"
aliases:
name (8): "aliases"
AAPL,phandle (4): 0xb
memory:
AAPL,phandle (4): 0xc
device_type (7): "memory"
name (7): "memory"
reg (8): 0
pram:
AAPL,phandle (4): 0xd
device_type (5): "pram"
name (5): "pram"
reg (16): ""
vram:
AAPL,phandle (4): 0xe
device_type (5): "vram"
name (5): "vram"
reg (16): ""
arm-io:
compatible (13): "arm-io,t8010"
clock-frequencies (384): ""
acc-impl-tunables (48): 00 84 00 00 00 00 00 00 00 00 ff ff 0f 00 00 80 00 00 00 10 08 00 00 00 40 84 00 00 00 00 00 00 ff ff 00 00 00 00 00 00 00 10 00 00 00 00 00 00
reg (64): 0x202f40000,10000; 0x202050000,1000; 0x202150000,1000; 0x20f100000,4000
chip-revision (4): 0
soc-generation (3): "H9"
iommu-present (0)
AAPL,phandle (4): 0xf
device_type (9): "t8010-io"
#size-cells (4): 2
ranges (48): 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 02 00 00 00
#address-cells (4): 2
usbphy-frequency (4): 0
function-clock_gate (8): "\x12\0\0\0Gklc"
function-power_gate (8): "\x12\0\0\0Grwp"
name (7): "arm-io"
aic:
#interrupt-cells (4): 1
#main-cpus (4): 2
compatible (6): "aic,1"
interrupt-controller (7): "master"
aic-version (4): 0x2
#shared-timestamps (4): 16
reg (32): 0xe100000,8000; 0xe108000,1000
AAPL,phandle (4): 0x10
device_type (21): "interrupt-controller"
#address-cells (4): 0
ipid-mask (40): 0f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
target-destinations (16): 53 00 00 00 01 00 00 00 56 00 00 00 02 00 00 00
name (4): "aic"
aic-timebase:
AAPL,phandle (4): 0x11
device_type (6): "timer"
name (13): "aic-timebase"
reg (16): 0xe108000,1000
pmgr:
function-pmp_control (8): ",\0\0\0CPMP"
clocks (264): "\x19\0\x01\x01\0\0\0\0FAST_AF\0\0\0\0\0\0\0\0\0\x1a\0\x01\x02\0\0\0\0SLOW_AF\0\0\0\0\0\0\0\0\0\x1b\0\x01\x03\0\0\0\0SBR\0\0\0\0\0\0\0\0\0\0\0\0\0\x1c\0\x01\x04\0\0\0\0ISP_SENSOR0_REF\0\x1d\0\x01\x05\0\0\0\0ISP_SENSOR1_REF\0\x1e\0\x01\x06\0\0\0\0ISP_SENSOR2_REF\0\x1f\0\x01\x07\0\0\0\0VENC\0\0\0\0\0\0\0\0\0\0\0\0 \0\x01\x08\0\0\0\0PMP\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\x01\x01\x09\0\0\0\0LPO\0\0\0\0\0\0\0\0\0\0\0\0\0\x07\x01\x01\x0a\0\0\0\0AOP\0\0\0\0\0\0\0\0\0\0\0\0\0\x08\x01\x01\x0b\0\0\0\0DETECT\0\0\0\0\0\0\0\0\0\0"
power-domains (264): "\0!\0\x01\0\0\0\0MCC\0\0\0\0\0\0\0\0\0\0\0\0\0\0\"\0\x02\0\0\0\0DCS01\0\0\0\0\0\0\0\0\0\0\0\0#\0\x03\0\0\0\0DCS23\0\0\0\0\0\0\0\0\0\0\0\0$\0\x04\0\0\0\0ACS\0\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\x05\0\0\0\0PMP\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\x06\0\0\0\0PMS_SRAM\0\0\0\0\0\0\0\0\0'\0\x07\0\0\0\0GFX\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\x08\0\0\0\0SEP\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x09\x01\x09\0\0\0\0AOP_CPU\0\0\0\0\0\0\0\0\0\0\x0a\x01\x0a\0\0\0\0AOP_FILTER\0\0\0\0\0\0\0\x0b\x01\x0b\0\0\0\0AOP_DETECT\0\0\0\0\0\0"
voltage-states0 (16): 0x0,1
ecore-static-vvfc (24): 00 00 8c 01 00 00 72 00 00 00 dc 02 00 00 e9 00 00 00 44 04 00 00 83 01
ps-regs (96): 0x8000000000001,e07; 0x80000,8010000000000; 0xfffff7ff,ffffffbf00080200; 0x8030000000000,3d; 0x100080400,8400000000000; 0x3f,f00088000
ap-wake-sources (180): "\x0d\0\0\0AOP.PMU\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0f\0\0\0AOP.CPUWakeupAP\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1b\0\0\0AOP.OutboxNotEmpty\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1c\0\0\0AOP.APWatchdog\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1d\0\0\0AOP.APWakeupTime\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
cpu-power-gate-latency-us (4): 0xc350
dvd-period-us (4): 0x1f40
cpu-tvm (4): 0x1
function-mcc_ctrl (8): "\x18\0\0\0$meM"
clock-gates (8): 0x7900000078
bridge-counter-version (4): 0x1
idle-hack (4): 0x1
nominal-performance1 (4): 0
dvd-threshold-us (4): 0x3e8
bridge-reg-index (4): 0xa
e-overlap-low (4): 0x3
cpu-apsc (4): 0x1
dvtm-hack (4): 0x1
dvmr (4): 0x1
mcx-fast-cpu-frequency (4): 0x798
dvd-factor (4): 0x10000
name (5): "pmgr"
optional-bridge-mask (4): 0x2000
lost-perf-thresholds (16): 99 59 00 00 66 a6 00 00 99 d9 00 00 33 f3 00 00
bridge-counters (56): 00 00 00 00 00 80 00 00 00 80 00 00 00 80 00 00 00 40 00 00 00 80 00 00 00 00 00 00 00 80 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 40 00 00 00 00 00 00 00 80 00 00
p-overlap-high (4): 0x2
l2c-acc-sleep (4): 0xffffffff
perf-regs (32): 0xb400000000000,55; 0xb400000000001,10000000f
soc-tvm (4): 0x1
total-rails-leakage (4): 0
aes-domain-hack (4): 0x1
clock-ids (8): 0x10500000101
events (528): "\0\0\0\x01\0\0)\0SOC_TVM_TEMP_0\0\0\0\0\0\x02\0\0*\0SOC_TVM_TEMP_1\0\0\0\0\0\x03\0\0+\0SOC_TVM_TEMP_2\0\0\0\0\0\x04\0\0,\0SOC_TVM_TEMP_3\0\0\0\0\0\x05\0\0-\0GFX_TVM_TEMP_0\0\0\0\0\0\x06\0\0.\0GFX_TVM_TEMP_1\0\0\0\0\0\x07\0\0/\0GFX_TVM_TEMP_2\0\0\0\0\0\x08\0\00\0GFX_TVM_TEMP_3\0\0\0\0\x01\x092\01\0SOCHOT0\0\0\0\0\0\0\0\0\0\0\0\x01\x0a4\03\0SOCHOT1\0\0\0\0\0\0\0\0\0\0\0\x01\x0bP\0O\0SOC_V0_MEM_P1\0\0\0\0\0\x01\x0cJ\0I\0SOC_V0_MEM_P0\0\0\0\0\0\x01\x0dL\0K\0SOC_V1_MEM_P1\0\0\0\0\0\x01\x0eN\0M\0SOC_V1_MEM_P0\0\0\0\0\0\0\x0f\0\0\x0e\x01S2R_AOP\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x0c\x01AOP_DDR\0\0\0\0\0\0\0\0\0\0\0\0\x11\0\0\x0d\x01AWAKE\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\x12\0\0\0\0DPE0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\x13\0\0\x05\0CPU0_E\0\0\0\0\0\0\0\0\0\0\0\0\x02\x14\0\0\x03\0CPU0_P\0\0\0\0\0\0\0\0\0\0\0\0\x02\x15\0\0\x06\0CPU1_E\0\0\0\0\0\0\0\0\0\0\0\0\x02\x16\0\0\x04\0CPU1_P\0\0\0\0\0\0\0\0\0\0"
compatible (12): "pmgr1,t8010"
device_type (5): "pmgr"
boost-performance1 (4): 0
l2c-wpd (4): 0
#bridges (4): 14
perf-domains (112): "\0\x04\0\x01\0\0\0\0,\x01\0\0SOC\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\x01\x01\x02\0\0\0\0\0\0\0\0CPU\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\x03\0\0\0\0,\x01\0\0MEM\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\0\0\0\0\0AES\0\0\0\0\0\0\0\0\0\0\0\0\0"
noise-hack (4): 0x1
voltage-states1 (128): ""
pmp (4): 0
pcore-static-vvfc (56): 00 00 f4 02 00 00 6e 05 00 00 20 04 00 00 93 08 00 00 4c 05 00 00 2e 0e 00 00 6c 06 00 00 8c 14 00 00 98 07 00 00 d7 1e 00 00 c4 08 00 00 9e 2d 00 00 24 09 00 00 d2 30
devices (5568): "\0\0\x02\x01\0\0\0\0\0\0\0\x01\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0CPU0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\x02\0\0\0\0\0\0\x01\x01\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0CPU1\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\x03\0\0\0\0\x04\0\x0c\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SIO_BUSIF\0\0\0\0\0\0\0\x01\0\0\x04\x03\0\0\0\0\0\x0d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SIO_P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\0\0\0\x0d\x03\x01\0\0\0\x83\xc0\x01\0\0@\0\0\x01\0\0\0\x0a\0\0\0USB\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x08\x06\0\0\0\0\0\x0e\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0USBCTRL\0\0\0\0\0\0\0\0\0\0\0\0\x0a\x08\0\0\0\0\0\x0f\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0USB2HOST0\0\0\0\0\0\0\0\0\0\0\x0c\x08\0\0\0\0\0\x11\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0USB2HOST1\0\0\0\0\0\0\0 \0\0\x10\0\0\0\0\x0d\0\x15\x03\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\x06\0\0\0RTMUX\0\0\0\0\0\0\0\0\0\0\0 \0\0\x12\0\0\0\0\x0f\0\x1b\x03\x01\0\0\0\\\x8f\x1d\0SC\x01\0\x01\0\0\0\0\0\0\0MEDIA\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\x18\x10\0\0\0\0\0\x1a\x03\x04\0\0\0f\xe6\xc9\x013\xb3\x0f\0\x01\0\0\0\x05\0\0\0ISP_SYS\0\0\0\0\0\0\0\0\0\"\0\0\x19\x12\0\0\0\x11\0\x1d\x03\x01\0\0\0\x8f\xc2D\03\x93\x02\0\x01\0\0\0\x01\0\0\0MSR\0\0\0\0\0\0\0\0\0\0\0\0\0\"\0\0\x1a\x12\0\0\0\x10\0\x1c\x03\x01\0\0\0\xc2u\x0b\0SC\x01\0\x01\0\0\0\x02\0\0\0JPG\0\0\0\0\0\0\0\0\0\0\0\0\0\"\0\0\x1b\x12\0\0\0\x15\0\x02\x04\x02\0\0\03\xb3\xcc\x01\xeb\x919\0\x01\0\0\0\x03\0\0\0VENC_SYS\0\0\0\0\0\0\0\0 \0\0\x1c\x10\0\0\0\x0e\0\x16\x03\x01\0\0\0\x0a\xd7\x16\0\x99\xf9\x01\0\0\0\0\0\0\0\0\0DISP0_FE\0\0\0\0\0\0\0\0\0\0\0\x1d\x1c\0\0\0\0\0\x17\x03\x01\0\0\0f\xa6\x19\0\x99\x19\x01\0\x01\0\0\0\x07\0\0\0DISP0_BE\0\0\0\0\0\0\0\0\x10\0\0 \x18\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_DART\0\0\0\0\0\0\0\0\x10\0\0!\x19\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0MSR_DART\0\0\0\0\0\0\0\0\x10\0\0$\x1b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VENC_DART\0\0\0\0\0\0\0\x10\0\0%\x1d\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DISP0_DART\0\0\0\0\0\0!\0\0*\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0AOP\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0+\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DEBUG\0\0\0\0\0\0\0\0\0\0\0\x01\0\0,\0\0\0\0\0\0\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0AOP_GPIO\0\0\0\0\0\0\0\0!\0\0-\0\0\0\0\x01\x01\x09\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0AOP_CPU\0\0\0\0\0\0\0\0\0!\0\0.\0\0\0\0\x02\x01\x0a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0AOP_FILTER\0\0\0\0\0\0!\0\0/\0\0\0\0\x03\x01\x0b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0AOP_BUSIF\0\0\0\0\0\0\0\0\0\x020\0\0\0\0\0\0\x08\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0CPM\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\01\0\0\0\0\0\0\0\x02\x01\0\0\0\xf9\x9e\0\0\0`\x02\0\x01\0\0\0\x0d\0\0\0SBR\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\02\0\0\0\0\0\0\x01\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0AIC\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\03\0\0\0\0\0\0\x02\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DWI\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\04\0\0\0\0\0\0\x03\x02\x07\0\0\0\0\0\x18\0\0\0\0\0\0\0\0\0\0\0\0\0GPIO\0\0\0\0\0\0\0\0\0\0\0\0!\0\05\0\0\0\0\x01\0\x04\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PMS\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\06\0\0\0\0\x12\0\x1e\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PMP\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\07\0\0\0\0\x13\0\x1f\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PMS_SRAM\0\0\0\0\0\0\0\0 \0\08\0\0\0\0\x16\0\x03\x04\x01\0\0\0\0\xc0O\03\xf3\x01\0\x01\0\0\0\x0b\0\0\0PCIE\0\0\0\0\0\0\0\0\0\0\0\0\0\0\09\0\0\0\0\0\0\x04\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PCIE_AUX\0\0\0\0\0\0\0\0 \0\0:\0\0\0\0\x03\0\x09\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PCIE_REF\0\0\0\0\0\0\0\0\0\0\0;\0\0\0\0\0\0\x0a\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SOCUVD\0\0\0\0\0\0\0\0\0\0\0\0\0@\x04\0\0\0\0\0\x0f\x02\x01\0\0\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0MCA0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\x04\0\0\0\0\0\x10\x02\x01\0\0\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0MCA1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0B\x04\0\0\0\0\0\x11\x02\x01\0\0\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0MCA2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0C\x04\0\0\0\0\0\x12\x02\x01\0\0\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0MCA3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\x04\0\0\0\0\0\x13\x02\x01\0\0\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0MCA4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E\x04\0\0\0\0\0\x14\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0PWM0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0F\x04\0\0\0\0\0\x15\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I2C0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0G\x04\0\0\0\0\0\x16\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I2C1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0H\x04\0\0\0\0\0\x17\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I2C2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I\x04\0\0\0\0\0\x18\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I2C3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0J\x04\0\0\0\0\0\x19\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SPI0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0K\x04\0\0\0\0\0\x1a\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SPI1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0L\x04\0\0\0\0\0\x1b\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SPI2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0M\x04\0\0\0\0\0\x1c\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SPI3\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0P\x04\0\0\0\0\0\x1d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0Q\x04\0\0\0\0\0\x1e\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART1\0\0\0\0\0\0\0\0\0\0\0\x01\0\0R\x04\0\0\0\0\0\x1f\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART2\0\0\0\0\0\0\0\0\0\0\0\x01\0\0S\x04\0\0\0\0\0\0\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART3\0\0\0\0\0\0\0\0\0\0\0\x01\0\0T\x04\0\0\0\0\0\x01\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART4\0\0\0\0\0\0\0\0\0\0\0\x01\0\0U\x04\0\0\0\0\0\x02\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART5\0\0\0\0\0\0\0\0\0\0\0\x01\0\0V\x04\0\0\0\0\0\x03\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART6\0\0\0\0\0\0\0\0\0\0\0\x01\0\0W\x04\0\0\0\0\0\x04\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART7\0\0\0\0\0\0\0\0\0\0\0\x01\0\0X\x04\0\0\0\0\0\x05\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UART8\0\0\0\0\0\0\0\0\0\0\0\x10\x01\x04Y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0AES0-CLK\0\0\0\0\0\0\0\0!\0\0Z\x04\0\0\0\x05\0\x0e\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SIO\0\0\0\0\0\0\0\0\0\0\0\0\0 \0\0[\x0c\0\0\0\x02\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0HSIC0_PHY\0\0\0\0\0\0\0\0\0\0\\\0\0\0\0\0\0\x06\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_SENS0\0\0\0\0\0\0\0\0\0\0]\0\0\0\0\0\0\x07\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_SENS1\0\0\0\0\0\0\0\0\0\0^\0\0\0\0\0\0\x08\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_SENS2\0\0\0\0\0\0\0\0\0\0_\x04\0\0\0\0\0\x07\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0HFD0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0`\0\0\0\0\x06\0\x08\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0MCC\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0a\0\0\0\0\x07\0\x09\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DCS0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0b\0\0\0\0\x08\0\x0a\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DCS1\0\0\0\0\0\0\0\0\0\0\0\0!\0\0c\0\0\0\0\x09\0\x0b\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DCS2\0\0\0\0\0\0\0\0\0\0\0\0!\0\0d\0\0\0\0\x0a\0\x0c\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DCS3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0e\x0a\0\0\0\0\0\x10\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0USB2HOST0_OHCI\0\0\0\0\0i\x08\0\0\0\0\0\x12\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0USBOTG\0\0\0\0\0\0\0\0\0\0!\0\0j\0\0\0\0\x0b\0\x13\x03\x01\0\0\0\x8b\x0c\x09\03s\0\0\0\0\0\0\0\0\0\0SMX\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0k\0\0\0\0\x0c\0\x14\x03\x01\0\0\0\xf5(\x0b\03\xb3\x01\0\0\0\0\0\0\0\0\0SF\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0m\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0CPU-BUSY\0\0\0\0\0\0\0\0\x10\0\x02n\0\0\0\0\0\0\0\0\x08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0CPU\0\0\0\0\0\0\0\0\0\0\0\0\0\x11\0\0p\x1d\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DISP0-V\0\0\0\0\0\0\0\0\0\x01\0\0q\x1d\0\0\0\0\0\x18\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0MIPI_DSI\0\0\0\0\0\0\0\0\x01\0\0r\x1d\0\0\0\0\0\x19\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DP\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0s\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DISP-DCS-PG\0\0\0\0\0\x10\0\0t\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DISP-FB-ACTIVE\0\0\x10\0\0u\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DISP-CPM-PG\0\0\0\0\0\x10\0\0v\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DISP-MIE-DPB\0\0\0\0\"\0\0w\x12\0\0\0\x14\0\0\x04\x03\0\0\0\x85k\x15\0\0\xc0\x04\0\x02\0\0\0\x04\x0c\0\0VDEC0\0\0\0\0\0\0\0\0\0\0\0P\x01\x01x\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0SOC-FAST\0\0\0\0\0\0\0\0P\x01\x03y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0MEM-FAST\0\0\0\0\0\0\0\0 \0\0|\0\0\0\0\x17\0\x05\x04\0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\x08\x09\0\0GFX\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\x7f\0\0\0\0\x18\0\0\x05\x01\0\0\0\x99\x994\0\xcc\x8c\x04\0\0\0\0\0\0\0\0\0SEP\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x80\x18\0\0\0\0\0\0\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_RSTS0\0\0\0\0\0\0\0\0\0\0\x81\x18\0\0\0\0\0\x01\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_RSTS1\0\0\0\0\0\0\0\0\0\0\x82\x18\0\0\0\0\0\x02\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_VIS\0\0\0\0\0\0\0\0\0\0\0\0\x83\x18\0\0\0\0\0\x03\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_BE\0\0\0\0\0\0\0\0\0\0\0\0\0\x84\x18\0\0\0\0\0\x04\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP_PEARL\0\0\0\0\0\0\0\0\0\0\x85\x18\0\0\0\0\0\x05\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DPRX\0\0\0\0\0\0\0\0\0\0\0\0\x10\x01\x01\x86\0\0\0\0\0\0\0\0\x04\0\0\03\xb3\xd3\0\0\0\0\0\0\0\0\0\0\0\0\0ISP-SOC-FAST\0\0\0\0\x10\x01\x03\x87\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ISP-MEM-FAST\0\0\0\0\x10\x01\x01\x88\0\0\0\0\0\0\0\0\x02\0\0\0f\xe6\xd4\0\0\0\0\0\0\0\0\0\0\0\0\0VENC-SOC-FAST\0\0\0\x10\x01\x03\x89\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VENC-MEM-FAST\0\0\0\x10\x01\x01\x8a\0\0\0\0\0\0\0\0\x03\0\0\0\xa30\x0c\0\0\0\0\0\0\0\0\0\0\0\0\0VDEC-SOC-FAST\0\0\0\x10\x01\x01\x8c\0\0\0\0\0\0\0\0\x01\0\0\0\x0eM\x05\0\0\0\0\0\0\0\0\0\0\0\0\0JPEG-SOC-FAST\0\0\0\x10\0\0\x8d\x1b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VENC_SYS-V\0\0\0\0\0\0\x10\0\0\x90\x1a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0JPG0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x91\x1a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0JPG1\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\x92\x1a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0JPG0_DART\0\0\0\0\0\0\0\x10\0\0\x93\x1a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0JPG1_DART\0\0\0\0\0\0\0\x10\0\0\x94|\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0GFX-SGX\0\0\0\0\0\0\0\0\0\x10\0\0\x95|\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0GFX-KF\0\0\0\0\0\0\0\0\0\0\x10\0\0\x96\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0GFX-BUSY\0\0\0\0\0\0\0\0\0\0\0\x97\x1b\0\0\0\0\0\0\x07\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VENC_PIPE4\0\0\0\0\0\0\0\0\0\x98\x1b\0\0\0\0\0\x01\x07\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VENC_PIPE5\0\0\0\0\0\0\0\0\0\x99\0\0\0\0\0\0\x02\x07\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VENC_ME0\0\0\0\0\0\0\0\0\0\0\0\x9a\0\0\0\0\0\0\x03\x07\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VENC_ME1\0\0\0\0\0\0\0\0\x10\0\0\x9b\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0USB-AUDIO-DUMMY\0"
clpc (4): 0x1
reg (384): 0xe000000,100000; 0x10200000,100000; 0x2f20000,11000; 0x10004000,1000; 0x2f40000,10000; 0x2f50000,1000; 0x2f80000,1000; 0x2050000,a000; 0x2150000,a000; 0xe308000,1000; 0x7000000,1000; 0x7800000,9000; 0x7a00000,9000; 0x7c00000,9000; 0x8000000,5000; 0x5b00000,11000; 0x6000000,1000; 0x6100000,9000; 0x1f00000,9000; 0x1f80000,1000; 0xcb00000,1000; 0x600010000,5000; 0x8080000,1000; 0xf000000,9000
AAPL,phandle (4): 0x12
gfx-tvm (4): 0x1
energy-counters (400): "\0\0\0\x01\0\0\0\x10Rest of SoC Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\0\0\0\x10VENC Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x10VDEC Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\x10ISP Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\x05\0\0\0\x11CPU0 Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\x06\0\0\0\x11CPU1 Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x07\0\0\0\x10SoC Base Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\x08\0\0\0\x11CPM Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\x10\0\0\0\0SoC Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\x11\0\0\0\0CPU Energy\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
soc-tuner:
cpm-power-gating (4): 0x1
AAPL,phandle (4): 0x13
#device-sets (4): 8
function-mcc_ctrl (8): "\x18\0\0\0$meM"
function-dispidle_ctrl (8): "_\0\0\0iPDA"
device-set-7 (4): 0x9b
name (10): "soc-tuner"
devices (8): 0x300000006b
device-set-6 (20): 40 00 00 00 41 00 00 00 42 00 00 00 43 00 00 00 44 00 00 00
device-set-5 (4): 0x75
compatible (16): "soc-tuner,t8010"
device-set-4 (4): 0x73
mcc-configs (16): 01 00 00 00 02 00 00 00 03 00 00 00 04 00 00 00
device-set-3 (4): 0x1c
device-set-2 (4): 0x6d
soc-tuning (4): 0x1
device-set-1 (4): 0x18
device_type (10): "soc-tuner"
device-set-0 (16): 12 00 00 00 18 00 00 00 74 00 00 00 96 00 00 00
fb-caching (4): 0x1
mcc-power-gating (4): 0x1
clpc:
dynamic-cpu-control (4): 0x1
cpu-ldst-density-threshold-ipc (4): 0xb333
cpu-read-threshold-gbps (4): 0x70000
dynamic-cores-control (4): 0
serialization-target (4): 0xfd70
scheduling-latency-ki-up (4): 0x51e
mem-throughput-memory-ki-up (4): 0x1999
frame-trend-cpu-cap (4): 0x4a3d
frame-rate-trend-ki-up (4): 0xf5c
scheduling-latency-target (4): 0x50000
qos-weight-tier1 (4): 0x28f
frame-rate-trend-ki-down-fast (4): 0x10000
frame-rate-filter-time-constant (4): 0x4ccc
compatible (11): "clpc,t8010"
external-droop-util-ki-down (4): 0x10000
cpu-fast-threshold-mhz (4): 0x4b00000
soc-throughput-cpu-ki-down (4): 0x147
present-utilization-offset-us (4): 0
mem-throughput-cpu-ki-up (4): 0x10000
present-utilization-ki-down (4): 0xf5c
p-e-perf-ratio (4): 0x20000
soc-throughput-cpu-ki-up (4): 0x10000
qos-weight-tier2 (4): 0x13333
scheduling-latency-ki-down (4): 0x83
real-time-utilization-ki-up (4): 0x10000
soc-throughput-memory-threshold (4): 0x3e80000
external-droop-util-ce-floor (4): 0x4ccc
frame-rate-trend-holdoff (4): 0x14
soc-throughput-fabric-ki-up (4): 0x1999
cpu-device-index (4): 0
external-droop-util-target (4): 0x28f
soc-throughput-fabric-threshold (4): 0xe0000
cpu-utilization-ki-up-fast (4): 0x640000
ui-cf-effort-limit (4): 0x10000
soc-stall-target (4): 0xb333
mem-throughput-gpu-threshold (4): 0x28000
io-rate-max-control-effort (4): 0xb333
present-utilization-ki-up (4): 0x2e14
sochot0-event-index (4): 0
ui-cf-boost-time-us (4): 0x411b
cpu-fast-utilization-threshold (4): 0x8000
serialization-ki-up (4): 0x140000
soc-throughput-gpu-ki-down (4): 0x147
qos-weight-tier3 (4): 0x20000
soc-throughput-fabric-ki-down (4): 0x147
cpu-power-target (4): 0xff0000
ui-running-threshold-fps (4): 0x190000
cpu-efficiency-target (4): 0x9999
filter-time-constant-up (4): 0x8000
soc-throughput-memory-ki-down (4): 0x147
ui-cf-min-deadline-us (4): 0x411b
io-rate-read-ki-down (4): 0x41
cpu-efficiency-ki-up (4): 0x3333
external-droop-util-control (4): 0x1
ui-volatile-ki-down (4): 0xccc
cpmu-reg-unlock (4): 0
qos-weight-tier4 (4): 0
mem-throughput-cpu-threshold (4): 0x40000
soc-stall-ki-up (4): 0x8000
events (4): 0x9
io-rate-write-ki-up (4): 0x6
energy-counters (8): 0x600000005
ui-cf-min-allowed-util (4): 0xc000
qos-min-performance (4): 0x4ccc
frame-swap-timeout-ms (4): 0xe6
external-droop-util-ki-up (4): 0x27100000
mem-stall-ki-down (4): 0xccc
soc-stall-ki-down (4): 0xccc
soc-fast-device-index (4): 0x4
cpu-utilization-target (4): 0xfd70
ui-cf-history-us (4): 0x30d40
real-time-utilization-ki-down (4): 0x1999
qos-weight-tier5 (4): 0
cpu-utilization-ki-down-nominal (4): 0xccc
sched-synchronous-perf-changes (4): 0
function-amcperfcounters (8): "\x18\0\0\0PCMA"
cpu-power-limiting (4): 0x1
mem-throughput-fabric-threshold (4): 0x3e80000
cpu-utilization-ki-up-slow (4): 0x40000
cpu-power-ki-down (4): 0xccc
cpu-utilization-ki-down-fast (4): 0xccc
frame-rate-trend-target (4): 0x6666
ui-establishing-interval-ms (4): 0x1388
io-rate-write-ki-down (4): 0x20
dynamic-mem-control (4): 0x1
qos-weight-tier6 (4): 0
core-starvation-time-us (4): 0x4e20
cpu-efficiency-ki-down (4): 0x28f
io-rate-write-target (4): 0x190000
present-idle-ki-down (4): 0x2666
soc-throughput-memory-ki-up (4): 0x1999
ui-jump-threshold-fps (4): 0x1e0000
ui-volatile-threshold (4): 0x8000
name (5): "clpc"
io-rate-read-ki-up (4): 0xd
device_type (5): "clpc"
qos-weight-tier7 (4): 0
real-time-utilization-target (4): 0x8000
cpu-power-ki-up (4): 0xccc
ui-filtered-jump-threshold-fps (4): 0x140000
mem-throughput-gpu-ki-up (4): 0x1999
function-set_droop_util_ce (8): "\xa1\0\0\0CUDV"
sampling-interval-ms (4): 0xa
cpu-efficiency-min-limit (4): 0xc000
soc-throughput-gpu-ki-up (4): 0x1999
cpu-utilization-ki-up-nominal (4): 0xa0000
devices (24): "n\0\0\0\x01\0\0\0\x02\0\0\0m\0\0\0x\0\0\0y\0\0\0"
ui-cf-utilization-target (4): 0xcccc
cpu-busy-device-index (4): 0x3
soc-throughput-gpu-threshold (4): 0x28000
filter-time-constant-down (4): 0x4ccc
mem-throughput-memory-threshold (4): 0x90000
cpu-neon-density-threshold-ipc (4): 0x8000
io-rate-read-target (4): 0x640000
ui-cf-timeout-us (4): 0x1046b
cpu-utilization-ki-down-slow (4): 0x83
dynamic-soc-control (4): 0x1
ui-sa-secondary-timeout-ms (4): 0x1e0
reg (64): 0x202010000,10000; 0x202030000,10000; 0x202110000,10000; 0x202130000,10000
serialization-ki-down (4): 0xccc
framebuffer-idle-us (4): 0x5208
ui-volatile-ki-up (4): 0x51e
mem-throughput-cpu-ki-down (4): 0x147
mem-throughput-fabric-ki-down (4): 0x147
mem-f0-fast-device-index (4): 0x5
present-min-control-effort (4): 0
frame-rate-trend-ki-down-slow (4): 0x51e
cpu-int-density-threshold-ipc (4): 0x13333
present-utilization-target (4): 0x4000
ui-late-frame-deadline (4): 0x18000
ui-minimum-reset-interval-ms (4): 0xc8
mem-stall-target (4): 0x4ccc
mem-throughput-fabric-ki-up (4): 0x1999
soc-throughput-cpu-threshold (4): 0x40000
mem-throughput-memory-ki-down (4): 0x147
sim-single-core-ce-floor (4): 0x19db
AAPL,phandle (4): 0x14
mem-stall-ki-up (4): 0x8000
qos-weight-tier0 (4): 0
ui-cf-ki-down (4): 0x3333
cpu-busy-threshold-mhz (4): 0x1f40000
cpu-write-threshold-gbps (4): 0x10000
mem-throughput-gpu-ki-down (4): 0x147
nco:
AAPL,phandle (4): 0x15
compatible (23): "nco,t8010\0nco,s5l8960x\0"
pmgr-nco-page-size (4): 0x4000
clock-ids (16): 0d 01 00 00 0e 01 00 00 0f 01 00 00 10 01 00 00
device_type (4): "nco"
name (4): "nco"
reg (16): 0xe044000,14000
wdt:
name (4): "wdt"
compatible (23): "wdt,t8010\0wdt,s5l8960x\0"
clock-ids (4): 0x4
interrupt-parent (4): 0x10
reg (32): 0x102b0000,4000; 0x102b8020,4
function-panic_notify (16): "\x17\0\0\0OIPG\xce\0\0\0\0\x01\0\0"
interrupts (4): 0x4
AAPL,phandle (4): 0x16
panic-save-flag-bit (4): 0
device_type (4): "wdt"
wdt-version (4): 0x1
function-panic_halt_helper (8): "\x18\0\0\0!meM"
gpio:
#interrupt-cells (4): 2
interrupt-controller (0)
compatible (25): "gpio,t8010\0gpio,s5l8960x\0"
interrupt-parent (4): 0x10
interrupts (28): "*\0\0\0+\0\0\0,\0\0\0-\0\0\0.\0\0\0/\0\0\00\0\0\0"
#gpio-int-groups (4): 7
reg (16): 0xf100000,100000
#gpio-pins (4): 208
AAPL,phandle (4): 0x17
device_type (21): "interrupt-controller"
#address-cells (4): 0
name (5): "gpio"
mcc:
AAPL,phandle (4): 0x18
compatible (10): "mcc,t8010"
perf-state-energy-consts (80): 33 b3 21 00 ae c7 00 00 00 80 09 00 99 19 02 00 66 e6 0a 00 00 00 ba 00 00 00 b6 00 99 99 0d 00 00 00 01 00 33 33 03 00 33 33 29 00 ae c7 00 00 00 00 11 00 99 19 02 00 66 66 12 00 00 00 18 01 00 00 15 01 00 00 15 00 00 00 01 00 66 66 06 00
dcs_num_channels (4): 0x4
dramcfg-data (12): 33 00 00 00 ff 00 fe ff d9 ff 47 09
perf-state-freqs (8): 0x3180000018c
config-data (200): 10 00 00 00 01 00 00 00 5f 09 00 00 01 00 00 00 0a 00 00 00 0a 00 00 00 e8 03 00 00 a0 86 01 00 64 00 00 00 01 00 00 00 08 00 00 00 01 00 00 00 5f 09 00 00 01 00 00 00 0a 00 00 00 0a 00 00 00 e8 03 00 00 a0 86 01 00 64 00 00 00 01 00 00 00 08 00 00 00 01 00 00 00 5f 09 00 00 01 00 00 00 0a 00 00 00 0a 00 00 00 e8 03 00 00 a0 86 01 00 64 00 00 00 01 00 00 00 10 00 00 00 01 00 00 00 5f 09 00 00 01 00 00 00 0a 00 00 00 0a 00 00 00 e8 03 00 00 a0 86 01 00 64 00 00 00 01 00 00 00 10 00 00 00 01 00 00 00 5f 09 00 00 01 00 00 00 0a 00 00 00 0a 00 00 00 e8 03 00 00 a0 86 01 00 64 00 00 00 01 00 00 00
dcs0-idle-perf-num (4): 0x7
device_type (4): "mcc"
name (4): "mcc"
reg (32): 0x0,300000; 0xe0b4000,1000
error-handler:
interrupt-parent (4): 0x10
compatible (20): "error-handler,t8010"
dram-channels (4): 0x4
interrupts (12): 34 00 00 00 25 00 00 00 77 00 00 00
reg (112): 0x0,1000; 0x200000,100000; 0xd00000,13000; 0xd20000,1000; 0xd90000,1000; 0xe20000,1000; 0xe90000,1000
name (14): "error-handler"
AAPL,phandle (4): 0x19
dwi:
dwi-version (4): 0x1
lockout-us (4): 0x5
compatible (20): "dwi,t8010\0dwi,s8000\0"
interrupt-parent (4): 0x10
interrupts (4): 0x5
clock-gates (4): 0x33
reg (16): 0xe200000,4000
AAPL,phandle (4): 0x1a
str-delay (4): 0x1f40
polarity-config (4): 0x1
device_type (4): "dwi"
nclk-div (4): 0x1
name (4): "dwi"
pwm:
interrupt-parent (4): 0x10
compatible (23): "pwm,t8010\0pwm,s5l8920x\0"
AAPL,phandle (4): 0x1b
interrupts (4): 0xec
clock-gates (4): 0x45
device_type (4): "pwm"
name (4): "pwm"
reg (16): 0xa118000,1000
aes:
interrupt-parent (4): 0x10
compatible (10): "aes,s8000"
reg (32): 0xa108000,4000; 0x102d0000,4000
interrupts (4): 0xed
AAPL,phandle (4): 0x1c
clock-gates (4): 0x59
device_type (4): "aes"
name (4): "aes"
aes-version (4): 0x2
aop:
auto-boot (0)
compatible (20): "iop,t8010\0iop,s8000\0"
clock-ids (0)
interrupt-parent (4): 0x10
reg (64): 0x10800000,1c000; 0x10e00000,a0000; 0x10000500,100; 0x10000408,8
interrupts (16): 92 00 00 00 91 00 00 00 94 00 00 00 93 00 00 00
clock-gates (0)
AAPL,phandle (4): 0x1d
iop-version (4): 0x1
device_type (4): "aop"
power-gates (0)
role (4): "AOP"
name (4): "aop"
iop-aop-nub:
AAPL,phandle (4): 0x1e
compatible (16): "iop-nub,rtbuddy"
firmware-name (9): "t8010aop"
aop-target (4): 0x4
watchdog-enable (0)
coredump-enable (4): 0x20
region-size (8): 0xa0000
region-base (8): 0x210e00000
has-baseband (0)
name (12): "iop-aop-nub"
accel:
accel-sensitivity-calibration (12): "syscfg/ASCl"
AAPL,phandle (4): 0x1f
accel-range-sensitivity-cal (12): "syscfg/ARSC"
accel-orientation (12): "syscfg/ARot"
device-usage (4): 0x3
accel-interrupt-calibration (12): "syscfg/AICl"
low-temp-accel-offset (12): "syscfg/LTAO"
device_type (6): "accel"
name (6): "accel"
device-usage-page (4): 0xff00
gyro:
device_type (5): "gyro"
name (5): "gyro"
gyro-range-sensitivity-cal (12): "syscfg/GRSC"
gyro-sensitivity-calibration (12): "syscfg/GSCl"
device-usage (4): 0x9
function-force_pwm (16): "\x17\0\0\0OIPG\xa2\0\0\0\0\x01\0\0"
AAPL,phandle (4): 0x20
gyro-orientation (12): "syscfg/GRot"
gyro-interrupt-calibration (12): "syscfg/GICl"
gyro-temp-table (12): "syscfg/GYTT"
device-usage-page (4): 0xff00
compass:
name (8): "compass"
AAPL,phandle (4): 0x21
device-usage (4): 0xa
compass-orientation (16): 02 00 00 00 01 00 00 00 00 01 00 00 00 00 01 00
compass-calibration (12): "syscfg/CPAS"
device_type (8): "compass"
device-usage-page (4): 0xff00
pressure:
name (9): "pressure"
AAPL,phandle (4): 0x22
device-usage (4): 0x31
device_type (9): "pressure"
pressure-offset-calibration (12): "syscfg/SPPO"
device-usage-page (4): 0x14
spherecontrol:
AAPL,phandle (4): 0x23
device_type (14): "spherecontrol"
name (14): "spherecontrol"
isp-aop-motion-config (16): 04 80 80 10 02 00 00 00 00 00 00 80 3f 00 00 00
prox:
AAPL,phandle (4): 0x24
device-usage (4): 0x8
function-saca (12): "\xaa\0\0\0ACASxorp"
prox-calibration (12): "syscfg/PxCl"
device_type (5): "prox"
name (5): "prox"
device-usage-page (4): 0xff00
SPUApp:
AAPL,phandle (4): 0x25
spkamp-config_arc (16): 06 07 08 02 0d 00 08 f0 e8 43 00 00 30 00 00 00
spkamp-config_btmspk (16): 00 01 04 02 0d 00 08 f0 e8 40 00 00 30 01 00 00
device_type (7): "SPUApp"
name (7): "SPUApp"
spkamp-names (11): "arc\0btmspk\0"
aop-mca:
AAPL,phandle (4): 0x26
bclk-divider (4): 0
channel-bits (4): 0x1
frame-idle-len (4): 0x40
mca-master (4): 0
mclk-source (4): 0
device_type (4): "mca"
name (8): "aop-mca"
frame-channels (4): 0x1
turtle:
AAPL,phandle (4): 0x27
bt-inverse-filter-cal (12): "syscfg/SIFC"
turtle-temperature-cal (12): "syscfg/TTCL"
bt-pico-cal (12): "syscfg/SFCl"
turtle-hot-probe-cal (12): "syscfg/THPC"
orb-offset-cal (12): "syscfg/OOCl"
device_type (7): "turtle"
name (7): "turtle"
aop-button:
AAPL,phandle (4): 0x28
function-disp_min_pwr_state (8): "_\0\0\0mPDA"
function-aop_button (8): "\xa5\0\0\0DtuB"
dependency-name (12): "AppleMaggie"
device_type (11): "aop-button"
name (11): "aop-button"
aop-mesa:
AAPL,phandle (4): 0x29
device_type (5): "mesa"
function-mesa_reset (8): "F\0\0\0TSRm"
name (9): "aop-mesa"
aop-gpio:
#interrupt-cells (4): 2
event_name-mask24 (6): "audio"
interrupt-controller (0)
compatible (25): "gpio,t8010\0gpio,s5l8960x\0"
#gpio-int-groups (4): 7
interrupt-parent (4): 0x10
interrupts (28): 80 00 00 00 81 00 00 00 82 00 00 00 83 00 00 00 84 00 00 00 85 00 00 00 86 00 00 00
event_name-mask28 (6): "homer"
#gpio-pins (4): 42
no-resume-restore (4): 0x1
device_type (21): "interrupt-controller"
reg (16): 0x100f0000,4000
supported-int-groups (8): 0x600000005
wake-events (8): 0x1306140618061c06
#address-cells (4): 0
AAPL,phandle (4): 0x2a
event_name-mask19 (8): "tristar"
name (9): "aop-gpio"
pmp:
compatible (14): "iop-pmp,s8000"
clock-ids (0)
interrupt-parent (4): 0x10
reg (48): 0xe300000,20000; 0xe500000,20000; 0xe400000,10000
interrupts (16): a8 00 00 00 a7 00 00 00 aa 00 00 00 a9 00 00 00
clock-gates (8): 0x3700000036
force-timebase-sync (0)
AAPL,phandle (4): 0x2b
iop-version (4): 0x1
device_type (4): "pmp"
power-gates (8): 0x3700000036
role (4): "PMP"
name (4): "pmp"
iop-pmp-nub:
AAPL,phandle (4): 0x2c
compatible (16): "iop-nub,rtbuddy"
firmware-name (9): "t8010pmp"
sram-index (4): 0x1
coredump-enable (4): 0x20
region-size (8): 0x20000
region-base (8): 0x20e500000
name (12): "iop-pmp-nub"
power-managed (4): 0x1
sep:
compatible (20): "iop,t8010\0iop,s8000\0"
clock-ids (4): 0x130
interrupt-parent (4): 0x10
interrupts (16): 73 00 00 00 72 00 00 00 75 00 00 00 74 00 00 00
clock-gates (4): 0x7f
reg (16): 0xda00000,10000
self-power-gate (0)
AAPL,phandle (4): 0x2d
iop-version (4): 0x1
device_type (4): "sep"
role (4): "SEP"
power-gates (4): 0x7f
name (4): "sep"
iop-sep-nub:
AAPL,phandle (4): 0x2e
compatible (12): "iop-nub,sep"
function-wait_for_power_gate (20): "\x12\0\0\0tiaW\x7f\0\0\0\0\0\0\0\0\0\0\0"
function-sep_sleep_prep (12): "\x12\0\0\0plSS\x7f\0\0\0"
name (12): "iop-sep-nub"
sio:
compatible (20): "iop,t8010\0iop,s8000\0"
clock-ids (8): 0x11700000116
interrupt-parent (4): 0x10
interrupts (16): d3 00 00 00 d2 00 00 00 d5 00 00 00 d4 00 00 00
clock-gates (8): 0x40000005a
force-timebase-sync (0)
reg (16): 0xae00000,10000
AAPL,phandle (4): 0x2f
iop-version (4): 0x1
device_type (4): "sio"
power-gates (4): 0x5a
role (4): "SIO"
ignore-gating (0)
name (4): "sio"
iop-sio-nub:
compatible (12): "iop-nub,sio"
name (12): "iop-sio-nub"
AAPL,phandle (4): 0x30
sio-dma:
compatible (19): "sio-dma-controller"
device_type (8): "sio-dma"
name (8): "sio-dma"
AAPL,phandle (4): 0x31
uart0:
compatible (15): "uart-1,samsung"
clock-ids (8): 0x400000117
interrupt-parent (4): 0x10
interrupts (4): 0xda
reg (16): 0xa0c0000,4000
clock-gates (4): 0x50
AAPL,phandle (4): 0x32
device_type (5): "uart"
no-flow-control (0)
function-tx (16): "\x17\0\0\0OIPG\xc0\0\0\0\x02\x01\0\0"
uart-version (4): 0x1
boot-console (0)
name (6): "uart0"
debug-console:
name (14): "debug-console"
AAPL,phandle (4): 0x33
uart1:
compatible (15): "uart-1,samsung"
clock-ids (8): 0x400000117
interrupt-parent (4): 0x10
interrupts (4): 0xdb
dma-channels (64): "?\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
clock-gates (4): 0x51
reg (16): 0xa0c4000,4000
AAPL,phandle (4): 0x34
device_type (5): "uart"
function-rts (16): "\x17\0\0\0OIPGb\0\0\0\x02\0\0\0"
function-tx (16): "\x17\0\0\0OIPG`\0\0\0\x02\x01\0\0"
dma-types (8): 0x400000002
dma-parent (4): 0x31
uart-version (4): 0x1
name (6): "uart1"
bluetooth:
name (10): "bluetooth"
function-bt_wake (16): "\x17\0\0\0OIPGW\0\0\0\x01\x01\0\0"
compatible (14): "bluetooth,n88"
transport-speed (4): 0x2dc6c0
AAPL,phandle (4): 0x35
bluetooth-tx-calibration (16): "syscfg/BTTx/320"
product-id (4): 0x12a0
device_type (10): "bluetooth"
coex (4): 0x2
supported-profiles (4): 0x2ffb
vendor-id (4): 0x5ac
function-power_enable (16): "M\0\0\0OIPG\x08\0\0\0\x01\x01\0\0"
local-mac-address (38): "macaddr/btaddr,syscfg/BMac/6,zeroes/6"
transport-encoding (4): 0x3
voice-record (0)
bluetooth-rx-calibration (17): "syscfg/BTRx/0xce"
bluetooth-taurus-calibration (12): "syscfg/BCAL"
uart3:
compatible (15): "uart-1,samsung"
clock-ids (8): 0x400000117
interrupt-parent (4): 0x10
interrupts (4): 0xdd
dma-channels (64): "C\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0B\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
clock-gates (4): 0x53
reg (16): 0xa0cc000,4000
AAPL,phandle (4): 0x36
device_type (5): "uart"
function-rts (16): "\x17\0\0\0OIPG\x88\0\0\0\x02\0\0\0"
function-tx (16): "\x17\0\0\0OIPG\x86\0\0\0\x02\x01\0\0"
dma-types (8): 0x400000002
dma-parent (4): 0x31
uart-version (4): 0x1
name (6): "uart3"
stockholm:
function-device_wake (16): "\x17\0\0\0OIPG\x8b\0\0\0\x01\x01\0\0"
calibration (12): "syscfg/NFCl"
typef-phase-offset (4): 0x1e
antenna-type (4): 0x1
AAPL,phandle (4): 0x37
function-wake_stockholm (12): "M\0\0\0TATS\xb4\x01\0\0"
fdt-threshold (4): 0x70
function-icf_download_request (16): "\x17\0\0\0OIPG\xab\0\0\0\x01\x01\0\0"
phase-derivation (4): 0xb4002d
fdt-adjustment (4): 0
name (10): "stockholm"
dynamic-impedance-delta (4): 0
supports-nfc-reader-mode (0)
clock-config (4): 0x1
gc-rssi-threshold (4): 0x31
nfcld-threshold (4): 0x814
tx-ldo-config (4): 0x1
derived-phase-fdt (4): 0x70006d
required-gpios (72): "support_wake_stockholm\0support_icf_download_request\0support_device_wake\0"
function-enable (16): "M\0\0\0OIPG\x0f\0\0\0\x01\x01\0\0"
device_type (10): "stockholm"
function-download_request (16): "\x17\0\0\0OIPG\x8e\0\0\0\x01\x01\0\0"
nfcWithRadio (4): 0x1
uart4:
compatible (15): "uart-1,samsung"
clock-ids (8): 0x400000117
interrupt-parent (4): 0x10
interrupts (4): 0xde
dma-channels (64): "E\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\0\0\0\0\0\0\0\0\0\0\0$\0\0\0\x12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
clock-gates (4): 0x54
reg (16): 0xa0d0000,4000
AAPL,phandle (4): 0x38
device_type (5): "uart"
function-rts (16): "\x17\0\0\0OIPGf\0\0\0\x02\0\0\0"
function-tx (16): "\x17\0\0\0OIPGd\0\0\0\x02\x01\0\0"
dma-types (8): 0x400000002
dma-parent (4): 0x31
uart-version (4): 0x1
name (6): "uart4"
wlan:
wlan.fast_enterprise_nw.enabled (4): 0x1
bcom.roam.profiles (528): 0c 00 f6 ff b5 ff 02 00 b8 0b b4 00 02 00 b0 04 14 00 bf ff 32 00 10 00 b5 ff 80 ff 02 00 5a 00 1e 00 01 00 1e 00 0c 00 bf ff 32 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 b5 ff 80 ff 02 00 5a 00 1e 00 01 00 1e 00 0c 00 80 ff 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 14 00 b5 ff 80 ff 02 00 5a 00 1e 00 02 00 b4 00 0c 00 bf ff 32 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 14 00 b5 ff 80 ff 02 00 5a 00 1e 00 02 00 b4 00 0c 00 80 ff 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0c 00 f6 ff b5 ff 02 00 b8 0b b4 00 02 00 b0 04 14 00 bf ff 32 00 10 00 b5 ff 80 ff 02 00 5a 00 1e 00 02 00 b4 00 0c 00 bf ff 32 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 b5 ff 80 ff 02 00 5a 00 1e 00 02 00 b4 00 0c 00 80 ff 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0c 00 f6 ff ce ff 02 00 b0 04 b4 00 02 00 58 02 14 00 bf ff 32 00 0c 00 ce ff ba ff 02 00 b0 04 b4 00 02 00 68 01 0f 00 bf ff 32 00 10 00 ba ff 80 ff 02 00 5a 00 1e 00 01 00 1e 00 0c 00 bf ff 32 00 10 00 ba ff 80 ff 02 00 5a 00 1e 00 01 00 1e 00 0c 00 80 ff 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
audio-protection-driver (18): "AppleCS42L71Audio"
module-instance (9): "kristoff"
bcom.roam.enterprise (20): 01 00 5a 00 1e 00 07 00 02 00 00 00 ba ff 0c 00 ba ff 0c 00
wlan.background-scan-cache (4): 0x1
wifi-antenna-sku-info (12): "syscfg/WSKU"
wlan.enhancedlocale.enabled (4): 0
bcom.ps.default (12): 03 00 3c 00 00 00 01 00 a0 0f 00 00
wlan.tx-power-cap-ctrl (8): 0x20202020201
wlan.bss.5GHz-preference (4): 0x1effbf
wlan.enhancedTrgDisc (4): 0x2
bcom.roam.default (20): 01 00 5a 00 1e 00 07 00 02 00 00 00 b5 ff 14 00 b5 ff 0a 00
bcom.oscar.profilestates (12): 00 00 10 00 20 00 30 00 04 05 00 00
wlan.autocountry.enabled (4): 0
AAPL,phandle (4): 0x39
name (5): "wlan"
wifi-calibration-msf (29): "syscfg/WCAL/1780,zeroes/1780"
function-reg_on (16): "M\0\0\0OIPG\x0a\0\0\0\x01\x01\0\0"
wlan.enterprise.params (4): 0x7
wlan.mimo_ps.enabled (4): 0x1
device_type (5): "wlan"
compatible (42): "wlan-pcie-uart,bcm4350\0wlan-pcie-uart,bcm\0"
local-mac-address (40): "macaddr/wifiaddr,syscfg/WMac/6,zeroes/6"
wlan.dfrts (8): 0x5000200c8003c
function-pcie_port_control (12): "\x8a\0\0\0CtrP\x8f\0\0\0"
wlan.awdl.params (8): 0
bcom.ap.80211nenabled (4): 0x1
bcom.btc.params (32): 06 00 00 00 0f 00 00 00 08 00 00 00 c8 af 00 00 09 00 00 00 98 3a 00 00 0a 00 00 00 20 4e 00 00
wlan.tethering.enabled (4): 0x1
bcom.ps.realtime (12): 03 00 c8 00 00 00 01 00 a0 0f 00 00
wlan.ocl.enabled (4): 0x1
wlan.dfsproxy.enabled (4): 0x1
wlan.autojoin_ps.enabled (4): 0x1
uart5:
compatible (15): "uart-1,samsung"
clock-ids (8): 0x400000117
interrupt-parent (4): 0x10
interrupts (4): 0xdf
reg (16): 0xa0d4000,4000
clock-gates (4): 0x55
AAPL,phandle (4): 0x3a
device_type (5): "uart"
no-flow-control (0)
function-tx (16): "\x17\0\0\0OIPG\xad\0\0\0\x02\x01\0\0"
uart-version (4): 0x1
name (6): "uart5"
gas-gauge:
battery-id-block (4): 0x2
compatible (32): "gas-gauge,bq27540\0gas-gauge,hdq\0"
critical-flag-voltage (4): 0xc80
critical-flag-delay (4): 0x1e
function-log_shutdown_rsn2 (12): "M\0\0\0Umar\x01\00\x02"
function-log_shutdown_dlog (12): "M\0\0\0Umar\x01\0(\x01"
function-battery_swi (16): "\x17\0\0\0OIPG\xad\0\0\0\x02\x01\0\0"
function-log_shutdown_rsn (12): "M\0\0\0Umar\x01\0@\0"
device_type (10): "gas-gauge"
gauge-enable-interrupts (0)
AAPL,phandle (4): 0x3b
function-battery_swi_request (8): "N\0\0\0mQDH"
update-sample-config (4): 0x17
enable-upo-counter (0)
name (10): "gas-gauge"
uart6:
compatible (15): "uart-1,samsung"
clock-ids (8): 0x400000117
interrupt-parent (4): 0x10
interrupts (4): 0xe0
reg (16): 0xa0d8000,4000
clock-gates (4): 0x56
AAPL,phandle (4): 0x3c
device_type (5): "uart"
no-flow-control (0)
function-tx (16): "\x17\0\0\0OIPG\xc2\0\0\0\x02\x01\0\0"
uart-version (4): 0x1
name (6): "uart6"
iap:
function-dock_parent (8): "\xa6\0\0\0Pcca"
name (4): "iap"
AAPL,phandle (4): 0x3d
uart7:
compatible (15): "uart-1,samsung"
clock-ids (8): 0x400000117
interrupt-parent (4): 0x10