blob: e34af488693a62d26fbd7d282232d393a4807f55 [file] [log] [blame]
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +01001#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09002#include <linux/gfp.h>
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +01003#include <linux/ide.h>
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +01004
5int generic_ide_suspend(struct device *dev, pm_message_t mesg)
6{
Miklos Szeredi9974e432012-08-21 17:20:30 +02007 ide_drive_t *drive = to_ide_device(dev);
Greg Kroah-Hartmanfcb52072009-04-30 14:43:31 -07008 ide_drive_t *pair = ide_get_pair_dev(drive);
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +01009 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010010 struct request *rq;
Christoph Hellwiga7928c12015-04-17 22:37:20 +020011 struct ide_pm_state rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010012 int ret;
13
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070014 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 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010019
20 memset(&rqpm, 0, sizeof(rqpm));
Mel Gorman71baba42015-11-06 16:28:28 -080021 rq = blk_get_request(drive->queue, READ, __GFP_RECLAIM);
Christoph Hellwiga7928c12015-04-17 22:37:20 +020022 rq->cmd_type = REQ_TYPE_ATA_PM_SUSPEND;
Tejun Heofc38b522009-04-19 07:00:43 +090023 rq->special = &rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010024 rqpm.pm_step = IDE_PM_START_SUSPEND;
25 if (mesg.event == PM_EVENT_PRETHAW)
26 mesg.event = PM_EVENT_FREEZE;
27 rqpm.pm_state = mesg.event;
28
29 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
30 blk_put_request(rq);
31
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070032 if (ret == 0 && ide_port_acpi(hwif)) {
33 /* call ACPI _PS3 only after both devices are suspended */
34 if ((drive->dn & 1) || pair == NULL)
35 ide_acpi_set_state(hwif, 0);
36 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010037
38 return ret;
39}
40
Christoph Hellwiga7928c12015-04-17 22:37:20 +020041static void ide_end_sync_rq(struct request *rq, int error)
42{
43 complete(rq->end_io_data);
44}
45
46static int ide_pm_execute_rq(struct request *rq)
47{
48 struct request_queue *q = rq->q;
49 DECLARE_COMPLETION_ONSTACK(wait);
50
51 rq->end_io_data = &wait;
52 rq->end_io = ide_end_sync_rq;
53
54 spin_lock_irq(q->queue_lock);
55 if (unlikely(blk_queue_dying(q))) {
56 rq->cmd_flags |= REQ_QUIET;
57 rq->errors = -ENXIO;
58 __blk_end_request_all(rq, rq->errors);
59 spin_unlock_irq(q->queue_lock);
60 return -ENXIO;
61 }
62 __elv_add_request(q, rq, ELEVATOR_INSERT_FRONT);
63 __blk_run_queue_uncond(q);
64 spin_unlock_irq(q->queue_lock);
65
66 wait_for_completion_io(&wait);
67
68 return rq->errors ? -EIO : 0;
69}
70
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010071int generic_ide_resume(struct device *dev)
72{
Miklos Szeredi9974e432012-08-21 17:20:30 +020073 ide_drive_t *drive = to_ide_device(dev);
Greg Kroah-Hartmanfcb52072009-04-30 14:43:31 -070074 ide_drive_t *pair = ide_get_pair_dev(drive);
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +010075 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010076 struct request *rq;
Christoph Hellwiga7928c12015-04-17 22:37:20 +020077 struct ide_pm_state rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010078 int err;
79
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070080 if (ide_port_acpi(hwif)) {
81 /* call ACPI _PS0 / _STM only once */
82 if ((drive->dn & 1) == 0 || pair == NULL) {
83 ide_acpi_set_state(hwif, 1);
84 ide_acpi_push_timing(hwif);
85 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010086
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070087 ide_acpi_exec_tfs(drive);
88 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010089
90 memset(&rqpm, 0, sizeof(rqpm));
Mel Gorman71baba42015-11-06 16:28:28 -080091 rq = blk_get_request(drive->queue, READ, __GFP_RECLAIM);
Christoph Hellwiga7928c12015-04-17 22:37:20 +020092 rq->cmd_type = REQ_TYPE_ATA_PM_RESUME;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010093 rq->cmd_flags |= REQ_PREEMPT;
Tejun Heofc38b522009-04-19 07:00:43 +090094 rq->special = &rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010095 rqpm.pm_step = IDE_PM_START_RESUME;
96 rqpm.pm_state = PM_EVENT_ON;
97
Christoph Hellwiga7928c12015-04-17 22:37:20 +020098 err = ide_pm_execute_rq(rq);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010099 blk_put_request(rq);
100
101 if (err == 0 && dev->driver) {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100102 struct ide_driver *drv = to_ide_driver(dev->driver);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100103
104 if (drv->resume)
105 drv->resume(drive);
106 }
107
108 return err;
109}
110
111void ide_complete_power_step(ide_drive_t *drive, struct request *rq)
112{
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200113 struct ide_pm_state *pm = rq->special;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100114
115#ifdef DEBUG_PM
116 printk(KERN_INFO "%s: complete_power_step(step: %d)\n",
117 drive->name, pm->pm_step);
118#endif
119 if (drive->media != ide_disk)
120 return;
121
122 switch (pm->pm_step) {
123 case IDE_PM_FLUSH_CACHE: /* Suspend step 1 (flush cache) */
124 if (pm->pm_state == PM_EVENT_FREEZE)
125 pm->pm_step = IDE_PM_COMPLETED;
126 else
127 pm->pm_step = IDE_PM_STANDBY;
128 break;
129 case IDE_PM_STANDBY: /* Suspend step 2 (standby) */
130 pm->pm_step = IDE_PM_COMPLETED;
131 break;
132 case IDE_PM_RESTORE_PIO: /* Resume step 1 (restore PIO) */
133 pm->pm_step = IDE_PM_IDLE;
134 break;
135 case IDE_PM_IDLE: /* Resume step 2 (idle)*/
136 pm->pm_step = IDE_PM_RESTORE_DMA;
137 break;
138 }
139}
140
141ide_startstop_t ide_start_power_step(ide_drive_t *drive, struct request *rq)
142{
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200143 struct ide_pm_state *pm = rq->special;
Tejun Heofc38b522009-04-19 07:00:43 +0900144 struct ide_cmd cmd = { };
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100145
146 switch (pm->pm_step) {
147 case IDE_PM_FLUSH_CACHE: /* Suspend step 1 (flush cache) */
148 if (drive->media != ide_disk)
149 break;
150 /* Not supported? Switch to next step now. */
151 if (ata_id_flush_enabled(drive->id) == 0 ||
152 (drive->dev_flags & IDE_DFLAG_WCACHE) == 0) {
153 ide_complete_power_step(drive, rq);
154 return ide_stopped;
155 }
156 if (ata_id_flush_ext_enabled(drive->id))
Tejun Heofc38b522009-04-19 07:00:43 +0900157 cmd.tf.command = ATA_CMD_FLUSH_EXT;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100158 else
Tejun Heofc38b522009-04-19 07:00:43 +0900159 cmd.tf.command = ATA_CMD_FLUSH;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100160 goto out_do_tf;
161 case IDE_PM_STANDBY: /* Suspend step 2 (standby) */
Tejun Heofc38b522009-04-19 07:00:43 +0900162 cmd.tf.command = ATA_CMD_STANDBYNOW1;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100163 goto out_do_tf;
164 case IDE_PM_RESTORE_PIO: /* Resume step 1 (restore PIO) */
165 ide_set_max_pio(drive);
166 /*
167 * skip IDE_PM_IDLE for ATAPI devices
168 */
169 if (drive->media != ide_disk)
170 pm->pm_step = IDE_PM_RESTORE_DMA;
171 else
172 ide_complete_power_step(drive, rq);
173 return ide_stopped;
174 case IDE_PM_IDLE: /* Resume step 2 (idle) */
Tejun Heofc38b522009-04-19 07:00:43 +0900175 cmd.tf.command = ATA_CMD_IDLEIMMEDIATE;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100176 goto out_do_tf;
177 case IDE_PM_RESTORE_DMA: /* Resume step 3 (restore DMA) */
178 /*
179 * Right now, all we do is call ide_set_dma(drive),
180 * we could be smarter and check for current xfer_speed
181 * in struct drive etc...
182 */
183 if (drive->hwif->dma_ops == NULL)
184 break;
185 /*
186 * TODO: respect IDE_DFLAG_USING_DMA
187 */
188 ide_set_dma(drive);
189 break;
190 }
191
192 pm->pm_step = IDE_PM_COMPLETED;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100193
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100194 return ide_stopped;
195
196out_do_tf:
Tejun Heofc38b522009-04-19 07:00:43 +0900197 cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
198 cmd.valid.in.tf = IDE_VALID_IN_TF | IDE_VALID_DEVICE;
199 cmd.protocol = ATA_PROT_NODATA;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100200
Tejun Heofc38b522009-04-19 07:00:43 +0900201 return do_rw_taskfile(drive, &cmd);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100202}
203
204/**
Bartlomiej Zolnierkiewicz3616b652009-03-27 12:46:29 +0100205 * ide_complete_pm_rq - end the current Power Management request
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100206 * @drive: target drive
207 * @rq: request
208 *
209 * This function cleans up the current PM request and stops the queue
210 * if necessary.
211 */
Bartlomiej Zolnierkiewicz3616b652009-03-27 12:46:29 +0100212void ide_complete_pm_rq(ide_drive_t *drive, struct request *rq)
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100213{
214 struct request_queue *q = drive->queue;
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200215 struct ide_pm_state *pm = rq->special;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100216 unsigned long flags;
217
Bartlomiej Zolnierkiewicz3616b652009-03-27 12:46:29 +0100218 ide_complete_power_step(drive, rq);
219 if (pm->pm_step != IDE_PM_COMPLETED)
220 return;
221
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100222#ifdef DEBUG_PM
223 printk("%s: completing PM request, %s\n", drive->name,
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200224 (rq->cmd_type == REQ_TYPE_ATA_PM_SUSPEND) ? "suspend" : "resume");
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100225#endif
226 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200227 if (rq->cmd_type == REQ_TYPE_ATA_PM_SUSPEND)
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100228 blk_stop_queue(q);
Bartlomiej Zolnierkiewicz2ea55212009-01-14 19:19:04 +0100229 else
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100230 drive->dev_flags &= ~IDE_DFLAG_BLOCKED;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100231 spin_unlock_irqrestore(q->queue_lock, flags);
232
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100233 drive->hwif->rq = NULL;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100234
235 if (blk_end_request(rq, 0, 0))
236 BUG();
237}
238
239void ide_check_pm_state(ide_drive_t *drive, struct request *rq)
240{
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200241 struct ide_pm_state *pm = rq->special;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100242
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200243 if (rq->cmd_type == REQ_TYPE_ATA_PM_SUSPEND &&
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100244 pm->pm_step == IDE_PM_START_SUSPEND)
245 /* Mark drive blocked when starting the suspend sequence. */
246 drive->dev_flags |= IDE_DFLAG_BLOCKED;
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200247 else if (rq->cmd_type == REQ_TYPE_ATA_PM_RESUME &&
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100248 pm->pm_step == IDE_PM_START_RESUME) {
249 /*
250 * The first thing we do on wakeup is to wait for BSY bit to
251 * go away (with a looong timeout) as a drive on this hwif may
252 * just be POSTing itself.
253 * We do that before even selecting as the "other" device on
254 * the bus may be broken enough to walk on our toes at this
255 * point.
256 */
257 ide_hwif_t *hwif = drive->hwif;
Sergei Shtylyovfdd88f02009-03-31 20:15:33 +0200258 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewicz2ea55212009-01-14 19:19:04 +0100259 struct request_queue *q = drive->queue;
260 unsigned long flags;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100261 int rc;
262#ifdef DEBUG_PM
263 printk("%s: Wakeup request inited, waiting for !BSY...\n", drive->name);
264#endif
265 rc = ide_wait_not_busy(hwif, 35000);
266 if (rc)
267 printk(KERN_WARNING "%s: bus not ready on wakeup\n", drive->name);
Sergei Shtylyovfdd88f02009-03-31 20:15:33 +0200268 tp_ops->dev_select(drive);
269 tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100270 rc = ide_wait_not_busy(hwif, 100000);
271 if (rc)
272 printk(KERN_WARNING "%s: drive not ready on wakeup\n", drive->name);
Bartlomiej Zolnierkiewicz2ea55212009-01-14 19:19:04 +0100273
274 spin_lock_irqsave(q->queue_lock, flags);
275 blk_start_queue(q);
276 spin_unlock_irqrestore(q->queue_lock, flags);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100277 }
278}