[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#607534: linux-image-2.6.32-5-xen-686: crash upon calling 'startx'



Package: linux-2.6
Version: 2.6.32-29
Severity: normal
Tags: squeeze


Hi,

I wanted to start the GUI, but couldn't. After logging in, I usually say
'startx'. For this computer, which I have just installed, the command
resulted in the screen going blank, immediately followed by a hard reboot.

The problem appears to occur only with the entry in grub.cfg that I
marked below, but I only tried the first and the marked entry
(...XEN 4.0"):


--------------------------------------------- cut
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="4"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 97da3623-a193-4fe3-a9ce-13f91f9123fc
set locale_dir=($root)/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
### THE FOLLOWING ENTRY WORKS:
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-xen-686' --class debian --class gnu-linux --class gnu --class os {
	insmod part_msdos
	insmod ext2
	set root='(hd0,msdos1)'
	search --no-floppy --fs-uuid --set 97da3623-a193-4fe3-a9ce-13f91f9123fc
	echo	'Loading Linux 2.6.32-5-xen-686 ...'
	linux	/vmlinuz-2.6.32-5-xen-686 root=/dev/mapper/ev0-root ro  quiet
	echo	'Loading initial ramdisk ...'
	initrd	/initrd.img-2.6.32-5-xen-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-xen-686 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
	insmod part_msdos
	insmod ext2
	set root='(hd0,msdos1)'
	search --no-floppy --fs-uuid --set 97da3623-a193-4fe3-a9ce-13f91f9123fc
	echo	'Loading Linux 2.6.32-5-xen-686 ...'
	linux	/vmlinuz-2.6.32-5-xen-686 root=/dev/mapper/ev0-root ro single 
	echo	'Loading initial ramdisk ...'
	initrd	/initrd.img-2.6.32-5-xen-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686' --class debian --class gnu-linux --class gnu --class os {
	insmod part_msdos
	insmod ext2
	set root='(hd0,msdos1)'
	search --no-floppy --fs-uuid --set 97da3623-a193-4fe3-a9ce-13f91f9123fc
	echo	'Loading Linux 2.6.32-5-686 ...'
	linux	/vmlinuz-2.6.32-5-686 root=/dev/mapper/ev0-root ro  quiet
	echo	'Loading initial ramdisk ...'
	initrd	/initrd.img-2.6.32-5-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
	insmod part_msdos
	insmod ext2
	set root='(hd0,msdos1)'
	search --no-floppy --fs-uuid --set 97da3623-a193-4fe3-a9ce-13f91f9123fc
	echo	'Loading Linux 2.6.32-5-686 ...'
	linux	/vmlinuz-2.6.32-5-686 root=/dev/mapper/ev0-root ro single 
	echo	'Loading initial ramdisk ...'
	initrd	/initrd.img-2.6.32-5-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### THE FOLLOWING ENTRY CAUSES THE CRASH:
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-xen-686 and XEN 4.0-i386' --class debian --class gnu-linux --class gnu --class os --class xen {
	insmod part_msdos
	insmod ext2
	set root='(hd0,msdos1)'
	search --no-floppy --fs-uuid --set 97da3623-a193-4fe3-a9ce-13f91f9123fc
	echo	'Loading Linux 2.6.32-5-xen-686 ...'
	multiboot	/xen-4.0-i386.gz placeholder  
	module	/vmlinuz-2.6.32-5-xen-686 placeholder root=/dev/mapper/ev0-root ro  quiet
	echo	'Loading initial ramdisk ...'
	module	/initrd.img-2.6.32-5-xen-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-xen-686 and XEN 4.0-i386 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen {
	insmod part_msdos
	insmod ext2
	set root='(hd0,msdos1)'
	search --no-floppy --fs-uuid --set 97da3623-a193-4fe3-a9ce-13f91f9123fc
	echo	'Loading Linux 2.6.32-5-xen-686 ...'
	multiboot	/xen-4.0-i386.gz placeholder 
	module	/vmlinuz-2.6.32-5-xen-686 placeholder root=/dev/mapper/ev0-root ro single 
	echo	'Loading initial ramdisk ...'
	module	/initrd.img-2.6.32-5-xen-686
}
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------- cut

I have the following packages, which are related to XEN, installed:

$ dpkg -l '*xen*' |grep ^ii
ii  libc6-xen                            2.11.2-7                             Embedded GNU C Library: Shared libraries [Xen version]
ii  libxenstore3.0                       4.0.1-1                              Xenstore communications library for Xen
ii  linux-image-2.6.32-5-xen-686         2.6.32-29                            Linux 2.6.32 for modern PCs, Xen dom0 support
ii  xen-hypervisor-4.0-i386              4.0.1-1                              The Xen Hypervisor on i386
ii  xen-linux-system-2.6.32-5-xen-686    2.6.32-29                            Xen system with Linux 2.6.32 on modern PCs (meta-package)
ii  xen-utils-4.0                        4.0.1-1                              XEN administrative tools
ii  xen-utils-common                     4.0.0-1                              XEN administrative tools - common files
ii  xenstore-utils                       4.0.1-1                              Xenstore utilities for Xen



FWIW, on a different pre-Squeeze machine, I have no trouble running X
after booting this entry:


menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-xen-686 and XEN 4.0-amd64' --class debian --class gnu-linux --class gnu --class os --class xen {
        insmod raid
        insmod mdraid
        insmod part_msdos
        insmod part_msdos
        insmod ext2
        set root='(md0)'
        search --no-floppy --fs-uuid --set dd88a909-503e-4bba-82fb-6c8a6293a842
        echo    'Loading Linux 2.6.32-5-xen-686 ...'
        multiboot       /xen-4.0-amd64.gz placeholder  
        module  /vmlinuz-2.6.32-5-xen-686 placeholder root=/dev/mapper/ev0-root ro root=/dev/mapper/ev0-root ro 
        echo    'Loading initial ramdisk ...'
        module  /initrd.img-2.6.32-5-xen-686
}



Kind regards,
--Toni++


-- Package-specific info:
** Version:
Linux version 2.6.32-5-xen-686 (Debian 2.6.32-29) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Fri Dec 10 20:52:42 UTC 2010

** Command line:
placeholder root=/dev/mapper/ev0-root ro quiet

** Not tainted

** Kernel log:
[   61.162673] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   61.162818] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   61.663123] EXT3 FS on dm-1, internal journal
[   61.922775] loop: module loaded
[   62.536358] Adding 7811064k swap on /dev/mapper/ev0-swap.  Priority:-1 extents:1 across:7811064k 
[   67.017451] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   67.259292] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input14
[   68.122711] kjournald starting.  Commit interval 5 seconds
[   68.122915] EXT3 FS on sda1, internal journal
[   68.122934] EXT3-fs: mounted filesystem with ordered data mode.
[   68.232601] kjournald starting.  Commit interval 5 seconds
[   68.236331] EXT3 FS on dm-7, internal journal
[   68.236350] EXT3-fs: mounted filesystem with ordered data mode.
[   68.298764] kjournald starting.  Commit interval 5 seconds
[   68.300330] EXT3 FS on dm-6, internal journal
[   68.300348] EXT3-fs: mounted filesystem with ordered data mode.
[   68.361256] kjournald starting.  Commit interval 5 seconds
[   68.364327] EXT3 FS on dm-5, internal journal
[   68.364345] EXT3-fs: mounted filesystem with ordered data mode.
[   68.404636] kjournald starting.  Commit interval 5 seconds
[   68.408322] EXT3 FS on dm-3, internal journal
[   68.408340] EXT3-fs: mounted filesystem with ordered data mode.
[   68.448641] kjournald starting.  Commit interval 5 seconds
[   68.452325] EXT3 FS on dm-4, internal journal
[   68.452343] EXT3-fs: mounted filesystem with ordered data mode.
[   70.591228] fuse init (API version 7.13)
[   71.611217] NET: Registered protocol family 15
[   71.619145] alg: No test for cipher_null (cipher_null-generic)
[   71.619300] alg: No test for ecb(cipher_null) (ecb-cipher_null)
[   71.619448] alg: No test for digest_null (digest_null-generic)
[   71.619562] alg: No test for compress_null (compress_null-generic)
[   71.669281] padlock: VIA PadLock Hash Engine not detected.
[   72.477710] Event-channel device installed.
[   72.979838] Initializing XFRM netlink socket
[   72.993180] XENBUS: Unable to read cpu state
[   72.993314] XENBUS: Unable to read cpu state
[   73.126176] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input15
[   76.194542] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   76.198613] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-2.ucode
[   76.259215] iwlagn 0000:03:00.0: iwlwifi-5000-2.ucode firmware file req failed: -2
[   76.262774] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-1.ucode
[   76.279269] iwlagn 0000:03:00.0: iwlwifi-5000-1.ucode firmware file req failed: -2
[   76.280016] iwlagn 0000:03:00.0: Could not read microcode: -2
[   76.510751] apm: BIOS not found.
[   76.525692] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-2.ucode
[   76.538837] iwlagn 0000:03:00.0: iwlwifi-5000-2.ucode firmware file req failed: -2
[   76.540561] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-1.ucode
[   76.545847] iwlagn 0000:03:00.0: iwlwifi-5000-1.ucode firmware file req failed: -2
[   76.547532] iwlagn 0000:03:00.0: Could not read microcode: -2
[   77.269032] Bluetooth: L2CAP ver 2.14
[   77.269042] Bluetooth: L2CAP socket layer initialized
[   77.312618] Bluetooth: RFCOMM TTY layer initialized
[   77.312633] Bluetooth: RFCOMM socket layer initialized
[   77.312643] Bluetooth: RFCOMM ver 1.11
[   77.358012] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   77.358016] Bluetooth: BNEP filters: protocol multicast
[   77.517118] Bridge firewalling registered
[   77.575166] Bluetooth: SCO (Voice Link) ver 0.6
[   77.575172] Bluetooth: SCO socket layer initialized
[   77.800852] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
[   77.800866] 0000:00:19.0: eth0: 10/100 speed: disabling TSO
[   77.801395] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   88.580070] eth0: no IPv6 routers present
[  279.774306] ADDRCONF(NETDEV_UP): eth0: link is not ready
[  279.778943] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-2.ucode
[  279.789208] iwlagn 0000:03:00.0: iwlwifi-5000-2.ucode firmware file req failed: -2
[  279.791025] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-1.ucode
[  279.798929] iwlagn 0000:03:00.0: iwlwifi-5000-1.ucode firmware file req failed: -2
[  279.799523] iwlagn 0000:03:00.0: Could not read microcode: -2
[  279.801847] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-2.ucode
[  279.805815] iwlagn 0000:03:00.0: iwlwifi-5000-2.ucode firmware file req failed: -2
[  279.806459] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-1.ucode
[  279.810639] iwlagn 0000:03:00.0: iwlwifi-5000-1.ucode firmware file req failed: -2
[  279.811253] iwlagn 0000:03:00.0: Could not read microcode: -2
[  279.812627] ADDRCONF(NETDEV_UP): usb0: link is not ready
[  281.360925] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
[  281.360939] 0000:00:19.0: eth0: 10/100 speed: disabling TSO
[  281.361463] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[  291.421106] eth0: no IPv6 routers present
[  323.473486] ADDRCONF(NETDEV_UP): eth0: link is not ready
[  325.168920] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
[  325.168933] 0000:00:19.0: eth0: 10/100 speed: disabling TSO
[  325.169451] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[  335.440077] eth0: no IPv6 routers present
[ 1132.417254] CPU0 attaching NULL sched-domain.
[ 1132.417259] CPU1 attaching NULL sched-domain.
[ 1132.445216] CPU0 attaching sched-domain:
[ 1132.445229]  domain 0: span 0-1 level CPU
[ 1132.445246]   groups: 0 1
[ 1132.445276] CPU1 attaching sched-domain:
[ 1132.445286]  domain 0: span 0-1 level CPU
[ 1132.445301]   groups: 1 0
[ 1132.561164] CPU0 attaching NULL sched-domain.
[ 1132.561169] CPU1 attaching NULL sched-domain.
[ 1132.585279] CPU0 attaching sched-domain:
[ 1132.585291]  domain 0: span 0-1 level CPU
[ 1132.585306]   groups: 0 1
[ 1132.585336] CPU1 attaching sched-domain:
[ 1132.585347]  domain 0: span 0-1 level CPU
[ 1132.585361]   groups: 1 0

** Model information
not available

** Loaded modules:
Module                  Size  Used by
cpufreq_stats           1940  0 
cpufreq_userspace       1476  0 
cpufreq_conservative     4018  0 
cpufreq_powersave        602  0 
sco                     5857  2 
bridge                 33031  0 
stp                      996  1 bridge
bnep                    7460  2 
rfcomm                 25171  8 
l2cap                  21705  16 bnep,rfcomm
crc16                   1027  1 l2cap
xfrm_user              16166  4 
xfrm4_tunnel            1201  0 
tunnel4                 1469  1 xfrm4_tunnel
ipcomp                  1356  0 
xfrm_ipcomp             2923  1 ipcomp
esp4                    4053  0 
ah4                     3079  0 
xen_evtchn              3471  1 
xenfs                   7248  1 
binfmt_misc             4907  1 
uinput                  4796  1 
deflate                 1315  0 
zlib_deflate           15822  1 deflate
ctr                     2703  0 
twofish                 5665  0 
twofish_common         12560  1 twofish
camellia               16843  0 
serpent                16187  0 
blowfish                7252  0 
cast5                  15593  0 
des_generic            15027  0 
xcbc                    1925  0 
rmd160                  9448  0 
sha1_generic            1395  0 
hmac                    2033  0 
crypto_null             1876  0 
af_key                 23386  0 
fuse                   43937  1 
loop                    9761  0 
firewire_sbp2           9708  0 
snd_hda_codec_conexant    16345  1 
joydev                  6739  0 
snd_hda_intel          16871  0 
snd_hda_codec          46002  2 snd_hda_codec_conexant,snd_hda_intel
snd_hwdep               4054  1 snd_hda_codec
snd_pcm_oss            28671  0 
arc4                     974  2 
snd_mixer_oss          10461  1 snd_pcm_oss
ecb                     1405  2 
radeon                537808  0 
snd_pcm                47402  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_seq_midi            3576  0 
snd_rawmidi            12513  1 snd_seq_midi
pcmcia                 16286  0 
snd_seq_midi_event      3684  1 snd_seq_midi
iwlagn                 63639  0 
snd_seq                35459  2 snd_seq_midi,snd_seq_midi_event
zaurus                  1880  0 
iwlcore                67698  1 iwlagn
ttm                    33490  1 radeon
snd_timer              12258  2 snd_pcm,snd_seq
i915                  222608  1 
uvcvideo               45546  0 
cdc_ether               2633  1 zaurus
snd_seq_device          3673  3 snd_seq_midi,snd_rawmidi,snd_seq
yenta_socket           16511  1 
usbnet                  9539  2 zaurus,cdc_ether
drm_kms_helper         18305  2 radeon,i915
mac80211              123586  2 iwlagn,iwlcore
psmouse                44653  0 
videodev               25541  1 uvcvideo
btusb                   8081  2 
pcspkr                  1207  0 
snd                    34375  11 snd_hda_codec_conexant,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
rsrc_nonstatic          7413  1 yenta_socket
drm                   113422  4 radeon,ttm,i915,drm_kms_helper
v4l1_compat            10250  2 uvcvideo,videodev
mii                     2714  1 usbnet
cdc_wdm                 6488  0 
cdc_acm                12562  0 
evdev                   5609  8 
pcmcia_core            20478  3 pcmcia,yenta_socket,rsrc_nonstatic
serio_raw               2916  0 
soundcore               3450  1 snd
thinkpad_acpi          41971  0 
cfg80211               87637  3 iwlagn,iwlcore,mac80211
bluetooth              36319  9 sco,bnep,rfcomm,l2cap,btusb
i2c_i801                6466  0 
snd_page_alloc          5109  2 snd_hda_intel,snd_pcm
rfkill                 10260  4 thinkpad_acpi,cfg80211,bluetooth
nvram                   3985  1 thinkpad_acpi
i2c_algo_bit            3497  2 radeon,i915
i2c_core               12696  7 radeon,i915,drm_kms_helper,videodev,drm,i2c_i801,i2c_algo_bit
ac                      1640  0 
battery                 3782  0 
video                  14605  1 i915
output                  1204  1 video
wmi                     3575  0 
processor              30865  0 
button                  3598  1 i915
acpi_processor          3623  1 processor,[permanent]
ext3                   94196  7 
jbd                    32161  1 ext3
mbcache                 3762  1 ext3
sha256_generic         10748  2 
aes_i586                6816  2 
aes_generic            25738  1 aes_i586
cbc                     2047  1 
dm_crypt                9264  1 
dm_mod                 46074  24 dm_crypt
sg                     15972  0 
sr_mod                 10770  0 
cdrom                  26487  1 sr_mod
sd_mod                 25973  3 
crc_t10dif              1012  1 sd_mod
uhci_hcd               16141  0 
ahci                   27286  2 
sdhci_pci               4541  0 
sdhci                  12291  1 sdhci_pci
libata                116053  1 ahci
ricoh_mmc               2561  0 
firewire_ohci          16997  0 
firewire_core          31267  2 firewire_sbp2,firewire_ohci
crc_itu_t               1035  1 firewire_core
mmc_core               38665  1 sdhci
led_class               1757  3 iwlcore,thinkpad_acpi,sdhci
ehci_hcd               28255  0 
scsi_mod              101417  5 firewire_sbp2,sg,sr_mod,sd_mod,libata
e1000e                 98161  0 
usbcore                98793  10 zaurus,uvcvideo,cdc_ether,usbnet,btusb,cdc_wdm,cdc_acm,uhci_hcd,ehci_hcd
nls_base                4541  1 usbcore
thermal                 9206  0 
thermal_sys             9378  3 video,processor,thermal

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub [8086:2a40] (rev 07)
	Subsystem: Lenovo Device [17aa:20e0]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>
	Kernel driver in use: agpgart-intel

00:01.0 PCI bridge [0604]: Intel Corporation Mobile 4 Series Chipset PCI Express Graphics Port [8086:2a41] (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 00002000-00002fff
	Memory behind bridge: bff00000-bfffffff
	Prefetchable memory behind bridge: 00000000c0000000-00000000cfffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a42] (rev 07) (prog-if 00 [VGA controller])
	Subsystem: Lenovo Device [17aa:2115]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 1514
	Region 0: Memory at f4400000 (64-bit, non-prefetchable) [size=4M]
	Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M]
	Region 4: I/O ports at 1800 [size=8]
	Expansion ROM at <unassigned> [disabled]
	Capabilities: <access denied>
	Kernel driver in use: i915

00:03.0 Communication controller [0780]: Intel Corporation Mobile 4 Series Chipset MEI Controller [8086:2a44] (rev 07)
	Subsystem: Lenovo Device [17aa:20e6]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx+
	Latency: 0
	Interrupt: pin A routed to IRQ 11
	Region 0: Memory at fc226800 (64-bit, non-prefetchable) [size=16]
	Capabilities: <access denied>

00:19.0 Ethernet controller [0200]: Intel Corporation 82567LM Gigabit Network Connection [8086:10f5] (rev 03)
	Subsystem: Lenovo Device [17aa:20ee]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 1516
	Region 0: Memory at fc200000 (32-bit, non-prefetchable) [size=128K]
	Region 1: Memory at fc225000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at 1840 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: e1000e

00:1a.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 [8086:2937] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Lenovo Device [17aa:20f0]
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 20
	Region 4: I/O ports at 1860 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: uhci_hcd

00:1a.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 [8086:2938] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Lenovo Device [17aa:20f0]
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 21
	Region 4: I/O ports at 1880 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: uhci_hcd

00:1a.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 [8086:2939] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Lenovo Device [17aa:20f0]
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin C routed to IRQ 22
	Region 4: I/O ports at 18a0 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: uhci_hcd

00:1a.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 [8086:293c] (rev 03) (prog-if 20 [EHCI])
	Subsystem: Lenovo Device [17aa:20f1]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin D routed to IRQ 23
	Region 0: Memory at fc226c00 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci_hcd

00:1b.0 Audio device [0403]: Intel Corporation 82801I (ICH9 Family) HD Audio Controller [8086:293e] (rev 03)
	Subsystem: Lenovo Device [17aa:20f2]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at fc220000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: HDA Intel

00:1c.0 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 [8086:2940] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 0000a000-0000afff
	Memory behind bridge: a0000000-a01fffff
	Prefetchable memory behind bridge: 00000000a0200000-00000000a03fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1c.1 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 [8086:2942] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 0000b000-0000bfff
	Memory behind bridge: f4200000-f42fffff
	Prefetchable memory behind bridge: 00000000a0400000-00000000a05fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1c.2 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 [8086:2944] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	I/O behind bridge: 00003000-00003fff
	Memory behind bridge: f4300000-f43fffff
	Prefetchable memory behind bridge: 00000000a0600000-00000000a07fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1c.3 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 [8086:2946] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=05, subordinate=0c, sec-latency=0
	I/O behind bridge: 00004000-00004fff
	Memory behind bridge: f8000000-f9ffffff
	Prefetchable memory behind bridge: 00000000f4000000-00000000f40fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1c.4 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 5 [8086:2948] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=0d, subordinate=14, sec-latency=0
	I/O behind bridge: 00005000-00005fff
	Memory behind bridge: fa000000-fbffffff
	Prefetchable memory behind bridge: 00000000f4100000-00000000f41fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1d.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 [8086:2934] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Lenovo Device [17aa:20f0]
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 16
	Region 4: I/O ports at 18c0 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: uhci_hcd

00:1d.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 [8086:2935] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Lenovo Device [17aa:20f0]
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 17
	Region 4: I/O ports at 18e0 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: uhci_hcd

00:1d.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 [8086:2936] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Lenovo Device [17aa:20f0]
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin C routed to IRQ 18
	Region 4: I/O ports at 1c00 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: uhci_hcd

00:1d.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 [8086:293a] (rev 03) (prog-if 20 [EHCI])
	Subsystem: Lenovo Device [17aa:20f1]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin D routed to IRQ 19
	Region 0: Memory at fc227000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev 93) (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=00, secondary=15, subordinate=18, sec-latency=32
	I/O behind bridge: 00006000-00009fff
	Memory behind bridge: f4800000-f7ffffff
	Prefetchable memory behind bridge: 00000000f0000000-00000000f3ffffff
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>

00:1f.0 ISA bridge [0601]: Intel Corporation ICH9M-E LPC Interface Controller [8086:2917] (rev 03)
	Subsystem: Lenovo Device [17aa:20f5]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>

00:1f.2 SATA controller [0106]: Intel Corporation ICH9M/M-E SATA AHCI Controller [8086:2929] (rev 03) (prog-if 01 [AHCI 1.0])
	Subsystem: Lenovo Device [17aa:20f8]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 1515
	Region 0: I/O ports at 1c48 [size=8]
	Region 1: I/O ports at 183c [size=4]
	Region 2: I/O ports at 1c40 [size=8]
	Region 3: I/O ports at 1838 [size=4]
	Region 4: I/O ports at 1c20 [size=32]
	Region 5: Memory at fc226000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: ahci

00:1f.3 SMBus [0c05]: Intel Corporation 82801I (ICH9 Family) SMBus Controller [8086:2930] (rev 03)
	Subsystem: Lenovo Device [17aa:20f9]
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 23
	Region 0: Memory at fc227400 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at 1c60 [size=32]
	Kernel driver in use: i801_smbus

01:00.0 VGA compatible controller [0300]: ATI Technologies Inc Mobility Radeon HD 3650 [1002:9591] (prog-if 00 [VGA controller])
	Subsystem: Lenovo Device [17aa:2116]
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at c0000000 (32-bit, prefetchable) [size=256M]
	Region 1: I/O ports at 2000 [size=256]
	Region 2: Memory at bfff0000 (32-bit, non-prefetchable) [size=64K]
	Expansion ROM at bff00000 [disabled] [size=128K]
	Capabilities: <access denied>

03:00.0 Network controller [0280]: Intel Corporation Ultimate N WiFi Link 5300 [8086:4236]
	Subsystem: Intel Corporation Device [8086:1011]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 1513
	Region 0: Memory at f4200000 (64-bit, non-prefetchable) [size=8K]
	Capabilities: <access denied>
	Kernel driver in use: iwlagn

04:00.0 Memory controller [0580]: Intel Corporation Turbo Memory Controller [8086:444e] (rev 11)
	Subsystem: Intel Corporation Device [8086:4443]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 11
	Region 0: Memory at f4300000 (32-bit, non-prefetchable) [size=1K]
	Region 2: I/O ports at 3000 [size=256]
	[virtual] Expansion ROM at a0600000 [disabled] [size=64K]
	Capabilities: <access denied>

15:00.0 CardBus bridge [0607]: Ricoh Co Ltd RL5c476 II [1180:0476] (rev ba)
	Subsystem: Lenovo Device [17aa:20c6]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 168, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at f4800000 (32-bit, non-prefetchable) [size=4K]
	Bus: primary=15, secondary=16, subordinate=17, sec-latency=176
	Memory window 0: f0000000-f3fff000 (prefetchable)
	Memory window 1: a4000000-a7fff000
	I/O window 0: 00006000-000060ff
	I/O window 1: 00006400-000064ff
	BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt+ PostWrite+
	16-bit legacy interface ports at 0001
	Kernel driver in use: yenta_cardbus

15:00.1 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C832 IEEE 1394 Controller [1180:0832] (rev 04) (prog-if 10 [OHCI])
	Subsystem: Lenovo Device [17aa:20c7]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32 (500ns min, 1000ns max), Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at f4801000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: firewire_ohci

15:00.2 SD Host controller [0805]: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter [1180:0822] (rev 21)
	Subsystem: Lenovo Device [17aa:20c8]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at f4801800 (32-bit, non-prefetchable) [size=256]
	Capabilities: <access denied>
	Kernel driver in use: sdhci-pci

15:00.3 System peripheral [0880]: Ricoh Co Ltd R5C843 MMC Host Controller [1180:0843] (rev ff) (prog-if ff)
	!!! Unknown header type 7f
	Kernel driver in use: ricoh-mmc

15:00.4 System peripheral [0880]: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter [1180:0592] (rev 11)
	Subsystem: Lenovo ThinkPad T61 [17aa:20ca]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 11
	Region 0: Memory at f4802000 (32-bit, non-prefetchable) [size=256]
	Capabilities: <access denied>

15:00.5 System peripheral [0880]: Ricoh Co Ltd xD-Picture Card Controller [1180:0852] (rev 11)
	Subsystem: Lenovo Device [17aa:20cb]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 11
	Region 0: Memory at f4802400 (32-bit, non-prefetchable) [size=256]
	Capabilities: <access denied>


** USB devices:
Bus 008 Device 002: ID 17ef:1003 Lenovo Integrated Smart Card Reader
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 003: ID 0a5c:2145 Broadcom Corp. Bluetooth with Enhanced Data Rate II
Bus 004 Device 002: ID 08ff:2810 AuthenTec, Inc. AES2810
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 0bdb:1900 Ericsson Business Mobile Networks BV F3507g Mobile Broadband Module
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 17ef:4807 Lenovo UVC Camera
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-xen-686 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-image-2.6.32-5-xen-686 depends on:
ii  debconf [debconf-2.0]         1.5.36     Debian configuration management sy
ii  initramfs-tools               0.98.5     tools for generating an initramfs
ii  linux-base                    2.6.32-29  Linux image base package
ii  module-init-tools             3.12-1     tools for managing Linux kernel mo

Versions of packages linux-image-2.6.32-5-xen-686 recommends:
ii  firmware-linux-free           2.6.32-29  Binary firmware for various driver
ii  libc6-xen                     2.11.2-7   Embedded GNU C Library: Shared lib

Versions of packages linux-image-2.6.32-5-xen-686 suggests:
pn  grub                          <none>     (no description available)
pn  linux-doc-2.6.32              <none>     (no description available)

Versions of packages linux-image-2.6.32-5-xen-686 is related to:
pn  firmware-bnx2                 <none>     (no description available)
pn  firmware-bnx2x                <none>     (no description available)
pn  firmware-ipw2x00              <none>     (no description available)
pn  firmware-ivtv                 <none>     (no description available)
pn  firmware-iwlwifi              <none>     (no description available)
pn  firmware-linux                <none>     (no description available)
pn  firmware-linux-nonfree        <none>     (no description available)
pn  firmware-qlogic               <none>     (no description available)
pn  firmware-ralink               <none>     (no description available)
ii  xen-hypervisor-4.0-i386 [xen- 4.0.1-1    The Xen Hypervisor on i386

-- debconf information:
  linux-image-2.6.32-5-xen-686/postinst/depmod-error-initrd-2.6.32-5-xen-686: false
  linux-image-2.6.32-5-xen-686/prerm/removing-running-kernel-2.6.32-5-xen-686: true
  linux-image-2.6.32-5-xen-686/postinst/missing-firmware-2.6.32-5-xen-686:
  linux-image-2.6.32-5-xen-686/postinst/ignoring-do-bootloader-2.6.32-5-xen-686:




Reply to: