aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorLin Ming <ming.m.lin@intel.com>2011-12-04 20:20:28 -0500
committerJeff Garzik <jgarzik@redhat.com>2012-01-08 19:14:58 -0500
commit9ee4f3933930abf5cc34f8e9d69fe0e08c18f602 (patch)
tree7d3751d52712f71a19d488f9970b6184b4c140c6 /drivers/ata
parent5ef41082912bdfcb33fa53b8dba2ad17dea2ef90 (diff)
ata: add ata port runtime PM callbacks
Add ata port runtime suspend/resume/idle callbacks. Set ->eh_noresume to skip the runtime PM calls on scsi host in the error handler to avoid dead lock. Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/libata-core.c10
-rw-r--r--drivers/ata/libata-scsi.c1
-rw-r--r--drivers/ata/libata-transport.c4
3 files changed, 15 insertions, 0 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index 04c208e3cec6..15a3d4deb272 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -66,6 +66,7 @@
66#include <asm/byteorder.h> 66#include <asm/byteorder.h>
67#include <linux/cdrom.h> 67#include <linux/cdrom.h>
68#include <linux/ratelimit.h> 68#include <linux/ratelimit.h>
69#include <linux/pm_runtime.h>
69 70
70#include "libata.h" 71#include "libata.h"
71#include "libata-transport.h" 72#include "libata-transport.h"
@@ -5307,9 +5308,18 @@ static int ata_port_resume(struct device *dev)
5307 return rc; 5308 return rc;
5308} 5309}
5309 5310
5311static int ata_port_runtime_idle(struct device *dev)
5312{
5313 return pm_runtime_suspend(dev);
5314}
5315
5310static const struct dev_pm_ops ata_port_pm_ops = { 5316static const struct dev_pm_ops ata_port_pm_ops = {
5311 .suspend = ata_port_suspend, 5317 .suspend = ata_port_suspend,
5312 .resume = ata_port_resume, 5318 .resume = ata_port_resume,
5319
5320 .runtime_suspend = ata_port_suspend_common,
5321 .runtime_resume = ata_port_resume,
5322 .runtime_idle = ata_port_runtime_idle,
5313}; 5323};
5314 5324
5315/** 5325/**
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c
index 7ae1e771d950..508a60bfe5c1 100644
--- a/drivers/ata/libata-scsi.c
+++ b/drivers/ata/libata-scsi.c
@@ -3381,6 +3381,7 @@ int ata_scsi_add_hosts(struct ata_host *host, struct scsi_host_template *sht)
3381 if (!shost) 3381 if (!shost)
3382 goto err_alloc; 3382 goto err_alloc;
3383 3383
3384 shost->eh_noresume = 1;
3384 *(struct ata_port **)&shost->hostdata[0] = ap; 3385 *(struct ata_port **)&shost->hostdata[0] = ap;
3385 ap->scsi_host = shost; 3386 ap->scsi_host = shost;
3386 3387
diff --git a/drivers/ata/libata-transport.c b/drivers/ata/libata-transport.c
index 3ceb3d94be26..9a7f0ea565df 100644
--- a/drivers/ata/libata-transport.c
+++ b/drivers/ata/libata-transport.c
@@ -32,6 +32,7 @@
32#include <linux/libata.h> 32#include <linux/libata.h>
33#include <linux/hdreg.h> 33#include <linux/hdreg.h>
34#include <linux/uaccess.h> 34#include <linux/uaccess.h>
35#include <linux/pm_runtime.h>
35 36
36#include "libata.h" 37#include "libata.h"
37#include "libata-transport.h" 38#include "libata-transport.h"
@@ -290,6 +291,9 @@ int ata_tport_add(struct device *parent,
290 goto tport_err; 291 goto tport_err;
291 } 292 }
292 293
294 pm_runtime_set_active(dev);
295 pm_runtime_enable(dev);
296
293 transport_add_device(dev); 297 transport_add_device(dev);
294 transport_configure_device(dev); 298 transport_configure_device(dev);
295 299