blob: a4c2d91179b36647e53a362ddea4e2354b4e7daa [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{
61 ide_hwif_t *hwif = HWIF(drive);
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));
Bartlomiej Zolnierkiewiczd6ff9f62008-10-13 21:39:41 +0200155 else if (tf->command == ATA_CMD_SET_MULTI)
156 drive->mult_count = drive->mult_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 return ide_stopped;
159}
160
Adrian Bunkda6f4c72008-02-01 23:09:16 +0100161static u8 wait_drive_not_busy(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200163 ide_hwif_t *hwif = drive->hwif;
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200164 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 u8 stat;
166
167 /*
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200168 * Last sector was transfered, wait until device is ready. This can
169 * take up to 6 ms on some ATAPI devices, so we will wait max 10 ms.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
Bartlomiej Zolnierkiewiczf54feaf2008-06-20 20:53:33 +0200171 for (retries = 0; retries < 1000; retries++) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200172 stat = hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100173
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200174 if (stat & ATA_BUSY)
Masatake YAMATOb42fa132007-07-03 22:28:34 +0200175 udelay(10);
176 else
177 break;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200180 if (stat & ATA_BUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
182
183 return stat;
184}
185
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200186static void ide_pio_sector(ide_drive_t *drive, struct request *rq,
187 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 ide_hwif_t *hwif = drive->hwif;
190 struct scatterlist *sg = hwif->sg_table;
Jens Axboe55c16a72007-07-25 08:13:56 +0200191 struct scatterlist *cursg = hwif->cursg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct page *page;
193#ifdef CONFIG_HIGHMEM
194 unsigned long flags;
195#endif
196 unsigned int offset;
197 u8 *buf;
198
Jens Axboe55c16a72007-07-25 08:13:56 +0200199 cursg = hwif->cursg;
200 if (!cursg) {
201 cursg = sg;
202 hwif->cursg = sg;
203 }
204
Jens Axboe45711f12007-10-22 21:19:53 +0200205 page = sg_page(cursg);
Jens Axboe55c16a72007-07-25 08:13:56 +0200206 offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* get the current page and offset */
209 page = nth_page(page, (offset >> PAGE_SHIFT));
210 offset %= PAGE_SIZE;
211
212#ifdef CONFIG_HIGHMEM
213 local_irq_save(flags);
214#endif
215 buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
216
217 hwif->nleft--;
218 hwif->cursg_ofs++;
219
Jens Axboe55c16a72007-07-25 08:13:56 +0200220 if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) {
221 hwif->cursg = sg_next(hwif->cursg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 hwif->cursg_ofs = 0;
223 }
224
225 /* do the actual data transfer */
226 if (write)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200227 hwif->tp_ops->output_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 else
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200229 hwif->tp_ops->input_data(drive, rq, buf, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 kunmap_atomic(buf, KM_BIO_SRC_IRQ);
232#ifdef CONFIG_HIGHMEM
233 local_irq_restore(flags);
234#endif
235}
236
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200237static void ide_pio_multi(ide_drive_t *drive, struct request *rq,
238 unsigned int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 unsigned int nsect;
241
242 nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
243 while (nsect--)
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200244 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Arjan van de Ven858119e2006-01-14 13:20:43 -0800247static void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 unsigned int write)
249{
Tejun Heo35cf2b92008-01-26 20:13:10 +0100250 u8 saved_io_32bit = drive->io_32bit;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (rq->bio) /* fs request */
253 rq->errors = 0;
254
Tejun Heo35cf2b92008-01-26 20:13:10 +0100255 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
256 ide_task_t *task = rq->special;
257
258 if (task->tf_flags & IDE_TFLAG_IO_16BIT)
259 drive->io_32bit = 0;
260 }
261
Andrew Morton651c29a2006-02-15 15:17:37 -0800262 touch_softlockup_watchdog();
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 switch (drive->hwif->data_phase) {
265 case TASKFILE_MULTI_IN:
266 case TASKFILE_MULTI_OUT:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200267 ide_pio_multi(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 break;
269 default:
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200270 ide_pio_sector(drive, rq, write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 break;
272 }
Tejun Heo35cf2b92008-01-26 20:13:10 +0100273
274 drive->io_32bit = saved_io_32bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
278 const char *s, u8 stat)
279{
280 if (rq->bio) {
281 ide_hwif_t *hwif = drive->hwif;
282 int sectors = hwif->nsect - hwif->nleft;
283
284 switch (hwif->data_phase) {
285 case TASKFILE_IN:
286 if (hwif->nleft)
287 break;
288 /* fall through */
289 case TASKFILE_OUT:
290 sectors--;
291 break;
292 case TASKFILE_MULTI_IN:
293 if (hwif->nleft)
294 break;
295 /* fall through */
296 case TASKFILE_MULTI_OUT:
297 sectors -= drive->mult_count;
298 default:
299 break;
300 }
301
302 if (sectors > 0) {
303 ide_driver_t *drv;
304
305 drv = *(ide_driver_t **)rq->rq_disk->private_data;
306 drv->end_request(drive, 1, sectors);
307 }
308 }
309 return ide_error(drive, s, stat);
310}
311
Tejun Heo4d7a9842008-01-26 20:13:11 +0100312void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Jens Axboe4aff5e22006-08-10 08:44:47 +0200314 if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100315 u8 err = ide_read_error(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Tejun Heo4d7a9842008-01-26 20:13:11 +0100317 ide_end_drive_cmd(drive, stat, err);
318 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
Richard Purdie03731fb2006-03-31 02:31:15 -0800321 if (rq->rq_disk) {
322 ide_driver_t *drv;
323
324 drv = *(ide_driver_t **)rq->rq_disk->private_data;;
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100325 drv->end_request(drive, 1, rq->nr_sectors);
Richard Purdie03731fb2006-03-31 02:31:15 -0800326 } else
Bartlomiej Zolnierkiewicz79f21b82008-01-26 20:13:11 +0100327 ide_end_request(drive, 1, rq->nr_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330/*
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700331 * We got an interrupt on a task_in case, but no errors and no DRQ.
332 *
333 * It might be a spurious irq (shared irq), but it might be a
334 * command that had no output.
335 */
336static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat)
337{
338 /* Command all done? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200339 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY)) {
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700340 task_end_request(drive, rq, stat);
341 return ide_stopped;
342 }
343
344 /* Assume it was a spurious irq */
345 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
346 return ide_started;
347}
348
349/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 * Handler for command with PIO data-in phase (Read/Read Multiple).
351 */
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100352static ide_startstop_t task_in_intr(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200355 struct request *rq = hwif->hwgroup->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200356 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700358 /* Error? */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200359 if (stat & ATA_ERR)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200360 return task_error(drive, rq, __func__, stat);
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700361
362 /* Didn't want any data? Odd. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200363 if ((stat & ATA_DRQ) == 0)
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700364 return task_in_unexpected(drive, rq, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 ide_pio_datablock(drive, rq, 0);
367
Linus Torvalds6c3c3152008-03-18 21:26:24 -0700368 /* Are we done? Check status and finish transfer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (!hwif->nleft) {
370 stat = wait_drive_not_busy(drive);
Bartlomiej Zolnierkiewicz73d7de02008-01-26 20:13:10 +0100371 if (!OK_STAT(stat, 0, BAD_STAT))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200372 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 task_end_request(drive, rq, stat);
374 return ide_stopped;
375 }
376
377 /* Still data left to transfer. */
378 ide_set_handler(drive, &task_in_intr, WAIT_WORSTCASE, NULL);
379
380 return ide_started;
381}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383/*
384 * Handler for command with PIO data-out phase (Write/Write Multiple).
385 */
386static ide_startstop_t task_out_intr (ide_drive_t *drive)
387{
388 ide_hwif_t *hwif = drive->hwif;
389 struct request *rq = HWGROUP(drive)->rq;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200390 u8 stat = hwif->tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
Harvey Harrisoneb639632008-04-26 22:25:20 +0200393 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* Deal with unexpected ATA data phase. */
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200396 if (((stat & ATA_DRQ) == 0) ^ !hwif->nleft)
Harvey Harrisoneb639632008-04-26 22:25:20 +0200397 return task_error(drive, rq, __func__, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 if (!hwif->nleft) {
400 task_end_request(drive, rq, stat);
401 return ide_stopped;
402 }
403
404 /* Still data left to transfer. */
405 ide_pio_datablock(drive, rq, 1);
406 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
407
408 return ide_started;
409}
410
Bartlomiej Zolnierkiewiczf6e29e32008-01-25 22:17:16 +0100411static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 ide_startstop_t startstop;
414
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200415 if (ide_wait_stat(&startstop, drive, ATA_DRQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 drive->bad_wstat, WAIT_DRQ)) {
417 printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n",
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200418 drive->name, drive->hwif->data_phase ? "MULT" : "",
419 (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return startstop;
421 }
422
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200423 if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 local_irq_disable();
425
426 ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL);
427 ide_pio_datablock(drive, rq, 1);
428
429 return ide_started;
430}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100432int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200434 struct request *rq;
435 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200437 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
438 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
439 rq->buffer = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /*
442 * (ks) We transfer currently only whole sectors.
443 * This is suffient for now. But, it would be great,
444 * if we would find a solution to transfer any size.
445 * To support special commands like READ LONG.
446 */
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200447 rq->hard_nr_sectors = rq->nr_sectors = nsect;
448 rq->hard_cur_sectors = rq->current_nr_sectors = nsect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100450 if (task->tf_flags & IDE_TFLAG_WRITE)
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200451 rq->cmd_flags |= REQ_RW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200453 rq->special = task;
454 task->rq = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
FUJITA Tomonori154ed282008-07-15 21:21:43 +0200456 error = blk_execute_rq(drive->queue, NULL, rq, 0);
457 blk_put_request(rq);
458
459 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462EXPORT_SYMBOL(ide_raw_taskfile);
463
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100464int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task)
465{
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100466 task->data_phase = TASKFILE_NO_DATA;
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100467
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100468 return ide_raw_taskfile(drive, task, NULL, 0);
Bartlomiej Zolnierkiewicz9a3c49b2008-01-25 22:17:07 +0100469}
470EXPORT_SYMBOL_GPL(ide_no_data_taskfile);
471
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100472#ifdef CONFIG_IDE_TASK_IOCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
474{
475 ide_task_request_t *req_task;
476 ide_task_t args;
477 u8 *outbuf = NULL;
478 u8 *inbuf = NULL;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100479 u8 *data_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int err = 0;
481 int tasksize = sizeof(struct ide_task_request_s);
Alan Cox3a42bb22006-10-16 16:31:02 +0100482 unsigned int taskin = 0;
483 unsigned int taskout = 0;
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100484 u16 nsect = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 char __user *buf = (char __user *)arg;
486
487// printk("IDE Taskfile ...\n");
488
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800489 req_task = kzalloc(tasksize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (req_task == NULL) return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (copy_from_user(req_task, buf, tasksize)) {
492 kfree(req_task);
493 return -EFAULT;
494 }
495
Alan Cox3a42bb22006-10-16 16:31:02 +0100496 taskout = req_task->out_size;
497 taskin = req_task->in_size;
498
499 if (taskin > 65536 || taskout > 65536) {
500 err = -EINVAL;
501 goto abort;
502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (taskout) {
505 int outtotal = tasksize;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800506 outbuf = kzalloc(taskout, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (outbuf == NULL) {
508 err = -ENOMEM;
509 goto abort;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
512 err = -EFAULT;
513 goto abort;
514 }
515 }
516
517 if (taskin) {
518 int intotal = tasksize + taskout;
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800519 inbuf = kzalloc(taskin, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 if (inbuf == NULL) {
521 err = -ENOMEM;
522 goto abort;
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (copy_from_user(inbuf, buf + intotal, taskin)) {
525 err = -EFAULT;
526 goto abort;
527 }
528 }
529
530 memset(&args, 0, sizeof(ide_task_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100532 memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2);
533 memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100534
535 args.data_phase = req_task->data_phase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100537 args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE |
538 IDE_TFLAG_IN_TF;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200539 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz657cc1a2008-01-26 20:13:10 +0100540 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100541
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100542 if (req_task->out_flags.all) {
543 args.tf_flags |= IDE_TFLAG_FLAGGED;
544
545 if (req_task->out_flags.b.data)
546 args.tf_flags |= IDE_TFLAG_OUT_DATA;
547
548 if (req_task->out_flags.b.nsector_hob)
549 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
550 if (req_task->out_flags.b.sector_hob)
551 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL;
552 if (req_task->out_flags.b.lcyl_hob)
553 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM;
554 if (req_task->out_flags.b.hcyl_hob)
555 args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH;
556
557 if (req_task->out_flags.b.error_feature)
558 args.tf_flags |= IDE_TFLAG_OUT_FEATURE;
559 if (req_task->out_flags.b.nsector)
560 args.tf_flags |= IDE_TFLAG_OUT_NSECT;
561 if (req_task->out_flags.b.sector)
562 args.tf_flags |= IDE_TFLAG_OUT_LBAL;
563 if (req_task->out_flags.b.lcyl)
564 args.tf_flags |= IDE_TFLAG_OUT_LBAM;
565 if (req_task->out_flags.b.hcyl)
566 args.tf_flags |= IDE_TFLAG_OUT_LBAH;
Bartlomiej Zolnierkiewicza3bbb9d2008-01-25 22:17:10 +0100567 } else {
568 args.tf_flags |= IDE_TFLAG_OUT_TF;
569 if (args.tf_flags & IDE_TFLAG_LBA48)
570 args.tf_flags |= IDE_TFLAG_OUT_HOB;
Bartlomiej Zolnierkiewicz74095a92008-01-25 22:17:07 +0100571 }
572
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100573 if (req_task->in_flags.b.data)
574 args.tf_flags |= IDE_TFLAG_IN_DATA;
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 switch(req_task->data_phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 case TASKFILE_MULTI_OUT:
578 if (!drive->mult_count) {
579 /* (hs): give up if multcount is not set */
580 printk(KERN_ERR "%s: %s Multimode Write " \
581 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200582 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 err = -EPERM;
584 goto abort;
585 }
586 /* fall through */
587 case TASKFILE_OUT:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100588 /* fall through */
589 case TASKFILE_OUT_DMAQ:
590 case TASKFILE_OUT_DMA:
591 nsect = taskout / SECTOR_SIZE;
592 data_buf = outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 break;
594 case TASKFILE_MULTI_IN:
595 if (!drive->mult_count) {
596 /* (hs): give up if multcount is not set */
597 printk(KERN_ERR "%s: %s Multimode Read failure " \
598 "multcount is not set\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200599 drive->name, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 err = -EPERM;
601 goto abort;
602 }
603 /* fall through */
604 case TASKFILE_IN:
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100605 /* fall through */
606 case TASKFILE_IN_DMAQ:
607 case TASKFILE_IN_DMA:
608 nsect = taskin / SECTOR_SIZE;
609 data_buf = inbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 break;
611 case TASKFILE_NO_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 break;
613 default:
614 err = -EFAULT;
615 goto abort;
616 }
617
Bartlomiej Zolnierkiewiczac026ff2008-01-25 22:17:14 +0100618 if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA)
619 nsect = 0;
620 else if (!nsect) {
621 nsect = (args.tf.hob_nsect << 8) | args.tf.nsect;
622
623 if (!nsect) {
624 printk(KERN_ERR "%s: in/out command without data\n",
625 drive->name);
626 err = -EFAULT;
627 goto abort;
628 }
629 }
630
631 if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE)
632 args.tf_flags |= IDE_TFLAG_WRITE;
633
634 err = ide_raw_taskfile(drive, &args, data_buf, nsect);
635
Bartlomiej Zolnierkiewicz650d8412008-01-25 22:17:06 +0100636 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
637 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100638
639 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) &&
640 req_task->in_flags.all == 0) {
641 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200642 if (drive->dev_flags & IDE_DFLAG_LBA48)
Bartlomiej Zolnierkiewicz866e2ec2008-01-25 22:17:14 +0100643 req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8);
644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 if (copy_to_user(buf, req_task, tasksize)) {
647 err = -EFAULT;
648 goto abort;
649 }
650 if (taskout) {
651 int outtotal = tasksize;
652 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
653 err = -EFAULT;
654 goto abort;
655 }
656 }
657 if (taskin) {
658 int intotal = tasksize + taskout;
659 if (copy_to_user(buf + intotal, inbuf, taskin)) {
660 err = -EFAULT;
661 goto abort;
662 }
663 }
664abort:
665 kfree(req_task);
Jesper Juhl6044ec82005-11-07 01:01:32 -0800666 kfree(outbuf);
667 kfree(inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669// printk("IDE Taskfile ioctl ended. rc = %i\n", err);
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return err;
672}
Bartlomiej Zolnierkiewicz26a5b042007-11-05 21:42:27 +0100673#endif