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 | { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 42 | struct ide_cmd cmd; |
Bartlomiej Zolnierkiewicz | 650d841 | 2008-01-25 22:17:06 +0100 | [diff] [blame] | 43 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 44 | memset(&cmd, 0, sizeof(cmd)); |
| 45 | cmd.tf.nsect = 0x01; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | if (drive->media == ide_disk) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 47 | cmd.tf.command = ATA_CMD_ID_ATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | else |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 49 | cmd.tf.command = ATA_CMD_ID_ATAPI; |
| 50 | cmd.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE; |
| 51 | cmd.data_phase = TASKFILE_IN; |
| 52 | |
| 53 | return ide_raw_taskfile(drive, &cmd, buf, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Bartlomiej Zolnierkiewicz | 1192e52 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 56 | static ide_startstop_t task_no_data_intr(ide_drive_t *); |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 57 | static ide_startstop_t pre_task_out_intr(ide_drive_t *, struct ide_cmd *); |
Bartlomiej Zolnierkiewicz | f6e29e3 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 58 | static ide_startstop_t task_in_intr(ide_drive_t *); |
Bartlomiej Zolnierkiewicz | 1192e52 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 59 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 60 | ide_startstop_t do_rw_taskfile(ide_drive_t *drive, struct ide_cmd *orig_cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Bartlomiej Zolnierkiewicz | 898ec22 | 2009-01-06 17:20:52 +0100 | [diff] [blame] | 62 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 63 | struct ide_cmd *cmd = &hwif->cmd; |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 64 | struct ide_taskfile *tf = &cmd->tf; |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 65 | ide_handler_t *handler = NULL; |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 66 | const struct ide_tp_ops *tp_ops = hwif->tp_ops; |
Bartlomiej Zolnierkiewicz | f37afda | 2008-04-26 22:25:24 +0200 | [diff] [blame] | 67 | const struct ide_dma_ops *dma_ops = hwif->dma_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 69 | if (orig_cmd->data_phase == TASKFILE_MULTI_IN || |
| 70 | orig_cmd->data_phase == TASKFILE_MULTI_OUT) { |
Bartlomiej Zolnierkiewicz | 1edee60 | 2008-01-25 22:17:15 +0100 | [diff] [blame] | 71 | if (!drive->mult_count) { |
| 72 | printk(KERN_ERR "%s: multimode not set!\n", |
| 73 | drive->name); |
| 74 | return ide_stopped; |
| 75 | } |
| 76 | } |
| 77 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 78 | if (orig_cmd->ftf_flags & IDE_FTFLAG_FLAGGED) |
| 79 | orig_cmd->ftf_flags |= IDE_FTFLAG_SET_IN_FLAGS; |
Bartlomiej Zolnierkiewicz | 1edee60 | 2008-01-25 22:17:15 +0100 | [diff] [blame] | 80 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 81 | memcpy(cmd, orig_cmd, sizeof(*cmd)); |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 82 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 83 | if ((cmd->tf_flags & IDE_TFLAG_DMA_PIO_FALLBACK) == 0) { |
Bartlomiej Zolnierkiewicz | 089c5c7 | 2008-04-28 23:44:39 +0200 | [diff] [blame] | 84 | ide_tf_dump(drive->name, tf); |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 85 | tp_ops->set_irq(hwif, 1); |
Bartlomiej Zolnierkiewicz | ed4af48 | 2008-07-15 21:21:48 +0200 | [diff] [blame] | 86 | SELECT_MASK(drive, 0); |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 87 | tp_ops->tf_load(drive, cmd); |
Bartlomiej Zolnierkiewicz | 089c5c7 | 2008-04-28 23:44:39 +0200 | [diff] [blame] | 88 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 90 | switch (cmd->data_phase) { |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 91 | case TASKFILE_MULTI_OUT: |
| 92 | case TASKFILE_OUT: |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 93 | tp_ops->exec_command(hwif, tf->command); |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 94 | ndelay(400); /* FIXME */ |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 95 | return pre_task_out_intr(drive, cmd); |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 96 | case TASKFILE_MULTI_IN: |
| 97 | case TASKFILE_IN: |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 98 | handler = task_in_intr; |
Bartlomiej Zolnierkiewicz | 1192e52 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 99 | /* fall-through */ |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 100 | case TASKFILE_NO_DATA: |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 101 | if (handler == NULL) |
| 102 | handler = task_no_data_intr; |
Bartlomiej Zolnierkiewicz | 57d7366 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 103 | ide_execute_command(drive, tf->command, handler, |
| 104 | WAIT_WORSTCASE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | return ide_started; |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 106 | default: |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 107 | if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0 || |
Bartlomiej Zolnierkiewicz | e6830a8 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 108 | ide_build_sglist(drive, hwif->rq) == 0 || |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 109 | dma_ops->dma_setup(drive)) |
Bartlomiej Zolnierkiewicz | 10d9015 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 110 | return ide_stopped; |
Bartlomiej Zolnierkiewicz | 5e37bdc | 2008-04-26 22:25:24 +0200 | [diff] [blame] | 111 | dma_ops->dma_exec_cmd(drive, tf->command); |
| 112 | dma_ops->dma_start(drive); |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 113 | return ide_started; |
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 | f6e29e3 | 2008-01-25 22:17:16 +0100 | [diff] [blame] | 116 | EXPORT_SYMBOL_GPL(do_rw_taskfile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | /* |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 119 | * Handler for commands without a data phase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | */ |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 121 | static ide_startstop_t task_no_data_intr(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
Bartlomiej Zolnierkiewicz | b73c7ee | 2008-07-23 19:55:52 +0200 | [diff] [blame] | 123 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 124 | struct ide_cmd *cmd = &hwif->cmd; |
| 125 | struct ide_taskfile *tf = &cmd->tf; |
| 126 | int custom = (cmd->tf_flags & IDE_TFLAG_CUSTOM_HANDLER) ? 1 : 0; |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 127 | int retries = (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) ? 5 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | u8 stat; |
| 129 | |
Bartlomiej Zolnierkiewicz | 90d2c6b | 2008-07-24 22:53:36 +0200 | [diff] [blame] | 130 | local_irq_enable_in_hardirq(); |
| 131 | |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 132 | while (1) { |
| 133 | stat = hwif->tp_ops->read_status(hwif); |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 134 | if ((stat & ATA_BUSY) == 0 || retries-- == 0) |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 135 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | udelay(10); |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 137 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 139 | if (!OK_STAT(stat, ATA_DRDY, BAD_STAT)) { |
| 140 | if (custom && tf->command == ATA_CMD_SET_MULTI) { |
| 141 | drive->mult_req = drive->mult_count = 0; |
| 142 | drive->special.b.recalibrate = 1; |
| 143 | (void)ide_dump_status(drive, __func__, stat); |
| 144 | return ide_stopped; |
| 145 | } else if (custom && tf->command == ATA_CMD_INIT_DEV_PARAMS) { |
| 146 | if ((stat & (ATA_ERR | ATA_DRQ)) == 0) { |
| 147 | ide_set_handler(drive, &task_no_data_intr, |
| 148 | WAIT_WORSTCASE, NULL); |
| 149 | return ide_started; |
| 150 | } |
| 151 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | return ide_error(drive, "task_no_data_intr", stat); |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 153 | } |
Bartlomiej Zolnierkiewicz | c47137a | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 154 | |
Bartlomiej Zolnierkiewicz | a09485d | 2009-03-27 12:46:31 +0100 | [diff] [blame] | 155 | if (custom && tf->command == ATA_CMD_IDLEIMMEDIATE) { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 156 | hwif->tp_ops->tf_read(drive, cmd); |
Elias Oltmanns | 4abdc6e | 2008-10-13 21:39:50 +0200 | [diff] [blame] | 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; |
Bartlomiej Zolnierkiewicz | a09485d | 2009-03-27 12:46:31 +0100 | [diff] [blame] | 163 | } else if (custom && tf->command == ATA_CMD_SET_MULTI) |
Bartlomiej Zolnierkiewicz | d6ff9f6 | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 164 | drive->mult_count = drive->mult_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Bartlomiej Zolnierkiewicz | a09485d | 2009-03-27 12:46:31 +0100 | [diff] [blame] | 166 | if (custom == 0 || tf->command == ATA_CMD_IDLEIMMEDIATE) { |
| 167 | struct request *rq = hwif->rq; |
| 168 | u8 err = ide_read_error(drive); |
| 169 | |
| 170 | if (blk_pm_request(rq)) |
| 171 | ide_complete_pm_rq(drive, rq); |
| 172 | else { |
| 173 | if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 174 | ide_complete_cmd(drive, cmd, stat, err); |
Bartlomiej Zolnierkiewicz | a09485d | 2009-03-27 12:46:31 +0100 | [diff] [blame] | 175 | ide_complete_rq(drive, err); |
| 176 | } |
| 177 | } |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return ide_stopped; |
| 180 | } |
| 181 | |
Adrian Bunk | da6f4c7 | 2008-02-01 23:09:16 +0100 | [diff] [blame] | 182 | static u8 wait_drive_not_busy(ide_drive_t *drive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Bartlomiej Zolnierkiewicz | b73c7ee | 2008-07-23 19:55:52 +0200 | [diff] [blame] | 184 | ide_hwif_t *hwif = drive->hwif; |
Masatake YAMATO | b42fa13 | 2007-07-03 22:28:34 +0200 | [diff] [blame] | 185 | int retries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | u8 stat; |
| 187 | |
| 188 | /* |
Bartlomiej Zolnierkiewicz | f54feaf | 2008-06-20 20:53:33 +0200 | [diff] [blame] | 189 | * Last sector was transfered, wait until device is ready. This can |
| 190 | * 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] | 191 | */ |
Bartlomiej Zolnierkiewicz | f54feaf | 2008-06-20 20:53:33 +0200 | [diff] [blame] | 192 | for (retries = 0; retries < 1000; retries++) { |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 193 | stat = hwif->tp_ops->read_status(hwif); |
Bartlomiej Zolnierkiewicz | c47137a | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 194 | |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 195 | if (stat & ATA_BUSY) |
Masatake YAMATO | b42fa13 | 2007-07-03 22:28:34 +0200 | [diff] [blame] | 196 | udelay(10); |
| 197 | else |
| 198 | break; |
| 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 201 | if (stat & ATA_BUSY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | printk(KERN_ERR "%s: drive still BUSY!\n", drive->name); |
| 203 | |
| 204 | return stat; |
| 205 | } |
| 206 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 207 | static void ide_pio_sector(ide_drive_t *drive, struct ide_cmd *cmd, |
Bartlomiej Zolnierkiewicz | 92d3ab2 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 208 | unsigned int write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
| 210 | ide_hwif_t *hwif = drive->hwif; |
| 211 | struct scatterlist *sg = hwif->sg_table; |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 212 | struct scatterlist *cursg = hwif->cursg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | struct page *page; |
| 214 | #ifdef CONFIG_HIGHMEM |
| 215 | unsigned long flags; |
| 216 | #endif |
| 217 | unsigned int offset; |
| 218 | u8 *buf; |
| 219 | |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 220 | cursg = hwif->cursg; |
| 221 | if (!cursg) { |
| 222 | cursg = sg; |
| 223 | hwif->cursg = sg; |
| 224 | } |
| 225 | |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 226 | page = sg_page(cursg); |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 227 | offset = cursg->offset + hwif->cursg_ofs * SECTOR_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | /* get the current page and offset */ |
| 230 | page = nth_page(page, (offset >> PAGE_SHIFT)); |
| 231 | offset %= PAGE_SIZE; |
| 232 | |
| 233 | #ifdef CONFIG_HIGHMEM |
| 234 | local_irq_save(flags); |
| 235 | #endif |
| 236 | buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset; |
| 237 | |
| 238 | hwif->nleft--; |
| 239 | hwif->cursg_ofs++; |
| 240 | |
Jens Axboe | 55c16a7 | 2007-07-25 08:13:56 +0200 | [diff] [blame] | 241 | if ((hwif->cursg_ofs * SECTOR_SIZE) == cursg->length) { |
| 242 | hwif->cursg = sg_next(hwif->cursg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | hwif->cursg_ofs = 0; |
| 244 | } |
| 245 | |
| 246 | /* do the actual data transfer */ |
| 247 | if (write) |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 248 | hwif->tp_ops->output_data(drive, cmd, buf, SECTOR_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | else |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 250 | hwif->tp_ops->input_data(drive, cmd, buf, SECTOR_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | kunmap_atomic(buf, KM_BIO_SRC_IRQ); |
| 253 | #ifdef CONFIG_HIGHMEM |
| 254 | local_irq_restore(flags); |
| 255 | #endif |
| 256 | } |
| 257 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 258 | static void ide_pio_multi(ide_drive_t *drive, struct ide_cmd *cmd, |
Bartlomiej Zolnierkiewicz | 92d3ab2 | 2008-04-28 23:44:36 +0200 | [diff] [blame] | 259 | unsigned int write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | { |
| 261 | unsigned int nsect; |
| 262 | |
| 263 | nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count); |
| 264 | while (nsect--) |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 265 | ide_pio_sector(drive, cmd, write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 268 | static void ide_pio_datablock(ide_drive_t *drive, struct ide_cmd *cmd, |
| 269 | unsigned int write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
Tejun Heo | 35cf2b9 | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 271 | u8 saved_io_32bit = drive->io_32bit; |
| 272 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 273 | if (cmd->tf_flags & IDE_TFLAG_FS) |
| 274 | cmd->rq->errors = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 276 | if (cmd->tf_flags & IDE_TFLAG_IO_16BIT) |
Bartlomiej Zolnierkiewicz | e3d9a73 | 2009-03-27 12:46:32 +0100 | [diff] [blame] | 277 | drive->io_32bit = 0; |
Tejun Heo | 35cf2b9 | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 278 | |
Andrew Morton | 651c29a | 2006-02-15 15:17:37 -0800 | [diff] [blame] | 279 | touch_softlockup_watchdog(); |
| 280 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 281 | switch (cmd->data_phase) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | case TASKFILE_MULTI_IN: |
| 283 | case TASKFILE_MULTI_OUT: |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 284 | ide_pio_multi(drive, cmd, write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | break; |
| 286 | default: |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 287 | ide_pio_sector(drive, cmd, write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | break; |
| 289 | } |
Tejun Heo | 35cf2b9 | 2008-01-26 20:13:10 +0100 | [diff] [blame] | 290 | |
| 291 | drive->io_32bit = saved_io_32bit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 294 | static ide_startstop_t task_error(ide_drive_t *drive, struct ide_cmd *cmd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | const char *s, u8 stat) |
| 296 | { |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 297 | if (cmd->tf_flags & IDE_TFLAG_FS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | ide_hwif_t *hwif = drive->hwif; |
| 299 | int sectors = hwif->nsect - hwif->nleft; |
| 300 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 301 | switch (cmd->data_phase) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | case TASKFILE_IN: |
| 303 | if (hwif->nleft) |
| 304 | break; |
| 305 | /* fall through */ |
| 306 | case TASKFILE_OUT: |
| 307 | sectors--; |
| 308 | break; |
| 309 | case TASKFILE_MULTI_IN: |
| 310 | if (hwif->nleft) |
| 311 | break; |
| 312 | /* fall through */ |
| 313 | case TASKFILE_MULTI_OUT: |
| 314 | sectors -= drive->mult_count; |
| 315 | default: |
| 316 | break; |
| 317 | } |
| 318 | |
Bartlomiej Zolnierkiewicz | c152cc1 | 2009-03-27 12:46:34 +0100 | [diff] [blame] | 319 | if (sectors > 0) |
| 320 | ide_end_request(drive, 1, sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
| 322 | return ide_error(drive, s, stat); |
| 323 | } |
| 324 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 325 | void ide_finish_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 327 | if ((cmd->tf_flags & IDE_TFLAG_FS) == 0) { |
Bartlomiej Zolnierkiewicz | 64a57fe | 2008-02-06 02:57:51 +0100 | [diff] [blame] | 328 | u8 err = ide_read_error(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 330 | ide_complete_cmd(drive, cmd, stat, err); |
Bartlomiej Zolnierkiewicz | a09485d | 2009-03-27 12:46:31 +0100 | [diff] [blame] | 331 | ide_complete_rq(drive, err); |
Tejun Heo | 4d7a984 | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 332 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 335 | ide_end_request(drive, 1, cmd->rq->nr_sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | /* |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 339 | * We got an interrupt on a task_in case, but no errors and no DRQ. |
| 340 | * |
| 341 | * It might be a spurious irq (shared irq), but it might be a |
| 342 | * command that had no output. |
| 343 | */ |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 344 | static ide_startstop_t task_in_unexpected(ide_drive_t *drive, |
| 345 | struct ide_cmd *cmd, u8 stat) |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 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)) { |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 349 | ide_finish_cmd(drive, cmd, stat); |
Linus Torvalds | 6c3c315 | 2008-03-18 21:26:24 -0700 | [diff] [blame] | 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 | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 364 | struct ide_cmd *cmd = &drive->hwif->cmd; |
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) |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 369 | return task_error(drive, cmd, __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) |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 373 | return task_in_unexpected(drive, cmd, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 375 | ide_pio_datablock(drive, cmd, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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)) |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 381 | return task_error(drive, cmd, __func__, stat); |
| 382 | ide_finish_cmd(drive, cmd, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 398 | struct ide_cmd *cmd = &drive->hwif->cmd; |
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)) |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 402 | return task_error(drive, cmd, __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) |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 406 | return task_error(drive, cmd, __func__, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
| 408 | if (!hwif->nleft) { |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 409 | ide_finish_cmd(drive, cmd, stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | return ide_stopped; |
| 411 | } |
| 412 | |
| 413 | /* Still data left to transfer. */ |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 414 | ide_pio_datablock(drive, cmd, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL); |
| 416 | |
| 417 | return ide_started; |
| 418 | } |
| 419 | |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 420 | static ide_startstop_t pre_task_out_intr(ide_drive_t *drive, |
| 421 | struct ide_cmd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { |
| 423 | ide_startstop_t startstop; |
| 424 | |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 425 | if (ide_wait_stat(&startstop, drive, ATA_DRQ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | drive->bad_wstat, WAIT_DRQ)) { |
| 427 | printk(KERN_ERR "%s: no DRQ after issuing %sWRITE%s\n", |
Bartlomiej Zolnierkiewicz | c7db966 | 2009-03-27 12:46:27 +0100 | [diff] [blame] | 428 | drive->name, |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 429 | cmd->data_phase == TASKFILE_MULTI_OUT ? "MULT" : "", |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 430 | (drive->dev_flags & IDE_DFLAG_LBA48) ? "_EXT" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | return startstop; |
| 432 | } |
| 433 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 434 | if ((drive->dev_flags & IDE_DFLAG_UNMASK) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | local_irq_disable(); |
| 436 | |
| 437 | ide_set_handler(drive, &task_out_intr, WAIT_WORSTCASE, NULL); |
Bartlomiej Zolnierkiewicz | adb1af9 | 2009-03-27 12:46:38 +0100 | [diff] [blame^] | 438 | ide_pio_datablock(drive, cmd, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
| 440 | return ide_started; |
| 441 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 443 | int ide_raw_taskfile(ide_drive_t *drive, struct ide_cmd *cmd, u8 *buf, |
| 444 | u16 nsect) |
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 | struct request *rq; |
| 447 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 449 | rq = blk_get_request(drive->queue, READ, __GFP_WAIT); |
| 450 | rq->cmd_type = REQ_TYPE_ATA_TASKFILE; |
| 451 | rq->buffer = buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | /* |
| 454 | * (ks) We transfer currently only whole sectors. |
| 455 | * This is suffient for now. But, it would be great, |
| 456 | * if we would find a solution to transfer any size. |
| 457 | * To support special commands like READ LONG. |
| 458 | */ |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 459 | rq->hard_nr_sectors = rq->nr_sectors = nsect; |
| 460 | rq->hard_cur_sectors = rq->current_nr_sectors = nsect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 462 | if (cmd->tf_flags & IDE_TFLAG_WRITE) |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 463 | rq->cmd_flags |= REQ_RW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 465 | rq->special = cmd; |
| 466 | cmd->rq = rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
FUJITA Tomonori | 154ed28 | 2008-07-15 21:21:43 +0200 | [diff] [blame] | 468 | error = blk_execute_rq(drive->queue, NULL, rq, 0); |
| 469 | blk_put_request(rq); |
| 470 | |
| 471 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | EXPORT_SYMBOL(ide_raw_taskfile); |
| 475 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 476 | int ide_no_data_taskfile(ide_drive_t *drive, struct ide_cmd *cmd) |
Bartlomiej Zolnierkiewicz | 9a3c49b | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 477 | { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 478 | cmd->data_phase = TASKFILE_NO_DATA; |
Bartlomiej Zolnierkiewicz | 9a3c49b | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 479 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 480 | return ide_raw_taskfile(drive, cmd, NULL, 0); |
Bartlomiej Zolnierkiewicz | 9a3c49b | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 481 | } |
| 482 | EXPORT_SYMBOL_GPL(ide_no_data_taskfile); |
| 483 | |
Bartlomiej Zolnierkiewicz | 26a5b04 | 2007-11-05 21:42:27 +0100 | [diff] [blame] | 484 | #ifdef CONFIG_IDE_TASK_IOCTL |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 485 | int ide_taskfile_ioctl(ide_drive_t *drive, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | { |
| 487 | ide_task_request_t *req_task; |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 488 | struct ide_cmd cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | u8 *outbuf = NULL; |
| 490 | u8 *inbuf = NULL; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 491 | u8 *data_buf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | int err = 0; |
| 493 | int tasksize = sizeof(struct ide_task_request_s); |
Alan Cox | 3a42bb2 | 2006-10-16 16:31:02 +0100 | [diff] [blame] | 494 | unsigned int taskin = 0; |
| 495 | unsigned int taskout = 0; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 496 | u16 nsect = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | char __user *buf = (char __user *)arg; |
| 498 | |
| 499 | // printk("IDE Taskfile ...\n"); |
| 500 | |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 501 | req_task = kzalloc(tasksize, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | if (req_task == NULL) return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | if (copy_from_user(req_task, buf, tasksize)) { |
| 504 | kfree(req_task); |
| 505 | return -EFAULT; |
| 506 | } |
| 507 | |
Alan Cox | 3a42bb2 | 2006-10-16 16:31:02 +0100 | [diff] [blame] | 508 | taskout = req_task->out_size; |
| 509 | taskin = req_task->in_size; |
| 510 | |
| 511 | if (taskin > 65536 || taskout > 65536) { |
| 512 | err = -EINVAL; |
| 513 | goto abort; |
| 514 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
| 516 | if (taskout) { |
| 517 | int outtotal = tasksize; |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 518 | outbuf = kzalloc(taskout, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | if (outbuf == NULL) { |
| 520 | err = -ENOMEM; |
| 521 | goto abort; |
| 522 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | if (copy_from_user(outbuf, buf + outtotal, taskout)) { |
| 524 | err = -EFAULT; |
| 525 | goto abort; |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | if (taskin) { |
| 530 | int intotal = tasksize + taskout; |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 531 | inbuf = kzalloc(taskin, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | if (inbuf == NULL) { |
| 533 | err = -ENOMEM; |
| 534 | goto abort; |
| 535 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | if (copy_from_user(inbuf, buf + intotal, taskin)) { |
| 537 | err = -EFAULT; |
| 538 | goto abort; |
| 539 | } |
| 540 | } |
| 541 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 542 | memset(&cmd, 0, sizeof(cmd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 544 | memcpy(&cmd.tf_array[0], req_task->hob_ports, |
| 545 | HDIO_DRIVE_HOB_HDR_SIZE - 2); |
| 546 | memcpy(&cmd.tf_array[6], req_task->io_ports, |
| 547 | HDIO_DRIVE_TASK_HDR_SIZE); |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 548 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 549 | cmd.data_phase = req_task->data_phase; |
| 550 | cmd.tf_flags = IDE_TFLAG_IO_16BIT | IDE_TFLAG_DEVICE | |
| 551 | IDE_TFLAG_IN_TF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 553 | if (drive->dev_flags & IDE_DFLAG_LBA48) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 554 | cmd.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB); |
Bartlomiej Zolnierkiewicz | a3bbb9d | 2008-01-25 22:17:10 +0100 | [diff] [blame] | 555 | |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 556 | if (req_task->out_flags.all) { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 557 | cmd.ftf_flags |= IDE_FTFLAG_FLAGGED; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 558 | |
| 559 | if (req_task->out_flags.b.data) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 560 | cmd.ftf_flags |= IDE_FTFLAG_OUT_DATA; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 561 | |
| 562 | if (req_task->out_flags.b.nsector_hob) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 563 | cmd.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 564 | if (req_task->out_flags.b.sector_hob) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 565 | cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAL; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 566 | if (req_task->out_flags.b.lcyl_hob) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 567 | cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAM; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 568 | if (req_task->out_flags.b.hcyl_hob) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 569 | cmd.tf_flags |= IDE_TFLAG_OUT_HOB_LBAH; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 570 | |
| 571 | if (req_task->out_flags.b.error_feature) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 572 | cmd.tf_flags |= IDE_TFLAG_OUT_FEATURE; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 573 | if (req_task->out_flags.b.nsector) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 574 | cmd.tf_flags |= IDE_TFLAG_OUT_NSECT; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 575 | if (req_task->out_flags.b.sector) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 576 | cmd.tf_flags |= IDE_TFLAG_OUT_LBAL; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 577 | if (req_task->out_flags.b.lcyl) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 578 | cmd.tf_flags |= IDE_TFLAG_OUT_LBAM; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 579 | if (req_task->out_flags.b.hcyl) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 580 | cmd.tf_flags |= IDE_TFLAG_OUT_LBAH; |
Bartlomiej Zolnierkiewicz | a3bbb9d | 2008-01-25 22:17:10 +0100 | [diff] [blame] | 581 | } else { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 582 | cmd.tf_flags |= IDE_TFLAG_OUT_TF; |
| 583 | if (cmd.tf_flags & IDE_TFLAG_LBA48) |
| 584 | cmd.tf_flags |= IDE_TFLAG_OUT_HOB; |
Bartlomiej Zolnierkiewicz | 74095a9 | 2008-01-25 22:17:07 +0100 | [diff] [blame] | 585 | } |
| 586 | |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 587 | if (req_task->in_flags.b.data) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 588 | cmd.ftf_flags |= IDE_FTFLAG_IN_DATA; |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | switch(req_task->data_phase) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | case TASKFILE_MULTI_OUT: |
| 592 | if (!drive->mult_count) { |
| 593 | /* (hs): give up if multcount is not set */ |
| 594 | printk(KERN_ERR "%s: %s Multimode Write " \ |
| 595 | "multcount is not set\n", |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 596 | drive->name, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | err = -EPERM; |
| 598 | goto abort; |
| 599 | } |
| 600 | /* fall through */ |
| 601 | case TASKFILE_OUT: |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 602 | /* fall through */ |
| 603 | case TASKFILE_OUT_DMAQ: |
| 604 | case TASKFILE_OUT_DMA: |
| 605 | nsect = taskout / SECTOR_SIZE; |
| 606 | data_buf = outbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | break; |
| 608 | case TASKFILE_MULTI_IN: |
| 609 | if (!drive->mult_count) { |
| 610 | /* (hs): give up if multcount is not set */ |
| 611 | printk(KERN_ERR "%s: %s Multimode Read failure " \ |
| 612 | "multcount is not set\n", |
Harvey Harrison | eb63963 | 2008-04-26 22:25:20 +0200 | [diff] [blame] | 613 | drive->name, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | err = -EPERM; |
| 615 | goto abort; |
| 616 | } |
| 617 | /* fall through */ |
| 618 | case TASKFILE_IN: |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 619 | /* fall through */ |
| 620 | case TASKFILE_IN_DMAQ: |
| 621 | case TASKFILE_IN_DMA: |
| 622 | nsect = taskin / SECTOR_SIZE; |
| 623 | data_buf = inbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | break; |
| 625 | case TASKFILE_NO_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | break; |
| 627 | default: |
| 628 | err = -EFAULT; |
| 629 | goto abort; |
| 630 | } |
| 631 | |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 632 | if (req_task->req_cmd == IDE_DRIVE_TASK_NO_DATA) |
| 633 | nsect = 0; |
| 634 | else if (!nsect) { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 635 | nsect = (cmd.tf.hob_nsect << 8) | cmd.tf.nsect; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 636 | |
| 637 | if (!nsect) { |
| 638 | printk(KERN_ERR "%s: in/out command without data\n", |
| 639 | drive->name); |
| 640 | err = -EFAULT; |
| 641 | goto abort; |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | if (req_task->req_cmd == IDE_DRIVE_TASK_RAW_WRITE) |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 646 | cmd.tf_flags |= IDE_TFLAG_WRITE; |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 647 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 648 | err = ide_raw_taskfile(drive, &cmd, data_buf, nsect); |
Bartlomiej Zolnierkiewicz | ac026ff | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 649 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 650 | memcpy(req_task->hob_ports, &cmd.tf_array[0], |
| 651 | HDIO_DRIVE_HOB_HDR_SIZE - 2); |
| 652 | memcpy(req_task->io_ports, &cmd.tf_array[6], |
| 653 | HDIO_DRIVE_TASK_HDR_SIZE); |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 654 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 655 | if ((cmd.ftf_flags & IDE_FTFLAG_SET_IN_FLAGS) && |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 656 | req_task->in_flags.all == 0) { |
| 657 | req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS; |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 658 | if (drive->dev_flags & IDE_DFLAG_LBA48) |
Bartlomiej Zolnierkiewicz | 866e2ec | 2008-01-25 22:17:14 +0100 | [diff] [blame] | 659 | req_task->in_flags.all |= (IDE_HOB_STD_IN_FLAGS << 8); |
| 660 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | |
| 662 | if (copy_to_user(buf, req_task, tasksize)) { |
| 663 | err = -EFAULT; |
| 664 | goto abort; |
| 665 | } |
| 666 | if (taskout) { |
| 667 | int outtotal = tasksize; |
| 668 | if (copy_to_user(buf + outtotal, outbuf, taskout)) { |
| 669 | err = -EFAULT; |
| 670 | goto abort; |
| 671 | } |
| 672 | } |
| 673 | if (taskin) { |
| 674 | int intotal = tasksize + taskout; |
| 675 | if (copy_to_user(buf + intotal, inbuf, taskin)) { |
| 676 | err = -EFAULT; |
| 677 | goto abort; |
| 678 | } |
| 679 | } |
| 680 | abort: |
| 681 | kfree(req_task); |
Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 682 | kfree(outbuf); |
| 683 | kfree(inbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
| 685 | // printk("IDE Taskfile ioctl ended. rc = %i\n", err); |
| 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | return err; |
| 688 | } |
Bartlomiej Zolnierkiewicz | 26a5b04 | 2007-11-05 21:42:27 +0100 | [diff] [blame] | 689 | #endif |