forked from linuxhw/ACPI
-
Notifications
You must be signed in to change notification settings - Fork 3
/
822ED952E415
17038 lines (15593 loc) · 500 KB
/
822ED952E415
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 20200925
Copyright (c) 2000 - 2020 Intel Corporation
Signature Length Version Oem Oem Oem Compiler Compiler
Id TableId RevisionId Name Revision
_________ __________ ____ ________ __________ __________ _______ __________
01) SSDT 0x0000088C 0x01 "A M I " "POWERNOW" 0x00000001 "AMD " 0x00000001
02) MCFG 0x0000003C 0x01 "080912" "OEMMCFG " 0x20120809 "MSFT" 0x00000097
03) APIC 0x0000007C 0x01 "080912" "APIC1543" 0x20120809 "MSFT" 0x00000097
04) OEMB 0x00000072 0x01 "080912" "OEMB1543" 0x20120809 "MSFT" 0x00000097
05) DSDT 0x0000E65B 0x01 "A1638 " "A1638001" 0x00000001 "INTL" 0x20060113
06) SRAT 0x000000E8 0x01 "AMD " "FAM_F_10" 0x00000002 "AMD " 0x00000001
07) FACP 0x000000F4 0x03 "080912" "FACP1543" 0x20120809 "MSFT" 0x00000097
08) HPET 0x00000038 0x01 "080912" "OEMHPET " 0x20120809 "MSFT" 0x00000097
09) FACS 0x00000040 0x01
Found 9 ACPI tables in acpidump
APIC
----
[000h 0000 4] Signature : "APIC" [Multiple APIC Description Table (MADT)]
[004h 0004 4] Table Length : 0000007C
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : F3
[00Ah 0010 6] Oem ID : "080912"
[010h 0016 8] Oem Table ID : "APIC1543"
[018h 0024 4] Oem Revision : 20120809
[01Ch 0028 4] Asl Compiler ID : "MSFT"
[020h 0032 4] Asl Compiler Revision : 00000097
[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
Runtime Online Capable : 0
[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 : 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 : 03
[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 : 04
[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 : 00 [Processor Local APIC]
[04Dh 0077 1] Length : 08
[04Eh 0078 1] Processor ID : 05
[04Fh 0079 1] Local Apic ID : 84
[050h 0080 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[054h 0084 1] Subtable Type : 00 [Processor Local APIC]
[055h 0085 1] Length : 08
[056h 0086 1] Processor ID : 06
[057h 0087 1] Local Apic ID : 85
[058h 0088 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[05Ch 0092 1] Subtable Type : 01 [I/O APIC]
[05Dh 0093 1] Length : 0C
[05Eh 0094 1] I/O Apic ID : 04
[05Fh 0095 1] Reserved : 00
[060h 0096 4] Address : FEC00000
[064h 0100 4] Interrupt : 00000000
[068h 0104 1] Subtable Type : 02 [Interrupt Source Override]
[069h 0105 1] Length : 0A
[06Ah 0106 1] Bus : 00
[06Bh 0107 1] Source : 00
[06Ch 0108 4] Interrupt : 00000002
[070h 0112 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[072h 0114 1] Subtable Type : 02 [Interrupt Source Override]
[073h 0115 1] Length : 0A
[074h 0116 1] Bus : 00
[075h 0117 1] Source : 09
[076h 0118 4] Interrupt : 00000009
[07Ah 0122 2] Flags (decoded below) : 000F
Polarity : 3
Trigger Mode : 3
Raw Table Data: Length 124 (0x7C)
0000: 41 50 49 43 7C 00 00 00 01 F3 30 38 30 39 31 32 // APIC|.....080912
0010: 41 50 49 43 31 35 34 33 09 08 12 20 4D 53 46 54 // APIC1543... MSFT
0020: 97 00 00 00 00 00 E0 FE 01 00 00 00 00 08 01 00 // ................
0030: 01 00 00 00 00 08 02 01 01 00 00 00 00 08 03 02 // ................
0040: 01 00 00 00 00 08 04 03 01 00 00 00 00 08 05 84 // ................
0050: 00 00 00 00 00 08 06 85 00 00 00 00 01 0C 04 00 // ................
0060: 00 00 C0 FE 00 00 00 00 02 0A 00 00 02 00 00 00 // ................
0070: 00 00 02 0A 00 09 09 00 00 00 0F 00 // ............
DSDT
----
DefinitionBlock ("", "DSDT", 1, "A1638", "A1638001", 0x00000001)
{
Name (OSTY, Ones)
OperationRegion (ACMS, SystemIO, 0x72, 0x10)
Field (ACMS, ByteAcc, NoLock, Preserve)
{
ICMS, 8,
DCMS, 8,
Offset (0x0E),
P80, 8
}
IndexField (ICMS, DCMS, ByteAcc, NoLock, Preserve)
{
Offset (0x01),
Offset (0x04),
Offset (0x08),
BS_A, 32
}
OperationRegion (CFGS, SystemMemory, BS_A, 0x0100)
Field (CFGS, AnyAcc, NoLock, Preserve)
{
Offset (0x0C),
PCIE, 32,
Offset (0x7F),
, 5,
GGN2, 1,
Offset (0x87),
GECE, 1,
IR_E, 1,
Offset (0x93),
, 5,
OSCF, 1,
Offset (0x9E),
PRS0, 1,
DET0, 1,
Offset (0xA2),
PRS1, 1,
DET1, 1,
Offset (0xA6),
PRS2, 1,
DET2, 1,
Offset (0xAA),
PRS3, 1,
DET3, 1,
Offset (0xB2),
, 6,
ABPS, 1,
, 3,
GPPS, 1
}
OperationRegion (CMPT, SystemIO, 0x0C50, 0x03)
Field (CMPT, ByteAcc, NoLock, Preserve)
{
CMID, 8,
, 6,
GPCT, 2,
GP0I, 1,
GP1I, 1,
GP2I, 1,
GP3I, 1,
GP4I, 1,
GP5I, 1,
GP6I, 1,
GP7I, 1
}
OperationRegion (PCFG, SystemMemory, PCIE, 0x02000000)
Field (PCFG, AnyAcc, NoLock, Preserve)
{
Offset (0x20078),
Offset (0x2007A),
PMSA, 1,
Offset (0x28078),
Offset (0x2807A),
PMSB, 1,
Offset (0x48078),
Offset (0x4807A),
PMSC, 1,
Offset (0x8800A),
STCL, 16,
Offset (0x880FC),
RMBA, 32,
Offset (0xA0004),
SMIE, 1,
SMME, 1,
Offset (0xA0008),
RVID, 8,
Offset (0xA0014),
SMB1, 32,
Offset (0xA0082),
, 2,
G31O, 1,
Offset (0xA00E1),
, 6,
ACIR, 1,
Offset (0xA4004),
PCMD, 2,
Offset (0xA807A),
PMS0, 1,
Offset (0xA8088),
TLS0, 4,
Offset (0xA907A),
PMS1, 1,
Offset (0xA9088),
TLS1, 4,
Offset (0xAA07A),
PMS2, 1,
Offset (0xAA088),
TLS2, 4,
Offset (0xAB07A),
PMS3, 1,
Offset (0xAB088),
TLS3, 4
}
OperationRegion (RMEM, SystemMemory, RMBA, 0x0200)
Field (RMEM, AnyAcc, NoLock, Preserve)
{
Offset (0x04),
RMLN, 32
}
OperationRegion (PMIO, SystemIO, 0x0CD6, 0x02)
Field (PMIO, ByteAcc, NoLock, Preserve)
{
INPM, 8,
DAPM, 8
}
IndexField (INPM, DAPM, ByteAcc, NoLock, Preserve)
{
Offset (0x24),
MMSO, 32,
Offset (0x60),
P1EB, 16
}
OperationRegion (ERMM, SystemMemory, MMSO, 0x1000)
Field (ERMM, AnyAcc, NoLock, Preserve)
{
Offset (0x132),
, 7,
GP51, 1,
Offset (0x136),
, 7,
GP55, 1,
Offset (0x13A),
, 7,
GP59, 1,
Offset (0x13D),
GP62, 8,
Offset (0x13F),
, 7,
GP64, 1,
Offset (0x16A),
, 7,
GE11, 1,
, 7,
GE12, 1,
Offset (0x16E),
, 7,
BATS, 1,
Offset (0x1AD),
, 6,
G173, 1,
Offset (0x287),
, 1,
CLPS, 1,
Offset (0x298),
, 7,
G15A, 1,
Offset (0x2AF),
, 2,
SLPS, 2,
Offset (0x376),
EPNM, 1,
DPPF, 1,
Offset (0x3BA),
, 6,
PWDE, 1,
Offset (0x3BD),
, 5,
ALLS, 1,
Offset (0x3EF),
PHYD, 1,
, 1,
, 1,
US5R, 1,
Offset (0x3F5),
GECD, 1
}
OperationRegion (ABIO, SystemIO, 0x0CD8, 0x08)
Field (ABIO, DWordAcc, NoLock, Preserve)
{
INAB, 32,
DAAB, 32
}
Method (RDAB, 1, NotSerialized)
{
INAB = Arg0
Return (DAAB) /* \DAAB */
}
Method (WTAB, 2, NotSerialized)
{
INAB = Arg0
DAAB = Arg1
}
Method (RWAB, 3, NotSerialized)
{
Local0 = (RDAB (Arg0) & Arg1)
Local1 = (Local0 | Arg2)
WTAB (Arg0, Local1)
}
Method (CABR, 3, NotSerialized)
{
Local0 = (Arg0 << 0x05)
Local1 = (Local0 + Arg1)
Local2 = (Local1 << 0x18)
Local3 = (Local2 + Arg2)
Return (Local3)
}
Method (GHPS, 2, NotSerialized)
{
If ((Arg0 == Zero))
{
If ((Arg1 == Zero))
{
RWAB (CABR (0x06, Zero, 0xC0), 0xFFFFEFFF, Zero)
RWAB (CABR (One, Zero, 0x65), 0xFFFFFEFE, Zero)
DET0 = One
}
If ((Arg1 == 0x02))
{
RWAB (CABR (0x06, Zero, 0xC0), 0xFFFFBFFF, Zero)
RWAB (CABR (One, Zero, 0x65), 0xFFFFFBFB, Zero)
DET2 = One
}
Stall (0xC8)
}
If ((Arg0 == One))
{
If ((Arg1 == Zero))
{
RWAB (CABR (0x06, Zero, 0xC0), 0xFFFFEFFF, 0x1000)
RWAB (CABR (One, Zero, 0x65), 0xFFFFFEFE, 0x0101)
DET0 = Zero
}
If ((Arg1 == 0x02))
{
RWAB (CABR (0x06, Zero, 0xC0), 0xFFFFBFFF, 0x4000)
RWAB (CABR (One, Zero, 0x65), 0xFFFFFBFB, 0x0404)
DET2 = Zero
}
Stall (0xC8)
}
If (GGN2)
{
If ((Arg0 == Zero))
{
GEN2 ()
Local0 = RDAB (CABR (0x03, 0x02, 0xA5))
Local0 &= 0xFF
Local1 = 0x01F4
While (((Local1 > Zero) && (Local0 != 0x10)))
{
Local0 = RDAB (CABR (0x03, 0x02, 0xA5))
Local0 &= 0xFF
Local1--
Stall (0xC8)
Stall (0xC8)
}
If ((Local0 != 0x10))
{
GEN1 ()
}
}
}
}
Method (GEN2, 0, NotSerialized)
{
TLS2 = 0x02
RWAB (CABR (0x03, 0x02, 0xA4), 0xFFFFFFFE, One)
RWAB (CABR (0x03, 0x02, 0xA2), 0xFFFFDFFF, 0x2000)
RWAB (CABR (0x03, 0x02, 0xC0), 0xFFFF7FFF, 0x8000)
RWAB (CABR (0x03, 0x02, 0xA4), 0xDFFFFFFF, 0x20000000)
Stall (0xC8)
Stall (0xC8)
}
Method (GEN1, 0, NotSerialized)
{
TLS2 = One
RWAB (CABR (0x03, 0x02, 0xA4), 0xFFFFFFFE, Zero)
RWAB (CABR (0x03, 0x02, 0xA2), 0xFFFFDFFF, 0x2000)
Stall (0xC8)
Stall (0xC8)
}
OperationRegion (P1E0, SystemIO, P1EB, 0x04)
Field (P1E0, ByteAcc, NoLock, Preserve)
{
, 14,
PEWS, 1,
WSTA, 1,
, 14,
PEWD, 1
}
Method (SPTS, 1, NotSerialized)
{
PCMD = One
P80 = Arg0
CPMS ()
CPMS ()
PEWS = One
}
Method (SWAK, 1, NotSerialized)
{
CPMS ()
CPMS ()
PEWS = One
}
Method (TRMD, 1, NotSerialized)
{
}
Method (CPMS, 0, NotSerialized)
{
If ((EPNM == Zero))
{
PMSA = One
PMSB = One
PMSC = One
PMS0 = One
PMS1 = One
PMS2 = One
PMS3 = One
}
}
Scope (_GPE)
{
}
Method (NPTS, 1, NotSerialized)
{
}
Method (NWAK, 1, NotSerialized)
{
}
Name (DP80, 0x80)
Name (DP90, 0x90)
Name (SPIO, 0x2E)
Name (IOPB, 0x0230)
Name (IOPL, 0x10)
Name (IOEL, 0x10)
Name (IOGB, 0x0300)
Name (IOGL, 0x10)
Name (IOSB, 0x0A30)
Name (IOSL, 0x10)
Name (ATSW, 0xE5)
Name (APIC, One)
Name (PMBS, 0x0800)
Name (PMLN, 0xA0)
Name (GPBS, Zero)
Name (GPLN, Zero)
Name (SMB0, 0x0B00)
Name (SMBB, 0x0B20)
Name (SMBM, 0x20)
Name (SMBL, 0x20)
Name (AODS, 0xF5)
Name (SMIP, 0xB0)
Name (ACSS, One)
Name (SBA1, 0x0B00)
Name (SBA2, 0x0B20)
Name (SIOP, 0x2E)
Name (GIOB, 0x0300)
Name (T1OF, Zero)
Name (T2OF, Zero)
Name (T3OF, Zero)
Name (CQST, 0x3C)
Name (PCIB, 0xE0000000)
Name (PCIL, 0x10000000)
Name (PEHP, One)
Name (SHPC, Zero)
Name (PEPM, One)
Name (PEER, One)
Name (PECS, One)
Name (SMBS, 0x0B20)
Name (SMIO, 0xB0)
Name (IOEB, 0x0290)
Name (ATIE, 0xE0000000)
Name (IO1B, 0x0300)
Name (SBRV, 0x0CD0)
OperationRegion (BIOS, SystemMemory, 0xCFFA8064, 0xFF)
Field (BIOS, ByteAcc, NoLock, Preserve)
{
SS1, 1,
SS2, 1,
SS3, 1,
SS4, 1,
Offset (0x01),
IOST, 16,
TOPM, 32,
ROMS, 32,
MG1B, 32,
MG1L, 32,
MG2B, 32,
MG2L, 32,
Offset (0x1C),
DMAX, 8,
HPTA, 32,
CPB0, 32,
CPB1, 32,
CPB2, 32,
CPB3, 32,
ASSB, 8,
AOTB, 8,
AAXB, 32,
SMIF, 8,
DTSE, 8,
DTS1, 8,
DTS2, 8,
MPEN, 8,
TPMF, 8,
MG3B, 32,
MG3L, 32,
MH1B, 32,
MH1L, 32,
OSTP, 8
}
Method (RRIO, 4, NotSerialized)
{
Debug = "RRIO"
}
Method (RDMA, 3, NotSerialized)
{
Debug = "rDMA"
}
Name (PICM, Zero)
Method (_PIC, 1, NotSerialized) // _PIC: Interrupt Model
{
If (Arg0)
{
DBG8 = 0xAA
}
Else
{
DBG8 = 0xAC
}
PICM = Arg0
}
Name (OSVR, Ones)
Method (OSFL, 0, NotSerialized)
{
If ((OSVR != Ones))
{
Return (OSVR) /* \OSVR */
}
Name (TTT0, Zero)
TTT0 = OSYS ()
If ((TTT0 == One))
{
OSVR = 0x03
}
ElseIf ((TTT0 == 0x10))
{
OSVR = One
}
ElseIf ((TTT0 == 0x11))
{
OSVR = 0x02
}
ElseIf ((TTT0 == 0x12))
{
OSVR = 0x04
}
ElseIf ((TTT0 == 0x13))
{
OSVR = Zero
}
ElseIf ((TTT0 == 0x14))
{
OSVR = Zero
}
ElseIf ((TTT0 == 0x15))
{
OSVR = Zero
}
Return (OSVR) /* \OSVR */
}
Method (MCTH, 2, NotSerialized)
{
If ((SizeOf (Arg0) < SizeOf (Arg1)))
{
Return (Zero)
}
Local0 = (SizeOf (Arg0) + One)
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)
}
Name (PRWP, Package (0x02)
{
Zero,
Zero
})
Method (GPRW, 2, NotSerialized)
{
PRWP [Zero] = Arg0
Local0 = (SS1 << One)
Local0 |= (SS2 << 0x02)
Local0 |= (SS3 << 0x03)
Local0 |= (SS4 << 0x04)
If (((One << Arg1) & Local0))
{
PRWP [One] = Arg1
}
Else
{
Local0 >>= One
If (((OSFL () == One) || (OSFL () == 0x02)))
{
FindSetLeftBit (Local0, PRWP [One])
}
Else
{
FindSetRightBit (Local0, PRWP [One])
}
}
Return (PRWP) /* \PRWP */
}
Name (WAKP, Package (0x02)
{
Zero,
Zero
})
OperationRegion (DEB0, SystemIO, DP80, One)
Field (DEB0, ByteAcc, NoLock, Preserve)
{
DBG8, 8
}
OperationRegion (DEB1, SystemIO, DP90, 0x02)
Field (DEB1, WordAcc, NoLock, Preserve)
{
DBG9, 16
}
Method (OSYS, 0, NotSerialized)
{
Local0 = 0x10
If (CondRefOf (_OSI, Local1))
{
If (_OSI ("Windows 2000"))
{
Local0 = 0x12
}
If (_OSI ("Windows 2001"))
{
Local0 = 0x13
}
If (_OSI ("Windows 2001 SP1"))
{
Local0 = 0x13
}
If (_OSI ("Windows 2001 SP2"))
{
Local0 = 0x13
}
If (_OSI ("Windows 2001.1"))
{
Local0 = 0x14
}
If (_OSI ("Windows 2001.1 SP1"))
{
Local0 = 0x14
}
If (_OSI ("Windows 2006"))
{
Local0 = 0x15
}
}
ElseIf (MCTH (_OS, "Microsoft Windows NT"))
{
Local0 = 0x12
}
ElseIf (MCTH (_OS, "Microsoft WindowsME: Millennium Edition"))
{
Local0 = 0x11
}
Return (Local0)
}
Scope (_PR)
{
Processor (P001, 0x01, 0x00000810, 0x06){}
Processor (P002, 0x02, 0x00000000, 0x00){}
Processor (P003, 0x03, 0x00000000, 0x00){}
Processor (P004, 0x04, 0x00000000, 0x00){}
Processor (P005, 0x05, 0x00000000, 0x00){}
Processor (P006, 0x06, 0x00000000, 0x00){}
Alias (P001, CPU1)
Alias (P002, CPU2)
Alias (P003, CPU3)
Alias (P004, CPU4)
Alias (P005, CPU5)
Alias (P006, CPU6)
}
Scope (_SB)
{
Name (PR00, Package (0x37)
{
Package (0x04)
{
0x0002FFFF,
Zero,
LNKC,
Zero
},
Package (0x04)
{
0x0002FFFF,
One,
LNKD,
Zero
},
Package (0x04)
{
0x0002FFFF,
0x02,
LNKA,
Zero
},
Package (0x04)
{
0x0002FFFF,
0x03,
LNKB,
Zero
},
Package (0x04)
{
0x0003FFFF,
Zero,
LNKD,
Zero
},
Package (0x04)
{
0x0003FFFF,
One,
LNKA,
Zero
},
Package (0x04)
{
0x0003FFFF,
0x02,
LNKB,
Zero
},
Package (0x04)
{
0x0003FFFF,
0x03,
LNKC,
Zero
},
Package (0x04)
{
0x0004FFFF,
Zero,
LNKA,
Zero
},
Package (0x04)
{
0x0004FFFF,
One,
LNKB,
Zero
},
Package (0x04)
{
0x0004FFFF,
0x02,
LNKC,
Zero
},
Package (0x04)
{
0x0004FFFF,
0x03,
LNKD,
Zero
},
Package (0x04)
{
0x0005FFFF,
Zero,
LNKB,
Zero
},
Package (0x04)
{
0x0005FFFF,
One,
LNKC,
Zero
},
Package (0x04)
{
0x0005FFFF,
0x02,
LNKD,
Zero
},
Package (0x04)
{
0x0005FFFF,
0x03,
LNKA,
Zero
},
Package (0x04)
{
0x0006FFFF,
Zero,
LNKC,
Zero
},
Package (0x04)
{
0x0006FFFF,
One,
LNKD,
Zero
},
Package (0x04)
{
0x0006FFFF,
0x02,
LNKA,
Zero
},
Package (0x04)
{
0x0006FFFF,
0x03,
LNKB,
Zero
},
Package (0x04)
{
0x0007FFFF,
Zero,
LNKD,
Zero
},
Package (0x04)
{
0x0007FFFF,
One,
LNKA,
Zero
},
Package (0x04)
{
0x0007FFFF,
0x02,
LNKB,
Zero
},
Package (0x04)
{
0x0007FFFF,
0x03,
LNKC,
Zero
},
Package (0x04)
{
0x0009FFFF,
Zero,
LNKB,
Zero
},
Package (0x04)
{
0x0009FFFF,
One,
LNKC,
Zero
},
Package (0x04)