ide: remove SELECT_INTERRUPT()
[linux-2.6-block.git] / drivers / ide / ide-io.c
CommitLineData
1da177e4
LT
1/*
2 * IDE I/O functions
3 *
4 * Basic PIO and command management functionality.
5 *
6 * This code was split off from ide.c. See ide.c for history and original
7 * copyrights.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2, or (at your option) any
12 * later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * For the avoidance of doubt the "preferred form" of this code is one which
20 * is in an open non patent encumbered format. Where cryptographic key signing
21 * forms part of the process of creating an executable the information
22 * including keys needed to generate an equivalently functional executable
23 * are deemed to be part of the source code.
24 */
25
26
1da177e4
LT
27#include <linux/module.h>
28#include <linux/types.h>
29#include <linux/string.h>
30#include <linux/kernel.h>
31#include <linux/timer.h>
32#include <linux/mm.h>
33#include <linux/interrupt.h>
34#include <linux/major.h>
35#include <linux/errno.h>
36#include <linux/genhd.h>
37#include <linux/blkpg.h>
38#include <linux/slab.h>
39#include <linux/init.h>
40#include <linux/pci.h>
41#include <linux/delay.h>
42#include <linux/ide.h>
43#include <linux/completion.h>
44#include <linux/reboot.h>
45#include <linux/cdrom.h>
46#include <linux/seq_file.h>
47#include <linux/device.h>
48#include <linux/kmod.h>
49#include <linux/scatterlist.h>
1977f032 50#include <linux/bitops.h>
1da177e4
LT
51
52#include <asm/byteorder.h>
53#include <asm/irq.h>
54#include <asm/uaccess.h>
55#include <asm/io.h>
1da177e4 56
a7ff7d41 57static int __ide_end_request(ide_drive_t *drive, struct request *rq,
bbc615b1 58 int uptodate, unsigned int nr_bytes, int dequeue)
1da177e4
LT
59{
60 int ret = 1;
61
1da177e4
LT
62 /*
63 * if failfast is set on a request, override number of sectors and
64 * complete the whole request right now
65 */
66 if (blk_noretry_request(rq) && end_io_error(uptodate))
41e9d344 67 nr_bytes = rq->hard_nr_sectors << 9;
1da177e4
LT
68
69 if (!blk_fs_request(rq) && end_io_error(uptodate) && !rq->errors)
70 rq->errors = -EIO;
71
72 /*
73 * decide whether to reenable DMA -- 3 is a random magic for now,
74 * if we DMA timeout more than 3 times, just stay in PIO
75 */
76 if (drive->state == DMA_PIO_RETRY && drive->retry_pio <= 3) {
77 drive->state = 0;
78 HWGROUP(drive)->hwif->ide_dma_on(drive);
79 }
80
41e9d344 81 if (!end_that_request_chunk(rq, uptodate, nr_bytes)) {
ba027def 82 add_disk_randomness(rq->rq_disk);
bbc615b1
BZ
83 if (dequeue) {
84 if (!list_empty(&rq->queuelist))
85 blkdev_dequeue_request(rq);
86 HWGROUP(drive)->rq = NULL;
87 }
ba027def 88 end_that_request_last(rq, uptodate);
1da177e4
LT
89 ret = 0;
90 }
8672d571 91
1da177e4
LT
92 return ret;
93}
1da177e4
LT
94
95/**
96 * ide_end_request - complete an IDE I/O
97 * @drive: IDE device for the I/O
98 * @uptodate:
99 * @nr_sectors: number of sectors completed
100 *
101 * This is our end_request wrapper function. We complete the I/O
102 * update random number input and dequeue the request, which if
103 * it was tagged may be out of order.
104 */
105
106int ide_end_request (ide_drive_t *drive, int uptodate, int nr_sectors)
107{
41e9d344 108 unsigned int nr_bytes = nr_sectors << 9;
1da177e4
LT
109 struct request *rq;
110 unsigned long flags;
111 int ret = 1;
112
8672d571
JA
113 /*
114 * room for locking improvements here, the calls below don't
115 * need the queue lock held at all
116 */
1da177e4
LT
117 spin_lock_irqsave(&ide_lock, flags);
118 rq = HWGROUP(drive)->rq;
119
41e9d344
JA
120 if (!nr_bytes) {
121 if (blk_pc_request(rq))
122 nr_bytes = rq->data_len;
123 else
124 nr_bytes = rq->hard_cur_sectors << 9;
125 }
1da177e4 126
bbc615b1 127 ret = __ide_end_request(drive, rq, uptodate, nr_bytes, 1);
1da177e4
LT
128
129 spin_unlock_irqrestore(&ide_lock, flags);
130 return ret;
131}
132EXPORT_SYMBOL(ide_end_request);
133
134/*
135 * Power Management state machine. This one is rather trivial for now,
136 * we should probably add more, like switching back to PIO on suspend
137 * to help some BIOSes, re-do the door locking on resume, etc...
138 */
139
140enum {
141 ide_pm_flush_cache = ide_pm_state_start_suspend,
142 idedisk_pm_standby,
143
8c2c0118
JL
144 idedisk_pm_restore_pio = ide_pm_state_start_resume,
145 idedisk_pm_idle,
1da177e4
LT
146 ide_pm_restore_dma,
147};
148
149static void ide_complete_power_step(ide_drive_t *drive, struct request *rq, u8 stat, u8 error)
150{
c00895ab 151 struct request_pm_state *pm = rq->data;
ad3cadda 152
1da177e4
LT
153 if (drive->media != ide_disk)
154 return;
155
ad3cadda 156 switch (pm->pm_step) {
1da177e4 157 case ide_pm_flush_cache: /* Suspend step 1 (flush cache) complete */
ad3cadda
JA
158 if (pm->pm_state == PM_EVENT_FREEZE)
159 pm->pm_step = ide_pm_state_completed;
1da177e4 160 else
ad3cadda 161 pm->pm_step = idedisk_pm_standby;
1da177e4
LT
162 break;
163 case idedisk_pm_standby: /* Suspend step 2 (standby) complete */
ad3cadda 164 pm->pm_step = ide_pm_state_completed;
1da177e4 165 break;
8c2c0118
JL
166 case idedisk_pm_restore_pio: /* Resume step 1 complete */
167 pm->pm_step = idedisk_pm_idle;
168 break;
169 case idedisk_pm_idle: /* Resume step 2 (idle) complete */
ad3cadda 170 pm->pm_step = ide_pm_restore_dma;
1da177e4
LT
171 break;
172 }
173}
174
175static ide_startstop_t ide_start_power_step(ide_drive_t *drive, struct request *rq)
176{
c00895ab 177 struct request_pm_state *pm = rq->data;
1da177e4
LT
178 ide_task_t *args = rq->special;
179
180 memset(args, 0, sizeof(*args));
181
ad3cadda 182 switch (pm->pm_step) {
1da177e4
LT
183 case ide_pm_flush_cache: /* Suspend step 1 (flush cache) */
184 if (drive->media != ide_disk)
185 break;
186 /* Not supported? Switch to next step now. */
187 if (!drive->wcache || !ide_id_has_flush_cache(drive->id)) {
188 ide_complete_power_step(drive, rq, 0, 0);
189 return ide_stopped;
190 }
191 if (ide_id_has_flush_cache_ext(drive->id))
650d841d 192 args->tf.command = WIN_FLUSH_CACHE_EXT;
1da177e4 193 else
650d841d 194 args->tf.command = WIN_FLUSH_CACHE;
74095a91 195 goto out_do_tf;
1da177e4
LT
196
197 case idedisk_pm_standby: /* Suspend step 2 (standby) */
650d841d 198 args->tf.command = WIN_STANDBYNOW1;
74095a91 199 goto out_do_tf;
1da177e4 200
8c2c0118 201 case idedisk_pm_restore_pio: /* Resume step 1 (restore PIO) */
26bcb879 202 ide_set_max_pio(drive);
317a46a2
BZ
203 /*
204 * skip idedisk_pm_idle for ATAPI devices
205 */
206 if (drive->media != ide_disk)
207 pm->pm_step = ide_pm_restore_dma;
208 else
209 ide_complete_power_step(drive, rq, 0, 0);
8c2c0118
JL
210 return ide_stopped;
211
212 case idedisk_pm_idle: /* Resume step 2 (idle) */
650d841d 213 args->tf.command = WIN_IDLEIMMEDIATE;
74095a91 214 goto out_do_tf;
1da177e4 215
8c2c0118 216 case ide_pm_restore_dma: /* Resume step 3 (restore DMA) */
1da177e4 217 /*
0ae2e178 218 * Right now, all we do is call ide_set_dma(drive),
1da177e4
LT
219 * we could be smarter and check for current xfer_speed
220 * in struct drive etc...
221 */
0ae2e178 222 if (drive->hwif->ide_dma_on == NULL)
1da177e4 223 break;
793a9722 224 drive->hwif->dma_off_quietly(drive);
8987d21b
BZ
225 /*
226 * TODO: respect ->using_dma setting
227 */
3608b5d7 228 ide_set_dma(drive);
1da177e4
LT
229 break;
230 }
ad3cadda 231 pm->pm_step = ide_pm_state_completed;
1da177e4 232 return ide_stopped;
74095a91
BZ
233
234out_do_tf:
807e35d6 235 args->tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
74095a91
BZ
236 args->command_type = IDE_DRIVE_TASK_NO_DATA;
237 args->handler = task_no_data_intr;
238 return do_rw_taskfile(drive, args);
1da177e4
LT
239}
240
dbe217af
AC
241/**
242 * ide_end_dequeued_request - complete an IDE I/O
243 * @drive: IDE device for the I/O
244 * @uptodate:
245 * @nr_sectors: number of sectors completed
246 *
247 * Complete an I/O that is no longer on the request queue. This
248 * typically occurs when we pull the request and issue a REQUEST_SENSE.
249 * We must still finish the old request but we must not tamper with the
250 * queue in the meantime.
251 *
252 * NOTE: This path does not handle barrier, but barrier is not supported
253 * on ide-cd anyway.
254 */
255
256int ide_end_dequeued_request(ide_drive_t *drive, struct request *rq,
257 int uptodate, int nr_sectors)
258{
259 unsigned long flags;
bbc615b1 260 int ret;
dbe217af
AC
261
262 spin_lock_irqsave(&ide_lock, flags);
4aff5e23 263 BUG_ON(!blk_rq_started(rq));
bbc615b1 264 ret = __ide_end_request(drive, rq, uptodate, nr_sectors << 9, 0);
dbe217af 265 spin_unlock_irqrestore(&ide_lock, flags);
bbc615b1 266
dbe217af
AC
267 return ret;
268}
269EXPORT_SYMBOL_GPL(ide_end_dequeued_request);
270
271
1da177e4
LT
272/**
273 * ide_complete_pm_request - end the current Power Management request
274 * @drive: target drive
275 * @rq: request
276 *
277 * This function cleans up the current PM request and stops the queue
278 * if necessary.
279 */
280static void ide_complete_pm_request (ide_drive_t *drive, struct request *rq)
281{
282 unsigned long flags;
283
284#ifdef DEBUG_PM
285 printk("%s: completing PM request, %s\n", drive->name,
286 blk_pm_suspend_request(rq) ? "suspend" : "resume");
287#endif
288 spin_lock_irqsave(&ide_lock, flags);
289 if (blk_pm_suspend_request(rq)) {
290 blk_stop_queue(drive->queue);
291 } else {
292 drive->blocked = 0;
293 blk_start_queue(drive->queue);
294 }
295 blkdev_dequeue_request(rq);
296 HWGROUP(drive)->rq = NULL;
8ffdc655 297 end_that_request_last(rq, 1);
1da177e4
LT
298 spin_unlock_irqrestore(&ide_lock, flags);
299}
300
1da177e4
LT
301/**
302 * ide_end_drive_cmd - end an explicit drive command
303 * @drive: command
304 * @stat: status bits
305 * @err: error bits
306 *
307 * Clean up after success/failure of an explicit drive command.
308 * These get thrown onto the queue so they are synchronized with
309 * real I/O operations on the drive.
310 *
311 * In LBA48 mode we have to read the register set twice to get
312 * all the extra information out.
313 */
314
315void ide_end_drive_cmd (ide_drive_t *drive, u8 stat, u8 err)
316{
317 ide_hwif_t *hwif = HWIF(drive);
318 unsigned long flags;
319 struct request *rq;
320
321 spin_lock_irqsave(&ide_lock, flags);
322 rq = HWGROUP(drive)->rq;
323 spin_unlock_irqrestore(&ide_lock, flags);
324
4aff5e23 325 if (rq->cmd_type == REQ_TYPE_ATA_CMD) {
1da177e4
LT
326 u8 *args = (u8 *) rq->buffer;
327 if (rq->errors == 0)
328 rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
329
330 if (args) {
331 args[0] = stat;
332 args[1] = err;
333 args[2] = hwif->INB(IDE_NSECTOR_REG);
334 }
4aff5e23 335 } else if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
1da177e4
LT
336 ide_task_t *args = (ide_task_t *) rq->special;
337 if (rq->errors == 0)
338 rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
339
340 if (args) {
650d841d
BZ
341 struct ide_taskfile *tf = &args->tf;
342
1da177e4 343 if (args->tf_in_flags.b.data) {
650d841d
BZ
344 u16 data = hwif->INW(IDE_DATA_REG);
345
346 tf->data = data & 0xff;
347 tf->hob_data = (data >> 8) & 0xff;
1da177e4 348 }
650d841d 349 tf->error = err;
1da177e4
LT
350 /* be sure we're looking at the low order bits */
351 hwif->OUTB(drive->ctl & ~0x80, IDE_CONTROL_REG);
650d841d
BZ
352 tf->nsect = hwif->INB(IDE_NSECTOR_REG);
353 tf->lbal = hwif->INB(IDE_SECTOR_REG);
354 tf->lbam = hwif->INB(IDE_LCYL_REG);
355 tf->lbah = hwif->INB(IDE_HCYL_REG);
356 tf->device = hwif->INB(IDE_SELECT_REG);
357 tf->status = stat;
1da177e4 358
868e672a 359 if (args->tf_flags & IDE_TFLAG_LBA48) {
1da177e4 360 hwif->OUTB(drive->ctl|0x80, IDE_CONTROL_REG);
650d841d
BZ
361 tf->hob_feature = hwif->INB(IDE_FEATURE_REG);
362 tf->hob_nsect = hwif->INB(IDE_NSECTOR_REG);
363 tf->hob_lbal = hwif->INB(IDE_SECTOR_REG);
364 tf->hob_lbam = hwif->INB(IDE_LCYL_REG);
365 tf->hob_lbah = hwif->INB(IDE_HCYL_REG);
1da177e4
LT
366 }
367 }
368 } else if (blk_pm_request(rq)) {
c00895ab 369 struct request_pm_state *pm = rq->data;
1da177e4
LT
370#ifdef DEBUG_PM
371 printk("%s: complete_power_step(step: %d, stat: %x, err: %x)\n",
372 drive->name, rq->pm->pm_step, stat, err);
373#endif
374 ide_complete_power_step(drive, rq, stat, err);
ad3cadda 375 if (pm->pm_step == ide_pm_state_completed)
1da177e4
LT
376 ide_complete_pm_request(drive, rq);
377 return;
378 }
379
380 spin_lock_irqsave(&ide_lock, flags);
381 blkdev_dequeue_request(rq);
382 HWGROUP(drive)->rq = NULL;
383 rq->errors = err;
8ffdc655 384 end_that_request_last(rq, !rq->errors);
1da177e4
LT
385 spin_unlock_irqrestore(&ide_lock, flags);
386}
387
388EXPORT_SYMBOL(ide_end_drive_cmd);
389
390/**
391 * try_to_flush_leftover_data - flush junk
392 * @drive: drive to flush
393 *
394 * try_to_flush_leftover_data() is invoked in response to a drive
395 * unexpectedly having its DRQ_STAT bit set. As an alternative to
396 * resetting the drive, this routine tries to clear the condition
397 * by read a sector's worth of data from the drive. Of course,
398 * this may not help if the drive is *waiting* for data from *us*.
399 */
400static void try_to_flush_leftover_data (ide_drive_t *drive)
401{
402 int i = (drive->mult_count ? drive->mult_count : 1) * SECTOR_WORDS;
403
404 if (drive->media != ide_disk)
405 return;
406 while (i > 0) {
407 u32 buffer[16];
408 u32 wcount = (i > 16) ? 16 : i;
409
410 i -= wcount;
411 HWIF(drive)->ata_input_data(drive, buffer, wcount);
412 }
413}
414
415static void ide_kill_rq(ide_drive_t *drive, struct request *rq)
416{
417 if (rq->rq_disk) {
418 ide_driver_t *drv;
419
420 drv = *(ide_driver_t **)rq->rq_disk->private_data;
421 drv->end_request(drive, 0, 0);
422 } else
423 ide_end_request(drive, 0, 0);
424}
425
426static ide_startstop_t ide_ata_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
427{
428 ide_hwif_t *hwif = drive->hwif;
429
430 if (stat & BUSY_STAT || ((stat & WRERR_STAT) && !drive->nowerr)) {
431 /* other bits are useless when BUSY */
432 rq->errors |= ERROR_RESET;
433 } else if (stat & ERR_STAT) {
434 /* err has different meaning on cdrom and tape */
435 if (err == ABRT_ERR) {
436 if (drive->select.b.lba &&
437 /* some newer drives don't support WIN_SPECIFY */
438 hwif->INB(IDE_COMMAND_REG) == WIN_SPECIFY)
439 return ide_stopped;
440 } else if ((err & BAD_CRC) == BAD_CRC) {
441 /* UDMA crc error, just retry the operation */
442 drive->crc_count++;
443 } else if (err & (BBD_ERR | ECC_ERR)) {
444 /* retries won't help these */
445 rq->errors = ERROR_MAX;
446 } else if (err & TRK0_ERR) {
447 /* help it find track zero */
448 rq->errors |= ERROR_RECAL;
449 }
450 }
451
ed67b923
BZ
452 if ((stat & DRQ_STAT) && rq_data_dir(rq) == READ &&
453 (hwif->host_flags & IDE_HFLAG_ERROR_STOPS_FIFO) == 0)
1da177e4
LT
454 try_to_flush_leftover_data(drive);
455
513daadd
SS
456 if (rq->errors >= ERROR_MAX || blk_noretry_request(rq)) {
457 ide_kill_rq(drive, rq);
458 return ide_stopped;
459 }
460
1da177e4 461 if (hwif->INB(IDE_STATUS_REG) & (BUSY_STAT|DRQ_STAT))
513daadd 462 rq->errors |= ERROR_RESET;
1da177e4 463
513daadd 464 if ((rq->errors & ERROR_RESET) == ERROR_RESET) {
1da177e4 465 ++rq->errors;
513daadd 466 return ide_do_reset(drive);
1da177e4 467 }
513daadd
SS
468
469 if ((rq->errors & ERROR_RECAL) == ERROR_RECAL)
470 drive->special.b.recalibrate = 1;
471
472 ++rq->errors;
473
1da177e4
LT
474 return ide_stopped;
475}
476
477static ide_startstop_t ide_atapi_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
478{
479 ide_hwif_t *hwif = drive->hwif;
480
481 if (stat & BUSY_STAT || ((stat & WRERR_STAT) && !drive->nowerr)) {
482 /* other bits are useless when BUSY */
483 rq->errors |= ERROR_RESET;
484 } else {
485 /* add decoding error stuff */
486 }
487
488 if (hwif->INB(IDE_STATUS_REG) & (BUSY_STAT|DRQ_STAT))
489 /* force an abort */
490 hwif->OUTB(WIN_IDLEIMMEDIATE, IDE_COMMAND_REG);
491
492 if (rq->errors >= ERROR_MAX) {
493 ide_kill_rq(drive, rq);
494 } else {
495 if ((rq->errors & ERROR_RESET) == ERROR_RESET) {
496 ++rq->errors;
497 return ide_do_reset(drive);
498 }
499 ++rq->errors;
500 }
501
502 return ide_stopped;
503}
504
505ide_startstop_t
506__ide_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
507{
508 if (drive->media == ide_disk)
509 return ide_ata_error(drive, rq, stat, err);
510 return ide_atapi_error(drive, rq, stat, err);
511}
512
513EXPORT_SYMBOL_GPL(__ide_error);
514
515/**
516 * ide_error - handle an error on the IDE
517 * @drive: drive the error occurred on
518 * @msg: message to report
519 * @stat: status bits
520 *
521 * ide_error() takes action based on the error returned by the drive.
522 * For normal I/O that may well include retries. We deal with
523 * both new-style (taskfile) and old style command handling here.
524 * In the case of taskfile command handling there is work left to
525 * do
526 */
527
528ide_startstop_t ide_error (ide_drive_t *drive, const char *msg, u8 stat)
529{
530 struct request *rq;
531 u8 err;
532
533 err = ide_dump_status(drive, msg, stat);
534
535 if ((rq = HWGROUP(drive)->rq) == NULL)
536 return ide_stopped;
537
538 /* retry only "normal" I/O: */
4aff5e23 539 if (!blk_fs_request(rq)) {
1da177e4
LT
540 rq->errors = 1;
541 ide_end_drive_cmd(drive, stat, err);
542 return ide_stopped;
543 }
544
545 if (rq->rq_disk) {
546 ide_driver_t *drv;
547
548 drv = *(ide_driver_t **)rq->rq_disk->private_data;
549 return drv->error(drive, rq, stat, err);
550 } else
551 return __ide_error(drive, rq, stat, err);
552}
553
554EXPORT_SYMBOL_GPL(ide_error);
555
556ide_startstop_t __ide_abort(ide_drive_t *drive, struct request *rq)
557{
558 if (drive->media != ide_disk)
559 rq->errors |= ERROR_RESET;
560
561 ide_kill_rq(drive, rq);
562
563 return ide_stopped;
564}
565
566EXPORT_SYMBOL_GPL(__ide_abort);
567
568/**
338cec32 569 * ide_abort - abort pending IDE operations
1da177e4
LT
570 * @drive: drive the error occurred on
571 * @msg: message to report
572 *
573 * ide_abort kills and cleans up when we are about to do a
574 * host initiated reset on active commands. Longer term we
575 * want handlers to have sensible abort handling themselves
576 *
577 * This differs fundamentally from ide_error because in
578 * this case the command is doing just fine when we
579 * blow it away.
580 */
581
582ide_startstop_t ide_abort(ide_drive_t *drive, const char *msg)
583{
584 struct request *rq;
585
586 if (drive == NULL || (rq = HWGROUP(drive)->rq) == NULL)
587 return ide_stopped;
588
589 /* retry only "normal" I/O: */
4aff5e23 590 if (!blk_fs_request(rq)) {
1da177e4
LT
591 rq->errors = 1;
592 ide_end_drive_cmd(drive, BUSY_STAT, 0);
593 return ide_stopped;
594 }
595
596 if (rq->rq_disk) {
597 ide_driver_t *drv;
598
599 drv = *(ide_driver_t **)rq->rq_disk->private_data;
600 return drv->abort(drive, rq);
601 } else
602 return __ide_abort(drive, rq);
603}
604
1da177e4
LT
605/**
606 * drive_cmd_intr - drive command completion interrupt
607 * @drive: drive the completion interrupt occurred on
608 *
609 * drive_cmd_intr() is invoked on completion of a special DRIVE_CMD.
338cec32 610 * We do any necessary data reading and then wait for the drive to
1da177e4
LT
611 * go non busy. At that point we may read the error data and complete
612 * the request
613 */
614
615static ide_startstop_t drive_cmd_intr (ide_drive_t *drive)
616{
617 struct request *rq = HWGROUP(drive)->rq;
618 ide_hwif_t *hwif = HWIF(drive);
619 u8 *args = (u8 *) rq->buffer;
620 u8 stat = hwif->INB(IDE_STATUS_REG);
621 int retries = 10;
622
366c7f55 623 local_irq_enable_in_hardirq();
320112bd
BZ
624 if (rq->cmd_type == REQ_TYPE_ATA_CMD &&
625 (stat & DRQ_STAT) && args && args[3]) {
1da177e4
LT
626 u8 io_32bit = drive->io_32bit;
627 drive->io_32bit = 0;
628 hwif->ata_input_data(drive, &args[4], args[3] * SECTOR_WORDS);
629 drive->io_32bit = io_32bit;
630 while (((stat = hwif->INB(IDE_STATUS_REG)) & BUSY_STAT) && retries--)
631 udelay(100);
632 }
633
634 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
635 return ide_error(drive, "drive_cmd", stat);
636 /* calls ide_end_drive_cmd */
637 ide_end_drive_cmd(drive, stat, hwif->INB(IDE_ERROR_REG));
638 return ide_stopped;
639}
640
641static void ide_init_specify_cmd(ide_drive_t *drive, ide_task_t *task)
642{
650d841d
BZ
643 task->tf.nsect = drive->sect;
644 task->tf.lbal = drive->sect;
645 task->tf.lbam = drive->cyl;
646 task->tf.lbah = drive->cyl >> 8;
647 task->tf.device = ((drive->head - 1) | drive->select.all) & ~ATA_LBA;
648 task->tf.command = WIN_SPECIFY;
1da177e4
LT
649
650 task->handler = &set_geometry_intr;
651}
652
653static void ide_init_restore_cmd(ide_drive_t *drive, ide_task_t *task)
654{
650d841d
BZ
655 task->tf.nsect = drive->sect;
656 task->tf.command = WIN_RESTORE;
1da177e4
LT
657
658 task->handler = &recal_intr;
659}
660
661static void ide_init_setmult_cmd(ide_drive_t *drive, ide_task_t *task)
662{
650d841d
BZ
663 task->tf.nsect = drive->mult_req;
664 task->tf.command = WIN_SETMULT;
1da177e4
LT
665
666 task->handler = &set_multmode_intr;
667}
668
669static ide_startstop_t ide_disk_special(ide_drive_t *drive)
670{
671 special_t *s = &drive->special;
672 ide_task_t args;
673
674 memset(&args, 0, sizeof(ide_task_t));
675 args.command_type = IDE_DRIVE_TASK_NO_DATA;
676
677 if (s->b.set_geometry) {
678 s->b.set_geometry = 0;
679 ide_init_specify_cmd(drive, &args);
680 } else if (s->b.recalibrate) {
681 s->b.recalibrate = 0;
682 ide_init_restore_cmd(drive, &args);
683 } else if (s->b.set_multmode) {
684 s->b.set_multmode = 0;
685 if (drive->mult_req > drive->id->max_multsect)
686 drive->mult_req = drive->id->max_multsect;
687 ide_init_setmult_cmd(drive, &args);
688 } else if (s->all) {
689 int special = s->all;
690 s->all = 0;
691 printk(KERN_ERR "%s: bad special flag: 0x%02x\n", drive->name, special);
692 return ide_stopped;
693 }
694
807e35d6 695 args.tf_flags = IDE_TFLAG_OUT_TF | IDE_TFLAG_OUT_DEVICE;
74095a91 696
1da177e4
LT
697 do_rw_taskfile(drive, &args);
698
699 return ide_started;
700}
701
26bcb879
BZ
702/*
703 * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away
704 */
705static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio)
706{
707 switch (req_pio) {
708 case 202:
709 case 201:
710 case 200:
711 case 102:
712 case 101:
713 case 100:
714 return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0;
715 case 9:
716 case 8:
717 return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0;
718 case 7:
719 case 6:
720 return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0;
721 default:
722 return 0;
723 }
724}
725
1da177e4
LT
726/**
727 * do_special - issue some special commands
728 * @drive: drive the command is for
729 *
730 * do_special() is used to issue WIN_SPECIFY, WIN_RESTORE, and WIN_SETMULT
731 * commands to a drive. It used to do much more, but has been scaled
732 * back.
733 */
734
735static ide_startstop_t do_special (ide_drive_t *drive)
736{
737 special_t *s = &drive->special;
738
739#ifdef DEBUG
740 printk("%s: do_special: 0x%02x\n", drive->name, s->all);
741#endif
742 if (s->b.set_tune) {
26bcb879
BZ
743 ide_hwif_t *hwif = drive->hwif;
744 u8 req_pio = drive->tune_req;
745
1da177e4 746 s->b.set_tune = 0;
26bcb879
BZ
747
748 if (set_pio_mode_abuse(drive->hwif, req_pio)) {
d393aa03
BZ
749
750 if (hwif->set_pio_mode == NULL)
751 return ide_stopped;
752
753 /*
754 * take ide_lock for drive->[no_]unmask/[no_]io_32bit
755 */
756 if (req_pio == 8 || req_pio == 9) {
757 unsigned long flags;
758
759 spin_lock_irqsave(&ide_lock, flags);
760 hwif->set_pio_mode(drive, req_pio);
761 spin_unlock_irqrestore(&ide_lock, flags);
762 } else
26bcb879 763 hwif->set_pio_mode(drive, req_pio);
aedea591
BZ
764 } else {
765 int keep_dma = drive->using_dma;
766
26bcb879
BZ
767 ide_set_pio(drive, req_pio);
768
aedea591
BZ
769 if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) {
770 if (keep_dma)
771 hwif->ide_dma_on(drive);
772 }
773 }
774
1da177e4
LT
775 return ide_stopped;
776 } else {
777 if (drive->media == ide_disk)
778 return ide_disk_special(drive);
779
780 s->all = 0;
781 drive->mult_req = 0;
782 return ide_stopped;
783 }
784}
785
786void ide_map_sg(ide_drive_t *drive, struct request *rq)
787{
788 ide_hwif_t *hwif = drive->hwif;
789 struct scatterlist *sg = hwif->sg_table;
790
791 if (hwif->sg_mapped) /* needed by ide-scsi */
792 return;
793
4aff5e23 794 if (rq->cmd_type != REQ_TYPE_ATA_TASKFILE) {
1da177e4
LT
795 hwif->sg_nents = blk_rq_map_sg(drive->queue, rq, sg);
796 } else {
797 sg_init_one(sg, rq->buffer, rq->nr_sectors * SECTOR_SIZE);
798 hwif->sg_nents = 1;
799 }
800}
801
802EXPORT_SYMBOL_GPL(ide_map_sg);
803
804void ide_init_sg_cmd(ide_drive_t *drive, struct request *rq)
805{
806 ide_hwif_t *hwif = drive->hwif;
807
808 hwif->nsect = hwif->nleft = rq->nr_sectors;
55c16a70
JA
809 hwif->cursg_ofs = 0;
810 hwif->cursg = NULL;
1da177e4
LT
811}
812
813EXPORT_SYMBOL_GPL(ide_init_sg_cmd);
814
815/**
816 * execute_drive_command - issue special drive command
338cec32 817 * @drive: the drive to issue the command on
1da177e4
LT
818 * @rq: the request structure holding the command
819 *
820 * execute_drive_cmd() issues a special drive command, usually
821 * initiated by ioctl() from the external hdparm program. The
822 * command can be a drive command, drive task or taskfile
823 * operation. Weirdly you can call it with NULL to wait for
824 * all commands to finish. Don't do this as that is due to change
825 */
826
827static ide_startstop_t execute_drive_cmd (ide_drive_t *drive,
828 struct request *rq)
829{
830 ide_hwif_t *hwif = HWIF(drive);
21d535c9 831 u8 *args = rq->buffer;
807e35d6
BZ
832 ide_task_t ltask;
833 struct ide_taskfile *tf = &ltask.tf;
21d535c9 834
4aff5e23 835 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
21d535c9 836 ide_task_t *task = rq->special;
1da177e4 837
21d535c9 838 if (task == NULL)
1da177e4
LT
839 goto done;
840
21d535c9 841 hwif->data_phase = task->data_phase;
1da177e4
LT
842
843 switch (hwif->data_phase) {
844 case TASKFILE_MULTI_OUT:
845 case TASKFILE_OUT:
846 case TASKFILE_MULTI_IN:
847 case TASKFILE_IN:
848 ide_init_sg_cmd(drive, rq);
849 ide_map_sg(drive, rq);
850 default:
851 break;
852 }
853
21d535c9
BZ
854 if (task->tf_flags & IDE_TFLAG_FLAGGED)
855 return flagged_taskfile(drive, task);
74095a91 856
21d535c9
BZ
857 return do_rw_taskfile(drive, task);
858 }
859
860 if (args == NULL)
861 goto done;
862
807e35d6 863 memset(&ltask, 0, sizeof(ltask));
29ed2a5f 864 if (rq->cmd_type == REQ_TYPE_ATA_CMD) {
1da177e4 865#ifdef DEBUG
807e35d6 866 printk("%s: DRIVE_CMD\n", drive->name);
1da177e4 867#endif
807e35d6
BZ
868 tf->feature = args[2];
869 if (args[0] == WIN_SMART) {
870 tf->nsect = args[3];
871 tf->lbal = args[1];
872 tf->lbam = 0x4f;
873 tf->lbah = 0xc2;
874 ltask.tf_flags = IDE_TFLAG_OUT_TF;
875 } else {
876 tf->nsect = args[1];
877 ltask.tf_flags = IDE_TFLAG_OUT_FEATURE |
878 IDE_TFLAG_OUT_NSECT;
879 }
1da177e4 880 }
807e35d6
BZ
881 tf->command = args[0];
882 ide_tf_load(drive, &ltask);
1f2564b8 883 ide_execute_command(drive, args[0], &drive_cmd_intr, WAIT_WORSTCASE, NULL);
21d535c9
BZ
884 return ide_started;
885
1da177e4
LT
886done:
887 /*
888 * NULL is actually a valid way of waiting for
889 * all current requests to be flushed from the queue.
890 */
891#ifdef DEBUG
892 printk("%s: DRIVE_CMD (null)\n", drive->name);
893#endif
894 ide_end_drive_cmd(drive,
895 hwif->INB(IDE_STATUS_REG),
896 hwif->INB(IDE_ERROR_REG));
897 return ide_stopped;
898}
899
ad3cadda
JA
900static void ide_check_pm_state(ide_drive_t *drive, struct request *rq)
901{
c00895ab 902 struct request_pm_state *pm = rq->data;
ad3cadda
JA
903
904 if (blk_pm_suspend_request(rq) &&
905 pm->pm_step == ide_pm_state_start_suspend)
906 /* Mark drive blocked when starting the suspend sequence. */
907 drive->blocked = 1;
908 else if (blk_pm_resume_request(rq) &&
909 pm->pm_step == ide_pm_state_start_resume) {
910 /*
911 * The first thing we do on wakeup is to wait for BSY bit to
912 * go away (with a looong timeout) as a drive on this hwif may
913 * just be POSTing itself.
914 * We do that before even selecting as the "other" device on
915 * the bus may be broken enough to walk on our toes at this
916 * point.
917 */
918 int rc;
919#ifdef DEBUG_PM
920 printk("%s: Wakeup request inited, waiting for !BSY...\n", drive->name);
921#endif
922 rc = ide_wait_not_busy(HWIF(drive), 35000);
923 if (rc)
924 printk(KERN_WARNING "%s: bus not ready on wakeup\n", drive->name);
925 SELECT_DRIVE(drive);
ad0e74d3
BZ
926 if (IDE_CONTROL_REG)
927 HWIF(drive)->OUTB(drive->ctl, IDE_CONTROL_REG);
178184b6 928 rc = ide_wait_not_busy(HWIF(drive), 100000);
ad3cadda
JA
929 if (rc)
930 printk(KERN_WARNING "%s: drive not ready on wakeup\n", drive->name);
931 }
932}
933
1da177e4
LT
934/**
935 * start_request - start of I/O and command issuing for IDE
936 *
937 * start_request() initiates handling of a new I/O request. It
938 * accepts commands and I/O (read/write) requests. It also does
939 * the final remapping for weird stuff like EZDrive. Once
940 * device mapper can work sector level the EZDrive stuff can go away
941 *
942 * FIXME: this function needs a rename
943 */
944
945static ide_startstop_t start_request (ide_drive_t *drive, struct request *rq)
946{
947 ide_startstop_t startstop;
948 sector_t block;
949
4aff5e23 950 BUG_ON(!blk_rq_started(rq));
1da177e4
LT
951
952#ifdef DEBUG
953 printk("%s: start_request: current=0x%08lx\n",
954 HWIF(drive)->name, (unsigned long) rq);
955#endif
956
957 /* bail early if we've exceeded max_failures */
958 if (drive->max_failures && (drive->failures > drive->max_failures)) {
b5e1a4e2 959 rq->cmd_flags |= REQ_FAILED;
1da177e4
LT
960 goto kill_rq;
961 }
962
963 block = rq->sector;
964 if (blk_fs_request(rq) &&
965 (drive->media == ide_disk || drive->media == ide_floppy)) {
966 block += drive->sect0;
967 }
968 /* Yecch - this will shift the entire interval,
969 possibly killing some innocent following sector */
970 if (block == 0 && drive->remap_0_to_1 == 1)
971 block = 1; /* redirect MBR access to EZ-Drive partn table */
972
ad3cadda
JA
973 if (blk_pm_request(rq))
974 ide_check_pm_state(drive, rq);
1da177e4
LT
975
976 SELECT_DRIVE(drive);
977 if (ide_wait_stat(&startstop, drive, drive->ready_stat, BUSY_STAT|DRQ_STAT, WAIT_READY)) {
978 printk(KERN_ERR "%s: drive not ready for command\n", drive->name);
979 return startstop;
980 }
981 if (!drive->special.all) {
982 ide_driver_t *drv;
983
513daadd
SS
984 /*
985 * We reset the drive so we need to issue a SETFEATURES.
986 * Do it _after_ do_special() restored device parameters.
987 */
988 if (drive->current_speed == 0xff)
989 ide_config_drive_speed(drive, drive->desired_speed);
990
4aff5e23 991 if (rq->cmd_type == REQ_TYPE_ATA_CMD ||
4aff5e23 992 rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
1da177e4
LT
993 return execute_drive_cmd(drive, rq);
994 else if (blk_pm_request(rq)) {
c00895ab 995 struct request_pm_state *pm = rq->data;
1da177e4
LT
996#ifdef DEBUG_PM
997 printk("%s: start_power_step(step: %d)\n",
998 drive->name, rq->pm->pm_step);
999#endif
1000 startstop = ide_start_power_step(drive, rq);
1001 if (startstop == ide_stopped &&
ad3cadda 1002 pm->pm_step == ide_pm_state_completed)
1da177e4
LT
1003 ide_complete_pm_request(drive, rq);
1004 return startstop;
1005 }
1006
1007 drv = *(ide_driver_t **)rq->rq_disk->private_data;
1008 return drv->do_request(drive, rq, block);
1009 }
1010 return do_special(drive);
1011kill_rq:
1012 ide_kill_rq(drive, rq);
1013 return ide_stopped;
1014}
1015
1016/**
1017 * ide_stall_queue - pause an IDE device
1018 * @drive: drive to stall
1019 * @timeout: time to stall for (jiffies)
1020 *
1021 * ide_stall_queue() can be used by a drive to give excess bandwidth back
1022 * to the hwgroup by sleeping for timeout jiffies.
1023 */
1024
1025void ide_stall_queue (ide_drive_t *drive, unsigned long timeout)
1026{
1027 if (timeout > WAIT_WORSTCASE)
1028 timeout = WAIT_WORSTCASE;
1029 drive->sleep = timeout + jiffies;
1030 drive->sleeping = 1;
1031}
1032
1033EXPORT_SYMBOL(ide_stall_queue);
1034
1035#define WAKEUP(drive) ((drive)->service_start + 2 * (drive)->service_time)
1036
1037/**
1038 * choose_drive - select a drive to service
1039 * @hwgroup: hardware group to select on
1040 *
1041 * choose_drive() selects the next drive which will be serviced.
1042 * This is necessary because the IDE layer can't issue commands
1043 * to both drives on the same cable, unlike SCSI.
1044 */
1045
1046static inline ide_drive_t *choose_drive (ide_hwgroup_t *hwgroup)
1047{
1048 ide_drive_t *drive, *best;
1049
1050repeat:
1051 best = NULL;
1052 drive = hwgroup->drive;
1053
1054 /*
1055 * drive is doing pre-flush, ordered write, post-flush sequence. even
1056 * though that is 3 requests, it must be seen as a single transaction.
1057 * we must not preempt this drive until that is complete
1058 */
1059 if (blk_queue_flushing(drive->queue)) {
1060 /*
1061 * small race where queue could get replugged during
1062 * the 3-request flush cycle, just yank the plug since
1063 * we want it to finish asap
1064 */
1065 blk_remove_plug(drive->queue);
1066 return drive;
1067 }
1068
1069 do {
1070 if ((!drive->sleeping || time_after_eq(jiffies, drive->sleep))
1071 && !elv_queue_empty(drive->queue)) {
1072 if (!best
1073 || (drive->sleeping && (!best->sleeping || time_before(drive->sleep, best->sleep)))
1074 || (!best->sleeping && time_before(WAKEUP(drive), WAKEUP(best))))
1075 {
1076 if (!blk_queue_plugged(drive->queue))
1077 best = drive;
1078 }
1079 }
1080 } while ((drive = drive->next) != hwgroup->drive);
1081 if (best && best->nice1 && !best->sleeping && best != hwgroup->drive && best->service_time > WAIT_MIN_SLEEP) {
1082 long t = (signed long)(WAKEUP(best) - jiffies);
1083 if (t >= WAIT_MIN_SLEEP) {
1084 /*
1085 * We *may* have some time to spare, but first let's see if
1086 * someone can potentially benefit from our nice mood today..
1087 */
1088 drive = best->next;
1089 do {
1090 if (!drive->sleeping
1091 && time_before(jiffies - best->service_time, WAKEUP(drive))
1092 && time_before(WAKEUP(drive), jiffies + t))
1093 {
1094 ide_stall_queue(best, min_t(long, t, 10 * WAIT_MIN_SLEEP));
1095 goto repeat;
1096 }
1097 } while ((drive = drive->next) != best);
1098 }
1099 }
1100 return best;
1101}
1102
1103/*
1104 * Issue a new request to a drive from hwgroup
1105 * Caller must have already done spin_lock_irqsave(&ide_lock, ..);
1106 *
1107 * A hwgroup is a serialized group of IDE interfaces. Usually there is
1108 * exactly one hwif (interface) per hwgroup, but buggy controllers (eg. CMD640)
1109 * may have both interfaces in a single hwgroup to "serialize" access.
1110 * Or possibly multiple ISA interfaces can share a common IRQ by being grouped
1111 * together into one hwgroup for serialized access.
1112 *
1113 * Note also that several hwgroups can end up sharing a single IRQ,
1114 * possibly along with many other devices. This is especially common in
1115 * PCI-based systems with off-board IDE controller cards.
1116 *
1117 * The IDE driver uses the single global ide_lock spinlock to protect
1118 * access to the request queues, and to protect the hwgroup->busy flag.
1119 *
1120 * The first thread into the driver for a particular hwgroup sets the
1121 * hwgroup->busy flag to indicate that this hwgroup is now active,
1122 * and then initiates processing of the top request from the request queue.
1123 *
1124 * Other threads attempting entry notice the busy setting, and will simply
1125 * queue their new requests and exit immediately. Note that hwgroup->busy
1126 * remains set even when the driver is merely awaiting the next interrupt.
1127 * Thus, the meaning is "this hwgroup is busy processing a request".
1128 *
1129 * When processing of a request completes, the completing thread or IRQ-handler
1130 * will start the next request from the queue. If no more work remains,
1131 * the driver will clear the hwgroup->busy flag and exit.
1132 *
1133 * The ide_lock (spinlock) is used to protect all access to the
1134 * hwgroup->busy flag, but is otherwise not needed for most processing in
1135 * the driver. This makes the driver much more friendlier to shared IRQs
1136 * than previous designs, while remaining 100% (?) SMP safe and capable.
1137 */
1138static void ide_do_request (ide_hwgroup_t *hwgroup, int masked_irq)
1139{
1140 ide_drive_t *drive;
1141 ide_hwif_t *hwif;
1142 struct request *rq;
1143 ide_startstop_t startstop;
867f8b4e 1144 int loops = 0;
1da177e4
LT
1145
1146 /* for atari only: POSSIBLY BROKEN HERE(?) */
1147 ide_get_lock(ide_intr, hwgroup);
1148
1149 /* caller must own ide_lock */
1150 BUG_ON(!irqs_disabled());
1151
1152 while (!hwgroup->busy) {
1153 hwgroup->busy = 1;
1154 drive = choose_drive(hwgroup);
1155 if (drive == NULL) {
1156 int sleeping = 0;
1157 unsigned long sleep = 0; /* shut up, gcc */
1158 hwgroup->rq = NULL;
1159 drive = hwgroup->drive;
1160 do {
1161 if (drive->sleeping && (!sleeping || time_before(drive->sleep, sleep))) {
1162 sleeping = 1;
1163 sleep = drive->sleep;
1164 }
1165 } while ((drive = drive->next) != hwgroup->drive);
1166 if (sleeping) {
1167 /*
1168 * Take a short snooze, and then wake up this hwgroup again.
1169 * This gives other hwgroups on the same a chance to
1170 * play fairly with us, just in case there are big differences
1171 * in relative throughputs.. don't want to hog the cpu too much.
1172 */
1173 if (time_before(sleep, jiffies + WAIT_MIN_SLEEP))
1174 sleep = jiffies + WAIT_MIN_SLEEP;
1175#if 1
1176 if (timer_pending(&hwgroup->timer))
1177 printk(KERN_CRIT "ide_set_handler: timer already active\n");
1178#endif
1179 /* so that ide_timer_expiry knows what to do */
1180 hwgroup->sleeping = 1;
23450319 1181 hwgroup->req_gen_timer = hwgroup->req_gen;
1da177e4
LT
1182 mod_timer(&hwgroup->timer, sleep);
1183 /* we purposely leave hwgroup->busy==1
1184 * while sleeping */
1185 } else {
1186 /* Ugly, but how can we sleep for the lock
1187 * otherwise? perhaps from tq_disk?
1188 */
1189
1190 /* for atari only */
1191 ide_release_lock();
1192 hwgroup->busy = 0;
1193 }
1194
1195 /* no more work for this hwgroup (for now) */
1196 return;
1197 }
867f8b4e 1198 again:
1da177e4
LT
1199 hwif = HWIF(drive);
1200 if (hwgroup->hwif->sharing_irq &&
1201 hwif != hwgroup->hwif &&
1202 hwif->io_ports[IDE_CONTROL_OFFSET]) {
1203 /* set nIEN for previous hwif */
f919790f
BZ
1204 if (hwif->intrproc)
1205 hwif->intrproc(drive);
1206 else
1207 hwif->OUTB(drive->ctl | 2, IDE_CONTROL_REG);
1da177e4
LT
1208 }
1209 hwgroup->hwif = hwif;
1210 hwgroup->drive = drive;
1211 drive->sleeping = 0;
1212 drive->service_start = jiffies;
1213
1214 if (blk_queue_plugged(drive->queue)) {
1215 printk(KERN_ERR "ide: huh? queue was plugged!\n");
1216 break;
1217 }
1218
1219 /*
1220 * we know that the queue isn't empty, but this can happen
1221 * if the q->prep_rq_fn() decides to kill a request
1222 */
1223 rq = elv_next_request(drive->queue);
1224 if (!rq) {
1225 hwgroup->busy = 0;
1226 break;
1227 }
1228
1229 /*
1230 * Sanity: don't accept a request that isn't a PM request
1231 * if we are currently power managed. This is very important as
1232 * blk_stop_queue() doesn't prevent the elv_next_request()
1233 * above to return us whatever is in the queue. Since we call
1234 * ide_do_request() ourselves, we end up taking requests while
1235 * the queue is blocked...
1236 *
1237 * We let requests forced at head of queue with ide-preempt
1238 * though. I hope that doesn't happen too much, hopefully not
1239 * unless the subdriver triggers such a thing in its own PM
1240 * state machine.
867f8b4e
BH
1241 *
1242 * We count how many times we loop here to make sure we service
1243 * all drives in the hwgroup without looping for ever
1da177e4 1244 */
4aff5e23 1245 if (drive->blocked && !blk_pm_request(rq) && !(rq->cmd_flags & REQ_PREEMPT)) {
867f8b4e
BH
1246 drive = drive->next ? drive->next : hwgroup->drive;
1247 if (loops++ < 4 && !blk_queue_plugged(drive->queue))
1248 goto again;
1da177e4
LT
1249 /* We clear busy, there should be no pending ATA command at this point. */
1250 hwgroup->busy = 0;
1251 break;
1252 }
1253
1254 hwgroup->rq = rq;
1255
1256 /*
1257 * Some systems have trouble with IDE IRQs arriving while
1258 * the driver is still setting things up. So, here we disable
1259 * the IRQ used by this interface while the request is being started.
1260 * This may look bad at first, but pretty much the same thing
1261 * happens anyway when any interrupt comes in, IDE or otherwise
1262 * -- the kernel masks the IRQ while it is being handled.
1263 */
1264 if (masked_irq != IDE_NO_IRQ && hwif->irq != masked_irq)
1265 disable_irq_nosync(hwif->irq);
1266 spin_unlock(&ide_lock);
366c7f55 1267 local_irq_enable_in_hardirq();
1da177e4
LT
1268 /* allow other IRQs while we start this request */
1269 startstop = start_request(drive, rq);
1270 spin_lock_irq(&ide_lock);
1271 if (masked_irq != IDE_NO_IRQ && hwif->irq != masked_irq)
1272 enable_irq(hwif->irq);
1273 if (startstop == ide_stopped)
1274 hwgroup->busy = 0;
1275 }
1276}
1277
1278/*
1279 * Passes the stuff to ide_do_request
1280 */
165125e1 1281void do_ide_request(struct request_queue *q)
1da177e4
LT
1282{
1283 ide_drive_t *drive = q->queuedata;
1284
1285 ide_do_request(HWGROUP(drive), IDE_NO_IRQ);
1286}
1287
1288/*
1289 * un-busy the hwgroup etc, and clear any pending DMA status. we want to
1290 * retry the current request in pio mode instead of risking tossing it
1291 * all away
1292 */
1293static ide_startstop_t ide_dma_timeout_retry(ide_drive_t *drive, int error)
1294{
1295 ide_hwif_t *hwif = HWIF(drive);
1296 struct request *rq;
1297 ide_startstop_t ret = ide_stopped;
1298
1299 /*
1300 * end current dma transaction
1301 */
1302
1303 if (error < 0) {
1304 printk(KERN_WARNING "%s: DMA timeout error\n", drive->name);
1305 (void)HWIF(drive)->ide_dma_end(drive);
1306 ret = ide_error(drive, "dma timeout error",
1307 hwif->INB(IDE_STATUS_REG));
1308 } else {
1309 printk(KERN_WARNING "%s: DMA timeout retry\n", drive->name);
c283f5db 1310 hwif->dma_timeout(drive);
1da177e4
LT
1311 }
1312
1313 /*
1314 * disable dma for now, but remember that we did so because of
1315 * a timeout -- we'll reenable after we finish this next request
1316 * (or rather the first chunk of it) in pio.
1317 */
1318 drive->retry_pio++;
1319 drive->state = DMA_PIO_RETRY;
7469aaf6 1320 hwif->dma_off_quietly(drive);
1da177e4
LT
1321
1322 /*
1323 * un-busy drive etc (hwgroup->busy is cleared on return) and
1324 * make sure request is sane
1325 */
1326 rq = HWGROUP(drive)->rq;
ce42f191
HZ
1327
1328 if (!rq)
1329 goto out;
1330
1da177e4
LT
1331 HWGROUP(drive)->rq = NULL;
1332
1333 rq->errors = 0;
1334
1335 if (!rq->bio)
1336 goto out;
1337
1338 rq->sector = rq->bio->bi_sector;
1339 rq->current_nr_sectors = bio_iovec(rq->bio)->bv_len >> 9;
1340 rq->hard_cur_sectors = rq->current_nr_sectors;
1341 rq->buffer = bio_data(rq->bio);
1342out:
1343 return ret;
1344}
1345
1346/**
1347 * ide_timer_expiry - handle lack of an IDE interrupt
1348 * @data: timer callback magic (hwgroup)
1349 *
1350 * An IDE command has timed out before the expected drive return
1351 * occurred. At this point we attempt to clean up the current
1352 * mess. If the current handler includes an expiry handler then
1353 * we invoke the expiry handler, and providing it is happy the
1354 * work is done. If that fails we apply generic recovery rules
1355 * invoking the handler and checking the drive DMA status. We
1356 * have an excessively incestuous relationship with the DMA
1357 * logic that wants cleaning up.
1358 */
1359
1360void ide_timer_expiry (unsigned long data)
1361{
1362 ide_hwgroup_t *hwgroup = (ide_hwgroup_t *) data;
1363 ide_handler_t *handler;
1364 ide_expiry_t *expiry;
1365 unsigned long flags;
1366 unsigned long wait = -1;
1367
1368 spin_lock_irqsave(&ide_lock, flags);
1369
23450319
SS
1370 if (((handler = hwgroup->handler) == NULL) ||
1371 (hwgroup->req_gen != hwgroup->req_gen_timer)) {
1da177e4
LT
1372 /*
1373 * Either a marginal timeout occurred
1374 * (got the interrupt just as timer expired),
1375 * or we were "sleeping" to give other devices a chance.
1376 * Either way, we don't really want to complain about anything.
1377 */
1378 if (hwgroup->sleeping) {
1379 hwgroup->sleeping = 0;
1380 hwgroup->busy = 0;
1381 }
1382 } else {
1383 ide_drive_t *drive = hwgroup->drive;
1384 if (!drive) {
1385 printk(KERN_ERR "ide_timer_expiry: hwgroup->drive was NULL\n");
1386 hwgroup->handler = NULL;
1387 } else {
1388 ide_hwif_t *hwif;
1389 ide_startstop_t startstop = ide_stopped;
1390 if (!hwgroup->busy) {
1391 hwgroup->busy = 1; /* paranoia */
1392 printk(KERN_ERR "%s: ide_timer_expiry: hwgroup->busy was 0 ??\n", drive->name);
1393 }
1394 if ((expiry = hwgroup->expiry) != NULL) {
1395 /* continue */
1396 if ((wait = expiry(drive)) > 0) {
1397 /* reset timer */
1398 hwgroup->timer.expires = jiffies + wait;
23450319 1399 hwgroup->req_gen_timer = hwgroup->req_gen;
1da177e4
LT
1400 add_timer(&hwgroup->timer);
1401 spin_unlock_irqrestore(&ide_lock, flags);
1402 return;
1403 }
1404 }
1405 hwgroup->handler = NULL;
1406 /*
1407 * We need to simulate a real interrupt when invoking
1408 * the handler() function, which means we need to
1409 * globally mask the specific IRQ:
1410 */
1411 spin_unlock(&ide_lock);
1412 hwif = HWIF(drive);
1da177e4
LT
1413 /* disable_irq_nosync ?? */
1414 disable_irq(hwif->irq);
1da177e4
LT
1415 /* local CPU only,
1416 * as if we were handling an interrupt */
1417 local_irq_disable();
1418 if (hwgroup->polling) {
1419 startstop = handler(drive);
1420 } else if (drive_is_ready(drive)) {
1421 if (drive->waiting_for_dma)
841d2a9b 1422 hwgroup->hwif->dma_lost_irq(drive);
1da177e4
LT
1423 (void)ide_ack_intr(hwif);
1424 printk(KERN_WARNING "%s: lost interrupt\n", drive->name);
1425 startstop = handler(drive);
1426 } else {
1427 if (drive->waiting_for_dma) {
1428 startstop = ide_dma_timeout_retry(drive, wait);
1429 } else
1430 startstop =
1431 ide_error(drive, "irq timeout", hwif->INB(IDE_STATUS_REG));
1432 }
1433 drive->service_time = jiffies - drive->service_start;
1434 spin_lock_irq(&ide_lock);
1435 enable_irq(hwif->irq);
1436 if (startstop == ide_stopped)
1437 hwgroup->busy = 0;
1438 }
1439 }
1440 ide_do_request(hwgroup, IDE_NO_IRQ);
1441 spin_unlock_irqrestore(&ide_lock, flags);
1442}
1443
1444/**
1445 * unexpected_intr - handle an unexpected IDE interrupt
1446 * @irq: interrupt line
1447 * @hwgroup: hwgroup being processed
1448 *
1449 * There's nothing really useful we can do with an unexpected interrupt,
1450 * other than reading the status register (to clear it), and logging it.
1451 * There should be no way that an irq can happen before we're ready for it,
1452 * so we needn't worry much about losing an "important" interrupt here.
1453 *
1454 * On laptops (and "green" PCs), an unexpected interrupt occurs whenever
1455 * the drive enters "idle", "standby", or "sleep" mode, so if the status
1456 * looks "good", we just ignore the interrupt completely.
1457 *
1458 * This routine assumes __cli() is in effect when called.
1459 *
1460 * If an unexpected interrupt happens on irq15 while we are handling irq14
1461 * and if the two interfaces are "serialized" (CMD640), then it looks like
1462 * we could screw up by interfering with a new request being set up for
1463 * irq15.
1464 *
1465 * In reality, this is a non-issue. The new command is not sent unless
1466 * the drive is ready to accept one, in which case we know the drive is
1467 * not trying to interrupt us. And ide_set_handler() is always invoked
1468 * before completing the issuance of any new drive command, so we will not
1469 * be accidentally invoked as a result of any valid command completion
1470 * interrupt.
1471 *
1472 * Note that we must walk the entire hwgroup here. We know which hwif
1473 * is doing the current command, but we don't know which hwif burped
1474 * mysteriously.
1475 */
1476
1477static void unexpected_intr (int irq, ide_hwgroup_t *hwgroup)
1478{
1479 u8 stat;
1480 ide_hwif_t *hwif = hwgroup->hwif;
1481
1482 /*
1483 * handle the unexpected interrupt
1484 */
1485 do {
1486 if (hwif->irq == irq) {
1487 stat = hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
1488 if (!OK_STAT(stat, READY_STAT, BAD_STAT)) {
1489 /* Try to not flood the console with msgs */
1490 static unsigned long last_msgtime, count;
1491 ++count;
1492 if (time_after(jiffies, last_msgtime + HZ)) {
1493 last_msgtime = jiffies;
1494 printk(KERN_ERR "%s%s: unexpected interrupt, "
1495 "status=0x%02x, count=%ld\n",
1496 hwif->name,
1497 (hwif->next==hwgroup->hwif) ? "" : "(?)", stat, count);
1498 }
1499 }
1500 }
1501 } while ((hwif = hwif->next) != hwgroup->hwif);
1502}
1503
1504/**
1505 * ide_intr - default IDE interrupt handler
1506 * @irq: interrupt number
1507 * @dev_id: hwif group
1508 * @regs: unused weirdness from the kernel irq layer
1509 *
1510 * This is the default IRQ handler for the IDE layer. You should
1511 * not need to override it. If you do be aware it is subtle in
1512 * places
1513 *
1514 * hwgroup->hwif is the interface in the group currently performing
1515 * a command. hwgroup->drive is the drive and hwgroup->handler is
1516 * the IRQ handler to call. As we issue a command the handlers
1517 * step through multiple states, reassigning the handler to the
1518 * next step in the process. Unlike a smart SCSI controller IDE
1519 * expects the main processor to sequence the various transfer
1520 * stages. We also manage a poll timer to catch up with most
1521 * timeout situations. There are still a few where the handlers
1522 * don't ever decide to give up.
1523 *
1524 * The handler eventually returns ide_stopped to indicate the
1525 * request completed. At this point we issue the next request
1526 * on the hwgroup and the process begins again.
1527 */
1528
7d12e780 1529irqreturn_t ide_intr (int irq, void *dev_id)
1da177e4
LT
1530{
1531 unsigned long flags;
1532 ide_hwgroup_t *hwgroup = (ide_hwgroup_t *)dev_id;
1533 ide_hwif_t *hwif;
1534 ide_drive_t *drive;
1535 ide_handler_t *handler;
1536 ide_startstop_t startstop;
1537
1538 spin_lock_irqsave(&ide_lock, flags);
1539 hwif = hwgroup->hwif;
1540
1541 if (!ide_ack_intr(hwif)) {
1542 spin_unlock_irqrestore(&ide_lock, flags);
1543 return IRQ_NONE;
1544 }
1545
1546 if ((handler = hwgroup->handler) == NULL || hwgroup->polling) {
1547 /*
1548 * Not expecting an interrupt from this drive.
1549 * That means this could be:
1550 * (1) an interrupt from another PCI device
1551 * sharing the same PCI INT# as us.
1552 * or (2) a drive just entered sleep or standby mode,
1553 * and is interrupting to let us know.
1554 * or (3) a spurious interrupt of unknown origin.
1555 *
1556 * For PCI, we cannot tell the difference,
1557 * so in that case we just ignore it and hope it goes away.
1558 *
1559 * FIXME: unexpected_intr should be hwif-> then we can
1560 * remove all the ifdef PCI crap
1561 */
1562#ifdef CONFIG_BLK_DEV_IDEPCI
1563 if (hwif->pci_dev && !hwif->pci_dev->vendor)
1564#endif /* CONFIG_BLK_DEV_IDEPCI */
1565 {
1566 /*
1567 * Probably not a shared PCI interrupt,
1568 * so we can safely try to do something about it:
1569 */
1570 unexpected_intr(irq, hwgroup);
1571#ifdef CONFIG_BLK_DEV_IDEPCI
1572 } else {
1573 /*
1574 * Whack the status register, just in case
1575 * we have a leftover pending IRQ.
1576 */
1577 (void) hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
1578#endif /* CONFIG_BLK_DEV_IDEPCI */
1579 }
1580 spin_unlock_irqrestore(&ide_lock, flags);
1581 return IRQ_NONE;
1582 }
1583 drive = hwgroup->drive;
1584 if (!drive) {
1585 /*
1586 * This should NEVER happen, and there isn't much
1587 * we could do about it here.
1588 *
1589 * [Note - this can occur if the drive is hot unplugged]
1590 */
1591 spin_unlock_irqrestore(&ide_lock, flags);
1592 return IRQ_HANDLED;
1593 }
1594 if (!drive_is_ready(drive)) {
1595 /*
1596 * This happens regularly when we share a PCI IRQ with
1597 * another device. Unfortunately, it can also happen
1598 * with some buggy drives that trigger the IRQ before
1599 * their status register is up to date. Hopefully we have
1600 * enough advance overhead that the latter isn't a problem.
1601 */
1602 spin_unlock_irqrestore(&ide_lock, flags);
1603 return IRQ_NONE;
1604 }
1605 if (!hwgroup->busy) {
1606 hwgroup->busy = 1; /* paranoia */
1607 printk(KERN_ERR "%s: ide_intr: hwgroup->busy was 0 ??\n", drive->name);
1608 }
1609 hwgroup->handler = NULL;
23450319 1610 hwgroup->req_gen++;
1da177e4
LT
1611 del_timer(&hwgroup->timer);
1612 spin_unlock(&ide_lock);
1613
f0dd8712
AL
1614 /* Some controllers might set DMA INTR no matter DMA or PIO;
1615 * bmdma status might need to be cleared even for
1616 * PIO interrupts to prevent spurious/lost irq.
1617 */
1618 if (hwif->ide_dma_clear_irq && !(drive->waiting_for_dma))
1619 /* ide_dma_end() needs bmdma status for error checking.
1620 * So, skip clearing bmdma status here and leave it
1621 * to ide_dma_end() if this is dma interrupt.
1622 */
1623 hwif->ide_dma_clear_irq(drive);
1624
1da177e4 1625 if (drive->unmask)
366c7f55 1626 local_irq_enable_in_hardirq();
1da177e4
LT
1627 /* service this interrupt, may set handler for next interrupt */
1628 startstop = handler(drive);
1629 spin_lock_irq(&ide_lock);
1630
1631 /*
1632 * Note that handler() may have set things up for another
1633 * interrupt to occur soon, but it cannot happen until
1634 * we exit from this routine, because it will be the
1635 * same irq as is currently being serviced here, and Linux
1636 * won't allow another of the same (on any CPU) until we return.
1637 */
1638 drive->service_time = jiffies - drive->service_start;
1639 if (startstop == ide_stopped) {
1640 if (hwgroup->handler == NULL) { /* paranoia */
1641 hwgroup->busy = 0;
1642 ide_do_request(hwgroup, hwif->irq);
1643 } else {
1644 printk(KERN_ERR "%s: ide_intr: huh? expected NULL handler "
1645 "on exit\n", drive->name);
1646 }
1647 }
1648 spin_unlock_irqrestore(&ide_lock, flags);
1649 return IRQ_HANDLED;
1650}
1651
1652/**
1653 * ide_init_drive_cmd - initialize a drive command request
1654 * @rq: request object
1655 *
1656 * Initialize a request before we fill it in and send it down to
1657 * ide_do_drive_cmd. Commands must be set up by this function. Right
1658 * now it doesn't do a lot, but if that changes abusers will have a
d6e05edc 1659 * nasty surprise.
1da177e4
LT
1660 */
1661
1662void ide_init_drive_cmd (struct request *rq)
1663{
1664 memset(rq, 0, sizeof(*rq));
4aff5e23 1665 rq->cmd_type = REQ_TYPE_ATA_CMD;
1da177e4
LT
1666 rq->ref_count = 1;
1667}
1668
1669EXPORT_SYMBOL(ide_init_drive_cmd);
1670
1671/**
1672 * ide_do_drive_cmd - issue IDE special command
1673 * @drive: device to issue command
1674 * @rq: request to issue
1675 * @action: action for processing
1676 *
1677 * This function issues a special IDE device request
1678 * onto the request queue.
1679 *
1680 * If action is ide_wait, then the rq is queued at the end of the
1681 * request queue, and the function sleeps until it has been processed.
1682 * This is for use when invoked from an ioctl handler.
1683 *
1684 * If action is ide_preempt, then the rq is queued at the head of
1685 * the request queue, displacing the currently-being-processed
1686 * request and this function returns immediately without waiting
1687 * for the new rq to be completed. This is VERY DANGEROUS, and is
1688 * intended for careful use by the ATAPI tape/cdrom driver code.
1689 *
1da177e4
LT
1690 * If action is ide_end, then the rq is queued at the end of the
1691 * request queue, and the function returns immediately without waiting
1692 * for the new rq to be completed. This is again intended for careful
1693 * use by the ATAPI tape/cdrom driver code.
1694 */
1695
1696int ide_do_drive_cmd (ide_drive_t *drive, struct request *rq, ide_action_t action)
1697{
1698 unsigned long flags;
1699 ide_hwgroup_t *hwgroup = HWGROUP(drive);
60be6b9a 1700 DECLARE_COMPLETION_ONSTACK(wait);
1da177e4
LT
1701 int where = ELEVATOR_INSERT_BACK, err;
1702 int must_wait = (action == ide_wait || action == ide_head_wait);
1703
1704 rq->errors = 0;
1da177e4
LT
1705
1706 /*
1707 * we need to hold an extra reference to request for safe inspection
1708 * after completion
1709 */
1710 if (must_wait) {
1711 rq->ref_count++;
c00895ab 1712 rq->end_io_data = &wait;
1da177e4
LT
1713 rq->end_io = blk_end_sync_rq;
1714 }
1715
1716 spin_lock_irqsave(&ide_lock, flags);
1717 if (action == ide_preempt)
1718 hwgroup->rq = NULL;
1719 if (action == ide_preempt || action == ide_head_wait) {
1720 where = ELEVATOR_INSERT_FRONT;
4aff5e23 1721 rq->cmd_flags |= REQ_PREEMPT;
1da177e4
LT
1722 }
1723 __elv_add_request(drive->queue, rq, where, 0);
1724 ide_do_request(hwgroup, IDE_NO_IRQ);
1725 spin_unlock_irqrestore(&ide_lock, flags);
1726
1727 err = 0;
1728 if (must_wait) {
1729 wait_for_completion(&wait);
1da177e4
LT
1730 if (rq->errors)
1731 err = -EIO;
1732
1733 blk_put_request(rq);
1734 }
1735
1736 return err;
1737}
1738
1739EXPORT_SYMBOL(ide_do_drive_cmd);
2fc57388
BZ
1740
1741void ide_pktcmd_tf_load(ide_drive_t *drive, u32 tf_flags, u16 bcount, u8 dma)
1742{
1743 ide_task_t task;
1744
1745 memset(&task, 0, sizeof(task));
1746 task.tf_flags = IDE_TFLAG_OUT_LBAH | IDE_TFLAG_OUT_LBAM |
1747 IDE_TFLAG_OUT_FEATURE | tf_flags;
1748 task.tf.feature = dma; /* Use PIO/DMA */
1749 task.tf.lbam = bcount & 0xff;
1750 task.tf.lbah = (bcount >> 8) & 0xff;
1751
1752 ide_tf_load(drive, &task);
1753}
1754
1755EXPORT_SYMBOL_GPL(ide_pktcmd_tf_load);