]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/ide/ide-pm.c
block: introduce new block status code type
[mirror_ubuntu-bionic-kernel.git] / drivers / ide / ide-pm.c
CommitLineData
e2984c62 1#include <linux/kernel.h>
5a0e3ad6 2#include <linux/gfp.h>
e2984c62 3#include <linux/ide.h>
e2984c62
BZ
4
5int generic_ide_suspend(struct device *dev, pm_message_t mesg)
6{
9974e43d 7 ide_drive_t *drive = to_ide_device(dev);
fcb52077 8 ide_drive_t *pair = ide_get_pair_dev(drive);
898ec223 9 ide_hwif_t *hwif = drive->hwif;
e2984c62 10 struct request *rq;
a7928c15 11 struct ide_pm_state rqpm;
e2984c62
BZ
12 int ret;
13
2bf427b2
BZ
14 if (ide_port_acpi(hwif)) {
15 /* call ACPI _GTM only once */
16 if ((drive->dn & 1) == 0 || pair == NULL)
17 ide_acpi_get_timing(hwif);
18 }
e2984c62
BZ
19
20 memset(&rqpm, 0, sizeof(rqpm));
aebf526b 21 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
82ed4db4 22 scsi_req_init(rq);
2f5a8e80 23 ide_req(rq)->type = ATA_PRIV_PM_SUSPEND;
fc38b521 24 rq->special = &rqpm;
e2984c62
BZ
25 rqpm.pm_step = IDE_PM_START_SUSPEND;
26 if (mesg.event == PM_EVENT_PRETHAW)
27 mesg.event = PM_EVENT_FREEZE;
28 rqpm.pm_state = mesg.event;
29
b7819b92 30 blk_execute_rq(drive->queue, NULL, rq, 0);
17d5363b 31 ret = scsi_req(rq)->result ? -EIO : 0;
e2984c62
BZ
32 blk_put_request(rq);
33
2bf427b2
BZ
34 if (ret == 0 && ide_port_acpi(hwif)) {
35 /* call ACPI _PS3 only after both devices are suspended */
36 if ((drive->dn & 1) || pair == NULL)
37 ide_acpi_set_state(hwif, 0);
38 }
e2984c62
BZ
39
40 return ret;
41}
42
2a842aca 43static void ide_end_sync_rq(struct request *rq, blk_status_t error)
a7928c15
CH
44{
45 complete(rq->end_io_data);
46}
47
48static int ide_pm_execute_rq(struct request *rq)
49{
50 struct request_queue *q = rq->q;
51 DECLARE_COMPLETION_ONSTACK(wait);
52
53 rq->end_io_data = &wait;
54 rq->end_io = ide_end_sync_rq;
55
56 spin_lock_irq(q->queue_lock);
57 if (unlikely(blk_queue_dying(q))) {
e8064021 58 rq->rq_flags |= RQF_QUIET;
17d5363b 59 scsi_req(rq)->result = -ENXIO;
2a842aca 60 __blk_end_request_all(rq, BLK_STS_OK);
a7928c15
CH
61 spin_unlock_irq(q->queue_lock);
62 return -ENXIO;
63 }
64 __elv_add_request(q, rq, ELEVATOR_INSERT_FRONT);
65 __blk_run_queue_uncond(q);
66 spin_unlock_irq(q->queue_lock);
67
68 wait_for_completion_io(&wait);
69
17d5363b 70 return scsi_req(rq)->result ? -EIO : 0;
a7928c15
CH
71}
72
e2984c62
BZ
73int generic_ide_resume(struct device *dev)
74{
9974e43d 75 ide_drive_t *drive = to_ide_device(dev);
fcb52077 76 ide_drive_t *pair = ide_get_pair_dev(drive);
898ec223 77 ide_hwif_t *hwif = drive->hwif;
e2984c62 78 struct request *rq;
a7928c15 79 struct ide_pm_state rqpm;
e2984c62
BZ
80 int err;
81
2bf427b2
BZ
82 if (ide_port_acpi(hwif)) {
83 /* call ACPI _PS0 / _STM only once */
84 if ((drive->dn & 1) == 0 || pair == NULL) {
85 ide_acpi_set_state(hwif, 1);
86 ide_acpi_push_timing(hwif);
87 }
e2984c62 88
2bf427b2
BZ
89 ide_acpi_exec_tfs(drive);
90 }
e2984c62
BZ
91
92 memset(&rqpm, 0, sizeof(rqpm));
aebf526b 93 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
82ed4db4 94 scsi_req_init(rq);
2f5a8e80 95 ide_req(rq)->type = ATA_PRIV_PM_RESUME;
e8064021 96 rq->rq_flags |= RQF_PREEMPT;
fc38b521 97 rq->special = &rqpm;
e2984c62
BZ
98 rqpm.pm_step = IDE_PM_START_RESUME;
99 rqpm.pm_state = PM_EVENT_ON;
100
a7928c15 101 err = ide_pm_execute_rq(rq);
e2984c62
BZ
102 blk_put_request(rq);
103
104 if (err == 0 && dev->driver) {
7f3c868b 105 struct ide_driver *drv = to_ide_driver(dev->driver);
e2984c62
BZ
106
107 if (drv->resume)
108 drv->resume(drive);
109 }
110
111 return err;
112}
113
114void ide_complete_power_step(ide_drive_t *drive, struct request *rq)
115{
a7928c15 116 struct ide_pm_state *pm = rq->special;
e2984c62
BZ
117
118#ifdef DEBUG_PM
119 printk(KERN_INFO "%s: complete_power_step(step: %d)\n",
120 drive->name, pm->pm_step);
121#endif
122 if (drive->media != ide_disk)
123 return;
124
125 switch (pm->pm_step) {
126 case IDE_PM_FLUSH_CACHE: /* Suspend step 1 (flush cache) */
127 if (pm->pm_state == PM_EVENT_FREEZE)
128 pm->pm_step = IDE_PM_COMPLETED;
129 else
130 pm->pm_step = IDE_PM_STANDBY;
131 break;
132 case IDE_PM_STANDBY: /* Suspend step 2 (standby) */
133 pm->pm_step = IDE_PM_COMPLETED;
134 break;
135 case IDE_PM_RESTORE_PIO: /* Resume step 1 (restore PIO) */
136 pm->pm_step = IDE_PM_IDLE;
137 break;
138 case IDE_PM_IDLE: /* Resume step 2 (idle)*/
139 pm->pm_step = IDE_PM_RESTORE_DMA;
140 break;
141 }
142}
143
144ide_startstop_t ide_start_power_step(ide_drive_t *drive, struct request *rq)
145{
a7928c15 146 struct ide_pm_state *pm = rq->special;
fc38b521 147 struct ide_cmd cmd = { };
e2984c62
BZ
148
149 switch (pm->pm_step) {
150 case IDE_PM_FLUSH_CACHE: /* Suspend step 1 (flush cache) */
151 if (drive->media != ide_disk)
152 break;
153 /* Not supported? Switch to next step now. */
154 if (ata_id_flush_enabled(drive->id) == 0 ||
155 (drive->dev_flags & IDE_DFLAG_WCACHE) == 0) {
156 ide_complete_power_step(drive, rq);
157 return ide_stopped;
158 }
159 if (ata_id_flush_ext_enabled(drive->id))
fc38b521 160 cmd.tf.command = ATA_CMD_FLUSH_EXT;
e2984c62 161 else
fc38b521 162 cmd.tf.command = ATA_CMD_FLUSH;
e2984c62
BZ
163 goto out_do_tf;
164 case IDE_PM_STANDBY: /* Suspend step 2 (standby) */
fc38b521 165 cmd.tf.command = ATA_CMD_STANDBYNOW1;
e2984c62
BZ
166 goto out_do_tf;
167 case IDE_PM_RESTORE_PIO: /* Resume step 1 (restore PIO) */
168 ide_set_max_pio(drive);
169 /*
170 * skip IDE_PM_IDLE for ATAPI devices
171 */
172 if (drive->media != ide_disk)
173 pm->pm_step = IDE_PM_RESTORE_DMA;
174 else
175 ide_complete_power_step(drive, rq);
176 return ide_stopped;
177 case IDE_PM_IDLE: /* Resume step 2 (idle) */
fc38b521 178 cmd.tf.command = ATA_CMD_IDLEIMMEDIATE;
e2984c62
BZ
179 goto out_do_tf;
180 case IDE_PM_RESTORE_DMA: /* Resume step 3 (restore DMA) */
181 /*
182 * Right now, all we do is call ide_set_dma(drive),
183 * we could be smarter and check for current xfer_speed
184 * in struct drive etc...
185 */
186 if (drive->hwif->dma_ops == NULL)
187 break;
188 /*
189 * TODO: respect IDE_DFLAG_USING_DMA
190 */
191 ide_set_dma(drive);
192 break;
193 }
194
195 pm->pm_step = IDE_PM_COMPLETED;
22aa4b32 196
e2984c62
BZ
197 return ide_stopped;
198
199out_do_tf:
fc38b521
TH
200 cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
201 cmd.valid.in.tf = IDE_VALID_IN_TF | IDE_VALID_DEVICE;
202 cmd.protocol = ATA_PROT_NODATA;
22aa4b32 203
fc38b521 204 return do_rw_taskfile(drive, &cmd);
e2984c62
BZ
205}
206
207/**
3616b653 208 * ide_complete_pm_rq - end the current Power Management request
e2984c62
BZ
209 * @drive: target drive
210 * @rq: request
211 *
212 * This function cleans up the current PM request and stops the queue
213 * if necessary.
214 */
3616b653 215void ide_complete_pm_rq(ide_drive_t *drive, struct request *rq)
e2984c62
BZ
216{
217 struct request_queue *q = drive->queue;
a7928c15 218 struct ide_pm_state *pm = rq->special;
e2984c62
BZ
219 unsigned long flags;
220
3616b653
BZ
221 ide_complete_power_step(drive, rq);
222 if (pm->pm_step != IDE_PM_COMPLETED)
223 return;
224
e2984c62
BZ
225#ifdef DEBUG_PM
226 printk("%s: completing PM request, %s\n", drive->name,
2f5a8e80 227 (ide_req(rq)->type == ATA_PRIV_PM_SUSPEND) ? "suspend" : "resume");
e2984c62
BZ
228#endif
229 spin_lock_irqsave(q->queue_lock, flags);
2f5a8e80 230 if (ide_req(rq)->type == ATA_PRIV_PM_SUSPEND)
e2984c62 231 blk_stop_queue(q);
2ea55210 232 else
e2984c62 233 drive->dev_flags &= ~IDE_DFLAG_BLOCKED;
e2984c62
BZ
234 spin_unlock_irqrestore(q->queue_lock, flags);
235
b65fac32 236 drive->hwif->rq = NULL;
e2984c62 237
2a842aca 238 if (blk_end_request(rq, BLK_STS_OK, 0))
e2984c62
BZ
239 BUG();
240}
241
242void ide_check_pm_state(ide_drive_t *drive, struct request *rq)
243{
a7928c15 244 struct ide_pm_state *pm = rq->special;
e2984c62 245
aebf526b 246 if (blk_rq_is_private(rq) &&
2f5a8e80 247 ide_req(rq)->type == ATA_PRIV_PM_SUSPEND &&
e2984c62
BZ
248 pm->pm_step == IDE_PM_START_SUSPEND)
249 /* Mark drive blocked when starting the suspend sequence. */
250 drive->dev_flags |= IDE_DFLAG_BLOCKED;
aebf526b 251 else if (blk_rq_is_private(rq) &&
2f5a8e80 252 ide_req(rq)->type == ATA_PRIV_PM_RESUME &&
e2984c62
BZ
253 pm->pm_step == IDE_PM_START_RESUME) {
254 /*
255 * The first thing we do on wakeup is to wait for BSY bit to
256 * go away (with a looong timeout) as a drive on this hwif may
257 * just be POSTing itself.
258 * We do that before even selecting as the "other" device on
259 * the bus may be broken enough to walk on our toes at this
260 * point.
261 */
262 ide_hwif_t *hwif = drive->hwif;
fdd88f0a 263 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
2ea55210
BZ
264 struct request_queue *q = drive->queue;
265 unsigned long flags;
e2984c62
BZ
266 int rc;
267#ifdef DEBUG_PM
268 printk("%s: Wakeup request inited, waiting for !BSY...\n", drive->name);
269#endif
270 rc = ide_wait_not_busy(hwif, 35000);
271 if (rc)
272 printk(KERN_WARNING "%s: bus not ready on wakeup\n", drive->name);
fdd88f0a
SS
273 tp_ops->dev_select(drive);
274 tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);
e2984c62
BZ
275 rc = ide_wait_not_busy(hwif, 100000);
276 if (rc)
277 printk(KERN_WARNING "%s: drive not ready on wakeup\n", drive->name);
2ea55210
BZ
278
279 spin_lock_irqsave(q->queue_lock, flags);
280 blk_start_queue(q);
281 spin_unlock_irqrestore(q->queue_lock, flags);
e2984c62
BZ
282 }
283}