-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path562262B9EB
1151 lines (1098 loc) · 43.3 KB
/
562262B9EB
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
17: PCI 300.0: 0282 WLAN controller
[Created at pci.386]
Unique ID: y9sn.LKYMpDvWhK4
Parent ID: qTvu.cH+7oG54TJ7
SysFS ID: /devices/pci0000:00/0000:00:1c.1/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: network
Model: "Qualcomm Atheros AR9485 Wireless Network Adapter"
Vendor: pci 0x168c "Qualcomm Atheros"
Device: pci 0x0032 "AR9485 Wireless Network Adapter"
SubVendor: pci 0x1a3b "AzureWave"
SubDevice: pci 0x2c97
Revision: 0x01
Driver: "ath9k"
Driver Modules: "ath9k"
Device File: wlan0
Features: WLAN
Memory Range: 0xf7900000-0xf797ffff (rw,non-prefetchable)
Memory Range: 0xf7980000-0xf798ffff (ro,non-prefetchable,disabled)
IRQ: 17 (no events)
HW Address: F41E9A55114806A6A41BA932612C0209
Permanent HW Address: D44D83644704CB38D526DA8923867E72
Link detected: no
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13 14
WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 2.467 2.472 2.484
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v0000168Cd00000032sv00001A3Bsd00002C97bc02sc80i00"
Driver Info #0:
Driver Status: ath9k is active
Driver Activation Cmd: "modprobe ath9k"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #28 (PCI bridge)
18: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.rirBY6DbYa7
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel 7 Series Chipset Family 6-port SATA Controller [AHCI mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e03 "7 Series Chipset Family 6-port SATA Controller [AHCI mode]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xf0b0-0xf0b7 (rw)
I/O Ports: 0xf0a0-0xf0a3 (rw)
I/O Ports: 0xf090-0xf097 (rw)
I/O Ports: 0xf080-0xf083 (rw)
I/O Ports: 0xf060-0xf07f (rw)
Memory Range: 0xf7a16000-0xf7a167ff (rw,non-prefetchable)
IRQ: 27 (2837045 events)
Module Alias: "pci:v00008086d00001E03sv00001043sd00001447bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.aS6eq7sfPY6
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 7 Series/C216 Chipset Family PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e10 "7 Series/C216 Chipset Family PCI Express Root Port 1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0xc4
Driver: "pcieport"
IRQ: 16 (100000 events)
Module Alias: "pci:v00008086d00001E10sv00001043sd00001447bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.gWE4NSyFoj9
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel HM76 Express Chipset LPC Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e59 "HM76 Express Chipset LPC Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00001E59sv00001043sd00001447bc06sc01i00"
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
21: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.5nH8ZVth5R1
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0151 "Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x09
Driver: "pcieport"
IRQ: 24 (no events)
Module Alias: "pci:v00008086d00000151sv00001043sd00001447bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.B_Vxe6WKyZ9
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel 7 Series/C216 Chipset Family MEI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e3a "7 Series/C216 Chipset Family MEI Controller #1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Memory Range: 0xf7a1a000-0xf7a1a00f (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00001E3Asv00001043sd00001447bc07sc80i00"
Driver Info #0:
Driver Status: mei_me is not active
Driver Activation Cmd: "modprobe mei_me"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.QLMoVwy_xW5
Parent ID: vSkL.5nH8ZVth5R1
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "nVidia GF108M [GeForce GT 635M]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0de3 "GF108M [GeForce GT 635M]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0xff
Memory Range: 0xf6000000-0xf6ffffff (rw,non-prefetchable)
Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)
Memory Range: 0xf0000000-0xf1ffffff (ro,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xf7000000-0xf707ffff (ro,non-prefetchable)
IRQ: 16 (100000 events)
Module Alias: "pci:v000010DEd00000DE3sv00001043sd00001447bc03sc00i00"
Driver Info #0:
Driver Status: nouveau is not active
Driver Activation Cmd: "modprobe nouveau"
Driver Info #1:
Driver Status: nvidia_legacy_390xx_drm is not active
Driver Activation Cmd: "modprobe nvidia_legacy_390xx_drm"
Driver Info #2:
Driver Status: nvidia_legacy_390xx is not active
Driver Activation Cmd: "modprobe nvidia_legacy_390xx"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
24: PCI 1b.0: 0403 Audio device
[Created at pci.386]
Unique ID: u1Nb.HMCzT5lEIaC
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Intel 7 Series/C216 Chipset Family High Definition Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e20 "7 Series/C216 Chipset Family High Definition Audio Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xf7a10000-0xf7a13fff (rw,non-prefetchable)
IRQ: 30 (90 events)
Module Alias: "pci:v00008086d00001E20sv00001043sd00001447bc04sc03i00"
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
25: PCI 1c.3: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Z7uZ.gxm7jYZuZr8
SysFS ID: /devices/pci0000:00/0000:00:1c.3
SysFS BusID: 0000:00:1c.3
Hardware Class: bridge
Model: "Intel 7 Series/C216 Chipset Family PCI Express Root Port 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e16 "7 Series/C216 Chipset Family PCI Express Root Port 4"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0xc4
Driver: "pcieport"
IRQ: 19 (no events)
Module Alias: "pci:v00008086d00001E16sv00001043sd00001447bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 1f.3: 0c05 SMBus
[Created at pci.386]
Unique ID: nS1_.TUPC4_8lH8D
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel 7 Series/C216 Chipset Family SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e22 "7 Series/C216 Chipset Family SMBus Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xf7a15000-0xf7a150ff (rw,non-prefetchable)
I/O Ports: 0xf040-0xf05f (rw)
IRQ: 18 (5 events)
Module Alias: "pci:v00008086d00001E22sv00001043sd00001447bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_i801 is active
Driver Activation Cmd: "modprobe i2c_i801"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.aAMYy5Dbs56
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel 3rd Gen Core processor DRAM Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0154 "3rd Gen Core processor DRAM Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x09
Driver: "ivb_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00000154sv00001043sd00001447bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 1c.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: qTvu.cH+7oG54TJ7
SysFS ID: /devices/pci0000:00/0000:00:1c.1
SysFS BusID: 0000:00:1c.1
Hardware Class: bridge
Model: "Intel 7 Series/C210 Series Chipset Family PCI Express Root Port 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e12 "7 Series/C210 Series Chipset Family PCI Express Root Port 2"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0xc4
Driver: "pcieport"
IRQ: 17 (no events)
Module Alias: "pci:v00008086d00001E12sv00001043sd00001447bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 1a.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: pwJ7.cdVC7mw8Cy7
SysFS ID: /devices/pci0000:00/0000:00:1a.0
SysFS BusID: 0000:00:1a.0
Hardware Class: usb controller
Model: "Intel 7 Series/C216 Chipset Family USB Enhanced Host Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e2d "7 Series/C216 Chipset Family USB Enhanced Host Controller #2"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xf7a18000-0xf7a183ff (rw,non-prefetchable)
IRQ: 16 (100000 events)
Module Alias: "pci:v00008086d00001E2Dsv00001043sd00001447bc0Csc03i20"
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
30: PCI 1d.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 1GTX.+juylm5DWG5
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel 7 Series/C216 Chipset Family USB Enhanced Host Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e26 "7 Series/C216 Chipset Family USB Enhanced Host Controller #1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xf7a17000-0xf7a173ff (rw,non-prefetchable)
IRQ: 23 (91 events)
Module Alias: "pci:v00008086d00001E26sv00001043sd00001447bc0Csc03i20"
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
31: PCI 400.2: 0200 Ethernet controller
[Created at pci.386]
Unique ID: rBUF.B+AC7O7njr3
Parent ID: Z7uZ.gxm7jYZuZr8
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.2
SysFS BusID: 0000:04:00.2
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 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x0a
Driver: "r8169"
Driver Modules: "r8169"
Device File: eth0
I/O Ports: 0xd000-0xdfff (rw)
Memory Range: 0xf2104000-0xf2104fff (ro,non-prefetchable)
Memory Range: 0xf2100000-0xf2103fff (ro,non-prefetchable)
IRQ: 19 (no events)
HW Address: 2312C93FEF856837134F91ED728D8CAF
Permanent HW Address: 2312C93FEF856837134F91ED728D8CAF
Link detected: no
Module Alias: "pci:v000010ECd00008168sv00001043sd00001447bc02sc00i00"
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: #25 (PCI bridge)
32: PCI 100.1: 0403 Audio device
[Created at pci.386]
Unique ID: NXNs.JbmZvV7JoiC
Parent ID: vSkL.5nH8ZVth5R1
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "nVidia GF108 High Definition Audio Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0bea "GF108 High Definition Audio Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0xff
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xf7080000-0xf7083fff (rw,non-prefetchable)
IRQ: 17 (no events)
Module Alias: "pci:v000010DEd00000BEAsv00001043sd00001447bc04sc03i00"
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: #21 (PCI bridge)
33: PCI 400.0: ff00 Unclassified device
[Created at pci.386]
Unique ID: YmUS.Po+ULkmTue2
Parent ID: Z7uZ.gxm7jYZuZr8
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: unknown
Model: "Realtek RTL8411 PCI Express Card Reader"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x5289 "RTL8411 PCI Express Card Reader"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x01
Driver: "rtsx_pci"
Driver Modules: "rtsx_pci"
Memory Range: 0xf7800000-0xf780ffff (rw,non-prefetchable)
IRQ: 25 (12 events)
Module Alias: "pci:v000010ECd00005289sv00001043sd00001447bcFFsc00i00"
Driver Info #0:
Driver Status: rtsx_pci is active
Driver Activation Cmd: "modprobe rtsx_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (PCI bridge)
34: PCI 02.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: _Znp.pAhH3U+l0+6
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: graphics card
Model: "Intel 3rd Gen Core processor Graphics Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0166 "3rd Gen Core processor Graphics Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x09
Driver: "i915"
Driver Modules: "i915"
Memory Range: 0xf7400000-0xf77fffff (rw,non-prefetchable)
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable)
I/O Ports: 0xf000-0xf03f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 29 (30349281 events)
Module Alias: "pci:v00008086d00000166sv00001043sd00001447bc03sc00i00"
Driver Info #0:
Driver Status: i915 is active
Driver Activation Cmd: "modprobe i915"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: MZfG.wH4IBc0aCA8
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Model: "Intel 7 Series/C210 Series Chipset Family USB xHCI Host Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1e31 "7 Series/C210 Series Chipset Family USB xHCI Host Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x1447
Revision: 0x04
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xf7a00000-0xf7a0ffff (rw,non-prefetchable)
IRQ: 28 (145073266 events)
Module Alias: "pci:v00008086d00001E31sv00001043sd00001447bc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: None 00.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: rdCR.PmxFGKllm9A
Parent ID: _Znp.pAhH3U+l0+6
Hardware Class: monitor
Model: "TV"
Vendor: MST
Device: eisa 0x0030 "TV"
Resolution: 640x480@60Hz
Resolution: 800x600@60Hz
Resolution: 1024x768@60Hz
Resolution: 1280x1024@60Hz
Resolution: 800x600@60Hz
Resolution: 1024x768@60Hz
Resolution: 1360x768@60Hz
Resolution: 1920x1080@60Hz
Size: 708x398 mm
Year of Manufacture: 2012
Week of Manufacture: 10
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
Year of Manufacture: 2012
Week of Manufacture: 10
Detailed Timings #1:
Resolution: 1360x768
Horizontal: 1360 1616 1728 1792 (+256 +368 +432) +hsync
Vertical: 768 786 792 795 (+18 +24 +27) +vsync
Frequencies: 85.50 MHz, 47.71 kHz, 60.02 Hz
Driver Info #0:
Max. Resolution: 1920x1080
Vert. Sync Range: 50-75 Hz
Hor. Sync Range: 30-80 kHz
Bandwidth: 148 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (VGA compatible controller)
37: None 01.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: wkFv.N4NLmIaGPq5
Parent ID: _Znp.pAhH3U+l0+6
Hardware Class: monitor
Model: "N156BGE-L21 LCD Monitor"
Vendor: CMO "N156BGE-L21"
Device: eisa 0x15a7
Resolution: 1366x768@60Hz
Size: 344x193 mm
Year of Manufacture: 2010
Week of Manufacture: 31
Detailed Timings #0:
Resolution: 1366x768
Horizontal: 1366 1382 1416 1466 (+16 +50 +100) -hsync
Vertical: 768 770 776 788 (+2 +8 +20) -vsync
Frequencies: 69.30 MHz, 47.27 kHz, 59.99 Hz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (VGA compatible controller)
38: SCSI 200.0: 10602 CD-ROM (DVD)
[Created at block.249]
Unique ID: KD9E.fVD7fgS0Ou4
Parent ID: w7Y8.rirBY6DbYa7
SysFS ID: /class/block/sr0
SysFS BusID: 2:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0
Hardware Class: cdrom
Model: "HL-DT-ST DVDRAM GT70N"
Vendor: "HL-DT-ST"
Device: "DVDRAM GT70N"
Revision: "AS00"
Driver: "ahci", "sr"
Driver Modules: "ahci", "sr_mod"
Device File: /dev/sr0 (/dev/sg1)
Device Files: /dev/sr0, /dev/cdrom, /dev/cdrw, /dev/disk/by-id/ata-HL-DT-ST_DVDRAM_GT70N_..., /dev/disk/by-id/wwn-0x..., /dev/dvd, /dev/dvdrw
Device Number: block 11:0 (char 21:1)
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: #18 (SATA controller)
Drive Speed: 24
39: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.Iu+8tFgY9X2
Parent ID: w7Y8.rirBY6DbYa7
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "CT1000MX500SSD1"
Device: "CT1000MX500SSD1"
Revision: "033"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci", "sd_mod"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/ata-CT1000MX500SSD1_..., /dev/disk/by-id/wwn-0x...
Device Number: block 8:0-8:15
BIOS id: 0x80
Geometry (Logical): CHS 121601/255/63
Size: 1953525168 sectors a 512 bytes
Capacity: 931 GB (1000204886016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (SATA controller)
40: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: qe89.gQBrwlEE7Z3
Parent ID: hSuP.lRoCB54l1cE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.4/2-2.4:1.0
SysFS BusID: 2-2.4:1.0
Hardware Class: keyboard
Model: "Xenta SE340D PC Remote Control"
Hotplug: USB
Vendor: usb 0x1d57 "Xenta"
Device: usb 0xad02 "SE340D PC Remote Control"
Revision: "1.05"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event7
Device Files: /dev/input/event7, /dev/input/by-id/usb-1d57_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.4:1.0-event-kbd
Device Number: char 13:71
Speed: 1.5 Mbps
Module Alias: "usb:v1D57pAD02d0105dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #47 (Hub)
41: USB 00.1: 0000 Unclassified device
[Created at usb.122]
Unique ID: rhm2.kW6cDp+F+p1
Parent ID: hSuP.lRoCB54l1cE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.3/2-2.3:1.1
SysFS BusID: 2-2.3:1.1
Hardware Class: unknown
Model: "Logitech Keyboard K120"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc31c "Keyboard K120"
Revision: "49.20"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event5
Device Files: /dev/input/event5, /dev/input/by-id/usb-Logitech_USB_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.3:1.1-event
Device Number: char 13:69
Speed: 1.5 Mbps
Module Alias: "usb:v046DpC31Cd4920dc00dsc00dp00ic03isc00ip00in01"
Driver Info #0:
Driver Status: usbhid is active
Driver Activation Cmd: "modprobe usbhid"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #47 (Hub)
42: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.xYNhIwdOaa6
Parent ID: MZfG.wH4IBc0aCA8
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-0:1.0
SysFS BusID: 3-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: "5.15"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0515dc09dsc00dp03ic09isc00ip00in00"
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: #35 (USB Controller)
43: USB 00.0: 10503 USB Mouse
[Created at usb.122]
Unique ID: WFGf.ChzS7lmSk10
Parent ID: hSuP.lRoCB54l1cE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.1/2-2.1:1.0
SysFS BusID: 2-2.1:1.0
Hardware Class: mouse
Model: "Pixart Imaging Optical Mouse"
Hotplug: USB
Vendor: usb 0x093a "Pixart Imaging, Inc."
Device: usb 0x2510 "Optical Mouse"
Revision: "1.00"
Compatible to: int 0x0210 0x0023
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse0)
Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event1, /dev/input/by-id/usb-PixArt_USB_Optical_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.1:1.0-event-mouse, /dev/input/by-id/usb-PixArt_USB_Optical_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.1:1.0-mouse
Device Number: char 13:63 (char 13:32)
Speed: 1.5 Mbps
Module Alias: "usb:v093Ap2510d0100dc00dsc00dp00ic03isc01ip02in00"
Driver Info #0:
Buttons: 3
Wheels: 2
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #47 (Hub)
44: USB 00.1: 0000 Unclassified device
[Created at usb.122]
Unique ID: 46Ud.JKAWng0nKN6
Parent ID: ADDn.4Nx_qoDfSd7
SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1
SysFS BusID: 1-1.3:1.1
Hardware Class: unknown
Model: "Sunplus Innovation ASUS USB2.0 Webcam"
Hotplug: USB
Vendor: usb 0x1bcf "Sunplus Innovation Technology Inc."
Device: usb 0x2883 "ASUS USB2.0 Webcam"
Revision: "4.29"
Driver: "uvcvideo"
Driver Modules: "uvcvideo"
Speed: 480 Mbps
Module Alias: "usb:v1BCFp2883d0429dcEFdsc02dp01ic0Eisc02ip00in01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #58 (Hub)
45: USB 00.0: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: lfzD.Q6GZM0l5A5A
Parent ID: ADDn.4Nx_qoDfSd7
SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0
SysFS BusID: 1-1.1:1.0
Hardware Class: bluetooth
Model: "IMC Networks Atheros AR3012 Bluetooth 4.0 Adapter"
Hotplug: USB
Vendor: usb 0x13d3 "IMC Networks"
Device: usb 0x3362 "Atheros AR3012 Bluetooth 4.0 Adapter"
Revision: "0.02"
Serial ID: --
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v13D3p3362d0002dcE0dsc01dp01icE0isc01ip01in00"
Driver Info #0:
Driver Status: ath3k is active
Driver Activation Cmd: "modprobe ath3k"
Driver Info #1:
Driver Status: btusb is active
Driver Activation Cmd: "modprobe btusb"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #58 (Hub)
46: USB 00.2: 0401 Multimedia audio controller
[Created at usb.122]
Unique ID: skOy.NupBqA6TQf2
Parent ID: hSuP.lRoCB54l1cE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.2/2-2.2:1.2
SysFS BusID: 2-2.2:1.2
Hardware Class: sound
Model: "C-Media Electronics CM106 Like Sound Device"
Hotplug: USB
Vendor: usb 0x0d8c "C-Media Electronics, Inc."
Device: usb 0x0102 "CM106 Like Sound Device"
Revision: "0.10"
Driver: "snd-usb-audio"
Driver Modules: "snd_usb_audio"
Speed: 12 Mbps
Module Alias: "usb:v0D8Cp0102d0010dc00dsc00dp00ic01isc02ip00in02"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #47 (Hub)
47: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: hSuP.lRoCB54l1cE
Parent ID: pBe4.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2:1.0
SysFS BusID: 2-2:1.0
Hardware Class: hub
Model: "Genesys Logic 4-port hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0610 "4-port hub"
Revision: "92.24"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v05E3p0610d9224dc09dsc00dp02ic09isc00ip02in00"
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: #59 (Hub)
48: USB 00.1: 10503 USB Mouse
[Created at usb.122]
Unique ID: HqOD.P9hUS_gKze2
Parent ID: hSuP.lRoCB54l1cE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.4/2-2.4:1.1
SysFS BusID: 2-2.4:1.1
Hardware Class: mouse
Model: "Xenta SE340D PC Remote Control"
Hotplug: USB
Vendor: usb 0x1d57 "Xenta"
Device: usb 0xad02 "SE340D PC Remote Control"
Revision: "1.05"
Compatible to: int 0x0210 0x0025
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse2)
Device Files: /dev/input/mice, /dev/input/mouse2, /dev/input/event8, /dev/input/by-id/usb-1d57_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.4:1.1-event-mouse, /dev/input/by-id/usb-1d57_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.4:1.1-mouse
Device Number: char 13:63 (char 13:34)
Speed: 1.5 Mbps
Module Alias: "usb:v1D57pAD02d0105dc00dsc00dp00ic03isc01ip02in01"
Driver Info #0:
Buttons: 5
Wheels: 2
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #47 (Hub)
49: USB 00.0: 0200 Ethernet controller
[Created at usb.122]
Unique ID: KRJj.AsNkS+1tGK3
Parent ID: uIhY.xYNhIwdOaa6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0
SysFS BusID: 3-1:1.0
Hardware Class: network
Model: "TP-Link USB 10/100/1000 LAN"
Hotplug: USB
Vendor: usb 0x2357 "TP-Link"
Device: usb 0x0601 "USB 10/100/1000 LAN"
Revision: "30.00"
Serial ID: --
Driver: "r8152"
Driver Modules: "r8152"
Device File: enxd037452a7775
HW Address: 50952832DB8DE17A5EFF1AD34AD483AC
Permanent HW Address: 50952832DB8DE17A5EFF1AD34AD483AC
Link detected: yes
Module Alias: "usb:v2357p0601d3000dc00dsc00dp00icFFiscFFip00in00"
Driver Info #0:
Driver Status: r8152 is active
Driver Activation Cmd: "modprobe r8152"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (Hub)
51: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.oLWCeziExdF
Parent ID: 1GTX.+juylm5DWG5
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb4/4-0:1.0
SysFS BusID: 4-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: "5.15"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0515dc09dsc00dp00ic09isc00ip00in00"
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: #30 (USB Controller)
52: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.FHd55n4xKo7
Parent ID: pwJ7.cdVC7mw8Cy7
SysFS ID: /devices/pci0000:00/0000:00:1a.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: "5.15"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0515dc09dsc00dp00ic09isc00ip00in00"
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: #29 (USB Controller)
53: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: OWW_.+P1SsGCg4n7
Parent ID: hSuP.lRoCB54l1cE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.3/2-2.3:1.0
SysFS BusID: 2-2.3:1.0
Hardware Class: keyboard
Model: "Logitech Keyboard K120"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc31c "Keyboard K120"
Revision: "49.20"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event4
Device Files: /dev/input/event4, /dev/input/by-id/usb-Logitech_USB_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.3:1.0-event-kbd
Device Number: char 13:68
Speed: 1.5 Mbps
Module Alias: "usb:v046DpC31Cd4920dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #47 (Hub)
54: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: PYMB.4Nx_qoDfSd7
Parent ID: zPk0.oLWCeziExdF
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1:1.0
SysFS BusID: 4-1:1.0
Hardware Class: hub
Model: "Intel Integrated Rate Matching Hub"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x0024 "Integrated Rate Matching Hub"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v8087p0024d0000dc09dsc00dp01ic09isc00ip00in00"
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: #51 (Hub)
56: USB 00.3: 0000 Unclassified device
[Created at usb.122]
Unique ID: Jwe0.ok9q+o0QylA
Parent ID: hSuP.lRoCB54l1cE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.2/2-2.2:1.3
SysFS BusID: 2-2.2:1.3
Hardware Class: unknown
Model: "C-Media Electronics CM106 Like Sound Device"
Hotplug: USB
Vendor: usb 0x0d8c "C-Media Electronics, Inc."
Device: usb 0x0102 "CM106 Like Sound Device"
Revision: "0.10"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event3
Device Files: /dev/input/event3, /dev/input/by-id/usb-0d8c_USB_Sound_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:2.2:1.3-event
Device Number: char 13:67
Speed: 12 Mbps
Module Alias: "usb:v0D8Cp0102d0010dc00dsc00dp00ic03isc00ip00in03"
Driver Info #0:
Driver Status: usbhid is active
Driver Activation Cmd: "modprobe usbhid"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #47 (Hub)
58: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: ADDn.4Nx_qoDfSd7
Parent ID: k4bc.FHd55n4xKo7
SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0
SysFS BusID: 1-1:1.0
Hardware Class: hub
Model: "Intel Integrated Rate Matching Hub"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x0024 "Integrated Rate Matching Hub"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v8087p0024d0000dc09dsc00dp01ic09isc00ip00in00"
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: #52 (Hub)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.2DFUsyrieMD
Parent ID: MZfG.wH4IBc0aCA8
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0
SysFS BusID: 2-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: "5.15"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0515dc09dsc00dp01ic09isc00ip00in00"
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: #35 (USB Controller)
61: PS/2 00.0: 10800 Keyboard
[Created at input.226]
Unique ID: nLyy.+49ps10DtUF
Hardware Class: keyboard
Model: "AT Translated Set 2 keyboard"
Vendor: 0x0001
Device: 0x0001 "AT Translated Set 2 keyboard"
Compatible to: int 0x0211 0x0001
Device File: /dev/input/event0
Device Files: /dev/input/event0, /dev/input/by-path/platform-i8042-serio-0-event-kbd
Device Number: char 13:64
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PS/2 00.0: 10500 PS/2 Mouse
[Created at input.249]
Unique ID: AH6Q.9uGL5DibWf5
Hardware Class: mouse
Model: "ETPS/2 Elantech Touchpad"
Vendor: 0x0002
Device: 0x000e "ETPS/2 Elantech Touchpad"
Compatible to: int 0x0210 0x0001
Device File: /dev/input/mice (/dev/input/mouse1)
Device Files: /dev/input/mice, /dev/input/mouse1, /dev/input/event2, /dev/input/by-path/platform-i8042-serio-4-event-mouse, /dev/input/by-path/platform-i8042-serio-4-mouse
Device Number: char 13:63 (char 13:33)
Driver Info #0:
Buttons: 1
Wheels: 0
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: None 00.0: 10103 CPU
[Created at cpu.465]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.58.9 "Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,cpuid_fault,epb,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,fsgsbase,smep,erms,xsaveopt,dtherm,ida,arat,pln,pts,md_clear,flush_l1d
Clock: 1200 MHz
BogoMips: 4589.32
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 01.0: 10103 CPU
[Created at cpu.465]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.58.9 "Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz"