blob: 80bc3bf82f4d7266bfe37bff2c0f88b9ecd2a302 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +02002/*
3 * ATAPI support.
4 */
5
6#include <linux/kernel.h>
Borislav Petkov4cad0852009-01-02 16:12:53 +01007#include <linux/cdrom.h>
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +02008#include <linux/delay.h>
Paul Gortmaker38789fd2011-07-17 15:33:58 -04009#include <linux/export.h>
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +020010#include <linux/ide.h>
Geert Uytterhoeven479edf02009-03-31 20:14:57 +020011#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Geert Uytterhoeven479edf02009-03-31 20:14:57 +020013
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +020014#include <scsi/scsi.h>
15
Borislav Petkov103f7032009-04-26 10:39:07 +020016#define DRV_NAME "ide-atapi"
17#define PFX DRV_NAME ": "
18
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +020019#ifdef DEBUG
20#define debug_log(fmt, args...) \
21 printk(KERN_INFO "ide: " fmt, ## args)
22#else
23#define debug_log(fmt, args...) do {} while (0)
24#endif
25
Borislav Petkov8c662852009-01-02 16:12:54 +010026#define ATAPI_MIN_CDB_BYTES 12
27
Borislav Petkov991cb262009-01-02 16:12:52 +010028static inline int dev_is_idecd(ide_drive_t *drive)
29{
Borislav Petkov53174642009-01-02 16:12:54 +010030 return drive->media == ide_cdrom || drive->media == ide_optical;
Borislav Petkov991cb262009-01-02 16:12:52 +010031}
32
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020033/*
34 * Check whether we can support a device,
35 * based on the ATAPI IDENTIFY command results.
36 */
37int ide_check_atapi_device(ide_drive_t *drive, const char *s)
38{
39 u16 *id = drive->id;
40 u8 gcw[2], protocol, device_type, removable, drq_type, packet_size;
41
42 *((u16 *)&gcw) = id[ATA_ID_CONFIG];
43
44 protocol = (gcw[1] & 0xC0) >> 6;
45 device_type = gcw[1] & 0x1F;
46 removable = (gcw[0] & 0x80) >> 7;
47 drq_type = (gcw[0] & 0x60) >> 5;
48 packet_size = gcw[0] & 0x03;
49
50#ifdef CONFIG_PPC
51 /* kludge for Apple PowerBook internal zip */
52 if (drive->media == ide_floppy && device_type == 5 &&
53 !strstr((char *)&id[ATA_ID_PROD], "CD-ROM") &&
54 strstr((char *)&id[ATA_ID_PROD], "ZIP"))
55 device_type = 0;
56#endif
57
58 if (protocol != 2)
59 printk(KERN_ERR "%s: %s: protocol (0x%02x) is not ATAPI\n",
60 s, drive->name, protocol);
61 else if ((drive->media == ide_floppy && device_type != 0) ||
62 (drive->media == ide_tape && device_type != 1))
63 printk(KERN_ERR "%s: %s: invalid device type (0x%02x)\n",
64 s, drive->name, device_type);
65 else if (removable == 0)
66 printk(KERN_ERR "%s: %s: the removable flag is not set\n",
67 s, drive->name);
68 else if (drive->media == ide_floppy && drq_type == 3)
69 printk(KERN_ERR "%s: %s: sorry, DRQ type (0x%02x) not "
70 "supported\n", s, drive->name, drq_type);
71 else if (packet_size != 0)
72 printk(KERN_ERR "%s: %s: packet size (0x%02x) is not 12 "
73 "bytes\n", s, drive->name, packet_size);
74 else
75 return 1;
76 return 0;
77}
78EXPORT_SYMBOL_GPL(ide_check_atapi_device);
79
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +020080void ide_init_pc(struct ide_atapi_pc *pc)
81{
82 memset(pc, 0, sizeof(*pc));
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +020083}
84EXPORT_SYMBOL_GPL(ide_init_pc);
85
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +020086/*
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +020087 * Add a special packet command request to the tail of the request queue,
88 * and wait for it to be serviced.
89 */
90int ide_queue_pc_tail(ide_drive_t *drive, struct gendisk *disk,
Borislav Petkovb13345f2009-05-02 10:26:12 +020091 struct ide_atapi_pc *pc, void *buf, unsigned int bufflen)
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +020092{
93 struct request *rq;
94 int error;
95
Christoph Hellwigff005a02018-05-09 09:54:05 +020096 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, 0);
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +010097 ide_req(rq)->type = ATA_PRIV_MISC;
Christoph Hellwig22ce0a72018-11-10 09:30:49 +010098 ide_req(rq)->special = pc;
Borislav Petkov3eb76c12009-03-13 21:16:12 +010099
Borislav Petkovb13345f2009-05-02 10:26:12 +0200100 if (buf && bufflen) {
101 error = blk_rq_map_kern(drive->queue, rq, buf, bufflen,
Tejun Heo5c4be572009-04-19 07:00:42 +0900102 GFP_NOIO);
103 if (error)
104 goto put_req;
Borislav Petkov3eb76c12009-03-13 21:16:12 +0100105 }
106
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100107 memcpy(scsi_req(rq)->cmd, pc->c, 12);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200108 if (drive->media == ide_tape)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100109 scsi_req(rq)->cmd[13] = REQ_IDETAPE_PC1;
Christoph Hellwigb7819b92017-04-20 16:02:55 +0200110 blk_execute_rq(drive->queue, disk, rq, 0);
Christoph Hellwig17d53632017-04-20 16:03:01 +0200111 error = scsi_req(rq)->result ? -EIO : 0;
Tejun Heo5c4be572009-04-19 07:00:42 +0900112put_req:
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200113 blk_put_request(rq);
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200114 return error;
115}
116EXPORT_SYMBOL_GPL(ide_queue_pc_tail);
117
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200118int ide_do_test_unit_ready(ide_drive_t *drive, struct gendisk *disk)
119{
120 struct ide_atapi_pc pc;
121
122 ide_init_pc(&pc);
123 pc.c[0] = TEST_UNIT_READY;
124
Borislav Petkovb13345f2009-05-02 10:26:12 +0200125 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200126}
127EXPORT_SYMBOL_GPL(ide_do_test_unit_ready);
128
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200129int ide_do_start_stop(ide_drive_t *drive, struct gendisk *disk, int start)
130{
131 struct ide_atapi_pc pc;
132
133 ide_init_pc(&pc);
134 pc.c[0] = START_STOP;
135 pc.c[4] = start;
136
137 if (drive->media == ide_tape)
138 pc.flags |= PC_FLAG_WAIT_FOR_DSC;
139
Borislav Petkovb13345f2009-05-02 10:26:12 +0200140 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200141}
142EXPORT_SYMBOL_GPL(ide_do_start_stop);
143
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +0200144int ide_set_media_lock(ide_drive_t *drive, struct gendisk *disk, int on)
145{
146 struct ide_atapi_pc pc;
147
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +0200148 if ((drive->dev_flags & IDE_DFLAG_DOORLOCKING) == 0)
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +0200149 return 0;
150
151 ide_init_pc(&pc);
152 pc.c[0] = ALLOW_MEDIUM_REMOVAL;
153 pc.c[4] = on;
154
Borislav Petkovb13345f2009-05-02 10:26:12 +0200155 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +0200156}
157EXPORT_SYMBOL_GPL(ide_set_media_lock);
158
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200159void ide_create_request_sense_cmd(ide_drive_t *drive, struct ide_atapi_pc *pc)
160{
161 ide_init_pc(pc);
162 pc->c[0] = REQUEST_SENSE;
163 if (drive->media == ide_floppy) {
164 pc->c[4] = 255;
165 pc->req_xfer = 18;
166 } else {
167 pc->c[4] = 20;
168 pc->req_xfer = 20;
169 }
170}
171EXPORT_SYMBOL_GPL(ide_create_request_sense_cmd);
172
Borislav Petkova1df5162009-04-19 07:00:42 +0900173void ide_prep_sense(ide_drive_t *drive, struct request *rq)
174{
175 struct request_sense *sense = &drive->sense_data;
Jens Axboe60033522018-10-26 09:53:52 -0600176 struct request *sense_rq;
177 struct scsi_request *req;
Borislav Petkova1df5162009-04-19 07:00:42 +0900178 unsigned int cmd_len, sense_len;
Tejun Heo5c4be572009-04-19 07:00:42 +0900179 int err;
Borislav Petkova1df5162009-04-19 07:00:42 +0900180
Borislav Petkova1df5162009-04-19 07:00:42 +0900181 switch (drive->media) {
182 case ide_floppy:
183 cmd_len = 255;
184 sense_len = 18;
185 break;
186 case ide_tape:
187 cmd_len = 20;
188 sense_len = 20;
189 break;
190 default:
191 cmd_len = 18;
192 sense_len = 18;
193 }
194
195 BUG_ON(sense_len > sizeof(*sense));
196
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100197 if (ata_sense_request(rq) || drive->sense_rq_armed)
Borislav Petkova1df5162009-04-19 07:00:42 +0900198 return;
199
Jens Axboe60033522018-10-26 09:53:52 -0600200 sense_rq = drive->sense_rq;
201 if (!sense_rq) {
202 sense_rq = blk_mq_alloc_request(drive->queue, REQ_OP_DRV_IN,
203 BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT);
204 drive->sense_rq = sense_rq;
205 }
206 req = scsi_req(sense_rq);
207
Borislav Petkova1df5162009-04-19 07:00:42 +0900208 memset(sense, 0, sizeof(*sense));
209
Bart Van Asschec8d9cf22017-06-20 11:15:42 -0700210 scsi_req_init(req);
Borislav Petkova1df5162009-04-19 07:00:42 +0900211
Tejun Heo5c4be572009-04-19 07:00:42 +0900212 err = blk_rq_map_kern(drive->queue, sense_rq, sense, sense_len,
213 GFP_NOIO);
214 if (unlikely(err)) {
215 if (printk_ratelimit())
Borislav Petkov103f7032009-04-26 10:39:07 +0200216 printk(KERN_WARNING PFX "%s: failed to map sense "
217 "buffer\n", drive->name);
Jens Axboe60033522018-10-26 09:53:52 -0600218 blk_mq_free_request(sense_rq);
219 drive->sense_rq = NULL;
Tejun Heo5c4be572009-04-19 07:00:42 +0900220 return;
221 }
222
223 sense_rq->rq_disk = rq->rq_disk;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100224 sense_rq->cmd_flags = REQ_OP_DRV_IN;
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100225 ide_req(sense_rq)->type = ATA_PRIV_SENSE;
Christoph Hellwige8064022016-10-20 15:12:13 +0200226 sense_rq->rq_flags |= RQF_PREEMPT;
Borislav Petkova1df5162009-04-19 07:00:42 +0900227
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100228 req->cmd[0] = GPCMD_REQUEST_SENSE;
229 req->cmd[4] = cmd_len;
Borislav Petkova1df5162009-04-19 07:00:42 +0900230 if (drive->media == ide_tape)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100231 req->cmd[13] = REQ_IDETAPE_PC1;
Borislav Petkova1df5162009-04-19 07:00:42 +0900232
233 drive->sense_rq_armed = true;
234}
235EXPORT_SYMBOL_GPL(ide_prep_sense);
236
Tejun Heo5c4be572009-04-19 07:00:42 +0900237int ide_queue_sense_rq(ide_drive_t *drive, void *special)
Borislav Petkova1df5162009-04-19 07:00:42 +0900238{
Jens Axboe9a6d5482019-01-30 08:41:40 -0700239 ide_hwif_t *hwif = drive->hwif;
240 struct request *sense_rq;
241 unsigned long flags;
242
243 spin_lock_irqsave(&hwif->lock, flags);
Jens Axboe60033522018-10-26 09:53:52 -0600244
Tejun Heo5c4be572009-04-19 07:00:42 +0900245 /* deferred failure from ide_prep_sense() */
246 if (!drive->sense_rq_armed) {
Borislav Petkov103f7032009-04-26 10:39:07 +0200247 printk(KERN_WARNING PFX "%s: error queuing a sense request\n",
Tejun Heo5c4be572009-04-19 07:00:42 +0900248 drive->name);
Jens Axboe9a6d5482019-01-30 08:41:40 -0700249 spin_unlock_irqrestore(&hwif->lock, flags);
Tejun Heo5c4be572009-04-19 07:00:42 +0900250 return -ENOMEM;
251 }
Borislav Petkova1df5162009-04-19 07:00:42 +0900252
Jens Axboe9a6d5482019-01-30 08:41:40 -0700253 sense_rq = drive->sense_rq;
Christoph Hellwig22ce0a72018-11-10 09:30:49 +0100254 ide_req(sense_rq)->special = special;
Borislav Petkova1df5162009-04-19 07:00:42 +0900255 drive->sense_rq_armed = false;
256
257 drive->hwif->rq = NULL;
258
Jens Axboe60033522018-10-26 09:53:52 -0600259 ide_insert_request_head(drive, sense_rq);
Jens Axboe9a6d5482019-01-30 08:41:40 -0700260 spin_unlock_irqrestore(&hwif->lock, flags);
Tejun Heo5c4be572009-04-19 07:00:42 +0900261 return 0;
Borislav Petkova1df5162009-04-19 07:00:42 +0900262}
263EXPORT_SYMBOL_GPL(ide_queue_sense_rq);
264
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200265/*
266 * Called when an error was detected during the last packet command.
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900267 * We queue a request sense packet command at the head of the request
268 * queue.
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200269 */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900270void ide_retry_pc(ide_drive_t *drive)
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200271{
Tejun Heo8f6205c2009-05-08 11:53:59 +0900272 struct request *failed_rq = drive->hwif->rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100273 struct request *sense_rq = drive->sense_rq;
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200274 struct ide_atapi_pc *pc = &drive->request_sense_pc;
275
276 (void)ide_read_error(drive);
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900277
278 /* init pc from sense_rq */
279 ide_init_pc(pc);
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100280 memcpy(pc->c, scsi_req(sense_rq)->cmd, 12);
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900281
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200282 if (drive->media == ide_tape)
Borislav Petkov626542c2009-06-07 15:37:05 +0200283 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900284
Tejun Heo8f6205c2009-05-08 11:53:59 +0900285 /*
286 * Push back the failed request and put request sense on top
287 * of it. The failed command will be retried after sense data
288 * is acquired.
289 */
Tejun Heo8f6205c2009-05-08 11:53:59 +0900290 drive->hwif->rq = NULL;
Herbert Xu1af18502010-03-31 20:13:39 +0000291 ide_requeue_and_plug(drive, failed_rq);
Jens Axboe60033522018-10-26 09:53:52 -0600292 if (ide_queue_sense_rq(drive, pc))
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200293 ide_complete_rq(drive, BLK_STS_IOERR, blk_rq_bytes(failed_rq));
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200294}
295EXPORT_SYMBOL_GPL(ide_retry_pc);
296
Borislav Petkov4cad0852009-01-02 16:12:53 +0100297int ide_cd_expiry(ide_drive_t *drive)
298{
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100299 struct request *rq = drive->hwif->rq;
Borislav Petkov4cad0852009-01-02 16:12:53 +0100300 unsigned long wait = 0;
301
Hongxu Jia8dc7a312017-11-10 15:59:17 +0800302 debug_log("%s: scsi_req(rq)->cmd[0]: 0x%x\n", __func__, scsi_req(rq)->cmd[0]);
Borislav Petkov4cad0852009-01-02 16:12:53 +0100303
304 /*
305 * Some commands are *slow* and normally take a long time to complete.
306 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
307 * commands/drives support that. Let ide_timer_expiry keep polling us
308 * for these.
309 */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100310 switch (scsi_req(rq)->cmd[0]) {
Borislav Petkov4cad0852009-01-02 16:12:53 +0100311 case GPCMD_BLANK:
312 case GPCMD_FORMAT_UNIT:
313 case GPCMD_RESERVE_RZONE_TRACK:
314 case GPCMD_CLOSE_TRACK:
315 case GPCMD_FLUSH_CACHE:
316 wait = ATAPI_WAIT_PC;
317 break;
318 default:
Christoph Hellwige8064022016-10-20 15:12:13 +0200319 if (!(rq->rq_flags & RQF_QUIET))
Borislav Petkov103f7032009-04-26 10:39:07 +0200320 printk(KERN_INFO PFX "cmd 0x%x timed out\n",
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100321 scsi_req(rq)->cmd[0]);
Borislav Petkov4cad0852009-01-02 16:12:53 +0100322 wait = 0;
323 break;
324 }
325 return wait;
326}
327EXPORT_SYMBOL_GPL(ide_cd_expiry);
328
Borislav Petkov392de1d2009-01-02 16:12:52 +0100329int ide_cd_get_xferlen(struct request *rq)
330{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100331 switch (req_op(rq)) {
332 default:
Borislav Petkov392de1d2009-01-02 16:12:52 +0100333 return 32768;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100334 case REQ_OP_SCSI_IN:
335 case REQ_OP_SCSI_OUT:
Tejun Heo34b7d2c2009-05-07 22:24:43 +0900336 return blk_rq_bytes(rq);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100337 case REQ_OP_DRV_IN:
338 case REQ_OP_DRV_OUT:
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100339 switch (ide_req(rq)->type) {
340 case ATA_PRIV_PC:
341 case ATA_PRIV_SENSE:
342 return blk_rq_bytes(rq);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100343 default:
344 return 0;
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100345 }
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200346 }
Borislav Petkov392de1d2009-01-02 16:12:52 +0100347}
348EXPORT_SYMBOL_GPL(ide_cd_get_xferlen);
349
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100350void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
351{
Sergei Shtylyov3153c262009-04-08 14:13:03 +0200352 struct ide_taskfile tf;
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100353
Sergei Shtylyov3153c262009-04-08 14:13:03 +0200354 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT |
355 IDE_VALID_LBAM | IDE_VALID_LBAH);
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100356
Sergei Shtylyov3153c262009-04-08 14:13:03 +0200357 *bcount = (tf.lbah << 8) | tf.lbam;
358 *ireason = tf.nsect & 3;
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100359}
360EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
361
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200362/*
Borislav Petkov103f7032009-04-26 10:39:07 +0200363 * Check the contents of the interrupt reason register and attempt to recover if
364 * there are problems.
365 *
366 * Returns:
367 * - 0 if everything's ok
368 * - 1 if the request has to be terminated.
369 */
370int ide_check_ireason(ide_drive_t *drive, struct request *rq, int len,
371 int ireason, int rw)
372{
373 ide_hwif_t *hwif = drive->hwif;
374
375 debug_log("ireason: 0x%x, rw: 0x%x\n", ireason, rw);
376
377 if (ireason == (!rw << 1))
378 return 0;
379 else if (ireason == (rw << 1)) {
380 printk(KERN_ERR PFX "%s: %s: wrong transfer direction!\n",
381 drive->name, __func__);
382
383 if (dev_is_idecd(drive))
384 ide_pad_transfer(drive, rw, len);
385 } else if (!rw && ireason == ATAPI_COD) {
386 if (dev_is_idecd(drive)) {
387 /*
388 * Some drives (ASUS) seem to tell us that status info
389 * is available. Just get it and ignore.
390 */
391 (void)hwif->tp_ops->read_status(hwif);
392 return 0;
393 }
394 } else {
395 if (ireason & ATAPI_COD)
396 printk(KERN_ERR PFX "%s: CoD != 0 in %s\n", drive->name,
397 __func__);
398
399 /* drive wants a command packet, or invalid ireason... */
400 printk(KERN_ERR PFX "%s: %s: bad interrupt reason 0x%02x\n",
401 drive->name, __func__, ireason);
402 }
403
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100404 if (dev_is_idecd(drive) && ata_pc_request(rq))
Christoph Hellwige8064022016-10-20 15:12:13 +0200405 rq->rq_flags |= RQF_FAILED;
Borislav Petkov103f7032009-04-26 10:39:07 +0200406
407 return 1;
408}
409EXPORT_SYMBOL_GPL(ide_check_ireason);
410
411/*
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200412 * This is the usual interrupt handler which will be called during a packet
413 * command. We will transfer some of the data (as requested by the drive)
414 * and will re-point interrupt handler to us.
415 */
416static ide_startstop_t ide_pc_intr(ide_drive_t *drive)
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200417{
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200418 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200419 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczf094d4d82009-03-31 20:15:24 +0200420 struct ide_cmd *cmd = &hwif->cmd;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100421 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200422 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200423 unsigned int timeout, done;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200424 u16 bcount;
Borislav Petkov5d655a02009-01-02 16:12:54 +0100425 u8 stat, ireason, dsc = 0;
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200426 u8 write = !!(pc->flags & PC_FLAG_WRITING);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200427
428 debug_log("Enter %s - interrupt handler\n", __func__);
429
Borislav Petkov5d655a02009-01-02 16:12:54 +0100430 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
431 : WAIT_TAPE_CMD;
Bartlomiej Zolnierkiewicz844b9462008-10-13 21:39:31 +0200432
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200433 /* Clear the interrupt */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200434 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200435
436 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
Bartlomiej Zolnierkiewicz88b41322009-03-31 20:15:22 +0200437 int rc;
Bartlomiej Zolnierkiewicz44530112009-03-31 20:15:20 +0200438
Bartlomiej Zolnierkiewicz88b41322009-03-31 20:15:22 +0200439 drive->waiting_for_dma = 0;
440 rc = hwif->dma_ops->dma_end(drive);
Bartlomiej Zolnierkiewiczf094d4d82009-03-31 20:15:24 +0200441 ide_dma_unmap_sg(drive, cmd);
Bartlomiej Zolnierkiewicz44530112009-03-31 20:15:20 +0200442
443 if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) {
Borislav Petkov5d655a02009-01-02 16:12:54 +0100444 if (drive->media == ide_floppy)
Borislav Petkov103f7032009-04-26 10:39:07 +0200445 printk(KERN_ERR PFX "%s: DMA %s error\n",
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200446 drive->name, rq_data_dir(pc->rq)
447 ? "write" : "read");
448 pc->flags |= PC_FLAG_DMA_ERROR;
Tejun Heo6d700382009-04-19 08:46:03 +0900449 } else
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100450 scsi_req(rq)->resid_len = 0;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200451 debug_log("%s: DMA finished\n", drive->name);
452 }
453
454 /* No more interrupts */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200455 if ((stat & ATA_DRQ) == 0) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200456 int uptodate;
457 blk_status_t error;
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100458
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200459 debug_log("Packet command completed, %d bytes transferred\n",
Borislav Petkov077e6db2009-05-01 21:21:02 +0200460 blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200461
462 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
463
464 local_irq_enable_in_hardirq();
465
Borislav Petkov5d655a02009-01-02 16:12:54 +0100466 if (drive->media == ide_tape &&
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100467 (stat & ATA_ERR) && scsi_req(rq)->cmd[0] == REQUEST_SENSE)
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200468 stat &= ~ATA_ERR;
Borislav Petkov8fccf892008-07-23 19:56:01 +0200469
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200470 if ((stat & ATA_ERR) || (pc->flags & PC_FLAG_DMA_ERROR)) {
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200471 /* Error detected */
472 debug_log("%s: I/O error\n", drive->name);
473
Borislav Petkov5d655a02009-01-02 16:12:54 +0100474 if (drive->media != ide_tape)
Christoph Hellwig17d53632017-04-20 16:03:01 +0200475 scsi_req(pc->rq)->result++;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200476
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100477 if (scsi_req(rq)->cmd[0] == REQUEST_SENSE) {
Borislav Petkov103f7032009-04-26 10:39:07 +0200478 printk(KERN_ERR PFX "%s: I/O error in request "
479 "sense command\n", drive->name);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200480 return ide_do_reset(drive);
481 }
482
Hongxu Jia8dc7a312017-11-10 15:59:17 +0800483 debug_log("[cmd %x]: check condition\n", scsi_req(rq)->cmd[0]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200484
485 /* Retry operation */
Borislav Petkov6b544fc2009-04-19 07:00:42 +0900486 ide_retry_pc(drive);
Borislav Petkov8fccf892008-07-23 19:56:01 +0200487
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200488 /* queued, but not started */
489 return ide_stopped;
490 }
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200491 pc->error = 0;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200492
493 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && (stat & ATA_DSC) == 0)
494 dsc = 1;
Borislav Petkov8fccf892008-07-23 19:56:01 +0200495
Tejun Heob3071d12009-04-19 08:46:02 +0900496 /*
497 * ->pc_callback() might change rq->data_len for
498 * residual count, cache total length.
499 */
Tejun Heo21d9c5d2009-04-19 08:46:02 +0900500 done = blk_rq_bytes(rq);
Tejun Heob3071d12009-04-19 08:46:02 +0900501
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200502 /* Command finished - Call the callback function */
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100503 uptodate = drive->pc_callback(drive, dsc);
504
505 if (uptodate == 0)
506 drive->failed_pc = NULL;
507
Christoph Hellwig2f5a8e802017-01-31 16:57:30 +0100508 if (ata_misc_request(rq)) {
Christoph Hellwig17d53632017-04-20 16:03:01 +0200509 scsi_req(rq)->result = 0;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200510 error = BLK_STS_OK;
Bartlomiej Zolnierkiewicz89f78b32009-03-27 12:46:43 +0100511 } else {
Bartlomiej Zolnierkiewicz349d12a2009-03-31 20:15:26 +0200512
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100513 if (blk_rq_is_passthrough(rq) && uptodate <= 0) {
Christoph Hellwig17d53632017-04-20 16:03:01 +0200514 if (scsi_req(rq)->result == 0)
515 scsi_req(rq)->result = -EIO;
Bartlomiej Zolnierkiewicz89f78b32009-03-27 12:46:43 +0100516 }
Bartlomiej Zolnierkiewicz349d12a2009-03-31 20:15:26 +0200517
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200518 error = uptodate ? BLK_STS_OK : BLK_STS_IOERR;
Bartlomiej Zolnierkiewicz89f78b32009-03-27 12:46:43 +0100519 }
Borislav Petkov8fccf892008-07-23 19:56:01 +0200520
Tejun Heoc3a4d782009-05-07 22:24:37 +0900521 ide_complete_rq(drive, error, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200522 return ide_stopped;
523 }
524
525 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
526 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
Borislav Petkov103f7032009-04-26 10:39:07 +0200527 printk(KERN_ERR PFX "%s: The device wants to issue more "
528 "interrupts in DMA mode\n", drive->name);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200529 ide_dma_off(drive);
530 return ide_do_reset(drive);
531 }
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200532
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200533 /* Get the number of bytes to transfer on this interrupt. */
534 ide_read_bcount_and_ireason(drive, &bcount, &ireason);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200535
Borislav Petkov103f7032009-04-26 10:39:07 +0200536 if (ide_check_ireason(drive, rq, bcount, ireason, write))
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200537 return ide_do_reset(drive);
Borislav Petkov8fccf892008-07-23 19:56:01 +0200538
Tejun Heo6d700382009-04-19 08:46:03 +0900539 done = min_t(unsigned int, bcount, cmd->nleft);
540 ide_pio_bytes(drive, cmd, write, done);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200541
Tejun Heo6d700382009-04-19 08:46:03 +0900542 /* Update transferred byte count */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100543 scsi_req(rq)->resid_len -= done;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200544
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200545 bcount -= done;
546
547 if (bcount)
548 ide_pad_transfer(drive, write, bcount);
549
Borislav Petkov077e6db2009-05-01 21:21:02 +0200550 debug_log("[cmd %x] transferred %d bytes, padded %d bytes, resid: %u\n",
Hongxu Jia8dc7a312017-11-10 15:59:17 +0800551 scsi_req(rq)->cmd[0], done, bcount, scsi_req(rq)->resid_len);
Bartlomiej Zolnierkiewiczd93bc452009-03-31 20:15:26 +0200552
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200553 /* And set the interrupt handler again */
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100554 ide_set_handler(drive, ide_pc_intr, timeout);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200555 return ide_started;
556}
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200557
Sergei Shtylyov60f85012009-04-08 14:13:01 +0200558static void ide_init_packet_cmd(struct ide_cmd *cmd, u8 valid_tf,
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100559 u16 bcount, u8 dma)
Bartlomiej Zolnierkiewicz7a254df2009-03-24 23:22:39 +0100560{
Sergei Shtylyov60f85012009-04-08 14:13:01 +0200561 cmd->protocol = dma ? ATAPI_PROT_DMA : ATAPI_PROT_PIO;
562 cmd->valid.out.tf = IDE_VALID_LBAH | IDE_VALID_LBAM |
563 IDE_VALID_FEATURE | valid_tf;
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100564 cmd->tf.command = ATA_CMD_PACKET;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100565 cmd->tf.feature = dma; /* Use PIO/DMA */
566 cmd->tf.lbam = bcount & 0xff;
567 cmd->tf.lbah = (bcount >> 8) & 0xff;
Bartlomiej Zolnierkiewicz7a254df2009-03-24 23:22:39 +0100568}
569
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200570static u8 ide_read_ireason(ide_drive_t *drive)
571{
Sergei Shtylyov3153c262009-04-08 14:13:03 +0200572 struct ide_taskfile tf;
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200573
Sergei Shtylyov3153c262009-04-08 14:13:03 +0200574 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT);
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200575
Sergei Shtylyov3153c262009-04-08 14:13:03 +0200576 return tf.nsect & 3;
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200577}
578
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200579static u8 ide_wait_ireason(ide_drive_t *drive, u8 ireason)
580{
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200581 int retries = 100;
582
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200583 while (retries-- && ((ireason & ATAPI_COD) == 0 ||
584 (ireason & ATAPI_IO))) {
Borislav Petkov103f7032009-04-26 10:39:07 +0200585 printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing "
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200586 "a packet command, retrying\n", drive->name);
587 udelay(100);
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200588 ireason = ide_read_ireason(drive);
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200589 if (retries == 0) {
Borislav Petkov103f7032009-04-26 10:39:07 +0200590 printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing"
591 " a packet command, ignoring\n",
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200592 drive->name);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200593 ireason |= ATAPI_COD;
594 ireason &= ~ATAPI_IO;
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200595 }
596 }
597
598 return ireason;
599}
600
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200601static int ide_delayed_transfer_pc(ide_drive_t *drive)
602{
603 /* Send the actual packet */
604 drive->hwif->tp_ops->output_data(drive, NULL, drive->pc->c, 12);
605
606 /* Timeout for the packet command */
607 return WAIT_FLOPPY_CMD;
608}
609
610static ide_startstop_t ide_transfer_pc(ide_drive_t *drive)
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200611{
Borislav Petkovb16aabc2009-01-02 16:12:56 +0100612 struct ide_atapi_pc *uninitialized_var(pc);
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200613 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100614 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200615 ide_expiry_t *expiry;
616 unsigned int timeout;
Borislav Petkov8c662852009-01-02 16:12:54 +0100617 int cmd_len;
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200618 ide_startstop_t startstop;
619 u8 ireason;
620
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200621 if (ide_wait_stat(&startstop, drive, ATA_DRQ, ATA_BUSY, WAIT_READY)) {
Borislav Petkov103f7032009-04-26 10:39:07 +0200622 printk(KERN_ERR PFX "%s: Strange, packet command initiated yet "
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200623 "DRQ isn't asserted\n", drive->name);
624 return startstop;
625 }
626
Borislav Petkov5f258432009-01-02 16:12:53 +0100627 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
628 if (drive->dma)
629 drive->waiting_for_dma = 1;
630 }
631
Borislav Petkov8c662852009-01-02 16:12:54 +0100632 if (dev_is_idecd(drive)) {
633 /* ATAPI commands get padded out to 12 bytes minimum */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100634 cmd_len = COMMAND_SIZE(scsi_req(rq)->cmd[0]);
Borislav Petkov8c662852009-01-02 16:12:54 +0100635 if (cmd_len < ATAPI_MIN_CDB_BYTES)
636 cmd_len = ATAPI_MIN_CDB_BYTES;
Borislav Petkovdef860d2009-01-02 16:12:55 +0100637
638 timeout = rq->timeout;
639 expiry = ide_cd_expiry;
640 } else {
Borislav Petkovb16aabc2009-01-02 16:12:56 +0100641 pc = drive->pc;
642
Borislav Petkov8c662852009-01-02 16:12:54 +0100643 cmd_len = ATAPI_MIN_CDB_BYTES;
644
Borislav Petkovdef860d2009-01-02 16:12:55 +0100645 /*
646 * If necessary schedule the packet transfer to occur 'timeout'
Martin Olsson19af5cd2009-04-23 11:37:37 +0200647 * milliseconds later in ide_delayed_transfer_pc() after the
Borislav Petkovdef860d2009-01-02 16:12:55 +0100648 * device says it's ready for a packet.
649 */
650 if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) {
651 timeout = drive->pc_delay;
652 expiry = &ide_delayed_transfer_pc;
653 } else {
654 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
655 : WAIT_TAPE_CMD;
656 expiry = NULL;
657 }
Borislav Petkov06cc2772009-01-02 16:12:56 +0100658
659 ireason = ide_read_ireason(drive);
660 if (drive->media == ide_tape)
661 ireason = ide_wait_ireason(drive, ireason);
662
663 if ((ireason & ATAPI_COD) == 0 || (ireason & ATAPI_IO)) {
Borislav Petkov103f7032009-04-26 10:39:07 +0200664 printk(KERN_ERR PFX "%s: (IO,CoD) != (0,1) while "
665 "issuing a packet command\n", drive->name);
Borislav Petkov06cc2772009-01-02 16:12:56 +0100666
667 return ide_do_reset(drive);
668 }
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200669 }
670
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100671 hwif->expiry = expiry;
672
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200673 /* Set the interrupt routine */
Borislav Petkovd6251d442009-01-06 17:20:58 +0100674 ide_set_handler(drive,
675 (dev_is_idecd(drive) ? drive->irq_handler
676 : ide_pc_intr),
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100677 timeout);
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200678
Borislav Petkov2eba0822009-03-31 20:14:58 +0200679 /* Send the actual packet */
680 if ((drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) == 0)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100681 hwif->tp_ops->output_data(drive, NULL, scsi_req(rq)->cmd, cmd_len);
Borislav Petkov2eba0822009-03-31 20:14:58 +0200682
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200683 /* Begin DMA, if necessary */
Borislav Petkovb16aabc2009-01-02 16:12:56 +0100684 if (dev_is_idecd(drive)) {
685 if (drive->dma)
686 hwif->dma_ops->dma_start(drive);
687 } else {
688 if (pc->flags & PC_FLAG_DMA_OK) {
689 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
690 hwif->dma_ops->dma_start(drive);
691 }
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200692 }
693
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200694 return ide_started;
695}
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200696
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100697ide_startstop_t ide_issue_pc(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200698{
Borislav Petkovd77612a2009-01-02 16:12:55 +0100699 struct ide_atapi_pc *pc;
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200700 ide_hwif_t *hwif = drive->hwif;
Borislav Petkov4cad0852009-01-02 16:12:53 +0100701 ide_expiry_t *expiry = NULL;
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100702 struct request *rq = hwif->rq;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200703 unsigned int timeout, bytes;
Borislav Petkov392de1d2009-01-02 16:12:52 +0100704 u16 bcount;
Sergei Shtylyov60f85012009-04-08 14:13:01 +0200705 u8 valid_tf;
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100706 u8 drq_int = !!(drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT);
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200707
Borislav Petkoved485542009-01-02 16:12:52 +0100708 if (dev_is_idecd(drive)) {
Sergei Shtylyov60f85012009-04-08 14:13:01 +0200709 valid_tf = IDE_VALID_NSECT | IDE_VALID_LBAL;
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100710 bcount = ide_cd_get_xferlen(rq);
Borislav Petkov4cad0852009-01-02 16:12:53 +0100711 expiry = ide_cd_expiry;
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100712 timeout = ATAPI_WAIT_PC;
Borislav Petkovd77612a2009-01-02 16:12:55 +0100713
Bartlomiej Zolnierkiewicz5ae54122009-03-31 20:15:20 +0200714 if (drive->dma)
715 drive->dma = !ide_dma_prepare(drive, cmd);
Borislav Petkoved485542009-01-02 16:12:52 +0100716 } else {
Borislav Petkovd77612a2009-01-02 16:12:55 +0100717 pc = drive->pc;
718
Sergei Shtylyov60f85012009-04-08 14:13:01 +0200719 valid_tf = IDE_VALID_DEVICE;
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200720 bytes = blk_rq_bytes(rq);
Borislav Petkovdfb7e622009-05-01 20:35:21 +0200721 bcount = ((drive->media == ide_tape) ? bytes
722 : min_t(unsigned int,
723 bytes, 63 * 1024));
Borislav Petkovd77612a2009-01-02 16:12:55 +0100724
Borislav Petkov077e6db2009-05-01 21:21:02 +0200725 /* We haven't transferred any data yet */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100726 scsi_req(rq)->resid_len = bcount;
Borislav Petkovd77612a2009-01-02 16:12:55 +0100727
728 if (pc->flags & PC_FLAG_DMA_ERROR) {
729 pc->flags &= ~PC_FLAG_DMA_ERROR;
730 ide_dma_off(drive);
731 }
732
Bartlomiej Zolnierkiewicz5ae54122009-03-31 20:15:20 +0200733 if (pc->flags & PC_FLAG_DMA_OK)
734 drive->dma = !ide_dma_prepare(drive, cmd);
Borislav Petkovd77612a2009-01-02 16:12:55 +0100735
736 if (!drive->dma)
737 pc->flags &= ~PC_FLAG_DMA_OK;
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100738
739 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
740 : WAIT_TAPE_CMD;
Borislav Petkoved485542009-01-02 16:12:52 +0100741 }
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200742
Sergei Shtylyov60f85012009-04-08 14:13:01 +0200743 ide_init_packet_cmd(cmd, valid_tf, bcount, drive->dma);
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100744
745 (void)do_rw_taskfile(drive, cmd);
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200746
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100747 if (drq_int) {
Borislav Petkov5f258432009-01-02 16:12:53 +0100748 if (drive->dma)
749 drive->waiting_for_dma = 0;
Bartlomiej Zolnierkiewicz22117d62009-03-27 12:46:47 +0100750 hwif->expiry = expiry;
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200751 }
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100752
753 ide_execute_command(drive, cmd, ide_transfer_pc, timeout);
754
755 return drq_int ? ide_started : ide_transfer_pc(drive);
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200756}
757EXPORT_SYMBOL_GPL(ide_issue_pc);