blob: e4b7998379485454d26e39f6a5a91917a155ffbb [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 Lu6627b382013-10-28 15:27:49 +080019#ifdef CONFIG_PM_SLEEP
20
Dan Williams3c31b522014-04-10 15:30:35 -070021static int do_scsi_suspend(struct device *dev, const struct dev_pm_ops *pm)
Alan Sterndb5bd1e2010-06-17 10:36:49 -040022{
Dan Williams3c31b522014-04-10 15:30:35 -070023 return pm && pm->suspend ? pm->suspend(dev) : 0;
24}
25
26static int do_scsi_freeze(struct device *dev, const struct dev_pm_ops *pm)
27{
28 return pm && pm->freeze ? pm->freeze(dev) : 0;
29}
30
31static int do_scsi_poweroff(struct device *dev, const struct dev_pm_ops *pm)
32{
33 return pm && pm->poweroff ? pm->poweroff(dev) : 0;
34}
35
36static int do_scsi_resume(struct device *dev, const struct dev_pm_ops *pm)
37{
38 return pm && pm->resume ? pm->resume(dev) : 0;
39}
40
41static int do_scsi_thaw(struct device *dev, const struct dev_pm_ops *pm)
42{
43 return pm && pm->thaw ? pm->thaw(dev) : 0;
44}
45
46static int do_scsi_restore(struct device *dev, const struct dev_pm_ops *pm)
47{
48 return pm && pm->restore ? pm->restore(dev) : 0;
49}
50
51static int scsi_dev_type_suspend(struct device *dev,
52 int (*cb)(struct device *, const struct dev_pm_ops *))
53{
54 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Alan Sterndb5bd1e2010-06-17 10:36:49 -040055 int err;
56
Dan Williams3c31b522014-04-10 15:30:35 -070057 /* flush pending in-flight resume operations, suspend is synchronous */
58 async_synchronize_full_domain(&scsi_sd_pm_domain);
59
Alan Sterndb5bd1e2010-06-17 10:36:49 -040060 err = scsi_device_quiesce(to_scsi_device(dev));
61 if (err == 0) {
Dan Williams3c31b522014-04-10 15:30:35 -070062 err = cb(dev, pm);
63 if (err)
64 scsi_device_resume(to_scsi_device(dev));
Alan Sterndb5bd1e2010-06-17 10:36:49 -040065 }
66 dev_dbg(dev, "scsi suspend: %d\n", err);
67 return err;
68}
69
Dan Williams3c31b522014-04-10 15:30:35 -070070static int scsi_dev_type_resume(struct device *dev,
71 int (*cb)(struct device *, const struct dev_pm_ops *))
Alan Sterndb5bd1e2010-06-17 10:36:49 -040072{
Dan Williams3c31b522014-04-10 15:30:35 -070073 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Alan Sterndb5bd1e2010-06-17 10:36:49 -040074 int err = 0;
75
Dan Williams3c31b522014-04-10 15:30:35 -070076 err = cb(dev, pm);
Alan Sterndb5bd1e2010-06-17 10:36:49 -040077 scsi_device_resume(to_scsi_device(dev));
78 dev_dbg(dev, "scsi resume: %d\n", err);
Dan Williams3c31b522014-04-10 15:30:35 -070079
80 if (err == 0) {
81 pm_runtime_disable(dev);
82 pm_runtime_set_active(dev);
83 pm_runtime_enable(dev);
84 }
85
Alan Sterndb5bd1e2010-06-17 10:36:49 -040086 return err;
87}
88
Aaron Lu80d2fd42012-11-09 15:27:54 +080089static int
Dan Williams3c31b522014-04-10 15:30:35 -070090scsi_bus_suspend_common(struct device *dev,
91 int (*cb)(struct device *, const struct dev_pm_ops *))
Alan Sterndb5bd1e2010-06-17 10:36:49 -040092{
93 int err = 0;
94
Lin Ming28640512011-12-05 09:20:25 +080095 if (scsi_is_sdev_device(dev)) {
96 /*
Aaron Lu80d2fd42012-11-09 15:27:54 +080097 * All the high-level SCSI drivers that implement runtime
98 * PM treat runtime suspend, system suspend, and system
Oliver Neukum95897912013-09-16 13:28:15 +020099 * hibernate nearly identically. In all cases the requirements
100 * for runtime suspension are stricter.
Lin Ming28640512011-12-05 09:20:25 +0800101 */
Aaron Lu80d2fd42012-11-09 15:27:54 +0800102 if (pm_runtime_suspended(dev))
103 return 0;
Lin Ming28640512011-12-05 09:20:25 +0800104
Aaron Lu80d2fd42012-11-09 15:27:54 +0800105 err = scsi_dev_type_suspend(dev, cb);
Lin Ming28640512011-12-05 09:20:25 +0800106 }
Aaron Lu80d2fd42012-11-09 15:27:54 +0800107
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400108 return err;
109}
110
Dan Williams3c31b522014-04-10 15:30:35 -0700111static void async_sdev_resume(void *dev, async_cookie_t cookie)
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400112{
Dan Williams3c31b522014-04-10 15:30:35 -0700113 scsi_dev_type_resume(dev, do_scsi_resume);
114}
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400115
Dan Williams3c31b522014-04-10 15:30:35 -0700116static void async_sdev_thaw(void *dev, async_cookie_t cookie)
117{
118 scsi_dev_type_resume(dev, do_scsi_thaw);
119}
Aaron Lu63347902012-11-09 15:27:52 +0800120
Dan Williams3c31b522014-04-10 15:30:35 -0700121static void async_sdev_restore(void *dev, async_cookie_t cookie)
122{
123 scsi_dev_type_resume(dev, do_scsi_restore);
124}
125
126static int scsi_bus_resume_common(struct device *dev,
127 int (*cb)(struct device *, const struct dev_pm_ops *))
128{
129 async_func_t fn;
130
131 if (!scsi_is_sdev_device(dev))
132 fn = NULL;
133 else if (cb == do_scsi_resume)
134 fn = async_sdev_resume;
135 else if (cb == do_scsi_thaw)
136 fn = async_sdev_thaw;
137 else if (cb == do_scsi_restore)
138 fn = async_sdev_restore;
139 else
140 fn = NULL;
141
142 if (fn) {
143 async_schedule_domain(fn, dev, &scsi_sd_pm_domain);
144
145 /*
146 * If a user has disabled async probing a likely reason
147 * is due to a storage enclosure that does not inject
148 * staggered spin-ups. For safety, make resume
149 * synchronous as well in that case.
150 */
151 if (strncmp(scsi_scan_type, "async", 5) != 0)
152 async_synchronize_full_domain(&scsi_sd_pm_domain);
153 } else {
Alan Sternbc4f2402010-06-17 10:41:42 -0400154 pm_runtime_disable(dev);
155 pm_runtime_set_active(dev);
156 pm_runtime_enable(dev);
157 }
Dan Williams3c31b522014-04-10 15:30:35 -0700158 return 0;
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400159}
160
Alan Sternfea6d602012-02-17 16:25:08 -0500161static int scsi_bus_prepare(struct device *dev)
162{
163 if (scsi_is_sdev_device(dev)) {
164 /* sd probing uses async_schedule. Wait until it finishes. */
Dan Williamsa7a20d12012-03-22 17:05:11 -0700165 async_synchronize_full_domain(&scsi_sd_probe_domain);
Alan Sternfea6d602012-02-17 16:25:08 -0500166
167 } else if (scsi_is_host_device(dev)) {
168 /* Wait until async scanning is finished */
169 scsi_complete_async_scans();
170 }
171 return 0;
172}
173
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400174static int scsi_bus_suspend(struct device *dev)
175{
Dan Williams3c31b522014-04-10 15:30:35 -0700176 return scsi_bus_suspend_common(dev, do_scsi_suspend);
Aaron Lu80d2fd42012-11-09 15:27:54 +0800177}
178
179static int scsi_bus_resume(struct device *dev)
180{
Dan Williams3c31b522014-04-10 15:30:35 -0700181 return scsi_bus_resume_common(dev, do_scsi_resume);
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400182}
183
184static int scsi_bus_freeze(struct device *dev)
185{
Dan Williams3c31b522014-04-10 15:30:35 -0700186 return scsi_bus_suspend_common(dev, do_scsi_freeze);
Aaron Lu80d2fd42012-11-09 15:27:54 +0800187}
188
189static int scsi_bus_thaw(struct device *dev)
190{
Dan Williams3c31b522014-04-10 15:30:35 -0700191 return scsi_bus_resume_common(dev, do_scsi_thaw);
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400192}
193
194static int scsi_bus_poweroff(struct device *dev)
195{
Dan Williams3c31b522014-04-10 15:30:35 -0700196 return scsi_bus_suspend_common(dev, do_scsi_poweroff);
Aaron Lu80d2fd42012-11-09 15:27:54 +0800197}
198
199static int scsi_bus_restore(struct device *dev)
200{
Dan Williams3c31b522014-04-10 15:30:35 -0700201 return scsi_bus_resume_common(dev, do_scsi_restore);
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400202}
203
204#else /* CONFIG_PM_SLEEP */
205
Alan Sternfea6d602012-02-17 16:25:08 -0500206#define scsi_bus_prepare NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400207#define scsi_bus_suspend NULL
Aaron Lu80d2fd42012-11-09 15:27:54 +0800208#define scsi_bus_resume NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400209#define scsi_bus_freeze NULL
Aaron Lu80d2fd42012-11-09 15:27:54 +0800210#define scsi_bus_thaw NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400211#define scsi_bus_poweroff NULL
Aaron Lu80d2fd42012-11-09 15:27:54 +0800212#define scsi_bus_restore NULL
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400213
214#endif /* CONFIG_PM_SLEEP */
215
Aaron Lu6627b382013-10-28 15:27:49 +0800216static int sdev_runtime_suspend(struct device *dev)
Lin Ming6df339a2013-03-23 11:42:28 +0800217{
Aaron Lu6627b382013-10-28 15:27:49 +0800218 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
219 struct scsi_device *sdev = to_scsi_device(dev);
Alan Stern49718f02015-08-17 11:02:42 -0400220 int err = 0;
Lin Ming6df339a2013-03-23 11:42:28 +0800221
Alan Stern49718f02015-08-17 11:02:42 -0400222 if (pm && pm->runtime_suspend) {
223 err = blk_pre_runtime_suspend(sdev->request_queue);
224 if (err)
225 return err;
Aaron Lu6627b382013-10-28 15:27:49 +0800226 err = pm->runtime_suspend(dev);
Alan Stern49718f02015-08-17 11:02:42 -0400227 blk_post_runtime_suspend(sdev->request_queue, err);
228 }
Lin Ming6df339a2013-03-23 11:42:28 +0800229 return err;
230}
231
Alan Sternbc4f2402010-06-17 10:41:42 -0400232static int scsi_runtime_suspend(struct device *dev)
233{
234 int err = 0;
235
236 dev_dbg(dev, "scsi_runtime_suspend\n");
Lin Ming6df339a2013-03-23 11:42:28 +0800237 if (scsi_is_sdev_device(dev))
238 err = sdev_runtime_suspend(dev);
Alan Sternbc4f2402010-06-17 10:41:42 -0400239
240 /* Insert hooks here for targets, hosts, and transport classes */
241
242 return err;
243}
244
Lin Ming6df339a2013-03-23 11:42:28 +0800245static int sdev_runtime_resume(struct device *dev)
246{
247 struct scsi_device *sdev = to_scsi_device(dev);
248 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Aaron Lu6627b382013-10-28 15:27:49 +0800249 int err = 0;
Lin Ming6df339a2013-03-23 11:42:28 +0800250
Alan Stern49718f02015-08-17 11:02:42 -0400251 if (pm && pm->runtime_resume) {
252 blk_pre_runtime_resume(sdev->request_queue);
Aaron Lu6627b382013-10-28 15:27:49 +0800253 err = pm->runtime_resume(dev);
Alan Stern49718f02015-08-17 11:02:42 -0400254 blk_post_runtime_resume(sdev->request_queue, err);
255 }
Aaron Lu6627b382013-10-28 15:27:49 +0800256 return err;
Lin Ming6df339a2013-03-23 11:42:28 +0800257}
258
Alan Sternbc4f2402010-06-17 10:41:42 -0400259static int scsi_runtime_resume(struct device *dev)
260{
261 int err = 0;
262
263 dev_dbg(dev, "scsi_runtime_resume\n");
264 if (scsi_is_sdev_device(dev))
Lin Ming6df339a2013-03-23 11:42:28 +0800265 err = sdev_runtime_resume(dev);
Alan Sternbc4f2402010-06-17 10:41:42 -0400266
267 /* Insert hooks here for targets, hosts, and transport classes */
268
269 return err;
270}
271
272static int scsi_runtime_idle(struct device *dev)
273{
Alan Sternbc4f2402010-06-17 10:41:42 -0400274 dev_dbg(dev, "scsi_runtime_idle\n");
275
276 /* Insert hooks here for targets, hosts, and transport classes */
277
Lin Ming6df339a2013-03-23 11:42:28 +0800278 if (scsi_is_sdev_device(dev)) {
Aaron Lu6627b382013-10-28 15:27:49 +0800279 pm_runtime_mark_last_busy(dev);
280 pm_runtime_autosuspend(dev);
281 return -EBUSY;
Lin Ming6df339a2013-03-23 11:42:28 +0800282 }
Aaron Lu6627b382013-10-28 15:27:49 +0800283
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +0200284 return 0;
Alan Sternbc4f2402010-06-17 10:41:42 -0400285}
286
287int scsi_autopm_get_device(struct scsi_device *sdev)
288{
289 int err;
290
291 err = pm_runtime_get_sync(&sdev->sdev_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200292 if (err < 0 && err !=-EACCES)
Alan Sternbc4f2402010-06-17 10:41:42 -0400293 pm_runtime_put_sync(&sdev->sdev_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200294 else
Alan Sternbc4f2402010-06-17 10:41:42 -0400295 err = 0;
296 return err;
297}
298EXPORT_SYMBOL_GPL(scsi_autopm_get_device);
299
300void scsi_autopm_put_device(struct scsi_device *sdev)
301{
302 pm_runtime_put_sync(&sdev->sdev_gendev);
303}
304EXPORT_SYMBOL_GPL(scsi_autopm_put_device);
305
306void scsi_autopm_get_target(struct scsi_target *starget)
307{
308 pm_runtime_get_sync(&starget->dev);
309}
310
311void scsi_autopm_put_target(struct scsi_target *starget)
312{
313 pm_runtime_put_sync(&starget->dev);
314}
315
316int scsi_autopm_get_host(struct Scsi_Host *shost)
317{
318 int err;
319
320 err = pm_runtime_get_sync(&shost->shost_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200321 if (err < 0 && err !=-EACCES)
Alan Sternbc4f2402010-06-17 10:41:42 -0400322 pm_runtime_put_sync(&shost->shost_gendev);
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200323 else
Alan Sternbc4f2402010-06-17 10:41:42 -0400324 err = 0;
325 return err;
326}
327
328void scsi_autopm_put_host(struct Scsi_Host *shost)
329{
330 pm_runtime_put_sync(&shost->shost_gendev);
331}
332
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400333const struct dev_pm_ops scsi_bus_pm_ops = {
Alan Sternfea6d602012-02-17 16:25:08 -0500334 .prepare = scsi_bus_prepare,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400335 .suspend = scsi_bus_suspend,
Aaron Lu80d2fd42012-11-09 15:27:54 +0800336 .resume = scsi_bus_resume,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400337 .freeze = scsi_bus_freeze,
Aaron Lu80d2fd42012-11-09 15:27:54 +0800338 .thaw = scsi_bus_thaw,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400339 .poweroff = scsi_bus_poweroff,
Aaron Lu80d2fd42012-11-09 15:27:54 +0800340 .restore = scsi_bus_restore,
Alan Sternbc4f2402010-06-17 10:41:42 -0400341 .runtime_suspend = scsi_runtime_suspend,
342 .runtime_resume = scsi_runtime_resume,
343 .runtime_idle = scsi_runtime_idle,
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400344};