forked from linuxhw/ACPI
-
Notifications
You must be signed in to change notification settings - Fork 3
/
EA4A81982518
19749 lines (18092 loc) · 621 KB
/
EA4A81982518
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 20190509
Copyright (c) 2000 - 2019 Intel Corporation
Signature Length Version Oem Oem Oem Compiler Compiler
Id TableId RevisionId Name Revision
_________ __________ ____ ________ __________ __________ _______ __________
01) SSDT 0x000009F1 0x01 "PmRef " "CpuPm " 0x00003000 "INTL" 0x20060912
02) MCFG 0x0000003C 0x01 "INTEL " "CALPELLA" 0x06040000 "PTEC" 0x00000001
03) APIC 0x000000BC 0x01 "PTLTD " " APIC " 0x06040000 " LTP" 0x00000000
04) SLIC 0x00000176 0x01 "TOSQCI" "TOSQCI00" 0x06040000 " LTP" 0x00000000
05) BOOT 0x00000028 0x01 "PTLTD " "$SBFTBL$" 0x06040000 " LTP" 0x00000001
06) DSDT 0x00010579 0x02 "TOSQCI" "CALPELLA" 0x06040000 "INTL" 0x20060912
07) DMAR 0x00000068 0x01 "INTEL " "CP_FIELD" 0x00000001 "INTL" 0x00000001
08) FACP 0x000000F4 0x03 "INTEL " "CALPELLA" 0x06040000 "PTEC" 0x00000001
09) HPET 0x00000038 0x01 "INTEL " "CALPELLA" 0x06040000 "PTEC" 0x00000001
10) FACS 0x00000040 0x01
11) SSDT 0x00000303 0x01 "PmRef " "ApIst " 0x00003000 "INTL" 0x20060912
12) SSDT 0x000002E8 0x01 "PmRef " "Cpu0Ist " 0x00003000 "INTL" 0x20060912
13) SSDT 0x00000119 0x01 "PmRef " "ApCst " 0x00003000 "INTL" 0x20060912
14) SSDT 0x00000891 0x01 "PmRef " "Cpu0Cst " 0x00003001 "INTL" 0x20060912
Found 14 ACPI tables in acpidump
APIC
----
[000h 0000 4] Signature : "APIC" [Multiple APIC Description Table (MADT)]
[004h 0004 4] Table Length : 000000BC
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : D2
[00Ah 0010 6] Oem ID : "PTLTD "
[010h 0016 8] Oem Table ID : " APIC "
[018h 0024 4] Oem Revision : 06040000
[01Ch 0028 4] Asl Compiler ID : " LTP"
[020h 0032 4] Asl Compiler Revision : 00000000
[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 : 00
[02Fh 0047 1] Local Apic ID : 00
[030h 0048 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[034h 0052 1] Subtable Type : 00 [Processor Local APIC]
[035h 0053 1] Length : 08
[036h 0054 1] Processor ID : 01
[037h 0055 1] Local Apic ID : 02
[038h 0056 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[03Ch 0060 1] Subtable Type : 00 [Processor Local APIC]
[03Dh 0061 1] Length : 08
[03Eh 0062 1] Processor ID : 02
[03Fh 0063 1] Local Apic ID : 04
[040h 0064 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[044h 0068 1] Subtable Type : 00 [Processor Local APIC]
[045h 0069 1] Length : 08
[046h 0070 1] Processor ID : 03
[047h 0071 1] Local Apic ID : 06
[048h 0072 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[04Ch 0076 1] Subtable Type : 00 [Processor Local APIC]
[04Dh 0077 1] Length : 08
[04Eh 0078 1] Processor ID : 04
[04Fh 0079 1] Local Apic ID : 01
[050h 0080 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[054h 0084 1] Subtable Type : 00 [Processor Local APIC]
[055h 0085 1] Length : 08
[056h 0086 1] Processor ID : 05
[057h 0087 1] Local Apic ID : 03
[058h 0088 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[05Ch 0092 1] Subtable Type : 00 [Processor Local APIC]
[05Dh 0093 1] Length : 08
[05Eh 0094 1] Processor ID : 06
[05Fh 0095 1] Local Apic ID : 05
[060h 0096 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[064h 0100 1] Subtable Type : 00 [Processor Local APIC]
[065h 0101 1] Length : 08
[066h 0102 1] Processor ID : 07
[067h 0103 1] Local Apic ID : 07
[068h 0104 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[06Ch 0108 1] Subtable Type : 01 [I/O APIC]
[06Dh 0109 1] Length : 0C
[06Eh 0110 1] I/O Apic ID : 08
[06Fh 0111 1] Reserved : 00
[070h 0112 4] Address : FEC00000
[074h 0116 4] Interrupt : 00000000
[078h 0120 1] Subtable Type : 04 [Local APIC NMI]
[079h 0121 1] Length : 06
[07Ah 0122 1] Processor ID : 00
[07Bh 0123 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[07Dh 0125 1] Interrupt Input LINT : 01
[07Eh 0126 1] Subtable Type : 04 [Local APIC NMI]
[07Fh 0127 1] Length : 06
[080h 0128 1] Processor ID : 01
[081h 0129 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[083h 0131 1] Interrupt Input LINT : 01
[084h 0132 1] Subtable Type : 04 [Local APIC NMI]
[085h 0133 1] Length : 06
[086h 0134 1] Processor ID : 02
[087h 0135 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[089h 0137 1] Interrupt Input LINT : 01
[08Ah 0138 1] Subtable Type : 04 [Local APIC NMI]
[08Bh 0139 1] Length : 06
[08Ch 0140 1] Processor ID : 03
[08Dh 0141 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[08Fh 0143 1] Interrupt Input LINT : 01
[090h 0144 1] Subtable Type : 04 [Local APIC NMI]
[091h 0145 1] Length : 06
[092h 0146 1] Processor ID : 04
[093h 0147 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[095h 0149 1] Interrupt Input LINT : 01
[096h 0150 1] Subtable Type : 04 [Local APIC NMI]
[097h 0151 1] Length : 06
[098h 0152 1] Processor ID : 05
[099h 0153 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[09Bh 0155 1] Interrupt Input LINT : 01
[09Ch 0156 1] Subtable Type : 04 [Local APIC NMI]
[09Dh 0157 1] Length : 06
[09Eh 0158 1] Processor ID : 06
[09Fh 0159 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[0A1h 0161 1] Interrupt Input LINT : 01
[0A2h 0162 1] Subtable Type : 04 [Local APIC NMI]
[0A3h 0163 1] Length : 06
[0A4h 0164 1] Processor ID : 07
[0A5h 0165 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[0A7h 0167 1] Interrupt Input LINT : 01
[0A8h 0168 1] Subtable Type : 02 [Interrupt Source Override]
[0A9h 0169 1] Length : 0A
[0AAh 0170 1] Bus : 00
[0ABh 0171 1] Source : 00
[0ACh 0172 4] Interrupt : 00000002
[0B0h 0176 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[0B2h 0178 1] Subtable Type : 02 [Interrupt Source Override]
[0B3h 0179 1] Length : 0A
[0B4h 0180 1] Bus : 00
[0B5h 0181 1] Source : 09
[0B6h 0182 4] Interrupt : 00000009
[0BAh 0186 2] Flags (decoded below) : 000D
Polarity : 1
Trigger Mode : 3
Raw Table Data: Length 188 (0xBC)
0000: 41 50 49 43 BC 00 00 00 01 D2 50 54 4C 54 44 20 // APIC......PTLTD
0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4C 54 50 // . APIC .... LTP
0020: 00 00 00 00 00 00 E0 FE 01 00 00 00 00 08 00 00 // ................
0030: 01 00 00 00 00 08 01 02 01 00 00 00 00 08 02 04 // ................
0040: 01 00 00 00 00 08 03 06 01 00 00 00 00 08 04 01 // ................
0050: 01 00 00 00 00 08 05 03 01 00 00 00 00 08 06 05 // ................
0060: 01 00 00 00 00 08 07 07 01 00 00 00 01 0C 08 00 // ................
0070: 00 00 C0 FE 00 00 00 00 04 06 00 05 00 01 04 06 // ................
0080: 01 05 00 01 04 06 02 05 00 01 04 06 03 05 00 01 // ................
0090: 04 06 04 05 00 01 04 06 05 05 00 01 04 06 06 05 // ................
00A0: 00 01 04 06 07 05 00 01 02 0A 00 00 02 00 00 00 // ................
00B0: 05 00 02 0A 00 09 09 00 00 00 0D 00 // ............
BOOT
----
[000h 0000 4] Signature : "BOOT" [Simple Boot Flag Table]
[004h 0004 4] Table Length : 00000028
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : A5
[00Ah 0010 6] Oem ID : "PTLTD "
[010h 0016 8] Oem Table ID : "$SBFTBL$"
[018h 0024 4] Oem Revision : 06040000
[01Ch 0028 4] Asl Compiler ID : " LTP"
[020h 0032 4] Asl Compiler Revision : 00000001
[024h 0036 1] Boot Register Index : 36
[025h 0037 3] Reserved : 000000
Raw Table Data: Length 40 (0x28)
0000: 42 4F 4F 54 28 00 00 00 01 A5 50 54 4C 54 44 20 // BOOT(.....PTLTD
0010: 24 53 42 46 54 42 4C 24 00 00 04 06 20 4C 54 50 // $SBFTBL$.... LTP
0020: 01 00 00 00 36 00 00 00 // ....6...
DMAR
----
[000h 0000 4] Signature : "DMAR" [DMA Remapping table]
[004h 0004 4] Table Length : 00000068
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : FA
[00Ah 0010 6] Oem ID : "INTEL "
[010h 0016 8] Oem Table ID : "CP_FIELD"
[018h 0024 4] Oem Revision : 00000001
[01Ch 0028 4] Asl Compiler ID : "INTL"
[020h 0032 4] Asl Compiler Revision : 00000001
[024h 0036 1] Host Address Width : 23
[025h 0037 1] Flags : 00
[026h 0038 10] Reserved : 00 00 00 00 00 00 00 00 00 00
[030h 0048 2] Subtable Type : 0000 [Hardware Unit Definition]
[032h 0050 2] Length : 0010
[034h 0052 1] Flags : 01
[035h 0053 1] Reserved : 00
[036h 0054 2] PCI Segment Number : 0000
[038h 0056 8] Register Base Address : 00000000FED90000
[040h 0064 2] Subtable Type : 0001 [Reserved Memory Region]
[042h 0066 2] Length : 0028
[044h 0068 2] Reserved : 0000
[046h 0070 2] PCI Segment Number : 0000
[048h 0072 8] Base Address : 00000000BBEE9000
[050h 0080 8] End Address (limit) : 00000000BBEFEFFF
[058h 0088 1] Device Scope Type : 01 [PCI Endpoint Device]
[059h 0089 1] Entry Length : 08
[05Ah 0090 2] Reserved : 0000
[05Ch 0092 1] Enumeration ID : 00
[05Dh 0093 1] PCI Bus Number : 00
[05Eh 0094 2] PCI Path : 1A,00
[060h 0096 1] Device Scope Type : 01 [PCI Endpoint Device]
[061h 0097 1] Entry Length : 08
[062h 0098 2] Reserved : 0000
[064h 0100 1] Enumeration ID : 00
[065h 0101 1] PCI Bus Number : 00
[066h 0102 2] PCI Path : 1D,00
Raw Table Data: Length 104 (0x68)
0000: 44 4D 41 52 68 00 00 00 01 FA 49 4E 54 45 4C 20 // DMARh.....INTEL
0010: 43 50 5F 46 49 45 4C 44 01 00 00 00 49 4E 54 4C // CP_FIELD....INTL
0020: 01 00 00 00 23 00 00 00 00 00 00 00 00 00 00 00 // ....#...........
0030: 00 00 10 00 01 00 00 00 00 00 D9 FE 00 00 00 00 // ................
0040: 01 00 28 00 00 00 00 00 00 90 EE BB 00 00 00 00 // ..(.............
0050: FF EF EF BB 00 00 00 00 01 08 00 00 00 00 1A 00 // ................
0060: 01 08 00 00 00 00 1D 00 // ........
DSDT
----
DefinitionBlock ("", "DSDT", 2, "TOSQCI", "CALPELLA", 0x06040000)
{
/*
* iASL Warning: There were 5 external control methods found during
* disassembly, but only 0 were resolved (5 unresolved). Additional
* ACPI tables may be required to properly disassemble the code. This
* resulting disassembler output file may not compile because the
* disassembler did not know how many arguments to assign to the
* unresolved methods. Note: SSDTs can be dynamically loaded at
* runtime and may or may not be available via the host OS.
*
* 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 (_PR_.CPU0._PPC, UnknownObj)
External (_SB_.PCI0.IEIT.EITV, MethodObj) // Warning: Unknown method, guessing 0 arguments
External (CFGD, UnknownObj)
External (ECST, MethodObj) // Warning: Unknown method, guessing 1 arguments
External (FPED, MethodObj) // Warning: Unknown method, guessing 0 arguments
External (GP52, UnknownObj)
External (IDAB, MethodObj) // Warning: Unknown method, guessing 0 arguments
External (NNAB, IntObj)
External (PDC0, UnknownObj)
External (PDC1, UnknownObj)
External (PDC2, UnknownObj)
External (PDC3, UnknownObj)
External (PDC4, UnknownObj)
External (PDC5, UnknownObj)
External (PDC6, UnknownObj)
External (PDC7, UnknownObj)
External (TNOT, MethodObj) // Warning: Unknown method, guessing 0 arguments
Name (SP2O, 0x4E)
Name (SP1O, 0x164E)
Name (IO1B, 0x0600)
Name (IO1L, 0x70)
Name (IO2B, 0x0680)
Name (IO2L, 0x20)
Name (IO3B, 0x0290)
Name (IO3L, 0x10)
Name (SP3O, 0x2E)
Name (IO4B, 0x0A20)
Name (IO4L, 0x20)
Name (MCHB, 0xFED10000)
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 (TTTB, 0xFED20000)
Name (TTTL, 0x00020000)
Name (SMBS, 0xEFA0)
Name (PBLK, 0x0410)
Name (PMBS, 0x0400)
Name (PMLN, 0x80)
Name (LVL2, 0x0414)
Name (LVL3, 0x0415)
Name (LVL4, 0x0416)
Name (SMIP, 0xB2)
Name (GPBS, 0x1180)
Name (GPLN, 0x80)
Name (APCB, 0xFEC00000)
Name (APCL, 0x1000)
Name (PM30, 0x0430)
Name (SRCB, 0xFED1C000)
Name (SRCL, 0x4000)
Name (SUSW, 0xFF)
Name (HPTB, 0xFED00000)
Name (HPTC, 0xFED1F404)
Name (ACPH, 0xDE)
Name (ASSB, Zero)
Name (AOTB, Zero)
Name (AAXB, Zero)
Name (PEHP, Zero)
Name (SHPC, One)
Name (PEPM, Zero)
Name (PEER, Zero)
Name (PECS, Zero)
Name (ITKE, Zero)
Name (DSSP, Zero)
Name (FHPP, One)
Name (FMBL, One)
Name (FDTP, 0x02)
Name (BRF, One)
Name (BPH, 0x02)
Name (BLC, 0x03)
Name (BRFS, 0x04)
Name (BPHS, 0x05)
Name (BLCT, 0x06)
Name (BRF4, 0x07)
Name (BEP, 0x08)
Name (BBF, 0x09)
Name (BOF, 0x0A)
Name (BPT, 0x0B)
Name (SRAF, 0x0C)
Name (WWP, 0x0D)
Name (SDOE, 0x0E)
Name (TRTP, One)
Name (TRTD, 0x02)
Name (TRTI, 0x03)
Name (GCDD, One)
Name (DSTA, 0x0A)
Name (DSLO, 0x0C)
Name (DSLC, 0x0E)
Name (PITS, 0x10)
Name (SBCS, 0x12)
Name (SALS, 0x13)
Name (LSSS, 0x2A)
Name (SOOT, 0x35)
Name (PDBR, 0x4D)
Name (SMBL, 0x10)
Name (ECOK, Zero)
OperationRegion (GNVS, SystemMemory, 0xBBF9B8F4, 0x0200)
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,
ACT1, 8,
ACTT, 8,
PSVT, 8,
TC1V, 8,
TC2V, 8,
TSPV, 8,
CRTT, 8,
DTSE, 8,
DTS1, 8,
DTS2, 8,
DTSF, 8,
Offset (0x28),
APIC, 8,
TCNT, 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,
SMSC, 8,
W381, 8,
SMC1, 8,
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),
Offset (0x82),
GTF0, 56,
GTF2, 56,
IDEM, 8,
GTF1, 56,
BID, 8,
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,
IPCF, 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,
SDGV, 8,
SDDV, 8,
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,
EBAS, 32,
CPSP, 32,
EECP, 32,
EVCP, 32,
XBAS, 32,
OBS1, 32,
OBS2, 32,
OBS3, 32,
OBS4, 32,
OBS5, 32,
OBS6, 32,
OBS7, 32,
OBS8, 32,
Offset (0x15B),
PNHM, 32,
TBAB, 32,
TBAH, 32,
IPSE, 8,
Offset (0x16B),
PFLV, 8,
BREV, 8,
DPBM, 8,
DPCM, 8,
DPDM, 8,
ALFP, 8,
KBBT, 8,
KBBF, 8
}
Scope (_SB)
{
Device (QWMI)
{
Name (_HID, "PNP0C14" /* Windows Management Instrumentation Device */) // _HID: Hardware ID
Name (_UID, One) // _UID: Unique ID
Method (PHSR, 2, NotSerialized)
{
Acquire (PSMX, 0xFFFF)
BCMD = 0x91
DID = Arg0
INF = Arg1
SMIC = Zero
Local0 = DID /* \_SB_.DID_ */
Release (PSMX)
Return (Local0)
}
Name (_WDG, Buffer (0x3C)
{
/* 0000 */ 0x69, 0xA4, 0x2B, 0xC6, 0x2C, 0x69, 0x4C, 0x4A, // i.+.,iLJ
/* 0008 */ 0x98, 0x69, 0x31, 0xB8, 0x3E, 0x0C, 0x76, 0x71, // .i1.>.vq
/* 0010 */ 0x41, 0x41, 0x01, 0x00, 0x76, 0xF0, 0x58, 0x15, // AA..v.X.
/* 0018 */ 0x69, 0x3C, 0xDB, 0x4C, 0x80, 0xA5, 0xD2, 0xF3, // i<.L....
/* 0020 */ 0x9C, 0x62, 0x94, 0x9B, 0x41, 0x42, 0x01, 0x00, // .b..AB..
/* 0028 */ 0x21, 0x12, 0x90, 0x05, 0x66, 0xD5, 0xD1, 0x11, // !...f...
/* 0030 */ 0xB2, 0xF0, 0x00, 0xA0, 0xC9, 0x06, 0x29, 0x10, // ......).
/* 0038 */ 0x42, 0x41, 0x01, 0x00 // BA..
})
Name (FCOD, Zero)
Name (RCOD, Zero)
Name (SFAI, Zero)
Name (SFLG, Zero)
Name (UFAI, Zero)
Name (UFLG, Zero)
Name (VERB, Buffer (0x0201)
{
0x00 // .
})
CreateField (VERB, Zero, 0x08, QMJV)
CreateField (VERB, 0x08, 0x08, QMNV)
Name (FBUF, Buffer (0x0201)
{
0x00 // .
})
CreateField (FBUF, Zero, 0x08, F000)
CreateField (FBUF, 0x08, 0x08, F001)
Name (RBUF, Buffer (0x0201)
{
0x00 // .
})
Name (QBUF, Buffer (0x0201)
{
0x00 // .
})
CreateField (QBUF, Zero, 0x08, Q000)
CreateField (QBUF, 0x08, 0x08, Q001)
CreateField (QBUF, 0x10, 0x08, Q002)
CreateField (QBUF, 0x18, 0x08, Q003)
CreateField (QBUF, 0x20, 0x08, Q004)
CreateField (QBUF, 0x28, 0x08, Q005)
CreateField (QBUF, 0x30, 0x08, Q006)
CreateField (QBUF, 0x38, 0x08, Q007)
CreateField (QBUF, 0x40, 0x08, Q008)
CreateField (QBUF, 0x48, 0x08, Q009)
CreateField (QBUF, 0x50, 0x08, Q010)
CreateField (QBUF, 0x58, 0x08, Q011)
CreateField (QBUF, 0x60, 0x08, Q012)
CreateField (QBUF, 0x68, 0x08, Q013)
CreateField (QBUF, 0x70, 0x08, Q014)
CreateField (QBUF, 0x78, 0x08, Q015)
CreateField (QBUF, 0x80, 0x08, Q016)
CreateField (QBUF, 0x88, 0x08, Q017)
CreateField (QBUF, 0x90, 0x08, Q018)
CreateField (QBUF, Zero, 0xA0, QL20)
CreateField (QBUF, Zero, 0x1000, Q512)
CreateField (QBUF, 0x1000, 0x08, QZZZ)
Method (WQAA, 1, NotSerialized)
{
QMJV = One
QMNV = One
Return (VERB) /* \_SB_.QWMI.VERB */
}
Method (WSAA, 2, NotSerialized)
{
FBUF = Arg1
FCOD = F000 /* \_SB_.QWMI.F000 */
RCOD = F001 /* \_SB_.QWMI.F001 */
If ((RCOD == One))
{
RQ01 (Arg0)
}
If ((RCOD == 0x02))
{
RQ02 (Arg0)
}
If ((RCOD == 0x03))
{
RQ03 (Arg0)
}
If ((RCOD == 0x04))
{
RQ04 (Arg0)
}
If ((RCOD == 0x05))
{
RQ05 (Arg0)
}
If ((RCOD == 0x06))
{
RQ06 (Arg0)
}
If ((RCOD == 0x07))
{
RQ07 (Arg0)
}
If ((RCOD == 0x08))
{
RQ08 (Arg0)
}
If ((RCOD == 0x09))
{
RQ09 (Arg0)
}
If ((RCOD == 0x0A))
{
RQ0A (Arg0)
}
If ((RCOD == 0x0B))
{
RQ0B (Arg0)
}
If ((RCOD == 0x0C))
{
RQ0C (Arg0)
}
If ((RCOD == 0x0D))
{
RQ0D (Arg0)
}
If ((RCOD == 0x0E))
{
RQ0E (Arg0)
}
If ((RCOD == 0x0F))
{
RQ0F (Arg0)
}
If ((RCOD == 0x10))
{
RQ10 (Arg0)
}
If ((RCOD == 0x11))
{
RQ11 (Arg0)
}
If ((RCOD == 0x12))
{
RQ12 (Arg0)
}
If ((RCOD == 0x13))
{
RQ13 (Arg0)
}
If ((RCOD == 0x14))
{
RQ14 (Arg0)
}
If ((RCOD == 0x15))
{
RQ15 (Arg0)
}
If ((RCOD == 0x16))
{
RQ16 (Arg0)
}
If ((RCOD == 0x17))
{
RQ17 (Arg0)
}
If ((RCOD == 0x20))
{
RQ20 (Arg0)
}
If ((RCOD == 0x21))
{
RQ21 (Arg0)
}
If ((RCOD == 0x22))
{
RQ22 (Arg0)
}
If ((RCOD == 0xF0))
{
RQF0 (Arg0)
}
RBUF = QBUF /* \_SB_.QWMI.QBUF */
}
Method (WQAB, 1, NotSerialized)
{
Return (RBUF) /* \_SB_.QWMI.RBUF */
}
Method (WSAB, 2, NotSerialized)
{
If ((RCOD == One))
{
RS01 (Arg0, Arg1)
}
If ((RCOD == 0x02))
{
RS02 (Arg0, Arg1)
}
If ((RCOD == 0x03))
{
RS03 (Arg0, Arg1)
}
If ((RCOD == 0x04))
{
RS04 (Arg0, Arg1)
}
If ((RCOD == 0x05))
{
RS05 (Arg0, Arg1)
}
If ((RCOD == 0x06))
{
RS06 (Arg0, Arg1)
}
If ((RCOD == 0x07))
{
RS07 (Arg0, Arg1)
}
If ((RCOD == 0x08))
{
RS08 (Arg0, Arg1)
}
If ((RCOD == 0x09))
{
RS09 (Arg0, Arg1)
}
If ((RCOD == 0x0A))
{
RS0A (Arg0, Arg1)
}
If ((RCOD == 0x0B))
{
RS0B (Arg0, Arg1)
}
If ((RCOD == 0x0C))
{
RS0C (Arg0, Arg1)
}
If ((RCOD == 0x0D))
{
RS0D (Arg0, Arg1)
}
If ((RCOD == 0x0E))
{
RS0E (Arg0, Arg1)
}
If ((RCOD == 0x0F))
{
RS0F (Arg0, Arg1)
}
If ((RCOD == 0x10))
{
RS10 (Arg0, Arg1)
}
If ((RCOD == 0x11))
{
RS11 (Arg0, Arg1)
}
If ((RCOD == 0x12))
{
RS12 (Arg0, Arg1)
}
If ((RCOD == 0x13))
{
RS13 (Arg0, Arg1)
}
If ((RCOD == 0x14))
{
RS14 (Arg0, Arg1)
}
If ((RCOD == 0x15))
{
RS15 (Arg0, Arg1)
}
If ((RCOD == 0x16))
{
RS16 (Arg0, Arg1)
}
If ((RCOD == 0x17))
{
RS17 (Arg0, Arg1)
}
If ((RCOD == 0x20))
{
RS20 (Arg0, Arg1)
}
If ((RCOD == 0x21))
{
RS21 (Arg0, Arg1)
}
If ((RCOD == 0x22))
{
RS22 (Arg0, Arg1)
}
If ((RCOD == 0xF0))
{
RSF0 (Arg0, Arg1)
}
RBUF = QBUF /* \_SB_.QWMI.QBUF */
}
Method (RQ01, 1, NotSerialized)
{
If ((FCOD == 0x02))
{
PHSR (One, Zero)
Q512 = OWNS /* \_SB_.OWNS */
}
If ((FCOD == 0x05))
{
Q000 = SFAI /* \_SB_.QWMI.SFAI */
}
If ((FCOD == 0x04))
{
If ((SFLG == Zero))
{
Q000 = One
}
Else
{
Q000 = Zero
}
}
}
Method (RS01, 2, NotSerialized)
{
Q512 = Arg1
OWNS = Q512 /* \_SB_.QWMI.Q512 */
If ((FCOD == 0x04))
{
SFLG = Zero
PHSR (One, 0x04)
Q512 = OWNS /* \_SB_.OWNS */
SFLG = Q000 /* \_SB_.QWMI.Q000 */
If ((SFLG == Zero))
{
Q000 = One
}