forked from linuxhw/ACPI
-
Notifications
You must be signed in to change notification settings - Fork 3
/
428B8D25DDA9
11492 lines (10369 loc) · 378 KB
/
428B8D25DDA9
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) MCFG 0x0000003C 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
02) ASF! 0x00000096 0x20 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
03) APIC 0x0000026A 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
04) SLIC 0x00000176 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
05) SSDT 0x00002094 0x01 "INTEL " "PPM RCM " 0x80000001 "INTL" 0x20061109
06) BOOT 0x00000028 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
07) _RAT 0x00000030 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
08) DSDT 0x00005908 0x01 "DELL " "dt_ex " 0x00001000 "INTL" 0x20050624
09) DMAR 0x00000110 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
10) FACP 0x000000F4 0x03 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
11) SSDT 0x0000009C 0x01 "DELL " "st_ex " 0x00001000 "INTL" 0x20050624
12) TCPA 0x00000032 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
13) HPET 0x00000038 0x01 "DELL " "B10K " 0x00000015 "ASL " 0x00000061
14) FACS 0x00000040 0x00
Found 14 ACPI tables in acpidump
_RAT
----
[000h 0000 4] Signature : "_RAT"
[004h 0004 4] Table Length : 00000030
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : 63
[00Ah 0010 6] Oem ID : "DELL "
[010h 0016 8] Oem Table ID : "B10K "
[018h 0024 4] Oem Revision : 00000015
[01Ch 0028 4] Asl Compiler ID : "ASL "
[020h 0032 4] Asl Compiler Revision : 00000061
**** Unknown ACPI table signature [_RAT]
Raw Table Data: Length 48 (0x30)
0000: 5F 52 41 54 30 00 00 00 01 63 44 45 4C 4C 20 20 // _RAT0....cDELL
0010: 42 31 30 4B 20 20 20 00 15 00 00 00 41 53 4C 20 // B10K .....ASL
0020: 61 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 // a...............
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 : 24
[00Ah 0010 6] Oem ID : "DELL "
[010h 0016 8] Oem Table ID : "B10K "
[018h 0024 4] Oem Revision : 00000015
[01Ch 0028 4] Asl Compiler ID : "ASL "
[020h 0032 4] Asl Compiler Revision : 00000061
[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 : 02
[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 : 04
[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 : 10
[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 : 12
[050h 0080 4] Flags (decoded below) : 00000001
Processor Enabled : 1
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 : 14
[058h 0088 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[05Ch 0092 1] Subtable Type : 00 [Processor Local APIC]
[05Dh 0093 1] Length : 08
[05Eh 0094 1] Processor ID : 07
[05Fh 0095 1] Local Apic ID : 01
[060h 0096 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[064h 0100 1] Subtable Type : 00 [Processor Local APIC]
[065h 0101 1] Length : 08
[066h 0102 1] Processor ID : 08
[067h 0103 1] Local Apic ID : 03
[068h 0104 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[06Ch 0108 1] Subtable Type : 00 [Processor Local APIC]
[06Dh 0109 1] Length : 08
[06Eh 0110 1] Processor ID : 09
[06Fh 0111 1] Local Apic ID : 05
[070h 0112 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[074h 0116 1] Subtable Type : 00 [Processor Local APIC]
[075h 0117 1] Length : 08
[076h 0118 1] Processor ID : 0A
[077h 0119 1] Local Apic ID : 11
[078h 0120 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[07Ch 0124 1] Subtable Type : 00 [Processor Local APIC]
[07Dh 0125 1] Length : 08
[07Eh 0126 1] Processor ID : 0B
[07Fh 0127 1] Local Apic ID : 13
[080h 0128 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[084h 0132 1] Subtable Type : 00 [Processor Local APIC]
[085h 0133 1] Length : 08
[086h 0134 1] Processor ID : 0C
[087h 0135 1] Local Apic ID : 15
[088h 0136 4] Flags (decoded below) : 00000001
Processor Enabled : 1
Runtime Online Capable : 0
[08Ch 0140 1] Subtable Type : 00 [Processor Local APIC]
[08Dh 0141 1] Length : 08
[08Eh 0142 1] Processor ID : 0D
[08Fh 0143 1] Local Apic ID : 00
[090h 0144 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[094h 0148 1] Subtable Type : 00 [Processor Local APIC]
[095h 0149 1] Length : 08
[096h 0150 1] Processor ID : 0E
[097h 0151 1] Local Apic ID : 00
[098h 0152 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[09Ch 0156 1] Subtable Type : 00 [Processor Local APIC]
[09Dh 0157 1] Length : 08
[09Eh 0158 1] Processor ID : 0F
[09Fh 0159 1] Local Apic ID : 00
[0A0h 0160 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0A4h 0164 1] Subtable Type : 00 [Processor Local APIC]
[0A5h 0165 1] Length : 08
[0A6h 0166 1] Processor ID : 10
[0A7h 0167 1] Local Apic ID : 00
[0A8h 0168 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0ACh 0172 1] Subtable Type : 00 [Processor Local APIC]
[0ADh 0173 1] Length : 08
[0AEh 0174 1] Processor ID : 11
[0AFh 0175 1] Local Apic ID : 00
[0B0h 0176 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0B4h 0180 1] Subtable Type : 00 [Processor Local APIC]
[0B5h 0181 1] Length : 08
[0B6h 0182 1] Processor ID : 12
[0B7h 0183 1] Local Apic ID : 00
[0B8h 0184 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0BCh 0188 1] Subtable Type : 00 [Processor Local APIC]
[0BDh 0189 1] Length : 08
[0BEh 0190 1] Processor ID : 13
[0BFh 0191 1] Local Apic ID : 00
[0C0h 0192 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0C4h 0196 1] Subtable Type : 00 [Processor Local APIC]
[0C5h 0197 1] Length : 08
[0C6h 0198 1] Processor ID : 14
[0C7h 0199 1] Local Apic ID : 00
[0C8h 0200 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0CCh 0204 1] Subtable Type : 00 [Processor Local APIC]
[0CDh 0205 1] Length : 08
[0CEh 0206 1] Processor ID : 15
[0CFh 0207 1] Local Apic ID : 00
[0D0h 0208 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0D4h 0212 1] Subtable Type : 00 [Processor Local APIC]
[0D5h 0213 1] Length : 08
[0D6h 0214 1] Processor ID : 16
[0D7h 0215 1] Local Apic ID : 00
[0D8h 0216 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0DCh 0220 1] Subtable Type : 00 [Processor Local APIC]
[0DDh 0221 1] Length : 08
[0DEh 0222 1] Processor ID : 17
[0DFh 0223 1] Local Apic ID : 00
[0E0h 0224 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0E4h 0228 1] Subtable Type : 00 [Processor Local APIC]
[0E5h 0229 1] Length : 08
[0E6h 0230 1] Processor ID : 18
[0E7h 0231 1] Local Apic ID : 00
[0E8h 0232 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0ECh 0236 1] Subtable Type : 00 [Processor Local APIC]
[0EDh 0237 1] Length : 08
[0EEh 0238 1] Processor ID : 19
[0EFh 0239 1] Local Apic ID : 00
[0F0h 0240 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0F4h 0244 1] Subtable Type : 00 [Processor Local APIC]
[0F5h 0245 1] Length : 08
[0F6h 0246 1] Processor ID : 1A
[0F7h 0247 1] Local Apic ID : 00
[0F8h 0248 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[0FCh 0252 1] Subtable Type : 00 [Processor Local APIC]
[0FDh 0253 1] Length : 08
[0FEh 0254 1] Processor ID : 1B
[0FFh 0255 1] Local Apic ID : 00
[100h 0256 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[104h 0260 1] Subtable Type : 00 [Processor Local APIC]
[105h 0261 1] Length : 08
[106h 0262 1] Processor ID : 1C
[107h 0263 1] Local Apic ID : 00
[108h 0264 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[10Ch 0268 1] Subtable Type : 00 [Processor Local APIC]
[10Dh 0269 1] Length : 08
[10Eh 0270 1] Processor ID : 1D
[10Fh 0271 1] Local Apic ID : 00
[110h 0272 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[114h 0276 1] Subtable Type : 00 [Processor Local APIC]
[115h 0277 1] Length : 08
[116h 0278 1] Processor ID : 1E
[117h 0279 1] Local Apic ID : 00
[118h 0280 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[11Ch 0284 1] Subtable Type : 00 [Processor Local APIC]
[11Dh 0285 1] Length : 08
[11Eh 0286 1] Processor ID : 1F
[11Fh 0287 1] Local Apic ID : 00
[120h 0288 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[124h 0292 1] Subtable Type : 00 [Processor Local APIC]
[125h 0293 1] Length : 08
[126h 0294 1] Processor ID : 20
[127h 0295 1] Local Apic ID : 00
[128h 0296 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[12Ch 0300 1] Subtable Type : 00 [Processor Local APIC]
[12Dh 0301 1] Length : 08
[12Eh 0302 1] Processor ID : 21
[12Fh 0303 1] Local Apic ID : 00
[130h 0304 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[134h 0308 1] Subtable Type : 00 [Processor Local APIC]
[135h 0309 1] Length : 08
[136h 0310 1] Processor ID : 22
[137h 0311 1] Local Apic ID : 00
[138h 0312 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[13Ch 0316 1] Subtable Type : 00 [Processor Local APIC]
[13Dh 0317 1] Length : 08
[13Eh 0318 1] Processor ID : 23
[13Fh 0319 1] Local Apic ID : 00
[140h 0320 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[144h 0324 1] Subtable Type : 00 [Processor Local APIC]
[145h 0325 1] Length : 08
[146h 0326 1] Processor ID : 24
[147h 0327 1] Local Apic ID : 00
[148h 0328 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[14Ch 0332 1] Subtable Type : 00 [Processor Local APIC]
[14Dh 0333 1] Length : 08
[14Eh 0334 1] Processor ID : 25
[14Fh 0335 1] Local Apic ID : 00
[150h 0336 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[154h 0340 1] Subtable Type : 00 [Processor Local APIC]
[155h 0341 1] Length : 08
[156h 0342 1] Processor ID : 26
[157h 0343 1] Local Apic ID : 00
[158h 0344 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[15Ch 0348 1] Subtable Type : 00 [Processor Local APIC]
[15Dh 0349 1] Length : 08
[15Eh 0350 1] Processor ID : 27
[15Fh 0351 1] Local Apic ID : 00
[160h 0352 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[164h 0356 1] Subtable Type : 00 [Processor Local APIC]
[165h 0357 1] Length : 08
[166h 0358 1] Processor ID : 28
[167h 0359 1] Local Apic ID : 00
[168h 0360 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[16Ch 0364 1] Subtable Type : 00 [Processor Local APIC]
[16Dh 0365 1] Length : 08
[16Eh 0366 1] Processor ID : 29
[16Fh 0367 1] Local Apic ID : 00
[170h 0368 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[174h 0372 1] Subtable Type : 00 [Processor Local APIC]
[175h 0373 1] Length : 08
[176h 0374 1] Processor ID : 2A
[177h 0375 1] Local Apic ID : 00
[178h 0376 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[17Ch 0380 1] Subtable Type : 00 [Processor Local APIC]
[17Dh 0381 1] Length : 08
[17Eh 0382 1] Processor ID : 2B
[17Fh 0383 1] Local Apic ID : 00
[180h 0384 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[184h 0388 1] Subtable Type : 00 [Processor Local APIC]
[185h 0389 1] Length : 08
[186h 0390 1] Processor ID : 2C
[187h 0391 1] Local Apic ID : 00
[188h 0392 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[18Ch 0396 1] Subtable Type : 00 [Processor Local APIC]
[18Dh 0397 1] Length : 08
[18Eh 0398 1] Processor ID : 2D
[18Fh 0399 1] Local Apic ID : 00
[190h 0400 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[194h 0404 1] Subtable Type : 00 [Processor Local APIC]
[195h 0405 1] Length : 08
[196h 0406 1] Processor ID : 2E
[197h 0407 1] Local Apic ID : 00
[198h 0408 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[19Ch 0412 1] Subtable Type : 00 [Processor Local APIC]
[19Dh 0413 1] Length : 08
[19Eh 0414 1] Processor ID : 2F
[19Fh 0415 1] Local Apic ID : 00
[1A0h 0416 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1A4h 0420 1] Subtable Type : 00 [Processor Local APIC]
[1A5h 0421 1] Length : 08
[1A6h 0422 1] Processor ID : 30
[1A7h 0423 1] Local Apic ID : 00
[1A8h 0424 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1ACh 0428 1] Subtable Type : 00 [Processor Local APIC]
[1ADh 0429 1] Length : 08
[1AEh 0430 1] Processor ID : 31
[1AFh 0431 1] Local Apic ID : 00
[1B0h 0432 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1B4h 0436 1] Subtable Type : 00 [Processor Local APIC]
[1B5h 0437 1] Length : 08
[1B6h 0438 1] Processor ID : 32
[1B7h 0439 1] Local Apic ID : 00
[1B8h 0440 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1BCh 0444 1] Subtable Type : 00 [Processor Local APIC]
[1BDh 0445 1] Length : 08
[1BEh 0446 1] Processor ID : 33
[1BFh 0447 1] Local Apic ID : 00
[1C0h 0448 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1C4h 0452 1] Subtable Type : 00 [Processor Local APIC]
[1C5h 0453 1] Length : 08
[1C6h 0454 1] Processor ID : 34
[1C7h 0455 1] Local Apic ID : 00
[1C8h 0456 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1CCh 0460 1] Subtable Type : 00 [Processor Local APIC]
[1CDh 0461 1] Length : 08
[1CEh 0462 1] Processor ID : 35
[1CFh 0463 1] Local Apic ID : 00
[1D0h 0464 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1D4h 0468 1] Subtable Type : 00 [Processor Local APIC]
[1D5h 0469 1] Length : 08
[1D6h 0470 1] Processor ID : 36
[1D7h 0471 1] Local Apic ID : 00
[1D8h 0472 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1DCh 0476 1] Subtable Type : 00 [Processor Local APIC]
[1DDh 0477 1] Length : 08
[1DEh 0478 1] Processor ID : 37
[1DFh 0479 1] Local Apic ID : 00
[1E0h 0480 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1E4h 0484 1] Subtable Type : 00 [Processor Local APIC]
[1E5h 0485 1] Length : 08
[1E6h 0486 1] Processor ID : 38
[1E7h 0487 1] Local Apic ID : 00
[1E8h 0488 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1ECh 0492 1] Subtable Type : 00 [Processor Local APIC]
[1EDh 0493 1] Length : 08
[1EEh 0494 1] Processor ID : 39
[1EFh 0495 1] Local Apic ID : 00
[1F0h 0496 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1F4h 0500 1] Subtable Type : 00 [Processor Local APIC]
[1F5h 0501 1] Length : 08
[1F6h 0502 1] Processor ID : 3A
[1F7h 0503 1] Local Apic ID : 00
[1F8h 0504 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[1FCh 0508 1] Subtable Type : 00 [Processor Local APIC]
[1FDh 0509 1] Length : 08
[1FEh 0510 1] Processor ID : 3B
[1FFh 0511 1] Local Apic ID : 00
[200h 0512 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[204h 0516 1] Subtable Type : 00 [Processor Local APIC]
[205h 0517 1] Length : 08
[206h 0518 1] Processor ID : 3C
[207h 0519 1] Local Apic ID : 00
[208h 0520 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[20Ch 0524 1] Subtable Type : 00 [Processor Local APIC]
[20Dh 0525 1] Length : 08
[20Eh 0526 1] Processor ID : 3D
[20Fh 0527 1] Local Apic ID : 00
[210h 0528 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[214h 0532 1] Subtable Type : 00 [Processor Local APIC]
[215h 0533 1] Length : 08
[216h 0534 1] Processor ID : 3E
[217h 0535 1] Local Apic ID : 00
[218h 0536 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[21Ch 0540 1] Subtable Type : 00 [Processor Local APIC]
[21Dh 0541 1] Length : 08
[21Eh 0542 1] Processor ID : 3F
[21Fh 0543 1] Local Apic ID : 00
[220h 0544 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 0
[224h 0548 1] Subtable Type : 00 [Processor Local APIC]
[225h 0549 1] Length : 08
[226h 0550 1] Processor ID : 40
[227h 0551 1] Local Apic ID : 00
[228h 0552 4] Flags (decoded below) : 00000000
Processor Enabled : 0
Runtime Online Capable : 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 : 09
[23Bh 0571 1] Reserved : 00
[23Ch 0572 4] Address : FEC80000
[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 : FEC88000
[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) : 0000
Polarity : 0
Trigger Mode : 0
[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) : 000D
Polarity : 1
Trigger Mode : 3
[269h 0617 1] Interrupt Input LINT : 01
Raw Table Data: Length 618 (0x26A)
0000: 41 50 49 43 6A 02 00 00 01 24 44 45 4C 4C 20 20 // APICj....$DELL
0010: 42 31 30 4B 20 20 20 00 15 00 00 00 41 53 4C 20 // B10K .....ASL
0020: 61 00 00 00 00 00 E0 FE 01 00 00 00 00 08 01 00 // a...............
0030: 01 00 00 00 00 08 02 02 01 00 00 00 00 08 03 04 // ................
0040: 01 00 00 00 00 08 04 10 01 00 00 00 00 08 05 12 // ................
0050: 01 00 00 00 00 08 06 14 01 00 00 00 00 08 07 01 // ................
0060: 01 00 00 00 00 08 08 03 01 00 00 00 00 08 09 05 // ................
0070: 01 00 00 00 00 08 0A 11 01 00 00 00 00 08 0B 13 // ................
0080: 01 00 00 00 00 08 0C 15 01 00 00 00 00 08 0D 00 // ................
0090: 00 00 00 00 00 08 0E 00 00 00 00 00 00 08 0F 00 // ................
00A0: 00 00 00 00 00 08 10 00 00 00 00 00 00 08 11 00 // ................
00B0: 00 00 00 00 00 08 12 00 00 00 00 00 00 08 13 00 // ................
00C0: 00 00 00 00 00 08 14 00 00 00 00 00 00 08 15 00 // ................
00D0: 00 00 00 00 00 08 16 00 00 00 00 00 00 08 17 00 // ................
00E0: 00 00 00 00 00 08 18 00 00 00 00 00 00 08 19 00 // ................
00F0: 00 00 00 00 00 08 1A 00 00 00 00 00 00 08 1B 00 // ................
0100: 00 00 00 00 00 08 1C 00 00 00 00 00 00 08 1D 00 // ................
0110: 00 00 00 00 00 08 1E 00 00 00 00 00 00 08 1F 00 // ................
0120: 00 00 00 00 00 08 20 00 00 00 00 00 00 08 21 00 // ...... .......!.
0130: 00 00 00 00 00 08 22 00 00 00 00 00 00 08 23 00 // ......".......#.
0140: 00 00 00 00 00 08 24 00 00 00 00 00 00 08 25 00 // ......$.......%.
0150: 00 00 00 00 00 08 26 00 00 00 00 00 00 08 27 00 // ......&.......'.
0160: 00 00 00 00 00 08 28 00 00 00 00 00 00 08 29 00 // ......(.......).
0170: 00 00 00 00 00 08 2A 00 00 00 00 00 00 08 2B 00 // ......*.......+.
0180: 00 00 00 00 00 08 2C 00 00 00 00 00 00 08 2D 00 // ......,.......-.
0190: 00 00 00 00 00 08 2E 00 00 00 00 00 00 08 2F 00 // ............../.
01A0: 00 00 00 00 00 08 30 00 00 00 00 00 00 08 31 00 // ......0.......1.
01B0: 00 00 00 00 00 08 32 00 00 00 00 00 00 08 33 00 // ......2.......3.
01C0: 00 00 00 00 00 08 34 00 00 00 00 00 00 08 35 00 // ......4.......5.
01D0: 00 00 00 00 00 08 36 00 00 00 00 00 00 08 37 00 // ......6.......7.
01E0: 00 00 00 00 00 08 38 00 00 00 00 00 00 08 39 00 // ......8.......9.
01F0: 00 00 00 00 00 08 3A 00 00 00 00 00 00 08 3B 00 // ......:.......;.
0200: 00 00 00 00 00 08 3C 00 00 00 00 00 00 08 3D 00 // ......<.......=.
0210: 00 00 00 00 00 08 3E 00 00 00 00 00 00 08 3F 00 // ......>.......?.
0220: 00 00 00 00 00 08 40 00 00 00 00 00 01 0C 08 00 // ......@.........
0230: 00 00 C0 FE 00 00 00 00 01 0C 09 00 00 00 C8 FE // ................
0240: 18 00 00 00 01 0C 0A 00 00 80 C8 FE 30 00 00 00 // ............0...
0250: 02 0A 00 00 02 00 00 00 00 00 02 0A 00 09 09 00 // ................
0260: 00 00 0D 00 04 06 FF 0D 00 01 // ..........
ASF!
----
[000h 0000 4] Signature : "ASF!" [Alert Standard Format table]
[004h 0004 4] Table Length : 00000096
[008h 0008 1] Revision : 20
[009h 0009 1] Checksum : 85
[00Ah 0010 6] Oem ID : "DELL "
[010h 0016 8] Oem Table ID : "B10K "
[018h 0024 4] Oem Revision : 00000015
[01Ch 0028 4] Asl Compiler ID : "ASL "
[020h 0032 4] Asl Compiler Revision : 00000061
[024h 0036 1] Subtable Type : 04 [ASF Address]
[025h 0037 1] Reserved : 00
[026h 0038 2] Length : 0007
[028h 0040 1] Eprom Address : 00
[029h 0041 1] Device Count : 01
[02Ah 0042 1] Addresses : 88
[02Bh 0043 1] Subtable Type : 01 [ASF Alerts]
[02Ch 0044 1] Reserved : 00
[02Dh 0045 2] Length : 002C
[02Fh 0047 1] AssertMask : 00
[030h 0048 1] DeassertMask : 00
[031h 0049 1] Alert Count : 03
[032h 0050 1] Alert Data Length : 0C
[033h 0051 1] Address : 89
[034h 0052 1] Command : 04
[035h 0053 1] Mask : 01
[036h 0054 1] Value : 01
[037h 0055 1] SensorType : 05
[038h 0056 1] Type : 6F
[039h 0057 1] Offset : 00
[03Ah 0058 1] SourceType : 68
[03Bh 0059 1] Severity : 08
[03Ch 0060 1] SensorNumber : 88
[03Dh 0061 1] Entity : 17
[03Eh 0062 1] Instance : 00
[03Fh 0063 1] Address : 89
[040h 0064 1] Command : 04
[041h 0065 1] Mask : 04
[042h 0066 1] Value : 04
[043h 0067 1] SensorType : 07
[044h 0068 1] Type : 6F
[045h 0069 1] Offset : 00
[046h 0070 1] SourceType : 68
[047h 0071 1] Severity : 20
[048h 0072 1] SensorNumber : 88
[049h 0073 1] Entity : 03
[04Ah 0074 1] Instance : 00
[04Bh 0075 1] Address : 89
[04Ch 0076 1] Command : 05
[04Dh 0077 1] Mask : 01
[04Eh 0078 1] Value : 01
[04Fh 0079 1] SensorType : 19
[050h 0080 1] Type : 6F
[051h 0081 1] Offset : 00
[052h 0082 1] SourceType : 68
[053h 0083 1] Severity : 20
[054h 0084 1] SensorNumber : 88
[055h 0085 1] Entity : 22
[056h 0086 1] Instance : 00
[057h 0087 1] Subtable Type : 02 [ASF Remote Control]
[058h 0088 1] Reserved : 00
[059h 0089 2] Length : 0018
[05Bh 0091 1] Control Count : 04
[05Ch 0092 1] Control Data Length : 04
[05Dh 0093 2] Reserved : 0000
[05Fh 0095 1] Function : 02
[060h 0096 1] Address : 88
[061h 0097 1] Command : 00
[062h 0098 1] Value : 01
[063h 0099 1] Function : 01
[064h 0100 1] Address : 88
[065h 0101 1] Command : 00
[066h 0102 1] Value : 02
[067h 0103 1] Function : 00
[068h 0104 1] Address : 88
[069h 0105 1] Command : 00
[06Ah 0106 1] Value : 03
[06Bh 0107 1] Function : 03
[06Ch 0108 1] Address : 88
[06Dh 0109 1] Command : 00
[06Eh 0110 1] Value : 04
[06Fh 0111 1] Subtable Type : 03 [ASF RMCP Boot Options]
[070h 0112 1] Reserved : 00
[071h 0113 2] Length : 0017
[073h 0115 7] Capabilities : 22 18 00 00 00 03 0F
[07Ah 0122 1] Completion Code : 01
[07Bh 0123 4] Enterprise ID : 00000000
[07Fh 0127 1] Command : 00
[080h 0128 2] Parameter : 0000
[082h 0130 2] Boot Options : 0000
[084h 0132 2] Oem Parameters : 0000
[086h 0134 1] Subtable Type : 80 [ASF Information]
[087h 0135 1] Reserved : 00
[088h 0136 2] Length : 0010
[08Ah 0138 1] Minimum Reset Value : FF
[08Bh 0139 1] Minimum Polling Interval : 00
[08Ch 0140 2] System ID : 026D
[08Eh 0142 4] Manufacturer ID : A2020000
[092h 0146 1] Flags : 00
[093h 0147 3] Reserved : 000000
Raw Table Data: Length 150 (0x96)
0000: 41 53 46 21 96 00 00 00 20 85 44 45 4C 4C 20 20 // ASF!.... .DELL
0010: 42 31 30 4B 20 20 20 00 15 00 00 00 41 53 4C 20 // B10K .....ASL
0020: 61 00 00 00 04 00 07 00 00 01 88 01 00 2C 00 00 // a............,..
0030: 00 03 0C 89 04 01 01 05 6F 00 68 08 88 17 00 89 // ........o.h.....
0040: 04 04 04 07 6F 00 68 20 88 03 00 89 05 01 01 19 // ....o.h ........
0050: 6F 00 68 20 88 22 00 02 00 18 00 04 04 00 00 02 // o.h ."..........
0060: 88 00 01 01 88 00 02 00 88 00 03 03 88 00 04 03 // ................
0070: 00 17 00 22 18 00 00 00 03 0F 01 00 00 00 00 00 // ..."............
0080: 00 00 00 00 00 00 80 00 10 00 FF 00 6D 02 00 00 // ............m...
0090: 02 A2 00 00 00 00 // ......
BOOT
----
[000h 0000 4] Signature : "BOOT" [Simple Boot Flag Table]
[004h 0004 4] Table Length : 00000028
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : 04
[00Ah 0010 6] Oem ID : "DELL "
[010h 0016 8] Oem Table ID : "B10K "
[018h 0024 4] Oem Revision : 00000015
[01Ch 0028 4] Asl Compiler ID : "ASL "
[020h 0032 4] Asl Compiler Revision : 00000061
[024h 0036 1] Boot Register Index : 7A
[025h 0037 3] Reserved : 000000
Raw Table Data: Length 40 (0x28)
0000: 42 4F 4F 54 28 00 00 00 01 04 44 45 4C 4C 20 20 // BOOT(.....DELL
0010: 42 31 30 4B 20 20 20 00 15 00 00 00 41 53 4C 20 // B10K .....ASL
0020: 61 00 00 00 7A 00 00 00 // a...z...
DMAR
----
[000h 0000 4] Signature : "DMAR" [DMA Remapping table]
[004h 0004 4] Table Length : 00000110
[008h 0008 1] Revision : 01
[009h 0009 1] Checksum : E0
[00Ah 0010 6] Oem ID : "DELL "
[010h 0016 8] Oem Table ID : "B10K "
[018h 0024 4] Oem Revision : 00000015
[01Ch 0028 4] Asl Compiler ID : "ASL "
[020h 0032 4] Asl Compiler Revision : 00000061
[024h 0036 1] Host Address Width : 27
[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 : 0030
[034h 0052 1] Flags : 00
[035h 0053 1] Reserved : 00
[036h 0054 2] PCI Segment Number : 0000
[038h 0056 8] Register Base Address : 00000000DFFFE000
[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 : 03,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 : 07,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 : 09,00
[058h 0088 1] Device Scope Type : 03 [IOAPIC Device]
[059h 0089 1] Entry Length : 08
[05Ah 0090 2] Reserved : 0000
[05Ch 0092 1] Enumeration ID : 0A
[05Dh 0093 1] PCI Bus Number : 20
[05Eh 0094 2] PCI Path : 13,00
[060h 0096 2] Subtable Type : 0000 [Hardware Unit Definition]
[062h 0098 2] Length : 0020
[064h 0100 1] Flags : 01
[065h 0101 1] Reserved : 00
[066h 0102 2] PCI Segment Number : 0000
[068h 0104 8] Register Base Address : 00000000FEDC0000
[070h 0112 1] Device Scope Type : 03 [IOAPIC Device]
[071h 0113 1] Entry Length : 08
[072h 0114 2] Reserved : 0000
[074h 0116 1] Enumeration ID : 09
[075h 0117 1] PCI Bus Number : 00
[076h 0118 2] PCI Path : 13,00
[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 : 08
[07Dh 0125 1] PCI Bus Number : 00
[07Eh 0126 2] PCI Path : 1F,07
[080h 0128 2] Subtable Type : 0001 [Reserved Memory Region]
[082h 0130 2] Length : 0058
[084h 0132 2] Reserved : 0000
[086h 0134 2] PCI Segment Number : 0000
[088h 0136 8] Base Address : 00000000DBE58000
[090h 0144 8] End Address (limit) : 00000000DBE6FFFF
[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,00
[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,01
[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,02
[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 : 1D,07
[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,00
[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,01
[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,02
[0D0h 0208 1] Device Scope Type : 01 [PCI Endpoint Device]
[0D1h 0209 1] Entry Length : 08
[0D2h 0210 2] Reserved : 0000
[0D4h 0212 1] Enumeration ID : 00
[0D5h 0213 1] PCI Bus Number : 00
[0D6h 0214 2] PCI Path : 1A,07
[0D8h 0216 2] Subtable Type : 0002 [Root Port ATS Capability]
[0DAh 0218 2] Length : 0018
[0DCh 0220 1] Flags : 00
[0DDh 0221 1] Reserved : 00
[0DEh 0222 2] PCI Segment Number : 0000
[0E0h 0224 1] Device Scope Type : 02 [PCI Bridge 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 : 03,00