blob: 7237e1547b1fb5ca8d60b344102043fa688f6226 [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
Bartlomiej Zolnierkiewicz19710d22009-03-27 12:46:28 +010076 if (task->ftf_flags & IDE_FTFLAG_FLAGGED)
77 task->ftf_flags |= IDE_FTFLAG_SET_IN_FLAGS;
Bartlomiej Zolnierkiewicz1edee602008-01-25 22:17:15 +010078
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);
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200150 }
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100151
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100152 if (custom && tf->command == ATA_CMD_IDLEIMMEDIATE) {
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +0200153 hwif->tp_ops->tf_read(drive, task);
154 if (tf->lbal != 0xc4) {
155 printk(KERN_ERR "%s: head unload failed!\n",
156 drive->name);
157 ide_tf_dump(drive->name, tf);
158 } else
159 drive->dev_flags |= IDE_DFLAG_PARKED;
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100160 } else if (custom && tf->command == ATA_CMD_SET_MULTI)
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200161 drive->mult_count = drive->mult_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100163 if (custom == 0 || tf->command == ATA_CMD_IDLEIMMEDIATE) {
164 struct request *rq = hwif->rq;
165 u8 err = ide_read_error(drive);
166
167 if (blk_pm_request(rq))
168 ide_complete_pm_rq(drive, rq);
169 else {
170 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE)
171 ide_complete_task(drive, task, stat, err);
172 ide_complete_rq(drive, err);
173 }
174 }
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return ide_stopped;
177}
178
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100179static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200181 ide_hwif_t *hwif = drive->hwif;
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200182 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 u8 stat;
184
185 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200186 * Last sector was transfered, wait until device is ready. This can
187 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200189 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200190 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100191
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200192 if (stat & ATA_BUSY)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200193 udelay(10);
194 else
195 break;
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200198 if (stat & ATA_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
200
201 return stat;
202}
203
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200204static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
205 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 ide_hwif_t *hwif = drive->hwif;
208 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200209 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct page *page;
211#ifdef CONFIG_HIGHMEM
212 unsigned long flags;
213#endif
214 unsigned int offset;
215 u8 *buf;
216
Jens Axboe55c16a72007-07-25 08:13:56 +0200217 cursg = hwif->cursg;
218 if (!cursg) {
219 cursg = sg;
220 hwif->cursg = sg;
221 }
222
Jens Axboe45711f12007-10-22 21:19:53 +0200223 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200224 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* get the current page and offset */
227 page = nth_page(page, (offset >> PAGE_SHIFT));
228 offset %= PAGE_SIZE;
229
230#ifdef CONFIG_HIGHMEM
231 local_irq_save(flags);
232#endif
233 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
234
235 hwif->nleft--;
236 hwif->cursg_ofs++;
237
Jens Axboe55c16a72007-07-25 08:13:56 +0200238 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
239 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 hwif->cursg_ofs = 0;
241 }
242
243 /* do the actual data transfer */
244 if (write)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200245 hwif->tp_ops->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 else
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200247 hwif->tp_ops->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
250#ifdef CONFIG_HIGHMEM
251 local_irq_restore(flags);
252#endif
253}
254
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200255static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
256 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 unsigned int nsect;
259
260 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
261 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200262 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Arjan van de Ven858119e2006-01-14 13:20:43 -0800265static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 unsigned int write)
267{
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100268 ide_task_t *task = &drive->hwif->task;
Tejun Heo35cf2b92008-01-26 20:13:10 +0100269 u8 saved_io_32bit = drive->io_32bit;
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (rq->bio) /* fs request */
272 rq->errors = 0;
273
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100274 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
275 drive->io_32bit = 0;
Tejun Heo35cf2b92008-01-26 20:13:10 +0100276
Andrew Morton651c29a2006-02-15 15:17:37 -0800277 touch_softlockup_watchdog();
278
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100279 switch (task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 case TASKFILE_MULTI_IN:
281 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200282 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 break;
284 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200285 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 break;
287 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100288
289 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
293 const char *s, u8 stat)
294{
295 if (rq->bio) {
296 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100297 ide_task_t *task = &hwif->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int sectors = hwif->nsect - hwif->nleft;
299
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100300 switch (task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 case TASKFILE_IN:
302 if (hwif->nleft)
303 break;
304 /* fall through */
305 case TASKFILE_OUT:
306 sectors--;
307 break;
308 case TASKFILE_MULTI_IN:
309 if (hwif->nleft)
310 break;
311 /* fall through */
312 case TASKFILE_MULTI_OUT:
313 sectors -= drive->mult_count;
314 default:
315 break;
316 }
317
318 if (sectors > 0) {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100319 struct ide_driver *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100321 drv = *(struct ide_driver **)rq->rq_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 drv->end_request(drive, 1, sectors);
323 }
324 }
325 return ide_error(drive, s, stat);
326}
327
Tejun Heo4d7a9842008-01-26 20:13:11 +0100328void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200330 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100331 ide_task_t *task = rq->special;
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100332 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Bartlomiej Zolnierkiewicza09485d2009-03-27 12:46:31 +0100334 if (task)
335 ide_complete_task(drive, task, stat, err);
336 ide_complete_rq(drive, err);
Tejun Heo4d7a9842008-01-26 20:13:11 +0100337 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
Richard Purdie03731fb2006-03-31 02:31:15 -0800340 if (rq->rq_disk) {
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100341 struct ide_driver *drv;
Richard Purdie03731fb2006-03-31 02:31:15 -0800342
Bartlomiej Zolnierkiewicz7f3c8682009-01-06 17:20:53 +0100343 drv = *(struct ide_driver **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100344 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800345 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100346 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
349/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700350 * We got an interrupt on a task_in case, but no errors and no DRQ.
351 *
352 * It might be a spurious irq (shared irq), but it might be a
353 * command that had no output.
354 */
355static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
356{
357 /* Command all done? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200358 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY)) {
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700359 task_end_request(drive, rq, stat);
360 return ide_stopped;
361 }
362
363 /* Assume it was a spurious irq */
364 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
365 return ide_started;
366}
367
368/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * Handler for command with PIO data-in phase (Read/Read Multiple).
370 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100371static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100374 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200375 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700377 /* Error? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200378 if (stat & ATA_ERR)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200379 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700380
381 /* Didn't want any data? Odd. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200382 if ((stat & ATA_DRQ) == 0)
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700383 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 ide_pio_datablock(drive, rq, 0);
386
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700387 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!hwif->nleft) {
389 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100390 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200391 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 task_end_request(drive, rq, stat);
393 return ide_stopped;
394 }
395
396 /* Still data left to transfer. */
397 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
398
399 return ide_started;
400}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402/*
403 * Handler for command with PIO data-out phase (Write/Write Multiple).
404 */
405static ide_startstop_t task_out_intr (ide_drive_t *drive)
406{
407 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100408 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200409 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200412 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /* Deal with unexpected ATA data phase. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200415 if (((stat & ATA_DRQ) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200416 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 if (!hwif->nleft) {
419 task_end_request(drive, rq, stat);
420 return ide_stopped;
421 }
422
423 /* Still data left to transfer. */
424 ide_pio_datablock(drive, rq, 1);
425 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
426
427 return ide_started;
428}
429
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100430static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100432 ide_task_t *task = &drive->hwif->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 ide_startstop_t startstop;
434
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200435 if (ide_wait_stat(&startstop, drive, ATA_DRQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 drive->bad_wstat, WAIT_DRQ)) {
437 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
Bartlomiej Zolnierkiewiczc7db9662009-03-27 12:46:27 +0100438 drive->name,
Bartlomiej Zolnierkiewicze3d9a732009-03-27 12:46:32 +0100439 task->data_phase == TASKFILE_MULTI_OUT ? "MULT" : "",
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200440 (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return startstop;
442 }
443
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200444 if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 local_irq_disable();
446
447 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
448 ide_pio_datablock(drive, rq, 1);
449
450 return ide_started;
451}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100453int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200455 struct request *rq;
456 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200458 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
459 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
460 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 /*
463 * (ks) We transfer currently only whole sectors.
464 * This is suffient for now. But, it would be great,
465 * if we would find a solution to transfer any size.
466 * To support special commands like READ LONG.
467 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200468 rq->hard_nr_sectors = rq->nr_sectors = nsect;
469 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100471 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200472 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200474 rq->special = task;
475 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200477 error = blk_execute_rq(drive->queue, NULL, rq, 0);
478 blk_put_request(rq);
479
480 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483EXPORT_SYMBOL(ide_raw_taskfile);
484
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100485int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
486{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100487 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100488
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100489 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100490}
491EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
492
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100493#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
495{
496 ide_task_request_t *req_task;
497 ide_task_t args;
498 u8 *outbuf = NULL;
499 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100500 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int err = 0;
502 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100503 unsigned int taskin = 0;
504 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100505 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 char __user *buf = (char __user *)arg;
507
508// printk("IDE Taskfile ...\n");
509
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800510 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (copy_from_user(req_task, buf, tasksize)) {
513 kfree(req_task);
514 return -EFAULT;
515 }
516
Alan Cox3a42bb22006-10-16 16:31:02 +0100517 taskout = req_task->out_size;
518 taskin = req_task->in_size;
519
520 if (taskin > 65536 || taskout > 65536) {
521 err = -EINVAL;
522 goto abort;
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 if (taskout) {
526 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800527 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (outbuf == NULL) {
529 err = -ENOMEM;
530 goto abort;
531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
533 err = -EFAULT;
534 goto abort;
535 }
536 }
537
538 if (taskin) {
539 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800540 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (inbuf == NULL) {
542 err = -ENOMEM;
543 goto abort;
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (copy_from_user(inbuf, buf + intotal, taskin)) {
546 err = -EFAULT;
547 goto abort;
548 }
549 }
550
551 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100553 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
554 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100555
556 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100558 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
559 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200560 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100561 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100562
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100563 if (req_task->out_flags.all) {
Bartlomiej Zolnierkiewicz19710d22009-03-27 12:46:28 +0100564 args.ftf_flags |= IDE_FTFLAG_FLAGGED;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100565
566 if (req_task->out_flags.b.data)
Bartlomiej Zolnierkiewicz19710d22009-03-27 12:46:28 +0100567 args.ftf_flags |= IDE_FTFLAG_OUT_DATA;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100568
569 if (req_task->out_flags.b.nsector_hob)
570 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
571 if (req_task->out_flags.b.sector_hob)
572 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
573 if (req_task->out_flags.b.lcyl_hob)
574 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
575 if (req_task->out_flags.b.hcyl_hob)
576 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
577
578 if (req_task->out_flags.b.error_feature)
579 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
580 if (req_task->out_flags.b.nsector)
581 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
582 if (req_task->out_flags.b.sector)
583 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
584 if (req_task->out_flags.b.lcyl)
585 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
586 if (req_task->out_flags.b.hcyl)
587 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100588 } else {
589 args.tf_flags |= IDE_TFLAG_OUT_TF;
590 if (args.tf_flags & IDE_TFLAG_LBA48)
591 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100592 }
593
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100594 if (req_task->in_flags.b.data)
Bartlomiej Zolnierkiewicz19710d22009-03-27 12:46:28 +0100595 args.ftf_flags |= IDE_FTFLAG_IN_DATA;
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 case TASKFILE_MULTI_OUT:
599 if (!drive->mult_count) {
600 /* (hs): give up if multcount is not set */
601 printk(KERN_ERR "%s: %s Multimode Write " \
602 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200603 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 err = -EPERM;
605 goto abort;
606 }
607 /* fall through */
608 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100609 /* fall through */
610 case TASKFILE_OUT_DMAQ:
611 case TASKFILE_OUT_DMA:
612 nsect = taskout / SECTOR_SIZE;
613 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 break;
615 case TASKFILE_MULTI_IN:
616 if (!drive->mult_count) {
617 /* (hs): give up if multcount is not set */
618 printk(KERN_ERR "%s: %s Multimode Read failure " \
619 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200620 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 err = -EPERM;
622 goto abort;
623 }
624 /* fall through */
625 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100626 /* fall through */
627 case TASKFILE_IN_DMAQ:
628 case TASKFILE_IN_DMA:
629 nsect = taskin / SECTOR_SIZE;
630 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 break;
634 default:
635 err = -EFAULT;
636 goto abort;
637 }
638
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100639 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
640 nsect = 0;
641 else if (!nsect) {
642 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
643
644 if (!nsect) {
645 printk(KERN_ERR "%s: in/out command without data\n",
646 drive->name);
647 err = -EFAULT;
648 goto abort;
649 }
650 }
651
652 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
653 args.tf_flags |= IDE_TFLAG_WRITE;
654
655 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
656
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100657 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
658 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100659
Bartlomiej Zolnierkiewicz19710d22009-03-27 12:46:28 +0100660 if ((args.ftf_flags & IDE_FTFLAG_SET_IN_FLAGS) &&
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100661 req_task->in_flags.all == 0) {
662 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200663 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100664 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 if (copy_to_user(buf, req_task, tasksize)) {
668 err = -EFAULT;
669 goto abort;
670 }
671 if (taskout) {
672 int outtotal = tasksize;
673 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
674 err = -EFAULT;
675 goto abort;
676 }
677 }
678 if (taskin) {
679 int intotal = tasksize + taskout;
680 if (copy_to_user(buf + intotal, inbuf, taskin)) {
681 err = -EFAULT;
682 goto abort;
683 }
684 }
685abort:
686 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800687 kfree(outbuf);
688 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return err;
693}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100694#endif