blob: bb1b0a884cfca672d09b187bc696a41d41aadb9d [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))
192 args->tfRegister[IDE_COMMAND_OFFSET] = WIN_FLUSH_CACHE_EXT;
193 else
194 args->tfRegister[IDE_COMMAND_OFFSET] = WIN_FLUSH_CACHE;
195 args->command_type = IDE_DRIVE_TASK_NO_DATA;
196 args->handler = &task_no_data_intr;
197 return do_rw_taskfile(drive, args);
198
199 case idedisk_pm_standby: /* Suspend step 2 (standby) */
200 args->tfRegister[IDE_COMMAND_OFFSET] = WIN_STANDBYNOW1;
201 args->command_type = IDE_DRIVE_TASK_NO_DATA;
202 args->handler = &task_no_data_intr;
203 return do_rw_taskfile(drive, args);
204
Jason Lunz8c2c0112006-10-03 01:14:26 -0700205 case idedisk_pm_restore_pio: /* Resume step 1 (restore PIO) */
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200206 ide_set_max_pio(drive);
Bartlomiej Zolnierkiewicz317a46a2007-05-10 00:01:11 +0200207 /*
208 * skip idedisk_pm_idle for ATAPI devices
209 */
210 if (drive->media != ide_disk)
211 pm->pm_step = ide_pm_restore_dma;
212 else
213 ide_complete_power_step(drive, rq, 0, 0);
Jason Lunz8c2c0112006-10-03 01:14:26 -0700214 return ide_stopped;
215
216 case idedisk_pm_idle: /* Resume step 2 (idle) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 args->tfRegister[IDE_COMMAND_OFFSET] = WIN_IDLEIMMEDIATE;
218 args->command_type = IDE_DRIVE_TASK_NO_DATA;
219 args->handler = task_no_data_intr;
220 return do_rw_taskfile(drive, args);
221
Jason Lunz8c2c0112006-10-03 01:14:26 -0700222 case ide_pm_restore_dma: /* Resume step 3 (restore DMA) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /*
Bartlomiej Zolnierkiewicz0ae2e172007-10-16 22:29:55 +0200224 * Right now, all we do is call ide_set_dma(drive),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 * we could be smarter and check for current xfer_speed
226 * in struct drive etc...
227 */
Bartlomiej Zolnierkiewicz0ae2e172007-10-16 22:29:55 +0200228 if (drive->hwif->ide_dma_on == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 break;
Bartlomiej Zolnierkiewicz793a9722007-05-16 00:51:43 +0200230 drive->hwif->dma_off_quietly(drive);
Bartlomiej Zolnierkiewicz8987d212007-07-20 01:11:56 +0200231 /*
232 * TODO: respect ->using_dma setting
233 */
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100234 ide_set_dma(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
236 }
Jens Axboead3cadd2006-06-13 08:46:57 +0200237 pm->pm_step = ide_pm_state_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return ide_stopped;
239}
240
241/**
Alan Coxdbe217a2006-06-25 05:47:44 -0700242 * 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;
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +0200260 int ret;
Alan Coxdbe217a2006-06-25 05:47:44 -0700261
262 spin_lock_irqsave(&ide_lock, flags);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200263 BUG_ON(!blk_rq_started(rq));
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +0200264 ret = __ide_end_request(drive, rq, uptodate, nr_sectors << 9, 0);
Alan Coxdbe217a2006-06-25 05:47:44 -0700265 spin_unlock_irqrestore(&ide_lock, flags);
Bartlomiej Zolnierkiewiczbbc615b2007-10-20 00:32:36 +0200266
Alan Coxdbe217a2006-06-25 05:47:44 -0700267 return ret;
268}
269EXPORT_SYMBOL_GPL(ide_end_dequeued_request);
270
271
272/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * 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;
Tejun Heo8ffdc652006-01-06 09:49:03 +0100297 end_that_request_last(rq, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 spin_unlock_irqrestore(&ide_lock, flags);
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/**
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
Jens Axboe4aff5e22006-08-10 08:44:47 +0200325 if (rq->cmd_type == REQ_TYPE_ATA_CMD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 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 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200335 } else if (rq->cmd_type == REQ_TYPE_ATA_TASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 u8 *args = (u8 *) rq->buffer;
337 if (rq->errors == 0)
338 rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
339
340 if (args) {
341 args[0] = stat;
342 args[1] = err;
Bartlomiej Zolnierkiewicz1c11d242007-11-05 21:42:27 +0100343 /* be sure we're looking at the low order bits */
344 hwif->OUTB(drive->ctl & ~0x80, IDE_CONTROL_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 args[2] = hwif->INB(IDE_NSECTOR_REG);
346 args[3] = hwif->INB(IDE_SECTOR_REG);
347 args[4] = hwif->INB(IDE_LCYL_REG);
348 args[5] = hwif->INB(IDE_HCYL_REG);
349 args[6] = hwif->INB(IDE_SELECT_REG);
350 }
Jens Axboe4aff5e22006-08-10 08:44:47 +0200351 } else if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 ide_task_t *args = (ide_task_t *) rq->special;
353 if (rq->errors == 0)
354 rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
355
356 if (args) {
357 if (args->tf_in_flags.b.data) {
358 u16 data = hwif->INW(IDE_DATA_REG);
359 args->tfRegister[IDE_DATA_OFFSET] = (data) & 0xFF;
360 args->hobRegister[IDE_DATA_OFFSET] = (data >> 8) & 0xFF;
361 }
362 args->tfRegister[IDE_ERROR_OFFSET] = err;
363 /* be sure we're looking at the low order bits */
364 hwif->OUTB(drive->ctl & ~0x80, IDE_CONTROL_REG);
365 args->tfRegister[IDE_NSECTOR_OFFSET] = hwif->INB(IDE_NSECTOR_REG);
366 args->tfRegister[IDE_SECTOR_OFFSET] = hwif->INB(IDE_SECTOR_REG);
367 args->tfRegister[IDE_LCYL_OFFSET] = hwif->INB(IDE_LCYL_REG);
368 args->tfRegister[IDE_HCYL_OFFSET] = hwif->INB(IDE_HCYL_REG);
369 args->tfRegister[IDE_SELECT_OFFSET] = hwif->INB(IDE_SELECT_REG);
370 args->tfRegister[IDE_STATUS_OFFSET] = stat;
371
372 if (drive->addressing == 1) {
373 hwif->OUTB(drive->ctl|0x80, IDE_CONTROL_REG);
374 args->hobRegister[IDE_FEATURE_OFFSET] = hwif->INB(IDE_FEATURE_REG);
375 args->hobRegister[IDE_NSECTOR_OFFSET] = hwif->INB(IDE_NSECTOR_REG);
376 args->hobRegister[IDE_SECTOR_OFFSET] = hwif->INB(IDE_SECTOR_REG);
377 args->hobRegister[IDE_LCYL_OFFSET] = hwif->INB(IDE_LCYL_REG);
378 args->hobRegister[IDE_HCYL_OFFSET] = hwif->INB(IDE_HCYL_REG);
379 }
380 }
381 } else if (blk_pm_request(rq)) {
Jens Axboec00895a2006-09-30 20:29:12 +0200382 struct request_pm_state *pm = rq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#ifdef DEBUG_PM
384 printk("%s: complete_power_step(step: %d, stat: %x, err: %x)\n",
385 drive->name, rq->pm->pm_step, stat, err);
386#endif
387 ide_complete_power_step(drive, rq, stat, err);
Jens Axboead3cadd2006-06-13 08:46:57 +0200388 if (pm->pm_step == ide_pm_state_completed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 ide_complete_pm_request(drive, rq);
390 return;
391 }
392
393 spin_lock_irqsave(&ide_lock, flags);
394 blkdev_dequeue_request(rq);
395 HWGROUP(drive)->rq = NULL;
396 rq->errors = err;
Tejun Heo8ffdc652006-01-06 09:49:03 +0100397 end_that_request_last(rq, !rq->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 spin_unlock_irqrestore(&ide_lock, flags);
399}
400
401EXPORT_SYMBOL(ide_end_drive_cmd);
402
403/**
404 * try_to_flush_leftover_data - flush junk
405 * @drive: drive to flush
406 *
407 * try_to_flush_leftover_data() is invoked in response to a drive
408 * unexpectedly having its DRQ_STAT bit set. As an alternative to
409 * resetting the drive, this routine tries to clear the condition
410 * by read a sector's worth of data from the drive. Of course,
411 * this may not help if the drive is *waiting* for data from *us*.
412 */
413static void try_to_flush_leftover_data (ide_drive_t *drive)
414{
415 int i = (drive->mult_count ? drive->mult_count : 1) * SECTOR_WORDS;
416
417 if (drive->media != ide_disk)
418 return;
419 while (i > 0) {
420 u32 buffer[16];
421 u32 wcount = (i > 16) ? 16 : i;
422
423 i -= wcount;
424 HWIF(drive)->ata_input_data(drive, buffer, wcount);
425 }
426}
427
428static void ide_kill_rq(ide_drive_t *drive, struct request *rq)
429{
430 if (rq->rq_disk) {
431 ide_driver_t *drv;
432
433 drv = *(ide_driver_t **)rq->rq_disk->private_data;
434 drv->end_request(drive, 0, 0);
435 } else
436 ide_end_request(drive, 0, 0);
437}
438
439static ide_startstop_t ide_ata_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
440{
441 ide_hwif_t *hwif = drive->hwif;
442
443 if (stat & BUSY_STAT || ((stat & WRERR_STAT) && !drive->nowerr)) {
444 /* other bits are useless when BUSY */
445 rq->errors |= ERROR_RESET;
446 } else if (stat & ERR_STAT) {
447 /* err has different meaning on cdrom and tape */
448 if (err == ABRT_ERR) {
449 if (drive->select.b.lba &&
450 /* some newer drives don't support WIN_SPECIFY */
451 hwif->INB(IDE_COMMAND_REG) == WIN_SPECIFY)
452 return ide_stopped;
453 } else if ((err & BAD_CRC) == BAD_CRC) {
454 /* UDMA crc error, just retry the operation */
455 drive->crc_count++;
456 } else if (err & (BBD_ERR | ECC_ERR)) {
457 /* retries won't help these */
458 rq->errors = ERROR_MAX;
459 } else if (err & TRK0_ERR) {
460 /* help it find track zero */
461 rq->errors |= ERROR_RECAL;
462 }
463 }
464
Bartlomiej Zolnierkiewiczed67b922007-10-19 00:30:10 +0200465 if ((stat & DRQ_STAT) && rq_data_dir(rq) == READ &&
466 (hwif->host_flags & IDE_HFLAG_ERROR_STOPS_FIFO) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 try_to_flush_leftover_data(drive);
468
Suleiman Souhlal513daad2007-03-26 23:03:20 +0200469 if (rq->errors >= ERROR_MAX || blk_noretry_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 ide_kill_rq(drive, rq);
Suleiman Souhlal513daad2007-03-26 23:03:20 +0200471 return ide_stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Suleiman Souhlal513daad2007-03-26 23:03:20 +0200473
474 if (hwif->INB(IDE_STATUS_REG) & (BUSY_STAT|DRQ_STAT))
475 rq->errors |= ERROR_RESET;
476
477 if ((rq->errors & ERROR_RESET) == ERROR_RESET) {
478 ++rq->errors;
479 return ide_do_reset(drive);
480 }
481
482 if ((rq->errors & ERROR_RECAL) == ERROR_RECAL)
483 drive->special.b.recalibrate = 1;
484
485 ++rq->errors;
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return ide_stopped;
488}
489
490static ide_startstop_t ide_atapi_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
491{
492 ide_hwif_t *hwif = drive->hwif;
493
494 if (stat & BUSY_STAT || ((stat & WRERR_STAT) && !drive->nowerr)) {
495 /* other bits are useless when BUSY */
496 rq->errors |= ERROR_RESET;
497 } else {
498 /* add decoding error stuff */
499 }
500
501 if (hwif->INB(IDE_STATUS_REG) & (BUSY_STAT|DRQ_STAT))
502 /* force an abort */
503 hwif->OUTB(WIN_IDLEIMMEDIATE, IDE_COMMAND_REG);
504
505 if (rq->errors >= ERROR_MAX) {
506 ide_kill_rq(drive, rq);
507 } else {
508 if ((rq->errors & ERROR_RESET) == ERROR_RESET) {
509 ++rq->errors;
510 return ide_do_reset(drive);
511 }
512 ++rq->errors;
513 }
514
515 return ide_stopped;
516}
517
518ide_startstop_t
519__ide_error(ide_drive_t *drive, struct request *rq, u8 stat, u8 err)
520{
521 if (drive->media == ide_disk)
522 return ide_ata_error(drive, rq, stat, err);
523 return ide_atapi_error(drive, rq, stat, err);
524}
525
526EXPORT_SYMBOL_GPL(__ide_error);
527
528/**
529 * ide_error - handle an error on the IDE
530 * @drive: drive the error occurred on
531 * @msg: message to report
532 * @stat: status bits
533 *
534 * ide_error() takes action based on the error returned by the drive.
535 * For normal I/O that may well include retries. We deal with
536 * both new-style (taskfile) and old style command handling here.
537 * In the case of taskfile command handling there is work left to
538 * do
539 */
540
541ide_startstop_t ide_error (ide_drive_t *drive, const char *msg, u8 stat)
542{
543 struct request *rq;
544 u8 err;
545
546 err = ide_dump_status(drive, msg, stat);
547
548 if ((rq = HWGROUP(drive)->rq) == NULL)
549 return ide_stopped;
550
551 /* retry only "normal" I/O: */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200552 if (!blk_fs_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 rq->errors = 1;
554 ide_end_drive_cmd(drive, stat, err);
555 return ide_stopped;
556 }
557
558 if (rq->rq_disk) {
559 ide_driver_t *drv;
560
561 drv = *(ide_driver_t **)rq->rq_disk->private_data;
562 return drv->error(drive, rq, stat, err);
563 } else
564 return __ide_error(drive, rq, stat, err);
565}
566
567EXPORT_SYMBOL_GPL(ide_error);
568
569ide_startstop_t __ide_abort(ide_drive_t *drive, struct request *rq)
570{
571 if (drive->media != ide_disk)
572 rq->errors |= ERROR_RESET;
573
574 ide_kill_rq(drive, rq);
575
576 return ide_stopped;
577}
578
579EXPORT_SYMBOL_GPL(__ide_abort);
580
581/**
Adrian Bunk338cec32005-09-10 00:26:54 -0700582 * ide_abort - abort pending IDE operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * @drive: drive the error occurred on
584 * @msg: message to report
585 *
586 * ide_abort kills and cleans up when we are about to do a
587 * host initiated reset on active commands. Longer term we
588 * want handlers to have sensible abort handling themselves
589 *
590 * This differs fundamentally from ide_error because in
591 * this case the command is doing just fine when we
592 * blow it away.
593 */
594
595ide_startstop_t ide_abort(ide_drive_t *drive, const char *msg)
596{
597 struct request *rq;
598
599 if (drive == NULL || (rq = HWGROUP(drive)->rq) == NULL)
600 return ide_stopped;
601
602 /* retry only "normal" I/O: */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200603 if (!blk_fs_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 rq->errors = 1;
605 ide_end_drive_cmd(drive, BUSY_STAT, 0);
606 return ide_stopped;
607 }
608
609 if (rq->rq_disk) {
610 ide_driver_t *drv;
611
612 drv = *(ide_driver_t **)rq->rq_disk->private_data;
613 return drv->abort(drive, rq);
614 } else
615 return __ide_abort(drive, rq);
616}
617
618/**
619 * ide_cmd - issue a simple drive command
620 * @drive: drive the command is for
621 * @cmd: command byte
622 * @nsect: sector byte
623 * @handler: handler for the command completion
624 *
625 * Issue a simple drive command with interrupts.
626 * The drive must be selected beforehand.
627 */
628
629static void ide_cmd (ide_drive_t *drive, u8 cmd, u8 nsect,
630 ide_handler_t *handler)
631{
632 ide_hwif_t *hwif = HWIF(drive);
633 if (IDE_CONTROL_REG)
634 hwif->OUTB(drive->ctl,IDE_CONTROL_REG); /* clear nIEN */
635 SELECT_MASK(drive,0);
636 hwif->OUTB(nsect,IDE_NSECTOR_REG);
637 ide_execute_command(drive, cmd, handler, WAIT_CMD, NULL);
638}
639
640/**
641 * drive_cmd_intr - drive command completion interrupt
642 * @drive: drive the completion interrupt occurred on
643 *
644 * drive_cmd_intr() is invoked on completion of a special DRIVE_CMD.
Adrian Bunk338cec32005-09-10 00:26:54 -0700645 * We do any necessary data reading and then wait for the drive to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 * go non busy. At that point we may read the error data and complete
647 * the request
648 */
649
650static ide_startstop_t drive_cmd_intr (ide_drive_t *drive)
651{
652 struct request *rq = HWGROUP(drive)->rq;
653 ide_hwif_t *hwif = HWIF(drive);
654 u8 *args = (u8 *) rq->buffer;
655 u8 stat = hwif->INB(IDE_STATUS_REG);
656 int retries = 10;
657
Ingo Molnar366c7f52006-07-03 00:25:25 -0700658 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewicz320112b2007-11-05 21:42:26 +0100659 if (rq->cmd_type == REQ_TYPE_ATA_CMD &&
660 (stat & DRQ_STAT) && args && args[3]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 u8 io_32bit = drive->io_32bit;
662 drive->io_32bit = 0;
663 hwif->ata_input_data(drive, &args[4], args[3] * SECTOR_WORDS);
664 drive->io_32bit = io_32bit;
665 while (((stat = hwif->INB(IDE_STATUS_REG)) & BUSY_STAT) && retries--)
666 udelay(100);
667 }
668
669 if (!OK_STAT(stat, READY_STAT, BAD_STAT))
670 return ide_error(drive, "drive_cmd", stat);
671 /* calls ide_end_drive_cmd */
672 ide_end_drive_cmd(drive, stat, hwif->INB(IDE_ERROR_REG));
673 return ide_stopped;
674}
675
676static void ide_init_specify_cmd(ide_drive_t *drive, ide_task_t *task)
677{
678 task->tfRegister[IDE_NSECTOR_OFFSET] = drive->sect;
679 task->tfRegister[IDE_SECTOR_OFFSET] = drive->sect;
680 task->tfRegister[IDE_LCYL_OFFSET] = drive->cyl;
681 task->tfRegister[IDE_HCYL_OFFSET] = drive->cyl>>8;
682 task->tfRegister[IDE_SELECT_OFFSET] = ((drive->head-1)|drive->select.all)&0xBF;
683 task->tfRegister[IDE_COMMAND_OFFSET] = WIN_SPECIFY;
684
685 task->handler = &set_geometry_intr;
686}
687
688static void ide_init_restore_cmd(ide_drive_t *drive, ide_task_t *task)
689{
690 task->tfRegister[IDE_NSECTOR_OFFSET] = drive->sect;
691 task->tfRegister[IDE_COMMAND_OFFSET] = WIN_RESTORE;
692
693 task->handler = &recal_intr;
694}
695
696static void ide_init_setmult_cmd(ide_drive_t *drive, ide_task_t *task)
697{
698 task->tfRegister[IDE_NSECTOR_OFFSET] = drive->mult_req;
699 task->tfRegister[IDE_COMMAND_OFFSET] = WIN_SETMULT;
700
701 task->handler = &set_multmode_intr;
702}
703
704static ide_startstop_t ide_disk_special(ide_drive_t *drive)
705{
706 special_t *s = &drive->special;
707 ide_task_t args;
708
709 memset(&args, 0, sizeof(ide_task_t));
710 args.command_type = IDE_DRIVE_TASK_NO_DATA;
711
712 if (s->b.set_geometry) {
713 s->b.set_geometry = 0;
714 ide_init_specify_cmd(drive, &args);
715 } else if (s->b.recalibrate) {
716 s->b.recalibrate = 0;
717 ide_init_restore_cmd(drive, &args);
718 } else if (s->b.set_multmode) {
719 s->b.set_multmode = 0;
720 if (drive->mult_req > drive->id->max_multsect)
721 drive->mult_req = drive->id->max_multsect;
722 ide_init_setmult_cmd(drive, &args);
723 } else if (s->all) {
724 int special = s->all;
725 s->all = 0;
726 printk(KERN_ERR "%s: bad special flag: 0x%02x\n", drive->name, special);
727 return ide_stopped;
728 }
729
730 do_rw_taskfile(drive, &args);
731
732 return ide_started;
733}
734
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200735/*
736 * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away
737 */
738static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio)
739{
740 switch (req_pio) {
741 case 202:
742 case 201:
743 case 200:
744 case 102:
745 case 101:
746 case 100:
747 return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0;
748 case 9:
749 case 8:
750 return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0;
751 case 7:
752 case 6:
753 return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0;
754 default:
755 return 0;
756 }
757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759/**
760 * do_special - issue some special commands
761 * @drive: drive the command is for
762 *
763 * do_special() is used to issue WIN_SPECIFY, WIN_RESTORE, and WIN_SETMULT
764 * commands to a drive. It used to do much more, but has been scaled
765 * back.
766 */
767
768static ide_startstop_t do_special (ide_drive_t *drive)
769{
770 special_t *s = &drive->special;
771
772#ifdef DEBUG
773 printk("%s: do_special: 0x%02x\n", drive->name, s->all);
774#endif
775 if (s->b.set_tune) {
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200776 ide_hwif_t *hwif = drive->hwif;
777 u8 req_pio = drive->tune_req;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 s->b.set_tune = 0;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200780
781 if (set_pio_mode_abuse(drive->hwif, req_pio)) {
Bartlomiej Zolnierkiewiczd393aa02007-10-20 00:32:36 +0200782
783 if (hwif->set_pio_mode == NULL)
784 return ide_stopped;
785
786 /*
787 * take ide_lock for drive->[no_]unmask/[no_]io_32bit
788 */
789 if (req_pio == 8 || req_pio == 9) {
790 unsigned long flags;
791
792 spin_lock_irqsave(&ide_lock, flags);
793 hwif->set_pio_mode(drive, req_pio);
794 spin_unlock_irqrestore(&ide_lock, flags);
795 } else
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200796 hwif->set_pio_mode(drive, req_pio);
Bartlomiej Zolnierkiewiczaedea592007-10-13 17:47:50 +0200797 } else {
798 int keep_dma = drive->using_dma;
799
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200800 ide_set_pio(drive, req_pio);
801
Bartlomiej Zolnierkiewiczaedea592007-10-13 17:47:50 +0200802 if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) {
803 if (keep_dma)
804 hwif->ide_dma_on(drive);
805 }
806 }
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return ide_stopped;
809 } else {
810 if (drive->media == ide_disk)
811 return ide_disk_special(drive);
812
813 s->all = 0;
814 drive->mult_req = 0;
815 return ide_stopped;
816 }
817}
818
819void ide_map_sg(ide_drive_t *drive, struct request *rq)
820{
821 ide_hwif_t *hwif = drive->hwif;
822 struct scatterlist *sg = hwif->sg_table;
823
824 if (hwif->sg_mapped) /* needed by ide-scsi */
825 return;
826
Jens Axboe4aff5e22006-08-10 08:44:47 +0200827 if (rq->cmd_type != REQ_TYPE_ATA_TASKFILE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 hwif->sg_nents = blk_rq_map_sg(drive->queue, rq, sg);
829 } else {
830 sg_init_one(sg, rq->buffer, rq->nr_sectors * SECTOR_SIZE);
831 hwif->sg_nents = 1;
832 }
833}
834
835EXPORT_SYMBOL_GPL(ide_map_sg);
836
837void ide_init_sg_cmd(ide_drive_t *drive, struct request *rq)
838{
839 ide_hwif_t *hwif = drive->hwif;
840
841 hwif->nsect = hwif->nleft = rq->nr_sectors;
Jens Axboe55c16a72007-07-25 08:13:56 +0200842 hwif->cursg_ofs = 0;
843 hwif->cursg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846EXPORT_SYMBOL_GPL(ide_init_sg_cmd);
847
848/**
849 * execute_drive_command - issue special drive command
Adrian Bunk338cec32005-09-10 00:26:54 -0700850 * @drive: the drive to issue the command on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * @rq: the request structure holding the command
852 *
853 * execute_drive_cmd() issues a special drive command, usually
854 * initiated by ioctl() from the external hdparm program. The
855 * command can be a drive command, drive task or taskfile
856 * operation. Weirdly you can call it with NULL to wait for
857 * all commands to finish. Don't do this as that is due to change
858 */
859
860static ide_startstop_t execute_drive_cmd (ide_drive_t *drive,
861 struct request *rq)
862{
863 ide_hwif_t *hwif = HWIF(drive);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200864 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 ide_task_t *args = rq->special;
866
867 if (!args)
868 goto done;
869
870 hwif->data_phase = args->data_phase;
871
872 switch (hwif->data_phase) {
873 case TASKFILE_MULTI_OUT:
874 case TASKFILE_OUT:
875 case TASKFILE_MULTI_IN:
876 case TASKFILE_IN:
877 ide_init_sg_cmd(drive, rq);
878 ide_map_sg(drive, rq);
879 default:
880 break;
881 }
882
883 if (args->tf_out_flags.all != 0)
884 return flagged_taskfile(drive, args);
885 return do_rw_taskfile(drive, args);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200886 } else if (rq->cmd_type == REQ_TYPE_ATA_TASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 u8 *args = rq->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if (!args)
890 goto done;
891#ifdef DEBUG
892 printk("%s: DRIVE_TASK_CMD ", drive->name);
893 printk("cmd=0x%02x ", args[0]);
894 printk("fr=0x%02x ", args[1]);
895 printk("ns=0x%02x ", args[2]);
896 printk("sc=0x%02x ", args[3]);
897 printk("lcyl=0x%02x ", args[4]);
898 printk("hcyl=0x%02x ", args[5]);
899 printk("sel=0x%02x\n", args[6]);
900#endif
901 hwif->OUTB(args[1], IDE_FEATURE_REG);
902 hwif->OUTB(args[3], IDE_SECTOR_REG);
903 hwif->OUTB(args[4], IDE_LCYL_REG);
904 hwif->OUTB(args[5], IDE_HCYL_REG);
Bartlomiej Zolnierkiewiczc1f50cb2007-11-13 22:09:15 +0100905 hwif->OUTB((args[6] & 0xEF)|drive->select.all, IDE_SELECT_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 ide_cmd(drive, args[0], args[2], &drive_cmd_intr);
907 return ide_started;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200908 } else if (rq->cmd_type == REQ_TYPE_ATA_CMD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 u8 *args = rq->buffer;
910
911 if (!args)
912 goto done;
913#ifdef DEBUG
914 printk("%s: DRIVE_CMD ", drive->name);
915 printk("cmd=0x%02x ", args[0]);
916 printk("sc=0x%02x ", args[1]);
917 printk("fr=0x%02x ", args[2]);
918 printk("xx=0x%02x\n", args[3]);
919#endif
920 if (args[0] == WIN_SMART) {
921 hwif->OUTB(0x4f, IDE_LCYL_REG);
922 hwif->OUTB(0xc2, IDE_HCYL_REG);
923 hwif->OUTB(args[2],IDE_FEATURE_REG);
924 hwif->OUTB(args[1],IDE_SECTOR_REG);
925 ide_cmd(drive, args[0], args[3], &drive_cmd_intr);
926 return ide_started;
927 }
928 hwif->OUTB(args[2],IDE_FEATURE_REG);
929 ide_cmd(drive, args[0], args[1], &drive_cmd_intr);
930 return ide_started;
931 }
932
933done:
934 /*
935 * NULL is actually a valid way of waiting for
936 * all current requests to be flushed from the queue.
937 */
938#ifdef DEBUG
939 printk("%s: DRIVE_CMD (null)\n", drive->name);
940#endif
941 ide_end_drive_cmd(drive,
942 hwif->INB(IDE_STATUS_REG),
943 hwif->INB(IDE_ERROR_REG));
944 return ide_stopped;
945}
946
Jens Axboead3cadd2006-06-13 08:46:57 +0200947static void ide_check_pm_state(ide_drive_t *drive, struct request *rq)
948{
Jens Axboec00895a2006-09-30 20:29:12 +0200949 struct request_pm_state *pm = rq->data;
Jens Axboead3cadd2006-06-13 08:46:57 +0200950
951 if (blk_pm_suspend_request(rq) &&
952 pm->pm_step == ide_pm_state_start_suspend)
953 /* Mark drive blocked when starting the suspend sequence. */
954 drive->blocked = 1;
955 else if (blk_pm_resume_request(rq) &&
956 pm->pm_step == ide_pm_state_start_resume) {
957 /*
958 * The first thing we do on wakeup is to wait for BSY bit to
959 * go away (with a looong timeout) as a drive on this hwif may
960 * just be POSTing itself.
961 * We do that before even selecting as the "other" device on
962 * the bus may be broken enough to walk on our toes at this
963 * point.
964 */
965 int rc;
966#ifdef DEBUG_PM
967 printk("%s: Wakeup request inited, waiting for !BSY...\n", drive->name);
968#endif
969 rc = ide_wait_not_busy(HWIF(drive), 35000);
970 if (rc)
971 printk(KERN_WARNING "%s: bus not ready on wakeup\n", drive->name);
972 SELECT_DRIVE(drive);
Bartlomiej Zolnierkiewiczad0e74d2007-12-12 23:31:57 +0100973 if (IDE_CONTROL_REG)
974 HWIF(drive)->OUTB(drive->ctl, IDE_CONTROL_REG);
Al Boldi178184b2006-06-26 00:26:13 -0700975 rc = ide_wait_not_busy(HWIF(drive), 100000);
Jens Axboead3cadd2006-06-13 08:46:57 +0200976 if (rc)
977 printk(KERN_WARNING "%s: drive not ready on wakeup\n", drive->name);
978 }
979}
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981/**
982 * start_request - start of I/O and command issuing for IDE
983 *
984 * start_request() initiates handling of a new I/O request. It
985 * accepts commands and I/O (read/write) requests. It also does
986 * the final remapping for weird stuff like EZDrive. Once
987 * device mapper can work sector level the EZDrive stuff can go away
988 *
989 * FIXME: this function needs a rename
990 */
991
992static ide_startstop_t start_request (ide_drive_t *drive, struct request *rq)
993{
994 ide_startstop_t startstop;
995 sector_t block;
996
Jens Axboe4aff5e22006-08-10 08:44:47 +0200997 BUG_ON(!blk_rq_started(rq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999#ifdef DEBUG
1000 printk("%s: start_request: current=0x%08lx\n",
1001 HWIF(drive)->name, (unsigned long) rq);
1002#endif
1003
1004 /* bail early if we've exceeded max_failures */
1005 if (drive->max_failures && (drive->failures > drive->max_failures)) {
Aristeu Rozanskib5e1a4e2008-01-25 22:17:04 +01001006 rq->cmd_flags |= REQ_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 goto kill_rq;
1008 }
1009
1010 block = rq->sector;
1011 if (blk_fs_request(rq) &&
1012 (drive->media == ide_disk || drive->media == ide_floppy)) {
1013 block += drive->sect0;
1014 }
1015 /* Yecch - this will shift the entire interval,
1016 possibly killing some innocent following sector */
1017 if (block == 0 && drive->remap_0_to_1 == 1)
1018 block = 1; /* redirect MBR access to EZ-Drive partn table */
1019
Jens Axboead3cadd2006-06-13 08:46:57 +02001020 if (blk_pm_request(rq))
1021 ide_check_pm_state(drive, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 SELECT_DRIVE(drive);
1024 if (ide_wait_stat(&startstop, drive, drive->ready_stat, BUSY_STAT|DRQ_STAT, WAIT_READY)) {
1025 printk(KERN_ERR "%s: drive not ready for command\n", drive->name);
1026 return startstop;
1027 }
1028 if (!drive->special.all) {
1029 ide_driver_t *drv;
1030
Suleiman Souhlal513daad2007-03-26 23:03:20 +02001031 /*
1032 * We reset the drive so we need to issue a SETFEATURES.
1033 * Do it _after_ do_special() restored device parameters.
1034 */
1035 if (drive->current_speed == 0xff)
1036 ide_config_drive_speed(drive, drive->desired_speed);
1037
Jens Axboe4aff5e22006-08-10 08:44:47 +02001038 if (rq->cmd_type == REQ_TYPE_ATA_CMD ||
1039 rq->cmd_type == REQ_TYPE_ATA_TASK ||
1040 rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return execute_drive_cmd(drive, rq);
1042 else if (blk_pm_request(rq)) {
Jens Axboec00895a2006-09-30 20:29:12 +02001043 struct request_pm_state *pm = rq->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044#ifdef DEBUG_PM
1045 printk("%s: start_power_step(step: %d)\n",
1046 drive->name, rq->pm->pm_step);
1047#endif
1048 startstop = ide_start_power_step(drive, rq);
1049 if (startstop == ide_stopped &&
Jens Axboead3cadd2006-06-13 08:46:57 +02001050 pm->pm_step == ide_pm_state_completed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 ide_complete_pm_request(drive, rq);
1052 return startstop;
1053 }
1054
1055 drv = *(ide_driver_t **)rq->rq_disk->private_data;
1056 return drv->do_request(drive, rq, block);
1057 }
1058 return do_special(drive);
1059kill_rq:
1060 ide_kill_rq(drive, rq);
1061 return ide_stopped;
1062}
1063
1064/**
1065 * ide_stall_queue - pause an IDE device
1066 * @drive: drive to stall
1067 * @timeout: time to stall for (jiffies)
1068 *
1069 * ide_stall_queue() can be used by a drive to give excess bandwidth back
1070 * to the hwgroup by sleeping for timeout jiffies.
1071 */
1072
1073void ide_stall_queue (ide_drive_t *drive, unsigned long timeout)
1074{
1075 if (timeout > WAIT_WORSTCASE)
1076 timeout = WAIT_WORSTCASE;
1077 drive->sleep = timeout + jiffies;
1078 drive->sleeping = 1;
1079}
1080
1081EXPORT_SYMBOL(ide_stall_queue);
1082
1083#define WAKEUP(drive) ((drive)->service_start + 2 * (drive)->service_time)
1084
1085/**
1086 * choose_drive - select a drive to service
1087 * @hwgroup: hardware group to select on
1088 *
1089 * choose_drive() selects the next drive which will be serviced.
1090 * This is necessary because the IDE layer can't issue commands
1091 * to both drives on the same cable, unlike SCSI.
1092 */
1093
1094static inline ide_drive_t *choose_drive (ide_hwgroup_t *hwgroup)
1095{
1096 ide_drive_t *drive, *best;
1097
1098repeat:
1099 best = NULL;
1100 drive = hwgroup->drive;
1101
1102 /*
1103 * drive is doing pre-flush, ordered write, post-flush sequence. even
1104 * though that is 3 requests, it must be seen as a single transaction.
1105 * we must not preempt this drive until that is complete
1106 */
1107 if (blk_queue_flushing(drive->queue)) {
1108 /*
1109 * small race where queue could get replugged during
1110 * the 3-request flush cycle, just yank the plug since
1111 * we want it to finish asap
1112 */
1113 blk_remove_plug(drive->queue);
1114 return drive;
1115 }
1116
1117 do {
1118 if ((!drive->sleeping || time_after_eq(jiffies, drive->sleep))
1119 && !elv_queue_empty(drive->queue)) {
1120 if (!best
1121 || (drive->sleeping && (!best->sleeping || time_before(drive->sleep, best->sleep)))
1122 || (!best->sleeping && time_before(WAKEUP(drive), WAKEUP(best))))
1123 {
1124 if (!blk_queue_plugged(drive->queue))
1125 best = drive;
1126 }
1127 }
1128 } while ((drive = drive->next) != hwgroup->drive);
1129 if (best && best->nice1 && !best->sleeping && best != hwgroup->drive && best->service_time > WAIT_MIN_SLEEP) {
1130 long t = (signed long)(WAKEUP(best) - jiffies);
1131 if (t >= WAIT_MIN_SLEEP) {
1132 /*
1133 * We *may* have some time to spare, but first let's see if
1134 * someone can potentially benefit from our nice mood today..
1135 */
1136 drive = best->next;
1137 do {
1138 if (!drive->sleeping
1139 && time_before(jiffies - best->service_time, WAKEUP(drive))
1140 && time_before(WAKEUP(drive), jiffies + t))
1141 {
1142 ide_stall_queue(best, min_t(long, t, 10 * WAIT_MIN_SLEEP));
1143 goto repeat;
1144 }
1145 } while ((drive = drive->next) != best);
1146 }
1147 }
1148 return best;
1149}
1150
1151/*
1152 * Issue a new request to a drive from hwgroup
1153 * Caller must have already done spin_lock_irqsave(&ide_lock, ..);
1154 *
1155 * A hwgroup is a serialized group of IDE interfaces. Usually there is
1156 * exactly one hwif (interface) per hwgroup, but buggy controllers (eg. CMD640)
1157 * may have both interfaces in a single hwgroup to "serialize" access.
1158 * Or possibly multiple ISA interfaces can share a common IRQ by being grouped
1159 * together into one hwgroup for serialized access.
1160 *
1161 * Note also that several hwgroups can end up sharing a single IRQ,
1162 * possibly along with many other devices. This is especially common in
1163 * PCI-based systems with off-board IDE controller cards.
1164 *
1165 * The IDE driver uses the single global ide_lock spinlock to protect
1166 * access to the request queues, and to protect the hwgroup->busy flag.
1167 *
1168 * The first thread into the driver for a particular hwgroup sets the
1169 * hwgroup->busy flag to indicate that this hwgroup is now active,
1170 * and then initiates processing of the top request from the request queue.
1171 *
1172 * Other threads attempting entry notice the busy setting, and will simply
1173 * queue their new requests and exit immediately. Note that hwgroup->busy
1174 * remains set even when the driver is merely awaiting the next interrupt.
1175 * Thus, the meaning is "this hwgroup is busy processing a request".
1176 *
1177 * When processing of a request completes, the completing thread or IRQ-handler
1178 * will start the next request from the queue. If no more work remains,
1179 * the driver will clear the hwgroup->busy flag and exit.
1180 *
1181 * The ide_lock (spinlock) is used to protect all access to the
1182 * hwgroup->busy flag, but is otherwise not needed for most processing in
1183 * the driver. This makes the driver much more friendlier to shared IRQs
1184 * than previous designs, while remaining 100% (?) SMP safe and capable.
1185 */
1186static void ide_do_request (ide_hwgroup_t *hwgroup, int masked_irq)
1187{
1188 ide_drive_t *drive;
1189 ide_hwif_t *hwif;
1190 struct request *rq;
1191 ide_startstop_t startstop;
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001192 int loops = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /* for atari only: POSSIBLY BROKEN HERE(?) */
1195 ide_get_lock(ide_intr, hwgroup);
1196
1197 /* caller must own ide_lock */
1198 BUG_ON(!irqs_disabled());
1199
1200 while (!hwgroup->busy) {
1201 hwgroup->busy = 1;
1202 drive = choose_drive(hwgroup);
1203 if (drive == NULL) {
1204 int sleeping = 0;
1205 unsigned long sleep = 0; /* shut up, gcc */
1206 hwgroup->rq = NULL;
1207 drive = hwgroup->drive;
1208 do {
1209 if (drive->sleeping && (!sleeping || time_before(drive->sleep, sleep))) {
1210 sleeping = 1;
1211 sleep = drive->sleep;
1212 }
1213 } while ((drive = drive->next) != hwgroup->drive);
1214 if (sleeping) {
1215 /*
1216 * Take a short snooze, and then wake up this hwgroup again.
1217 * This gives other hwgroups on the same a chance to
1218 * play fairly with us, just in case there are big differences
1219 * in relative throughputs.. don't want to hog the cpu too much.
1220 */
1221 if (time_before(sleep, jiffies + WAIT_MIN_SLEEP))
1222 sleep = jiffies + WAIT_MIN_SLEEP;
1223#if 1
1224 if (timer_pending(&hwgroup->timer))
1225 printk(KERN_CRIT "ide_set_handler: timer already active\n");
1226#endif
1227 /* so that ide_timer_expiry knows what to do */
1228 hwgroup->sleeping = 1;
Suleiman Souhlal23450312007-04-10 22:38:37 +02001229 hwgroup->req_gen_timer = hwgroup->req_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 mod_timer(&hwgroup->timer, sleep);
1231 /* we purposely leave hwgroup->busy==1
1232 * while sleeping */
1233 } else {
1234 /* Ugly, but how can we sleep for the lock
1235 * otherwise? perhaps from tq_disk?
1236 */
1237
1238 /* for atari only */
1239 ide_release_lock();
1240 hwgroup->busy = 0;
1241 }
1242
1243 /* no more work for this hwgroup (for now) */
1244 return;
1245 }
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001246 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 hwif = HWIF(drive);
1248 if (hwgroup->hwif->sharing_irq &&
1249 hwif != hwgroup->hwif &&
1250 hwif->io_ports[IDE_CONTROL_OFFSET]) {
1251 /* set nIEN for previous hwif */
1252 SELECT_INTERRUPT(drive);
1253 }
1254 hwgroup->hwif = hwif;
1255 hwgroup->drive = drive;
1256 drive->sleeping = 0;
1257 drive->service_start = jiffies;
1258
1259 if (blk_queue_plugged(drive->queue)) {
1260 printk(KERN_ERR "ide: huh? queue was plugged!\n");
1261 break;
1262 }
1263
1264 /*
1265 * we know that the queue isn't empty, but this can happen
1266 * if the q->prep_rq_fn() decides to kill a request
1267 */
1268 rq = elv_next_request(drive->queue);
1269 if (!rq) {
1270 hwgroup->busy = 0;
1271 break;
1272 }
1273
1274 /*
1275 * Sanity: don't accept a request that isn't a PM request
1276 * if we are currently power managed. This is very important as
1277 * blk_stop_queue() doesn't prevent the elv_next_request()
1278 * above to return us whatever is in the queue. Since we call
1279 * ide_do_request() ourselves, we end up taking requests while
1280 * the queue is blocked...
1281 *
1282 * We let requests forced at head of queue with ide-preempt
1283 * though. I hope that doesn't happen too much, hopefully not
1284 * unless the subdriver triggers such a thing in its own PM
1285 * state machine.
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001286 *
1287 * We count how many times we loop here to make sure we service
1288 * all drives in the hwgroup without looping for ever
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02001290 if (drive->blocked && !blk_pm_request(rq) && !(rq->cmd_flags & REQ_PREEMPT)) {
Benjamin Herrenschmidt867f8b42005-10-09 10:37:47 +10001291 drive = drive->next ? drive->next : hwgroup->drive;
1292 if (loops++ < 4 && !blk_queue_plugged(drive->queue))
1293 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 /* We clear busy, there should be no pending ATA command at this point. */
1295 hwgroup->busy = 0;
1296 break;
1297 }
1298
1299 hwgroup->rq = rq;
1300
1301 /*
1302 * Some systems have trouble with IDE IRQs arriving while
1303 * the driver is still setting things up. So, here we disable
1304 * the IRQ used by this interface while the request is being started.
1305 * This may look bad at first, but pretty much the same thing
1306 * happens anyway when any interrupt comes in, IDE or otherwise
1307 * -- the kernel masks the IRQ while it is being handled.
1308 */
1309 if (masked_irq != IDE_NO_IRQ && hwif->irq != masked_irq)
1310 disable_irq_nosync(hwif->irq);
1311 spin_unlock(&ide_lock);
Ingo Molnar366c7f52006-07-03 00:25:25 -07001312 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /* allow other IRQs while we start this request */
1314 startstop = start_request(drive, rq);
1315 spin_lock_irq(&ide_lock);
1316 if (masked_irq != IDE_NO_IRQ && hwif->irq != masked_irq)
1317 enable_irq(hwif->irq);
1318 if (startstop == ide_stopped)
1319 hwgroup->busy = 0;
1320 }
1321}
1322
1323/*
1324 * Passes the stuff to ide_do_request
1325 */
Jens Axboe165125e2007-07-24 09:28:11 +02001326void do_ide_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 ide_drive_t *drive = q->queuedata;
1329
1330 ide_do_request(HWGROUP(drive), IDE_NO_IRQ);
1331}
1332
1333/*
1334 * un-busy the hwgroup etc, and clear any pending DMA status. we want to
1335 * retry the current request in pio mode instead of risking tossing it
1336 * all away
1337 */
1338static ide_startstop_t ide_dma_timeout_retry(ide_drive_t *drive, int error)
1339{
1340 ide_hwif_t *hwif = HWIF(drive);
1341 struct request *rq;
1342 ide_startstop_t ret = ide_stopped;
1343
1344 /*
1345 * end current dma transaction
1346 */
1347
1348 if (error < 0) {
1349 printk(KERN_WARNING "%s: DMA timeout error\n", drive->name);
1350 (void)HWIF(drive)->ide_dma_end(drive);
1351 ret = ide_error(drive, "dma timeout error",
1352 hwif->INB(IDE_STATUS_REG));
1353 } else {
1354 printk(KERN_WARNING "%s: DMA timeout retry\n", drive->name);
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +02001355 hwif->dma_timeout(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
1358 /*
1359 * disable dma for now, but remember that we did so because of
1360 * a timeout -- we'll reenable after we finish this next request
1361 * (or rather the first chunk of it) in pio.
1362 */
1363 drive->retry_pio++;
1364 drive->state = DMA_PIO_RETRY;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +01001365 hwif->dma_off_quietly(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /*
1368 * un-busy drive etc (hwgroup->busy is cleared on return) and
1369 * make sure request is sane
1370 */
1371 rq = HWGROUP(drive)->rq;
Hua Zhongce42f192006-10-03 01:14:15 -07001372
1373 if (!rq)
1374 goto out;
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 HWGROUP(drive)->rq = NULL;
1377
1378 rq->errors = 0;
1379
1380 if (!rq->bio)
1381 goto out;
1382
1383 rq->sector = rq->bio->bi_sector;
1384 rq->current_nr_sectors = bio_iovec(rq->bio)->bv_len >> 9;
1385 rq->hard_cur_sectors = rq->current_nr_sectors;
1386 rq->buffer = bio_data(rq->bio);
1387out:
1388 return ret;
1389}
1390
1391/**
1392 * ide_timer_expiry - handle lack of an IDE interrupt
1393 * @data: timer callback magic (hwgroup)
1394 *
1395 * An IDE command has timed out before the expected drive return
1396 * occurred. At this point we attempt to clean up the current
1397 * mess. If the current handler includes an expiry handler then
1398 * we invoke the expiry handler, and providing it is happy the
1399 * work is done. If that fails we apply generic recovery rules
1400 * invoking the handler and checking the drive DMA status. We
1401 * have an excessively incestuous relationship with the DMA
1402 * logic that wants cleaning up.
1403 */
1404
1405void ide_timer_expiry (unsigned long data)
1406{
1407 ide_hwgroup_t *hwgroup = (ide_hwgroup_t *) data;
1408 ide_handler_t *handler;
1409 ide_expiry_t *expiry;
1410 unsigned long flags;
1411 unsigned long wait = -1;
1412
1413 spin_lock_irqsave(&ide_lock, flags);
1414
Suleiman Souhlal23450312007-04-10 22:38:37 +02001415 if (((handler = hwgroup->handler) == NULL) ||
1416 (hwgroup->req_gen != hwgroup->req_gen_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /*
1418 * Either a marginal timeout occurred
1419 * (got the interrupt just as timer expired),
1420 * or we were "sleeping" to give other devices a chance.
1421 * Either way, we don't really want to complain about anything.
1422 */
1423 if (hwgroup->sleeping) {
1424 hwgroup->sleeping = 0;
1425 hwgroup->busy = 0;
1426 }
1427 } else {
1428 ide_drive_t *drive = hwgroup->drive;
1429 if (!drive) {
1430 printk(KERN_ERR "ide_timer_expiry: hwgroup->drive was NULL\n");
1431 hwgroup->handler = NULL;
1432 } else {
1433 ide_hwif_t *hwif;
1434 ide_startstop_t startstop = ide_stopped;
1435 if (!hwgroup->busy) {
1436 hwgroup->busy = 1; /* paranoia */
1437 printk(KERN_ERR "%s: ide_timer_expiry: hwgroup->busy was 0 ??\n", drive->name);
1438 }
1439 if ((expiry = hwgroup->expiry) != NULL) {
1440 /* continue */
1441 if ((wait = expiry(drive)) > 0) {
1442 /* reset timer */
1443 hwgroup->timer.expires = jiffies + wait;
Suleiman Souhlal23450312007-04-10 22:38:37 +02001444 hwgroup->req_gen_timer = hwgroup->req_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 add_timer(&hwgroup->timer);
1446 spin_unlock_irqrestore(&ide_lock, flags);
1447 return;
1448 }
1449 }
1450 hwgroup->handler = NULL;
1451 /*
1452 * We need to simulate a real interrupt when invoking
1453 * the handler() function, which means we need to
1454 * globally mask the specific IRQ:
1455 */
1456 spin_unlock(&ide_lock);
1457 hwif = HWIF(drive);
1458#if DISABLE_IRQ_NOSYNC
1459 disable_irq_nosync(hwif->irq);
1460#else
1461 /* disable_irq_nosync ?? */
1462 disable_irq(hwif->irq);
1463#endif /* DISABLE_IRQ_NOSYNC */
1464 /* local CPU only,
1465 * as if we were handling an interrupt */
1466 local_irq_disable();
1467 if (hwgroup->polling) {
1468 startstop = handler(drive);
1469 } else if (drive_is_ready(drive)) {
1470 if (drive->waiting_for_dma)
Sergei Shtylyov841d2a92007-07-09 23:17:54 +02001471 hwgroup->hwif->dma_lost_irq(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 (void)ide_ack_intr(hwif);
1473 printk(KERN_WARNING "%s: lost interrupt\n", drive->name);
1474 startstop = handler(drive);
1475 } else {
1476 if (drive->waiting_for_dma) {
1477 startstop = ide_dma_timeout_retry(drive, wait);
1478 } else
1479 startstop =
1480 ide_error(drive, "irq timeout", hwif->INB(IDE_STATUS_REG));
1481 }
1482 drive->service_time = jiffies - drive->service_start;
1483 spin_lock_irq(&ide_lock);
1484 enable_irq(hwif->irq);
1485 if (startstop == ide_stopped)
1486 hwgroup->busy = 0;
1487 }
1488 }
1489 ide_do_request(hwgroup, IDE_NO_IRQ);
1490 spin_unlock_irqrestore(&ide_lock, flags);
1491}
1492
1493/**
1494 * unexpected_intr - handle an unexpected IDE interrupt
1495 * @irq: interrupt line
1496 * @hwgroup: hwgroup being processed
1497 *
1498 * There's nothing really useful we can do with an unexpected interrupt,
1499 * other than reading the status register (to clear it), and logging it.
1500 * There should be no way that an irq can happen before we're ready for it,
1501 * so we needn't worry much about losing an "important" interrupt here.
1502 *
1503 * On laptops (and "green" PCs), an unexpected interrupt occurs whenever
1504 * the drive enters "idle", "standby", or "sleep" mode, so if the status
1505 * looks "good", we just ignore the interrupt completely.
1506 *
1507 * This routine assumes __cli() is in effect when called.
1508 *
1509 * If an unexpected interrupt happens on irq15 while we are handling irq14
1510 * and if the two interfaces are "serialized" (CMD640), then it looks like
1511 * we could screw up by interfering with a new request being set up for
1512 * irq15.
1513 *
1514 * In reality, this is a non-issue. The new command is not sent unless
1515 * the drive is ready to accept one, in which case we know the drive is
1516 * not trying to interrupt us. And ide_set_handler() is always invoked
1517 * before completing the issuance of any new drive command, so we will not
1518 * be accidentally invoked as a result of any valid command completion
1519 * interrupt.
1520 *
1521 * Note that we must walk the entire hwgroup here. We know which hwif
1522 * is doing the current command, but we don't know which hwif burped
1523 * mysteriously.
1524 */
1525
1526static void unexpected_intr (int irq, ide_hwgroup_t *hwgroup)
1527{
1528 u8 stat;
1529 ide_hwif_t *hwif = hwgroup->hwif;
1530
1531 /*
1532 * handle the unexpected interrupt
1533 */
1534 do {
1535 if (hwif->irq == irq) {
1536 stat = hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
1537 if (!OK_STAT(stat, READY_STAT, BAD_STAT)) {
1538 /* Try to not flood the console with msgs */
1539 static unsigned long last_msgtime, count;
1540 ++count;
1541 if (time_after(jiffies, last_msgtime + HZ)) {
1542 last_msgtime = jiffies;
1543 printk(KERN_ERR "%s%s: unexpected interrupt, "
1544 "status=0x%02x, count=%ld\n",
1545 hwif->name,
1546 (hwif->next==hwgroup->hwif) ? "" : "(?)", stat, count);
1547 }
1548 }
1549 }
1550 } while ((hwif = hwif->next) != hwgroup->hwif);
1551}
1552
1553/**
1554 * ide_intr - default IDE interrupt handler
1555 * @irq: interrupt number
1556 * @dev_id: hwif group
1557 * @regs: unused weirdness from the kernel irq layer
1558 *
1559 * This is the default IRQ handler for the IDE layer. You should
1560 * not need to override it. If you do be aware it is subtle in
1561 * places
1562 *
1563 * hwgroup->hwif is the interface in the group currently performing
1564 * a command. hwgroup->drive is the drive and hwgroup->handler is
1565 * the IRQ handler to call. As we issue a command the handlers
1566 * step through multiple states, reassigning the handler to the
1567 * next step in the process. Unlike a smart SCSI controller IDE
1568 * expects the main processor to sequence the various transfer
1569 * stages. We also manage a poll timer to catch up with most
1570 * timeout situations. There are still a few where the handlers
1571 * don't ever decide to give up.
1572 *
1573 * The handler eventually returns ide_stopped to indicate the
1574 * request completed. At this point we issue the next request
1575 * on the hwgroup and the process begins again.
1576 */
1577
David Howells7d12e782006-10-05 14:55:46 +01001578irqreturn_t ide_intr (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 unsigned long flags;
1581 ide_hwgroup_t *hwgroup = (ide_hwgroup_t *)dev_id;
1582 ide_hwif_t *hwif;
1583 ide_drive_t *drive;
1584 ide_handler_t *handler;
1585 ide_startstop_t startstop;
1586
1587 spin_lock_irqsave(&ide_lock, flags);
1588 hwif = hwgroup->hwif;
1589
1590 if (!ide_ack_intr(hwif)) {
1591 spin_unlock_irqrestore(&ide_lock, flags);
1592 return IRQ_NONE;
1593 }
1594
1595 if ((handler = hwgroup->handler) == NULL || hwgroup->polling) {
1596 /*
1597 * Not expecting an interrupt from this drive.
1598 * That means this could be:
1599 * (1) an interrupt from another PCI device
1600 * sharing the same PCI INT# as us.
1601 * or (2) a drive just entered sleep or standby mode,
1602 * and is interrupting to let us know.
1603 * or (3) a spurious interrupt of unknown origin.
1604 *
1605 * For PCI, we cannot tell the difference,
1606 * so in that case we just ignore it and hope it goes away.
1607 *
1608 * FIXME: unexpected_intr should be hwif-> then we can
1609 * remove all the ifdef PCI crap
1610 */
1611#ifdef CONFIG_BLK_DEV_IDEPCI
1612 if (hwif->pci_dev && !hwif->pci_dev->vendor)
1613#endif /* CONFIG_BLK_DEV_IDEPCI */
1614 {
1615 /*
1616 * Probably not a shared PCI interrupt,
1617 * so we can safely try to do something about it:
1618 */
1619 unexpected_intr(irq, hwgroup);
1620#ifdef CONFIG_BLK_DEV_IDEPCI
1621 } else {
1622 /*
1623 * Whack the status register, just in case
1624 * we have a leftover pending IRQ.
1625 */
1626 (void) hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
1627#endif /* CONFIG_BLK_DEV_IDEPCI */
1628 }
1629 spin_unlock_irqrestore(&ide_lock, flags);
1630 return IRQ_NONE;
1631 }
1632 drive = hwgroup->drive;
1633 if (!drive) {
1634 /*
1635 * This should NEVER happen, and there isn't much
1636 * we could do about it here.
1637 *
1638 * [Note - this can occur if the drive is hot unplugged]
1639 */
1640 spin_unlock_irqrestore(&ide_lock, flags);
1641 return IRQ_HANDLED;
1642 }
1643 if (!drive_is_ready(drive)) {
1644 /*
1645 * This happens regularly when we share a PCI IRQ with
1646 * another device. Unfortunately, it can also happen
1647 * with some buggy drives that trigger the IRQ before
1648 * their status register is up to date. Hopefully we have
1649 * enough advance overhead that the latter isn't a problem.
1650 */
1651 spin_unlock_irqrestore(&ide_lock, flags);
1652 return IRQ_NONE;
1653 }
1654 if (!hwgroup->busy) {
1655 hwgroup->busy = 1; /* paranoia */
1656 printk(KERN_ERR "%s: ide_intr: hwgroup->busy was 0 ??\n", drive->name);
1657 }
1658 hwgroup->handler = NULL;
Suleiman Souhlal23450312007-04-10 22:38:37 +02001659 hwgroup->req_gen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 del_timer(&hwgroup->timer);
1661 spin_unlock(&ide_lock);
1662
Albert Leef0dd8712007-02-17 02:40:21 +01001663 /* Some controllers might set DMA INTR no matter DMA or PIO;
1664 * bmdma status might need to be cleared even for
1665 * PIO interrupts to prevent spurious/lost irq.
1666 */
1667 if (hwif->ide_dma_clear_irq && !(drive->waiting_for_dma))
1668 /* ide_dma_end() needs bmdma status for error checking.
1669 * So, skip clearing bmdma status here and leave it
1670 * to ide_dma_end() if this is dma interrupt.
1671 */
1672 hwif->ide_dma_clear_irq(drive);
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (drive->unmask)
Ingo Molnar366c7f52006-07-03 00:25:25 -07001675 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 /* service this interrupt, may set handler for next interrupt */
1677 startstop = handler(drive);
1678 spin_lock_irq(&ide_lock);
1679
1680 /*
1681 * Note that handler() may have set things up for another
1682 * interrupt to occur soon, but it cannot happen until
1683 * we exit from this routine, because it will be the
1684 * same irq as is currently being serviced here, and Linux
1685 * won't allow another of the same (on any CPU) until we return.
1686 */
1687 drive->service_time = jiffies - drive->service_start;
1688 if (startstop == ide_stopped) {
1689 if (hwgroup->handler == NULL) { /* paranoia */
1690 hwgroup->busy = 0;
1691 ide_do_request(hwgroup, hwif->irq);
1692 } else {
1693 printk(KERN_ERR "%s: ide_intr: huh? expected NULL handler "
1694 "on exit\n", drive->name);
1695 }
1696 }
1697 spin_unlock_irqrestore(&ide_lock, flags);
1698 return IRQ_HANDLED;
1699}
1700
1701/**
1702 * ide_init_drive_cmd - initialize a drive command request
1703 * @rq: request object
1704 *
1705 * Initialize a request before we fill it in and send it down to
1706 * ide_do_drive_cmd. Commands must be set up by this function. Right
1707 * now it doesn't do a lot, but if that changes abusers will have a
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001708 * nasty surprise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 */
1710
1711void ide_init_drive_cmd (struct request *rq)
1712{
1713 memset(rq, 0, sizeof(*rq));
Jens Axboe4aff5e22006-08-10 08:44:47 +02001714 rq->cmd_type = REQ_TYPE_ATA_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 rq->ref_count = 1;
1716}
1717
1718EXPORT_SYMBOL(ide_init_drive_cmd);
1719
1720/**
1721 * ide_do_drive_cmd - issue IDE special command
1722 * @drive: device to issue command
1723 * @rq: request to issue
1724 * @action: action for processing
1725 *
1726 * This function issues a special IDE device request
1727 * onto the request queue.
1728 *
1729 * If action is ide_wait, then the rq is queued at the end of the
1730 * request queue, and the function sleeps until it has been processed.
1731 * This is for use when invoked from an ioctl handler.
1732 *
1733 * If action is ide_preempt, then the rq is queued at the head of
1734 * the request queue, displacing the currently-being-processed
1735 * request and this function returns immediately without waiting
1736 * for the new rq to be completed. This is VERY DANGEROUS, and is
1737 * intended for careful use by the ATAPI tape/cdrom driver code.
1738 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 * If action is ide_end, then the rq is queued at the end of the
1740 * request queue, and the function returns immediately without waiting
1741 * for the new rq to be completed. This is again intended for careful
1742 * use by the ATAPI tape/cdrom driver code.
1743 */
1744
1745int ide_do_drive_cmd (ide_drive_t *drive, struct request *rq, ide_action_t action)
1746{
1747 unsigned long flags;
1748 ide_hwgroup_t *hwgroup = HWGROUP(drive);
Ingo Molnar60be6b92006-07-03 00:25:26 -07001749 DECLARE_COMPLETION_ONSTACK(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 int where = ELEVATOR_INSERT_BACK, err;
1751 int must_wait = (action == ide_wait || action == ide_head_wait);
1752
1753 rq->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 /*
1756 * we need to hold an extra reference to request for safe inspection
1757 * after completion
1758 */
1759 if (must_wait) {
1760 rq->ref_count++;
Jens Axboec00895a2006-09-30 20:29:12 +02001761 rq->end_io_data = &wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 rq->end_io = blk_end_sync_rq;
1763 }
1764
1765 spin_lock_irqsave(&ide_lock, flags);
1766 if (action == ide_preempt)
1767 hwgroup->rq = NULL;
1768 if (action == ide_preempt || action == ide_head_wait) {
1769 where = ELEVATOR_INSERT_FRONT;
Jens Axboe4aff5e22006-08-10 08:44:47 +02001770 rq->cmd_flags |= REQ_PREEMPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
1772 __elv_add_request(drive->queue, rq, where, 0);
1773 ide_do_request(hwgroup, IDE_NO_IRQ);
1774 spin_unlock_irqrestore(&ide_lock, flags);
1775
1776 err = 0;
1777 if (must_wait) {
1778 wait_for_completion(&wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (rq->errors)
1780 err = -EIO;
1781
1782 blk_put_request(rq);
1783 }
1784
1785 return err;
1786}
1787
1788EXPORT_SYMBOL(ide_do_drive_cmd);