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