trivial: fix typos s/paramter/parameter/ and s/excute/execute/ in documentation and...
[linux-2.6-block.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,
87 struct ide_atapi_pc *pc)
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;
c267cc1c 94 rq->special = (char *)pc;
3eb76c1c
BP
95
96 if (pc->req_xfer) {
5c4be572
TH
97 error = blk_rq_map_kern(drive->queue, rq, pc->buf, pc->req_xfer,
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);
5c4be572 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
120 return ide_queue_pc_tail(drive, disk, &pc);
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
135 return ide_queue_pc_tail(drive, disk, &pc);
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
150 return ide_queue_pc_tail(drive, disk, &pc);
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
a1df5169
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;
5c4be572 173 int err;
a1df5169
BP
174
175 debug_log("%s: enter\n", __func__);
176
177 switch (drive->media) {
178 case ide_floppy:
179 cmd_len = 255;
180 sense_len = 18;
181 break;
182 case ide_tape:
183 cmd_len = 20;
184 sense_len = 20;
185 break;
186 default:
187 cmd_len = 18;
188 sense_len = 18;
189 }
190
191 BUG_ON(sense_len > sizeof(*sense));
192
193 if (blk_sense_request(rq) || drive->sense_rq_armed)
194 return;
195
196 memset(sense, 0, sizeof(*sense));
197
198 blk_rq_init(rq->q, sense_rq);
a1df5169 199
5c4be572
TH
200 err = blk_rq_map_kern(drive->queue, sense_rq, sense, sense_len,
201 GFP_NOIO);
202 if (unlikely(err)) {
203 if (printk_ratelimit())
204 printk(KERN_WARNING "%s: failed to map sense buffer\n",
205 drive->name);
206 return;
207 }
208
209 sense_rq->rq_disk = rq->rq_disk;
a1df5169
BP
210 sense_rq->cmd[0] = GPCMD_REQUEST_SENSE;
211 sense_rq->cmd[4] = cmd_len;
a1df5169
BP
212 sense_rq->cmd_type = REQ_TYPE_SENSE;
213 sense_rq->cmd_flags |= REQ_PREEMPT;
214
215 if (drive->media == ide_tape)
216 sense_rq->cmd[13] = REQ_IDETAPE_PC1;
217
218 drive->sense_rq_armed = true;
219}
220EXPORT_SYMBOL_GPL(ide_prep_sense);
221
5c4be572 222int ide_queue_sense_rq(ide_drive_t *drive, void *special)
a1df5169 223{
5c4be572
TH
224 /* deferred failure from ide_prep_sense() */
225 if (!drive->sense_rq_armed) {
226 printk(KERN_WARNING "%s: failed queue sense request\n",
227 drive->name);
228 return -ENOMEM;
229 }
a1df5169
BP
230
231 drive->sense_rq.special = special;
232 drive->sense_rq_armed = false;
233
234 drive->hwif->rq = NULL;
235
236 elv_add_request(drive->queue, &drive->sense_rq,
237 ELEVATOR_INSERT_FRONT, 0);
5c4be572 238 return 0;
a1df5169
BP
239}
240EXPORT_SYMBOL_GPL(ide_queue_sense_rq);
241
6b0da28b
BZ
242/*
243 * Called when an error was detected during the last packet command.
6b544fcc
BP
244 * We queue a request sense packet command at the head of the request
245 * queue.
6b0da28b 246 */
6b544fcc 247void ide_retry_pc(ide_drive_t *drive)
6b0da28b 248{
8f6205cd 249 struct request *failed_rq = drive->hwif->rq;
6b544fcc 250 struct request *sense_rq = &drive->sense_rq;
6b0da28b
BZ
251 struct ide_atapi_pc *pc = &drive->request_sense_pc;
252
253 (void)ide_read_error(drive);
6b544fcc
BP
254
255 /* init pc from sense_rq */
256 ide_init_pc(pc);
257 memcpy(pc->c, sense_rq->cmd, 12);
5c4be572 258 pc->buf = bio_data(sense_rq->bio); /* pointer to mapped address */
34b7d2c9 259 pc->req_xfer = blk_rq_bytes(sense_rq);
6b544fcc 260
6b0da28b
BZ
261 if (drive->media == ide_tape)
262 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
6b544fcc 263
8f6205cd
TH
264 /*
265 * Push back the failed request and put request sense on top
266 * of it. The failed command will be retried after sense data
267 * is acquired.
268 */
269 blk_requeue_request(failed_rq->q, failed_rq);
270 drive->hwif->rq = NULL;
271 if (ide_queue_sense_rq(drive, pc)) {
9934c8c0 272 blk_start_request(failed_rq);
8f6205cd
TH
273 ide_complete_rq(drive, -EIO, blk_rq_bytes(failed_rq));
274 }
6b0da28b
BZ
275}
276EXPORT_SYMBOL_GPL(ide_retry_pc);
277
4cad085e
BP
278int ide_cd_expiry(ide_drive_t *drive)
279{
b65fac32 280 struct request *rq = drive->hwif->rq;
4cad085e
BP
281 unsigned long wait = 0;
282
283 debug_log("%s: rq->cmd[0]: 0x%x\n", __func__, rq->cmd[0]);
284
285 /*
286 * Some commands are *slow* and normally take a long time to complete.
287 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
288 * commands/drives support that. Let ide_timer_expiry keep polling us
289 * for these.
290 */
291 switch (rq->cmd[0]) {
292 case GPCMD_BLANK:
293 case GPCMD_FORMAT_UNIT:
294 case GPCMD_RESERVE_RZONE_TRACK:
295 case GPCMD_CLOSE_TRACK:
296 case GPCMD_FLUSH_CACHE:
297 wait = ATAPI_WAIT_PC;
298 break;
299 default:
300 if (!(rq->cmd_flags & REQ_QUIET))
301 printk(KERN_INFO "cmd 0x%x timed out\n",
302 rq->cmd[0]);
303 wait = 0;
304 break;
305 }
306 return wait;
307}
308EXPORT_SYMBOL_GPL(ide_cd_expiry);
309
392de1d5
BP
310int ide_cd_get_xferlen(struct request *rq)
311{
312 if (blk_fs_request(rq))
313 return 32768;
314 else if (blk_sense_request(rq) || blk_pc_request(rq) ||
315 rq->cmd_type == REQ_TYPE_ATA_PC)
34b7d2c9 316 return blk_rq_bytes(rq);
392de1d5
BP
317 else
318 return 0;
319}
320EXPORT_SYMBOL_GPL(ide_cd_get_xferlen);
321
0d6a9754
BZ
322void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
323{
3153c26b 324 struct ide_taskfile tf;
0d6a9754 325
3153c26b
SS
326 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT |
327 IDE_VALID_LBAM | IDE_VALID_LBAH);
0d6a9754 328
3153c26b
SS
329 *bcount = (tf.lbah << 8) | tf.lbam;
330 *ireason = tf.nsect & 3;
0d6a9754
BZ
331}
332EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
333
aa5d2de7
BZ
334/*
335 * This is the usual interrupt handler which will be called during a packet
336 * command. We will transfer some of the data (as requested by the drive)
337 * and will re-point interrupt handler to us.
338 */
339static ide_startstop_t ide_pc_intr(ide_drive_t *drive)
646c0cb6 340{
2b9efba4 341 struct ide_atapi_pc *pc = drive->pc;
646c0cb6 342 ide_hwif_t *hwif = drive->hwif;
f094d4d8 343 struct ide_cmd *cmd = &hwif->cmd;
b65fac32 344 struct request *rq = hwif->rq;
374e042c 345 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
d93bc452 346 unsigned int timeout, done;
646c0cb6 347 u16 bcount;
5d655a03 348 u8 stat, ireason, dsc = 0;
d93bc452 349 u8 write = !!(pc->flags & PC_FLAG_WRITING);
646c0cb6
BZ
350
351 debug_log("Enter %s - interrupt handler\n", __func__);
352
5d655a03
BP
353 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
354 : WAIT_TAPE_CMD;
844b9468 355
646c0cb6 356 /* Clear the interrupt */
374e042c 357 stat = tp_ops->read_status(hwif);
646c0cb6
BZ
358
359 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
88b4132e 360 int rc;
4453011f 361
88b4132e
BZ
362 drive->waiting_for_dma = 0;
363 rc = hwif->dma_ops->dma_end(drive);
f094d4d8 364 ide_dma_unmap_sg(drive, cmd);
4453011f
BZ
365
366 if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) {
5d655a03 367 if (drive->media == ide_floppy)
646c0cb6
BZ
368 printk(KERN_ERR "%s: DMA %s error\n",
369 drive->name, rq_data_dir(pc->rq)
370 ? "write" : "read");
371 pc->flags |= PC_FLAG_DMA_ERROR;
6d700387 372 } else
646c0cb6 373 pc->xferred = pc->req_xfer;
646c0cb6
BZ
374 debug_log("%s: DMA finished\n", drive->name);
375 }
376
377 /* No more interrupts */
3a7d2484 378 if ((stat & ATA_DRQ) == 0) {
5b6c942d 379 int uptodate, error;
03a2faae 380
646c0cb6
BZ
381 debug_log("Packet command completed, %d bytes transferred\n",
382 pc->xferred);
383
384 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
385
386 local_irq_enable_in_hardirq();
387
5d655a03 388 if (drive->media == ide_tape &&
3a7d2484
BZ
389 (stat & ATA_ERR) && rq->cmd[0] == REQUEST_SENSE)
390 stat &= ~ATA_ERR;
8fccf899 391
3a7d2484 392 if ((stat & ATA_ERR) || (pc->flags & PC_FLAG_DMA_ERROR)) {
646c0cb6
BZ
393 /* Error detected */
394 debug_log("%s: I/O error\n", drive->name);
395
5d655a03 396 if (drive->media != ide_tape)
646c0cb6 397 pc->rq->errors++;
646c0cb6 398
8fccf899 399 if (rq->cmd[0] == REQUEST_SENSE) {
646c0cb6
BZ
400 printk(KERN_ERR "%s: I/O error in request sense"
401 " command\n", drive->name);
402 return ide_do_reset(drive);
403 }
404
8fccf899 405 debug_log("[cmd %x]: check condition\n", rq->cmd[0]);
646c0cb6
BZ
406
407 /* Retry operation */
6b544fcc 408 ide_retry_pc(drive);
8fccf899 409
646c0cb6
BZ
410 /* queued, but not started */
411 return ide_stopped;
412 }
646c0cb6 413 pc->error = 0;
b14c7212
BZ
414
415 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && (stat & ATA_DSC) == 0)
416 dsc = 1;
8fccf899 417
b3071d19
TH
418 /*
419 * ->pc_callback() might change rq->data_len for
420 * residual count, cache total length.
421 */
21d9c5d2 422 done = blk_rq_bytes(rq);
b3071d19 423
646c0cb6 424 /* Command finished - Call the callback function */
03a2faae
BZ
425 uptodate = drive->pc_callback(drive, dsc);
426
427 if (uptodate == 0)
428 drive->failed_pc = NULL;
429
6902a533
BZ
430 if (blk_special_request(rq)) {
431 rq->errors = 0;
5b6c942d 432 error = 0;
89f78b32 433 } else {
349d12a1 434
89f78b32
BZ
435 if (blk_fs_request(rq) == 0 && uptodate <= 0) {
436 if (rq->errors == 0)
437 rq->errors = -EIO;
438 }
349d12a1 439
5b6c942d 440 error = uptodate ? 0 : -EIO;
89f78b32 441 }
8fccf899 442
c3a4d78c 443 ide_complete_rq(drive, error, blk_rq_bytes(rq));
646c0cb6
BZ
444 return ide_stopped;
445 }
446
447 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
448 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
449 printk(KERN_ERR "%s: The device wants to issue more interrupts "
450 "in DMA mode\n", drive->name);
451 ide_dma_off(drive);
452 return ide_do_reset(drive);
453 }
646c0cb6 454
1823649b
BZ
455 /* Get the number of bytes to transfer on this interrupt. */
456 ide_read_bcount_and_ireason(drive, &bcount, &ireason);
646c0cb6 457
3a7d2484 458 if (ireason & ATAPI_COD) {
646c0cb6
BZ
459 printk(KERN_ERR "%s: CoD != 0 in %s\n", drive->name, __func__);
460 return ide_do_reset(drive);
461 }
8fccf899 462
d93bc452 463 if (((ireason & ATAPI_IO) == ATAPI_IO) == write) {
646c0cb6
BZ
464 /* Hopefully, we will never get here */
465 printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
466 "to %s!\n", drive->name,
3a7d2484
BZ
467 (ireason & ATAPI_IO) ? "Write" : "Read",
468 (ireason & ATAPI_IO) ? "Read" : "Write");
646c0cb6
BZ
469 return ide_do_reset(drive);
470 }
8fccf899 471
6d700387
TH
472 done = min_t(unsigned int, bcount, cmd->nleft);
473 ide_pio_bytes(drive, cmd, write, done);
646c0cb6 474
6d700387 475 /* Update transferred byte count */
d93bc452 476 pc->xferred += done;
d93bc452
BZ
477
478 bcount -= done;
479
480 if (bcount)
481 ide_pad_transfer(drive, write, bcount);
482
483 debug_log("[cmd %x] transferred %d bytes, padded %d bytes\n",
484 rq->cmd[0], done, bcount);
646c0cb6 485
646c0cb6 486 /* And set the interrupt handler again */
60c0cd02 487 ide_set_handler(drive, ide_pc_intr, timeout);
646c0cb6
BZ
488 return ide_started;
489}
594c16d8 490
60f85019 491static void ide_init_packet_cmd(struct ide_cmd *cmd, u8 valid_tf,
b788ee9c 492 u16 bcount, u8 dma)
7a254df0 493{
60f85019
SS
494 cmd->protocol = dma ? ATAPI_PROT_DMA : ATAPI_PROT_PIO;
495 cmd->valid.out.tf = IDE_VALID_LBAH | IDE_VALID_LBAM |
496 IDE_VALID_FEATURE | valid_tf;
35b5d0be 497 cmd->tf.command = ATA_CMD_PACKET;
b788ee9c
BZ
498 cmd->tf.feature = dma; /* Use PIO/DMA */
499 cmd->tf.lbam = bcount & 0xff;
500 cmd->tf.lbah = (bcount >> 8) & 0xff;
7a254df0
BZ
501}
502
88a72109
BZ
503static u8 ide_read_ireason(ide_drive_t *drive)
504{
3153c26b 505 struct ide_taskfile tf;
88a72109 506
3153c26b 507 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT);
88a72109 508
3153c26b 509 return tf.nsect & 3;
88a72109
BZ
510}
511
594c16d8
BZ
512static u8 ide_wait_ireason(ide_drive_t *drive, u8 ireason)
513{
594c16d8
BZ
514 int retries = 100;
515
3a7d2484
BZ
516 while (retries-- && ((ireason & ATAPI_COD) == 0 ||
517 (ireason & ATAPI_IO))) {
594c16d8
BZ
518 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
519 "a packet command, retrying\n", drive->name);
520 udelay(100);
88a72109 521 ireason = ide_read_ireason(drive);
594c16d8
BZ
522 if (retries == 0) {
523 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
524 "a packet command, ignoring\n",
525 drive->name);
3a7d2484
BZ
526 ireason |= ATAPI_COD;
527 ireason &= ~ATAPI_IO;
594c16d8
BZ
528 }
529 }
530
531 return ireason;
532}
533
baf08f0b
BZ
534static int ide_delayed_transfer_pc(ide_drive_t *drive)
535{
536 /* Send the actual packet */
537 drive->hwif->tp_ops->output_data(drive, NULL, drive->pc->c, 12);
538
539 /* Timeout for the packet command */
540 return WAIT_FLOPPY_CMD;
541}
542
543static ide_startstop_t ide_transfer_pc(ide_drive_t *drive)
594c16d8 544{
b16aabc9 545 struct ide_atapi_pc *uninitialized_var(pc);
594c16d8 546 ide_hwif_t *hwif = drive->hwif;
b65fac32 547 struct request *rq = hwif->rq;
baf08f0b
BZ
548 ide_expiry_t *expiry;
549 unsigned int timeout;
8c662852 550 int cmd_len;
594c16d8
BZ
551 ide_startstop_t startstop;
552 u8 ireason;
553
3a7d2484 554 if (ide_wait_stat(&startstop, drive, ATA_DRQ, ATA_BUSY, WAIT_READY)) {
594c16d8
BZ
555 printk(KERN_ERR "%s: Strange, packet command initiated yet "
556 "DRQ isn't asserted\n", drive->name);
557 return startstop;
558 }
559
5f25843f
BP
560 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
561 if (drive->dma)
562 drive->waiting_for_dma = 1;
563 }
564
8c662852
BP
565 if (dev_is_idecd(drive)) {
566 /* ATAPI commands get padded out to 12 bytes minimum */
567 cmd_len = COMMAND_SIZE(rq->cmd[0]);
568 if (cmd_len < ATAPI_MIN_CDB_BYTES)
569 cmd_len = ATAPI_MIN_CDB_BYTES;
8c662852 570
def860d0
BP
571 timeout = rq->timeout;
572 expiry = ide_cd_expiry;
baf08f0b 573 } else {
b16aabc9
BP
574 pc = drive->pc;
575
def860d0
BP
576 cmd_len = ATAPI_MIN_CDB_BYTES;
577
578 /*
579 * If necessary schedule the packet transfer to occur 'timeout'
580 * miliseconds later in ide_delayed_transfer_pc() after the
581 * device says it's ready for a packet.
582 */
583 if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) {
584 timeout = drive->pc_delay;
585 expiry = &ide_delayed_transfer_pc;
586 } else {
587 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
588 : WAIT_TAPE_CMD;
589 expiry = NULL;
590 }
06cc2778
BP
591
592 ireason = ide_read_ireason(drive);
593 if (drive->media == ide_tape)
594 ireason = ide_wait_ireason(drive, ireason);
595
596 if ((ireason & ATAPI_COD) == 0 || (ireason & ATAPI_IO)) {
597 printk(KERN_ERR "%s: (IO,CoD) != (0,1) while issuing "
598 "a packet command\n", drive->name);
599
600 return ide_do_reset(drive);
601 }
baf08f0b
BZ
602 }
603
60c0cd02
BZ
604 hwif->expiry = expiry;
605
594c16d8 606 /* Set the interrupt routine */
d6251d44
BP
607 ide_set_handler(drive,
608 (dev_is_idecd(drive) ? drive->irq_handler
609 : ide_pc_intr),
60c0cd02 610 timeout);
594c16d8 611
2eba0827
BP
612 /* Send the actual packet */
613 if ((drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) == 0)
614 hwif->tp_ops->output_data(drive, NULL, rq->cmd, cmd_len);
615
594c16d8 616 /* Begin DMA, if necessary */
b16aabc9
BP
617 if (dev_is_idecd(drive)) {
618 if (drive->dma)
619 hwif->dma_ops->dma_start(drive);
620 } else {
621 if (pc->flags & PC_FLAG_DMA_OK) {
622 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
623 hwif->dma_ops->dma_start(drive);
624 }
594c16d8
BZ
625 }
626
594c16d8
BZ
627 return ide_started;
628}
6bf1641c 629
b788ee9c 630ide_startstop_t ide_issue_pc(ide_drive_t *drive, struct ide_cmd *cmd)
6bf1641c 631{
d77612ab 632 struct ide_atapi_pc *pc;
6bf1641c 633 ide_hwif_t *hwif = drive->hwif;
4cad085e 634 ide_expiry_t *expiry = NULL;
e6830a86 635 struct request *rq = hwif->rq;
28ad91db 636 unsigned int timeout;
392de1d5 637 u16 bcount;
60f85019 638 u8 valid_tf;
35b5d0be 639 u8 drq_int = !!(drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT);
6bf1641c 640
ed48554f 641 if (dev_is_idecd(drive)) {
60f85019 642 valid_tf = IDE_VALID_NSECT | IDE_VALID_LBAL;
e6830a86 643 bcount = ide_cd_get_xferlen(rq);
4cad085e 644 expiry = ide_cd_expiry;
28ad91db 645 timeout = ATAPI_WAIT_PC;
d77612ab 646
5ae5412d
BZ
647 if (drive->dma)
648 drive->dma = !ide_dma_prepare(drive, cmd);
ed48554f 649 } else {
d77612ab
BP
650 pc = drive->pc;
651
652 /* We haven't transferred any data yet */
653 pc->xferred = 0;
d77612ab 654
60f85019 655 valid_tf = IDE_VALID_DEVICE;
ed48554f
BP
656 bcount = ((drive->media == ide_tape) ?
657 pc->req_xfer :
658 min(pc->req_xfer, 63 * 1024));
6bf1641c 659
d77612ab
BP
660 if (pc->flags & PC_FLAG_DMA_ERROR) {
661 pc->flags &= ~PC_FLAG_DMA_ERROR;
662 ide_dma_off(drive);
663 }
6bf1641c 664
5ae5412d
BZ
665 if (pc->flags & PC_FLAG_DMA_OK)
666 drive->dma = !ide_dma_prepare(drive, cmd);
6bf1641c 667
d77612ab
BP
668 if (!drive->dma)
669 pc->flags &= ~PC_FLAG_DMA_OK;
28ad91db
BP
670
671 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
672 : WAIT_TAPE_CMD;
d77612ab 673 }
6bf1641c 674
60f85019 675 ide_init_packet_cmd(cmd, valid_tf, bcount, drive->dma);
b788ee9c
BZ
676
677 (void)do_rw_taskfile(drive, cmd);
6bf1641c 678
35b5d0be 679 if (drq_int) {
5f25843f
BP
680 if (drive->dma)
681 drive->waiting_for_dma = 0;
22117d6e 682 hwif->expiry = expiry;
6bf1641c 683 }
35b5d0be
BZ
684
685 ide_execute_command(drive, cmd, ide_transfer_pc, timeout);
686
687 return drq_int ? ide_started : ide_transfer_pc(drive);
6bf1641c
BZ
688}
689EXPORT_SYMBOL_GPL(ide_issue_pc);