Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jeff Garzik | af36d7f | 2005-08-28 20:18:39 -0400 | [diff] [blame] | 2 | * libata-core.c - helper library for ATA |
| 3 | * |
| 4 | * Maintained by: Jeff Garzik <jgarzik@pobox.com> |
| 5 | * Please ALWAYS copy linux-ide@vger.kernel.org |
| 6 | * on emails. |
| 7 | * |
| 8 | * Copyright 2003-2004 Red Hat, Inc. All rights reserved. |
| 9 | * Copyright 2003-2004 Jeff Garzik |
| 10 | * |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2, or (at your option) |
| 15 | * any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; see the file COPYING. If not, write to |
| 24 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 25 | * |
| 26 | * |
| 27 | * libata documentation is available via 'make {ps|pdf}docs', |
| 28 | * as Documentation/DocBook/libata.* |
| 29 | * |
| 30 | * Hardware documentation available from http://www.t13.org/ and |
| 31 | * http://www.sata-io.org/ |
| 32 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | */ |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/module.h> |
| 37 | #include <linux/pci.h> |
| 38 | #include <linux/init.h> |
| 39 | #include <linux/list.h> |
| 40 | #include <linux/mm.h> |
| 41 | #include <linux/highmem.h> |
| 42 | #include <linux/spinlock.h> |
| 43 | #include <linux/blkdev.h> |
| 44 | #include <linux/delay.h> |
| 45 | #include <linux/timer.h> |
| 46 | #include <linux/interrupt.h> |
| 47 | #include <linux/completion.h> |
| 48 | #include <linux/suspend.h> |
| 49 | #include <linux/workqueue.h> |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 50 | #include <linux/jiffies.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 51 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <scsi/scsi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include "scsi_priv.h" |
Jeff Garzik | 193515d | 2005-11-07 00:59:37 -0500 | [diff] [blame] | 54 | #include <scsi/scsi_cmnd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <scsi/scsi_host.h> |
| 56 | #include <linux/libata.h> |
| 57 | #include <asm/io.h> |
| 58 | #include <asm/semaphore.h> |
| 59 | #include <asm/byteorder.h> |
| 60 | |
| 61 | #include "libata.h" |
| 62 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 63 | /* debounce timing parameters in msecs { interval, duration, timeout } */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 64 | const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 }; |
| 65 | const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 }; |
| 66 | const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 }; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 67 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 68 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 69 | u16 heads, u16 sectors); |
| 70 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev); |
| 71 | static void ata_dev_xfermask(struct ata_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | static unsigned int ata_unique_id = 1; |
| 74 | static struct workqueue_struct *ata_wq; |
| 75 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 76 | struct workqueue_struct *ata_aux_wq; |
| 77 | |
Jeff Garzik | 418dc1f | 2006-03-11 20:50:08 -0500 | [diff] [blame] | 78 | int atapi_enabled = 1; |
Jeff Garzik | 1623c81 | 2005-08-30 03:37:42 -0400 | [diff] [blame] | 79 | module_param(atapi_enabled, int, 0444); |
| 80 | MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)"); |
| 81 | |
Albert Lee | 95de719 | 2006-04-04 10:57:18 +0800 | [diff] [blame] | 82 | int atapi_dmadir = 0; |
| 83 | module_param(atapi_dmadir, int, 0444); |
| 84 | MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)"); |
| 85 | |
Jeff Garzik | c3c013a | 2006-02-27 22:31:19 -0500 | [diff] [blame] | 86 | int libata_fua = 0; |
| 87 | module_param_named(fua, libata_fua, int, 0444); |
| 88 | MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)"); |
| 89 | |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 90 | static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ; |
| 91 | module_param(ata_probe_timeout, int, 0444); |
| 92 | MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)"); |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | MODULE_AUTHOR("Jeff Garzik"); |
| 95 | MODULE_DESCRIPTION("Library module for ATA devices"); |
| 96 | MODULE_LICENSE("GPL"); |
| 97 | MODULE_VERSION(DRV_VERSION); |
| 98 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 99 | |
| 100 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure |
| 102 | * @tf: Taskfile to convert |
| 103 | * @fis: Buffer into which data will output |
| 104 | * @pmp: Port multiplier port |
| 105 | * |
| 106 | * Converts a standard ATA taskfile to a Serial ATA |
| 107 | * FIS structure (Register - Host to Device). |
| 108 | * |
| 109 | * LOCKING: |
| 110 | * Inherited from caller. |
| 111 | */ |
| 112 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 113 | void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { |
| 115 | fis[0] = 0x27; /* Register - Host to Device FIS */ |
| 116 | fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number, |
| 117 | bit 7 indicates Command FIS */ |
| 118 | fis[2] = tf->command; |
| 119 | fis[3] = tf->feature; |
| 120 | |
| 121 | fis[4] = tf->lbal; |
| 122 | fis[5] = tf->lbam; |
| 123 | fis[6] = tf->lbah; |
| 124 | fis[7] = tf->device; |
| 125 | |
| 126 | fis[8] = tf->hob_lbal; |
| 127 | fis[9] = tf->hob_lbam; |
| 128 | fis[10] = tf->hob_lbah; |
| 129 | fis[11] = tf->hob_feature; |
| 130 | |
| 131 | fis[12] = tf->nsect; |
| 132 | fis[13] = tf->hob_nsect; |
| 133 | fis[14] = 0; |
| 134 | fis[15] = tf->ctl; |
| 135 | |
| 136 | fis[16] = 0; |
| 137 | fis[17] = 0; |
| 138 | fis[18] = 0; |
| 139 | fis[19] = 0; |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * ata_tf_from_fis - Convert SATA FIS to ATA taskfile |
| 144 | * @fis: Buffer from which data will be input |
| 145 | * @tf: Taskfile to output |
| 146 | * |
Mark Lord | e12a1be | 2005-11-12 18:55:45 -0500 | [diff] [blame] | 147 | * Converts a serial ATA FIS structure to a standard ATA taskfile. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | * |
| 149 | * LOCKING: |
| 150 | * Inherited from caller. |
| 151 | */ |
| 152 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 153 | void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
| 155 | tf->command = fis[2]; /* status */ |
| 156 | tf->feature = fis[3]; /* error */ |
| 157 | |
| 158 | tf->lbal = fis[4]; |
| 159 | tf->lbam = fis[5]; |
| 160 | tf->lbah = fis[6]; |
| 161 | tf->device = fis[7]; |
| 162 | |
| 163 | tf->hob_lbal = fis[8]; |
| 164 | tf->hob_lbam = fis[9]; |
| 165 | tf->hob_lbah = fis[10]; |
| 166 | |
| 167 | tf->nsect = fis[12]; |
| 168 | tf->hob_nsect = fis[13]; |
| 169 | } |
| 170 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 171 | static const u8 ata_rw_cmds[] = { |
| 172 | /* pio multi */ |
| 173 | ATA_CMD_READ_MULTI, |
| 174 | ATA_CMD_WRITE_MULTI, |
| 175 | ATA_CMD_READ_MULTI_EXT, |
| 176 | ATA_CMD_WRITE_MULTI_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 177 | 0, |
| 178 | 0, |
| 179 | 0, |
| 180 | ATA_CMD_WRITE_MULTI_FUA_EXT, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 181 | /* pio */ |
| 182 | ATA_CMD_PIO_READ, |
| 183 | ATA_CMD_PIO_WRITE, |
| 184 | ATA_CMD_PIO_READ_EXT, |
| 185 | ATA_CMD_PIO_WRITE_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 186 | 0, |
| 187 | 0, |
| 188 | 0, |
| 189 | 0, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 190 | /* dma */ |
| 191 | ATA_CMD_READ, |
| 192 | ATA_CMD_WRITE, |
| 193 | ATA_CMD_READ_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 194 | ATA_CMD_WRITE_EXT, |
| 195 | 0, |
| 196 | 0, |
| 197 | 0, |
| 198 | ATA_CMD_WRITE_FUA_EXT |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 199 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | /** |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 202 | * ata_rwcmd_protocol - set taskfile r/w commands and protocol |
| 203 | * @qc: command to examine and configure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | * |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 205 | * Examine the device configuration and tf->flags to calculate |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 206 | * the proper read/write commands and protocol to use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | * |
| 208 | * LOCKING: |
| 209 | * caller. |
| 210 | */ |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 211 | int ata_rwcmd_protocol(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 213 | struct ata_taskfile *tf = &qc->tf; |
| 214 | struct ata_device *dev = qc->dev; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 215 | u8 cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 217 | int index, fua, lba48, write; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 218 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 219 | fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 220 | lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0; |
| 221 | write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 223 | if (dev->flags & ATA_DFLAG_PIO) { |
| 224 | tf->protocol = ATA_PROT_PIO; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 225 | index = dev->multi_count ? 0 : 8; |
Alan Cox | 8d238e0 | 2006-01-17 20:50:31 +0000 | [diff] [blame] | 226 | } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) { |
| 227 | /* Unable to use DMA due to host limitation */ |
| 228 | tf->protocol = ATA_PROT_PIO; |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 229 | index = dev->multi_count ? 0 : 8; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 230 | } else { |
| 231 | tf->protocol = ATA_PROT_DMA; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 232 | index = 16; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 235 | cmd = ata_rw_cmds[index + fua + lba48 + write]; |
| 236 | if (cmd) { |
| 237 | tf->command = cmd; |
| 238 | return 0; |
| 239 | } |
| 240 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 243 | /** |
| 244 | * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask |
| 245 | * @pio_mask: pio_mask |
| 246 | * @mwdma_mask: mwdma_mask |
| 247 | * @udma_mask: udma_mask |
| 248 | * |
| 249 | * Pack @pio_mask, @mwdma_mask and @udma_mask into a single |
| 250 | * unsigned int xfer_mask. |
| 251 | * |
| 252 | * LOCKING: |
| 253 | * None. |
| 254 | * |
| 255 | * RETURNS: |
| 256 | * Packed xfer_mask. |
| 257 | */ |
| 258 | static unsigned int ata_pack_xfermask(unsigned int pio_mask, |
| 259 | unsigned int mwdma_mask, |
| 260 | unsigned int udma_mask) |
| 261 | { |
| 262 | return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) | |
| 263 | ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) | |
| 264 | ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA); |
| 265 | } |
| 266 | |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 267 | /** |
| 268 | * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks |
| 269 | * @xfer_mask: xfer_mask to unpack |
| 270 | * @pio_mask: resulting pio_mask |
| 271 | * @mwdma_mask: resulting mwdma_mask |
| 272 | * @udma_mask: resulting udma_mask |
| 273 | * |
| 274 | * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask. |
| 275 | * Any NULL distination masks will be ignored. |
| 276 | */ |
| 277 | static void ata_unpack_xfermask(unsigned int xfer_mask, |
| 278 | unsigned int *pio_mask, |
| 279 | unsigned int *mwdma_mask, |
| 280 | unsigned int *udma_mask) |
| 281 | { |
| 282 | if (pio_mask) |
| 283 | *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO; |
| 284 | if (mwdma_mask) |
| 285 | *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA; |
| 286 | if (udma_mask) |
| 287 | *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA; |
| 288 | } |
| 289 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 290 | static const struct ata_xfer_ent { |
Tejun Heo | be9a50c8 | 2006-03-31 22:48:52 +0900 | [diff] [blame] | 291 | int shift, bits; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 292 | u8 base; |
| 293 | } ata_xfer_tbl[] = { |
| 294 | { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 }, |
| 295 | { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 }, |
| 296 | { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 }, |
| 297 | { -1, }, |
| 298 | }; |
| 299 | |
| 300 | /** |
| 301 | * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask |
| 302 | * @xfer_mask: xfer_mask of interest |
| 303 | * |
| 304 | * Return matching XFER_* value for @xfer_mask. Only the highest |
| 305 | * bit of @xfer_mask is considered. |
| 306 | * |
| 307 | * LOCKING: |
| 308 | * None. |
| 309 | * |
| 310 | * RETURNS: |
| 311 | * Matching XFER_* value, 0 if no match found. |
| 312 | */ |
| 313 | static u8 ata_xfer_mask2mode(unsigned int xfer_mask) |
| 314 | { |
| 315 | int highbit = fls(xfer_mask) - 1; |
| 316 | const struct ata_xfer_ent *ent; |
| 317 | |
| 318 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 319 | if (highbit >= ent->shift && highbit < ent->shift + ent->bits) |
| 320 | return ent->base + highbit - ent->shift; |
| 321 | return 0; |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * ata_xfer_mode2mask - Find matching xfer_mask for XFER_* |
| 326 | * @xfer_mode: XFER_* of interest |
| 327 | * |
| 328 | * Return matching xfer_mask for @xfer_mode. |
| 329 | * |
| 330 | * LOCKING: |
| 331 | * None. |
| 332 | * |
| 333 | * RETURNS: |
| 334 | * Matching xfer_mask, 0 if no match found. |
| 335 | */ |
| 336 | static unsigned int ata_xfer_mode2mask(u8 xfer_mode) |
| 337 | { |
| 338 | const struct ata_xfer_ent *ent; |
| 339 | |
| 340 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 341 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
| 342 | return 1 << (ent->shift + xfer_mode - ent->base); |
| 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * ata_xfer_mode2shift - Find matching xfer_shift for XFER_* |
| 348 | * @xfer_mode: XFER_* of interest |
| 349 | * |
| 350 | * Return matching xfer_shift for @xfer_mode. |
| 351 | * |
| 352 | * LOCKING: |
| 353 | * None. |
| 354 | * |
| 355 | * RETURNS: |
| 356 | * Matching xfer_shift, -1 if no match found. |
| 357 | */ |
| 358 | static int ata_xfer_mode2shift(unsigned int xfer_mode) |
| 359 | { |
| 360 | const struct ata_xfer_ent *ent; |
| 361 | |
| 362 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 363 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
| 364 | return ent->shift; |
| 365 | return -1; |
| 366 | } |
| 367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | /** |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 369 | * ata_mode_string - convert xfer_mask to string |
| 370 | * @xfer_mask: mask of bits supported; only highest bit counts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | * |
| 372 | * Determine string which represents the highest speed |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 373 | * (highest bit in @modemask). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | * |
| 375 | * LOCKING: |
| 376 | * None. |
| 377 | * |
| 378 | * RETURNS: |
| 379 | * Constant C string representing highest speed listed in |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 380 | * @mode_mask, or the constant C string "<n/a>". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | */ |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 382 | static const char *ata_mode_string(unsigned int xfer_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 384 | static const char * const xfer_mode_str[] = { |
| 385 | "PIO0", |
| 386 | "PIO1", |
| 387 | "PIO2", |
| 388 | "PIO3", |
| 389 | "PIO4", |
| 390 | "MWDMA0", |
| 391 | "MWDMA1", |
| 392 | "MWDMA2", |
| 393 | "UDMA/16", |
| 394 | "UDMA/25", |
| 395 | "UDMA/33", |
| 396 | "UDMA/44", |
| 397 | "UDMA/66", |
| 398 | "UDMA/100", |
| 399 | "UDMA/133", |
| 400 | "UDMA7", |
| 401 | }; |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 402 | int highbit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 404 | highbit = fls(xfer_mask) - 1; |
| 405 | if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str)) |
| 406 | return xfer_mode_str[highbit]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | return "<n/a>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
| 409 | |
Tejun Heo | 4c360c8 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 410 | static const char *sata_spd_string(unsigned int spd) |
| 411 | { |
| 412 | static const char * const spd_str[] = { |
| 413 | "1.5 Gbps", |
| 414 | "3.0 Gbps", |
| 415 | }; |
| 416 | |
| 417 | if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str)) |
| 418 | return "<unknown>"; |
| 419 | return spd_str[spd - 1]; |
| 420 | } |
| 421 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 422 | void ata_dev_disable(struct ata_device *dev) |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 423 | { |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 424 | if (ata_dev_enabled(dev) && ata_msg_drv(dev->ap)) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 425 | ata_dev_printk(dev, KERN_WARNING, "disabled\n"); |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 426 | dev->class++; |
| 427 | } |
| 428 | } |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | /** |
| 431 | * ata_pio_devchk - PATA device presence detection |
| 432 | * @ap: ATA channel to examine |
| 433 | * @device: Device to examine (starting at zero) |
| 434 | * |
| 435 | * This technique was originally described in |
| 436 | * Hale Landis's ATADRVR (www.ata-atapi.com), and |
| 437 | * later found its way into the ATA/ATAPI spec. |
| 438 | * |
| 439 | * Write a pattern to the ATA shadow registers, |
| 440 | * and if a device is present, it will respond by |
| 441 | * correctly storing and echoing back the |
| 442 | * ATA shadow register contents. |
| 443 | * |
| 444 | * LOCKING: |
| 445 | * caller. |
| 446 | */ |
| 447 | |
| 448 | static unsigned int ata_pio_devchk(struct ata_port *ap, |
| 449 | unsigned int device) |
| 450 | { |
| 451 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 452 | u8 nsect, lbal; |
| 453 | |
| 454 | ap->ops->dev_select(ap, device); |
| 455 | |
| 456 | outb(0x55, ioaddr->nsect_addr); |
| 457 | outb(0xaa, ioaddr->lbal_addr); |
| 458 | |
| 459 | outb(0xaa, ioaddr->nsect_addr); |
| 460 | outb(0x55, ioaddr->lbal_addr); |
| 461 | |
| 462 | outb(0x55, ioaddr->nsect_addr); |
| 463 | outb(0xaa, ioaddr->lbal_addr); |
| 464 | |
| 465 | nsect = inb(ioaddr->nsect_addr); |
| 466 | lbal = inb(ioaddr->lbal_addr); |
| 467 | |
| 468 | if ((nsect == 0x55) && (lbal == 0xaa)) |
| 469 | return 1; /* we found a device */ |
| 470 | |
| 471 | return 0; /* nothing found */ |
| 472 | } |
| 473 | |
| 474 | /** |
| 475 | * ata_mmio_devchk - PATA device presence detection |
| 476 | * @ap: ATA channel to examine |
| 477 | * @device: Device to examine (starting at zero) |
| 478 | * |
| 479 | * This technique was originally described in |
| 480 | * Hale Landis's ATADRVR (www.ata-atapi.com), and |
| 481 | * later found its way into the ATA/ATAPI spec. |
| 482 | * |
| 483 | * Write a pattern to the ATA shadow registers, |
| 484 | * and if a device is present, it will respond by |
| 485 | * correctly storing and echoing back the |
| 486 | * ATA shadow register contents. |
| 487 | * |
| 488 | * LOCKING: |
| 489 | * caller. |
| 490 | */ |
| 491 | |
| 492 | static unsigned int ata_mmio_devchk(struct ata_port *ap, |
| 493 | unsigned int device) |
| 494 | { |
| 495 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 496 | u8 nsect, lbal; |
| 497 | |
| 498 | ap->ops->dev_select(ap, device); |
| 499 | |
| 500 | writeb(0x55, (void __iomem *) ioaddr->nsect_addr); |
| 501 | writeb(0xaa, (void __iomem *) ioaddr->lbal_addr); |
| 502 | |
| 503 | writeb(0xaa, (void __iomem *) ioaddr->nsect_addr); |
| 504 | writeb(0x55, (void __iomem *) ioaddr->lbal_addr); |
| 505 | |
| 506 | writeb(0x55, (void __iomem *) ioaddr->nsect_addr); |
| 507 | writeb(0xaa, (void __iomem *) ioaddr->lbal_addr); |
| 508 | |
| 509 | nsect = readb((void __iomem *) ioaddr->nsect_addr); |
| 510 | lbal = readb((void __iomem *) ioaddr->lbal_addr); |
| 511 | |
| 512 | if ((nsect == 0x55) && (lbal == 0xaa)) |
| 513 | return 1; /* we found a device */ |
| 514 | |
| 515 | return 0; /* nothing found */ |
| 516 | } |
| 517 | |
| 518 | /** |
| 519 | * ata_devchk - PATA device presence detection |
| 520 | * @ap: ATA channel to examine |
| 521 | * @device: Device to examine (starting at zero) |
| 522 | * |
| 523 | * Dispatch ATA device presence detection, depending |
| 524 | * on whether we are using PIO or MMIO to talk to the |
| 525 | * ATA shadow registers. |
| 526 | * |
| 527 | * LOCKING: |
| 528 | * caller. |
| 529 | */ |
| 530 | |
| 531 | static unsigned int ata_devchk(struct ata_port *ap, |
| 532 | unsigned int device) |
| 533 | { |
| 534 | if (ap->flags & ATA_FLAG_MMIO) |
| 535 | return ata_mmio_devchk(ap, device); |
| 536 | return ata_pio_devchk(ap, device); |
| 537 | } |
| 538 | |
| 539 | /** |
| 540 | * ata_dev_classify - determine device type based on ATA-spec signature |
| 541 | * @tf: ATA taskfile register set for device to be identified |
| 542 | * |
| 543 | * Determine from taskfile register contents whether a device is |
| 544 | * ATA or ATAPI, as per "Signature and persistence" section |
| 545 | * of ATA/PI spec (volume 1, sect 5.14). |
| 546 | * |
| 547 | * LOCKING: |
| 548 | * None. |
| 549 | * |
| 550 | * RETURNS: |
| 551 | * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN |
| 552 | * the event of failure. |
| 553 | */ |
| 554 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 555 | unsigned int ata_dev_classify(const struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
| 557 | /* Apple's open source Darwin code hints that some devices only |
| 558 | * put a proper signature into the LBA mid/high registers, |
| 559 | * So, we only check those. It's sufficient for uniqueness. |
| 560 | */ |
| 561 | |
| 562 | if (((tf->lbam == 0) && (tf->lbah == 0)) || |
| 563 | ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) { |
| 564 | DPRINTK("found ATA device by sig\n"); |
| 565 | return ATA_DEV_ATA; |
| 566 | } |
| 567 | |
| 568 | if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) || |
| 569 | ((tf->lbam == 0x69) && (tf->lbah == 0x96))) { |
| 570 | DPRINTK("found ATAPI device by sig\n"); |
| 571 | return ATA_DEV_ATAPI; |
| 572 | } |
| 573 | |
| 574 | DPRINTK("unknown device\n"); |
| 575 | return ATA_DEV_UNKNOWN; |
| 576 | } |
| 577 | |
| 578 | /** |
| 579 | * ata_dev_try_classify - Parse returned ATA device signature |
| 580 | * @ap: ATA channel to examine |
| 581 | * @device: Device to examine (starting at zero) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 582 | * @r_err: Value of error register on completion |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | * |
| 584 | * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs, |
| 585 | * an ATA/ATAPI-defined set of values is placed in the ATA |
| 586 | * shadow registers, indicating the results of device detection |
| 587 | * and diagnostics. |
| 588 | * |
| 589 | * Select the ATA device, and read the values from the ATA shadow |
| 590 | * registers. Then parse according to the Error register value, |
| 591 | * and the spec-defined values examined by ata_dev_classify(). |
| 592 | * |
| 593 | * LOCKING: |
| 594 | * caller. |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 595 | * |
| 596 | * RETURNS: |
| 597 | * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | */ |
| 599 | |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 600 | static unsigned int |
| 601 | ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | struct ata_taskfile tf; |
| 604 | unsigned int class; |
| 605 | u8 err; |
| 606 | |
| 607 | ap->ops->dev_select(ap, device); |
| 608 | |
| 609 | memset(&tf, 0, sizeof(tf)); |
| 610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | ap->ops->tf_read(ap, &tf); |
Jeff Garzik | 0169e28 | 2005-10-29 21:25:10 -0400 | [diff] [blame] | 612 | err = tf.feature; |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 613 | if (r_err) |
| 614 | *r_err = err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | |
| 616 | /* see if device passed diags */ |
| 617 | if (err == 1) |
| 618 | /* do nothing */ ; |
| 619 | else if ((device == 0) && (err == 0x81)) |
| 620 | /* do nothing */ ; |
| 621 | else |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 622 | return ATA_DEV_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 624 | /* determine if device is ATA or ATAPI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | class = ata_dev_classify(&tf); |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | if (class == ATA_DEV_UNKNOWN) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 628 | return ATA_DEV_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0)) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 630 | return ATA_DEV_NONE; |
| 631 | return class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 635 | * ata_id_string - Convert IDENTIFY DEVICE page into string |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | * @id: IDENTIFY DEVICE results we will examine |
| 637 | * @s: string into which data is output |
| 638 | * @ofs: offset into identify device page |
| 639 | * @len: length of string to return. must be an even number. |
| 640 | * |
| 641 | * The strings in the IDENTIFY DEVICE page are broken up into |
| 642 | * 16-bit chunks. Run through the string, and output each |
| 643 | * 8-bit chunk linearly, regardless of platform. |
| 644 | * |
| 645 | * LOCKING: |
| 646 | * caller. |
| 647 | */ |
| 648 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 649 | void ata_id_string(const u16 *id, unsigned char *s, |
| 650 | unsigned int ofs, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | { |
| 652 | unsigned int c; |
| 653 | |
| 654 | while (len > 0) { |
| 655 | c = id[ofs] >> 8; |
| 656 | *s = c; |
| 657 | s++; |
| 658 | |
| 659 | c = id[ofs] & 0xff; |
| 660 | *s = c; |
| 661 | s++; |
| 662 | |
| 663 | ofs++; |
| 664 | len -= 2; |
| 665 | } |
| 666 | } |
| 667 | |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 668 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 669 | * ata_id_c_string - Convert IDENTIFY DEVICE page into C string |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 670 | * @id: IDENTIFY DEVICE results we will examine |
| 671 | * @s: string into which data is output |
| 672 | * @ofs: offset into identify device page |
| 673 | * @len: length of string to return. must be an odd number. |
| 674 | * |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 675 | * This function is identical to ata_id_string except that it |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 676 | * trims trailing spaces and terminates the resulting string with |
| 677 | * null. @len must be actual maximum length (even number) + 1. |
| 678 | * |
| 679 | * LOCKING: |
| 680 | * caller. |
| 681 | */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 682 | void ata_id_c_string(const u16 *id, unsigned char *s, |
| 683 | unsigned int ofs, unsigned int len) |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 684 | { |
| 685 | unsigned char *p; |
| 686 | |
| 687 | WARN_ON(!(len & 1)); |
| 688 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 689 | ata_id_string(id, s, ofs, len - 1); |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 690 | |
| 691 | p = s + strnlen(s, len - 1); |
| 692 | while (p > s && p[-1] == ' ') |
| 693 | p--; |
| 694 | *p = '\0'; |
| 695 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 696 | |
Tejun Heo | 2940740 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 697 | static u64 ata_id_n_sectors(const u16 *id) |
| 698 | { |
| 699 | if (ata_id_has_lba(id)) { |
| 700 | if (ata_id_has_lba48(id)) |
| 701 | return ata_id_u64(id, 100); |
| 702 | else |
| 703 | return ata_id_u32(id, 60); |
| 704 | } else { |
| 705 | if (ata_id_current_chs_valid(id)) |
| 706 | return ata_id_u32(id, 57); |
| 707 | else |
| 708 | return id[1] * id[3] * id[6]; |
| 709 | } |
| 710 | } |
| 711 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 712 | /** |
| 713 | * ata_noop_dev_select - Select device 0/1 on ATA bus |
| 714 | * @ap: ATA channel to manipulate |
| 715 | * @device: ATA device (numbered from zero) to select |
| 716 | * |
| 717 | * This function performs no actual function. |
| 718 | * |
| 719 | * May be used as the dev_select() entry in ata_port_operations. |
| 720 | * |
| 721 | * LOCKING: |
| 722 | * caller. |
| 723 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | void ata_noop_dev_select (struct ata_port *ap, unsigned int device) |
| 725 | { |
| 726 | } |
| 727 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | /** |
| 730 | * ata_std_dev_select - Select device 0/1 on ATA bus |
| 731 | * @ap: ATA channel to manipulate |
| 732 | * @device: ATA device (numbered from zero) to select |
| 733 | * |
| 734 | * Use the method defined in the ATA specification to |
| 735 | * make either device 0, or device 1, active on the |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 736 | * ATA channel. Works with both PIO and MMIO. |
| 737 | * |
| 738 | * May be used as the dev_select() entry in ata_port_operations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | * |
| 740 | * LOCKING: |
| 741 | * caller. |
| 742 | */ |
| 743 | |
| 744 | void ata_std_dev_select (struct ata_port *ap, unsigned int device) |
| 745 | { |
| 746 | u8 tmp; |
| 747 | |
| 748 | if (device == 0) |
| 749 | tmp = ATA_DEVICE_OBS; |
| 750 | else |
| 751 | tmp = ATA_DEVICE_OBS | ATA_DEV1; |
| 752 | |
| 753 | if (ap->flags & ATA_FLAG_MMIO) { |
| 754 | writeb(tmp, (void __iomem *) ap->ioaddr.device_addr); |
| 755 | } else { |
| 756 | outb(tmp, ap->ioaddr.device_addr); |
| 757 | } |
| 758 | ata_pause(ap); /* needed; also flushes, for mmio */ |
| 759 | } |
| 760 | |
| 761 | /** |
| 762 | * ata_dev_select - Select device 0/1 on ATA bus |
| 763 | * @ap: ATA channel to manipulate |
| 764 | * @device: ATA device (numbered from zero) to select |
| 765 | * @wait: non-zero to wait for Status register BSY bit to clear |
| 766 | * @can_sleep: non-zero if context allows sleeping |
| 767 | * |
| 768 | * Use the method defined in the ATA specification to |
| 769 | * make either device 0, or device 1, active on the |
| 770 | * ATA channel. |
| 771 | * |
| 772 | * This is a high-level version of ata_std_dev_select(), |
| 773 | * which additionally provides the services of inserting |
| 774 | * the proper pauses and status polling, where needed. |
| 775 | * |
| 776 | * LOCKING: |
| 777 | * caller. |
| 778 | */ |
| 779 | |
| 780 | void ata_dev_select(struct ata_port *ap, unsigned int device, |
| 781 | unsigned int wait, unsigned int can_sleep) |
| 782 | { |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 783 | if (ata_msg_probe(ap)) |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 784 | ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, ata%u: " |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 785 | "device %u, wait %u\n", ap->id, device, wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | |
| 787 | if (wait) |
| 788 | ata_wait_idle(ap); |
| 789 | |
| 790 | ap->ops->dev_select(ap, device); |
| 791 | |
| 792 | if (wait) { |
| 793 | if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI) |
| 794 | msleep(150); |
| 795 | ata_wait_idle(ap); |
| 796 | } |
| 797 | } |
| 798 | |
| 799 | /** |
| 800 | * ata_dump_id - IDENTIFY DEVICE info debugging output |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 801 | * @id: IDENTIFY DEVICE page to dump |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | * |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 803 | * Dump selected 16-bit words from the given IDENTIFY DEVICE |
| 804 | * page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | * |
| 806 | * LOCKING: |
| 807 | * caller. |
| 808 | */ |
| 809 | |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 810 | static inline void ata_dump_id(const u16 *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | { |
| 812 | DPRINTK("49==0x%04x " |
| 813 | "53==0x%04x " |
| 814 | "63==0x%04x " |
| 815 | "64==0x%04x " |
| 816 | "75==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 817 | id[49], |
| 818 | id[53], |
| 819 | id[63], |
| 820 | id[64], |
| 821 | id[75]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | DPRINTK("80==0x%04x " |
| 823 | "81==0x%04x " |
| 824 | "82==0x%04x " |
| 825 | "83==0x%04x " |
| 826 | "84==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 827 | id[80], |
| 828 | id[81], |
| 829 | id[82], |
| 830 | id[83], |
| 831 | id[84]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | DPRINTK("88==0x%04x " |
| 833 | "93==0x%04x\n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 834 | id[88], |
| 835 | id[93]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | } |
| 837 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 838 | /** |
| 839 | * ata_id_xfermask - Compute xfermask from the given IDENTIFY data |
| 840 | * @id: IDENTIFY data to compute xfer mask from |
| 841 | * |
| 842 | * Compute the xfermask for this device. This is not as trivial |
| 843 | * as it seems if we must consider early devices correctly. |
| 844 | * |
| 845 | * FIXME: pre IDE drive timing (do we care ?). |
| 846 | * |
| 847 | * LOCKING: |
| 848 | * None. |
| 849 | * |
| 850 | * RETURNS: |
| 851 | * Computed xfermask |
| 852 | */ |
| 853 | static unsigned int ata_id_xfermask(const u16 *id) |
| 854 | { |
| 855 | unsigned int pio_mask, mwdma_mask, udma_mask; |
| 856 | |
| 857 | /* Usual case. Word 53 indicates word 64 is valid */ |
| 858 | if (id[ATA_ID_FIELD_VALID] & (1 << 1)) { |
| 859 | pio_mask = id[ATA_ID_PIO_MODES] & 0x03; |
| 860 | pio_mask <<= 3; |
| 861 | pio_mask |= 0x7; |
| 862 | } else { |
| 863 | /* If word 64 isn't valid then Word 51 high byte holds |
| 864 | * the PIO timing number for the maximum. Turn it into |
| 865 | * a mask. |
| 866 | */ |
| 867 | pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ; |
| 868 | |
| 869 | /* But wait.. there's more. Design your standards by |
| 870 | * committee and you too can get a free iordy field to |
| 871 | * process. However its the speeds not the modes that |
| 872 | * are supported... Note drivers using the timing API |
| 873 | * will get this right anyway |
| 874 | */ |
| 875 | } |
| 876 | |
| 877 | mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07; |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 878 | |
| 879 | udma_mask = 0; |
| 880 | if (id[ATA_ID_FIELD_VALID] & (1 << 2)) |
| 881 | udma_mask = id[ATA_ID_UDMA_MODES] & 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 882 | |
| 883 | return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 884 | } |
| 885 | |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 886 | /** |
| 887 | * ata_port_queue_task - Queue port_task |
| 888 | * @ap: The ata_port to queue port_task for |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 889 | * @fn: workqueue function to be scheduled |
| 890 | * @data: data value to pass to workqueue function |
| 891 | * @delay: delay time for workqueue function |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 892 | * |
| 893 | * Schedule @fn(@data) for execution after @delay jiffies using |
| 894 | * port_task. There is one port_task per port and it's the |
| 895 | * user(low level driver)'s responsibility to make sure that only |
| 896 | * one task is active at any given time. |
| 897 | * |
| 898 | * libata core layer takes care of synchronization between |
| 899 | * port_task and EH. ata_port_queue_task() may be ignored for EH |
| 900 | * synchronization. |
| 901 | * |
| 902 | * LOCKING: |
| 903 | * Inherited from caller. |
| 904 | */ |
| 905 | void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data, |
| 906 | unsigned long delay) |
| 907 | { |
| 908 | int rc; |
| 909 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 910 | if (ap->pflags & ATA_PFLAG_FLUSH_PORT_TASK) |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 911 | return; |
| 912 | |
| 913 | PREPARE_WORK(&ap->port_task, fn, data); |
| 914 | |
| 915 | if (!delay) |
| 916 | rc = queue_work(ata_wq, &ap->port_task); |
| 917 | else |
| 918 | rc = queue_delayed_work(ata_wq, &ap->port_task, delay); |
| 919 | |
| 920 | /* rc == 0 means that another user is using port task */ |
| 921 | WARN_ON(rc == 0); |
| 922 | } |
| 923 | |
| 924 | /** |
| 925 | * ata_port_flush_task - Flush port_task |
| 926 | * @ap: The ata_port to flush port_task for |
| 927 | * |
| 928 | * After this function completes, port_task is guranteed not to |
| 929 | * be running or scheduled. |
| 930 | * |
| 931 | * LOCKING: |
| 932 | * Kernel thread context (may sleep) |
| 933 | */ |
| 934 | void ata_port_flush_task(struct ata_port *ap) |
| 935 | { |
| 936 | unsigned long flags; |
| 937 | |
| 938 | DPRINTK("ENTER\n"); |
| 939 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 940 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 941 | ap->pflags |= ATA_PFLAG_FLUSH_PORT_TASK; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 942 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 943 | |
| 944 | DPRINTK("flush #1\n"); |
| 945 | flush_workqueue(ata_wq); |
| 946 | |
| 947 | /* |
| 948 | * At this point, if a task is running, it's guaranteed to see |
| 949 | * the FLUSH flag; thus, it will never queue pio tasks again. |
| 950 | * Cancel and flush. |
| 951 | */ |
| 952 | if (!cancel_delayed_work(&ap->port_task)) { |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 953 | if (ata_msg_ctl(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 954 | ata_port_printk(ap, KERN_DEBUG, "%s: flush #2\n", |
| 955 | __FUNCTION__); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 956 | flush_workqueue(ata_wq); |
| 957 | } |
| 958 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 959 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 960 | ap->pflags &= ~ATA_PFLAG_FLUSH_PORT_TASK; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 961 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 962 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 963 | if (ata_msg_ctl(ap)) |
| 964 | ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 965 | } |
| 966 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 967 | void ata_qc_complete_internal(struct ata_queued_cmd *qc) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 968 | { |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 969 | struct completion *waiting = qc->private_data; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 970 | |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 971 | complete(waiting); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | /** |
| 975 | * ata_exec_internal - execute libata internal command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 976 | * @dev: Device to which the command is sent |
| 977 | * @tf: Taskfile registers for the command and the result |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 978 | * @cdb: CDB for packet command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 979 | * @dma_dir: Data tranfer direction of the command |
| 980 | * @buf: Data buffer of the command |
| 981 | * @buflen: Length of data buffer |
| 982 | * |
| 983 | * Executes libata internal command with timeout. @tf contains |
| 984 | * command on entry and result on return. Timeout and error |
| 985 | * conditions are reported via return value. No recovery action |
| 986 | * is taken after a command times out. It's caller's duty to |
| 987 | * clean up after timeout. |
| 988 | * |
| 989 | * LOCKING: |
| 990 | * None. Should be called with kernel context, might sleep. |
Tejun Heo | 551e888 | 2006-06-12 14:09:49 +0900 | [diff] [blame] | 991 | * |
| 992 | * RETURNS: |
| 993 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 994 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 995 | unsigned ata_exec_internal(struct ata_device *dev, |
Tejun Heo | 1ad8e7f | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 996 | struct ata_taskfile *tf, const u8 *cdb, |
| 997 | int dma_dir, void *buf, unsigned int buflen) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 998 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 999 | struct ata_port *ap = dev->ap; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1000 | u8 command = tf->command; |
| 1001 | struct ata_queued_cmd *qc; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1002 | unsigned int tag, preempted_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1003 | u32 preempted_sactive, preempted_qc_active; |
Ingo Molnar | 60be6b9 | 2006-07-03 00:25:26 -0700 | [diff] [blame] | 1004 | DECLARE_COMPLETION_ONSTACK(wait); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1005 | unsigned long flags; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1006 | unsigned int err_mask; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1007 | int rc; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1008 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1009 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1010 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1011 | /* no internal command while frozen */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1012 | if (ap->pflags & ATA_PFLAG_FROZEN) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1013 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1014 | return AC_ERR_SYSTEM; |
| 1015 | } |
| 1016 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1017 | /* initialize internal qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1018 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1019 | /* XXX: Tag 0 is used for drivers with legacy EH as some |
| 1020 | * drivers choke if any other tag is given. This breaks |
| 1021 | * ata_tag_internal() test for those drivers. Don't use new |
| 1022 | * EH stuff without converting to it. |
| 1023 | */ |
| 1024 | if (ap->ops->error_handler) |
| 1025 | tag = ATA_TAG_INTERNAL; |
| 1026 | else |
| 1027 | tag = 0; |
| 1028 | |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 1029 | if (test_and_set_bit(tag, &ap->qc_allocated)) |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1030 | BUG(); |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 1031 | qc = __ata_qc_from_tag(ap, tag); |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1032 | |
| 1033 | qc->tag = tag; |
| 1034 | qc->scsicmd = NULL; |
| 1035 | qc->ap = ap; |
| 1036 | qc->dev = dev; |
| 1037 | ata_qc_reinit(qc); |
| 1038 | |
| 1039 | preempted_tag = ap->active_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1040 | preempted_sactive = ap->sactive; |
| 1041 | preempted_qc_active = ap->qc_active; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1042 | ap->active_tag = ATA_TAG_POISON; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1043 | ap->sactive = 0; |
| 1044 | ap->qc_active = 0; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1045 | |
| 1046 | /* prepare & issue qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1047 | qc->tf = *tf; |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1048 | if (cdb) |
| 1049 | memcpy(qc->cdb, cdb, ATAPI_CDB_LEN); |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1050 | qc->flags |= ATA_QCFLAG_RESULT_TF; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1051 | qc->dma_dir = dma_dir; |
| 1052 | if (dma_dir != DMA_NONE) { |
| 1053 | ata_sg_init_one(qc, buf, buflen); |
| 1054 | qc->nsect = buflen / ATA_SECT_SIZE; |
| 1055 | } |
| 1056 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1057 | qc->private_data = &wait; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1058 | qc->complete_fn = ata_qc_complete_internal; |
| 1059 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 1060 | ata_qc_issue(qc); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1061 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1062 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1063 | |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 1064 | rc = wait_for_completion_timeout(&wait, ata_probe_timeout); |
Albert Lee | 41ade50 | 2006-03-14 11:19:04 +0800 | [diff] [blame] | 1065 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1066 | ata_port_flush_task(ap); |
| 1067 | |
| 1068 | if (!rc) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1069 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1070 | |
| 1071 | /* We're racing with irq here. If we lose, the |
| 1072 | * following test prevents us from completing the qc |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1073 | * twice. If we win, the port is frozen and will be |
| 1074 | * cleaned up by ->post_internal_cmd(). |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1075 | */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1076 | if (qc->flags & ATA_QCFLAG_ACTIVE) { |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1077 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 1078 | |
| 1079 | if (ap->ops->error_handler) |
| 1080 | ata_port_freeze(ap); |
| 1081 | else |
| 1082 | ata_qc_complete(qc); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1083 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1084 | if (ata_msg_warn(ap)) |
| 1085 | ata_dev_printk(dev, KERN_WARNING, |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1086 | "qc timeout (cmd 0x%x)\n", command); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1087 | } |
| 1088 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1089 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1090 | } |
| 1091 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1092 | /* do post_internal_cmd */ |
| 1093 | if (ap->ops->post_internal_cmd) |
| 1094 | ap->ops->post_internal_cmd(qc); |
| 1095 | |
| 1096 | if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) { |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1097 | if (ata_msg_warn(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1098 | ata_dev_printk(dev, KERN_WARNING, |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1099 | "zero err_mask for failed " |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1100 | "internal command, assuming AC_ERR_OTHER\n"); |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1101 | qc->err_mask |= AC_ERR_OTHER; |
| 1102 | } |
| 1103 | |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1104 | /* finish up */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1105 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1106 | |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1107 | *tf = qc->result_tf; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1108 | err_mask = qc->err_mask; |
| 1109 | |
| 1110 | ata_qc_free(qc); |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1111 | ap->active_tag = preempted_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1112 | ap->sactive = preempted_sactive; |
| 1113 | ap->qc_active = preempted_qc_active; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1114 | |
Tejun Heo | 1f7dd3e | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1115 | /* XXX - Some LLDDs (sata_mv) disable port on command failure. |
| 1116 | * Until those drivers are fixed, we detect the condition |
| 1117 | * here, fail the command with AC_ERR_SYSTEM and reenable the |
| 1118 | * port. |
| 1119 | * |
| 1120 | * Note that this doesn't change any behavior as internal |
| 1121 | * command failure results in disabling the device in the |
| 1122 | * higher layer for LLDDs without new reset/EH callbacks. |
| 1123 | * |
| 1124 | * Kill the following code as soon as those drivers are fixed. |
| 1125 | */ |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1126 | if (ap->flags & ATA_FLAG_DISABLED) { |
Tejun Heo | 1f7dd3e | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1127 | err_mask |= AC_ERR_SYSTEM; |
| 1128 | ata_port_probe(ap); |
| 1129 | } |
| 1130 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1131 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1132 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1133 | return err_mask; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1134 | } |
| 1135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | /** |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1137 | * ata_do_simple_cmd - execute simple internal command |
| 1138 | * @dev: Device to which the command is sent |
| 1139 | * @cmd: Opcode to execute |
| 1140 | * |
| 1141 | * Execute a 'simple' command, that only consists of the opcode |
| 1142 | * 'cmd' itself, without filling any other registers |
| 1143 | * |
| 1144 | * LOCKING: |
| 1145 | * Kernel thread context (may sleep). |
| 1146 | * |
| 1147 | * RETURNS: |
| 1148 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1149 | */ |
Tejun Heo | 77b08fb | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1150 | unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd) |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1151 | { |
| 1152 | struct ata_taskfile tf; |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1153 | |
| 1154 | ata_tf_init(dev, &tf); |
| 1155 | |
| 1156 | tf.command = cmd; |
| 1157 | tf.flags |= ATA_TFLAG_DEVICE; |
| 1158 | tf.protocol = ATA_PROT_NODATA; |
| 1159 | |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1160 | return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0); |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1161 | } |
| 1162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | /** |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1164 | * ata_pio_need_iordy - check if iordy needed |
| 1165 | * @adev: ATA device |
| 1166 | * |
| 1167 | * Check if the current speed of the device requires IORDY. Used |
| 1168 | * by various controllers for chip configuration. |
| 1169 | */ |
| 1170 | |
| 1171 | unsigned int ata_pio_need_iordy(const struct ata_device *adev) |
| 1172 | { |
| 1173 | int pio; |
| 1174 | int speed = adev->pio_mode - XFER_PIO_0; |
| 1175 | |
| 1176 | if (speed < 2) |
| 1177 | return 0; |
| 1178 | if (speed > 2) |
| 1179 | return 1; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1180 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1181 | /* If we have no drive specific rule, then PIO 2 is non IORDY */ |
| 1182 | |
| 1183 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */ |
| 1184 | pio = adev->id[ATA_ID_EIDE_PIO]; |
| 1185 | /* Is the speed faster than the drive allows non IORDY ? */ |
| 1186 | if (pio) { |
| 1187 | /* This is cycle times not frequency - watch the logic! */ |
| 1188 | if (pio > 240) /* PIO2 is 240nS per cycle */ |
| 1189 | return 1; |
| 1190 | return 0; |
| 1191 | } |
| 1192 | } |
| 1193 | return 0; |
| 1194 | } |
| 1195 | |
| 1196 | /** |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1197 | * ata_dev_read_id - Read ID data from the specified device |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1198 | * @dev: target device |
| 1199 | * @p_class: pointer to class of the target device (may be changed) |
| 1200 | * @post_reset: is this read ID post-reset? |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 1201 | * @id: buffer to read IDENTIFY data into |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1202 | * |
| 1203 | * Read ID data from the specified device. ATA_CMD_ID_ATA is |
| 1204 | * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 1205 | * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS |
| 1206 | * for pre-ATA4 drives. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1207 | * |
| 1208 | * LOCKING: |
| 1209 | * Kernel thread context (may sleep) |
| 1210 | * |
| 1211 | * RETURNS: |
| 1212 | * 0 on success, -errno otherwise. |
| 1213 | */ |
Tejun Heo | a9beec9 | 2006-05-31 18:27:44 +0900 | [diff] [blame] | 1214 | int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class, |
| 1215 | int post_reset, u16 *id) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1216 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1217 | struct ata_port *ap = dev->ap; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1218 | unsigned int class = *p_class; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1219 | struct ata_taskfile tf; |
| 1220 | unsigned int err_mask = 0; |
| 1221 | const char *reason; |
| 1222 | int rc; |
| 1223 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1224 | if (ata_msg_ctl(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1225 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n", |
| 1226 | __FUNCTION__, ap->id, dev->devno); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1227 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1228 | ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */ |
| 1229 | |
| 1230 | retry: |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1231 | ata_tf_init(dev, &tf); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1232 | |
| 1233 | switch (class) { |
| 1234 | case ATA_DEV_ATA: |
| 1235 | tf.command = ATA_CMD_ID_ATA; |
| 1236 | break; |
| 1237 | case ATA_DEV_ATAPI: |
| 1238 | tf.command = ATA_CMD_ID_ATAPI; |
| 1239 | break; |
| 1240 | default: |
| 1241 | rc = -ENODEV; |
| 1242 | reason = "unsupported class"; |
| 1243 | goto err_out; |
| 1244 | } |
| 1245 | |
| 1246 | tf.protocol = ATA_PROT_PIO; |
| 1247 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1248 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE, |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1249 | id, sizeof(id[0]) * ATA_ID_WORDS); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1250 | if (err_mask) { |
| 1251 | rc = -EIO; |
| 1252 | reason = "I/O error"; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1253 | goto err_out; |
| 1254 | } |
| 1255 | |
| 1256 | swap_buf_le16(id, ATA_ID_WORDS); |
| 1257 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1258 | /* sanity check */ |
Alan Cox | 692785e | 2006-03-27 18:49:19 +0100 | [diff] [blame] | 1259 | if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) { |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1260 | rc = -EINVAL; |
| 1261 | reason = "device reports illegal type"; |
| 1262 | goto err_out; |
| 1263 | } |
| 1264 | |
| 1265 | if (post_reset && class == ATA_DEV_ATA) { |
| 1266 | /* |
| 1267 | * The exact sequence expected by certain pre-ATA4 drives is: |
| 1268 | * SRST RESET |
| 1269 | * IDENTIFY |
| 1270 | * INITIALIZE DEVICE PARAMETERS |
| 1271 | * anything else.. |
| 1272 | * Some drives were very specific about that exact sequence. |
| 1273 | */ |
| 1274 | if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1275 | err_mask = ata_dev_init_params(dev, id[3], id[6]); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1276 | if (err_mask) { |
| 1277 | rc = -EIO; |
| 1278 | reason = "INIT_DEV_PARAMS failed"; |
| 1279 | goto err_out; |
| 1280 | } |
| 1281 | |
| 1282 | /* current CHS translation info (id[53-58]) might be |
| 1283 | * changed. reread the identify device info. |
| 1284 | */ |
| 1285 | post_reset = 0; |
| 1286 | goto retry; |
| 1287 | } |
| 1288 | } |
| 1289 | |
| 1290 | *p_class = class; |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 1291 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1292 | return 0; |
| 1293 | |
| 1294 | err_out: |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1295 | if (ata_msg_warn(ap)) |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1296 | ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY " |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1297 | "(%s, err_mask=0x%x)\n", reason, err_mask); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1298 | return rc; |
| 1299 | } |
| 1300 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1301 | static inline u8 ata_dev_knobble(struct ata_device *dev) |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1302 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1303 | return ((dev->ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id))); |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1304 | } |
| 1305 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1306 | static void ata_dev_config_ncq(struct ata_device *dev, |
| 1307 | char *desc, size_t desc_sz) |
| 1308 | { |
| 1309 | struct ata_port *ap = dev->ap; |
| 1310 | int hdepth = 0, ddepth = ata_id_queue_depth(dev->id); |
| 1311 | |
| 1312 | if (!ata_id_has_ncq(dev->id)) { |
| 1313 | desc[0] = '\0'; |
| 1314 | return; |
| 1315 | } |
| 1316 | |
| 1317 | if (ap->flags & ATA_FLAG_NCQ) { |
| 1318 | hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1); |
| 1319 | dev->flags |= ATA_DFLAG_NCQ; |
| 1320 | } |
| 1321 | |
| 1322 | if (hdepth >= ddepth) |
| 1323 | snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth); |
| 1324 | else |
| 1325 | snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth); |
| 1326 | } |
| 1327 | |
Brian King | e6d902a | 2006-06-28 08:30:31 -0500 | [diff] [blame] | 1328 | static void ata_set_port_max_cmd_len(struct ata_port *ap) |
| 1329 | { |
| 1330 | int i; |
| 1331 | |
| 1332 | if (ap->host) { |
| 1333 | ap->host->max_cmd_len = 0; |
| 1334 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1335 | ap->host->max_cmd_len = max_t(unsigned int, |
| 1336 | ap->host->max_cmd_len, |
| 1337 | ap->device[i].cdb_len); |
| 1338 | } |
| 1339 | } |
| 1340 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1341 | /** |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1342 | * ata_dev_configure - Configure the specified ATA/ATAPI device |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1343 | * @dev: Target device to configure |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1344 | * @print_info: Enable device info printout |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | * |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1346 | * Configure @dev according to @dev->id. Generic and low-level |
| 1347 | * driver specific fixups are also applied. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | * |
| 1349 | * LOCKING: |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1350 | * Kernel thread context (may sleep) |
| 1351 | * |
| 1352 | * RETURNS: |
| 1353 | * 0 on success, -errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | */ |
Tejun Heo | a9beec9 | 2006-05-31 18:27:44 +0900 | [diff] [blame] | 1355 | int ata_dev_configure(struct ata_device *dev, int print_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1357 | struct ata_port *ap = dev->ap; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1358 | const u16 *id = dev->id; |
Tejun Heo | ff8854b | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1359 | unsigned int xfer_mask; |
Brian King | e6d902a | 2006-06-28 08:30:31 -0500 | [diff] [blame] | 1360 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1362 | if (!ata_dev_enabled(dev) && ata_msg_info(ap)) { |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1363 | ata_dev_printk(dev, KERN_INFO, |
| 1364 | "%s: ENTER/EXIT (host %u, dev %u) -- nodev\n", |
| 1365 | __FUNCTION__, ap->id, dev->devno); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1366 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | } |
| 1368 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1369 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1370 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER, host %u, dev %u\n", |
| 1371 | __FUNCTION__, ap->id, dev->devno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 1373 | /* print device capabilities */ |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1374 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1375 | ata_dev_printk(dev, KERN_DEBUG, |
| 1376 | "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x " |
| 1377 | "85:%04x 86:%04x 87:%04x 88:%04x\n", |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1378 | __FUNCTION__, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1379 | id[49], id[82], id[83], id[84], |
| 1380 | id[85], id[86], id[87], id[88]); |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 1381 | |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1382 | /* initialize to-be-configured parameters */ |
Tejun Heo | ea1dd4e | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1383 | dev->flags &= ~ATA_DFLAG_CFG_MASK; |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1384 | dev->max_sectors = 0; |
| 1385 | dev->cdb_len = 0; |
| 1386 | dev->n_sectors = 0; |
| 1387 | dev->cylinders = 0; |
| 1388 | dev->heads = 0; |
| 1389 | dev->sectors = 0; |
| 1390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | /* |
| 1392 | * common ATA, ATAPI feature tests |
| 1393 | */ |
| 1394 | |
Tejun Heo | ff8854b | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1395 | /* find max transfer mode; for printk only */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1396 | xfer_mask = ata_id_xfermask(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1398 | if (ata_msg_probe(ap)) |
| 1399 | ata_dump_id(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
| 1401 | /* ATA-specific feature tests */ |
| 1402 | if (dev->class == ATA_DEV_ATA) { |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1403 | dev->n_sectors = ata_id_n_sectors(id); |
Tejun Heo | 2940740 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1404 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1405 | if (ata_id_has_lba(id)) { |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1406 | const char *lba_desc; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1407 | char ncq_desc[20]; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1408 | |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1409 | lba_desc = "LBA"; |
| 1410 | dev->flags |= ATA_DFLAG_LBA; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1411 | if (ata_id_has_lba48(id)) { |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1412 | dev->flags |= ATA_DFLAG_LBA48; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1413 | lba_desc = "LBA48"; |
| 1414 | } |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1415 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1416 | /* config NCQ */ |
| 1417 | ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc)); |
| 1418 | |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1419 | /* print device info to dmesg */ |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 1420 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1421 | ata_dev_printk(dev, KERN_INFO, "ATA-%d, " |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1422 | "max %s, %Lu sectors: %s %s\n", |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1423 | ata_id_major_version(id), |
| 1424 | ata_mode_string(xfer_mask), |
| 1425 | (unsigned long long)dev->n_sectors, |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1426 | lba_desc, ncq_desc); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1427 | } else { |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1428 | /* CHS */ |
| 1429 | |
| 1430 | /* Default translation */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1431 | dev->cylinders = id[1]; |
| 1432 | dev->heads = id[3]; |
| 1433 | dev->sectors = id[6]; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1434 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1435 | if (ata_id_current_chs_valid(id)) { |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1436 | /* Current CHS translation is valid. */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1437 | dev->cylinders = id[54]; |
| 1438 | dev->heads = id[55]; |
| 1439 | dev->sectors = id[56]; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1440 | } |
| 1441 | |
| 1442 | /* print device info to dmesg */ |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 1443 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1444 | ata_dev_printk(dev, KERN_INFO, "ATA-%d, " |
| 1445 | "max %s, %Lu sectors: CHS %u/%u/%u\n", |
| 1446 | ata_id_major_version(id), |
| 1447 | ata_mode_string(xfer_mask), |
| 1448 | (unsigned long long)dev->n_sectors, |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1449 | dev->cylinders, dev->heads, |
| 1450 | dev->sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | } |
| 1452 | |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 1453 | if (dev->id[59] & 0x100) { |
| 1454 | dev->multi_count = dev->id[59] & 0xff; |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 1455 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1456 | ata_dev_printk(dev, KERN_INFO, |
| 1457 | "ata%u: dev %u multi count %u\n", |
| 1458 | ap->id, dev->devno, dev->multi_count); |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 1459 | } |
| 1460 | |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 1461 | dev->cdb_len = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | } |
| 1463 | |
| 1464 | /* ATAPI-specific feature tests */ |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 1465 | else if (dev->class == ATA_DEV_ATAPI) { |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 1466 | char *cdb_intr_string = ""; |
| 1467 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1468 | rc = atapi_cdb_len(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | if ((rc < 12) || (rc > ATAPI_CDB_LEN)) { |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1470 | if (ata_msg_warn(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1471 | ata_dev_printk(dev, KERN_WARNING, |
| 1472 | "unsupported CDB len\n"); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1473 | rc = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | goto err_out_nosup; |
| 1475 | } |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 1476 | dev->cdb_len = (unsigned int) rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 1478 | if (ata_id_cdb_intr(dev->id)) { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 1479 | dev->flags |= ATA_DFLAG_CDB_INTR; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 1480 | cdb_intr_string = ", CDB intr"; |
| 1481 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 1482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | /* print device info to dmesg */ |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 1484 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | 12436c3 | 2006-05-15 20:59:15 +0900 | [diff] [blame] | 1485 | ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n", |
| 1486 | ata_mode_string(xfer_mask), |
| 1487 | cdb_intr_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | } |
| 1489 | |
Brian King | e6d902a | 2006-06-28 08:30:31 -0500 | [diff] [blame] | 1490 | ata_set_port_max_cmd_len(ap); |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 1491 | |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1492 | /* limit bridge transfers to udma5, 200 sectors */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1493 | if (ata_dev_knobble(dev)) { |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 1494 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1495 | ata_dev_printk(dev, KERN_INFO, |
| 1496 | "applying bridge limits\n"); |
Tejun Heo | 5a52913 | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 1497 | dev->udma_mask &= ATA_UDMA5; |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1498 | dev->max_sectors = ATA_MAX_SECTORS; |
| 1499 | } |
| 1500 | |
| 1501 | if (ap->ops->dev_config) |
| 1502 | ap->ops->dev_config(ap, dev); |
| 1503 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1504 | if (ata_msg_probe(ap)) |
| 1505 | ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n", |
| 1506 | __FUNCTION__, ata_chk_status(ap)); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1507 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
| 1509 | err_out_nosup: |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1510 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1511 | ata_dev_printk(dev, KERN_DEBUG, |
| 1512 | "%s: EXIT, err\n", __FUNCTION__); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1513 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | } |
| 1515 | |
| 1516 | /** |
| 1517 | * ata_bus_probe - Reset and probe ATA bus |
| 1518 | * @ap: Bus to probe |
| 1519 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1520 | * Master ATA bus probing function. Initiates a hardware-dependent |
| 1521 | * bus reset, then attempts to identify any devices found on |
| 1522 | * the bus. |
| 1523 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1525 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | * |
| 1527 | * RETURNS: |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 1528 | * Zero on success, negative errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | */ |
| 1530 | |
| 1531 | static int ata_bus_probe(struct ata_port *ap) |
| 1532 | { |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1533 | unsigned int classes[ATA_MAX_DEVICES]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1534 | int tries[ATA_MAX_DEVICES]; |
| 1535 | int i, rc, down_xfermask; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1536 | struct ata_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1538 | ata_port_probe(ap); |
| 1539 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1540 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1541 | tries[i] = ATA_PROBE_MAX_TRIES; |
| 1542 | |
| 1543 | retry: |
| 1544 | down_xfermask = 0; |
| 1545 | |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 1546 | /* reset and determine device classes */ |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 1547 | ap->ops->phy_reset(ap); |
Tejun Heo | 2061a47 | 2006-03-12 00:57:39 +0900 | [diff] [blame] | 1548 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 1549 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 1550 | dev = &ap->device[i]; |
Tejun Heo | c19ba8a | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1551 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 1552 | if (!(ap->flags & ATA_FLAG_DISABLED) && |
| 1553 | dev->class != ATA_DEV_UNKNOWN) |
| 1554 | classes[dev->devno] = dev->class; |
| 1555 | else |
| 1556 | classes[dev->devno] = ATA_DEV_NONE; |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 1557 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 1558 | dev->class = ATA_DEV_UNKNOWN; |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1559 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 1561 | ata_port_probe(ap); |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 1562 | |
Alan Cox | b6079ca | 2006-05-22 16:52:06 +0100 | [diff] [blame] | 1563 | /* after the reset the device state is PIO 0 and the controller |
| 1564 | state is undefined. Record the mode */ |
| 1565 | |
| 1566 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1567 | ap->device[i].pio_mode = XFER_PIO_0; |
| 1568 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1569 | /* read IDENTIFY page and configure devices */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1571 | dev = &ap->device[i]; |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1572 | |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1573 | if (tries[i]) |
| 1574 | dev->class = classes[i]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1575 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1576 | if (!ata_dev_enabled(dev)) |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1577 | continue; |
| 1578 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1579 | rc = ata_dev_read_id(dev, &dev->class, 1, dev->id); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1580 | if (rc) |
| 1581 | goto fail; |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1582 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1583 | rc = ata_dev_configure(dev, 1); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1584 | if (rc) |
| 1585 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | } |
| 1587 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1588 | /* configure transfer mode */ |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 1589 | rc = ata_set_mode(ap, &dev); |
Tejun Heo | 51713d3 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1590 | if (rc) { |
| 1591 | down_xfermask = 1; |
| 1592 | goto fail; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1593 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1594 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1595 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1596 | if (ata_dev_enabled(&ap->device[i])) |
| 1597 | return 0; |
Alan Cox | e35a9e0 | 2006-03-27 18:46:37 +0100 | [diff] [blame] | 1598 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1599 | /* no device present, disable port */ |
| 1600 | ata_port_disable(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | ap->ops->port_disable(ap); |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 1602 | return -ENODEV; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1603 | |
| 1604 | fail: |
| 1605 | switch (rc) { |
| 1606 | case -EINVAL: |
| 1607 | case -ENODEV: |
| 1608 | tries[dev->devno] = 0; |
| 1609 | break; |
| 1610 | case -EIO: |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1611 | sata_down_spd_limit(ap); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1612 | /* fall through */ |
| 1613 | default: |
| 1614 | tries[dev->devno]--; |
| 1615 | if (down_xfermask && |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1616 | ata_down_xfermask_limit(dev, tries[dev->devno] == 1)) |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1617 | tries[dev->devno] = 0; |
| 1618 | } |
| 1619 | |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1620 | if (!tries[dev->devno]) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1621 | ata_down_xfermask_limit(dev, 1); |
| 1622 | ata_dev_disable(dev); |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1623 | } |
| 1624 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1625 | goto retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | } |
| 1627 | |
| 1628 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1629 | * ata_port_probe - Mark port as enabled |
| 1630 | * @ap: Port for which we indicate enablement |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1632 | * Modify @ap data structure such that the system |
| 1633 | * thinks that the entire port is enabled. |
| 1634 | * |
| 1635 | * LOCKING: host_set lock, or some other form of |
| 1636 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | */ |
| 1638 | |
| 1639 | void ata_port_probe(struct ata_port *ap) |
| 1640 | { |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1641 | ap->flags &= ~ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | } |
| 1643 | |
| 1644 | /** |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1645 | * sata_print_link_status - Print SATA link status |
| 1646 | * @ap: SATA port to printk link status about |
| 1647 | * |
| 1648 | * This function prints link speed and status of a SATA link. |
| 1649 | * |
| 1650 | * LOCKING: |
| 1651 | * None. |
| 1652 | */ |
| 1653 | static void sata_print_link_status(struct ata_port *ap) |
| 1654 | { |
Tejun Heo | 6d5f973 | 2006-04-03 00:09:41 +0900 | [diff] [blame] | 1655 | u32 sstatus, scontrol, tmp; |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1656 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1657 | if (sata_scr_read(ap, SCR_STATUS, &sstatus)) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1658 | return; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1659 | sata_scr_read(ap, SCR_CONTROL, &scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1660 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1661 | if (ata_port_online(ap)) { |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1662 | tmp = (sstatus >> 4) & 0xf; |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1663 | ata_port_printk(ap, KERN_INFO, |
| 1664 | "SATA link up %s (SStatus %X SControl %X)\n", |
| 1665 | sata_spd_string(tmp), sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1666 | } else { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1667 | ata_port_printk(ap, KERN_INFO, |
| 1668 | "SATA link down (SStatus %X SControl %X)\n", |
| 1669 | sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1670 | } |
| 1671 | } |
| 1672 | |
| 1673 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1674 | * __sata_phy_reset - Wake/reset a low-level SATA PHY |
| 1675 | * @ap: SATA port associated with target SATA PHY. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1677 | * This function issues commands to standard SATA Sxxx |
| 1678 | * PHY registers, to wake up the phy (and device), and |
| 1679 | * clear any reset condition. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | * |
| 1681 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1682 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | * |
| 1684 | */ |
| 1685 | void __sata_phy_reset(struct ata_port *ap) |
| 1686 | { |
| 1687 | u32 sstatus; |
| 1688 | unsigned long timeout = jiffies + (HZ * 5); |
| 1689 | |
| 1690 | if (ap->flags & ATA_FLAG_SATA_RESET) { |
Brett Russ | cdcca89 | 2005-03-28 15:10:27 -0500 | [diff] [blame] | 1691 | /* issue phy wake/reset */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1692 | sata_scr_write_flush(ap, SCR_CONTROL, 0x301); |
Tejun Heo | 62ba284 | 2005-06-26 23:27:19 +0900 | [diff] [blame] | 1693 | /* Couldn't find anything in SATA I/II specs, but |
| 1694 | * AHCI-1.1 10.4.2 says at least 1 ms. */ |
| 1695 | mdelay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | } |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1697 | /* phy wake/clear reset */ |
| 1698 | sata_scr_write_flush(ap, SCR_CONTROL, 0x300); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | |
| 1700 | /* wait for phy to become ready, if necessary */ |
| 1701 | do { |
| 1702 | msleep(200); |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1703 | sata_scr_read(ap, SCR_STATUS, &sstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | if ((sstatus & 0xf) != 1) |
| 1705 | break; |
| 1706 | } while (time_before(jiffies, timeout)); |
| 1707 | |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1708 | /* print link status */ |
| 1709 | sata_print_link_status(ap); |
Jeff Garzik | 656563e | 2005-11-20 03:36:45 -0500 | [diff] [blame] | 1710 | |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1711 | /* TODO: phy layer with polling, timeouts, etc. */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1712 | if (!ata_port_offline(ap)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | ata_port_probe(ap); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1714 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | ata_port_disable(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1717 | if (ap->flags & ATA_FLAG_DISABLED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | return; |
| 1719 | |
| 1720 | if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) { |
| 1721 | ata_port_disable(ap); |
| 1722 | return; |
| 1723 | } |
| 1724 | |
| 1725 | ap->cbl = ATA_CBL_SATA; |
| 1726 | } |
| 1727 | |
| 1728 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1729 | * sata_phy_reset - Reset SATA bus. |
| 1730 | * @ap: SATA port associated with target SATA PHY. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1732 | * This function resets the SATA bus, and then probes |
| 1733 | * the bus for devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | * |
| 1735 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1736 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | * |
| 1738 | */ |
| 1739 | void sata_phy_reset(struct ata_port *ap) |
| 1740 | { |
| 1741 | __sata_phy_reset(ap); |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1742 | if (ap->flags & ATA_FLAG_DISABLED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | return; |
| 1744 | ata_bus_reset(ap); |
| 1745 | } |
| 1746 | |
| 1747 | /** |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1748 | * ata_dev_pair - return other device on cable |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1749 | * @adev: device |
| 1750 | * |
| 1751 | * Obtain the other device on the same cable, or if none is |
| 1752 | * present NULL is returned |
| 1753 | */ |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1754 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1755 | struct ata_device *ata_dev_pair(struct ata_device *adev) |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1756 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1757 | struct ata_port *ap = adev->ap; |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1758 | struct ata_device *pair = &ap->device[1 - adev->devno]; |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1759 | if (!ata_dev_enabled(pair)) |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1760 | return NULL; |
| 1761 | return pair; |
| 1762 | } |
| 1763 | |
| 1764 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1765 | * ata_port_disable - Disable port. |
| 1766 | * @ap: Port to be disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1768 | * Modify @ap data structure such that the system |
| 1769 | * thinks that the entire port is disabled, and should |
| 1770 | * never attempt to probe or communicate with devices |
| 1771 | * on this port. |
| 1772 | * |
| 1773 | * LOCKING: host_set lock, or some other form of |
| 1774 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | */ |
| 1776 | |
| 1777 | void ata_port_disable(struct ata_port *ap) |
| 1778 | { |
| 1779 | ap->device[0].class = ATA_DEV_NONE; |
| 1780 | ap->device[1].class = ATA_DEV_NONE; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1781 | ap->flags |= ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | } |
| 1783 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1784 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1785 | * sata_down_spd_limit - adjust SATA spd limit downward |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1786 | * @ap: Port to adjust SATA spd limit for |
| 1787 | * |
| 1788 | * Adjust SATA spd limit of @ap downward. Note that this |
| 1789 | * function only adjusts the limit. The change must be applied |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1790 | * using sata_set_spd(). |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1791 | * |
| 1792 | * LOCKING: |
| 1793 | * Inherited from caller. |
| 1794 | * |
| 1795 | * RETURNS: |
| 1796 | * 0 on success, negative errno on failure |
| 1797 | */ |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1798 | int sata_down_spd_limit(struct ata_port *ap) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1799 | { |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1800 | u32 sstatus, spd, mask; |
| 1801 | int rc, highbit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1802 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1803 | rc = sata_scr_read(ap, SCR_STATUS, &sstatus); |
| 1804 | if (rc) |
| 1805 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1806 | |
| 1807 | mask = ap->sata_spd_limit; |
| 1808 | if (mask <= 1) |
| 1809 | return -EINVAL; |
| 1810 | highbit = fls(mask) - 1; |
| 1811 | mask &= ~(1 << highbit); |
| 1812 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1813 | spd = (sstatus >> 4) & 0xf; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1814 | if (spd <= 1) |
| 1815 | return -EINVAL; |
| 1816 | spd--; |
| 1817 | mask &= (1 << spd) - 1; |
| 1818 | if (!mask) |
| 1819 | return -EINVAL; |
| 1820 | |
| 1821 | ap->sata_spd_limit = mask; |
| 1822 | |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1823 | ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n", |
| 1824 | sata_spd_string(fls(mask))); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1825 | |
| 1826 | return 0; |
| 1827 | } |
| 1828 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1829 | static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1830 | { |
| 1831 | u32 spd, limit; |
| 1832 | |
| 1833 | if (ap->sata_spd_limit == UINT_MAX) |
| 1834 | limit = 0; |
| 1835 | else |
| 1836 | limit = fls(ap->sata_spd_limit); |
| 1837 | |
| 1838 | spd = (*scontrol >> 4) & 0xf; |
| 1839 | *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4); |
| 1840 | |
| 1841 | return spd != limit; |
| 1842 | } |
| 1843 | |
| 1844 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1845 | * sata_set_spd_needed - is SATA spd configuration needed |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1846 | * @ap: Port in question |
| 1847 | * |
| 1848 | * Test whether the spd limit in SControl matches |
| 1849 | * @ap->sata_spd_limit. This function is used to determine |
| 1850 | * whether hardreset is necessary to apply SATA spd |
| 1851 | * configuration. |
| 1852 | * |
| 1853 | * LOCKING: |
| 1854 | * Inherited from caller. |
| 1855 | * |
| 1856 | * RETURNS: |
| 1857 | * 1 if SATA spd configuration is needed, 0 otherwise. |
| 1858 | */ |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1859 | int sata_set_spd_needed(struct ata_port *ap) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1860 | { |
| 1861 | u32 scontrol; |
| 1862 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1863 | if (sata_scr_read(ap, SCR_CONTROL, &scontrol)) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1864 | return 0; |
| 1865 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1866 | return __sata_set_spd_needed(ap, &scontrol); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1867 | } |
| 1868 | |
| 1869 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1870 | * sata_set_spd - set SATA spd according to spd limit |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1871 | * @ap: Port to set SATA spd for |
| 1872 | * |
| 1873 | * Set SATA spd of @ap according to sata_spd_limit. |
| 1874 | * |
| 1875 | * LOCKING: |
| 1876 | * Inherited from caller. |
| 1877 | * |
| 1878 | * RETURNS: |
| 1879 | * 0 if spd doesn't need to be changed, 1 if spd has been |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1880 | * changed. Negative errno if SCR registers are inaccessible. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1881 | */ |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1882 | int sata_set_spd(struct ata_port *ap) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1883 | { |
| 1884 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1885 | int rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1886 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1887 | if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol))) |
| 1888 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1889 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1890 | if (!__sata_set_spd_needed(ap, &scontrol)) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1891 | return 0; |
| 1892 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1893 | if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol))) |
| 1894 | return rc; |
| 1895 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1896 | return 1; |
| 1897 | } |
| 1898 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1899 | /* |
| 1900 | * This mode timing computation functionality is ported over from |
| 1901 | * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik |
| 1902 | */ |
| 1903 | /* |
| 1904 | * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds). |
| 1905 | * These were taken from ATA/ATAPI-6 standard, rev 0a, except |
| 1906 | * for PIO 5, which is a nonstandard extension and UDMA6, which |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1907 | * is currently supported only by Maxtor drives. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1908 | */ |
| 1909 | |
| 1910 | static const struct ata_timing ata_timing[] = { |
| 1911 | |
| 1912 | { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 }, |
| 1913 | { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 }, |
| 1914 | { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 }, |
| 1915 | { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 }, |
| 1916 | |
| 1917 | { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 }, |
| 1918 | { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 }, |
| 1919 | { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 }, |
| 1920 | |
| 1921 | /* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */ |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1922 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1923 | { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 }, |
| 1924 | { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 }, |
| 1925 | { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 }, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1926 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1927 | { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 }, |
| 1928 | { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 }, |
| 1929 | { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 }, |
| 1930 | |
| 1931 | /* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */ |
| 1932 | { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 }, |
| 1933 | { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 }, |
| 1934 | |
| 1935 | { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 }, |
| 1936 | { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 }, |
| 1937 | { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 }, |
| 1938 | |
| 1939 | /* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */ |
| 1940 | |
| 1941 | { 0xFF } |
| 1942 | }; |
| 1943 | |
| 1944 | #define ENOUGH(v,unit) (((v)-1)/(unit)+1) |
| 1945 | #define EZ(v,unit) ((v)?ENOUGH(v,unit):0) |
| 1946 | |
| 1947 | static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT) |
| 1948 | { |
| 1949 | q->setup = EZ(t->setup * 1000, T); |
| 1950 | q->act8b = EZ(t->act8b * 1000, T); |
| 1951 | q->rec8b = EZ(t->rec8b * 1000, T); |
| 1952 | q->cyc8b = EZ(t->cyc8b * 1000, T); |
| 1953 | q->active = EZ(t->active * 1000, T); |
| 1954 | q->recover = EZ(t->recover * 1000, T); |
| 1955 | q->cycle = EZ(t->cycle * 1000, T); |
| 1956 | q->udma = EZ(t->udma * 1000, UT); |
| 1957 | } |
| 1958 | |
| 1959 | void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b, |
| 1960 | struct ata_timing *m, unsigned int what) |
| 1961 | { |
| 1962 | if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup); |
| 1963 | if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b); |
| 1964 | if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b); |
| 1965 | if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b); |
| 1966 | if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active); |
| 1967 | if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover); |
| 1968 | if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle); |
| 1969 | if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma); |
| 1970 | } |
| 1971 | |
| 1972 | static const struct ata_timing* ata_timing_find_mode(unsigned short speed) |
| 1973 | { |
| 1974 | const struct ata_timing *t; |
| 1975 | |
| 1976 | for (t = ata_timing; t->mode != speed; t++) |
Alan Cox | 9119075 | 2005-10-26 12:17:46 -0400 | [diff] [blame] | 1977 | if (t->mode == 0xFF) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1978 | return NULL; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1979 | return t; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1980 | } |
| 1981 | |
| 1982 | int ata_timing_compute(struct ata_device *adev, unsigned short speed, |
| 1983 | struct ata_timing *t, int T, int UT) |
| 1984 | { |
| 1985 | const struct ata_timing *s; |
| 1986 | struct ata_timing p; |
| 1987 | |
| 1988 | /* |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1989 | * Find the mode. |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 1990 | */ |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1991 | |
| 1992 | if (!(s = ata_timing_find_mode(speed))) |
| 1993 | return -EINVAL; |
| 1994 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 1995 | memcpy(t, s, sizeof(*s)); |
| 1996 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1997 | /* |
| 1998 | * If the drive is an EIDE drive, it can tell us it needs extended |
| 1999 | * PIO/MW_DMA cycle timing. |
| 2000 | */ |
| 2001 | |
| 2002 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */ |
| 2003 | memset(&p, 0, sizeof(p)); |
| 2004 | if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) { |
| 2005 | if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO]; |
| 2006 | else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY]; |
| 2007 | } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) { |
| 2008 | p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN]; |
| 2009 | } |
| 2010 | ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B); |
| 2011 | } |
| 2012 | |
| 2013 | /* |
| 2014 | * Convert the timing to bus clock counts. |
| 2015 | */ |
| 2016 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 2017 | ata_timing_quantize(t, t, T, UT); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2018 | |
| 2019 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 2020 | * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, |
| 2021 | * S.M.A.R.T * and some other commands. We have to ensure that the |
| 2022 | * DMA cycle timing is slower/equal than the fastest PIO timing. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2023 | */ |
| 2024 | |
| 2025 | if (speed > XFER_PIO_4) { |
| 2026 | ata_timing_compute(adev, adev->pio_mode, &p, T, UT); |
| 2027 | ata_timing_merge(&p, t, t, ATA_TIMING_ALL); |
| 2028 | } |
| 2029 | |
| 2030 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 2031 | * Lengthen active & recovery time so that cycle time is correct. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2032 | */ |
| 2033 | |
| 2034 | if (t->act8b + t->rec8b < t->cyc8b) { |
| 2035 | t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2; |
| 2036 | t->rec8b = t->cyc8b - t->act8b; |
| 2037 | } |
| 2038 | |
| 2039 | if (t->active + t->recover < t->cycle) { |
| 2040 | t->active += (t->cycle - (t->active + t->recover)) / 2; |
| 2041 | t->recover = t->cycle - t->active; |
| 2042 | } |
| 2043 | |
| 2044 | return 0; |
| 2045 | } |
| 2046 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2047 | /** |
| 2048 | * ata_down_xfermask_limit - adjust dev xfer masks downward |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2049 | * @dev: Device to adjust xfer masks |
| 2050 | * @force_pio0: Force PIO0 |
| 2051 | * |
| 2052 | * Adjust xfer masks of @dev downward. Note that this function |
| 2053 | * does not apply the change. Invoking ata_set_mode() afterwards |
| 2054 | * will apply the limit. |
| 2055 | * |
| 2056 | * LOCKING: |
| 2057 | * Inherited from caller. |
| 2058 | * |
| 2059 | * RETURNS: |
| 2060 | * 0 on success, negative errno on failure |
| 2061 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2062 | int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0) |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2063 | { |
| 2064 | unsigned long xfer_mask; |
| 2065 | int highbit; |
| 2066 | |
| 2067 | xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask, |
| 2068 | dev->udma_mask); |
| 2069 | |
| 2070 | if (!xfer_mask) |
| 2071 | goto fail; |
| 2072 | /* don't gear down to MWDMA from UDMA, go directly to PIO */ |
| 2073 | if (xfer_mask & ATA_MASK_UDMA) |
| 2074 | xfer_mask &= ~ATA_MASK_MWDMA; |
| 2075 | |
| 2076 | highbit = fls(xfer_mask) - 1; |
| 2077 | xfer_mask &= ~(1 << highbit); |
| 2078 | if (force_pio0) |
| 2079 | xfer_mask &= 1 << ATA_SHIFT_PIO; |
| 2080 | if (!xfer_mask) |
| 2081 | goto fail; |
| 2082 | |
| 2083 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask, |
| 2084 | &dev->udma_mask); |
| 2085 | |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2086 | ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n", |
| 2087 | ata_mode_string(xfer_mask)); |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2088 | |
| 2089 | return 0; |
| 2090 | |
| 2091 | fail: |
| 2092 | return -EINVAL; |
| 2093 | } |
| 2094 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2095 | static int ata_dev_set_mode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | { |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2097 | unsigned int err_mask; |
| 2098 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | |
Tejun Heo | e838460 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2100 | dev->flags &= ~ATA_DFLAG_PIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | if (dev->xfer_shift == ATA_SHIFT_PIO) |
| 2102 | dev->flags |= ATA_DFLAG_PIO; |
| 2103 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2104 | err_mask = ata_dev_set_xfermode(dev); |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2105 | if (err_mask) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2106 | ata_dev_printk(dev, KERN_ERR, "failed to set xfermode " |
| 2107 | "(err_mask=0x%x)\n", err_mask); |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2108 | return -EIO; |
| 2109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2111 | rc = ata_dev_revalidate(dev, 0); |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2112 | if (rc) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2113 | return rc; |
Tejun Heo | 48a8a14 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2114 | |
Tejun Heo | 23e71c3 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2115 | DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n", |
| 2116 | dev->xfer_shift, (int)dev->xfer_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2118 | ata_dev_printk(dev, KERN_INFO, "configured for %s\n", |
| 2119 | ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode))); |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2120 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | } |
| 2122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | /** |
| 2124 | * ata_set_mode - Program timings and issue SET FEATURES - XFER |
| 2125 | * @ap: port on which timings will be programmed |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2126 | * @r_failed_dev: out paramter for failed device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | * |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2128 | * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If |
| 2129 | * ata_set_mode() fails, pointer to the failing device is |
| 2130 | * returned in @r_failed_dev. |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2131 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2133 | * PCI/etc. bus probe sem. |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2134 | * |
| 2135 | * RETURNS: |
| 2136 | * 0 on success, negative errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | */ |
Tejun Heo | 1ad8e7f | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2138 | int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | { |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2140 | struct ata_device *dev; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2141 | int i, rc = 0, used_dma = 0, found = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 2143 | /* has private set_mode? */ |
| 2144 | if (ap->ops->set_mode) { |
| 2145 | /* FIXME: make ->set_mode handle no device case and |
| 2146 | * return error code and failing device on failure. |
| 2147 | */ |
| 2148 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
Tejun Heo | 02670bf | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2149 | if (ata_dev_ready(&ap->device[i])) { |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 2150 | ap->ops->set_mode(ap); |
| 2151 | break; |
| 2152 | } |
| 2153 | } |
| 2154 | return 0; |
| 2155 | } |
| 2156 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2157 | /* step 1: calculate xfer_mask */ |
| 2158 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 2159 | unsigned int pio_mask, dma_mask; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2160 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2161 | dev = &ap->device[i]; |
| 2162 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2163 | if (!ata_dev_enabled(dev)) |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2164 | continue; |
| 2165 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2166 | ata_dev_xfermask(dev); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2167 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 2168 | pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0); |
| 2169 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
| 2170 | dev->pio_mode = ata_xfer_mask2mode(pio_mask); |
| 2171 | dev->dma_mode = ata_xfer_mask2mode(dma_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2172 | |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2173 | found = 1; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2174 | if (dev->dma_mode) |
| 2175 | used_dma = 1; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2176 | } |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2177 | if (!found) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2178 | goto out; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2179 | |
| 2180 | /* step 2: always set host PIO timings */ |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2181 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 2182 | dev = &ap->device[i]; |
| 2183 | if (!ata_dev_enabled(dev)) |
| 2184 | continue; |
| 2185 | |
| 2186 | if (!dev->pio_mode) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2187 | ata_dev_printk(dev, KERN_WARNING, "no PIO support\n"); |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2188 | rc = -EINVAL; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2189 | goto out; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2190 | } |
| 2191 | |
| 2192 | dev->xfer_mode = dev->pio_mode; |
| 2193 | dev->xfer_shift = ATA_SHIFT_PIO; |
| 2194 | if (ap->ops->set_piomode) |
| 2195 | ap->ops->set_piomode(ap, dev); |
| 2196 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2198 | /* step 3: set host DMA timings */ |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2199 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 2200 | dev = &ap->device[i]; |
| 2201 | |
| 2202 | if (!ata_dev_enabled(dev) || !dev->dma_mode) |
| 2203 | continue; |
| 2204 | |
| 2205 | dev->xfer_mode = dev->dma_mode; |
| 2206 | dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode); |
| 2207 | if (ap->ops->set_dmamode) |
| 2208 | ap->ops->set_dmamode(ap, dev); |
| 2209 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | |
| 2211 | /* step 4: update devices' xfer mode */ |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2212 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2213 | dev = &ap->device[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | |
Tejun Heo | 02670bf | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2215 | /* don't udpate suspended devices' xfer mode */ |
| 2216 | if (!ata_dev_ready(dev)) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2217 | continue; |
| 2218 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2219 | rc = ata_dev_set_mode(dev); |
Tejun Heo | 5bbc53f | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2220 | if (rc) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2221 | goto out; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2223 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2224 | /* Record simplex status. If we selected DMA then the other |
| 2225 | * host channels are not permitted to do so. |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2226 | */ |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2227 | if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX)) |
| 2228 | ap->host_set->simplex_claimed = 1; |
| 2229 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2230 | /* step5: chip specific finalisation */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | if (ap->ops->post_set_mode) |
| 2232 | ap->ops->post_set_mode(ap); |
| 2233 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2234 | out: |
| 2235 | if (rc) |
| 2236 | *r_failed_dev = dev; |
| 2237 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | } |
| 2239 | |
| 2240 | /** |
Jeff Garzik | 1fdffbc | 2006-02-09 05:15:27 -0500 | [diff] [blame] | 2241 | * ata_tf_to_host - issue ATA taskfile to host controller |
| 2242 | * @ap: port to which command is being issued |
| 2243 | * @tf: ATA taskfile register set |
| 2244 | * |
| 2245 | * Issues ATA taskfile register set to ATA host controller, |
| 2246 | * with proper synchronization with interrupt handler and |
| 2247 | * other threads. |
| 2248 | * |
| 2249 | * LOCKING: |
| 2250 | * spin_lock_irqsave(host_set lock) |
| 2251 | */ |
| 2252 | |
| 2253 | static inline void ata_tf_to_host(struct ata_port *ap, |
| 2254 | const struct ata_taskfile *tf) |
| 2255 | { |
| 2256 | ap->ops->tf_load(ap, tf); |
| 2257 | ap->ops->exec_command(ap, tf); |
| 2258 | } |
| 2259 | |
| 2260 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | * ata_busy_sleep - sleep until BSY clears, or timeout |
| 2262 | * @ap: port containing status register to be polled |
| 2263 | * @tmout_pat: impatience timeout |
| 2264 | * @tmout: overall timeout |
| 2265 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2266 | * Sleep until ATA Status register bit BSY clears, |
| 2267 | * or a timeout occurs. |
| 2268 | * |
| 2269 | * LOCKING: None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | */ |
| 2271 | |
Tejun Heo | 6f8b995 | 2006-01-24 17:05:21 +0900 | [diff] [blame] | 2272 | unsigned int ata_busy_sleep (struct ata_port *ap, |
| 2273 | unsigned long tmout_pat, unsigned long tmout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | { |
| 2275 | unsigned long timer_start, timeout; |
| 2276 | u8 status; |
| 2277 | |
| 2278 | status = ata_busy_wait(ap, ATA_BUSY, 300); |
| 2279 | timer_start = jiffies; |
| 2280 | timeout = timer_start + tmout_pat; |
| 2281 | while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) { |
| 2282 | msleep(50); |
| 2283 | status = ata_busy_wait(ap, ATA_BUSY, 3); |
| 2284 | } |
| 2285 | |
| 2286 | if (status & ATA_BUSY) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2287 | ata_port_printk(ap, KERN_WARNING, |
| 2288 | "port is slow to respond, please be patient\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | |
| 2290 | timeout = timer_start + tmout; |
| 2291 | while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) { |
| 2292 | msleep(50); |
| 2293 | status = ata_chk_status(ap); |
| 2294 | } |
| 2295 | |
| 2296 | if (status & ATA_BUSY) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2297 | ata_port_printk(ap, KERN_ERR, "port failed to respond " |
| 2298 | "(%lu secs)\n", tmout / HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | return 1; |
| 2300 | } |
| 2301 | |
| 2302 | return 0; |
| 2303 | } |
| 2304 | |
| 2305 | static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask) |
| 2306 | { |
| 2307 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 2308 | unsigned int dev0 = devmask & (1 << 0); |
| 2309 | unsigned int dev1 = devmask & (1 << 1); |
| 2310 | unsigned long timeout; |
| 2311 | |
| 2312 | /* if device 0 was found in ata_devchk, wait for its |
| 2313 | * BSY bit to clear |
| 2314 | */ |
| 2315 | if (dev0) |
| 2316 | ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT); |
| 2317 | |
| 2318 | /* if device 1 was found in ata_devchk, wait for |
| 2319 | * register access, then wait for BSY to clear |
| 2320 | */ |
| 2321 | timeout = jiffies + ATA_TMOUT_BOOT; |
| 2322 | while (dev1) { |
| 2323 | u8 nsect, lbal; |
| 2324 | |
| 2325 | ap->ops->dev_select(ap, 1); |
| 2326 | if (ap->flags & ATA_FLAG_MMIO) { |
| 2327 | nsect = readb((void __iomem *) ioaddr->nsect_addr); |
| 2328 | lbal = readb((void __iomem *) ioaddr->lbal_addr); |
| 2329 | } else { |
| 2330 | nsect = inb(ioaddr->nsect_addr); |
| 2331 | lbal = inb(ioaddr->lbal_addr); |
| 2332 | } |
| 2333 | if ((nsect == 1) && (lbal == 1)) |
| 2334 | break; |
| 2335 | if (time_after(jiffies, timeout)) { |
| 2336 | dev1 = 0; |
| 2337 | break; |
| 2338 | } |
| 2339 | msleep(50); /* give drive a breather */ |
| 2340 | } |
| 2341 | if (dev1) |
| 2342 | ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT); |
| 2343 | |
| 2344 | /* is all this really necessary? */ |
| 2345 | ap->ops->dev_select(ap, 0); |
| 2346 | if (dev1) |
| 2347 | ap->ops->dev_select(ap, 1); |
| 2348 | if (dev0) |
| 2349 | ap->ops->dev_select(ap, 0); |
| 2350 | } |
| 2351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | static unsigned int ata_bus_softreset(struct ata_port *ap, |
| 2353 | unsigned int devmask) |
| 2354 | { |
| 2355 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 2356 | |
| 2357 | DPRINTK("ata%u: bus reset via SRST\n", ap->id); |
| 2358 | |
| 2359 | /* software reset. causes dev0 to be selected */ |
| 2360 | if (ap->flags & ATA_FLAG_MMIO) { |
| 2361 | writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr); |
| 2362 | udelay(20); /* FIXME: flush */ |
| 2363 | writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr); |
| 2364 | udelay(20); /* FIXME: flush */ |
| 2365 | writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr); |
| 2366 | } else { |
| 2367 | outb(ap->ctl, ioaddr->ctl_addr); |
| 2368 | udelay(10); |
| 2369 | outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr); |
| 2370 | udelay(10); |
| 2371 | outb(ap->ctl, ioaddr->ctl_addr); |
| 2372 | } |
| 2373 | |
| 2374 | /* spec mandates ">= 2ms" before checking status. |
| 2375 | * We wait 150ms, because that was the magic delay used for |
| 2376 | * ATAPI devices in Hale Landis's ATADRVR, for the period of time |
| 2377 | * between when the ATA command register is written, and then |
| 2378 | * status is checked. Because waiting for "a while" before |
| 2379 | * checking status is fine, post SRST, we perform this magic |
| 2380 | * delay here as well. |
Alan Cox | 09c7ad7 | 2006-03-22 15:52:40 +0000 | [diff] [blame] | 2381 | * |
| 2382 | * Old drivers/ide uses the 2mS rule and then waits for ready |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | */ |
| 2384 | msleep(150); |
| 2385 | |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2386 | /* Before we perform post reset processing we want to see if |
Tejun Heo | 298a41c | 2006-03-25 02:58:13 +0900 | [diff] [blame] | 2387 | * the bus shows 0xFF because the odd clown forgets the D7 |
| 2388 | * pulldown resistor. |
| 2389 | */ |
Tejun Heo | 987d2f0 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2390 | if (ata_check_status(ap) == 0xFF) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2391 | ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n"); |
Tejun Heo | 298a41c | 2006-03-25 02:58:13 +0900 | [diff] [blame] | 2392 | return AC_ERR_OTHER; |
Tejun Heo | 987d2f0 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2393 | } |
Alan Cox | 09c7ad7 | 2006-03-22 15:52:40 +0000 | [diff] [blame] | 2394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | ata_bus_post_reset(ap, devmask); |
| 2396 | |
| 2397 | return 0; |
| 2398 | } |
| 2399 | |
| 2400 | /** |
| 2401 | * ata_bus_reset - reset host port and associated ATA channel |
| 2402 | * @ap: port to reset |
| 2403 | * |
| 2404 | * This is typically the first time we actually start issuing |
| 2405 | * commands to the ATA channel. We wait for BSY to clear, then |
| 2406 | * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its |
| 2407 | * result. Determine what devices, if any, are on the channel |
| 2408 | * by looking at the device 0/1 error register. Look at the signature |
| 2409 | * stored in each device's taskfile registers, to determine if |
| 2410 | * the device is ATA or ATAPI. |
| 2411 | * |
| 2412 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2413 | * PCI/etc. bus probe sem. |
| 2414 | * Obtains host_set lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | * |
| 2416 | * SIDE EFFECTS: |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2417 | * Sets ATA_FLAG_DISABLED if bus reset fails. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | */ |
| 2419 | |
| 2420 | void ata_bus_reset(struct ata_port *ap) |
| 2421 | { |
| 2422 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 2423 | unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS; |
| 2424 | u8 err; |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 2425 | unsigned int dev0, dev1 = 0, devmask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | |
| 2427 | DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no); |
| 2428 | |
| 2429 | /* determine if device 0/1 are present */ |
| 2430 | if (ap->flags & ATA_FLAG_SATA_RESET) |
| 2431 | dev0 = 1; |
| 2432 | else { |
| 2433 | dev0 = ata_devchk(ap, 0); |
| 2434 | if (slave_possible) |
| 2435 | dev1 = ata_devchk(ap, 1); |
| 2436 | } |
| 2437 | |
| 2438 | if (dev0) |
| 2439 | devmask |= (1 << 0); |
| 2440 | if (dev1) |
| 2441 | devmask |= (1 << 1); |
| 2442 | |
| 2443 | /* select device 0 again */ |
| 2444 | ap->ops->dev_select(ap, 0); |
| 2445 | |
| 2446 | /* issue bus reset */ |
| 2447 | if (ap->flags & ATA_FLAG_SRST) |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 2448 | if (ata_bus_softreset(ap, devmask)) |
| 2449 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | |
| 2451 | /* |
| 2452 | * determine by signature whether we have ATA or ATAPI devices |
| 2453 | */ |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2454 | ap->device[0].class = ata_dev_try_classify(ap, 0, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | if ((slave_possible) && (err != 0x81)) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2456 | ap->device[1].class = ata_dev_try_classify(ap, 1, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | |
| 2458 | /* re-enable interrupts */ |
| 2459 | if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */ |
| 2460 | ata_irq_on(ap); |
| 2461 | |
| 2462 | /* is double-select really necessary? */ |
| 2463 | if (ap->device[1].class != ATA_DEV_NONE) |
| 2464 | ap->ops->dev_select(ap, 1); |
| 2465 | if (ap->device[0].class != ATA_DEV_NONE) |
| 2466 | ap->ops->dev_select(ap, 0); |
| 2467 | |
| 2468 | /* if no devices were detected, disable this port */ |
| 2469 | if ((ap->device[0].class == ATA_DEV_NONE) && |
| 2470 | (ap->device[1].class == ATA_DEV_NONE)) |
| 2471 | goto err_out; |
| 2472 | |
| 2473 | if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) { |
| 2474 | /* set up device control for ATA_FLAG_SATA_RESET */ |
| 2475 | if (ap->flags & ATA_FLAG_MMIO) |
| 2476 | writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr); |
| 2477 | else |
| 2478 | outb(ap->ctl, ioaddr->ctl_addr); |
| 2479 | } |
| 2480 | |
| 2481 | DPRINTK("EXIT\n"); |
| 2482 | return; |
| 2483 | |
| 2484 | err_out: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2485 | ata_port_printk(ap, KERN_ERR, "disabling port\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | ap->ops->port_disable(ap); |
| 2487 | |
| 2488 | DPRINTK("EXIT\n"); |
| 2489 | } |
| 2490 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 2491 | /** |
| 2492 | * sata_phy_debounce - debounce SATA phy status |
| 2493 | * @ap: ATA port to debounce SATA phy status for |
| 2494 | * @params: timing parameters { interval, duratinon, timeout } in msec |
| 2495 | * |
| 2496 | * Make sure SStatus of @ap reaches stable state, determined by |
| 2497 | * holding the same value where DET is not 1 for @duration polled |
| 2498 | * every @interval, before @timeout. Timeout constraints the |
| 2499 | * beginning of the stable state. Because, after hot unplugging, |
| 2500 | * DET gets stuck at 1 on some controllers, this functions waits |
| 2501 | * until timeout then returns 0 if DET is stable at 1. |
| 2502 | * |
| 2503 | * LOCKING: |
| 2504 | * Kernel thread context (may sleep) |
| 2505 | * |
| 2506 | * RETURNS: |
| 2507 | * 0 on success, -errno on failure. |
| 2508 | */ |
| 2509 | int sata_phy_debounce(struct ata_port *ap, const unsigned long *params) |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2510 | { |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 2511 | unsigned long interval_msec = params[0]; |
| 2512 | unsigned long duration = params[1] * HZ / 1000; |
| 2513 | unsigned long timeout = jiffies + params[2] * HZ / 1000; |
| 2514 | unsigned long last_jiffies; |
| 2515 | u32 last, cur; |
| 2516 | int rc; |
| 2517 | |
| 2518 | if ((rc = sata_scr_read(ap, SCR_STATUS, &cur))) |
| 2519 | return rc; |
| 2520 | cur &= 0xf; |
| 2521 | |
| 2522 | last = cur; |
| 2523 | last_jiffies = jiffies; |
| 2524 | |
| 2525 | while (1) { |
| 2526 | msleep(interval_msec); |
| 2527 | if ((rc = sata_scr_read(ap, SCR_STATUS, &cur))) |
| 2528 | return rc; |
| 2529 | cur &= 0xf; |
| 2530 | |
| 2531 | /* DET stable? */ |
| 2532 | if (cur == last) { |
| 2533 | if (cur == 1 && time_before(jiffies, timeout)) |
| 2534 | continue; |
| 2535 | if (time_after(jiffies, last_jiffies + duration)) |
| 2536 | return 0; |
| 2537 | continue; |
| 2538 | } |
| 2539 | |
| 2540 | /* unstable, start over */ |
| 2541 | last = cur; |
| 2542 | last_jiffies = jiffies; |
| 2543 | |
| 2544 | /* check timeout */ |
| 2545 | if (time_after(jiffies, timeout)) |
| 2546 | return -EBUSY; |
| 2547 | } |
| 2548 | } |
| 2549 | |
| 2550 | /** |
| 2551 | * sata_phy_resume - resume SATA phy |
| 2552 | * @ap: ATA port to resume SATA phy for |
| 2553 | * @params: timing parameters { interval, duratinon, timeout } in msec |
| 2554 | * |
| 2555 | * Resume SATA phy of @ap and debounce it. |
| 2556 | * |
| 2557 | * LOCKING: |
| 2558 | * Kernel thread context (may sleep) |
| 2559 | * |
| 2560 | * RETURNS: |
| 2561 | * 0 on success, -errno on failure. |
| 2562 | */ |
| 2563 | int sata_phy_resume(struct ata_port *ap, const unsigned long *params) |
| 2564 | { |
| 2565 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2566 | int rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2567 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2568 | if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol))) |
| 2569 | return rc; |
| 2570 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2571 | scontrol = (scontrol & 0x0f0) | 0x300; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2572 | |
| 2573 | if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol))) |
| 2574 | return rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2575 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 2576 | /* Some PHYs react badly if SStatus is pounded immediately |
| 2577 | * after resuming. Delay 200ms before debouncing. |
| 2578 | */ |
| 2579 | msleep(200); |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2580 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 2581 | return sata_phy_debounce(ap, params); |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2582 | } |
| 2583 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2584 | static void ata_wait_spinup(struct ata_port *ap) |
| 2585 | { |
| 2586 | struct ata_eh_context *ehc = &ap->eh_context; |
| 2587 | unsigned long end, secs; |
| 2588 | int rc; |
| 2589 | |
| 2590 | /* first, debounce phy if SATA */ |
| 2591 | if (ap->cbl == ATA_CBL_SATA) { |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2592 | rc = sata_phy_debounce(ap, sata_deb_timing_hotplug); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2593 | |
| 2594 | /* if debounced successfully and offline, no need to wait */ |
| 2595 | if ((rc == 0 || rc == -EOPNOTSUPP) && ata_port_offline(ap)) |
| 2596 | return; |
| 2597 | } |
| 2598 | |
| 2599 | /* okay, let's give the drive time to spin up */ |
| 2600 | end = ehc->i.hotplug_timestamp + ATA_SPINUP_WAIT * HZ / 1000; |
| 2601 | secs = ((end - jiffies) + HZ - 1) / HZ; |
| 2602 | |
| 2603 | if (time_after(jiffies, end)) |
| 2604 | return; |
| 2605 | |
| 2606 | if (secs > 5) |
| 2607 | ata_port_printk(ap, KERN_INFO, "waiting for device to spin up " |
| 2608 | "(%lu secs)\n", secs); |
| 2609 | |
| 2610 | schedule_timeout_uninterruptible(end - jiffies); |
| 2611 | } |
| 2612 | |
| 2613 | /** |
| 2614 | * ata_std_prereset - prepare for reset |
| 2615 | * @ap: ATA port to be reset |
| 2616 | * |
| 2617 | * @ap is about to be reset. Initialize it. |
| 2618 | * |
| 2619 | * LOCKING: |
| 2620 | * Kernel thread context (may sleep) |
| 2621 | * |
| 2622 | * RETURNS: |
| 2623 | * 0 on success, -errno otherwise. |
| 2624 | */ |
| 2625 | int ata_std_prereset(struct ata_port *ap) |
| 2626 | { |
| 2627 | struct ata_eh_context *ehc = &ap->eh_context; |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2628 | const unsigned long *timing = sata_ehc_deb_timing(ehc); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2629 | int rc; |
| 2630 | |
Tejun Heo | 2832430 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2631 | /* handle link resume & hotplug spinup */ |
| 2632 | if ((ehc->i.flags & ATA_EHI_RESUME_LINK) && |
| 2633 | (ap->flags & ATA_FLAG_HRST_TO_RESUME)) |
| 2634 | ehc->i.action |= ATA_EH_HARDRESET; |
| 2635 | |
| 2636 | if ((ehc->i.flags & ATA_EHI_HOTPLUGGED) && |
| 2637 | (ap->flags & ATA_FLAG_SKIP_D2H_BSY)) |
| 2638 | ata_wait_spinup(ap); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2639 | |
| 2640 | /* if we're about to do hardreset, nothing more to do */ |
| 2641 | if (ehc->i.action & ATA_EH_HARDRESET) |
| 2642 | return 0; |
| 2643 | |
| 2644 | /* if SATA, resume phy */ |
| 2645 | if (ap->cbl == ATA_CBL_SATA) { |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2646 | rc = sata_phy_resume(ap, timing); |
| 2647 | if (rc && rc != -EOPNOTSUPP) { |
| 2648 | /* phy resume failed */ |
| 2649 | ata_port_printk(ap, KERN_WARNING, "failed to resume " |
| 2650 | "link for reset (errno=%d)\n", rc); |
| 2651 | return rc; |
| 2652 | } |
| 2653 | } |
| 2654 | |
| 2655 | /* Wait for !BSY if the controller can wait for the first D2H |
| 2656 | * Reg FIS and we don't know that no device is attached. |
| 2657 | */ |
| 2658 | if (!(ap->flags & ATA_FLAG_SKIP_D2H_BSY) && !ata_port_offline(ap)) |
| 2659 | ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT); |
| 2660 | |
| 2661 | return 0; |
| 2662 | } |
| 2663 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2664 | /** |
| 2665 | * ata_std_softreset - reset host port via ATA SRST |
| 2666 | * @ap: port to reset |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2667 | * @classes: resulting classes of attached devices |
| 2668 | * |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2669 | * Reset host port using ATA SRST. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2670 | * |
| 2671 | * LOCKING: |
| 2672 | * Kernel thread context (may sleep) |
| 2673 | * |
| 2674 | * RETURNS: |
| 2675 | * 0 on success, -errno otherwise. |
| 2676 | */ |
Tejun Heo | 2bf2cb2 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2677 | int ata_std_softreset(struct ata_port *ap, unsigned int *classes) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2678 | { |
| 2679 | unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS; |
| 2680 | unsigned int devmask = 0, err_mask; |
| 2681 | u8 err; |
| 2682 | |
| 2683 | DPRINTK("ENTER\n"); |
| 2684 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2685 | if (ata_port_offline(ap)) { |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2686 | classes[0] = ATA_DEV_NONE; |
| 2687 | goto out; |
| 2688 | } |
| 2689 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2690 | /* determine if device 0/1 are present */ |
| 2691 | if (ata_devchk(ap, 0)) |
| 2692 | devmask |= (1 << 0); |
| 2693 | if (slave_possible && ata_devchk(ap, 1)) |
| 2694 | devmask |= (1 << 1); |
| 2695 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2696 | /* select device 0 again */ |
| 2697 | ap->ops->dev_select(ap, 0); |
| 2698 | |
| 2699 | /* issue bus reset */ |
| 2700 | DPRINTK("about to softreset, devmask=%x\n", devmask); |
| 2701 | err_mask = ata_bus_softreset(ap, devmask); |
| 2702 | if (err_mask) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2703 | ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n", |
| 2704 | err_mask); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2705 | return -EIO; |
| 2706 | } |
| 2707 | |
| 2708 | /* determine by signature whether we have ATA or ATAPI devices */ |
| 2709 | classes[0] = ata_dev_try_classify(ap, 0, &err); |
| 2710 | if (slave_possible && err != 0x81) |
| 2711 | classes[1] = ata_dev_try_classify(ap, 1, &err); |
| 2712 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2713 | out: |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2714 | DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]); |
| 2715 | return 0; |
| 2716 | } |
| 2717 | |
| 2718 | /** |
| 2719 | * sata_std_hardreset - reset host port via SATA phy reset |
| 2720 | * @ap: port to reset |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2721 | * @class: resulting class of attached device |
| 2722 | * |
| 2723 | * SATA phy-reset host port using DET bits of SControl register. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2724 | * |
| 2725 | * LOCKING: |
| 2726 | * Kernel thread context (may sleep) |
| 2727 | * |
| 2728 | * RETURNS: |
| 2729 | * 0 on success, -errno otherwise. |
| 2730 | */ |
Tejun Heo | 2bf2cb2 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2731 | int sata_std_hardreset(struct ata_port *ap, unsigned int *class) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2732 | { |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2733 | struct ata_eh_context *ehc = &ap->eh_context; |
| 2734 | const unsigned long *timing = sata_ehc_deb_timing(ehc); |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2735 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2736 | int rc; |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2737 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2738 | DPRINTK("ENTER\n"); |
| 2739 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2740 | if (sata_set_spd_needed(ap)) { |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2741 | /* SATA spec says nothing about how to reconfigure |
| 2742 | * spd. To be on the safe side, turn off phy during |
| 2743 | * reconfiguration. This works for at least ICH7 AHCI |
| 2744 | * and Sil3124. |
| 2745 | */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2746 | if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol))) |
| 2747 | return rc; |
| 2748 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2749 | scontrol = (scontrol & 0x0f0) | 0x302; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2750 | |
| 2751 | if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol))) |
| 2752 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2753 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2754 | sata_set_spd(ap); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2755 | } |
| 2756 | |
| 2757 | /* issue phy wake/reset */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2758 | if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol))) |
| 2759 | return rc; |
| 2760 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2761 | scontrol = (scontrol & 0x0f0) | 0x301; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2762 | |
| 2763 | if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol))) |
| 2764 | return rc; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2765 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2766 | /* Couldn't find anything in SATA I/II specs, but AHCI-1.1 |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2767 | * 10.4.2 says at least 1 ms. |
| 2768 | */ |
| 2769 | msleep(1); |
| 2770 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2771 | /* bring phy back */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2772 | sata_phy_resume(ap, timing); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2773 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2774 | /* TODO: phy layer with polling, timeouts, etc. */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2775 | if (ata_port_offline(ap)) { |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2776 | *class = ATA_DEV_NONE; |
| 2777 | DPRINTK("EXIT, link offline\n"); |
| 2778 | return 0; |
| 2779 | } |
| 2780 | |
| 2781 | if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2782 | ata_port_printk(ap, KERN_ERR, |
| 2783 | "COMRESET failed (device not ready)\n"); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2784 | return -EIO; |
| 2785 | } |
| 2786 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2787 | ap->ops->dev_select(ap, 0); /* probably unnecessary */ |
| 2788 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2789 | *class = ata_dev_try_classify(ap, 0, NULL); |
| 2790 | |
| 2791 | DPRINTK("EXIT, class=%u\n", *class); |
| 2792 | return 0; |
| 2793 | } |
| 2794 | |
| 2795 | /** |
| 2796 | * ata_std_postreset - standard postreset callback |
| 2797 | * @ap: the target ata_port |
| 2798 | * @classes: classes of attached devices |
| 2799 | * |
| 2800 | * This function is invoked after a successful reset. Note that |
| 2801 | * the device might have been reset more than once using |
| 2802 | * different reset methods before postreset is invoked. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2803 | * |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2804 | * LOCKING: |
| 2805 | * Kernel thread context (may sleep) |
| 2806 | */ |
| 2807 | void ata_std_postreset(struct ata_port *ap, unsigned int *classes) |
| 2808 | { |
Tejun Heo | dc2b351 | 2006-05-15 20:58:00 +0900 | [diff] [blame] | 2809 | u32 serror; |
| 2810 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2811 | DPRINTK("ENTER\n"); |
| 2812 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2813 | /* print link status */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2814 | sata_print_link_status(ap); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2815 | |
Tejun Heo | dc2b351 | 2006-05-15 20:58:00 +0900 | [diff] [blame] | 2816 | /* clear SError */ |
| 2817 | if (sata_scr_read(ap, SCR_ERROR, &serror) == 0) |
| 2818 | sata_scr_write(ap, SCR_ERROR, serror); |
| 2819 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2820 | /* re-enable interrupts */ |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 2821 | if (!ap->ops->error_handler) { |
| 2822 | /* FIXME: hack. create a hook instead */ |
| 2823 | if (ap->ioaddr.ctl_addr) |
| 2824 | ata_irq_on(ap); |
| 2825 | } |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2826 | |
| 2827 | /* is double-select really necessary? */ |
| 2828 | if (classes[0] != ATA_DEV_NONE) |
| 2829 | ap->ops->dev_select(ap, 1); |
| 2830 | if (classes[1] != ATA_DEV_NONE) |
| 2831 | ap->ops->dev_select(ap, 0); |
| 2832 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2833 | /* bail out if no device is present */ |
| 2834 | if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) { |
| 2835 | DPRINTK("EXIT, no device\n"); |
| 2836 | return; |
| 2837 | } |
| 2838 | |
| 2839 | /* set up device control */ |
| 2840 | if (ap->ioaddr.ctl_addr) { |
| 2841 | if (ap->flags & ATA_FLAG_MMIO) |
| 2842 | writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr); |
| 2843 | else |
| 2844 | outb(ap->ctl, ap->ioaddr.ctl_addr); |
| 2845 | } |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2846 | |
| 2847 | DPRINTK("EXIT\n"); |
| 2848 | } |
| 2849 | |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2850 | /** |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2851 | * ata_dev_same_device - Determine whether new ID matches configured device |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2852 | * @dev: device to compare against |
| 2853 | * @new_class: class of the new device |
| 2854 | * @new_id: IDENTIFY page of the new device |
| 2855 | * |
| 2856 | * Compare @new_class and @new_id against @dev and determine |
| 2857 | * whether @dev is the device indicated by @new_class and |
| 2858 | * @new_id. |
| 2859 | * |
| 2860 | * LOCKING: |
| 2861 | * None. |
| 2862 | * |
| 2863 | * RETURNS: |
| 2864 | * 1 if @dev matches @new_class and @new_id, 0 otherwise. |
| 2865 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2866 | static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class, |
| 2867 | const u16 *new_id) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2868 | { |
| 2869 | const u16 *old_id = dev->id; |
| 2870 | unsigned char model[2][41], serial[2][21]; |
| 2871 | u64 new_n_sectors; |
| 2872 | |
| 2873 | if (dev->class != new_class) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2874 | ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n", |
| 2875 | dev->class, new_class); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2876 | return 0; |
| 2877 | } |
| 2878 | |
| 2879 | ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0])); |
| 2880 | ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1])); |
| 2881 | ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0])); |
| 2882 | ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1])); |
| 2883 | new_n_sectors = ata_id_n_sectors(new_id); |
| 2884 | |
| 2885 | if (strcmp(model[0], model[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2886 | ata_dev_printk(dev, KERN_INFO, "model number mismatch " |
| 2887 | "'%s' != '%s'\n", model[0], model[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2888 | return 0; |
| 2889 | } |
| 2890 | |
| 2891 | if (strcmp(serial[0], serial[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2892 | ata_dev_printk(dev, KERN_INFO, "serial number mismatch " |
| 2893 | "'%s' != '%s'\n", serial[0], serial[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2894 | return 0; |
| 2895 | } |
| 2896 | |
| 2897 | if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2898 | ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch " |
| 2899 | "%llu != %llu\n", |
| 2900 | (unsigned long long)dev->n_sectors, |
| 2901 | (unsigned long long)new_n_sectors); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2902 | return 0; |
| 2903 | } |
| 2904 | |
| 2905 | return 1; |
| 2906 | } |
| 2907 | |
| 2908 | /** |
| 2909 | * ata_dev_revalidate - Revalidate ATA device |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2910 | * @dev: device to revalidate |
| 2911 | * @post_reset: is this revalidation after reset? |
| 2912 | * |
| 2913 | * Re-read IDENTIFY page and make sure @dev is still attached to |
| 2914 | * the port. |
| 2915 | * |
| 2916 | * LOCKING: |
| 2917 | * Kernel thread context (may sleep) |
| 2918 | * |
| 2919 | * RETURNS: |
| 2920 | * 0 on success, negative errno otherwise |
| 2921 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2922 | int ata_dev_revalidate(struct ata_device *dev, int post_reset) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2923 | { |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2924 | unsigned int class = dev->class; |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2925 | u16 *id = (void *)dev->ap->sector_buf; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2926 | int rc; |
| 2927 | |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2928 | if (!ata_dev_enabled(dev)) { |
| 2929 | rc = -ENODEV; |
| 2930 | goto fail; |
| 2931 | } |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2932 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2933 | /* read ID data */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2934 | rc = ata_dev_read_id(dev, &class, post_reset, id); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2935 | if (rc) |
| 2936 | goto fail; |
| 2937 | |
| 2938 | /* is the device still there? */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2939 | if (!ata_dev_same_device(dev, class, id)) { |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2940 | rc = -ENODEV; |
| 2941 | goto fail; |
| 2942 | } |
| 2943 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2944 | memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2945 | |
| 2946 | /* configure device according to the new ID */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2947 | rc = ata_dev_configure(dev, 0); |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2948 | if (rc == 0) |
| 2949 | return 0; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2950 | |
| 2951 | fail: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2952 | ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2953 | return rc; |
| 2954 | } |
| 2955 | |
Arjan van de Ven | 98ac62d | 2005-11-28 10:06:23 +0100 | [diff] [blame] | 2956 | static const char * const ata_dma_blacklist [] = { |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2957 | "WDC AC11000H", NULL, |
| 2958 | "WDC AC22100H", NULL, |
| 2959 | "WDC AC32500H", NULL, |
| 2960 | "WDC AC33100H", NULL, |
| 2961 | "WDC AC31600H", NULL, |
| 2962 | "WDC AC32100H", "24.09P07", |
| 2963 | "WDC AC23200L", "21.10N21", |
| 2964 | "Compaq CRD-8241B", NULL, |
| 2965 | "CRD-8400B", NULL, |
| 2966 | "CRD-8480B", NULL, |
| 2967 | "CRD-8482B", NULL, |
| 2968 | "CRD-84", NULL, |
| 2969 | "SanDisk SDP3B", NULL, |
| 2970 | "SanDisk SDP3B-64", NULL, |
| 2971 | "SANYO CD-ROM CRD", NULL, |
| 2972 | "HITACHI CDR-8", NULL, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2973 | "HITACHI CDR-8335", NULL, |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2974 | "HITACHI CDR-8435", NULL, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2975 | "Toshiba CD-ROM XM-6202B", NULL, |
| 2976 | "TOSHIBA CD-ROM XM-1702BC", NULL, |
| 2977 | "CD-532E-A", NULL, |
| 2978 | "E-IDE CD-ROM CR-840", NULL, |
| 2979 | "CD-ROM Drive/F5A", NULL, |
| 2980 | "WPI CDD-820", NULL, |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2981 | "SAMSUNG CD-ROM SC-148C", NULL, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2982 | "SAMSUNG CD-ROM SC", NULL, |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2983 | "SanDisk SDP3B-64", NULL, |
| 2984 | "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL, |
| 2985 | "_NEC DV5800A", NULL, |
| 2986 | "SAMSUNG CD-ROM SN-124", "N001" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | }; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2988 | |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2989 | static int ata_strim(char *s, size_t len) |
| 2990 | { |
| 2991 | len = strnlen(s, len); |
| 2992 | |
| 2993 | /* ATAPI specifies that empty space is blank-filled; remove blanks */ |
| 2994 | while ((len > 0) && (s[len - 1] == ' ')) { |
| 2995 | len--; |
| 2996 | s[len] = 0; |
| 2997 | } |
| 2998 | return len; |
| 2999 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 3001 | static int ata_dma_blacklisted(const struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | { |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 3003 | unsigned char model_num[40]; |
| 3004 | unsigned char model_rev[16]; |
| 3005 | unsigned int nlen, rlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | int i; |
| 3007 | |
Albert Lee | 3a77827 | 2006-06-22 13:00:25 +0800 | [diff] [blame] | 3008 | /* We don't support polling DMA. |
| 3009 | * DMA blacklist those ATAPI devices with CDB-intr (and use PIO) |
| 3010 | * if the LLDD handles only interrupts in the HSM_ST_LAST state. |
| 3011 | */ |
| 3012 | if ((dev->ap->flags & ATA_FLAG_PIO_POLLING) && |
| 3013 | (dev->flags & ATA_DFLAG_CDB_INTR)) |
| 3014 | return 1; |
| 3015 | |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 3016 | ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS, |
| 3017 | sizeof(model_num)); |
| 3018 | ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS, |
| 3019 | sizeof(model_rev)); |
| 3020 | nlen = ata_strim(model_num, sizeof(model_num)); |
| 3021 | rlen = ata_strim(model_rev, sizeof(model_rev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3022 | |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 3023 | for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) { |
| 3024 | if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) { |
| 3025 | if (ata_dma_blacklist[i+1] == NULL) |
| 3026 | return 1; |
| 3027 | if (!strncmp(ata_dma_blacklist[i], model_rev, rlen)) |
| 3028 | return 1; |
| 3029 | } |
| 3030 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | return 0; |
| 3032 | } |
| 3033 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3034 | /** |
| 3035 | * ata_dev_xfermask - Compute supported xfermask of the given device |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3036 | * @dev: Device to compute xfermask for |
| 3037 | * |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3038 | * Compute supported xfermask of @dev and store it in |
| 3039 | * dev->*_mask. This function is responsible for applying all |
| 3040 | * known limits including host controller limits, device |
| 3041 | * blacklist, etc... |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3042 | * |
Tejun Heo | 600511e | 2006-03-25 11:14:07 +0900 | [diff] [blame] | 3043 | * FIXME: The current implementation limits all transfer modes to |
| 3044 | * the fastest of the lowested device on the port. This is not |
Tejun Heo | 05c8e0a | 2006-03-25 14:28:57 +0900 | [diff] [blame] | 3045 | * required on most controllers. |
Tejun Heo | 600511e | 2006-03-25 11:14:07 +0900 | [diff] [blame] | 3046 | * |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3047 | * LOCKING: |
| 3048 | * None. |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3049 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3050 | static void ata_dev_xfermask(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3052 | struct ata_port *ap = dev->ap; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3053 | struct ata_host_set *hs = ap->host_set; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3054 | unsigned long xfer_mask; |
| 3055 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3057 | xfer_mask = ata_pack_xfermask(ap->pio_mask, |
| 3058 | ap->mwdma_mask, ap->udma_mask); |
| 3059 | |
| 3060 | /* Apply cable rule here. Don't apply it early because when |
| 3061 | * we handle hot plug the cable type can itself change. |
| 3062 | */ |
| 3063 | if (ap->cbl == ATA_CBL_PATA40) |
| 3064 | xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3065 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3066 | /* FIXME: Use port-wide xfermask for now */ |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3067 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 3068 | struct ata_device *d = &ap->device[i]; |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3069 | |
| 3070 | if (ata_dev_absent(d)) |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3071 | continue; |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3072 | |
| 3073 | if (ata_dev_disabled(d)) { |
| 3074 | /* to avoid violating device selection timing */ |
| 3075 | xfer_mask &= ata_pack_xfermask(d->pio_mask, |
| 3076 | UINT_MAX, UINT_MAX); |
| 3077 | continue; |
| 3078 | } |
| 3079 | |
| 3080 | xfer_mask &= ata_pack_xfermask(d->pio_mask, |
| 3081 | d->mwdma_mask, d->udma_mask); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3082 | xfer_mask &= ata_id_xfermask(d->id); |
| 3083 | if (ata_dma_blacklisted(d)) |
| 3084 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | } |
| 3086 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3087 | if (ata_dma_blacklisted(dev)) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3088 | ata_dev_printk(dev, KERN_WARNING, |
| 3089 | "device is on DMA blacklist, disabling DMA\n"); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3090 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3091 | if (hs->flags & ATA_HOST_SIMPLEX) { |
| 3092 | if (hs->simplex_claimed) |
| 3093 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
| 3094 | } |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3095 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3096 | if (ap->ops->mode_filter) |
| 3097 | xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask); |
| 3098 | |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3099 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, |
| 3100 | &dev->mwdma_mask, &dev->udma_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3101 | } |
| 3102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3103 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | * @dev: Device to which command will be sent |
| 3106 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3107 | * Issue SET FEATURES - XFER MODE command to device @dev |
| 3108 | * on port @ap. |
| 3109 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3111 | * PCI/etc. bus probe sem. |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3112 | * |
| 3113 | * RETURNS: |
| 3114 | * 0 on success, AC_ERR_* mask otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3115 | */ |
| 3116 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3117 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3118 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 3119 | struct ata_taskfile tf; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3120 | unsigned int err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | |
| 3122 | /* set up set-features taskfile */ |
| 3123 | DPRINTK("set features - xfer mode\n"); |
| 3124 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3125 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 3126 | tf.command = ATA_CMD_SET_FEATURES; |
| 3127 | tf.feature = SETFEATURES_XFER; |
| 3128 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 3129 | tf.protocol = ATA_PROT_NODATA; |
| 3130 | tf.nsect = dev->xfer_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3132 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3133 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3134 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 3135 | return err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | } |
| 3137 | |
| 3138 | /** |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3139 | * ata_dev_init_params - Issue INIT DEV PARAMS command |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3140 | * @dev: Device to which command will be sent |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 3141 | * @heads: Number of heads (taskfile parameter) |
| 3142 | * @sectors: Number of sectors (taskfile parameter) |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3143 | * |
| 3144 | * LOCKING: |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 3145 | * Kernel thread context (may sleep) |
| 3146 | * |
| 3147 | * RETURNS: |
| 3148 | * 0 on success, AC_ERR_* mask otherwise. |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3149 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3150 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 3151 | u16 heads, u16 sectors) |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3152 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 3153 | struct ata_taskfile tf; |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 3154 | unsigned int err_mask; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3155 | |
| 3156 | /* Number of sectors per track 1-255. Number of heads 1-16 */ |
| 3157 | if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16) |
Albert Lee | 00b6f5e | 2006-03-27 16:39:18 +0800 | [diff] [blame] | 3158 | return AC_ERR_INVALID; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3159 | |
| 3160 | /* set up init dev params taskfile */ |
| 3161 | DPRINTK("init dev params \n"); |
| 3162 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3163 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 3164 | tf.command = ATA_CMD_INIT_DEV_PARAMS; |
| 3165 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 3166 | tf.protocol = ATA_PROT_NODATA; |
| 3167 | tf.nsect = sectors; |
| 3168 | tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */ |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3169 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3170 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0); |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3171 | |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 3172 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 3173 | return err_mask; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3174 | } |
| 3175 | |
| 3176 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3177 | * ata_sg_clean - Unmap DMA memory associated with command |
| 3178 | * @qc: Command containing DMA memory to be released |
| 3179 | * |
| 3180 | * Unmap all mapped DMA memory associated with this command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | * |
| 3182 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3183 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3184 | */ |
| 3185 | |
| 3186 | static void ata_sg_clean(struct ata_queued_cmd *qc) |
| 3187 | { |
| 3188 | struct ata_port *ap = qc->ap; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3189 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | int dir = qc->dma_dir; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3191 | void *pad_buf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3192 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3193 | WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP)); |
| 3194 | WARN_ON(sg == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3195 | |
| 3196 | if (qc->flags & ATA_QCFLAG_SINGLE) |
Jeff Garzik | f131883 | 2006-02-20 16:55:56 -0500 | [diff] [blame] | 3197 | WARN_ON(qc->n_elem > 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 3199 | VPRINTK("unmapping %u sg elements\n", qc->n_elem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3200 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3201 | /* if we padded the buffer out to 32-bit bound, and data |
| 3202 | * xfer direction is from-device, we must copy from the |
| 3203 | * pad buffer back into the supplied buffer |
| 3204 | */ |
| 3205 | if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE)) |
| 3206 | pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ); |
| 3207 | |
| 3208 | if (qc->flags & ATA_QCFLAG_SG) { |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3209 | if (qc->n_elem) |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3210 | dma_unmap_sg(ap->dev, sg, qc->n_elem, dir); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3211 | /* restore last sg */ |
| 3212 | sg[qc->orig_n_elem - 1].length += qc->pad_len; |
| 3213 | if (pad_buf) { |
| 3214 | struct scatterlist *psg = &qc->pad_sgent; |
| 3215 | void *addr = kmap_atomic(psg->page, KM_IRQ0); |
| 3216 | memcpy(addr + psg->offset, pad_buf, qc->pad_len); |
Mark Lord | dfa1598 | 2005-12-12 23:19:28 -0500 | [diff] [blame] | 3217 | kunmap_atomic(addr, KM_IRQ0); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3218 | } |
| 3219 | } else { |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3220 | if (qc->n_elem) |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3221 | dma_unmap_single(ap->dev, |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3222 | sg_dma_address(&sg[0]), sg_dma_len(&sg[0]), |
| 3223 | dir); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3224 | /* restore sg */ |
| 3225 | sg->length += qc->pad_len; |
| 3226 | if (pad_buf) |
| 3227 | memcpy(qc->buf_virt + sg->length - qc->pad_len, |
| 3228 | pad_buf, qc->pad_len); |
| 3229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | |
| 3231 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3232 | qc->__sg = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3233 | } |
| 3234 | |
| 3235 | /** |
| 3236 | * ata_fill_sg - Fill PCI IDE PRD table |
| 3237 | * @qc: Metadata associated with taskfile to be transferred |
| 3238 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3239 | * Fill PCI IDE PRD (scatter-gather) table with segments |
| 3240 | * associated with the current disk command. |
| 3241 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3242 | * LOCKING: |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3243 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | * |
| 3245 | */ |
| 3246 | static void ata_fill_sg(struct ata_queued_cmd *qc) |
| 3247 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3248 | struct ata_port *ap = qc->ap; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3249 | struct scatterlist *sg; |
| 3250 | unsigned int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3251 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3252 | WARN_ON(qc->__sg == NULL); |
Jeff Garzik | f131883 | 2006-02-20 16:55:56 -0500 | [diff] [blame] | 3253 | WARN_ON(qc->n_elem == 0 && qc->pad_len == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3254 | |
| 3255 | idx = 0; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3256 | ata_for_each_sg(sg, qc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3257 | u32 addr, offset; |
| 3258 | u32 sg_len, len; |
| 3259 | |
| 3260 | /* determine if physical DMA addr spans 64K boundary. |
| 3261 | * Note h/w doesn't support 64-bit, so we unconditionally |
| 3262 | * truncate dma_addr_t to u32. |
| 3263 | */ |
| 3264 | addr = (u32) sg_dma_address(sg); |
| 3265 | sg_len = sg_dma_len(sg); |
| 3266 | |
| 3267 | while (sg_len) { |
| 3268 | offset = addr & 0xffff; |
| 3269 | len = sg_len; |
| 3270 | if ((offset + sg_len) > 0x10000) |
| 3271 | len = 0x10000 - offset; |
| 3272 | |
| 3273 | ap->prd[idx].addr = cpu_to_le32(addr); |
| 3274 | ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff); |
| 3275 | VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len); |
| 3276 | |
| 3277 | idx++; |
| 3278 | sg_len -= len; |
| 3279 | addr += len; |
| 3280 | } |
| 3281 | } |
| 3282 | |
| 3283 | if (idx) |
| 3284 | ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT); |
| 3285 | } |
| 3286 | /** |
| 3287 | * ata_check_atapi_dma - Check whether ATAPI DMA can be supported |
| 3288 | * @qc: Metadata associated with taskfile to check |
| 3289 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3290 | * Allow low-level driver to filter ATA PACKET commands, returning |
| 3291 | * a status indicating whether or not it is OK to use DMA for the |
| 3292 | * supplied PACKET command. |
| 3293 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3295 | * spin_lock_irqsave(host_set lock) |
| 3296 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | * RETURNS: 0 when ATAPI DMA can be used |
| 3298 | * nonzero otherwise |
| 3299 | */ |
| 3300 | int ata_check_atapi_dma(struct ata_queued_cmd *qc) |
| 3301 | { |
| 3302 | struct ata_port *ap = qc->ap; |
| 3303 | int rc = 0; /* Assume ATAPI DMA is OK by default */ |
| 3304 | |
| 3305 | if (ap->ops->check_atapi_dma) |
| 3306 | rc = ap->ops->check_atapi_dma(qc); |
| 3307 | |
| 3308 | return rc; |
| 3309 | } |
| 3310 | /** |
| 3311 | * ata_qc_prep - Prepare taskfile for submission |
| 3312 | * @qc: Metadata associated with taskfile to be prepared |
| 3313 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3314 | * Prepare ATA taskfile for submission. |
| 3315 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3316 | * LOCKING: |
| 3317 | * spin_lock_irqsave(host_set lock) |
| 3318 | */ |
| 3319 | void ata_qc_prep(struct ata_queued_cmd *qc) |
| 3320 | { |
| 3321 | if (!(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 3322 | return; |
| 3323 | |
| 3324 | ata_fill_sg(qc); |
| 3325 | } |
| 3326 | |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 3327 | void ata_noop_qc_prep(struct ata_queued_cmd *qc) { } |
| 3328 | |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3329 | /** |
| 3330 | * ata_sg_init_one - Associate command with memory buffer |
| 3331 | * @qc: Command to be associated |
| 3332 | * @buf: Memory buffer |
| 3333 | * @buflen: Length of memory buffer, in bytes. |
| 3334 | * |
| 3335 | * Initialize the data-related elements of queued_cmd @qc |
| 3336 | * to point to a single memory buffer, @buf of byte length @buflen. |
| 3337 | * |
| 3338 | * LOCKING: |
| 3339 | * spin_lock_irqsave(host_set lock) |
| 3340 | */ |
| 3341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3342 | void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen) |
| 3343 | { |
| 3344 | struct scatterlist *sg; |
| 3345 | |
| 3346 | qc->flags |= ATA_QCFLAG_SINGLE; |
| 3347 | |
| 3348 | memset(&qc->sgent, 0, sizeof(qc->sgent)); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3349 | qc->__sg = &qc->sgent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3350 | qc->n_elem = 1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3351 | qc->orig_n_elem = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3352 | qc->buf_virt = buf; |
Brian King | 233277c | 2006-06-07 11:25:31 -0500 | [diff] [blame] | 3353 | qc->nbytes = buflen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3354 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3355 | sg = qc->__sg; |
Jeff Garzik | f0612bb | 2005-10-30 01:58:18 -0500 | [diff] [blame] | 3356 | sg_init_one(sg, buf, buflen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | } |
| 3358 | |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3359 | /** |
| 3360 | * ata_sg_init - Associate command with scatter-gather table. |
| 3361 | * @qc: Command to be associated |
| 3362 | * @sg: Scatter-gather table. |
| 3363 | * @n_elem: Number of elements in s/g table. |
| 3364 | * |
| 3365 | * Initialize the data-related elements of queued_cmd @qc |
| 3366 | * to point to a scatter-gather table @sg, containing @n_elem |
| 3367 | * elements. |
| 3368 | * |
| 3369 | * LOCKING: |
| 3370 | * spin_lock_irqsave(host_set lock) |
| 3371 | */ |
| 3372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3373 | void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg, |
| 3374 | unsigned int n_elem) |
| 3375 | { |
| 3376 | qc->flags |= ATA_QCFLAG_SG; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3377 | qc->__sg = sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3378 | qc->n_elem = n_elem; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3379 | qc->orig_n_elem = n_elem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3380 | } |
| 3381 | |
| 3382 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3383 | * ata_sg_setup_one - DMA-map the memory buffer associated with a command. |
| 3384 | * @qc: Command with memory buffer to be mapped. |
| 3385 | * |
| 3386 | * DMA-map the memory buffer associated with queued_cmd @qc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3387 | * |
| 3388 | * LOCKING: |
| 3389 | * spin_lock_irqsave(host_set lock) |
| 3390 | * |
| 3391 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3392 | * Zero on success, negative on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3393 | */ |
| 3394 | |
| 3395 | static int ata_sg_setup_one(struct ata_queued_cmd *qc) |
| 3396 | { |
| 3397 | struct ata_port *ap = qc->ap; |
| 3398 | int dir = qc->dma_dir; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3399 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3400 | dma_addr_t dma_address; |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3401 | int trim_sg = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3403 | /* we must lengthen transfers to end on a 32-bit boundary */ |
| 3404 | qc->pad_len = sg->length & 3; |
| 3405 | if (qc->pad_len) { |
| 3406 | void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ); |
| 3407 | struct scatterlist *psg = &qc->pad_sgent; |
| 3408 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3409 | WARN_ON(qc->dev->class != ATA_DEV_ATAPI); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3410 | |
| 3411 | memset(pad_buf, 0, ATA_DMA_PAD_SZ); |
| 3412 | |
| 3413 | if (qc->tf.flags & ATA_TFLAG_WRITE) |
| 3414 | memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len, |
| 3415 | qc->pad_len); |
| 3416 | |
| 3417 | sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ); |
| 3418 | sg_dma_len(psg) = ATA_DMA_PAD_SZ; |
| 3419 | /* trim sg */ |
| 3420 | sg->length -= qc->pad_len; |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3421 | if (sg->length == 0) |
| 3422 | trim_sg = 1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3423 | |
| 3424 | DPRINTK("padding done, sg->length=%u pad_len=%u\n", |
| 3425 | sg->length, qc->pad_len); |
| 3426 | } |
| 3427 | |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3428 | if (trim_sg) { |
| 3429 | qc->n_elem--; |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3430 | goto skip_map; |
| 3431 | } |
| 3432 | |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3433 | dma_address = dma_map_single(ap->dev, qc->buf_virt, |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3434 | sg->length, dir); |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3435 | if (dma_mapping_error(dma_address)) { |
| 3436 | /* restore sg */ |
| 3437 | sg->length += qc->pad_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3438 | return -1; |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3439 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3440 | |
| 3441 | sg_dma_address(sg) = dma_address; |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3442 | sg_dma_len(sg) = sg->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3443 | |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3444 | skip_map: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3445 | DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg), |
| 3446 | qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 3447 | |
| 3448 | return 0; |
| 3449 | } |
| 3450 | |
| 3451 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3452 | * ata_sg_setup - DMA-map the scatter-gather table associated with a command. |
| 3453 | * @qc: Command with scatter-gather table to be mapped. |
| 3454 | * |
| 3455 | * DMA-map the scatter-gather table associated with queued_cmd @qc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3456 | * |
| 3457 | * LOCKING: |
| 3458 | * spin_lock_irqsave(host_set lock) |
| 3459 | * |
| 3460 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3461 | * Zero on success, negative on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3462 | * |
| 3463 | */ |
| 3464 | |
| 3465 | static int ata_sg_setup(struct ata_queued_cmd *qc) |
| 3466 | { |
| 3467 | struct ata_port *ap = qc->ap; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3468 | struct scatterlist *sg = qc->__sg; |
| 3469 | struct scatterlist *lsg = &sg[qc->n_elem - 1]; |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3470 | int n_elem, pre_n_elem, dir, trim_sg = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3471 | |
| 3472 | VPRINTK("ENTER, ata%u\n", ap->id); |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3473 | WARN_ON(!(qc->flags & ATA_QCFLAG_SG)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3474 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3475 | /* we must lengthen transfers to end on a 32-bit boundary */ |
| 3476 | qc->pad_len = lsg->length & 3; |
| 3477 | if (qc->pad_len) { |
| 3478 | void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ); |
| 3479 | struct scatterlist *psg = &qc->pad_sgent; |
| 3480 | unsigned int offset; |
| 3481 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3482 | WARN_ON(qc->dev->class != ATA_DEV_ATAPI); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3483 | |
| 3484 | memset(pad_buf, 0, ATA_DMA_PAD_SZ); |
| 3485 | |
| 3486 | /* |
| 3487 | * psg->page/offset are used to copy to-be-written |
| 3488 | * data in this function or read data in ata_sg_clean. |
| 3489 | */ |
| 3490 | offset = lsg->offset + lsg->length - qc->pad_len; |
| 3491 | psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT); |
| 3492 | psg->offset = offset_in_page(offset); |
| 3493 | |
| 3494 | if (qc->tf.flags & ATA_TFLAG_WRITE) { |
| 3495 | void *addr = kmap_atomic(psg->page, KM_IRQ0); |
| 3496 | memcpy(pad_buf, addr + psg->offset, qc->pad_len); |
Mark Lord | dfa1598 | 2005-12-12 23:19:28 -0500 | [diff] [blame] | 3497 | kunmap_atomic(addr, KM_IRQ0); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3498 | } |
| 3499 | |
| 3500 | sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ); |
| 3501 | sg_dma_len(psg) = ATA_DMA_PAD_SZ; |
| 3502 | /* trim last sg */ |
| 3503 | lsg->length -= qc->pad_len; |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3504 | if (lsg->length == 0) |
| 3505 | trim_sg = 1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3506 | |
| 3507 | DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n", |
| 3508 | qc->n_elem - 1, lsg->length, qc->pad_len); |
| 3509 | } |
| 3510 | |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3511 | pre_n_elem = qc->n_elem; |
| 3512 | if (trim_sg && pre_n_elem) |
| 3513 | pre_n_elem--; |
| 3514 | |
| 3515 | if (!pre_n_elem) { |
| 3516 | n_elem = 0; |
| 3517 | goto skip_map; |
| 3518 | } |
| 3519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3520 | dir = qc->dma_dir; |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3521 | n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir); |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3522 | if (n_elem < 1) { |
| 3523 | /* restore last sg */ |
| 3524 | lsg->length += qc->pad_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3525 | return -1; |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3526 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3527 | |
| 3528 | DPRINTK("%d sg elements mapped\n", n_elem); |
| 3529 | |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3530 | skip_map: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3531 | qc->n_elem = n_elem; |
| 3532 | |
| 3533 | return 0; |
| 3534 | } |
| 3535 | |
| 3536 | /** |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 3537 | * swap_buf_le16 - swap halves of 16-bit words in place |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 3538 | * @buf: Buffer to swap |
| 3539 | * @buf_words: Number of 16-bit words in buffer. |
| 3540 | * |
| 3541 | * Swap halves of 16-bit words if needed to convert from |
| 3542 | * little-endian byte order to native cpu byte order, or |
| 3543 | * vice-versa. |
| 3544 | * |
| 3545 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 3546 | * Inherited from caller. |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 3547 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3548 | void swap_buf_le16(u16 *buf, unsigned int buf_words) |
| 3549 | { |
| 3550 | #ifdef __BIG_ENDIAN |
| 3551 | unsigned int i; |
| 3552 | |
| 3553 | for (i = 0; i < buf_words; i++) |
| 3554 | buf[i] = le16_to_cpu(buf[i]); |
| 3555 | #endif /* __BIG_ENDIAN */ |
| 3556 | } |
| 3557 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3558 | /** |
| 3559 | * ata_mmio_data_xfer - Transfer data by MMIO |
Jeff Garzik | bf717b11 | 2006-06-13 20:27:03 -0400 | [diff] [blame] | 3560 | * @adev: device for this I/O |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3561 | * @buf: data buffer |
| 3562 | * @buflen: buffer length |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 3563 | * @write_data: read/write |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3564 | * |
| 3565 | * Transfer data from/to the device data register by MMIO. |
| 3566 | * |
| 3567 | * LOCKING: |
| 3568 | * Inherited from caller. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3569 | */ |
| 3570 | |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 3571 | void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf, |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3572 | unsigned int buflen, int write_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3573 | { |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3574 | struct ata_port *ap = adev->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | unsigned int i; |
| 3576 | unsigned int words = buflen >> 1; |
| 3577 | u16 *buf16 = (u16 *) buf; |
| 3578 | void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr; |
| 3579 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3580 | /* Transfer multiple of 2 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3581 | if (write_data) { |
| 3582 | for (i = 0; i < words; i++) |
| 3583 | writew(le16_to_cpu(buf16[i]), mmio); |
| 3584 | } else { |
| 3585 | for (i = 0; i < words; i++) |
| 3586 | buf16[i] = cpu_to_le16(readw(mmio)); |
| 3587 | } |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3588 | |
| 3589 | /* Transfer trailing 1 byte, if any. */ |
| 3590 | if (unlikely(buflen & 0x01)) { |
| 3591 | u16 align_buf[1] = { 0 }; |
| 3592 | unsigned char *trailing_buf = buf + buflen - 1; |
| 3593 | |
| 3594 | if (write_data) { |
| 3595 | memcpy(align_buf, trailing_buf, 1); |
| 3596 | writew(le16_to_cpu(align_buf[0]), mmio); |
| 3597 | } else { |
| 3598 | align_buf[0] = cpu_to_le16(readw(mmio)); |
| 3599 | memcpy(trailing_buf, align_buf, 1); |
| 3600 | } |
| 3601 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3602 | } |
| 3603 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3604 | /** |
| 3605 | * ata_pio_data_xfer - Transfer data by PIO |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3606 | * @adev: device to target |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3607 | * @buf: data buffer |
| 3608 | * @buflen: buffer length |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 3609 | * @write_data: read/write |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3610 | * |
| 3611 | * Transfer data from/to the device data register by PIO. |
| 3612 | * |
| 3613 | * LOCKING: |
| 3614 | * Inherited from caller. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3615 | */ |
| 3616 | |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 3617 | void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf, |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3618 | unsigned int buflen, int write_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3619 | { |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3620 | struct ata_port *ap = adev->ap; |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3621 | unsigned int words = buflen >> 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3623 | /* Transfer multiple of 2 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | if (write_data) |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3625 | outsw(ap->ioaddr.data_addr, buf, words); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3626 | else |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3627 | insw(ap->ioaddr.data_addr, buf, words); |
| 3628 | |
| 3629 | /* Transfer trailing 1 byte, if any. */ |
| 3630 | if (unlikely(buflen & 0x01)) { |
| 3631 | u16 align_buf[1] = { 0 }; |
| 3632 | unsigned char *trailing_buf = buf + buflen - 1; |
| 3633 | |
| 3634 | if (write_data) { |
| 3635 | memcpy(align_buf, trailing_buf, 1); |
| 3636 | outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr); |
| 3637 | } else { |
| 3638 | align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr)); |
| 3639 | memcpy(trailing_buf, align_buf, 1); |
| 3640 | } |
| 3641 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3642 | } |
| 3643 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3644 | /** |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 3645 | * ata_pio_data_xfer_noirq - Transfer data by PIO |
| 3646 | * @adev: device to target |
| 3647 | * @buf: data buffer |
| 3648 | * @buflen: buffer length |
| 3649 | * @write_data: read/write |
| 3650 | * |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 3651 | * Transfer data from/to the device data register by PIO. Do the |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 3652 | * transfer with interrupts disabled. |
| 3653 | * |
| 3654 | * LOCKING: |
| 3655 | * Inherited from caller. |
| 3656 | */ |
| 3657 | |
| 3658 | void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf, |
| 3659 | unsigned int buflen, int write_data) |
| 3660 | { |
| 3661 | unsigned long flags; |
| 3662 | local_irq_save(flags); |
| 3663 | ata_pio_data_xfer(adev, buf, buflen, write_data); |
| 3664 | local_irq_restore(flags); |
| 3665 | } |
| 3666 | |
| 3667 | |
| 3668 | /** |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3669 | * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data. |
| 3670 | * @qc: Command on going |
| 3671 | * |
| 3672 | * Transfer ATA_SECT_SIZE of data from/to the ATA device. |
| 3673 | * |
| 3674 | * LOCKING: |
| 3675 | * Inherited from caller. |
| 3676 | */ |
| 3677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | static void ata_pio_sector(struct ata_queued_cmd *qc) |
| 3679 | { |
| 3680 | int do_write = (qc->tf.flags & ATA_TFLAG_WRITE); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3681 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | struct ata_port *ap = qc->ap; |
| 3683 | struct page *page; |
| 3684 | unsigned int offset; |
| 3685 | unsigned char *buf; |
| 3686 | |
| 3687 | if (qc->cursect == (qc->nsect - 1)) |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3688 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3689 | |
| 3690 | page = sg[qc->cursg].page; |
| 3691 | offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE; |
| 3692 | |
| 3693 | /* get the current page and offset */ |
| 3694 | page = nth_page(page, (offset >> PAGE_SHIFT)); |
| 3695 | offset %= PAGE_SIZE; |
| 3696 | |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3697 | DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 3698 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3699 | if (PageHighMem(page)) { |
| 3700 | unsigned long flags; |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3701 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3702 | /* FIXME: use a bounce buffer */ |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3703 | local_irq_save(flags); |
| 3704 | buf = kmap_atomic(page, KM_IRQ0); |
Albert Lee | 083958d | 2005-10-09 09:47:31 -0400 | [diff] [blame] | 3705 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3706 | /* do the actual data transfer */ |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3707 | ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3708 | |
| 3709 | kunmap_atomic(buf, KM_IRQ0); |
| 3710 | local_irq_restore(flags); |
| 3711 | } else { |
| 3712 | buf = page_address(page); |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3713 | ap->ops->data_xfer(qc->dev, buf + offset, ATA_SECT_SIZE, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3714 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3715 | |
| 3716 | qc->cursect++; |
| 3717 | qc->cursg_ofs++; |
| 3718 | |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3719 | if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3720 | qc->cursg++; |
| 3721 | qc->cursg_ofs = 0; |
| 3722 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3724 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3725 | /** |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3726 | * ata_pio_sectors - Transfer one or many 512-byte sectors. |
| 3727 | * @qc: Command on going |
| 3728 | * |
Jeff Garzik | c81e29b | 2006-05-24 01:49:12 -0400 | [diff] [blame] | 3729 | * Transfer one or many ATA_SECT_SIZE of data from/to the |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3730 | * ATA device for the DRQ request. |
| 3731 | * |
| 3732 | * LOCKING: |
| 3733 | * Inherited from caller. |
| 3734 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3735 | |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3736 | static void ata_pio_sectors(struct ata_queued_cmd *qc) |
| 3737 | { |
| 3738 | if (is_multi_taskfile(&qc->tf)) { |
| 3739 | /* READ/WRITE MULTIPLE */ |
| 3740 | unsigned int nsect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 3742 | WARN_ON(qc->dev->multi_count == 0); |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3743 | |
| 3744 | nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count); |
| 3745 | while (nsect--) |
| 3746 | ata_pio_sector(qc); |
| 3747 | } else |
| 3748 | ata_pio_sector(qc); |
| 3749 | } |
| 3750 | |
| 3751 | /** |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 3752 | * atapi_send_cdb - Write CDB bytes to hardware |
| 3753 | * @ap: Port to which ATAPI device is attached. |
| 3754 | * @qc: Taskfile currently active |
| 3755 | * |
| 3756 | * When device has indicated its readiness to accept |
| 3757 | * a CDB, this function is called. Send the CDB. |
| 3758 | * |
| 3759 | * LOCKING: |
| 3760 | * caller. |
| 3761 | */ |
| 3762 | |
| 3763 | static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc) |
| 3764 | { |
| 3765 | /* send SCSI cdb */ |
| 3766 | DPRINTK("send cdb\n"); |
Jeff Garzik | db024d5 | 2006-02-13 00:23:57 -0500 | [diff] [blame] | 3767 | WARN_ON(qc->dev->cdb_len < 12); |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 3768 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3769 | ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1); |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 3770 | ata_altstatus(ap); /* flush */ |
| 3771 | |
| 3772 | switch (qc->tf.protocol) { |
| 3773 | case ATA_PROT_ATAPI: |
| 3774 | ap->hsm_task_state = HSM_ST; |
| 3775 | break; |
| 3776 | case ATA_PROT_ATAPI_NODATA: |
| 3777 | ap->hsm_task_state = HSM_ST_LAST; |
| 3778 | break; |
| 3779 | case ATA_PROT_ATAPI_DMA: |
| 3780 | ap->hsm_task_state = HSM_ST_LAST; |
| 3781 | /* initiate bmdma */ |
| 3782 | ap->ops->bmdma_start(qc); |
| 3783 | break; |
| 3784 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3785 | } |
| 3786 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3787 | /** |
| 3788 | * __atapi_pio_bytes - Transfer data from/to the ATAPI device. |
| 3789 | * @qc: Command on going |
| 3790 | * @bytes: number of bytes |
| 3791 | * |
| 3792 | * Transfer Transfer data from/to the ATAPI device. |
| 3793 | * |
| 3794 | * LOCKING: |
| 3795 | * Inherited from caller. |
| 3796 | * |
| 3797 | */ |
| 3798 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3799 | static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes) |
| 3800 | { |
| 3801 | int do_write = (qc->tf.flags & ATA_TFLAG_WRITE); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3802 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3803 | struct ata_port *ap = qc->ap; |
| 3804 | struct page *page; |
| 3805 | unsigned char *buf; |
| 3806 | unsigned int offset, count; |
| 3807 | |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3808 | if (qc->curbytes + bytes >= qc->nbytes) |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3809 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3810 | |
| 3811 | next_sg: |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3812 | if (unlikely(qc->cursg >= qc->n_elem)) { |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 3813 | /* |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3814 | * The end of qc->sg is reached and the device expects |
| 3815 | * more data to transfer. In order not to overrun qc->sg |
| 3816 | * and fulfill length specified in the byte count register, |
| 3817 | * - for read case, discard trailing data from the device |
| 3818 | * - for write case, padding zero data to the device |
| 3819 | */ |
| 3820 | u16 pad_buf[1] = { 0 }; |
| 3821 | unsigned int words = bytes >> 1; |
| 3822 | unsigned int i; |
| 3823 | |
| 3824 | if (words) /* warning if bytes > 1 */ |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3825 | ata_dev_printk(qc->dev, KERN_WARNING, |
| 3826 | "%u bytes trailing data\n", bytes); |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3827 | |
| 3828 | for (i = 0; i < words; i++) |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3829 | ap->ops->data_xfer(qc->dev, (unsigned char*)pad_buf, 2, do_write); |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3830 | |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3831 | ap->hsm_task_state = HSM_ST_LAST; |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3832 | return; |
| 3833 | } |
| 3834 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3835 | sg = &qc->__sg[qc->cursg]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3837 | page = sg->page; |
| 3838 | offset = sg->offset + qc->cursg_ofs; |
| 3839 | |
| 3840 | /* get the current page and offset */ |
| 3841 | page = nth_page(page, (offset >> PAGE_SHIFT)); |
| 3842 | offset %= PAGE_SIZE; |
| 3843 | |
Albert Lee | 6952df0 | 2005-06-06 15:56:03 +0800 | [diff] [blame] | 3844 | /* don't overrun current sg */ |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3845 | count = min(sg->length - qc->cursg_ofs, bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3846 | |
| 3847 | /* don't cross page boundaries */ |
| 3848 | count = min(count, (unsigned int)PAGE_SIZE - offset); |
| 3849 | |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3850 | DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 3851 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3852 | if (PageHighMem(page)) { |
| 3853 | unsigned long flags; |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3854 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3855 | /* FIXME: use bounce buffer */ |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3856 | local_irq_save(flags); |
| 3857 | buf = kmap_atomic(page, KM_IRQ0); |
Albert Lee | 083958d | 2005-10-09 09:47:31 -0400 | [diff] [blame] | 3858 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3859 | /* do the actual data transfer */ |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3860 | ap->ops->data_xfer(qc->dev, buf + offset, count, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3861 | |
| 3862 | kunmap_atomic(buf, KM_IRQ0); |
| 3863 | local_irq_restore(flags); |
| 3864 | } else { |
| 3865 | buf = page_address(page); |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3866 | ap->ops->data_xfer(qc->dev, buf + offset, count, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3867 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3868 | |
| 3869 | bytes -= count; |
| 3870 | qc->curbytes += count; |
| 3871 | qc->cursg_ofs += count; |
| 3872 | |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3873 | if (qc->cursg_ofs == sg->length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3874 | qc->cursg++; |
| 3875 | qc->cursg_ofs = 0; |
| 3876 | } |
| 3877 | |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3878 | if (bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3879 | goto next_sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3880 | } |
| 3881 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3882 | /** |
| 3883 | * atapi_pio_bytes - Transfer data from/to the ATAPI device. |
| 3884 | * @qc: Command on going |
| 3885 | * |
| 3886 | * Transfer Transfer data from/to the ATAPI device. |
| 3887 | * |
| 3888 | * LOCKING: |
| 3889 | * Inherited from caller. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3890 | */ |
| 3891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3892 | static void atapi_pio_bytes(struct ata_queued_cmd *qc) |
| 3893 | { |
| 3894 | struct ata_port *ap = qc->ap; |
| 3895 | struct ata_device *dev = qc->dev; |
| 3896 | unsigned int ireason, bc_lo, bc_hi, bytes; |
| 3897 | int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0; |
| 3898 | |
Albert Lee | eec4c3f | 2006-05-18 17:51:10 +0800 | [diff] [blame] | 3899 | /* Abuse qc->result_tf for temp storage of intermediate TF |
| 3900 | * here to save some kernel stack usage. |
| 3901 | * For normal completion, qc->result_tf is not relevant. For |
| 3902 | * error, qc->result_tf is later overwritten by ata_qc_complete(). |
| 3903 | * So, the correctness of qc->result_tf is not affected. |
| 3904 | */ |
| 3905 | ap->ops->tf_read(ap, &qc->result_tf); |
| 3906 | ireason = qc->result_tf.nsect; |
| 3907 | bc_lo = qc->result_tf.lbam; |
| 3908 | bc_hi = qc->result_tf.lbah; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3909 | bytes = (bc_hi << 8) | bc_lo; |
| 3910 | |
| 3911 | /* shall be cleared to zero, indicating xfer of data */ |
| 3912 | if (ireason & (1 << 0)) |
| 3913 | goto err_out; |
| 3914 | |
| 3915 | /* make sure transfer direction matches expected */ |
| 3916 | i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0; |
| 3917 | if (do_write != i_write) |
| 3918 | goto err_out; |
| 3919 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 3920 | VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes); |
| 3921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3922 | __atapi_pio_bytes(qc, bytes); |
| 3923 | |
| 3924 | return; |
| 3925 | |
| 3926 | err_out: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3927 | ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n"); |
Tejun Heo | 11a56d2 | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 3928 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3929 | ap->hsm_task_state = HSM_ST_ERR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3930 | } |
| 3931 | |
| 3932 | /** |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3933 | * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue. |
| 3934 | * @ap: the target ata_port |
| 3935 | * @qc: qc on going |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3936 | * |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3937 | * RETURNS: |
| 3938 | * 1 if ok in workqueue, 0 otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3939 | */ |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3940 | |
| 3941 | static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3942 | { |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3943 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 3944 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3945 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3946 | if (ap->hsm_task_state == HSM_ST_FIRST) { |
| 3947 | if (qc->tf.protocol == ATA_PROT_PIO && |
| 3948 | (qc->tf.flags & ATA_TFLAG_WRITE)) |
| 3949 | return 1; |
| 3950 | |
| 3951 | if (is_atapi_taskfile(&qc->tf) && |
| 3952 | !(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
| 3953 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3954 | } |
| 3955 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3956 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | } |
| 3958 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3959 | /** |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 3960 | * ata_hsm_qc_complete - finish a qc running on standard HSM |
| 3961 | * @qc: Command to complete |
| 3962 | * @in_wq: 1 if called from workqueue, 0 otherwise |
| 3963 | * |
| 3964 | * Finish @qc which is running on standard HSM. |
| 3965 | * |
| 3966 | * LOCKING: |
| 3967 | * If @in_wq is zero, spin_lock_irqsave(host_set lock). |
| 3968 | * Otherwise, none on entry and grabs host lock. |
| 3969 | */ |
| 3970 | static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq) |
| 3971 | { |
| 3972 | struct ata_port *ap = qc->ap; |
| 3973 | unsigned long flags; |
| 3974 | |
| 3975 | if (ap->ops->error_handler) { |
| 3976 | if (in_wq) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 3977 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 3978 | |
| 3979 | /* EH might have kicked in while host_set lock |
| 3980 | * is released. |
| 3981 | */ |
| 3982 | qc = ata_qc_from_tag(ap, qc->tag); |
| 3983 | if (qc) { |
| 3984 | if (likely(!(qc->err_mask & AC_ERR_HSM))) { |
| 3985 | ata_irq_on(ap); |
| 3986 | ata_qc_complete(qc); |
| 3987 | } else |
| 3988 | ata_port_freeze(ap); |
| 3989 | } |
| 3990 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 3991 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 3992 | } else { |
| 3993 | if (likely(!(qc->err_mask & AC_ERR_HSM))) |
| 3994 | ata_qc_complete(qc); |
| 3995 | else |
| 3996 | ata_port_freeze(ap); |
| 3997 | } |
| 3998 | } else { |
| 3999 | if (in_wq) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 4000 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 4001 | ata_irq_on(ap); |
| 4002 | ata_qc_complete(qc); |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 4003 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 4004 | } else |
| 4005 | ata_qc_complete(qc); |
| 4006 | } |
Jeff Garzik | c81e29b | 2006-05-24 01:49:12 -0400 | [diff] [blame] | 4007 | |
| 4008 | ata_altstatus(ap); /* flush */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 4009 | } |
| 4010 | |
| 4011 | /** |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4012 | * ata_hsm_move - move the HSM to the next state. |
| 4013 | * @ap: the target ata_port |
| 4014 | * @qc: qc on going |
| 4015 | * @status: current device status |
| 4016 | * @in_wq: 1 if called from workqueue, 0 otherwise |
| 4017 | * |
| 4018 | * RETURNS: |
| 4019 | * 1 when poll next status needed, 0 otherwise. |
| 4020 | */ |
Tejun Heo | 9a1004d | 2006-05-31 18:27:52 +0900 | [diff] [blame] | 4021 | int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc, |
| 4022 | u8 status, int in_wq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4023 | { |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4024 | unsigned long flags = 0; |
| 4025 | int poll_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4027 | WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0); |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 4028 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4029 | /* Make sure ata_qc_issue_prot() does not throw things |
| 4030 | * like DMA polling into the workqueue. Notice that |
| 4031 | * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING). |
Albert Lee | 1c84898 | 2005-12-05 15:40:15 +0800 | [diff] [blame] | 4032 | */ |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 4033 | WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc)); |
Albert Lee | 1c84898 | 2005-12-05 15:40:15 +0800 | [diff] [blame] | 4034 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4035 | fsm_start: |
Albert Lee | 999bb6f | 2006-03-25 18:07:48 +0800 | [diff] [blame] | 4036 | DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n", |
| 4037 | ap->id, qc->tf.protocol, ap->hsm_task_state, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4038 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4039 | switch (ap->hsm_task_state) { |
| 4040 | case HSM_ST_FIRST: |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4041 | /* Send first data block or PACKET CDB */ |
| 4042 | |
| 4043 | /* If polling, we will stay in the work queue after |
| 4044 | * sending the data. Otherwise, interrupt handler |
| 4045 | * takes over after sending the data. |
| 4046 | */ |
| 4047 | poll_next = (qc->tf.flags & ATA_TFLAG_POLLING); |
| 4048 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4049 | /* check device status */ |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4050 | if (unlikely((status & ATA_DRQ) == 0)) { |
| 4051 | /* handle BSY=0, DRQ=0 as error */ |
| 4052 | if (likely(status & (ATA_ERR | ATA_DF))) |
| 4053 | /* device stops HSM for abort/error */ |
| 4054 | qc->err_mask |= AC_ERR_DEV; |
| 4055 | else |
| 4056 | /* HSM violation. Let EH handle this */ |
| 4057 | qc->err_mask |= AC_ERR_HSM; |
| 4058 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4059 | ap->hsm_task_state = HSM_ST_ERR; |
| 4060 | goto fsm_start; |
| 4061 | } |
| 4062 | |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4063 | /* Device should not ask for data transfer (DRQ=1) |
| 4064 | * when it finds something wrong. |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4065 | * We ignore DRQ here and stop the HSM by |
| 4066 | * changing hsm_task_state to HSM_ST_ERR and |
| 4067 | * let the EH abort the command or reset the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4068 | */ |
| 4069 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
| 4070 | printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n", |
| 4071 | ap->id, status); |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4072 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4073 | ap->hsm_task_state = HSM_ST_ERR; |
| 4074 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4075 | } |
| 4076 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4077 | /* Send the CDB (atapi) or the first data block (ata pio out). |
| 4078 | * During the state transition, interrupt handler shouldn't |
| 4079 | * be invoked before the data transfer is complete and |
| 4080 | * hsm_task_state is changed. Hence, the following locking. |
| 4081 | */ |
| 4082 | if (in_wq) |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 4083 | spin_lock_irqsave(ap->lock, flags); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4084 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4085 | if (qc->tf.protocol == ATA_PROT_PIO) { |
| 4086 | /* PIO data out protocol. |
| 4087 | * send first data block. |
| 4088 | */ |
| 4089 | |
| 4090 | /* ata_pio_sectors() might change the state |
| 4091 | * to HSM_ST_LAST. so, the state is changed here |
| 4092 | * before ata_pio_sectors(). |
| 4093 | */ |
| 4094 | ap->hsm_task_state = HSM_ST; |
| 4095 | ata_pio_sectors(qc); |
| 4096 | ata_altstatus(ap); /* flush */ |
| 4097 | } else |
| 4098 | /* send CDB */ |
| 4099 | atapi_send_cdb(ap, qc); |
| 4100 | |
| 4101 | if (in_wq) |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 4102 | spin_unlock_irqrestore(ap->lock, flags); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4103 | |
| 4104 | /* if polling, ata_pio_task() handles the rest. |
| 4105 | * otherwise, interrupt handler takes over from here. |
| 4106 | */ |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4107 | break; |
| 4108 | |
| 4109 | case HSM_ST: |
| 4110 | /* complete command or read/write the data register */ |
| 4111 | if (qc->tf.protocol == ATA_PROT_ATAPI) { |
| 4112 | /* ATAPI PIO protocol */ |
| 4113 | if ((status & ATA_DRQ) == 0) { |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4114 | /* No more data to transfer or device error. |
| 4115 | * Device error will be tagged in HSM_ST_LAST. |
| 4116 | */ |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4117 | ap->hsm_task_state = HSM_ST_LAST; |
| 4118 | goto fsm_start; |
| 4119 | } |
| 4120 | |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4121 | /* Device should not ask for data transfer (DRQ=1) |
| 4122 | * when it finds something wrong. |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4123 | * We ignore DRQ here and stop the HSM by |
| 4124 | * changing hsm_task_state to HSM_ST_ERR and |
| 4125 | * let the EH abort the command or reset the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4126 | */ |
| 4127 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
| 4128 | printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n", |
| 4129 | ap->id, status); |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4130 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4131 | ap->hsm_task_state = HSM_ST_ERR; |
| 4132 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4133 | } |
| 4134 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4135 | atapi_pio_bytes(qc); |
| 4136 | |
| 4137 | if (unlikely(ap->hsm_task_state == HSM_ST_ERR)) |
| 4138 | /* bad ireason reported by device */ |
| 4139 | goto fsm_start; |
| 4140 | |
| 4141 | } else { |
| 4142 | /* ATA PIO protocol */ |
| 4143 | if (unlikely((status & ATA_DRQ) == 0)) { |
| 4144 | /* handle BSY=0, DRQ=0 as error */ |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4145 | if (likely(status & (ATA_ERR | ATA_DF))) |
| 4146 | /* device stops HSM for abort/error */ |
| 4147 | qc->err_mask |= AC_ERR_DEV; |
| 4148 | else |
| 4149 | /* HSM violation. Let EH handle this */ |
| 4150 | qc->err_mask |= AC_ERR_HSM; |
| 4151 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4152 | ap->hsm_task_state = HSM_ST_ERR; |
| 4153 | goto fsm_start; |
| 4154 | } |
| 4155 | |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4156 | /* For PIO reads, some devices may ask for |
| 4157 | * data transfer (DRQ=1) alone with ERR=1. |
| 4158 | * We respect DRQ here and transfer one |
| 4159 | * block of junk data before changing the |
| 4160 | * hsm_task_state to HSM_ST_ERR. |
| 4161 | * |
| 4162 | * For PIO writes, ERR=1 DRQ=1 doesn't make |
| 4163 | * sense since the data block has been |
| 4164 | * transferred to the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4165 | */ |
| 4166 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4167 | /* data might be corrputed */ |
| 4168 | qc->err_mask |= AC_ERR_DEV; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4169 | |
| 4170 | if (!(qc->tf.flags & ATA_TFLAG_WRITE)) { |
| 4171 | ata_pio_sectors(qc); |
| 4172 | ata_altstatus(ap); |
| 4173 | status = ata_wait_idle(ap); |
| 4174 | } |
| 4175 | |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4176 | if (status & (ATA_BUSY | ATA_DRQ)) |
| 4177 | qc->err_mask |= AC_ERR_HSM; |
| 4178 | |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4179 | /* ata_pio_sectors() might change the |
| 4180 | * state to HSM_ST_LAST. so, the state |
| 4181 | * is changed after ata_pio_sectors(). |
| 4182 | */ |
| 4183 | ap->hsm_task_state = HSM_ST_ERR; |
| 4184 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4185 | } |
| 4186 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4187 | ata_pio_sectors(qc); |
| 4188 | |
| 4189 | if (ap->hsm_task_state == HSM_ST_LAST && |
| 4190 | (!(qc->tf.flags & ATA_TFLAG_WRITE))) { |
| 4191 | /* all data read */ |
| 4192 | ata_altstatus(ap); |
Albert Lee | 52a3220 | 2006-03-25 18:18:15 +0800 | [diff] [blame] | 4193 | status = ata_wait_idle(ap); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4194 | goto fsm_start; |
| 4195 | } |
| 4196 | } |
| 4197 | |
| 4198 | ata_altstatus(ap); /* flush */ |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4199 | poll_next = 1; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4200 | break; |
| 4201 | |
| 4202 | case HSM_ST_LAST: |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4203 | if (unlikely(!ata_ok(status))) { |
| 4204 | qc->err_mask |= __ac_err_mask(status); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4205 | ap->hsm_task_state = HSM_ST_ERR; |
| 4206 | goto fsm_start; |
| 4207 | } |
| 4208 | |
| 4209 | /* no more data to transfer */ |
Albert Lee | 4332a77 | 2006-04-03 17:43:24 +0800 | [diff] [blame] | 4210 | DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n", |
| 4211 | ap->id, qc->dev->devno, status); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4212 | |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4213 | WARN_ON(qc->err_mask); |
| 4214 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4215 | ap->hsm_task_state = HSM_ST_IDLE; |
| 4216 | |
| 4217 | /* complete taskfile transaction */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 4218 | ata_hsm_qc_complete(qc, in_wq); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4219 | |
| 4220 | poll_next = 0; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4221 | break; |
| 4222 | |
| 4223 | case HSM_ST_ERR: |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4224 | /* make sure qc->err_mask is available to |
| 4225 | * know what's wrong and recover |
| 4226 | */ |
| 4227 | WARN_ON(qc->err_mask == 0); |
| 4228 | |
| 4229 | ap->hsm_task_state = HSM_ST_IDLE; |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4230 | |
Albert Lee | 999bb6f | 2006-03-25 18:07:48 +0800 | [diff] [blame] | 4231 | /* complete taskfile transaction */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 4232 | ata_hsm_qc_complete(qc, in_wq); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4233 | |
| 4234 | poll_next = 0; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4235 | break; |
| 4236 | default: |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4237 | poll_next = 0; |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4238 | BUG(); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4239 | } |
| 4240 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4241 | return poll_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4242 | } |
| 4243 | |
| 4244 | static void ata_pio_task(void *_data) |
| 4245 | { |
Tejun Heo | c91af2c | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 4246 | struct ata_queued_cmd *qc = _data; |
| 4247 | struct ata_port *ap = qc->ap; |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4248 | u8 status; |
| 4249 | int poll_next; |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 4250 | |
| 4251 | fsm_start: |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4252 | WARN_ON(ap->hsm_task_state == HSM_ST_IDLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4254 | /* |
| 4255 | * This is purely heuristic. This is a fast path. |
| 4256 | * Sometimes when we enter, BSY will be cleared in |
| 4257 | * a chk-status or two. If not, the drive is probably seeking |
| 4258 | * or something. Snooze for a couple msecs, then |
| 4259 | * chk-status again. If still busy, queue delayed work. |
| 4260 | */ |
| 4261 | status = ata_busy_wait(ap, ATA_BUSY, 5); |
| 4262 | if (status & ATA_BUSY) { |
| 4263 | msleep(2); |
| 4264 | status = ata_busy_wait(ap, ATA_BUSY, 10); |
| 4265 | if (status & ATA_BUSY) { |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4266 | ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE); |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4267 | return; |
| 4268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4269 | } |
| 4270 | |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4271 | /* move the HSM */ |
| 4272 | poll_next = ata_hsm_move(ap, qc, status, 1); |
| 4273 | |
| 4274 | /* another command or interrupt handler |
| 4275 | * may be running at this point. |
| 4276 | */ |
| 4277 | if (poll_next) |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 4278 | goto fsm_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | } |
| 4280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4281 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4282 | * ata_qc_new - Request an available ATA command, for queueing |
| 4283 | * @ap: Port associated with device @dev |
| 4284 | * @dev: Device from whom we request an available command structure |
| 4285 | * |
| 4286 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4287 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | */ |
| 4289 | |
| 4290 | static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap) |
| 4291 | { |
| 4292 | struct ata_queued_cmd *qc = NULL; |
| 4293 | unsigned int i; |
| 4294 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 4295 | /* no command while frozen */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 4296 | if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 4297 | return NULL; |
| 4298 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 4299 | /* the last tag is reserved for internal command. */ |
| 4300 | for (i = 0; i < ATA_MAX_QUEUE - 1; i++) |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 4301 | if (!test_and_set_bit(i, &ap->qc_allocated)) { |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 4302 | qc = __ata_qc_from_tag(ap, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4303 | break; |
| 4304 | } |
| 4305 | |
| 4306 | if (qc) |
| 4307 | qc->tag = i; |
| 4308 | |
| 4309 | return qc; |
| 4310 | } |
| 4311 | |
| 4312 | /** |
| 4313 | * ata_qc_new_init - Request an available ATA command, and initialize it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4314 | * @dev: Device from whom we request an available command structure |
| 4315 | * |
| 4316 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4317 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4318 | */ |
| 4319 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4320 | struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4322 | struct ata_port *ap = dev->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | struct ata_queued_cmd *qc; |
| 4324 | |
| 4325 | qc = ata_qc_new(ap); |
| 4326 | if (qc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4327 | qc->scsicmd = NULL; |
| 4328 | qc->ap = ap; |
| 4329 | qc->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4330 | |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 4331 | ata_qc_reinit(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4332 | } |
| 4333 | |
| 4334 | return qc; |
| 4335 | } |
| 4336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4337 | /** |
| 4338 | * ata_qc_free - free unused ata_queued_cmd |
| 4339 | * @qc: Command to complete |
| 4340 | * |
| 4341 | * Designed to free unused ata_queued_cmd object |
| 4342 | * in case something prevents using it. |
| 4343 | * |
| 4344 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4345 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4346 | */ |
| 4347 | void ata_qc_free(struct ata_queued_cmd *qc) |
| 4348 | { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4349 | struct ata_port *ap = qc->ap; |
| 4350 | unsigned int tag; |
| 4351 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4352 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4353 | |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4354 | qc->flags = 0; |
| 4355 | tag = qc->tag; |
| 4356 | if (likely(ata_tag_valid(tag))) { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4357 | qc->tag = ATA_TAG_POISON; |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 4358 | clear_bit(tag, &ap->qc_allocated); |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4359 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4360 | } |
| 4361 | |
Tejun Heo | 7601442 | 2006-02-11 15:13:49 +0900 | [diff] [blame] | 4362 | void __ata_qc_complete(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4363 | { |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4364 | struct ata_port *ap = qc->ap; |
| 4365 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4366 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
| 4367 | WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4368 | |
| 4369 | if (likely(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 4370 | ata_sg_clean(qc); |
| 4371 | |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4372 | /* command should be marked inactive atomically with qc completion */ |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4373 | if (qc->tf.protocol == ATA_PROT_NCQ) |
| 4374 | ap->sactive &= ~(1 << qc->tag); |
| 4375 | else |
| 4376 | ap->active_tag = ATA_TAG_POISON; |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4377 | |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4378 | /* atapi: mark qc as inactive to prevent the interrupt handler |
| 4379 | * from completing the command twice later, before the error handler |
| 4380 | * is called. (when rc != 0 and atapi request sense is needed) |
| 4381 | */ |
| 4382 | qc->flags &= ~ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4383 | ap->qc_active &= ~(1 << qc->tag); |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4385 | /* call completion callback */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4386 | qc->complete_fn(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4387 | } |
| 4388 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4389 | /** |
| 4390 | * ata_qc_complete - Complete an active ATA command |
| 4391 | * @qc: Command to complete |
| 4392 | * @err_mask: ATA Status register contents |
| 4393 | * |
| 4394 | * Indicate to the mid and upper layers that an ATA |
| 4395 | * command has completed, with either an ok or not-ok status. |
| 4396 | * |
| 4397 | * LOCKING: |
| 4398 | * spin_lock_irqsave(host_set lock) |
| 4399 | */ |
| 4400 | void ata_qc_complete(struct ata_queued_cmd *qc) |
| 4401 | { |
| 4402 | struct ata_port *ap = qc->ap; |
| 4403 | |
| 4404 | /* XXX: New EH and old EH use different mechanisms to |
| 4405 | * synchronize EH with regular execution path. |
| 4406 | * |
| 4407 | * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED. |
| 4408 | * Normal execution path is responsible for not accessing a |
| 4409 | * failed qc. libata core enforces the rule by returning NULL |
| 4410 | * from ata_qc_from_tag() for failed qcs. |
| 4411 | * |
| 4412 | * Old EH depends on ata_qc_complete() nullifying completion |
| 4413 | * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does |
| 4414 | * not synchronize with interrupt handler. Only PIO task is |
| 4415 | * taken care of. |
| 4416 | */ |
| 4417 | if (ap->ops->error_handler) { |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 4418 | WARN_ON(ap->pflags & ATA_PFLAG_FROZEN); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4419 | |
| 4420 | if (unlikely(qc->err_mask)) |
| 4421 | qc->flags |= ATA_QCFLAG_FAILED; |
| 4422 | |
| 4423 | if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) { |
| 4424 | if (!ata_tag_internal(qc->tag)) { |
| 4425 | /* always fill result TF for failed qc */ |
| 4426 | ap->ops->tf_read(ap, &qc->result_tf); |
| 4427 | ata_qc_schedule_eh(qc); |
| 4428 | return; |
| 4429 | } |
| 4430 | } |
| 4431 | |
| 4432 | /* read result TF if requested */ |
| 4433 | if (qc->flags & ATA_QCFLAG_RESULT_TF) |
| 4434 | ap->ops->tf_read(ap, &qc->result_tf); |
| 4435 | |
| 4436 | __ata_qc_complete(qc); |
| 4437 | } else { |
| 4438 | if (qc->flags & ATA_QCFLAG_EH_SCHEDULED) |
| 4439 | return; |
| 4440 | |
| 4441 | /* read result TF if failed or requested */ |
| 4442 | if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF) |
| 4443 | ap->ops->tf_read(ap, &qc->result_tf); |
| 4444 | |
| 4445 | __ata_qc_complete(qc); |
| 4446 | } |
| 4447 | } |
| 4448 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4449 | /** |
| 4450 | * ata_qc_complete_multiple - Complete multiple qcs successfully |
| 4451 | * @ap: port in question |
| 4452 | * @qc_active: new qc_active mask |
| 4453 | * @finish_qc: LLDD callback invoked before completing a qc |
| 4454 | * |
| 4455 | * Complete in-flight commands. This functions is meant to be |
| 4456 | * called from low-level driver's interrupt routine to complete |
| 4457 | * requests normally. ap->qc_active and @qc_active is compared |
| 4458 | * and commands are completed accordingly. |
| 4459 | * |
| 4460 | * LOCKING: |
| 4461 | * spin_lock_irqsave(host_set lock) |
| 4462 | * |
| 4463 | * RETURNS: |
| 4464 | * Number of completed commands on success, -errno otherwise. |
| 4465 | */ |
| 4466 | int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active, |
| 4467 | void (*finish_qc)(struct ata_queued_cmd *)) |
| 4468 | { |
| 4469 | int nr_done = 0; |
| 4470 | u32 done_mask; |
| 4471 | int i; |
| 4472 | |
| 4473 | done_mask = ap->qc_active ^ qc_active; |
| 4474 | |
| 4475 | if (unlikely(done_mask & qc_active)) { |
| 4476 | ata_port_printk(ap, KERN_ERR, "illegal qc_active transition " |
| 4477 | "(%08x->%08x)\n", ap->qc_active, qc_active); |
| 4478 | return -EINVAL; |
| 4479 | } |
| 4480 | |
| 4481 | for (i = 0; i < ATA_MAX_QUEUE; i++) { |
| 4482 | struct ata_queued_cmd *qc; |
| 4483 | |
| 4484 | if (!(done_mask & (1 << i))) |
| 4485 | continue; |
| 4486 | |
| 4487 | if ((qc = ata_qc_from_tag(ap, i))) { |
| 4488 | if (finish_qc) |
| 4489 | finish_qc(qc); |
| 4490 | ata_qc_complete(qc); |
| 4491 | nr_done++; |
| 4492 | } |
| 4493 | } |
| 4494 | |
| 4495 | return nr_done; |
| 4496 | } |
| 4497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4498 | static inline int ata_should_dma_map(struct ata_queued_cmd *qc) |
| 4499 | { |
| 4500 | struct ata_port *ap = qc->ap; |
| 4501 | |
| 4502 | switch (qc->tf.protocol) { |
Tejun Heo | 3dc1d88 | 2006-05-15 21:03:45 +0900 | [diff] [blame] | 4503 | case ATA_PROT_NCQ: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4504 | case ATA_PROT_DMA: |
| 4505 | case ATA_PROT_ATAPI_DMA: |
| 4506 | return 1; |
| 4507 | |
| 4508 | case ATA_PROT_ATAPI: |
| 4509 | case ATA_PROT_PIO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4510 | if (ap->flags & ATA_FLAG_PIO_DMA) |
| 4511 | return 1; |
| 4512 | |
| 4513 | /* fall through */ |
| 4514 | |
| 4515 | default: |
| 4516 | return 0; |
| 4517 | } |
| 4518 | |
| 4519 | /* never reached */ |
| 4520 | } |
| 4521 | |
| 4522 | /** |
| 4523 | * ata_qc_issue - issue taskfile to device |
| 4524 | * @qc: command to issue to device |
| 4525 | * |
| 4526 | * Prepare an ATA command to submission to device. |
| 4527 | * This includes mapping the data into a DMA-able |
| 4528 | * area, filling in the S/G table, and finally |
| 4529 | * writing the taskfile to hardware, starting the command. |
| 4530 | * |
| 4531 | * LOCKING: |
| 4532 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4533 | */ |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4534 | void ata_qc_issue(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4535 | { |
| 4536 | struct ata_port *ap = qc->ap; |
| 4537 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4538 | /* Make sure only one non-NCQ command is outstanding. The |
| 4539 | * check is skipped for old EH because it reuses active qc to |
| 4540 | * request ATAPI sense. |
| 4541 | */ |
| 4542 | WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag)); |
| 4543 | |
| 4544 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
| 4545 | WARN_ON(ap->sactive & (1 << qc->tag)); |
| 4546 | ap->sactive |= 1 << qc->tag; |
| 4547 | } else { |
| 4548 | WARN_ON(ap->sactive); |
| 4549 | ap->active_tag = qc->tag; |
| 4550 | } |
| 4551 | |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 4552 | qc->flags |= ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4553 | ap->qc_active |= 1 << qc->tag; |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 4554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4555 | if (ata_should_dma_map(qc)) { |
| 4556 | if (qc->flags & ATA_QCFLAG_SG) { |
| 4557 | if (ata_sg_setup(qc)) |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4558 | goto sg_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4559 | } else if (qc->flags & ATA_QCFLAG_SINGLE) { |
| 4560 | if (ata_sg_setup_one(qc)) |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4561 | goto sg_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4562 | } |
| 4563 | } else { |
| 4564 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
| 4565 | } |
| 4566 | |
| 4567 | ap->ops->qc_prep(qc); |
| 4568 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4569 | qc->err_mask |= ap->ops->qc_issue(qc); |
| 4570 | if (unlikely(qc->err_mask)) |
| 4571 | goto err; |
| 4572 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4573 | |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4574 | sg_err: |
| 4575 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4576 | qc->err_mask |= AC_ERR_SYSTEM; |
| 4577 | err: |
| 4578 | ata_qc_complete(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4579 | } |
| 4580 | |
| 4581 | /** |
| 4582 | * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner |
| 4583 | * @qc: command to issue to device |
| 4584 | * |
| 4585 | * Using various libata functions and hooks, this function |
| 4586 | * starts an ATA command. ATA commands are grouped into |
| 4587 | * classes called "protocols", and issuing each type of protocol |
| 4588 | * is slightly different. |
| 4589 | * |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4590 | * May be used as the qc_issue() entry in ata_port_operations. |
| 4591 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4592 | * LOCKING: |
| 4593 | * spin_lock_irqsave(host_set lock) |
| 4594 | * |
| 4595 | * RETURNS: |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4596 | * Zero on success, AC_ERR_* mask on failure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4597 | */ |
| 4598 | |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4599 | unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4600 | { |
| 4601 | struct ata_port *ap = qc->ap; |
| 4602 | |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 4603 | /* Use polling pio if the LLD doesn't handle |
| 4604 | * interrupt driven pio and atapi CDB interrupt. |
| 4605 | */ |
| 4606 | if (ap->flags & ATA_FLAG_PIO_POLLING) { |
| 4607 | switch (qc->tf.protocol) { |
| 4608 | case ATA_PROT_PIO: |
| 4609 | case ATA_PROT_ATAPI: |
| 4610 | case ATA_PROT_ATAPI_NODATA: |
| 4611 | qc->tf.flags |= ATA_TFLAG_POLLING; |
| 4612 | break; |
| 4613 | case ATA_PROT_ATAPI_DMA: |
| 4614 | if (qc->dev->flags & ATA_DFLAG_CDB_INTR) |
Albert Lee | 3a77827 | 2006-06-22 13:00:25 +0800 | [diff] [blame] | 4615 | /* see ata_dma_blacklisted() */ |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 4616 | BUG(); |
| 4617 | break; |
| 4618 | default: |
| 4619 | break; |
| 4620 | } |
| 4621 | } |
| 4622 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4623 | /* select the device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4624 | ata_dev_select(ap, qc->dev->devno, 1, 0); |
| 4625 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4626 | /* start the command */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4627 | switch (qc->tf.protocol) { |
| 4628 | case ATA_PROT_NODATA: |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4629 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 4630 | ata_qc_set_polling(qc); |
| 4631 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 4632 | ata_tf_to_host(ap, &qc->tf); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4633 | ap->hsm_task_state = HSM_ST_LAST; |
| 4634 | |
| 4635 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4636 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4638 | break; |
| 4639 | |
| 4640 | case ATA_PROT_DMA: |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 4641 | WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4643 | ap->ops->tf_load(ap, &qc->tf); /* load tf registers */ |
| 4644 | ap->ops->bmdma_setup(qc); /* set up bmdma */ |
| 4645 | ap->ops->bmdma_start(qc); /* initiate bmdma */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4646 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4647 | break; |
| 4648 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4649 | case ATA_PROT_PIO: |
| 4650 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 4651 | ata_qc_set_polling(qc); |
| 4652 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 4653 | ata_tf_to_host(ap, &qc->tf); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4654 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4655 | if (qc->tf.flags & ATA_TFLAG_WRITE) { |
| 4656 | /* PIO data out protocol */ |
| 4657 | ap->hsm_task_state = HSM_ST_FIRST; |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4658 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4659 | |
| 4660 | /* always send first data block using |
Albert Lee | e27486d | 2005-11-01 19:24:49 +0800 | [diff] [blame] | 4661 | * the ata_pio_task() codepath. |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4662 | */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4663 | } else { |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4664 | /* PIO data in protocol */ |
| 4665 | ap->hsm_task_state = HSM_ST; |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4666 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4667 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4668 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4669 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4670 | /* if polling, ata_pio_task() handles the rest. |
| 4671 | * otherwise, interrupt handler takes over from here. |
| 4672 | */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4673 | } |
| 4674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4675 | break; |
| 4676 | |
| 4677 | case ATA_PROT_ATAPI: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4678 | case ATA_PROT_ATAPI_NODATA: |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4679 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 4680 | ata_qc_set_polling(qc); |
| 4681 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 4682 | ata_tf_to_host(ap, &qc->tf); |
Jeff Garzik | f6ef65e | 2006-01-27 02:45:00 -0500 | [diff] [blame] | 4683 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4684 | ap->hsm_task_state = HSM_ST_FIRST; |
| 4685 | |
| 4686 | /* send cdb by polling if no cdb interrupt */ |
| 4687 | if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) || |
| 4688 | (qc->tf.flags & ATA_TFLAG_POLLING)) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4689 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | break; |
| 4691 | |
| 4692 | case ATA_PROT_ATAPI_DMA: |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 4693 | WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4695 | ap->ops->tf_load(ap, &qc->tf); /* load tf registers */ |
| 4696 | ap->ops->bmdma_setup(qc); /* set up bmdma */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4697 | ap->hsm_task_state = HSM_ST_FIRST; |
| 4698 | |
| 4699 | /* send cdb by polling if no cdb interrupt */ |
| 4700 | if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4701 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4702 | break; |
| 4703 | |
| 4704 | default: |
| 4705 | WARN_ON(1); |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4706 | return AC_ERR_SYSTEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4707 | } |
| 4708 | |
| 4709 | return 0; |
| 4710 | } |
| 4711 | |
| 4712 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4713 | * ata_host_intr - Handle host interrupt for given (port, task) |
| 4714 | * @ap: Port on which interrupt arrived (possibly...) |
| 4715 | * @qc: Taskfile currently active in engine |
| 4716 | * |
| 4717 | * Handle host interrupt for given queued command. Currently, |
| 4718 | * only DMA interrupts are handled. All other commands are |
| 4719 | * handled via polling with interrupts disabled (nIEN bit). |
| 4720 | * |
| 4721 | * LOCKING: |
| 4722 | * spin_lock_irqsave(host_set lock) |
| 4723 | * |
| 4724 | * RETURNS: |
| 4725 | * One if interrupt was handled, zero if not (shared irq). |
| 4726 | */ |
| 4727 | |
| 4728 | inline unsigned int ata_host_intr (struct ata_port *ap, |
| 4729 | struct ata_queued_cmd *qc) |
| 4730 | { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4731 | u8 status, host_stat = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4732 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4733 | VPRINTK("ata%u: protocol %d task_state %d\n", |
| 4734 | ap->id, qc->tf.protocol, ap->hsm_task_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4735 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4736 | /* Check whether we are expecting interrupt in this state */ |
| 4737 | switch (ap->hsm_task_state) { |
| 4738 | case HSM_ST_FIRST: |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4739 | /* Some pre-ATAPI-4 devices assert INTRQ |
| 4740 | * at this state when ready to receive CDB. |
| 4741 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4742 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4743 | /* Check the ATA_DFLAG_CDB_INTR flag is enough here. |
| 4744 | * The flag was turned on only for atapi devices. |
| 4745 | * No need to check is_atapi_taskfile(&qc->tf) again. |
| 4746 | */ |
| 4747 | if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4748 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4749 | break; |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4750 | case HSM_ST_LAST: |
| 4751 | if (qc->tf.protocol == ATA_PROT_DMA || |
| 4752 | qc->tf.protocol == ATA_PROT_ATAPI_DMA) { |
| 4753 | /* check status of DMA engine */ |
| 4754 | host_stat = ap->ops->bmdma_status(ap); |
| 4755 | VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4756 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4757 | /* if it's not our irq... */ |
| 4758 | if (!(host_stat & ATA_DMA_INTR)) |
| 4759 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4760 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4761 | /* before we do anything else, clear DMA-Start bit */ |
| 4762 | ap->ops->bmdma_stop(qc); |
Albert Lee | a4f1661 | 2005-12-26 16:40:53 +0800 | [diff] [blame] | 4763 | |
| 4764 | if (unlikely(host_stat & ATA_DMA_ERR)) { |
| 4765 | /* error when transfering data to/from memory */ |
| 4766 | qc->err_mask |= AC_ERR_HOST_BUS; |
| 4767 | ap->hsm_task_state = HSM_ST_ERR; |
| 4768 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4769 | } |
| 4770 | break; |
| 4771 | case HSM_ST: |
| 4772 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4773 | default: |
| 4774 | goto idle_irq; |
| 4775 | } |
| 4776 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4777 | /* check altstatus */ |
| 4778 | status = ata_altstatus(ap); |
| 4779 | if (status & ATA_BUSY) |
| 4780 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4781 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4782 | /* check main status, clearing INTRQ */ |
| 4783 | status = ata_chk_status(ap); |
| 4784 | if (unlikely(status & ATA_BUSY)) |
| 4785 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4786 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4787 | /* ack bmdma irq events */ |
| 4788 | ap->ops->irq_clear(ap); |
| 4789 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4790 | ata_hsm_move(ap, qc, status, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4791 | return 1; /* irq handled */ |
| 4792 | |
| 4793 | idle_irq: |
| 4794 | ap->stats.idle_irq++; |
| 4795 | |
| 4796 | #ifdef ATA_IRQ_TRAP |
| 4797 | if ((ap->stats.idle_irq % 1000) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4798 | ata_irq_ack(ap, 0); /* debug trap */ |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4799 | ata_port_printk(ap, KERN_WARNING, "irq trap\n"); |
Alan Cox | 23cfce8 | 2006-03-21 16:06:53 +0000 | [diff] [blame] | 4800 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4801 | } |
| 4802 | #endif |
| 4803 | return 0; /* irq not handled */ |
| 4804 | } |
| 4805 | |
| 4806 | /** |
| 4807 | * ata_interrupt - Default ATA host interrupt handler |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4808 | * @irq: irq line (unused) |
| 4809 | * @dev_instance: pointer to our ata_host_set information structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4810 | * @regs: unused |
| 4811 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4812 | * Default interrupt handler for PCI IDE devices. Calls |
| 4813 | * ata_host_intr() for each port that is not disabled. |
| 4814 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4815 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4816 | * Obtains host_set lock during operation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4817 | * |
| 4818 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4819 | * IRQ_NONE or IRQ_HANDLED. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4820 | */ |
| 4821 | |
| 4822 | irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs) |
| 4823 | { |
| 4824 | struct ata_host_set *host_set = dev_instance; |
| 4825 | unsigned int i; |
| 4826 | unsigned int handled = 0; |
| 4827 | unsigned long flags; |
| 4828 | |
| 4829 | /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */ |
| 4830 | spin_lock_irqsave(&host_set->lock, flags); |
| 4831 | |
| 4832 | for (i = 0; i < host_set->n_ports; i++) { |
| 4833 | struct ata_port *ap; |
| 4834 | |
| 4835 | ap = host_set->ports[i]; |
Tejun Heo | c138950 | 2005-08-22 14:59:24 +0900 | [diff] [blame] | 4836 | if (ap && |
Jeff Garzik | 029f546 | 2006-04-02 10:30:40 -0400 | [diff] [blame] | 4837 | !(ap->flags & ATA_FLAG_DISABLED)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4838 | struct ata_queued_cmd *qc; |
| 4839 | |
| 4840 | qc = ata_qc_from_tag(ap, ap->active_tag); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4841 | if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) && |
Albert Lee | 21b1ed7 | 2005-04-29 17:34:59 +0800 | [diff] [blame] | 4842 | (qc->flags & ATA_QCFLAG_ACTIVE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4843 | handled |= ata_host_intr(ap, qc); |
| 4844 | } |
| 4845 | } |
| 4846 | |
| 4847 | spin_unlock_irqrestore(&host_set->lock, flags); |
| 4848 | |
| 4849 | return IRQ_RETVAL(handled); |
| 4850 | } |
| 4851 | |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4852 | /** |
| 4853 | * sata_scr_valid - test whether SCRs are accessible |
| 4854 | * @ap: ATA port to test SCR accessibility for |
| 4855 | * |
| 4856 | * Test whether SCRs are accessible for @ap. |
| 4857 | * |
| 4858 | * LOCKING: |
| 4859 | * None. |
| 4860 | * |
| 4861 | * RETURNS: |
| 4862 | * 1 if SCRs are accessible, 0 otherwise. |
| 4863 | */ |
| 4864 | int sata_scr_valid(struct ata_port *ap) |
| 4865 | { |
| 4866 | return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read; |
| 4867 | } |
| 4868 | |
| 4869 | /** |
| 4870 | * sata_scr_read - read SCR register of the specified port |
| 4871 | * @ap: ATA port to read SCR for |
| 4872 | * @reg: SCR to read |
| 4873 | * @val: Place to store read value |
| 4874 | * |
| 4875 | * Read SCR register @reg of @ap into *@val. This function is |
| 4876 | * guaranteed to succeed if the cable type of the port is SATA |
| 4877 | * and the port implements ->scr_read. |
| 4878 | * |
| 4879 | * LOCKING: |
| 4880 | * None. |
| 4881 | * |
| 4882 | * RETURNS: |
| 4883 | * 0 on success, negative errno on failure. |
| 4884 | */ |
| 4885 | int sata_scr_read(struct ata_port *ap, int reg, u32 *val) |
| 4886 | { |
| 4887 | if (sata_scr_valid(ap)) { |
| 4888 | *val = ap->ops->scr_read(ap, reg); |
| 4889 | return 0; |
| 4890 | } |
| 4891 | return -EOPNOTSUPP; |
| 4892 | } |
| 4893 | |
| 4894 | /** |
| 4895 | * sata_scr_write - write SCR register of the specified port |
| 4896 | * @ap: ATA port to write SCR for |
| 4897 | * @reg: SCR to write |
| 4898 | * @val: value to write |
| 4899 | * |
| 4900 | * Write @val to SCR register @reg of @ap. This function is |
| 4901 | * guaranteed to succeed if the cable type of the port is SATA |
| 4902 | * and the port implements ->scr_read. |
| 4903 | * |
| 4904 | * LOCKING: |
| 4905 | * None. |
| 4906 | * |
| 4907 | * RETURNS: |
| 4908 | * 0 on success, negative errno on failure. |
| 4909 | */ |
| 4910 | int sata_scr_write(struct ata_port *ap, int reg, u32 val) |
| 4911 | { |
| 4912 | if (sata_scr_valid(ap)) { |
| 4913 | ap->ops->scr_write(ap, reg, val); |
| 4914 | return 0; |
| 4915 | } |
| 4916 | return -EOPNOTSUPP; |
| 4917 | } |
| 4918 | |
| 4919 | /** |
| 4920 | * sata_scr_write_flush - write SCR register of the specified port and flush |
| 4921 | * @ap: ATA port to write SCR for |
| 4922 | * @reg: SCR to write |
| 4923 | * @val: value to write |
| 4924 | * |
| 4925 | * This function is identical to sata_scr_write() except that this |
| 4926 | * function performs flush after writing to the register. |
| 4927 | * |
| 4928 | * LOCKING: |
| 4929 | * None. |
| 4930 | * |
| 4931 | * RETURNS: |
| 4932 | * 0 on success, negative errno on failure. |
| 4933 | */ |
| 4934 | int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val) |
| 4935 | { |
| 4936 | if (sata_scr_valid(ap)) { |
| 4937 | ap->ops->scr_write(ap, reg, val); |
| 4938 | ap->ops->scr_read(ap, reg); |
| 4939 | return 0; |
| 4940 | } |
| 4941 | return -EOPNOTSUPP; |
| 4942 | } |
| 4943 | |
| 4944 | /** |
| 4945 | * ata_port_online - test whether the given port is online |
| 4946 | * @ap: ATA port to test |
| 4947 | * |
| 4948 | * Test whether @ap is online. Note that this function returns 0 |
| 4949 | * if online status of @ap cannot be obtained, so |
| 4950 | * ata_port_online(ap) != !ata_port_offline(ap). |
| 4951 | * |
| 4952 | * LOCKING: |
| 4953 | * None. |
| 4954 | * |
| 4955 | * RETURNS: |
| 4956 | * 1 if the port online status is available and online. |
| 4957 | */ |
| 4958 | int ata_port_online(struct ata_port *ap) |
| 4959 | { |
| 4960 | u32 sstatus; |
| 4961 | |
| 4962 | if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3) |
| 4963 | return 1; |
| 4964 | return 0; |
| 4965 | } |
| 4966 | |
| 4967 | /** |
| 4968 | * ata_port_offline - test whether the given port is offline |
| 4969 | * @ap: ATA port to test |
| 4970 | * |
| 4971 | * Test whether @ap is offline. Note that this function returns |
| 4972 | * 0 if offline status of @ap cannot be obtained, so |
| 4973 | * ata_port_online(ap) != !ata_port_offline(ap). |
| 4974 | * |
| 4975 | * LOCKING: |
| 4976 | * None. |
| 4977 | * |
| 4978 | * RETURNS: |
| 4979 | * 1 if the port offline status is available and offline. |
| 4980 | */ |
| 4981 | int ata_port_offline(struct ata_port *ap) |
| 4982 | { |
| 4983 | u32 sstatus; |
| 4984 | |
| 4985 | if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3) |
| 4986 | return 1; |
| 4987 | return 0; |
| 4988 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4989 | |
Tejun Heo | 77b08fb | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 4990 | int ata_flush_cache(struct ata_device *dev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4991 | { |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 4992 | unsigned int err_mask; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4993 | u8 cmd; |
| 4994 | |
| 4995 | if (!ata_try_flush_cache(dev)) |
| 4996 | return 0; |
| 4997 | |
| 4998 | if (ata_id_has_flush_ext(dev->id)) |
| 4999 | cmd = ATA_CMD_FLUSH_EXT; |
| 5000 | else |
| 5001 | cmd = ATA_CMD_FLUSH; |
| 5002 | |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 5003 | err_mask = ata_do_simple_cmd(dev, cmd); |
| 5004 | if (err_mask) { |
| 5005 | ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n"); |
| 5006 | return -EIO; |
| 5007 | } |
| 5008 | |
| 5009 | return 0; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5010 | } |
| 5011 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5012 | static int ata_host_set_request_pm(struct ata_host_set *host_set, |
| 5013 | pm_message_t mesg, unsigned int action, |
| 5014 | unsigned int ehi_flags, int wait) |
| 5015 | { |
| 5016 | unsigned long flags; |
| 5017 | int i, rc; |
| 5018 | |
| 5019 | for (i = 0; i < host_set->n_ports; i++) { |
| 5020 | struct ata_port *ap = host_set->ports[i]; |
| 5021 | |
| 5022 | /* Previous resume operation might still be in |
| 5023 | * progress. Wait for PM_PENDING to clear. |
| 5024 | */ |
| 5025 | if (ap->pflags & ATA_PFLAG_PM_PENDING) { |
| 5026 | ata_port_wait_eh(ap); |
| 5027 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 5028 | } |
| 5029 | |
| 5030 | /* request PM ops to EH */ |
| 5031 | spin_lock_irqsave(ap->lock, flags); |
| 5032 | |
| 5033 | ap->pm_mesg = mesg; |
| 5034 | if (wait) { |
| 5035 | rc = 0; |
| 5036 | ap->pm_result = &rc; |
| 5037 | } |
| 5038 | |
| 5039 | ap->pflags |= ATA_PFLAG_PM_PENDING; |
| 5040 | ap->eh_info.action |= action; |
| 5041 | ap->eh_info.flags |= ehi_flags; |
| 5042 | |
| 5043 | ata_port_schedule_eh(ap); |
| 5044 | |
| 5045 | spin_unlock_irqrestore(ap->lock, flags); |
| 5046 | |
| 5047 | /* wait and check result */ |
| 5048 | if (wait) { |
| 5049 | ata_port_wait_eh(ap); |
| 5050 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 5051 | if (rc) |
| 5052 | return rc; |
| 5053 | } |
| 5054 | } |
| 5055 | |
| 5056 | return 0; |
| 5057 | } |
| 5058 | |
| 5059 | /** |
| 5060 | * ata_host_set_suspend - suspend host_set |
| 5061 | * @host_set: host_set to suspend |
| 5062 | * @mesg: PM message |
| 5063 | * |
| 5064 | * Suspend @host_set. Actual operation is performed by EH. This |
| 5065 | * function requests EH to perform PM operations and waits for EH |
| 5066 | * to finish. |
| 5067 | * |
| 5068 | * LOCKING: |
| 5069 | * Kernel thread context (may sleep). |
| 5070 | * |
| 5071 | * RETURNS: |
| 5072 | * 0 on success, -errno on failure. |
| 5073 | */ |
| 5074 | int ata_host_set_suspend(struct ata_host_set *host_set, pm_message_t mesg) |
| 5075 | { |
| 5076 | int i, j, rc; |
| 5077 | |
| 5078 | rc = ata_host_set_request_pm(host_set, mesg, 0, ATA_EHI_QUIET, 1); |
| 5079 | if (rc) |
| 5080 | goto fail; |
| 5081 | |
| 5082 | /* EH is quiescent now. Fail if we have any ready device. |
| 5083 | * This happens if hotplug occurs between completion of device |
| 5084 | * suspension and here. |
| 5085 | */ |
| 5086 | for (i = 0; i < host_set->n_ports; i++) { |
| 5087 | struct ata_port *ap = host_set->ports[i]; |
| 5088 | |
| 5089 | for (j = 0; j < ATA_MAX_DEVICES; j++) { |
| 5090 | struct ata_device *dev = &ap->device[j]; |
| 5091 | |
| 5092 | if (ata_dev_ready(dev)) { |
| 5093 | ata_port_printk(ap, KERN_WARNING, |
| 5094 | "suspend failed, device %d " |
| 5095 | "still active\n", dev->devno); |
| 5096 | rc = -EBUSY; |
| 5097 | goto fail; |
| 5098 | } |
| 5099 | } |
| 5100 | } |
| 5101 | |
| 5102 | host_set->dev->power.power_state = mesg; |
| 5103 | return 0; |
| 5104 | |
| 5105 | fail: |
| 5106 | ata_host_set_resume(host_set); |
| 5107 | return rc; |
| 5108 | } |
| 5109 | |
| 5110 | /** |
| 5111 | * ata_host_set_resume - resume host_set |
| 5112 | * @host_set: host_set to resume |
| 5113 | * |
| 5114 | * Resume @host_set. Actual operation is performed by EH. This |
| 5115 | * function requests EH to perform PM operations and returns. |
| 5116 | * Note that all resume operations are performed parallely. |
| 5117 | * |
| 5118 | * LOCKING: |
| 5119 | * Kernel thread context (may sleep). |
| 5120 | */ |
| 5121 | void ata_host_set_resume(struct ata_host_set *host_set) |
| 5122 | { |
| 5123 | ata_host_set_request_pm(host_set, PMSG_ON, ATA_EH_SOFTRESET, |
| 5124 | ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0); |
| 5125 | host_set->dev->power.power_state = PMSG_ON; |
| 5126 | } |
| 5127 | |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5128 | /** |
| 5129 | * ata_port_start - Set port up for dma. |
| 5130 | * @ap: Port to initialize |
| 5131 | * |
| 5132 | * Called just after data structures for each port are |
| 5133 | * initialized. Allocates space for PRD table. |
| 5134 | * |
| 5135 | * May be used as the port_start() entry in ata_port_operations. |
| 5136 | * |
| 5137 | * LOCKING: |
| 5138 | * Inherited from caller. |
| 5139 | */ |
| 5140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5141 | int ata_port_start (struct ata_port *ap) |
| 5142 | { |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5143 | struct device *dev = ap->dev; |
Jeff Garzik | 6037d6b | 2005-11-04 22:08:00 -0500 | [diff] [blame] | 5144 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5145 | |
| 5146 | ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL); |
| 5147 | if (!ap->prd) |
| 5148 | return -ENOMEM; |
| 5149 | |
Jeff Garzik | 6037d6b | 2005-11-04 22:08:00 -0500 | [diff] [blame] | 5150 | rc = ata_pad_alloc(ap, dev); |
| 5151 | if (rc) { |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 5152 | dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma); |
Jeff Garzik | 6037d6b | 2005-11-04 22:08:00 -0500 | [diff] [blame] | 5153 | return rc; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 5154 | } |
| 5155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5156 | DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma); |
| 5157 | |
| 5158 | return 0; |
| 5159 | } |
| 5160 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5161 | |
| 5162 | /** |
| 5163 | * ata_port_stop - Undo ata_port_start() |
| 5164 | * @ap: Port to shut down |
| 5165 | * |
| 5166 | * Frees the PRD table. |
| 5167 | * |
| 5168 | * May be used as the port_stop() entry in ata_port_operations. |
| 5169 | * |
| 5170 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 5171 | * Inherited from caller. |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5172 | */ |
| 5173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5174 | void ata_port_stop (struct ata_port *ap) |
| 5175 | { |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5176 | struct device *dev = ap->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5177 | |
| 5178 | dma_free_coherent(dev, ATA_PRD_TBL_SZ, ap->prd, ap->prd_dma); |
Jeff Garzik | 6037d6b | 2005-11-04 22:08:00 -0500 | [diff] [blame] | 5179 | ata_pad_free(ap, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5180 | } |
| 5181 | |
Jeff Garzik | aa8f0dc | 2005-05-26 21:54:27 -0400 | [diff] [blame] | 5182 | void ata_host_stop (struct ata_host_set *host_set) |
| 5183 | { |
| 5184 | if (host_set->mmio_base) |
| 5185 | iounmap(host_set->mmio_base); |
| 5186 | } |
| 5187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5188 | /** |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5189 | * ata_dev_init - Initialize an ata_device structure |
| 5190 | * @dev: Device structure to initialize |
| 5191 | * |
| 5192 | * Initialize @dev in preparation for probing. |
| 5193 | * |
| 5194 | * LOCKING: |
| 5195 | * Inherited from caller. |
| 5196 | */ |
| 5197 | void ata_dev_init(struct ata_device *dev) |
| 5198 | { |
| 5199 | struct ata_port *ap = dev->ap; |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5200 | unsigned long flags; |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5201 | |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5202 | /* SATA spd limit is bound to the first device */ |
| 5203 | ap->sata_spd_limit = ap->hw_sata_spd_limit; |
| 5204 | |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5205 | /* High bits of dev->flags are used to record warm plug |
| 5206 | * requests which occur asynchronously. Synchronize using |
| 5207 | * host_set lock. |
| 5208 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5209 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5210 | dev->flags &= ~ATA_DFLAG_INIT_MASK; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5211 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5212 | |
| 5213 | memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0, |
| 5214 | sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET); |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5215 | dev->pio_mask = UINT_MAX; |
| 5216 | dev->mwdma_mask = UINT_MAX; |
| 5217 | dev->udma_mask = UINT_MAX; |
| 5218 | } |
| 5219 | |
| 5220 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5221 | * ata_host_init - Initialize an ata_port structure |
| 5222 | * @ap: Structure to initialize |
| 5223 | * @host: associated SCSI mid-layer structure |
| 5224 | * @host_set: Collection of hosts to which @ap belongs |
| 5225 | * @ent: Probe information provided by low-level driver |
| 5226 | * @port_no: Port number associated with this ata_port |
| 5227 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5228 | * Initialize a new ata_port structure, and its associated |
| 5229 | * scsi_host. |
| 5230 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5231 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5232 | * Inherited from caller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5233 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5234 | static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host, |
| 5235 | struct ata_host_set *host_set, |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5236 | const struct ata_probe_ent *ent, unsigned int port_no) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5237 | { |
| 5238 | unsigned int i; |
| 5239 | |
| 5240 | host->max_id = 16; |
| 5241 | host->max_lun = 1; |
| 5242 | host->max_channel = 1; |
| 5243 | host->unique_id = ata_unique_id++; |
| 5244 | host->max_cmd_len = 12; |
Christoph Hellwig | 1241319 | 2005-06-11 01:05:01 +0200 | [diff] [blame] | 5245 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5246 | ap->lock = &host_set->lock; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 5247 | ap->flags = ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5248 | ap->id = host->unique_id; |
| 5249 | ap->host = host; |
| 5250 | ap->ctl = ATA_DEVCTL_OBS; |
| 5251 | ap->host_set = host_set; |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5252 | ap->dev = ent->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5253 | ap->port_no = port_no; |
| 5254 | ap->hard_port_no = |
| 5255 | ent->legacy_mode ? ent->hard_port_no : port_no; |
| 5256 | ap->pio_mask = ent->pio_mask; |
| 5257 | ap->mwdma_mask = ent->mwdma_mask; |
| 5258 | ap->udma_mask = ent->udma_mask; |
| 5259 | ap->flags |= ent->host_flags; |
| 5260 | ap->ops = ent->port_ops; |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5261 | ap->hw_sata_spd_limit = UINT_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5262 | ap->active_tag = ATA_TAG_POISON; |
| 5263 | ap->last_ctl = 0xFF; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 5264 | |
| 5265 | #if defined(ATA_VERBOSE_DEBUG) |
| 5266 | /* turn on all debugging levels */ |
| 5267 | ap->msg_enable = 0x00FF; |
| 5268 | #elif defined(ATA_DEBUG) |
| 5269 | ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR; |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 5270 | #else |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 5271 | ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 5272 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5273 | |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 5274 | INIT_WORK(&ap->port_task, NULL, NULL); |
Tejun Heo | 580b210 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 5275 | INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap); |
zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 5276 | INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan, ap); |
Tejun Heo | a72ec4c | 2006-01-23 13:09:37 +0900 | [diff] [blame] | 5277 | INIT_LIST_HEAD(&ap->eh_done_q); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 5278 | init_waitqueue_head(&ap->eh_wait_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5279 | |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 5280 | /* set cable type */ |
| 5281 | ap->cbl = ATA_CBL_NONE; |
| 5282 | if (ap->flags & ATA_FLAG_SATA) |
| 5283 | ap->cbl = ATA_CBL_SATA; |
| 5284 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 5285 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 5286 | struct ata_device *dev = &ap->device[i]; |
Tejun Heo | 38d8723 | 2006-05-15 20:57:51 +0900 | [diff] [blame] | 5287 | dev->ap = ap; |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5288 | dev->devno = i; |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5289 | ata_dev_init(dev); |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 5290 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5291 | |
| 5292 | #ifdef ATA_IRQ_TRAP |
| 5293 | ap->stats.unhandled_irq = 1; |
| 5294 | ap->stats.idle_irq = 1; |
| 5295 | #endif |
| 5296 | |
| 5297 | memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports)); |
| 5298 | } |
| 5299 | |
| 5300 | /** |
| 5301 | * ata_host_add - Attach low-level ATA driver to system |
| 5302 | * @ent: Information provided by low-level driver |
| 5303 | * @host_set: Collections of ports to which we add |
| 5304 | * @port_no: Port number associated with this host |
| 5305 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5306 | * Attach low-level ATA driver to system. |
| 5307 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5308 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5309 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5310 | * |
| 5311 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5312 | * New ata_port on success, for NULL on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5313 | */ |
| 5314 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5315 | static struct ata_port * ata_host_add(const struct ata_probe_ent *ent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5316 | struct ata_host_set *host_set, |
| 5317 | unsigned int port_no) |
| 5318 | { |
| 5319 | struct Scsi_Host *host; |
| 5320 | struct ata_port *ap; |
| 5321 | int rc; |
| 5322 | |
| 5323 | DPRINTK("ENTER\n"); |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 5324 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 5325 | if (!ent->port_ops->error_handler && |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 5326 | !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) { |
| 5327 | printk(KERN_ERR "ata%u: no reset mechanism available\n", |
| 5328 | port_no); |
| 5329 | return NULL; |
| 5330 | } |
| 5331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5332 | host = scsi_host_alloc(ent->sht, sizeof(struct ata_port)); |
| 5333 | if (!host) |
| 5334 | return NULL; |
| 5335 | |
Tejun Heo | 30afc84 | 2006-03-18 18:40:14 +0900 | [diff] [blame] | 5336 | host->transportt = &ata_scsi_transport_template; |
| 5337 | |
Jeff Garzik | 35bb94b | 2006-04-11 13:12:34 -0400 | [diff] [blame] | 5338 | ap = ata_shost_to_port(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5339 | |
| 5340 | ata_host_init(ap, host, host_set, ent, port_no); |
| 5341 | |
| 5342 | rc = ap->ops->port_start(ap); |
| 5343 | if (rc) |
| 5344 | goto err_out; |
| 5345 | |
| 5346 | return ap; |
| 5347 | |
| 5348 | err_out: |
| 5349 | scsi_host_put(host); |
| 5350 | return NULL; |
| 5351 | } |
| 5352 | |
| 5353 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5354 | * ata_device_add - Register hardware device with ATA and SCSI layers |
| 5355 | * @ent: Probe information describing hardware device to be registered |
| 5356 | * |
| 5357 | * This function processes the information provided in the probe |
| 5358 | * information struct @ent, allocates the necessary ATA and SCSI |
| 5359 | * host information structures, initializes them, and registers |
| 5360 | * everything with requisite kernel subsystems. |
| 5361 | * |
| 5362 | * This function requests irqs, probes the ATA bus, and probes |
| 5363 | * the SCSI bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5364 | * |
| 5365 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5366 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5367 | * |
| 5368 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5369 | * Number of ports registered. Zero on error (no ports registered). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5370 | */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5371 | int ata_device_add(const struct ata_probe_ent *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5372 | { |
| 5373 | unsigned int count = 0, i; |
| 5374 | struct device *dev = ent->dev; |
| 5375 | struct ata_host_set *host_set; |
Jeff Garzik | 39b07ce | 2006-06-11 23:59:44 -0400 | [diff] [blame] | 5376 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5377 | |
| 5378 | DPRINTK("ENTER\n"); |
| 5379 | /* alloc a container for our list of ATA ports (buses) */ |
Randy Dunlap | 57f3bda | 2005-10-28 20:37:23 -0700 | [diff] [blame] | 5380 | host_set = kzalloc(sizeof(struct ata_host_set) + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5381 | (ent->n_ports * sizeof(void *)), GFP_KERNEL); |
| 5382 | if (!host_set) |
| 5383 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5384 | spin_lock_init(&host_set->lock); |
| 5385 | |
| 5386 | host_set->dev = dev; |
| 5387 | host_set->n_ports = ent->n_ports; |
| 5388 | host_set->irq = ent->irq; |
| 5389 | host_set->mmio_base = ent->mmio_base; |
| 5390 | host_set->private_data = ent->private_data; |
| 5391 | host_set->ops = ent->port_ops; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 5392 | host_set->flags = ent->host_set_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5393 | |
| 5394 | /* register each port bound to this device */ |
| 5395 | for (i = 0; i < ent->n_ports; i++) { |
| 5396 | struct ata_port *ap; |
| 5397 | unsigned long xfer_mode_mask; |
| 5398 | |
| 5399 | ap = ata_host_add(ent, host_set, i); |
| 5400 | if (!ap) |
| 5401 | goto err_out; |
| 5402 | |
| 5403 | host_set->ports[i] = ap; |
| 5404 | xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) | |
| 5405 | (ap->mwdma_mask << ATA_SHIFT_MWDMA) | |
| 5406 | (ap->pio_mask << ATA_SHIFT_PIO); |
| 5407 | |
| 5408 | /* print per-port info to dmesg */ |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 5409 | ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX " |
| 5410 | "ctl 0x%lX bmdma 0x%lX irq %lu\n", |
| 5411 | ap->flags & ATA_FLAG_SATA ? 'S' : 'P', |
| 5412 | ata_mode_string(xfer_mode_mask), |
| 5413 | ap->ioaddr.cmd_addr, |
| 5414 | ap->ioaddr.ctl_addr, |
| 5415 | ap->ioaddr.bmdma_addr, |
| 5416 | ent->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5417 | |
| 5418 | ata_chk_status(ap); |
| 5419 | host_set->ops->irq_clear(ap); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 5420 | ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5421 | count++; |
| 5422 | } |
| 5423 | |
Randy Dunlap | 57f3bda | 2005-10-28 20:37:23 -0700 | [diff] [blame] | 5424 | if (!count) |
| 5425 | goto err_free_ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5426 | |
| 5427 | /* obtain irq, that is shared between channels */ |
Jeff Garzik | 39b07ce | 2006-06-11 23:59:44 -0400 | [diff] [blame] | 5428 | rc = request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags, |
| 5429 | DRV_NAME, host_set); |
| 5430 | if (rc) { |
| 5431 | dev_printk(KERN_ERR, dev, "irq %lu request failed: %d\n", |
| 5432 | ent->irq, rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5433 | goto err_out; |
Jeff Garzik | 39b07ce | 2006-06-11 23:59:44 -0400 | [diff] [blame] | 5434 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5435 | |
| 5436 | /* perform each probe synchronously */ |
| 5437 | DPRINTK("probe begin\n"); |
| 5438 | for (i = 0; i < count; i++) { |
| 5439 | struct ata_port *ap; |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5440 | u32 scontrol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5441 | int rc; |
| 5442 | |
| 5443 | ap = host_set->ports[i]; |
| 5444 | |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5445 | /* init sata_spd_limit to the current value */ |
| 5446 | if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) { |
| 5447 | int spd = (scontrol >> 4) & 0xf; |
| 5448 | ap->hw_sata_spd_limit &= (1 << spd) - 1; |
| 5449 | } |
| 5450 | ap->sata_spd_limit = ap->hw_sata_spd_limit; |
| 5451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5452 | rc = scsi_add_host(ap->host, dev); |
| 5453 | if (rc) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 5454 | ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5455 | /* FIXME: do something useful here */ |
| 5456 | /* FIXME: handle unconditional calls to |
| 5457 | * scsi_scan_host and ata_host_remove, below, |
| 5458 | * at the very least |
| 5459 | */ |
| 5460 | } |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5461 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 5462 | if (ap->ops->error_handler) { |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 5463 | struct ata_eh_info *ehi = &ap->eh_info; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5464 | unsigned long flags; |
| 5465 | |
| 5466 | ata_port_probe(ap); |
| 5467 | |
| 5468 | /* kick EH for boot probing */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5469 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5470 | |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 5471 | ehi->probe_mask = (1 << ATA_MAX_DEVICES) - 1; |
| 5472 | ehi->action |= ATA_EH_SOFTRESET; |
| 5473 | ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5474 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 5475 | ap->pflags |= ATA_PFLAG_LOADING; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5476 | ata_port_schedule_eh(ap); |
| 5477 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5478 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5479 | |
| 5480 | /* wait for EH to finish */ |
| 5481 | ata_port_wait_eh(ap); |
| 5482 | } else { |
| 5483 | DPRINTK("ata%u: bus probe begin\n", ap->id); |
| 5484 | rc = ata_bus_probe(ap); |
| 5485 | DPRINTK("ata%u: bus probe end\n", ap->id); |
| 5486 | |
| 5487 | if (rc) { |
| 5488 | /* FIXME: do something useful here? |
| 5489 | * Current libata behavior will |
| 5490 | * tear down everything when |
| 5491 | * the module is removed |
| 5492 | * or the h/w is unplugged. |
| 5493 | */ |
| 5494 | } |
| 5495 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5496 | } |
| 5497 | |
| 5498 | /* probes are done, now scan each port's disk(s) */ |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5499 | DPRINTK("host probe begin\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5500 | for (i = 0; i < count; i++) { |
| 5501 | struct ata_port *ap = host_set->ports[i]; |
| 5502 | |
Jeff Garzik | 644dd0c | 2005-10-03 15:55:19 -0400 | [diff] [blame] | 5503 | ata_scsi_scan_host(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5504 | } |
| 5505 | |
| 5506 | dev_set_drvdata(dev, host_set); |
| 5507 | |
| 5508 | VPRINTK("EXIT, returning %u\n", ent->n_ports); |
| 5509 | return ent->n_ports; /* success */ |
| 5510 | |
| 5511 | err_out: |
| 5512 | for (i = 0; i < count; i++) { |
Jeff Garzik | 6543bc0 | 2006-08-05 03:59:17 +0900 | [diff] [blame] | 5513 | struct ata_port *ap = host_set->ports[i]; |
Tejun Heo | 77f3f87 | 2006-08-05 03:59:19 +0900 | [diff] [blame] | 5514 | if (ap) { |
| 5515 | ap->ops->port_stop(ap); |
| 5516 | scsi_host_put(ap->host); |
| 5517 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5518 | } |
Randy Dunlap | 57f3bda | 2005-10-28 20:37:23 -0700 | [diff] [blame] | 5519 | err_free_ret: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5520 | kfree(host_set); |
| 5521 | VPRINTK("EXIT, returning 0\n"); |
| 5522 | return 0; |
| 5523 | } |
| 5524 | |
| 5525 | /** |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5526 | * ata_port_detach - Detach ATA port in prepration of device removal |
| 5527 | * @ap: ATA port to be detached |
| 5528 | * |
| 5529 | * Detach all ATA devices and the associated SCSI devices of @ap; |
| 5530 | * then, remove the associated SCSI host. @ap is guaranteed to |
| 5531 | * be quiescent on return from this function. |
| 5532 | * |
| 5533 | * LOCKING: |
| 5534 | * Kernel thread context (may sleep). |
| 5535 | */ |
| 5536 | void ata_port_detach(struct ata_port *ap) |
| 5537 | { |
| 5538 | unsigned long flags; |
| 5539 | int i; |
| 5540 | |
| 5541 | if (!ap->ops->error_handler) |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 5542 | goto skip_eh; |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5543 | |
| 5544 | /* tell EH we're leaving & flush EH */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5545 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 5546 | ap->pflags |= ATA_PFLAG_UNLOADING; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5547 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5548 | |
| 5549 | ata_port_wait_eh(ap); |
| 5550 | |
| 5551 | /* EH is now guaranteed to see UNLOADING, so no new device |
| 5552 | * will be attached. Disable all existing devices. |
| 5553 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5554 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5555 | |
| 5556 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 5557 | ata_dev_disable(&ap->device[i]); |
| 5558 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5559 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5560 | |
| 5561 | /* Final freeze & EH. All in-flight commands are aborted. EH |
| 5562 | * will be skipped and retrials will be terminated with bad |
| 5563 | * target. |
| 5564 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5565 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5566 | ata_port_freeze(ap); /* won't be thawed */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5567 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5568 | |
| 5569 | ata_port_wait_eh(ap); |
| 5570 | |
| 5571 | /* Flush hotplug task. The sequence is similar to |
| 5572 | * ata_port_flush_task(). |
| 5573 | */ |
| 5574 | flush_workqueue(ata_aux_wq); |
| 5575 | cancel_delayed_work(&ap->hotplug_task); |
| 5576 | flush_workqueue(ata_aux_wq); |
| 5577 | |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 5578 | skip_eh: |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5579 | /* remove the associated SCSI host */ |
| 5580 | scsi_remove_host(ap->host); |
| 5581 | } |
| 5582 | |
| 5583 | /** |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5584 | * ata_host_set_remove - PCI layer callback for device removal |
| 5585 | * @host_set: ATA host set that was removed |
| 5586 | * |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 5587 | * Unregister all objects associated with this host set. Free those |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5588 | * objects. |
| 5589 | * |
| 5590 | * LOCKING: |
| 5591 | * Inherited from calling layer (may sleep). |
| 5592 | */ |
| 5593 | |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5594 | void ata_host_set_remove(struct ata_host_set *host_set) |
| 5595 | { |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5596 | unsigned int i; |
| 5597 | |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5598 | for (i = 0; i < host_set->n_ports; i++) |
| 5599 | ata_port_detach(host_set->ports[i]); |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5600 | |
| 5601 | free_irq(host_set->irq, host_set); |
| 5602 | |
| 5603 | for (i = 0; i < host_set->n_ports; i++) { |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5604 | struct ata_port *ap = host_set->ports[i]; |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5605 | |
| 5606 | ata_scsi_release(ap->host); |
| 5607 | |
| 5608 | if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) { |
| 5609 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 5610 | |
| 5611 | if (ioaddr->cmd_addr == 0x1f0) |
| 5612 | release_region(0x1f0, 8); |
| 5613 | else if (ioaddr->cmd_addr == 0x170) |
| 5614 | release_region(0x170, 8); |
| 5615 | } |
| 5616 | |
| 5617 | scsi_host_put(ap->host); |
| 5618 | } |
| 5619 | |
| 5620 | if (host_set->ops->host_stop) |
| 5621 | host_set->ops->host_stop(host_set); |
| 5622 | |
| 5623 | kfree(host_set); |
| 5624 | } |
| 5625 | |
| 5626 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5627 | * ata_scsi_release - SCSI layer callback hook for host unload |
| 5628 | * @host: libata host to be unloaded |
| 5629 | * |
| 5630 | * Performs all duties necessary to shut down a libata port... |
| 5631 | * Kill port kthread, disable port, and release resources. |
| 5632 | * |
| 5633 | * LOCKING: |
| 5634 | * Inherited from SCSI layer. |
| 5635 | * |
| 5636 | * RETURNS: |
| 5637 | * One. |
| 5638 | */ |
| 5639 | |
| 5640 | int ata_scsi_release(struct Scsi_Host *host) |
| 5641 | { |
Jeff Garzik | 35bb94b | 2006-04-11 13:12:34 -0400 | [diff] [blame] | 5642 | struct ata_port *ap = ata_shost_to_port(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5643 | |
| 5644 | DPRINTK("ENTER\n"); |
| 5645 | |
| 5646 | ap->ops->port_disable(ap); |
Jeff Garzik | 6543bc0 | 2006-08-05 03:59:17 +0900 | [diff] [blame] | 5647 | ap->ops->port_stop(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5648 | |
| 5649 | DPRINTK("EXIT\n"); |
| 5650 | return 1; |
| 5651 | } |
| 5652 | |
| 5653 | /** |
| 5654 | * ata_std_ports - initialize ioaddr with standard port offsets. |
| 5655 | * @ioaddr: IO address structure to be initialized |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5656 | * |
| 5657 | * Utility function which initializes data_addr, error_addr, |
| 5658 | * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr, |
| 5659 | * device_addr, status_addr, and command_addr to standard offsets |
| 5660 | * relative to cmd_addr. |
| 5661 | * |
| 5662 | * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5663 | */ |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5665 | void ata_std_ports(struct ata_ioports *ioaddr) |
| 5666 | { |
| 5667 | ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA; |
| 5668 | ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR; |
| 5669 | ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE; |
| 5670 | ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT; |
| 5671 | ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL; |
| 5672 | ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM; |
| 5673 | ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH; |
| 5674 | ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE; |
| 5675 | ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS; |
| 5676 | ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD; |
| 5677 | } |
| 5678 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5679 | |
Jeff Garzik | 374b187 | 2005-08-30 05:42:52 -0400 | [diff] [blame] | 5680 | #ifdef CONFIG_PCI |
| 5681 | |
| 5682 | void ata_pci_host_stop (struct ata_host_set *host_set) |
| 5683 | { |
| 5684 | struct pci_dev *pdev = to_pci_dev(host_set->dev); |
| 5685 | |
| 5686 | pci_iounmap(pdev, host_set->mmio_base); |
| 5687 | } |
| 5688 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5689 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5690 | * ata_pci_remove_one - PCI layer callback for device removal |
| 5691 | * @pdev: PCI device that was removed |
| 5692 | * |
| 5693 | * PCI layer indicates to libata via this hook that |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 5694 | * hot-unplug or module unload event has occurred. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5695 | * Handle this by unregistering all objects associated |
| 5696 | * with this PCI device. Free those objects. Then finally |
| 5697 | * release PCI resources and disable device. |
| 5698 | * |
| 5699 | * LOCKING: |
| 5700 | * Inherited from PCI layer (may sleep). |
| 5701 | */ |
| 5702 | |
| 5703 | void ata_pci_remove_one (struct pci_dev *pdev) |
| 5704 | { |
| 5705 | struct device *dev = pci_dev_to_dev(pdev); |
| 5706 | struct ata_host_set *host_set = dev_get_drvdata(dev); |
Tejun Heo | f0eb62b | 2006-06-12 23:05:38 +0900 | [diff] [blame] | 5707 | struct ata_host_set *host_set2 = host_set->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5708 | |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5709 | ata_host_set_remove(host_set); |
Tejun Heo | f0eb62b | 2006-06-12 23:05:38 +0900 | [diff] [blame] | 5710 | if (host_set2) |
| 5711 | ata_host_set_remove(host_set2); |
| 5712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5713 | pci_release_regions(pdev); |
| 5714 | pci_disable_device(pdev); |
| 5715 | dev_set_drvdata(dev, NULL); |
| 5716 | } |
| 5717 | |
| 5718 | /* move to PCI subsystem */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5719 | int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5720 | { |
| 5721 | unsigned long tmp = 0; |
| 5722 | |
| 5723 | switch (bits->width) { |
| 5724 | case 1: { |
| 5725 | u8 tmp8 = 0; |
| 5726 | pci_read_config_byte(pdev, bits->reg, &tmp8); |
| 5727 | tmp = tmp8; |
| 5728 | break; |
| 5729 | } |
| 5730 | case 2: { |
| 5731 | u16 tmp16 = 0; |
| 5732 | pci_read_config_word(pdev, bits->reg, &tmp16); |
| 5733 | tmp = tmp16; |
| 5734 | break; |
| 5735 | } |
| 5736 | case 4: { |
| 5737 | u32 tmp32 = 0; |
| 5738 | pci_read_config_dword(pdev, bits->reg, &tmp32); |
| 5739 | tmp = tmp32; |
| 5740 | break; |
| 5741 | } |
| 5742 | |
| 5743 | default: |
| 5744 | return -EINVAL; |
| 5745 | } |
| 5746 | |
| 5747 | tmp &= bits->mask; |
| 5748 | |
| 5749 | return (tmp == bits->val) ? 1 : 0; |
| 5750 | } |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5751 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5752 | void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t state) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5753 | { |
| 5754 | pci_save_state(pdev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5755 | |
| 5756 | if (state.event == PM_EVENT_SUSPEND) { |
| 5757 | pci_disable_device(pdev); |
| 5758 | pci_set_power_state(pdev, PCI_D3hot); |
| 5759 | } |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5760 | } |
| 5761 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5762 | void ata_pci_device_do_resume(struct pci_dev *pdev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5763 | { |
| 5764 | pci_set_power_state(pdev, PCI_D0); |
| 5765 | pci_restore_state(pdev); |
| 5766 | pci_enable_device(pdev); |
| 5767 | pci_set_master(pdev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5768 | } |
| 5769 | |
| 5770 | int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state) |
| 5771 | { |
| 5772 | struct ata_host_set *host_set = dev_get_drvdata(&pdev->dev); |
| 5773 | int rc = 0; |
| 5774 | |
| 5775 | rc = ata_host_set_suspend(host_set, state); |
| 5776 | if (rc) |
| 5777 | return rc; |
| 5778 | |
| 5779 | if (host_set->next) { |
| 5780 | rc = ata_host_set_suspend(host_set->next, state); |
| 5781 | if (rc) { |
| 5782 | ata_host_set_resume(host_set); |
| 5783 | return rc; |
| 5784 | } |
| 5785 | } |
| 5786 | |
| 5787 | ata_pci_device_do_suspend(pdev, state); |
| 5788 | |
| 5789 | return 0; |
| 5790 | } |
| 5791 | |
| 5792 | int ata_pci_device_resume(struct pci_dev *pdev) |
| 5793 | { |
| 5794 | struct ata_host_set *host_set = dev_get_drvdata(&pdev->dev); |
| 5795 | |
| 5796 | ata_pci_device_do_resume(pdev); |
| 5797 | ata_host_set_resume(host_set); |
| 5798 | if (host_set->next) |
| 5799 | ata_host_set_resume(host_set->next); |
| 5800 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5801 | return 0; |
| 5802 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5803 | #endif /* CONFIG_PCI */ |
| 5804 | |
| 5805 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5806 | static int __init ata_init(void) |
| 5807 | { |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 5808 | ata_probe_timeout *= HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5809 | ata_wq = create_workqueue("ata"); |
| 5810 | if (!ata_wq) |
| 5811 | return -ENOMEM; |
| 5812 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 5813 | ata_aux_wq = create_singlethread_workqueue("ata_aux"); |
| 5814 | if (!ata_aux_wq) { |
| 5815 | destroy_workqueue(ata_wq); |
| 5816 | return -ENOMEM; |
| 5817 | } |
| 5818 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5819 | printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n"); |
| 5820 | return 0; |
| 5821 | } |
| 5822 | |
| 5823 | static void __exit ata_exit(void) |
| 5824 | { |
| 5825 | destroy_workqueue(ata_wq); |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 5826 | destroy_workqueue(ata_aux_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5827 | } |
| 5828 | |
| 5829 | module_init(ata_init); |
| 5830 | module_exit(ata_exit); |
| 5831 | |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 5832 | static unsigned long ratelimit_time; |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 5833 | static DEFINE_SPINLOCK(ata_ratelimit_lock); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 5834 | |
| 5835 | int ata_ratelimit(void) |
| 5836 | { |
| 5837 | int rc; |
| 5838 | unsigned long flags; |
| 5839 | |
| 5840 | spin_lock_irqsave(&ata_ratelimit_lock, flags); |
| 5841 | |
| 5842 | if (time_after(jiffies, ratelimit_time)) { |
| 5843 | rc = 1; |
| 5844 | ratelimit_time = jiffies + (HZ/5); |
| 5845 | } else |
| 5846 | rc = 0; |
| 5847 | |
| 5848 | spin_unlock_irqrestore(&ata_ratelimit_lock, flags); |
| 5849 | |
| 5850 | return rc; |
| 5851 | } |
| 5852 | |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 5853 | /** |
| 5854 | * ata_wait_register - wait until register value changes |
| 5855 | * @reg: IO-mapped register |
| 5856 | * @mask: Mask to apply to read register value |
| 5857 | * @val: Wait condition |
| 5858 | * @interval_msec: polling interval in milliseconds |
| 5859 | * @timeout_msec: timeout in milliseconds |
| 5860 | * |
| 5861 | * Waiting for some bits of register to change is a common |
| 5862 | * operation for ATA controllers. This function reads 32bit LE |
| 5863 | * IO-mapped register @reg and tests for the following condition. |
| 5864 | * |
| 5865 | * (*@reg & mask) != val |
| 5866 | * |
| 5867 | * If the condition is met, it returns; otherwise, the process is |
| 5868 | * repeated after @interval_msec until timeout. |
| 5869 | * |
| 5870 | * LOCKING: |
| 5871 | * Kernel thread context (may sleep) |
| 5872 | * |
| 5873 | * RETURNS: |
| 5874 | * The final register value. |
| 5875 | */ |
| 5876 | u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val, |
| 5877 | unsigned long interval_msec, |
| 5878 | unsigned long timeout_msec) |
| 5879 | { |
| 5880 | unsigned long timeout; |
| 5881 | u32 tmp; |
| 5882 | |
| 5883 | tmp = ioread32(reg); |
| 5884 | |
| 5885 | /* Calculate timeout _after_ the first read to make sure |
| 5886 | * preceding writes reach the controller before starting to |
| 5887 | * eat away the timeout. |
| 5888 | */ |
| 5889 | timeout = jiffies + (timeout_msec * HZ) / 1000; |
| 5890 | |
| 5891 | while ((tmp & mask) == val && time_before(jiffies, timeout)) { |
| 5892 | msleep(interval_msec); |
| 5893 | tmp = ioread32(reg); |
| 5894 | } |
| 5895 | |
| 5896 | return tmp; |
| 5897 | } |
| 5898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5899 | /* |
| 5900 | * libata is essentially a library of internal helper functions for |
| 5901 | * low-level ATA host controller drivers. As such, the API/ABI is |
| 5902 | * likely to change as new drivers are added and updated. |
| 5903 | * Do not depend on ABI/API stability. |
| 5904 | */ |
| 5905 | |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 5906 | EXPORT_SYMBOL_GPL(sata_deb_timing_normal); |
| 5907 | EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug); |
| 5908 | EXPORT_SYMBOL_GPL(sata_deb_timing_long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5909 | EXPORT_SYMBOL_GPL(ata_std_bios_param); |
| 5910 | EXPORT_SYMBOL_GPL(ata_std_ports); |
| 5911 | EXPORT_SYMBOL_GPL(ata_device_add); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5912 | EXPORT_SYMBOL_GPL(ata_port_detach); |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5913 | EXPORT_SYMBOL_GPL(ata_host_set_remove); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5914 | EXPORT_SYMBOL_GPL(ata_sg_init); |
| 5915 | EXPORT_SYMBOL_GPL(ata_sg_init_one); |
Tejun Heo | 9a1004d | 2006-05-31 18:27:52 +0900 | [diff] [blame] | 5916 | EXPORT_SYMBOL_GPL(ata_hsm_move); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5917 | EXPORT_SYMBOL_GPL(ata_qc_complete); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5918 | EXPORT_SYMBOL_GPL(ata_qc_complete_multiple); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5919 | EXPORT_SYMBOL_GPL(ata_qc_issue_prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5920 | EXPORT_SYMBOL_GPL(ata_tf_load); |
| 5921 | EXPORT_SYMBOL_GPL(ata_tf_read); |
| 5922 | EXPORT_SYMBOL_GPL(ata_noop_dev_select); |
| 5923 | EXPORT_SYMBOL_GPL(ata_std_dev_select); |
| 5924 | EXPORT_SYMBOL_GPL(ata_tf_to_fis); |
| 5925 | EXPORT_SYMBOL_GPL(ata_tf_from_fis); |
| 5926 | EXPORT_SYMBOL_GPL(ata_check_status); |
| 5927 | EXPORT_SYMBOL_GPL(ata_altstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5928 | EXPORT_SYMBOL_GPL(ata_exec_command); |
| 5929 | EXPORT_SYMBOL_GPL(ata_port_start); |
| 5930 | EXPORT_SYMBOL_GPL(ata_port_stop); |
Jeff Garzik | aa8f0dc | 2005-05-26 21:54:27 -0400 | [diff] [blame] | 5931 | EXPORT_SYMBOL_GPL(ata_host_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5932 | EXPORT_SYMBOL_GPL(ata_interrupt); |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 5933 | EXPORT_SYMBOL_GPL(ata_mmio_data_xfer); |
| 5934 | EXPORT_SYMBOL_GPL(ata_pio_data_xfer); |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5935 | EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5936 | EXPORT_SYMBOL_GPL(ata_qc_prep); |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 5937 | EXPORT_SYMBOL_GPL(ata_noop_qc_prep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5938 | EXPORT_SYMBOL_GPL(ata_bmdma_setup); |
| 5939 | EXPORT_SYMBOL_GPL(ata_bmdma_start); |
| 5940 | EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear); |
| 5941 | EXPORT_SYMBOL_GPL(ata_bmdma_status); |
| 5942 | EXPORT_SYMBOL_GPL(ata_bmdma_stop); |
Tejun Heo | 6d97dbd | 2006-05-15 20:58:24 +0900 | [diff] [blame] | 5943 | EXPORT_SYMBOL_GPL(ata_bmdma_freeze); |
| 5944 | EXPORT_SYMBOL_GPL(ata_bmdma_thaw); |
| 5945 | EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh); |
| 5946 | EXPORT_SYMBOL_GPL(ata_bmdma_error_handler); |
| 5947 | EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5948 | EXPORT_SYMBOL_GPL(ata_port_probe); |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 5949 | EXPORT_SYMBOL_GPL(sata_set_spd); |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 5950 | EXPORT_SYMBOL_GPL(sata_phy_debounce); |
| 5951 | EXPORT_SYMBOL_GPL(sata_phy_resume); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5952 | EXPORT_SYMBOL_GPL(sata_phy_reset); |
| 5953 | EXPORT_SYMBOL_GPL(__sata_phy_reset); |
| 5954 | EXPORT_SYMBOL_GPL(ata_bus_reset); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 5955 | EXPORT_SYMBOL_GPL(ata_std_prereset); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 5956 | EXPORT_SYMBOL_GPL(ata_std_softreset); |
| 5957 | EXPORT_SYMBOL_GPL(sata_std_hardreset); |
| 5958 | EXPORT_SYMBOL_GPL(ata_std_postreset); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 5959 | EXPORT_SYMBOL_GPL(ata_dev_revalidate); |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 5960 | EXPORT_SYMBOL_GPL(ata_dev_classify); |
| 5961 | EXPORT_SYMBOL_GPL(ata_dev_pair); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5962 | EXPORT_SYMBOL_GPL(ata_port_disable); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 5963 | EXPORT_SYMBOL_GPL(ata_ratelimit); |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 5964 | EXPORT_SYMBOL_GPL(ata_wait_register); |
Tejun Heo | 6f8b995 | 2006-01-24 17:05:21 +0900 | [diff] [blame] | 5965 | EXPORT_SYMBOL_GPL(ata_busy_sleep); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 5966 | EXPORT_SYMBOL_GPL(ata_port_queue_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5967 | EXPORT_SYMBOL_GPL(ata_scsi_ioctl); |
| 5968 | EXPORT_SYMBOL_GPL(ata_scsi_queuecmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5969 | EXPORT_SYMBOL_GPL(ata_scsi_slave_config); |
Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 5970 | EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 5971 | EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5972 | EXPORT_SYMBOL_GPL(ata_scsi_release); |
| 5973 | EXPORT_SYMBOL_GPL(ata_host_intr); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5974 | EXPORT_SYMBOL_GPL(sata_scr_valid); |
| 5975 | EXPORT_SYMBOL_GPL(sata_scr_read); |
| 5976 | EXPORT_SYMBOL_GPL(sata_scr_write); |
| 5977 | EXPORT_SYMBOL_GPL(sata_scr_write_flush); |
| 5978 | EXPORT_SYMBOL_GPL(ata_port_online); |
| 5979 | EXPORT_SYMBOL_GPL(ata_port_offline); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5980 | EXPORT_SYMBOL_GPL(ata_host_set_suspend); |
| 5981 | EXPORT_SYMBOL_GPL(ata_host_set_resume); |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 5982 | EXPORT_SYMBOL_GPL(ata_id_string); |
| 5983 | EXPORT_SYMBOL_GPL(ata_id_c_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5984 | EXPORT_SYMBOL_GPL(ata_scsi_simulate); |
| 5985 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 5986 | EXPORT_SYMBOL_GPL(ata_pio_need_iordy); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 5987 | EXPORT_SYMBOL_GPL(ata_timing_compute); |
| 5988 | EXPORT_SYMBOL_GPL(ata_timing_merge); |
| 5989 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5990 | #ifdef CONFIG_PCI |
| 5991 | EXPORT_SYMBOL_GPL(pci_test_config_bits); |
Jeff Garzik | 374b187 | 2005-08-30 05:42:52 -0400 | [diff] [blame] | 5992 | EXPORT_SYMBOL_GPL(ata_pci_host_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5993 | EXPORT_SYMBOL_GPL(ata_pci_init_native_mode); |
| 5994 | EXPORT_SYMBOL_GPL(ata_pci_init_one); |
| 5995 | EXPORT_SYMBOL_GPL(ata_pci_remove_one); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5996 | EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend); |
| 5997 | EXPORT_SYMBOL_GPL(ata_pci_device_do_resume); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5998 | EXPORT_SYMBOL_GPL(ata_pci_device_suspend); |
| 5999 | EXPORT_SYMBOL_GPL(ata_pci_device_resume); |
Alan Cox | 67951ad | 2006-03-22 15:55:54 +0000 | [diff] [blame] | 6000 | EXPORT_SYMBOL_GPL(ata_pci_default_filter); |
| 6001 | EXPORT_SYMBOL_GPL(ata_pci_clear_simplex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6002 | #endif /* CONFIG_PCI */ |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6003 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6004 | EXPORT_SYMBOL_GPL(ata_scsi_device_suspend); |
| 6005 | EXPORT_SYMBOL_GPL(ata_scsi_device_resume); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 6006 | |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 6007 | EXPORT_SYMBOL_GPL(ata_eng_timeout); |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 6008 | EXPORT_SYMBOL_GPL(ata_port_schedule_eh); |
| 6009 | EXPORT_SYMBOL_GPL(ata_port_abort); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 6010 | EXPORT_SYMBOL_GPL(ata_port_freeze); |
| 6011 | EXPORT_SYMBOL_GPL(ata_eh_freeze_port); |
| 6012 | EXPORT_SYMBOL_GPL(ata_eh_thaw_port); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 6013 | EXPORT_SYMBOL_GPL(ata_eh_qc_complete); |
| 6014 | EXPORT_SYMBOL_GPL(ata_eh_qc_retry); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 6015 | EXPORT_SYMBOL_GPL(ata_do_eh); |