1 // SPDX-License-Identifier: GPL-2.0-only
6 #include <linux/kernel.h>
7 #include <linux/cdrom.h>
8 #include <linux/delay.h>
9 #include <linux/export.h>
10 #include <linux/ide.h>
11 #include <linux/scatterlist.h>
12 #include <linux/gfp.h>
14 #include <scsi/scsi.h>
16 #define DRV_NAME "ide-atapi"
17 #define PFX DRV_NAME ": "
20 #define debug_log(fmt, args...) \
21 printk(KERN_INFO "ide: " fmt, ## args)
23 #define debug_log(fmt, args...) do {} while (0)
26 #define ATAPI_MIN_CDB_BYTES 12
28 static inline int dev_is_idecd(ide_drive_t
*drive
)
30 return drive
->media
== ide_cdrom
|| drive
->media
== ide_optical
;
34 * Check whether we can support a device,
35 * based on the ATAPI IDENTIFY command results.
37 int ide_check_atapi_device(ide_drive_t
*drive
, const char *s
)
40 u8 gcw
[2], protocol
, device_type
, removable
, drq_type
, packet_size
;
42 *((u16
*)&gcw
) = id
[ATA_ID_CONFIG
];
44 protocol
= (gcw
[1] & 0xC0) >> 6;
45 device_type
= gcw
[1] & 0x1F;
46 removable
= (gcw
[0] & 0x80) >> 7;
47 drq_type
= (gcw
[0] & 0x60) >> 5;
48 packet_size
= gcw
[0] & 0x03;
51 /* kludge for Apple PowerBook internal zip */
52 if (drive
->media
== ide_floppy
&& device_type
== 5 &&
53 !strstr((char *)&id
[ATA_ID_PROD
], "CD-ROM") &&
54 strstr((char *)&id
[ATA_ID_PROD
], "ZIP"))
59 printk(KERN_ERR
"%s: %s: protocol (0x%02x) is not ATAPI\n",
60 s
, drive
->name
, protocol
);
61 else if ((drive
->media
== ide_floppy
&& device_type
!= 0) ||
62 (drive
->media
== ide_tape
&& device_type
!= 1))
63 printk(KERN_ERR
"%s: %s: invalid device type (0x%02x)\n",
64 s
, drive
->name
, device_type
);
65 else if (removable
== 0)
66 printk(KERN_ERR
"%s: %s: the removable flag is not set\n",
68 else if (drive
->media
== ide_floppy
&& drq_type
== 3)
69 printk(KERN_ERR
"%s: %s: sorry, DRQ type (0x%02x) not "
70 "supported\n", s
, drive
->name
, drq_type
);
71 else if (packet_size
!= 0)
72 printk(KERN_ERR
"%s: %s: packet size (0x%02x) is not 12 "
73 "bytes\n", s
, drive
->name
, packet_size
);
78 EXPORT_SYMBOL_GPL(ide_check_atapi_device
);
80 void ide_init_pc(struct ide_atapi_pc
*pc
)
82 memset(pc
, 0, sizeof(*pc
));
84 EXPORT_SYMBOL_GPL(ide_init_pc
);
87 * Add a special packet command request to the tail of the request queue,
88 * and wait for it to be serviced.
90 int ide_queue_pc_tail(ide_drive_t
*drive
, struct gendisk
*disk
,
91 struct ide_atapi_pc
*pc
, void *buf
, unsigned int bufflen
)
96 rq
= blk_get_request(drive
->queue
, REQ_OP_DRV_IN
, 0);
97 ide_req(rq
)->type
= ATA_PRIV_MISC
;
98 ide_req(rq
)->special
= pc
;
100 if (buf
&& bufflen
) {
101 error
= blk_rq_map_kern(drive
->queue
, rq
, buf
, bufflen
,
107 memcpy(scsi_req(rq
)->cmd
, pc
->c
, 12);
108 if (drive
->media
== ide_tape
)
109 scsi_req(rq
)->cmd
[13] = REQ_IDETAPE_PC1
;
110 blk_execute_rq(drive
->queue
, disk
, rq
, 0);
111 error
= scsi_req(rq
)->result
? -EIO
: 0;
116 EXPORT_SYMBOL_GPL(ide_queue_pc_tail
);
118 int ide_do_test_unit_ready(ide_drive_t
*drive
, struct gendisk
*disk
)
120 struct ide_atapi_pc pc
;
123 pc
.c
[0] = TEST_UNIT_READY
;
125 return ide_queue_pc_tail(drive
, disk
, &pc
, NULL
, 0);
127 EXPORT_SYMBOL_GPL(ide_do_test_unit_ready
);
129 int ide_do_start_stop(ide_drive_t
*drive
, struct gendisk
*disk
, int start
)
131 struct ide_atapi_pc pc
;
134 pc
.c
[0] = START_STOP
;
137 if (drive
->media
== ide_tape
)
138 pc
.flags
|= PC_FLAG_WAIT_FOR_DSC
;
140 return ide_queue_pc_tail(drive
, disk
, &pc
, NULL
, 0);
142 EXPORT_SYMBOL_GPL(ide_do_start_stop
);
144 int ide_set_media_lock(ide_drive_t
*drive
, struct gendisk
*disk
, int on
)
146 struct ide_atapi_pc pc
;
148 if ((drive
->dev_flags
& IDE_DFLAG_DOORLOCKING
) == 0)
152 pc
.c
[0] = ALLOW_MEDIUM_REMOVAL
;
155 return ide_queue_pc_tail(drive
, disk
, &pc
, NULL
, 0);
157 EXPORT_SYMBOL_GPL(ide_set_media_lock
);
159 void ide_create_request_sense_cmd(ide_drive_t
*drive
, struct ide_atapi_pc
*pc
)
162 pc
->c
[0] = REQUEST_SENSE
;
163 if (drive
->media
== ide_floppy
) {
171 EXPORT_SYMBOL_GPL(ide_create_request_sense_cmd
);
173 void ide_prep_sense(ide_drive_t
*drive
, struct request
*rq
)
175 struct request_sense
*sense
= &drive
->sense_data
;
176 struct request
*sense_rq
;
177 struct scsi_request
*req
;
178 unsigned int cmd_len
, sense_len
;
181 switch (drive
->media
) {
195 BUG_ON(sense_len
> sizeof(*sense
));
197 if (ata_sense_request(rq
) || drive
->sense_rq_armed
)
200 sense_rq
= drive
->sense_rq
;
202 sense_rq
= blk_mq_alloc_request(drive
->queue
, REQ_OP_DRV_IN
,
203 BLK_MQ_REQ_RESERVED
| BLK_MQ_REQ_NOWAIT
);
204 drive
->sense_rq
= sense_rq
;
206 req
= scsi_req(sense_rq
);
208 memset(sense
, 0, sizeof(*sense
));
212 err
= blk_rq_map_kern(drive
->queue
, sense_rq
, sense
, sense_len
,
215 if (printk_ratelimit())
216 printk(KERN_WARNING PFX
"%s: failed to map sense "
217 "buffer\n", drive
->name
);
218 blk_mq_free_request(sense_rq
);
219 drive
->sense_rq
= NULL
;
223 sense_rq
->rq_disk
= rq
->rq_disk
;
224 sense_rq
->cmd_flags
= REQ_OP_DRV_IN
;
225 ide_req(sense_rq
)->type
= ATA_PRIV_SENSE
;
226 sense_rq
->rq_flags
|= RQF_PREEMPT
;
228 req
->cmd
[0] = GPCMD_REQUEST_SENSE
;
229 req
->cmd
[4] = cmd_len
;
230 if (drive
->media
== ide_tape
)
231 req
->cmd
[13] = REQ_IDETAPE_PC1
;
233 drive
->sense_rq_armed
= true;
235 EXPORT_SYMBOL_GPL(ide_prep_sense
);
237 int ide_queue_sense_rq(ide_drive_t
*drive
, void *special
)
239 ide_hwif_t
*hwif
= drive
->hwif
;
240 struct request
*sense_rq
;
243 spin_lock_irqsave(&hwif
->lock
, flags
);
245 /* deferred failure from ide_prep_sense() */
246 if (!drive
->sense_rq_armed
) {
247 printk(KERN_WARNING PFX
"%s: error queuing a sense request\n",
249 spin_unlock_irqrestore(&hwif
->lock
, flags
);
253 sense_rq
= drive
->sense_rq
;
254 ide_req(sense_rq
)->special
= special
;
255 drive
->sense_rq_armed
= false;
257 drive
->hwif
->rq
= NULL
;
259 ide_insert_request_head(drive
, sense_rq
);
260 spin_unlock_irqrestore(&hwif
->lock
, flags
);
263 EXPORT_SYMBOL_GPL(ide_queue_sense_rq
);
266 * Called when an error was detected during the last packet command.
267 * We queue a request sense packet command at the head of the request
270 void ide_retry_pc(ide_drive_t
*drive
)
272 struct request
*failed_rq
= drive
->hwif
->rq
;
273 struct request
*sense_rq
= drive
->sense_rq
;
274 struct ide_atapi_pc
*pc
= &drive
->request_sense_pc
;
276 (void)ide_read_error(drive
);
278 /* init pc from sense_rq */
280 memcpy(pc
->c
, scsi_req(sense_rq
)->cmd
, 12);
282 if (drive
->media
== ide_tape
)
283 drive
->atapi_flags
|= IDE_AFLAG_IGNORE_DSC
;
286 * Push back the failed request and put request sense on top
287 * of it. The failed command will be retried after sense data
290 drive
->hwif
->rq
= NULL
;
291 ide_requeue_and_plug(drive
, failed_rq
);
292 if (ide_queue_sense_rq(drive
, pc
))
293 ide_complete_rq(drive
, BLK_STS_IOERR
, blk_rq_bytes(failed_rq
));
295 EXPORT_SYMBOL_GPL(ide_retry_pc
);
297 int ide_cd_expiry(ide_drive_t
*drive
)
299 struct request
*rq
= drive
->hwif
->rq
;
300 unsigned long wait
= 0;
302 debug_log("%s: scsi_req(rq)->cmd[0]: 0x%x\n", __func__
, scsi_req(rq
)->cmd
[0]);
305 * Some commands are *slow* and normally take a long time to complete.
306 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
307 * commands/drives support that. Let ide_timer_expiry keep polling us
310 switch (scsi_req(rq
)->cmd
[0]) {
312 case GPCMD_FORMAT_UNIT
:
313 case GPCMD_RESERVE_RZONE_TRACK
:
314 case GPCMD_CLOSE_TRACK
:
315 case GPCMD_FLUSH_CACHE
:
316 wait
= ATAPI_WAIT_PC
;
319 if (!(rq
->rq_flags
& RQF_QUIET
))
320 printk(KERN_INFO PFX
"cmd 0x%x timed out\n",
321 scsi_req(rq
)->cmd
[0]);
327 EXPORT_SYMBOL_GPL(ide_cd_expiry
);
329 int ide_cd_get_xferlen(struct request
*rq
)
331 switch (req_op(rq
)) {
335 case REQ_OP_SCSI_OUT
:
336 return blk_rq_bytes(rq
);
339 switch (ide_req(rq
)->type
) {
342 return blk_rq_bytes(rq
);
348 EXPORT_SYMBOL_GPL(ide_cd_get_xferlen
);
350 void ide_read_bcount_and_ireason(ide_drive_t
*drive
, u16
*bcount
, u8
*ireason
)
352 struct ide_taskfile tf
;
354 drive
->hwif
->tp_ops
->tf_read(drive
, &tf
, IDE_VALID_NSECT
|
355 IDE_VALID_LBAM
| IDE_VALID_LBAH
);
357 *bcount
= (tf
.lbah
<< 8) | tf
.lbam
;
358 *ireason
= tf
.nsect
& 3;
360 EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason
);
363 * Check the contents of the interrupt reason register and attempt to recover if
364 * there are problems.
367 * - 0 if everything's ok
368 * - 1 if the request has to be terminated.
370 int ide_check_ireason(ide_drive_t
*drive
, struct request
*rq
, int len
,
373 ide_hwif_t
*hwif
= drive
->hwif
;
375 debug_log("ireason: 0x%x, rw: 0x%x\n", ireason
, rw
);
377 if (ireason
== (!rw
<< 1))
379 else if (ireason
== (rw
<< 1)) {
380 printk(KERN_ERR PFX
"%s: %s: wrong transfer direction!\n",
381 drive
->name
, __func__
);
383 if (dev_is_idecd(drive
))
384 ide_pad_transfer(drive
, rw
, len
);
385 } else if (!rw
&& ireason
== ATAPI_COD
) {
386 if (dev_is_idecd(drive
)) {
388 * Some drives (ASUS) seem to tell us that status info
389 * is available. Just get it and ignore.
391 (void)hwif
->tp_ops
->read_status(hwif
);
395 if (ireason
& ATAPI_COD
)
396 printk(KERN_ERR PFX
"%s: CoD != 0 in %s\n", drive
->name
,
399 /* drive wants a command packet, or invalid ireason... */
400 printk(KERN_ERR PFX
"%s: %s: bad interrupt reason 0x%02x\n",
401 drive
->name
, __func__
, ireason
);
404 if (dev_is_idecd(drive
) && ata_pc_request(rq
))
405 rq
->rq_flags
|= RQF_FAILED
;
409 EXPORT_SYMBOL_GPL(ide_check_ireason
);
412 * This is the usual interrupt handler which will be called during a packet
413 * command. We will transfer some of the data (as requested by the drive)
414 * and will re-point interrupt handler to us.
416 static ide_startstop_t
ide_pc_intr(ide_drive_t
*drive
)
418 struct ide_atapi_pc
*pc
= drive
->pc
;
419 ide_hwif_t
*hwif
= drive
->hwif
;
420 struct ide_cmd
*cmd
= &hwif
->cmd
;
421 struct request
*rq
= hwif
->rq
;
422 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
423 unsigned int timeout
, done
;
425 u8 stat
, ireason
, dsc
= 0;
426 u8 write
= !!(pc
->flags
& PC_FLAG_WRITING
);
428 debug_log("Enter %s - interrupt handler\n", __func__
);
430 timeout
= (drive
->media
== ide_floppy
) ? WAIT_FLOPPY_CMD
433 /* Clear the interrupt */
434 stat
= tp_ops
->read_status(hwif
);
436 if (pc
->flags
& PC_FLAG_DMA_IN_PROGRESS
) {
439 drive
->waiting_for_dma
= 0;
440 rc
= hwif
->dma_ops
->dma_end(drive
);
441 ide_dma_unmap_sg(drive
, cmd
);
443 if (rc
|| (drive
->media
== ide_tape
&& (stat
& ATA_ERR
))) {
444 if (drive
->media
== ide_floppy
)
445 printk(KERN_ERR PFX
"%s: DMA %s error\n",
446 drive
->name
, rq_data_dir(pc
->rq
)
448 pc
->flags
|= PC_FLAG_DMA_ERROR
;
450 scsi_req(rq
)->resid_len
= 0;
451 debug_log("%s: DMA finished\n", drive
->name
);
454 /* No more interrupts */
455 if ((stat
& ATA_DRQ
) == 0) {
459 debug_log("Packet command completed, %d bytes transferred\n",
462 pc
->flags
&= ~PC_FLAG_DMA_IN_PROGRESS
;
464 local_irq_enable_in_hardirq();
466 if (drive
->media
== ide_tape
&&
467 (stat
& ATA_ERR
) && scsi_req(rq
)->cmd
[0] == REQUEST_SENSE
)
470 if ((stat
& ATA_ERR
) || (pc
->flags
& PC_FLAG_DMA_ERROR
)) {
472 debug_log("%s: I/O error\n", drive
->name
);
474 if (drive
->media
!= ide_tape
)
475 scsi_req(pc
->rq
)->result
++;
477 if (scsi_req(rq
)->cmd
[0] == REQUEST_SENSE
) {
478 printk(KERN_ERR PFX
"%s: I/O error in request "
479 "sense command\n", drive
->name
);
480 return ide_do_reset(drive
);
483 debug_log("[cmd %x]: check condition\n", scsi_req(rq
)->cmd
[0]);
485 /* Retry operation */
488 /* queued, but not started */
493 if ((pc
->flags
& PC_FLAG_WAIT_FOR_DSC
) && (stat
& ATA_DSC
) == 0)
497 * ->pc_callback() might change rq->data_len for
498 * residual count, cache total length.
500 done
= blk_rq_bytes(rq
);
502 /* Command finished - Call the callback function */
503 uptodate
= drive
->pc_callback(drive
, dsc
);
506 drive
->failed_pc
= NULL
;
508 if (ata_misc_request(rq
)) {
509 scsi_req(rq
)->result
= 0;
513 if (blk_rq_is_passthrough(rq
) && uptodate
<= 0) {
514 if (scsi_req(rq
)->result
== 0)
515 scsi_req(rq
)->result
= -EIO
;
518 error
= uptodate
? BLK_STS_OK
: BLK_STS_IOERR
;
521 ide_complete_rq(drive
, error
, blk_rq_bytes(rq
));
525 if (pc
->flags
& PC_FLAG_DMA_IN_PROGRESS
) {
526 pc
->flags
&= ~PC_FLAG_DMA_IN_PROGRESS
;
527 printk(KERN_ERR PFX
"%s: The device wants to issue more "
528 "interrupts in DMA mode\n", drive
->name
);
530 return ide_do_reset(drive
);
533 /* Get the number of bytes to transfer on this interrupt. */
534 ide_read_bcount_and_ireason(drive
, &bcount
, &ireason
);
536 if (ide_check_ireason(drive
, rq
, bcount
, ireason
, write
))
537 return ide_do_reset(drive
);
539 done
= min_t(unsigned int, bcount
, cmd
->nleft
);
540 ide_pio_bytes(drive
, cmd
, write
, done
);
542 /* Update transferred byte count */
543 scsi_req(rq
)->resid_len
-= done
;
548 ide_pad_transfer(drive
, write
, bcount
);
550 debug_log("[cmd %x] transferred %d bytes, padded %d bytes, resid: %u\n",
551 scsi_req(rq
)->cmd
[0], done
, bcount
, scsi_req(rq
)->resid_len
);
553 /* And set the interrupt handler again */
554 ide_set_handler(drive
, ide_pc_intr
, timeout
);
558 static void ide_init_packet_cmd(struct ide_cmd
*cmd
, u8 valid_tf
,
561 cmd
->protocol
= dma
? ATAPI_PROT_DMA
: ATAPI_PROT_PIO
;
562 cmd
->valid
.out
.tf
= IDE_VALID_LBAH
| IDE_VALID_LBAM
|
563 IDE_VALID_FEATURE
| valid_tf
;
564 cmd
->tf
.command
= ATA_CMD_PACKET
;
565 cmd
->tf
.feature
= dma
; /* Use PIO/DMA */
566 cmd
->tf
.lbam
= bcount
& 0xff;
567 cmd
->tf
.lbah
= (bcount
>> 8) & 0xff;
570 static u8
ide_read_ireason(ide_drive_t
*drive
)
572 struct ide_taskfile tf
;
574 drive
->hwif
->tp_ops
->tf_read(drive
, &tf
, IDE_VALID_NSECT
);
579 static u8
ide_wait_ireason(ide_drive_t
*drive
, u8 ireason
)
583 while (retries
-- && ((ireason
& ATAPI_COD
) == 0 ||
584 (ireason
& ATAPI_IO
))) {
585 printk(KERN_ERR PFX
"%s: (IO,CoD != (0,1) while issuing "
586 "a packet command, retrying\n", drive
->name
);
588 ireason
= ide_read_ireason(drive
);
590 printk(KERN_ERR PFX
"%s: (IO,CoD != (0,1) while issuing"
591 " a packet command, ignoring\n",
593 ireason
|= ATAPI_COD
;
594 ireason
&= ~ATAPI_IO
;
601 static int ide_delayed_transfer_pc(ide_drive_t
*drive
)
603 /* Send the actual packet */
604 drive
->hwif
->tp_ops
->output_data(drive
, NULL
, drive
->pc
->c
, 12);
606 /* Timeout for the packet command */
607 return WAIT_FLOPPY_CMD
;
610 static ide_startstop_t
ide_transfer_pc(ide_drive_t
*drive
)
612 struct ide_atapi_pc
*uninitialized_var(pc
);
613 ide_hwif_t
*hwif
= drive
->hwif
;
614 struct request
*rq
= hwif
->rq
;
615 ide_expiry_t
*expiry
;
616 unsigned int timeout
;
618 ide_startstop_t startstop
;
621 if (ide_wait_stat(&startstop
, drive
, ATA_DRQ
, ATA_BUSY
, WAIT_READY
)) {
622 printk(KERN_ERR PFX
"%s: Strange, packet command initiated yet "
623 "DRQ isn't asserted\n", drive
->name
);
627 if (drive
->atapi_flags
& IDE_AFLAG_DRQ_INTERRUPT
) {
629 drive
->waiting_for_dma
= 1;
632 if (dev_is_idecd(drive
)) {
633 /* ATAPI commands get padded out to 12 bytes minimum */
634 cmd_len
= COMMAND_SIZE(scsi_req(rq
)->cmd
[0]);
635 if (cmd_len
< ATAPI_MIN_CDB_BYTES
)
636 cmd_len
= ATAPI_MIN_CDB_BYTES
;
638 timeout
= rq
->timeout
;
639 expiry
= ide_cd_expiry
;
643 cmd_len
= ATAPI_MIN_CDB_BYTES
;
646 * If necessary schedule the packet transfer to occur 'timeout'
647 * milliseconds later in ide_delayed_transfer_pc() after the
648 * device says it's ready for a packet.
650 if (drive
->atapi_flags
& IDE_AFLAG_ZIP_DRIVE
) {
651 timeout
= drive
->pc_delay
;
652 expiry
= &ide_delayed_transfer_pc
;
654 timeout
= (drive
->media
== ide_floppy
) ? WAIT_FLOPPY_CMD
659 ireason
= ide_read_ireason(drive
);
660 if (drive
->media
== ide_tape
)
661 ireason
= ide_wait_ireason(drive
, ireason
);
663 if ((ireason
& ATAPI_COD
) == 0 || (ireason
& ATAPI_IO
)) {
664 printk(KERN_ERR PFX
"%s: (IO,CoD) != (0,1) while "
665 "issuing a packet command\n", drive
->name
);
667 return ide_do_reset(drive
);
671 hwif
->expiry
= expiry
;
673 /* Set the interrupt routine */
674 ide_set_handler(drive
,
675 (dev_is_idecd(drive
) ? drive
->irq_handler
679 /* Send the actual packet */
680 if ((drive
->atapi_flags
& IDE_AFLAG_ZIP_DRIVE
) == 0)
681 hwif
->tp_ops
->output_data(drive
, NULL
, scsi_req(rq
)->cmd
, cmd_len
);
683 /* Begin DMA, if necessary */
684 if (dev_is_idecd(drive
)) {
686 hwif
->dma_ops
->dma_start(drive
);
688 if (pc
->flags
& PC_FLAG_DMA_OK
) {
689 pc
->flags
|= PC_FLAG_DMA_IN_PROGRESS
;
690 hwif
->dma_ops
->dma_start(drive
);
697 ide_startstop_t
ide_issue_pc(ide_drive_t
*drive
, struct ide_cmd
*cmd
)
699 struct ide_atapi_pc
*pc
;
700 ide_hwif_t
*hwif
= drive
->hwif
;
701 ide_expiry_t
*expiry
= NULL
;
702 struct request
*rq
= hwif
->rq
;
703 unsigned int timeout
, bytes
;
706 u8 drq_int
= !!(drive
->atapi_flags
& IDE_AFLAG_DRQ_INTERRUPT
);
708 if (dev_is_idecd(drive
)) {
709 valid_tf
= IDE_VALID_NSECT
| IDE_VALID_LBAL
;
710 bcount
= ide_cd_get_xferlen(rq
);
711 expiry
= ide_cd_expiry
;
712 timeout
= ATAPI_WAIT_PC
;
715 drive
->dma
= !ide_dma_prepare(drive
, cmd
);
719 valid_tf
= IDE_VALID_DEVICE
;
720 bytes
= blk_rq_bytes(rq
);
721 bcount
= ((drive
->media
== ide_tape
) ? bytes
722 : min_t(unsigned int,
725 /* We haven't transferred any data yet */
726 scsi_req(rq
)->resid_len
= bcount
;
728 if (pc
->flags
& PC_FLAG_DMA_ERROR
) {
729 pc
->flags
&= ~PC_FLAG_DMA_ERROR
;
733 if (pc
->flags
& PC_FLAG_DMA_OK
)
734 drive
->dma
= !ide_dma_prepare(drive
, cmd
);
737 pc
->flags
&= ~PC_FLAG_DMA_OK
;
739 timeout
= (drive
->media
== ide_floppy
) ? WAIT_FLOPPY_CMD
743 ide_init_packet_cmd(cmd
, valid_tf
, bcount
, drive
->dma
);
745 (void)do_rw_taskfile(drive
, cmd
);
749 drive
->waiting_for_dma
= 0;
750 hwif
->expiry
= expiry
;
753 ide_execute_command(drive
, cmd
, ide_transfer_pc
, timeout
);
755 return drq_int
? ide_started
: ide_transfer_pc(drive
);
757 EXPORT_SYMBOL_GPL(ide_issue_pc
);