-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathF9EE772F9E
910 lines (861 loc) · 36.4 KB
/
F9EE772F9E
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
17: PCI 17.0: 0104 RAID bus controller
[Created at pci.386]
Unique ID: abAj.HK+ZElxWdI2
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: storage
Model: "Intel 82801 Mobile SATA Controller [RAID mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x282a "82801 Mobile SATA Controller [RAID mode]"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xdd130000-0xdd131fff (rw,non-prefetchable)
Memory Range: 0xdd134000-0xdd1340ff (rw,non-prefetchable)
I/O Ports: 0xf090-0xf097 (rw)
I/O Ports: 0xf080-0xf083 (rw)
I/O Ports: 0xf060-0xf07f (rw)
Memory Range: 0xdd133000-0xdd1337ff (rw,non-prefetchable)
IRQ: 127 (106155 events)
Module Alias: "pci:v00008086d0000282Asv00001028sd00000708bc01sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 3b00.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: 6NOV.BO7RWSyhMb9
Parent ID: QSNP.XmT2MddGE49
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:3b:00.0
SysFS BusID: 0000:3b:00.0
Hardware Class: network
Model: "Qualcomm Atheros Killer E2400 Gigabit Ethernet Controller"
Vendor: pci 0x1969 "Qualcomm Atheros"
Device: pci 0xe0a1 "Killer E2400 Gigabit Ethernet Controller"
SubVendor: pci 0x0707
SubDevice: pci 0x2400
Revision: 0x10
Driver: "alx"
Driver Modules: "alx"
Device File: enp59s0
Memory Range: 0xdd500000-0xdd53ffff (rw,non-prefetchable)
I/O Ports: 0xd000-0xdfff (rw)
IRQ: 16 (3 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00001969d0000E0A1sv00000707sd00002400bc02sc00i00"
Driver Info #0:
Driver Status: alx is active
Driver Activation Cmd: "modprobe alx"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
19: PCI 1f.2: 0580 Memory controller
[Created at pci.386]
Unique ID: w7Y8.9JOoCbjmc0A
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family Power Management Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa121 "100 Series/C230 Series Chipset Family Power Management Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Memory Range: 0xdd12c000-0xdd12ffff (rw,non-prefetchable,disabled)
Module Alias: "pci:v00008086d0000A121sv00001028sd00000708bc05sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.T6i2RL9S7Y7
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa110 "100 Series/C230 Series Chipset Family PCI Express Root Port #1"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0xf1
Driver: "pcieport"
IRQ: 123 (no events)
Module Alias: "pci:v00008086d0000A110sv00001028sd00000708bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.ucRFhSc3jw7
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel HM170 Chipset LPC/eSPI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa14e "HM170 Chipset LPC/eSPI Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Module Alias: "pci:v00008086d0000A14Esv00001028sd00000708bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.yWN1PcflYkE
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x16)"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1901 "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x16)"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x07
Driver: "pcieport"
IRQ: 122 (no events)
Module Alias: "pci:v00008086d00001901sv00001028sd00000708bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 04.0: 1180 Signal processing controller
[Created at pci.386]
Unique ID: 8otl.5t0eOwudOOE
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: unknown
Model: "Intel Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1903 "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x07
Driver: "proc_thermal"
Driver Modules: "processor_thermal_device"
Memory Range: 0xdd120000-0xdd127fff (rw,non-prefetchable)
IRQ: 16 (3 events)
Module Alias: "pci:v00008086d00001903sv00001028sd00000708bc11sc80i00"
Driver Info #0:
Driver Status: processor_thermal_device is active
Driver Activation Cmd: "modprobe processor_thermal_device"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 1c.5: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: HnsE.2BQoqBlzlS9
SysFS ID: /devices/pci0000:00/0000:00:1c.5
SysFS BusID: 0000:00:1c.5
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa115 "100 Series/C230 Series Chipset Family PCI Express Root Port #6"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0xf1
Driver: "pcieport"
IRQ: 125 (no events)
Module Alias: "pci:v00008086d0000A115sv00001028sd00000708bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.4e5MFKp6gZA
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family MEI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa13a "100 Series/C230 Series Chipset Family MEI Controller #1"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Memory Range: 0xdd135000-0xdd135fff (rw,non-prefetchable,disabled)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d0000A13Asv00001028sd00000708bc07sc80i00"
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
26: PCI 100.0: 0302 3D controller
[Created at pci.386]
Unique ID: VCu0.wgYQmmDOdp8
Parent ID: vSkL.yWN1PcflYkE
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 GM204M [GeForce GTX 970M]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x13d8 "GM204M [GeForce GTX 970M]"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0xa1
Driver: "nvidia"
Driver Modules: "nvidia"
Memory Range: 0xdc000000-0xdcffffff (rw,non-prefetchable)
Memory Range: 0xb0000000-0xbfffffff (ro,non-prefetchable)
Memory Range: 0xc0000000-0xc1ffffff (ro,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xdd000000-0xdd07ffff (ro,non-prefetchable,disabled)
IRQ: 138 (202015 events)
Module Alias: "pci:v000010DEd000013D8sv00001028sd00000708bc03sc02i00"
Driver Info #0:
Driver Status: nouveau is not active
Driver Activation Cmd: "modprobe nouveau"
Driver Info #1:
Driver Status: nvidia_drm is active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #2:
Driver Status: nvidia is active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (PCI bridge)
27: PCI 1f.3: 0403 Audio device
[Created at pci.386]
Unique ID: nS1_.Q9JJWnBt8O9
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: sound
Model: "Intel 100 Series/C230 Series Chipset Family HD Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa170 "100 Series/C230 Series Chipset Family HD Audio Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xdd128000-0xdd12bfff (rw,non-prefetchable)
Memory Range: 0xdd100000-0xdd10ffff (rw,non-prefetchable)
IRQ: 132 (1759 events)
Module Alias: "pci:v00008086d0000A170sv00001028sd00000708bc04sc03i00"
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
28: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.dumQZ2Q6e+7
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1910 "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x07
Driver: "skl_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00001910sv00001028sd00000708bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 3d00.0: ff00 Unclassified device
[Created at pci.386]
Unique ID: yoMo.eUysXueMQy2
Parent ID: 96M4.ZbMYJmsgHr9
SysFS ID: /devices/pci0000:00/0000:00:1c.6/0000:3d:00.0
SysFS BusID: 0000:3d:00.0
Hardware Class: unknown
Model: "Realtek RTS5227 PCI Express Card Reader"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x5227 "RTS5227 PCI Express Card Reader"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x01
Driver: "rtsx_pci"
Driver Modules: "rtsx_pci"
Memory Range: 0xdd400000-0xdd400fff (rw,non-prefetchable)
IRQ: 129 (2374 events)
Module Alias: "pci:v000010ECd00005227sv00001028sd00000708bcFFsc00i00"
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: #30 (PCI bridge)
30: PCI 1c.6: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 96M4.ZbMYJmsgHr9
SysFS ID: /devices/pci0000:00/0000:00:1c.6
SysFS BusID: 0000:00:1c.6
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #7"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa116 "100 Series/C230 Series Chipset Family PCI Express Root Port #7"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0xf1
Driver: "pcieport"
IRQ: 126 (no events)
Module Alias: "pci:v00008086d0000A116sv00001028sd00000708bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 14.2: 1180 Signal processing controller
[Created at pci.386]
Unique ID: 5Dex.bl8m3+L1LU2
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family Thermal Subsystem"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa131 "100 Series/C230 Series Chipset Family Thermal Subsystem"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Driver: "intel_pch_thermal"
Driver Modules: "intel_pch_thermal"
Memory Range: 0xdd136000-0xdd136fff (rw,non-prefetchable)
IRQ: 18 (no events)
Module Alias: "pci:v00008086d0000A131sv00001028sd00000708bc11sc80i00"
Driver Info #0:
Driver Status: intel_pch_thermal is active
Driver Activation Cmd: "modprobe intel_pch_thermal"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 1c.4: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: QSNP.XmT2MddGE49
SysFS ID: /devices/pci0000:00/0000:00:1c.4
SysFS BusID: 0000:00:1c.4
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #5"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa114 "100 Series/C230 Series Chipset Family PCI Express Root Port #5"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0xf1
Driver: "pcieport"
IRQ: 124 (no events)
Module Alias: "pci:v00008086d0000A114sv00001028sd00000708bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 3c00.0: 0282 WLAN controller
[Created at pci.386]
Unique ID: pAqq.y7zny7ORwCC
Parent ID: HnsE.2BQoqBlzlS9
SysFS ID: /devices/pci0000:00/0000:00:1c.5/0000:3c:00.0
SysFS BusID: 0000:3c:00.0
Hardware Class: network
Model: "Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter"
Vendor: pci 0x168c "Qualcomm Atheros"
Device: pci 0x003e "QCA6174 802.11ac Wireless Network Adapter"
SubVendor: pci 0x1a56 "Bigfoot Networks, Inc."
SubDevice: pci 0x1535
Revision: 0x32
Driver: "ath10k_pci"
Driver Modules: "ath10k_pci"
Device File: wlp60s0
Features: WLAN
Memory Range: 0xdd200000-0xdd3fffff (rw,non-prefetchable)
IRQ: 131 (123 events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 144 149
WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 5.18 5.2 5.22 5.24 5.26 5.28 5.3 5.32 5.5 5.52 5.54 5.56 5.58 5.6 5.62 5.64 5.66 5.68 5.7 5.72 5.745
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v0000168Cd0000003Esv00001A56sd00001535bc02sc80i00"
Driver Info #0:
Driver Status: ath10k_pci is active
Driver Activation Cmd: "modprobe ath10k_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (PCI bridge)
34: PCI 02.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: _Znp.kA7rlWxL+92
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: graphics card
Device Name: "Onboard IGD"
Model: "Intel HD Graphics 530"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x191b "HD Graphics 530"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x06
Driver: "i915"
Driver Modules: "i915"
Memory Range: 0xdb000000-0xdbffffff (rw,non-prefetchable)
Memory Range: 0x70000000-0x7fffffff (ro,non-prefetchable)
I/O Ports: 0xf000-0xf03f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 128 (651050 events)
Module Alias: "pci:v00008086d0000191Bsv00001028sd00000708bc03sc00i00"
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.n6nCqg4ysO8
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Model: "Intel 100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa12f "100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xdd110000-0xdd11ffff (rw,non-prefetchable)
IRQ: 130 (473 events)
Module Alias: "pci:v00008086d0000A12Fsv00001028sd00000708bc0Csc03i30"
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: PCI 1f.4: 0c05 SMBus
[Created at pci.386]
Unique ID: fnWp.tYxM9mZEXWE
SysFS ID: /devices/pci0000:00/0000:00:1f.4
SysFS BusID: 0000:00:1f.4
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family SMBus"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa123 "100 Series/C230 Series Chipset Family SMBus"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x0708
Revision: 0x31
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xdd132000-0xdd1320ff (rw,non-prefetchable)
I/O Ports: 0xf040-0xf05f (rw)
IRQ: 16 (3 events)
Module Alias: "pci:v00008086d0000A123sv00001028sd00000708bc0Csc05i00"
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
37: MMC 00.0: 11700 MMC Controller
[Created at pci.1903]
Unique ID: fXWI._NN+DZ1HDn4
SysFS ID: /devices/pci0000:00/0000:00:1c.6/0000:3d:00.0/rtsx_pci_sdmmc.0/mmc_host/mmc0/mmc0:aaaa
SysFS BusID: mmc0:aaaa
Model: "SD Controller 0"
Vendor: int 0x6015
Device: int 0x0001 "SD Controller 0"
Driver: "mmcblk"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: None 00.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: rdCR.o9O28nKe0l4
Parent ID: _Znp.kA7rlWxL+92
Hardware Class: monitor
Model: "40PW3 173HL LCD Monitor"
Vendor: SDC "40PW3 173HL"
Device: eisa 0x4c48
Resolution: 1920x1080@60Hz
Size: 382x214 mm
Year of Manufacture: 2015
Week of Manufacture: 0
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 1968 2000 2140 (+48 +80 +220) -hsync
Vertical: 1080 1082 1087 1144 (+2 +7 +64) +vsync
Frequencies: 117.51 MHz, 54.91 kHz, 48.00 Hz
Year of Manufacture: 2015
Week of Manufacture: 0
Detailed Timings #1:
Resolution: 1920x1080
Horizontal: 1920 1968 2000 2140 (+48 +80 +220) -hsync
Vertical: 1080 1082 1087 1144 (+2 +7 +64) +vsync
Frequencies: 146.88 MHz, 68.64 kHz, 60.00 Hz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (VGA compatible controller)
39: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: gDDn.Fxp0d3BezAE
SysFS ID: /class/block/zram5
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram5
Device Number: block 254:5
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: lsie.Fxp0d3BezAE
SysFS ID: /class/block/zram3
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram3
Device Number: block 254:3
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: HAKk.Fxp0d3BezAE
Parent ID: fXWI._NN+DZ1HDn4
SysFS ID: /class/block/mmcblk0
SysFS BusID: mmc0:aaaa
SysFS Device Link: /devices/pci0000:00/0000:00:1c.6/0000:3d:00.0/rtsx_pci_sdmmc.0/mmc_host/mmc0/mmc0:aaaa
Hardware Class: disk
Model: "Disk"
Driver: "rtsx_pci_sdmmc", "mmcblk"
Driver Modules: "rtsx_pci_sdmmc"
Device File: /dev/mmcblk0
Device Files: /dev/mmcblk0, /dev/disk/by-id/mmc-SL64G_0x036b8f60, /dev/disk/by-path/pci-0000:3d:00.0-platform-rtsx_pci_sdmmc.0
Device Number: block 179:0-179:7
Geometry (Logical): CHS 1948992/4/16
Size: 124735488 sectors a 512 bytes
Capacity: 59 GB (63864569856 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #37 (MMC Controller)
42: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: rVCW.Fxp0d3BezAE
SysFS ID: /class/block/zram1
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram1
Device Number: block 254:1
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 7PTr.Fxp0d3BezAE
SysFS ID: /class/block/zram6
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram6
Device Number: block 254:6
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: C2zi.Fxp0d3BezAE
SysFS ID: /class/block/zram4
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram4
Device Number: block 254:4
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: IhSa.Fxp0d3BezAE
SysFS ID: /class/block/zram2
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram2
Device Number: block 254:2
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: IDE 100.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.WchCo+xOF56
Parent ID: abAj.HK+ZElxWdI2
SysFS ID: /class/block/sda
SysFS BusID: 1:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:17.0/ata2/host1/target1:0:0/1:0:0:0
Hardware Class: disk
Model: "ST1000LM044 HN-M"
Vendor: "ST1000LM044"
Device: "HN-M"
Revision: "0001"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-path/pci-0000:00:17.0-ata-2, /dev/disk/by-id/ata-ST1000LM044_HN-M101SAD_..., /dev/disk/by-path/pci-0000:00:17.0-ata-2.0, /dev/disk/by-id/wwn-0x...
Device Number: block 8:0-8:15
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: #17 (RAID bus controller)
47: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: OKyR.Fxp0d3BezAE
SysFS ID: /class/block/zram0
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram0
Device Number: block 254:0
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: preK.Fxp0d3BezAE
SysFS ID: /class/block/zram7
Hardware Class: disk
Model: "Disk"
Device File: /dev/zram7
Device Number: block 254:7
Size: 507913 sectors a 4096 bytes
Capacity: 1 GB (2080411648 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: USB 00.1: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: NwzV.+cQZiM0o24C
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1
SysFS BusID: 1-5:1.1
Hardware Class: bluetooth
Model: "Qualcomm Atheros Bluetooth Device"
Hotplug: USB
Vendor: usb 0x0cf3 "Qualcomm Atheros Communications"
Device: usb 0xe301
Revision: "0.01"
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v0CF3pE301d0001dcE0dsc01dp01icE0isc01ip01in01"
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: #51 (Hub)
50: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: X7GA.tCH1FaBg9PD
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0
SysFS BusID: 1-7:1.0
Hardware Class: unknown
Model: "Sunplus Innovation Integrated_Webcam_HD"
Hotplug: USB
Vendor: usb 0x1bcf "Sunplus Innovation Technology Inc."
Device: usb 0x2b8c "Integrated_Webcam_HD"
Revision: "47.14"
Driver: "uvcvideo"
Driver Modules: "uvcvideo"
Device File: /dev/input/event8
Device Files: /dev/input/event8, /dev/input/by-id/usb-SunplusIT_Inc_Integrated_Webcam_..., /dev/input/by-path/pci-0000:00:14.0-usb-0:7:1.0-event
Device Number: char 13:72
Speed: 480 Mbps
Module Alias: "usb:v1BCFp2B8Cd4714dcEFdsc02dp01ic0Eisc01ip00in00"
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: k4bc.2DFUsyrieMD
Parent ID: MZfG.n6nCqg4ysO8
SysFS ID: /devices/pci0000:00/0000:00:14.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.11"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0511dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
52: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: Uc5H.659wrc3KER5
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0
SysFS BusID: 1-4:1.0
Hardware Class: unknown
Model: "Alienware AW1517"
Hotplug: USB
Vendor: usb 0x187c "Alienware Corporation"
Device: usb 0x0528 "AW1517"
Serial ID: --
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v187Cp0528d0000dc00dsc00dp00ic03isc00ip00in00"
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)
54: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.xYNhIwdOaa6
Parent ID: MZfG.n6nCqg4ysO8
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 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "5.11"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0511dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
56: PS/2 00.0: 10800 Keyboard
[Created at input.226]
Unique ID: 3FDI.+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/event5
Device Files: /dev/input/event5, /dev/input/by-path/platform-i8042-serio-0-event-kbd
Device Number: char 13:69
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PS/2 00.0: 10500 PS/2 Mouse
[Created at input.249]
Unique ID: AH6Q.ZHI3OT7LsxA
Hardware Class: mouse
Model: "SynPS/2 Synaptics TouchPad"
Vendor: 0x0002
Device: 0x0007 "SynPS/2 Synaptics TouchPad"
Compatible to: int 0x0210 0x0002
Device File: /dev/input/mice (/dev/input/mouse0)
Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event7, /dev/input/by-path/platform-i8042-serio-1-event-mouse, /dev/input/by-path/platform-i8042-serio-1-mouse
Device Number: char 13:63 (char 13:32)
Driver Info #0:
Buttons: 2
Wheels: 0
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: None 00.0: 10103 CPU
[Created at cpu.462]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 2600 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: None 01.0: 10103 CPU
[Created at cpu.462]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 2600 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: None 02.0: 10103 CPU
[Created at cpu.462]
Unique ID: +rIN.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 2600 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: None 03.0: 10103 CPU
[Created at cpu.462]
Unique ID: 4zLr.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 2600 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: None 04.0: 10103 CPU
[Created at cpu.462]
Unique ID: 94PJ.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 2600 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: None 05.0: 10103 CPU
[Created at cpu.462]
Unique ID: EBSn.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 2600 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 06.0: 10103 CPU
[Created at cpu.462]
Unique ID: JIVF.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 2600 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: None 07.0: 10103 CPU
[Created at cpu.462]
Unique ID: OPYj.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "GenuineIntel"
Model: 6.94.3 "Intel(R) Core(TM) i7-6700HQ CPU @ 2.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,ss,ht,tm,pbe,syscall,nx,pdpe1gb,rdtscp,lm,constant_tsc,art,arch_perfmon,pebs,bts,rep_good,nopl,xtopology,nonstop_tsc,cpuid,aperfmperf,pni,pclmulqdq,dtes64,monitor,ds_cpl,vmx,est,tm2,ssse3,sdbg,fma,cx16,xtpr,pdcm,pcid,sse4_1,sse4_2,x2apic,movbe,popcnt,tsc_deadline_timer,aes,xsave,avx,f16c,rdrand,lahf_lm,abm,3dnowprefetch,cpuid_fault,epb,invpcid_single,pti,ssbd,ibrs,ibpb,stibp,tpr_shadow,vnmi,flexpriority,ept,vpid,ept_ad,fsgsbase,tsc_adjust,bmi1,hle,avx2,smep,bmi2,erms,invpcid,rtm,mpx,rdseed,adx,smap,clflushopt,intel_pt,xsaveopt,xsavec,xgetbv1,xsaves,dtherm,ida,arat,pln,pts,hwp,hwp_notify,hwp_act_window,hwp_epp,md_clear,flush_l1d
Clock: 3375 MHz
BogoMips: 5199.98
Cache: 6144 kb
Units/Processor: 16
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: cFer.ndpeucax6V1
Parent ID: pAqq.y7zny7ORwCC
SysFS ID: /class/net/wlp60s0
SysFS Device Link: /devices/pci0000:00/0000:00:1c.5/0000:3c:00.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "ath10k_pci"
Driver Modules: "ath10k_pci"
Device File: wlp60s0
HW Address: ...
Permanent HW Address: ...
Link detected: no
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #33 (WLAN controller)
67: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: uRCW.ndpeucax6V1
Parent ID: 6NOV.BO7RWSyhMb9
SysFS ID: /class/net/enp59s0
SysFS Device Link: /devices/pci0000:00/0000:00:1c.4/0000:3b:00.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "alx"
Driver Modules: "alx"
Device File: enp59s0
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (Ethernet controller)
68: None 00.0: 10700 Loopback
[Created at net.126]
Unique ID: ZsBS.GQNx7L4uPNA
SysFS ID: /class/net/lo
Hardware Class: network interface
Model: "Loopback network interface"
Device File: lo
Link detected: yes
Config Status: cfg=new, avail=yes, need=no, active=unknown