-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path55BDC0F976
2681 lines (2523 loc) · 110 KB
/
55BDC0F976
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
23: PCI 160e.2: 0880 System peripheral
[Created at pci.386]
Unique ID: ZLmH.jRshK7f+QgC
SysFS ID: /devices/pci0000:16/0000:16:0e.2
SysFS BusID: 0000:16:0e.2
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208e "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Esv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 300.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: svHJ.vbxEUVKrzgD
Parent ID: hoOk.OR2y+hpS221
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: storage
Model: "ASMedia SATA controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x0625
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8634
Revision: 0x01
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0x94580000-0x94581fff (rw,non-prefetchable)
Memory Range: 0x94500000-0x9457ffff (ro,non-prefetchable,disabled)
IRQ: 85 (no events)
Module Alias: "pci:v00001B21d00000625sv00001043sd00008634bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #139 (PCI bridge)
25: PCI 640d.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 1uWl.fGglfUwccS5
SysFS ID: /devices/pci0000:64/0000:64:0d.2
SysFS BusID: 0000:64:0d.2
Hardware Class: unknown
Model: "Intel Sky Lake-E LMS Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x204a "Sky Lake-E LMS Channel 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "skx_uncore"
Module Alias: "pci:v00008086d0000204Asv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 17.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: abAj.M35EzASg1_1
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: storage
Model: "Intel C620 Series Chipset Family SATA Controller [AHCI mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa182 "C620 Series Chipset Family SATA Controller [AHCI mode]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0x09
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0x94698000-0x94699fff (rw,non-prefetchable)
Memory Range: 0x9469a000-0x9469a0ff (rw,non-prefetchable)
I/O Ports: 0x5030-0x5037 (rw)
I/O Ports: 0x5020-0x5023 (rw)
I/O Ports: 0x5000-0x501f (rw)
Memory Range: 0x94600000-0x9467ffff (rw,non-prefetchable)
IRQ: 33 (20747 events)
Module Alias: "pci:v00008086d0000A182sv00001043sd0000871Ebc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 640a.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 3vOg.V7EGsnkZLd1
SysFS ID: /devices/pci0000:64/0000:64:0a.0
SysFS BusID: 0000:64:0a.0
Hardware Class: unknown
Model: "Intel Sky Lake-E Integrated Memory Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2040 "Sky Lake-E Integrated Memory Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002040sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 161e.5: 0880 System peripheral
[Created at pci.386]
Unique ID: NoNL.4jMy+_afhD9
SysFS ID: /devices/pci0000:16/0000:16:1e.5
SysFS BusID: 0000:16:1e.5
Hardware Class: unknown
Model: "Intel Sky Lake-E PCU Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2085 "Sky Lake-E PCU Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002085sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 1f.2: 0580 Memory controller
[Created at pci.386]
Unique ID: w7Y8.IQ_9W0nmvo3
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: unknown
Model: "Intel C620 Series Chipset Family Power Management Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa1a1 "C620 Series Chipset Family Power Management Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0x09
Memory Range: 0x94694000-0x94697fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d0000A1A1sv00001043sd0000871Ebc05sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.Mc9S2Za2+G0
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel C620 Series Chipset Family PCI Express Root Port #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa190 "C620 Series Chipset Family PCI Express Root Port #1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0xf9
Driver: "pcieport"
IRQ: 24 (no events)
Module Alias: "pci:v00008086d0000A190sv00001043sd0000871Ebc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI b215.0: 0880 System peripheral
[Created at pci.386]
Unique ID: a51C.tYTIe2g8Hj3
SysFS ID: /devices/pci0000:b2/0000:b2:15.0
SysFS BusID: 0000:b2:15.0
Hardware Class: unknown
Model: "Intel Sky Lake-E M2PCI Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2018 "Sky Lake-E M2PCI Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002018sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: RE4e.puhIjqr5Ac3
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: unknown
Model: "Intel Sky Lake-E Ubox Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2014 "Sky Lake-E Ubox Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002014sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 161d.0: 0880 System peripheral
[Created at pci.386]
Unique ID: z2uh.pP6FTB6gtH9
SysFS ID: /devices/pci0000:16/0000:16:1d.0
SysFS BusID: 0000:16:1d.0
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2054 "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002054sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 640b.3: 0880 System peripheral
[Created at pci.386]
Unique ID: k_ve.AhcV832K8r5
SysFS ID: /devices/pci0000:64/0000:64:0b.3
SysFS BusID: 0000:64:0b.3
Hardware Class: unknown
Model: "Intel Sky Lake-E LMDP Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x204b "Sky Lake-E LMDP Channel 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000204Bsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 04.4: 0880 System peripheral
[Created at pci.386]
Unique ID: b5r5.WHz1zAkU0A7
SysFS ID: /devices/pci0000:00/0000:00:04.4
SysFS BusID: 0000:00:04.4
Hardware Class: unknown
Model: "Intel Sky Lake-E CBDMA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2021 "Sky Lake-E CBDMA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x383ffff1c000-0x383ffff1ffff (rw,non-prefetchable)
IRQ: 86 (no events)
Module Alias: "pci:v00008086d00002021sv00008086sd00000000bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 1609.0: 0880 System peripheral
[Created at pci.386]
Unique ID: S8YG.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:09.0
SysFS BusID: 0000:16:09.0
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208d "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Dsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 6408.0: 0880 System peripheral
[Created at pci.386]
Unique ID: vgIk.5t5k6OaaMmE
SysFS ID: /devices/pci0000:64/0000:64:08.0
SysFS BusID: 0000:64:08.0
Hardware Class: unknown
Model: "Intel Sky Lake-E Integrated Memory Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2066 "Sky Lake-E Integrated Memory Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "skx_uncore"
Module Alias: "pci:v00008086d00002066sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI 1608.6: 0880 System peripheral
[Created at pci.386]
Unique ID: Z_Qp.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:08.6
SysFS BusID: 0000:16:08.6
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208d "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Dsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 160e.0: 0880 System peripheral
[Created at pci.386]
Unique ID: rhnc.jRshK7f+QgC
SysFS ID: /devices/pci0000:16/0000:16:0e.0
SysFS BusID: 0000:16:0e.0
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208e "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Esv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 1605.4: 0800 PIC (IO(X)-APIC)
[Created at pci.386]
Unique ID: c+Ik.B7JnT_lpC+5
SysFS ID: /devices/pci0000:16/0000:16:05.4
SysFS BusID: 0000:16:05.4
Hardware Class: unknown
Model: "Intel Sky Lake-E IOxAPIC Configuration Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2036 "Sky Lake-E IOxAPIC Configuration Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2036
Revision: 0x07
Memory Range: 0xaf700000-0xaf700fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d00002036sv00008086sd00002036bc08sc00i20"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 640d.0: 0880 System peripheral
[Created at pci.386]
Unique ID: IEY4.dRnFiLhCZh4
SysFS ID: /devices/pci0000:64/0000:64:0d.0
SysFS BusID: 0000:64:0d.0
Hardware Class: unknown
Model: "Intel Sky Lake-E DECS Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2048 "Sky Lake-E DECS Channel 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002048sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI 161e.3: 0880 System peripheral
[Created at pci.386]
Unique ID: e8Pg.2uTS2sLFeS8
SysFS ID: /devices/pci0000:16/0000:16:1e.3
SysFS BusID: 0000:16:1e.3
Hardware Class: unknown
Model: "Intel Sky Lake-E PCU Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2083 "Sky Lake-E PCU Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002083sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.KLmtkT7v9kC
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel C621 Series Chipset LPC/eSPI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa1c1 "C621 Series Chipset LPC/eSPI Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0x09
Module Alias: "pci:v00008086d0000A1C1sv00001043sd0000871Ebc06sc01i00"
Driver Info #0:
Driver Status: lpc_ich is active
Driver Activation Cmd: "modprobe lpc_ich"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 640c.6: 0880 System peripheral
[Created at pci.386]
Unique ID: P4Rd.bculkCSoVw3
SysFS ID: /devices/pci0000:64/0000:64:0c.6
SysFS BusID: 0000:64:0c.6
Hardware Class: unknown
Model: "Intel Sky Lake-E LMS Channel 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2046 "Sky Lake-E LMS Channel 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "skx_uncore"
Module Alias: "pci:v00008086d00002046sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 16.4: 0780 Communication controller
[Created at pci.386]
Unique ID: _4jY.HPTjT1Lx3u5
SysFS ID: /devices/pci0000:00/0000:00:16.4
SysFS BusID: 0000:00:16.4
Hardware Class: unknown
Model: "Intel C620 Series Chipset Family MEI Controller #3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa1be "C620 Series Chipset Family MEI Controller #3"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0x09
Memory Range: 0x383ffff30000-0x383ffff30fff (rw,non-prefetchable)
IRQ: 10 (no events)
Module Alias: "pci:v00008086d0000A1BEsv00001043sd0000871Ebc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 200.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: B35A.B8TDHzdOoT4
Parent ID: VCu0._tiwZrVTbc2
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: graphics card
Model: "ASPEED AST1000/2000"
Vendor: pci 0x1a03 "ASPEED Technology Inc."
Device: pci 0x2000 "AST1000/2000"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x86ed
Revision: 0x41
Memory Range: 0x90000000-0x93ffffff (rw,non-prefetchable,disabled)
Memory Range: 0x94000000-0x9401ffff (rw,non-prefetchable,disabled)
I/O Ports: 0x4000-0x407f (rw,disabled)
IRQ: 10 (no events)
Module Alias: "pci:v00001A03d00002000sv00001043sd000086EDbc03sc00i00"
Driver Info #0:
XFree86 v4 Server Module: ast
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #68 (PCI bridge)
47: PCI 640b.1: 0880 System peripheral
[Created at pci.386]
Unique ID: +Kxz.8sj+Awov445
SysFS ID: /devices/pci0000:64/0000:64:0b.1
SysFS BusID: 0000:64:0b.1
Hardware Class: unknown
Model: "Intel Sky Lake-E LM Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2049 "Sky Lake-E LM Channel 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002049sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI 04.2: 0880 System peripheral
[Created at pci.386]
Unique ID: sRsQ.WHz1zAkU0A7
SysFS ID: /devices/pci0000:00/0000:00:04.2
SysFS BusID: 0000:00:04.2
Hardware Class: unknown
Model: "Intel Sky Lake-E CBDMA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2021 "Sky Lake-E CBDMA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x383ffff24000-0x383ffff27fff (rw,non-prefetchable)
IRQ: 86 (no events)
Module Alias: "pci:v00008086d00002021sv00008086sd00000000bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI 640a.7: 0880 System peripheral
[Created at pci.386]
Unique ID: 7BqW.61rVDnZV1J4
SysFS ID: /devices/pci0000:64/0000:64:0a.7
SysFS BusID: 0000:64:0a.7
Hardware Class: unknown
Model: "Intel Sky Lake-E LMDP Channel 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2047 "Sky Lake-E LMDP Channel 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002047sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI b20e.0: 1101 Performance counters
[Created at pci.386]
Unique ID: 2Khv.XcuIMtI2w19
SysFS ID: /devices/pci0000:b2/0000:b2:0e.0
SysFS BusID: 0000:b2:0e.0
Hardware Class: unknown
Model: "Intel Sky Lake-E KTI 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2058 "Sky Lake-E KTI 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "skx_uncore"
Module Alias: "pci:v00008086d00002058sv00008086sd00000000bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI b205.4: 0800 PIC (IO(X)-APIC)
[Created at pci.386]
Unique ID: pdC1.B7JnT_lpC+5
SysFS ID: /devices/pci0000:b2/0000:b2:05.4
SysFS BusID: 0000:b2:05.4
Hardware Class: unknown
Model: "Intel Sky Lake-E IOxAPIC Configuration Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2036 "Sky Lake-E IOxAPIC Configuration Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2036
Revision: 0x07
Memory Range: 0xfbf00000-0xfbf00fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d00002036sv00008086sd00002036bc08sc00i20"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI b216.1: 1101 Performance counters
[Created at pci.386]
Unique ID: XXZV.HVCGQAK6C0A
SysFS ID: /devices/pci0000:b2/0000:b2:16.1
SysFS BusID: 0000:b2:16.1
Hardware Class: unknown
Model: "Intel Sky Lake-E DDRIO Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2088 "Sky Lake-E DDRIO Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "skx_uncore"
Module Alias: "pci:v00008086d00002088sv00008086sd00000000bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: PCI 1608.4: 0880 System peripheral
[Created at pci.386]
Unique ID: rKS8.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:08.4
SysFS BusID: 0000:16:08.4
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208d "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Dsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI 1c.7: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 0Rrv.zVmhPUlChX1
SysFS ID: /devices/pci0000:00/0000:00:1c.7
SysFS BusID: 0000:00:1c.7
Hardware Class: bridge
Model: "Intel C620 Series Chipset Family PCI Express Root Port #8"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa197 "C620 Series Chipset Family PCI Express Root Port #8"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0xf9
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d0000A197sv00001043sd0000871Ebc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI 1605.2: 0880 System peripheral
[Created at pci.386]
Unique ID: tLK3.ixjthnBOee6
SysFS ID: /devices/pci0000:16/0000:16:05.2
SysFS BusID: 0000:16:05.2
Hardware Class: unknown
Model: "Intel Sky Lake-E RAS Configuration Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2035 "Sky Lake-E RAS Configuration Registers"
Revision: 0x07
Module Alias: "pci:v00008086d00002035sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI 6600.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: Kt1d.wSyAE4dHKg1
Parent ID: S00w.JAFvj9oE9YC
SysFS ID: /devices/pci0000:64/0000:64:02.0/0000:66:00.0
SysFS BusID: 0000:66:00.0
Hardware Class: network
Model: "Aquantia AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]"
Vendor: pci 0x1d6a "Aquantia Corp."
Device: pci 0x07b1 "AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8741
Revision: 0x02
Driver: "atlantic"
Driver Modules: "atlantic"
Device File: enp102s0
Memory Range: 0xe0840000-0xe084ffff (rw,non-prefetchable)
Memory Range: 0xe0850000-0xe0850fff (rw,non-prefetchable)
Memory Range: 0xe0400000-0xe07fffff (rw,non-prefetchable)
Memory Range: 0xe0800000-0xe083ffff (ro,non-prefetchable,disabled)
IRQ: 60 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00001D6Ad000007B1sv00001043sd00008741bc02sc00i00"
Driver Info #0:
Driver Status: atlantic is active
Driver Activation Cmd: "modprobe atlantic"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #134 (PCI bridge)
57: PCI 161e.1: 0880 System peripheral
[Created at pci.386]
Unique ID: wUQ+.03by4j6rah7
SysFS ID: /devices/pci0000:16/0000:16:1e.1
SysFS BusID: 0000:16:1e.1
Hardware Class: unknown
Model: "Intel Sky Lake-E PCU Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2081 "Sky Lake-E PCU Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002081sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 640c.4: 0880 System peripheral
[Created at pci.386]
Unique ID: gQSy.Zn+Fn3DOS93
SysFS ID: /devices/pci0000:64/0000:64:0c.4
SysFS BusID: 0000:64:0c.4
Hardware Class: unknown
Model: "Intel Sky Lake-E Integrated Memory Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2044 "Sky Lake-E Integrated Memory Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002044sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI 160f.1: 0880 System peripheral
[Created at pci.386]
Unique ID: n7Kw.jRshK7f+QgC
SysFS ID: /devices/pci0000:16/0000:16:0f.1
SysFS BusID: 0000:16:0f.1
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208e "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Esv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI 04.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 8otl.WHz1zAkU0A7
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: unknown
Model: "Intel Sky Lake-E CBDMA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2021 "Sky Lake-E CBDMA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x383ffff2c000-0x383ffff2ffff (rw,non-prefetchable)
IRQ: 86 (no events)
Module Alias: "pci:v00008086d00002021sv00008086sd00000000bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI 160e.7: 0880 System peripheral
[Created at pci.386]
Unique ID: uzCT.jRshK7f+QgC
SysFS ID: /devices/pci0000:16/0000:16:0e.7
SysFS BusID: 0000:16:0e.7
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208e "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Esv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI 640a.5: 0880 System peripheral
[Created at pci.386]
Unique ID: OXrr.4Cy+FeK5_X3
SysFS ID: /devices/pci0000:64/0000:64:0a.5
SysFS BusID: 0000:64:0a.5
Hardware Class: unknown
Model: "Intel Sky Lake-E LM Channel 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2045 "Sky Lake-E LM Channel 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002045sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: PCI b205.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 5_DM.ixjthnBOee6
SysFS ID: /devices/pci0000:b2/0000:b2:05.2
SysFS BusID: 0000:b2:05.2
Hardware Class: unknown
Model: "Intel Sky Lake-E RAS Configuration Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2035 "Sky Lake-E RAS Configuration Registers"
Revision: 0x07
Module Alias: "pci:v00008086d00002035sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI 1608.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 6hTT.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:08.2
SysFS BusID: 0000:16:08.2
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208d "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Dsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 1605.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 8iLO.J9vG50_t0SE
SysFS ID: /devices/pci0000:16/0000:16:05.0
SysFS BusID: 0000:16:05.0
Hardware Class: unknown
Model: "Intel Sky Lake-E VT-d"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2034 "Sky Lake-E VT-d"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002034sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: PCI 640c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: ymTH.Xy6mpwzzOO2
SysFS ID: /devices/pci0000:64/0000:64:0c.2
SysFS BusID: 0000:64:0c.2
Hardware Class: unknown
Model: "Intel Sky Lake-E Integrated Memory Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2042 "Sky Lake-E Integrated Memory Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "skx_uncore"
Module Alias: "pci:v00008086d00002042sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.DlhjYls6zL4
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel C620 Series Chipset Family MEI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa1ba "C620 Series Chipset Family MEI Controller #1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0x09
Memory Range: 0x383ffff32000-0x383ffff32fff (rw,non-prefetchable)
IRQ: 10 (no events)
Module Alias: "pci:v00008086d0000A1BAsv00001043sd0000871Ebc07sc80i00"
Driver Info #0:
Driver Status: mei_me is active
Driver Activation Cmd: "modprobe mei_me"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI 100.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: VCu0._tiwZrVTbc2
Parent ID: z8Q3.Mc9S2Za2+G0
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: bridge
Model: "ASPEED AST1150 PCI-to-PCI Bridge"
Vendor: pci 0x1a03 "ASPEED Technology Inc."
Device: pci 0x1150 "AST1150 PCI-to-PCI Bridge"
SubVendor: pci 0x1a03 "ASPEED Technology Inc."
SubDevice: pci 0x1150
Revision: 0x04
IRQ: 10 (no events)
Module Alias: "pci:v00001A03d00001150sv00001A03sd00001150bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (PCI bridge)
69: PCI b20f.1: 0880 System peripheral
[Created at pci.386]
Unique ID: _lDD.OUq_sz1QWn9
SysFS ID: /devices/pci0000:b2/0000:b2:0f.1
SysFS BusID: 0000:b2:0f.1
Hardware Class: unknown
Model: "Intel Sky Lake-E UPI Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2059 "Sky Lake-E UPI Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002059sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI 6500.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: ze67.jdUPNOvcFJA
Parent ID: Iovz.HLMPm0Zq5nB
SysFS ID: /devices/pci0000:64/0000:64:00.0/0000:65:00.0
SysFS BusID: 0000:65:00.0
Hardware Class: graphics card
Model: "nVidia VGA compatible controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x2204
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x87af
Revision: 0xa1
Driver: "nvidia"
Driver Modules: "nvidia"
Memory Range: 0xdf000000-0xdfffffff (rw,non-prefetchable)
Memory Range: 0xc0000000-0xcfffffff (ro,non-prefetchable)
Memory Range: 0xd0000000-0xd1ffffff (ro,non-prefetchable)
I/O Ports: 0xb000-0xb07f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 98 (6611 events)
Module Alias: "pci:v000010DEd00002204sv00001043sd000087AFbc03sc00i00"
Driver Info #0:
Driver Status: nvidiafb is not active
Driver Activation Cmd: "modprobe nvidiafb"
Driver Info #1:
Driver Status: nouveau is not active
Driver Activation Cmd: "modprobe nouveau"
Driver Info #2:
Driver Status: nvidia_drm is active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #3:
Driver Status: nvidia is active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #89 (PCI bridge)
71: PCI 160e.5: 0880 System peripheral
[Created at pci.386]
Unique ID: AKEo.jRshK7f+QgC
SysFS ID: /devices/pci0000:16/0000:16:0e.5
SysFS BusID: 0000:16:0e.5
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208e "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Esv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI 640a.3: 0880 System peripheral
[Created at pci.386]
Unique ID: ftsA.2N3WIV5hwm2
SysFS ID: /devices/pci0000:64/0000:64:0a.3
SysFS BusID: 0000:64:0a.3
Hardware Class: unknown
Model: "Intel Sky Lake-E Integrated Memory Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2043 "Sky Lake-E Integrated Memory Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002043sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: PCI b205.0: 0880 System peripheral
[Created at pci.386]
Unique ID: MKFh.J9vG50_t0SE
SysFS ID: /devices/pci0000:b2/0000:b2:05.0
SysFS BusID: 0000:b2:05.0
Hardware Class: unknown
Model: "Intel Sky Lake-E VT-d"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2034 "Sky Lake-E VT-d"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002034sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI 1f.5: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: W60f.y2ipYeOdaJA
SysFS ID: /devices/pci0000:00/0000:00:1f.5
SysFS BusID: 0000:00:1f.5
Hardware Class: unknown
Model: "Intel C620 Series Chipset Family SPI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa1a4 "C620 Series Chipset Family SPI Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x871e
Revision: 0x09
Memory Range: 0xfe010000-0xfe010fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d0000A1A4sv00001043sd0000871Ebc0Csc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: PCI 700.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: aK5u.99vdnG0yko8
Parent ID: 1GTX.UwiRu2tvCw1
SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:07:00.0
SysFS BusID: 0000:07:00.0
Hardware Class: storage
Model: "Intel Corporation SSD Pro 7600p/760p/E 6100p Series [NVM Express]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xf1a6 "SSD Pro 7600p/760p/E 6100p Series"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x390b "Intel Corporation SSD Pro 7600p/760p/E 6100p Series [NVM Express]"
Revision: 0x03
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0x94100000-0x94103fff (rw,non-prefetchable)
IRQ: 16 (no events)
Module Alias: "pci:v00008086d0000F1A6sv00008086sd0000390Bbc01sc08i02"
Driver Info #0:
Driver Status: nvme is active
Driver Activation Cmd: "modprobe nvme"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #109 (PCI bridge)
76: PCI 1608.0: 0880 System peripheral
[Created at pci.386]
Unique ID: N1Vo.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:08.0
SysFS BusID: 0000:16:08.0
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x208d "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d0000208Dsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
77: PCI b212.1: 1101 Performance counters
[Created at pci.386]
Unique ID: D5Nd.s2W34gf37F6
SysFS ID: /devices/pci0000:b2/0000:b2:12.1
SysFS BusID: 0000:b2:12.1
Hardware Class: unknown
Model: "Intel Sky Lake-E M3KTI Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x204d "Sky Lake-E M3KTI Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "skx_uncore"
Module Alias: "pci:v00008086d0000204Dsv00008086sd00000000bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
78: PCI 640c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: D7Vc.V7EGsnkZLd1
SysFS ID: /devices/pci0000:64/0000:64:0c.0
SysFS BusID: 0000:64:0c.0
Hardware Class: unknown
Model: "Intel Sky Lake-E Integrated Memory Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2040 "Sky Lake-E Integrated Memory Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002040sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
79: PCI 161d.3: 0880 System peripheral
[Created at pci.386]
Unique ID: Z1MC.MfxUvqo+S09
SysFS ID: /devices/pci0000:16/0000:16:1d.3
SysFS BusID: 0000:16:1d.3
Hardware Class: unknown
Model: "Intel Sky Lake-E CHA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2057 "Sky Lake-E CHA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00002057sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
80: PCI 04.7: 0880 System peripheral
[Created at pci.386]
Unique ID: B4Jc.WHz1zAkU0A7
SysFS ID: /devices/pci0000:00/0000:00:04.7
SysFS BusID: 0000:00:04.7
Hardware Class: unknown
Model: "Intel Sky Lake-E CBDMA Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2021 "Sky Lake-E CBDMA Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x383ffff10000-0x383ffff13fff (rw,non-prefetchable)
IRQ: 88 (no events)
Module Alias: "pci:v00008086d00002021sv00008086sd00000000bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
81: PCI 160e.3: 0880 System peripheral