blob: 33458fe7f490eb73a62800c7d5df0845e9cb528b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#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>
Jiri Slaby1977f032007-10-18 23:40:25 -070050#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <asm/byteorder.h>
53#include <asm/irq.h>
54#include <asm/uaccess.h>
55#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Adrian Bunka7ff7d42006-02-03 03:04:56 -080057static int __ide_end_request(ide_drive_t *drive, struct request *rq,
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +020058 int uptodate, unsigned int nr_bytes, int dequeue)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 int ret = 1;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 /*
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))
Jens Axboe41e9d342007-07-19 08:13:01 +020067 nr_bytes = rq->hard_nr_sectors << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
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
Jens Axboe41e9d342007-07-19 08:13:01 +020081 if (!end_that_request_chunk(rq, uptodate, nr_bytes)) {
Jens Axboeba027de2006-01-12 20:44:12 +010082 add_disk_randomness(rq->rq_disk);
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +020083 if (dequeue) {
84 if (!list_empty(&rq->queuelist))
85 blkdev_dequeue_request(rq);
86 HWGROUP(drive)->rq = NULL;
87 }
Jens Axboeba027de2006-01-12 20:44:12 +010088 end_that_request_last(rq, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 ret = 0;
90 }
Jens Axboe8672d572006-01-09 16:03:35 +010091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return ret;
93}
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
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{
Jens Axboe41e9d342007-07-19 08:13:01 +0200108 unsigned int nr_bytes = nr_sectors << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 struct request *rq;
110 unsigned long flags;
111 int ret = 1;
112
Jens Axboe8672d572006-01-09 16:03:35 +0100113 /*
114 * room for locking improvements here, the calls below don't
115 * need the queue lock held at all
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 spin_lock_irqsave(&ide_lock, flags);
118 rq = HWGROUP(drive)->rq;
119
Jens Axboe41e9d342007-07-19 08:13:01 +0200120 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +0200127 ret = __ide_end_request(drive, rq, uptodate, nr_bytes, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
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
Jason Lunz8c2c0112006-10-03 01:14:26 -0700144 idedisk_pm_restore_pio = ide_pm_state_start_resume,
145 idedisk_pm_idle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 ide_pm_restore_dma,
147};
148
149static void ide_complete_power_step(ide_drive_t *drive, struct request *rq, u8 stat, u8 error)
150{
Jens Axboec00895a2006-09-30 20:29:12 +0200151 struct request_pm_state *pm = rq->data;
Jens Axboead3cadd2006-06-13 08:46:57 +0200152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (drive->media != ide_disk)
154 return;
155
Jens Axboead3cadd2006-06-13 08:46:57 +0200156 switch (pm->pm_step) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 case ide_pm_flush_cache: /* Suspend step 1 (flush cache) complete */
Jens Axboead3cadd2006-06-13 08:46:57 +0200158 if (pm->pm_state == PM_EVENT_FREEZE)
159 pm->pm_step = ide_pm_state_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 else
Jens Axboead3cadd2006-06-13 08:46:57 +0200161 pm->pm_step = idedisk_pm_standby;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
163 case idedisk_pm_standby: /* Suspend step 2 (standby) complete */
Jens Axboead3cadd2006-06-13 08:46:57 +0200164 pm->pm_step = ide_pm_state_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 break;
Jason Lunz8c2c0112006-10-03 01:14:26 -0700166 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 */
Jens Axboead3cadd2006-06-13 08:46:57 +0200170 pm->pm_step = ide_pm_restore_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
172 }
173}
174
175static ide_startstop_t ide_start_power_step(ide_drive_t *drive, struct request *rq)
176{
Jens Axboec00895a2006-09-30 20:29:12 +0200177 struct request_pm_state *pm = rq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 ide_task_t *args = rq->special;
179
180 memset(args, 0, sizeof(*args));
181
Jens Axboead3cadd2006-06-13 08:46:57 +0200182 switch (pm->pm_step) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 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))
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100192 args->tf.command = WIN_FLUSH_CACHE_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 else
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100194 args->tf.command = WIN_FLUSH_CACHE;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100195 goto out_do_tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 case idedisk_pm_standby: /* Suspend step 2 (standby) */
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100198 args->tf.command = WIN_STANDBYNOW1;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100199 goto out_do_tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Jason Lunz8c2c0112006-10-03 01:14:26 -0700201 case idedisk_pm_restore_pio: /* Resume step 1 (restore PIO) */
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200202 ide_set_max_pio(drive);
Bartlomiej Zolnierkiewicz317a46a2007-05-10 00:01:11 +0200203 /*
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);
Jason Lunz8c2c0112006-10-03 01:14:26 -0700210 return ide_stopped;
211
212 case idedisk_pm_idle: /* Resume step 2 (idle) */
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100213 args->tf.command = WIN_IDLEIMMEDIATE;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100214 goto out_do_tf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jason Lunz8c2c0112006-10-03 01:14:26 -0700216 case ide_pm_restore_dma: /* Resume step 3 (restore DMA) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /*
Bartlomiej Zolnierkiewicz0ae2e172007-10-16 22:29:55 +0200218 * Right now, all we do is call ide_set_dma(drive),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * we could be smarter and check for current xfer_speed
220 * in struct drive etc...
221 */
Bartlomiej Zolnierkiewicz0ae2e172007-10-16 22:29:55 +0200222 if (drive->hwif->ide_dma_on == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 break;
Bartlomiej Zolnierkiewicz793a9722007-05-16 00:51:43 +0200224 drive->hwif->dma_off_quietly(drive);
Bartlomiej Zolnierkiewicz8987d212007-07-20 01:11:56 +0200225 /*
226 * TODO: respect ->using_dma setting
227 */
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100228 ide_set_dma(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 break;
230 }
Jens Axboead3cadd2006-06-13 08:46:57 +0200231 pm->pm_step = ide_pm_state_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return ide_stopped;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100233
234out_do_tf:
235 args->tf_flags = IDE_TFLAG_OUT_TF;
236 if (drive->addressing == 1)
237 args->tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_OUT_HOB);
238 args->command_type = IDE_DRIVE_TASK_NO_DATA;
239 args->handler = task_no_data_intr;
240 return do_rw_taskfile(drive, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243/**
Alan Coxdbe217a2006-06-25 05:47:44 -0700244 * ide_end_dequeued_request - complete an IDE I/O
245 * @drive: IDE device for the I/O
246 * @uptodate:
247 * @nr_sectors: number of sectors completed
248 *
249 * Complete an I/O that is no longer on the request queue. This
250 * typically occurs when we pull the request and issue a REQUEST_SENSE.
251 * We must still finish the old request but we must not tamper with the
252 * queue in the meantime.
253 *
254 * NOTE: This path does not handle barrier, but barrier is not supported
255 * on ide-cd anyway.
256 */
257
258int ide_end_dequeued_request(ide_drive_t *drive, struct request *rq,
259 int uptodate, int nr_sectors)
260{
261 unsigned long flags;
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +0200262 int ret;
Alan Coxdbe217a2006-06-25 05:47:44 -0700263
264 spin_lock_irqsave(&ide_lock, flags);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200265 BUG_ON(!blk_rq_started(rq));
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +0200266 ret = __ide_end_request(drive, rq, uptodate, nr_sectors << 9, 0);
Alan Coxdbe217a2006-06-25 05:47:44 -0700267 spin_unlock_irqrestore(&ide_lock, flags);
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +0200268
Alan Coxdbe217a2006-06-25 05:47:44 -0700269 return ret;
270}
271EXPORT_SYMBOL_GPL(ide_end_dequeued_request);
272
273
274/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * ide_complete_pm_request - end the current Power Management request
276 * @drive: target drive
277 * @rq: request
278 *
279 * This function cleans up the current PM request and stops the queue
280 * if necessary.
281 */
282static void ide_complete_pm_request (ide_drive_t *drive, struct request *rq)
283{
284 unsigned long flags;
285
286#ifdef DEBUG_PM
287 printk("%s: completing PM request, %s\n", drive->name,
288 blk_pm_suspend_request(rq) ? "suspend" : "resume");
289#endif
290 spin_lock_irqsave(&ide_lock, flags);
291 if (blk_pm_suspend_request(rq)) {
292 blk_stop_queue(drive->queue);
293 } else {
294 drive->blocked = 0;
295 blk_start_queue(drive->queue);
296 }
297 blkdev_dequeue_request(rq);
298 HWGROUP(drive)->rq = NULL;
Tejun Heo8ffdc652006-01-06 09:49:03 +0100299 end_that_request_last(rq, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 spin_unlock_irqrestore(&ide_lock, flags);
301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/**
304 * ide_end_drive_cmd - end an explicit drive command
305 * @drive: command
306 * @stat: status bits
307 * @err: error bits
308 *
309 * Clean up after success/failure of an explicit drive command.
310 * These get thrown onto the queue so they are synchronized with
311 * real I/O operations on the drive.
312 *
313 * In LBA48 mode we have to read the register set twice to get
314 * all the extra information out.
315 */
316
317void ide_end_drive_cmd (ide_drive_t *drive, u8 stat, u8 err)
318{
319 ide_hwif_t *hwif = HWIF(drive);
320 unsigned long flags;
321 struct request *rq;
322
323 spin_lock_irqsave(&ide_lock, flags);
324 rq = HWGROUP(drive)->rq;
325 spin_unlock_irqrestore(&ide_lock, flags);
326
Jens Axboe4aff5e22006-08-10 08:44:47 +0200327 if (rq->cmd_type == REQ_TYPE_ATA_CMD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 u8 *args = (u8 *) rq->buffer;
329 if (rq->errors == 0)
330 rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
331
332 if (args) {
333 args[0] = stat;
334 args[1] = err;
335 args[2] = hwif->INB(IDE_NSECTOR_REG);
336 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200337 } else if (rq->cmd_type == REQ_TYPE_ATA_TASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 u8 *args = (u8 *) rq->buffer;
339 if (rq->errors == 0)
340 rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
341
342 if (args) {
343 args[0] = stat;
344 args[1] = err;
Bartlomiej Zolnierkiewicz1c11d242007-11-05 21:42:27 +0100345 /* be sure we're looking at the low order bits */
346 hwif->OUTB(drive->ctl & ~0x80, IDE_CONTROL_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 args[2] = hwif->INB(IDE_NSECTOR_REG);
348 args[3] = hwif->INB(IDE_SECTOR_REG);
349 args[4] = hwif->INB(IDE_LCYL_REG);
350 args[5] = hwif->INB(IDE_HCYL_REG);
351 args[6] = hwif->INB(IDE_SELECT_REG);
352 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200353 } else if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 ide_task_t *args = (ide_task_t *) rq->special;
355 if (rq->errors == 0)
356 rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
357
358 if (args) {
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100359 struct ide_taskfile *tf = &args->tf;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (args->tf_in_flags.b.data) {
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100362 u16 data = hwif->INW(IDE_DATA_REG);
363
364 tf->data = data & 0xff;
365 tf->hob_data = (data >> 8) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100367 tf->error = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /* be sure we're looking at the low order bits */
369 hwif->OUTB(drive->ctl & ~0x80, IDE_CONTROL_REG);
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100370 tf->nsect = hwif->INB(IDE_NSECTOR_REG);
371 tf->lbal = hwif->INB(IDE_SECTOR_REG);
372 tf->lbam = hwif->INB(IDE_LCYL_REG);
373 tf->lbah = hwif->INB(IDE_HCYL_REG);
374 tf->device = hwif->INB(IDE_SELECT_REG);
375 tf->status = stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (drive->addressing == 1) {
378 hwif->OUTB(drive->ctl|0x80, IDE_CONTROL_REG);
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100379 tf->hob_feature = hwif->INB(IDE_FEATURE_REG);
380 tf->hob_nsect = hwif->INB(IDE_NSECTOR_REG);
381 tf->hob_lbal = hwif->INB(IDE_SECTOR_REG);
382 tf->hob_lbam = hwif->INB(IDE_LCYL_REG);
383 tf->hob_lbah = hwif->INB(IDE_HCYL_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385 }
386 } else if (blk_pm_request(rq)) {
Jens Axboec00895a2006-09-30 20:29:12 +0200387 struct request_pm_state *pm = rq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#ifdef DEBUG_PM
389 printk("%s: complete_power_step(step: %d, stat: %x, err: %x)\n",
390 drive->name, rq->pm->pm_step, stat, err);
391#endif
392 ide_complete_power_step(drive, rq, stat, err);
Jens Axboead3cadd2006-06-13 08:46:57 +0200393 if (pm->pm_step == ide_pm_state_completed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 ide_complete_pm_request(drive, rq);
395 return;
396 }
397
398 spin_lock_irqsave(&ide_lock, flags);
399 blkdev_dequeue_request(rq);
400 HWGROUP(drive)->rq = NULL;
401 rq->errors = err;
Tejun Heo8ffdc652006-01-06 09:49:03 +0100402 end_that_request_last(rq, !rq->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 spin_unlock_irqrestore(&ide_lock, flags);
404}
405
406EXPORT_SYMBOL(ide_end_drive_cmd);
407
408/**
409 * try_to_flush_leftover_data - flush junk
410 * @drive: drive to flush
411 *
412 * try_to_flush_leftover_data() is invoked in response to a drive
413 * unexpectedly having its DRQ_STAT bit set. As an alternative to
414 * resetting the drive, this routine tries to clear the condition
415 * by read a sector's worth of data from the drive. Of course,
416 * this may not help if the drive is *waiting* for data from *us*.
417 */
418static void try_to_flush_leftover_data (ide_drive_t *drive)
419{
420 int i = (drive->mult_count ? drive->mult_count : 1) * SECTOR_WORDS;
421
422 if (drive->media != ide_disk)
423 return;
424 while (i > 0) {
425 u32 buffer[16];
426 u32 wcount = (i > 16) ? 16 : i;
427
428 i -= wcount;
429 HWIF(drive)->ata_input_data(drive, buffer, wcount);
430 }
431}
432
433static void ide_kill_rq(ide_drive_t *drive, struct request *rq)
434{
435 if (rq->rq_disk) {
436 ide_driver_t *drv;
437
438 drv = *(ide_driver_t **)rq->rq_disk->private_data;
439 drv->end_request(drive, 0, 0);
440 } else
441 ide_end_request(drive, 0, 0);
442}
443
444static ide_startstop_t ide_ata_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
445{
446 ide_hwif_t *hwif = drive->hwif;
447
448 if (stat & BUSY_STAT || ((stat & WRERR_STAT) && !drive->nowerr)) {
449 /* other bits are useless when BUSY */
450 rq->errors |= ERROR_RESET;
451 } else if (stat & ERR_STAT) {
452 /* err has different meaning on cdrom and tape */
453 if (err == ABRT_ERR) {
454 if (drive->select.b.lba &&
455 /* some newer drives don't support WIN_SPECIFY */
456 hwif->INB(IDE_COMMAND_REG) == WIN_SPECIFY)
457 return ide_stopped;
458 } else if ((err & BAD_CRC) == BAD_CRC) {
459 /* UDMA crc error, just retry the operation */
460 drive->crc_count++;
461 } else if (err & (BBD_ERR | ECC_ERR)) {
462 /* retries won't help these */
463 rq->errors = ERROR_MAX;
464 } else if (err & TRK0_ERR) {
465 /* help it find track zero */
466 rq->errors |= ERROR_RECAL;
467 }
468 }
469
Bartlomiej Zolnierkiewiczed67b922007-10-19 00:30:10 +0200470 if ((stat & DRQ_STAT) && rq_data_dir(rq) == READ &&
471 (hwif->host_flags & IDE_HFLAG_ERROR_STOPS_FIFO) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 try_to_flush_leftover_data(drive);
473
Suleiman Souhlal513daad2007-03-26 23:03:20 +0200474 if (rq->errors >= ERROR_MAX || blk_noretry_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 ide_kill_rq(drive, rq);
Suleiman Souhlal513daad2007-03-26 23:03:20 +0200476 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Suleiman Souhlal513daad2007-03-26 23:03:20 +0200478
479 if (hwif->INB(IDE_STATUS_REG) & (BUSY_STAT|DRQ_STAT))
480 rq->errors |= ERROR_RESET;
481
482 if ((rq->errors & ERROR_RESET) == ERROR_RESET) {
483 ++rq->errors;
484 return ide_do_reset(drive);
485 }
486
487 if ((rq->errors & ERROR_RECAL) == ERROR_RECAL)
488 drive->special.b.recalibrate = 1;
489
490 ++rq->errors;
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return ide_stopped;
493}
494
495static ide_startstop_t ide_atapi_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
496{
497 ide_hwif_t *hwif = drive->hwif;
498
499 if (stat & BUSY_STAT || ((stat & WRERR_STAT) && !drive->nowerr)) {
500 /* other bits are useless when BUSY */
501 rq->errors |= ERROR_RESET;
502 } else {
503 /* add decoding error stuff */
504 }
505
506 if (hwif->INB(IDE_STATUS_REG) & (BUSY_STAT|DRQ_STAT))
507 /* force an abort */
508 hwif->OUTB(WIN_IDLEIMMEDIATE, IDE_COMMAND_REG);
509
510 if (rq->errors >= ERROR_MAX) {
511 ide_kill_rq(drive, rq);
512 } else {
513 if ((rq->errors & ERROR_RESET) == ERROR_RESET) {
514 ++rq->errors;
515 return ide_do_reset(drive);
516 }
517 ++rq->errors;
518 }
519
520 return ide_stopped;
521}
522
523ide_startstop_t
524__ide_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
525{
526 if (drive->media == ide_disk)
527 return ide_ata_error(drive, rq, stat, err);
528 return ide_atapi_error(drive, rq, stat, err);
529}
530
531EXPORT_SYMBOL_GPL(__ide_error);
532
533/**
534 * ide_error - handle an error on the IDE
535 * @drive: drive the error occurred on
536 * @msg: message to report
537 * @stat: status bits
538 *
539 * ide_error() takes action based on the error returned by the drive.
540 * For normal I/O that may well include retries. We deal with
541 * both new-style (taskfile) and old style command handling here.
542 * In the case of taskfile command handling there is work left to
543 * do
544 */
545
546ide_startstop_t ide_error (ide_drive_t *drive, const char *msg, u8 stat)
547{
548 struct request *rq;
549 u8 err;
550
551 err = ide_dump_status(drive, msg, stat);
552
553 if ((rq = HWGROUP(drive)->rq) == NULL)
554 return ide_stopped;
555
556 /* retry only "normal" I/O: */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200557 if (!blk_fs_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 rq->errors = 1;
559 ide_end_drive_cmd(drive, stat, err);
560 return ide_stopped;
561 }
562
563 if (rq->rq_disk) {
564 ide_driver_t *drv;
565
566 drv = *(ide_driver_t **)rq->rq_disk->private_data;
567 return drv->error(drive, rq, stat, err);
568 } else
569 return __ide_error(drive, rq, stat, err);
570}
571
572EXPORT_SYMBOL_GPL(ide_error);
573
574ide_startstop_t __ide_abort(ide_drive_t *drive, struct request *rq)
575{
576 if (drive->media != ide_disk)
577 rq->errors |= ERROR_RESET;
578
579 ide_kill_rq(drive, rq);
580
581 return ide_stopped;
582}
583
584EXPORT_SYMBOL_GPL(__ide_abort);
585
586/**
Adrian Bunk338cec32005-09-10 00:26:54 -0700587 * ide_abort - abort pending IDE operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * @drive: drive the error occurred on
589 * @msg: message to report
590 *
591 * ide_abort kills and cleans up when we are about to do a
592 * host initiated reset on active commands. Longer term we
593 * want handlers to have sensible abort handling themselves
594 *
595 * This differs fundamentally from ide_error because in
596 * this case the command is doing just fine when we
597 * blow it away.
598 */
599
600ide_startstop_t ide_abort(ide_drive_t *drive, const char *msg)
601{
602 struct request *rq;
603
604 if (drive == NULL || (rq = HWGROUP(drive)->rq) == NULL)
605 return ide_stopped;
606
607 /* retry only "normal" I/O: */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200608 if (!blk_fs_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 rq->errors = 1;
610 ide_end_drive_cmd(drive, BUSY_STAT, 0);
611 return ide_stopped;
612 }
613
614 if (rq->rq_disk) {
615 ide_driver_t *drv;
616
617 drv = *(ide_driver_t **)rq->rq_disk->private_data;
618 return drv->abort(drive, rq);
619 } else
620 return __ide_abort(drive, rq);
621}
622
623/**
624 * ide_cmd - issue a simple drive command
625 * @drive: drive the command is for
626 * @cmd: command byte
627 * @nsect: sector byte
628 * @handler: handler for the command completion
629 *
630 * Issue a simple drive command with interrupts.
631 * The drive must be selected beforehand.
632 */
633
634static void ide_cmd (ide_drive_t *drive, u8 cmd, u8 nsect,
635 ide_handler_t *handler)
636{
637 ide_hwif_t *hwif = HWIF(drive);
638 if (IDE_CONTROL_REG)
639 hwif->OUTB(drive->ctl,IDE_CONTROL_REG); /* clear nIEN */
640 SELECT_MASK(drive,0);
641 hwif->OUTB(nsect,IDE_NSECTOR_REG);
642 ide_execute_command(drive, cmd, handler, WAIT_CMD, NULL);
643}
644
645/**
646 * drive_cmd_intr - drive command completion interrupt
647 * @drive: drive the completion interrupt occurred on
648 *
649 * drive_cmd_intr() is invoked on completion of a special DRIVE_CMD.
Adrian Bunk338cec32005-09-10 00:26:54 -0700650 * We do any necessary data reading and then wait for the drive to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 * go non busy. At that point we may read the error data and complete
652 * the request
653 */
654
655static ide_startstop_t drive_cmd_intr (ide_drive_t *drive)
656{
657 struct request *rq = HWGROUP(drive)->rq;
658 ide_hwif_t *hwif = HWIF(drive);
659 u8 *args = (u8 *) rq->buffer;
660 u8 stat = hwif->INB(IDE_STATUS_REG);
661 int retries = 10;
662
Ingo Molnar366c7f52006-07-03 00:25:25 -0700663 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewicz320112b2007-11-05 21:42:26 +0100664 if (rq->cmd_type == REQ_TYPE_ATA_CMD &&
665 (stat & DRQ_STAT) && args && args[3]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 u8 io_32bit = drive->io_32bit;
667 drive->io_32bit = 0;
668 hwif->ata_input_data(drive, &args[4], args[3] * SECTOR_WORDS);
669 drive->io_32bit = io_32bit;
670 while (((stat = hwif->INB(IDE_STATUS_REG)) & BUSY_STAT) && retries--)
671 udelay(100);
672 }
673
674 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
675 return ide_error(drive, "drive_cmd", stat);
676 /* calls ide_end_drive_cmd */
677 ide_end_drive_cmd(drive, stat, hwif->INB(IDE_ERROR_REG));
678 return ide_stopped;
679}
680
681static void ide_init_specify_cmd(ide_drive_t *drive, ide_task_t *task)
682{
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100683 task->tf.nsect = drive->sect;
684 task->tf.lbal = drive->sect;
685 task->tf.lbam = drive->cyl;
686 task->tf.lbah = drive->cyl >> 8;
687 task->tf.device = ((drive->head - 1) | drive->select.all) & ~ATA_LBA;
688 task->tf.command = WIN_SPECIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 task->handler = &set_geometry_intr;
691}
692
693static void ide_init_restore_cmd(ide_drive_t *drive, ide_task_t *task)
694{
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100695 task->tf.nsect = drive->sect;
696 task->tf.command = WIN_RESTORE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 task->handler = &recal_intr;
699}
700
701static void ide_init_setmult_cmd(ide_drive_t *drive, ide_task_t *task)
702{
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100703 task->tf.nsect = drive->mult_req;
704 task->tf.command = WIN_SETMULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 task->handler = &set_multmode_intr;
707}
708
709static ide_startstop_t ide_disk_special(ide_drive_t *drive)
710{
711 special_t *s = &drive->special;
712 ide_task_t args;
713
714 memset(&args, 0, sizeof(ide_task_t));
715 args.command_type = IDE_DRIVE_TASK_NO_DATA;
716
717 if (s->b.set_geometry) {
718 s->b.set_geometry = 0;
719 ide_init_specify_cmd(drive, &args);
720 } else if (s->b.recalibrate) {
721 s->b.recalibrate = 0;
722 ide_init_restore_cmd(drive, &args);
723 } else if (s->b.set_multmode) {
724 s->b.set_multmode = 0;
725 if (drive->mult_req > drive->id->max_multsect)
726 drive->mult_req = drive->id->max_multsect;
727 ide_init_setmult_cmd(drive, &args);
728 } else if (s->all) {
729 int special = s->all;
730 s->all = 0;
731 printk(KERN_ERR "%s: bad special flag: 0x%02x\n", drive->name, special);
732 return ide_stopped;
733 }
734
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100735 args.tf_flags = IDE_TFLAG_OUT_TF;
736 if (drive->addressing == 1)
737 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_OUT_HOB);
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 do_rw_taskfile(drive, &args);
740
741 return ide_started;
742}
743
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200744/*
745 * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away
746 */
747static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio)
748{
749 switch (req_pio) {
750 case 202:
751 case 201:
752 case 200:
753 case 102:
754 case 101:
755 case 100:
756 return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0;
757 case 9:
758 case 8:
759 return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0;
760 case 7:
761 case 6:
762 return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0;
763 default:
764 return 0;
765 }
766}
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768/**
769 * do_special - issue some special commands
770 * @drive: drive the command is for
771 *
772 * do_special() is used to issue WIN_SPECIFY, WIN_RESTORE, and WIN_SETMULT
773 * commands to a drive. It used to do much more, but has been scaled
774 * back.
775 */
776
777static ide_startstop_t do_special (ide_drive_t *drive)
778{
779 special_t *s = &drive->special;
780
781#ifdef DEBUG
782 printk("%s: do_special: 0x%02x\n", drive->name, s->all);
783#endif
784 if (s->b.set_tune) {
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200785 ide_hwif_t *hwif = drive->hwif;
786 u8 req_pio = drive->tune_req;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 s->b.set_tune = 0;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200789
790 if (set_pio_mode_abuse(drive->hwif, req_pio)) {
Bartlomiej Zolnierkiewiczd393aa02007-10-20 00:32:36 +0200791
792 if (hwif->set_pio_mode == NULL)
793 return ide_stopped;
794
795 /*
796 * take ide_lock for drive->[no_]unmask/[no_]io_32bit
797 */
798 if (req_pio == 8 || req_pio == 9) {
799 unsigned long flags;
800
801 spin_lock_irqsave(&ide_lock, flags);
802 hwif->set_pio_mode(drive, req_pio);
803 spin_unlock_irqrestore(&ide_lock, flags);
804 } else
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200805 hwif->set_pio_mode(drive, req_pio);
Bartlomiej Zolnierkiewiczaedea592007-10-13 17:47:50 +0200806 } else {
807 int keep_dma = drive->using_dma;
808
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200809 ide_set_pio(drive, req_pio);
810
Bartlomiej Zolnierkiewiczaedea592007-10-13 17:47:50 +0200811 if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) {
812 if (keep_dma)
813 hwif->ide_dma_on(drive);
814 }
815 }
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return ide_stopped;
818 } else {
819 if (drive->media == ide_disk)
820 return ide_disk_special(drive);
821
822 s->all = 0;
823 drive->mult_req = 0;
824 return ide_stopped;
825 }
826}
827
828void ide_map_sg(ide_drive_t *drive, struct request *rq)
829{
830 ide_hwif_t *hwif = drive->hwif;
831 struct scatterlist *sg = hwif->sg_table;
832
833 if (hwif->sg_mapped) /* needed by ide-scsi */
834 return;
835
Jens Axboe4aff5e22006-08-10 08:44:47 +0200836 if (rq->cmd_type != REQ_TYPE_ATA_TASKFILE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 hwif->sg_nents = blk_rq_map_sg(drive->queue, rq, sg);
838 } else {
839 sg_init_one(sg, rq->buffer, rq->nr_sectors * SECTOR_SIZE);
840 hwif->sg_nents = 1;
841 }
842}
843
844EXPORT_SYMBOL_GPL(ide_map_sg);
845
846void ide_init_sg_cmd(ide_drive_t *drive, struct request *rq)
847{
848 ide_hwif_t *hwif = drive->hwif;
849
850 hwif->nsect = hwif->nleft = rq->nr_sectors;
Jens Axboe55c16a72007-07-25 08:13:56 +0200851 hwif->cursg_ofs = 0;
852 hwif->cursg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
855EXPORT_SYMBOL_GPL(ide_init_sg_cmd);
856
857/**
858 * execute_drive_command - issue special drive command
Adrian Bunk338cec32005-09-10 00:26:54 -0700859 * @drive: the drive to issue the command on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * @rq: the request structure holding the command
861 *
862 * execute_drive_cmd() issues a special drive command, usually
863 * initiated by ioctl() from the external hdparm program. The
864 * command can be a drive command, drive task or taskfile
865 * operation. Weirdly you can call it with NULL to wait for
866 * all commands to finish. Don't do this as that is due to change
867 */
868
869static ide_startstop_t execute_drive_cmd (ide_drive_t *drive,
870 struct request *rq)
871{
872 ide_hwif_t *hwif = HWIF(drive);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200873 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 ide_task_t *args = rq->special;
875
876 if (!args)
877 goto done;
878
879 hwif->data_phase = args->data_phase;
880
881 switch (hwif->data_phase) {
882 case TASKFILE_MULTI_OUT:
883 case TASKFILE_OUT:
884 case TASKFILE_MULTI_IN:
885 case TASKFILE_IN:
886 ide_init_sg_cmd(drive, rq);
887 ide_map_sg(drive, rq);
888 default:
889 break;
890 }
891
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100892 if (args->tf_flags & IDE_TFLAG_FLAGGED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return flagged_taskfile(drive, args);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100894
895 args->tf_flags |= IDE_TFLAG_OUT_TF;
896 if (drive->addressing == 1)
897 args->tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_OUT_HOB);
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return do_rw_taskfile(drive, args);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200900 } else if (rq->cmd_type == REQ_TYPE_ATA_TASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 u8 *args = rq->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 if (!args)
904 goto done;
905#ifdef DEBUG
906 printk("%s: DRIVE_TASK_CMD ", drive->name);
907 printk("cmd=0x%02x ", args[0]);
908 printk("fr=0x%02x ", args[1]);
909 printk("ns=0x%02x ", args[2]);
910 printk("sc=0x%02x ", args[3]);
911 printk("lcyl=0x%02x ", args[4]);
912 printk("hcyl=0x%02x ", args[5]);
913 printk("sel=0x%02x\n", args[6]);
914#endif
915 hwif->OUTB(args[1], IDE_FEATURE_REG);
916 hwif->OUTB(args[3], IDE_SECTOR_REG);
917 hwif->OUTB(args[4], IDE_LCYL_REG);
918 hwif->OUTB(args[5], IDE_HCYL_REG);
Bartlomiej Zolnierkiewiczc1f50cb2007-11-13 22:09:15 +0100919 hwif->OUTB((args[6] & 0xEF)|drive->select.all, IDE_SELECT_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ide_cmd(drive, args[0], args[2], &drive_cmd_intr);
921 return ide_started;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200922 } else if (rq->cmd_type == REQ_TYPE_ATA_CMD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 u8 *args = rq->buffer;
924
925 if (!args)
926 goto done;
927#ifdef DEBUG
928 printk("%s: DRIVE_CMD ", drive->name);
929 printk("cmd=0x%02x ", args[0]);
930 printk("sc=0x%02x ", args[1]);
931 printk("fr=0x%02x ", args[2]);
932 printk("xx=0x%02x\n", args[3]);
933#endif
934 if (args[0] == WIN_SMART) {
935 hwif->OUTB(0x4f, IDE_LCYL_REG);
936 hwif->OUTB(0xc2, IDE_HCYL_REG);
937 hwif->OUTB(args[2],IDE_FEATURE_REG);
938 hwif->OUTB(args[1],IDE_SECTOR_REG);
939 ide_cmd(drive, args[0], args[3], &drive_cmd_intr);
940 return ide_started;
941 }
942 hwif->OUTB(args[2],IDE_FEATURE_REG);
943 ide_cmd(drive, args[0], args[1], &drive_cmd_intr);
944 return ide_started;
945 }
946
947done:
948 /*
949 * NULL is actually a valid way of waiting for
950 * all current requests to be flushed from the queue.
951 */
952#ifdef DEBUG
953 printk("%s: DRIVE_CMD (null)\n", drive->name);
954#endif
955 ide_end_drive_cmd(drive,
956 hwif->INB(IDE_STATUS_REG),
957 hwif->INB(IDE_ERROR_REG));
958 return ide_stopped;
959}
960
Jens Axboead3cadd2006-06-13 08:46:57 +0200961static void ide_check_pm_state(ide_drive_t *drive, struct request *rq)
962{
Jens Axboec00895a2006-09-30 20:29:12 +0200963 struct request_pm_state *pm = rq->data;
Jens Axboead3cadd2006-06-13 08:46:57 +0200964
965 if (blk_pm_suspend_request(rq) &&
966 pm->pm_step == ide_pm_state_start_suspend)
967 /* Mark drive blocked when starting the suspend sequence. */
968 drive->blocked = 1;
969 else if (blk_pm_resume_request(rq) &&
970 pm->pm_step == ide_pm_state_start_resume) {
971 /*
972 * The first thing we do on wakeup is to wait for BSY bit to
973 * go away (with a looong timeout) as a drive on this hwif may
974 * just be POSTing itself.
975 * We do that before even selecting as the "other" device on
976 * the bus may be broken enough to walk on our toes at this
977 * point.
978 */
979 int rc;
980#ifdef DEBUG_PM
981 printk("%s: Wakeup request inited, waiting for !BSY...\n", drive->name);
982#endif
983 rc = ide_wait_not_busy(HWIF(drive), 35000);
984 if (rc)
985 printk(KERN_WARNING "%s: bus not ready on wakeup\n", drive->name);
986 SELECT_DRIVE(drive);
Bartlomiej Zolnierkiewiczad0e74d2007-12-12 23:31:57 +0100987 if (IDE_CONTROL_REG)
988 HWIF(drive)->OUTB(drive->ctl, IDE_CONTROL_REG);
Al Boldi178184b2006-06-26 00:26:13 -0700989 rc = ide_wait_not_busy(HWIF(drive), 100000);
Jens Axboead3cadd2006-06-13 08:46:57 +0200990 if (rc)
991 printk(KERN_WARNING "%s: drive not ready on wakeup\n", drive->name);
992 }
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995/**
996 * start_request - start of I/O and command issuing for IDE
997 *
998 * start_request() initiates handling of a new I/O request. It
999 * accepts commands and I/O (read/write) requests. It also does
1000 * the final remapping for weird stuff like EZDrive. Once
1001 * device mapper can work sector level the EZDrive stuff can go away
1002 *
1003 * FIXME: this function needs a rename
1004 */
1005
1006static ide_startstop_t start_request (ide_drive_t *drive, struct request *rq)
1007{
1008 ide_startstop_t startstop;
1009 sector_t block;
1010
Jens Axboe4aff5e22006-08-10 08:44:47 +02001011 BUG_ON(!blk_rq_started(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013#ifdef DEBUG
1014 printk("%s: start_request: current=0x%08lx\n",
1015 HWIF(drive)->name, (unsigned long) rq);
1016#endif
1017
1018 /* bail early if we've exceeded max_failures */
1019 if (drive->max_failures && (drive->failures > drive->max_failures)) {
Aristeu Rozanskib5e1a4e2008-01-25 22:17:04 +01001020 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 goto kill_rq;
1022 }
1023
1024 block = rq->sector;
1025 if (blk_fs_request(rq) &&
1026 (drive->media == ide_disk || drive->media == ide_floppy)) {
1027 block += drive->sect0;
1028 }
1029 /* Yecch - this will shift the entire interval,
1030 possibly killing some innocent following sector */
1031 if (block == 0 && drive->remap_0_to_1 == 1)
1032 block = 1; /* redirect MBR access to EZ-Drive partn table */
1033
Jens Axboead3cadd2006-06-13 08:46:57 +02001034 if (blk_pm_request(rq))
1035 ide_check_pm_state(drive, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 SELECT_DRIVE(drive);
1038 if (ide_wait_stat(&startstop, drive, drive->ready_stat, BUSY_STAT|DRQ_STAT, WAIT_READY)) {
1039 printk(KERN_ERR "%s: drive not ready for command\n", drive->name);
1040 return startstop;
1041 }
1042 if (!drive->special.all) {
1043 ide_driver_t *drv;
1044
Suleiman Souhlal513daad2007-03-26 23:03:20 +02001045 /*
1046 * We reset the drive so we need to issue a SETFEATURES.
1047 * Do it _after_ do_special() restored device parameters.
1048 */
1049 if (drive->current_speed == 0xff)
1050 ide_config_drive_speed(drive, drive->desired_speed);
1051
Jens Axboe4aff5e22006-08-10 08:44:47 +02001052 if (rq->cmd_type == REQ_TYPE_ATA_CMD ||
1053 rq->cmd_type == REQ_TYPE_ATA_TASK ||
1054 rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return execute_drive_cmd(drive, rq);
1056 else if (blk_pm_request(rq)) {
Jens Axboec00895a2006-09-30 20:29:12 +02001057 struct request_pm_state *pm = rq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058#ifdef DEBUG_PM
1059 printk("%s: start_power_step(step: %d)\n",
1060 drive->name, rq->pm->pm_step);
1061#endif
1062 startstop = ide_start_power_step(drive, rq);
1063 if (startstop == ide_stopped &&
Jens Axboead3cadd2006-06-13 08:46:57 +02001064 pm->pm_step == ide_pm_state_completed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 ide_complete_pm_request(drive, rq);
1066 return startstop;
1067 }
1068
1069 drv = *(ide_driver_t **)rq->rq_disk->private_data;
1070 return drv->do_request(drive, rq, block);
1071 }
1072 return do_special(drive);
1073kill_rq:
1074 ide_kill_rq(drive, rq);
1075 return ide_stopped;
1076}
1077
1078/**
1079 * ide_stall_queue - pause an IDE device
1080 * @drive: drive to stall
1081 * @timeout: time to stall for (jiffies)
1082 *
1083 * ide_stall_queue() can be used by a drive to give excess bandwidth back
1084 * to the hwgroup by sleeping for timeout jiffies.
1085 */
1086
1087void ide_stall_queue (ide_drive_t *drive, unsigned long timeout)
1088{
1089 if (timeout > WAIT_WORSTCASE)
1090 timeout = WAIT_WORSTCASE;
1091 drive->sleep = timeout + jiffies;
1092 drive->sleeping = 1;
1093}
1094
1095EXPORT_SYMBOL(ide_stall_queue);
1096
1097#define WAKEUP(drive) ((drive)->service_start + 2 * (drive)->service_time)
1098
1099/**
1100 * choose_drive - select a drive to service
1101 * @hwgroup: hardware group to select on
1102 *
1103 * choose_drive() selects the next drive which will be serviced.
1104 * This is necessary because the IDE layer can't issue commands
1105 * to both drives on the same cable, unlike SCSI.
1106 */
1107
1108static inline ide_drive_t *choose_drive (ide_hwgroup_t *hwgroup)
1109{
1110 ide_drive_t *drive, *best;
1111
1112repeat:
1113 best = NULL;
1114 drive = hwgroup->drive;
1115
1116 /*
1117 * drive is doing pre-flush, ordered write, post-flush sequence. even
1118 * though that is 3 requests, it must be seen as a single transaction.
1119 * we must not preempt this drive until that is complete
1120 */
1121 if (blk_queue_flushing(drive->queue)) {
1122 /*
1123 * small race where queue could get replugged during
1124 * the 3-request flush cycle, just yank the plug since
1125 * we want it to finish asap
1126 */
1127 blk_remove_plug(drive->queue);
1128 return drive;
1129 }
1130
1131 do {
1132 if ((!drive->sleeping || time_after_eq(jiffies, drive->sleep))
1133 && !elv_queue_empty(drive->queue)) {
1134 if (!best
1135 || (drive->sleeping && (!best->sleeping || time_before(drive->sleep, best->sleep)))
1136 || (!best->sleeping && time_before(WAKEUP(drive), WAKEUP(best))))
1137 {
1138 if (!blk_queue_plugged(drive->queue))
1139 best = drive;
1140 }
1141 }
1142 } while ((drive = drive->next) != hwgroup->drive);
1143 if (best && best->nice1 && !best->sleeping && best != hwgroup->drive && best->service_time > WAIT_MIN_SLEEP) {
1144 long t = (signed long)(WAKEUP(best) - jiffies);
1145 if (t >= WAIT_MIN_SLEEP) {
1146 /*
1147 * We *may* have some time to spare, but first let's see if
1148 * someone can potentially benefit from our nice mood today..
1149 */
1150 drive = best->next;
1151 do {
1152 if (!drive->sleeping
1153 && time_before(jiffies - best->service_time, WAKEUP(drive))
1154 && time_before(WAKEUP(drive), jiffies + t))
1155 {
1156 ide_stall_queue(best, min_t(long, t, 10 * WAIT_MIN_SLEEP));
1157 goto repeat;
1158 }
1159 } while ((drive = drive->next) != best);
1160 }
1161 }
1162 return best;
1163}
1164
1165/*
1166 * Issue a new request to a drive from hwgroup
1167 * Caller must have already done spin_lock_irqsave(&ide_lock, ..);
1168 *
1169 * A hwgroup is a serialized group of IDE interfaces. Usually there is
1170 * exactly one hwif (interface) per hwgroup, but buggy controllers (eg. CMD640)
1171 * may have both interfaces in a single hwgroup to "serialize" access.
1172 * Or possibly multiple ISA interfaces can share a common IRQ by being grouped
1173 * together into one hwgroup for serialized access.
1174 *
1175 * Note also that several hwgroups can end up sharing a single IRQ,
1176 * possibly along with many other devices. This is especially common in
1177 * PCI-based systems with off-board IDE controller cards.
1178 *
1179 * The IDE driver uses the single global ide_lock spinlock to protect
1180 * access to the request queues, and to protect the hwgroup->busy flag.
1181 *
1182 * The first thread into the driver for a particular hwgroup sets the
1183 * hwgroup->busy flag to indicate that this hwgroup is now active,
1184 * and then initiates processing of the top request from the request queue.
1185 *
1186 * Other threads attempting entry notice the busy setting, and will simply
1187 * queue their new requests and exit immediately. Note that hwgroup->busy
1188 * remains set even when the driver is merely awaiting the next interrupt.
1189 * Thus, the meaning is "this hwgroup is busy processing a request".
1190 *
1191 * When processing of a request completes, the completing thread or IRQ-handler
1192 * will start the next request from the queue. If no more work remains,
1193 * the driver will clear the hwgroup->busy flag and exit.
1194 *
1195 * The ide_lock (spinlock) is used to protect all access to the
1196 * hwgroup->busy flag, but is otherwise not needed for most processing in
1197 * the driver. This makes the driver much more friendlier to shared IRQs
1198 * than previous designs, while remaining 100% (?) SMP safe and capable.
1199 */
1200static void ide_do_request (ide_hwgroup_t *hwgroup, int masked_irq)
1201{
1202 ide_drive_t *drive;
1203 ide_hwif_t *hwif;
1204 struct request *rq;
1205 ide_startstop_t startstop;
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001206 int loops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /* for atari only: POSSIBLY BROKEN HERE(?) */
1209 ide_get_lock(ide_intr, hwgroup);
1210
1211 /* caller must own ide_lock */
1212 BUG_ON(!irqs_disabled());
1213
1214 while (!hwgroup->busy) {
1215 hwgroup->busy = 1;
1216 drive = choose_drive(hwgroup);
1217 if (drive == NULL) {
1218 int sleeping = 0;
1219 unsigned long sleep = 0; /* shut up, gcc */
1220 hwgroup->rq = NULL;
1221 drive = hwgroup->drive;
1222 do {
1223 if (drive->sleeping && (!sleeping || time_before(drive->sleep, sleep))) {
1224 sleeping = 1;
1225 sleep = drive->sleep;
1226 }
1227 } while ((drive = drive->next) != hwgroup->drive);
1228 if (sleeping) {
1229 /*
1230 * Take a short snooze, and then wake up this hwgroup again.
1231 * This gives other hwgroups on the same a chance to
1232 * play fairly with us, just in case there are big differences
1233 * in relative throughputs.. don't want to hog the cpu too much.
1234 */
1235 if (time_before(sleep, jiffies + WAIT_MIN_SLEEP))
1236 sleep = jiffies + WAIT_MIN_SLEEP;
1237#if 1
1238 if (timer_pending(&hwgroup->timer))
1239 printk(KERN_CRIT "ide_set_handler: timer already active\n");
1240#endif
1241 /* so that ide_timer_expiry knows what to do */
1242 hwgroup->sleeping = 1;
Suleiman Souhlal23450312007-04-10 22:38:37 +02001243 hwgroup->req_gen_timer = hwgroup->req_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 mod_timer(&hwgroup->timer, sleep);
1245 /* we purposely leave hwgroup->busy==1
1246 * while sleeping */
1247 } else {
1248 /* Ugly, but how can we sleep for the lock
1249 * otherwise? perhaps from tq_disk?
1250 */
1251
1252 /* for atari only */
1253 ide_release_lock();
1254 hwgroup->busy = 0;
1255 }
1256
1257 /* no more work for this hwgroup (for now) */
1258 return;
1259 }
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001260 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 hwif = HWIF(drive);
1262 if (hwgroup->hwif->sharing_irq &&
1263 hwif != hwgroup->hwif &&
1264 hwif->io_ports[IDE_CONTROL_OFFSET]) {
1265 /* set nIEN for previous hwif */
1266 SELECT_INTERRUPT(drive);
1267 }
1268 hwgroup->hwif = hwif;
1269 hwgroup->drive = drive;
1270 drive->sleeping = 0;
1271 drive->service_start = jiffies;
1272
1273 if (blk_queue_plugged(drive->queue)) {
1274 printk(KERN_ERR "ide: huh? queue was plugged!\n");
1275 break;
1276 }
1277
1278 /*
1279 * we know that the queue isn't empty, but this can happen
1280 * if the q->prep_rq_fn() decides to kill a request
1281 */
1282 rq = elv_next_request(drive->queue);
1283 if (!rq) {
1284 hwgroup->busy = 0;
1285 break;
1286 }
1287
1288 /*
1289 * Sanity: don't accept a request that isn't a PM request
1290 * if we are currently power managed. This is very important as
1291 * blk_stop_queue() doesn't prevent the elv_next_request()
1292 * above to return us whatever is in the queue. Since we call
1293 * ide_do_request() ourselves, we end up taking requests while
1294 * the queue is blocked...
1295 *
1296 * We let requests forced at head of queue with ide-preempt
1297 * though. I hope that doesn't happen too much, hopefully not
1298 * unless the subdriver triggers such a thing in its own PM
1299 * state machine.
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001300 *
1301 * We count how many times we loop here to make sure we service
1302 * all drives in the hwgroup without looping for ever
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001304 if (drive->blocked && !blk_pm_request(rq) && !(rq->cmd_flags & REQ_PREEMPT)) {
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001305 drive = drive->next ? drive->next : hwgroup->drive;
1306 if (loops++ < 4 && !blk_queue_plugged(drive->queue))
1307 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 /* We clear busy, there should be no pending ATA command at this point. */
1309 hwgroup->busy = 0;
1310 break;
1311 }
1312
1313 hwgroup->rq = rq;
1314
1315 /*
1316 * Some systems have trouble with IDE IRQs arriving while
1317 * the driver is still setting things up. So, here we disable
1318 * the IRQ used by this interface while the request is being started.
1319 * This may look bad at first, but pretty much the same thing
1320 * happens anyway when any interrupt comes in, IDE or otherwise
1321 * -- the kernel masks the IRQ while it is being handled.
1322 */
1323 if (masked_irq != IDE_NO_IRQ && hwif->irq != masked_irq)
1324 disable_irq_nosync(hwif->irq);
1325 spin_unlock(&ide_lock);
Ingo Molnar366c7f52006-07-03 00:25:25 -07001326 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /* allow other IRQs while we start this request */
1328 startstop = start_request(drive, rq);
1329 spin_lock_irq(&ide_lock);
1330 if (masked_irq != IDE_NO_IRQ && hwif->irq != masked_irq)
1331 enable_irq(hwif->irq);
1332 if (startstop == ide_stopped)
1333 hwgroup->busy = 0;
1334 }
1335}
1336
1337/*
1338 * Passes the stuff to ide_do_request
1339 */
Jens Axboe165125e2007-07-24 09:28:11 +02001340void do_ide_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 ide_drive_t *drive = q->queuedata;
1343
1344 ide_do_request(HWGROUP(drive), IDE_NO_IRQ);
1345}
1346
1347/*
1348 * un-busy the hwgroup etc, and clear any pending DMA status. we want to
1349 * retry the current request in pio mode instead of risking tossing it
1350 * all away
1351 */
1352static ide_startstop_t ide_dma_timeout_retry(ide_drive_t *drive, int error)
1353{
1354 ide_hwif_t *hwif = HWIF(drive);
1355 struct request *rq;
1356 ide_startstop_t ret = ide_stopped;
1357
1358 /*
1359 * end current dma transaction
1360 */
1361
1362 if (error < 0) {
1363 printk(KERN_WARNING "%s: DMA timeout error\n", drive->name);
1364 (void)HWIF(drive)->ide_dma_end(drive);
1365 ret = ide_error(drive, "dma timeout error",
1366 hwif->INB(IDE_STATUS_REG));
1367 } else {
1368 printk(KERN_WARNING "%s: DMA timeout retry\n", drive->name);
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +02001369 hwif->dma_timeout(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371
1372 /*
1373 * disable dma for now, but remember that we did so because of
1374 * a timeout -- we'll reenable after we finish this next request
1375 * (or rather the first chunk of it) in pio.
1376 */
1377 drive->retry_pio++;
1378 drive->state = DMA_PIO_RETRY;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001379 hwif->dma_off_quietly(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /*
1382 * un-busy drive etc (hwgroup->busy is cleared on return) and
1383 * make sure request is sane
1384 */
1385 rq = HWGROUP(drive)->rq;
Hua Zhongce42f192006-10-03 01:14:15 -07001386
1387 if (!rq)
1388 goto out;
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 HWGROUP(drive)->rq = NULL;
1391
1392 rq->errors = 0;
1393
1394 if (!rq->bio)
1395 goto out;
1396
1397 rq->sector = rq->bio->bi_sector;
1398 rq->current_nr_sectors = bio_iovec(rq->bio)->bv_len >> 9;
1399 rq->hard_cur_sectors = rq->current_nr_sectors;
1400 rq->buffer = bio_data(rq->bio);
1401out:
1402 return ret;
1403}
1404
1405/**
1406 * ide_timer_expiry - handle lack of an IDE interrupt
1407 * @data: timer callback magic (hwgroup)
1408 *
1409 * An IDE command has timed out before the expected drive return
1410 * occurred. At this point we attempt to clean up the current
1411 * mess. If the current handler includes an expiry handler then
1412 * we invoke the expiry handler, and providing it is happy the
1413 * work is done. If that fails we apply generic recovery rules
1414 * invoking the handler and checking the drive DMA status. We
1415 * have an excessively incestuous relationship with the DMA
1416 * logic that wants cleaning up.
1417 */
1418
1419void ide_timer_expiry (unsigned long data)
1420{
1421 ide_hwgroup_t *hwgroup = (ide_hwgroup_t *) data;
1422 ide_handler_t *handler;
1423 ide_expiry_t *expiry;
1424 unsigned long flags;
1425 unsigned long wait = -1;
1426
1427 spin_lock_irqsave(&ide_lock, flags);
1428
Suleiman Souhlal23450312007-04-10 22:38:37 +02001429 if (((handler = hwgroup->handler) == NULL) ||
1430 (hwgroup->req_gen != hwgroup->req_gen_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /*
1432 * Either a marginal timeout occurred
1433 * (got the interrupt just as timer expired),
1434 * or we were "sleeping" to give other devices a chance.
1435 * Either way, we don't really want to complain about anything.
1436 */
1437 if (hwgroup->sleeping) {
1438 hwgroup->sleeping = 0;
1439 hwgroup->busy = 0;
1440 }
1441 } else {
1442 ide_drive_t *drive = hwgroup->drive;
1443 if (!drive) {
1444 printk(KERN_ERR "ide_timer_expiry: hwgroup->drive was NULL\n");
1445 hwgroup->handler = NULL;
1446 } else {
1447 ide_hwif_t *hwif;
1448 ide_startstop_t startstop = ide_stopped;
1449 if (!hwgroup->busy) {
1450 hwgroup->busy = 1; /* paranoia */
1451 printk(KERN_ERR "%s: ide_timer_expiry: hwgroup->busy was 0 ??\n", drive->name);
1452 }
1453 if ((expiry = hwgroup->expiry) != NULL) {
1454 /* continue */
1455 if ((wait = expiry(drive)) > 0) {
1456 /* reset timer */
1457 hwgroup->timer.expires = jiffies + wait;
Suleiman Souhlal23450312007-04-10 22:38:37 +02001458 hwgroup->req_gen_timer = hwgroup->req_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 add_timer(&hwgroup->timer);
1460 spin_unlock_irqrestore(&ide_lock, flags);
1461 return;
1462 }
1463 }
1464 hwgroup->handler = NULL;
1465 /*
1466 * We need to simulate a real interrupt when invoking
1467 * the handler() function, which means we need to
1468 * globally mask the specific IRQ:
1469 */
1470 spin_unlock(&ide_lock);
1471 hwif = HWIF(drive);
1472#if DISABLE_IRQ_NOSYNC
1473 disable_irq_nosync(hwif->irq);
1474#else
1475 /* disable_irq_nosync ?? */
1476 disable_irq(hwif->irq);
1477#endif /* DISABLE_IRQ_NOSYNC */
1478 /* local CPU only,
1479 * as if we were handling an interrupt */
1480 local_irq_disable();
1481 if (hwgroup->polling) {
1482 startstop = handler(drive);
1483 } else if (drive_is_ready(drive)) {
1484 if (drive->waiting_for_dma)
Sergei Shtylyov841d2a92007-07-09 23:17:54 +02001485 hwgroup->hwif->dma_lost_irq(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 (void)ide_ack_intr(hwif);
1487 printk(KERN_WARNING "%s: lost interrupt\n", drive->name);
1488 startstop = handler(drive);
1489 } else {
1490 if (drive->waiting_for_dma) {
1491 startstop = ide_dma_timeout_retry(drive, wait);
1492 } else
1493 startstop =
1494 ide_error(drive, "irq timeout", hwif->INB(IDE_STATUS_REG));
1495 }
1496 drive->service_time = jiffies - drive->service_start;
1497 spin_lock_irq(&ide_lock);
1498 enable_irq(hwif->irq);
1499 if (startstop == ide_stopped)
1500 hwgroup->busy = 0;
1501 }
1502 }
1503 ide_do_request(hwgroup, IDE_NO_IRQ);
1504 spin_unlock_irqrestore(&ide_lock, flags);
1505}
1506
1507/**
1508 * unexpected_intr - handle an unexpected IDE interrupt
1509 * @irq: interrupt line
1510 * @hwgroup: hwgroup being processed
1511 *
1512 * There's nothing really useful we can do with an unexpected interrupt,
1513 * other than reading the status register (to clear it), and logging it.
1514 * There should be no way that an irq can happen before we're ready for it,
1515 * so we needn't worry much about losing an "important" interrupt here.
1516 *
1517 * On laptops (and "green" PCs), an unexpected interrupt occurs whenever
1518 * the drive enters "idle", "standby", or "sleep" mode, so if the status
1519 * looks "good", we just ignore the interrupt completely.
1520 *
1521 * This routine assumes __cli() is in effect when called.
1522 *
1523 * If an unexpected interrupt happens on irq15 while we are handling irq14
1524 * and if the two interfaces are "serialized" (CMD640), then it looks like
1525 * we could screw up by interfering with a new request being set up for
1526 * irq15.
1527 *
1528 * In reality, this is a non-issue. The new command is not sent unless
1529 * the drive is ready to accept one, in which case we know the drive is
1530 * not trying to interrupt us. And ide_set_handler() is always invoked
1531 * before completing the issuance of any new drive command, so we will not
1532 * be accidentally invoked as a result of any valid command completion
1533 * interrupt.
1534 *
1535 * Note that we must walk the entire hwgroup here. We know which hwif
1536 * is doing the current command, but we don't know which hwif burped
1537 * mysteriously.
1538 */
1539
1540static void unexpected_intr (int irq, ide_hwgroup_t *hwgroup)
1541{
1542 u8 stat;
1543 ide_hwif_t *hwif = hwgroup->hwif;
1544
1545 /*
1546 * handle the unexpected interrupt
1547 */
1548 do {
1549 if (hwif->irq == irq) {
1550 stat = hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
1551 if (!OK_STAT(stat, READY_STAT, BAD_STAT)) {
1552 /* Try to not flood the console with msgs */
1553 static unsigned long last_msgtime, count;
1554 ++count;
1555 if (time_after(jiffies, last_msgtime + HZ)) {
1556 last_msgtime = jiffies;
1557 printk(KERN_ERR "%s%s: unexpected interrupt, "
1558 "status=0x%02x, count=%ld\n",
1559 hwif->name,
1560 (hwif->next==hwgroup->hwif) ? "" : "(?)", stat, count);
1561 }
1562 }
1563 }
1564 } while ((hwif = hwif->next) != hwgroup->hwif);
1565}
1566
1567/**
1568 * ide_intr - default IDE interrupt handler
1569 * @irq: interrupt number
1570 * @dev_id: hwif group
1571 * @regs: unused weirdness from the kernel irq layer
1572 *
1573 * This is the default IRQ handler for the IDE layer. You should
1574 * not need to override it. If you do be aware it is subtle in
1575 * places
1576 *
1577 * hwgroup->hwif is the interface in the group currently performing
1578 * a command. hwgroup->drive is the drive and hwgroup->handler is
1579 * the IRQ handler to call. As we issue a command the handlers
1580 * step through multiple states, reassigning the handler to the
1581 * next step in the process. Unlike a smart SCSI controller IDE
1582 * expects the main processor to sequence the various transfer
1583 * stages. We also manage a poll timer to catch up with most
1584 * timeout situations. There are still a few where the handlers
1585 * don't ever decide to give up.
1586 *
1587 * The handler eventually returns ide_stopped to indicate the
1588 * request completed. At this point we issue the next request
1589 * on the hwgroup and the process begins again.
1590 */
1591
David Howells7d12e782006-10-05 14:55:46 +01001592irqreturn_t ide_intr (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 unsigned long flags;
1595 ide_hwgroup_t *hwgroup = (ide_hwgroup_t *)dev_id;
1596 ide_hwif_t *hwif;
1597 ide_drive_t *drive;
1598 ide_handler_t *handler;
1599 ide_startstop_t startstop;
1600
1601 spin_lock_irqsave(&ide_lock, flags);
1602 hwif = hwgroup->hwif;
1603
1604 if (!ide_ack_intr(hwif)) {
1605 spin_unlock_irqrestore(&ide_lock, flags);
1606 return IRQ_NONE;
1607 }
1608
1609 if ((handler = hwgroup->handler) == NULL || hwgroup->polling) {
1610 /*
1611 * Not expecting an interrupt from this drive.
1612 * That means this could be:
1613 * (1) an interrupt from another PCI device
1614 * sharing the same PCI INT# as us.
1615 * or (2) a drive just entered sleep or standby mode,
1616 * and is interrupting to let us know.
1617 * or (3) a spurious interrupt of unknown origin.
1618 *
1619 * For PCI, we cannot tell the difference,
1620 * so in that case we just ignore it and hope it goes away.
1621 *
1622 * FIXME: unexpected_intr should be hwif-> then we can
1623 * remove all the ifdef PCI crap
1624 */
1625#ifdef CONFIG_BLK_DEV_IDEPCI
1626 if (hwif->pci_dev && !hwif->pci_dev->vendor)
1627#endif /* CONFIG_BLK_DEV_IDEPCI */
1628 {
1629 /*
1630 * Probably not a shared PCI interrupt,
1631 * so we can safely try to do something about it:
1632 */
1633 unexpected_intr(irq, hwgroup);
1634#ifdef CONFIG_BLK_DEV_IDEPCI
1635 } else {
1636 /*
1637 * Whack the status register, just in case
1638 * we have a leftover pending IRQ.
1639 */
1640 (void) hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
1641#endif /* CONFIG_BLK_DEV_IDEPCI */
1642 }
1643 spin_unlock_irqrestore(&ide_lock, flags);
1644 return IRQ_NONE;
1645 }
1646 drive = hwgroup->drive;
1647 if (!drive) {
1648 /*
1649 * This should NEVER happen, and there isn't much
1650 * we could do about it here.
1651 *
1652 * [Note - this can occur if the drive is hot unplugged]
1653 */
1654 spin_unlock_irqrestore(&ide_lock, flags);
1655 return IRQ_HANDLED;
1656 }
1657 if (!drive_is_ready(drive)) {
1658 /*
1659 * This happens regularly when we share a PCI IRQ with
1660 * another device. Unfortunately, it can also happen
1661 * with some buggy drives that trigger the IRQ before
1662 * their status register is up to date. Hopefully we have
1663 * enough advance overhead that the latter isn't a problem.
1664 */
1665 spin_unlock_irqrestore(&ide_lock, flags);
1666 return IRQ_NONE;
1667 }
1668 if (!hwgroup->busy) {
1669 hwgroup->busy = 1; /* paranoia */
1670 printk(KERN_ERR "%s: ide_intr: hwgroup->busy was 0 ??\n", drive->name);
1671 }
1672 hwgroup->handler = NULL;
Suleiman Souhlal23450312007-04-10 22:38:37 +02001673 hwgroup->req_gen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 del_timer(&hwgroup->timer);
1675 spin_unlock(&ide_lock);
1676
Albert Leef0dd8712007-02-17 02:40:21 +01001677 /* Some controllers might set DMA INTR no matter DMA or PIO;
1678 * bmdma status might need to be cleared even for
1679 * PIO interrupts to prevent spurious/lost irq.
1680 */
1681 if (hwif->ide_dma_clear_irq && !(drive->waiting_for_dma))
1682 /* ide_dma_end() needs bmdma status for error checking.
1683 * So, skip clearing bmdma status here and leave it
1684 * to ide_dma_end() if this is dma interrupt.
1685 */
1686 hwif->ide_dma_clear_irq(drive);
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (drive->unmask)
Ingo Molnar366c7f52006-07-03 00:25:25 -07001689 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 /* service this interrupt, may set handler for next interrupt */
1691 startstop = handler(drive);
1692 spin_lock_irq(&ide_lock);
1693
1694 /*
1695 * Note that handler() may have set things up for another
1696 * interrupt to occur soon, but it cannot happen until
1697 * we exit from this routine, because it will be the
1698 * same irq as is currently being serviced here, and Linux
1699 * won't allow another of the same (on any CPU) until we return.
1700 */
1701 drive->service_time = jiffies - drive->service_start;
1702 if (startstop == ide_stopped) {
1703 if (hwgroup->handler == NULL) { /* paranoia */
1704 hwgroup->busy = 0;
1705 ide_do_request(hwgroup, hwif->irq);
1706 } else {
1707 printk(KERN_ERR "%s: ide_intr: huh? expected NULL handler "
1708 "on exit\n", drive->name);
1709 }
1710 }
1711 spin_unlock_irqrestore(&ide_lock, flags);
1712 return IRQ_HANDLED;
1713}
1714
1715/**
1716 * ide_init_drive_cmd - initialize a drive command request
1717 * @rq: request object
1718 *
1719 * Initialize a request before we fill it in and send it down to
1720 * ide_do_drive_cmd. Commands must be set up by this function. Right
1721 * now it doesn't do a lot, but if that changes abusers will have a
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001722 * nasty surprise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 */
1724
1725void ide_init_drive_cmd (struct request *rq)
1726{
1727 memset(rq, 0, sizeof(*rq));
Jens Axboe4aff5e22006-08-10 08:44:47 +02001728 rq->cmd_type = REQ_TYPE_ATA_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 rq->ref_count = 1;
1730}
1731
1732EXPORT_SYMBOL(ide_init_drive_cmd);
1733
1734/**
1735 * ide_do_drive_cmd - issue IDE special command
1736 * @drive: device to issue command
1737 * @rq: request to issue
1738 * @action: action for processing
1739 *
1740 * This function issues a special IDE device request
1741 * onto the request queue.
1742 *
1743 * If action is ide_wait, then the rq is queued at the end of the
1744 * request queue, and the function sleeps until it has been processed.
1745 * This is for use when invoked from an ioctl handler.
1746 *
1747 * If action is ide_preempt, then the rq is queued at the head of
1748 * the request queue, displacing the currently-being-processed
1749 * request and this function returns immediately without waiting
1750 * for the new rq to be completed. This is VERY DANGEROUS, and is
1751 * intended for careful use by the ATAPI tape/cdrom driver code.
1752 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 * If action is ide_end, then the rq is queued at the end of the
1754 * request queue, and the function returns immediately without waiting
1755 * for the new rq to be completed. This is again intended for careful
1756 * use by the ATAPI tape/cdrom driver code.
1757 */
1758
1759int ide_do_drive_cmd (ide_drive_t *drive, struct request *rq, ide_action_t action)
1760{
1761 unsigned long flags;
1762 ide_hwgroup_t *hwgroup = HWGROUP(drive);
Ingo Molnar60be6b92006-07-03 00:25:26 -07001763 DECLARE_COMPLETION_ONSTACK(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 int where = ELEVATOR_INSERT_BACK, err;
1765 int must_wait = (action == ide_wait || action == ide_head_wait);
1766
1767 rq->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 /*
1770 * we need to hold an extra reference to request for safe inspection
1771 * after completion
1772 */
1773 if (must_wait) {
1774 rq->ref_count++;
Jens Axboec00895a2006-09-30 20:29:12 +02001775 rq->end_io_data = &wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 rq->end_io = blk_end_sync_rq;
1777 }
1778
1779 spin_lock_irqsave(&ide_lock, flags);
1780 if (action == ide_preempt)
1781 hwgroup->rq = NULL;
1782 if (action == ide_preempt || action == ide_head_wait) {
1783 where = ELEVATOR_INSERT_FRONT;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001784 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786 __elv_add_request(drive->queue, rq, where, 0);
1787 ide_do_request(hwgroup, IDE_NO_IRQ);
1788 spin_unlock_irqrestore(&ide_lock, flags);
1789
1790 err = 0;
1791 if (must_wait) {
1792 wait_for_completion(&wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (rq->errors)
1794 err = -EIO;
1795
1796 blk_put_request(rq);
1797 }
1798
1799 return err;
1800}
1801
1802EXPORT_SYMBOL(ide_do_drive_cmd);