ide-atapi: add a len-parameter to ide_queue_pc_tail
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / drivers / ide / ide-atapi.c
CommitLineData
594c16d8
BZ
1/*
2 * ATAPI support.
3 */
4
5#include <linux/kernel.h>
4cad085e 6#include <linux/cdrom.h>
594c16d8
BZ
7#include <linux/delay.h>
8#include <linux/ide.h>
479edf06
GU
9#include <linux/scatterlist.h>
10
646c0cb6
BZ
11#include <scsi/scsi.h>
12
13#ifdef DEBUG
14#define debug_log(fmt, args...) \
15 printk(KERN_INFO "ide: " fmt, ## args)
16#else
17#define debug_log(fmt, args...) do {} while (0)
18#endif
19
8c662852
BP
20#define ATAPI_MIN_CDB_BYTES 12
21
991cb26a
BP
22static inline int dev_is_idecd(ide_drive_t *drive)
23{
5317464d 24 return drive->media == ide_cdrom || drive->media == ide_optical;
991cb26a
BP
25}
26
51509eec
BZ
27/*
28 * Check whether we can support a device,
29 * based on the ATAPI IDENTIFY command results.
30 */
31int ide_check_atapi_device(ide_drive_t *drive, const char *s)
32{
33 u16 *id = drive->id;
34 u8 gcw[2], protocol, device_type, removable, drq_type, packet_size;
35
36 *((u16 *)&gcw) = id[ATA_ID_CONFIG];
37
38 protocol = (gcw[1] & 0xC0) >> 6;
39 device_type = gcw[1] & 0x1F;
40 removable = (gcw[0] & 0x80) >> 7;
41 drq_type = (gcw[0] & 0x60) >> 5;
42 packet_size = gcw[0] & 0x03;
43
44#ifdef CONFIG_PPC
45 /* kludge for Apple PowerBook internal zip */
46 if (drive->media == ide_floppy && device_type == 5 &&
47 !strstr((char *)&id[ATA_ID_PROD], "CD-ROM") &&
48 strstr((char *)&id[ATA_ID_PROD], "ZIP"))
49 device_type = 0;
50#endif
51
52 if (protocol != 2)
53 printk(KERN_ERR "%s: %s: protocol (0x%02x) is not ATAPI\n",
54 s, drive->name, protocol);
55 else if ((drive->media == ide_floppy && device_type != 0) ||
56 (drive->media == ide_tape && device_type != 1))
57 printk(KERN_ERR "%s: %s: invalid device type (0x%02x)\n",
58 s, drive->name, device_type);
59 else if (removable == 0)
60 printk(KERN_ERR "%s: %s: the removable flag is not set\n",
61 s, drive->name);
62 else if (drive->media == ide_floppy && drq_type == 3)
63 printk(KERN_ERR "%s: %s: sorry, DRQ type (0x%02x) not "
64 "supported\n", s, drive->name, drq_type);
65 else if (packet_size != 0)
66 printk(KERN_ERR "%s: %s: packet size (0x%02x) is not 12 "
67 "bytes\n", s, drive->name, packet_size);
68 else
69 return 1;
70 return 0;
71}
72EXPORT_SYMBOL_GPL(ide_check_atapi_device);
73
7bf7420a
BZ
74void ide_init_pc(struct ide_atapi_pc *pc)
75{
76 memset(pc, 0, sizeof(*pc));
77 pc->buf = pc->pc_buf;
78 pc->buf_size = IDE_PC_BUFFER_SIZE;
79}
80EXPORT_SYMBOL_GPL(ide_init_pc);
81
2ac07d92
BZ
82/*
83 * Add a special packet command request to the tail of the request queue,
84 * and wait for it to be serviced.
85 */
86int ide_queue_pc_tail(ide_drive_t *drive, struct gendisk *disk,
5a0e43b5 87 struct ide_atapi_pc *pc, unsigned int bufflen)
2ac07d92
BZ
88{
89 struct request *rq;
90 int error;
91
92 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
93 rq->cmd_type = REQ_TYPE_SPECIAL;
ac0b0113 94 rq->special = (char *)pc;
3eb76c1c 95
5a0e43b5
BP
96 if (bufflen) {
97 error = blk_rq_map_kern(drive->queue, rq, pc->buf, bufflen,
02e7cf8f
TH
98 GFP_NOIO);
99 if (error)
100 goto put_req;
3eb76c1c
BP
101 }
102
2ac07d92
BZ
103 memcpy(rq->cmd, pc->c, 12);
104 if (drive->media == ide_tape)
105 rq->cmd[13] = REQ_IDETAPE_PC1;
106 error = blk_execute_rq(drive->queue, disk, rq, 0);
02e7cf8f 107put_req:
2ac07d92 108 blk_put_request(rq);
2ac07d92
BZ
109 return error;
110}
111EXPORT_SYMBOL_GPL(ide_queue_pc_tail);
112
de699ad5
BZ
113int ide_do_test_unit_ready(ide_drive_t *drive, struct gendisk *disk)
114{
115 struct ide_atapi_pc pc;
116
117 ide_init_pc(&pc);
118 pc.c[0] = TEST_UNIT_READY;
119
5a0e43b5 120 return ide_queue_pc_tail(drive, disk, &pc, 0);
de699ad5
BZ
121}
122EXPORT_SYMBOL_GPL(ide_do_test_unit_ready);
123
0c8a6c7a
BZ
124int ide_do_start_stop(ide_drive_t *drive, struct gendisk *disk, int start)
125{
126 struct ide_atapi_pc pc;
127
128 ide_init_pc(&pc);
129 pc.c[0] = START_STOP;
130 pc.c[4] = start;
131
132 if (drive->media == ide_tape)
133 pc.flags |= PC_FLAG_WAIT_FOR_DSC;
134
5a0e43b5 135 return ide_queue_pc_tail(drive, disk, &pc, 0);
0c8a6c7a
BZ
136}
137EXPORT_SYMBOL_GPL(ide_do_start_stop);
138
0578042d
BZ
139int ide_set_media_lock(ide_drive_t *drive, struct gendisk *disk, int on)
140{
141 struct ide_atapi_pc pc;
142
42619d35 143 if ((drive->dev_flags & IDE_DFLAG_DOORLOCKING) == 0)
0578042d
BZ
144 return 0;
145
146 ide_init_pc(&pc);
147 pc.c[0] = ALLOW_MEDIUM_REMOVAL;
148 pc.c[4] = on;
149
5a0e43b5 150 return ide_queue_pc_tail(drive, disk, &pc, 0);
0578042d
BZ
151}
152EXPORT_SYMBOL_GPL(ide_set_media_lock);
153
6b0da28b
BZ
154void ide_create_request_sense_cmd(ide_drive_t *drive, struct ide_atapi_pc *pc)
155{
156 ide_init_pc(pc);
157 pc->c[0] = REQUEST_SENSE;
158 if (drive->media == ide_floppy) {
159 pc->c[4] = 255;
160 pc->req_xfer = 18;
161 } else {
162 pc->c[4] = 20;
163 pc->req_xfer = 20;
164 }
165}
166EXPORT_SYMBOL_GPL(ide_create_request_sense_cmd);
167
e69d800f
BP
168void ide_prep_sense(ide_drive_t *drive, struct request *rq)
169{
170 struct request_sense *sense = &drive->sense_data;
171 struct request *sense_rq = &drive->sense_rq;
172 unsigned int cmd_len, sense_len;
02e7cf8f 173 int err;
e69d800f 174
e69d800f
BP
175 switch (drive->media) {
176 case ide_floppy:
177 cmd_len = 255;
178 sense_len = 18;
179 break;
180 case ide_tape:
181 cmd_len = 20;
182 sense_len = 20;
183 break;
184 default:
185 cmd_len = 18;
186 sense_len = 18;
187 }
188
189 BUG_ON(sense_len > sizeof(*sense));
190
191 if (blk_sense_request(rq) || drive->sense_rq_armed)
192 return;
193
194 memset(sense, 0, sizeof(*sense));
195
196 blk_rq_init(rq->q, sense_rq);
e69d800f 197
02e7cf8f
TH
198 err = blk_rq_map_kern(drive->queue, sense_rq, sense, sense_len,
199 GFP_NOIO);
200 if (unlikely(err)) {
201 if (printk_ratelimit())
202 printk(KERN_WARNING "%s: failed to map sense buffer\n",
203 drive->name);
204 return;
205 }
206
207 sense_rq->rq_disk = rq->rq_disk;
e69d800f
BP
208 sense_rq->cmd[0] = GPCMD_REQUEST_SENSE;
209 sense_rq->cmd[4] = cmd_len;
e69d800f
BP
210 sense_rq->cmd_type = REQ_TYPE_SENSE;
211 sense_rq->cmd_flags |= REQ_PREEMPT;
212
213 if (drive->media == ide_tape)
214 sense_rq->cmd[13] = REQ_IDETAPE_PC1;
215
216 drive->sense_rq_armed = true;
217}
218EXPORT_SYMBOL_GPL(ide_prep_sense);
219
02e7cf8f 220int ide_queue_sense_rq(ide_drive_t *drive, void *special)
e69d800f 221{
02e7cf8f
TH
222 /* deferred failure from ide_prep_sense() */
223 if (!drive->sense_rq_armed) {
224 printk(KERN_WARNING "%s: failed queue sense request\n",
225 drive->name);
226 return -ENOMEM;
227 }
e69d800f
BP
228
229 drive->sense_rq.special = special;
230 drive->sense_rq_armed = false;
231
232 drive->hwif->rq = NULL;
233
234 elv_add_request(drive->queue, &drive->sense_rq,
235 ELEVATOR_INSERT_FRONT, 0);
02e7cf8f 236 return 0;
e69d800f
BP
237}
238EXPORT_SYMBOL_GPL(ide_queue_sense_rq);
239
6b0da28b
BZ
240/*
241 * Called when an error was detected during the last packet command.
06875320
BP
242 * We queue a request sense packet command at the head of the request
243 * queue.
6b0da28b 244 */
06875320 245void ide_retry_pc(ide_drive_t *drive)
6b0da28b 246{
8f6205cd 247 struct request *failed_rq = drive->hwif->rq;
06875320 248 struct request *sense_rq = &drive->sense_rq;
6b0da28b
BZ
249 struct ide_atapi_pc *pc = &drive->request_sense_pc;
250
251 (void)ide_read_error(drive);
06875320
BP
252
253 /* init pc from sense_rq */
254 ide_init_pc(pc);
255 memcpy(pc->c, sense_rq->cmd, 12);
02e7cf8f 256 pc->buf = bio_data(sense_rq->bio); /* pointer to mapped address */
34b7d2c9 257 pc->req_xfer = blk_rq_bytes(sense_rq);
06875320 258
6b0da28b
BZ
259 if (drive->media == ide_tape)
260 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
06875320 261
8f6205cd
TH
262 /*
263 * Push back the failed request and put request sense on top
264 * of it. The failed command will be retried after sense data
265 * is acquired.
266 */
267 blk_requeue_request(failed_rq->q, failed_rq);
268 drive->hwif->rq = NULL;
269 if (ide_queue_sense_rq(drive, pc)) {
9934c8c0 270 blk_start_request(failed_rq);
8f6205cd
TH
271 ide_complete_rq(drive, -EIO, blk_rq_bytes(failed_rq));
272 }
6b0da28b
BZ
273}
274EXPORT_SYMBOL_GPL(ide_retry_pc);
275
4cad085e
BP
276int ide_cd_expiry(ide_drive_t *drive)
277{
b65fac32 278 struct request *rq = drive->hwif->rq;
4cad085e
BP
279 unsigned long wait = 0;
280
281 debug_log("%s: rq->cmd[0]: 0x%x\n", __func__, rq->cmd[0]);
282
283 /*
284 * Some commands are *slow* and normally take a long time to complete.
285 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
286 * commands/drives support that. Let ide_timer_expiry keep polling us
287 * for these.
288 */
289 switch (rq->cmd[0]) {
290 case GPCMD_BLANK:
291 case GPCMD_FORMAT_UNIT:
292 case GPCMD_RESERVE_RZONE_TRACK:
293 case GPCMD_CLOSE_TRACK:
294 case GPCMD_FLUSH_CACHE:
295 wait = ATAPI_WAIT_PC;
296 break;
297 default:
298 if (!(rq->cmd_flags & REQ_QUIET))
299 printk(KERN_INFO "cmd 0x%x timed out\n",
300 rq->cmd[0]);
301 wait = 0;
302 break;
303 }
304 return wait;
305}
306EXPORT_SYMBOL_GPL(ide_cd_expiry);
307
392de1d5
BP
308int ide_cd_get_xferlen(struct request *rq)
309{
310 if (blk_fs_request(rq))
311 return 32768;
312 else if (blk_sense_request(rq) || blk_pc_request(rq) ||
313 rq->cmd_type == REQ_TYPE_ATA_PC)
34b7d2c9 314 return blk_rq_bytes(rq);
392de1d5
BP
315 else
316 return 0;
317}
318EXPORT_SYMBOL_GPL(ide_cd_get_xferlen);
319
0d6a9754
BZ
320void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
321{
3153c26b 322 struct ide_taskfile tf;
0d6a9754 323
3153c26b
SS
324 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT |
325 IDE_VALID_LBAM | IDE_VALID_LBAH);
0d6a9754 326
3153c26b
SS
327 *bcount = (tf.lbah << 8) | tf.lbam;
328 *ireason = tf.nsect & 3;
0d6a9754
BZ
329}
330EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
331
aa5d2de7
BZ
332/*
333 * This is the usual interrupt handler which will be called during a packet
334 * command. We will transfer some of the data (as requested by the drive)
335 * and will re-point interrupt handler to us.
336 */
337static ide_startstop_t ide_pc_intr(ide_drive_t *drive)
646c0cb6 338{
2b9efba4 339 struct ide_atapi_pc *pc = drive->pc;
646c0cb6 340 ide_hwif_t *hwif = drive->hwif;
f094d4d8 341 struct ide_cmd *cmd = &hwif->cmd;
b65fac32 342 struct request *rq = hwif->rq;
374e042c 343 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
d93bc452 344 unsigned int timeout, done;
646c0cb6 345 u16 bcount;
5d655a03 346 u8 stat, ireason, dsc = 0;
d93bc452 347 u8 write = !!(pc->flags & PC_FLAG_WRITING);
646c0cb6
BZ
348
349 debug_log("Enter %s - interrupt handler\n", __func__);
350
5d655a03
BP
351 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
352 : WAIT_TAPE_CMD;
844b9468 353
646c0cb6 354 /* Clear the interrupt */
374e042c 355 stat = tp_ops->read_status(hwif);
646c0cb6
BZ
356
357 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
88b4132e 358 int rc;
4453011f 359
88b4132e
BZ
360 drive->waiting_for_dma = 0;
361 rc = hwif->dma_ops->dma_end(drive);
f094d4d8 362 ide_dma_unmap_sg(drive, cmd);
4453011f
BZ
363
364 if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) {
5d655a03 365 if (drive->media == ide_floppy)
646c0cb6
BZ
366 printk(KERN_ERR "%s: DMA %s error\n",
367 drive->name, rq_data_dir(pc->rq)
368 ? "write" : "read");
369 pc->flags |= PC_FLAG_DMA_ERROR;
29d1a437 370 } else
077e6dba 371 rq->resid_len = 0;
646c0cb6
BZ
372 debug_log("%s: DMA finished\n", drive->name);
373 }
374
375 /* No more interrupts */
3a7d2484 376 if ((stat & ATA_DRQ) == 0) {
5b6c942d 377 int uptodate, error;
03a2faae 378
646c0cb6 379 debug_log("Packet command completed, %d bytes transferred\n",
077e6dba 380 blk_rq_bytes(rq));
646c0cb6
BZ
381
382 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
383
384 local_irq_enable_in_hardirq();
385
5d655a03 386 if (drive->media == ide_tape &&
3a7d2484
BZ
387 (stat & ATA_ERR) && rq->cmd[0] == REQUEST_SENSE)
388 stat &= ~ATA_ERR;
8fccf899 389
3a7d2484 390 if ((stat & ATA_ERR) || (pc->flags & PC_FLAG_DMA_ERROR)) {
646c0cb6
BZ
391 /* Error detected */
392 debug_log("%s: I/O error\n", drive->name);
393
5d655a03 394 if (drive->media != ide_tape)
646c0cb6 395 pc->rq->errors++;
646c0cb6 396
8fccf899 397 if (rq->cmd[0] == REQUEST_SENSE) {
646c0cb6
BZ
398 printk(KERN_ERR "%s: I/O error in request sense"
399 " command\n", drive->name);
400 return ide_do_reset(drive);
401 }
402
8fccf899 403 debug_log("[cmd %x]: check condition\n", rq->cmd[0]);
646c0cb6
BZ
404
405 /* Retry operation */
06875320 406 ide_retry_pc(drive);
8fccf899 407
646c0cb6
BZ
408 /* queued, but not started */
409 return ide_stopped;
410 }
646c0cb6 411 pc->error = 0;
b14c7212
BZ
412
413 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && (stat & ATA_DSC) == 0)
414 dsc = 1;
8fccf899 415
646c0cb6 416 /* Command finished - Call the callback function */
03a2faae
BZ
417 uptodate = drive->pc_callback(drive, dsc);
418
419 if (uptodate == 0)
420 drive->failed_pc = NULL;
421
6902a533
BZ
422 if (blk_special_request(rq)) {
423 rq->errors = 0;
5b6c942d 424 error = 0;
89f78b32 425 } else {
349d12a1 426
89f78b32
BZ
427 if (blk_fs_request(rq) == 0 && uptodate <= 0) {
428 if (rq->errors == 0)
429 rq->errors = -EIO;
430 }
349d12a1 431
5b6c942d 432 error = uptodate ? 0 : -EIO;
89f78b32 433 }
8fccf899 434
c3a4d78c 435 ide_complete_rq(drive, error, blk_rq_bytes(rq));
646c0cb6
BZ
436 return ide_stopped;
437 }
438
439 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
440 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
441 printk(KERN_ERR "%s: The device wants to issue more interrupts "
442 "in DMA mode\n", drive->name);
443 ide_dma_off(drive);
444 return ide_do_reset(drive);
445 }
646c0cb6 446
1823649b
BZ
447 /* Get the number of bytes to transfer on this interrupt. */
448 ide_read_bcount_and_ireason(drive, &bcount, &ireason);
646c0cb6 449
3a7d2484 450 if (ireason & ATAPI_COD) {
646c0cb6
BZ
451 printk(KERN_ERR "%s: CoD != 0 in %s\n", drive->name, __func__);
452 return ide_do_reset(drive);
453 }
8fccf899 454
d93bc452 455 if (((ireason & ATAPI_IO) == ATAPI_IO) == write) {
646c0cb6
BZ
456 /* Hopefully, we will never get here */
457 printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
458 "to %s!\n", drive->name,
3a7d2484
BZ
459 (ireason & ATAPI_IO) ? "Write" : "Read",
460 (ireason & ATAPI_IO) ? "Read" : "Write");
646c0cb6
BZ
461 return ide_do_reset(drive);
462 }
8fccf899 463
29d1a437
TH
464 done = min_t(unsigned int, bcount, cmd->nleft);
465 ide_pio_bytes(drive, cmd, write, done);
646c0cb6 466
29d1a437 467 /* Update transferred byte count */
077e6dba 468 rq->resid_len -= done;
d93bc452
BZ
469
470 bcount -= done;
471
472 if (bcount)
473 ide_pad_transfer(drive, write, bcount);
474
077e6dba
BP
475 debug_log("[cmd %x] transferred %d bytes, padded %d bytes, resid: %u\n",
476 rq->cmd[0], done, bcount, rq->resid_len);
646c0cb6 477
646c0cb6 478 /* And set the interrupt handler again */
60c0cd02 479 ide_set_handler(drive, ide_pc_intr, timeout);
646c0cb6
BZ
480 return ide_started;
481}
594c16d8 482
60f85019 483static void ide_init_packet_cmd(struct ide_cmd *cmd, u8 valid_tf,
b788ee9c 484 u16 bcount, u8 dma)
7a254df0 485{
60f85019
SS
486 cmd->protocol = dma ? ATAPI_PROT_DMA : ATAPI_PROT_PIO;
487 cmd->valid.out.tf = IDE_VALID_LBAH | IDE_VALID_LBAM |
488 IDE_VALID_FEATURE | valid_tf;
35b5d0be 489 cmd->tf.command = ATA_CMD_PACKET;
b788ee9c
BZ
490 cmd->tf.feature = dma; /* Use PIO/DMA */
491 cmd->tf.lbam = bcount & 0xff;
492 cmd->tf.lbah = (bcount >> 8) & 0xff;
7a254df0
BZ
493}
494
88a72109
BZ
495static u8 ide_read_ireason(ide_drive_t *drive)
496{
3153c26b 497 struct ide_taskfile tf;
88a72109 498
3153c26b 499 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT);
88a72109 500
3153c26b 501 return tf.nsect & 3;
88a72109
BZ
502}
503
594c16d8
BZ
504static u8 ide_wait_ireason(ide_drive_t *drive, u8 ireason)
505{
594c16d8
BZ
506 int retries = 100;
507
3a7d2484
BZ
508 while (retries-- && ((ireason & ATAPI_COD) == 0 ||
509 (ireason & ATAPI_IO))) {
594c16d8
BZ
510 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
511 "a packet command, retrying\n", drive->name);
512 udelay(100);
88a72109 513 ireason = ide_read_ireason(drive);
594c16d8
BZ
514 if (retries == 0) {
515 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
516 "a packet command, ignoring\n",
517 drive->name);
3a7d2484
BZ
518 ireason |= ATAPI_COD;
519 ireason &= ~ATAPI_IO;
594c16d8
BZ
520 }
521 }
522
523 return ireason;
524}
525
baf08f0b
BZ
526static int ide_delayed_transfer_pc(ide_drive_t *drive)
527{
528 /* Send the actual packet */
529 drive->hwif->tp_ops->output_data(drive, NULL, drive->pc->c, 12);
530
531 /* Timeout for the packet command */
532 return WAIT_FLOPPY_CMD;
533}
534
535static ide_startstop_t ide_transfer_pc(ide_drive_t *drive)
594c16d8 536{
b16aabc9 537 struct ide_atapi_pc *uninitialized_var(pc);
594c16d8 538 ide_hwif_t *hwif = drive->hwif;
b65fac32 539 struct request *rq = hwif->rq;
baf08f0b
BZ
540 ide_expiry_t *expiry;
541 unsigned int timeout;
8c662852 542 int cmd_len;
594c16d8
BZ
543 ide_startstop_t startstop;
544 u8 ireason;
545
3a7d2484 546 if (ide_wait_stat(&startstop, drive, ATA_DRQ, ATA_BUSY, WAIT_READY)) {
594c16d8
BZ
547 printk(KERN_ERR "%s: Strange, packet command initiated yet "
548 "DRQ isn't asserted\n", drive->name);
549 return startstop;
550 }
551
5f25843f
BP
552 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
553 if (drive->dma)
554 drive->waiting_for_dma = 1;
555 }
556
8c662852
BP
557 if (dev_is_idecd(drive)) {
558 /* ATAPI commands get padded out to 12 bytes minimum */
559 cmd_len = COMMAND_SIZE(rq->cmd[0]);
560 if (cmd_len < ATAPI_MIN_CDB_BYTES)
561 cmd_len = ATAPI_MIN_CDB_BYTES;
8c662852 562
def860d0
BP
563 timeout = rq->timeout;
564 expiry = ide_cd_expiry;
baf08f0b 565 } else {
b16aabc9
BP
566 pc = drive->pc;
567
def860d0
BP
568 cmd_len = ATAPI_MIN_CDB_BYTES;
569
570 /*
571 * If necessary schedule the packet transfer to occur 'timeout'
572 * miliseconds later in ide_delayed_transfer_pc() after the
573 * device says it's ready for a packet.
574 */
575 if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) {
576 timeout = drive->pc_delay;
577 expiry = &ide_delayed_transfer_pc;
578 } else {
579 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
580 : WAIT_TAPE_CMD;
581 expiry = NULL;
582 }
06cc2778
BP
583
584 ireason = ide_read_ireason(drive);
585 if (drive->media == ide_tape)
586 ireason = ide_wait_ireason(drive, ireason);
587
588 if ((ireason & ATAPI_COD) == 0 || (ireason & ATAPI_IO)) {
589 printk(KERN_ERR "%s: (IO,CoD) != (0,1) while issuing "
590 "a packet command\n", drive->name);
591
592 return ide_do_reset(drive);
593 }
baf08f0b
BZ
594 }
595
60c0cd02
BZ
596 hwif->expiry = expiry;
597
594c16d8 598 /* Set the interrupt routine */
d6251d44
BP
599 ide_set_handler(drive,
600 (dev_is_idecd(drive) ? drive->irq_handler
601 : ide_pc_intr),
60c0cd02 602 timeout);
594c16d8 603
2eba0827
BP
604 /* Send the actual packet */
605 if ((drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) == 0)
606 hwif->tp_ops->output_data(drive, NULL, rq->cmd, cmd_len);
607
594c16d8 608 /* Begin DMA, if necessary */
b16aabc9
BP
609 if (dev_is_idecd(drive)) {
610 if (drive->dma)
611 hwif->dma_ops->dma_start(drive);
612 } else {
613 if (pc->flags & PC_FLAG_DMA_OK) {
614 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
615 hwif->dma_ops->dma_start(drive);
616 }
594c16d8
BZ
617 }
618
594c16d8
BZ
619 return ide_started;
620}
6bf1641c 621
b788ee9c 622ide_startstop_t ide_issue_pc(ide_drive_t *drive, struct ide_cmd *cmd)
6bf1641c 623{
d77612ab 624 struct ide_atapi_pc *pc;
6bf1641c 625 ide_hwif_t *hwif = drive->hwif;
4cad085e 626 ide_expiry_t *expiry = NULL;
e6830a86 627 struct request *rq = hwif->rq;
dfb7e621 628 unsigned int timeout, bytes;
392de1d5 629 u16 bcount;
60f85019 630 u8 valid_tf;
35b5d0be 631 u8 drq_int = !!(drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT);
6bf1641c 632
ed48554f 633 if (dev_is_idecd(drive)) {
60f85019 634 valid_tf = IDE_VALID_NSECT | IDE_VALID_LBAL;
e6830a86 635 bcount = ide_cd_get_xferlen(rq);
4cad085e 636 expiry = ide_cd_expiry;
28ad91db 637 timeout = ATAPI_WAIT_PC;
d77612ab 638
5ae5412d
BZ
639 if (drive->dma)
640 drive->dma = !ide_dma_prepare(drive, cmd);
ed48554f 641 } else {
d77612ab
BP
642 pc = drive->pc;
643
60f85019 644 valid_tf = IDE_VALID_DEVICE;
dfb7e621 645 bytes = blk_rq_bytes(rq);
dfb7e621
BP
646 bcount = ((drive->media == ide_tape) ? bytes
647 : min_t(unsigned int,
648 bytes, 63 * 1024));
6bf1641c 649
077e6dba
BP
650 /* We haven't transferred any data yet */
651 rq->resid_len = bcount;
652
d77612ab
BP
653 if (pc->flags & PC_FLAG_DMA_ERROR) {
654 pc->flags &= ~PC_FLAG_DMA_ERROR;
655 ide_dma_off(drive);
656 }
6bf1641c 657
5ae5412d
BZ
658 if (pc->flags & PC_FLAG_DMA_OK)
659 drive->dma = !ide_dma_prepare(drive, cmd);
6bf1641c 660
d77612ab
BP
661 if (!drive->dma)
662 pc->flags &= ~PC_FLAG_DMA_OK;
28ad91db
BP
663
664 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
665 : WAIT_TAPE_CMD;
d77612ab 666 }
6bf1641c 667
60f85019 668 ide_init_packet_cmd(cmd, valid_tf, bcount, drive->dma);
b788ee9c
BZ
669
670 (void)do_rw_taskfile(drive, cmd);
6bf1641c 671
35b5d0be 672 if (drq_int) {
5f25843f
BP
673 if (drive->dma)
674 drive->waiting_for_dma = 0;
22117d6e 675 hwif->expiry = expiry;
6bf1641c 676 }
35b5d0be
BZ
677
678 ide_execute_command(drive, cmd, ide_transfer_pc, timeout);
679
680 return drq_int ? ide_started : ide_transfer_pc(drive);
6bf1641c
BZ
681}
682EXPORT_SYMBOL_GPL(ide_issue_pc);