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