net: stmmac: xgmac: Fix RSS writing wrong keys
[linux-2.6-block.git] / drivers / ide / ide-atapi.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
594c16d8
BZ
2/*
3 * ATAPI support.
4 */
5
6#include <linux/kernel.h>
4cad085e 7#include <linux/cdrom.h>
594c16d8 8#include <linux/delay.h>
38789fda 9#include <linux/export.h>
594c16d8 10#include <linux/ide.h>
479edf06 11#include <linux/scatterlist.h>
5a0e3ad6 12#include <linux/gfp.h>
479edf06 13
646c0cb6
BZ
14#include <scsi/scsi.h>
15
103f7033
BP
16#define DRV_NAME "ide-atapi"
17#define PFX DRV_NAME ": "
18
646c0cb6
BZ
19#ifdef DEBUG
20#define debug_log(fmt, args...) \
21 printk(KERN_INFO "ide: " fmt, ## args)
22#else
23#define debug_log(fmt, args...) do {} while (0)
24#endif
25
8c662852
BP
26#define ATAPI_MIN_CDB_BYTES 12
27
991cb26a
BP
28static inline int dev_is_idecd(ide_drive_t *drive)
29{
5317464d 30 return drive->media == ide_cdrom || drive->media == ide_optical;
991cb26a
BP
31}
32
51509eec
BZ
33/*
34 * Check whether we can support a device,
35 * based on the ATAPI IDENTIFY command results.
36 */
37int ide_check_atapi_device(ide_drive_t *drive, const char *s)
38{
39 u16 *id = drive->id;
40 u8 gcw[2], protocol, device_type, removable, drq_type, packet_size;
41
42 *((u16 *)&gcw) = id[ATA_ID_CONFIG];
43
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;
49
50#ifdef CONFIG_PPC
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"))
55 device_type = 0;
56#endif
57
58 if (protocol != 2)
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",
67 s, drive->name);
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);
74 else
75 return 1;
76 return 0;
77}
78EXPORT_SYMBOL_GPL(ide_check_atapi_device);
79
7bf7420a
BZ
80void ide_init_pc(struct ide_atapi_pc *pc)
81{
82 memset(pc, 0, sizeof(*pc));
7bf7420a
BZ
83}
84EXPORT_SYMBOL_GPL(ide_init_pc);
85
2ac07d92
BZ
86/*
87 * Add a special packet command request to the tail of the request queue,
88 * and wait for it to be serviced.
89 */
90int ide_queue_pc_tail(ide_drive_t *drive, struct gendisk *disk,
b13345f3 91 struct ide_atapi_pc *pc, void *buf, unsigned int bufflen)
2ac07d92
BZ
92{
93 struct request *rq;
94 int error;
95
ff005a06 96 rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, 0);
2f5a8e80 97 ide_req(rq)->type = ATA_PRIV_MISC;
22ce0a7c 98 ide_req(rq)->special = pc;
3eb76c1c 99
b13345f3
BP
100 if (buf && bufflen) {
101 error = blk_rq_map_kern(drive->queue, rq, buf, bufflen,
5c4be572
TH
102 GFP_NOIO);
103 if (error)
104 goto put_req;
3eb76c1c
BP
105 }
106
82ed4db4 107 memcpy(scsi_req(rq)->cmd, pc->c, 12);
2ac07d92 108 if (drive->media == ide_tape)
82ed4db4 109 scsi_req(rq)->cmd[13] = REQ_IDETAPE_PC1;
b7819b92 110 blk_execute_rq(drive->queue, disk, rq, 0);
17d5363b 111 error = scsi_req(rq)->result ? -EIO : 0;
5c4be572 112put_req:
2ac07d92 113 blk_put_request(rq);
2ac07d92
BZ
114 return error;
115}
116EXPORT_SYMBOL_GPL(ide_queue_pc_tail);
117
de699ad5
BZ
118int ide_do_test_unit_ready(ide_drive_t *drive, struct gendisk *disk)
119{
120 struct ide_atapi_pc pc;
121
122 ide_init_pc(&pc);
123 pc.c[0] = TEST_UNIT_READY;
124
b13345f3 125 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
de699ad5
BZ
126}
127EXPORT_SYMBOL_GPL(ide_do_test_unit_ready);
128
0c8a6c7a
BZ
129int ide_do_start_stop(ide_drive_t *drive, struct gendisk *disk, int start)
130{
131 struct ide_atapi_pc pc;
132
133 ide_init_pc(&pc);
134 pc.c[0] = START_STOP;
135 pc.c[4] = start;
136
137 if (drive->media == ide_tape)
138 pc.flags |= PC_FLAG_WAIT_FOR_DSC;
139
b13345f3 140 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
0c8a6c7a
BZ
141}
142EXPORT_SYMBOL_GPL(ide_do_start_stop);
143
0578042d
BZ
144int ide_set_media_lock(ide_drive_t *drive, struct gendisk *disk, int on)
145{
146 struct ide_atapi_pc pc;
147
42619d35 148 if ((drive->dev_flags & IDE_DFLAG_DOORLOCKING) == 0)
0578042d
BZ
149 return 0;
150
151 ide_init_pc(&pc);
152 pc.c[0] = ALLOW_MEDIUM_REMOVAL;
153 pc.c[4] = on;
154
b13345f3 155 return ide_queue_pc_tail(drive, disk, &pc, NULL, 0);
0578042d
BZ
156}
157EXPORT_SYMBOL_GPL(ide_set_media_lock);
158
6b0da28b
BZ
159void ide_create_request_sense_cmd(ide_drive_t *drive, struct ide_atapi_pc *pc)
160{
161 ide_init_pc(pc);
162 pc->c[0] = REQUEST_SENSE;
163 if (drive->media == ide_floppy) {
164 pc->c[4] = 255;
165 pc->req_xfer = 18;
166 } else {
167 pc->c[4] = 20;
168 pc->req_xfer = 20;
169 }
170}
171EXPORT_SYMBOL_GPL(ide_create_request_sense_cmd);
172
a1df5169
BP
173void ide_prep_sense(ide_drive_t *drive, struct request *rq)
174{
175 struct request_sense *sense = &drive->sense_data;
60033520
JA
176 struct request *sense_rq;
177 struct scsi_request *req;
a1df5169 178 unsigned int cmd_len, sense_len;
5c4be572 179 int err;
a1df5169 180
a1df5169
BP
181 switch (drive->media) {
182 case ide_floppy:
183 cmd_len = 255;
184 sense_len = 18;
185 break;
186 case ide_tape:
187 cmd_len = 20;
188 sense_len = 20;
189 break;
190 default:
191 cmd_len = 18;
192 sense_len = 18;
193 }
194
195 BUG_ON(sense_len > sizeof(*sense));
196
2f5a8e80 197 if (ata_sense_request(rq) || drive->sense_rq_armed)
a1df5169
BP
198 return;
199
60033520
JA
200 sense_rq = drive->sense_rq;
201 if (!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;
205 }
206 req = scsi_req(sense_rq);
207
a1df5169
BP
208 memset(sense, 0, sizeof(*sense));
209
c8d9cf22 210 scsi_req_init(req);
a1df5169 211
5c4be572
TH
212 err = blk_rq_map_kern(drive->queue, sense_rq, sense, sense_len,
213 GFP_NOIO);
214 if (unlikely(err)) {
215 if (printk_ratelimit())
103f7033
BP
216 printk(KERN_WARNING PFX "%s: failed to map sense "
217 "buffer\n", drive->name);
60033520
JA
218 blk_mq_free_request(sense_rq);
219 drive->sense_rq = NULL;
5c4be572
TH
220 return;
221 }
222
223 sense_rq->rq_disk = rq->rq_disk;
aebf526b 224 sense_rq->cmd_flags = REQ_OP_DRV_IN;
2f5a8e80 225 ide_req(sense_rq)->type = ATA_PRIV_SENSE;
e8064021 226 sense_rq->rq_flags |= RQF_PREEMPT;
a1df5169 227
82ed4db4
CH
228 req->cmd[0] = GPCMD_REQUEST_SENSE;
229 req->cmd[4] = cmd_len;
a1df5169 230 if (drive->media == ide_tape)
82ed4db4 231 req->cmd[13] = REQ_IDETAPE_PC1;
a1df5169
BP
232
233 drive->sense_rq_armed = true;
234}
235EXPORT_SYMBOL_GPL(ide_prep_sense);
236
5c4be572 237int ide_queue_sense_rq(ide_drive_t *drive, void *special)
a1df5169 238{
9a6d5488
JA
239 ide_hwif_t *hwif = drive->hwif;
240 struct request *sense_rq;
241 unsigned long flags;
242
243 spin_lock_irqsave(&hwif->lock, flags);
60033520 244
5c4be572
TH
245 /* deferred failure from ide_prep_sense() */
246 if (!drive->sense_rq_armed) {
103f7033 247 printk(KERN_WARNING PFX "%s: error queuing a sense request\n",
5c4be572 248 drive->name);
9a6d5488 249 spin_unlock_irqrestore(&hwif->lock, flags);
5c4be572
TH
250 return -ENOMEM;
251 }
a1df5169 252
9a6d5488 253 sense_rq = drive->sense_rq;
22ce0a7c 254 ide_req(sense_rq)->special = special;
a1df5169
BP
255 drive->sense_rq_armed = false;
256
257 drive->hwif->rq = NULL;
258
60033520 259 ide_insert_request_head(drive, sense_rq);
9a6d5488 260 spin_unlock_irqrestore(&hwif->lock, flags);
5c4be572 261 return 0;
a1df5169
BP
262}
263EXPORT_SYMBOL_GPL(ide_queue_sense_rq);
264
6b0da28b
BZ
265/*
266 * Called when an error was detected during the last packet command.
6b544fcc
BP
267 * We queue a request sense packet command at the head of the request
268 * queue.
6b0da28b 269 */
6b544fcc 270void ide_retry_pc(ide_drive_t *drive)
6b0da28b 271{
8f6205cd 272 struct request *failed_rq = drive->hwif->rq;
82ed4db4 273 struct request *sense_rq = drive->sense_rq;
6b0da28b
BZ
274 struct ide_atapi_pc *pc = &drive->request_sense_pc;
275
276 (void)ide_read_error(drive);
6b544fcc
BP
277
278 /* init pc from sense_rq */
279 ide_init_pc(pc);
82ed4db4 280 memcpy(pc->c, scsi_req(sense_rq)->cmd, 12);
6b544fcc 281
6b0da28b 282 if (drive->media == ide_tape)
626542ca 283 drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC;
6b544fcc 284
8f6205cd
TH
285 /*
286 * Push back the failed request and put request sense on top
287 * of it. The failed command will be retried after sense data
288 * is acquired.
289 */
8f6205cd 290 drive->hwif->rq = NULL;
1af18503 291 ide_requeue_and_plug(drive, failed_rq);
60033520 292 if (ide_queue_sense_rq(drive, pc))
2a842aca 293 ide_complete_rq(drive, BLK_STS_IOERR, blk_rq_bytes(failed_rq));
6b0da28b
BZ
294}
295EXPORT_SYMBOL_GPL(ide_retry_pc);
296
4cad085e
BP
297int ide_cd_expiry(ide_drive_t *drive)
298{
b65fac32 299 struct request *rq = drive->hwif->rq;
4cad085e
BP
300 unsigned long wait = 0;
301
8dc7a31f 302 debug_log("%s: scsi_req(rq)->cmd[0]: 0x%x\n", __func__, scsi_req(rq)->cmd[0]);
4cad085e
BP
303
304 /*
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
308 * for these.
309 */
82ed4db4 310 switch (scsi_req(rq)->cmd[0]) {
4cad085e
BP
311 case GPCMD_BLANK:
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;
317 break;
318 default:
e8064021 319 if (!(rq->rq_flags & RQF_QUIET))
103f7033 320 printk(KERN_INFO PFX "cmd 0x%x timed out\n",
82ed4db4 321 scsi_req(rq)->cmd[0]);
4cad085e
BP
322 wait = 0;
323 break;
324 }
325 return wait;
326}
327EXPORT_SYMBOL_GPL(ide_cd_expiry);
328
392de1d5
BP
329int ide_cd_get_xferlen(struct request *rq)
330{
aebf526b
CH
331 switch (req_op(rq)) {
332 default:
392de1d5 333 return 32768;
aebf526b
CH
334 case REQ_OP_SCSI_IN:
335 case REQ_OP_SCSI_OUT:
34b7d2c9 336 return blk_rq_bytes(rq);
aebf526b
CH
337 case REQ_OP_DRV_IN:
338 case REQ_OP_DRV_OUT:
2f5a8e80
CH
339 switch (ide_req(rq)->type) {
340 case ATA_PRIV_PC:
341 case ATA_PRIV_SENSE:
342 return blk_rq_bytes(rq);
aebf526b
CH
343 default:
344 return 0;
2f5a8e80 345 }
33659ebb 346 }
392de1d5
BP
347}
348EXPORT_SYMBOL_GPL(ide_cd_get_xferlen);
349
0d6a9754
BZ
350void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
351{
3153c26b 352 struct ide_taskfile tf;
0d6a9754 353
3153c26b
SS
354 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT |
355 IDE_VALID_LBAM | IDE_VALID_LBAH);
0d6a9754 356
3153c26b
SS
357 *bcount = (tf.lbah << 8) | tf.lbam;
358 *ireason = tf.nsect & 3;
0d6a9754
BZ
359}
360EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
361
103f7033
BP
362/*
363 * Check the contents of the interrupt reason register and attempt to recover if
364 * there are problems.
365 *
366 * Returns:
367 * - 0 if everything's ok
368 * - 1 if the request has to be terminated.
369 */
370int ide_check_ireason(ide_drive_t *drive, struct request *rq, int len,
371 int ireason, int rw)
372{
373 ide_hwif_t *hwif = drive->hwif;
374
375 debug_log("ireason: 0x%x, rw: 0x%x\n", ireason, rw);
376
377 if (ireason == (!rw << 1))
378 return 0;
379 else if (ireason == (rw << 1)) {
380 printk(KERN_ERR PFX "%s: %s: wrong transfer direction!\n",
381 drive->name, __func__);
382
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)) {
387 /*
388 * Some drives (ASUS) seem to tell us that status info
389 * is available. Just get it and ignore.
390 */
391 (void)hwif->tp_ops->read_status(hwif);
392 return 0;
393 }
394 } else {
395 if (ireason & ATAPI_COD)
396 printk(KERN_ERR PFX "%s: CoD != 0 in %s\n", drive->name,
397 __func__);
398
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);
402 }
403
2f5a8e80 404 if (dev_is_idecd(drive) && ata_pc_request(rq))
e8064021 405 rq->rq_flags |= RQF_FAILED;
103f7033
BP
406
407 return 1;
408}
409EXPORT_SYMBOL_GPL(ide_check_ireason);
410
aa5d2de7
BZ
411/*
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.
415 */
416static ide_startstop_t ide_pc_intr(ide_drive_t *drive)
646c0cb6 417{
2b9efba4 418 struct ide_atapi_pc *pc = drive->pc;
646c0cb6 419 ide_hwif_t *hwif = drive->hwif;
f094d4d8 420 struct ide_cmd *cmd = &hwif->cmd;
b65fac32 421 struct request *rq = hwif->rq;
374e042c 422 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
d93bc452 423 unsigned int timeout, done;
646c0cb6 424 u16 bcount;
5d655a03 425 u8 stat, ireason, dsc = 0;
d93bc452 426 u8 write = !!(pc->flags & PC_FLAG_WRITING);
646c0cb6
BZ
427
428 debug_log("Enter %s - interrupt handler\n", __func__);
429
5d655a03
BP
430 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
431 : WAIT_TAPE_CMD;
844b9468 432
646c0cb6 433 /* Clear the interrupt */
374e042c 434 stat = tp_ops->read_status(hwif);
646c0cb6
BZ
435
436 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
88b4132e 437 int rc;
4453011f 438
88b4132e
BZ
439 drive->waiting_for_dma = 0;
440 rc = hwif->dma_ops->dma_end(drive);
f094d4d8 441 ide_dma_unmap_sg(drive, cmd);
4453011f
BZ
442
443 if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) {
5d655a03 444 if (drive->media == ide_floppy)
103f7033 445 printk(KERN_ERR PFX "%s: DMA %s error\n",
646c0cb6
BZ
446 drive->name, rq_data_dir(pc->rq)
447 ? "write" : "read");
448 pc->flags |= PC_FLAG_DMA_ERROR;
6d700387 449 } else
82ed4db4 450 scsi_req(rq)->resid_len = 0;
646c0cb6
BZ
451 debug_log("%s: DMA finished\n", drive->name);
452 }
453
454 /* No more interrupts */
3a7d2484 455 if ((stat & ATA_DRQ) == 0) {
2a842aca
CH
456 int uptodate;
457 blk_status_t error;
03a2faae 458
646c0cb6 459 debug_log("Packet command completed, %d bytes transferred\n",
077e6dba 460 blk_rq_bytes(rq));
646c0cb6
BZ
461
462 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
463
464 local_irq_enable_in_hardirq();
465
5d655a03 466 if (drive->media == ide_tape &&
82ed4db4 467 (stat & ATA_ERR) && scsi_req(rq)->cmd[0] == REQUEST_SENSE)
3a7d2484 468 stat &= ~ATA_ERR;
8fccf899 469
3a7d2484 470 if ((stat & ATA_ERR) || (pc->flags & PC_FLAG_DMA_ERROR)) {
646c0cb6
BZ
471 /* Error detected */
472 debug_log("%s: I/O error\n", drive->name);
473
5d655a03 474 if (drive->media != ide_tape)
17d5363b 475 scsi_req(pc->rq)->result++;
646c0cb6 476
82ed4db4 477 if (scsi_req(rq)->cmd[0] == REQUEST_SENSE) {
103f7033
BP
478 printk(KERN_ERR PFX "%s: I/O error in request "
479 "sense command\n", drive->name);
646c0cb6
BZ
480 return ide_do_reset(drive);
481 }
482
8dc7a31f 483 debug_log("[cmd %x]: check condition\n", scsi_req(rq)->cmd[0]);
646c0cb6
BZ
484
485 /* Retry operation */
6b544fcc 486 ide_retry_pc(drive);
8fccf899 487
646c0cb6
BZ
488 /* queued, but not started */
489 return ide_stopped;
490 }
646c0cb6 491 pc->error = 0;
b14c7212
BZ
492
493 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && (stat & ATA_DSC) == 0)
494 dsc = 1;
8fccf899 495
b3071d19
TH
496 /*
497 * ->pc_callback() might change rq->data_len for
498 * residual count, cache total length.
499 */
21d9c5d2 500 done = blk_rq_bytes(rq);
b3071d19 501
646c0cb6 502 /* Command finished - Call the callback function */
03a2faae
BZ
503 uptodate = drive->pc_callback(drive, dsc);
504
505 if (uptodate == 0)
506 drive->failed_pc = NULL;
507
2f5a8e80 508 if (ata_misc_request(rq)) {
17d5363b 509 scsi_req(rq)->result = 0;
2a842aca 510 error = BLK_STS_OK;
89f78b32 511 } else {
349d12a1 512
aebf526b 513 if (blk_rq_is_passthrough(rq) && uptodate <= 0) {
17d5363b
CH
514 if (scsi_req(rq)->result == 0)
515 scsi_req(rq)->result = -EIO;
89f78b32 516 }
349d12a1 517
2a842aca 518 error = uptodate ? BLK_STS_OK : BLK_STS_IOERR;
89f78b32 519 }
8fccf899 520
c3a4d78c 521 ide_complete_rq(drive, error, blk_rq_bytes(rq));
646c0cb6
BZ
522 return ide_stopped;
523 }
524
525 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
526 pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS;
103f7033
BP
527 printk(KERN_ERR PFX "%s: The device wants to issue more "
528 "interrupts in DMA mode\n", drive->name);
646c0cb6
BZ
529 ide_dma_off(drive);
530 return ide_do_reset(drive);
531 }
646c0cb6 532
1823649b
BZ
533 /* Get the number of bytes to transfer on this interrupt. */
534 ide_read_bcount_and_ireason(drive, &bcount, &ireason);
646c0cb6 535
103f7033 536 if (ide_check_ireason(drive, rq, bcount, ireason, write))
646c0cb6 537 return ide_do_reset(drive);
8fccf899 538
6d700387
TH
539 done = min_t(unsigned int, bcount, cmd->nleft);
540 ide_pio_bytes(drive, cmd, write, done);
646c0cb6 541
6d700387 542 /* Update transferred byte count */
82ed4db4 543 scsi_req(rq)->resid_len -= done;
d93bc452
BZ
544
545 bcount -= done;
546
547 if (bcount)
548 ide_pad_transfer(drive, write, bcount);
549
077e6dba 550 debug_log("[cmd %x] transferred %d bytes, padded %d bytes, resid: %u\n",
8dc7a31f 551 scsi_req(rq)->cmd[0], done, bcount, scsi_req(rq)->resid_len);
646c0cb6 552
646c0cb6 553 /* And set the interrupt handler again */
60c0cd02 554 ide_set_handler(drive, ide_pc_intr, timeout);
646c0cb6
BZ
555 return ide_started;
556}
594c16d8 557
60f85019 558static void ide_init_packet_cmd(struct ide_cmd *cmd, u8 valid_tf,
b788ee9c 559 u16 bcount, u8 dma)
7a254df0 560{
60f85019
SS
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;
35b5d0be 564 cmd->tf.command = ATA_CMD_PACKET;
b788ee9c
BZ
565 cmd->tf.feature = dma; /* Use PIO/DMA */
566 cmd->tf.lbam = bcount & 0xff;
567 cmd->tf.lbah = (bcount >> 8) & 0xff;
7a254df0
BZ
568}
569
88a72109
BZ
570static u8 ide_read_ireason(ide_drive_t *drive)
571{
3153c26b 572 struct ide_taskfile tf;
88a72109 573
3153c26b 574 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT);
88a72109 575
3153c26b 576 return tf.nsect & 3;
88a72109
BZ
577}
578
594c16d8
BZ
579static u8 ide_wait_ireason(ide_drive_t *drive, u8 ireason)
580{
594c16d8
BZ
581 int retries = 100;
582
3a7d2484
BZ
583 while (retries-- && ((ireason & ATAPI_COD) == 0 ||
584 (ireason & ATAPI_IO))) {
103f7033 585 printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing "
594c16d8
BZ
586 "a packet command, retrying\n", drive->name);
587 udelay(100);
88a72109 588 ireason = ide_read_ireason(drive);
594c16d8 589 if (retries == 0) {
103f7033
BP
590 printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing"
591 " a packet command, ignoring\n",
594c16d8 592 drive->name);
3a7d2484
BZ
593 ireason |= ATAPI_COD;
594 ireason &= ~ATAPI_IO;
594c16d8
BZ
595 }
596 }
597
598 return ireason;
599}
600
baf08f0b
BZ
601static int ide_delayed_transfer_pc(ide_drive_t *drive)
602{
603 /* Send the actual packet */
604 drive->hwif->tp_ops->output_data(drive, NULL, drive->pc->c, 12);
605
606 /* Timeout for the packet command */
607 return WAIT_FLOPPY_CMD;
608}
609
610static ide_startstop_t ide_transfer_pc(ide_drive_t *drive)
594c16d8 611{
b16aabc9 612 struct ide_atapi_pc *uninitialized_var(pc);
594c16d8 613 ide_hwif_t *hwif = drive->hwif;
b65fac32 614 struct request *rq = hwif->rq;
baf08f0b
BZ
615 ide_expiry_t *expiry;
616 unsigned int timeout;
8c662852 617 int cmd_len;
594c16d8
BZ
618 ide_startstop_t startstop;
619 u8 ireason;
620
3a7d2484 621 if (ide_wait_stat(&startstop, drive, ATA_DRQ, ATA_BUSY, WAIT_READY)) {
103f7033 622 printk(KERN_ERR PFX "%s: Strange, packet command initiated yet "
594c16d8
BZ
623 "DRQ isn't asserted\n", drive->name);
624 return startstop;
625 }
626
5f25843f
BP
627 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
628 if (drive->dma)
629 drive->waiting_for_dma = 1;
630 }
631
8c662852
BP
632 if (dev_is_idecd(drive)) {
633 /* ATAPI commands get padded out to 12 bytes minimum */
82ed4db4 634 cmd_len = COMMAND_SIZE(scsi_req(rq)->cmd[0]);
8c662852
BP
635 if (cmd_len < ATAPI_MIN_CDB_BYTES)
636 cmd_len = ATAPI_MIN_CDB_BYTES;
8c662852 637
def860d0
BP
638 timeout = rq->timeout;
639 expiry = ide_cd_expiry;
baf08f0b 640 } else {
b16aabc9
BP
641 pc = drive->pc;
642
def860d0
BP
643 cmd_len = ATAPI_MIN_CDB_BYTES;
644
645 /*
646 * If necessary schedule the packet transfer to occur 'timeout'
19af5cdb 647 * milliseconds later in ide_delayed_transfer_pc() after the
def860d0
BP
648 * device says it's ready for a packet.
649 */
650 if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) {
651 timeout = drive->pc_delay;
652 expiry = &ide_delayed_transfer_pc;
653 } else {
654 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
655 : WAIT_TAPE_CMD;
656 expiry = NULL;
657 }
06cc2778
BP
658
659 ireason = ide_read_ireason(drive);
660 if (drive->media == ide_tape)
661 ireason = ide_wait_ireason(drive, ireason);
662
663 if ((ireason & ATAPI_COD) == 0 || (ireason & ATAPI_IO)) {
103f7033
BP
664 printk(KERN_ERR PFX "%s: (IO,CoD) != (0,1) while "
665 "issuing a packet command\n", drive->name);
06cc2778
BP
666
667 return ide_do_reset(drive);
668 }
baf08f0b
BZ
669 }
670
60c0cd02
BZ
671 hwif->expiry = expiry;
672
594c16d8 673 /* Set the interrupt routine */
d6251d44
BP
674 ide_set_handler(drive,
675 (dev_is_idecd(drive) ? drive->irq_handler
676 : ide_pc_intr),
60c0cd02 677 timeout);
594c16d8 678
2eba0827
BP
679 /* Send the actual packet */
680 if ((drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) == 0)
82ed4db4 681 hwif->tp_ops->output_data(drive, NULL, scsi_req(rq)->cmd, cmd_len);
2eba0827 682
594c16d8 683 /* Begin DMA, if necessary */
b16aabc9
BP
684 if (dev_is_idecd(drive)) {
685 if (drive->dma)
686 hwif->dma_ops->dma_start(drive);
687 } else {
688 if (pc->flags & PC_FLAG_DMA_OK) {
689 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
690 hwif->dma_ops->dma_start(drive);
691 }
594c16d8
BZ
692 }
693
594c16d8
BZ
694 return ide_started;
695}
6bf1641c 696
b788ee9c 697ide_startstop_t ide_issue_pc(ide_drive_t *drive, struct ide_cmd *cmd)
6bf1641c 698{
d77612ab 699 struct ide_atapi_pc *pc;
6bf1641c 700 ide_hwif_t *hwif = drive->hwif;
4cad085e 701 ide_expiry_t *expiry = NULL;
e6830a86 702 struct request *rq = hwif->rq;
dfb7e621 703 unsigned int timeout, bytes;
392de1d5 704 u16 bcount;
60f85019 705 u8 valid_tf;
35b5d0be 706 u8 drq_int = !!(drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT);
6bf1641c 707
ed48554f 708 if (dev_is_idecd(drive)) {
60f85019 709 valid_tf = IDE_VALID_NSECT | IDE_VALID_LBAL;
e6830a86 710 bcount = ide_cd_get_xferlen(rq);
4cad085e 711 expiry = ide_cd_expiry;
28ad91db 712 timeout = ATAPI_WAIT_PC;
d77612ab 713
5ae5412d
BZ
714 if (drive->dma)
715 drive->dma = !ide_dma_prepare(drive, cmd);
ed48554f 716 } else {
d77612ab
BP
717 pc = drive->pc;
718
60f85019 719 valid_tf = IDE_VALID_DEVICE;
dfb7e621 720 bytes = blk_rq_bytes(rq);
dfb7e621
BP
721 bcount = ((drive->media == ide_tape) ? bytes
722 : min_t(unsigned int,
723 bytes, 63 * 1024));
6bf1641c 724
077e6dba 725 /* We haven't transferred any data yet */
82ed4db4 726 scsi_req(rq)->resid_len = bcount;
6bf1641c 727
d77612ab
BP
728 if (pc->flags & PC_FLAG_DMA_ERROR) {
729 pc->flags &= ~PC_FLAG_DMA_ERROR;
730 ide_dma_off(drive);
731 }
6bf1641c 732
5ae5412d
BZ
733 if (pc->flags & PC_FLAG_DMA_OK)
734 drive->dma = !ide_dma_prepare(drive, cmd);
6bf1641c 735
d77612ab
BP
736 if (!drive->dma)
737 pc->flags &= ~PC_FLAG_DMA_OK;
28ad91db
BP
738
739 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
740 : WAIT_TAPE_CMD;
d77612ab 741 }
6bf1641c 742
60f85019 743 ide_init_packet_cmd(cmd, valid_tf, bcount, drive->dma);
b788ee9c
BZ
744
745 (void)do_rw_taskfile(drive, cmd);
6bf1641c 746
35b5d0be 747 if (drq_int) {
5f25843f
BP
748 if (drive->dma)
749 drive->waiting_for_dma = 0;
22117d6e 750 hwif->expiry = expiry;
6bf1641c 751 }
35b5d0be
BZ
752
753 ide_execute_command(drive, cmd, ide_transfer_pc, timeout);
754
755 return drq_int ? ide_started : ide_transfer_pc(drive);
6bf1641c
BZ
756}
757EXPORT_SYMBOL_GPL(ide_issue_pc);