block: remove unnecessary argument from blk_execute_rq
[linux-2.6-block.git] / drivers / ide / ide-atapi.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
594c16d8
BZ
2/*
3 * ATAPI support.
4 */
5
6#include <linux/kernel.h>
4cad085e 7#include <linux/cdrom.h>
594c16d8 8#include <linux/delay.h>
38789fda 9#include <linux/export.h>
594c16d8 10#include <linux/ide.h>
479edf06 11#include <linux/scatterlist.h>
5a0e3ad6 12#include <linux/gfp.h>
479edf06 13
646c0cb6
BZ
14#include <scsi/scsi.h>
15
103f7033
BP
16#define DRV_NAME "ide-atapi"
17#define PFX DRV_NAME ": "
18
646c0cb6
BZ
19#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
8c662852
BP
26#define ATAPI_MIN_CDB_BYTES 12
27
991cb26a
BP
28static inline int dev_is_idecd(ide_drive_t *drive)
29{
5317464d 30 return drive->media == ide_cdrom || drive->media == ide_optical;
991cb26a
BP
31}
32
51509eec
BZ
33/*
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
7bf7420a
BZ
80void ide_init_pc(struct ide_atapi_pc *pc)
81{
82 memset(pc, 0, sizeof(*pc));
7bf7420a
BZ
83}
84EXPORT_SYMBOL_GPL(ide_init_pc);
85
2ac07d92
BZ
86/*
87 * 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,
b13345f3 91 struct ide_atapi_pc *pc, void *buf, unsigned int bufflen)
2ac07d92
BZ
92{
93 struct request *rq;
94 int error;
95
ff005a06 96 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, 0);
2f5a8e80 97 ide_req(rq)->type = ATA_PRIV_MISC;
22ce0a7c 98 ide_req(rq)->special = pc;
3eb76c1c 99
b13345f3
BP
100 if (buf && bufflen) {
101 error = blk_rq_map_kern(drive->queue, rq, buf, bufflen,
5c4be572
TH
102 GFP_NOIO);
103 if (error)
104 goto put_req;
3eb76c1c
BP
105 }
106
82ed4db4 107 memcpy(scsi_req(rq)->cmd, pc->c, 12);
2ac07d92 108 if (drive->media == ide_tape)
82ed4db4 109 scsi_req(rq)->cmd[13] = REQ_IDETAPE_PC1;
684da762 110 blk_execute_rq(disk, rq, 0);
17d5363b 111 error = scsi_req(rq)->result ? -EIO : 0;
5c4be572 112put_req:
2ac07d92 113 blk_put_request(rq);
2ac07d92
BZ
114 return error;
115}
116EXPORT_SYMBOL_GPL(ide_queue_pc_tail);
117
de699ad5
BZ
118int 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
b13345f3 125 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
de699ad5
BZ
126}
127EXPORT_SYMBOL_GPL(ide_do_test_unit_ready);
128
0c8a6c7a
BZ
129int 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
b13345f3 140 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
0c8a6c7a
BZ
141}
142EXPORT_SYMBOL_GPL(ide_do_start_stop);
143
0578042d
BZ
144int ide_set_media_lock(ide_drive_t *drive, struct gendisk *disk, int on)
145{
146 struct ide_atapi_pc pc;
147
42619d35 148 if ((drive->dev_flags & IDE_DFLAG_DOORLOCKING) == 0)
0578042d
BZ
149 return 0;
150
151 ide_init_pc(&pc);
152 pc.c[0] = ALLOW_MEDIUM_REMOVAL;
153 pc.c[4] = on;
154
b13345f3 155 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
0578042d
BZ
156}
157EXPORT_SYMBOL_GPL(ide_set_media_lock);
158
6b0da28b
BZ
159void 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
a1df5169
BP
173void ide_prep_sense(ide_drive_t *drive, struct request *rq)
174{
175 struct request_sense *sense = &drive->sense_data;
60033520
JA
176 struct request *sense_rq;
177 struct scsi_request *req;
a1df5169 178 unsigned int cmd_len, sense_len;
5c4be572 179 int err;
a1df5169 180
a1df5169
BP
181 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
2f5a8e80 197 if (ata_sense_request(rq) || drive->sense_rq_armed)
a1df5169
BP
198 return;
199
60033520
JA
200 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
a1df5169
BP
208 memset(sense, 0, sizeof(*sense));
209
c8d9cf22 210 scsi_req_init(req);
a1df5169 211
5c4be572
TH
212 err = blk_rq_map_kern(drive->queue, sense_rq, sense, sense_len,
213 GFP_NOIO);
214 if (unlikely(err)) {
215 if (printk_ratelimit())
103f7033
BP
216 printk(KERN_WARNING PFX "%s: failed to map sense "
217 "buffer\n", drive->name);
60033520
JA
218 blk_mq_free_request(sense_rq);
219 drive->sense_rq = NULL;
5c4be572
TH
220 return;
221 }
222
223 sense_rq->rq_disk = rq->rq_disk;
aebf526b 224 sense_rq->cmd_flags = REQ_OP_DRV_IN;
2f5a8e80 225 ide_req(sense_rq)->type = ATA_PRIV_SENSE;
a1df5169 226
82ed4db4
CH
227 req->cmd[0] = GPCMD_REQUEST_SENSE;
228 req->cmd[4] = cmd_len;
a1df5169 229 if (drive->media == ide_tape)
82ed4db4 230 req->cmd[13] = REQ_IDETAPE_PC1;
a1df5169
BP
231
232 drive->sense_rq_armed = true;
233}
234EXPORT_SYMBOL_GPL(ide_prep_sense);
235
5c4be572 236int ide_queue_sense_rq(ide_drive_t *drive, void *special)
a1df5169 237{
9a6d5488
JA
238 ide_hwif_t *hwif = drive->hwif;
239 struct request *sense_rq;
240 unsigned long flags;
241
242 spin_lock_irqsave(&hwif->lock, flags);
60033520 243
5c4be572
TH
244 /* deferred failure from ide_prep_sense() */
245 if (!drive->sense_rq_armed) {
103f7033 246 printk(KERN_WARNING PFX "%s: error queuing a sense request\n",
5c4be572 247 drive->name);
9a6d5488 248 spin_unlock_irqrestore(&hwif->lock, flags);
5c4be572
TH
249 return -ENOMEM;
250 }
a1df5169 251
9a6d5488 252 sense_rq = drive->sense_rq;
22ce0a7c 253 ide_req(sense_rq)->special = special;
a1df5169
BP
254 drive->sense_rq_armed = false;
255
256 drive->hwif->rq = NULL;
257
60033520 258 ide_insert_request_head(drive, sense_rq);
9a6d5488 259 spin_unlock_irqrestore(&hwif->lock, flags);
5c4be572 260 return 0;
a1df5169
BP
261}
262EXPORT_SYMBOL_GPL(ide_queue_sense_rq);
263
6b0da28b
BZ
264/*
265 * Called when an error was detected during the last packet command.
6b544fcc
BP
266 * We queue a request sense packet command at the head of the request
267 * queue.
6b0da28b 268 */
6b544fcc 269void ide_retry_pc(ide_drive_t *drive)
6b0da28b 270{
8f6205cd 271 struct request *failed_rq = drive->hwif->rq;
82ed4db4 272 struct request *sense_rq = drive->sense_rq;
6b0da28b
BZ
273 struct ide_atapi_pc *pc = &drive->request_sense_pc;
274
275 (void)ide_read_error(drive);
6b544fcc
BP
276
277 /* init pc from sense_rq */
278 ide_init_pc(pc);
82ed4db4 279 memcpy(pc->c, scsi_req(sense_rq)->cmd, 12);
6b544fcc 280
6b0da28b 281 if (drive->media == ide_tape)
626542ca 282 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
6b544fcc 283
8f6205cd
TH
284 /*
285 * Push back the failed request and put request sense on top
286 * of it. The failed command will be retried after sense data
287 * is acquired.
288 */
8f6205cd 289 drive->hwif->rq = NULL;
1af18503 290 ide_requeue_and_plug(drive, failed_rq);
60033520 291 if (ide_queue_sense_rq(drive, pc))
2a842aca 292 ide_complete_rq(drive, BLK_STS_IOERR, blk_rq_bytes(failed_rq));
6b0da28b
BZ
293}
294EXPORT_SYMBOL_GPL(ide_retry_pc);
295
4cad085e
BP
296int ide_cd_expiry(ide_drive_t *drive)
297{
b65fac32 298 struct request *rq = drive->hwif->rq;
4cad085e
BP
299 unsigned long wait = 0;
300
8dc7a31f 301 debug_log("%s: scsi_req(rq)->cmd[0]: 0x%x\n", __func__, scsi_req(rq)->cmd[0]);
4cad085e
BP
302
303 /*
304 * Some commands are *slow* and normally take a long time to complete.
305 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
306 * commands/drives support that. Let ide_timer_expiry keep polling us
307 * for these.
308 */
82ed4db4 309 switch (scsi_req(rq)->cmd[0]) {
4cad085e
BP
310 case GPCMD_BLANK:
311 case GPCMD_FORMAT_UNIT:
312 case GPCMD_RESERVE_RZONE_TRACK:
313 case GPCMD_CLOSE_TRACK:
314 case GPCMD_FLUSH_CACHE:
315 wait = ATAPI_WAIT_PC;
316 break;
317 default:
e8064021 318 if (!(rq->rq_flags & RQF_QUIET))
103f7033 319 printk(KERN_INFO PFX "cmd 0x%x timed out\n",
82ed4db4 320 scsi_req(rq)->cmd[0]);
4cad085e
BP
321 wait = 0;
322 break;
323 }
324 return wait;
325}
326EXPORT_SYMBOL_GPL(ide_cd_expiry);
327
392de1d5
BP
328int ide_cd_get_xferlen(struct request *rq)
329{
aebf526b
CH
330 switch (req_op(rq)) {
331 default:
392de1d5 332 return 32768;
aebf526b
CH
333 case REQ_OP_SCSI_IN:
334 case REQ_OP_SCSI_OUT:
34b7d2c9 335 return blk_rq_bytes(rq);
aebf526b
CH
336 case REQ_OP_DRV_IN:
337 case REQ_OP_DRV_OUT:
2f5a8e80
CH
338 switch (ide_req(rq)->type) {
339 case ATA_PRIV_PC:
340 case ATA_PRIV_SENSE:
341 return blk_rq_bytes(rq);
aebf526b
CH
342 default:
343 return 0;
2f5a8e80 344 }
33659ebb 345 }
392de1d5
BP
346}
347EXPORT_SYMBOL_GPL(ide_cd_get_xferlen);
348
0d6a9754
BZ
349void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
350{
3153c26b 351 struct ide_taskfile tf;
0d6a9754 352
3153c26b
SS
353 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT |
354 IDE_VALID_LBAM | IDE_VALID_LBAH);
0d6a9754 355
3153c26b
SS
356 *bcount = (tf.lbah << 8) | tf.lbam;
357 *ireason = tf.nsect & 3;
0d6a9754
BZ
358}
359EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
360
103f7033
BP
361/*
362 * Check the contents of the interrupt reason register and attempt to recover if
363 * there are problems.
364 *
365 * Returns:
366 * - 0 if everything's ok
367 * - 1 if the request has to be terminated.
368 */
369int ide_check_ireason(ide_drive_t *drive, struct request *rq, int len,
370 int ireason, int rw)
371{
372 ide_hwif_t *hwif = drive->hwif;
373
374 debug_log("ireason: 0x%x, rw: 0x%x\n", ireason, rw);
375
376 if (ireason == (!rw << 1))
377 return 0;
378 else if (ireason == (rw << 1)) {
379 printk(KERN_ERR PFX "%s: %s: wrong transfer direction!\n",
380 drive->name, __func__);
381
382 if (dev_is_idecd(drive))
383 ide_pad_transfer(drive, rw, len);
384 } else if (!rw && ireason == ATAPI_COD) {
385 if (dev_is_idecd(drive)) {
386 /*
387 * Some drives (ASUS) seem to tell us that status info
388 * is available. Just get it and ignore.
389 */
390 (void)hwif->tp_ops->read_status(hwif);
391 return 0;
392 }
393 } else {
394 if (ireason & ATAPI_COD)
395 printk(KERN_ERR PFX "%s: CoD != 0 in %s\n", drive->name,
396 __func__);
397
398 /* drive wants a command packet, or invalid ireason... */
399 printk(KERN_ERR PFX "%s: %s: bad interrupt reason 0x%02x\n",
400 drive->name, __func__, ireason);
401 }
402
2f5a8e80 403 if (dev_is_idecd(drive) && ata_pc_request(rq))
e8064021 404 rq->rq_flags |= RQF_FAILED;
103f7033
BP
405
406 return 1;
407}
408EXPORT_SYMBOL_GPL(ide_check_ireason);
409
aa5d2de7
BZ
410/*
411 * This is the usual interrupt handler which will be called during a packet
412 * command. We will transfer some of the data (as requested by the drive)
413 * and will re-point interrupt handler to us.
414 */
415static ide_startstop_t ide_pc_intr(ide_drive_t *drive)
646c0cb6 416{
2b9efba4 417 struct ide_atapi_pc *pc = drive->pc;
646c0cb6 418 ide_hwif_t *hwif = drive->hwif;
f094d4d8 419 struct ide_cmd *cmd = &hwif->cmd;
b65fac32 420 struct request *rq = hwif->rq;
374e042c 421 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
d93bc452 422 unsigned int timeout, done;
646c0cb6 423 u16 bcount;
5d655a03 424 u8 stat, ireason, dsc = 0;
d93bc452 425 u8 write = !!(pc->flags & PC_FLAG_WRITING);
646c0cb6
BZ
426
427 debug_log("Enter %s - interrupt handler\n", __func__);
428
5d655a03
BP
429 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
430 : WAIT_TAPE_CMD;
844b9468 431
646c0cb6 432 /* Clear the interrupt */
374e042c 433 stat = tp_ops->read_status(hwif);
646c0cb6
BZ
434
435 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
88b4132e 436 int rc;
4453011f 437
88b4132e
BZ
438 drive->waiting_for_dma = 0;
439 rc = hwif->dma_ops->dma_end(drive);
f094d4d8 440 ide_dma_unmap_sg(drive, cmd);
4453011f
BZ
441
442 if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) {
5d655a03 443 if (drive->media == ide_floppy)
103f7033 444 printk(KERN_ERR PFX "%s: DMA %s error\n",
646c0cb6
BZ
445 drive->name, rq_data_dir(pc->rq)
446 ? "write" : "read");
447 pc->flags |= PC_FLAG_DMA_ERROR;
6d700387 448 } else
82ed4db4 449 scsi_req(rq)->resid_len = 0;
646c0cb6
BZ
450 debug_log("%s: DMA finished\n", drive->name);
451 }
452
453 /* No more interrupts */
3a7d2484 454 if ((stat & ATA_DRQ) == 0) {
2a842aca
CH
455 int uptodate;
456 blk_status_t error;
03a2faae 457
646c0cb6 458 debug_log("Packet command completed, %d bytes transferred\n",
077e6dba 459 blk_rq_bytes(rq));
646c0cb6
BZ
460
461 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
462
463 local_irq_enable_in_hardirq();
464
5d655a03 465 if (drive->media == ide_tape &&
82ed4db4 466 (stat & ATA_ERR) && scsi_req(rq)->cmd[0] == REQUEST_SENSE)
3a7d2484 467 stat &= ~ATA_ERR;
8fccf899 468
3a7d2484 469 if ((stat & ATA_ERR) || (pc->flags & PC_FLAG_DMA_ERROR)) {
646c0cb6
BZ
470 /* Error detected */
471 debug_log("%s: I/O error\n", drive->name);
472
5d655a03 473 if (drive->media != ide_tape)
17d5363b 474 scsi_req(pc->rq)->result++;
646c0cb6 475
82ed4db4 476 if (scsi_req(rq)->cmd[0] == REQUEST_SENSE) {
103f7033
BP
477 printk(KERN_ERR PFX "%s: I/O error in request "
478 "sense command\n", drive->name);
646c0cb6
BZ
479 return ide_do_reset(drive);
480 }
481
8dc7a31f 482 debug_log("[cmd %x]: check condition\n", scsi_req(rq)->cmd[0]);
646c0cb6
BZ
483
484 /* Retry operation */
6b544fcc 485 ide_retry_pc(drive);
8fccf899 486
646c0cb6
BZ
487 /* queued, but not started */
488 return ide_stopped;
489 }
646c0cb6 490 pc->error = 0;
b14c7212
BZ
491
492 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && (stat & ATA_DSC) == 0)
493 dsc = 1;
8fccf899 494
b3071d19
TH
495 /*
496 * ->pc_callback() might change rq->data_len for
497 * residual count, cache total length.
498 */
21d9c5d2 499 done = blk_rq_bytes(rq);
b3071d19 500
646c0cb6 501 /* Command finished - Call the callback function */
03a2faae
BZ
502 uptodate = drive->pc_callback(drive, dsc);
503
504 if (uptodate == 0)
505 drive->failed_pc = NULL;
506
2f5a8e80 507 if (ata_misc_request(rq)) {
17d5363b 508 scsi_req(rq)->result = 0;
2a842aca 509 error = BLK_STS_OK;
89f78b32 510 } else {
349d12a1 511
aebf526b 512 if (blk_rq_is_passthrough(rq) && uptodate <= 0) {
17d5363b
CH
513 if (scsi_req(rq)->result == 0)
514 scsi_req(rq)->result = -EIO;
89f78b32 515 }
349d12a1 516
2a842aca 517 error = uptodate ? BLK_STS_OK : BLK_STS_IOERR;
89f78b32 518 }
8fccf899 519
c3a4d78c 520 ide_complete_rq(drive, error, blk_rq_bytes(rq));
646c0cb6
BZ
521 return ide_stopped;
522 }
523
524 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
525 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
103f7033
BP
526 printk(KERN_ERR PFX "%s: The device wants to issue more "
527 "interrupts in DMA mode\n", drive->name);
646c0cb6
BZ
528 ide_dma_off(drive);
529 return ide_do_reset(drive);
530 }
646c0cb6 531
1823649b
BZ
532 /* Get the number of bytes to transfer on this interrupt. */
533 ide_read_bcount_and_ireason(drive, &bcount, &ireason);
646c0cb6 534
103f7033 535 if (ide_check_ireason(drive, rq, bcount, ireason, write))
646c0cb6 536 return ide_do_reset(drive);
8fccf899 537
6d700387
TH
538 done = min_t(unsigned int, bcount, cmd->nleft);
539 ide_pio_bytes(drive, cmd, write, done);
646c0cb6 540
6d700387 541 /* Update transferred byte count */
82ed4db4 542 scsi_req(rq)->resid_len -= done;
d93bc452
BZ
543
544 bcount -= done;
545
546 if (bcount)
547 ide_pad_transfer(drive, write, bcount);
548
077e6dba 549 debug_log("[cmd %x] transferred %d bytes, padded %d bytes, resid: %u\n",
8dc7a31f 550 scsi_req(rq)->cmd[0], done, bcount, scsi_req(rq)->resid_len);
646c0cb6 551
646c0cb6 552 /* And set the interrupt handler again */
60c0cd02 553 ide_set_handler(drive, ide_pc_intr, timeout);
646c0cb6
BZ
554 return ide_started;
555}
594c16d8 556
60f85019 557static void ide_init_packet_cmd(struct ide_cmd *cmd, u8 valid_tf,
b788ee9c 558 u16 bcount, u8 dma)
7a254df0 559{
60f85019
SS
560 cmd->protocol = dma ? ATAPI_PROT_DMA : ATAPI_PROT_PIO;
561 cmd->valid.out.tf = IDE_VALID_LBAH | IDE_VALID_LBAM |
562 IDE_VALID_FEATURE | valid_tf;
35b5d0be 563 cmd->tf.command = ATA_CMD_PACKET;
b788ee9c
BZ
564 cmd->tf.feature = dma; /* Use PIO/DMA */
565 cmd->tf.lbam = bcount & 0xff;
566 cmd->tf.lbah = (bcount >> 8) & 0xff;
7a254df0
BZ
567}
568
88a72109
BZ
569static u8 ide_read_ireason(ide_drive_t *drive)
570{
3153c26b 571 struct ide_taskfile tf;
88a72109 572
3153c26b 573 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT);
88a72109 574
3153c26b 575 return tf.nsect & 3;
88a72109
BZ
576}
577
594c16d8
BZ
578static u8 ide_wait_ireason(ide_drive_t *drive, u8 ireason)
579{
594c16d8
BZ
580 int retries = 100;
581
3a7d2484
BZ
582 while (retries-- && ((ireason & ATAPI_COD) == 0 ||
583 (ireason & ATAPI_IO))) {
103f7033 584 printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing "
594c16d8
BZ
585 "a packet command, retrying\n", drive->name);
586 udelay(100);
88a72109 587 ireason = ide_read_ireason(drive);
594c16d8 588 if (retries == 0) {
103f7033
BP
589 printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing"
590 " a packet command, ignoring\n",
594c16d8 591 drive->name);
3a7d2484
BZ
592 ireason |= ATAPI_COD;
593 ireason &= ~ATAPI_IO;
594c16d8
BZ
594 }
595 }
596
597 return ireason;
598}
599
baf08f0b
BZ
600static int ide_delayed_transfer_pc(ide_drive_t *drive)
601{
602 /* Send the actual packet */
603 drive->hwif->tp_ops->output_data(drive, NULL, drive->pc->c, 12);
604
605 /* Timeout for the packet command */
606 return WAIT_FLOPPY_CMD;
607}
608
609static ide_startstop_t ide_transfer_pc(ide_drive_t *drive)
594c16d8 610{
3f649ab7 611 struct ide_atapi_pc *pc;
594c16d8 612 ide_hwif_t *hwif = drive->hwif;
b65fac32 613 struct request *rq = hwif->rq;
baf08f0b
BZ
614 ide_expiry_t *expiry;
615 unsigned int timeout;
8c662852 616 int cmd_len;
594c16d8
BZ
617 ide_startstop_t startstop;
618 u8 ireason;
619
3a7d2484 620 if (ide_wait_stat(&startstop, drive, ATA_DRQ, ATA_BUSY, WAIT_READY)) {
103f7033 621 printk(KERN_ERR PFX "%s: Strange, packet command initiated yet "
594c16d8
BZ
622 "DRQ isn't asserted\n", drive->name);
623 return startstop;
624 }
625
5f25843f
BP
626 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
627 if (drive->dma)
628 drive->waiting_for_dma = 1;
629 }
630
8c662852
BP
631 if (dev_is_idecd(drive)) {
632 /* ATAPI commands get padded out to 12 bytes minimum */
82ed4db4 633 cmd_len = COMMAND_SIZE(scsi_req(rq)->cmd[0]);
8c662852
BP
634 if (cmd_len < ATAPI_MIN_CDB_BYTES)
635 cmd_len = ATAPI_MIN_CDB_BYTES;
8c662852 636
def860d0
BP
637 timeout = rq->timeout;
638 expiry = ide_cd_expiry;
baf08f0b 639 } else {
b16aabc9
BP
640 pc = drive->pc;
641
def860d0
BP
642 cmd_len = ATAPI_MIN_CDB_BYTES;
643
644 /*
645 * If necessary schedule the packet transfer to occur 'timeout'
19af5cdb 646 * milliseconds later in ide_delayed_transfer_pc() after the
def860d0
BP
647 * device says it's ready for a packet.
648 */
649 if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) {
650 timeout = drive->pc_delay;
651 expiry = &ide_delayed_transfer_pc;
652 } else {
653 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
654 : WAIT_TAPE_CMD;
655 expiry = NULL;
656 }
06cc2778
BP
657
658 ireason = ide_read_ireason(drive);
659 if (drive->media == ide_tape)
660 ireason = ide_wait_ireason(drive, ireason);
661
662 if ((ireason & ATAPI_COD) == 0 || (ireason & ATAPI_IO)) {
103f7033
BP
663 printk(KERN_ERR PFX "%s: (IO,CoD) != (0,1) while "
664 "issuing a packet command\n", drive->name);
06cc2778
BP
665
666 return ide_do_reset(drive);
667 }
baf08f0b
BZ
668 }
669
60c0cd02
BZ
670 hwif->expiry = expiry;
671
594c16d8 672 /* Set the interrupt routine */
d6251d44
BP
673 ide_set_handler(drive,
674 (dev_is_idecd(drive) ? drive->irq_handler
675 : ide_pc_intr),
60c0cd02 676 timeout);
594c16d8 677
2eba0827
BP
678 /* Send the actual packet */
679 if ((drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) == 0)
82ed4db4 680 hwif->tp_ops->output_data(drive, NULL, scsi_req(rq)->cmd, cmd_len);
2eba0827 681
594c16d8 682 /* Begin DMA, if necessary */
b16aabc9
BP
683 if (dev_is_idecd(drive)) {
684 if (drive->dma)
685 hwif->dma_ops->dma_start(drive);
686 } else {
687 if (pc->flags & PC_FLAG_DMA_OK) {
688 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
689 hwif->dma_ops->dma_start(drive);
690 }
594c16d8
BZ
691 }
692
594c16d8
BZ
693 return ide_started;
694}
6bf1641c 695
b788ee9c 696ide_startstop_t ide_issue_pc(ide_drive_t *drive, struct ide_cmd *cmd)
6bf1641c 697{
d77612ab 698 struct ide_atapi_pc *pc;
6bf1641c 699 ide_hwif_t *hwif = drive->hwif;
4cad085e 700 ide_expiry_t *expiry = NULL;
e6830a86 701 struct request *rq = hwif->rq;
dfb7e621 702 unsigned int timeout, bytes;
392de1d5 703 u16 bcount;
60f85019 704 u8 valid_tf;
35b5d0be 705 u8 drq_int = !!(drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT);
6bf1641c 706
ed48554f 707 if (dev_is_idecd(drive)) {
60f85019 708 valid_tf = IDE_VALID_NSECT | IDE_VALID_LBAL;
e6830a86 709 bcount = ide_cd_get_xferlen(rq);
4cad085e 710 expiry = ide_cd_expiry;
28ad91db 711 timeout = ATAPI_WAIT_PC;
d77612ab 712
5ae5412d
BZ
713 if (drive->dma)
714 drive->dma = !ide_dma_prepare(drive, cmd);
ed48554f 715 } else {
d77612ab
BP
716 pc = drive->pc;
717
60f85019 718 valid_tf = IDE_VALID_DEVICE;
dfb7e621 719 bytes = blk_rq_bytes(rq);
dfb7e621
BP
720 bcount = ((drive->media == ide_tape) ? bytes
721 : min_t(unsigned int,
722 bytes, 63 * 1024));
6bf1641c 723
077e6dba 724 /* We haven't transferred any data yet */
82ed4db4 725 scsi_req(rq)->resid_len = bcount;
6bf1641c 726
d77612ab
BP
727 if (pc->flags & PC_FLAG_DMA_ERROR) {
728 pc->flags &= ~PC_FLAG_DMA_ERROR;
729 ide_dma_off(drive);
730 }
6bf1641c 731
5ae5412d
BZ
732 if (pc->flags & PC_FLAG_DMA_OK)
733 drive->dma = !ide_dma_prepare(drive, cmd);
6bf1641c 734
d77612ab
BP
735 if (!drive->dma)
736 pc->flags &= ~PC_FLAG_DMA_OK;
28ad91db
BP
737
738 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
739 : WAIT_TAPE_CMD;
d77612ab 740 }
6bf1641c 741
60f85019 742 ide_init_packet_cmd(cmd, valid_tf, bcount, drive->dma);
b788ee9c
BZ
743
744 (void)do_rw_taskfile(drive, cmd);
6bf1641c 745
35b5d0be 746 if (drq_int) {
5f25843f
BP
747 if (drive->dma)
748 drive->waiting_for_dma = 0;
22117d6e 749 hwif->expiry = expiry;
6bf1641c 750 }
35b5d0be
BZ
751
752 ide_execute_command(drive, cmd, ide_transfer_pc, timeout);
753
754 return drq_int ? ide_started : ide_transfer_pc(drive);
6bf1641c
BZ
755}
756EXPORT_SYMBOL_GPL(ide_issue_pc);