forked from UltraOS/ACPIDumps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CB05571909C8
21257 lines (18761 loc) · 663 KB
/
CB05571909C8
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 20150717-64
Copyright (c) 2000 - 2015 Intel Corporation
Signature Length Revision OemId OemTableId OemRevision CompilerId CompilerRevision
APIC 0x0000026A 0x01 "HP " "ProLiant" 0x00000002 " " 0x00000000
BERT 0x00000030 0x01 "HP " "ProLiant" 0x00000001 " " 0x0000162E
DMAR 0x00000506 0x01 "HP " "ProLiant" 0x00000001 " " 0x0000162E
DSDT 0x00002670 0x01 "HP " "DSDT " 0x00000001 "INTL" 0x20030228
FACP 0x000000F4 0x03 "HP " "ProLiant" 0x00000002 " " 0x0000162E
FACS 0x00000040
ERST 0x000001D0 0x01 "HP " "ProLiant" 0x00000001 " " 0x0000162E
HEST 0x000000BC 0x01 "HP " "ProLiant" 0x00000001 " " 0x0000162E
HPET 0x00000038 0x01 "HP " "ProLiant" 0x00000002 " " 0x0000162E
MCFG 0x0000003C 0x01 "HP " "ProLiant" 0x00000001 " " 0x00000000
PCCT 0x0000006E 0x01 "HP " "Proliant" 0x00000001 "PH " 0x0000504D
SPCR 0x00000050 0x01 "HP " "SPCRRBSU" 0x00000001 " " 0x0000162E
SPMI 0x00000040 0x05 "HP " "ProLiant" 0x00000001 " " 0x0000162E
SRAT 0x000005C0 0x01 "HP " "Proliant" 0x00000001 " " 0x0000162E
FFFF 0x00000064 0x02 "HP " "ProLiant" 0x00000002 " " 0x0000162E
FFFF 0x00000176 0x01 "HP " "ProLiant" 0x00000001 " " 0x0000162E
FFFF 0x00000030 0x01 "HP " "ProLiant" 0x00000001 " " 0x00000000
SSDT 0x00000764 0x01 "HP " "DEV_PCI1" 0x00000001 "INTL" 0x20120503
SSDT 0x00000137 0x03 "HP " "CRSPCI0 " 0x00000002 "HP " 0x00000001
SSDT 0x00000098 0x03 "HP " "CRSPCI1 " 0x00000002 "HP " 0x00000001
SSDT 0x0000019A 0x02 "HP " "riser0 " 0x00000002 "INTL" 0x20030228
SSDT 0x00000395 0x03 "HP " "riser1c " 0x00000002 "INTL" 0x20030228
SSDT 0x000001D5 0x03 "HP " "riser2b " 0x00000002 "INTL" 0x20030228
SSDT 0x00000386 0x03 "HP " "riser3a " 0x00000002 "INTL" 0x20030228
SSDT 0x00000BB9 0x01 "HP " "pcc " 0x00000001 "INTL" 0x20120503
SSDT 0x00000377 0x01 "HP " "pmab " 0x00000001 "INTL" 0x20120503
SSDT 0x00005524 0x01 "HP " "pcc2 " 0x00000001 "INTL" 0x20120503
SSDT 0x000013A4 0x01 "INTEL " "PPM RCM " 0x80000001 "INTL" 0x20061109
Found 28 ACPI tables
APIC
----
[000h 0000 4] Signature : "APIC" [Multiple APIC Description Table (MADT)]
[004h 0004 4] Table Length : 0000026A
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : 14
[00Ah 0010 6] Oem ID : "HP "
[010h 0016 8] Oem Table ID : "ProLiant"
[018h 0024 4] Oem Revision : 00000002
[01Ch 0028 4] Asl Compiler ID : ""
[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
[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 : 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 : 04
[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 : 06
[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 : 20
[04Fh 0079 1] Local Apic ID : 20
[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 : 22
[057h 0087 1] Local Apic ID : 22
[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 : 24
[05Fh 0095 1] Local Apic ID : 24
[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 : 26
[067h 0103 1] Local Apic ID : 26
[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 : 00
[06Fh 0111 1] Local Apic ID : 00
[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 : 00
[077h 0119 1] Local Apic ID : 00
[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 : 00
[07Fh 0127 1] Local Apic ID : 00
[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 : 00
[087h 0135 1] Local Apic ID : 00
[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 : 00
[08Fh 0143 1] Local Apic ID : 00
[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 : 00
[097h 0151 1] Local Apic ID : 00
[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 : 00
[09Fh 0159 1] Local Apic ID : 00
[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 : 00
[0A7h 0167 1] Local Apic ID : 00
[0A8h 0168 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0ACh 0172 1] Subtable Type : 00 [Processor Local APIC]
[0ADh 0173 1] Length : 08
[0AEh 0174 1] Processor ID : 00
[0AFh 0175 1] Local Apic ID : 00
[0B0h 0176 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0B4h 0180 1] Subtable Type : 00 [Processor Local APIC]
[0B5h 0181 1] Length : 08
[0B6h 0182 1] Processor ID : 00
[0B7h 0183 1] Local Apic ID : 00
[0B8h 0184 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0BCh 0188 1] Subtable Type : 00 [Processor Local APIC]
[0BDh 0189 1] Length : 08
[0BEh 0190 1] Processor ID : 00
[0BFh 0191 1] Local Apic ID : 00
[0C0h 0192 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0C4h 0196 1] Subtable Type : 00 [Processor Local APIC]
[0C5h 0197 1] Length : 08
[0C6h 0198 1] Processor ID : 00
[0C7h 0199 1] Local Apic ID : 00
[0C8h 0200 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0CCh 0204 1] Subtable Type : 00 [Processor Local APIC]
[0CDh 0205 1] Length : 08
[0CEh 0206 1] Processor ID : 00
[0CFh 0207 1] Local Apic ID : 00
[0D0h 0208 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0D4h 0212 1] Subtable Type : 00 [Processor Local APIC]
[0D5h 0213 1] Length : 08
[0D6h 0214 1] Processor ID : 00
[0D7h 0215 1] Local Apic ID : 00
[0D8h 0216 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0DCh 0220 1] Subtable Type : 00 [Processor Local APIC]
[0DDh 0221 1] Length : 08
[0DEh 0222 1] Processor ID : 00
[0DFh 0223 1] Local Apic ID : 00
[0E0h 0224 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0E4h 0228 1] Subtable Type : 00 [Processor Local APIC]
[0E5h 0229 1] Length : 08
[0E6h 0230 1] Processor ID : 00
[0E7h 0231 1] Local Apic ID : 00
[0E8h 0232 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0ECh 0236 1] Subtable Type : 00 [Processor Local APIC]
[0EDh 0237 1] Length : 08
[0EEh 0238 1] Processor ID : 00
[0EFh 0239 1] Local Apic ID : 00
[0F0h 0240 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0F4h 0244 1] Subtable Type : 00 [Processor Local APIC]
[0F5h 0245 1] Length : 08
[0F6h 0246 1] Processor ID : 00
[0F7h 0247 1] Local Apic ID : 00
[0F8h 0248 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[0FCh 0252 1] Subtable Type : 00 [Processor Local APIC]
[0FDh 0253 1] Length : 08
[0FEh 0254 1] Processor ID : 00
[0FFh 0255 1] Local Apic ID : 00
[100h 0256 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[104h 0260 1] Subtable Type : 00 [Processor Local APIC]
[105h 0261 1] Length : 08
[106h 0262 1] Processor ID : 00
[107h 0263 1] Local Apic ID : 00
[108h 0264 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[10Ch 0268 1] Subtable Type : 00 [Processor Local APIC]
[10Dh 0269 1] Length : 08
[10Eh 0270 1] Processor ID : 00
[10Fh 0271 1] Local Apic ID : 00
[110h 0272 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[114h 0276 1] Subtable Type : 00 [Processor Local APIC]
[115h 0277 1] Length : 08
[116h 0278 1] Processor ID : 00
[117h 0279 1] Local Apic ID : 00
[118h 0280 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[11Ch 0284 1] Subtable Type : 00 [Processor Local APIC]
[11Dh 0285 1] Length : 08
[11Eh 0286 1] Processor ID : 00
[11Fh 0287 1] Local Apic ID : 00
[120h 0288 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[124h 0292 1] Subtable Type : 00 [Processor Local APIC]
[125h 0293 1] Length : 08
[126h 0294 1] Processor ID : 00
[127h 0295 1] Local Apic ID : 00
[128h 0296 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[12Ch 0300 1] Subtable Type : 00 [Processor Local APIC]
[12Dh 0301 1] Length : 08
[12Eh 0302 1] Processor ID : 00
[12Fh 0303 1] Local Apic ID : 00
[130h 0304 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[134h 0308 1] Subtable Type : 00 [Processor Local APIC]
[135h 0309 1] Length : 08
[136h 0310 1] Processor ID : 00
[137h 0311 1] Local Apic ID : 00
[138h 0312 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[13Ch 0316 1] Subtable Type : 00 [Processor Local APIC]
[13Dh 0317 1] Length : 08
[13Eh 0318 1] Processor ID : 00
[13Fh 0319 1] Local Apic ID : 00
[140h 0320 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[144h 0324 1] Subtable Type : 00 [Processor Local APIC]
[145h 0325 1] Length : 08
[146h 0326 1] Processor ID : 00
[147h 0327 1] Local Apic ID : 00
[148h 0328 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[14Ch 0332 1] Subtable Type : 00 [Processor Local APIC]
[14Dh 0333 1] Length : 08
[14Eh 0334 1] Processor ID : 00
[14Fh 0335 1] Local Apic ID : 00
[150h 0336 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[154h 0340 1] Subtable Type : 00 [Processor Local APIC]
[155h 0341 1] Length : 08
[156h 0342 1] Processor ID : 00
[157h 0343 1] Local Apic ID : 00
[158h 0344 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[15Ch 0348 1] Subtable Type : 00 [Processor Local APIC]
[15Dh 0349 1] Length : 08
[15Eh 0350 1] Processor ID : 00
[15Fh 0351 1] Local Apic ID : 00
[160h 0352 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[164h 0356 1] Subtable Type : 00 [Processor Local APIC]
[165h 0357 1] Length : 08
[166h 0358 1] Processor ID : 00
[167h 0359 1] Local Apic ID : 00
[168h 0360 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[16Ch 0364 1] Subtable Type : 00 [Processor Local APIC]
[16Dh 0365 1] Length : 08
[16Eh 0366 1] Processor ID : 00
[16Fh 0367 1] Local Apic ID : 00
[170h 0368 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[174h 0372 1] Subtable Type : 00 [Processor Local APIC]
[175h 0373 1] Length : 08
[176h 0374 1] Processor ID : 00
[177h 0375 1] Local Apic ID : 00
[178h 0376 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[17Ch 0380 1] Subtable Type : 00 [Processor Local APIC]
[17Dh 0381 1] Length : 08
[17Eh 0382 1] Processor ID : 00
[17Fh 0383 1] Local Apic ID : 00
[180h 0384 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[184h 0388 1] Subtable Type : 00 [Processor Local APIC]
[185h 0389 1] Length : 08
[186h 0390 1] Processor ID : 00
[187h 0391 1] Local Apic ID : 00
[188h 0392 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[18Ch 0396 1] Subtable Type : 00 [Processor Local APIC]
[18Dh 0397 1] Length : 08
[18Eh 0398 1] Processor ID : 00
[18Fh 0399 1] Local Apic ID : 00
[190h 0400 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[194h 0404 1] Subtable Type : 00 [Processor Local APIC]
[195h 0405 1] Length : 08
[196h 0406 1] Processor ID : 00
[197h 0407 1] Local Apic ID : 00
[198h 0408 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[19Ch 0412 1] Subtable Type : 00 [Processor Local APIC]
[19Dh 0413 1] Length : 08
[19Eh 0414 1] Processor ID : 00
[19Fh 0415 1] Local Apic ID : 00
[1A0h 0416 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1A4h 0420 1] Subtable Type : 00 [Processor Local APIC]
[1A5h 0421 1] Length : 08
[1A6h 0422 1] Processor ID : 00
[1A7h 0423 1] Local Apic ID : 00
[1A8h 0424 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1ACh 0428 1] Subtable Type : 00 [Processor Local APIC]
[1ADh 0429 1] Length : 08
[1AEh 0430 1] Processor ID : 00
[1AFh 0431 1] Local Apic ID : 00
[1B0h 0432 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1B4h 0436 1] Subtable Type : 00 [Processor Local APIC]
[1B5h 0437 1] Length : 08
[1B6h 0438 1] Processor ID : 00
[1B7h 0439 1] Local Apic ID : 00
[1B8h 0440 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1BCh 0444 1] Subtable Type : 00 [Processor Local APIC]
[1BDh 0445 1] Length : 08
[1BEh 0446 1] Processor ID : 00
[1BFh 0447 1] Local Apic ID : 00
[1C0h 0448 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1C4h 0452 1] Subtable Type : 00 [Processor Local APIC]
[1C5h 0453 1] Length : 08
[1C6h 0454 1] Processor ID : 00
[1C7h 0455 1] Local Apic ID : 00
[1C8h 0456 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1CCh 0460 1] Subtable Type : 00 [Processor Local APIC]
[1CDh 0461 1] Length : 08
[1CEh 0462 1] Processor ID : 00
[1CFh 0463 1] Local Apic ID : 00
[1D0h 0464 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1D4h 0468 1] Subtable Type : 00 [Processor Local APIC]
[1D5h 0469 1] Length : 08
[1D6h 0470 1] Processor ID : 00
[1D7h 0471 1] Local Apic ID : 00
[1D8h 0472 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1DCh 0476 1] Subtable Type : 00 [Processor Local APIC]
[1DDh 0477 1] Length : 08
[1DEh 0478 1] Processor ID : 00
[1DFh 0479 1] Local Apic ID : 00
[1E0h 0480 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1E4h 0484 1] Subtable Type : 00 [Processor Local APIC]
[1E5h 0485 1] Length : 08
[1E6h 0486 1] Processor ID : 00
[1E7h 0487 1] Local Apic ID : 00
[1E8h 0488 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1ECh 0492 1] Subtable Type : 00 [Processor Local APIC]
[1EDh 0493 1] Length : 08
[1EEh 0494 1] Processor ID : 00
[1EFh 0495 1] Local Apic ID : 00
[1F0h 0496 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1F4h 0500 1] Subtable Type : 00 [Processor Local APIC]
[1F5h 0501 1] Length : 08
[1F6h 0502 1] Processor ID : 00
[1F7h 0503 1] Local Apic ID : 00
[1F8h 0504 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[1FCh 0508 1] Subtable Type : 00 [Processor Local APIC]
[1FDh 0509 1] Length : 08
[1FEh 0510 1] Processor ID : 00
[1FFh 0511 1] Local Apic ID : 00
[200h 0512 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[204h 0516 1] Subtable Type : 00 [Processor Local APIC]
[205h 0517 1] Length : 08
[206h 0518 1] Processor ID : 00
[207h 0519 1] Local Apic ID : 00
[208h 0520 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[20Ch 0524 1] Subtable Type : 00 [Processor Local APIC]
[20Dh 0525 1] Length : 08
[20Eh 0526 1] Processor ID : 00
[20Fh 0527 1] Local Apic ID : 00
[210h 0528 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[214h 0532 1] Subtable Type : 00 [Processor Local APIC]
[215h 0533 1] Length : 08
[216h 0534 1] Processor ID : 00
[217h 0535 1] Local Apic ID : 00
[218h 0536 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[21Ch 0540 1] Subtable Type : 00 [Processor Local APIC]
[21Dh 0541 1] Length : 08
[21Eh 0542 1] Processor ID : 00
[21Fh 0543 1] Local Apic ID : 00
[220h 0544 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[224h 0548 1] Subtable Type : 00 [Processor Local APIC]
[225h 0549 1] Length : 08
[226h 0550 1] Processor ID : 00
[227h 0551 1] Local Apic ID : 00
[228h 0552 4] Flags (decoded below) : 00000000
Processor Enabled : 0
[22Ch 0556 1] Subtable Type : 01 [I/O APIC]
[22Dh 0557 1] Length : 0C
[22Eh 0558 1] I/O Apic ID : 08
[22Fh 0559 1] Reserved : 00
[230h 0560 4] Address : FEC00000
[234h 0564 4] Interrupt : 00000000
[238h 0568 1] Subtable Type : 01 [I/O APIC]
[239h 0569 1] Length : 0C
[23Ah 0570 1] I/O Apic ID : 00
[23Bh 0571 1] Reserved : 00
[23Ch 0572 4] Address : FEC10000
[240h 0576 4] Interrupt : 00000018
[244h 0580 1] Subtable Type : 01 [I/O APIC]
[245h 0581 1] Length : 0C
[246h 0582 1] I/O Apic ID : 0A
[247h 0583 1] Reserved : 00
[248h 0584 4] Address : FEC40000
[24Ch 0588 4] Interrupt : 00000030
[250h 0592 1] Subtable Type : 02 [Interrupt Source Override]
[251h 0593 1] Length : 0A
[252h 0594 1] Bus : 00
[253h 0595 1] Source : 00
[254h 0596 4] Interrupt : 00000002
[258h 0600 2] Flags (decoded below) : 0005
Polarity : 1
Trigger Mode : 1
[25Ah 0602 1] Subtable Type : 02 [Interrupt Source Override]
[25Bh 0603 1] Length : 0A
[25Ch 0604 1] Bus : 00
[25Dh 0605 1] Source : 09
[25Eh 0606 4] Interrupt : 00000009
[262h 0610 2] Flags (decoded below) : 000D
Polarity : 1
Trigger Mode : 3
[264h 0612 1] Subtable Type : 04 [Local APIC NMI]
[265h 0613 1] Length : 06
[266h 0614 1] Processor ID : FF
[267h 0615 2] Flags (decoded below) : 0000
Polarity : 0
Trigger Mode : 0
[269h 0617 1] Interrupt Input LINT : 01
Raw Table Data: Length 618 (0x26A)
0000: 41 50 49 43 6A 02 00 00 01 14 48 50 20 20 20 20 // APICj.....HP
0010: 50 72 6F 4C 69 61 6E 74 02 00 00 00 00 00 00 00 // ProLiant........
0020: 00 00 00 00 00 00 E0 FE 01 00 00 00 00 08 00 00 // ................
0030: 01 00 00 00 00 08 02 02 01 00 00 00 00 08 04 04 // ................
0040: 01 00 00 00 00 08 06 06 01 00 00 00 00 08 20 20 // ..............
0050: 01 00 00 00 00 08 22 22 01 00 00 00 00 08 24 24 // ......""......$$
0060: 01 00 00 00 00 08 26 26 01 00 00 00 00 08 00 00 // ......&&........
0070: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0080: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0090: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
00A0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
00B0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
00C0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
00D0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
00E0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
00F0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0100: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0110: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0120: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0130: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0140: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0150: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0160: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0170: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0180: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0190: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
01A0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
01B0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
01C0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
01D0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
01E0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
01F0: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0200: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0210: 00 00 00 00 00 08 00 00 00 00 00 00 00 08 00 00 // ................
0220: 00 00 00 00 00 08 00 00 00 00 00 00 01 0C 08 00 // ................
0230: 00 00 C0 FE 00 00 00 00 01 0C 00 00 00 00 C1 FE // ................
0240: 18 00 00 00 01 0C 0A 00 00 00 C4 FE 30 00 00 00 // ............0...
0250: 02 0A 00 00 02 00 00 00 05 00 02 0A 00 09 09 00 // ................
0260: 00 00 0D 00 04 06 FF 00 00 01 // ..........
BERT
----
[000h 0000 4] Signature : "BERT" [Boot Error Record Table]
[004h 0004 4] Table Length : 00000030
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : C4
[00Ah 0010 6] Oem ID : "HP "
[010h 0016 8] Oem Table ID : "ProLiant"
[018h 0024 4] Oem Revision : 00000001
[01Ch 0028 4] Asl Compiler ID : " "
[020h 0032 4] Asl Compiler Revision : 0000162E
[024h 0036 4] Boot Error Region Length : 00000040
[028h 0040 8] Boot Error Region Address : 0000000075DDF000
Raw Table Data: Length 48 (0x30)
0000: 42 45 52 54 30 00 00 00 01 C4 48 50 20 20 20 20 // BERT0.....HP
0010: 50 72 6F 4C 69 61 6E 74 01 00 00 00 D2 04 00 00 // ProLiant........
0020: 2E 16 00 00 40 00 00 00 00 F0 DD 75 00 00 00 00 // [email protected]....
DMAR
----
[000h 0000 4] Signature : "DMAR" [DMA Remapping table]
[004h 0004 4] Table Length : 00000506
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : 38
[00Ah 0010 6] Oem ID : "HP "
[010h 0016 8] Oem Table ID : "ProLiant"
[018h 0024 4] Oem Revision : 00000001
[01Ch 0028 4] Asl Compiler ID : " "
[020h 0032 4] Asl Compiler Revision : 0000162E
[024h 0036 1] Host Address Width : 2D
[025h 0037 1] Flags : 03
[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 : 0090
[034h 0052 1] Flags : 00
[035h 0053 1] Reserved : 00
[036h 0054 2] PCI Segment Number : 0000
[038h 0056 8] Register Base Address : 00000000FBEFE000
[040h 0064 1] Device Scope Type : 02 [PCI Bridge Device]
[041h 0065 1] Entry Length : 08
[042h 0066 2] Reserved : 0000
[044h 0068 1] Enumeration ID : 00
[045h 0069 1] PCI Bus Number : 20
[046h 0070 2] PCI Path : 00,00
[048h 0072 1] Device Scope Type : 02 [PCI Bridge Device]
[049h 0073 1] Entry Length : 08
[04Ah 0074 2] Reserved : 0000
[04Ch 0076 1] Enumeration ID : 00
[04Dh 0077 1] PCI Bus Number : 20
[04Eh 0078 2] PCI Path : 01,00
[050h 0080 1] Device Scope Type : 02 [PCI Bridge Device]
[051h 0081 1] Entry Length : 08
[052h 0082 2] Reserved : 0000
[054h 0084 1] Enumeration ID : 00
[055h 0085 1] PCI Bus Number : 20
[056h 0086 2] PCI Path : 01,01
[058h 0088 1] Device Scope Type : 02 [PCI Bridge Device]
[059h 0089 1] Entry Length : 08
[05Ah 0090 2] Reserved : 0000
[05Ch 0092 1] Enumeration ID : 00
[05Dh 0093 1] PCI Bus Number : 20
[05Eh 0094 2] PCI Path : 03,00
[060h 0096 1] Device Scope Type : 02 [PCI Bridge Device]
[061h 0097 1] Entry Length : 08
[062h 0098 2] Reserved : 0000
[064h 0100 1] Enumeration ID : 00
[065h 0101 1] PCI Bus Number : 20
[066h 0102 2] PCI Path : 03,01
[068h 0104 1] Device Scope Type : 02 [PCI Bridge Device]
[069h 0105 1] Entry Length : 08
[06Ah 0106 2] Reserved : 0000
[06Ch 0108 1] Enumeration ID : 00
[06Dh 0109 1] PCI Bus Number : 20
[06Eh 0110 2] PCI Path : 03,02
[070h 0112 1] Device Scope Type : 02 [PCI Bridge Device]
[071h 0113 1] Entry Length : 08
[072h 0114 2] Reserved : 0000
[074h 0116 1] Enumeration ID : 00
[075h 0117 1] PCI Bus Number : 20
[076h 0118 2] PCI Path : 03,03
[078h 0120 1] Device Scope Type : 03 [IOAPIC Device]
[079h 0121 1] Entry Length : 08
[07Ah 0122 2] Reserved : 0000
[07Ch 0124 1] Enumeration ID : 0A
[07Dh 0125 1] PCI Bus Number : 20
[07Eh 0126 2] PCI Path : 05,04
[080h 0128 1] Device Scope Type : 01 [PCI Endpoint Device]
[081h 0129 1] Entry Length : 08
[082h 0130 2] Reserved : 0000
[084h 0132 1] Enumeration ID : 00
[085h 0133 1] PCI Bus Number : 20
[086h 0134 2] PCI Path : 04,00
[088h 0136 1] Device Scope Type : 01 [PCI Endpoint Device]
[089h 0137 1] Entry Length : 08
[08Ah 0138 2] Reserved : 0000
[08Ch 0140 1] Enumeration ID : 00
[08Dh 0141 1] PCI Bus Number : 20
[08Eh 0142 2] PCI Path : 04,01
[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 : 20
[096h 0150 2] PCI Path : 04,02
[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 : 20
[09Eh 0158 2] PCI Path : 04,03
[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 : 20
[0A6h 0166 2] PCI Path : 04,04
[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 : 20
[0AEh 0174 2] PCI Path : 04,05
[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 : 20
[0B6h 0182 2] PCI Path : 04,06
[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 : 20
[0BEh 0190 2] PCI Path : 04,07
[0C0h 0192 2] Subtable Type : 0000 [Hardware Unit Definition]
[0C2h 0194 2] Length : 0028
[0C4h 0196 1] Flags : 01
[0C5h 0197 1] Reserved : 00
[0C6h 0198 2] PCI Segment Number : 0000
[0C8h 0200 8] Register Base Address : 00000000BEFFE000
[0D0h 0208 1] Device Scope Type : 03 [IOAPIC Device]
[0D1h 0209 1] Entry Length : 08
[0D2h 0210 2] Reserved : 0000
[0D4h 0212 1] Enumeration ID : 08
[0D5h 0213 1] PCI Bus Number : 00
[0D6h 0214 2] PCI Path : 1E,01
[0D8h 0216 1] Device Scope Type : 03 [IOAPIC Device]
[0D9h 0217 1] Entry Length : 08
[0DAh 0218 2] Reserved : 0000
[0DCh 0220 1] Enumeration ID : 00
[0DDh 0221 1] PCI Bus Number : 00
[0DEh 0222 2] PCI Path : 05,04
[0E0h 0224 1] Device Scope Type : 04 [Message-capable HPET Device]
[0E1h 0225 1] Entry Length : 08
[0E2h 0226 2] Reserved : 0000
[0E4h 0228 1] Enumeration ID : 00
[0E5h 0229 1] PCI Bus Number : 00
[0E6h 0230 2] PCI Path : 1F,00
[0E8h 0232 2] Subtable Type : 0001 [Reserved Memory Region]
[0EAh 0234 2] Length : 0028
[0ECh 0236 2] Reserved : 0000
[0EEh 0238 2] PCI Segment Number : 0000
[0F0h 0240 8] Base Address : 000000007DFFD000
[0F8h 0248 8] End Address (limit) : 000000007DFFFFFF
[100h 0256 1] Device Scope Type : 01 [PCI Endpoint Device]
[101h 0257 1] Entry Length : 08
[102h 0258 2] Reserved : 0000
[104h 0260 1] Enumeration ID : 00
[105h 0261 1] PCI Bus Number : 00
[106h 0262 2] PCI Path : 1D,00
[108h 0264 1] Device Scope Type : 01 [PCI Endpoint Device]
[109h 0265 1] Entry Length : 08
[10Ah 0266 2] Reserved : 0000
[10Ch 0268 1] Enumeration ID : 00
[10Dh 0269 1] PCI Bus Number : 00
[10Eh 0270 2] PCI Path : 1A,00
[110h 0272 2] Subtable Type : 0001 [Reserved Memory Region]
[112h 0274 2] Length : 0036
[114h 0276 2] Reserved : 0000
[116h 0278 2] PCI Segment Number : 0000
[118h 0280 8] Base Address : 000000007DFF6000
[120h 0288 8] End Address (limit) : 000000007DFFCFFF
[128h 0296 1] Device Scope Type : 01 [PCI Endpoint Device]
[129h 0297 1] Entry Length : 0A
[12Ah 0298 2] Reserved : 0000
[12Ch 0300 1] Enumeration ID : 00
[12Dh 0301 1] PCI Bus Number : 00
[12Eh 0302 2] PCI Path : 1C,07
[130h 0304 2] PCI Path : 00,00
[132h 0306 1] Device Scope Type : 01 [PCI Endpoint Device]
[133h 0307 1] Entry Length : 0A
[134h 0308 2] Reserved : 0000
[136h 0310 1] Enumeration ID : 00
[137h 0311 1] PCI Bus Number : 00
[138h 0312 2] PCI Path : 1C,07
[13Ah 0314 2] PCI Path : 00,02
[13Ch 0316 1] Device Scope Type : 01 [PCI Endpoint Device]
[13Dh 0317 1] Entry Length : 0A
[13Eh 0318 2] Reserved : 0000
[140h 0320 1] Enumeration ID : 00
[141h 0321 1] PCI Bus Number : 00
[142h 0322 2] PCI Path : 1C,07
[144h 0324 2] PCI Path : 00,04
[146h 0326 2] Subtable Type : 0001 [Reserved Memory Region]
[148h 0328 2] Length : 0078
[14Ah 0330 2] Reserved : 0000
[14Ch 0332 2] PCI Segment Number : 0000
[14Eh 0334 8] Base Address : 000000007DF83000
[156h 0342 8] End Address (limit) : 000000007DF84FFF
[15Eh 0350 1] Device Scope Type : 01 [PCI Endpoint Device]
[15Fh 0351 1] Entry Length : 0A
[160h 0352 2] Reserved : 0000
[162h 0354 1] Enumeration ID : 00
[163h 0355 1] PCI Bus Number : 00
[164h 0356 2] PCI Path : 01,01
[166h 0358 2] PCI Path : 00,00
[168h 0360 1] Device Scope Type : 01 [PCI Endpoint Device]
[169h 0361 1] Entry Length : 0A
[16Ah 0362 2] Reserved : 0000
[16Ch 0364 1] Enumeration ID : 00
[16Dh 0365 1] PCI Bus Number : 00
[16Eh 0366 2] PCI Path : 1C,07
[170h 0368 2] PCI Path : 00,00
[172h 0370 1] Device Scope Type : 01 [PCI Endpoint Device]
[173h 0371 1] Entry Length : 0A
[174h 0372 2] Reserved : 0000
[176h 0374 1] Enumeration ID : 00
[177h 0375 1] PCI Bus Number : 00
[178h 0376 2] PCI Path : 1C,07
[17Ah 0378 2] PCI Path : 00,02
[17Ch 0380 1] Device Scope Type : 01 [PCI Endpoint Device]
[17Dh 0381 1] Entry Length : 0A
[17Eh 0382 2] Reserved : 0000
[180h 0384 1] Enumeration ID : 00
[181h 0385 1] PCI Bus Number : 00
[182h 0386 2] PCI Path : 01,00
[184h 0388 2] PCI Path : 00,00
[186h 0390 1] Device Scope Type : 01 [PCI Endpoint Device]
[187h 0391 1] Entry Length : 08
[188h 0392 2] Reserved : 0000
[18Ah 0394 1] Enumeration ID : 00
[18Bh 0395 1] PCI Bus Number : 00
[18Ch 0396 2] PCI Path : 1F,02
[18Eh 0398 1] Device Scope Type : 01 [PCI Endpoint Device]
[18Fh 0399 1] Entry Length : 08
[190h 0400 2] Reserved : 0000
[192h 0402 1] Enumeration ID : 00
[193h 0403 1] PCI Bus Number : 00
[194h 0404 2] PCI Path : 1F,05
[196h 0406 1] Device Scope Type : 01 [PCI Endpoint Device]
[197h 0407 1] Entry Length : 0A
[198h 0408 2] Reserved : 0000
[19Ah 0410 1] Enumeration ID : 00
[19Bh 0411 1] PCI Bus Number : 00
[19Ch 0412 2] PCI Path : 1C,04
[19Eh 0414 2] PCI Path : 00,00
[1A0h 0416 1] Device Scope Type : 01 [PCI Endpoint Device]
[1A1h 0417 1] Entry Length : 0A
[1A2h 0418 2] Reserved : 0000
[1A4h 0420 1] Enumeration ID : 00
[1A5h 0421 1] PCI Bus Number : 00
[1A6h 0422 2] PCI Path : 1C,04
[1A8h 0424 2] PCI Path : 00,01
[1AAh 0426 1] Device Scope Type : 01 [PCI Endpoint Device]
[1ABh 0427 1] Entry Length : 0A
[1ACh 0428 2] Reserved : 0000
[1AEh 0430 1] Enumeration ID : 00
[1AFh 0431 1] PCI Bus Number : 00
[1B0h 0432 2] PCI Path : 1C,04
[1B2h 0434 2] PCI Path : 00,02
[1B4h 0436 1] Device Scope Type : 01 [PCI Endpoint Device]
[1B5h 0437 1] Entry Length : 0A
[1B6h 0438 2] Reserved : 0000
[1B8h 0440 1] Enumeration ID : 00
[1B9h 0441 1] PCI Bus Number : 00
[1BAh 0442 2] PCI Path : 1C,04
[1BCh 0444 2] PCI Path : 00,03
[1BEh 0446 2] Subtable Type : 0001 [Reserved Memory Region]