lkml.org 
[lkml]   [2008]   [Apr]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectHack to fix not working spindown over Firewire
Hi folks,

I like the manage_start_stop feature of the SD driver to spin down the
hard disks (SATA and USB) during suspend. However, it didn't work with
my Firewire hard disk.

After some research I found out that I can spin down the disk with
sg_start --pc=2, and spin it up with sg_start --pc=1. I adopted this
into sd_start_stop_device() with the vendor name of the device
hardcoded (see the attached patch) and now my Firewire hard disk spins
down on suspend and spins up on resume.

Is there any chance to get this behaviour without such ugly changes to
the kernel? I had to make it conditional by checking the device as
otherwise the SATA disk reports an error.

Regards,
Tino
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index 3cea17d..4d7dbd6 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -1788,8 +1788,16 @@ static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
struct scsi_device *sdp = sdkp->device;
int res;

- if (start)
+ if (start) {
cmd[4] |= 1; /* START */
+ if(!strncmp(sdp->vendor, "WDC WD32", 8)) {
+ cmd[4] |= (1 << 4); /* power condition */
+ }
+ } else {
+ if(!strncmp(sdp->vendor, "WDC WD32", 8)) {
+ cmd[4] |= (2 << 4); /* power condition */
+ }
+ }

if (!scsi_device_online(sdp))
return -ENODEV;
\
 
 \ /
  Last update: 2008-04-30 01:27    [W:0.935 / U:0.360 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site