linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* EeePC card reader activated after suspend to ram
@ 2009-02-17 13:58 Sitsofe Wheeler
  2009-02-17 14:30 ` Alan Jenkins
  0 siblings, 1 reply; 2+ messages in thread
From: Sitsofe Wheeler @ 2009-02-17 13:58 UTC (permalink / raw)
  To: linux-kernel; +Cc: corentincj, acpi4asus-user, Alan Jenkins

Hi,

I've found that there is a particular circumstance when the card reader
in my EeePC 900 will always be activated on resume even though before
the suspend to ram it was switched off.

The steps to reproduce are as follows:

1. Ensure the card reader is enabled before Linux boots (e.g. if Linux
is already running do (as root)
echo 1 > /sys/devices/platform/eeepc/cardr
and then reboot).
2. In the freshly booted kernel issue (as root)
echo 0 > /sys/devices/platform/eeepc/cardr
3. Initiate suspend to RAM e.g.:
echo mem > /sys/power/state 
4. Press a key to resume.

Notice that the logs will contain something similar to the following:

kernel: [  841.435629] Restarting tasks ... done.
kernel: [  907.576216] usb 1-5: new high speed USB device using ehci_hcd and address 3
kernel: [  907.699381] usb 1-5: configuration #1 chosen from 1 choice
kernel: [  907.707460] scsi3 : SCSI emulation for USB Mass Storage devices

Doing
cat /sys/devices/platform/eeepc/cardr
returns 0. Issuing
echo 0 > /sys/devices/platform/eeepc/cardr
even though the card reader is supposedly off will result in it being
disabled until after the next suspend to ram/resume.

Reproduced with a clean 2.6.29rc5 and the heavily Xandros patched
Xandros 2.6.21 kernel that the Eee ships with.

Does anyone have any ideas about this one?

-- 
Sitsofe | http://sucs.org/~sits/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: EeePC card reader activated after suspend to ram
  2009-02-17 13:58 EeePC card reader activated after suspend to ram Sitsofe Wheeler
@ 2009-02-17 14:30 ` Alan Jenkins
  0 siblings, 0 replies; 2+ messages in thread
From: Alan Jenkins @ 2009-02-17 14:30 UTC (permalink / raw)
  To: Sitsofe Wheeler; +Cc: linux-kernel, corentincj, acpi4asus-user

Sitsofe Wheeler wrote:
> Hi,
>
> I've found that there is a particular circumstance when the card reader
> in my EeePC 900 will always be activated on resume even though before
> the suspend to ram it was switched off.
>
> The steps to reproduce are as follows:
>
> 1. Ensure the card reader is enabled before Linux boots (e.g. if Linux
> is already running do (as root)
> echo 1 > /sys/devices/platform/eeepc/cardr
> and then reboot).
> 2. In the freshly booted kernel issue (as root)
> echo 0 > /sys/devices/platform/eeepc/cardr
> 3. Initiate suspend to RAM e.g.:
> echo mem > /sys/power/state 
> 4. Press a key to resume.
>
> Notice that the logs will contain something similar to the following:
>
> kernel: [  841.435629] Restarting tasks ... done.
> kernel: [  907.576216] usb 1-5: new high speed USB device using ehci_hcd and address 3
> kernel: [  907.699381] usb 1-5: configuration #1 chosen from 1 choice
> kernel: [  907.707460] scsi3 : SCSI emulation for USB Mass Storage devices
>
> Doing
> cat /sys/devices/platform/eeepc/cardr
> returns 0. Issuing
> echo 0 > /sys/devices/platform/eeepc/cardr
> even though the card reader is supposedly off will result in it being
> disabled until after the next suspend to ram/resume.
>
> Reproduced with a clean 2.6.29rc5 and the heavily Xandros patched
> Xandros 2.6.21 kernel that the Eee ships with.
>
> Does anyone have any ideas about this one?
>   

It happens on my 701 too. The driver doesn't explicitly cache the
"cardr" value, so I'd blame the BIOS.

You could work around it. Add a hack somewhere that does the equivalent of

x=`cat /sys/devices/platform/eeepc/cardr`
echo $x > /sys/devices/platform/eeepc/cardr

But it is a tradeoff. This is a largely unused feature. You've found one
pretty harmless bug in the hardware... there's the risk that there's
another hardware bug which would then be easier to trigger, and cause
bigger problems. It'd be much better if Asus could fix the BIOS :-).

Alan


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-02-17 14:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-17 13:58 EeePC card reader activated after suspend to ram Sitsofe Wheeler
2009-02-17 14:30 ` Alan Jenkins

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).