Revert "tty: hvc: Fix data abort due to race in hvc_open"
[linux/fpc-iii.git] / drivers / scsi / scsi_pm.c
blob5f0ad8b32e3af5900b571ae3ffa828f5e85eb6fb
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 bool was_runtime_suspended;
85 was_runtime_suspended = pm_runtime_suspended(dev);
87 pm_runtime_disable(dev);
88 err = pm_runtime_set_active(dev);
89 pm_runtime_enable(dev);
92 * Forcibly set runtime PM status of request queue to "active"
93 * to make sure we can again get requests from the queue
94 * (see also blk_pm_peek_request()).
96 * The resume hook will correct runtime PM status of the disk.
98 if (!err && scsi_is_sdev_device(dev)) {
99 struct scsi_device *sdev = to_scsi_device(dev);
100 if (was_runtime_suspended)
101 blk_post_runtime_resume(sdev->request_queue, 0);
102 else
103 blk_set_runtime_active(sdev->request_queue);
107 return err;
110 static int
111 scsi_bus_suspend_common(struct device *dev,
112 int (*cb)(struct device *, const struct dev_pm_ops *))
114 int err = 0;
116 if (scsi_is_sdev_device(dev)) {
118 * All the high-level SCSI drivers that implement runtime
119 * PM treat runtime suspend, system suspend, and system
120 * hibernate nearly identically. In all cases the requirements
121 * for runtime suspension are stricter.
123 if (pm_runtime_suspended(dev))
124 return 0;
126 err = scsi_dev_type_suspend(dev, cb);
129 return err;
132 static void async_sdev_resume(void *dev, async_cookie_t cookie)
134 scsi_dev_type_resume(dev, do_scsi_resume);
137 static void async_sdev_thaw(void *dev, async_cookie_t cookie)
139 scsi_dev_type_resume(dev, do_scsi_thaw);
142 static void async_sdev_restore(void *dev, async_cookie_t cookie)
144 scsi_dev_type_resume(dev, do_scsi_restore);
147 static int scsi_bus_resume_common(struct device *dev,
148 int (*cb)(struct device *, const struct dev_pm_ops *))
150 async_func_t fn;
152 if (!scsi_is_sdev_device(dev))
153 fn = NULL;
154 else if (cb == do_scsi_resume)
155 fn = async_sdev_resume;
156 else if (cb == do_scsi_thaw)
157 fn = async_sdev_thaw;
158 else if (cb == do_scsi_restore)
159 fn = async_sdev_restore;
160 else
161 fn = NULL;
163 if (fn) {
164 async_schedule_domain(fn, dev, &scsi_sd_pm_domain);
167 * If a user has disabled async probing a likely reason
168 * is due to a storage enclosure that does not inject
169 * staggered spin-ups. For safety, make resume
170 * synchronous as well in that case.
172 if (strncmp(scsi_scan_type, "async", 5) != 0)
173 async_synchronize_full_domain(&scsi_sd_pm_domain);
174 } else {
175 pm_runtime_disable(dev);
176 pm_runtime_set_active(dev);
177 pm_runtime_enable(dev);
179 return 0;
182 static int scsi_bus_prepare(struct device *dev)
184 if (scsi_is_host_device(dev)) {
185 /* Wait until async scanning is finished */
186 scsi_complete_async_scans();
188 return 0;
191 static int scsi_bus_suspend(struct device *dev)
193 return scsi_bus_suspend_common(dev, do_scsi_suspend);
196 static int scsi_bus_resume(struct device *dev)
198 return scsi_bus_resume_common(dev, do_scsi_resume);
201 static int scsi_bus_freeze(struct device *dev)
203 return scsi_bus_suspend_common(dev, do_scsi_freeze);
206 static int scsi_bus_thaw(struct device *dev)
208 return scsi_bus_resume_common(dev, do_scsi_thaw);
211 static int scsi_bus_poweroff(struct device *dev)
213 return scsi_bus_suspend_common(dev, do_scsi_poweroff);
216 static int scsi_bus_restore(struct device *dev)
218 return scsi_bus_resume_common(dev, do_scsi_restore);
221 #else /* CONFIG_PM_SLEEP */
223 #define scsi_bus_prepare NULL
224 #define scsi_bus_suspend NULL
225 #define scsi_bus_resume NULL
226 #define scsi_bus_freeze NULL
227 #define scsi_bus_thaw NULL
228 #define scsi_bus_poweroff NULL
229 #define scsi_bus_restore NULL
231 #endif /* CONFIG_PM_SLEEP */
233 static int sdev_runtime_suspend(struct device *dev)
235 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
236 struct scsi_device *sdev = to_scsi_device(dev);
237 int err = 0;
239 err = blk_pre_runtime_suspend(sdev->request_queue);
240 if (err)
241 return err;
242 if (pm && pm->runtime_suspend)
243 err = pm->runtime_suspend(dev);
244 blk_post_runtime_suspend(sdev->request_queue, err);
246 return err;
249 static int scsi_runtime_suspend(struct device *dev)
251 int err = 0;
253 dev_dbg(dev, "scsi_runtime_suspend\n");
254 if (scsi_is_sdev_device(dev))
255 err = sdev_runtime_suspend(dev);
257 /* Insert hooks here for targets, hosts, and transport classes */
259 return err;
262 static int sdev_runtime_resume(struct device *dev)
264 struct scsi_device *sdev = to_scsi_device(dev);
265 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
266 int err = 0;
268 blk_pre_runtime_resume(sdev->request_queue);
269 if (pm && pm->runtime_resume)
270 err = pm->runtime_resume(dev);
271 blk_post_runtime_resume(sdev->request_queue, err);
273 return err;
276 static int scsi_runtime_resume(struct device *dev)
278 int err = 0;
280 dev_dbg(dev, "scsi_runtime_resume\n");
281 if (scsi_is_sdev_device(dev))
282 err = sdev_runtime_resume(dev);
284 /* Insert hooks here for targets, hosts, and transport classes */
286 return err;
289 static int scsi_runtime_idle(struct device *dev)
291 dev_dbg(dev, "scsi_runtime_idle\n");
293 /* Insert hooks here for targets, hosts, and transport classes */
295 if (scsi_is_sdev_device(dev)) {
296 pm_runtime_mark_last_busy(dev);
297 pm_runtime_autosuspend(dev);
298 return -EBUSY;
301 return 0;
304 int scsi_autopm_get_device(struct scsi_device *sdev)
306 int err;
308 err = pm_runtime_get_sync(&sdev->sdev_gendev);
309 if (err < 0 && err !=-EACCES)
310 pm_runtime_put_sync(&sdev->sdev_gendev);
311 else
312 err = 0;
313 return err;
315 EXPORT_SYMBOL_GPL(scsi_autopm_get_device);
317 void scsi_autopm_put_device(struct scsi_device *sdev)
319 pm_runtime_put_sync(&sdev->sdev_gendev);
321 EXPORT_SYMBOL_GPL(scsi_autopm_put_device);
323 void scsi_autopm_get_target(struct scsi_target *starget)
325 pm_runtime_get_sync(&starget->dev);
328 void scsi_autopm_put_target(struct scsi_target *starget)
330 pm_runtime_put_sync(&starget->dev);
333 int scsi_autopm_get_host(struct Scsi_Host *shost)
335 int err;
337 err = pm_runtime_get_sync(&shost->shost_gendev);
338 if (err < 0 && err !=-EACCES)
339 pm_runtime_put_sync(&shost->shost_gendev);
340 else
341 err = 0;
342 return err;
345 void scsi_autopm_put_host(struct Scsi_Host *shost)
347 pm_runtime_put_sync(&shost->shost_gendev);
350 const struct dev_pm_ops scsi_bus_pm_ops = {
351 .prepare = scsi_bus_prepare,
352 .suspend = scsi_bus_suspend,
353 .resume = scsi_bus_resume,
354 .freeze = scsi_bus_freeze,
355 .thaw = scsi_bus_thaw,
356 .poweroff = scsi_bus_poweroff,
357 .restore = scsi_bus_restore,
358 .runtime_suspend = scsi_runtime_suspend,
359 .runtime_resume = scsi_runtime_resume,
360 .runtime_idle = scsi_runtime_idle,