blob: 8da8d26db7edbfe3d36cfa61fdc0611282300eeb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 2000-2002 Michael Cornwell <cornwell@acm.org>
3 * Copyright (C) 2000-2002 Andre Hedrick <andre@linux-ide.org>
4 * Copyright (C) 2001-2002 Klaus Smolin
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * IBM Storage Technology Division
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01006 * Copyright (C) 2003-2004, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * The big the bad and the ugly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
12#include <linux/string.h>
13#include <linux/kernel.h>
Andrew Morton651c29a2006-02-15 15:17:37 -080014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/delay.h>
19#include <linux/hdreg.h>
20#include <linux/ide.h>
Jens Axboe55c16a72007-07-25 08:13:56 +020021#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
24#include <asm/io.h>
25
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020026void ide_tf_dump(const char *s, struct ide_taskfile *tf)
27{
28#ifdef DEBUG
29 printk("%s: tf: feat 0x%02x nsect 0x%02x lbal 0x%02x "
30 "lbam 0x%02x lbah 0x%02x dev 0x%02x cmd 0x%02x\n",
31 s, tf->feature, tf->nsect, tf->lbal,
32 tf->lbam, tf->lbah, tf->device, tf->command);
33 printk("%s: hob: nsect 0x%02x lbal 0x%02x "
34 "lbam 0x%02x lbah 0x%02x\n",
35 s, tf->hob_nsect, tf->hob_lbal,
36 tf->hob_lbam, tf->hob_lbah);
37#endif
38}
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040int taskfile_lib_get_identify (ide_drive_t *drive, u8 *buf)
41{
42 ide_task_t args;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 memset(&args, 0, sizeof(ide_task_t));
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010045 args.tf.nsect = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if (drive->media == ide_disk)
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +020047 args.tf.command = ATA_CMD_ID_ATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 else
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +020049 args.tf.command = ATA_CMD_ID_ATAPI;
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +010050 args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +010051 args.data_phase = TASKFILE_IN;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +010052 return ide_raw_taskfile(drive, &args, buf, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010055static ide_startstop_t task_no_data_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010056static ide_startstop_t set_geometry_intr(ide_drive_t *);
57static ide_startstop_t recal_intr(ide_drive_t *);
58static ide_startstop_t set_multmode_intr(ide_drive_t *);
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +010059static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *);
60static ide_startstop_t task_in_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task)
63{
64 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010065 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010066 ide_handler_t *handler = NULL;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020067 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +020068 const struct ide_dma_ops *dma_ops = hwif->dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Bartlomiej Zolnierkiewicz1edee602008-01-25 22:17:15 +010070 if (task->data_phase == TASKFILE_MULTI_IN ||
71 task->data_phase == TASKFILE_MULTI_OUT) {
72 if (!drive->mult_count) {
73 printk(KERN_ERR "%s: multimode not set!\n",
74 drive->name);
75 return ide_stopped;
76 }
77 }
78
79 if (task->tf_flags & IDE_TFLAG_FLAGGED)
80 task->tf_flags |= IDE_TFLAG_FLAGGED_SET_IN_FLAGS;
81
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020082 if ((task->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
83 ide_tf_dump(drive->name, tf);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020084 tp_ops->set_irq(hwif, 1);
Bartlomiej Zolnierkiewiczed4af482008-07-15 21:21:48 +020085 SELECT_MASK(drive, 0);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020086 tp_ops->tf_load(drive, task);
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010089 switch (task->data_phase) {
90 case TASKFILE_MULTI_OUT:
91 case TASKFILE_OUT:
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020092 tp_ops->exec_command(hwif, tf->command);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010093 ndelay(400); /* FIXME */
94 return pre_task_out_intr(drive, task->rq);
95 case TASKFILE_MULTI_IN:
96 case TASKFILE_IN:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010097 handler = task_in_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010098 /* fall-through */
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010099 case TASKFILE_NO_DATA:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100100 if (handler == NULL)
101 handler = task_no_data_intr;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100102 if (task->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) {
103 switch (tf->command) {
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200104 case ATA_CMD_INIT_DEV_PARAMS:
105 handler = set_geometry_intr;
106 break;
107 case ATA_CMD_RESTORE:
108 handler = recal_intr;
109 break;
110 case ATA_CMD_SET_MULTI:
111 handler = set_multmode_intr;
112 break;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100113 }
114 }
115 ide_execute_command(drive, tf->command, handler,
116 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return ide_started;
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100118 default:
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200119 if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0 ||
120 dma_ops->dma_setup(drive))
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100121 return ide_stopped;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200122 dma_ops->dma_exec_cmd(drive, tf->command);
123 dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100124 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100127EXPORT_SYMBOL_GPL(do_rw_taskfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200130 * set_multmode_intr() is invoked on completion of a ATA_CMD_SET_MULTI cmd.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100132static ide_startstop_t set_multmode_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200134 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200135 u8 stat;
136
137 local_irq_enable_in_hardirq();
138 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200140 if (OK_STAT(stat, ATA_DRDY, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 drive->mult_count = drive->mult_req;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100142 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 drive->mult_req = drive->mult_count = 0;
144 drive->special.b.recalibrate = 1;
145 (void) ide_dump_status(drive, "set_multmode", stat);
146 }
147 return ide_stopped;
148}
149
150/*
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200151 * set_geometry_intr() is invoked on completion of a ATA_CMD_INIT_DEV_PARAMS cmd.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100153static ide_startstop_t set_geometry_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200155 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 int retries = 5;
157 u8 stat;
158
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200159 local_irq_enable_in_hardirq();
160
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200161 while (1) {
162 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200163 if ((stat & ATA_BUSY) == 0 || retries-- == 0)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 udelay(10);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200166 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200168 if (OK_STAT(stat, ATA_DRDY, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return ide_stopped;
170
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200171 if (stat & (ATA_ERR | ATA_DRQ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return ide_error(drive, "set_geometry_intr", stat);
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 ide_set_handler(drive, &set_geometry_intr, WAIT_WORSTCASE, NULL);
175 return ide_started;
176}
177
178/*
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200179 * recal_intr() is invoked on completion of a ATA_CMD_RESTORE (recalibrate) cmd.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 */
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100181static ide_startstop_t recal_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200183 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200184 u8 stat;
185
186 local_irq_enable_in_hardirq();
187 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200189 if (!OK_STAT(stat, ATA_DRDY, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return ide_error(drive, "recal_intr", stat);
191 return ide_stopped;
192}
193
194/*
195 * Handler for commands without a data phase
196 */
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +0100197static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200199 ide_hwif_t *hwif = drive->hwif;
200 ide_task_t *args = hwif->hwgroup->rq->special;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 u8 stat;
202
Ingo Molnar366c7f52006-07-03 00:25:25 -0700203 local_irq_enable_in_hardirq();
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200204 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100205
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200206 if (!OK_STAT(stat, ATA_DRDY, BAD_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return ide_error(drive, "task_no_data_intr", stat);
208 /* calls ide_end_drive_cmd */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (args)
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100211 ide_end_drive_cmd(drive, stat, ide_read_error(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 return ide_stopped;
214}
215
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100216static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200218 ide_hwif_t *hwif = drive->hwif;
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200219 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 u8 stat;
221
222 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200223 * Last sector was transfered, wait until device is ready. This can
224 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200226 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200227 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100228
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200229 if (stat & ATA_BUSY)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200230 udelay(10);
231 else
232 break;
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200235 if (stat & ATA_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
237
238 return stat;
239}
240
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200241static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
242 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 ide_hwif_t *hwif = drive->hwif;
245 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200246 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct page *page;
248#ifdef CONFIG_HIGHMEM
249 unsigned long flags;
250#endif
251 unsigned int offset;
252 u8 *buf;
253
Jens Axboe55c16a72007-07-25 08:13:56 +0200254 cursg = hwif->cursg;
255 if (!cursg) {
256 cursg = sg;
257 hwif->cursg = sg;
258 }
259
Jens Axboe45711f12007-10-22 21:19:53 +0200260 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200261 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* get the current page and offset */
264 page = nth_page(page, (offset >> PAGE_SHIFT));
265 offset %= PAGE_SIZE;
266
267#ifdef CONFIG_HIGHMEM
268 local_irq_save(flags);
269#endif
270 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
271
272 hwif->nleft--;
273 hwif->cursg_ofs++;
274
Jens Axboe55c16a72007-07-25 08:13:56 +0200275 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
276 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 hwif->cursg_ofs = 0;
278 }
279
280 /* do the actual data transfer */
281 if (write)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200282 hwif->tp_ops->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 else
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200284 hwif->tp_ops->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
287#ifdef CONFIG_HIGHMEM
288 local_irq_restore(flags);
289#endif
290}
291
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200292static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
293 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 unsigned int nsect;
296
297 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
298 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200299 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Arjan van de Ven858119e2006-01-14 13:20:43 -0800302static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 unsigned int write)
304{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100305 u8 saved_io_32bit = drive->io_32bit;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (rq->bio) /* fs request */
308 rq->errors = 0;
309
Tejun Heo35cf2b92008-01-26 20:13:10 +0100310 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
311 ide_task_t *task = rq->special;
312
313 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
314 drive->io_32bit = 0;
315 }
316
Andrew Morton651c29a2006-02-15 15:17:37 -0800317 touch_softlockup_watchdog();
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 switch (drive->hwif->data_phase) {
320 case TASKFILE_MULTI_IN:
321 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200322 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 break;
324 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200325 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 break;
327 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100328
329 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
333 const char *s, u8 stat)
334{
335 if (rq->bio) {
336 ide_hwif_t *hwif = drive->hwif;
337 int sectors = hwif->nsect - hwif->nleft;
338
339 switch (hwif->data_phase) {
340 case TASKFILE_IN:
341 if (hwif->nleft)
342 break;
343 /* fall through */
344 case TASKFILE_OUT:
345 sectors--;
346 break;
347 case TASKFILE_MULTI_IN:
348 if (hwif->nleft)
349 break;
350 /* fall through */
351 case TASKFILE_MULTI_OUT:
352 sectors -= drive->mult_count;
353 default:
354 break;
355 }
356
357 if (sectors > 0) {
358 ide_driver_t *drv;
359
360 drv = *(ide_driver_t **)rq->rq_disk->private_data;
361 drv->end_request(drive, 1, sectors);
362 }
363 }
364 return ide_error(drive, s, stat);
365}
366
Tejun Heo4d7a9842008-01-26 20:13:11 +0100367void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200369 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100370 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Tejun Heo4d7a9842008-01-26 20:13:11 +0100372 ide_end_drive_cmd(drive, stat, err);
373 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Richard Purdie03731fb2006-03-31 02:31:15 -0800376 if (rq->rq_disk) {
377 ide_driver_t *drv;
378
379 drv = *(ide_driver_t **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100380 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800381 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100382 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700386 * We got an interrupt on a task_in case, but no errors and no DRQ.
387 *
388 * It might be a spurious irq (shared irq), but it might be a
389 * command that had no output.
390 */
391static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
392{
393 /* Command all done? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200394 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY)) {
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700395 task_end_request(drive, rq, stat);
396 return ide_stopped;
397 }
398
399 /* Assume it was a spurious irq */
400 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
401 return ide_started;
402}
403
404/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * Handler for command with PIO data-in phase (Read/Read Multiple).
406 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100407static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200410 struct request *rq = hwif->hwgroup->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200411 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700413 /* Error? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200414 if (stat & ATA_ERR)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200415 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700416
417 /* Didn't want any data? Odd. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200418 if ((stat & ATA_DRQ) == 0)
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700419 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 ide_pio_datablock(drive, rq, 0);
422
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700423 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (!hwif->nleft) {
425 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100426 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200427 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 task_end_request(drive, rq, stat);
429 return ide_stopped;
430 }
431
432 /* Still data left to transfer. */
433 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
434
435 return ide_started;
436}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438/*
439 * Handler for command with PIO data-out phase (Write/Write Multiple).
440 */
441static ide_startstop_t task_out_intr (ide_drive_t *drive)
442{
443 ide_hwif_t *hwif = drive->hwif;
444 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200445 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200448 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /* Deal with unexpected ATA data phase. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200451 if (((stat & ATA_DRQ) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200452 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (!hwif->nleft) {
455 task_end_request(drive, rq, stat);
456 return ide_stopped;
457 }
458
459 /* Still data left to transfer. */
460 ide_pio_datablock(drive, rq, 1);
461 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
462
463 return ide_started;
464}
465
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100466static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 ide_startstop_t startstop;
469
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200470 if (ide_wait_stat(&startstop, drive, ATA_DRQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 drive->bad_wstat, WAIT_DRQ)) {
472 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200473 drive->name, drive->hwif->data_phase ? "MULT" : "",
474 (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return startstop;
476 }
477
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200478 if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 local_irq_disable();
480
481 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
482 ide_pio_datablock(drive, rq, 1);
483
484 return ide_started;
485}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100487int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200489 struct request *rq;
490 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200492 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
493 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
494 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /*
497 * (ks) We transfer currently only whole sectors.
498 * This is suffient for now. But, it would be great,
499 * if we would find a solution to transfer any size.
500 * To support special commands like READ LONG.
501 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200502 rq->hard_nr_sectors = rq->nr_sectors = nsect;
503 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100505 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200506 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200508 rq->special = task;
509 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200511 error = blk_execute_rq(drive->queue, NULL, rq, 0);
512 blk_put_request(rq);
513
514 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517EXPORT_SYMBOL(ide_raw_taskfile);
518
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100519int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
520{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100521 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100522
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100523 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100524}
525EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
526
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100527#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
529{
530 ide_task_request_t *req_task;
531 ide_task_t args;
532 u8 *outbuf = NULL;
533 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100534 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 int err = 0;
536 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100537 unsigned int taskin = 0;
538 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100539 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 char __user *buf = (char __user *)arg;
541
542// printk("IDE Taskfile ...\n");
543
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800544 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (copy_from_user(req_task, buf, tasksize)) {
547 kfree(req_task);
548 return -EFAULT;
549 }
550
Alan Cox3a42bb22006-10-16 16:31:02 +0100551 taskout = req_task->out_size;
552 taskin = req_task->in_size;
553
554 if (taskin > 65536 || taskout > 65536) {
555 err = -EINVAL;
556 goto abort;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 if (taskout) {
560 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800561 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (outbuf == NULL) {
563 err = -ENOMEM;
564 goto abort;
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
567 err = -EFAULT;
568 goto abort;
569 }
570 }
571
572 if (taskin) {
573 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800574 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (inbuf == NULL) {
576 err = -ENOMEM;
577 goto abort;
578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (copy_from_user(inbuf, buf + intotal, taskin)) {
580 err = -EFAULT;
581 goto abort;
582 }
583 }
584
585 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100587 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
588 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100589
590 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100592 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
593 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200594 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100595 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100596
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100597 if (req_task->out_flags.all) {
598 args.tf_flags |= IDE_TFLAG_FLAGGED;
599
600 if (req_task->out_flags.b.data)
601 args.tf_flags |= IDE_TFLAG_OUT_DATA;
602
603 if (req_task->out_flags.b.nsector_hob)
604 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
605 if (req_task->out_flags.b.sector_hob)
606 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
607 if (req_task->out_flags.b.lcyl_hob)
608 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
609 if (req_task->out_flags.b.hcyl_hob)
610 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
611
612 if (req_task->out_flags.b.error_feature)
613 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
614 if (req_task->out_flags.b.nsector)
615 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
616 if (req_task->out_flags.b.sector)
617 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
618 if (req_task->out_flags.b.lcyl)
619 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
620 if (req_task->out_flags.b.hcyl)
621 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100622 } else {
623 args.tf_flags |= IDE_TFLAG_OUT_TF;
624 if (args.tf_flags & IDE_TFLAG_LBA48)
625 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100626 }
627
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100628 if (req_task->in_flags.b.data)
629 args.tf_flags |= IDE_TFLAG_IN_DATA;
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 case TASKFILE_MULTI_OUT:
633 if (!drive->mult_count) {
634 /* (hs): give up if multcount is not set */
635 printk(KERN_ERR "%s: %s Multimode Write " \
636 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200637 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 err = -EPERM;
639 goto abort;
640 }
641 /* fall through */
642 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100643 /* fall through */
644 case TASKFILE_OUT_DMAQ:
645 case TASKFILE_OUT_DMA:
646 nsect = taskout / SECTOR_SIZE;
647 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
649 case TASKFILE_MULTI_IN:
650 if (!drive->mult_count) {
651 /* (hs): give up if multcount is not set */
652 printk(KERN_ERR "%s: %s Multimode Read failure " \
653 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200654 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 err = -EPERM;
656 goto abort;
657 }
658 /* fall through */
659 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100660 /* fall through */
661 case TASKFILE_IN_DMAQ:
662 case TASKFILE_IN_DMA:
663 nsect = taskin / SECTOR_SIZE;
664 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 break;
668 default:
669 err = -EFAULT;
670 goto abort;
671 }
672
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100673 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
674 nsect = 0;
675 else if (!nsect) {
676 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
677
678 if (!nsect) {
679 printk(KERN_ERR "%s: in/out command without data\n",
680 drive->name);
681 err = -EFAULT;
682 goto abort;
683 }
684 }
685
686 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
687 args.tf_flags |= IDE_TFLAG_WRITE;
688
689 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
690
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100691 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
692 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100693
694 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) &&
695 req_task->in_flags.all == 0) {
696 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200697 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100698 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 if (copy_to_user(buf, req_task, tasksize)) {
702 err = -EFAULT;
703 goto abort;
704 }
705 if (taskout) {
706 int outtotal = tasksize;
707 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
708 err = -EFAULT;
709 goto abort;
710 }
711 }
712 if (taskin) {
713 int intotal = tasksize + taskout;
714 if (copy_to_user(buf + intotal, inbuf, taskin)) {
715 err = -EFAULT;
716 goto abort;
717 }
718 }
719abort:
720 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800721 kfree(outbuf);
722 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return err;
727}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100728#endif