forked from UltraOS/ACPIDumps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
D4ACF28F4822
23814 lines (21831 loc) · 816 KB
/
D4ACF28F4822
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 20181213
Copyright (c) 2000 - 2018 Intel Corporation
Signature Length Version Oem Oem Oem Compiler Compiler
Id TableId RevisionId Name Revision
_________ __________ ____ ________ __________ __________ _______ __________
01) MCFG 0x0000003C 0x01 "HPQOEM" "30DB " 0x00000001 "HP " 0x00000001
02) FACS 0x00000040 0x01
03) SSDT 0x00000288 0x01 "PmRef " "Cpu0Tst " 0x00003000 "INTL" 0x20060912
04) ASF! 0x00000095 0x20 "HPQOEM" "30DB " 0x00000001 "HP " 0x00000001
05) APIC 0x00000084 0x01 "HPQOEM" "30DB " 0x00000001 "HP " 0x00000001
06) SLIC 0x00000176 0x01 "HPQOEM" "SLIC-MPC" 0x00000001 "HP " 0x00000001
07) SSDT 0x00000692 0x01 "HPQOEM" "SataSec " 0x00001000 "INTL" 0x20060912
08) DSDT 0x00019B31 0x01 "HPQOEM" "30DB " 0x00000001 "INTL" 0x20060912
09) FACS 0x00000040 0x01
10) SSDT 0x00000225 0x01 "PmRef " "ApTst " 0x00003000 "INTL" 0x20060912
11) DMAR 0x000000F8 0x01 " " " " 0x00000001 " " 0x00000000
12) FACP 0x000000F4 0x03 "HPQOEM" "30DB " 0x0000000F "HP " 0x00000001
13) SSDT 0x0000066C 0x01 "PmRef " "CpuPm " 0x00003000 "INTL" 0x20060912
14) SSDT 0x0000064F 0x01 "HPQOEM" "SataPri " 0x00001000 "INTL" 0x20060912
15) TCPA 0x00000032 0x02 "HPQOEM" "30DB " 0x00000000 "HP " 0x00000001
16) HPET 0x00000038 0x01 "HPQOEM" "30DB " 0x00000001 "HP " 0x00000001
17) SSDT 0x000002B7 0x01 "PmRef " "Cpu0Ist " 0x00003000 "INTL" 0x20060912
18) SSDT 0x0000008D 0x01 "PmRef " "ApCst " 0x00003000 "INTL" 0x20060912
19) SSDT 0x0000057B 0x01 "PmRef " "Cpu0Cst " 0x00003001 "INTL" 0x20060912
20) SSDT 0x000001D7 0x01 "PmRef " "ApIst " 0x00003000 "INTL" 0x20060912
Found 20 ACPI tables in acpidump
APIC
----
[000h 0000 4] Signature : "APIC" [Multiple APIC Description Table (MADT)]
[004h 0004 4] Table Length : 00000084
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : FE
[00Ah 0010 6] Oem ID : "HPQOEM"
[010h 0016 8] Oem Table ID : "30DB "
[018h 0024 4] Oem Revision : 00000001
[01Ch 0028 4] Asl Compiler ID : "HP "
[020h 0032 4] Asl Compiler Revision : 00000001
[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 : 01
[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 : 00
[040h 0064 4] Flags (decoded below) : 00000000
Processor Enabled : 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 : 00
[048h 0072 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[04Ch 0076 1] Subtable Type : 01 [I/O APIC]
[04Dh 0077 1] Length : 0C
[04Eh 0078 1] I/O Apic ID : 01
[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
[06Ch 0108 1] Subtable Type : 04 [Local APIC NMI]
[06Dh 0109 1] Length : 06
[06Eh 0110 1] Processor ID : 00
[06Fh 0111 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[071h 0113 1] Interrupt Input LINT : 01
[072h 0114 1] Subtable Type : 04 [Local APIC NMI]
[073h 0115 1] Length : 06
[074h 0116 1] Processor ID : 01
[075h 0117 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[077h 0119 1] Interrupt Input LINT : 01
[078h 0120 1] Subtable Type : 04 [Local APIC NMI]
[079h 0121 1] Length : 06
[07Ah 0122 1] Processor ID : 02
[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 : 03
[081h 0129 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[083h 0131 1] Interrupt Input LINT : 01
Raw Table Data: Length 132 (0x84)
0000: 41 50 49 43 84 00 00 00 01 FE 48 50 51 4F 45 4D // APIC......HPQOEM
0010: 33 30 44 42 20 20 20 20 01 00 00 00 48 50 20 20 // 30DB ....HP
0020: 01 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 00 // ................
0040: 00 00 00 00 00 08 03 00 00 00 00 00 01 0C 01 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 04 06 00 05 // ................
0070: 00 01 04 06 01 05 00 01 04 06 02 05 00 01 04 06 // ................
0080: 03 05 00 01 // ....
ASF!
----
[000h 0000 4] Signature : "ASF!" [Alert Standard Format table]
[004h 0004 4] Table Length : 00000095
[008h 0008 1] Revision : 20
[009h 0009 1] Checksum : E9
[00Ah 0010 6] Oem ID : "HPQOEM"
[010h 0016 8] Oem Table ID : "30DB "
[018h 0024 4] Oem Revision : 00000001
[01Ch 0028 4] Asl Compiler ID : "HP "
[020h 0032 4] Asl Compiler Revision : 00000001
[024h 0036 1] Subtable Type : 00 [ASF Information]
[025h 0037 1] Reserved : 00
[026h 0038 2] Length : 0010
[028h 0040 1] Minimum Reset Value : 00
[029h 0041 1] Minimum Polling Interval : FF
[02Ah 0042 2] System ID : 0001
[02Ch 0044 4] Manufacturer ID : 0B000000
[030h 0048 1] Flags : 00
[031h 0049 3] Reserved : 000000
[034h 0052 1] Subtable Type : 01 [ASF Alerts]
[035h 0053 1] Reserved : 00
[036h 0054 2] Length : 002C
[038h 0056 1] AssertMask : 00
[039h 0057 1] DeassertMask : 00
[03Ah 0058 1] Alert Count : 03
[03Bh 0059 1] Alert Data Length : 0C
[03Ch 0060 1] Address : 89
[03Dh 0061 1] Command : 04
[03Eh 0062 1] Mask : 01
[03Fh 0063 1] Value : 01
[040h 0064 1] SensorType : 05
[041h 0065 1] Type : 6F
[042h 0066 1] Offset : 00
[043h 0067 1] SourceType : 68
[044h 0068 1] Severity : 08
[045h 0069 1] SensorNumber : 88
[046h 0070 1] Entity : 17
[047h 0071 1] Instance : 00
[048h 0072 1] Address : 89
[049h 0073 1] Command : 04
[04Ah 0074 1] Mask : 04
[04Bh 0075 1] Value : 04
[04Ch 0076 1] SensorType : 07
[04Dh 0077 1] Type : 6F
[04Eh 0078 1] Offset : 00
[04Fh 0079 1] SourceType : 68
[050h 0080 1] Severity : 20
[051h 0081 1] SensorNumber : 88
[052h 0082 1] Entity : 03
[053h 0083 1] Instance : 00
[054h 0084 1] Address : 89
[055h 0085 1] Command : 05
[056h 0086 1] Mask : 01
[057h 0087 1] Value : 01
[058h 0088 1] SensorType : 19
[059h 0089 1] Type : 6F
[05Ah 0090 1] Offset : 00
[05Bh 0091 1] SourceType : 68
[05Ch 0092 1] Severity : 20
[05Dh 0093 1] SensorNumber : 88
[05Eh 0094 1] Entity : 22
[05Fh 0095 1] Instance : 00
[060h 0096 1] Subtable Type : 02 [ASF Remote Control]
[061h 0097 1] Reserved : 00
[062h 0098 2] Length : 0018
[064h 0100 1] Control Count : 04
[065h 0101 1] Control Data Length : 04
[066h 0102 2] Reserved : 0000
[068h 0104 1] Function : 00
[069h 0105 1] Address : 88
[06Ah 0106 1] Command : 00
[06Bh 0107 1] Value : 03
[06Ch 0108 1] Function : 01
[06Dh 0109 1] Address : 88
[06Eh 0110 1] Command : 00
[06Fh 0111 1] Value : 02
[070h 0112 1] Function : 02
[071h 0113 1] Address : 88
[072h 0114 1] Command : 00
[073h 0115 1] Value : 01
[074h 0116 1] Function : 03
[075h 0117 1] Address : 88
[076h 0118 1] Command : 00
[077h 0119 1] Value : 04
[078h 0120 1] Subtable Type : 03 [ASF RMCP Boot Options]
[079h 0121 1] Reserved : 00
[07Ah 0122 2] Length : 0017
[07Ch 0124 7] Capabilities : 20 70 00 00 00 13 F0
[083h 0131 1] Completion Code : 00
[084h 0132 4] Enterprise ID : 00000000
[088h 0136 1] Command : 00
[089h 0137 2] Parameter : 0000
[08Bh 0139 2] Boot Options : 0000
[08Dh 0141 2] Oem Parameters : 0000
[08Fh 0143 1] Subtable Type : 84 [ASF Address]
[090h 0144 1] Reserved : 00
[091h 0145 2] Length : 0006
[093h 0147 1] Eprom Address : 00
[094h 0148 1] Device Count : 00
Raw Table Data: Length 149 (0x95)
0000: 41 53 46 21 95 00 00 00 20 E9 48 50 51 4F 45 4D // ASF!.... .HPQOEM
0010: 33 30 44 42 20 20 20 20 01 00 00 00 48 50 20 20 // 30DB ....HP
0020: 01 00 00 00 00 00 10 00 00 FF 01 00 00 00 00 0B // ................
0030: 00 00 00 00 01 00 2C 00 00 00 03 0C 89 04 01 01 // ......,.........
0040: 05 6F 00 68 08 88 17 00 89 04 04 04 07 6F 00 68 // .o.h.........o.h
0050: 20 88 03 00 89 05 01 01 19 6F 00 68 20 88 22 00 // ........o.h .".
0060: 02 00 18 00 04 04 00 00 00 88 00 03 01 88 00 02 // ................
0070: 02 88 00 01 03 88 00 04 03 00 17 00 20 70 00 00 // ............ p..
0080: 00 13 F0 00 00 00 00 00 00 00 00 00 00 00 00 84 // ................
0090: 00 06 00 00 00 // .....
DMAR
----
[000h 0000 4] Signature : "DMAR" [DMA Remapping table]
[004h 0004 4] Table Length : 000000F8
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : F2
[00Ah 0010 6] Oem ID : " "
[010h 0016 8] Oem Table ID : " "
[018h 0024 4] Oem Revision : 00000001
[01Ch 0028 4] Asl Compiler ID : ""
[020h 0032 4] Asl Compiler Revision : 00000000
[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 : 0018
[034h 0052 1] Flags : 00
[035h 0053 1] Reserved : 00
[036h 0054 2] PCI Segment Number : 0000
[038h 0056 8] Register Base Address : 00000000FEB03000
[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 : 1B,00
[048h 0072 2] Subtable Type : 0000 [Hardware Unit Definition]
[04Ah 0074 2] Length : 0020
[04Ch 0076 1] Flags : 00
[04Dh 0077 1] Reserved : 00
[04Eh 0078 2] PCI Segment Number : 0000
[050h 0080 8] Register Base Address : 00000000FEB01000
[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 : 02,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 : 02,01
[068h 0104 2] Subtable Type : 0000 [Hardware Unit Definition]
[06Ah 0106 2] Length : 0010
[06Ch 0108 1] Flags : 01
[06Dh 0109 1] Reserved : 00
[06Eh 0110 2] PCI Segment Number : 0000
[070h 0112 8] Register Base Address : 00000000FEB02000
[078h 0120 2] Subtable Type : 0001 [Reserved Memory Region]
[07Ah 0122 2] Length : 0058
[07Ch 0124 2] Reserved : 0000
[07Eh 0126 2] PCI Segment Number : 0000
[080h 0128 8] Base Address : 00000000B5D70000
[088h 0136 8] End Address (limit) : 00000000B5D7FFFF
[090h 0144 1] Device Scope Type : 01 [PCI Endpoint Device]
[091h 0145 1] Entry Length : 08
[092h 0146 2] Reserved : 0000
[094h 0148 1] Enumeration ID : 00
[095h 0149 1] PCI Bus Number : 00
[096h 0150 2] PCI Path : 1D,00
[098h 0152 1] Device Scope Type : 01 [PCI Endpoint Device]
[099h 0153 1] Entry Length : 08
[09Ah 0154 2] Reserved : 0000
[09Ch 0156 1] Enumeration ID : 00
[09Dh 0157 1] PCI Bus Number : 00
[09Eh 0158 2] PCI Path : 1D,01
[0A0h 0160 1] Device Scope Type : 01 [PCI Endpoint Device]
[0A1h 0161 1] Entry Length : 08
[0A2h 0162 2] Reserved : 0000
[0A4h 0164 1] Enumeration ID : 00
[0A5h 0165 1] PCI Bus Number : 00
[0A6h 0166 2] PCI Path : 1D,02
[0A8h 0168 1] Device Scope Type : 01 [PCI Endpoint Device]
[0A9h 0169 1] Entry Length : 08
[0AAh 0170 2] Reserved : 0000
[0ACh 0172 1] Enumeration ID : 00
[0ADh 0173 1] PCI Bus Number : 00
[0AEh 0174 2] PCI Path : 1D,07
[0B0h 0176 1] Device Scope Type : 01 [PCI Endpoint Device]
[0B1h 0177 1] Entry Length : 08
[0B2h 0178 2] Reserved : 0000
[0B4h 0180 1] Enumeration ID : 00
[0B5h 0181 1] PCI Bus Number : 00
[0B6h 0182 2] PCI Path : 1A,00
[0B8h 0184 1] Device Scope Type : 01 [PCI Endpoint Device]
[0B9h 0185 1] Entry Length : 08
[0BAh 0186 2] Reserved : 0000
[0BCh 0188 1] Enumeration ID : 00
[0BDh 0189 1] PCI Bus Number : 00
[0BEh 0190 2] PCI Path : 1A,01
[0C0h 0192 1] Device Scope Type : 01 [PCI Endpoint Device]
[0C1h 0193 1] Entry Length : 08
[0C2h 0194 2] Reserved : 0000
[0C4h 0196 1] Enumeration ID : 00
[0C5h 0197 1] PCI Bus Number : 00
[0C6h 0198 2] PCI Path : 1A,02
[0C8h 0200 1] Device Scope Type : 01 [PCI Endpoint Device]
[0C9h 0201 1] Entry Length : 08
[0CAh 0202 2] Reserved : 0000
[0CCh 0204 1] Enumeration ID : 00
[0CDh 0205 1] PCI Bus Number : 00
[0CEh 0206 2] PCI Path : 1A,07
[0D0h 0208 2] Subtable Type : 0001 [Reserved Memory Region]
[0D2h 0210 2] Length : 0028
[0D4h 0212 2] Reserved : 0000
[0D6h 0214 2] PCI Segment Number : 0000
[0D8h 0216 8] Base Address : 00000000BBC00000
[0E0h 0224 8] End Address (limit) : 00000000BFFFFFFF
[0E8h 0232 1] Device Scope Type : 01 [PCI Endpoint Device]
[0E9h 0233 1] Entry Length : 08
[0EAh 0234 2] Reserved : 0000
[0ECh 0236 1] Enumeration ID : 00
[0EDh 0237 1] PCI Bus Number : 00
[0EEh 0238 2] PCI Path : 02,00
[0F0h 0240 1] Device Scope Type : 01 [PCI Endpoint Device]
[0F1h 0241 1] Entry Length : 08
[0F2h 0242 2] Reserved : 0000
[0F4h 0244 1] Enumeration ID : 00
[0F5h 0245 1] PCI Bus Number : 00
[0F6h 0246 2] PCI Path : 02,01
Raw Table Data: Length 248 (0xF8)
0000: 44 4D 41 52 F8 00 00 00 01 F2 20 20 20 20 20 20 // DMAR......
0010: 01 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 // ................
0020: 00 00 00 00 23 00 00 00 00 00 00 00 00 00 00 00 // ....#...........
0030: 00 00 18 00 00 00 00 00 00 30 B0 FE 00 00 00 00 // .........0......
0040: 01 08 00 00 00 00 1B 00 00 00 20 00 00 00 00 00 // .......... .....
0050: 00 10 B0 FE 00 00 00 00 01 08 00 00 00 00 02 00 // ................
0060: 01 08 00 00 00 00 02 01 00 00 10 00 01 00 00 00 // ................
0070: 00 20 B0 FE 00 00 00 00 01 00 58 00 00 00 00 00 // . ........X.....
0080: 00 00 D7 B5 00 00 00 00 FF FF D7 B5 00 00 00 00 // ................
0090: 01 08 00 00 00 00 1D 00 01 08 00 00 00 00 1D 01 // ................
00A0: 01 08 00 00 00 00 1D 02 01 08 00 00 00 00 1D 07 // ................
00B0: 01 08 00 00 00 00 1A 00 01 08 00 00 00 00 1A 01 // ................
00C0: 01 08 00 00 00 00 1A 02 01 08 00 00 00 00 1A 07 // ................
00D0: 01 00 28 00 00 00 00 00 00 00 C0 BB 00 00 00 00 // ..(.............
00E0: FF FF FF BF 00 00 00 00 01 08 00 00 00 00 02 00 // ................
00F0: 01 08 00 00 00 00 02 01 // ........
DSDT
----
DefinitionBlock ("", "DSDT", 1, "HPQOEM", "30DB ", 0x00000001)
{
External (_PR_.CPU0._PPC, UnknownObj)
External (_PR_.CPU0._PSS, IntObj)
External (CFGD, UnknownObj)
External (PDC0, UnknownObj)
External (PDC1, UnknownObj)
Name (LSTA, 0x00)
Name (IECP, 0x00)
Name (DECP, 0x00)
Name (IDPM, 0x00)
Method (\HPTS, 1, NotSerialized)
{
SLPT = Arg0
\_SB.ODGW ((0x5500 | Arg0))
If ((Arg0 > 0x00))
{
\_SB.PCI0.LPCB.EC0.HSST = 0x00
IECP = \_SB.PCI0.RP03.PDSX
DECP = \_SB.PCI0.RP05.PDSX
IDPM = \APMC
If ((Arg0 != 0x05))
{
\_SB.PCI0.LPCB.EC0.BTDR (0x00)
\_SB.NFBS = 0x01
If ((Arg0 == 0x03))
{
LSTA = \_SB.LID._LID ()
}
}
}
}
Method (\HWAK, 1, NotSerialized)
{
SLPT = 0x00
\_SB.ODGW ((0x5600 | Arg0))
If ((Arg0 == 0x03))
{
\_SB.SSMI (0xEA80, 0x00, 0x00, 0x00, 0x00)
}
\_SB.PCI0.LPCB.EC0.ITLB ()
\_SB.PCI0.LPCB.EC0.RPPC ()
If (\_SB.PCI0.LPCB.EC0.ECRG)
{
Acquire (\_SB.PCI0.LPCB.EC0.ECMX, 0xFFFF)
\_SB.PCI0.LPCB.EC0.ACPI = 0x01
\_SB.PCI0.LPCB.EC0.SLPT = 0x00
Release (\_SB.PCI0.LPCB.EC0.ECMX)
}
If ((Arg0 > 0x02))
{
\_TZ.RETD ()
\_TZ.INTM (0x01)
\_SB.NFBS = 0x01
If ((Arg0 == 0x03))
{
If ((\_SB.LID._LID () ^ LSTA))
{
Local0 = (GIV ^ 0x2000)
GIV = Local0
}
\APMC = IDPM /* \IDPM */
}
If ((Arg0 == 0x04))
{
\_SB.WMID.WGWE (0x05, 0x00)
}
}
If (((Arg0 == 0x04) || (\WCOS () == 0x01)))
{
Notify (\_SB.SLPB, 0x02) // Device Wake
}
Local2 = \_SB.PCI0.LPCB.EC0.GACS ()
\_SB.PCI0.LPCB.EC0.PWUP (0x03, 0xFF)
Local1 = \_SB.PCI0.LPCB.EC0.GBAP ()
Local3 = \_SB.PCI0.LPCB.EC0.GACS ()
Local3 ^= Local2
If (Local3)
{
Notify (\_SB.AC, 0x80) // Status Change
PNOT ()
}
ElseIf ((Arg0 == 0x04))
{
\_SB.ACST = (Local2 ^ 0x01)
}
WKET (Arg0)
\_SB.VWAK (Arg0)
\_SB.VWAK (0x01)
Local0 = \_SB.HST1.GHID ()
\_SB.PCI0.ACEL.ITAL ()
}
Mutex (MUTX, 0x00)
Method (P8XH, 2, Serialized)
{
If ((Arg0 == 0x00))
{
\_SB.ODBG (Arg1)
P80D = ((P80D & 0xFFFFFF00) | Arg1)
}
If ((Arg0 == 0x01))
{
\_SB.ODG1 (Arg1)
P80D = ((P80D & 0xFFFF00FF) | (Arg1 << 0x08))
}
If ((Arg0 == 0x02))
{
P80D = ((P80D & 0xFF00FFFF) | (Arg1 << 0x10))
}
If ((Arg0 == 0x03))
{
P80D = ((P80D & 0x00FFFFFF) | (Arg1 << 0x18))
}
}
OperationRegion (SPRT, SystemIO, 0xB2, 0x02)
Field (SPRT, ByteAcc, Lock, Preserve)
{
SSMP, 8
}
Method (\_PIC, 1, NotSerialized) // _PIC: Interrupt Model
{
GPIC = Arg0
}
Method (_PTS, 1, NotSerialized) // _PTS: Prepare To Sleep
{
HPTS (Arg0)
If ((Arg0 == 0x03))
{
If ((DTSE && MPEN))
{
TRAP (0x02, 0x1E)
}
}
}
Method (_WAK, 1, NotSerialized) // _WAK: Wake
{
HWAK (Arg0)
If ((Arg0 == 0x03)){}
If (((Arg0 == 0x03) || (Arg0 == 0x04)))
{
If ((DTSE && MPEN))
{
TRAP (0x02, 0x14)
}
If ((CFGD & 0x01000000))
{
If (((CFGD & 0xF0) && ((OSYS == 0x07D1) && !(
PDC0 & 0x10))))
{
TRAP (0x01, 0x48)
}
}
If ((OSYS == 0x07D2))
{
If ((CFGD & 0x01))
{
If ((\_PR.CPU0._PPC > 0x00))
{
\_PR.CPU0._PPC -= 0x01
PNOT ()
\_PR.CPU0._PPC += 0x01
PNOT ()
}
Else
{
\_PR.CPU0._PPC += 0x01
PNOT ()
\_PR.CPU0._PPC -= 0x01
PNOT ()
}
}
}
}
Return (Package (0x02)
{
0x00,
0x00
})
}
Method (GETB, 3, Serialized)
{
Local0 = (Arg0 * 0x08)
Local1 = (Arg1 * 0x08)
CreateField (Arg2, Local0, Local1, TBF3)
Return (TBF3) /* \GETB.TBF3 */
}
Method (PNOT, 0, Serialized)
{
If (MPEN)
{
If ((PDC0 & 0x08))
{
Notify (\_PR.CPU0, 0x80) // Performance Capability Change
If ((PDC0 & 0x10))
{
Sleep (0x64)
Notify (\_PR.CPU0, 0x81) // C-State Change
}
}
If ((PDC1 & 0x08))
{
Notify (\_PR.CPU1, 0x80) // Performance Capability Change
If ((PDC1 & 0x10))
{
Sleep (0x64)
Notify (\_PR.CPU1, 0x81) // C-State Change
}
}
}
Else
{
Notify (\_PR.CPU0, 0x80) // Performance Capability Change
Sleep (0x64)
Notify (\_PR.CPU0, 0x81) // C-State Change
}
}
Method (TRAP, 2, Serialized)
{
SMIF = Arg1
If ((Arg0 == 0x01))
{
TRP0 = 0x00
}
If ((Arg0 == 0x02))
{
DTSF = Arg1
TRPD = 0x00
Return (DTSF) /* \DTSF */
}
If ((Arg0 == 0x03))
{
TRPH = 0x00
}
Return (SMIF) /* \SMIF */
}
Scope (\_SB)
{
Method (_INI, 0, NotSerialized) // _INI: Initialize
{
OSYS = 0x07D0
If (CondRefOf (_OSI, Local0))
{
If (_OSI ("Linux"))
{
OSYS = 0x03E8
}
If (_OSI ("Windows 2001"))
{
OSYS = 0x07D1
}
If (_OSI ("Windows 2001 SP1"))
{
OSYS = 0x07D1
}
If (_OSI ("Windows 2001 SP2"))
{
OSYS = 0x07D2
}
If (_OSI ("Windows 2006"))
{
OSYS = 0x07D6
}
If ((MPEN && (OSYS == 0x07D1)))
{
TRAP (0x01, 0x48)
}
TRAP (0x03, 0x35)
}
\_TZ.BOTT ()
\_TZ.RETD ()
}
}
OperationRegion (GNVS, SystemMemory, 0xB9FB2D98, 0x0100)
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,
MPEN, 8,
PCP0, 8,
PCP1, 8,
PPCM, 8,
PPMF, 32,
Offset (0x32),
Offset (0x3C),
IGDS, 8,
TLST, 8,
CADL, 8,
PADL, 8,
CSTE, 16,
NSTE, 16,
SSTE, 16,
NDID, 8,
DID1, 32,
DID2, 32,
DID3, 32,
DID4, 32,
DID5, 32,
BDSP, 8,
PTY1, 8,
PTY2, 8,
PSCL, 8,
TVF1, 8,
TVF2, 8,
GETM, 8,
Offset (0x67),
BLCS, 8,
BRTL, 8,
ALSE, 8,
ALAF, 8,
LLOW, 8,
LHIH, 8,
Offset (0x6E),
EMAE, 8,
EMAP, 16,
EMAL, 16,
Offset (0x74),
MEFE, 8,
DSTS, 8,
Offset (0x78),
TPMP, 8,
TPME, 8,
Offset (0x82),
GTF0, 56,
GTF5, 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,
IDMM, 8,
IDMS, 8,
IF1E, 8,
HVCO, 8,
NXD1, 32,
NXD2, 32,
NXD3, 32,
NXD4, 32,
NXD5, 32,
NXD6, 32,
NXD7, 32,
NXD8, 32,
GSMI, 8,
Offset (0xEB),
DSEN, 8,
ECON, 8,
GPIC, 8,
CTYP, 8,
L01C, 8,
VFN0, 8,
VFN1, 8
}
OperationRegion (ASMA, SystemMemory, 0xB9FAF018, 0x1060)
Field (ASMA, AnyAcc, NoLock, Preserve)
{
ASMB, 33536
}
OperationRegion (AF10, SystemMemory, 0xB9FB1818, 0x07C5)
Field (AF10, AnyAcc, Lock, Preserve)
{
STAT, 32,
EVAL, 8,
ASTL, 8,
ASTG, 256,
OWNT, 640,
PROD, 640,
MODL, 640,
PTYP, 640,
PFRQ, 640,
MEMS, 640,
DATE, 640,
FAMI, 640,
SERL, 640,
VREV, 640,
KBCD, 640,
HDDS, 160,
HDDM, 320,
CDAT, 136,
CSTS, 8,
CYCL, 8,
PBSN, 144,
SBSN, 144,
BSTS, 8,
BORD, 64,
APST, 8,
OAPW, 3200,
NAPW, 3200,
SECO, 32,
SECS, 32,
SKUN, 128,
SVID, 48,
SSID, 32,
BTFC, 160,
WLFC, 160,
WWFC, 160,
PWDL, 16,
USRN, 264,
ROLE, 32,
CMDV, 32,
KBDL, 32,
HASH, 32,
SPSF, 8
}
OperationRegion (HPDF, SystemMemory, 0xB9FB5F18, 0x0056)
Field (HPDF, AnyAcc, Lock, Preserve)
{
SLPT, 4,
WHOS, 4,
SDFG, 4,
LEGF, 1,
KCDB, 1,
KLDB, 1,
TPMX, 1,
FOAL, 1,
AEDA, 1,
ALSF, 1,
WOLD, 1,
HSED, 1,
HDEN, 1,
MDEN, 1,
UWKD, 1,
ASFG, 8,
WDPE, 8,
WDSA, 8,
WDST, 8,
WDGN, 8,
WDSS, 8,
WLBN, 8,
PRDT, 8,
LPDP, 16,
EAX, 32,
EBX, 32,
ECX, 32,
EDX, 32,
REFS, 32,
SSCI, 8,
SBFC, 8,
THOS, 8,
TRCN, 8,
DCAP, 8,
LOTR, 160,
HITR, 160,
WABN, 8,
WADN, 8,
WAFN, 8,
DTCD, 32,
BDCP, 8
}
OperationRegion (HPD2, SystemMemory, 0xB9ECAF98, 0x0007)
Field (HPD2, AnyAcc, Lock, Preserve)
{
CWDS, 8,