forked from UltraOS/ACPIDumps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AE4563D1F6CF
6326 lines (5716 loc) · 208 KB
/
AE4563D1F6CF
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 20191213
Copyright (c) 2000 - 2019 Intel Corporation
Signature Length Version Oem Oem Oem Compiler Compiler
Id TableId RevisionId Name Revision
_________ __________ ____ ________ __________ __________ _______ __________
01) SSDT 0x00001595 0x02 "CORE " "COREBOOT" 0x0000002A "CORE" 0x0000002A
02) MCFG 0x0000003C 0x01 "CORE " "COREBOOT" 0x00000000 "CORE" 0x00000000
03) APIC 0x0000006C 0x01 "CORE " "COREBOOT" 0x00000000 "CORE" 0x00000000
04) DSDT 0x0000350F 0x02 "COREv4" "COREBOOT" 0x20110725 "INTL" 0x20161222
05) DMAR 0x000000A8 0x01 "CORE " "COREBOOT" 0x00000000 "CORE" 0x00000000
06) FACP 0x000000F4 0x04 "CORE " "COREBOOT" 0x00000000 "CORE" 0x00000000
07) TCPA 0x00000032 0x02 "CORE " "COREBOOT" 0x00000000 "CORE" 0x00000000
08) HPET 0x00000038 0x01 "CORE " "COREBOOT" 0x00000000 "CORE" 0x00000000
09) FACS 0x00000040 0x01
Found 9 ACPI tables in /root/HW_PROBE/LATEST/hw.info/logs/acpidump
APIC
----
[000h 0000 4] Signature : "APIC" [Multiple APIC Description Table (MADT)]
[004h 0004 4] Table Length : 0000006C
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : 72
[00Ah 0010 6] Oem ID : "CORE "
[010h 0016 8] Oem Table ID : "COREBOOT"
[018h 0024 4] Oem Revision : 00000000
[01Ch 0028 4] Asl Compiler ID : "CORE"
[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 : 01
[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 : 02
[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 : 03
[048h 0072 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[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 01 72 43 4F 52 45 20 20 // APICl....rCORE
0010: 43 4F 52 45 42 4F 4F 54 00 00 00 00 43 4F 52 45 // COREBOOT....CORE
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 01 01 00 00 00 00 08 02 02 // ................
0040: 01 00 00 00 00 08 03 03 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 // ............
DMAR
----
[000h 0000 4] Signature : "DMAR" [DMA Remapping table]
[004h 0004 4] Table Length : 000000A8
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : E8
[00Ah 0010 6] Oem ID : "CORE "
[010h 0016 8] Oem Table ID : "COREBOOT"
[018h 0024 4] Oem Revision : 00000000
[01Ch 0028 4] Asl Compiler ID : "CORE"
[020h 0032 4] Asl Compiler Revision : 00000000
[024h 0036 1] Host Address Width : 23
[025h 0037 1] Flags : 01
[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 : 0020
[034h 0052 1] Flags : 00
[035h 0053 1] Reserved : 00
[036h 0054 2] PCI Segment Number : 0000
[038h 0056 8] Register Base Address : 00000000FED90000
[040h 0064 1] Device Scope Type : 01 [PCI Endpoint Device]
[041h 0065 1] Entry Length : 08
[042h 0066 2] Reserved : 0000
[044h 0068 1] Enumeration ID : 00
[045h 0069 1] PCI Bus Number : 00
[046h 0070 2] PCI Path : 02,00
[048h 0072 1] Device Scope Type : 01 [PCI Endpoint Device]
[049h 0073 1] Entry Length : 08
[04Ah 0074 2] Reserved : 0000
[04Ch 0076 1] Enumeration ID : 00
[04Dh 0077 1] PCI Bus Number : 00
[04Eh 0078 2] PCI Path : 02,01
[050h 0080 2] Subtable Type : 0000 [Hardware Unit Definition]
[052h 0082 2] Length : 0058
[054h 0084 1] Flags : 01
[055h 0085 1] Reserved : 00
[056h 0086 2] PCI Segment Number : 0000
[058h 0088 8] Register Base Address : 00000000FED91000
[060h 0096 1] Device Scope Type : 03 [IOAPIC Device]
[061h 0097 1] Entry Length : 08
[062h 0098 2] Reserved : 0000
[064h 0100 1] Enumeration ID : 02
[065h 0101 1] PCI Bus Number : FA
[066h 0102 2] PCI Path : 1F,00
[068h 0104 1] Device Scope Type : 04 [Message-capable HPET Device]
[069h 0105 1] Entry Length : 08
[06Ah 0106 2] Reserved : 0000
[06Ch 0108 1] Enumeration ID : 00
[06Dh 0109 1] PCI Bus Number : FA
[06Eh 0110 2] PCI Path : 0F,00
[070h 0112 1] Device Scope Type : 04 [Message-capable HPET Device]
[071h 0113 1] Entry Length : 08
[072h 0114 2] Reserved : 0000
[074h 0116 1] Enumeration ID : 00
[075h 0117 1] PCI Bus Number : FA
[076h 0118 2] PCI Path : 0F,01
[078h 0120 1] Device Scope Type : 04 [Message-capable HPET Device]
[079h 0121 1] Entry Length : 08
[07Ah 0122 2] Reserved : 0000
[07Ch 0124 1] Enumeration ID : 00
[07Dh 0125 1] PCI Bus Number : FA
[07Eh 0126 2] PCI Path : 0F,02
[080h 0128 1] Device Scope Type : 04 [Message-capable HPET Device]
[081h 0129 1] Entry Length : 08
[082h 0130 2] Reserved : 0000
[084h 0132 1] Enumeration ID : 00
[085h 0133 1] PCI Bus Number : FA
[086h 0134 2] PCI Path : 0F,03
[088h 0136 1] Device Scope Type : 04 [Message-capable HPET Device]
[089h 0137 1] Entry Length : 08
[08Ah 0138 2] Reserved : 0000
[08Ch 0140 1] Enumeration ID : 00
[08Dh 0141 1] PCI Bus Number : FA
[08Eh 0142 2] PCI Path : 0F,04
[090h 0144 1] Device Scope Type : 04 [Message-capable HPET Device]
[091h 0145 1] Entry Length : 08
[092h 0146 2] Reserved : 0000
[094h 0148 1] Enumeration ID : 00
[095h 0149 1] PCI Bus Number : FA
[096h 0150 2] PCI Path : 0F,05
[098h 0152 1] Device Scope Type : 04 [Message-capable HPET Device]
[099h 0153 1] Entry Length : 08
[09Ah 0154 2] Reserved : 0000
[09Ch 0156 1] Enumeration ID : 00
[09Dh 0157 1] PCI Bus Number : FA
[09Eh 0158 2] PCI Path : 0F,06
[0A0h 0160 1] Device Scope Type : 04 [Message-capable HPET Device]
[0A1h 0161 1] Entry Length : 08
[0A2h 0162 2] Reserved : 0000
[0A4h 0164 1] Enumeration ID : 00
[0A5h 0165 1] PCI Bus Number : FA
[0A6h 0166 2] PCI Path : 0F,07
Raw Table Data: Length 168 (0xA8)
0000: 44 4D 41 52 A8 00 00 00 01 E8 43 4F 52 45 20 20 // DMAR......CORE
0010: 43 4F 52 45 42 4F 4F 54 00 00 00 00 43 4F 52 45 // COREBOOT....CORE
0020: 00 00 00 00 23 01 00 00 00 00 00 00 00 00 00 00 // ....#...........
0030: 00 00 20 00 00 00 00 00 00 00 D9 FE 00 00 00 00 // .. .............
0040: 01 08 00 00 00 00 02 00 01 08 00 00 00 00 02 01 // ................
0050: 00 00 58 00 01 00 00 00 00 10 D9 FE 00 00 00 00 // ..X.............
0060: 03 08 00 00 02 FA 1F 00 04 08 00 00 00 FA 0F 00 // ................
0070: 04 08 00 00 00 FA 0F 01 04 08 00 00 00 FA 0F 02 // ................
0080: 04 08 00 00 00 FA 0F 03 04 08 00 00 00 FA 0F 04 // ................
0090: 04 08 00 00 00 FA 0F 05 04 08 00 00 00 FA 0F 06 // ................
00A0: 04 08 00 00 00 FA 0F 07 // ........
DSDT
----
DefinitionBlock ("", "DSDT", 2, "COREv4", "COREBOOT", 0x20110725)
{
External (_PR_.CP00, DeviceObj)
External (_PR_.CP00._PSS, UnknownObj)
External (_PR_.CP01, DeviceObj)
External (_PR_.CP02, DeviceObj)
External (_PR_.CP03, DeviceObj)
External (_PR_.CP04, DeviceObj)
External (_PR_.CP05, DeviceObj)
External (_PR_.CP06, DeviceObj)
External (_PR_.CP07, DeviceObj)
External (_SB_.PCI0.GFX0.LCD0, DeviceObj)
External (_TZ_.SKIN, UnknownObj)
External (_TZ_.THRM, UnknownObj)
External (NVSA, UnknownObj)
Scope (\)
{
Name (NVSA, 0xBFF16000)
}
OperationRegion (APMP, SystemIO, 0xB2, 0x02)
Field (APMP, ByteAcc, NoLock, Preserve)
{
APMC, 8,
APMS, 8
}
OperationRegion (POST, SystemIO, 0x80, One)
Field (POST, ByteAcc, Lock, Preserve)
{
DBG0, 8
}
Method (TRAP, 1, Serialized)
{
SMIF = Arg0
TRP0 = Zero
Return (SMIF) /* \SMIF */
}
Method (_PIC, 1, NotSerialized) // _PIC: Interrupt Model
{
PICM = Arg0
}
Method (_PTS, 1, NotSerialized) // _PTS: Prepare To Sleep
{
\_SB.PCI0.LPCB.EC.MUTE (One)
\_SB.PCI0.LPCB.EC.USBP (Zero)
\_SB.PCI0.LPCB.EC.RADI (Zero)
}
Method (_WAK, 1, NotSerialized) // _WAK: Wake
{
\_TZ.MEB1 = Zero
\_TZ.MEB2 = Zero
Return (Package (0x02)
{
Zero,
Zero
})
}
Name (PICM, Zero)
Name (DSEN, One)
OperationRegion (GNVS, SystemMemory, NVSA, 0x0F00)
Field (GNVS, ByteAcc, NoLock, 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,
TLVL, 8,
FLVL, 8,
TCRT, 8,
TPSV, 8,
TMAX, 8,
F0OF, 8,
F0ON, 8,
F0PW, 8,
F1OF, 8,
F1ON, 8,
F1PW, 8,
F2OF, 8,
F2ON, 8,
F2PW, 8,
F3OF, 8,
F3ON, 8,
F3PW, 8,
F4OF, 8,
F4ON, 8,
F4PW, 8,
TMPS, 8,
Offset (0x28),
APIC, 8,
MPEN, 8,
PCP0, 8,
PCP1, 8,
PPCM, 8,
PCNT, 8,
Offset (0x32),
NATP, 8,
S5U0, 8,
S5U1, 8,
S3U0, 8,
S3U1, 8,
S33G, 8,
CMEM, 32,
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,
Offset (0x64),
BLCS, 8,
BRTL, 8,
ODDS, 8,
Offset (0x6E),
ALSE, 8,
ALAF, 8,
LLOW, 8,
LHIH, 8,
Offset (0x78),
EMAE, 8,
EMAP, 16,
EMAL, 16,
Offset (0x82),
MEFE, 8,
Offset (0x8C),
TPMP, 8,
TPME, 8,
Offset (0x96),
GTF0, 56,
GTF1, 56,
GTF2, 56,
IDEM, 8,
IDET, 8,
Offset (0xB2),
XHCI, 8,
Offset (0xB4),
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,
ISCI, 8,
PAVP, 8,
Offset (0xEB),
OSCC, 8,
NPCE, 8,
PLFL, 8,
BREV, 8,
DPBM, 8,
DPCM, 8,
DPDM, 8,
ALFP, 8,
IMON, 8,
MMIO, 8,
TPIQ, 8,
Offset (0x100),
VBT0, 32,
VBT1, 32,
VBT2, 32,
VBT3, 16,
VBT4, 2048,
VBT5, 512,
VBT6, 512,
VBT7, 32,
VBT8, 32,
VBT9, 32,
CHVD, 24576,
VBTA, 32,
MEHH, 256,
RMOB, 32,
RMOL, 32
}
Method (S3UE, 0, NotSerialized)
{
S3U0 = One
S3U1 = One
}
Method (S3UD, 0, NotSerialized)
{
S3U0 = Zero
S3U1 = Zero
}
Method (S5UE, 0, NotSerialized)
{
S5U0 = One
S5U1 = One
}
Method (S5UD, 0, NotSerialized)
{
S5U0 = Zero
S5U1 = Zero
}
Method (S3GE, 0, NotSerialized)
{
S33G = One
}
Method (S3GD, 0, NotSerialized)
{
S33G = Zero
}
Method (XHCE, 0, NotSerialized)
{
XHCI = One
}
Method (XHCD, 0, NotSerialized)
{
XHCI = Zero
}
Method (TZUP, 0, NotSerialized)
{
If (CondRefOf (\_TZ.THRM))
{
Notify (\_TZ.THRM, 0x81) // Information Change
}
If (CondRefOf (\_TZ.SKIN))
{
Notify (\_TZ.SKIN, 0x81) // Information Change
}
}
Method (F0UT, 2, NotSerialized)
{
F0OF = Arg0
F0ON = Arg1
TZUP ()
}
Method (F1UT, 2, NotSerialized)
{
F1OF = Arg0
F1ON = Arg1
TZUP ()
}
Method (F2UT, 2, NotSerialized)
{
F2OF = Arg0
F2ON = Arg1
TZUP ()
}
Method (F3UT, 2, NotSerialized)
{
F3OF = Arg0
F3ON = Arg1
TZUP ()
}
Method (F4UT, 2, NotSerialized)
{
F4OF = Arg0
F4ON = Arg1
TZUP ()
}
Method (TMPU, 1, NotSerialized)
{
TMPS = Arg0
TZUP ()
}
Method (PNOT, 0, NotSerialized)
{
If ((PCNT >= 0x02))
{
Notify (\_PR.CP00, 0x81) // Information Change
Notify (\_PR.CP01, 0x81) // Information Change
}
If ((PCNT >= 0x04))
{
Notify (\_PR.CP02, 0x81) // Information Change
Notify (\_PR.CP03, 0x81) // Information Change
}
If ((PCNT >= 0x08))
{
Notify (\_PR.CP04, 0x81) // Information Change
Notify (\_PR.CP05, 0x81) // Information Change
Notify (\_PR.CP06, 0x81) // Information Change
Notify (\_PR.CP07, 0x81) // Information Change
}
}
Method (PPCN, 0, NotSerialized)
{
If ((PCNT >= 0x02))
{
Notify (\_PR.CP00, 0x80) // Status Change
Notify (\_PR.CP01, 0x80) // Status Change
}
If ((PCNT >= 0x04))
{
Notify (\_PR.CP02, 0x80) // Status Change
Notify (\_PR.CP03, 0x80) // Status Change
}
If ((PCNT >= 0x08))
{
Notify (\_PR.CP04, 0x80) // Status Change
Notify (\_PR.CP05, 0x80) // Status Change
Notify (\_PR.CP06, 0x80) // Status Change
Notify (\_PR.CP07, 0x80) // Status Change
}
}
Method (TNOT, 0, NotSerialized)
{
If ((PCNT >= 0x02))
{
Notify (\_PR.CP00, 0x82) // Device-Specific Change
Notify (\_PR.CP01, 0x82) // Device-Specific Change
}
If ((PCNT >= 0x04))
{
Notify (\_PR.CP02, 0x82) // Device-Specific Change
Notify (\_PR.CP03, 0x82) // Device-Specific Change
}
If ((PCNT >= 0x08))
{
Notify (\_PR.CP04, 0x82) // Device-Specific Change
Notify (\_PR.CP05, 0x82) // Device-Specific Change
Notify (\_PR.CP06, 0x82) // Device-Specific Change
Notify (\_PR.CP07, 0x82) // Device-Specific Change
}
}
Method (PPKG, 0, NotSerialized)
{
If ((PCNT >= 0x08))
{
Return (Package (0x08)
{
\_PR.CP00,
\_PR.CP01,
\_PR.CP02,
\_PR.CP03,
\_PR.CP04,
\_PR.CP05,
\_PR.CP06,
\_PR.CP07
})
}
ElseIf ((PCNT >= 0x04))
{
Return (Package (0x04)
{
\_PR.CP00,
\_PR.CP01,
\_PR.CP02,
\_PR.CP03
})
}
ElseIf ((PCNT >= 0x02))
{
Return (Package (0x02)
{
\_PR.CP00,
\_PR.CP01
})
}
Else
{
Return (Package (0x01)
{
\_PR.CP00
})
}
}
Scope (_SB)
{
Device (PCI0)
{
Name (_HID, EisaId ("PNP0A08") /* PCI Express Bus */) // _HID: Hardware ID
Name (_CID, EisaId ("PNP0A03") /* PCI Bus */) // _CID: Compatible ID
Name (_ADR, Zero) // _ADR: Address
Name (_BBN, Zero) // _BBN: BIOS Bus Number
Device (MCHC)
{
Name (_ADR, Zero) // _ADR: Address
OperationRegion (MCHP, PCI_Config, Zero, 0x0100)
Field (MCHP, DWordAcc, NoLock, Preserve)
{
Offset (0x40),
EPEN, 1,
, 11,
EPBR, 24,
Offset (0x48),
MHEN, 1,
, 13,
MHBR, 22,
Offset (0x60),
PXEN, 1,
PXSZ, 2,
, 23,
PXBR, 10,
Offset (0x68),
DMEN, 1,
, 11,
DMBR, 24,
Offset (0x70),
MEBA, 64,
Offset (0x80),
, 4,
PM0H, 2,
Offset (0x81),
PM1L, 2,
, 2,
PM1H, 2,
Offset (0x82),
PM2L, 2,
, 2,
PM2H, 2,
Offset (0x83),
PM3L, 2,
, 2,
PM3H, 2,
Offset (0x84),
PM4L, 2,
, 2,
PM4H, 2,
Offset (0x85),
PM5L, 2,
, 2,
PM5H, 2,
Offset (0x86),
PM6L, 2,
, 2,
PM6H, 2,
Offset (0x87),
Offset (0xA0),
TOM, 64,
Offset (0xBC),
TLUD, 32
}
Mutex (CTCM, 0x01)
Name (CTCC, Zero)
Name (CTCN, Zero)
Name (CTCD, One)
Name (CTCU, 0x02)
OperationRegion (MCHB, SystemMemory, 0xFED10000, 0x8000)
Field (MCHB, DWordAcc, Lock, Preserve)
{
Offset (0x5930),
CTDN, 15,
Offset (0x59A0),
PL1V, 15,
PL1E, 1,
PL1C, 1,
PL1T, 7,
Offset (0x59A4),
PL2V, 15,
PL2E, 1,
PL2C, 1,
PL2T, 7,
Offset (0x5F3C),
TARN, 8,
Offset (0x5F40),
CTDD, 15,
Offset (0x5F42),
TARD, 8,
Offset (0x5F48),
CTDU, 15,
Offset (0x5F4A),
TARU, 8,
Offset (0x5F50),
CTCS, 2,
Offset (0x5F54),
TARS, 8
}
Method (PSSS, 1, NotSerialized)
{
Local0 = One
Local1 = SizeOf (\_PR.CP00._PSS)
While ((Local0 < Local1))
{
Local2 = (DerefOf (DerefOf (\_PR.CP00._PSS [Local0]) [0x04]) >> 0x08)
If ((Local2 == Arg0))
{
Return ((Local0 - One))
}
Local0++
}
Return (Zero)
}
Method (STND, 0, Serialized)
{
If (Acquire (CTCM, 0x0064))
{
Return (Zero)
}
If ((CTCD == CTCC))
{
Release (CTCM)
Return (Zero)
}
Debug = "Set TDP Down"
CTCS = CTCD /* \_SB_.PCI0.MCHC.CTCD */
TARS = TARD /* \_SB_.PCI0.MCHC.TARD */
PPCM = PSSS (TARD)
PPCN ()
PL2V = ((CTDD * 0x7D) / 0x64)
PL1V = CTDD /* \_SB_.PCI0.MCHC.CTDD */
CTCC = CTCD /* \_SB_.PCI0.MCHC.CTCD */
Release (CTCM)
Return (One)
}
Method (STDN, 0, Serialized)
{
If (Acquire (CTCM, 0x0064))
{
Return (Zero)
}
If ((CTCN == CTCC))
{
Release (CTCM)
Return (Zero)
}
Debug = "Set TDP Nominal"
PL1V = CTDN /* \_SB_.PCI0.MCHC.CTDN */
PL2V = ((CTDN * 0x7D) / 0x64)
PPCM = PSSS (TARN)
PPCN ()
TARS = TARN /* \_SB_.PCI0.MCHC.TARN */
CTCS = CTCN /* \_SB_.PCI0.MCHC.CTCN */
CTCC = CTCN /* \_SB_.PCI0.MCHC.CTCN */
Release (CTCM)
Return (One)
}
}
Name (MCRS, ResourceTemplate ()
{
WordBusNumber (ResourceProducer, MinFixed, MaxFixed, PosDecode,
0x0000, // Granularity
0x0000, // Range Minimum
0x00FF, // Range Maximum
0x0000, // Translation Offset
0x0100, // Length
,, )
DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
0x00000000, // Granularity
0x00000000, // Range Minimum
0x00000CF7, // Range Maximum
0x00000000, // Translation Offset
0x00000CF8, // Length
,, , TypeStatic, DenseTranslation)
IO (Decode16,
0x0CF8, // Range Minimum
0x0CF8, // Range Maximum
0x01, // Alignment
0x08, // Length
)
DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
0x00000000, // Granularity
0x00000D00, // Range Minimum
0x0000FFFF, // Range Maximum
0x00000000, // Translation Offset
0x0000F300, // 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
0x000C3FFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000C4000, // Range Minimum
0x000C7FFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000C8000, // Range Minimum
0x000CBFFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000CC000, // Range Minimum
0x000CFFFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000D0000, // Range Minimum
0x000D3FFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000D4000, // Range Minimum
0x000D7FFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000D8000, // Range Minimum
0x000DBFFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000DC000, // Range Minimum
0x000DFFFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000E0000, // Range Minimum
0x000E3FFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000E4000, // Range Minimum
0x000E7FFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000E8000, // Range Minimum
0x000EBFFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000EC000, // Range Minimum
0x000EFFFF, // Range Maximum
0x00000000, // Translation Offset
0x00004000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x000F0000, // Range Minimum
0x000FFFFF, // Range Maximum
0x00000000, // Translation Offset
0x00010000, // Length
,, , AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0x00000000, // Range Minimum
0x00000000, // Range Maximum
0x00000000, // Translation Offset
0x00000000, // Length
,, _Y00, AddressRangeMemory, TypeStatic)
DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
0x00000000, // Granularity
0xFED40000, // Range Minimum
0xFED44FFF, // Range Maximum
0x00000000, // Translation Offset
0x00005000, // Length
,, , AddressRangeMemory, TypeStatic)
})
Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings
{
CreateDWordField (MCRS, \_SB.PCI0._Y00._MIN, PMIN) // _MIN: Minimum Base Address
CreateDWordField (MCRS, \_SB.PCI0._Y00._MAX, PMAX) // _MAX: Maximum Base Address
CreateDWordField (MCRS, \_SB.PCI0._Y00._LEN, PLEN) // _LEN: Length
Local0 = ^MCHC.TLUD /* \_SB_.PCI0.MCHC.TLUD */
Local1 = ^MCHC.MEBA /* \_SB_.PCI0.MCHC.MEBA */