-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAD51164983
1138 lines (1071 loc) · 38.4 KB
/
AD51164983
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
12: PCI 00.0: 0600 Host bridge
[Created at pci.366]
Unique ID: qLht.8UkxQKTr8_9
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d0
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x15d0
Module Alias: "pci:v00001022d000015D0sv00001022sd000015D0bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
13: PCI 00.2: 0806 IOMMU
[Created at pci.366]
Unique ID: Z+fY.Il0DcxNZf41
SysFS ID: /devices/pci0000:00/0000:00:00.2
SysFS BusID: 0000:00:00.2
Hardware Class: unknown
Model: "AMD IOMMU"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d1
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x15d1
IRQ: 24 (no events)
Module Alias: "pci:v00001022d000015D1sv00001022sd000015D1bc08sc06i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
14: PCI 01.0: 0600 Host bridge
[Created at pci.366]
Unique ID: vSkL.00mBDY0_eA3
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1452
Module Alias: "pci:v00001022d00001452sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 01.2: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: e6j0.4MSv1YP9Da4
SysFS ID: /devices/pci0000:00/0000:00:01.2
SysFS BusID: 0000:00:01.2
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00001022d000015D3sv00001462sd00007C02bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 01.6: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: 5QgM.4MSv1YP9Da4
SysFS ID: /devices/pci0000:00/0000:00:01.6
SysFS BusID: 0000:00:01.6
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00001022d000015D3sv00001462sd00007C02bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 08.0: 0600 Host bridge
[Created at pci.366]
Unique ID: RE4e.00mBDY0_eA3
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1452
Module Alias: "pci:v00001022d00001452sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 08.1: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: JZZT.C_p4Pb00t80
SysFS ID: /devices/pci0000:00/0000:00:08.1
SysFS BusID: 0000:00:08.1
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15db
SubVendor: pci 0x7c02
SubDevice: pci 0x1462
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00001022d000015DBsv00007C02sd00001462bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 08.2: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: Au2J.jOmqt98jOX0
SysFS ID: /devices/pci0000:00/0000:00:08.2
SysFS BusID: 0000:00:08.2
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15dc
SubVendor: pci 0x7c02
SubDevice: pci 0x1462
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00001022d000015DCsv00007C02sd00001462bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 14.0: 0c05 SMBus
[Created at pci.366]
Unique ID: MZfG.eiFGtjO3Ez4
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: unknown
Model: "AMD FCH SMBus Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x790b "FCH SMBus Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Revision: 0x61
Driver: "piix4_smbus"
Driver Modules: "i2c_piix4"
Module Alias: "pci:v00001022d0000790Bsv00001462sd00007C02bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_piix4 is active
Driver Activation Cmd: "modprobe i2c_piix4"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 14.3: 0601 ISA bridge
[Created at pci.366]
Unique ID: yX7n.n32rP6g5xN9
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: bridge
Model: "AMD FCH LPC Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x790e "FCH LPC Bridge"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Revision: 0x51
Module Alias: "pci:v00001022d0000790Esv00001462sd00007C02bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 18.0: 0600 Host bridge
[Created at pci.366]
Unique ID: fiDB.+Xupf_VMM4C
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e8
Module Alias: "pci:v00001022d000015E8sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 18.1: 0600 Host bridge
[Created at pci.366]
Unique ID: W1j0.WyqZ8Zd3uSC
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e9
Module Alias: "pci:v00001022d000015E9sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 18.2: 0600 Host bridge
[Created at pci.366]
Unique ID: OMCs.1NnJd7lmPrC
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ea
Module Alias: "pci:v00001022d000015EAsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 18.3: 0600 Host bridge
[Created at pci.366]
Unique ID: Fhhh.Ynj36isTxDD
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15eb
Module Alias: "pci:v00001022d000015EBsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 18.4: 0600 Host bridge
[Created at pci.366]
Unique ID: 60BX.3CgpaG_ATcD
SysFS ID: /devices/pci0000:00/0000:00:18.4
SysFS BusID: 0000:00:18.4
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ec
Module Alias: "pci:v00001022d000015ECsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 18.5: 0600 Host bridge
[Created at pci.366]
Unique ID: _KgM.accZ3r5u__D
SysFS ID: /devices/pci0000:00/0000:00:18.5
SysFS BusID: 0000:00:18.5
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ed
Module Alias: "pci:v00001022d000015EDsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 18.6: 0600 Host bridge
[Created at pci.366]
Unique ID: rf9C.51ZJYPDbWNE
SysFS ID: /devices/pci0000:00/0000:00:18.6
SysFS BusID: 0000:00:18.6
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ee
Module Alias: "pci:v00001022d000015EEsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 18.7: 0600 Host bridge
[Created at pci.366]
Unique ID: j_e1.cRV31_KI2mE
SysFS ID: /devices/pci0000:00/0000:00:18.7
SysFS BusID: 0000:00:18.7
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ef
Module Alias: "pci:v00001022d000015EFsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 1200.0: 0c03 USB Controller (XHCI)
[Created at pci.366]
Unique ID: 2kIT.rXqmKScf756
Parent ID: e6j0.4MSv1YP9Da4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.0
SysFS BusID: 0000:12:00.0
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43d5
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x1142
Revision: 0x01
Driver: "xhci_hcd"
Memory Range: 0xfcda0000-0xfcda7fff (rw,non-prefetchable)
IRQ: 34 (34214 events)
Module Alias: "pci:v00001022d000043D5sv00001B21sd00001142bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (PCI bridge)
31: PCI 1200.1: 0106 SATA controller (AHCI 1.0)
[Created at pci.366]
Unique ID: v2oI.eAiw16AMuQ9
Parent ID: e6j0.4MSv1YP9Da4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.1
SysFS BusID: 0000:12:00.1
Hardware Class: storage
Model: "AMD SATA controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43c8
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x1062
Revision: 0x01
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xfcd80000-0xfcd9ffff (rw,non-prefetchable)
Memory Range: 0xfcd00000-0xfcd7ffff (ro,non-prefetchable,disabled)
IRQ: 45 (27548 events)
Module Alias: "pci:v00001022d000043C8sv00001B21sd00001062bc01sc06i01"
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: #15 (PCI bridge)
32: PCI 1200.2: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: nNH8.fHFW+lY3Db1
Parent ID: e6j0.4MSv1YP9Da4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.2
SysFS BusID: 0000:12:00.2
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43c6
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x0201
Revision: 0x01
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00001022d000043C6sv00001B21sd00000201bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (PCI bridge)
33: PCI 2000.0: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: PMq2.8EPKPINKVS0
Parent ID: nNH8.fHFW+lY3Db1
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.2/0000:20:00.0
SysFS BusID: 0000:20:00.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43c7
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x3306
Revision: 0x01
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00001022d000043C7sv00001B21sd00003306bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
34: PCI 2001.0: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: UTtW.8EPKPINKVS0
Parent ID: nNH8.fHFW+lY3Db1
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.2/0000:20:01.0
SysFS BusID: 0000:20:01.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43c7
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x3306
Revision: 0x01
Driver: "pcieport"
IRQ: 32 (no events)
Module Alias: "pci:v00001022d000043C7sv00001B21sd00003306bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
35: PCI 2004.0: 0604 PCI bridge (Normal decode)
[Created at pci.366]
Unique ID: jo0x.8EPKPINKVS0
Parent ID: nNH8.fHFW+lY3Db1
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.2/0000:20:04.0
SysFS BusID: 0000:20:04.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43c7
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x3306
Revision: 0x01
Driver: "pcieport"
IRQ: 33 (no events)
Module Alias: "pci:v00001022d000043C7sv00001B21sd00003306bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
36: PCI 2200.0: 0200 Ethernet controller
[Created at pci.366]
Unique ID: KIr6.y+466kzqBCB
Parent ID: UTtW.8EPKPINKVS0
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.2/0000:20:01.0/0000:22:00.0
SysFS BusID: 0000:22:00.0
Hardware Class: network
Model: "Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8168 "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Revision: 0x15
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp34s0
I/O Ports: 0xf000-0xffff (rw)
Memory Range: 0xfcc04000-0xfcc04fff (rw,non-prefetchable)
Memory Range: 0xfcc00000-0xfcc03fff (rw,non-prefetchable)
IRQ: 49 (89063 events)
HW Address: ...
Link detected: yes
Module Alias: "pci:v000010ECd00008168sv00001462sd00007C02bc02sc00i00"
Driver Info #0:
Driver Status: r8169 is active
Driver Activation Cmd: "modprobe r8169"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
37: PCI 2600.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.366]
Unique ID: UU1w.ODLHXts7dcC
Parent ID: 5QgM.4MSv1YP9Da4
SysFS ID: /devices/pci0000:00/0000:00:01.6/0000:26:00.0
SysFS BusID: 0000:26:00.0
Hardware Class: storage
Model: "Kingston Non-Volatile memory controller"
Vendor: pci 0x2646 "Kingston Technologies"
Device: pci 0x5008
SubVendor: pci 0x2646 "Kingston Technologies"
SubDevice: pci 0x5008
Revision: 0x01
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0xfcf00000-0xfcf03fff (rw,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Module Alias: "pci:v00002646d00005008sv00002646sd00005008bc01sc08i02"
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: #16 (PCI bridge)
38: PCI 2700.0: 0300 VGA compatible controller (VGA)
[Created at pci.366]
Unique ID: ALE3.loyBcNrU6_4
Parent ID: JZZT.C_p4Pb00t80
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.0
SysFS BusID: 0000:27:00.0
Hardware Class: graphics card
Model: "ATI VGA compatible controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x15dd
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Revision: 0xc8
Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)
Memory Range: 0xf0000000-0xf01fffff (ro,non-prefetchable)
I/O Ports: 0xd000-0xdfff (rw,disabled)
Memory Range: 0xfcb00000-0xfcb7ffff (rw,non-prefetchable)
IRQ: 255 (no events)
Module Alias: "pci:v00001002d000015DDsv00001462sd00007C02bc03sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (PCI bridge)
39: PCI 2700.1: 0403 Audio device
[Created at pci.366]
Unique ID: 1gju.54fveImb2fB
Parent ID: JZZT.C_p4Pb00t80
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.1
SysFS BusID: 0000:27:00.1
Hardware Class: sound
Model: "ATI Audio device"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x15de
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x15de
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfcb88000-0xfcb8bfff (rw,non-prefetchable)
IRQ: 57 (336 events)
Module Alias: "pci:v00001002d000015DEsv00001002sd000015DEbc04sc03i00"
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: #18 (PCI bridge)
40: PCI 2700.2: 1080 Encryption controller
[Created at pci.366]
Unique ID: u_Ck.MM_4KDH3uRA
Parent ID: JZZT.C_p4Pb00t80
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.2
SysFS BusID: 0000:27:00.2
Hardware Class: unknown
Model: "AMD Encryption controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15df
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Memory Range: 0xfca00000-0xfcafffff (rw,non-prefetchable,disabled)
Memory Range: 0xfcb8c000-0xfcb8dfff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00001022d000015DFsv00001462sd00007C02bc10sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (PCI bridge)
41: PCI 2700.3: 0c03 USB Controller (XHCI)
[Created at pci.366]
Unique ID: mJiZ.6S+h1uFLRiD
Parent ID: JZZT.C_p4Pb00t80
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.3
SysFS BusID: 0000:27:00.3
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e0
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Driver: "xhci_hcd"
Memory Range: 0xfc900000-0xfc9fffff (rw,non-prefetchable)
Module Alias: "pci:v00001022d000015E0sv00001462sd00007C02bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (PCI bridge)
42: PCI 2700.4: 0c03 USB Controller (XHCI)
[Created at pci.366]
Unique ID: deBP.dsxRWSN2z4E
Parent ID: JZZT.C_p4Pb00t80
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.4
SysFS BusID: 0000:27:00.4
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e1
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Driver: "xhci_hcd"
Memory Range: 0xfc800000-0xfc8fffff (rw,non-prefetchable)
Module Alias: "pci:v00001022d000015E1sv00001462sd00007C02bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (PCI bridge)
43: PCI 2700.6: 0403 Audio device
[Created at pci.366]
Unique ID: MIA4.Xgdsu5iCRxF
Parent ID: JZZT.C_p4Pb00t80
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.6
SysFS BusID: 0000:27:00.6
Hardware Class: sound
Model: "AMD Audio device"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e3
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0xec02
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfcb80000-0xfcb87fff (rw,non-prefetchable)
IRQ: 58 (805 events)
Module Alias: "pci:v00001022d000015E3sv00001462sd0000EC02bc04sc03i00"
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: #18 (PCI bridge)
44: PCI 2800.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.366]
Unique ID: rBRC.rdW_QmHxY16
Parent ID: Au2J.jOmqt98jOX0
SysFS ID: /devices/pci0000:00/0000:00:08.2/0000:28:00.0
SysFS BusID: 0000:28:00.0
Hardware Class: storage
Model: "AMD FCH SATA Controller [AHCI mode]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x7901 "FCH SATA Controller [AHCI mode]"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7c02
Revision: 0x61
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xfce00000-0xfce007ff (rw,non-prefetchable)
IRQ: 47 (no events)
Module Alias: "pci:v00001022d00007901sv00001462sd00007C02bc01sc06i01"
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: #19 (PCI bridge)
46: IDE 400.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.rZVjg1kVDb1
Parent ID: v2oI.eAiw16AMuQ9
SysFS ID: /class/block/sda
SysFS BusID: 4:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.2/0000:12:00.1/ata5/host4/target4:0:0/4:0:0:0
Hardware Class: disk
Model: "HGST HTS545050A7"
Vendor: "HGST"
Device: "HTS545050A7"
Revision: "AC90"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/ata-HGST_HTS545050A7E380_..., /dev/disk/by-id/wwn-0x..., /dev/disk/by-path/pci-0000:12:00.1-ata-5
Device Number: block 8:0-8:15
Geometry (Logical): CHS 60801/255/63
Size: 976773168 sectors a 512 bytes
Capacity: 465 GB (500107862016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #31 (SATA controller)
47: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: CWFH.Fxp0d3BezAE
SysFS ID: /class/block/ram0
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram0
Device Number: block 1:0
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: ghVL.Fxp0d3BezAE
SysFS ID: /class/block/ram1
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram1
Device Number: block 1:1
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 7tlP.Fxp0d3BezAE
SysFS ID: /class/block/ram2
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram2
Device Number: block 1:2
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: a20U.Fxp0d3BezAE
SysFS ID: /class/block/ram3
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram3
Device Number: block 1:3
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 1EGY.Fxp0d3BezAE
SysFS ID: /class/block/ram4
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram4
Device Number: block 1:4
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: UPWc.Fxp0d3BezAE
SysFS ID: /class/block/ram5
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram5
Device Number: block 1:5
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: xamg.Fxp0d3BezAE
SysFS ID: /class/block/ram6
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram6
Device Number: block 1:6
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: d1y9.Fxp0d3BezAE
SysFS ID: /class/block/ram7
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram7
Device Number: block 1:7
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 4DCE.Fxp0d3BezAE
SysFS ID: /class/block/ram8
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram8
Device Number: block 1:8
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: XOSI.Fxp0d3BezAE
SysFS ID: /class/block/ram9
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram9
Device Number: block 1:9
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 2K8Y.Fxp0d3BezAE
SysFS ID: /class/block/ram10
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram10
Device Number: block 1:10
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: VVOc.Fxp0d3BezAE
SysFS ID: /class/block/ram11
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram11
Device Number: block 1:11
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: ygeg.Fxp0d3BezAE
SysFS ID: /class/block/ram12
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram12
Device Number: block 1:12
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: Psuk.Fxp0d3BezAE
SysFS ID: /class/block/ram13
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram13
Device Number: block 1:13
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: s19p.Fxp0d3BezAE
SysFS ID: /class/block/ram14
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram14
Device Number: block 1:14
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: JDPt.Fxp0d3BezAE
SysFS ID: /class/block/ram15
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram15
Device Number: block 1:15
Size: 131072 sectors a 512 bytes
Capacity: 0 GB (67108864 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: PCI 00.0: 10600 Disk
[Created at block.245]
Unique ID: wLCS.fQxqqKIQSFC
Parent ID: UU1w.ODLHXts7dcC
SysFS ID: /class/block/nvme0n1
SysFS BusID: nvme0
SysFS Device Link: /devices/pci0000:00/0000:00:01.6/0000:26:00.0/nvme/nvme0
Hardware Class: disk
Model: "Kingston KINGSTON SA1000M"
Vendor: pci 0x2646 "Kingston Technologies"
Device: pci 0x5008 "KINGSTON SA1000M"
SubVendor: pci 0x2646 "Kingston Technologies"
SubDevice: pci 0x5008
Revision: "11.T"
Serial ID: --
Driver: "nvme"
Driver Modules: "nvme"
Device File: /dev/nvme0n1
Device Number: block 259:0
Geometry (Logical): CHS 457862/64/32
Size: 937703088 sectors a 512 bytes
Capacity: 447 GB (480103981056 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #37 (Non-Volatile memory controller)
64: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.v8ndtGbs354
Parent ID: mJiZ.6S+h1uFLRiD
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.3/usb3/3-0:1.0
SysFS BusID: 3-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "4.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0404dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #41 (USB Controller)
65: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.oUvqJENY+ID
Parent ID: mJiZ.6S+h1uFLRiD
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.3/usb4/4-0:1.0
SysFS BusID: 4-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "4.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0404dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #41 (USB Controller)
66: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 2XnU.gtrCF1Oa0NB
Parent ID: deBP.dsxRWSN2z4E
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.4/usb5/5-0:1.0
SysFS BusID: 5-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "4.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0404dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (USB Controller)
67: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy.ZD_Ph_9Gya4
Parent ID: deBP.dsxRWSN2z4E
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:27:00.4/usb6/6-0:1.0
SysFS BusID: 6-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "4.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0404dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (USB Controller)
68: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.u+Uo5ZouYC4
Parent ID: 2kIT.rXqmKScf756
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-0:1.0
SysFS BusID: 1-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "4.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0404dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (USB Controller)
69: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: zFuK.f7mx8T6d61E
Parent ID: k4bc.u+Uo5ZouYC4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-8/1-8:1.0
SysFS BusID: 1-8:1.0
Hardware Class: keyboard
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc534 "Unifying Receiver"
Revision: "29.01"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC534d2901dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #68 (Hub)
70: USB 00.1: 10503 USB Mouse
[Created at usb.122]
Unique ID: QR8P.anqLpZFcgY2
Parent ID: k4bc.u+Uo5ZouYC4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-8/1-8:1.1
SysFS BusID: 1-8:1.1
Hardware Class: mouse
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc534 "Unifying Receiver"
Revision: "29.01"
Compatible to: int 0x0200 0x0001 "Generic USB Mouse"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC534d2901dc00dsc00dp00ic03isc01ip02in01"
Driver Info #0:
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #68 (Hub)
71: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: POWV.tsUInSQY+1B
Parent ID: k4bc.u+Uo5ZouYC4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-9/1-9:1.0
SysFS BusID: 1-9:1.0
Hardware Class: keyboard
Model: "China Resource Semico USB Keyboard"
Hotplug: USB
Vendor: usb 0x1a2c "China Resource Semico Co., Ltd"
Device: usb 0x4c5e "USB Keyboard"
Revision: "1.10"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 1.5 Mbps
Module Alias: "usb:v1A2Cp4C5Ed0110dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #68 (Hub)
72: USB 00.1: 10503 USB Mouse