forked from UltraOS/ACPIDumps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DF2F64A5D6CA
9144 lines (8284 loc) · 307 KB
/
DF2F64A5D6CA
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 20180531
Copyright (c) 2000 - 2018 Intel Corporation
Signature Length Version Oem Oem Oem Compiler Compiler
Id TableId RevisionId Name Revision
_________ __________ ____ ________ __________ __________ _______ __________
01) EUDS 0x000004B0 0x01 "GBT " " " 0x00000000 " " 0x00000000
02) SSDT 0x00002804 0x01 "INTEL " "PPM RCM " 0x80000001 "INTL" 0x20061109
03) MCFG 0x0000003C 0x01 "GBT " "GBTUACPI" 0x42302E31 "GBTU" 0x01010101
04) APIC 0x0000012C 0x01 "GBT " "GBTUACPI" 0x42302E31 "GBTU" 0x01010101
05) DSDT 0x00004A86 0x01 "GBT " "GBTUACPI" 0x00001000 "MSFT" 0x0100000C
06) FACP 0x00000074 0x01 "GBT " "GBTUACPI" 0x42302E31 "GBTU" 0x01010101
07) MSDM 0x00000055 0x03 "GBT " "GBTUACPI" 0x42302E31 "GBTU" 0x01010101
08) TAMG 0x00000B2A 0x01 "GBT " "GBT B0" 0x5455312E "BG " 0x53450101
09) HPET 0x00000038 0x01 "GBT " "GBTUACPI" 0x42302E31 "GBTU" 0x00000098
10) FACS 0x00000040 0x00
Found 10 ACPI tables in acpidump
APIC
----
[000h 0000 4] Signature : "APIC" [Multiple APIC Description Table (MADT)]
[004h 0004 4] Table Length : 0000012C
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : 9D
[00Ah 0010 6] Oem ID : "GBT "
[010h 0016 8] Oem Table ID : "GBTUACPI"
[018h 0024 4] Oem Revision : 42302E31
[01Ch 0028 4] Asl Compiler ID : "GBTU"
[020h 0032 4] Asl Compiler Revision : 01010101
[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
[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
[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
[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
[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
[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
[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
[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
[06Ch 0108 1] Subtable Type : 00 [Processor Local APIC]
[06Dh 0109 1] Length : 08
[06Eh 0110 1] Processor ID : 08
[06Fh 0111 1] Local Apic ID : 08
[070h 0112 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[074h 0116 1] Subtable Type : 00 [Processor Local APIC]
[075h 0117 1] Length : 08
[076h 0118 1] Processor ID : 09
[077h 0119 1] Local Apic ID : 09
[078h 0120 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[07Ch 0124 1] Subtable Type : 00 [Processor Local APIC]
[07Dh 0125 1] Length : 08
[07Eh 0126 1] Processor ID : 0A
[07Fh 0127 1] Local Apic ID : 0A
[080h 0128 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[084h 0132 1] Subtable Type : 00 [Processor Local APIC]
[085h 0133 1] Length : 08
[086h 0134 1] Processor ID : 0B
[087h 0135 1] Local Apic ID : 0B
[088h 0136 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[08Ch 0140 1] Subtable Type : 00 [Processor Local APIC]
[08Dh 0141 1] Length : 08
[08Eh 0142 1] Processor ID : 0C
[08Fh 0143 1] Local Apic ID : 0C
[090h 0144 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[094h 0148 1] Subtable Type : 00 [Processor Local APIC]
[095h 0149 1] Length : 08
[096h 0150 1] Processor ID : 0D
[097h 0151 1] Local Apic ID : 0D
[098h 0152 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[09Ch 0156 1] Subtable Type : 00 [Processor Local APIC]
[09Dh 0157 1] Length : 08
[09Eh 0158 1] Processor ID : 0E
[09Fh 0159 1] Local Apic ID : 0E
[0A0h 0160 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0A4h 0164 1] Subtable Type : 00 [Processor Local APIC]
[0A5h 0165 1] Length : 08
[0A6h 0166 1] Processor ID : 0F
[0A7h 0167 1] Local Apic ID : 0F
[0A8h 0168 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0ACh 0172 1] Subtable Type : 01 [I/O APIC]
[0ADh 0173 1] Length : 0C
[0AEh 0174 1] I/O Apic ID : 02
[0AFh 0175 1] Reserved : 00
[0B0h 0176 4] Address : FEC00000
[0B4h 0180 4] Interrupt : 00000000
[0B8h 0184 1] Subtable Type : 02 [Interrupt Source Override]
[0B9h 0185 1] Length : 0A
[0BAh 0186 1] Bus : 00
[0BBh 0187 1] Source : 00
[0BCh 0188 4] Interrupt : 00000002
[0C0h 0192 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0C2h 0194 1] Subtable Type : 02 [Interrupt Source Override]
[0C3h 0195 1] Length : 0A
[0C4h 0196 1] Bus : 00
[0C5h 0197 1] Source : 09
[0C6h 0198 4] Interrupt : 00000009
[0CAh 0202 2] Flags (decoded below) : 000D
Polarity : 1
Trigger Mode : 3
[0CCh 0204 1] Subtable Type : 04 [Local APIC NMI]
[0CDh 0205 1] Length : 06
[0CEh 0206 1] Processor ID : 00
[0CFh 0207 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0D1h 0209 1] Interrupt Input LINT : 01
[0D2h 0210 1] Subtable Type : 04 [Local APIC NMI]
[0D3h 0211 1] Length : 06
[0D4h 0212 1] Processor ID : 01
[0D5h 0213 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0D7h 0215 1] Interrupt Input LINT : 01
[0D8h 0216 1] Subtable Type : 04 [Local APIC NMI]
[0D9h 0217 1] Length : 06
[0DAh 0218 1] Processor ID : 02
[0DBh 0219 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0DDh 0221 1] Interrupt Input LINT : 01
[0DEh 0222 1] Subtable Type : 04 [Local APIC NMI]
[0DFh 0223 1] Length : 06
[0E0h 0224 1] Processor ID : 03
[0E1h 0225 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0E3h 0227 1] Interrupt Input LINT : 01
[0E4h 0228 1] Subtable Type : 04 [Local APIC NMI]
[0E5h 0229 1] Length : 06
[0E6h 0230 1] Processor ID : 04
[0E7h 0231 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0E9h 0233 1] Interrupt Input LINT : 01
[0EAh 0234 1] Subtable Type : 04 [Local APIC NMI]
[0EBh 0235 1] Length : 06
[0ECh 0236 1] Processor ID : 05
[0EDh 0237 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0EFh 0239 1] Interrupt Input LINT : 01
[0F0h 0240 1] Subtable Type : 04 [Local APIC NMI]
[0F1h 0241 1] Length : 06
[0F2h 0242 1] Processor ID : 06
[0F3h 0243 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0F5h 0245 1] Interrupt Input LINT : 01
[0F6h 0246 1] Subtable Type : 04 [Local APIC NMI]
[0F7h 0247 1] Length : 06
[0F8h 0248 1] Processor ID : 07
[0F9h 0249 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[0FBh 0251 1] Interrupt Input LINT : 01
[0FCh 0252 1] Subtable Type : 04 [Local APIC NMI]
[0FDh 0253 1] Length : 06
[0FEh 0254 1] Processor ID : 08
[0FFh 0255 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[101h 0257 1] Interrupt Input LINT : 01
[102h 0258 1] Subtable Type : 04 [Local APIC NMI]
[103h 0259 1] Length : 06
[104h 0260 1] Processor ID : 09
[105h 0261 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[107h 0263 1] Interrupt Input LINT : 01
[108h 0264 1] Subtable Type : 04 [Local APIC NMI]
[109h 0265 1] Length : 06
[10Ah 0266 1] Processor ID : 0A
[10Bh 0267 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[10Dh 0269 1] Interrupt Input LINT : 01
[10Eh 0270 1] Subtable Type : 04 [Local APIC NMI]
[10Fh 0271 1] Length : 06
[110h 0272 1] Processor ID : 0B
[111h 0273 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[113h 0275 1] Interrupt Input LINT : 01
[114h 0276 1] Subtable Type : 04 [Local APIC NMI]
[115h 0277 1] Length : 06
[116h 0278 1] Processor ID : 0C
[117h 0279 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[119h 0281 1] Interrupt Input LINT : 01
[11Ah 0282 1] Subtable Type : 04 [Local APIC NMI]
[11Bh 0283 1] Length : 06
[11Ch 0284 1] Processor ID : 0D
[11Dh 0285 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[11Fh 0287 1] Interrupt Input LINT : 01
[120h 0288 1] Subtable Type : 04 [Local APIC NMI]
[121h 0289 1] Length : 06
[122h 0290 1] Processor ID : 0E
[123h 0291 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[125h 0293 1] Interrupt Input LINT : 01
[126h 0294 1] Subtable Type : 04 [Local APIC NMI]
[127h 0295 1] Length : 06
[128h 0296 1] Processor ID : 0F
[129h 0297 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[12Bh 0299 1] Interrupt Input LINT : 01
Raw Table Data: Length 300 (0x12C)
0000: 41 50 49 43 2C 01 00 00 01 9D 47 42 54 20 20 20 // APIC,.....GBT
0010: 47 42 54 55 41 43 50 49 31 2E 30 42 47 42 54 55 // GBTUACPI1.0BGBTU
0020: 01 01 01 01 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 00 08 08 08 // ................
0070: 00 00 00 00 00 08 09 09 00 00 00 00 00 08 0A 0A // ................
0080: 00 00 00 00 00 08 0B 0B 00 00 00 00 00 08 0C 0C // ................
0090: 00 00 00 00 00 08 0D 0D 00 00 00 00 00 08 0E 0E // ................
00A0: 00 00 00 00 00 08 0F 0F 00 00 00 00 01 0C 02 00 // ................
00B0: 00 00 C0 FE 00 00 00 00 02 0A 00 00 02 00 00 00 // ................
00C0: 00 00 02 0A 00 09 09 00 00 00 0D 00 04 06 00 00 // ................
00D0: 00 01 04 06 01 00 00 01 04 06 02 00 00 01 04 06 // ................
00E0: 03 00 00 01 04 06 04 00 00 01 04 06 05 00 00 01 // ................
00F0: 04 06 06 00 00 01 04 06 07 00 00 01 04 06 08 00 // ................
0100: 00 01 04 06 09 00 00 01 04 06 0A 00 00 01 04 06 // ................
0110: 0B 00 00 01 04 06 0C 00 00 01 04 06 0D 00 00 01 // ................
0120: 04 06 0E 00 00 01 04 06 0F 00 00 01 // ............
DSDT
----
DefinitionBlock ("", "DSDT", 1, "GBT ", "GBTUACPI", 0x00001000)
{
Scope (\_PR)
{
Processor (\_PR.CPU0, 0x00, 0x00000410, 0x06){}
Processor (\_PR.CPU1, 0x01, 0x00000410, 0x06){}
Processor (\_PR.CPU2, 0x02, 0x00000410, 0x06){}
Processor (\_PR.CPU3, 0x03, 0x00000410, 0x06){}
Processor (\_PR.CPU4, 0x04, 0x00000410, 0x06){}
Processor (\_PR.CPU5, 0x05, 0x00000410, 0x06){}
Processor (\_PR.CPU6, 0x06, 0x00000410, 0x06){}
Processor (\_PR.CPU7, 0x07, 0x00000410, 0x06){}
Processor (\_PR.CPU8, 0x08, 0x00000410, 0x06){}
Processor (\_PR.CPU9, 0x09, 0x00000410, 0x06){}
Processor (\_PR.CPUA, 0x0A, 0x00000410, 0x06){}
Processor (\_PR.CPUB, 0x0B, 0x00000410, 0x06){}
Processor (\_PR.CPUC, 0x0C, 0x00000410, 0x06){}
Processor (\_PR.CPUD, 0x0D, 0x00000410, 0x06){}
Processor (\_PR.CPUE, 0x0E, 0x00000410, 0x06){}
Processor (\_PR.CPUF, 0x0F, 0x00000410, 0x06){}
}
Name (\_S0, Package (0x04) // _S0_: S0 System State
{
0x00,
0x00,
0x00,
0x00
})
Name (\SS1, Package (0x04)
{
0x01,
0x00,
0x00,
0x00
})
Name (\_S3, Package (0x04) // _S3_: S3 System State
{
0x05,
0x00,
0x00,
0x00
})
Name (\_S4, Package (0x04) // _S4_: S4 System State
{
0x06,
0x00,
0x00,
0x00
})
Name (\_S5, Package (0x04) // _S5_: S5 System State
{
0x07,
0x00,
0x00,
0x00
})
Name (FLAG, 0x00)
Name (STAT, 0x00)
OperationRegion (SMOD, SystemMemory, 0x000FF840, 0x01)
Field (SMOD, ByteAcc, NoLock, Preserve)
{
, 7,
SUSF, 1
}
OperationRegion (LBOC, SystemMemory, 0x000FF820, 0x02)
Field (LBOC, ByteAcc, NoLock, Preserve)
{
UBMC, 1,
Offset (0x02)
}
OperationRegion (\DEBG, SystemIO, 0x80, 0x01)
Field (\DEBG, ByteAcc, NoLock, Preserve)
{
DBG1, 8
}
OperationRegion (RCRB, SystemMemory, 0xFED1C000, 0x4000)
Field (RCRB, DWordAcc, Lock, Preserve)
{
Offset (0x3404),
, 7,
HPTF, 1
}
OperationRegion (ELKM, SystemMemory, 0x000FFFEA, 0x01)
Field (ELKM, ByteAcc, NoLock, Preserve)
{
, 1,
, 1,
ELSO, 1,
, 1,
, 1,
, 1,
, 1
}
OperationRegion (EXTM, SystemMemory, 0x000FF830, 0x10)
Field (EXTM, WordAcc, NoLock, Preserve)
{
ROM1, 16,
RMS1, 16,
ROM2, 16,
RMS2, 16,
ROM3, 16,
RMS3, 16,
AMEM, 32
}
OperationRegion (\SMIC, SystemIO, 0xB2, 0x01)
Field (\SMIC, ByteAcc, NoLock, Preserve)
{
SCP, 8
}
OperationRegion (\GP2C, SystemIO, 0x042C, 0x02)
Field (\GP2C, ByteAcc, NoLock, Preserve)
{
G2C1, 8,
G2C2, 8
}
OperationRegion (APMP, SystemIO, 0xB2, 0x02)
Field (APMP, ByteAcc, NoLock, Preserve)
{
APMC, 8,
APMD, 8
}
OperationRegion (\AGPS, SystemIO, 0x0438, 0x04)
Field (\AGPS, ByteAcc, NoLock, Preserve)
{
GPSE, 16,
GPSS, 16
}
OperationRegion (\GPCN, SystemIO, 0x0442, 0x01)
Field (\GPCN, ByteAcc, NoLock, Preserve)
{
, 1,
SWGC, 1,
Offset (0x01)
}
Name (OSFX, 0x01)
Name (LINX, 0x00)
Name (AMAC, 0x00)
Name (OSFL, 0x01)
Method (STRC, 2, NotSerialized)
{
If ((SizeOf (Arg0) != SizeOf (Arg1)))
{
Return (0x00)
}
Local0 = (SizeOf (Arg0) + 0x01)
Name (BUF0, Buffer (Local0){})
Name (BUF1, Buffer (Local0){})
BUF0 = Arg0
BUF1 = Arg1
While (Local0)
{
Local0--
If ((DerefOf (BUF0 [Local0]) != DerefOf (BUF1 [Local0]
)))
{
Return (Zero)
}
}
Return (One)
}
OperationRegion (INFO, SystemMemory, 0x000FF840, 0x01)
Field (INFO, ByteAcc, NoLock, Preserve)
{
KBDI, 1,
RTCW, 1,
PS2F, 1,
IRFL, 2,
DISE, 1,
SSHU, 1
}
Scope (\)
{
Name (PICF, 0x00)
Method (_PIC, 1, NotSerialized) // _PIC: Interrupt Model
{
PICF = Arg0
}
}
Method (\_PTS, 1, NotSerialized) // _PTS: Prepare To Sleep
{
Local0 = (Arg0 | 0xF0)
DBG1 = Local0
OSTP ()
Local0 = (Arg0 | 0xF0)
DBG1 = Local0
If ((Arg0 == 0x01)){}
If ((Arg0 == 0x03)){}
If ((Arg0 == 0x05))
{
SMIP = 0x99
}
If ((Arg0 == 0x04))
{
If (!PICF)
{
Sleep (0x64)
}
}
}
Method (\_WAK, 1, NotSerialized) // _WAK: Wake
{
DBG1 = 0xFF
If ((Arg0 == 0x04))
{
If ((OSFL == 0x01))
{
SMIP = 0x56
}
If ((OSFL == 0x02))
{
SMIP = 0x57
}
If ((OSFL == 0x00))
{
Local0 = 0x58
If ((OSFX == 0x03))
{
Local0 = 0x59
}
SMIP = Local0
}
}
If ((Arg0 == 0x01)){}
If (OSFL)
{
Notify (\_SB.PWRB, 0x02) // Device Wake
}
ElseIf ((RTCW == 0x00))
{
Notify (\_SB.PWRB, 0x02) // Device Wake
}
Notify (\_SB.PCI0.USB0, 0x00) // Bus Check
Notify (\_SB.PCI0.USB1, 0x00) // Bus Check
Notify (\_SB.PCI0.USB2, 0x00) // Bus Check
Notify (\_SB.PCI0.USB3, 0x00) // Bus Check
Notify (\_SB.PCI0.USB4, 0x00) // Bus Check
Notify (\_SB.PCI0.USB5, 0x00) // Bus Check
}
Scope (\_SI)
{
Method (_MSG, 1, NotSerialized) // _MSG: Message
{
Local0 = Local0
}
Method (_SST, 1, NotSerialized) // _SST: System Status
{
Local0 = Local0
}
}
Scope (\_GPE)
{
Method (_L03, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.USB0, 0x02) // Device Wake
Notify (\_SB.PWRB, 0x02) // Device Wake
}
Method (_L04, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.USB1, 0x02) // Device Wake
Notify (\_SB.PWRB, 0x02) // Device Wake
}
Method (_L0C, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.USB2, 0x02) // Device Wake
Notify (\_SB.PWRB, 0x02) // Device Wake
}
Method (_L0E, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.USB3, 0x02) // Device Wake
Notify (\_SB.PWRB, 0x02) // Device Wake
}
Method (_L05, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.USB4, 0x02) // Device Wake
Notify (\_SB.PWRB, 0x02) // Device Wake
}
Method (_L20, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.USB5, 0x02) // Device Wake
Notify (\_SB.PWRB, 0x02) // Device Wake
}
Method (_L0D, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.USBE, 0x02) // Device Wake
Notify (\_SB.PCI0.USE2, 0x02) // Device Wake
Notify (\_SB.PWRB, 0x02) // Device Wake
Notify (\_SB.PCI0.AZAL, 0x02) // Device Wake
Notify (\_SB.PCI0.IGBE, 0x02) // Device Wake
}
Method (_L02, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
SWGC = 0x00
Local0 = (0x01 << 0x09)
Local2 = 0x02
Local3 = 0x01
Local4 = Local3
While (((Local4 != 0x00) && (Local2 != 0x00)))
{
Sleep (0x01)
Local2--
Local1 = (GPSS & Local0)
If ((Local1 != Local0))
{
Local4--
}
Else
{
Local4 = Local3
}
}
GPSS &= Local0
GPSE |= Local0
}
Method (_L0B, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.HUB0, 0x02) // Device Wake
}
Method (_L09, 0, NotSerialized) // _Lxx: Level-Triggered GPE
{
Notify (\_SB.PCI0.PEX0, 0x02) // Device Wake
Notify (\_SB.PCI0.PEX1, 0x02) // Device Wake
Notify (\_SB.PCI0.PEX2, 0x02) // Device Wake
Notify (\_SB.PCI0.PEX3, 0x02) // Device Wake
Notify (\_SB.PCI0.PEX4, 0x02) // Device Wake
Notify (\_SB.PCI0.PEX5, 0x02) // Device Wake
}
}
Scope (\_SB)
{
Device (PWRB)
{
Name (_HID, EisaId ("PNP0C0C") /* Power Button Device */) // _HID: Hardware ID
Method (_STA, 0, NotSerialized) // _STA: Status
{
Return (0x0B)
}
}
Device (PCI0)
{
Name (_HID, EisaId ("PNP0A03") /* PCI Bus */) // _HID: Hardware ID
Name (_ADR, 0x00) // _ADR: Address
Name (_UID, 0x01) // _UID: Unique ID
Name (_BBN, 0x00) // _BBN: BIOS Bus Number
Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State
{
If ((OSFL == 0x02))
{
Return (0x02)
}
Else
{
Return (0x03)
}
}
Method (_STA, 0, NotSerialized) // _STA: Status
{
Return (0x0F)
}
Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings
{
Name (BUF0, ResourceTemplate ()
{
WordBusNumber (ResourceConsumer, MinNotFixed, MaxNotFixed, PosDecode,
0x0000, // Granularity
0x0000, // Range Minimum
0x003F, // Range Maximum
0x0000, // Translation Offset
0x0040, // Length
,, )
IO (Decode16,
0x0CF8, // Range Minimum
0x0CF8, // Range Maximum
0x01, // Alignment
0x08, // Length
)
WordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
0x0000, // Granularity
0x0000, // Range Minimum
0x0CF7, // Range Maximum
0x0000, // Translation Offset
0x0CF8, // Length
,, , TypeStatic, DenseTranslation)
WordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
0x0000, // Granularity
0x0D00, // Range Minimum
0xFFFF, // Range Maximum
0x0000, // Translation Offset
0xF300, // Length
,, , TypeStatic, DenseTranslation)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000A0000, // Range Minimum
0x000BFFFF, // Range Maximum
0x00000000, // Translation Offset
0x00020000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000C0000, // Range Minimum
0x000DFFFF, // Range Maximum
0x00000000, // Translation Offset
0x00020000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x00100000, // Range Minimum
0xFEBFFFFF, // Range Maximum
0x00000000, // Translation Offset
0xFFF00000, // Length
,, _Y00, AddressRangeMemory, TypeStatic)
})
CreateDWordField (BUF0, \_SB.PCI0._CRS._Y00._MIN, TCMM) // _MIN: Minimum Base Address
CreateDWordField (BUF0, \_SB.PCI0._CRS._Y00._LEN, TOMM) // _LEN: Length
TCMM = (AMEM + 0x00010000)
TCMM += 0x00010000
TOMM = (0xFEC00000 - TCMM) /* \_SB_.PCI0._CRS.TCMM */
Return (BUF0) /* \_SB_.PCI0._CRS.BUF0 */
}
Name (PICM, Package (0x2B)
{
Package (0x04)
{
0x001BFFFF,
0x00,
\_SB.PCI0.LNK0,
0x00
},
Package (0x04)
{
0x0001FFFF,
0x00,
\_SB.PCI0.LNKA,
0x00
},
Package (0x04)
{
0x0001FFFF,
0x01,
\_SB.PCI0.LNKB,
0x00
},
Package (0x04)
{
0x0001FFFF,
0x02,
\_SB.PCI0.LNKC,
0x00
},
Package (0x04)
{
0x0001FFFF,
0x03,
\_SB.PCI0.LNKD,
0x00
},
Package (0x04)
{
0xFFFF,
0x00,
\_SB.PCI0.LNKA,
0x00
},
Package (0x04)
{
0xFFFF,
0x01,
\_SB.PCI0.LNKB,
0x00
},
Package (0x04)
{
0xFFFF,
0x02,
\_SB.PCI0.LNKC,
0x00
},
Package (0x04)
{
0xFFFF,
0x03,
\_SB.PCI0.LNKD,
0x00
},
Package (0x04)
{
0x0003FFFF,
0x00,
\_SB.PCI0.LNKA,
0x00
},
Package (0x04)
{
0x0003FFFF,
0x01,
\_SB.PCI0.LNKB,
0x00
},
Package (0x04)
{
0x0003FFFF,
0x02,
\_SB.PCI0.LNKC,
0x00
},
Package (0x04)
{
0x0003FFFF,
0x03,
\_SB.PCI0.LNKD,
0x00
},
Package (0x04)
{
0x0005FFFF,
0x00,
\_SB.PCI0.LNKA,
0x00
},
Package (0x04)
{
0x0005FFFF,
0x01,
\_SB.PCI0.LNKB,
0x00
},
Package (0x04)
{
0x0005FFFF,
0x02,
\_SB.PCI0.LNKC,
0x00
},
Package (0x04)
{
0x0005FFFF,
0x03,
\_SB.PCI0.LNKD,
0x00
},
Package (0x04)
{
0x0007FFFF,
0x00,
\_SB.PCI0.LNKA,
0x00
},
Package (0x04)
{
0x0007FFFF,
0x01,
\_SB.PCI0.LNKB,
0x00
},
Package (0x04)
{
0x0007FFFF,
0x02,
\_SB.PCI0.LNKC,
0x00
},
Package (0x04)
{
0x0007FFFF,
0x03,
\_SB.PCI0.LNKD,
0x00
},
Package (0x04)
{
0x0009FFFF,
0x00,
\_SB.PCI0.LNKA,
0x00
},
Package (0x04)
{
0x0009FFFF,
0x01,
\_SB.PCI0.LNKB,
0x00
},
Package (0x04)
{
0x0009FFFF,
0x02,
\_SB.PCI0.LNKC,
0x00
},
Package (0x04)
{
0x0009FFFF,
0x03,
\_SB.PCI0.LNKD,
0x00
},
Package (0x04)
{
0x001CFFFF,
0x00,
\_SB.PCI0.LNKA,
0x00
},
Package (0x04)