2 * scsi_pm.c Copyright (C) 2010 Alan Stern
4 * SCSI dynamic Power Management
8 #include <linux/pm_runtime.h>
9 #include <linux/export.h>
10 #include <linux/async.h>
12 #include <scsi/scsi.h>
13 #include <scsi/scsi_device.h>
14 #include <scsi/scsi_driver.h>
15 #include <scsi/scsi_host.h>
17 #include "scsi_priv.h"
19 static int scsi_dev_type_suspend(struct device *dev, int (*cb)(struct device *))
23 err = scsi_device_quiesce(to_scsi_device(dev));
28 scsi_device_resume(to_scsi_device(dev));
31 dev_dbg(dev, "scsi suspend: %d\n", err);
35 static int scsi_dev_type_resume(struct device *dev, int (*cb)(struct device *))
41 scsi_device_resume(to_scsi_device(dev));
42 dev_dbg(dev, "scsi resume: %d\n", err);
46 #ifdef CONFIG_PM_SLEEP
49 scsi_bus_suspend_common(struct device *dev, int (*cb)(struct device *))
53 if (scsi_is_sdev_device(dev)) {
55 * All the high-level SCSI drivers that implement runtime
56 * PM treat runtime suspend, system suspend, and system
57 * hibernate nearly identically. In all cases the requirements
58 * for runtime suspension are stricter.
60 if (pm_runtime_suspended(dev))
63 err = scsi_dev_type_suspend(dev, cb);
70 scsi_bus_resume_common(struct device *dev, int (*cb)(struct device *))
74 if (scsi_is_sdev_device(dev))
75 err = scsi_dev_type_resume(dev, cb);
78 pm_runtime_disable(dev);
79 pm_runtime_set_active(dev);
80 pm_runtime_enable(dev);
85 static int scsi_bus_prepare(struct device *dev)
87 if (scsi_is_sdev_device(dev)) {
88 /* sd probing uses async_schedule. Wait until it finishes. */
89 async_synchronize_full_domain(&scsi_sd_probe_domain);
91 } else if (scsi_is_host_device(dev)) {
92 /* Wait until async scanning is finished */
93 scsi_complete_async_scans();
98 static int scsi_bus_suspend(struct device *dev)
100 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
101 return scsi_bus_suspend_common(dev, pm ? pm->suspend : NULL);
104 static int scsi_bus_resume(struct device *dev)
106 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
107 return scsi_bus_resume_common(dev, pm ? pm->resume : NULL);
110 static int scsi_bus_freeze(struct device *dev)
112 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
113 return scsi_bus_suspend_common(dev, pm ? pm->freeze : NULL);
116 static int scsi_bus_thaw(struct device *dev)
118 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
119 return scsi_bus_resume_common(dev, pm ? pm->thaw : NULL);
122 static int scsi_bus_poweroff(struct device *dev)
124 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
125 return scsi_bus_suspend_common(dev, pm ? pm->poweroff : NULL);
128 static int scsi_bus_restore(struct device *dev)
130 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
131 return scsi_bus_resume_common(dev, pm ? pm->restore : NULL);
134 #else /* CONFIG_PM_SLEEP */
136 #define scsi_bus_prepare NULL
137 #define scsi_bus_suspend NULL
138 #define scsi_bus_resume NULL
139 #define scsi_bus_freeze NULL
140 #define scsi_bus_thaw NULL
141 #define scsi_bus_poweroff NULL
142 #define scsi_bus_restore NULL
144 #endif /* CONFIG_PM_SLEEP */
146 #ifdef CONFIG_PM_RUNTIME
148 static int sdev_blk_runtime_suspend(struct scsi_device *sdev,
149 int (*cb)(struct device *))
153 err = blk_pre_runtime_suspend(sdev->request_queue);
157 err = cb(&sdev->sdev_gendev);
158 blk_post_runtime_suspend(sdev->request_queue, err);
163 static int sdev_runtime_suspend(struct device *dev)
165 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
166 int (*cb)(struct device *) = pm ? pm->runtime_suspend : NULL;
167 struct scsi_device *sdev = to_scsi_device(dev);
170 if (sdev->request_queue->dev)
171 return sdev_blk_runtime_suspend(sdev, cb);
173 err = scsi_dev_type_suspend(dev, cb);
175 pm_schedule_suspend(dev, jiffies_to_msecs(
176 round_jiffies_up_relative(HZ/10)));
180 static int scsi_runtime_suspend(struct device *dev)
184 dev_dbg(dev, "scsi_runtime_suspend\n");
185 if (scsi_is_sdev_device(dev))
186 err = sdev_runtime_suspend(dev);
188 /* Insert hooks here for targets, hosts, and transport classes */
193 static int sdev_blk_runtime_resume(struct scsi_device *sdev,
194 int (*cb)(struct device *))
198 blk_pre_runtime_resume(sdev->request_queue);
200 err = cb(&sdev->sdev_gendev);
201 blk_post_runtime_resume(sdev->request_queue, err);
206 static int sdev_runtime_resume(struct device *dev)
208 struct scsi_device *sdev = to_scsi_device(dev);
209 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
210 int (*cb)(struct device *) = pm ? pm->runtime_resume : NULL;
212 if (sdev->request_queue->dev)
213 return sdev_blk_runtime_resume(sdev, cb);
215 return scsi_dev_type_resume(dev, cb);
218 static int scsi_runtime_resume(struct device *dev)
222 dev_dbg(dev, "scsi_runtime_resume\n");
223 if (scsi_is_sdev_device(dev))
224 err = sdev_runtime_resume(dev);
226 /* Insert hooks here for targets, hosts, and transport classes */
231 static int scsi_runtime_idle(struct device *dev)
233 dev_dbg(dev, "scsi_runtime_idle\n");
235 /* Insert hooks here for targets, hosts, and transport classes */
237 if (scsi_is_sdev_device(dev)) {
238 struct scsi_device *sdev = to_scsi_device(dev);
240 if (sdev->request_queue->dev) {
241 pm_runtime_mark_last_busy(dev);
242 pm_runtime_autosuspend(dev);
249 int scsi_autopm_get_device(struct scsi_device *sdev)
253 err = pm_runtime_get_sync(&sdev->sdev_gendev);
254 if (err < 0 && err !=-EACCES)
255 pm_runtime_put_sync(&sdev->sdev_gendev);
260 EXPORT_SYMBOL_GPL(scsi_autopm_get_device);
262 void scsi_autopm_put_device(struct scsi_device *sdev)
264 pm_runtime_put_sync(&sdev->sdev_gendev);
266 EXPORT_SYMBOL_GPL(scsi_autopm_put_device);
268 void scsi_autopm_get_target(struct scsi_target *starget)
270 pm_runtime_get_sync(&starget->dev);
273 void scsi_autopm_put_target(struct scsi_target *starget)
275 pm_runtime_put_sync(&starget->dev);
278 int scsi_autopm_get_host(struct Scsi_Host *shost)
282 err = pm_runtime_get_sync(&shost->shost_gendev);
283 if (err < 0 && err !=-EACCES)
284 pm_runtime_put_sync(&shost->shost_gendev);
290 void scsi_autopm_put_host(struct Scsi_Host *shost)
292 pm_runtime_put_sync(&shost->shost_gendev);
297 #define scsi_runtime_suspend NULL
298 #define scsi_runtime_resume NULL
299 #define scsi_runtime_idle NULL
301 #endif /* CONFIG_PM_RUNTIME */
303 const struct dev_pm_ops scsi_bus_pm_ops = {
304 .prepare = scsi_bus_prepare,
305 .suspend = scsi_bus_suspend,
306 .resume = scsi_bus_resume,
307 .freeze = scsi_bus_freeze,
308 .thaw = scsi_bus_thaw,
309 .poweroff = scsi_bus_poweroff,
310 .restore = scsi_bus_restore,
311 .runtime_suspend = scsi_runtime_suspend,
312 .runtime_resume = scsi_runtime_resume,
313 .runtime_idle = scsi_runtime_idle,