Sony Vaio VGN-TT 11 Howto
Mail Home Search

Installing Slackware GNU/Linux on a Sony Vaio VGN-TT11 WN

Written by Adrian Ulrich in May 2009. Feel free to send corrections/suggestions

Hardware support matrix overview

X.orgWorks out of the Box with the 'intel' Driver, HDMI output works also fine
SoundWorks (headphone detection needs a recent kernel (~2.6.32))
DrivesDVD/SD-Card reader both work
ACPI/SuspendWorks with Linux >= 2.6.30
HSUPA ModemWorks fine
BluetoothWorks fine
CameraWorks with UVC driver (mplayer tv://)
Fingerprint readerDidn't try


Installing Slackware 12.2 via DVD/CD-Rom

Nothing special here: Just installl Slackware as you are used to and reboot. Your network (including wlan) + X should work out-of-the-box. (if X doesn't work for you: this is my xorg.conf file)

Upgrade to Linux >= 2.6.30

Slackwares default kernel lacks (useable) sony-vaio support. Don't even bother to 'fix' non-working stuff before upgrading to 2.6.30. Here is my .config file for Linux 2.6.30

Configuring ACPI-Hotkeys

So you are running Linux >= 2.6.30? Great! We can now give acpid some hints about our hotkeys: We will configure 4 Hotkey events: BrightnessUp, BrightnessDown, Eject and LidClose. Acpid needs to know what to do if it receives an event, so we have to create the 4 event files in /etc/acpid/events . My configuration looks like this:
adrian@zombie:~$ more /etc/acpi/events/sony-*
::::::::::::::
/etc/acpi/events/sony-bright-down
::::::::::::::
event=sony/hotkey SNC 00000001 00000010
action=/etc/acpi/actions/brightness.sh down
::::::::::::::
/etc/acpi/events/sony-bright-up
::::::::::::::
event=sony/hotkey SNC 00000001 00000011
action=/etc/acpi/actions/brightness.sh up
::::::::::::::
/etc/acpi/events/sony-eject
::::::::::::::
event=sony/hotkey SNC 00000001 00000040
action=/usr/bin/eject 2>/dev/null
::::::::::::::
/etc/acpi/events/sony-lid
::::::::::::::
event=button/lid LID0 00000080
action=/usr/bin/acpitool -s

As you can see i'm using acpitool for suspending (You can get it from slacky.eu) and both brightness keys are calling /etc/acpi/actions/brightness.sh, ieks: brightness.sh is a small shell-script around 'xbacklight'. xbacklight can be used to configure your, ehr... backlight via ACPI but it needs a running X-Server to do so. That's bad, because acpid runs as root and it's childs are not allowed to mess with your current X-Session. Anyway: xbacklight.sh uses brutal force to work around this:
adrian@zombie:~$ cat /etc/acpi/actions/brightness.sh
#!/bin/bash
if [ "x$1" = "xdown" ]; then
/bin/su adrian -c "/usr/bin/xbacklight -time 10 -dec 5 -d :0.0" 2>/dev/null
elif [ "x$1" = "xup" ]; then
/bin/su adrian -c "/usr/bin/xbacklight -time 10 -inc 5 -d :0.0" 2>/dev/null
else
echo >&2 Unknown argument $1
fi

You must adjust the 'su' call (unless your login name is also 'adrian') and don't forget to chmod +x 'brightness.sh' (oh... and you may want to restart acpid now)

Fixing minor sound issues

Note: This is not needed for Linux >= 2.6.32!
Sound (almost) works out-of-the box but there is no way to configure the headphone plug. The VGN-TT11 uses 'snd-hda-intel' and 2.6.30 autodetects a somewhat wrong hardware variant. Well: The 'exact' hardware variant appears to be unknown to the driver, but there is a better model than the autodetected version and we can force snd-hda-intel to use it:
adrian@zombie:~$ cat /etc/modprobe.d/snd-hda-intel
options snd-hda-intel model=6stack-dig

Reboot (or rmmod snd-hda-intel && modprobe snd-hda-intel) and you'll be able to control the headphone plug via the Surround bar in alsamixer. Not so pretty but it works.
Oh, what about the Audio-Hotkeys? They work fine but nobody cares about the generated keycodes (yet): All 3 keys send XF86Audio* keycodes (see 'xev') that your Window-Manager could catch. With fvwm2 you should add this to your configuration:
Key XF86AudioRaiseVolume A A Exec exec amixer sset "Master" 2+
Key XF86AudioLowerVolume A A Exec exec amixer sset "Master" 2-
Key XF86AudioMute A A Exec exec amixer sset "Front" toggle


HSUPA-Modem

Surprise: The modem works perfectly with the hso driver (included in recent kernels!) but dialing isn't that easy ;-) I wrote my own (small and stupid) dialer called hso_connect.pl.
Configuring hso_connect is easy: Open it and edit the 'pin' + 'apn' section and you are ready to go:
root@zombie:~# hso_connect.pl
Guessed HSO-TTY is at /dev/ttyHS3
Setting wwan power to '1' done
Resetting modem done
Unlocking SIM done
Configuring APN done
Connecting ....done
Configuring IP IP= 10.161.60.69, Dev=hso0
Configuring default gateway done
==> CONNECTED! Hit CTRL+D to hangup <===
Terminating connection done
Setting wwan power to '0' done
Goodbye.

Note: hso_connect.pl will not work for you if your provider requires authentication via user/password. But it could be added (does someone need this?)

Enabling KVM / VT Support

Sony decided to disable VT support (needed for kvm-intel) in most vaio laptops without giving the user an option to re-enable it. You have two options to restore VT Support on your laptop: Patching the VSS is easy: All you need is a FAT32 formatted USB-Stick and this guide.
I've enabled both settings (0x1af and 0x25a) on my VAIO and it works like a charm :-)

dmesg output

Complete dmesg + lspci output:

Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Initializing HighMem for node 0 (000377fe:000bbd00)
Memory: 3045228k/3077120k available (3050k kernel code, 30080k reserved, 1212k data, 328k init, 2167160k highmem)
virtual kernel memory layout:
fixmap : 0xfff9d000 - 0xfffff000 ( 392 kB)
pkmap : 0xff800000 - 0xffc00000 (4096 kB)
vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
.init : 0xc0530000 - 0xc0582000 ( 328 kB)
.data : 0xc03fa974 - 0xc0529aa8 (1212 kB)
.text : 0xc0100000 - 0xc03fa974 (3050 kB)
Checking if this processor honours the WP bit even in supervisor mode...Ok.
SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
hpet clockevent registered
Calibrating delay loop (skipped), value calculated using timer frequency.. 2394.05 BogoMIPS (lpj=4788112)
Security Framework initialized
Mount-cache hash table entries: 512
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 3072K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
using mwait in idle threads.
Checking 'hlt' instruction... OK.
ACPI: Core revision 20090320
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: Intel(R) Core(TM)2 Duo CPU U9300 @ 1.20GHz stepping 06
Booting processor 1 APIC 0x1 ip 0x6000
Initializing CPU#1
Calibrating delay using timer specific routine.. 2393.99 BogoMIPS (lpj=4787984)
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 3072K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#1.
CPU1: Intel(R) Core(TM)2 Duo CPU U9300 @ 1.20GHz stepping 06
checking TSC synchronization [CPU#0 -> CPU#1]: passed.
Brought up 2 CPUs
Total of 2 processors activated (4788.04 BogoMIPS).
net_namespace: 944 bytes
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: MCFG configuration 0: base f8000000 segment 0 buses 0 - 63
PCI: MCFG area at f8000000 reserved in E820
PCI: Using MMCONFIG for extended config space
PCI: Using configuration type 1 for base access
bio: create slab at 0
ACPI: EC: Look up EC in DSDT
ACPI: BIOS _OSI(Linux) query ignored
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
ACPI: EC: driver started in poll mode
ACPI: ACPI Dock Station Driver: 1 docks/bays found
ACPI: PCI Root Bridge [PCI0] (0000:00)
pci 0000:00:02.0: reg 10 64bit mmio: [0xd4400000-0xd47fffff]
pci 0000:00:02.0: reg 18 64bit mmio: [0xc0000000-0xcfffffff]
pci 0000:00:02.0: reg 20 io port: [0x7130-0x7137]
pci 0000:00:02.1: reg 10 64bit mmio: [0xd7800000-0xd78fffff]
pci 0000:00:19.0: reg 10 32bit mmio: [0xdaa00000-0xdaa1ffff]
pci 0000:00:19.0: reg 14 32bit mmio: [0xdaa24000-0xdaa24fff]
pci 0000:00:19.0: reg 18 io port: [0x7100-0x711f]
pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
pci 0000:00:19.0: PME# disabled
pci 0000:00:1a.0: reg 20 io port: [0x70e0-0x70ff]
pci 0000:00:1a.1: reg 20 io port: [0x70c0-0x70df]
pci 0000:00:1a.2: reg 20 io port: [0x70a0-0x70bf]
pci 0000:00:1a.7: reg 10 32bit mmio: [0xdaa25c00-0xdaa25fff]
pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
pci 0000:00:1a.7: PME# disabled
pci 0000:00:1b.0: reg 10 64bit mmio: [0xdaa20000-0xdaa23fff]
pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1b.0: PME# disabled
pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.0: PME# disabled
pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.1: PME# disabled
pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.3: PME# disabled
pci 0000:00:1d.0: reg 20 io port: [0x7080-0x709f]
pci 0000:00:1d.1: reg 20 io port: [0x7060-0x707f]
pci 0000:00:1d.2: reg 20 io port: [0x7040-0x705f]
pci 0000:00:1d.7: reg 10 32bit mmio: [0xdaa25800-0xdaa25bff]
pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
pci 0000:00:1d.7: PME# disabled
pci 0000:00:1f.2: reg 10 io port: [0x7128-0x712f]
pci 0000:00:1f.2: reg 14 io port: [0x713c-0x713f]
pci 0000:00:1f.2: reg 18 io port: [0x7120-0x7127]
pci 0000:00:1f.2: reg 1c io port: [0x7138-0x713b]
pci 0000:00:1f.2: reg 20 io port: [0x7020-0x703f]
pci 0000:00:1f.2: reg 24 32bit mmio: [0xdaa25000-0xdaa257ff]
pci 0000:00:1f.2: PME# supported from D3hot
pci 0000:00:1f.2: PME# disabled
pci 0000:00:1f.3: reg 10 64bit mmio: [0xdac26000-0xdac260ff]
pci 0000:00:1f.3: reg 20 io port: [0xa000-0xa01f]
pci 0000:02:00.0: reg 10 64bit mmio: [0xd9900000-0xd9901fff]
pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
pci 0000:02:00.0: PME# disabled
pci 0000:00:1c.0: bridge io port: [0x6000-0x6fff]
pci 0000:00:1c.0: bridge 32bit mmio: [0xd9900000-0xda9fffff]
pci 0000:00:1c.0: bridge 64bit mmio pref: [0xd4800000-0xd57fffff]
pci 0000:00:1c.1: bridge io port: [0x5000-0x5fff]
pci 0000:00:1c.1: bridge 32bit mmio: [0xd8900000-0xd98fffff]
pci 0000:00:1c.1: bridge 64bit mmio pref: [0xd5800000-0xd67fffff]
pci 0000:00:1c.3: bridge io port: [0x4000-0x4fff]
pci 0000:00:1c.3: bridge 32bit mmio: [0xd7900000-0xd88fffff]
pci 0000:00:1c.3: bridge 64bit mmio pref: [0xd6800000-0xd77fffff]
pci 0000:0b:04.0: reg 10 32bit mmio: [0xd4000000-0xd4000fff]
pci 0000:0b:04.0: supports D1 D2
pci 0000:0b:04.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:0b:04.0: PME# disabled
pci 0000:0b:04.1: reg 10 32bit mmio: [0xd4001000-0xd40017ff]
pci 0000:0b:04.1: PME# supported from D0 D3hot D3cold
pci 0000:0b:04.1: PME# disabled
pci 0000:0b:04.2: reg 10 32bit mmio: [0xd4001900-0xd40019ff]
pci 0000:0b:04.2: supports D1 D2
pci 0000:0b:04.2: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:0b:04.2: PME# disabled
pci 0000:0b:04.4: reg 10 32bit mmio: [0xd4001800-0xd40018ff]
pci 0000:0b:04.4: supports D1 D2
pci 0000:0b:04.4: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:0b:04.4: PME# disabled
pci 0000:00:1e.0: transparent bridge
pci 0000:00:1e.0: bridge io port: [0x3000-0x3fff]
pci 0000:00:1e.0: bridge 32bit mmio: [0xd2000000-0xd40fffff]
pci 0000:00:1e.0: bridge 64bit mmio pref: [0xd0000000-0xd1ffffff]
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 *10 11 12)
SCSI subsystem initialized
libata version 3.00 loaded.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
hpet0: 4 comparators, 64-bit 14.318180 MHz counter
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 11 devices
ACPI: ACPI bus type pnp unregistered
system 00:01: ioport range 0x164e-0x164f has been reserved
system 00:01: ioport range 0x600-0x60f has been reserved
system 00:01: ioport range 0x610-0x610 has been reserved
system 00:01: ioport range 0x800-0x80f has been reserved
system 00:01: ioport range 0x810-0x817 has been reserved
system 00:01: ioport range 0x820-0x823 has been reserved
system 00:01: ioport range 0x400-0x47f has been reserved
system 00:01: ioport range 0x500-0x53f has been reserved
system 00:01: ioport range 0x2000-0x2000 has been reserved
system 00:01: ioport range 0x2004-0x2004 has been reserved
system 00:01: iomem range 0xf8000000-0xfbffffff has been reserved
system 00:01: iomem range 0xfed1c000-0xfed1ffff has been reserved
system 00:01: iomem range 0xfed10000-0xfed13fff has been reserved
system 00:01: iomem range 0xfed18000-0xfed18fff has been reserved
system 00:01: iomem range 0xfed19000-0xfed19fff has been reserved
system 00:01: iomem range 0xfec00000-0xfec00fff has been reserved
system 00:01: iomem range 0xfed20000-0xfed3ffff has been reserved
system 00:01: iomem range 0xfed45000-0xfed8ffff has been reserved
system 00:01: iomem range 0xfee00000-0xfee00fff has been reserved
pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
pci 0000:00:1c.0: IO window: 0x6000-0x6fff
pci 0000:00:1c.0: MEM window: 0xd9900000-0xda9fffff
pci 0000:00:1c.0: PREFETCH window: 0x000000d4800000-0x000000d57fffff
pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
pci 0000:00:1c.1: IO window: 0x5000-0x5fff
pci 0000:00:1c.1: MEM window: 0xd8900000-0xd98fffff
pci 0000:00:1c.1: PREFETCH window: 0x000000d5800000-0x000000d67fffff
pci 0000:00:1c.3: PCI bridge, secondary bus 0000:08
pci 0000:00:1c.3: IO window: 0x4000-0x4fff
pci 0000:00:1c.3: MEM window: 0xd7900000-0xd88fffff
pci 0000:00:1c.3: PREFETCH window: 0x000000d6800000-0x000000d77fffff
pci 0000:0b:04.0: CardBus bridge, secondary bus 0000:0c
pci 0000:0b:04.0: IO window: 0x003000-0x0030ff
pci 0000:0b:04.0: IO window: 0x003400-0x0034ff
pci 0000:0b:04.0: PREFETCH window: 0xdc000000-0xdfffffff
pci 0000:0b:04.0: MEM window: 0xe0000000-0xe3ffffff
pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0b
pci 0000:00:1e.0: IO window: 0x3000-0x3fff
pci 0000:00:1e.0: MEM window: 0xd2000000-0xd40fffff
pci 0000:00:1e.0: PREFETCH window: 0x000000d0000000-0x000000d1ffffff
pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:1c.0: setting latency timer to 64
pci 0000:00:1c.1: enabling device (0000 -> 0003)
pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
pci 0000:00:1c.1: setting latency timer to 64
pci 0000:00:1c.3: enabling device (0000 -> 0003)
pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
pci 0000:00:1c.3: setting latency timer to 64
pci 0000:00:1e.0: setting latency timer to 64
pci 0000:0b:04.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
pci 0000:0b:04.0: setting latency timer to 64
pci_bus 0000:00: resource 0 io: [0x00-0xffff]
pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
pci_bus 0000:02: resource 0 io: [0x6000-0x6fff]
pci_bus 0000:02: resource 1 mem: [0xd9900000-0xda9fffff]
pci_bus 0000:02: resource 2 pref mem [0xd4800000-0xd57fffff]
pci_bus 0000:03: resource 0 io: [0x5000-0x5fff]
pci_bus 0000:03: resource 1 mem: [0xd8900000-0xd98fffff]
pci_bus 0000:03: resource 2 pref mem [0xd5800000-0xd67fffff]
pci_bus 0000:08: resource 0 io: [0x4000-0x4fff]
pci_bus 0000:08: resource 1 mem: [0xd7900000-0xd88fffff]
pci_bus 0000:08: resource 2 pref mem [0xd6800000-0xd77fffff]
pci_bus 0000:0b: resource 0 io: [0x3000-0x3fff]
pci_bus 0000:0b: resource 1 mem: [0xd2000000-0xd40fffff]
pci_bus 0000:0b: resource 2 pref mem [0xd0000000-0xd1ffffff]
pci_bus 0000:0b: resource 3 io: [0x00-0xffff]
pci_bus 0000:0b: resource 4 mem: [0x000000-0xffffffff]
pci_bus 0000:0c: resource 0 io: [0x3000-0x30ff]
pci_bus 0000:0c: resource 1 io: [0x3400-0x34ff]
pci_bus 0000:0c: resource 2 pref mem [0xdc000000-0xdfffffff]
pci_bus 0000:0c: resource 3 mem: [0xe0000000-0xe3ffffff]
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
NET: Registered protocol family 1
Simple Boot Flag value 0x5 read from CMOS RAM was invalid
Simple Boot Flag at 0x44 set to 0x1
highmem bounce pool size: 64 pages
JFS: nTxBlock = 8192, nTxLock = 65536
msgmni has been set to 1716
alg: No test for cipher_null (cipher_null-generic)
alg: No test for ecb(cipher_null) (ecb-cipher_null)
alg: No test for digest_null (digest_null-generic)
alg: No test for compress_null (compress_null-generic)
alg: No test for fcrypt (fcrypt-generic)
alg: No test for stdrng (krng)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
pci 0000:00:02.0: Boot video device
pcieport-driver 0000:00:1c.0: setting latency timer to 64
pcieport-driver 0000:00:1c.1: setting latency timer to 64
pcieport-driver 0000:00:1c.3: setting latency timer to 64
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
loop: module loaded
Loading iSCSI transport class v2.0-870.
Driver 'sd' needs updating - please use bus_type methods
ahci 0000:00:1f.2: version 3.0
ahci 0000:00:1f.2: PCI INT B -> GSI 22 (level, low) -> IRQ 22
ahci: SSS flag set, parallel bus scan disabled
ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems
ahci 0000:00:1f.2: setting latency timer to 64
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
scsi5 : ahci
ata1: SATA max UDMA/133 abar m2048@0xdaa25000 port 0xdaa25100 irq 22
ata2: SATA max UDMA/133 irq_stat 0x00400040, connection status changed irq 22
ata3: DUMMY
ata4: DUMMY
ata5: SATA max UDMA/133 abar m2048@0xdaa25000 port 0xdaa25300 irq 22
ata6: SATA max UDMA/133 abar m2048@0xdaa25000 port 0xdaa25380 irq 22
tun: Universal TUN/TAP device driver, 1.6
tun: (C) 1999-2004 Max Krasnyansky
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 23 (level, low) -> IRQ 23
ehci_hcd 0000:00:1a.7: setting latency timer to 64
ehci_hcd 0000:00:1a.7: EHCI Host Controller
ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:1a.7: debug port 1
ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
ehci_hcd 0000:00:1a.7: irq 23, io mem 0xdaa25c00
ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: EHCI Host Controller
usb usb1: Manufacturer: Linux 2.6.30-rc7-smp ehci_hcd
usb usb1: SerialNumber: 0000:00:1a.7
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20
ehci_hcd 0000:00:1d.7: setting latency timer to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
ehci_hcd 0000:00:1d.7: debug port 1
ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
ehci_hcd 0000:00:1d.7: irq 20, io mem 0xdaa25800
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: EHCI Host Controller
usb usb2: Manufacturer: Linux 2.6.30-rc7-smp ehci_hcd
usb usb2: SerialNumber: 0000:00:1d.7
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
uhci_hcd: USB Universal Host Controller Interface driver
uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
uhci_hcd 0000:00:1a.0: setting latency timer to 64
uhci_hcd 0000:00:1a.0: UHCI Host Controller
uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1a.0: irq 23, io base 0x000070e0
usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb3: Product: UHCI Host Controller
usb usb3: Manufacturer: Linux 2.6.30-rc7-smp uhci_hcd
usb usb3: SerialNumber: 0000:00:1a.0
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 23 (level, low) -> IRQ 23
uhci_hcd 0000:00:1a.1: setting latency timer to 64
uhci_hcd 0000:00:1a.1: UHCI Host Controller
uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1a.1: irq 23, io base 0x000070c0
usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb4: Product: UHCI Host Controller
usb usb4: Manufacturer: Linux 2.6.30-rc7-smp uhci_hcd
usb usb4: SerialNumber: 0000:00:1a.1
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 23 (level, low) -> IRQ 23
uhci_hcd 0000:00:1a.2: setting latency timer to 64
uhci_hcd 0000:00:1a.2: UHCI Host Controller
uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
uhci_hcd 0000:00:1a.2: irq 23, io base 0x000070a0
usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb5: Product: UHCI Host Controller
usb usb5: Manufacturer: Linux 2.6.30-rc7-smp uhci_hcd
usb usb5: SerialNumber: 0000:00:1a.2
usb usb5: configuration #1 chosen from 1 choice
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1d.0: setting latency timer to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
uhci_hcd 0000:00:1d.0: irq 20, io base 0x00007080
usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb6: Product: UHCI Host Controller
usb usb6: Manufacturer: Linux 2.6.30-rc7-smp uhci_hcd
usb usb6: SerialNumber: 0000:00:1d.0
usb usb6: configuration #1 chosen from 1 choice
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1d.1: setting latency timer to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
uhci_hcd 0000:00:1d.1: irq 20, io base 0x00007060
usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb7: Product: UHCI Host Controller
usb usb7: Manufacturer: Linux 2.6.30-rc7-smp uhci_hcd
usb usb7: SerialNumber: 0000:00:1d.1
usb usb7: configuration #1 chosen from 1 choice
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1d.2: setting latency timer to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
uhci_hcd 0000:00:1d.2: irq 20, io base 0x00007040
usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb8: Product: UHCI Host Controller
usb usb8: Manufacturer: Linux 2.6.30-rc7-smp uhci_hcd
usb usb8: SerialNumber: 0000:00:1d.2
usb usb8: configuration #1 chosen from 1 choice
hub 8-0:1.0: USB hub found
hub 8-0:1.0: 2 ports detected
Initializing USB Mass Storage driver...
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
i8042.c: Detected active multiplexing controller, rev 1.1.
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX0 port at 0x60,0x64 irq 12
serio: i8042 AUX1 port at 0x60,0x64 irq 12
serio: i8042 AUX2 port at 0x60,0x64 irq 12
serio: i8042 AUX3 port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
I2O subsystem v1.325
i2o: max drivers = 8
I2O Configuration OSM v1.323
I2O Bus Adapter OSM v1.317
I2O Block Device OSM v1.325
I2O SCSI Peripheral OSM v1.316
I2O ProcFS OSM v1.316
i2c /dev entries driver
device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
cpuidle: using governor ladder
usbcore: registered new interface driver hiddev
usbcore: registered new interface driver usbhid
usbhid: v2.6:USB HID core driver
TCP cubic registered
Initializing XFRM netlink socket
NET: Registered protocol family 17
Using IPI No-Shortcut mode
ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
ata1.00: ATA-8: TOSHIBA MK1617GSG, SP002A, max UDMA/100
ata1.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 31/32)
ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
ata1.00: configured for UDMA/100
scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1617GS SP00 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 312581808 512-byte hardware sectors: (160 GB/149 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sda:<6>usb 1-2: new high speed USB device using ehci_hcd and address 3
sda1 sda2 sda3
sd 0:0:0:0: [sda] Attached SCSI disk
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
usb 1-2: New USB device found, idVendor=05ca, idProduct=18b1
usb 1-2: New USB device strings: Mfr=1, Product=0, SerialNumber=0
usb 1-2: Manufacturer: Ricoh co. Ltd.
usb 1-2: configuration #1 chosen from 1 choice
usb 3-1: new full speed USB device using uhci_hcd and address 2
ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata2.00: ACPI cmd 00/00:00:00:00:00:a0 rejected by device (Stat=0x51 Err=0x04)
ata2.00: ATAPI: Optiarc DVD RW AD-7910S, 1.70, max UDMA/100
ata2.00: ACPI cmd 00/00:00:00:00:00:a0 rejected by device (Stat=0x51 Err=0x04)
ata2.00: configured for UDMA/100
scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7910S 1.70 PQ: 0 ANSI: 5
usb 3-1: New USB device found, idVendor=147e, idProduct=1000
usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 3-1: Product: Fingerprint Sensor
usb 3-1: Manufacturer: TouchStrip
usb 3-1: configuration #1 chosen from 1 choice
ata5: SATA link down (SStatus 0 SControl 300)
usb 5-2: new full speed USB device using uhci_hcd and address 2
usb 5-2: New USB device found, idVendor=044e, idProduct=3017
usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 5-2: Product: BCM2046 Bluetooth Device
usb 5-2: Manufacturer: Broadcom Corp
usb 5-2: SerialNumber: 00214FB6BCC3
usb 5-2: configuration #1 chosen from 1 choice
ata6: SATA link down (SStatus 0 SControl 300)
kjournald starting. Commit interval 5 seconds
EXT3-fs: mounted filesystem with writeback data mode.
VFS: Mounted root (ext3 filesystem) readonly on device 8:1.
Freeing unused kernel memory: 328k freed
usb 6-1: new full speed USB device using uhci_hcd and address 2
usb 6-1: New USB device found, idVendor=22b8, idProduct=4902
usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 6-1: Product: Motorola Phone (L7)
usb 6-1: Manufacturer: Motorola Inc.
usb 6-1: configuration #1 chosen from 2 choices
usb 7-1: new low speed USB device using uhci_hcd and address 2
usb 7-1: New USB device found, idVendor=046d, idProduct=c018
usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 7-1: Product: USB Optical Mouse
usb 7-1: Manufacturer: Logitech
usb 7-1: configuration #1 chosen from 1 choice
input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/input/input1
generic-usb 0003:046D:C018.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.1-1/input0
e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.4-k4
e1000e: Copyright (c) 1999-2008 Intel Corporation.
e1000e 0000:00:19.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
e1000e 0000:00:19.0: setting latency timer to 64
0000:00:19.0: 0000:00:19.0: Failed to initialize MSI interrupts. Falling back to legacy interrupts.
Linux agpgart interface v0.103
Bluetooth: Core ver 2.15
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:1d:ba:64:e4:a7
0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
0000:00:19.0: eth0: MAC: 7, PHY: 8, PBA No: ffffff-0ff
agpgart-intel 0000:00:00.0: Intel Mobile IntelĀ® GM45 Express Chipset
agpgart-intel 0000:00:00.0: detected 65532K stolen memory
agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
cfg80211: Using static regulatory domain info
cfg80211: Regulatory domain: US
(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
(2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
(5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
(5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
(5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
(5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
(5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
cfg80211: Calling CRDA for country: US
ACPI: AC Adapter [AC] (on-line)
input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
ACPI: Power Button [PWRB]
input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
ACPI: Lid Switch [LID0]
ACPI: Battery Slot [BAT0] (battery present)
Bluetooth: Generic Bluetooth USB driver ver 0.5
usbcore: registered new interface driver btusb
i801_smbus 0000:00:1f.3: PCI INT C -> GSI 22 (level, low) -> IRQ 22
tpm_inf_pnp 00:0a: Found TPM with ID IFX0102
sd 0:0:0:0: Attached scsi generic sg0 type 0
scsi 1:0:0:0: Attached scsi generic sg1 type 5
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sony-laptop: Sony Programmable IO Control Driver v0.6.
sony-laptop: detected Type3 model
input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/SNY6001:00/input/input4
input: Sony Vaio Jogdial as /devices/virtual/input/input5
sony-laptop: device allocated minor is 58
sony-laptop: Sony Notebook Control Driver v0.6.
ACPI: EC: non-query interrupt received, switching to interrupt mode
Driver 'sr' needs updating - please use bus_type methods
ACPI: SSDT bbb6fc98 00223 (v01 Sony VAIO 20080829 INTL 20051117)
ACPI: SSDT bbb6d618 005B2 (v01 Sony VAIO 20080829 INTL 20051117)
sdhci-pci 0000:0b:04.2: SDHCI controller found [1180:0822] (rev 21)
sdhci-pci 0000:0b:04.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
sdhci-pci 0000:0b:04.2: Will use DMA mode even though HW doesn't fully claim to support it.
sdhci-pci 0000:0b:04.2: setting latency timer to 64
Registered led device: mmc0::
mmc0: SDHCI controller on PCI [0000:0b:04.2] using DMA
sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
sr 1:0:0:0: Attached scsi CD-ROM sr0
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Monitor-Mwait will be used to enter C-3 state
Marking TSC unstable due to TSC halts in idle
ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
processor ACPI_CPU:00: registered as cooling_device0
ACPI: Processor [CPU0] (supports 8 throttling states)
ACPI: SSDT bbb6ee18 001CF (v01 Sony VAIO 20080829 INTL 20051117)
ACPI: SSDT bbb6ff18 0008D (v01 Sony VAIO 20080829 INTL 20051117)
ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
processor ACPI_CPU:01: registered as cooling_device1
ACPI: Processor [CPU1] (supports 8 throttling states)
thermal LNXTHERM:01: registered as thermal_zone0
ACPI: Thermal Zone [ATF0] (40 C)
rtc_cmos 00:03: RTC can wake from S4
rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
ohci1394 0000:0b:04.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
ohci1394 0000:0b:04.1: setting latency timer to 64
HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
HDA Intel 0000:00:1b.0: setting latency timer to 64
ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[21] MMIO=[d4001000-d40017ff] Max Packet=[2048] IR/IT contexts=[4/4]
sony-laptop: brightness ignored, must be controlled by ACPI video driver
iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27k
iwlagn: Copyright(c) 2003-2009 Intel Corporation
iwlagn 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
iwlagn 0000:02:00.0: setting latency timer to 64
iwlagn 0000:02:00.0: Detected Intel Wireless WiFi Link 5100AGN REV=0x54
iwlagn 0000:02:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
phy0: Selected rate control algorithm 'iwl-agn-rs'
input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input6
mmc0: new SD card at address 55ee
mmcblk0: mmc0:55ee SD02G 1.91 GiB
mmcblk0: p1
input: PS/2 Generic Mouse as /devices/platform/i8042/serio2/input/input7
Clocksource tsc unstable (delta = -196903175 ns)
EXT3 FS on sda1, internal journal
ieee1394: Host added: ID:BUS[0-00:1023] GUID[0800460302ce0a1f]
usb 1-3: new high speed USB device using ehci_hcd and address 5
usb 1-3: New USB device found, idVendor=0af0, idProduct=7601
usb 1-3: New USB device strings: Mfr=2, Product=1, SerialNumber=0
usb 1-3: Product: Globetrotter HSUPA Modem
usb 1-3: Manufacturer: Option N.V.
usb 1-3: configuration #1 chosen from 1 choice
hso: drivers/net/usb/hso.c: 1.2 Option Wireless
usbcore: registered new interface driver hso
Btrfs loaded
device label home devid 1 transid 28926 /dev/mapper/home
device label data devid 1 transid 28077 /dev/sda3
iwlagn 0000:02:00.0: firmware: requesting iwlwifi-5000-1.ucode
iwlagn 0000:02:00.0: loaded firmware version 5.4.1.16
Registered led device: iwl-phy0::radio
Registered led device: iwl-phy0::assoc
Registered led device: iwl-phy0::RX
Registered led device: iwl-phy0::TX
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
ADDRCONF(NETDEV_UP): wlan0: link is not ready
00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03)
00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
00:1a.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
00:1f.2 SATA controller: Intel Corporation ICH9M/M-E SATA AHCI Controller (rev 03)
00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
02:00.0 Network controller: Intel Corporation Wireless WiFi Link 5100
0b:04.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev ba)
0b:04.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 04)
0b:04.2 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 21)
0b:04.4 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 11)