forked from linuxhw/ACPI
-
Notifications
You must be signed in to change notification settings - Fork 3
/
A658B5B6E0CB
17156 lines (15590 loc) · 565 KB
/
A658B5B6E0CB
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
Intel ACPI Component Architecture
ACPI Binary Table Extraction Utility version 20141107-64 [Apr 6 2015]
Copyright (c) 2000 - 2014 Intel Corporation
Signature Length Revision OemId OemTableId OemRevision CompilerId CompilerRevision
RSDP "INSYDE"
RSDT 0x0000007C 0x01 "INSYDE" "INSYDE " 0x00000003 " " 0x01000013
XSDT 0x000000D4 0x01 "INSYDE" "INSYDE " 0x00000003 " " 0x01000013
DSDT 0x0000B03A 0x02 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
FACS 0x00000040
FACP 0x0000010C 0x05 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
UEFI 0x00000236 0x01 "INSYDE" "INSYDE " 0x00000001 "ACPI" 0x00040000
TCPA 0x00000032 0x02 "INSYDE" "INSYDE " 0x00000000 "ACPI" 0x00040000
UEFI 0x00000042 0x01 "INSYDE" "INSYDE " 0x00000000 "ACPI" 0x00040000
DBG2 0x00000072 0x00 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
HPET 0x00000038 0x01 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
LPIT 0x00000104 0x01 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
APIC 0x0000006C 0x03 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
MCFG 0x0000003C 0x01 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
SLIC 0x00000176 0x01 "INSYDE" "INSYDE " 0x00000003 "ACPI" 0x00040000
SSDT 0x00000603 0x01 "INSYDE" "CpuDptf " 0x00000003 "ACPI" 0x00040000
SSDT 0x00001953 0x01 "INSYDE" "DptfTab " 0x00000003 "ACPI" 0x00040000
SSDT 0x00000058 0x01 "INSYDE" "LowPwrM " 0x00000003 "ACPI" 0x00040000
SSDT 0x000000FF 0x01 "INSYDE" "SoCDptf " 0x00000003 "ACPI" 0x00040000
SSDT 0x0000043A 0x01 "INSYDE" "Tpm2Tabl" 0x00001000 "ACPI" 0x00040000
TPM2 0x00000034 0x03 "INSYDE" "INSYDE " 0x00000000 "ACPI" 0x00040000
SSDT 0x00000763 0x01 "INSYDE" "CpuPm " 0x00003000 "ACPI" 0x00040000
SSDT 0x00000290 0x01 "INSYDE" "Cpu0Tst " 0x00003000 "ACPI" 0x00040000
SSDT 0x0000017A 0x01 "INSYDE" "ApTst " 0x00003000 "ACPI" 0x00040000
FPDT 0x00000044 0x01 "INSYDE" "INSYDE " 0x00000002 "ACPI" 0x00040000
CSRT 0x0000014C 0x00 "INSYDE" "INSYDE " 0x00000005 "ACPI" 0x00040000
BGRT 0x00000038 0x01 "INSYDE" "INSYDE " 0x00000001 "ACPI" 0x00040000
SSDT 0x00000338 0x01 "PmRef " "Cpu0Ist " 0x00003000 "INTL" 0x20130117
SSDT 0x00000433 0x01 "PmRef " "Cpu0Cst " 0x00003001 "INTL" 0x20130117
SSDT 0x0000015F 0x01 "PmRef " "ApIst " 0x00003000 "INTL" 0x20130117
SSDT 0x0000008D 0x01 "PmRef " "ApCst " 0x00003000 "INTL" 0x20130117
Found 31 ACPI tables
APIC
----
[000h 0000 4] Signature : "APIC" [Multiple APIC Description Table (MADT)]
[004h 0004 4] Table Length : 0000006C
[008h 0008 1] Revision : 03
[009h 0009 1] Checksum : 99
[00Ah 0010 6] Oem ID : "INSYDE"
[010h 0016 8] Oem Table ID : "INSYDE"
[018h 0024 4] Oem Revision : 00000003
[01Ch 0028 4] Asl Compiler ID : "ACPI"
[020h 0032 4] Asl Compiler Revision : 00040000
[024h 0036 4] Local Apic Address : FEE00000
[028h 0040 4] Flags (decoded below) : 00000001
PC-AT Compatibility : 1
[02Ch 0044 1] Subtable Type : 00 [Processor Local APIC]
[02Dh 0045 1] Length : 08
[02Eh 0046 1] Processor ID : 01
[02Fh 0047 1] Local Apic ID : 00
[030h 0048 4] Flags (decoded below) : 00000001
Processor Enabled : 1
[034h 0052 1] Subtable Type : 00 [Processor Local APIC]
[035h 0053 1] Length : 08
[036h 0054 1] Processor ID : 02
[037h 0055 1] Local Apic ID : 02
[038h 0056 4] Flags (decoded below) : 00000001
Processor Enabled : 1
[03Ch 0060 1] Subtable Type : 00 [Processor Local APIC]
[03Dh 0061 1] Length : 08
[03Eh 0062 1] Processor ID : 03
[03Fh 0063 1] Local Apic ID : 04
[040h 0064 4] Flags (decoded below) : 00000001
Processor Enabled : 1
[044h 0068 1] Subtable Type : 00 [Processor Local APIC]
[045h 0069 1] Length : 08
[046h 0070 1] Processor ID : 04
[047h 0071 1] Local Apic ID : 06
[048h 0072 4] Flags (decoded below) : 00000001
Processor Enabled : 1
[04Ch 0076 1] Subtable Type : 01 [I/O APIC]
[04Dh 0077 1] Length : 0C
[04Eh 0078 1] I/O Apic ID : 02
[04Fh 0079 1] Reserved : 00
[050h 0080 4] Address : FEC00000
[054h 0084 4] Interrupt : 00000000
[058h 0088 1] Subtable Type : 02 [Interrupt Source Override]
[059h 0089 1] Length : 0A
[05Ah 0090 1] Bus : 00
[05Bh 0091 1] Source : 00
[05Ch 0092 4] Interrupt : 00000002
[060h 0096 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[062h 0098 1] Subtable Type : 02 [Interrupt Source Override]
[063h 0099 1] Length : 0A
[064h 0100 1] Bus : 00
[065h 0101 1] Source : 09
[066h 0102 4] Interrupt : 00000009
[06Ah 0106 2] Flags (decoded below) : 000D
Polarity : 1
Trigger Mode : 3
Raw Table Data: Length 108 (0x6C)
0000: 41 50 49 43 6C 00 00 00 03 99 49 4E 53 59 44 45 APICl.....INSYDE
0010: 49 4E 53 59 44 45 00 00 03 00 00 00 41 43 50 49 INSYDE......ACPI
0020: 00 00 04 00 00 00 E0 FE 01 00 00 00 00 08 01 00 ................
0030: 01 00 00 00 00 08 02 02 01 00 00 00 00 08 03 04 ................
0040: 01 00 00 00 00 08 04 06 01 00 00 00 01 0C 02 00 ................
0050: 00 00 C0 FE 00 00 00 00 02 0A 00 00 02 00 00 00 ................
0060: 00 00 02 0A 00 09 09 00 00 00 0D 00 ............
BGRT
----
[000h 0000 4] Signature : "BGRT" [Boot Graphics Resource Table]
[004h 0004 4] Table Length : 00000038
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : E0
[00Ah 0010 6] Oem ID : "INSYDE"
[010h 0016 8] Oem Table ID : "INSYDE"
[018h 0024 4] Oem Revision : 00000001
[01Ch 0028 4] Asl Compiler ID : "ACPI"
[020h 0032 4] Asl Compiler Revision : 00040000
[024h 0036 2] Version : 0001
[026h 0038 1] Status : 00
[027h 0039 1] Image Type : 00
[028h 0040 8] Image Address : 00000000773C5000
[030h 0048 4] Image OffsetX : 0000016A
[034h 0052 4] Image OffsetY : 0000008F
Raw Table Data: Length 56 (0x38)
0000: 42 47 52 54 38 00 00 00 01 E0 49 4E 53 59 44 45 BGRT8.....INSYDE
0010: 49 4E 53 59 44 45 00 00 01 00 00 00 41 43 50 49 INSYDE......ACPI
0020: 00 00 04 00 01 00 00 00 00 50 3C 77 00 00 00 00 .........P<w....
0030: 6A 01 00 00 8F 00 00 00 j.......
CSRT
----
[000h 0000 4] Signature : "CSRT" [Core System Resource Table]
[004h 0004 4] Table Length : 0000014C
[008h 0008 1] Revision : 00
[009h 0009 1] Checksum : E9
[00Ah 0010 6] Oem ID : "INSYDE"
[010h 0016 8] Oem Table ID : "INSYDE"
[018h 0024 4] Oem Revision : 00000005
[01Ch 0028 4] Asl Compiler ID : "ACPI"
[020h 0032 4] Asl Compiler Revision : 00040000
[024h 0036 4] Length : 00000088
[028h 0040 4] Vendor ID : 4C544E49
[02Ch 0044 4] Subvendor ID : 00000000
[030h 0048 2] Device ID : 9C60
[032h 0050 2] Subdevice ID : 0000
[034h 0052 2] Revision : 0002
[036h 0054 2] Reserved : 0000
[038h 0056 4] Shared Info Length : 0000001C
[03Ch 0060 2] Major Version : 0001
[03Eh 0062 2] Minor Version : 0000
[040h 0064 4] MMIO Base Address Low : 90918000
[044h 0068 4] MMIO Base Address High : 00000000
[048h 0072 4] GSI Interrupt : 0000002A
[04Ch 0076 1] Interrupt Polarity : 02
[04Dh 0077 1] Interrupt Mode : 00
[04Eh 0078 1] Num Channels : 06
[04Fh 0079 1] DMA Address Width : 20
[050h 0080 2] Base Request Line : 0000
[052h 0082 2] Num Handshake Signals : 0010
[054h 0084 4] Max Block Size : 00000FFF
[058h 0088 4] Length : 0000000C
[05Ch 0092 2] Type : 0003
[05Eh 0094 2] Subtype : 0001
[060h 0096 4] UID : 20495053
[064h 0100 4] Length : 0000000C
[068h 0104 2] Type : 0003
[06Ah 0106 2] Subtype : 0000
[06Ch 0108 4] UID : 30414843
[070h 0112 4] Length : 0000000C
[074h 0116 2] Type : 0003
[076h 0118 2] Subtype : 0000
[078h 0120 4] UID : 31414843
[07Ch 0124 4] Length : 0000000C
[080h 0128 2] Type : 0003
[082h 0130 2] Subtype : 0000
[084h 0132 4] UID : 32414843
[088h 0136 4] Length : 0000000C
[08Ch 0140 2] Type : 0003
[08Eh 0142 2] Subtype : 0000
[090h 0144 4] UID : 33414843
[094h 0148 4] Length : 0000000C
[098h 0152 2] Type : 0003
[09Ah 0154 2] Subtype : 0000
[09Ch 0156 4] UID : 34414843
[0A0h 0160 4] Length : 0000000C
[0A4h 0164 2] Type : 0003
[0A6h 0166 2] Subtype : 0000
[0A8h 0168 4] UID : 35414843
[0ACh 0172 4] Length : 000000A0
[0B0h 0176 4] Vendor ID : 4C544E49
[0B4h 0180 4] Subvendor ID : 00000000
[0B8h 0184 2] Device ID : 9C60
[0BAh 0186 2] Subdevice ID : 0000
[0BCh 0188 2] Revision : 0003
[0BEh 0190 2] Reserved : 0000
[0C0h 0192 4] Shared Info Length : 0000001C
[0C4h 0196 2] Major Version : 0001
[0C6h 0198 2] Minor Version : 0000
[0C8h 0200 4] MMIO Base Address Low : 90908000
[0CCh 0204 4] MMIO Base Address High : 00000000
[0D0h 0208 4] GSI Interrupt : 0000002B
[0D4h 0212 1] Interrupt Polarity : 02
[0D5h 0213 1] Interrupt Mode : 00
[0D6h 0214 1] Num Channels : 08
[0D7h 0215 1] DMA Address Width : 20
[0D8h 0216 2] Base Request Line : 0010
[0DAh 0218 2] Num Handshake Signals : 0010
[0DCh 0220 4] Max Block Size : 00000FFF
[0E0h 0224 4] Length : 0000000C
[0E4h 0228 2] Type : 0003
[0E6h 0230 2] Subtype : 0001
[0E8h 0232 4] UID : 20433249
[0ECh 0236 4] Length : 0000000C
[0F0h 0240 2] Type : 0003
[0F2h 0242 2] Subtype : 0000
[0F4h 0244 4] UID : 30414843
[0F8h 0248 4] Length : 0000000C
[0FCh 0252 2] Type : 0003
[0FEh 0254 2] Subtype : 0000
[100h 0256 4] UID : 31414843
[104h 0260 4] Length : 0000000C
[108h 0264 2] Type : 0003
[10Ah 0266 2] Subtype : 0000
[10Ch 0268 4] UID : 32414843
[110h 0272 4] Length : 0000000C
[114h 0276 2] Type : 0003
[116h 0278 2] Subtype : 0000
[118h 0280 4] UID : 33414843
[11Ch 0284 4] Length : 0000000C
[120h 0288 2] Type : 0003
[122h 0290 2] Subtype : 0000
[124h 0292 4] UID : 34414843
[128h 0296 4] Length : 0000000C
[12Ch 0300 2] Type : 0003
[12Eh 0302 2] Subtype : 0000
[130h 0304 4] UID : 35414843
[134h 0308 4] Length : 0000000C
[138h 0312 2] Type : 0003
[13Ah 0314 2] Subtype : 0000
[13Ch 0316 4] UID : 36414843
[140h 0320 4] Length : 0000000C
[144h 0324 2] Type : 0003
[146h 0326 2] Subtype : 0000
[148h 0328 4] UID : 37414843
Raw Table Data: Length 332 (0x14C)
0000: 43 53 52 54 4C 01 00 00 00 E9 49 4E 53 59 44 45 CSRTL.....INSYDE
0010: 49 4E 53 59 44 45 00 00 05 00 00 00 41 43 50 49 INSYDE......ACPI
0020: 00 00 04 00 88 00 00 00 49 4E 54 4C 00 00 00 00 ........INTL....
0030: 60 9C 00 00 02 00 00 00 1C 00 00 00 01 00 00 00 `...............
0040: 00 80 91 90 00 00 00 00 2A 00 00 00 02 00 06 20 ........*......
0050: 00 00 10 00 FF 0F 00 00 0C 00 00 00 03 00 01 00 ................
0060: 53 50 49 20 0C 00 00 00 03 00 00 00 43 48 41 30 SPI ........CHA0
0070: 0C 00 00 00 03 00 00 00 43 48 41 31 0C 00 00 00 ........CHA1....
0080: 03 00 00 00 43 48 41 32 0C 00 00 00 03 00 00 00 ....CHA2........
0090: 43 48 41 33 0C 00 00 00 03 00 00 00 43 48 41 34 CHA3........CHA4
00A0: 0C 00 00 00 03 00 00 00 43 48 41 35 A0 00 00 00 ........CHA5....
00B0: 49 4E 54 4C 00 00 00 00 60 9C 00 00 03 00 00 00 INTL....`.......
00C0: 1C 00 00 00 01 00 00 00 00 80 90 90 00 00 00 00 ................
00D0: 2B 00 00 00 02 00 08 20 10 00 10 00 FF 0F 00 00 +...... ........
00E0: 0C 00 00 00 03 00 01 00 49 32 43 20 0C 00 00 00 ........I2C ....
00F0: 03 00 00 00 43 48 41 30 0C 00 00 00 03 00 00 00 ....CHA0........
0100: 43 48 41 31 0C 00 00 00 03 00 00 00 43 48 41 32 CHA1........CHA2
0110: 0C 00 00 00 03 00 00 00 43 48 41 33 0C 00 00 00 ........CHA3....
0120: 03 00 00 00 43 48 41 34 0C 00 00 00 03 00 00 00 ....CHA4........
0130: 43 48 41 35 0C 00 00 00 03 00 00 00 43 48 41 36 CHA5........CHA6
0140: 0C 00 00 00 03 00 00 00 43 48 41 37 ........CHA7
DBG2
----
[000h 0000 4] Signature : "DBG2" [Debug Port table type 2]
[004h 0004 4] Table Length : 00000072
[008h 0008 1] Revision : 00
[009h 0009 1] Checksum : 27
[00Ah 0010 6] Oem ID : "INSYDE"
[010h 0016 8] Oem Table ID : "INSYDE"
[018h 0024 4] Oem Revision : 00000003
[01Ch 0028 4] Asl Compiler ID : "ACPI"
[020h 0032 4] Asl Compiler Revision : 00040000
[024h 0036 4] Info Offset : 0000002C
[028h 0040 4] Info Count : 00000001
[02Ch 0044 1] Revision : 00
[02Dh 0045 2] Length : 0046
[02Fh 0047 1] Register Count : 01
[030h 0048 2] Namepath Length : 0020
[032h 0050 2] Namepath Offset : 0026
[034h 0052 2] OEM Data Length : 0000 [Optional field not present]
[036h 0054 2] OEM Data Offset : 0000 [Optional field not present]
[038h 0056 2] Port Type : 8000
[03Ah 0058 2] Port Subtype : 0000
[03Ch 0060 2] Reserved : 0000
[03Eh 0062 2] Base Address Offset : 0016
[040h 0064 2] Address Size Offset : 0022
[042h 0066 12] Base Address Register : [Generic Address Structure]
[042h 0066 1] Space ID : 01 [SystemIO]
[043h 0067 1] Bit Width : 08
[044h 0068 1] Bit Offset : 00
[045h 0069 1] Encoded Access Width : 00 [Undefined/Legacy]
[046h 0070 8] Address : 00000000000003F8
[04Eh 0078 4] Address Size : 00000008
[052h 0082 2] Namepath : "."
Raw Table Data: Length 114 (0x72)
0000: 44 42 47 32 72 00 00 00 00 27 49 4E 53 59 44 45 DBG2r....'INSYDE
0010: 49 4E 53 59 44 45 00 00 03 00 00 00 41 43 50 49 INSYDE......ACPI
0020: 00 00 04 00 2C 00 00 00 01 00 00 00 00 46 00 01 ....,........F..
0030: 20 00 26 00 00 00 00 00 00 80 00 00 00 00 16 00 .&.............
0040: 22 00 01 08 00 00 F8 03 00 00 00 00 00 00 08 00 "...............
0050: 00 00 2E 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
0070: 00 00 ..
DSDT
----
DefinitionBlock ("dsdt.aml", "DSDT", 2, "INSYDE", "INSYDE", 0x00000003)
{
/*
* iASL Warning: There were 2 external control methods found during
* disassembly, but additional ACPI tables to resolve these externals
* were not specified. This resulting disassembler output file may not
* compile because the disassembler did not know how many arguments
* to assign to these methods. To specify the tables needed to resolve
* external control method references, the -e option can be used to
* specify the filenames. Example iASL invocations:
* iasl -e ssdt1.aml ssdt2.aml ssdt3.aml -d dsdt.aml
* iasl -e dsdt.aml ssdt2.aml -d ssdt1.aml
* iasl -e ssdt*.aml -d dsdt.aml
*
* In addition, the -fe option can be used to specify a file containing
* control method external declarations with the associated method
* argument counts. Each line of the file must be of the form:
* External (<method pathname>, MethodObj, <argument count>)
* Invocation:
* iasl -fe refs.txt -d dsdt.aml
*
* The following methods were unresolved and many not compile properly
* because the disassembler had to guess at the number of arguments
* required for each:
*/
External (_SB_.PCI0.LPCB.TPM_.PTS_, MethodObj) // Warning: Unresolved method, guessing 1 arguments
External (NDN3, MethodObj) // Warning: Unresolved method, guessing 1 arguments
External (_PR_.CPU0._PPC, UnknownObj)
External (CFGD, UnknownObj)
External (DPTF, UnknownObj)
External (PDC0, UnknownObj)
External (PDC1, UnknownObj)
External (PDC2, UnknownObj)
External (PDC3, UnknownObj)
External (STR3, UnknownObj)
External (TCHG, UnknownObj)
Method (ADBG, 1, Serialized)
{
Return (Zero)
}
Name (SP3O, 0x2E)
Name (IO4B, 0x0A20)
Name (IO4L, 0x20)
Name (SP1O, 0x4E)
Name (PMBS, 0x0400)
Name (SMIP, 0xB2)
Name (GPBS, 0x0500)
Name (APCB, 0xFEC00000)
Name (APCL, 0x1000)
Name (PFDR, 0xFED03034)
Name (PMCB, 0xFED03000)
Name (PCLK, 0xFED03060)
Name (PUNB, 0xFED05000)
Name (IBAS, 0xFED08000)
Name (SRCB, 0xFED1C000)
Name (SRCL, 0x1000)
Name (HPTB, 0xFED00000)
Name (MCHB, 0xFED14000)
Name (MCHL, 0x4000)
Name (EGPB, 0xFED19000)
Name (EGPL, 0x1000)
Name (DMIB, 0xFED18000)
Name (DMIL, 0x1000)
Name (IFPB, 0xFED14000)
Name (IFPL, 0x1000)
Name (PEBS, 0xE0000000)
Name (PELN, 0x10000000)
Name (FMBL, One)
Name (FDTP, 0x02)
Name (GCDD, One)
Name (DSTA, 0x0A)
Name (DSLO, 0x02)
Name (DSLC, 0x03)
Name (PITS, 0x10)
Name (SBCS, 0x12)
Name (SALS, 0x13)
Name (LSSS, 0x2A)
Name (PSSS, 0x67)
Name (SOOT, 0x35)
Name (ESCS, 0x6A)
Name (SDGV, 0x1C)
Name (ACPH, 0xDE)
Name (ASSB, Zero)
Name (AOTB, Zero)
Name (AAXB, Zero)
Name (PEHP, One)
Name (SHPC, Zero)
Name (PEPM, One)
Name (PEER, One)
Name (PECS, One)
Name (ITKE, Zero)
Name (FTBL, 0x04)
OperationRegion (GNVS, SystemMemory, 0x7925BA98, 0x033A)
Field (GNVS, AnyAcc, Lock, Preserve)
{
OSYS, 16,
SMIF, 8,
PRM0, 8,
PRM1, 8,
SCIF, 8,
PRM2, 8,
PRM3, 8,
LCKF, 8,
PRM4, 8,
PRM5, 8,
P80D, 32,
LIDS, 8,
PWRS, 8,
DBGS, 8,
THOF, 8,
Offset (0x15),
PSVT, 8,
TC1V, 8,
TC2V, 8,
TSPV, 8,
CRTT, 8,
DTSE, 8,
DTS1, 8,
DTS2, 8,
DTSF, 8,
BNUM, 8,
B0SC, 8,
B1SC, 8,
B2SC, 8,
B0SS, 8,
B1SS, 8,
B2SS, 8,
Offset (0x28),
APIC, 8,
MPEN, 8,
PCP0, 8,
PCP1, 8,
PPCM, 8,
PPMF, 32,
Offset (0x32),
NATP, 8,
CMAP, 8,
CMBP, 8,
LPTP, 8,
FDCP, 8,
CMCP, 8,
CIRP, 8,
W381, 8,
NPCE, 8,
Offset (0x3C),
IGDS, 8,
TLST, 8,
CADL, 8,
PADL, 8,
CSTE, 16,
NSTE, 16,
SSTE, 16,
NDID, 8,
DID1, 32,
DID2, 32,
DID3, 32,
DID4, 32,
DID5, 32,
KSV0, 32,
KSV1, 8,
Offset (0x67),
BLCS, 8,
BRTL, 8,
ALSE, 8,
ALAF, 8,
LLOW, 8,
LHIH, 8,
Offset (0x6E),
EMAE, 8,
EMAP, 16,
EMAL, 16,
Offset (0x74),
MEFE, 8,
DSTS, 8,
Offset (0x78),
TPMP, 8,
TPME, 8,
MORD, 8,
TCGP, 8,
PPRP, 32,
PPRQ, 8,
LPPR, 8,
GTF0, 56,
GTF2, 56,
IDEM, 8,
GTF1, 56,
Offset (0xA0),
Offset (0xAA),
ASLB, 32,
IBTT, 8,
IPAT, 8,
ITVF, 8,
ITVM, 8,
IPSC, 8,
IBLC, 8,
IBIA, 8,
ISSC, 8,
I409, 8,
I509, 8,
I609, 8,
I709, 8,
IDMM, 8,
IDMS, 8,
IF1E, 8,
HVCO, 8,
NXD1, 32,
NXD2, 32,
NXD3, 32,
NXD4, 32,
NXD5, 32,
NXD6, 32,
NXD7, 32,
NXD8, 32,
GSMI, 8,
PAVP, 8,
Offset (0xE1),
OSCC, 8,
NEXP, 8,
Offset (0xE4),
Offset (0xE5),
Offset (0xEB),
DSEN, 8,
ECON, 8,
GPIC, 8,
CTYP, 8,
L01C, 8,
VFN0, 8,
VFN1, 8,
Offset (0x100),
NVGA, 32,
NVHA, 32,
AMDA, 32,
DID6, 32,
DID7, 32,
DID8, 32,
Offset (0x11C),
Offset (0x120),
Offset (0x124),
Offset (0x128),
Offset (0x12C),
Offset (0x130),
Offset (0x134),
Offset (0x138),
Offset (0x13C),
Offset (0x140),
Offset (0x144),
Offset (0x148),
Offset (0x14C),
USEL, 8,
PU1E, 8,
PU2E, 8,
LPE0, 32,
LPE1, 32,
LPE2, 32,
ACST, 8,
BTST, 8,
PFLV, 8,
Offset (0x15F),
AOAC, 8,
XHCI, 8,
PMEN, 8,
LPEE, 8,
ISPA, 32,
ISPD, 8,
PCIB, 32,
PCIT, 32,
D10A, 32,
D10L, 32,
D11A, 32,
D11L, 32,
P10A, 32,
P10L, 32,
P11A, 32,
P11L, 32,
P20A, 32,
P20L, 32,
P21A, 32,
P21L, 32,
U10A, 32,
U10L, 32,
U11A, 32,
U11L, 32,
U20A, 32,
U20L, 32,
U21A, 32,
U21L, 32,
SP0A, 32,
SP0L, 32,
SP1A, 32,
SP1L, 32,
D20A, 32,
D20L, 32,
D21A, 32,
D21L, 32,
I10A, 32,
I10L, 32,
I11A, 32,
I11L, 32,
I20A, 32,
I20L, 32,
I21A, 32,
I21L, 32,
I30A, 32,
I30L, 32,
I31A, 32,
I31L, 32,
I40A, 32,
I40L, 32,
I41A, 32,
I41L, 32,
I50A, 32,
I50L, 32,
I51A, 32,
I51L, 32,
I60A, 32,
I60L, 32,
I61A, 32,
I61L, 32,
I70A, 32,
I70L, 32,
I71A, 32,
I71L, 32,
EM0A, 32,
EM0L, 32,
EM1A, 32,
EM1L, 32,
SI0A, 32,
SI0L, 32,
SI1A, 32,
SI1L, 32,
SD0A, 32,
SD0L, 32,
SD1A, 32,
SD1L, 32,
MH0A, 32,
MH0L, 32,
MH1A, 32,
MH1L, 32,
OSSL, 8,
Offset (0x294),
DPTE, 8,
THM0, 8,
THM1, 8,
THM2, 8,
THM3, 8,
THM4, 8,
CHGR, 8,
DDSP, 8,
DSOC, 8,
DPSR, 8,
DPCT, 32,
DPPT, 32,
DGC0, 32,
DGP0, 32,
DGC1, 32,
DGP1, 32,
DGC2, 32,
DGP2, 32,
DGC3, 32,
DGP3, 32,
DGC4, 32,
DGP4, 32,
DLPM, 8,
DSC0, 32,
DSC1, 32,
DSC2, 32,
DSC3, 32,
DSC4, 32,
DDBG, 8,
LPOE, 32,
LPPS, 32,
LPST, 32,
LPPC, 32,
LPPF, 32,
DPME, 8,
BCSL, 8,
NFCS, 8,
Offset (0x2FC),
TPMA, 32,
TPML, 32,
ITSA, 8,
S0IX, 8,
SDMD, 8,
EMVR, 8,
BMBD, 32,
FSAS, 8,
BDID, 8,
FBID, 8,
OTGM, 8,
STEP, 8,
SOCS, 8,
AMTE, 8,
SCPE, 8,
SARE, 8,
PSSD, 8,
EDPV, 8,
DIDX, 32,
PMNP, 16,
PMXP, 16,
PSSZ, 16,
IUCE, 8,
TFWS, 8,
ABID, 8,
AFID, 8
}
Scope (_SB)
{
Device (RTC)
{
Name (_HID, EisaId ("PNP0B00") /* AT Real-Time Clock */) // _HID: Hardware ID
Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings
{
IO (Decode16,
0x0070, // Range Minimum
0x0070, // Range Maximum
0x01, // Alignment
0x08, // Length
)
})
}
Device (HPET)
{
Name (_HID, EisaId ("PNP0103") /* HPET System Timer */) // _HID: Hardware ID
Name (_UID, Zero) // _UID: Unique ID
Method (_STA, 0, NotSerialized) // _STA: Status
{
Return (0x0F)
}
Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings
{
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite,
0xFED00000, // Address Base
0x00000400, // Address Length
)
Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive, ,, )
{
0x00000008,
}
})
Return (RBUF) /* \_SB_.HPET._CRS.RBUF */
}
}
Name (PR00, Package (0x12)
{
Package (0x04)
{
0x0010FFFF,
Zero,
LNKA,
Zero
},
Package (0x04)
{
0x0011FFFF,
Zero,
LNKB,
Zero
},
Package (0x04)
{
0x0012FFFF,
Zero,
LNKC,
Zero
},
Package (0x04)
{
0x0014FFFF,
Zero,
LNKE,
Zero
},
Package (0x04)
{
0x0015FFFF,
Zero,
LNKF,
Zero
},
Package (0x04)
{
0x0016FFFF,
Zero,
LNKG,
Zero
},
Package (0x04)
{
0x0017FFFF,
Zero,
LNKH,
Zero
},
Package (0x04)
{
0x0018FFFF,
Zero,
LNKB,
Zero
},
Package (0x04)
{
0x0018FFFF,
0x02,
LNKD,
Zero
},
Package (0x04)
{
0x0018FFFF,
0x03,
LNKC,
Zero
},
Package (0x04)
{
0x0018FFFF,
One,
LNKA,
Zero
},
Package (0x04)
{
0x001AFFFF,
Zero,
LNKF,
Zero
},
Package (0x04)
{
0x001DFFFF,
Zero,
LNKH,
Zero
},
Package (0x04)
{
0x001EFFFF,
Zero,
LNKD,
Zero
},
Package (0x04)
{
0x001EFFFF,
0x03,
LNKA,
Zero
},
Package (0x04)
{
0x001EFFFF,
One,
LNKB,
Zero
},
Package (0x04)
{
0x001EFFFF,
0x02,
LNKC,
Zero
},
Package (0x04)
{
0x0002FFFF,
Zero,
LNKA,
Zero
}
})
Name (AR00, Package (0x11)
{
Package (0x04)
{
0x0010FFFF,
Zero,
Zero,
0x10
},
Package (0x04)
{
0x0011FFFF,
Zero,
Zero,
0x11
},
Package (0x04)
{
0x0012FFFF,
Zero,
Zero,
0x12
},
Package (0x04)
{
0x0014FFFF,
Zero,
Zero,
0x14
},
Package (0x04)
{
0x0015FFFF,
Zero,
Zero,