-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCA3AC06D30
1408 lines (1345 loc) · 45.8 KB
/
CA3AC06D30
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
01: None 00.0: 10105 BIOS
[Created at bios.186]
Unique ID: rdCR.lZF+r4EgHp4
Hardware Class: bios
VESA BIOS Version: 3.0
Current VESA Mode: 0x0003
BIOS Keyboard LED Status:
Scroll Lock: off
Num Lock: off
Caps Lock: off
Base Memory: 638 kB
PnP BIOS: @@@0000
BIOS: extended read supported
MP spec rev 1.4 info:
OEM id: "INTEL"
Product id: "Napa ERB"
2 CPUs (0 disabled)
BIOS32 Service Directory Entry: 0xfd440
SMBIOS Version: 2.4
BIOS Info: #0
Vendor: "Phoenix Technologies LTD"
Version: "R01-A0S"
Date: "04/27/2007"
Start Address: 0xe69f0
ROM Size: 1024 kB
Features: 0x0507000000000000df90
ISA supported
PCI supported
PCMCIA supported
PnP supported
APM supported
BIOS flashable
BIOS shadowing allowed
ESCD supported
CD boot supported
ACPI supported
USB Legacy supported
AGP supported
BIOS Boot Spec supported
System Info: #1
Manufacturer: "FUJITSU SIEMENS"
Product: "AMILO Pro Series V3525"
Version: "20"
Serial: --
UUID: --
Wake-up: 0x06 (Power Switch)
Board Info: #2
Manufacturer: "FUJITSU SIEMENS"
Product: "AMILO Pro Series V3525"
Version: "Not Applicable"
Serial: --
Chassis Info: #3
Manufacturer: "FUJITSU SIEMENS"
Version: "A2040"
Serial: --
Asset Tag: --
Type: 0x0a (Notebook)
Bootup State: 0x03 (Safe)
Power Supply State: 0x03 (Safe)
Thermal State: 0x03 (Safe)
Security Status: 0x03 (None)
OEM Info: 0x00001234
Processor Info: #4
Socket: "U2E1"
Socket Type: 0x04 (ZIF Socket)
Socket Status: Populated
Type: 0x03 (CPU)
Family: 0x01 (Other)
Manufacturer: "Intel"
Version: "Intel(R) Core(TM) Duo CPU T2"
Processor ID: 0xbfe9fbff000006ec
Status: 0x01 (Enabled)
Voltage: 3.3 V
Max. Speed: 2048 MHz
Current Speed: 1730 MHz
L1 Cache: #5
L2 Cache: #6
Cache Info: #5
Designation: "L1 Cache"
Level: L1
State: Enabled
Mode: 0x01 (Write Back)
Location: 0x00 (Internal, Socketed)
ECC: 0x02 (Unknown)
Type: 0x02 (Unknown)
Associativity: 0x02 (Unknown)
Max. Size: 16 kB
Current Size: 16 kB
Supported SRAM Types: 0x0058 (Burst, Pipeline Burst, Asynchronous)
Current SRAM Type: 0x0040 (Asynchronous)
Cache Info: #6
Designation: "L2 Cache"
Level: L2
State: Enabled
Mode: 0x01 (Write Back)
Location: 0x01 (External, Socketed)
ECC: 0x02 (Unknown)
Type: 0x02 (Unknown)
Associativity: 0x02 (Unknown)
Max. Size: 512 kB
Current Size: 2048 kB
Supported SRAM Types: 0x0058 (Burst, Pipeline Burst, Asynchronous)
Current SRAM Type: 0x0008 (Burst)
Port Connector: #7
Type: 0x09 (Serial Port 16550A Compatible)
Internal Designator: "J19"
Internal Connector: 0x18 (9 Pin Dual Inline [pin 10 cut])
External Designator: "COM 1"
External Connector: 0x08 (DB-9 pin male)
Port Connector: #8
Type: 0x0d (Keyboard Port)
Internal Designator: "J1A1"
External Designator: "Keyboard"
External Connector: 0x14 (Circular DIN-8 male)
Port Connector: #9
Type: 0x0e (Mouse Port)
Internal Designator: "J1A1"
External Designator: "PS/2 Mouse"
External Connector: 0x14 (Circular DIN-8 male)
System Slot: #10
Designation: "PCI Slot J8B1"
Type: 0x06 (PCI)
Bus Width: 0x05 (32 bit)
Status: 0x02 (Unknown)
Length: 0x04 (Long)
Slot ID: 0
Characteristics: 0x0006 (5.0 V, 3.3 V)
System Slot: #11
Designation: "PCI Slot J9B1"
Type: 0x06 (PCI)
Bus Width: 0x05 (32 bit)
Status: 0x02 (Unknown)
Length: 0x04 (Long)
Slot ID: 0
Characteristics: 0x0006 (5.0 V, 3.3 V)
System Slot: #12
Designation: "PEG Slot J6C1"
Type: 0xa5 (Other)
Bus Width: 0x05 (32 bit)
Status: 0x03 (Available)
Length: 0x04 (Long)
Slot ID: 6
Characteristics: 0x0006 (5.0 V, 3.3 V)
System Slot: #13
Designation: "PCI Express Slot J7C1"
Type: 0xa5 (Other)
Bus Width: 0x05 (32 bit)
Status: 0x02 (Unknown)
Length: 0x04 (Long)
Slot ID: 0
Characteristics: 0x0006 (5.0 V, 3.3 V)
System Slot: #14
Designation: "PCI Express Slot J8C1"
Type: 0xa5 (Other)
Bus Width: 0x05 (32 bit)
Status: 0x02 (Unknown)
Length: 0x04 (Long)
Slot ID: 0
Characteristics: 0x0006 (5.0 V, 3.3 V)
On Board Devices: #15
Sound: "HD-Audio" (disabled)
OEM Strings: #16
FF49
Chipset CRB Platform
System Config Options (Jumpers & Switches) #17:
Jumper settings can be described here.
Physical Memory Array: #18
Use: 0x03 (System memory)
Location: 0x03 (Motherboard)
Slots: 2
Max. Size: 3 GB
ECC: 0x03 (None)
Memory Device: #19
Location: "M1"
Bank: "Bank 0"
Memory Array: #18
Error Info: No Error
Form Factor: 0x0d (SODIMM)
Type: 0x13 (Other)
Type Detail: 0x0080 (Synchronous)
Data Width: 32 bits
Size: 2 GB
Memory Device: #20
Location: "M2"
Bank: "Bank 1"
Memory Array: #18
Error Info: No Error
Form Factor: 0x0d (SODIMM)
Type: 0x13 (Other)
Type Detail: 0x0080 (Synchronous)
Data Width: 0 bits
Size: No Memory Installed
Memory Array Mapping: #21
Memory Array: #18
Partition Width: 2
Start Address: 0x00000000
End Address: 0x80000000
Memory Device Mapping: #22
Memory Device: #19
Array Mapping: #21
Start Address: 0x00000000
End Address: 0x80000000
Memory Device Mapping: #23
Memory Device: #20
Array Mapping: #21
Start Address: 0x7ffffc00
End Address: 0x80000000
Type 23 Record: #24
Data 00: 17 0d 18 00 3f ff ff ff ff ff ff ff ff
Hardware Security: #25
Power-on Password: 0x00 (Disabled)
Keyboard Password: 0x03 (Unknown)
Admin Password: 0x00 (Disabled)
Front Panel Reset: 0x03 (Unknown)
System Power Controls: #26
Next Power-on: 23:59:59 31/12
Type 26 Record: #27
Data 00: 1a 14 1b 00 01 63 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00
String 1: "Voltage Probe"
Type 27 Record: #28
Data 00: 1b 0c 1c 00 1d 00 63 00 00 00 00 00
Type 28 Record: #29
Data 00: 1c 14 1d 00 01 63 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00
String 1: "Temperature Probe"
Type 29 Record: #30
Data 00: 1d 14 1e 00 01 63 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00
String 1: "Electrical Current Probe"
Type 30 Record: #31
Data 00: 1e 06 1f 00 01 01
String 1: "Intel"
Type 32 Record: #32
Data 00: 20 14 20 00 00 00 00 00 00 00 0c 01 02 03 04 05
Data 10: 06 07 08 09
Type 129 Record: #33
Data 00: 81 10 21 00 01 01 02 01 00 00 00 01 06 01 00 01
String 1: "Intel_ASF_001"
String 2: "Intel_ASF_001"
Type 136 Record: #34
Data 00: 88 06 22 00 ff ff
Type 150 Record: #35
Data 00: 96 0e 23 00 01 01 00 00 00 00 00 00 00 00
String 1: "ABSOLUTE(PHOENIX) CLM"
Type 200 Record: #36
Data 00: c8 07 24 00 01 02 03
String 1: "17C0"
String 3: "0001"
Config Status: cfg=new, avail=yes, need=no, active=unknown
02: None 00.0: 11001 VESA Framebuffer
[Created at bios.459]
Unique ID: rdCR.il6towt04X5
Hardware Class: framebuffer
Model: "Intel(r) 82945GM Chipset Family Graphics Controller"
Vendor: "Intel Corporation"
Device: "Intel(r) 82945GM Chipset Family Graphics Controller"
SubVendor: "Intel(r) 82945GM Chipset Family Graphics Chip Accelerated VGA BIOS"
SubDevice:
Revision: "Hardware Version 0.0"
Memory Size: 7 MB + 704 kB
Memory Range: 0xc0000000-0xc07affff (rw)
Mode 0x0360: 1280x800 (+1280), 8 bits
Mode 0x0361: 1280x800 (+2560), 16 bits
Mode 0x0362: 1280x800 (+5120), 24 bits
Mode 0x033c: 1920x1440 (+1920), 8 bits
Mode 0x034d: 1920x1440 (+3840), 16 bits
Mode 0x033a: 1600x1200 (+1600), 8 bits
Mode 0x034b: 1600x1200 (+3200), 16 bits
Mode 0x035a: 1600x1200 (+6400), 24 bits
Mode 0x0307: 1280x1024 (+1280), 8 bits
Mode 0x031a: 1280x1024 (+2560), 16 bits
Mode 0x031b: 1280x1024 (+5120), 24 bits
Mode 0x0305: 1024x768 (+1024), 8 bits
Mode 0x0317: 1024x768 (+2048), 16 bits
Mode 0x0318: 1024x768 (+4096), 24 bits
Mode 0x0312: 640x480 (+2560), 24 bits
Mode 0x0314: 800x600 (+1600), 16 bits
Mode 0x0315: 800x600 (+3200), 24 bits
Mode 0x0301: 640x480 (+640), 8 bits
Mode 0x0303: 800x600 (+832), 8 bits
Mode 0x0311: 640x480 (+1280), 16 bits
Config Status: cfg=new, avail=yes, need=no, active=unknown
11: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.319]
Unique ID: 6NW+.DxjOhH+EFx9
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 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0xe2
Module Alias: "pci:v00008086d00002448sv00001734sd000010D7bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
12: PCI 1f.3: 0c05 SMBus
[Created at pci.319]
Unique ID: nS1_.WiBNmwpAkh3
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel 82801G (ICH7 Family) SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27da "82801G (ICH7 Family) SMBus Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
I/O Ports: 0x18e0-0x18ff (rw)
IRQ: 19 (no events)
Module Alias: "pci:v00008086d000027DAsv00001734sd000010D7bc0Csc05i00"
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
13: PCI 00.0: 0600 Host bridge
[Created at pci.319]
Unique ID: qLht.SXHzYtp37b7
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27a0 "Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x03
Module Alias: "pci:v00008086d000027A0sv00001734sd000010D7bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
14: PCI 1c.1: 0604 PCI bridge (Normal decode)
[Created at pci.319]
Unique ID: qTvu.nGtA4Wfm9m1
SysFS ID: /devices/pci0000:00/0000:00:1c.1
SysFS BusID: 0000:00:1c.1
Hardware Class: bridge
Model: "Intel 82801G (ICH7 Family) PCI Express Port 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27d2 "82801G (ICH7 Family) PCI Express Port 2"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d000027D2sv00001734sd000010D7bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 1f.1: 0101 IDE interface
[Created at pci.319]
Unique ID: 3p2J.0W2dBfdnEWD
SysFS ID: /devices/pci0000:00/0000:00:1f.1
SysFS BusID: 0000:00:1f.1
Hardware Class: storage
Model: "Intel 82801G (ICH7 Family) IDE Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27df "82801G (ICH7 Family) IDE Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "ata_piix"
Driver Modules: "ata_piix"
I/O Ports: 0x1f0-0x1f7 (rw)
I/O Port: 0x3f6 (rw)
I/O Ports: 0x170-0x177 (rw)
I/O Port: 0x376 (rw)
I/O Ports: 0x1810-0x181f (rw)
IRQ: 19 (no events)
Module Alias: "pci:v00008086d000027DFsv00001734sd000010D7bc01sc01i8A"
Driver Info #0:
Driver Status: ata_piix is active
Driver Activation Cmd: "modprobe ata_piix"
Driver Info #1:
Driver Status: piix is active
Driver Activation Cmd: "modprobe piix"
Driver Info #2:
Driver Status: ata_generic is active
Driver Activation Cmd: "modprobe ata_generic"
Driver Info #3:
Driver Status: pata_acpi is active
Driver Activation Cmd: "modprobe pata_acpi"
Driver Info #4:
Driver Status: ide_pci_generic is active
Driver Activation Cmd: "modprobe ide_pci_generic"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 1d.2: 0c03 USB Controller (UHCI)
[Created at pci.319]
Unique ID: mvRC.EfCzYJaZuk0
SysFS ID: /devices/pci0000:00/0000:00:1d.2
SysFS BusID: 0000:00:1d.2
Hardware Class: usb controller
Model: "Intel 82801G (ICH7 Family) USB UHCI Controller #3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27ca "82801G (ICH7 Family) USB UHCI Controller #3"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0x1860-0x187f (rw)
IRQ: 18 (no events)
Module Alias: "pci:v00008086d000027CAsv00001734sd000010D7bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI a06.4: 0501 FLASH memory
[Created at pci.319]
Unique ID: XsxT.qMjC7Nfk9V0
Parent ID: 6NW+.DxjOhH+EFx9
SysFS ID: /devices/pci0000:00/0000:00:1e.0/0000:0a:06.4
SysFS BusID: 0000:0a:06.4
Hardware Class: unknown
Model: "ENE SD/MMC Card Reader Controller"
Vendor: pci 0x1524 "ENE Technology Inc"
Device: pci 0x0551 "SD/MMC Card Reader Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x01
Driver: "sdhci-pci"
Driver Modules: "sdhci_pci"
Memory Range: 0xd4100000-0xd41000ff (rw,non-prefetchable)
IRQ: 20 (no events)
Module Alias: "pci:v00001524d00000551sv00001734sd000010D7bc05sc01i00"
Driver Info #0:
Driver Status: sdhci_pci is active
Driver Activation Cmd: "modprobe sdhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #11 (PCI bridge)
18: PCI 1d.0: 0c03 USB Controller (UHCI)
[Created at pci.319]
Unique ID: 1GTX.CqJTbAL9rzF
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel 82801G (ICH7 Family) USB UHCI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27c8 "82801G (ICH7 Family) USB UHCI Controller #1"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0x1820-0x183f (rw)
IRQ: 23 (55396 events)
Module Alias: "pci:v00008086d000027C8sv00001734sd000010D7bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI a06.2: 0805 SD Host controller
[Created at pci.319]
Unique ID: pCzo.RRZcUCfbW55
Parent ID: 6NW+.DxjOhH+EFx9
SysFS ID: /devices/pci0000:00/0000:00:1e.0/0000:0a:06.2
SysFS BusID: 0000:0a:06.2
Hardware Class: unknown
Model: "ENE PCI Secure Digital Card Reader Controller"
Vendor: pci 0x1524 "ENE Technology Inc"
Device: pci 0x0550 "ENE PCI Secure Digital Card Reader Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x01
Driver: "sdhci-pci"
Driver Modules: "sdhci_pci"
Memory Range: 0xd4101400-0xd41014ff (rw,non-prefetchable)
IRQ: 20 (no events)
Module Alias: "pci:v00001524d00000550sv00001734sd000010D7bc08sc05i01"
Driver Info #0:
Driver Status: sdhci_pci is active
Driver Activation Cmd: "modprobe sdhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #11 (PCI bridge)
20: PCI a06.0: 0607 CardBus bridge
[Created at pci.319]
Unique ID: 4Z_7.o55Kr4W3jk0
Parent ID: 6NW+.DxjOhH+EFx9
SysFS ID: /devices/pci0000:00/0000:00:1e.0/0000:0a:06.0
SysFS BusID: 0000:0a:06.0
Hardware Class: bridge
Model: "ENE CB-712/4 Cardbus Controller"
Vendor: pci 0x1524 "ENE Technology Inc"
Device: pci 0x1412 "CB-712/4 Cardbus Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x10
Driver: "yenta_cardbus"
Driver Modules: "yenta_socket"
Memory Range: 0x84000000-0x84000fff (rw,non-prefetchable)
IRQ: 22 (1 event)
Module Alias: "pci:v00001524d00001412sv00001734sd000010D7bc06sc07i00"
Driver Info #0:
Driver Status: yenta_socket is active
Driver Activation Cmd: "modprobe yenta_socket"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #11 (PCI bridge)
21: PCI 02.0: 0300 VGA compatible controller (VGA)
[Created at pci.319]
Unique ID: _Znp.RvVjzBNkrm3
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: graphics card
Model: "Intel 945 GM"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27a2 "945 GM"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x03
Driver: "i915"
Driver Modules: "i915"
Memory Range: 0xd4200000-0xd427ffff (rw,non-prefetchable)
I/O Ports: 0x1800-0x1807 (rw)
Memory Range: 0xc0000000-0xcfffffff (ro,non-prefetchable)
Memory Range: 0xd4300000-0xd433ffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 16 (583 events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v00008086d000027A2sv00001734sd000010D7bc03sc00i00"
Driver Info #0:
XFree86 v4 Server Module: intel
Driver Info #1:
XFree86 v4 Server Module: intel
3D Support: yes
Extensions: dri
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 400.0: 0282 WLAN controller
[Created at pci.319]
Unique ID: YVtp.xDGkhUDfcCA
Parent ID: qTvu.nGtA4Wfm9m1
SysFS ID: /devices/pci0000:00/0000:00:1c.1/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: network
Model: "Intel PRO/Wireless 3945ABG Network Connection"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x4222 "PRO/Wireless 3945ABG [Golan] Network Connection"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x1001 "PRO/Wireless 3945ABG Network Connection"
Revision: 0x02
Driver: "iwl3945"
Driver Modules: "iwl3945"
Device File: wlp4s0
Features: WLAN
Memory Range: 0xd4000000-0xd4000fff (rw,non-prefetchable)
IRQ: 29 (38300 events)
HW Address: ...
Link detected: no
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13 36 38 40 42 44 46 48 52 56 60 64 132 136 140
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 5.18 5.19 5.2 5.21 5.22 5.23 5.24 5.26 5.28 5.3 5.32 5.66 5.68 5.7
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v00008086d00004222sv00008086sd00001001bc02sc80i00"
Driver Info #0:
Driver Status: iwl3945 is active
Driver Activation Cmd: "modprobe iwl3945"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #14 (PCI bridge)
23: PCI 1d.7: 0c03 USB Controller (EHCI)
[Created at pci.319]
Unique ID: 5YuN.mUheoWIkTL6
SysFS ID: /devices/pci0000:00/0000:00:1d.7
SysFS BusID: 0000:00:1d.7
Hardware Class: usb controller
Model: "Intel 82801G (ICH7 Family) USB2 EHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27cc "82801G (ICH7 Family) USB2 EHCI Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xd4544000-0xd45443ff (rw,non-prefetchable)
IRQ: 23 (55396 events)
Module Alias: "pci:v00008086d000027CCsv00001734sd000010D7bc0Csc03i20"
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
24: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.319]
Unique ID: w7Y8.244s1m34Gz1
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel 82801GBM/GHM (ICH7 Family) SATA AHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27c5 "82801GBM/GHM (ICH7 Family) SATA AHCI Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0x18d0-0x18d7 (rw)
I/O Ports: 0x18c4-0x18c7 (rw)
I/O Ports: 0x18c8-0x18cf (rw)
I/O Ports: 0x18c0-0x18c3 (rw)
I/O Ports: 0x18b0-0x18bf (rw)
Memory Range: 0xd4544400-0xd45447ff (rw,non-prefetchable)
IRQ: 26 (685 events)
Module Alias: "pci:v00008086d000027C5sv00001734sd000010D7bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.319]
Unique ID: z8Q3.lR_g6NQM6+0
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 82801G (ICH7 Family) PCI Express Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27d0 "82801G (ICH7 Family) PCI Express Port 1"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "pcieport"
IRQ: 24 (no events)
Module Alias: "pci:v00008086d000027D0sv00001734sd000010D7bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 1d.3: 0c03 USB Controller (UHCI)
[Created at pci.319]
Unique ID: eEx1.l39j1uhGQ71
SysFS ID: /devices/pci0000:00/0000:00:1d.3
SysFS BusID: 0000:00:1d.3
Hardware Class: usb controller
Model: "Intel 82801G (ICH7 Family) USB UHCI Controller #4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27cb "82801G (ICH7 Family) USB UHCI Controller #4"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0x1880-0x189f (rw)
IRQ: 19 (no events)
Module Alias: "pci:v00008086d000027CBsv00001734sd000010D7bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 1f.0: 0601 ISA bridge
[Created at pci.319]
Unique ID: BUZT.LHyJnQB_tp2
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel 82801GBM (ICH7-M) LPC Interface Bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27b9 "82801GBM (ICH7-M) LPC Interface Bridge"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d000027B9sv00001734sd000010D7bc06sc01i00"
Driver Info #0:
Driver Status: intel_rng is not active
Driver Activation Cmd: "modprobe intel_rng"
Driver Info #1:
Driver Status: lpc_ich is active
Driver Activation Cmd: "modprobe lpc_ich"
Driver Info #2:
Driver Status: leds_ss4200 is not active
Driver Activation Cmd: "modprobe leds_ss4200"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 200.0: 0200 Ethernet controller
[Created at pci.319]
Unique ID: c3qJ.aYHnvER2Z4B
Parent ID: z8Q3.lR_g6NQM6+0
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: network
Model: "Marvell 88E8055 PCI-E Gigabit Ethernet Controller"
Vendor: pci 0x11ab "Marvell Technology Group Ltd."
Device: pci 0x4363 "88E8055 PCI-E Gigabit Ethernet Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x12
Driver: "sky2"
Driver Modules: "sky2"
Device File: enp2s0
Memory Range: 0xd2000000-0xd2003fff (rw,non-prefetchable)
I/O Ports: 0x2000-0x2fff (rw)
Memory Range: 0xd2020000-0xd203ffff (ro,non-prefetchable,disabled)
IRQ: 27 (232598 events)
HW Address: ...
Link detected: yes
Module Alias: "pci:v000011ABd00004363sv00001734sd000010D7bc02sc00i00"
Driver Info #0:
Driver Status: sky2 is active
Driver Activation Cmd: "modprobe sky2"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (PCI bridge)
29: PCI 1d.1: 0c03 USB Controller (UHCI)
[Created at pci.319]
Unique ID: vayM.jEGD4lSsMM0
SysFS ID: /devices/pci0000:00/0000:00:1d.1
SysFS BusID: 0000:00:1d.1
Hardware Class: usb controller
Model: "Intel 82801G (ICH7 Family) USB UHCI Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27c9 "82801G (ICH7 Family) USB UHCI Controller #2"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0x1840-0x185f (rw)
IRQ: 17 (no events)
Module Alias: "pci:v00008086d000027C9sv00001734sd000010D7bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI a06.1: 0501 FLASH memory
[Created at pci.319]
Unique ID: xtTz.phZUGdPFnG5
Parent ID: 6NW+.DxjOhH+EFx9
SysFS ID: /devices/pci0000:00/0000:00:1e.0/0000:0a:06.1
SysFS BusID: 0000:0a:06.1
Hardware Class: unknown
Model: "ENE PCI Memory Stick Card Reader Controller"
Vendor: pci 0x1524 "ENE Technology Inc"
Device: pci 0x0530 "ENE PCI Memory Stick Card Reader Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x01
Memory Range: 0xd4101000-0xd410107f (rw,non-prefetchable)
IRQ: 10 (no events)
Module Alias: "pci:v00001524d00000530sv00001734sd000010D7bc05sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #11 (PCI bridge)
31: PCI 02.1: 0380 Display controller
[Created at pci.319]
Unique ID: ruGf.VbibJl0WiXA
SysFS ID: /devices/pci0000:00/0000:00:02.1
SysFS BusID: 0000:00:02.1
Hardware Class: graphics card
Model: "Intel Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27a6 "Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x03
Memory Range: 0xd4280000-0xd42fffff (rw,non-prefetchable)
Module Alias: "pci:v00008086d000027A6sv00001734sd000010D7bc03sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 1b.0: 0403 Audio device
[Created at pci.319]
Unique ID: u1Nb.Ka_7A2Qgk73
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Intel 82801G (ICH7 Family) High Definition Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x27d8 "82801G (ICH7 Family) High Definition Audio Controller"
SubVendor: pci 0x1734 "Fujitsu Technology Solutions"
SubDevice: pci 0x10d7
Revision: 0x02
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xd4540000-0xd4543fff (rw,non-prefetchable)
IRQ: 28 (468 events)
Module Alias: "pci:v00008086d000027D8sv00001734sd000010D7bc04sc03i00"
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
33: None 00.0: 10000 Monitor
[Created at monitor.95]
Unique ID: rdCR.Fmw4NMtgbFD
Hardware Class: monitor
Model: "X191"
Vendor: ACR
Device: eisa 0xad94 "X191"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1152x864@75Hz
Resolution: 1280x720@60Hz
Resolution: 1280x960@60Hz
Resolution: 1280x1024@60Hz
Size: 370x300 mm
Detailed Timings #0:
Resolution: 1280x1024
Horizontal: 1280 1328 1440 1688 (+48 +160 +408) hsync
Vertical: 1024 1025 1028 1066 (+1 +4 +42) vsync
Frequencies: 108.00 MHz, 63.98 kHz, 60.02 Hz
Driver Info #0:
Max. Resolution: 1280x1024
Vert. Sync Range: 55-75 Hz
Hor. Sync Range: 30-81 kHz
Bandwidth: 108 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: z9pp.B+yZ9Ve8gC1
SysFS ID: /devices/pnp0/00:00
SysFS BusID: 00:00
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0c02
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: E349.xhndlW9HXJ7
SysFS ID: /devices/pnp0/00:05
SysFS BusID: 00:05
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0303
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: KiZ0.B+yZ9Ve8gC1
SysFS ID: /devices/pnp0/00:03
SysFS BusID: 00:03
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0c02
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: QL3u.fG36JLVNse9
SysFS ID: /devices/pnp0/00:01
SysFS BusID: 00:01
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0103
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: hEKD.TC9gVPFsamE
SysFS ID: /devices/pnp0/00:06
SysFS BusID: 00:06
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: SYN
SubDevice: eisa 0x0309
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: ntp4.WYwRElrJa93
SysFS ID: /devices/pnp0/00:04
SysFS BusID: 00:04
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0b00
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: tWJy.B+yZ9Ve8gC1
SysFS ID: /devices/pnp0/00:02
SysFS BusID: 00:02
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0c02
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: VVOc.Fxp0d3BezAE
SysFS ID: /class/block/ram11
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram11
Device Number: block 1:11
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 7tlP.Fxp0d3BezAE
SysFS ID: /class/block/ram2
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram2
Device Number: block 1:2
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: CWFH.Fxp0d3BezAE
SysFS ID: /class/block/ram0
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram0
Device Number: block 1:0
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: SCSI 600.0: 10600 Disk
[Created at block.245]
Unique ID: 2UT6.q4+it66CY0F
Parent ID: 5YuN.mUheoWIkTL6
SysFS ID: /class/block/sdb
SysFS BusID: 6:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3:1.0/host6/target6:0:0/6:0:0:0
Hardware Class: disk
Model: "Mass Storage Device"
Vendor: usb 0x14cd "Mass"
Device: usb 0x125d "Storage Device"
Serial ID: --
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sdb (/dev/sg2)
Device Files: /dev/sdb, /dev/disk/by-id/usb-Mass_Storage_Device_..., /dev/disk/by-label/ROSA.FRESH.KDE.R8.1.i586, /dev/disk/by-path/pci-0000:00:1d.7-usb-0:3:1.0-scsi-0:0:0:0, /dev/disk/by-uuid/2017-02-22-13-56-03-00
Device Number: block 8:16-8:31 (char 21:2)
BIOS id: 0x80
Geometry (Logical): CHS 3881984/1/2
Size: 7763968 sectors a 512 bytes
Capacity: 3 GB (3975151616 bytes)
Speed: 480 Mbps
Geometry (BIOS EDD): CHS 3881984/1/2
Size (BIOS EDD): 7763968 sectors
Geometry (BIOS Legacy): CHS 1024/0/2
Module Alias: "usb:v14CDp125Dd0100dc00dsc00dp00ic08isc06ip50in00"
Driver Info #0:
Driver Status: uas is active
Driver Activation Cmd: "modprobe uas"
Driver Info #1:
Driver Status: usb_storage is active
Driver Activation Cmd: "modprobe usb_storage"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (USB Controller)
45: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: XOSI.Fxp0d3BezAE
SysFS ID: /class/block/ram9
Hardware Class: disk
Model: "Disk"
Device File: /dev/ram9
Device Number: block 1:9
Size: 64000 sectors a 512 bytes
Capacity: 0 GB (32768000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: d1y9.Fxp0d3BezAE