-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path7E93E1B694
3089 lines (2905 loc) · 127 KB
/
7E93E1B694
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
32: 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
33: PCI 300.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: svHJ.24StTwgmuV9
Parent ID: B35A._tiwZrVTbc2
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:02:00.0/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: graphics card
Device Name: "ASM3142"
Model: "ASPEED AST1000/2000"
Vendor: pci 0x1a03 "ASPEED Technology Inc."
Device: pci 0x2000 "AST1000/2000"
SubVendor: pci 0x1a03 "ASPEED Technology Inc."
SubDevice: pci 0x2000
Revision: 0x41
Driver: "ast"
Driver Modules: "ast"
Memory Range: 0x90000000-0x90ffffff (rw,non-prefetchable)
Memory Range: 0x91040000-0x9105ffff (rw,non-prefetchable)
I/O Ports: 0x4000-0x4fff (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 18 (no events)
Module Alias: "pci:v00001A03d00002000sv00001A03sd00002000bc03sc00i00"
Driver Info #0:
XFree86 v4 Server Module: ast
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #60 (PCI bridge)
34: 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
35: PCI 17.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: abAj.3wEwDpbsaY2
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x09
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0x91548000-0x91549fff (rw,non-prefetchable)
Memory Range: 0x9154c000-0x9154c0ff (rw,non-prefetchable)
I/O Ports: 0x5050-0x5057 (rw)
I/O Ports: 0x5040-0x5043 (rw)
I/O Ports: 0x5000-0x501f (rw)
Memory Range: 0x91400000-0x9147ffff (rw,non-prefetchable)
IRQ: 60 (513298 events)
Module Alias: "pci:v00008086d0000A182sv00001458sd00005001bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 1700.3: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: ueUG.jwChOGC4hlD
Parent ID: m862.HLMPm0Zq5nB
SysFS ID: /devices/pci0000:16/0000:16:00.0/0000:17:00.3
SysFS BusID: 0000:17:00.3
Hardware Class: unknown
Model: "nVidia TU102 UCSI Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1ad7 "TU102 UCSI Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2281
Revision: 0xa1
Driver: "nvidia-gpu"
Driver Modules: "i2c_nvidia_gpu"
Memory Range: 0xb4084000-0xb4084fff (rw,non-prefetchable)
IRQ: 52 (21 events)
Module Alias: "pci:v000010DEd00001AD7sv00003842sd00002281bc0Csc80i00"
Driver Info #0:
Driver Status: i2c_nvidia_gpu is active
Driver Activation Cmd: "modprobe i2c_nvidia_gpu"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #150 (PCI bridge)
37: 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
38: 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
39: PCI 1f.2: 0580 Memory controller
[Created at pci.386]
Unique ID: w7Y8.+G8smewySN4
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x09
Memory Range: 0x91524000-0x91527fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d0000A1A1sv00001458sd00005001bc05sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.3TJ8JBkEYr0
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0xf9
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00008086d0000A190sv00001458sd00005001bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: 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
42: 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
43: PCI 160f.5: 0880 System peripheral
[Created at pci.386]
Unique ID: ERHG.jRshK7f+QgC
SysFS ID: /devices/pci0000:16/0000:16:0f.5
SysFS BusID: 0000:16:0f.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
44: 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
45: 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
46: 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: 0x91534000-0x91537fff (rw,non-prefetchable)
IRQ: 66 (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
47: 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
48: 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
49: PCI 11.5: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: Ssy1.J3mrfHlijME
SysFS ID: /devices/pci0000:00/0000:00:11.5
SysFS BusID: 0000:00:11.5
Hardware Class: storage
Model: "Intel C620 Series Chipset Family SSATA Controller [AHCI mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa1d2 "C620 Series Chipset Family SSATA Controller [AHCI mode]"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x09
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0x9154a000-0x9154bfff (rw,non-prefetchable)
Memory Range: 0x91551000-0x915510ff (rw,non-prefetchable)
I/O Ports: 0x5070-0x5077 (rw)
I/O Ports: 0x5060-0x5063 (rw)
I/O Ports: 0x5020-0x503f (rw)
Memory Range: 0x91480000-0x914fffff (rw,non-prefetchable)
IRQ: 50 (no events)
Module Alias: "pci:v00008086d0000A1D2sv00001458sd00005001bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: 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
51: 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
52: 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: 0xb4100000-0xb4100fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d00002036sv00008086sd00002036bc08sc00i20"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: 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
54: PCI 1700.1: 0403 Audio device
[Created at pci.386]
Unique ID: A+Vb.E3W+jph3Sw2
Parent ID: m862.HLMPm0Zq5nB
SysFS ID: /devices/pci0000:16/0000:16:00.0/0000:17:00.1
SysFS BusID: 0000:17:00.1
Hardware Class: sound
Model: "nVidia TU102 High Definition Audio Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x10f7 "TU102 High Definition Audio Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2281
Revision: 0xa1
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xb4080000-0xb4083fff (rw,non-prefetchable)
IRQ: 80 (390 events)
Module Alias: "pci:v000010DEd000010F7sv00003842sd00002281bc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #150 (PCI bridge)
55: 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
56: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.1CwZ+5H5jID
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x09
Module Alias: "pci:v00008086d0000A1C1sv00001458sd00005001bc06sc01i00"
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
57: 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
58: PCI 16.4: 0780 Communication controller
[Created at pci.386]
Unique ID: _4jY._FdPkfU7dS6
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x09
Memory Range: 0x9154d000-0x9154dfff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d0000A1BEsv00001458sd00005001bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI 160f.3: 0880 System peripheral
[Created at pci.386]
Unique ID: WnIb.jRshK7f+QgC
SysFS ID: /devices/pci0000:16/0000:16:0f.3
SysFS BusID: 0000:16:0f.3
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 200.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: B35A._tiwZrVTbc2
Parent ID: hoOk.5ICeGKzebc1
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: bridge
Device Name: "Onboard VGA"
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: 18 (no events)
Module Alias: "pci:v00001A03d00001150sv00001A03sd00001150bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #169 (PCI bridge)
61: 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
62: 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: 0x9153c000-0x9153ffff (rw,non-prefetchable)
IRQ: 66 (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
63: 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
64: 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
65: 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
66: 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 Performance counters"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2088
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
67: 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
68: 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
69: PCI 1602.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: wMC_.JAFvj9oE9YC
SysFS ID: /devices/pci0000:16/0000:16:02.0
SysFS BusID: 0000:16:02.0
Hardware Class: bridge
Model: "Intel Sky Lake-E PCI Express Root Port C"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2032 "Sky Lake-E PCI Express Root Port C"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00008086d00002032sv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: 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
71: 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
72: PCI 1609.7: 0880 System peripheral
[Created at pci.386]
Unique ID: WQz6.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:09.7
SysFS BusID: 0000:16:09.7
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
73: 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
74: 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: 0x91544000-0x91547fff (rw,non-prefetchable)
IRQ: 66 (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
75: PCI 6500.2: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: iI5o.V7ZSCyAjxR2
Parent ID: Iovz.HLMPm0Zq5nB
SysFS ID: /devices/pci0000:64/0000:64:00.0/0000:65:00.2
SysFS BusID: 0000:65:00.2
Hardware Class: usb controller
Model: "nVidia TU102 USB 3.1 Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1ad6 "TU102 USB 3.1 Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2281
Revision: 0xa1
Driver: "xhci_hcd"
Memory Range: 0xd2000000-0xd203ffff (ro,non-prefetchable)
Memory Range: 0xd2040000-0xd204ffff (ro,non-prefetchable)
IRQ: 49 (no events)
Module Alias: "pci:v000010DEd00001AD6sv00003842sd00002281bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #111 (PCI bridge)
76: 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
77: 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
78: 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
79: PCI 11.1: ff00 Unclassified device
[Created at pci.386]
Unique ID: +Y+h.5u3eRUeNpZ5
SysFS ID: /devices/pci0000:00/0000:00:11.1
SysFS BusID: 0000:00:11.1
Hardware Class: unknown
Model: "Intel C620 Series Chipset Family MROM 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa1ed "C620 Series Chipset Family MROM 1"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x09
Module Alias: "pci:v00008086d0000A1EDsv00001458sd00005001bcFFsc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
80: 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
81: PCI b202.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 7+5H.JAFvj9oE9YC
SysFS ID: /devices/pci0000:b2/0000:b2:02.0
SysFS BusID: 0000:b2:02.0
Hardware Class: bridge
Model: "Intel Sky Lake-E PCI Express Root Port C"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2032 "Sky Lake-E PCI Express Root Port C"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "pcieport"
IRQ: 36 (no events)
Module Alias: "pci:v00008086d00002032sv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
82: PCI 1c.5: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: HnsE.eX1ui1KmAm2
SysFS ID: /devices/pci0000:00/0000:00:1c.5
SysFS BusID: 0000:00:1c.5
Hardware Class: bridge
Model: "Intel C620 Series Chipset Family PCI Express Root Port #6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa195 "C620 Series Chipset Family PCI Express Root Port #6"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0xf9
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00008086d0000A195sv00001458sd00005001bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
83: 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
84: 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
85: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.wbrPpN0JWw4
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x09
Driver: "mei_me"
Driver Modules: "mei_me"
Memory Range: 0x9154f000-0x9154ffff (rw,non-prefetchable)
IRQ: 74 (23 events)
Module Alias: "pci:v00008086d0000A1BAsv00001458sd00005001bc07sc80i00"
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
86: PCI 160a.0: 0880 System peripheral
[Created at pci.386]
Unique ID: XFbk.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:0a.0
SysFS BusID: 0000:16:0a.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
87: PCI 100.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: VCu0.5vsY0BNH9b4
Parent ID: z8Q3.3TJ8JBkEYr0
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: usb controller
Model: "ASMedia ASM2142 USB 3.1 Host Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x2142 "ASM2142 USB 3.1 Host Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5007
Driver: "xhci_hcd"
Memory Range: 0x91300000-0x91307fff (rw,non-prefetchable)
IRQ: 16 (no events)
Module Alias: "pci:v00001B21d00002142sv00001458sd00005007bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #40 (PCI bridge)
88: 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
89: PCI 1609.5: 0880 System peripheral
[Created at pci.386]
Unique ID: nm_R.C1wxrYXIvHC
SysFS ID: /devices/pci0000:16/0000:16:09.5
SysFS BusID: 0000:16:09.5
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
90: PCI 6500.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: ze67.LfmXUjldbzD
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 TU102 [GeForce RTX 2080 Ti]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1e04 "TU102 [GeForce RTX 2080 Ti]"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2281
Revision: 0xa1
Driver: "nvidia"
Driver Modules: "nvidia"
Memory Range: 0xdf000000-0xdfffffff (rw,non-prefetchable)