blob: f591166d2c9335739de34748d688e82880d476e1 [file] [log] [blame]
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +02001/*
2 * ATAPI support.
3 */
4
5#include <linux/kernel.h>
Borislav Petkov4cad0852009-01-02 16:12:53 +01006#include <linux/cdrom.h>
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +02007#include <linux/delay.h>
8#include <linux/ide.h>
Geert Uytterhoeven479edf02009-03-31 20:14:57 +02009#include <linux/scatterlist.h>
10
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +020011#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
Borislav Petkov8c662852009-01-02 16:12:54 +010020#define ATAPI_MIN_CDB_BYTES 12
21
Borislav Petkov991cb262009-01-02 16:12:52 +010022static inline int dev_is_idecd(ide_drive_t *drive)
23{
Borislav Petkov53174642009-01-02 16:12:54 +010024 return drive->media == ide_cdrom || drive->media == ide_optical;
Borislav Petkov991cb262009-01-02 16:12:52 +010025}
26
Bartlomiej Zolnierkiewicz51509ee2008-10-10 22:39:34 +020027/*
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
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +020074/* 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
113 if (bcount) {
114 printk(KERN_ERR "%s: %d leftover bytes, %s\n", drive->name,
115 bcount, write ? "padding with zeros"
116 : "discarding data");
117 ide_pad_transfer(drive, write, bcount);
118 }
119
120 return done;
121}
122EXPORT_SYMBOL_GPL(ide_io_buffers);
123
Bartlomiej Zolnierkiewicz7bf74202008-10-10 22:39:37 +0200124void ide_init_pc(struct ide_atapi_pc *pc)
125{
126 memset(pc, 0, sizeof(*pc));
127 pc->buf = pc->pc_buf;
128 pc->buf_size = IDE_PC_BUFFER_SIZE;
129}
130EXPORT_SYMBOL_GPL(ide_init_pc);
131
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200132/*
133 * Generate a new packet command request in front of the request queue, before
134 * the current request, so that it will be processed immediately, on the next
135 * pass through the driver.
136 */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200137static void ide_queue_pc_head(ide_drive_t *drive, struct gendisk *disk,
138 struct ide_atapi_pc *pc, struct request *rq)
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200139{
140 blk_rq_init(NULL, rq);
141 rq->cmd_type = REQ_TYPE_SPECIAL;
142 rq->cmd_flags |= REQ_PREEMPT;
143 rq->buffer = (char *)pc;
144 rq->rq_disk = disk;
Borislav Petkov3eb76c12009-03-13 21:16:12 +0100145
146 if (pc->req_xfer) {
147 rq->data = pc->buf;
148 rq->data_len = pc->req_xfer;
149 }
150
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200151 memcpy(rq->cmd, pc->c, 12);
152 if (drive->media == ide_tape)
153 rq->cmd[13] = REQ_IDETAPE_PC1;
Bartlomiej Zolnierkiewicz18660822009-03-24 23:22:44 +0100154
155 drive->hwif->rq = NULL;
156
157 elv_add_request(drive->queue, rq, ELEVATOR_INSERT_FRONT, 0);
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200158}
Bartlomiej Zolnierkiewicz7645c152008-10-10 22:39:37 +0200159
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200160/*
161 * Add a special packet command request to the tail of the request queue,
162 * and wait for it to be serviced.
163 */
164int ide_queue_pc_tail(ide_drive_t *drive, struct gendisk *disk,
165 struct ide_atapi_pc *pc)
166{
167 struct request *rq;
168 int error;
169
170 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
171 rq->cmd_type = REQ_TYPE_SPECIAL;
172 rq->buffer = (char *)pc;
Borislav Petkov3eb76c12009-03-13 21:16:12 +0100173
174 if (pc->req_xfer) {
175 rq->data = pc->buf;
176 rq->data_len = pc->req_xfer;
177 }
178
Bartlomiej Zolnierkiewicz2ac07d92008-10-10 22:39:38 +0200179 memcpy(rq->cmd, pc->c, 12);
180 if (drive->media == ide_tape)
181 rq->cmd[13] = REQ_IDETAPE_PC1;
182 error = blk_execute_rq(drive->queue, disk, rq, 0);
183 blk_put_request(rq);
184
185 return error;
186}
187EXPORT_SYMBOL_GPL(ide_queue_pc_tail);
188
Bartlomiej Zolnierkiewiczde699ad2008-10-10 22:39:39 +0200189int ide_do_test_unit_ready(ide_drive_t *drive, struct gendisk *disk)
190{
191 struct ide_atapi_pc pc;
192
193 ide_init_pc(&pc);
194 pc.c[0] = TEST_UNIT_READY;
195
196 return ide_queue_pc_tail(drive, disk, &pc);
197}
198EXPORT_SYMBOL_GPL(ide_do_test_unit_ready);
199
Bartlomiej Zolnierkiewicz0c8a6c72008-10-10 22:39:39 +0200200int ide_do_start_stop(ide_drive_t *drive, struct gendisk *disk, int start)
201{
202 struct ide_atapi_pc pc;
203
204 ide_init_pc(&pc);
205 pc.c[0] = START_STOP;
206 pc.c[4] = start;
207
208 if (drive->media == ide_tape)
209 pc.flags |= PC_FLAG_WAIT_FOR_DSC;
210
211 return ide_queue_pc_tail(drive, disk, &pc);
212}
213EXPORT_SYMBOL_GPL(ide_do_start_stop);
214
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +0200215int ide_set_media_lock(ide_drive_t *drive, struct gendisk *disk, int on)
216{
217 struct ide_atapi_pc pc;
218
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +0200219 if ((drive->dev_flags & IDE_DFLAG_DOORLOCKING) == 0)
Bartlomiej Zolnierkiewicz05780422008-10-10 22:39:38 +0200220 return 0;
221
222 ide_init_pc(&pc);
223 pc.c[0] = ALLOW_MEDIUM_REMOVAL;
224 pc.c[4] = on;
225
226 return ide_queue_pc_tail(drive, disk, &pc);
227}
228EXPORT_SYMBOL_GPL(ide_set_media_lock);
229
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200230void ide_create_request_sense_cmd(ide_drive_t *drive, struct ide_atapi_pc *pc)
231{
232 ide_init_pc(pc);
233 pc->c[0] = REQUEST_SENSE;
234 if (drive->media == ide_floppy) {
235 pc->c[4] = 255;
236 pc->req_xfer = 18;
237 } else {
238 pc->c[4] = 20;
239 pc->req_xfer = 20;
240 }
241}
242EXPORT_SYMBOL_GPL(ide_create_request_sense_cmd);
243
244/*
245 * Called when an error was detected during the last packet command.
246 * We queue a request sense packet command in the head of the request list.
247 */
248void ide_retry_pc(ide_drive_t *drive, struct gendisk *disk)
249{
250 struct request *rq = &drive->request_sense_rq;
251 struct ide_atapi_pc *pc = &drive->request_sense_pc;
252
253 (void)ide_read_error(drive);
254 ide_create_request_sense_cmd(drive, pc);
255 if (drive->media == ide_tape)
256 set_bit(IDE_AFLAG_IGNORE_DSC, &drive->atapi_flags);
257 ide_queue_pc_head(drive, disk, pc, rq);
258}
259EXPORT_SYMBOL_GPL(ide_retry_pc);
260
Borislav Petkov4cad0852009-01-02 16:12:53 +0100261int ide_cd_expiry(ide_drive_t *drive)
262{
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100263 struct request *rq = drive->hwif->rq;
Borislav Petkov4cad0852009-01-02 16:12:53 +0100264 unsigned long wait = 0;
265
266 debug_log("%s: rq->cmd[0]: 0x%x\n", __func__, rq->cmd[0]);
267
268 /*
269 * Some commands are *slow* and normally take a long time to complete.
270 * Usually we can use the ATAPI "disconnect" to bypass this, but not all
271 * commands/drives support that. Let ide_timer_expiry keep polling us
272 * for these.
273 */
274 switch (rq->cmd[0]) {
275 case GPCMD_BLANK:
276 case GPCMD_FORMAT_UNIT:
277 case GPCMD_RESERVE_RZONE_TRACK:
278 case GPCMD_CLOSE_TRACK:
279 case GPCMD_FLUSH_CACHE:
280 wait = ATAPI_WAIT_PC;
281 break;
282 default:
283 if (!(rq->cmd_flags & REQ_QUIET))
284 printk(KERN_INFO "cmd 0x%x timed out\n",
285 rq->cmd[0]);
286 wait = 0;
287 break;
288 }
289 return wait;
290}
291EXPORT_SYMBOL_GPL(ide_cd_expiry);
292
Borislav Petkov392de1d2009-01-02 16:12:52 +0100293int ide_cd_get_xferlen(struct request *rq)
294{
295 if (blk_fs_request(rq))
296 return 32768;
297 else if (blk_sense_request(rq) || blk_pc_request(rq) ||
298 rq->cmd_type == REQ_TYPE_ATA_PC)
299 return rq->data_len;
300 else
301 return 0;
302}
303EXPORT_SYMBOL_GPL(ide_cd_get_xferlen);
304
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100305void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
306{
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100307 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100308
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100309 memset(&cmd, 0, sizeof(cmd));
310 cmd.tf_flags = IDE_TFLAG_IN_LBAH | IDE_TFLAG_IN_LBAM |
311 IDE_TFLAG_IN_NSECT;
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100312
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100313 drive->hwif->tp_ops->tf_read(drive, &cmd);
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100314
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100315 *bcount = (cmd.tf.lbah << 8) | cmd.tf.lbam;
316 *ireason = cmd.tf.nsect & 3;
Bartlomiej Zolnierkiewicz0d6a9752009-03-24 23:22:46 +0100317}
318EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
319
Bartlomiej Zolnierkiewiczaa5d2de72008-10-13 21:39:32 +0200320/*
321 * This is the usual interrupt handler which will be called during a packet
322 * command. We will transfer some of the data (as requested by the drive)
323 * and will re-point interrupt handler to us.
324 */
325static ide_startstop_t ide_pc_intr(ide_drive_t *drive)
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200326{
Bartlomiej Zolnierkiewicz2b9efba2008-10-13 21:39:31 +0200327 struct ide_atapi_pc *pc = drive->pc;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200328 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100329 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200330 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200331 xfer_func_t *xferfunc;
Bartlomiej Zolnierkiewicz844b9462008-10-13 21:39:31 +0200332 unsigned int timeout, temp;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200333 u16 bcount;
Borislav Petkov5d655a02009-01-02 16:12:54 +0100334 u8 stat, ireason, dsc = 0;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200335
336 debug_log("Enter %s - interrupt handler\n", __func__);
337
Borislav Petkov5d655a02009-01-02 16:12:54 +0100338 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
339 : WAIT_TAPE_CMD;
Bartlomiej Zolnierkiewicz844b9462008-10-13 21:39:31 +0200340
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200341 /* Clear the interrupt */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200342 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200343
344 if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) {
345 if (hwif->dma_ops->dma_end(drive) ||
Borislav Petkov5d655a02009-01-02 16:12:54 +0100346 (drive->media == ide_tape && (stat & ATA_ERR))) {
347 if (drive->media == ide_floppy)
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200348 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;
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +0200354 if (drive->pc_update_buffers)
355 drive->pc_update_buffers(drive, pc);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200356 }
357 debug_log("%s: DMA finished\n", drive->name);
358 }
359
360 /* No more interrupts */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200361 if ((stat & ATA_DRQ) == 0) {
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100362 int uptodate;
363
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200364 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
Borislav Petkov5d655a02009-01-02 16:12:54 +0100371 if (drive->media == ide_tape &&
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200372 (stat & ATA_ERR) && rq->cmd[0] == REQUEST_SENSE)
373 stat &= ~ATA_ERR;
Borislav Petkov8fccf892008-07-23 19:56:01 +0200374
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200375 if ((stat & ATA_ERR) || (pc->flags & PC_FLAG_DMA_ERROR)) {
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200376 /* Error detected */
377 debug_log("%s: I/O error\n", drive->name);
378
Borislav Petkov5d655a02009-01-02 16:12:54 +0100379 if (drive->media != ide_tape)
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200380 pc->rq->errors++;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200381
Borislav Petkov8fccf892008-07-23 19:56:01 +0200382 if (rq->cmd[0] == REQUEST_SENSE) {
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200383 printk(KERN_ERR "%s: I/O error in request sense"
384 " command\n", drive->name);
385 return ide_do_reset(drive);
386 }
387
Borislav Petkov8fccf892008-07-23 19:56:01 +0200388 debug_log("[cmd %x]: check condition\n", rq->cmd[0]);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200389
390 /* Retry operation */
Bartlomiej Zolnierkiewicz6b0da282008-10-13 21:39:32 +0200391 ide_retry_pc(drive, rq->rq_disk);
Borislav Petkov8fccf892008-07-23 19:56:01 +0200392
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200393 /* queued, but not started */
394 return ide_stopped;
395 }
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200396 pc->error = 0;
Bartlomiej Zolnierkiewiczb14c7212008-10-13 21:39:30 +0200397
398 if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && (stat & ATA_DSC) == 0)
399 dsc = 1;
Borislav Petkov8fccf892008-07-23 19:56:01 +0200400
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200401 /* Command finished - Call the callback function */
Bartlomiej Zolnierkiewicz03a2faa2009-03-27 12:46:36 +0100402 uptodate = drive->pc_callback(drive, dsc);
403
404 if (uptodate == 0)
405 drive->failed_pc = NULL;
406
Bartlomiej Zolnierkiewicz6902a532009-03-27 12:46:43 +0100407 if (blk_special_request(rq)) {
408 rq->errors = 0;
Bartlomiej Zolnierkiewiczf974b192009-03-27 12:46:44 +0100409 ide_complete_rq(drive, 0, blk_rq_bytes(rq));
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100410 } else {
411 if (blk_fs_request(rq) == 0 && uptodate <= 0) {
412 if (rq->errors == 0)
413 rq->errors = -EIO;
414 }
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100415 ide_complete_rq(drive, uptodate ? 0 : -EIO,
416 ide_rq_bytes(rq));
Bartlomiej Zolnierkiewicz89f78b322009-03-27 12:46:43 +0100417 }
Borislav Petkov8fccf892008-07-23 19:56:01 +0200418
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200419 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 }
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200429
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200430 /* Get the number of bytes to transfer on this interrupt. */
431 ide_read_bcount_and_ireason(drive, &bcount, &ireason);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200432
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200433 if (ireason & ATAPI_COD) {
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200434 printk(KERN_ERR "%s: CoD != 0 in %s\n", drive->name, __func__);
435 return ide_do_reset(drive);
436 }
Borislav Petkov8fccf892008-07-23 19:56:01 +0200437
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200438 if (((ireason & ATAPI_IO) == ATAPI_IO) ==
439 !!(pc->flags & PC_FLAG_WRITING)) {
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200440 /* Hopefully, we will never get here */
441 printk(KERN_ERR "%s: We wanted to %s, but the device wants us "
442 "to %s!\n", drive->name,
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200443 (ireason & ATAPI_IO) ? "Write" : "Read",
444 (ireason & ATAPI_IO) ? "Read" : "Write");
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200445 return ide_do_reset(drive);
446 }
Borislav Petkov8fccf892008-07-23 19:56:01 +0200447
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200448 if (!(pc->flags & PC_FLAG_WRITING)) {
449 /* Reading - Check that we have enough space */
450 temp = pc->xferred + bcount;
451 if (temp > pc->req_xfer) {
452 if (temp > pc->buf_size) {
453 printk(KERN_ERR "%s: The device wants to send "
454 "us more data than expected - "
455 "discarding data\n",
456 drive->name);
Borislav Petkov5d655a02009-01-02 16:12:54 +0100457
458 ide_pad_transfer(drive, 0, bcount);
Bartlomiej Zolnierkiewicz844b9462008-10-13 21:39:31 +0200459 goto next_irq;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200460 }
461 debug_log("The device wants to send us more data than "
462 "expected - allowing transfer\n");
463 }
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200464 xferfunc = tp_ops->input_data;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200465 } else
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200466 xferfunc = tp_ops->output_data;
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200467
Borislav Petkov5d655a02009-01-02 16:12:54 +0100468 if ((drive->media == ide_floppy && !pc->buf) ||
469 (drive->media == ide_tape && pc->bh)) {
Bartlomiej Zolnierkiewicz85e39032008-10-13 21:39:32 +0200470 int done = drive->pc_io_buffers(drive, pc, bcount,
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200471 !!(pc->flags & PC_FLAG_WRITING));
472
473 /* FIXME: don't do partial completions */
Borislav Petkov5d655a02009-01-02 16:12:54 +0100474 if (drive->media == ide_floppy)
Bartlomiej Zolnierkiewicz130e8862009-03-27 12:46:45 +0100475 ide_complete_rq(drive, 0,
476 done ? done : ide_rq_bytes(rq));
Bartlomiej Zolnierkiewiczacaa0f52008-10-10 22:39:36 +0200477 } else
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200478 xferfunc(drive, NULL, pc->cur_pos, bcount);
479
480 /* Update the current position */
481 pc->xferred += bcount;
482 pc->cur_pos += bcount;
483
484 debug_log("[cmd %x] transferred %d bytes on that intr.\n",
Borislav Petkov8fccf892008-07-23 19:56:01 +0200485 rq->cmd[0], bcount);
Bartlomiej Zolnierkiewicz844b9462008-10-13 21:39:31 +0200486next_irq:
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200487 /* And set the interrupt handler again */
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100488 ide_set_handler(drive, ide_pc_intr, timeout);
Bartlomiej Zolnierkiewicz646c0cb2008-07-15 21:22:03 +0200489 return ide_started;
490}
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200491
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100492static void ide_init_packet_cmd(struct ide_cmd *cmd, u32 tf_flags,
493 u16 bcount, u8 dma)
Bartlomiej Zolnierkiewicz7a254df2009-03-24 23:22:39 +0100494{
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100495 cmd->protocol = dma ? ATAPI_PROT_DMA : ATAPI_PROT_PIO;
496 cmd->tf_flags |= IDE_TFLAG_OUT_LBAH | IDE_TFLAG_OUT_LBAM |
497 IDE_TFLAG_OUT_FEATURE | tf_flags;
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100498 cmd->tf.command = ATA_CMD_PACKET;
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100499 cmd->tf.feature = dma; /* Use PIO/DMA */
500 cmd->tf.lbam = bcount & 0xff;
501 cmd->tf.lbah = (bcount >> 8) & 0xff;
Bartlomiej Zolnierkiewicz7a254df2009-03-24 23:22:39 +0100502}
503
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200504static u8 ide_read_ireason(ide_drive_t *drive)
505{
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100506 struct ide_cmd cmd;
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200507
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100508 memset(&cmd, 0, sizeof(cmd));
509 cmd.tf_flags = IDE_TFLAG_IN_NSECT;
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200510
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100511 drive->hwif->tp_ops->tf_read(drive, &cmd);
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200512
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +0100513 return cmd.tf.nsect & 3;
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200514}
515
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200516static u8 ide_wait_ireason(ide_drive_t *drive, u8 ireason)
517{
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200518 int retries = 100;
519
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200520 while (retries-- && ((ireason & ATAPI_COD) == 0 ||
521 (ireason & ATAPI_IO))) {
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200522 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
523 "a packet command, retrying\n", drive->name);
524 udelay(100);
Bartlomiej Zolnierkiewicz88a72102008-07-23 19:55:54 +0200525 ireason = ide_read_ireason(drive);
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200526 if (retries == 0) {
527 printk(KERN_ERR "%s: (IO,CoD != (0,1) while issuing "
528 "a packet command, ignoring\n",
529 drive->name);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200530 ireason |= ATAPI_COD;
531 ireason &= ~ATAPI_IO;
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200532 }
533 }
534
535 return ireason;
536}
537
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200538static int ide_delayed_transfer_pc(ide_drive_t *drive)
539{
540 /* Send the actual packet */
541 drive->hwif->tp_ops->output_data(drive, NULL, drive->pc->c, 12);
542
543 /* Timeout for the packet command */
544 return WAIT_FLOPPY_CMD;
545}
546
547static ide_startstop_t ide_transfer_pc(ide_drive_t *drive)
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200548{
Borislav Petkovb16aabc2009-01-02 16:12:56 +0100549 struct ide_atapi_pc *uninitialized_var(pc);
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200550 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100551 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200552 ide_expiry_t *expiry;
553 unsigned int timeout;
Borislav Petkov8c662852009-01-02 16:12:54 +0100554 int cmd_len;
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200555 ide_startstop_t startstop;
556 u8 ireason;
557
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200558 if (ide_wait_stat(&startstop, drive, ATA_DRQ, ATA_BUSY, WAIT_READY)) {
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200559 printk(KERN_ERR "%s: Strange, packet command initiated yet "
560 "DRQ isn't asserted\n", drive->name);
561 return startstop;
562 }
563
Borislav Petkov5f258432009-01-02 16:12:53 +0100564 if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) {
565 if (drive->dma)
566 drive->waiting_for_dma = 1;
567 }
568
Borislav Petkov8c662852009-01-02 16:12:54 +0100569 if (dev_is_idecd(drive)) {
570 /* ATAPI commands get padded out to 12 bytes minimum */
571 cmd_len = COMMAND_SIZE(rq->cmd[0]);
572 if (cmd_len < ATAPI_MIN_CDB_BYTES)
573 cmd_len = ATAPI_MIN_CDB_BYTES;
Borislav Petkovdef860d2009-01-02 16:12:55 +0100574
575 timeout = rq->timeout;
576 expiry = ide_cd_expiry;
577 } else {
Borislav Petkovb16aabc2009-01-02 16:12:56 +0100578 pc = drive->pc;
579
Borislav Petkov8c662852009-01-02 16:12:54 +0100580 cmd_len = ATAPI_MIN_CDB_BYTES;
581
Borislav Petkovdef860d2009-01-02 16:12:55 +0100582 /*
583 * If necessary schedule the packet transfer to occur 'timeout'
584 * miliseconds later in ide_delayed_transfer_pc() after the
585 * device says it's ready for a packet.
586 */
587 if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) {
588 timeout = drive->pc_delay;
589 expiry = &ide_delayed_transfer_pc;
590 } else {
591 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
592 : WAIT_TAPE_CMD;
593 expiry = NULL;
594 }
Borislav Petkov06cc2772009-01-02 16:12:56 +0100595
596 ireason = ide_read_ireason(drive);
597 if (drive->media == ide_tape)
598 ireason = ide_wait_ireason(drive, ireason);
599
600 if ((ireason & ATAPI_COD) == 0 || (ireason & ATAPI_IO)) {
601 printk(KERN_ERR "%s: (IO,CoD) != (0,1) while issuing "
602 "a packet command\n", drive->name);
603
604 return ide_do_reset(drive);
605 }
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +0200606 }
607
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100608 hwif->expiry = expiry;
609
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200610 /* Set the interrupt routine */
Borislav Petkovd6251d42009-01-06 17:20:58 +0100611 ide_set_handler(drive,
612 (dev_is_idecd(drive) ? drive->irq_handler
613 : ide_pc_intr),
Bartlomiej Zolnierkiewicz60c0cd02009-03-27 12:46:46 +0100614 timeout);
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200615
Borislav Petkov2eba0822009-03-31 20:14:58 +0200616 /* Send the actual packet */
617 if ((drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) == 0)
618 hwif->tp_ops->output_data(drive, NULL, rq->cmd, cmd_len);
619
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200620 /* Begin DMA, if necessary */
Borislav Petkovb16aabc2009-01-02 16:12:56 +0100621 if (dev_is_idecd(drive)) {
622 if (drive->dma)
623 hwif->dma_ops->dma_start(drive);
624 } else {
625 if (pc->flags & PC_FLAG_DMA_OK) {
626 pc->flags |= PC_FLAG_DMA_IN_PROGRESS;
627 hwif->dma_ops->dma_start(drive);
628 }
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200629 }
630
Bartlomiej Zolnierkiewicz594c16d2008-07-15 21:21:58 +0200631 return ide_started;
632}
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200633
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100634ide_startstop_t ide_issue_pc(ide_drive_t *drive, struct ide_cmd *cmd)
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200635{
Borislav Petkovd77612a2009-01-02 16:12:55 +0100636 struct ide_atapi_pc *pc;
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200637 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100638 const struct ide_dma_ops *dma_ops = hwif->dma_ops;
Borislav Petkov4cad0852009-01-02 16:12:53 +0100639 ide_expiry_t *expiry = NULL;
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100640 struct request *rq = hwif->rq;
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100641 unsigned int timeout;
Borislav Petkovf9476b92008-10-13 21:39:50 +0200642 u32 tf_flags;
Borislav Petkov392de1d2009-01-02 16:12:52 +0100643 u16 bcount;
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100644 u8 drq_int = !!(drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT);
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200645
Borislav Petkoved485542009-01-02 16:12:52 +0100646 if (dev_is_idecd(drive)) {
647 tf_flags = IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL;
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100648 bcount = ide_cd_get_xferlen(rq);
Borislav Petkov4cad0852009-01-02 16:12:53 +0100649 expiry = ide_cd_expiry;
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100650 timeout = ATAPI_WAIT_PC;
Borislav Petkovd77612a2009-01-02 16:12:55 +0100651
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100652 if (drive->dma) {
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100653 if (ide_build_sglist(drive, cmd))
654 drive->dma = !dma_ops->dma_setup(drive, cmd);
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100655 else
656 drive->dma = 0;
657 }
Borislav Petkoved485542009-01-02 16:12:52 +0100658 } else {
Borislav Petkovd77612a2009-01-02 16:12:55 +0100659 pc = drive->pc;
660
661 /* We haven't transferred any data yet */
662 pc->xferred = 0;
663 pc->cur_pos = pc->buf;
664
Borislav Petkoved485542009-01-02 16:12:52 +0100665 tf_flags = IDE_TFLAG_OUT_DEVICE;
666 bcount = ((drive->media == ide_tape) ?
667 pc->req_xfer :
668 min(pc->req_xfer, 63 * 1024));
Borislav Petkovd77612a2009-01-02 16:12:55 +0100669
670 if (pc->flags & PC_FLAG_DMA_ERROR) {
671 pc->flags &= ~PC_FLAG_DMA_ERROR;
672 ide_dma_off(drive);
673 }
674
675 if ((pc->flags & PC_FLAG_DMA_OK) &&
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100676 (drive->dev_flags & IDE_DFLAG_USING_DMA)) {
Bartlomiej Zolnierkiewicz229816942009-03-27 12:46:46 +0100677 if (ide_build_sglist(drive, cmd))
678 drive->dma = !dma_ops->dma_setup(drive, cmd);
Bartlomiej Zolnierkiewicze6830a82009-03-27 12:46:37 +0100679 else
680 drive->dma = 0;
681 }
Borislav Petkovd77612a2009-01-02 16:12:55 +0100682
683 if (!drive->dma)
684 pc->flags &= ~PC_FLAG_DMA_OK;
Borislav Petkov28ad91d2009-01-02 16:12:56 +0100685
686 timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD
687 : WAIT_TAPE_CMD;
Borislav Petkoved485542009-01-02 16:12:52 +0100688 }
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200689
Bartlomiej Zolnierkiewiczb788ee92009-03-27 12:46:46 +0100690 ide_init_packet_cmd(cmd, tf_flags, bcount, drive->dma);
691
692 (void)do_rw_taskfile(drive, cmd);
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200693
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100694 if (drq_int) {
Borislav Petkov5f258432009-01-02 16:12:53 +0100695 if (drive->dma)
696 drive->waiting_for_dma = 0;
Bartlomiej Zolnierkiewicz22117d62009-03-27 12:46:47 +0100697 hwif->expiry = expiry;
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200698 }
Bartlomiej Zolnierkiewicz35b5d0b2009-03-27 12:46:47 +0100699
700 ide_execute_command(drive, cmd, ide_transfer_pc, timeout);
701
702 return drq_int ? ide_started : ide_transfer_pc(drive);
Bartlomiej Zolnierkiewicz6bf16412008-07-15 21:22:00 +0200703}
704EXPORT_SYMBOL_GPL(ide_issue_pc);