-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path646309CB22
1173 lines (1113 loc) · 39.9 KB
/
646309CB22
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
02: None 00.0: 11001 VESA Framebuffer
[Created at bios.459]
Unique ID: rdCR.leFLba45Yc4
Hardware Class: framebuffer
Model: "(C) 1988-2005, ATI RS880"
Vendor: "(C) 1988-2005, ATI Technologies Inc."
Device: "RS880"
SubVendor: "ATI ATOMBIOS"
SubDevice:
Revision: "01.00"
Memory Size: 16 MB
Memory Range: 0x00000000-0x00ffffff (rw)
Config Status: cfg=new, avail=yes, need=no, active=unknown
11: PCI 18.3: 0600 Host bridge
[Created at pci.378]
Unique ID: Fhhh.M7aE7ttHy94
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] Miscellaneous Control"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1103 "K8 [Athlon64/Opteron] Miscellaneous Control"
Driver: "k8temp"
Driver Modules: "k8temp"
Module Alias: "pci:v00001022d00001103sv00000000sd00000000bc06sc00i00"
Driver Info #0:
Driver Status: k8temp is active
Driver Activation Cmd: "modprobe k8temp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
12: PCI 13.2: 0c03 USB Controller (EHCI)
[Created at pci.378]
Unique ID: 06bT.dqIZuG9X+L8
SysFS ID: /devices/pci0000:00/0000:00:13.2
SysFS BusID: 0000:00:13.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfe8ff400-0xfe8ff4ff (rw,non-prefetchable)
IRQ: 19 (39 events)
Module Alias: "pci:v00001002d00004396sv00001565sd00003700bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is active
Driver Activation Cmd: "modprobe ehci-hcd"
Driver Info #1:
Driver Status: ehci_pci is active
Driver Activation Cmd: "modprobe ehci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
13: PCI 18.1: 0600 Host bridge
[Created at pci.378]
Unique ID: W1j0.KIhk9ketuO3
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] Address Map"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1101 "K8 [Athlon64/Opteron] Address Map"
Module Alias: "pci:v00001022d00001101sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
14: PCI 200.0: 0200 Ethernet controller
[Created at pci.378]
Unique ID: c3qJ.SNc65Gva3GC
Parent ID: M71A.6PhIFwEgJQC
SysFS ID: /devices/pci0000:00/0000:00:07.0/0000:02:00.0
SysFS BusID: 0000:02: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 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x2309
Revision: 0x03
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp2s0
I/O Ports: 0xe800-0xe8ff (rw)
Memory Range: 0xfdfff000-0xfdffffff (ro,non-prefetchable)
Memory Range: 0xfdff8000-0xfdffbfff (ro,non-prefetchable)
Memory Range: 0xfebe0000-0xfebfffff (ro,non-prefetchable,disabled)
IRQ: 19 (39 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000010ECd00008168sv00001565sd00002309bc02sc00i00"
Driver Info #0:
Driver Status: r8169 is active
Driver Activation Cmd: "modprobe r8169"
Driver Info #1:
Driver Status: r8168 is active
Driver Activation Cmd: "modprobe r8168"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #20 (PCI bridge)
15: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: vSkL.2yY_xudKZ6E
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "AMD RS780/RS880 PCI to PCI bridge (int gfx)"
Vendor: pci 0x1022 "AMD"
Device: pci 0x9602 "RS780/RS880 PCI to PCI bridge (int gfx)"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x9602
Module Alias: "pci:v00001022d00009602sv00001022sd00009602bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 14.5: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: hB6S.w3LjBQ_iyw1
SysFS ID: /devices/pci0000:00/0000:00:14.5
SysFS BusID: 0000:00:14.5
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI2 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4399 "SB7x0/SB8x0/SB9x0 USB OHCI2 Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe8fa000-0xfe8fafff (rw,non-prefetchable)
IRQ: 18 (3 events)
Module Alias: "pci:v00001002d00004399sv00001565sd00003700bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 13.0: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: HSco.uESDEHlIv91
SysFS ID: /devices/pci0000:00/0000:00:13.0
SysFS BusID: 0000:00:13.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe8fc000-0xfe8fcfff (rw,non-prefetchable)
IRQ: 18 (3 events)
Module Alias: "pci:v00001002d00004397sv00001565sd00003700bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 105.1: 0403 Audio device
[Created at pci.378]
Unique ID: l4dC.BGaSeiPTva2
Parent ID: vSkL.2yY_xudKZ6E
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:05.1
SysFS BusID: 0000:01:05.1
Hardware Class: sound
Model: "ATI RS880 HDMI Audio [Radeon HD 4200 Series]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x970f "RS880 HDMI Audio [Radeon HD 4200 Series]"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x970f
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfeae8000-0xfeaebfff (rw,non-prefetchable)
IRQ: 19 (39 events)
Module Alias: "pci:v00001002d0000970Fsv00001002sd0000970Fbc04sc03i00"
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: #15 (PCI bridge)
19: PCI 14.3: 0601 ISA bridge
[Created at pci.378]
Unique ID: yX7n.cO6jMxSK6ND
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: bridge
Model: "ATI SB7x0/SB8x0/SB9x0 LPC host controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x439d "SB7x0/SB8x0/SB9x0 LPC host controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Module Alias: "pci:v00001002d0000439Dsv00001565sd00003700bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 07.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: M71A.6PhIFwEgJQC
SysFS ID: /devices/pci0000:00/0000:00:07.0
SysFS BusID: 0000:00:07.0
Hardware Class: bridge
Model: "AMD RS780/RS880 PCI to PCI bridge (PCIE port 3)"
Vendor: pci 0x1022 "AMD"
Device: pci 0x9607 "RS780/RS880 PCI to PCI bridge (PCIE port 3)"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x9601
Driver: "pcieport"
IRQ: 19 (39 events)
Module Alias: "pci:v00001022d00009607sv00001022sd00009601bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 14.1: 0101 IDE interface
[Created at pci.378]
Unique ID: Eu86.ATOo1+xPwXA
SysFS ID: /devices/pci0000:00/0000:00:14.1
SysFS BusID: 0000:00:14.1
Hardware Class: storage
Model: "ATI SB7x0/SB8x0/SB9x0 IDE Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x439c "SB7x0/SB8x0/SB9x0 IDE Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "pata_atiixp"
Driver Modules: "pata_atiixp"
I/O Ports: 0x1f0-0x1f7 (rw)
I/O Port: 0x3f6 (rw)
I/O Ports: 0x170-0x177 (rw)
I/O Port: 0x376 (rw)
I/O Ports: 0xff00-0xff0f (rw)
IRQ: 16 (1010 events)
Module Alias: "pci:v00001002d0000439Csv00001565sd00003700bc01sc01i8A"
Driver Info #0:
Driver Status: pata_atiixp is active
Driver Activation Cmd: "modprobe pata_atiixp"
Driver Info #1:
Driver Status: atiixp is active
Driver Activation Cmd: "modprobe atiixp"
Driver Info #2:
Driver Status: pata_acpi is active
Driver Activation Cmd: "modprobe pata_acpi"
Driver Info #3:
Driver Status: ata_generic is active
Driver Activation Cmd: "modprobe ata_generic"
Driver Info #4:
Driver Status: ide_pci_generic is active
Driver Activation Cmd: "modprobe ide_pci_generic"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 12.2: 0c03 USB Controller (EHCI)
[Created at pci.378]
Unique ID: x_X+.dqIZuG9X+L8
SysFS ID: /devices/pci0000:00/0000:00:12.2
SysFS BusID: 0000:00:12.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfe8ff800-0xfe8ff8ff (rw,non-prefetchable)
IRQ: 17 (1815 events)
Module Alias: "pci:v00001002d00004396sv00001565sd00003700bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is active
Driver Activation Cmd: "modprobe ehci-hcd"
Driver Info #1:
Driver Status: ehci_pci is active
Driver Activation Cmd: "modprobe ehci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 00.0: 0600 Host bridge
[Created at pci.378]
Unique ID: qLht.y3GzJOWDLeD
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "AMD RS880 Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x9601 "RS880 Host Bridge"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x9601
Module Alias: "pci:v00001022d00009601sv00001022sd00009601bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 12.0: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: CLZK.uESDEHlIv91
SysFS ID: /devices/pci0000:00/0000:00:12.0
SysFS BusID: 0000:00:12.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe8fe000-0xfe8fefff (rw,non-prefetchable)
IRQ: 16 (1010 events)
Module Alias: "pci:v00001002d00004397sv00001565sd00003700bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 18.2: 0600 Host bridge
[Created at pci.378]
Unique ID: OMCs.ridUeImaQn3
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] DRAM Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1102 "K8 [Athlon64/Opteron] DRAM Controller"
Module Alias: "pci:v00001022d00001102sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 13.1: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: 9n5e.PfOzirs+QY1
SysFS ID: /devices/pci0000:00/0000:00:13.1
SysFS BusID: 0000:00:13.1
Hardware Class: usb controller
Model: "ATI SB7x0 USB OHCI1 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4398 "SB7x0 USB OHCI1 Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe8fb000-0xfe8fbfff (rw,non-prefetchable)
IRQ: 18 (3 events)
Module Alias: "pci:v00001002d00004398sv00001565sd00003700bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 18.0: 0600 Host bridge
[Created at pci.378]
Unique ID: fiDB.ptk_g9XAN03
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD K8 [Athlon64/Opteron] HyperTransport Technology Configuration"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1100 "K8 [Athlon64/Opteron] HyperTransport Technology Configuration"
Module Alias: "pci:v00001022d00001100sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 14.4: 0604 PCI bridge (Subtractive decode)
[Created at pci.378]
Unique ID: qscc.ULOo3yhA66C
SysFS ID: /devices/pci0000:00/0000:00:14.4
SysFS BusID: 0000:00:14.4
Hardware Class: bridge
Model: "ATI SBx00 PCI to PCI Bridge"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4384 "SBx00 PCI to PCI Bridge"
Module Alias: "pci:v00001002d00004384sv00000000sd00000000bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 105.0: 0300 VGA compatible controller (VGA)
[Created at pci.378]
Unique ID: ul7N.jIndQcSiz36
Parent ID: vSkL.2yY_xudKZ6E
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:05.0
SysFS BusID: 0000:01:05.0
Hardware Class: graphics card
Model: "ATI RS880 [Radeon HD 4200]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x9710 "RS880 [Radeon HD 4200]"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x1704
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable)
I/O Ports: 0xd000-0xdfff (rw)
Memory Range: 0xfeaf0000-0xfeafffff (rw,non-prefetchable)
Memory Range: 0xfe900000-0xfe9fffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 18 (3 events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v00001002d00009710sv00001565sd00001704bc03sc00i00"
Driver Info #0:
Driver Status: radeon is active
Driver Activation Cmd: "modprobe radeon"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (PCI bridge)
30: PCI 14.2: 0403 Audio device
[Created at pci.378]
Unique ID: 5Dex.dt8x_csPJ49
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: sound
Model: "ATI SBx00 Azalia (Intel HDA)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4383 "SBx00 Azalia (Intel HDA)"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x8218
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfe8f4000-0xfe8f7fff (rw,non-prefetchable)
IRQ: 16 (1010 events)
Module Alias: "pci:v00001002d00004383sv00001565sd00008218bc04sc03i00"
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
31: PCI 11.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.378]
Unique ID: 7EWs.QqdWc42aJM4
SysFS ID: /devices/pci0000:00/0000:00:11.0
SysFS BusID: 0000:00:11.0
Hardware Class: storage
Model: "ATI SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4390 "SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode]"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xc000-0xc007 (rw)
I/O Ports: 0xb000-0xb003 (rw)
I/O Ports: 0xa000-0xa007 (rw)
I/O Ports: 0x9000-0x9003 (rw)
I/O Ports: 0x8000-0x800f (rw)
Memory Range: 0xfe8ffc00-0xfe8fffff (rw,non-prefetchable)
IRQ: 22 (4131 events)
Module Alias: "pci:v00001002d00004390sv00001565sd00003700bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 14.0: 0c05 SMBus
[Created at pci.378]
Unique ID: MZfG.KRt5sqGOpmA
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: unknown
Model: "ATI SBx00 SMBus Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4385 "SBx00 SMBus Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Revision: 0x3c
Driver: "piix4_smbus"
Driver Modules: "i2c_piix4"
Module Alias: "pci:v00001002d00004385sv00001565sd00003700bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_piix4 is active
Driver Activation Cmd: "modprobe i2c_piix4"
Driver Info #1:
Driver Status: sp5100_tco is active
Driver Activation Cmd: "modprobe sp5100_tco"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 12.1: 0c03 USB Controller (OHCI)
[Created at pci.378]
Unique ID: 4g2A.PfOzirs+QY1
SysFS ID: /devices/pci0000:00/0000:00:12.1
SysFS BusID: 0000:00:12.1
Hardware Class: usb controller
Model: "ATI SB7x0 USB OHCI1 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4398 "SB7x0 USB OHCI1 Controller"
SubVendor: pci 0x1565 "Biostar Microtech Int'l Corp"
SubDevice: pci 0x3700
Driver: "ohci-pci"
Driver Modules: "ohci_pci"
Memory Range: 0xfe8fd000-0xfe8fdfff (rw,non-prefetchable)
IRQ: 16 (1010 events)
Module Alias: "pci:v00001002d00004398sv00001565sd00003700bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is active
Driver Activation Cmd: "modprobe ohci-hcd"
Driver Info #1:
Driver Status: ohci_pci is active
Driver Activation Cmd: "modprobe ohci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: SCSI 700.1: 10600 Disk
[Created at block.245]
Unique ID: ofUZ.aaLPWjn8F5E
Parent ID: x_X+.dqIZuG9X+L8
SysFS ID: /class/block/sdd
SysFS BusID: 7:0:0:1
SysFS Device Link: /devices/pci0000:00/0000:00:12.2/usb1/1-3/1-3:1.0/host7/target7:0:0/7:0:0:1
Hardware Class: disk
Model: "ASMT ASM1156-PM"
Vendor: "ASMT"
Device: "ASM1156-PM"
Revision: "0"
Serial ID: --
Driver: "uas", "sd"
Driver Modules: "uas"
Device File: /dev/sdd (/dev/sg4)
Device Files: /dev/sdd, /dev/disk/by-id/ata-SAMSUNG_HD080HJ_..., /dev/disk/by-id/wwn-0x... /dev/disk/by-path/pci-0000:00:12.2-usb-0:3:1.0-scsi-0:0:0:1
Device Number: block 8:48-8:63 (char 21:4)
BIOS id: 0x83
Geometry (Logical): CHS 9729/255/63
Size: 156301488 sectors a 512 bytes
Capacity: 74 GB (80026361856 bytes)
Geometry (BIOS EDD): CHS 9729/255/63
Size (BIOS EDD): 156301488 sectors
Geometry (BIOS Legacy): CHS 1023/255/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (USB Controller)
37: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: IDE 300.0: 10600 Disk
[Created at block.245]
Unique ID: WZeP.7WQEkCjMNsC
Parent ID: 7EWs.QqdWc42aJM4
SysFS ID: /class/block/sdb
SysFS BusID: 3:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata4/host3/target3:0:0/3:0:0:0
Hardware Class: disk
Model: "WDC WD2500JS-60N"
Vendor: "WDC"
Device: "WD2500JS-60N"
Revision: "2E02"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdb
Device Files: /dev/sdb, /dev/disk/by-id/ata-WDC_WD2500JS-60NCB1_..., /dev/disk/by-label/blackPantherOS-18.1-KDE-LiveCD, /dev/disk/by-path/pci-0000:00:11.0-ata-4, /dev/disk/by-uuid/2020-09-09-19-22-43-00
Device Number: block 8:16-8:31
BIOS id: 0x80
Geometry (Logical): CHS 30401/255/63
Size: 488397168 sectors a 512 bytes
Capacity: 232 GB (250059350016 bytes)
Geometry (BIOS EDD): CHS 484521/16/63
Size (BIOS EDD): 488397168 sectors
Geometry (BIOS Legacy): CHS 1024/255/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #31 (SATA controller)
39: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: SCSI 401.0: 10602 CD-ROM (DVD)
[Created at block.249]
Unique ID: KD9E.7mNXvs19gd7
Parent ID: Eu86.ATOo1+xPwXA
SysFS ID: /class/block/sr0
SysFS BusID: 4:0:1:0
SysFS Device Link: /devices/pci0000:00/0000:00:14.1/ata5/host4/target4:0:1/4:0:1:0
Hardware Class: cdrom
Model: "hp CDDVDW SH-216BB"
Vendor: "hp"
Device: "CDDVDW SH-216BB"
Revision: "HE50"
Driver: "pata_atiixp", "sr"
Driver Modules: "pata_atiixp", "sr_mod"
Device File: /dev/sr0 (/dev/sg2)
Device Files: /dev/sr0, /dev/cdrom, /dev/cdrw, /dev/disk/by-id/ata-hp_CDDVDW_SH-216BB_..., /dev/disk/by-path/pci-0000:00:14.1-ata-1, /dev/dvd, /dev/dvdrw
Device Number: block 11:0 (char 21:2)
Features: CD-R, CD-RW, DVD, DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL, DVD-RAM, MRW, MRW-W
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (IDE interface)
Drive Speed: 40
45: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: SCSI 600.0: 10600 Disk
[Created at block.245]
Unique ID: Uc5H.x91+8W0DovE
Parent ID: x_X+.dqIZuG9X+L8
SysFS ID: /class/block/sde
SysFS BusID: 6:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:12.2/usb1/1-4/1-4:1.0/host6/target6:0:0/6:0:0:0
Hardware Class: disk
Model: "SanDisk Cruzer Glide"
Vendor: usb 0x0781 "SanDisk"
Device: usb 0x5575 "Cruzer Glide"
Revision: "1.00"
Serial ID: --
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sde (/dev/sg5)
Device Files: /dev/sde, /dev/disk/by-id/usb-SanDisk_Cruzer_Glide_..., /dev/disk/by-path/pci-0000:00:12.2-usb-0:4:1.0-scsi-0:0:0:0
Device Number: block 8:64-8:79 (char 21:5)
BIOS id: 0x81
Geometry (Logical): CHS 58704/64/32
Size: 120225792 sectors a 512 bytes
Capacity: 57 GB (61555605504 bytes)
Speed: 480 Mbps
Geometry (BIOS EDD): CHS 7483/255/63
Size (BIOS EDD): 120225792 sectors
Geometry (BIOS Legacy): CHS 1023/255/63
Module Alias: "usb:v0781p5575d0100dc00dsc00dp00ic08isc06ip50in00"
Driver Info #0:
Driver Status: uas is active
Driver Activation Cmd: "modprobe uas"
Driver Info #1:
Driver Status: usb_storage is active
Driver Activation Cmd: "modprobe usb_storage"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (USB Controller)
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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: SCSI 700.0: 10600 Disk
[Created at block.245]
Unique ID: LUEV.aaLPWjn8F5E
Parent ID: x_X+.dqIZuG9X+L8
SysFS ID: /class/block/sdc
SysFS BusID: 7:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:12.2/usb1/1-3/1-3:1.0/host7/target7:0:0/7:0:0:0
Hardware Class: disk
Model: "ASMT ASM1156-PM"
Vendor: "ASMT"
Device: "ASM1156-PM"
Revision: "0"
Serial ID: --
Driver: "uas", "sd"
Driver Modules: "uas"
Device File: /dev/sdc (/dev/sg3)
Device Files: /dev/sdc, /dev/disk/by-id/ata-ST3160812AS_Q_..., /dev/disk/by-label/CCCOMA_X64FRE_EN-US_DV9, /dev/disk/by-path/pci-0000:00:12.2-usb-0:3:1.0-scsi-0:0:0:0, /dev/disk/by-uuid/478c00004d532055
Device Number: block 8:32-8:47 (char 21:3)
BIOS id: 0x82
Geometry (Logical): CHS 19457/255/63
Size: 312581808 sectors a 512 bytes
Capacity: 149 GB (160041885696 bytes)
Geometry (BIOS EDD): CHS 19457/255/63
Size (BIOS EDD): 312581808 sectors
Geometry (BIOS Legacy): CHS 1023/255/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (USB Controller)
50: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: IDE 200.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.6G7jy2G9sU9
Parent ID: 7EWs.QqdWc42aJM4
SysFS ID: /class/block/sda
SysFS BusID: 2:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata3/host2/target2:0:0/2:0:0:0
Hardware Class: disk
Model: "ST2000DL003-9VT1"
Device: "ST2000DL003-9VT1"
Revision: "CC45"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/ata-ST2000DL003-9VT166_..., /dev/disk/by-id/wwn-0x... /dev/disk/by-path/pci-0000:00:11.0-ata-3
Device Number: block 8:0-8:15
BIOS id: 0x84
Geometry (Logical): CHS 243201/255/63
Size: 3907029168 sectors a 512 bytes
Capacity: 1863 GB (2000398934016 bytes)
Geometry (BIOS EDD): CHS 3876021/16/63
Size (BIOS EDD): 3907029168 sectors
Geometry (BIOS Legacy): CHS 1024/255/63
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #31 (SATA controller)
52: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: 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: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy.PaupGMfzSp8
Parent ID: 9n5e.PfOzirs+QY1
SysFS ID: /devices/pci0000:00/0000:00:13.1/usb6/6-0:1.0
SysFS BusID: 6-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #26 (USB Controller)
58: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.7qWCOCfUJwE
Parent ID: CLZK.uESDEHlIv91
SysFS ID: /devices/pci0000:00/0000:00:12.0/usb3/3-0:1.0
SysFS BusID: 3-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (USB Controller)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: BSFT._WUAGn1cSY8
Parent ID: hB6S.w3LjBQ_iyw1
SysFS ID: /devices/pci0000:00/0000:00:14.5/usb7/7-0:1.0
SysFS BusID: 7-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #16 (USB Controller)
60: USB 00.0: 10600 Disk
[Created at usb.122]
Unique ID: 2UT6.VAETyXnv0F5
Parent ID: k4bc.YdoZZg0c8i6
SysFS ID: /devices/pci0000:00/0000:00:12.2/usb1/1-3/1-3:1.0
SysFS BusID: 1-3:1.0
Hardware Class: disk
Model: "ASMedia ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge"
Hotplug: USB
Vendor: usb 0x174c "ASMedia Technology Inc."
Device: usb 0x55aa "ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge"
Revision: "1.00"
Serial ID: --
Driver: "uas"
Driver Modules: "uas"
Speed: 480 Mbps
Module Alias: "usb:v174Cp55AAd0100dc00dsc00dp00ic08isc06ip62in00"
Driver Info #0:
Driver Status: usb_storage is active
Driver Activation Cmd: "modprobe usb_storage"
Driver Info #1:
Driver Status: uas is active
Driver Activation Cmd: "modprobe uas"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #63 (Hub)
61: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: KRJj.rdjiIP9O4m8
Parent ID: uIhY.7qWCOCfUJwE
SysFS ID: /devices/pci0000:00/0000:00:12.0/usb3/3-1/3-1:1.0
SysFS BusID: 3-1:1.0
Hardware Class: keyboard
Model: "Darfon Electronics HP USB Business Slim Keyboard"
Hotplug: USB
Vendor: usb 0x0d62 "Darfon Electronics Corp."
Device: usb 0x910e "HP USB Business Slim Keyboard"
Revision: "33.02"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event2
Device Files: /dev/input/event2, /dev/input/by-id/usb-0d62_HP_USB_Business_Slim_..., /dev/input/by-path/pci-0000:00:12.0-usb-0:1:1.0-event-kbd
Device Number: char 13:66
Speed: 1.5 Mbps
Module Alias: "usb:v0D62p910Ed3302dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #58 (Hub)
62: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.uYbnlyRCGC6
Parent ID: 4g2A.PfOzirs+QY1
SysFS ID: /devices/pci0000:00/0000:00:12.1/usb4/4-0:1.0
SysFS BusID: 4-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "4.18"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0418dc09dsc00dp00ic09isc00ip00in00"
Driver Info #0:
Driver Status: usbcore is active
Driver Activation Cmd: "modprobe usbcore"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #33 (USB Controller)
63: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.YdoZZg0c8i6