blob: 192e6c65d34e7a0aff073003c2e4039d681f87f2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +01002#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/gfp.h>
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +01004#include <linux/ide.h>
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +01005
6int generic_ide_suspend(struct device *dev, pm_message_t mesg)
7{
Miklos Szeredi9974e432012-08-21 17:20:30 +02008 ide_drive_t *drive = to_ide_device(dev);
Greg Kroah-Hartmanfcb52072009-04-30 14:43:31 -07009 ide_drive_t *pair = ide_get_pair_dev(drive);
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +010010 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010011 struct request *rq;
Christoph Hellwiga7928c12015-04-17 22:37:20 +020012 struct ide_pm_state rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010013 int ret;
14
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070015 if (ide_port_acpi(hwif)) {
16 /* call ACPI _GTM only once */
17 if ((drive->dn & 1) == 0 || pair == NULL)
18 ide_acpi_get_timing(hwif);
19 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010020
21 memset(&rqpm, 0, sizeof(rqpm));
Christoph Hellwigff005a02018-05-09 09:54:05 +020022 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, 0);
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +010023 ide_req(rq)->type = ATA_PRIV_PM_SUSPEND;
Christoph Hellwig22ce0a72018-11-10 09:30:49 +010024 ide_req(rq)->special = &rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010025 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
Christoph Hellwigb7819b92017-04-20 16:02:55 +020030 blk_execute_rq(drive->queue, NULL, rq, 0);
Christoph Hellwig17d53632017-04-20 16:03:01 +020031 ret = scsi_req(rq)->result ? -EIO : 0;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010032 blk_put_request(rq);
33
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070034 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 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010039
40 return ret;
41}
42
Christoph Hellwiga7928c12015-04-17 22:37:20 +020043static int ide_pm_execute_rq(struct request *rq)
44{
45 struct request_queue *q = rq->q;
Christoph Hellwiga7928c12015-04-17 22:37:20 +020046
Christoph Hellwiga7928c12015-04-17 22:37:20 +020047 if (unlikely(blk_queue_dying(q))) {
Christoph Hellwige8064022016-10-20 15:12:13 +020048 rq->rq_flags |= RQF_QUIET;
Christoph Hellwig17d53632017-04-20 16:03:01 +020049 scsi_req(rq)->result = -ENXIO;
Jens Axboe60033522018-10-26 09:53:52 -060050 blk_mq_end_request(rq, BLK_STS_OK);
Christoph Hellwiga7928c12015-04-17 22:37:20 +020051 return -ENXIO;
52 }
Jens Axboe60033522018-10-26 09:53:52 -060053 blk_execute_rq(q, NULL, rq, true);
Christoph Hellwiga7928c12015-04-17 22:37:20 +020054
Christoph Hellwig17d53632017-04-20 16:03:01 +020055 return scsi_req(rq)->result ? -EIO : 0;
Christoph Hellwiga7928c12015-04-17 22:37:20 +020056}
57
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010058int generic_ide_resume(struct device *dev)
59{
Miklos Szeredi9974e432012-08-21 17:20:30 +020060 ide_drive_t *drive = to_ide_device(dev);
Greg Kroah-Hartmanfcb52072009-04-30 14:43:31 -070061 ide_drive_t *pair = ide_get_pair_dev(drive);
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +010062 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010063 struct request *rq;
Christoph Hellwiga7928c12015-04-17 22:37:20 +020064 struct ide_pm_state rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010065 int err;
66
Jens Axboe60033522018-10-26 09:53:52 -060067 blk_mq_start_stopped_hw_queues(drive->queue, true);
68
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070069 if (ide_port_acpi(hwif)) {
70 /* call ACPI _PS0 / _STM only once */
71 if ((drive->dn & 1) == 0 || pair == NULL) {
72 ide_acpi_set_state(hwif, 1);
73 ide_acpi_push_timing(hwif);
74 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010075
Bartlomiej Zolnierkiewicz2bf427b2009-06-29 19:20:42 -070076 ide_acpi_exec_tfs(drive);
77 }
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010078
79 memset(&rqpm, 0, sizeof(rqpm));
Christoph Hellwigff005a02018-05-09 09:54:05 +020080 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, BLK_MQ_REQ_PREEMPT);
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +010081 ide_req(rq)->type = ATA_PRIV_PM_RESUME;
Christoph Hellwig22ce0a72018-11-10 09:30:49 +010082 ide_req(rq)->special = &rqpm;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010083 rqpm.pm_step = IDE_PM_START_RESUME;
84 rqpm.pm_state = PM_EVENT_ON;
85
Christoph Hellwiga7928c12015-04-17 22:37:20 +020086 err = ide_pm_execute_rq(rq);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010087 blk_put_request(rq);
88
89 if (err == 0 && dev->driver) {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +010090 struct ide_driver *drv = to_ide_driver(dev->driver);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +010091
92 if (drv->resume)
93 drv->resume(drive);
94 }
95
96 return err;
97}
98
99void ide_complete_power_step(ide_drive_t *drive, struct request *rq)
100{
Christoph Hellwig22ce0a72018-11-10 09:30:49 +0100101 struct ide_pm_state *pm = ide_req(rq)->special;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100102
103#ifdef DEBUG_PM
104 printk(KERN_INFO "%s: complete_power_step(step: %d)\n",
105 drive->name, pm->pm_step);
106#endif
107 if (drive->media != ide_disk)
108 return;
109
110 switch (pm->pm_step) {
111 case IDE_PM_FLUSH_CACHE: /* Suspend step 1 (flush cache) */
112 if (pm->pm_state == PM_EVENT_FREEZE)
113 pm->pm_step = IDE_PM_COMPLETED;
114 else
115 pm->pm_step = IDE_PM_STANDBY;
116 break;
117 case IDE_PM_STANDBY: /* Suspend step 2 (standby) */
118 pm->pm_step = IDE_PM_COMPLETED;
119 break;
120 case IDE_PM_RESTORE_PIO: /* Resume step 1 (restore PIO) */
121 pm->pm_step = IDE_PM_IDLE;
122 break;
123 case IDE_PM_IDLE: /* Resume step 2 (idle)*/
124 pm->pm_step = IDE_PM_RESTORE_DMA;
125 break;
126 }
127}
128
129ide_startstop_t ide_start_power_step(ide_drive_t *drive, struct request *rq)
130{
Christoph Hellwig22ce0a72018-11-10 09:30:49 +0100131 struct ide_pm_state *pm = ide_req(rq)->special;
Tejun Heofc38b522009-04-19 07:00:43 +0900132 struct ide_cmd cmd = { };
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100133
134 switch (pm->pm_step) {
135 case IDE_PM_FLUSH_CACHE: /* Suspend step 1 (flush cache) */
136 if (drive->media != ide_disk)
137 break;
138 /* Not supported? Switch to next step now. */
139 if (ata_id_flush_enabled(drive->id) == 0 ||
140 (drive->dev_flags & IDE_DFLAG_WCACHE) == 0) {
141 ide_complete_power_step(drive, rq);
142 return ide_stopped;
143 }
144 if (ata_id_flush_ext_enabled(drive->id))
Tejun Heofc38b522009-04-19 07:00:43 +0900145 cmd.tf.command = ATA_CMD_FLUSH_EXT;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100146 else
Tejun Heofc38b522009-04-19 07:00:43 +0900147 cmd.tf.command = ATA_CMD_FLUSH;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100148 goto out_do_tf;
149 case IDE_PM_STANDBY: /* Suspend step 2 (standby) */
Tejun Heofc38b522009-04-19 07:00:43 +0900150 cmd.tf.command = ATA_CMD_STANDBYNOW1;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100151 goto out_do_tf;
152 case IDE_PM_RESTORE_PIO: /* Resume step 1 (restore PIO) */
153 ide_set_max_pio(drive);
154 /*
155 * skip IDE_PM_IDLE for ATAPI devices
156 */
157 if (drive->media != ide_disk)
158 pm->pm_step = IDE_PM_RESTORE_DMA;
159 else
160 ide_complete_power_step(drive, rq);
161 return ide_stopped;
162 case IDE_PM_IDLE: /* Resume step 2 (idle) */
Tejun Heofc38b522009-04-19 07:00:43 +0900163 cmd.tf.command = ATA_CMD_IDLEIMMEDIATE;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100164 goto out_do_tf;
165 case IDE_PM_RESTORE_DMA: /* Resume step 3 (restore DMA) */
166 /*
167 * Right now, all we do is call ide_set_dma(drive),
168 * we could be smarter and check for current xfer_speed
169 * in struct drive etc...
170 */
171 if (drive->hwif->dma_ops == NULL)
172 break;
173 /*
174 * TODO: respect IDE_DFLAG_USING_DMA
175 */
176 ide_set_dma(drive);
177 break;
178 }
179
180 pm->pm_step = IDE_PM_COMPLETED;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100181
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100182 return ide_stopped;
183
184out_do_tf:
Tejun Heofc38b522009-04-19 07:00:43 +0900185 cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
186 cmd.valid.in.tf = IDE_VALID_IN_TF | IDE_VALID_DEVICE;
187 cmd.protocol = ATA_PROT_NODATA;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100188
Tejun Heofc38b522009-04-19 07:00:43 +0900189 return do_rw_taskfile(drive, &cmd);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100190}
191
192/**
Bartlomiej Zolnierkiewicz3616b652009-03-27 12:46:29 +0100193 * ide_complete_pm_rq - end the current Power Management request
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100194 * @drive: target drive
195 * @rq: request
196 *
197 * This function cleans up the current PM request and stops the queue
198 * if necessary.
199 */
Bartlomiej Zolnierkiewicz3616b652009-03-27 12:46:29 +0100200void ide_complete_pm_rq(ide_drive_t *drive, struct request *rq)
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100201{
202 struct request_queue *q = drive->queue;
Christoph Hellwig22ce0a72018-11-10 09:30:49 +0100203 struct ide_pm_state *pm = ide_req(rq)->special;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100204
Bartlomiej Zolnierkiewicz3616b652009-03-27 12:46:29 +0100205 ide_complete_power_step(drive, rq);
206 if (pm->pm_step != IDE_PM_COMPLETED)
207 return;
208
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100209#ifdef DEBUG_PM
210 printk("%s: completing PM request, %s\n", drive->name,
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100211 (ide_req(rq)->type == ATA_PRIV_PM_SUSPEND) ? "suspend" : "resume");
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100212#endif
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100213 if (ide_req(rq)->type == ATA_PRIV_PM_SUSPEND)
Jens Axboe60033522018-10-26 09:53:52 -0600214 blk_mq_stop_hw_queues(q);
Bartlomiej Zolnierkiewicz2ea55212009-01-14 19:19:04 +0100215 else
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100216 drive->dev_flags &= ~IDE_DFLAG_BLOCKED;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100217
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100218 drive->hwif->rq = NULL;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100219
Jens Axboe60033522018-10-26 09:53:52 -0600220 blk_mq_end_request(rq, BLK_STS_OK);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100221}
222
223void ide_check_pm_state(ide_drive_t *drive, struct request *rq)
224{
Christoph Hellwig22ce0a72018-11-10 09:30:49 +0100225 struct ide_pm_state *pm = ide_req(rq)->special;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100226
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100227 if (blk_rq_is_private(rq) &&
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100228 ide_req(rq)->type == ATA_PRIV_PM_SUSPEND &&
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100229 pm->pm_step == IDE_PM_START_SUSPEND)
230 /* Mark drive blocked when starting the suspend sequence. */
231 drive->dev_flags |= IDE_DFLAG_BLOCKED;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100232 else if (blk_rq_is_private(rq) &&
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100233 ide_req(rq)->type == ATA_PRIV_PM_RESUME &&
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100234 pm->pm_step == IDE_PM_START_RESUME) {
235 /*
236 * The first thing we do on wakeup is to wait for BSY bit to
237 * go away (with a looong timeout) as a drive on this hwif may
238 * just be POSTing itself.
239 * We do that before even selecting as the "other" device on
240 * the bus may be broken enough to walk on our toes at this
241 * point.
242 */
243 ide_hwif_t *hwif = drive->hwif;
Sergei Shtylyovfdd88f02009-03-31 20:15:33 +0200244 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewicz2ea55212009-01-14 19:19:04 +0100245 struct request_queue *q = drive->queue;
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100246 int rc;
247#ifdef DEBUG_PM
248 printk("%s: Wakeup request inited, waiting for !BSY...\n", drive->name);
249#endif
250 rc = ide_wait_not_busy(hwif, 35000);
251 if (rc)
252 printk(KERN_WARNING "%s: bus not ready on wakeup\n", drive->name);
Sergei Shtylyovfdd88f02009-03-31 20:15:33 +0200253 tp_ops->dev_select(drive);
254 tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100255 rc = ide_wait_not_busy(hwif, 100000);
256 if (rc)
257 printk(KERN_WARNING "%s: drive not ready on wakeup\n", drive->name);
Bartlomiej Zolnierkiewicz2ea55212009-01-14 19:19:04 +0100258
Jens Axboe60033522018-10-26 09:53:52 -0600259 blk_mq_start_hw_queues(q);
Bartlomiej Zolnierkiewicze2984c62008-12-29 20:27:37 +0100260 }
261}