Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Bartlomiej Zolnierkiewicz | 59bca8c | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 2 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * IBM Storage Technology Division |
Bartlomiej Zolnierkiewicz | 59bca8c | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 6 | * Copyright (C) 2003-2004, 2007 Bartlomiej Zolnierkiewicz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * The big the bad and the ugly. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/types.h> |
| 12 | #include <linux/string.h> |
| 13 | #include <linux/kernel.h> |
Andrew Morton | 651c29a | 2006-02-15 15:17:37 -0800 | [diff] [blame] | 14 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/delay.h> |
| 19 | #include <linux/hdreg.h> |
| 20 | #include <linux/ide.h> |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 21 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/uaccess.h> |
| 24 | #include <asm/io.h> |
| 25 | |
Bartlomiej Zolnierkiewicz | 089c5c7 | 2008-04-28 23:44:39 +0200 | [diff] [blame] | 26 | void 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | int taskfile_lib_get_identify (ide_drive_t *drive, u8 *buf) |
| 41 | { |
| 42 | ide_task_t args; |
Bartlomiej Zolnierkiewicz | 650d841 | 2008-01-25 22:17:06 +0100 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | memset(&args, 0, sizeof(ide_task_t)); |
Bartlomiej Zolnierkiewicz | 650d841 | 2008-01-25 22:17:06 +0100 | [diff] [blame] | 45 | args.tf.nsect = 0x01; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | if (drive->media == ide_disk) |
Bartlomiej Zolnierkiewicz | aaaade3 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 47 | args.tf.command = ATA_CMD_ID_ATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | else |
Bartlomiej Zolnierkiewicz | aaaade3 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 49 | args.tf.command = ATA_CMD_ID_ATAPI; |
Bartlomiej Zolnierkiewicz | 657cc1a | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 50 | args.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 51 | args.data_phase = TASKFILE_IN; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 52 | return ide_raw_taskfile(drive, &args, buf, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Bartlomiej Zolnierkiewicz | 1192e52 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 55 | static ide_startstop_t task_no_data_intr(ide_drive_t *); |
Bartlomiej Zolnierkiewicz | f6e29e3 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 56 | static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *); |
| 57 | static ide_startstop_t task_in_intr(ide_drive_t *); |
Bartlomiej Zolnierkiewicz | 1192e52 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task) |
| 60 | { |
Bartlomiej Zolnierkiewicz | 898ec22 | 2009-01-06 17:20:52 +0100 | [diff] [blame] | 61 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | 650d841 | 2008-01-25 22:17:06 +0100 | [diff] [blame] | 62 | struct ide_taskfile *tf = &task->tf; |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 63 | ide_handler_t *handler = NULL; |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 64 | const struct ide_tp_ops *tp_ops = hwif->tp_ops; |
Bartlomiej Zolnierkiewicz | f37afda | 2008-04-26 22:25:24 +0200 | [diff] [blame] | 65 | const struct ide_dma_ops *dma_ops = hwif->dma_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Bartlomiej Zolnierkiewicz | 1edee60 | 2008-01-25 22:17:15 +0100 | [diff] [blame] | 67 | 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 Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 79 | memcpy(&hwif->task, task, sizeof(*task)); |
| 80 | |
Bartlomiej Zolnierkiewicz | 089c5c7 | 2008-04-28 23:44:39 +0200 | [diff] [blame] | 81 | if ((task->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) { |
| 82 | ide_tf_dump(drive->name, tf); |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 83 | tp_ops->set_irq(hwif, 1); |
Bartlomiej Zolnierkiewicz | ed4af48 | 2008-07-15 21:21:48 +0200 | [diff] [blame] | 84 | SELECT_MASK(drive, 0); |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 85 | tp_ops->tf_load(drive, task); |
Bartlomiej Zolnierkiewicz | 089c5c7 | 2008-04-28 23:44:39 +0200 | [diff] [blame] | 86 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 88 | switch (task->data_phase) { |
| 89 | case TASKFILE_MULTI_OUT: |
| 90 | case TASKFILE_OUT: |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 91 | tp_ops->exec_command(hwif, tf->command); |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 92 | ndelay(400); /* FIXME */ |
| 93 | return pre_task_out_intr(drive, task->rq); |
| 94 | case TASKFILE_MULTI_IN: |
| 95 | case TASKFILE_IN: |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 96 | handler = task_in_intr; |
Bartlomiej Zolnierkiewicz | 1192e52 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 97 | /* fall-through */ |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 98 | case TASKFILE_NO_DATA: |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 99 | if (handler == NULL) |
| 100 | handler = task_no_data_intr; |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 101 | ide_execute_command(drive, tf->command, handler, |
| 102 | WAIT_WORSTCASE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | return ide_started; |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 104 | default: |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 105 | if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0 || |
| 106 | dma_ops->dma_setup(drive)) |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 107 | return ide_stopped; |
Bartlomiej Zolnierkiewicz | 5e37bdc | 2008-04-26 22:25:24 +0200 | [diff] [blame] | 108 | dma_ops->dma_exec_cmd(drive, tf->command); |
| 109 | dma_ops->dma_start(drive); |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 110 | return ide_started; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } |
Bartlomiej Zolnierkiewicz | f6e29e3 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 113 | EXPORT_SYMBOL_GPL(do_rw_taskfile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | /* |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 116 | * Handler for commands without a data phase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | */ |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 118 | static ide_startstop_t task_no_data_intr(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Bartlomiej Zolnierkiewicz | b73c7ee | 2008-07-23 19:55:52 +0200 | [diff] [blame] | 120 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 121 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | u8 stat; |
| 126 | |
Bartlomiej Zolnierkiewicz | 90d2c6b | 2008-07-24 22:53:36 +0200 | [diff] [blame] | 127 | local_irq_enable_in_hardirq(); |
| 128 | |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 129 | while (1) { |
| 130 | stat = hwif->tp_ops->read_status(hwif); |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 131 | if ((stat & ATA_BUSY) == 0 || retries-- == 0) |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 132 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | udelay(10); |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 134 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 136 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | return ide_error(drive, "task_no_data_intr", stat); |
| 150 | /* calls ide_end_drive_cmd */ |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 151 | } |
Bartlomiej Zolnierkiewicz | c47137a | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 152 | |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 153 | if (!custom) |
Bartlomiej Zolnierkiewicz | 64a57fe | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 154 | ide_end_drive_cmd(drive, stat, ide_read_error(drive)); |
Elias Oltmanns | 4abdc6e | 2008-10-13 21:39:50 +0200 | [diff] [blame] | 155 | 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 Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 165 | drive->mult_count = drive->mult_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | return ide_stopped; |
| 168 | } |
| 169 | |
Adrian Bunk | da6f4c7 | 2008-02-01 23:09:16 +0100 | [diff] [blame] | 170 | static u8 wait_drive_not_busy(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Bartlomiej Zolnierkiewicz | b73c7ee | 2008-07-23 19:55:52 +0200 | [diff] [blame] | 172 | ide_hwif_t *hwif = drive->hwif; |
Masatake YAMATO | b42fa13 | 2007-07-03 22:28:34 +0200 | [diff] [blame] | 173 | int retries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | u8 stat; |
| 175 | |
| 176 | /* |
Bartlomiej Zolnierkiewicz | f54feaf | 2008-06-20 20:53:33 +0200 | [diff] [blame] | 177 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | */ |
Bartlomiej Zolnierkiewicz | f54feaf | 2008-06-20 20:53:33 +0200 | [diff] [blame] | 180 | for (retries = 0; retries < 1000; retries++) { |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 181 | stat = hwif->tp_ops->read_status(hwif); |
Bartlomiej Zolnierkiewicz | c47137a | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 182 | |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 183 | if (stat & ATA_BUSY) |
Masatake YAMATO | b42fa13 | 2007-07-03 22:28:34 +0200 | [diff] [blame] | 184 | udelay(10); |
| 185 | else |
| 186 | break; |
| 187 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 189 | if (stat & ATA_BUSY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | printk(KERN_ERR "%s: drive still BUSY!\n", drive->name); |
| 191 | |
| 192 | return stat; |
| 193 | } |
| 194 | |
Bartlomiej Zolnierkiewicz | 92d3ab2 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 195 | static void ide_pio_sector(ide_drive_t *drive, struct request *rq, |
| 196 | unsigned int write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
| 198 | ide_hwif_t *hwif = drive->hwif; |
| 199 | struct scatterlist *sg = hwif->sg_table; |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 200 | struct scatterlist *cursg = hwif->cursg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | struct page *page; |
| 202 | #ifdef CONFIG_HIGHMEM |
| 203 | unsigned long flags; |
| 204 | #endif |
| 205 | unsigned int offset; |
| 206 | u8 *buf; |
| 207 | |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 208 | cursg = hwif->cursg; |
| 209 | if (!cursg) { |
| 210 | cursg = sg; |
| 211 | hwif->cursg = sg; |
| 212 | } |
| 213 | |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 214 | page = sg_page(cursg); |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 215 | offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 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 Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 229 | if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) { |
| 230 | hwif->cursg = sg_next(hwif->cursg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | hwif->cursg_ofs = 0; |
| 232 | } |
| 233 | |
| 234 | /* do the actual data transfer */ |
| 235 | if (write) |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 236 | hwif->tp_ops->output_data(drive, rq, buf, SECTOR_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | else |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 238 | hwif->tp_ops->input_data(drive, rq, buf, SECTOR_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
| 240 | kunmap_atomic(buf, KM_BIO_SRC_IRQ); |
| 241 | #ifdef CONFIG_HIGHMEM |
| 242 | local_irq_restore(flags); |
| 243 | #endif |
| 244 | } |
| 245 | |
Bartlomiej Zolnierkiewicz | 92d3ab2 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 246 | static void ide_pio_multi(ide_drive_t *drive, struct request *rq, |
| 247 | unsigned int write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
| 249 | unsigned int nsect; |
| 250 | |
| 251 | nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count); |
| 252 | while (nsect--) |
Bartlomiej Zolnierkiewicz | 92d3ab2 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 253 | ide_pio_sector(drive, rq, write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
| 255 | |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 256 | static void ide_pio_datablock(ide_drive_t *drive, struct request *rq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | unsigned int write) |
| 258 | { |
Tejun Heo | 35cf2b9 | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 259 | u8 saved_io_32bit = drive->io_32bit; |
| 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (rq->bio) /* fs request */ |
| 262 | rq->errors = 0; |
| 263 | |
Tejun Heo | 35cf2b9 | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 264 | 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 Morton | 651c29a | 2006-02-15 15:17:37 -0800 | [diff] [blame] | 271 | touch_softlockup_watchdog(); |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | switch (drive->hwif->data_phase) { |
| 274 | case TASKFILE_MULTI_IN: |
| 275 | case TASKFILE_MULTI_OUT: |
Bartlomiej Zolnierkiewicz | 92d3ab2 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 276 | ide_pio_multi(drive, rq, write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | break; |
| 278 | default: |
Bartlomiej Zolnierkiewicz | 92d3ab2 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 279 | ide_pio_sector(drive, rq, write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | break; |
| 281 | } |
Tejun Heo | 35cf2b9 | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 282 | |
| 283 | drive->io_32bit = saved_io_32bit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | static 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 Zolnierkiewicz | 7f3c868 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 312 | struct ide_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
Bartlomiej Zolnierkiewicz | 7f3c868 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 314 | drv = *(struct ide_driver **)rq->rq_disk->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | drv->end_request(drive, 1, sectors); |
| 316 | } |
| 317 | } |
| 318 | return ide_error(drive, s, stat); |
| 319 | } |
| 320 | |
Tejun Heo | 4d7a984 | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 321 | void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 323 | if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) { |
Bartlomiej Zolnierkiewicz | 64a57fe | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 324 | u8 err = ide_read_error(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Tejun Heo | 4d7a984 | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 326 | ide_end_drive_cmd(drive, stat, err); |
| 327 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | } |
| 329 | |
Richard Purdie | 03731fb | 2006-03-31 02:31:15 -0800 | [diff] [blame] | 330 | if (rq->rq_disk) { |
Bartlomiej Zolnierkiewicz | 7f3c868 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 331 | struct ide_driver *drv; |
Richard Purdie | 03731fb | 2006-03-31 02:31:15 -0800 | [diff] [blame] | 332 | |
Bartlomiej Zolnierkiewicz | 7f3c868 | 2009-01-06 17:20:53 +0100 | [diff] [blame] | 333 | drv = *(struct ide_driver **)rq->rq_disk->private_data;; |
Bartlomiej Zolnierkiewicz | 79f21b8 | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 334 | drv->end_request(drive, 1, rq->nr_sectors); |
Richard Purdie | 03731fb | 2006-03-31 02:31:15 -0800 | [diff] [blame] | 335 | } else |
Bartlomiej Zolnierkiewicz | 79f21b8 | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 336 | ide_end_request(drive, 1, rq->nr_sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | /* |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 340 | * 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 | */ |
| 345 | static ide_startstop_t task_in_unexpected(ide_drive_t *drive, struct request *rq, u8 stat) |
| 346 | { |
| 347 | /* Command all done? */ |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 348 | if (OK_STAT(stat, ATA_DRDY, ATA_BUSY)) { |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 349 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | * Handler for command with PIO data-in phase (Read/Read Multiple). |
| 360 | */ |
Bartlomiej Zolnierkiewicz | f6e29e3 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 361 | static ide_startstop_t task_in_intr(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { |
| 363 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | b65fac3 | 2009-01-06 17:20:50 +0100 | [diff] [blame] | 364 | struct request *rq = hwif->rq; |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 365 | u8 stat = hwif->tp_ops->read_status(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 367 | /* Error? */ |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 368 | if (stat & ATA_ERR) |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 369 | return task_error(drive, rq, __func__, stat); |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 370 | |
| 371 | /* Didn't want any data? Odd. */ |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 372 | if ((stat & ATA_DRQ) == 0) |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 373 | return task_in_unexpected(drive, rq, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | ide_pio_datablock(drive, rq, 0); |
| 376 | |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 377 | /* Are we done? Check status and finish transfer. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | if (!hwif->nleft) { |
| 379 | stat = wait_drive_not_busy(drive); |
Bartlomiej Zolnierkiewicz | 73d7de0 | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 380 | if (!OK_STAT(stat, 0, BAD_STAT)) |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 381 | return task_error(drive, rq, __func__, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
| 392 | /* |
| 393 | * Handler for command with PIO data-out phase (Write/Write Multiple). |
| 394 | */ |
| 395 | static ide_startstop_t task_out_intr (ide_drive_t *drive) |
| 396 | { |
| 397 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | b65fac3 | 2009-01-06 17:20:50 +0100 | [diff] [blame] | 398 | struct request *rq = hwif->rq; |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 399 | u8 stat = hwif->tp_ops->read_status(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
| 401 | if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat)) |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 402 | return task_error(drive, rq, __func__, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
| 404 | /* Deal with unexpected ATA data phase. */ |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 405 | if (((stat & ATA_DRQ) == 0) ^ !hwif->nleft) |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 406 | return task_error(drive, rq, __func__, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
| 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 Zolnierkiewicz | f6e29e3 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 420 | static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, struct request *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | { |
| 422 | ide_startstop_t startstop; |
| 423 | |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 424 | if (ide_wait_stat(&startstop, drive, ATA_DRQ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | drive->bad_wstat, WAIT_DRQ)) { |
| 426 | printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n", |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 427 | drive->name, drive->hwif->data_phase ? "MULT" : "", |
| 428 | (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | return startstop; |
| 430 | } |
| 431 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 432 | if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | local_irq_disable(); |
| 434 | |
| 435 | ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL); |
| 436 | ide_pio_datablock(drive, rq, 1); |
| 437 | |
| 438 | return ide_started; |
| 439 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 441 | int ide_raw_taskfile(ide_drive_t *drive, ide_task_t *task, u8 *buf, u16 nsect) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | { |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 443 | struct request *rq; |
| 444 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 446 | rq = blk_get_request(drive->queue, READ, __GFP_WAIT); |
| 447 | rq->cmd_type = REQ_TYPE_ATA_TASKFILE; |
| 448 | rq->buffer = buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
| 450 | /* |
| 451 | * (ks) We transfer currently only whole sectors. |
| 452 | * This is suffient for now. But, it would be great, |
| 453 | * if we would find a solution to transfer any size. |
| 454 | * To support special commands like READ LONG. |
| 455 | */ |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 456 | rq->hard_nr_sectors = rq->nr_sectors = nsect; |
| 457 | rq->hard_cur_sectors = rq->current_nr_sectors = nsect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 459 | if (task->tf_flags & IDE_TFLAG_WRITE) |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 460 | rq->cmd_flags |= REQ_RW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 462 | rq->special = task; |
| 463 | task->rq = rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 465 | error = blk_execute_rq(drive->queue, NULL, rq, 0); |
| 466 | blk_put_request(rq); |
| 467 | |
| 468 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | } |
| 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | EXPORT_SYMBOL(ide_raw_taskfile); |
| 472 | |
Bartlomiej Zolnierkiewicz | 9a3c49b | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 473 | int ide_no_data_taskfile(ide_drive_t *drive, ide_task_t *task) |
| 474 | { |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 475 | task->data_phase = TASKFILE_NO_DATA; |
Bartlomiej Zolnierkiewicz | 9a3c49b | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 476 | |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 477 | return ide_raw_taskfile(drive, task, NULL, 0); |
Bartlomiej Zolnierkiewicz | 9a3c49b | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 478 | } |
| 479 | EXPORT_SYMBOL_GPL(ide_no_data_taskfile); |
| 480 | |
Bartlomiej Zolnierkiewicz | 26a5b04 | 2007-11-05 21:42:27 +0100 | [diff] [blame] | 481 | #ifdef CONFIG_IDE_TASK_IOCTL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg) |
| 483 | { |
| 484 | ide_task_request_t *req_task; |
| 485 | ide_task_t args; |
| 486 | u8 *outbuf = NULL; |
| 487 | u8 *inbuf = NULL; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 488 | u8 *data_buf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | int err = 0; |
| 490 | int tasksize = sizeof(struct ide_task_request_s); |
Alan Cox | 3a42bb2 | 2006-10-16 16:31:02 +0100 | [diff] [blame] | 491 | unsigned int taskin = 0; |
| 492 | unsigned int taskout = 0; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 493 | u16 nsect = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | char __user *buf = (char __user *)arg; |
| 495 | |
| 496 | // printk("IDE Taskfile ...\n"); |
| 497 | |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 498 | req_task = kzalloc(tasksize, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | if (req_task == NULL) return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | if (copy_from_user(req_task, buf, tasksize)) { |
| 501 | kfree(req_task); |
| 502 | return -EFAULT; |
| 503 | } |
| 504 | |
Alan Cox | 3a42bb2 | 2006-10-16 16:31:02 +0100 | [diff] [blame] | 505 | taskout = req_task->out_size; |
| 506 | taskin = req_task->in_size; |
| 507 | |
| 508 | if (taskin > 65536 || taskout > 65536) { |
| 509 | err = -EINVAL; |
| 510 | goto abort; |
| 511 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
| 513 | if (taskout) { |
| 514 | int outtotal = tasksize; |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 515 | outbuf = kzalloc(taskout, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | if (outbuf == NULL) { |
| 517 | err = -ENOMEM; |
| 518 | goto abort; |
| 519 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | if (copy_from_user(outbuf, buf + outtotal, taskout)) { |
| 521 | err = -EFAULT; |
| 522 | goto abort; |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | if (taskin) { |
| 527 | int intotal = tasksize + taskout; |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 528 | inbuf = kzalloc(taskin, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | if (inbuf == NULL) { |
| 530 | err = -ENOMEM; |
| 531 | goto abort; |
| 532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | if (copy_from_user(inbuf, buf + intotal, taskin)) { |
| 534 | err = -EFAULT; |
| 535 | goto abort; |
| 536 | } |
| 537 | } |
| 538 | |
| 539 | memset(&args, 0, sizeof(ide_task_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Bartlomiej Zolnierkiewicz | 650d841 | 2008-01-25 22:17:06 +0100 | [diff] [blame] | 541 | memcpy(&args.tf_array[0], req_task->hob_ports, HDIO_DRIVE_HOB_HDR_SIZE - 2); |
| 542 | memcpy(&args.tf_array[6], req_task->io_ports, HDIO_DRIVE_TASK_HDR_SIZE); |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 543 | |
| 544 | args.data_phase = req_task->data_phase; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Bartlomiej Zolnierkiewicz | 657cc1a | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 546 | args.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE | |
| 547 | IDE_TFLAG_IN_TF; |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 548 | if (drive->dev_flags & IDE_DFLAG_LBA48) |
Bartlomiej Zolnierkiewicz | 657cc1a | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 549 | args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB); |
Bartlomiej Zolnierkiewicz | a3bbb9d | 2008-01-25 22:17:10 +0100 | [diff] [blame] | 550 | |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 551 | if (req_task->out_flags.all) { |
| 552 | args.tf_flags |= IDE_TFLAG_FLAGGED; |
| 553 | |
| 554 | if (req_task->out_flags.b.data) |
| 555 | args.tf_flags |= IDE_TFLAG_OUT_DATA; |
| 556 | |
| 557 | if (req_task->out_flags.b.nsector_hob) |
| 558 | args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT; |
| 559 | if (req_task->out_flags.b.sector_hob) |
| 560 | args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL; |
| 561 | if (req_task->out_flags.b.lcyl_hob) |
| 562 | args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM; |
| 563 | if (req_task->out_flags.b.hcyl_hob) |
| 564 | args.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH; |
| 565 | |
| 566 | if (req_task->out_flags.b.error_feature) |
| 567 | args.tf_flags |= IDE_TFLAG_OUT_FEATURE; |
| 568 | if (req_task->out_flags.b.nsector) |
| 569 | args.tf_flags |= IDE_TFLAG_OUT_NSECT; |
| 570 | if (req_task->out_flags.b.sector) |
| 571 | args.tf_flags |= IDE_TFLAG_OUT_LBAL; |
| 572 | if (req_task->out_flags.b.lcyl) |
| 573 | args.tf_flags |= IDE_TFLAG_OUT_LBAM; |
| 574 | if (req_task->out_flags.b.hcyl) |
| 575 | args.tf_flags |= IDE_TFLAG_OUT_LBAH; |
Bartlomiej Zolnierkiewicz | a3bbb9d | 2008-01-25 22:17:10 +0100 | [diff] [blame] | 576 | } else { |
| 577 | args.tf_flags |= IDE_TFLAG_OUT_TF; |
| 578 | if (args.tf_flags & IDE_TFLAG_LBA48) |
| 579 | args.tf_flags |= IDE_TFLAG_OUT_HOB; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 580 | } |
| 581 | |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 582 | if (req_task->in_flags.b.data) |
| 583 | args.tf_flags |= IDE_TFLAG_IN_DATA; |
| 584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | switch(req_task->data_phase) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | case TASKFILE_MULTI_OUT: |
| 587 | if (!drive->mult_count) { |
| 588 | /* (hs): give up if multcount is not set */ |
| 589 | printk(KERN_ERR "%s: %s Multimode Write " \ |
| 590 | "multcount is not set\n", |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 591 | drive->name, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | err = -EPERM; |
| 593 | goto abort; |
| 594 | } |
| 595 | /* fall through */ |
| 596 | case TASKFILE_OUT: |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 597 | /* fall through */ |
| 598 | case TASKFILE_OUT_DMAQ: |
| 599 | case TASKFILE_OUT_DMA: |
| 600 | nsect = taskout / SECTOR_SIZE; |
| 601 | data_buf = outbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | break; |
| 603 | case TASKFILE_MULTI_IN: |
| 604 | if (!drive->mult_count) { |
| 605 | /* (hs): give up if multcount is not set */ |
| 606 | printk(KERN_ERR "%s: %s Multimode Read failure " \ |
| 607 | "multcount is not set\n", |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 608 | drive->name, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | err = -EPERM; |
| 610 | goto abort; |
| 611 | } |
| 612 | /* fall through */ |
| 613 | case TASKFILE_IN: |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 614 | /* fall through */ |
| 615 | case TASKFILE_IN_DMAQ: |
| 616 | case TASKFILE_IN_DMA: |
| 617 | nsect = taskin / SECTOR_SIZE; |
| 618 | data_buf = inbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | break; |
| 620 | case TASKFILE_NO_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | break; |
| 622 | default: |
| 623 | err = -EFAULT; |
| 624 | goto abort; |
| 625 | } |
| 626 | |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 627 | if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA) |
| 628 | nsect = 0; |
| 629 | else if (!nsect) { |
| 630 | nsect = (args.tf.hob_nsect << 8) | args.tf.nsect; |
| 631 | |
| 632 | if (!nsect) { |
| 633 | printk(KERN_ERR "%s: in/out command without data\n", |
| 634 | drive->name); |
| 635 | err = -EFAULT; |
| 636 | goto abort; |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE) |
| 641 | args.tf_flags |= IDE_TFLAG_WRITE; |
| 642 | |
| 643 | err = ide_raw_taskfile(drive, &args, data_buf, nsect); |
| 644 | |
Bartlomiej Zolnierkiewicz | 650d841 | 2008-01-25 22:17:06 +0100 | [diff] [blame] | 645 | memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2); |
| 646 | memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE); |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 647 | |
| 648 | if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) && |
| 649 | req_task->in_flags.all == 0) { |
| 650 | req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS; |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 651 | if (drive->dev_flags & IDE_DFLAG_LBA48) |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 652 | req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8); |
| 653 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
| 655 | if (copy_to_user(buf, req_task, tasksize)) { |
| 656 | err = -EFAULT; |
| 657 | goto abort; |
| 658 | } |
| 659 | if (taskout) { |
| 660 | int outtotal = tasksize; |
| 661 | if (copy_to_user(buf + outtotal, outbuf, taskout)) { |
| 662 | err = -EFAULT; |
| 663 | goto abort; |
| 664 | } |
| 665 | } |
| 666 | if (taskin) { |
| 667 | int intotal = tasksize + taskout; |
| 668 | if (copy_to_user(buf + intotal, inbuf, taskin)) { |
| 669 | err = -EFAULT; |
| 670 | goto abort; |
| 671 | } |
| 672 | } |
| 673 | abort: |
| 674 | kfree(req_task); |
Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 675 | kfree(outbuf); |
| 676 | kfree(inbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
| 678 | // printk("IDE Taskfile ioctl ended. rc = %i\n", err); |
| 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | return err; |
| 681 | } |
Bartlomiej Zolnierkiewicz | 26a5b04 | 2007-11-05 21:42:27 +0100 | [diff] [blame] | 682 | #endif |