-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path2C1CF2DA53
1077 lines (1018 loc) · 40.6 KB
/
2C1CF2DA53
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
11: PCI 300.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: UOJ9._ishxliORN3
Parent ID: qTvu.uuz7mwBmZd8
SysFS ID: /devices/pci0000:00/0000:00:1c.1/0000:03:00.0
SysFS BusID: 0000:03: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x03
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
I/O Ports: 0x2000-0x20ff (rw)
Memory Range: 0xd1004000-0xd1004fff (ro,non-prefetchable)
Memory Range: 0xd1000000-0xd1003fff (ro,non-prefetchable)
Memory Range: 0xd2000000-0xd200ffff (ro,non-prefetchable,disabled)
IRQ: 17 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v000010ECd00008168sv0000103Csd00001448bc02sc00i00"
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: #32 (PCI bridge)
12: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.xuyJ+FczHu4
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel 5 Series/3400 Series Chipset 4 port SATA AHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b29 "5 Series/3400 Series Chipset 4 port SATA AHCI Controller"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0x5048-0x504f (rw)
I/O Ports: 0x5054-0x5057 (rw)
I/O Ports: 0x5040-0x5047 (rw)
I/O Ports: 0x5050-0x5053 (rw)
I/O Ports: 0x5020-0x503f (rw)
Memory Range: 0xd4108000-0xd41087ff (rw,non-prefetchable)
IRQ: 33 (100875 events)
Module Alias: "pci:v00008086d00003B29sv0000103Csd00001448bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
13: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.s35eonyLWs7
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 5 Series/3400 Series Chipset PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b42 "5 Series/3400 Series Chipset PCI Express Root Port 1"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00008086d00003B42sv0000103Csd00001448bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
14: PCI 7f03.1: 0600 Host bridge
[Created at pci.386]
Unique ID: aBhg.Xg00KuqY0XF
SysFS ID: /devices/pci0000:7f/0000:7f:03.1
SysFS BusID: 0000:7f:03.1
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Target Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c99 "Core Processor Integrated Memory Controller Target Address Decoder"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002C99sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: RE4e.rObhuMHIHC8
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: unknown
Model: "Intel Core Processor System Management Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd155 "Core Processor System Management Registers"
SubVendor: pci 0x003c
SubDevice: pci 0x0048
Revision: 0x11
Module Alias: "pci:v00008086d0000D155sv0000003Csd00000048bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.wpyo7b0ZNVF
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel HM55 Chipset LPC Interface Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b09 "HM55 Chipset LPC Interface Controller"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00003B09sv0000103Csd00001448bc06sc01i00"
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
17: PCI 10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 37TO.GKtxUWhmeH6
SysFS ID: /devices/pci0000:00/0000:00:10.0
SysFS BusID: 0000:00:10.0
Hardware Class: unknown
Model: "Intel Core Processor QPI Link"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd150 "Core Processor QPI Link"
SubVendor: pci 0x003c
SubDevice: pci 0x0048
Revision: 0x11
Module Alias: "pci:v00008086d0000D150sv0000003Csd00000048bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 200.0: 0282 WLAN controller
[Created at pci.386]
Unique ID: S6TQ.drSOnGXMLV1
Parent ID: z8Q3.s35eonyLWs7
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: network
Device Name: "Ralink RT3090 802.11b/g/n WiFi Adapter"
Model: "Ralink RT3090 Wireless 802.11n 1T/1R PCIe"
Vendor: pci 0x1814 "Ralink corp."
Device: pci 0x3090 "RT3090 Wireless 802.11n 1T/1R PCIe"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1453
Driver: "rt2800pci"
Driver Modules: "rt2800pci"
Device File: wlo1
Features: WLAN
Memory Range: 0xd3000000-0xd300ffff (rw,non-prefetchable)
IRQ: 16 (411119 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
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:v00001814d00003090sv0000103Csd00001453bc02sc80i00"
Driver Info #0:
Driver Status: rt2800pci is active
Driver Activation Cmd: "modprobe rt2800pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #13 (PCI bridge)
19: PCI 7f04.2: 0600 Host bridge
[Created at pci.386]
Unique ID: XdD_.APWle0vulz2
SysFS ID: /devices/pci0000:7f/0000:7f:04.2
SysFS BusID: 0000:7f:04.2
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 0 Rank Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ca2 "Core Processor Integrated Memory Controller Channel 0 Rank Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CA2sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 7f04.0: 0600 Host bridge
[Created at pci.386]
Unique ID: ozEJ.8adFhtfUiC2
SysFS ID: /devices/pci0000:7f/0000:7f:04.0
SysFS BusID: 0000:7f:04.0
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 0 Control Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ca0 "Core Processor Integrated Memory Controller Channel 0 Control Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CA0sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.sem8aSpWvSC
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel 5 Series/3400 Series Chipset HECI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b64 "5 Series/3400 Series Chipset HECI Controller"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x06
Driver: "mei_me"
Driver Modules: "mei_me"
Memory Range: 0xd4104000-0xd410400f (rw,non-prefetchable)
IRQ: 34 (15 events)
Module Alias: "pci:v00008086d00003B64sv0000103Csd00001448bc07sc80i00"
Driver Info #0:
Driver Status: mei_me is active
Driver Activation Cmd: "modprobe mei_me"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.gW9_gxX0Np3
Parent ID: 3hqH._WivQC81mW3
SysFS ID: /devices/pci0000:00/0000:00:03.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Device Name: "ATI Mobility Radeon HD 5650"
Model: "Hewlett-Packard Company Mobility Radeon HD 5650"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x68c1 "Madison [Mobility Radeon HD 5650/5750 / 6530M/6550M]"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448 "Mobility Radeon HD 5650"
Memory Range: 0xc0000000-0xcfffffff (ro,non-prefetchable)
Memory Range: 0xd4000000-0xd401ffff (rw,non-prefetchable)
I/O Ports: 0x4000-0x40ff (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 10 (no events)
Module Alias: "pci:v00001002d000068C1sv0000103Csd00001448bc03sc00i00"
Driver Info #0:
Driver Status: radeon is not active
Driver Activation Cmd: "modprobe radeon"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (PCI bridge)
23: PCI 7f05.3: 0600 Host bridge
[Created at pci.386]
Unique ID: T3mH.p70Vz8zEVQ6
SysFS ID: /devices/pci0000:7f/0000:7f:05.3
SysFS BusID: 0000:7f:05.3
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 1 Thermal Control Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2cab "Core Processor Integrated Memory Controller Channel 1 Thermal Control Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CABsv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 1b.0: 0403 Audio device
[Created at pci.386]
Unique ID: u1Nb.dAQ4dM1vS00
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Intel 5 Series/3400 Series Chipset High Definition Audio"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b56 "5 Series/3400 Series Chipset High Definition Audio"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xd4100000-0xd4103fff (rw,non-prefetchable)
IRQ: 35 (3263 events)
Module Alias: "pci:v00008086d00003B56sv0000103Csd00001448bc04sc03i00"
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 7f02.1: 0600 Host bridge
[Created at pci.386]
Unique ID: V4eC.PMT0UOYhotD
SysFS ID: /devices/pci0000:7f/0000:7f:02.1
SysFS BusID: 0000:7f:02.1
Hardware Class: bridge
Model: "Intel Core Processor QPI Physical 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c91 "Core Processor QPI Physical 0"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002C91sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 7f03.4: 0600 Host bridge
[Created at pci.386]
Unique ID: AA9B.4wrFmbBgbg0
SysFS ID: /devices/pci0000:7f/0000:7f:03.4
SysFS BusID: 0000:7f:03.4
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Test Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c9c "Core Processor Integrated Memory Controller Test Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002C9Csv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 08.3: 0880 System peripheral
[Created at pci.386]
Unique ID: 1DY8.OeQxK0_dsw7
SysFS ID: /devices/pci0000:00/0000:00:08.3
SysFS BusID: 0000:00:08.3
Hardware Class: unknown
Model: "Intel Core Processor Miscellaneous Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd158 "Core Processor Miscellaneous Registers"
SubVendor: pci 0x003c
SubDevice: pci 0x0048
Revision: 0x11
Module Alias: "pci:v00008086d0000D158sv0000003Csd00000048bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: 6NW+.kAJBxPBcFIC
SysFS ID: /devices/pci0000:00/0000:00:1e.0
SysFS BusID: 0000:00:1e.0
Hardware Class: bridge
Model: "Intel 82801 Mobile PCI Bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2448 "82801 Mobile PCI Bridge"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0xa5
Module Alias: "pci:v00008086d00002448sv0000103Csd00001448bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 7f05.1: 0600 Host bridge
[Created at pci.386]
Unique ID: kPnc.nI7+++jqRf5
SysFS ID: /devices/pci0000:7f/0000:7f:05.1
SysFS BusID: 0000:7f:05.1
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 1 Address Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ca9 "Core Processor Integrated Memory Controller Channel 1 Address Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CA9sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 1f.3: 0c05 SMBus
[Created at pci.386]
Unique ID: nS1_.BksL+VM_Ng2
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel 5 Series/3400 Series Chipset SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b30 "5 Series/3400 Series Chipset SMBus Controller"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xd4106000-0xd41060ff (rw,non-prefetchable)
I/O Ports: 0x5000-0x501f (rw)
IRQ: 19 (no events)
Module Alias: "pci:v00008086d00003B30sv0000103Csd00001448bc0Csc05i00"
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
31: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.qBHaVk3Mn96
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Core Processor DMI"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd132 "Core Processor DMI"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x11
Module Alias: "pci:v00008086d0000D132sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 1c.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: qTvu.uuz7mwBmZd8
SysFS ID: /devices/pci0000:00/0000:00:1c.1
SysFS BusID: 0000:00:1c.1
Hardware Class: bridge
Model: "Intel 5 Series/3400 Series Chipset PCI Express Root Port 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b44 "5 Series/3400 Series Chipset PCI Express Root Port 2"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00008086d00003B44sv0000103Csd00001448bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 7f00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: UX2R.wF+pCcPqca8
SysFS ID: /devices/pci0000:7f/0000:7f:00.0
SysFS BusID: 0000:7f:00.0
Hardware Class: bridge
Model: "Intel Core Processor QuickPath Architecture Generic Non-Core Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c52 "Core Processor QuickPath Architecture Generic Non-Core Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002C52sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 08.1: 0880 System peripheral
[Created at pci.386]
Unique ID: JZZT.MpXRNxO+oa8
SysFS ID: /devices/pci0000:00/0000:00:08.1
SysFS BusID: 0000:00:08.1
Hardware Class: unknown
Model: "Intel Core Processor Semaphore and Scratchpad Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd156 "Core Processor Semaphore and Scratchpad Registers"
SubVendor: pci 0x003c
SubDevice: pci 0x0048
Revision: 0x11
Module Alias: "pci:v00008086d0000D156sv0000003Csd00000048bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 03.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 3hqH._WivQC81mW3
SysFS ID: /devices/pci0000:00/0000:00:03.0
SysFS BusID: 0000:00:03.0
Hardware Class: bridge
Model: "Intel Core Processor PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd138 "Core Processor PCI Express Root Port 1"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x11
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00008086d0000D138sv0000103Csd00001448bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 7f03.0: 0600 Host bridge
[Created at pci.386]
Unique ID: jsBr.0G4GrJjrU8F
SysFS ID: /devices/pci0000:7f/0000:7f:03.0
SysFS BusID: 0000:7f:03.0
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c98 "Core Processor Integrated Memory Controller"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002C98sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 10.1: 0880 System peripheral
[Created at pci.386]
Unique ID: wRyD.nkphz4pTAg6
SysFS ID: /devices/pci0000:00/0000:00:10.1
SysFS BusID: 0000:00:10.1
Hardware Class: unknown
Model: "Intel Core Processor QPI Routing and Protocol Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd151 "Core Processor QPI Routing and Protocol Registers"
SubVendor: pci 0x003c
SubDevice: pci 0x0048
Revision: 0x11
Module Alias: "pci:v00008086d0000D151sv0000003Csd00000048bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI 7f04.3: 0600 Host bridge
[Created at pci.386]
Unique ID: Oyip.hpSV7b0cHM3
SysFS ID: /devices/pci0000:7f/0000:7f:04.3
SysFS BusID: 0000:7f:04.3
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 0 Thermal Control Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ca3 "Core Processor Integrated Memory Controller Channel 0 Thermal Control Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CA3sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 1a.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: pwJ7.rHv5XobJqRC
SysFS ID: /devices/pci0000:00/0000:00:1a.0
SysFS BusID: 0000:00:1a.0
Hardware Class: usb controller
Model: "Intel 5 Series/3400 Series Chipset USB2 Enhanced Host Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b3c "5 Series/3400 Series Chipset USB2 Enhanced Host Controller"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "ehci-pci"
Memory Range: 0xd410a000-0xd410a3ff (rw,non-prefetchable)
IRQ: 16 (411119 events)
Module Alias: "pci:v00008086d00003B3Csv0000103Csd00001448bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 1d.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 1GTX.jzL6hIJScoA
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel 5 Series/3400 Series Chipset USB2 Enhanced Host Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3b34 "5 Series/3400 Series Chipset USB2 Enhanced Host Controller"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x05
Driver: "ehci-pci"
Memory Range: 0xd4109000-0xd41093ff (rw,non-prefetchable)
IRQ: 21 (195264 events)
Module Alias: "pci:v00008086d00003B34sv0000103Csd00001448bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 7f04.1: 0600 Host bridge
[Created at pci.386]
Unique ID: fIk8.f_Z+9SnBEb2
SysFS ID: /devices/pci0000:7f/0000:7f:04.1
SysFS BusID: 0000:7f:04.1
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 0 Address Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ca1 "Core Processor Integrated Memory Controller Channel 0 Address Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CA1sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI 100.1: 0403 Audio device
[Created at pci.386]
Unique ID: NXNs.VswPuih8gA9
Parent ID: 3hqH._WivQC81mW3
SysFS ID: /devices/pci0000:00/0000:00:03.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "ATI Redwood HDMI Audio [Radeon HD 5000 Series]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0xaa60 "Redwood HDMI Audio [Radeon HD 5000 Series]"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xd4020000-0xd4023fff (rw,non-prefetchable)
IRQ: 36 (235 events)
Module Alias: "pci:v00001002d0000AA60sv0000103Csd00001448bc04sc03i00"
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: #35 (PCI bridge)
43: PCI 7f05.2: 0600 Host bridge
[Created at pci.386]
Unique ID: ckGS.Ij3lUarXz16
SysFS ID: /devices/pci0000:7f/0000:7f:05.2
SysFS BusID: 0000:7f:05.2
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 1 Rank Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2caa "Core Processor Integrated Memory Controller Channel 1 Rank Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CAAsv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 7f02.0: 0600 Host bridge
[Created at pci.386]
Unique ID: el8N.uxWG+pQ_GVD
SysFS ID: /devices/pci0000:7f/0000:7f:02.0
SysFS BusID: 0000:7f:02.0
Hardware Class: bridge
Model: "Intel Core Processor QPI Link 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c90 "Core Processor QPI Link 0"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002C90sv0000103Csd00001448bc06sc00i00"
Driver Info #0:
Driver Status: i7core_edac is active
Driver Activation Cmd: "modprobe i7core_edac"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 7f00.1: 0600 Host bridge
[Created at pci.386]
Unique ID: MsXG.9kM1oGfPNl7
SysFS ID: /devices/pci0000:7f/0000:7f:00.1
SysFS BusID: 0000:7f:00.1
Hardware Class: bridge
Model: "Intel Core Processor QuickPath Architecture System Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c81 "Core Processor QuickPath Architecture System Address Decoder"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002C81sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 08.2: 0880 System peripheral
[Created at pci.386]
Unique ID: Au2J.tDUBsRswKY7
SysFS ID: /devices/pci0000:00/0000:00:08.2
SysFS BusID: 0000:00:08.2
Hardware Class: unknown
Model: "Intel Core Processor System Control and Status Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xd157 "Core Processor System Control and Status Registers"
SubVendor: pci 0x003c
SubDevice: pci 0x0048
Revision: 0x11
Module Alias: "pci:v00008086d0000D157sv0000003Csd00000048bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI 7f05.0: 0600 Host bridge
[Created at pci.386]
Unique ID: t4In.GuAFXRc7wG5
SysFS ID: /devices/pci0000:7f/0000:7f:05.0
SysFS BusID: 0000:7f:05.0
Hardware Class: bridge
Model: "Intel Core Processor Integrated Memory Controller Channel 1 Control Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ca8 "Core Processor Integrated Memory Controller Channel 1 Control Registers"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x1448
Revision: 0x04
Module Alias: "pci:v00008086d00002CA8sv0000103Csd00001448bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: SCSI 100.0: 10600 Disk
[Created at block.245]
Unique ID: KD9E.NyUtMDWSsIC
Parent ID: w7Y8.xuyJ+FczHu4
SysFS ID: /class/block/sr0
SysFS BusID: 1:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0
Hardware Class: disk
Model: "hp DVDRAM GT30L"
Vendor: "hp"
Device: "DVDRAM GT30L"
Revision: "mP04"
Driver: "ahci", "sr"
Driver Modules: "ahci"
Device File: /dev/sr0 (/dev/sg1)
Device Number: block 11:0 (char 21:1)
BIOS id: 0x80
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #12 (SATA controller)
49: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.Xiwv7zYUua6
Parent ID: w7Y8.xuyJ+FczHu4
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: "HP SSD S700 250G"
Vendor: "HP"
Device: "SSD S700 250G"
Revision: "4A1"
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Number: block 8:0-8:15
BIOS id: 0x81
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #12 (SATA controller)
50: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: Bgjr.VmfGS+ZArD3
Parent ID: FKGF.0j9+vWlqL56
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0
SysFS BusID: 2-1.5:1.0
Hardware Class: unknown
Model: "Quanta HP Webcam"
Hotplug: USB
Vendor: usb 0x0408 "Quanta Computer, Inc."
Device: usb 0x03b2 "HP Webcam"
Revision: "1.03"
Driver: "uvcvideo"
Driver Modules: "uvcvideo"
Device File: /dev/input/event8
Device Number: char 13:72
Speed: 480 Mbps
Module Alias: "usb:v0408p03B2d0103dcEFdsc02dp01ic0Eisc01ip00in00"
Driver Info #0:
Driver Status: uvcvideo is active
Driver Activation Cmd: "modprobe uvcvideo"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #51 (Hub)
51: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: FKGF.0j9+vWlqL56
Parent ID: pBe4.oLWCeziExdF
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0
SysFS BusID: 2-1:1.0
Hardware Class: hub
Model: "Intel Integrated Rate Matching Hub"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x0020 "Integrated Rate Matching Hub"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v8087p0020d0000dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #60 (Hub)
52: USB 00.1: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: 46Ud.tGttqvOhWG9
Parent ID: ADDn.0j9+vWlqL56
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: bluetooth
Model: "Ralink Motorola BC4 Bluetooth 3.0+HS Adapter"
Hotplug: USB
Vendor: usb 0x148f "Ralink Technology, Corp."
Device: usb 0x1000 "Motorola BC4 Bluetooth 3.0+HS Adapter"
Revision: "52.76"
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v148Fp1000d5276dcE0dsc01dp01icE0isc01ip01in01"
Driver Info #0:
Driver Status: btusb is active
Driver Activation Cmd: "modprobe btusb"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #59 (Hub)
53: USB 00.1: 10503 USB Mouse
[Created at usb.122]
Unique ID: uJTF.OJeMMAScp+F
Parent ID: FKGF.0j9+vWlqL56
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1
SysFS BusID: 2-1.1:1.1
Hardware Class: mouse
Model: "Microsoft Nano Transceiver v1.0 for Bluetooth"
Hotplug: USB
Vendor: usb 0x045e "Microsoft Corp."
Device: usb 0x0745 "Nano Transceiver v1.0 for Bluetooth"
Revision: "6.34"
Compatible to: int 0x0200 0x0001 "Generic USB Mouse"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse1)
Device Number: char 13:63 (char 13:33)
Speed: 12 Mbps
Module Alias: "usb:v045Ep0745d0634dc00dsc00dp00ic03isc01ip02in01"
Driver Info #0:
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #51 (Hub)
55: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: JPTW.UzyGmo6tUYC
Parent ID: FKGF.0j9+vWlqL56
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0
SysFS BusID: 2-1.3:1.0
Hardware Class: unknown
Model: "Validity Sensors VFS301 Fingerprint Reader"
Hotplug: USB
Vendor: usb 0x138a "Validity Sensors, Inc."
Device: usb 0x0005 "VFS301 Fingerprint Reader"
Revision: "c.90"
Serial ID: --
Speed: 12 Mbps
Module Alias: "usb:v138Ap0005d0C90dcFFdsc10dpFFicFFisc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #51 (Hub)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.FHd55n4xKo7
Parent ID: pwJ7.rHv5XobJqRC
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.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #39 (USB Controller)
57: USB 00.2: 0000 Unclassified device
[Created at usb.122]
Unique ID: LVjJ.Cme63c6DAX5
Parent ID: FKGF.0j9+vWlqL56
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.2
SysFS BusID: 2-1.1:1.2
Hardware Class: unknown
Model: "Microsoft Nano Transceiver v1.0 for Bluetooth"
Hotplug: USB
Vendor: usb 0x045e "Microsoft Corp."
Device: usb 0x0745 "Nano Transceiver v1.0 for Bluetooth"
Revision: "6.34"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event15
Device Number: char 13:79
Speed: 12 Mbps
Module Alias: "usb:v045Ep0745d0634dc00dsc00dp00ic03isc00ip00in02"
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: #51 (Hub)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: ADDn.0j9+vWlqL56
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 0x0020 "Integrated Rate Matching Hub"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v8087p0020d0000dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #56 (Hub)
60: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.oLWCeziExdF
Parent ID: 1GTX.jzL6hIJScoA
SysFS ID: /devices/pci0000:00/0000:00:1d.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.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #40 (USB Controller)
61: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: R8DB.TfZyh3JdFUB
Parent ID: FKGF.0j9+vWlqL56
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0
SysFS BusID: 2-1.1:1.0
Hardware Class: keyboard
Model: "Microsoft Nano Transceiver v1.0 for Bluetooth"
Hotplug: USB
Vendor: usb 0x045e "Microsoft Corp."
Device: usb 0x0745 "Nano Transceiver v1.0 for Bluetooth"
Revision: "6.34"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event12
Device Number: char 13:76
Speed: 12 Mbps
Module Alias: "usb:v045Ep0745d0634dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #51 (Hub)
62: None 00.0: 10103 CPU
[Created at cpu.462]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.30.5 "Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz"
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,ht,tm,pbe,syscall,nx,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,sse4_2,popcnt,lahf_lm,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,dtherm,ida,flush_l1d
Clock: 1243 MHz
BogoMips: 3192.67
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: None 01.0: 10103 CPU
[Created at cpu.462]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.30.5 "Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz"
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,ht,tm,pbe,syscall,nx,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,sse4_2,popcnt,lahf_lm,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,dtherm,ida,flush_l1d
Clock: 1088 MHz
BogoMips: 3192.67
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 02.0: 10103 CPU
[Created at cpu.462]
Unique ID: +rIN.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.30.5 "Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz"
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,ht,tm,pbe,syscall,nx,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,sse4_2,popcnt,lahf_lm,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,dtherm,ida,flush_l1d
Clock: 1158 MHz
BogoMips: 3192.67
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: None 03.0: 10103 CPU
[Created at cpu.462]
Unique ID: 4zLr.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.30.5 "Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz"
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,ht,tm,pbe,syscall,nx,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,sse4_2,popcnt,lahf_lm,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,dtherm,ida,flush_l1d
Clock: 2200 MHz
BogoMips: 3192.67
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: None 04.0: 10103 CPU
[Created at cpu.462]
Unique ID: 94PJ.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.30.5 "Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz"
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,ht,tm,pbe,syscall,nx,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,sse4_2,popcnt,lahf_lm,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,dtherm,ida,flush_l1d
Clock: 1145 MHz
BogoMips: 3192.67
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: None 05.0: 10103 CPU
[Created at cpu.462]
Unique ID: EBSn.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.30.5 "Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz"
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,ht,tm,pbe,syscall,nx,rdtscp,lm,constant_tsc,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse4_1,sse4_2,popcnt,lahf_lm,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,dtherm,ida,flush_l1d