blob: 42539ee2cb111f0e10a6b152d9a0d60cbb2d895b [file] [log] [blame]
Alan Sterndb5bd1e2010-06-17 10:36:49 -04001/*
2 * scsi_pm.c Copyright (C) 2010 Alan Stern
3 *
4 * SCSI dynamic Power Management
5 * Initial version: Alan Stern <stern@rowland.harvard.edu>
6 */
7
8#include <linux/pm_runtime.h>
Paul Gortmaker09703662011-05-27 09:37:25 -04009#include <linux/export.h>
Alan Sternfea6d602012-02-17 16:25:08 -050010#include <linux/async.h>
Alan Sterndb5bd1e2010-06-17 10:36:49 -040011
12#include <scsi/scsi.h>
13#include <scsi/scsi_device.h>
14#include <scsi/scsi_driver.h>
15#include <scsi/scsi_host.h>
16
17#include "scsi_priv.h"
18
Aaron Lu80d2fd42012-11-09 15:27:54 +080019static int scsi_dev_type_suspend(struct device *dev, int (*cb)(struct device *))
Alan Sterndb5bd1e2010-06-17 10:36:49 -040020{
Alan Sterndb5bd1e2010-06-17 10:36:49 -040021 int err;
22
23 err = scsi_device_quiesce(to_scsi_device(dev));
24 if (err == 0) {
Aaron Lu80d2fd42012-11-09 15:27:54 +080025 if (cb) {
26 err = cb(dev);
Aaron Lud20ec592012-05-15 14:43:00 +080027 if (err)
28 scsi_device_resume(to_scsi_device(dev));
29 }
Alan Sterndb5bd1e2010-06-17 10:36:49 -040030 }
31 dev_dbg(dev, "scsi suspend: %d\n", err);
32 return err;
33}
34
Aaron Lu80d2fd42012-11-09 15:27:54 +080035static int scsi_dev_type_resume(struct device *dev, int (*cb)(struct device *))
Alan Sterndb5bd1e2010-06-17 10:36:49 -040036{
Alan Sterndb5bd1e2010-06-17 10:36:49 -040037 int err = 0;
38
Aaron Lu80d2fd42012-11-09 15:27:54 +080039 if (cb)
40 err = cb(dev);
Alan Sterndb5bd1e2010-06-17 10:36:49 -040041 scsi_device_resume(to_scsi_device(dev));
42 dev_dbg(dev, "scsi resume: %d\n", err);
43 return err;
44}
45
46#ifdef CONFIG_PM_SLEEP
47
Aaron Lu80d2fd42012-11-09 15:27:54 +080048static int
49scsi_bus_suspend_common(struct device *dev, int (*cb)(struct device *))
Alan Sterndb5bd1e2010-06-17 10:36:49 -040050{
51 int err = 0;
52
Lin Ming28640512011-12-05 09:20:25 +080053 if (scsi_is_sdev_device(dev)) {
54 /*
Aaron Lu80d2fd42012-11-09 15:27:54 +080055 * All the high-level SCSI drivers that implement runtime
56 * PM treat runtime suspend, system suspend, and system
57 * hibernate identically.
Lin Ming28640512011-12-05 09:20:25 +080058 */
Aaron Lu80d2fd42012-11-09 15:27:54 +080059 if (pm_runtime_suspended(dev))
60 return 0;
Lin Ming28640512011-12-05 09:20:25 +080061
Aaron Lu80d2fd42012-11-09 15:27:54 +080062 err = scsi_dev_type_suspend(dev, cb);
Lin Ming28640512011-12-05 09:20:25 +080063 }
Aaron Lu80d2fd42012-11-09 15:27:54 +080064
Alan Sterndb5bd1e2010-06-17 10:36:49 -040065 return err;
66}
67
Aaron Lu80d2fd42012-11-09 15:27:54 +080068static int
69scsi_bus_resume_common(struct device *dev, int (*cb)(struct device *))
Alan Sterndb5bd1e2010-06-17 10:36:49 -040070{
71 int err = 0;
72
Aaron Lu9c31d8e2012-11-09 15:27:53 +080073 if (scsi_is_sdev_device(dev))
Aaron Lu80d2fd42012-11-09 15:27:54 +080074 err = scsi_dev_type_resume(dev, cb);
Aaron Lu63347902012-11-09 15:27:52 +080075
Alan Sternbc4f2402010-06-17 10:41:42 -040076 if (err == 0) {
77 pm_runtime_disable(dev);
78 pm_runtime_set_active(dev);
79 pm_runtime_enable(dev);
80 }
Alan Sterndb5bd1e2010-06-17 10:36:49 -040081 return err;
82}
83
Alan Sternfea6d602012-02-17 16:25:08 -050084static int scsi_bus_prepare(struct device *dev)
85{
86 if (scsi_is_sdev_device(dev)) {
87 /* sd probing uses async_schedule. Wait until it finishes. */
Dan Williamsa7a20d12012-03-22 17:05:11 -070088 async_synchronize_full_domain(&scsi_sd_probe_domain);
Alan Sternfea6d602012-02-17 16:25:08 -050089
90 } else if (scsi_is_host_device(dev)) {
91 /* Wait until async scanning is finished */
92 scsi_complete_async_scans();
93 }
94 return 0;
95}
96
Alan Sterndb5bd1e2010-06-17 10:36:49 -040097static int scsi_bus_suspend(struct device *dev)
98{
Aaron Lu80d2fd42012-11-09 15:27:54 +080099 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
100 return scsi_bus_suspend_common(dev, pm ? pm->suspend : NULL);
101}
102
103static int scsi_bus_resume(struct device *dev)
104{
105 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
106 return scsi_bus_resume_common(dev, pm ? pm->resume : NULL);
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400107}
108
109static int scsi_bus_freeze(struct device *dev)
110{
Aaron Lu80d2fd42012-11-09 15:27:54 +0800111 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
112 return scsi_bus_suspend_common(dev, pm ? pm->freeze : NULL);
113}
114
115static int scsi_bus_thaw(struct device *dev)
116{
117 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
118 return scsi_bus_resume_common(dev, pm ? pm->thaw : NULL);
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400119}
120
121static int scsi_bus_poweroff(struct device *dev)
122{
Aaron Lu80d2fd42012-11-09 15:27:54 +0800123 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
124 return scsi_bus_suspend_common(dev, pm ? pm->poweroff : NULL);
125}
126
127static int scsi_bus_restore(struct device *dev)
128{
129 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
130 return scsi_bus_resume_common(dev, pm ? pm->restore : NULL);
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400131}
132
133#else /* CONFIG_PM_SLEEP */
134
Alan Sternfea6d602012-02-17 16:25:08 -0500135#define scsi_bus_prepare NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400136#define scsi_bus_suspend NULL
Aaron Lu80d2fd42012-11-09 15:27:54 +0800137#define scsi_bus_resume NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400138#define scsi_bus_freeze NULL
Aaron Lu80d2fd42012-11-09 15:27:54 +0800139#define scsi_bus_thaw NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400140#define scsi_bus_poweroff NULL
Aaron Lu80d2fd42012-11-09 15:27:54 +0800141#define scsi_bus_restore NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400142
143#endif /* CONFIG_PM_SLEEP */
144
Alan Sternbc4f2402010-06-17 10:41:42 -0400145#ifdef CONFIG_PM_RUNTIME
146
Lin Ming6df339a2013-03-23 11:42:28 +0800147static int sdev_blk_runtime_suspend(struct scsi_device *sdev,
148 int (*cb)(struct device *))
149{
150 int err;
151
152 err = blk_pre_runtime_suspend(sdev->request_queue);
153 if (err)
154 return err;
155 if (cb)
156 err = cb(&sdev->sdev_gendev);
157 blk_post_runtime_suspend(sdev->request_queue, err);
158
159 return err;
160}
161
162static int sdev_runtime_suspend(struct device *dev)
163{
164 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
165 int (*cb)(struct device *) = pm ? pm->runtime_suspend : NULL;
166 struct scsi_device *sdev = to_scsi_device(dev);
167 int err;
168
169 if (sdev->request_queue->dev)
170 return sdev_blk_runtime_suspend(sdev, cb);
171
172 err = scsi_dev_type_suspend(dev, cb);
173 if (err == -EAGAIN)
174 pm_schedule_suspend(dev, jiffies_to_msecs(
175 round_jiffies_up_relative(HZ/10)));
176 return err;
177}
178
Alan Sternbc4f2402010-06-17 10:41:42 -0400179static int scsi_runtime_suspend(struct device *dev)
180{
181 int err = 0;
182
183 dev_dbg(dev, "scsi_runtime_suspend\n");
Lin Ming6df339a2013-03-23 11:42:28 +0800184 if (scsi_is_sdev_device(dev))
185 err = sdev_runtime_suspend(dev);
Alan Sternbc4f2402010-06-17 10:41:42 -0400186
187 /* Insert hooks here for targets, hosts, and transport classes */
188
189 return err;
190}
191
Lin Ming6df339a2013-03-23 11:42:28 +0800192static int sdev_blk_runtime_resume(struct scsi_device *sdev,
193 int (*cb)(struct device *))
194{
195 int err = 0;
196
197 blk_pre_runtime_resume(sdev->request_queue);
198 if (cb)
199 err = cb(&sdev->sdev_gendev);
200 blk_post_runtime_resume(sdev->request_queue, err);
201
202 return err;
203}
204
205static int sdev_runtime_resume(struct device *dev)
206{
207 struct scsi_device *sdev = to_scsi_device(dev);
208 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
209 int (*cb)(struct device *) = pm ? pm->runtime_resume : NULL;
210
211 if (sdev->request_queue->dev)
212 return sdev_blk_runtime_resume(sdev, cb);
213 else
214 return scsi_dev_type_resume(dev, cb);
215}
216
Alan Sternbc4f2402010-06-17 10:41:42 -0400217static int scsi_runtime_resume(struct device *dev)
218{
219 int err = 0;
220
221 dev_dbg(dev, "scsi_runtime_resume\n");
222 if (scsi_is_sdev_device(dev))
Lin Ming6df339a2013-03-23 11:42:28 +0800223 err = sdev_runtime_resume(dev);
Alan Sternbc4f2402010-06-17 10:41:42 -0400224
225 /* Insert hooks here for targets, hosts, and transport classes */
226
227 return err;
228}
229
230static int scsi_runtime_idle(struct device *dev)
231{
232 int err;
233
234 dev_dbg(dev, "scsi_runtime_idle\n");
235
236 /* Insert hooks here for targets, hosts, and transport classes */
237
Lin Ming6df339a2013-03-23 11:42:28 +0800238 if (scsi_is_sdev_device(dev)) {
239 struct scsi_device *sdev = to_scsi_device(dev);
240
241 if (sdev->request_queue->dev) {
242 pm_runtime_mark_last_busy(dev);
243 err = pm_runtime_autosuspend(dev);
244 } else {
245 err = pm_runtime_suspend(dev);
246 }
247 } else {
Alan Sternbc4f2402010-06-17 10:41:42 -0400248 err = pm_runtime_suspend(dev);
Lin Ming6df339a2013-03-23 11:42:28 +0800249 }
Alan Sternbc4f2402010-06-17 10:41:42 -0400250 return err;
251}
252
253int scsi_autopm_get_device(struct scsi_device *sdev)
254{
255 int err;
256
257 err = pm_runtime_get_sync(&sdev->sdev_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200258 if (err < 0 && err !=-EACCES)
Alan Sternbc4f2402010-06-17 10:41:42 -0400259 pm_runtime_put_sync(&sdev->sdev_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200260 else
Alan Sternbc4f2402010-06-17 10:41:42 -0400261 err = 0;
262 return err;
263}
264EXPORT_SYMBOL_GPL(scsi_autopm_get_device);
265
266void scsi_autopm_put_device(struct scsi_device *sdev)
267{
268 pm_runtime_put_sync(&sdev->sdev_gendev);
269}
270EXPORT_SYMBOL_GPL(scsi_autopm_put_device);
271
272void scsi_autopm_get_target(struct scsi_target *starget)
273{
274 pm_runtime_get_sync(&starget->dev);
275}
276
277void scsi_autopm_put_target(struct scsi_target *starget)
278{
279 pm_runtime_put_sync(&starget->dev);
280}
281
282int scsi_autopm_get_host(struct Scsi_Host *shost)
283{
284 int err;
285
286 err = pm_runtime_get_sync(&shost->shost_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200287 if (err < 0 && err !=-EACCES)
Alan Sternbc4f2402010-06-17 10:41:42 -0400288 pm_runtime_put_sync(&shost->shost_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200289 else
Alan Sternbc4f2402010-06-17 10:41:42 -0400290 err = 0;
291 return err;
292}
293
294void scsi_autopm_put_host(struct Scsi_Host *shost)
295{
296 pm_runtime_put_sync(&shost->shost_gendev);
297}
298
299#else
300
301#define scsi_runtime_suspend NULL
302#define scsi_runtime_resume NULL
303#define scsi_runtime_idle NULL
304
305#endif /* CONFIG_PM_RUNTIME */
306
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400307const struct dev_pm_ops scsi_bus_pm_ops = {
Alan Sternfea6d602012-02-17 16:25:08 -0500308 .prepare = scsi_bus_prepare,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400309 .suspend = scsi_bus_suspend,
Aaron Lu80d2fd42012-11-09 15:27:54 +0800310 .resume = scsi_bus_resume,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400311 .freeze = scsi_bus_freeze,
Aaron Lu80d2fd42012-11-09 15:27:54 +0800312 .thaw = scsi_bus_thaw,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400313 .poweroff = scsi_bus_poweroff,
Aaron Lu80d2fd42012-11-09 15:27:54 +0800314 .restore = scsi_bus_restore,
Alan Sternbc4f2402010-06-17 10:41:42 -0400315 .runtime_suspend = scsi_runtime_suspend,
316 .runtime_resume = scsi_runtime_resume,
317 .runtime_idle = scsi_runtime_idle,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400318};