lkdtm: Add Control Flow Integrity test
[linux/fpc-iii.git] / drivers / scsi / scsi_pm.c
blob74ded5f3c23675ba7c3be2b312601aa11c48be0c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * scsi_pm.c Copyright (C) 2010 Alan Stern
5 * SCSI dynamic Power Management
6 * Initial version: Alan Stern <stern@rowland.harvard.edu>
7 */
9 #include <linux/pm_runtime.h>
10 #include <linux/export.h>
11 #include <linux/async.h>
12 #include <linux/blk-pm.h>
14 #include <scsi/scsi.h>
15 #include <scsi/scsi_device.h>
16 #include <scsi/scsi_driver.h>
17 #include <scsi/scsi_host.h>
19 #include "scsi_priv.h"
21 #ifdef CONFIG_PM_SLEEP
23 static int do_scsi_suspend(struct device *dev, const struct dev_pm_ops *pm)
25 return pm && pm->suspend ? pm->suspend(dev) : 0;
28 static int do_scsi_freeze(struct device *dev, const struct dev_pm_ops *pm)
30 return pm && pm->freeze ? pm->freeze(dev) : 0;
33 static int do_scsi_poweroff(struct device *dev, const struct dev_pm_ops *pm)
35 return pm && pm->poweroff ? pm->poweroff(dev) : 0;
38 static int do_scsi_resume(struct device *dev, const struct dev_pm_ops *pm)
40 return pm && pm->resume ? pm->resume(dev) : 0;
43 static int do_scsi_thaw(struct device *dev, const struct dev_pm_ops *pm)
45 return pm && pm->thaw ? pm->thaw(dev) : 0;
48 static int do_scsi_restore(struct device *dev, const struct dev_pm_ops *pm)
50 return pm && pm->restore ? pm->restore(dev) : 0;
53 static int scsi_dev_type_suspend(struct device *dev,
54 int (*cb)(struct device *, const struct dev_pm_ops *))
56 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
57 int err;
59 /* flush pending in-flight resume operations, suspend is synchronous */
60 async_synchronize_full_domain(&scsi_sd_pm_domain);
62 err = scsi_device_quiesce(to_scsi_device(dev));
63 if (err == 0) {
64 err = cb(dev, pm);
65 if (err)
66 scsi_device_resume(to_scsi_device(dev));
68 dev_dbg(dev, "scsi suspend: %d\n", err);
69 return err;
72 static int scsi_dev_type_resume(struct device *dev,
73 int (*cb)(struct device *, const struct dev_pm_ops *))
75 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
76 int err = 0;
78 err = cb(dev, pm);
79 scsi_device_resume(to_scsi_device(dev));
80 dev_dbg(dev, "scsi resume: %d\n", err);
82 if (err == 0) {
83 pm_runtime_disable(dev);
84 err = pm_runtime_set_active(dev);
85 pm_runtime_enable(dev);
88 * Forcibly set runtime PM status of request queue to "active"
89 * to make sure we can again get requests from the queue
90 * (see also blk_pm_peek_request()).
92 * The resume hook will correct runtime PM status of the disk.
94 if (!err && scsi_is_sdev_device(dev)) {
95 struct scsi_device *sdev = to_scsi_device(dev);
97 if (sdev->request_queue->dev)
98 blk_set_runtime_active(sdev->request_queue);
102 return err;
105 static int
106 scsi_bus_suspend_common(struct device *dev,
107 int (*cb)(struct device *, const struct dev_pm_ops *))
109 int err = 0;
111 if (scsi_is_sdev_device(dev)) {
113 * All the high-level SCSI drivers that implement runtime
114 * PM treat runtime suspend, system suspend, and system
115 * hibernate nearly identically. In all cases the requirements
116 * for runtime suspension are stricter.
118 if (pm_runtime_suspended(dev))
119 return 0;
121 err = scsi_dev_type_suspend(dev, cb);
124 return err;
127 static void async_sdev_resume(void *dev, async_cookie_t cookie)
129 scsi_dev_type_resume(dev, do_scsi_resume);
132 static void async_sdev_thaw(void *dev, async_cookie_t cookie)
134 scsi_dev_type_resume(dev, do_scsi_thaw);
137 static void async_sdev_restore(void *dev, async_cookie_t cookie)
139 scsi_dev_type_resume(dev, do_scsi_restore);
142 static int scsi_bus_resume_common(struct device *dev,
143 int (*cb)(struct device *, const struct dev_pm_ops *))
145 async_func_t fn;
147 if (!scsi_is_sdev_device(dev))
148 fn = NULL;
149 else if (cb == do_scsi_resume)
150 fn = async_sdev_resume;
151 else if (cb == do_scsi_thaw)
152 fn = async_sdev_thaw;
153 else if (cb == do_scsi_restore)
154 fn = async_sdev_restore;
155 else
156 fn = NULL;
158 if (fn) {
159 async_schedule_domain(fn, dev, &scsi_sd_pm_domain);
162 * If a user has disabled async probing a likely reason
163 * is due to a storage enclosure that does not inject
164 * staggered spin-ups. For safety, make resume
165 * synchronous as well in that case.
167 if (strncmp(scsi_scan_type, "async", 5) != 0)
168 async_synchronize_full_domain(&scsi_sd_pm_domain);
169 } else {
170 pm_runtime_disable(dev);
171 pm_runtime_set_active(dev);
172 pm_runtime_enable(dev);
174 return 0;
177 static int scsi_bus_prepare(struct device *dev)
179 if (scsi_is_host_device(dev)) {
180 /* Wait until async scanning is finished */
181 scsi_complete_async_scans();
183 return 0;
186 static int scsi_bus_suspend(struct device *dev)
188 return scsi_bus_suspend_common(dev, do_scsi_suspend);
191 static int scsi_bus_resume(struct device *dev)
193 return scsi_bus_resume_common(dev, do_scsi_resume);
196 static int scsi_bus_freeze(struct device *dev)
198 return scsi_bus_suspend_common(dev, do_scsi_freeze);
201 static int scsi_bus_thaw(struct device *dev)
203 return scsi_bus_resume_common(dev, do_scsi_thaw);
206 static int scsi_bus_poweroff(struct device *dev)
208 return scsi_bus_suspend_common(dev, do_scsi_poweroff);
211 static int scsi_bus_restore(struct device *dev)
213 return scsi_bus_resume_common(dev, do_scsi_restore);
216 #else /* CONFIG_PM_SLEEP */
218 #define scsi_bus_prepare NULL
219 #define scsi_bus_suspend NULL
220 #define scsi_bus_resume NULL
221 #define scsi_bus_freeze NULL
222 #define scsi_bus_thaw NULL
223 #define scsi_bus_poweroff NULL
224 #define scsi_bus_restore NULL
226 #endif /* CONFIG_PM_SLEEP */
228 static int sdev_runtime_suspend(struct device *dev)
230 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
231 struct scsi_device *sdev = to_scsi_device(dev);
232 int err = 0;
234 err = blk_pre_runtime_suspend(sdev->request_queue);
235 if (err)
236 return err;
237 if (pm && pm->runtime_suspend)
238 err = pm->runtime_suspend(dev);
239 blk_post_runtime_suspend(sdev->request_queue, err);
241 return err;
244 static int scsi_runtime_suspend(struct device *dev)
246 int err = 0;
248 dev_dbg(dev, "scsi_runtime_suspend\n");
249 if (scsi_is_sdev_device(dev))
250 err = sdev_runtime_suspend(dev);
252 /* Insert hooks here for targets, hosts, and transport classes */
254 return err;
257 static int sdev_runtime_resume(struct device *dev)
259 struct scsi_device *sdev = to_scsi_device(dev);
260 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
261 int err = 0;
263 blk_pre_runtime_resume(sdev->request_queue);
264 if (pm && pm->runtime_resume)
265 err = pm->runtime_resume(dev);
266 blk_post_runtime_resume(sdev->request_queue, err);
268 return err;
271 static int scsi_runtime_resume(struct device *dev)
273 int err = 0;
275 dev_dbg(dev, "scsi_runtime_resume\n");
276 if (scsi_is_sdev_device(dev))
277 err = sdev_runtime_resume(dev);
279 /* Insert hooks here for targets, hosts, and transport classes */
281 return err;
284 static int scsi_runtime_idle(struct device *dev)
286 dev_dbg(dev, "scsi_runtime_idle\n");
288 /* Insert hooks here for targets, hosts, and transport classes */
290 if (scsi_is_sdev_device(dev)) {
291 pm_runtime_mark_last_busy(dev);
292 pm_runtime_autosuspend(dev);
293 return -EBUSY;
296 return 0;
299 int scsi_autopm_get_device(struct scsi_device *sdev)
301 int err;
303 err = pm_runtime_get_sync(&sdev->sdev_gendev);
304 if (err < 0 && err !=-EACCES)
305 pm_runtime_put_sync(&sdev->sdev_gendev);
306 else
307 err = 0;
308 return err;
310 EXPORT_SYMBOL_GPL(scsi_autopm_get_device);
312 void scsi_autopm_put_device(struct scsi_device *sdev)
314 pm_runtime_put_sync(&sdev->sdev_gendev);
316 EXPORT_SYMBOL_GPL(scsi_autopm_put_device);
318 void scsi_autopm_get_target(struct scsi_target *starget)
320 pm_runtime_get_sync(&starget->dev);
323 void scsi_autopm_put_target(struct scsi_target *starget)
325 pm_runtime_put_sync(&starget->dev);
328 int scsi_autopm_get_host(struct Scsi_Host *shost)
330 int err;
332 err = pm_runtime_get_sync(&shost->shost_gendev);
333 if (err < 0 && err !=-EACCES)
334 pm_runtime_put_sync(&shost->shost_gendev);
335 else
336 err = 0;
337 return err;
340 void scsi_autopm_put_host(struct Scsi_Host *shost)
342 pm_runtime_put_sync(&shost->shost_gendev);
345 const struct dev_pm_ops scsi_bus_pm_ops = {
346 .prepare = scsi_bus_prepare,
347 .suspend = scsi_bus_suspend,
348 .resume = scsi_bus_resume,
349 .freeze = scsi_bus_freeze,
350 .thaw = scsi_bus_thaw,
351 .poweroff = scsi_bus_poweroff,
352 .restore = scsi_bus_restore,
353 .runtime_suspend = scsi_runtime_suspend,
354 .runtime_resume = scsi_runtime_resume,
355 .runtime_idle = scsi_runtime_idle,