[Bug 357400] New: lenovo X60 docking station not initializing
https://bugzilla.novell.com/show_bug.cgi?id=357400 Summary: lenovo X60 docking station not initializing Product: openSUSE 10.3 Version: Final Platform: x86 OS/Version: openSUSE 10.3 Status: NEW Severity: Normal Priority: P5 - None Component: Mobile Devices AssignedTo: hmacht@novell.com ReportedBy: jw@novell.com QAContact: qa@suse.de CC: behlert@novell.com, seife@novell.com Blocks: 357354 Found By: --- The parallel port of the docking station is dead. I tried modprobe parport without success. It only comes alive, if I reboot the laptop while in the docking station. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 Juergen Weigert <jw@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|lenovo X60 docking station not initializing |lenovo X60: parport in docking station not | |initializing -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c1 Holger Macht <hmacht@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |trenn@novell.com --- Comment #1 from Holger Macht <hmacht@novell.com> 2008-01-31 05:27:03 MST --- This is something we never tried, unfortunately. Do you have a printer attached to it? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 Holger Macht <hmacht@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO Info Provider| |jw@novell.com -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User trenn@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c2 Thomas Renninger <trenn@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jsmeix@novell.com --- Comment #2 from Thomas Renninger <trenn@novell.com> 2008-01-31 05:41:20 MST --- Shouldn't it be the parport_pc driver? The parport_pc driver itself is also broken..., but you might have more luck with this one. As a rule of thumb, you should always try without dma (dma=none param iirc). Also yast afaik is playing with tricks like un- and reloading parport_pc. Can you also do: for x in `find /sys |grep pnp|grep resources`; do echo $x; cat $x;done (or similar) and search for the PNP device exporting parport resources (should be 0x3F8 or 0x2F8 for IO ports?). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User jw@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c3 Juergen Weigert <jw@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW Info Provider|jw@novell.com | --- Comment #3 from Juergen Weigert <jw@novell.com> 2008-02-01 08:35:43 MST --- yes, the module is parport_pc. suspend to ram in the docking station, resume outside docking station, --> /dev/parport0 still exists. insert into docking station -> open("/dev/parport0", O_RDWR) = 3 ioctl(3, PPCLAIM, 0xb7e77140) = 0 ioctl(0, PPRDATA, 0xbfeab4fb) = -1 EINVAL (Invalid argument) ioctl(0, PPRCONTROL, 0xbfeab4fb) = -1 EINVAL (Invalid argument) ioctl(0, PPRSTATUS, 0xbfeab4fb) = -1 EINVAL (Invalid argument) ioctl(3, PPRDATA, 0xbfeab507) = 0 ioctl(3, PPRCONTROL, 0xbfeab507) = 0 but parport hardware does not communicate. (-> serial port on the docking station is also dead then.) after a reboot in the docking station, parport is functional. while still in the docking station: suspend to ram, resume parport0 is still functional. Good. /sys/devices/pnp0/00:0c/resources state = active io 0x2f8-0x2ff irq 3 dma 1 /sys/devices/pnp0/00:0b/resources state = active io 0x3bc-0x3be irq 7 /sys/devices/pnp0/00:0a/resources state = active io 0x3f8-0x3ff irq 4 .. after a simple undock, redock, it is dead. (I pressed the undock button and waited for the red LED to go off.) parport_pc remains loaded, /dev/parport0 remains present. # rmmod parport_pc # modprobe parport_pc dma=none brings the port back to life. undock, reboot. /dev/parport0 is not there, parport_pc is present. dock. /dev/parport0 is not there, parport_pc is present. # rmmod parport_pc # modprobe parport_pc dma=none # dmesg .. ACPI: Fatal opcode executed pnp: Device 00:0b activated. pnp: Device 00:0b disabled. parport_pc: probe of 00:0b failed with error -22 /dev/parport0 is still not there. /sys/devices/pnp0/00:0b/resources state = disabled io disabled irq 15 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c4 --- Comment #4 from Holger Macht <hmacht@novell.com> 2008-02-06 12:09:48 MST --- This just sounds that the initialization code of parport_pc is only run on boot, and if dock ist present. So this maybe is just a lack of hotplugging functionality in the driver. However, the ACPI errors look bad. Thomas, any idea what's going on here? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User trenn@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c5 Thomas Renninger <trenn@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #5 from Thomas Renninger <trenn@novell.com> 2008-02-06 12:33:17 MST --- You mean this: ACPI: Fatal opcode executed This looks indeed bad. Juergen, can you confirm that his happens after un- and reloading parport_pc, pls. Also attach acpidump output (as text mime). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 Thomas Renninger <trenn@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO Info Provider| |jw@novell.com -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User trenn@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c6 --- Comment #6 from Thomas Renninger <trenn@novell.com> 2008-02-06 12:45:26 MST --- Maybe we should also continue on a more recent kernel. This probably won't get fixed for 10.3 (unless it is a really easy one). It should be enough to install a kotd on 10.3. Even better would be a 11.0 installation if you still have a small partition left... Hmm, not sure we can also continue on 10.3 for now..., if you wanted to give 11.0 a test anyway we should go on there :) When you know when the "ACPI: Fatal opcode executed" happens (I expect when docking in?) you might also want to increase ACPI debug level: before unload disturbing, polling modules: thermal and ac echo 0x1F >/sys/module/acpi/parameters/debug_level Then trigger the message and set the debug level back to default (to not get unrelated stuff in there): echo 0x3 >/sys/module/acpi/parameters/debug_level You should now have much more messages in /var/log/messages, pls attach. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c7 --- Comment #7 from Holger Macht <hmacht@novell.com> 2008-02-06 13:12:13 MST --- Yes, please test on current FACTORY. We have enough issues to get docking support working at all. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c8 --- Comment #8 from Holger Macht <hmacht@novell.com> 2008-02-06 13:13:33 MST --- I'm still going to try the parport myself, so you don't need to do it if you would have to install a 11.0 first. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User jw@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c11 Juergen Weigert <jw@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|jw@novell.com | --- Comment #11 from Juergen Weigert <jw@novell.com> 2008-02-20 03:44:35 MST --- I cannot reproduce on 11.0a2 /dev/parport0 never appears. Reboot in docking station, docker dock, rmmod/ modprobe -- nothing helps There are no ACPI errors in dmesg, though -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 Juergen Weigert <jw@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |363196 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 Juergen Weigert <jw@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |363199 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User trenn@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c12 --- Comment #12 from Thomas Renninger <trenn@novell.com> 2008-02-20 05:54:01 MST --- Oh mit 11.0? Da koennte evtl. pnpacpi=off helfen? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 Holger Macht <hmacht@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO Info Provider| |jw@novell.com -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 Bug 357400 depends on bug 363196, which changed state. Bug 363196 Summary: lenovo X60: undock button freezes machine https://bugzilla.novell.com/show_bug.cgi?id=363196 What |Old Value |New Value ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Status|ASSIGNED |NEEDINFO Status|NEEDINFO |RESOLVED Resolution| |NORESPONSE -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User cthiel@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c13 --- Comment #13 from Christoph Thiel <cthiel@novell.com> 2008-04-25 08:41:45 MST --- *ping* -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c14 Bug 357400 depends on bug 363199, which changed state. Bug 363199 Summary: lenovo X60: parport in docking station is dead https://bugzilla.novell.com/show_bug.cgi?id=363199 What |Old Value |New Value ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #14 from Holger Macht <hmacht@novell.com> 2008-06-02 09:49:56 MDT --- *** Bug 363199 has been marked as a duplicate of this bug. *** https://bugzilla.novell.com/show_bug.cgi?id=363199 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c15 Holger Macht <hmacht@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Mobile Devices |Mobile Devices OS/Version|openSUSE 10.3 |All Product|openSUSE 10.3 |openSUSE 11.1 Target Milestone|--- |Alpha 0 Version|Final |Alpha 0 --- Comment #15 from Holger Macht <hmacht@novell.com> 2008-06-02 09:51:54 MDT --- Too late for 11.0, sorry. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User jw@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c16 --- Comment #16 from Juergen Weigert <jw@novell.com> 2008-06-07 08:25:48 MDT --- I no longer use the docking station during work. I switched back to 10.3 after testing 11.0. Cannot the needed info. Sorry. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User behlert@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c17 Stefan Behlert <behlert@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|jw@novell.com | Priority|P5 - None |P4 - Low --- Comment #17 from Stefan Behlert <behlert@novell.com> 2008-09-19 09:09:56 MDT --- see comment 16, resetting needinfo. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c18 Holger Macht <hmacht@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO Info Provider| |jw@novell.com --- Comment #18 from Holger Macht <hmacht@novell.com> 2008-10-08 03:01:36 MDT --- Test result with 11.0 was not provided. Resetting NEEDINFO ;-) Best would be to try 11.1 now. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User jw@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c19 --- Comment #19 from Juergen Weigert <jw@novell.com> 2008-10-08 04:42:35 MDT --- I have e1000e on that machine. Will 11.1 shred my eth0? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User hmacht@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c20 --- Comment #20 from Holger Macht <hmacht@novell.com> 2008-10-08 04:57:54 MDT --- Not sure what's the exact status here. Maybe you should wait a little more. Or make sure to store 'ethtool -e eth0' before installing to make sure to be able to recover it. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User aj@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c21 --- Comment #21 from Andreas Jaeger <aj@novell.com> 2008-11-14 03:36:36 MST --- 11.1 will not anymore shred your eth0, so go ahead and test it... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User jw@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c22 --- Comment #22 from Juergen Weigert <jw@novell.com> 2008-11-14 07:14:17 MST --- booted 11.1 beta5 without docking station. no parport as expected. inserted into dockingstation. Still no parport lsmod | grep par has nothing. modprobe parport_pc lsmod | grep par parport_pc 51516 0 parport 50388 2, ppdev,parport_pc undock, dock, still no device. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=357400 User jw@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=357400#c23 Juergen Weigert <jw@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|jw@novell.com | --- Comment #23 from Juergen Weigert <jw@novell.com> 2008-12-25 03:56:16 MST --- booted SLED11-RC1 without docking station No parport as expected. Inserted into dockingstation. Still no parport, but $ lsmod | grep par parport_pc 35048 0 parport 33832 3 lp,parport_pc,ppdev $ undock, dock, still no device. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com