aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorJens Axboe <axboe@suse.de>2006-01-06 03:28:07 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-06 11:36:09 -0500
commit9b847548663ef1039dd49f0eb4463d001e596bc3 (patch)
tree105a0eece522b1347bea57f609f6c04ed673fdb3 /drivers/scsi
parent88202a0c84e1951d6630d1d557d4801a8cc5b5ef (diff)
[PATCH] Suspend support for libata
This patch adds suspend patch to libata, and ata_piix in particular. For most low level drivers, they should just need to add the 4 hooks to work. As I can only test ata_piix, I didn't enable it for more though. Suspend support is the single most important feature on a notebook, and most new notebooks have sata drives. It's quite embarrassing that we _still_ do not support this. Right now, it's perfectly possible to suspend the drive in mid-transfer. Signed-off-by: Jens Axboe <axboe@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/ata_piix.c4
-rw-r--r--drivers/scsi/libata-core.c114
-rw-r--r--drivers/scsi/libata-scsi.c16
-rw-r--r--drivers/scsi/scsi_sysfs.c31
4 files changed, 165 insertions, 0 deletions
diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c
index 0ea27873b9ff..f79630340028 100644
--- a/drivers/scsi/ata_piix.c
+++ b/drivers/scsi/ata_piix.c
@@ -166,6 +166,8 @@ static struct pci_driver piix_pci_driver = {
166 .id_table = piix_pci_tbl, 166 .id_table = piix_pci_tbl,
167 .probe = piix_init_one, 167 .probe = piix_init_one,
168 .remove = ata_pci_remove_one, 168 .remove = ata_pci_remove_one,
169 .suspend = ata_pci_device_suspend,
170 .resume = ata_pci_device_resume,
169}; 171};
170 172
171static struct scsi_host_template piix_sht = { 173static struct scsi_host_template piix_sht = {
@@ -186,6 +188,8 @@ static struct scsi_host_template piix_sht = {
186 .slave_configure = ata_scsi_slave_config, 188 .slave_configure = ata_scsi_slave_config,
187 .bios_param = ata_std_bios_param, 189 .bios_param = ata_std_bios_param,
188 .ordered_flush = 1, 190 .ordered_flush = 1,
191 .resume = ata_scsi_device_resume,
192 .suspend = ata_scsi_device_suspend,
189}; 193};
190 194
191static const struct ata_port_operations piix_pata_ops = { 195static const struct ata_port_operations piix_pata_ops = {
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c
index 9ea102587914..9c66d4059399 100644
--- a/drivers/scsi/libata-core.c
+++ b/drivers/scsi/libata-core.c
@@ -4154,6 +4154,96 @@ err_out:
4154 * Inherited from caller. 4154 * Inherited from caller.
4155 */ 4155 */
4156 4156
4157/*
4158 * Execute a 'simple' command, that only consists of the opcode 'cmd' itself,
4159 * without filling any other registers
4160 */
4161static int ata_do_simple_cmd(struct ata_port *ap, struct ata_device *dev,
4162 u8 cmd)
4163{
4164 struct ata_taskfile tf;
4165 int err;
4166
4167 ata_tf_init(ap, &tf, dev->devno);
4168
4169 tf.command = cmd;
4170 tf.flags |= ATA_TFLAG_DEVICE;
4171 tf.protocol = ATA_PROT_NODATA;
4172
4173 err = ata_exec_internal(ap, dev, &tf, DMA_NONE, NULL, 0);
4174 if (err)
4175 printk(KERN_ERR "%s: ata command failed: %d\n",
4176 __FUNCTION__, err);
4177
4178 return err;
4179}
4180
4181static int ata_flush_cache(struct ata_port *ap, struct ata_device *dev)
4182{
4183 u8 cmd;
4184
4185 if (!ata_try_flush_cache(dev))
4186 return 0;
4187
4188 if (ata_id_has_flush_ext(dev->id))
4189 cmd = ATA_CMD_FLUSH_EXT;
4190 else
4191 cmd = ATA_CMD_FLUSH;
4192
4193 return ata_do_simple_cmd(ap, dev, cmd);
4194}
4195
4196static int ata_standby_drive(struct ata_port *ap, struct ata_device *dev)
4197{
4198 return ata_do_simple_cmd(ap, dev, ATA_CMD_STANDBYNOW1);
4199}
4200
4201static int ata_start_drive(struct ata_port *ap, struct ata_device *dev)
4202{
4203 return ata_do_simple_cmd(ap, dev, ATA_CMD_IDLEIMMEDIATE);
4204}
4205
4206/**
4207 * ata_device_resume - wakeup a previously suspended devices
4208 *
4209 * Kick the drive back into action, by sending it an idle immediate
4210 * command and making sure its transfer mode matches between drive
4211 * and host.
4212 *
4213 */
4214int ata_device_resume(struct ata_port *ap, struct ata_device *dev)
4215{
4216 if (ap->flags & ATA_FLAG_SUSPENDED) {
4217 ap->flags &= ~ATA_FLAG_SUSPENDED;
4218 ata_set_mode(ap);
4219 }
4220 if (!ata_dev_present(dev))
4221 return 0;
4222 if (dev->class == ATA_DEV_ATA)
4223 ata_start_drive(ap, dev);
4224
4225 return 0;
4226}
4227
4228/**
4229 * ata_device_suspend - prepare a device for suspend
4230 *
4231 * Flush the cache on the drive, if appropriate, then issue a
4232 * standbynow command.
4233 *
4234 */
4235int ata_device_suspend(struct ata_port *ap, struct ata_device *dev)
4236{
4237 if (!ata_dev_present(dev))
4238 return 0;
4239 if (dev->class == ATA_DEV_ATA)
4240 ata_flush_cache(ap, dev);
4241
4242 ata_standby_drive(ap, dev);
4243 ap->flags |= ATA_FLAG_SUSPENDED;
4244 return 0;
4245}
4246
4157int ata_port_start (struct ata_port *ap) 4247int ata_port_start (struct ata_port *ap)
4158{ 4248{
4159 struct device *dev = ap->host_set->dev; 4249 struct device *dev = ap->host_set->dev;
@@ -4902,6 +4992,23 @@ int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits)
4902 4992
4903 return (tmp == bits->val) ? 1 : 0; 4993 return (tmp == bits->val) ? 1 : 0;
4904} 4994}
4995
4996int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state)
4997{
4998 pci_save_state(pdev);
4999 pci_disable_device(pdev);
5000 pci_set_power_state(pdev, PCI_D3hot);
5001 return 0;
5002}
5003
5004int ata_pci_device_resume(struct pci_dev *pdev)
5005{
5006 pci_set_power_state(pdev, PCI_D0);
5007 pci_restore_state(pdev);
5008 pci_enable_device(pdev);
5009 pci_set_master(pdev);
5010 return 0;
5011}
4905#endif /* CONFIG_PCI */ 5012#endif /* CONFIG_PCI */
4906 5013
4907 5014
@@ -5005,4 +5112,11 @@ EXPORT_SYMBOL_GPL(ata_pci_host_stop);
5005EXPORT_SYMBOL_GPL(ata_pci_init_native_mode); 5112EXPORT_SYMBOL_GPL(ata_pci_init_native_mode);
5006EXPORT_SYMBOL_GPL(ata_pci_init_one); 5113EXPORT_SYMBOL_GPL(ata_pci_init_one);
5007EXPORT_SYMBOL_GPL(ata_pci_remove_one); 5114EXPORT_SYMBOL_GPL(ata_pci_remove_one);
5115EXPORT_SYMBOL_GPL(ata_pci_device_suspend);
5116EXPORT_SYMBOL_GPL(ata_pci_device_resume);
5008#endif /* CONFIG_PCI */ 5117#endif /* CONFIG_PCI */
5118
5119EXPORT_SYMBOL_GPL(ata_device_suspend);
5120EXPORT_SYMBOL_GPL(ata_device_resume);
5121EXPORT_SYMBOL_GPL(ata_scsi_device_suspend);
5122EXPORT_SYMBOL_GPL(ata_scsi_device_resume);
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c
index e0439be4b573..c1ebede14a48 100644
--- a/drivers/scsi/libata-scsi.c
+++ b/drivers/scsi/libata-scsi.c
@@ -396,6 +396,22 @@ void ata_dump_status(unsigned id, struct ata_taskfile *tf)
396 } 396 }
397} 397}
398 398
399int ata_scsi_device_resume(struct scsi_device *sdev)
400{
401 struct ata_port *ap = (struct ata_port *) &sdev->host->hostdata[0];
402 struct ata_device *dev = &ap->device[sdev->id];
403
404 return ata_device_resume(ap, dev);
405}
406
407int ata_scsi_device_suspend(struct scsi_device *sdev)
408{
409 struct ata_port *ap = (struct ata_port *) &sdev->host->hostdata[0];
410 struct ata_device *dev = &ap->device[sdev->id];
411
412 return ata_device_suspend(ap, dev);
413}
414
399/** 415/**
400 * ata_to_sense_error - convert ATA error to SCSI error 416 * ata_to_sense_error - convert ATA error to SCSI error
401 * @id: ATA device number 417 * @id: ATA device number
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c
index 15842b1f0f4a..ea7f3a433572 100644
--- a/drivers/scsi/scsi_sysfs.c
+++ b/drivers/scsi/scsi_sysfs.c
@@ -263,9 +263,40 @@ static int scsi_bus_match(struct device *dev, struct device_driver *gendrv)
263 return (sdp->inq_periph_qual == SCSI_INQ_PQ_CON)? 1: 0; 263 return (sdp->inq_periph_qual == SCSI_INQ_PQ_CON)? 1: 0;
264} 264}
265 265
266static int scsi_bus_suspend(struct device * dev, pm_message_t state)
267{
268 struct scsi_device *sdev = to_scsi_device(dev);
269 struct scsi_host_template *sht = sdev->host->hostt;
270 int err;
271
272 err = scsi_device_quiesce(sdev);
273 if (err)
274 return err;
275
276 if (sht->suspend)
277 err = sht->suspend(sdev);
278
279 return err;
280}
281
282static int scsi_bus_resume(struct device * dev)
283{
284 struct scsi_device *sdev = to_scsi_device(dev);
285 struct scsi_host_template *sht = sdev->host->hostt;
286 int err = 0;
287
288 if (sht->resume)
289 err = sht->resume(sdev);
290
291 scsi_device_resume(sdev);
292 return err;
293}
294
266struct bus_type scsi_bus_type = { 295struct bus_type scsi_bus_type = {
267 .name = "scsi", 296 .name = "scsi",
268 .match = scsi_bus_match, 297 .match = scsi_bus_match,
298 .suspend = scsi_bus_suspend,
299 .resume = scsi_bus_resume,
269}; 300};
270 301
271int scsi_sysfs_register(void) 302int scsi_sysfs_register(void)