blob: 2461245820b7c985c777ad0868bdbff0f64606fa [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 Zolnierkiewiczf6e29e32008-01-25 22:17:16 +010056static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *);
57static ide_startstop_t task_in_intr(ide_drive_t *);
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task)
60{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +010061 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +010062 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010063 ide_handler_t *handler = NULL;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020064 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +020065 const struct ide_dma_ops *dma_ops = hwif->dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Bartlomiej Zolnierkiewicz1edee602008-01-25 22:17:15 +010067 if (task->data_phase == TASKFILE_MULTI_IN ||
68 task->data_phase == TASKFILE_MULTI_OUT) {
69 if (!drive->mult_count) {
70 printk(KERN_ERR "%s: multimode not set!\n",
71 drive->name);
72 return ide_stopped;
73 }
74 }
75
76 if (task->tf_flags & IDE_TFLAG_FLAGGED)
77 task->tf_flags |= IDE_TFLAG_FLAGGED_SET_IN_FLAGS;
78
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +020079 memcpy(&hwif->task, task, sizeof(*task));
80
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020081 if ((task->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) {
82 ide_tf_dump(drive->name, tf);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020083 tp_ops->set_irq(hwif, 1);
Bartlomiej Zolnierkiewiczed4af482008-07-15 21:21:48 +020084 SELECT_MASK(drive, 0);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020085 tp_ops->tf_load(drive, task);
Bartlomiej Zolnierkiewicz089c5c72008-04-28 23:44:39 +020086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010088 switch (task->data_phase) {
89 case TASKFILE_MULTI_OUT:
90 case TASKFILE_OUT:
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020091 tp_ops->exec_command(hwif, tf->command);
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010092 ndelay(400); /* FIXME */
93 return pre_task_out_intr(drive, task->rq);
94 case TASKFILE_MULTI_IN:
95 case TASKFILE_IN:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010096 handler = task_in_intr;
Bartlomiej Zolnierkiewicz1192e522008-01-25 22:17:16 +010097 /* fall-through */
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +010098 case TASKFILE_NO_DATA:
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +010099 if (handler == NULL)
100 handler = task_no_data_intr;
Bartlomiej Zolnierkiewicz57d73662008-01-25 22:17:16 +0100101 ide_execute_command(drive, tf->command, handler,
102 WAIT_WORSTCASE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return ide_started;
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100104 default:
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200105 if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0 ||
106 dma_ops->dma_setup(drive))
Bartlomiej Zolnierkiewicz10d90152008-01-25 22:17:16 +0100107 return ide_stopped;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200108 dma_ops->dma_exec_cmd(drive, tf->command);
109 dma_ops->dma_start(drive);
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100110 return ide_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100113EXPORT_SYMBOL_GPL(do_rw_taskfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200116 * Handler for commands without a data phase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200118static ide_startstop_t task_no_data_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200120 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200121 ide_task_t *task = &hwif->task;
122 struct ide_taskfile *tf = &task->tf;
123 int custom = (task->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) ? 1 : 0;
124 int retries = (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) ? 5 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 u8 stat;
126
Bartlomiej Zolnierkiewicz90d2c6b2008-07-24 22:53:36 +0200127 local_irq_enable_in_hardirq();
128
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200129 while (1) {
130 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200131 if ((stat & ATA_BUSY) == 0 || retries-- == 0)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200132 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 udelay(10);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200134 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200136 if (!OK_STAT(stat, ATA_DRDY, BAD_STAT)) {
137 if (custom && tf->command == ATA_CMD_SET_MULTI) {
138 drive->mult_req = drive->mult_count = 0;
139 drive->special.b.recalibrate = 1;
140 (void)ide_dump_status(drive, __func__, stat);
141 return ide_stopped;
142 } else if (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) {
143 if ((stat & (ATA_ERR | ATA_DRQ)) == 0) {
144 ide_set_handler(drive, &task_no_data_intr,
145 WAIT_WORSTCASE, NULL);
146 return ide_started;
147 }
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return ide_error(drive, "task_no_data_intr", stat);
150 /* calls ide_end_drive_cmd */
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200151 }
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100152
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200153 if (!custom)
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100154 ide_end_drive_cmd(drive, stat, ide_read_error(drive));
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +0200155 else if (tf->command == ATA_CMD_IDLEIMMEDIATE) {
156 hwif->tp_ops->tf_read(drive, task);
157 if (tf->lbal != 0xc4) {
158 printk(KERN_ERR "%s: head unload failed!\n",
159 drive->name);
160 ide_tf_dump(drive->name, tf);
161 } else
162 drive->dev_flags |= IDE_DFLAG_PARKED;
163 ide_end_drive_cmd(drive, stat, ide_read_error(drive));
164 } else if (tf->command == ATA_CMD_SET_MULTI)
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200165 drive->mult_count = drive->mult_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 return ide_stopped;
168}
169
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100170static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200172 ide_hwif_t *hwif = drive->hwif;
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200173 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 u8 stat;
175
176 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200177 * Last sector was transfered, wait until device is ready. This can
178 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200180 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200181 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100182
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200183 if (stat & ATA_BUSY)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200184 udelay(10);
185 else
186 break;
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200189 if (stat & ATA_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
191
192 return stat;
193}
194
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200195static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
196 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 ide_hwif_t *hwif = drive->hwif;
199 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200200 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct page *page;
202#ifdef CONFIG_HIGHMEM
203 unsigned long flags;
204#endif
205 unsigned int offset;
206 u8 *buf;
207
Jens Axboe55c16a72007-07-25 08:13:56 +0200208 cursg = hwif->cursg;
209 if (!cursg) {
210 cursg = sg;
211 hwif->cursg = sg;
212 }
213
Jens Axboe45711f12007-10-22 21:19:53 +0200214 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200215 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* get the current page and offset */
218 page = nth_page(page, (offset >> PAGE_SHIFT));
219 offset %= PAGE_SIZE;
220
221#ifdef CONFIG_HIGHMEM
222 local_irq_save(flags);
223#endif
224 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
225
226 hwif->nleft--;
227 hwif->cursg_ofs++;
228
Jens Axboe55c16a72007-07-25 08:13:56 +0200229 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
230 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 hwif->cursg_ofs = 0;
232 }
233
234 /* do the actual data transfer */
235 if (write)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200236 hwif->tp_ops->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 else
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200238 hwif->tp_ops->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
241#ifdef CONFIG_HIGHMEM
242 local_irq_restore(flags);
243#endif
244}
245
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200246static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
247 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 unsigned int nsect;
250
251 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
252 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200253 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Arjan van de Ven858119e2006-01-14 13:20:43 -0800256static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 unsigned int write)
258{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100259 u8 saved_io_32bit = drive->io_32bit;
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (rq->bio) /* fs request */
262 rq->errors = 0;
263
Tejun Heo35cf2b92008-01-26 20:13:10 +0100264 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
265 ide_task_t *task = rq->special;
266
267 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
268 drive->io_32bit = 0;
269 }
270
Andrew Morton651c29a2006-02-15 15:17:37 -0800271 touch_softlockup_watchdog();
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 switch (drive->hwif->data_phase) {
274 case TASKFILE_MULTI_IN:
275 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200276 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 break;
278 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200279 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 break;
281 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100282
283 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
287 const char *s, u8 stat)
288{
289 if (rq->bio) {
290 ide_hwif_t *hwif = drive->hwif;
291 int sectors = hwif->nsect - hwif->nleft;
292
293 switch (hwif->data_phase) {
294 case TASKFILE_IN:
295 if (hwif->nleft)
296 break;
297 /* fall through */
298 case TASKFILE_OUT:
299 sectors--;
300 break;
301 case TASKFILE_MULTI_IN:
302 if (hwif->nleft)
303 break;
304 /* fall through */
305 case TASKFILE_MULTI_OUT:
306 sectors -= drive->mult_count;
307 default:
308 break;
309 }
310
311 if (sectors > 0) {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100312 struct ide_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100314 drv = *(struct ide_driver **)rq->rq_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 drv->end_request(drive, 1, sectors);
316 }
317 }
318 return ide_error(drive, s, stat);
319}
320
Tejun Heo4d7a9842008-01-26 20:13:11 +0100321void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200323 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100324 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Tejun Heo4d7a9842008-01-26 20:13:11 +0100326 ide_end_drive_cmd(drive, stat, err);
327 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
Richard Purdie03731fb2006-03-31 02:31:15 -0800330 if (rq->rq_disk) {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100331 struct ide_driver *drv;
Richard Purdie03731fb2006-03-31 02:31:15 -0800332
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100333 drv = *(struct ide_driver **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100334 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800335 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100336 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700340 * We got an interrupt on a task_in case, but no errors and no DRQ.
341 *
342 * It might be a spurious irq (shared irq), but it might be a
343 * command that had no output.
344 */
345static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
346{
347 /* Command all done? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200348 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY)) {
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700349 task_end_request(drive, rq, stat);
350 return ide_stopped;
351 }
352
353 /* Assume it was a spurious irq */
354 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
355 return ide_started;
356}
357
358/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * Handler for command with PIO data-in phase (Read/Read Multiple).
360 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100361static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100364 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200365 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700367 /* Error? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200368 if (stat & ATA_ERR)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200369 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700370
371 /* Didn't want any data? Odd. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200372 if ((stat & ATA_DRQ) == 0)
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700373 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 ide_pio_datablock(drive, rq, 0);
376
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700377 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (!hwif->nleft) {
379 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100380 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200381 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 task_end_request(drive, rq, stat);
383 return ide_stopped;
384 }
385
386 /* Still data left to transfer. */
387 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
388
389 return ide_started;
390}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392/*
393 * Handler for command with PIO data-out phase (Write/Write Multiple).
394 */
395static ide_startstop_t task_out_intr (ide_drive_t *drive)
396{
397 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100398 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200399 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200402 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* Deal with unexpected ATA data phase. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200405 if (((stat & ATA_DRQ) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200406 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 if (!hwif->nleft) {
409 task_end_request(drive, rq, stat);
410 return ide_stopped;
411 }
412
413 /* Still data left to transfer. */
414 ide_pio_datablock(drive, rq, 1);
415 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
416
417 return ide_started;
418}
419
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100420static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Bartlomiej Zolnierkiewiczc7db9662009-03-27 12:46:27 +0100422 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 ide_startstop_t startstop;
424
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200425 if (ide_wait_stat(&startstop, drive, ATA_DRQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 drive->bad_wstat, WAIT_DRQ)) {
427 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
Bartlomiej Zolnierkiewiczc7db9662009-03-27 12:46:27 +0100428 drive->name,
429 hwif->data_phase == TASKFILE_MULTI_OUT ? "MULT" : "",
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200430 (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return startstop;
432 }
433
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200434 if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 local_irq_disable();
436
437 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
438 ide_pio_datablock(drive, rq, 1);
439
440 return ide_started;
441}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100443int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200445 struct request *rq;
446 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200448 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
449 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
450 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 /*
453 * (ks) We transfer currently only whole sectors.
454 * This is suffient for now. But, it would be great,
455 * if we would find a solution to transfer any size.
456 * To support special commands like READ LONG.
457 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200458 rq->hard_nr_sectors = rq->nr_sectors = nsect;
459 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100461 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200462 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200464 rq->special = task;
465 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200467 error = blk_execute_rq(drive->queue, NULL, rq, 0);
468 blk_put_request(rq);
469
470 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473EXPORT_SYMBOL(ide_raw_taskfile);
474
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100475int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
476{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100477 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100478
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100479 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100480}
481EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
482
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100483#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
485{
486 ide_task_request_t *req_task;
487 ide_task_t args;
488 u8 *outbuf = NULL;
489 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100490 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int err = 0;
492 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100493 unsigned int taskin = 0;
494 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100495 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 char __user *buf = (char __user *)arg;
497
498// printk("IDE Taskfile ...\n");
499
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800500 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (copy_from_user(req_task, buf, tasksize)) {
503 kfree(req_task);
504 return -EFAULT;
505 }
506
Alan Cox3a42bb22006-10-16 16:31:02 +0100507 taskout = req_task->out_size;
508 taskin = req_task->in_size;
509
510 if (taskin > 65536 || taskout > 65536) {
511 err = -EINVAL;
512 goto abort;
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 if (taskout) {
516 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800517 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (outbuf == NULL) {
519 err = -ENOMEM;
520 goto abort;
521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
523 err = -EFAULT;
524 goto abort;
525 }
526 }
527
528 if (taskin) {
529 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800530 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (inbuf == NULL) {
532 err = -ENOMEM;
533 goto abort;
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (copy_from_user(inbuf, buf + intotal, taskin)) {
536 err = -EFAULT;
537 goto abort;
538 }
539 }
540
541 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100543 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
544 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100545
546 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100548 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
549 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200550 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100551 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100552
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100553 if (req_task->out_flags.all) {
554 args.tf_flags |= IDE_TFLAG_FLAGGED;
555
556 if (req_task->out_flags.b.data)
557 args.tf_flags |= IDE_TFLAG_OUT_DATA;
558
559 if (req_task->out_flags.b.nsector_hob)
560 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
561 if (req_task->out_flags.b.sector_hob)
562 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
563 if (req_task->out_flags.b.lcyl_hob)
564 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
565 if (req_task->out_flags.b.hcyl_hob)
566 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
567
568 if (req_task->out_flags.b.error_feature)
569 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
570 if (req_task->out_flags.b.nsector)
571 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
572 if (req_task->out_flags.b.sector)
573 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
574 if (req_task->out_flags.b.lcyl)
575 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
576 if (req_task->out_flags.b.hcyl)
577 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100578 } else {
579 args.tf_flags |= IDE_TFLAG_OUT_TF;
580 if (args.tf_flags & IDE_TFLAG_LBA48)
581 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100582 }
583
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100584 if (req_task->in_flags.b.data)
585 args.tf_flags |= IDE_TFLAG_IN_DATA;
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 case TASKFILE_MULTI_OUT:
589 if (!drive->mult_count) {
590 /* (hs): give up if multcount is not set */
591 printk(KERN_ERR "%s: %s Multimode Write " \
592 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200593 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 err = -EPERM;
595 goto abort;
596 }
597 /* fall through */
598 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100599 /* fall through */
600 case TASKFILE_OUT_DMAQ:
601 case TASKFILE_OUT_DMA:
602 nsect = taskout / SECTOR_SIZE;
603 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 break;
605 case TASKFILE_MULTI_IN:
606 if (!drive->mult_count) {
607 /* (hs): give up if multcount is not set */
608 printk(KERN_ERR "%s: %s Multimode Read failure " \
609 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200610 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 err = -EPERM;
612 goto abort;
613 }
614 /* fall through */
615 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100616 /* fall through */
617 case TASKFILE_IN_DMAQ:
618 case TASKFILE_IN_DMA:
619 nsect = taskin / SECTOR_SIZE;
620 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 break;
622 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 break;
624 default:
625 err = -EFAULT;
626 goto abort;
627 }
628
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100629 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
630 nsect = 0;
631 else if (!nsect) {
632 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
633
634 if (!nsect) {
635 printk(KERN_ERR "%s: in/out command without data\n",
636 drive->name);
637 err = -EFAULT;
638 goto abort;
639 }
640 }
641
642 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
643 args.tf_flags |= IDE_TFLAG_WRITE;
644
645 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
646
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100647 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
648 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100649
650 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) &&
651 req_task->in_flags.all == 0) {
652 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200653 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100654 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 if (copy_to_user(buf, req_task, tasksize)) {
658 err = -EFAULT;
659 goto abort;
660 }
661 if (taskout) {
662 int outtotal = tasksize;
663 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
664 err = -EFAULT;
665 goto abort;
666 }
667 }
668 if (taskin) {
669 int intotal = tasksize + taskout;
670 if (copy_to_user(buf + intotal, inbuf, taskin)) {
671 err = -EFAULT;
672 goto abort;
673 }
674 }
675abort:
676 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800677 kfree(outbuf);
678 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return err;
683}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100684#endif