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