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