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 | |
| 35 | #include <linux/config.h> |
| 36 | #include <linux/kernel.h> |
| 37 | #include <linux/module.h> |
| 38 | #include <linux/pci.h> |
| 39 | #include <linux/init.h> |
| 40 | #include <linux/list.h> |
| 41 | #include <linux/mm.h> |
| 42 | #include <linux/highmem.h> |
| 43 | #include <linux/spinlock.h> |
| 44 | #include <linux/blkdev.h> |
| 45 | #include <linux/delay.h> |
| 46 | #include <linux/timer.h> |
| 47 | #include <linux/interrupt.h> |
| 48 | #include <linux/completion.h> |
| 49 | #include <linux/suspend.h> |
| 50 | #include <linux/workqueue.h> |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 51 | #include <linux/jiffies.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 52 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <scsi/scsi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include "scsi_priv.h" |
Jeff Garzik | 193515d | 2005-11-07 00:59:37 -0500 | [diff] [blame] | 55 | #include <scsi/scsi_cmnd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <scsi/scsi_host.h> |
| 57 | #include <linux/libata.h> |
| 58 | #include <asm/io.h> |
| 59 | #include <asm/semaphore.h> |
| 60 | #include <asm/byteorder.h> |
| 61 | |
| 62 | #include "libata.h" |
| 63 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 64 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 65 | u16 heads, u16 sectors); |
| 66 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev); |
| 67 | static void ata_dev_xfermask(struct ata_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | static unsigned int ata_unique_id = 1; |
| 70 | static struct workqueue_struct *ata_wq; |
| 71 | |
Jeff Garzik | 418dc1f | 2006-03-11 20:50:08 -0500 | [diff] [blame] | 72 | int atapi_enabled = 1; |
Jeff Garzik | 1623c81 | 2005-08-30 03:37:42 -0400 | [diff] [blame] | 73 | module_param(atapi_enabled, int, 0444); |
| 74 | MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)"); |
| 75 | |
Albert Lee | 95de719 | 2006-04-04 10:57:18 +0800 | [diff] [blame] | 76 | int atapi_dmadir = 0; |
| 77 | module_param(atapi_dmadir, int, 0444); |
| 78 | MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)"); |
| 79 | |
Jeff Garzik | c3c013a | 2006-02-27 22:31:19 -0500 | [diff] [blame] | 80 | int libata_fua = 0; |
| 81 | module_param_named(fua, libata_fua, int, 0444); |
| 82 | MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)"); |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | MODULE_AUTHOR("Jeff Garzik"); |
| 85 | MODULE_DESCRIPTION("Library module for ATA devices"); |
| 86 | MODULE_LICENSE("GPL"); |
| 87 | MODULE_VERSION(DRV_VERSION); |
| 88 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 89 | |
| 90 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure |
| 92 | * @tf: Taskfile to convert |
| 93 | * @fis: Buffer into which data will output |
| 94 | * @pmp: Port multiplier port |
| 95 | * |
| 96 | * Converts a standard ATA taskfile to a Serial ATA |
| 97 | * FIS structure (Register - Host to Device). |
| 98 | * |
| 99 | * LOCKING: |
| 100 | * Inherited from caller. |
| 101 | */ |
| 102 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 103 | 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] | 104 | { |
| 105 | fis[0] = 0x27; /* Register - Host to Device FIS */ |
| 106 | fis[1] = (pmp & 0xf) | (1 << 7); /* Port multiplier number, |
| 107 | bit 7 indicates Command FIS */ |
| 108 | fis[2] = tf->command; |
| 109 | fis[3] = tf->feature; |
| 110 | |
| 111 | fis[4] = tf->lbal; |
| 112 | fis[5] = tf->lbam; |
| 113 | fis[6] = tf->lbah; |
| 114 | fis[7] = tf->device; |
| 115 | |
| 116 | fis[8] = tf->hob_lbal; |
| 117 | fis[9] = tf->hob_lbam; |
| 118 | fis[10] = tf->hob_lbah; |
| 119 | fis[11] = tf->hob_feature; |
| 120 | |
| 121 | fis[12] = tf->nsect; |
| 122 | fis[13] = tf->hob_nsect; |
| 123 | fis[14] = 0; |
| 124 | fis[15] = tf->ctl; |
| 125 | |
| 126 | fis[16] = 0; |
| 127 | fis[17] = 0; |
| 128 | fis[18] = 0; |
| 129 | fis[19] = 0; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * ata_tf_from_fis - Convert SATA FIS to ATA taskfile |
| 134 | * @fis: Buffer from which data will be input |
| 135 | * @tf: Taskfile to output |
| 136 | * |
Mark Lord | e12a1be | 2005-11-12 18:55:45 -0500 | [diff] [blame] | 137 | * Converts a serial ATA FIS structure to a standard ATA taskfile. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | * |
| 139 | * LOCKING: |
| 140 | * Inherited from caller. |
| 141 | */ |
| 142 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 143 | void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
| 145 | tf->command = fis[2]; /* status */ |
| 146 | tf->feature = fis[3]; /* error */ |
| 147 | |
| 148 | tf->lbal = fis[4]; |
| 149 | tf->lbam = fis[5]; |
| 150 | tf->lbah = fis[6]; |
| 151 | tf->device = fis[7]; |
| 152 | |
| 153 | tf->hob_lbal = fis[8]; |
| 154 | tf->hob_lbam = fis[9]; |
| 155 | tf->hob_lbah = fis[10]; |
| 156 | |
| 157 | tf->nsect = fis[12]; |
| 158 | tf->hob_nsect = fis[13]; |
| 159 | } |
| 160 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 161 | static const u8 ata_rw_cmds[] = { |
| 162 | /* pio multi */ |
| 163 | ATA_CMD_READ_MULTI, |
| 164 | ATA_CMD_WRITE_MULTI, |
| 165 | ATA_CMD_READ_MULTI_EXT, |
| 166 | ATA_CMD_WRITE_MULTI_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 167 | 0, |
| 168 | 0, |
| 169 | 0, |
| 170 | ATA_CMD_WRITE_MULTI_FUA_EXT, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 171 | /* pio */ |
| 172 | ATA_CMD_PIO_READ, |
| 173 | ATA_CMD_PIO_WRITE, |
| 174 | ATA_CMD_PIO_READ_EXT, |
| 175 | ATA_CMD_PIO_WRITE_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 176 | 0, |
| 177 | 0, |
| 178 | 0, |
| 179 | 0, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 180 | /* dma */ |
| 181 | ATA_CMD_READ, |
| 182 | ATA_CMD_WRITE, |
| 183 | ATA_CMD_READ_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 184 | ATA_CMD_WRITE_EXT, |
| 185 | 0, |
| 186 | 0, |
| 187 | 0, |
| 188 | ATA_CMD_WRITE_FUA_EXT |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 189 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | /** |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 192 | * ata_rwcmd_protocol - set taskfile r/w commands and protocol |
| 193 | * @qc: command to examine and configure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | * |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 195 | * Examine the device configuration and tf->flags to calculate |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 196 | * the proper read/write commands and protocol to use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | * |
| 198 | * LOCKING: |
| 199 | * caller. |
| 200 | */ |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 201 | int ata_rwcmd_protocol(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 203 | struct ata_taskfile *tf = &qc->tf; |
| 204 | struct ata_device *dev = qc->dev; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 205 | u8 cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 207 | int index, fua, lba48, write; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 208 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 209 | fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 210 | lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0; |
| 211 | write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0; |
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 | if (dev->flags & ATA_DFLAG_PIO) { |
| 214 | tf->protocol = ATA_PROT_PIO; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 215 | index = dev->multi_count ? 0 : 8; |
Alan Cox | 8d238e0 | 2006-01-17 20:50:31 +0000 | [diff] [blame] | 216 | } else if (lba48 && (qc->ap->flags & ATA_FLAG_PIO_LBA48)) { |
| 217 | /* Unable to use DMA due to host limitation */ |
| 218 | tf->protocol = ATA_PROT_PIO; |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 219 | index = dev->multi_count ? 0 : 8; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 220 | } else { |
| 221 | tf->protocol = ATA_PROT_DMA; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 222 | index = 16; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 225 | cmd = ata_rw_cmds[index + fua + lba48 + write]; |
| 226 | if (cmd) { |
| 227 | tf->command = cmd; |
| 228 | return 0; |
| 229 | } |
| 230 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 233 | /** |
| 234 | * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask |
| 235 | * @pio_mask: pio_mask |
| 236 | * @mwdma_mask: mwdma_mask |
| 237 | * @udma_mask: udma_mask |
| 238 | * |
| 239 | * Pack @pio_mask, @mwdma_mask and @udma_mask into a single |
| 240 | * unsigned int xfer_mask. |
| 241 | * |
| 242 | * LOCKING: |
| 243 | * None. |
| 244 | * |
| 245 | * RETURNS: |
| 246 | * Packed xfer_mask. |
| 247 | */ |
| 248 | static unsigned int ata_pack_xfermask(unsigned int pio_mask, |
| 249 | unsigned int mwdma_mask, |
| 250 | unsigned int udma_mask) |
| 251 | { |
| 252 | return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) | |
| 253 | ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) | |
| 254 | ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA); |
| 255 | } |
| 256 | |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 257 | /** |
| 258 | * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks |
| 259 | * @xfer_mask: xfer_mask to unpack |
| 260 | * @pio_mask: resulting pio_mask |
| 261 | * @mwdma_mask: resulting mwdma_mask |
| 262 | * @udma_mask: resulting udma_mask |
| 263 | * |
| 264 | * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask. |
| 265 | * Any NULL distination masks will be ignored. |
| 266 | */ |
| 267 | static void ata_unpack_xfermask(unsigned int xfer_mask, |
| 268 | unsigned int *pio_mask, |
| 269 | unsigned int *mwdma_mask, |
| 270 | unsigned int *udma_mask) |
| 271 | { |
| 272 | if (pio_mask) |
| 273 | *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO; |
| 274 | if (mwdma_mask) |
| 275 | *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA; |
| 276 | if (udma_mask) |
| 277 | *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA; |
| 278 | } |
| 279 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 280 | static const struct ata_xfer_ent { |
Tejun Heo | be9a50c | 2006-03-31 22:48:52 +0900 | [diff] [blame] | 281 | int shift, bits; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 282 | u8 base; |
| 283 | } ata_xfer_tbl[] = { |
| 284 | { ATA_SHIFT_PIO, ATA_BITS_PIO, XFER_PIO_0 }, |
| 285 | { ATA_SHIFT_MWDMA, ATA_BITS_MWDMA, XFER_MW_DMA_0 }, |
| 286 | { ATA_SHIFT_UDMA, ATA_BITS_UDMA, XFER_UDMA_0 }, |
| 287 | { -1, }, |
| 288 | }; |
| 289 | |
| 290 | /** |
| 291 | * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask |
| 292 | * @xfer_mask: xfer_mask of interest |
| 293 | * |
| 294 | * Return matching XFER_* value for @xfer_mask. Only the highest |
| 295 | * bit of @xfer_mask is considered. |
| 296 | * |
| 297 | * LOCKING: |
| 298 | * None. |
| 299 | * |
| 300 | * RETURNS: |
| 301 | * Matching XFER_* value, 0 if no match found. |
| 302 | */ |
| 303 | static u8 ata_xfer_mask2mode(unsigned int xfer_mask) |
| 304 | { |
| 305 | int highbit = fls(xfer_mask) - 1; |
| 306 | const struct ata_xfer_ent *ent; |
| 307 | |
| 308 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 309 | if (highbit >= ent->shift && highbit < ent->shift + ent->bits) |
| 310 | return ent->base + highbit - ent->shift; |
| 311 | return 0; |
| 312 | } |
| 313 | |
| 314 | /** |
| 315 | * ata_xfer_mode2mask - Find matching xfer_mask for XFER_* |
| 316 | * @xfer_mode: XFER_* of interest |
| 317 | * |
| 318 | * Return matching xfer_mask for @xfer_mode. |
| 319 | * |
| 320 | * LOCKING: |
| 321 | * None. |
| 322 | * |
| 323 | * RETURNS: |
| 324 | * Matching xfer_mask, 0 if no match found. |
| 325 | */ |
| 326 | static unsigned int ata_xfer_mode2mask(u8 xfer_mode) |
| 327 | { |
| 328 | const struct ata_xfer_ent *ent; |
| 329 | |
| 330 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 331 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
| 332 | return 1 << (ent->shift + xfer_mode - ent->base); |
| 333 | return 0; |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * ata_xfer_mode2shift - Find matching xfer_shift for XFER_* |
| 338 | * @xfer_mode: XFER_* of interest |
| 339 | * |
| 340 | * Return matching xfer_shift for @xfer_mode. |
| 341 | * |
| 342 | * LOCKING: |
| 343 | * None. |
| 344 | * |
| 345 | * RETURNS: |
| 346 | * Matching xfer_shift, -1 if no match found. |
| 347 | */ |
| 348 | static int ata_xfer_mode2shift(unsigned int xfer_mode) |
| 349 | { |
| 350 | const struct ata_xfer_ent *ent; |
| 351 | |
| 352 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 353 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
| 354 | return ent->shift; |
| 355 | return -1; |
| 356 | } |
| 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | /** |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 359 | * ata_mode_string - convert xfer_mask to string |
| 360 | * @xfer_mask: mask of bits supported; only highest bit counts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | * |
| 362 | * Determine string which represents the highest speed |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 363 | * (highest bit in @modemask). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | * |
| 365 | * LOCKING: |
| 366 | * None. |
| 367 | * |
| 368 | * RETURNS: |
| 369 | * Constant C string representing highest speed listed in |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 370 | * @mode_mask, or the constant C string "<n/a>". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | */ |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 372 | static const char *ata_mode_string(unsigned int xfer_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | { |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 374 | static const char * const xfer_mode_str[] = { |
| 375 | "PIO0", |
| 376 | "PIO1", |
| 377 | "PIO2", |
| 378 | "PIO3", |
| 379 | "PIO4", |
| 380 | "MWDMA0", |
| 381 | "MWDMA1", |
| 382 | "MWDMA2", |
| 383 | "UDMA/16", |
| 384 | "UDMA/25", |
| 385 | "UDMA/33", |
| 386 | "UDMA/44", |
| 387 | "UDMA/66", |
| 388 | "UDMA/100", |
| 389 | "UDMA/133", |
| 390 | "UDMA7", |
| 391 | }; |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 392 | int highbit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 394 | highbit = fls(xfer_mask) - 1; |
| 395 | if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str)) |
| 396 | return xfer_mode_str[highbit]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | return "<n/a>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
| 399 | |
Tejun Heo | 4c360c8 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 400 | static const char *sata_spd_string(unsigned int spd) |
| 401 | { |
| 402 | static const char * const spd_str[] = { |
| 403 | "1.5 Gbps", |
| 404 | "3.0 Gbps", |
| 405 | }; |
| 406 | |
| 407 | if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str)) |
| 408 | return "<unknown>"; |
| 409 | return spd_str[spd - 1]; |
| 410 | } |
| 411 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 412 | void ata_dev_disable(struct ata_device *dev) |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 413 | { |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 414 | if (ata_dev_enabled(dev)) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 415 | ata_dev_printk(dev, KERN_WARNING, "disabled\n"); |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 416 | dev->class++; |
| 417 | } |
| 418 | } |
| 419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | /** |
| 421 | * ata_pio_devchk - PATA device presence detection |
| 422 | * @ap: ATA channel to examine |
| 423 | * @device: Device to examine (starting at zero) |
| 424 | * |
| 425 | * This technique was originally described in |
| 426 | * Hale Landis's ATADRVR (www.ata-atapi.com), and |
| 427 | * later found its way into the ATA/ATAPI spec. |
| 428 | * |
| 429 | * Write a pattern to the ATA shadow registers, |
| 430 | * and if a device is present, it will respond by |
| 431 | * correctly storing and echoing back the |
| 432 | * ATA shadow register contents. |
| 433 | * |
| 434 | * LOCKING: |
| 435 | * caller. |
| 436 | */ |
| 437 | |
| 438 | static unsigned int ata_pio_devchk(struct ata_port *ap, |
| 439 | unsigned int device) |
| 440 | { |
| 441 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 442 | u8 nsect, lbal; |
| 443 | |
| 444 | ap->ops->dev_select(ap, device); |
| 445 | |
| 446 | outb(0x55, ioaddr->nsect_addr); |
| 447 | outb(0xaa, ioaddr->lbal_addr); |
| 448 | |
| 449 | outb(0xaa, ioaddr->nsect_addr); |
| 450 | outb(0x55, ioaddr->lbal_addr); |
| 451 | |
| 452 | outb(0x55, ioaddr->nsect_addr); |
| 453 | outb(0xaa, ioaddr->lbal_addr); |
| 454 | |
| 455 | nsect = inb(ioaddr->nsect_addr); |
| 456 | lbal = inb(ioaddr->lbal_addr); |
| 457 | |
| 458 | if ((nsect == 0x55) && (lbal == 0xaa)) |
| 459 | return 1; /* we found a device */ |
| 460 | |
| 461 | return 0; /* nothing found */ |
| 462 | } |
| 463 | |
| 464 | /** |
| 465 | * ata_mmio_devchk - PATA device presence detection |
| 466 | * @ap: ATA channel to examine |
| 467 | * @device: Device to examine (starting at zero) |
| 468 | * |
| 469 | * This technique was originally described in |
| 470 | * Hale Landis's ATADRVR (www.ata-atapi.com), and |
| 471 | * later found its way into the ATA/ATAPI spec. |
| 472 | * |
| 473 | * Write a pattern to the ATA shadow registers, |
| 474 | * and if a device is present, it will respond by |
| 475 | * correctly storing and echoing back the |
| 476 | * ATA shadow register contents. |
| 477 | * |
| 478 | * LOCKING: |
| 479 | * caller. |
| 480 | */ |
| 481 | |
| 482 | static unsigned int ata_mmio_devchk(struct ata_port *ap, |
| 483 | unsigned int device) |
| 484 | { |
| 485 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 486 | u8 nsect, lbal; |
| 487 | |
| 488 | ap->ops->dev_select(ap, device); |
| 489 | |
| 490 | writeb(0x55, (void __iomem *) ioaddr->nsect_addr); |
| 491 | writeb(0xaa, (void __iomem *) ioaddr->lbal_addr); |
| 492 | |
| 493 | writeb(0xaa, (void __iomem *) ioaddr->nsect_addr); |
| 494 | writeb(0x55, (void __iomem *) ioaddr->lbal_addr); |
| 495 | |
| 496 | writeb(0x55, (void __iomem *) ioaddr->nsect_addr); |
| 497 | writeb(0xaa, (void __iomem *) ioaddr->lbal_addr); |
| 498 | |
| 499 | nsect = readb((void __iomem *) ioaddr->nsect_addr); |
| 500 | lbal = readb((void __iomem *) ioaddr->lbal_addr); |
| 501 | |
| 502 | if ((nsect == 0x55) && (lbal == 0xaa)) |
| 503 | return 1; /* we found a device */ |
| 504 | |
| 505 | return 0; /* nothing found */ |
| 506 | } |
| 507 | |
| 508 | /** |
| 509 | * ata_devchk - PATA device presence detection |
| 510 | * @ap: ATA channel to examine |
| 511 | * @device: Device to examine (starting at zero) |
| 512 | * |
| 513 | * Dispatch ATA device presence detection, depending |
| 514 | * on whether we are using PIO or MMIO to talk to the |
| 515 | * ATA shadow registers. |
| 516 | * |
| 517 | * LOCKING: |
| 518 | * caller. |
| 519 | */ |
| 520 | |
| 521 | static unsigned int ata_devchk(struct ata_port *ap, |
| 522 | unsigned int device) |
| 523 | { |
| 524 | if (ap->flags & ATA_FLAG_MMIO) |
| 525 | return ata_mmio_devchk(ap, device); |
| 526 | return ata_pio_devchk(ap, device); |
| 527 | } |
| 528 | |
| 529 | /** |
| 530 | * ata_dev_classify - determine device type based on ATA-spec signature |
| 531 | * @tf: ATA taskfile register set for device to be identified |
| 532 | * |
| 533 | * Determine from taskfile register contents whether a device is |
| 534 | * ATA or ATAPI, as per "Signature and persistence" section |
| 535 | * of ATA/PI spec (volume 1, sect 5.14). |
| 536 | * |
| 537 | * LOCKING: |
| 538 | * None. |
| 539 | * |
| 540 | * RETURNS: |
| 541 | * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, or %ATA_DEV_UNKNOWN |
| 542 | * the event of failure. |
| 543 | */ |
| 544 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 545 | unsigned int ata_dev_classify(const struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | { |
| 547 | /* Apple's open source Darwin code hints that some devices only |
| 548 | * put a proper signature into the LBA mid/high registers, |
| 549 | * So, we only check those. It's sufficient for uniqueness. |
| 550 | */ |
| 551 | |
| 552 | if (((tf->lbam == 0) && (tf->lbah == 0)) || |
| 553 | ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) { |
| 554 | DPRINTK("found ATA device by sig\n"); |
| 555 | return ATA_DEV_ATA; |
| 556 | } |
| 557 | |
| 558 | if (((tf->lbam == 0x14) && (tf->lbah == 0xeb)) || |
| 559 | ((tf->lbam == 0x69) && (tf->lbah == 0x96))) { |
| 560 | DPRINTK("found ATAPI device by sig\n"); |
| 561 | return ATA_DEV_ATAPI; |
| 562 | } |
| 563 | |
| 564 | DPRINTK("unknown device\n"); |
| 565 | return ATA_DEV_UNKNOWN; |
| 566 | } |
| 567 | |
| 568 | /** |
| 569 | * ata_dev_try_classify - Parse returned ATA device signature |
| 570 | * @ap: ATA channel to examine |
| 571 | * @device: Device to examine (starting at zero) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 572 | * @r_err: Value of error register on completion |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | * |
| 574 | * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs, |
| 575 | * an ATA/ATAPI-defined set of values is placed in the ATA |
| 576 | * shadow registers, indicating the results of device detection |
| 577 | * and diagnostics. |
| 578 | * |
| 579 | * Select the ATA device, and read the values from the ATA shadow |
| 580 | * registers. Then parse according to the Error register value, |
| 581 | * and the spec-defined values examined by ata_dev_classify(). |
| 582 | * |
| 583 | * LOCKING: |
| 584 | * caller. |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 585 | * |
| 586 | * RETURNS: |
| 587 | * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | */ |
| 589 | |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 590 | static unsigned int |
| 591 | 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] | 592 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | struct ata_taskfile tf; |
| 594 | unsigned int class; |
| 595 | u8 err; |
| 596 | |
| 597 | ap->ops->dev_select(ap, device); |
| 598 | |
| 599 | memset(&tf, 0, sizeof(tf)); |
| 600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | ap->ops->tf_read(ap, &tf); |
Jeff Garzik | 0169e28 | 2005-10-29 21:25:10 -0400 | [diff] [blame] | 602 | err = tf.feature; |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 603 | if (r_err) |
| 604 | *r_err = err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
| 606 | /* see if device passed diags */ |
| 607 | if (err == 1) |
| 608 | /* do nothing */ ; |
| 609 | else if ((device == 0) && (err == 0x81)) |
| 610 | /* do nothing */ ; |
| 611 | else |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 612 | return ATA_DEV_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 614 | /* determine if device is ATA or ATAPI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | class = ata_dev_classify(&tf); |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | if (class == ATA_DEV_UNKNOWN) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 618 | return ATA_DEV_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0)) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 620 | return ATA_DEV_NONE; |
| 621 | return class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 625 | * ata_id_string - Convert IDENTIFY DEVICE page into string |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | * @id: IDENTIFY DEVICE results we will examine |
| 627 | * @s: string into which data is output |
| 628 | * @ofs: offset into identify device page |
| 629 | * @len: length of string to return. must be an even number. |
| 630 | * |
| 631 | * The strings in the IDENTIFY DEVICE page are broken up into |
| 632 | * 16-bit chunks. Run through the string, and output each |
| 633 | * 8-bit chunk linearly, regardless of platform. |
| 634 | * |
| 635 | * LOCKING: |
| 636 | * caller. |
| 637 | */ |
| 638 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 639 | void ata_id_string(const u16 *id, unsigned char *s, |
| 640 | unsigned int ofs, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | { |
| 642 | unsigned int c; |
| 643 | |
| 644 | while (len > 0) { |
| 645 | c = id[ofs] >> 8; |
| 646 | *s = c; |
| 647 | s++; |
| 648 | |
| 649 | c = id[ofs] & 0xff; |
| 650 | *s = c; |
| 651 | s++; |
| 652 | |
| 653 | ofs++; |
| 654 | len -= 2; |
| 655 | } |
| 656 | } |
| 657 | |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 658 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 659 | * ata_id_c_string - Convert IDENTIFY DEVICE page into C string |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 660 | * @id: IDENTIFY DEVICE results we will examine |
| 661 | * @s: string into which data is output |
| 662 | * @ofs: offset into identify device page |
| 663 | * @len: length of string to return. must be an odd number. |
| 664 | * |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 665 | * This function is identical to ata_id_string except that it |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 666 | * trims trailing spaces and terminates the resulting string with |
| 667 | * null. @len must be actual maximum length (even number) + 1. |
| 668 | * |
| 669 | * LOCKING: |
| 670 | * caller. |
| 671 | */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 672 | void ata_id_c_string(const u16 *id, unsigned char *s, |
| 673 | unsigned int ofs, unsigned int len) |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 674 | { |
| 675 | unsigned char *p; |
| 676 | |
| 677 | WARN_ON(!(len & 1)); |
| 678 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 679 | ata_id_string(id, s, ofs, len - 1); |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 680 | |
| 681 | p = s + strnlen(s, len - 1); |
| 682 | while (p > s && p[-1] == ' ') |
| 683 | p--; |
| 684 | *p = '\0'; |
| 685 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 686 | |
Tejun Heo | 2940740 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 687 | static u64 ata_id_n_sectors(const u16 *id) |
| 688 | { |
| 689 | if (ata_id_has_lba(id)) { |
| 690 | if (ata_id_has_lba48(id)) |
| 691 | return ata_id_u64(id, 100); |
| 692 | else |
| 693 | return ata_id_u32(id, 60); |
| 694 | } else { |
| 695 | if (ata_id_current_chs_valid(id)) |
| 696 | return ata_id_u32(id, 57); |
| 697 | else |
| 698 | return id[1] * id[3] * id[6]; |
| 699 | } |
| 700 | } |
| 701 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 702 | /** |
| 703 | * ata_noop_dev_select - Select device 0/1 on ATA bus |
| 704 | * @ap: ATA channel to manipulate |
| 705 | * @device: ATA device (numbered from zero) to select |
| 706 | * |
| 707 | * This function performs no actual function. |
| 708 | * |
| 709 | * May be used as the dev_select() entry in ata_port_operations. |
| 710 | * |
| 711 | * LOCKING: |
| 712 | * caller. |
| 713 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | void ata_noop_dev_select (struct ata_port *ap, unsigned int device) |
| 715 | { |
| 716 | } |
| 717 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | /** |
| 720 | * ata_std_dev_select - Select device 0/1 on ATA bus |
| 721 | * @ap: ATA channel to manipulate |
| 722 | * @device: ATA device (numbered from zero) to select |
| 723 | * |
| 724 | * Use the method defined in the ATA specification to |
| 725 | * make either device 0, or device 1, active on the |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 726 | * ATA channel. Works with both PIO and MMIO. |
| 727 | * |
| 728 | * May be used as the dev_select() entry in ata_port_operations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | * |
| 730 | * LOCKING: |
| 731 | * caller. |
| 732 | */ |
| 733 | |
| 734 | void ata_std_dev_select (struct ata_port *ap, unsigned int device) |
| 735 | { |
| 736 | u8 tmp; |
| 737 | |
| 738 | if (device == 0) |
| 739 | tmp = ATA_DEVICE_OBS; |
| 740 | else |
| 741 | tmp = ATA_DEVICE_OBS | ATA_DEV1; |
| 742 | |
| 743 | if (ap->flags & ATA_FLAG_MMIO) { |
| 744 | writeb(tmp, (void __iomem *) ap->ioaddr.device_addr); |
| 745 | } else { |
| 746 | outb(tmp, ap->ioaddr.device_addr); |
| 747 | } |
| 748 | ata_pause(ap); /* needed; also flushes, for mmio */ |
| 749 | } |
| 750 | |
| 751 | /** |
| 752 | * ata_dev_select - Select device 0/1 on ATA bus |
| 753 | * @ap: ATA channel to manipulate |
| 754 | * @device: ATA device (numbered from zero) to select |
| 755 | * @wait: non-zero to wait for Status register BSY bit to clear |
| 756 | * @can_sleep: non-zero if context allows sleeping |
| 757 | * |
| 758 | * Use the method defined in the ATA specification to |
| 759 | * make either device 0, or device 1, active on the |
| 760 | * ATA channel. |
| 761 | * |
| 762 | * This is a high-level version of ata_std_dev_select(), |
| 763 | * which additionally provides the services of inserting |
| 764 | * the proper pauses and status polling, where needed. |
| 765 | * |
| 766 | * LOCKING: |
| 767 | * caller. |
| 768 | */ |
| 769 | |
| 770 | void ata_dev_select(struct ata_port *ap, unsigned int device, |
| 771 | unsigned int wait, unsigned int can_sleep) |
| 772 | { |
| 773 | VPRINTK("ENTER, ata%u: device %u, wait %u\n", |
| 774 | ap->id, device, wait); |
| 775 | |
| 776 | if (wait) |
| 777 | ata_wait_idle(ap); |
| 778 | |
| 779 | ap->ops->dev_select(ap, device); |
| 780 | |
| 781 | if (wait) { |
| 782 | if (can_sleep && ap->device[device].class == ATA_DEV_ATAPI) |
| 783 | msleep(150); |
| 784 | ata_wait_idle(ap); |
| 785 | } |
| 786 | } |
| 787 | |
| 788 | /** |
| 789 | * ata_dump_id - IDENTIFY DEVICE info debugging output |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 790 | * @id: IDENTIFY DEVICE page to dump |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | * |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 792 | * Dump selected 16-bit words from the given IDENTIFY DEVICE |
| 793 | * page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | * |
| 795 | * LOCKING: |
| 796 | * caller. |
| 797 | */ |
| 798 | |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 799 | static inline void ata_dump_id(const u16 *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { |
| 801 | DPRINTK("49==0x%04x " |
| 802 | "53==0x%04x " |
| 803 | "63==0x%04x " |
| 804 | "64==0x%04x " |
| 805 | "75==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 806 | id[49], |
| 807 | id[53], |
| 808 | id[63], |
| 809 | id[64], |
| 810 | id[75]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | DPRINTK("80==0x%04x " |
| 812 | "81==0x%04x " |
| 813 | "82==0x%04x " |
| 814 | "83==0x%04x " |
| 815 | "84==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 816 | id[80], |
| 817 | id[81], |
| 818 | id[82], |
| 819 | id[83], |
| 820 | id[84]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | DPRINTK("88==0x%04x " |
| 822 | "93==0x%04x\n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 823 | id[88], |
| 824 | id[93]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
| 826 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 827 | /** |
| 828 | * ata_id_xfermask - Compute xfermask from the given IDENTIFY data |
| 829 | * @id: IDENTIFY data to compute xfer mask from |
| 830 | * |
| 831 | * Compute the xfermask for this device. This is not as trivial |
| 832 | * as it seems if we must consider early devices correctly. |
| 833 | * |
| 834 | * FIXME: pre IDE drive timing (do we care ?). |
| 835 | * |
| 836 | * LOCKING: |
| 837 | * None. |
| 838 | * |
| 839 | * RETURNS: |
| 840 | * Computed xfermask |
| 841 | */ |
| 842 | static unsigned int ata_id_xfermask(const u16 *id) |
| 843 | { |
| 844 | unsigned int pio_mask, mwdma_mask, udma_mask; |
| 845 | |
| 846 | /* Usual case. Word 53 indicates word 64 is valid */ |
| 847 | if (id[ATA_ID_FIELD_VALID] & (1 << 1)) { |
| 848 | pio_mask = id[ATA_ID_PIO_MODES] & 0x03; |
| 849 | pio_mask <<= 3; |
| 850 | pio_mask |= 0x7; |
| 851 | } else { |
| 852 | /* If word 64 isn't valid then Word 51 high byte holds |
| 853 | * the PIO timing number for the maximum. Turn it into |
| 854 | * a mask. |
| 855 | */ |
| 856 | pio_mask = (2 << (id[ATA_ID_OLD_PIO_MODES] & 0xFF)) - 1 ; |
| 857 | |
| 858 | /* But wait.. there's more. Design your standards by |
| 859 | * committee and you too can get a free iordy field to |
| 860 | * process. However its the speeds not the modes that |
| 861 | * are supported... Note drivers using the timing API |
| 862 | * will get this right anyway |
| 863 | */ |
| 864 | } |
| 865 | |
| 866 | mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07; |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 867 | |
| 868 | udma_mask = 0; |
| 869 | if (id[ATA_ID_FIELD_VALID] & (1 << 2)) |
| 870 | udma_mask = id[ATA_ID_UDMA_MODES] & 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 871 | |
| 872 | return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 873 | } |
| 874 | |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 875 | /** |
| 876 | * ata_port_queue_task - Queue port_task |
| 877 | * @ap: The ata_port to queue port_task for |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 878 | * @fn: workqueue function to be scheduled |
| 879 | * @data: data value to pass to workqueue function |
| 880 | * @delay: delay time for workqueue function |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 881 | * |
| 882 | * Schedule @fn(@data) for execution after @delay jiffies using |
| 883 | * port_task. There is one port_task per port and it's the |
| 884 | * user(low level driver)'s responsibility to make sure that only |
| 885 | * one task is active at any given time. |
| 886 | * |
| 887 | * libata core layer takes care of synchronization between |
| 888 | * port_task and EH. ata_port_queue_task() may be ignored for EH |
| 889 | * synchronization. |
| 890 | * |
| 891 | * LOCKING: |
| 892 | * Inherited from caller. |
| 893 | */ |
| 894 | void ata_port_queue_task(struct ata_port *ap, void (*fn)(void *), void *data, |
| 895 | unsigned long delay) |
| 896 | { |
| 897 | int rc; |
| 898 | |
Tejun Heo | 2e755f6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 899 | if (ap->flags & ATA_FLAG_FLUSH_PORT_TASK) |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 900 | return; |
| 901 | |
| 902 | PREPARE_WORK(&ap->port_task, fn, data); |
| 903 | |
| 904 | if (!delay) |
| 905 | rc = queue_work(ata_wq, &ap->port_task); |
| 906 | else |
| 907 | rc = queue_delayed_work(ata_wq, &ap->port_task, delay); |
| 908 | |
| 909 | /* rc == 0 means that another user is using port task */ |
| 910 | WARN_ON(rc == 0); |
| 911 | } |
| 912 | |
| 913 | /** |
| 914 | * ata_port_flush_task - Flush port_task |
| 915 | * @ap: The ata_port to flush port_task for |
| 916 | * |
| 917 | * After this function completes, port_task is guranteed not to |
| 918 | * be running or scheduled. |
| 919 | * |
| 920 | * LOCKING: |
| 921 | * Kernel thread context (may sleep) |
| 922 | */ |
| 923 | void ata_port_flush_task(struct ata_port *ap) |
| 924 | { |
| 925 | unsigned long flags; |
| 926 | |
| 927 | DPRINTK("ENTER\n"); |
| 928 | |
| 929 | spin_lock_irqsave(&ap->host_set->lock, flags); |
Tejun Heo | 2e755f6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 930 | ap->flags |= ATA_FLAG_FLUSH_PORT_TASK; |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 931 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 932 | |
| 933 | DPRINTK("flush #1\n"); |
| 934 | flush_workqueue(ata_wq); |
| 935 | |
| 936 | /* |
| 937 | * At this point, if a task is running, it's guaranteed to see |
| 938 | * the FLUSH flag; thus, it will never queue pio tasks again. |
| 939 | * Cancel and flush. |
| 940 | */ |
| 941 | if (!cancel_delayed_work(&ap->port_task)) { |
| 942 | DPRINTK("flush #2\n"); |
| 943 | flush_workqueue(ata_wq); |
| 944 | } |
| 945 | |
| 946 | spin_lock_irqsave(&ap->host_set->lock, flags); |
Tejun Heo | 2e755f6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 947 | ap->flags &= ~ATA_FLAG_FLUSH_PORT_TASK; |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 948 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 949 | |
| 950 | DPRINTK("EXIT\n"); |
| 951 | } |
| 952 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 953 | void ata_qc_complete_internal(struct ata_queued_cmd *qc) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 954 | { |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 955 | struct completion *waiting = qc->private_data; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 956 | |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 957 | complete(waiting); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | /** |
| 961 | * ata_exec_internal - execute libata internal command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 962 | * @dev: Device to which the command is sent |
| 963 | * @tf: Taskfile registers for the command and the result |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 964 | * @cdb: CDB for packet command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 965 | * @dma_dir: Data tranfer direction of the command |
| 966 | * @buf: Data buffer of the command |
| 967 | * @buflen: Length of data buffer |
| 968 | * |
| 969 | * Executes libata internal command with timeout. @tf contains |
| 970 | * command on entry and result on return. Timeout and error |
| 971 | * conditions are reported via return value. No recovery action |
| 972 | * is taken after a command times out. It's caller's duty to |
| 973 | * clean up after timeout. |
| 974 | * |
| 975 | * LOCKING: |
| 976 | * None. Should be called with kernel context, might sleep. |
| 977 | */ |
| 978 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 979 | unsigned ata_exec_internal(struct ata_device *dev, |
Tejun Heo | 1ad8e7f | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 980 | struct ata_taskfile *tf, const u8 *cdb, |
| 981 | int dma_dir, void *buf, unsigned int buflen) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 982 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 983 | struct ata_port *ap = dev->ap; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 984 | u8 command = tf->command; |
| 985 | struct ata_queued_cmd *qc; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 986 | unsigned int tag, preempted_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 987 | u32 preempted_sactive, preempted_qc_active; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 988 | DECLARE_COMPLETION(wait); |
| 989 | unsigned long flags; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 990 | unsigned int err_mask; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 991 | int rc; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 992 | |
| 993 | spin_lock_irqsave(&ap->host_set->lock, flags); |
| 994 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 995 | /* no internal command while frozen */ |
| 996 | if (ap->flags & ATA_FLAG_FROZEN) { |
| 997 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 998 | return AC_ERR_SYSTEM; |
| 999 | } |
| 1000 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1001 | /* initialize internal qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1002 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1003 | /* XXX: Tag 0 is used for drivers with legacy EH as some |
| 1004 | * drivers choke if any other tag is given. This breaks |
| 1005 | * ata_tag_internal() test for those drivers. Don't use new |
| 1006 | * EH stuff without converting to it. |
| 1007 | */ |
| 1008 | if (ap->ops->error_handler) |
| 1009 | tag = ATA_TAG_INTERNAL; |
| 1010 | else |
| 1011 | tag = 0; |
| 1012 | |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 1013 | if (test_and_set_bit(tag, &ap->qc_allocated)) |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1014 | BUG(); |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 1015 | qc = __ata_qc_from_tag(ap, tag); |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1016 | |
| 1017 | qc->tag = tag; |
| 1018 | qc->scsicmd = NULL; |
| 1019 | qc->ap = ap; |
| 1020 | qc->dev = dev; |
| 1021 | ata_qc_reinit(qc); |
| 1022 | |
| 1023 | preempted_tag = ap->active_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1024 | preempted_sactive = ap->sactive; |
| 1025 | preempted_qc_active = ap->qc_active; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1026 | ap->active_tag = ATA_TAG_POISON; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1027 | ap->sactive = 0; |
| 1028 | ap->qc_active = 0; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1029 | |
| 1030 | /* prepare & issue qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1031 | qc->tf = *tf; |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1032 | if (cdb) |
| 1033 | memcpy(qc->cdb, cdb, ATAPI_CDB_LEN); |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1034 | qc->flags |= ATA_QCFLAG_RESULT_TF; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1035 | qc->dma_dir = dma_dir; |
| 1036 | if (dma_dir != DMA_NONE) { |
| 1037 | ata_sg_init_one(qc, buf, buflen); |
| 1038 | qc->nsect = buflen / ATA_SECT_SIZE; |
| 1039 | } |
| 1040 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1041 | qc->private_data = &wait; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1042 | qc->complete_fn = ata_qc_complete_internal; |
| 1043 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 1044 | ata_qc_issue(qc); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1045 | |
| 1046 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 1047 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1048 | rc = wait_for_completion_timeout(&wait, ATA_TMOUT_INTERNAL); |
Albert Lee | 41ade50 | 2006-03-14 11:19:04 +0800 | [diff] [blame] | 1049 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1050 | ata_port_flush_task(ap); |
| 1051 | |
| 1052 | if (!rc) { |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1053 | spin_lock_irqsave(&ap->host_set->lock, flags); |
| 1054 | |
| 1055 | /* We're racing with irq here. If we lose, the |
| 1056 | * following test prevents us from completing the qc |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1057 | * twice. If we win, the port is frozen and will be |
| 1058 | * cleaned up by ->post_internal_cmd(). |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1059 | */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1060 | if (qc->flags & ATA_QCFLAG_ACTIVE) { |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1061 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 1062 | |
| 1063 | if (ap->ops->error_handler) |
| 1064 | ata_port_freeze(ap); |
| 1065 | else |
| 1066 | ata_qc_complete(qc); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1067 | |
| 1068 | ata_dev_printk(dev, KERN_WARNING, |
| 1069 | "qc timeout (cmd 0x%x)\n", command); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1070 | } |
| 1071 | |
| 1072 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 1073 | } |
| 1074 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1075 | /* do post_internal_cmd */ |
| 1076 | if (ap->ops->post_internal_cmd) |
| 1077 | ap->ops->post_internal_cmd(qc); |
| 1078 | |
| 1079 | if (qc->flags & ATA_QCFLAG_FAILED && !qc->err_mask) { |
| 1080 | ata_dev_printk(dev, KERN_WARNING, "zero err_mask for failed " |
| 1081 | "internal command, assuming AC_ERR_OTHER\n"); |
| 1082 | qc->err_mask |= AC_ERR_OTHER; |
| 1083 | } |
| 1084 | |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1085 | /* finish up */ |
| 1086 | spin_lock_irqsave(&ap->host_set->lock, flags); |
| 1087 | |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1088 | *tf = qc->result_tf; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1089 | err_mask = qc->err_mask; |
| 1090 | |
| 1091 | ata_qc_free(qc); |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1092 | ap->active_tag = preempted_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1093 | ap->sactive = preempted_sactive; |
| 1094 | ap->qc_active = preempted_qc_active; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1095 | |
Tejun Heo | 1f7dd3e9 | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1096 | /* XXX - Some LLDDs (sata_mv) disable port on command failure. |
| 1097 | * Until those drivers are fixed, we detect the condition |
| 1098 | * here, fail the command with AC_ERR_SYSTEM and reenable the |
| 1099 | * port. |
| 1100 | * |
| 1101 | * Note that this doesn't change any behavior as internal |
| 1102 | * command failure results in disabling the device in the |
| 1103 | * higher layer for LLDDs without new reset/EH callbacks. |
| 1104 | * |
| 1105 | * Kill the following code as soon as those drivers are fixed. |
| 1106 | */ |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1107 | if (ap->flags & ATA_FLAG_DISABLED) { |
Tejun Heo | 1f7dd3e9 | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1108 | err_mask |= AC_ERR_SYSTEM; |
| 1109 | ata_port_probe(ap); |
| 1110 | } |
| 1111 | |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1112 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 1113 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1114 | return err_mask; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1115 | } |
| 1116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | /** |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1118 | * ata_pio_need_iordy - check if iordy needed |
| 1119 | * @adev: ATA device |
| 1120 | * |
| 1121 | * Check if the current speed of the device requires IORDY. Used |
| 1122 | * by various controllers for chip configuration. |
| 1123 | */ |
| 1124 | |
| 1125 | unsigned int ata_pio_need_iordy(const struct ata_device *adev) |
| 1126 | { |
| 1127 | int pio; |
| 1128 | int speed = adev->pio_mode - XFER_PIO_0; |
| 1129 | |
| 1130 | if (speed < 2) |
| 1131 | return 0; |
| 1132 | if (speed > 2) |
| 1133 | return 1; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1134 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1135 | /* If we have no drive specific rule, then PIO 2 is non IORDY */ |
| 1136 | |
| 1137 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */ |
| 1138 | pio = adev->id[ATA_ID_EIDE_PIO]; |
| 1139 | /* Is the speed faster than the drive allows non IORDY ? */ |
| 1140 | if (pio) { |
| 1141 | /* This is cycle times not frequency - watch the logic! */ |
| 1142 | if (pio > 240) /* PIO2 is 240nS per cycle */ |
| 1143 | return 1; |
| 1144 | return 0; |
| 1145 | } |
| 1146 | } |
| 1147 | return 0; |
| 1148 | } |
| 1149 | |
| 1150 | /** |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1151 | * ata_dev_read_id - Read ID data from the specified device |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1152 | * @dev: target device |
| 1153 | * @p_class: pointer to class of the target device (may be changed) |
| 1154 | * @post_reset: is this read ID post-reset? |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 1155 | * @id: buffer to read IDENTIFY data into |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1156 | * |
| 1157 | * Read ID data from the specified device. ATA_CMD_ID_ATA is |
| 1158 | * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 1159 | * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS |
| 1160 | * for pre-ATA4 drives. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1161 | * |
| 1162 | * LOCKING: |
| 1163 | * Kernel thread context (may sleep) |
| 1164 | * |
| 1165 | * RETURNS: |
| 1166 | * 0 on success, -errno otherwise. |
| 1167 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1168 | static int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class, |
| 1169 | int post_reset, u16 *id) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1170 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1171 | struct ata_port *ap = dev->ap; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1172 | unsigned int class = *p_class; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1173 | struct ata_taskfile tf; |
| 1174 | unsigned int err_mask = 0; |
| 1175 | const char *reason; |
| 1176 | int rc; |
| 1177 | |
| 1178 | DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno); |
| 1179 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1180 | ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */ |
| 1181 | |
| 1182 | retry: |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1183 | ata_tf_init(dev, &tf); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1184 | |
| 1185 | switch (class) { |
| 1186 | case ATA_DEV_ATA: |
| 1187 | tf.command = ATA_CMD_ID_ATA; |
| 1188 | break; |
| 1189 | case ATA_DEV_ATAPI: |
| 1190 | tf.command = ATA_CMD_ID_ATAPI; |
| 1191 | break; |
| 1192 | default: |
| 1193 | rc = -ENODEV; |
| 1194 | reason = "unsupported class"; |
| 1195 | goto err_out; |
| 1196 | } |
| 1197 | |
| 1198 | tf.protocol = ATA_PROT_PIO; |
| 1199 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1200 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE, |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1201 | id, sizeof(id[0]) * ATA_ID_WORDS); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1202 | if (err_mask) { |
| 1203 | rc = -EIO; |
| 1204 | reason = "I/O error"; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1205 | goto err_out; |
| 1206 | } |
| 1207 | |
| 1208 | swap_buf_le16(id, ATA_ID_WORDS); |
| 1209 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1210 | /* sanity check */ |
Alan Cox | 692785e | 2006-03-27 18:49:19 +0100 | [diff] [blame] | 1211 | 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] | 1212 | rc = -EINVAL; |
| 1213 | reason = "device reports illegal type"; |
| 1214 | goto err_out; |
| 1215 | } |
| 1216 | |
| 1217 | if (post_reset && class == ATA_DEV_ATA) { |
| 1218 | /* |
| 1219 | * The exact sequence expected by certain pre-ATA4 drives is: |
| 1220 | * SRST RESET |
| 1221 | * IDENTIFY |
| 1222 | * INITIALIZE DEVICE PARAMETERS |
| 1223 | * anything else.. |
| 1224 | * Some drives were very specific about that exact sequence. |
| 1225 | */ |
| 1226 | if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1227 | err_mask = ata_dev_init_params(dev, id[3], id[6]); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1228 | if (err_mask) { |
| 1229 | rc = -EIO; |
| 1230 | reason = "INIT_DEV_PARAMS failed"; |
| 1231 | goto err_out; |
| 1232 | } |
| 1233 | |
| 1234 | /* current CHS translation info (id[53-58]) might be |
| 1235 | * changed. reread the identify device info. |
| 1236 | */ |
| 1237 | post_reset = 0; |
| 1238 | goto retry; |
| 1239 | } |
| 1240 | } |
| 1241 | |
| 1242 | *p_class = class; |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 1243 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1244 | return 0; |
| 1245 | |
| 1246 | err_out: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1247 | ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY " |
| 1248 | "(%s, err_mask=0x%x)\n", reason, err_mask); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1249 | return rc; |
| 1250 | } |
| 1251 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1252 | static inline u8 ata_dev_knobble(struct ata_device *dev) |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1253 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1254 | 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] | 1255 | } |
| 1256 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1257 | static void ata_dev_config_ncq(struct ata_device *dev, |
| 1258 | char *desc, size_t desc_sz) |
| 1259 | { |
| 1260 | struct ata_port *ap = dev->ap; |
| 1261 | int hdepth = 0, ddepth = ata_id_queue_depth(dev->id); |
| 1262 | |
| 1263 | if (!ata_id_has_ncq(dev->id)) { |
| 1264 | desc[0] = '\0'; |
| 1265 | return; |
| 1266 | } |
| 1267 | |
| 1268 | if (ap->flags & ATA_FLAG_NCQ) { |
| 1269 | hdepth = min(ap->host->can_queue, ATA_MAX_QUEUE - 1); |
| 1270 | dev->flags |= ATA_DFLAG_NCQ; |
| 1271 | } |
| 1272 | |
| 1273 | if (hdepth >= ddepth) |
| 1274 | snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth); |
| 1275 | else |
| 1276 | snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth); |
| 1277 | } |
| 1278 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1279 | /** |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1280 | * ata_dev_configure - Configure the specified ATA/ATAPI device |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1281 | * @dev: Target device to configure |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1282 | * @print_info: Enable device info printout |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | * |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1284 | * Configure @dev according to @dev->id. Generic and low-level |
| 1285 | * driver specific fixups are also applied. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | * |
| 1287 | * LOCKING: |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1288 | * Kernel thread context (may sleep) |
| 1289 | * |
| 1290 | * RETURNS: |
| 1291 | * 0 on success, -errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1293 | static int ata_dev_configure(struct ata_device *dev, int print_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1295 | struct ata_port *ap = dev->ap; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1296 | const u16 *id = dev->id; |
Tejun Heo | ff8854b | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1297 | unsigned int xfer_mask; |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 1298 | int i, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1300 | if (!ata_dev_enabled(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | DPRINTK("ENTER/EXIT (host %u, dev %u) -- nodev\n", |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1302 | ap->id, dev->devno); |
| 1303 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | } |
| 1305 | |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1306 | DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 1308 | /* print device capabilities */ |
| 1309 | if (print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1310 | ata_dev_printk(dev, KERN_DEBUG, "cfg 49:%04x 82:%04x 83:%04x " |
| 1311 | "84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n", |
| 1312 | id[49], id[82], id[83], id[84], |
| 1313 | id[85], id[86], id[87], id[88]); |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 1314 | |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1315 | /* initialize to-be-configured parameters */ |
Tejun Heo | ea1dd4e | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1316 | dev->flags &= ~ATA_DFLAG_CFG_MASK; |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1317 | dev->max_sectors = 0; |
| 1318 | dev->cdb_len = 0; |
| 1319 | dev->n_sectors = 0; |
| 1320 | dev->cylinders = 0; |
| 1321 | dev->heads = 0; |
| 1322 | dev->sectors = 0; |
| 1323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | /* |
| 1325 | * common ATA, ATAPI feature tests |
| 1326 | */ |
| 1327 | |
Tejun Heo | ff8854b | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1328 | /* find max transfer mode; for printk only */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1329 | xfer_mask = ata_id_xfermask(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1331 | ata_dump_id(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | |
| 1333 | /* ATA-specific feature tests */ |
| 1334 | if (dev->class == ATA_DEV_ATA) { |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1335 | dev->n_sectors = ata_id_n_sectors(id); |
Tejun Heo | 2940740 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1336 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1337 | if (ata_id_has_lba(id)) { |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1338 | const char *lba_desc; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1339 | char ncq_desc[20]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1340 | |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1341 | lba_desc = "LBA"; |
| 1342 | dev->flags |= ATA_DFLAG_LBA; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1343 | if (ata_id_has_lba48(id)) { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1344 | dev->flags |= ATA_DFLAG_LBA48; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1345 | lba_desc = "LBA48"; |
| 1346 | } |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1347 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1348 | /* config NCQ */ |
| 1349 | ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc)); |
| 1350 | |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1351 | /* print device info to dmesg */ |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1352 | if (print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1353 | ata_dev_printk(dev, KERN_INFO, "ATA-%d, " |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1354 | "max %s, %Lu sectors: %s %s\n", |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1355 | ata_id_major_version(id), |
| 1356 | ata_mode_string(xfer_mask), |
| 1357 | (unsigned long long)dev->n_sectors, |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 1358 | lba_desc, ncq_desc); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1359 | } else { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1360 | /* CHS */ |
| 1361 | |
| 1362 | /* Default translation */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1363 | dev->cylinders = id[1]; |
| 1364 | dev->heads = id[3]; |
| 1365 | dev->sectors = id[6]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1366 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1367 | if (ata_id_current_chs_valid(id)) { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1368 | /* Current CHS translation is valid. */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1369 | dev->cylinders = id[54]; |
| 1370 | dev->heads = id[55]; |
| 1371 | dev->sectors = id[56]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 1372 | } |
| 1373 | |
| 1374 | /* print device info to dmesg */ |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1375 | if (print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1376 | ata_dev_printk(dev, KERN_INFO, "ATA-%d, " |
| 1377 | "max %s, %Lu sectors: CHS %u/%u/%u\n", |
| 1378 | ata_id_major_version(id), |
| 1379 | ata_mode_string(xfer_mask), |
| 1380 | (unsigned long long)dev->n_sectors, |
| 1381 | dev->cylinders, dev->heads, dev->sectors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 1384 | if (dev->id[59] & 0x100) { |
| 1385 | dev->multi_count = dev->id[59] & 0xff; |
| 1386 | DPRINTK("ata%u: dev %u multi count %u\n", |
Albert Lee | 999bb6f | 2006-03-25 18:07:48 +0800 | [diff] [blame] | 1387 | ap->id, dev->devno, dev->multi_count); |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 1388 | } |
| 1389 | |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 1390 | dev->cdb_len = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | /* ATAPI-specific feature tests */ |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 1394 | else if (dev->class == ATA_DEV_ATAPI) { |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 1395 | char *cdb_intr_string = ""; |
| 1396 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 1397 | rc = atapi_cdb_len(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | if ((rc < 12) || (rc > ATAPI_CDB_LEN)) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1399 | ata_dev_printk(dev, KERN_WARNING, |
| 1400 | "unsupported CDB len\n"); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1401 | rc = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | goto err_out_nosup; |
| 1403 | } |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 1404 | dev->cdb_len = (unsigned int) rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 1406 | if (ata_id_cdb_intr(dev->id)) { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 1407 | dev->flags |= ATA_DFLAG_CDB_INTR; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 1408 | cdb_intr_string = ", CDB intr"; |
| 1409 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 1410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | /* print device info to dmesg */ |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1412 | if (print_info) |
Tejun Heo | 12436c3 | 2006-05-15 20:59:15 +0900 | [diff] [blame] | 1413 | ata_dev_printk(dev, KERN_INFO, "ATAPI, max %s%s\n", |
| 1414 | ata_mode_string(xfer_mask), |
| 1415 | cdb_intr_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | } |
| 1417 | |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 1418 | ap->host->max_cmd_len = 0; |
| 1419 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1420 | ap->host->max_cmd_len = max_t(unsigned int, |
| 1421 | ap->host->max_cmd_len, |
| 1422 | ap->device[i].cdb_len); |
| 1423 | |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1424 | /* limit bridge transfers to udma5, 200 sectors */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1425 | if (ata_dev_knobble(dev)) { |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 1426 | if (print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1427 | ata_dev_printk(dev, KERN_INFO, |
| 1428 | "applying bridge limits\n"); |
Tejun Heo | 5a52913 | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 1429 | dev->udma_mask &= ATA_UDMA5; |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1430 | dev->max_sectors = ATA_MAX_SECTORS; |
| 1431 | } |
| 1432 | |
| 1433 | if (ap->ops->dev_config) |
| 1434 | ap->ops->dev_config(ap, dev); |
| 1435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | DPRINTK("EXIT, drv_stat = 0x%x\n", ata_chk_status(ap)); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1437 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | |
| 1439 | err_out_nosup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | DPRINTK("EXIT, err\n"); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1441 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | /** |
| 1445 | * ata_bus_probe - Reset and probe ATA bus |
| 1446 | * @ap: Bus to probe |
| 1447 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1448 | * Master ATA bus probing function. Initiates a hardware-dependent |
| 1449 | * bus reset, then attempts to identify any devices found on |
| 1450 | * the bus. |
| 1451 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1453 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | * |
| 1455 | * RETURNS: |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 1456 | * Zero on success, negative errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | */ |
| 1458 | |
| 1459 | static int ata_bus_probe(struct ata_port *ap) |
| 1460 | { |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1461 | unsigned int classes[ATA_MAX_DEVICES]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1462 | int tries[ATA_MAX_DEVICES]; |
| 1463 | int i, rc, down_xfermask; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1464 | struct ata_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1466 | ata_port_probe(ap); |
| 1467 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1468 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1469 | tries[i] = ATA_PROBE_MAX_TRIES; |
| 1470 | |
| 1471 | retry: |
| 1472 | down_xfermask = 0; |
| 1473 | |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 1474 | /* reset and determine device classes */ |
| 1475 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1476 | classes[i] = ATA_DEV_UNKNOWN; |
Tejun Heo | 2061a47 | 2006-03-12 00:57:39 +0900 | [diff] [blame] | 1477 | |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 1478 | if (ap->ops->probe_reset) { |
Tejun Heo | c19ba8a | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1479 | rc = ap->ops->probe_reset(ap, classes); |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1480 | if (rc) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1481 | ata_port_printk(ap, KERN_ERR, |
| 1482 | "reset failed (errno=%d)\n", rc); |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1483 | return rc; |
Tejun Heo | c19ba8a | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1484 | } |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1485 | } else { |
Tejun Heo | c19ba8a | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1486 | ap->ops->phy_reset(ap); |
| 1487 | |
Tejun Heo | f8c2c42 | 2006-05-15 20:57:30 +0900 | [diff] [blame] | 1488 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 1489 | if (!(ap->flags & ATA_FLAG_DISABLED)) |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1490 | classes[i] = ap->device[i].class; |
Tejun Heo | f8c2c42 | 2006-05-15 20:57:30 +0900 | [diff] [blame] | 1491 | ap->device[i].class = ATA_DEV_UNKNOWN; |
| 1492 | } |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 1493 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1494 | ata_port_probe(ap); |
| 1495 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 1497 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1498 | if (classes[i] == ATA_DEV_UNKNOWN) |
| 1499 | classes[i] = ATA_DEV_NONE; |
| 1500 | |
Alan Cox | b6079ca | 2006-05-22 16:52:06 +0100 | [diff] [blame] | 1501 | /* after the reset the device state is PIO 0 and the controller |
| 1502 | state is undefined. Record the mode */ |
| 1503 | |
| 1504 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1505 | ap->device[i].pio_mode = XFER_PIO_0; |
| 1506 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1507 | /* read IDENTIFY page and configure devices */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1509 | dev = &ap->device[i]; |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 1510 | |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1511 | if (tries[i]) |
| 1512 | dev->class = classes[i]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1513 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1514 | if (!ata_dev_enabled(dev)) |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1515 | continue; |
| 1516 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1517 | rc = ata_dev_read_id(dev, &dev->class, 1, dev->id); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1518 | if (rc) |
| 1519 | goto fail; |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 1520 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1521 | rc = ata_dev_configure(dev, 1); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1522 | if (rc) |
| 1523 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | } |
| 1525 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1526 | /* configure transfer mode */ |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 1527 | rc = ata_set_mode(ap, &dev); |
Tejun Heo | 51713d3 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1528 | if (rc) { |
| 1529 | down_xfermask = 1; |
| 1530 | goto fail; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1531 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1533 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 1534 | if (ata_dev_enabled(&ap->device[i])) |
| 1535 | return 0; |
Alan Cox | e35a9e0 | 2006-03-27 18:46:37 +0100 | [diff] [blame] | 1536 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1537 | /* no device present, disable port */ |
| 1538 | ata_port_disable(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | ap->ops->port_disable(ap); |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 1540 | return -ENODEV; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1541 | |
| 1542 | fail: |
| 1543 | switch (rc) { |
| 1544 | case -EINVAL: |
| 1545 | case -ENODEV: |
| 1546 | tries[dev->devno] = 0; |
| 1547 | break; |
| 1548 | case -EIO: |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1549 | sata_down_spd_limit(ap); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1550 | /* fall through */ |
| 1551 | default: |
| 1552 | tries[dev->devno]--; |
| 1553 | if (down_xfermask && |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1554 | ata_down_xfermask_limit(dev, tries[dev->devno] == 1)) |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1555 | tries[dev->devno] = 0; |
| 1556 | } |
| 1557 | |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1558 | if (!tries[dev->devno]) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1559 | ata_down_xfermask_limit(dev, 1); |
| 1560 | ata_dev_disable(dev); |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 1561 | } |
| 1562 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1563 | goto retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1567 | * ata_port_probe - Mark port as enabled |
| 1568 | * @ap: Port for which we indicate enablement |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1570 | * Modify @ap data structure such that the system |
| 1571 | * thinks that the entire port is enabled. |
| 1572 | * |
| 1573 | * LOCKING: host_set lock, or some other form of |
| 1574 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | */ |
| 1576 | |
| 1577 | void ata_port_probe(struct ata_port *ap) |
| 1578 | { |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1579 | ap->flags &= ~ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | } |
| 1581 | |
| 1582 | /** |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1583 | * sata_print_link_status - Print SATA link status |
| 1584 | * @ap: SATA port to printk link status about |
| 1585 | * |
| 1586 | * This function prints link speed and status of a SATA link. |
| 1587 | * |
| 1588 | * LOCKING: |
| 1589 | * None. |
| 1590 | */ |
| 1591 | static void sata_print_link_status(struct ata_port *ap) |
| 1592 | { |
Tejun Heo | 6d5f973 | 2006-04-03 00:09:41 +0900 | [diff] [blame] | 1593 | u32 sstatus, scontrol, tmp; |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1594 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1595 | if (sata_scr_read(ap, SCR_STATUS, &sstatus)) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1596 | return; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1597 | sata_scr_read(ap, SCR_CONTROL, &scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1598 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1599 | if (ata_port_online(ap)) { |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1600 | tmp = (sstatus >> 4) & 0xf; |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1601 | ata_port_printk(ap, KERN_INFO, |
| 1602 | "SATA link up %s (SStatus %X SControl %X)\n", |
| 1603 | sata_spd_string(tmp), sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1604 | } else { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1605 | ata_port_printk(ap, KERN_INFO, |
| 1606 | "SATA link down (SStatus %X SControl %X)\n", |
| 1607 | sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1608 | } |
| 1609 | } |
| 1610 | |
| 1611 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1612 | * __sata_phy_reset - Wake/reset a low-level SATA PHY |
| 1613 | * @ap: SATA port associated with target SATA PHY. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1615 | * This function issues commands to standard SATA Sxxx |
| 1616 | * PHY registers, to wake up the phy (and device), and |
| 1617 | * clear any reset condition. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | * |
| 1619 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1620 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | * |
| 1622 | */ |
| 1623 | void __sata_phy_reset(struct ata_port *ap) |
| 1624 | { |
| 1625 | u32 sstatus; |
| 1626 | unsigned long timeout = jiffies + (HZ * 5); |
| 1627 | |
| 1628 | if (ap->flags & ATA_FLAG_SATA_RESET) { |
Brett Russ | cdcca89e | 2005-03-28 15:10:27 -0500 | [diff] [blame] | 1629 | /* issue phy wake/reset */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1630 | sata_scr_write_flush(ap, SCR_CONTROL, 0x301); |
Tejun Heo | 62ba284 | 2005-06-26 23:27:19 +0900 | [diff] [blame] | 1631 | /* Couldn't find anything in SATA I/II specs, but |
| 1632 | * AHCI-1.1 10.4.2 says at least 1 ms. */ |
| 1633 | mdelay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | } |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1635 | /* phy wake/clear reset */ |
| 1636 | sata_scr_write_flush(ap, SCR_CONTROL, 0x300); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | |
| 1638 | /* wait for phy to become ready, if necessary */ |
| 1639 | do { |
| 1640 | msleep(200); |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1641 | sata_scr_read(ap, SCR_STATUS, &sstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | if ((sstatus & 0xf) != 1) |
| 1643 | break; |
| 1644 | } while (time_before(jiffies, timeout)); |
| 1645 | |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1646 | /* print link status */ |
| 1647 | sata_print_link_status(ap); |
Jeff Garzik | 656563e | 2005-11-20 03:36:45 -0500 | [diff] [blame] | 1648 | |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1649 | /* TODO: phy layer with polling, timeouts, etc. */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1650 | if (!ata_port_offline(ap)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | ata_port_probe(ap); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 1652 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | ata_port_disable(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1655 | if (ap->flags & ATA_FLAG_DISABLED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | return; |
| 1657 | |
| 1658 | if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) { |
| 1659 | ata_port_disable(ap); |
| 1660 | return; |
| 1661 | } |
| 1662 | |
| 1663 | ap->cbl = ATA_CBL_SATA; |
| 1664 | } |
| 1665 | |
| 1666 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1667 | * sata_phy_reset - Reset SATA bus. |
| 1668 | * @ap: SATA port associated with target SATA PHY. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1670 | * This function resets the SATA bus, and then probes |
| 1671 | * the bus for devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | * |
| 1673 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 1674 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | * |
| 1676 | */ |
| 1677 | void sata_phy_reset(struct ata_port *ap) |
| 1678 | { |
| 1679 | __sata_phy_reset(ap); |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1680 | if (ap->flags & ATA_FLAG_DISABLED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | return; |
| 1682 | ata_bus_reset(ap); |
| 1683 | } |
| 1684 | |
| 1685 | /** |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1686 | * ata_dev_pair - return other device on cable |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1687 | * @adev: device |
| 1688 | * |
| 1689 | * Obtain the other device on the same cable, or if none is |
| 1690 | * present NULL is returned |
| 1691 | */ |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1692 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1693 | struct ata_device *ata_dev_pair(struct ata_device *adev) |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1694 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1695 | struct ata_port *ap = adev->ap; |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1696 | struct ata_device *pair = &ap->device[1 - adev->devno]; |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 1697 | if (!ata_dev_enabled(pair)) |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 1698 | return NULL; |
| 1699 | return pair; |
| 1700 | } |
| 1701 | |
| 1702 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1703 | * ata_port_disable - Disable port. |
| 1704 | * @ap: Port to be disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 1706 | * Modify @ap data structure such that the system |
| 1707 | * thinks that the entire port is disabled, and should |
| 1708 | * never attempt to probe or communicate with devices |
| 1709 | * on this port. |
| 1710 | * |
| 1711 | * LOCKING: host_set lock, or some other form of |
| 1712 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | */ |
| 1714 | |
| 1715 | void ata_port_disable(struct ata_port *ap) |
| 1716 | { |
| 1717 | ap->device[0].class = ATA_DEV_NONE; |
| 1718 | ap->device[1].class = ATA_DEV_NONE; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1719 | ap->flags |= ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | } |
| 1721 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1722 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1723 | * sata_down_spd_limit - adjust SATA spd limit downward |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1724 | * @ap: Port to adjust SATA spd limit for |
| 1725 | * |
| 1726 | * Adjust SATA spd limit of @ap downward. Note that this |
| 1727 | * function only adjusts the limit. The change must be applied |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1728 | * using sata_set_spd(). |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1729 | * |
| 1730 | * LOCKING: |
| 1731 | * Inherited from caller. |
| 1732 | * |
| 1733 | * RETURNS: |
| 1734 | * 0 on success, negative errno on failure |
| 1735 | */ |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1736 | int sata_down_spd_limit(struct ata_port *ap) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1737 | { |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1738 | u32 sstatus, spd, mask; |
| 1739 | int rc, highbit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1740 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1741 | rc = sata_scr_read(ap, SCR_STATUS, &sstatus); |
| 1742 | if (rc) |
| 1743 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1744 | |
| 1745 | mask = ap->sata_spd_limit; |
| 1746 | if (mask <= 1) |
| 1747 | return -EINVAL; |
| 1748 | highbit = fls(mask) - 1; |
| 1749 | mask &= ~(1 << highbit); |
| 1750 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1751 | spd = (sstatus >> 4) & 0xf; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1752 | if (spd <= 1) |
| 1753 | return -EINVAL; |
| 1754 | spd--; |
| 1755 | mask &= (1 << spd) - 1; |
| 1756 | if (!mask) |
| 1757 | return -EINVAL; |
| 1758 | |
| 1759 | ap->sata_spd_limit = mask; |
| 1760 | |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1761 | ata_port_printk(ap, KERN_WARNING, "limiting SATA link speed to %s\n", |
| 1762 | sata_spd_string(fls(mask))); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1763 | |
| 1764 | return 0; |
| 1765 | } |
| 1766 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1767 | static int __sata_set_spd_needed(struct ata_port *ap, u32 *scontrol) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1768 | { |
| 1769 | u32 spd, limit; |
| 1770 | |
| 1771 | if (ap->sata_spd_limit == UINT_MAX) |
| 1772 | limit = 0; |
| 1773 | else |
| 1774 | limit = fls(ap->sata_spd_limit); |
| 1775 | |
| 1776 | spd = (*scontrol >> 4) & 0xf; |
| 1777 | *scontrol = (*scontrol & ~0xf0) | ((limit & 0xf) << 4); |
| 1778 | |
| 1779 | return spd != limit; |
| 1780 | } |
| 1781 | |
| 1782 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1783 | * sata_set_spd_needed - is SATA spd configuration needed |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1784 | * @ap: Port in question |
| 1785 | * |
| 1786 | * Test whether the spd limit in SControl matches |
| 1787 | * @ap->sata_spd_limit. This function is used to determine |
| 1788 | * whether hardreset is necessary to apply SATA spd |
| 1789 | * configuration. |
| 1790 | * |
| 1791 | * LOCKING: |
| 1792 | * Inherited from caller. |
| 1793 | * |
| 1794 | * RETURNS: |
| 1795 | * 1 if SATA spd configuration is needed, 0 otherwise. |
| 1796 | */ |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1797 | int sata_set_spd_needed(struct ata_port *ap) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1798 | { |
| 1799 | u32 scontrol; |
| 1800 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1801 | if (sata_scr_read(ap, SCR_CONTROL, &scontrol)) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1802 | return 0; |
| 1803 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1804 | return __sata_set_spd_needed(ap, &scontrol); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1805 | } |
| 1806 | |
| 1807 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1808 | * sata_set_spd - set SATA spd according to spd limit |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1809 | * @ap: Port to set SATA spd for |
| 1810 | * |
| 1811 | * Set SATA spd of @ap according to sata_spd_limit. |
| 1812 | * |
| 1813 | * LOCKING: |
| 1814 | * Inherited from caller. |
| 1815 | * |
| 1816 | * RETURNS: |
| 1817 | * 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] | 1818 | * changed. Negative errno if SCR registers are inaccessible. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1819 | */ |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1820 | int sata_set_spd(struct ata_port *ap) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1821 | { |
| 1822 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1823 | int rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1824 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1825 | if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol))) |
| 1826 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1827 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 1828 | if (!__sata_set_spd_needed(ap, &scontrol)) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1829 | return 0; |
| 1830 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 1831 | if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol))) |
| 1832 | return rc; |
| 1833 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 1834 | return 1; |
| 1835 | } |
| 1836 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1837 | /* |
| 1838 | * This mode timing computation functionality is ported over from |
| 1839 | * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik |
| 1840 | */ |
| 1841 | /* |
| 1842 | * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds). |
| 1843 | * These were taken from ATA/ATAPI-6 standard, rev 0a, except |
| 1844 | * for PIO 5, which is a nonstandard extension and UDMA6, which |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1845 | * is currently supported only by Maxtor drives. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1846 | */ |
| 1847 | |
| 1848 | static const struct ata_timing ata_timing[] = { |
| 1849 | |
| 1850 | { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 }, |
| 1851 | { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 }, |
| 1852 | { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 }, |
| 1853 | { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 }, |
| 1854 | |
| 1855 | { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 }, |
| 1856 | { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 }, |
| 1857 | { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 }, |
| 1858 | |
| 1859 | /* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */ |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1860 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1861 | { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 }, |
| 1862 | { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 }, |
| 1863 | { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 }, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1864 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1865 | { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 }, |
| 1866 | { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 }, |
| 1867 | { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 }, |
| 1868 | |
| 1869 | /* { XFER_PIO_5, 20, 50, 30, 100, 50, 30, 100, 0 }, */ |
| 1870 | { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 }, |
| 1871 | { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 }, |
| 1872 | |
| 1873 | { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 }, |
| 1874 | { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 }, |
| 1875 | { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 }, |
| 1876 | |
| 1877 | /* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */ |
| 1878 | |
| 1879 | { 0xFF } |
| 1880 | }; |
| 1881 | |
| 1882 | #define ENOUGH(v,unit) (((v)-1)/(unit)+1) |
| 1883 | #define EZ(v,unit) ((v)?ENOUGH(v,unit):0) |
| 1884 | |
| 1885 | static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT) |
| 1886 | { |
| 1887 | q->setup = EZ(t->setup * 1000, T); |
| 1888 | q->act8b = EZ(t->act8b * 1000, T); |
| 1889 | q->rec8b = EZ(t->rec8b * 1000, T); |
| 1890 | q->cyc8b = EZ(t->cyc8b * 1000, T); |
| 1891 | q->active = EZ(t->active * 1000, T); |
| 1892 | q->recover = EZ(t->recover * 1000, T); |
| 1893 | q->cycle = EZ(t->cycle * 1000, T); |
| 1894 | q->udma = EZ(t->udma * 1000, UT); |
| 1895 | } |
| 1896 | |
| 1897 | void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b, |
| 1898 | struct ata_timing *m, unsigned int what) |
| 1899 | { |
| 1900 | if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup); |
| 1901 | if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b); |
| 1902 | if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b); |
| 1903 | if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b); |
| 1904 | if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active); |
| 1905 | if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover); |
| 1906 | if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle); |
| 1907 | if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma); |
| 1908 | } |
| 1909 | |
| 1910 | static const struct ata_timing* ata_timing_find_mode(unsigned short speed) |
| 1911 | { |
| 1912 | const struct ata_timing *t; |
| 1913 | |
| 1914 | for (t = ata_timing; t->mode != speed; t++) |
Alan Cox | 9119075 | 2005-10-26 12:17:46 -0400 | [diff] [blame] | 1915 | if (t->mode == 0xFF) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1916 | return NULL; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1917 | return t; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1918 | } |
| 1919 | |
| 1920 | int ata_timing_compute(struct ata_device *adev, unsigned short speed, |
| 1921 | struct ata_timing *t, int T, int UT) |
| 1922 | { |
| 1923 | const struct ata_timing *s; |
| 1924 | struct ata_timing p; |
| 1925 | |
| 1926 | /* |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1927 | * Find the mode. |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 1928 | */ |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1929 | |
| 1930 | if (!(s = ata_timing_find_mode(speed))) |
| 1931 | return -EINVAL; |
| 1932 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 1933 | memcpy(t, s, sizeof(*s)); |
| 1934 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1935 | /* |
| 1936 | * If the drive is an EIDE drive, it can tell us it needs extended |
| 1937 | * PIO/MW_DMA cycle timing. |
| 1938 | */ |
| 1939 | |
| 1940 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */ |
| 1941 | memset(&p, 0, sizeof(p)); |
| 1942 | if(speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) { |
| 1943 | if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO]; |
| 1944 | else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY]; |
| 1945 | } else if(speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) { |
| 1946 | p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN]; |
| 1947 | } |
| 1948 | ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B); |
| 1949 | } |
| 1950 | |
| 1951 | /* |
| 1952 | * Convert the timing to bus clock counts. |
| 1953 | */ |
| 1954 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 1955 | ata_timing_quantize(t, t, T, UT); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1956 | |
| 1957 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 1958 | * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, |
| 1959 | * S.M.A.R.T * and some other commands. We have to ensure that the |
| 1960 | * DMA cycle timing is slower/equal than the fastest PIO timing. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1961 | */ |
| 1962 | |
| 1963 | if (speed > XFER_PIO_4) { |
| 1964 | ata_timing_compute(adev, adev->pio_mode, &p, T, UT); |
| 1965 | ata_timing_merge(&p, t, t, ATA_TIMING_ALL); |
| 1966 | } |
| 1967 | |
| 1968 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 1969 | * Lengthen active & recovery time so that cycle time is correct. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 1970 | */ |
| 1971 | |
| 1972 | if (t->act8b + t->rec8b < t->cyc8b) { |
| 1973 | t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2; |
| 1974 | t->rec8b = t->cyc8b - t->act8b; |
| 1975 | } |
| 1976 | |
| 1977 | if (t->active + t->recover < t->cycle) { |
| 1978 | t->active += (t->cycle - (t->active + t->recover)) / 2; |
| 1979 | t->recover = t->cycle - t->active; |
| 1980 | } |
| 1981 | |
| 1982 | return 0; |
| 1983 | } |
| 1984 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1985 | /** |
| 1986 | * ata_down_xfermask_limit - adjust dev xfer masks downward |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 1987 | * @dev: Device to adjust xfer masks |
| 1988 | * @force_pio0: Force PIO0 |
| 1989 | * |
| 1990 | * Adjust xfer masks of @dev downward. Note that this function |
| 1991 | * does not apply the change. Invoking ata_set_mode() afterwards |
| 1992 | * will apply the limit. |
| 1993 | * |
| 1994 | * LOCKING: |
| 1995 | * Inherited from caller. |
| 1996 | * |
| 1997 | * RETURNS: |
| 1998 | * 0 on success, negative errno on failure |
| 1999 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2000 | int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0) |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2001 | { |
| 2002 | unsigned long xfer_mask; |
| 2003 | int highbit; |
| 2004 | |
| 2005 | xfer_mask = ata_pack_xfermask(dev->pio_mask, dev->mwdma_mask, |
| 2006 | dev->udma_mask); |
| 2007 | |
| 2008 | if (!xfer_mask) |
| 2009 | goto fail; |
| 2010 | /* don't gear down to MWDMA from UDMA, go directly to PIO */ |
| 2011 | if (xfer_mask & ATA_MASK_UDMA) |
| 2012 | xfer_mask &= ~ATA_MASK_MWDMA; |
| 2013 | |
| 2014 | highbit = fls(xfer_mask) - 1; |
| 2015 | xfer_mask &= ~(1 << highbit); |
| 2016 | if (force_pio0) |
| 2017 | xfer_mask &= 1 << ATA_SHIFT_PIO; |
| 2018 | if (!xfer_mask) |
| 2019 | goto fail; |
| 2020 | |
| 2021 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask, |
| 2022 | &dev->udma_mask); |
| 2023 | |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2024 | ata_dev_printk(dev, KERN_WARNING, "limiting speed to %s\n", |
| 2025 | ata_mode_string(xfer_mask)); |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2026 | |
| 2027 | return 0; |
| 2028 | |
| 2029 | fail: |
| 2030 | return -EINVAL; |
| 2031 | } |
| 2032 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2033 | static int ata_dev_set_mode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | { |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2035 | unsigned int err_mask; |
| 2036 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | |
Tejun Heo | e838460 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2038 | dev->flags &= ~ATA_DFLAG_PIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | if (dev->xfer_shift == ATA_SHIFT_PIO) |
| 2040 | dev->flags |= ATA_DFLAG_PIO; |
| 2041 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2042 | err_mask = ata_dev_set_xfermode(dev); |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2043 | if (err_mask) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2044 | ata_dev_printk(dev, KERN_ERR, "failed to set xfermode " |
| 2045 | "(err_mask=0x%x)\n", err_mask); |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2046 | return -EIO; |
| 2047 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2049 | rc = ata_dev_revalidate(dev, 0); |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2050 | if (rc) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2051 | return rc; |
Tejun Heo | 48a8a14 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2052 | |
Tejun Heo | 23e71c3 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2053 | DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n", |
| 2054 | dev->xfer_shift, (int)dev->xfer_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2056 | ata_dev_printk(dev, KERN_INFO, "configured for %s\n", |
| 2057 | ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode))); |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2058 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | } |
| 2060 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | /** |
| 2062 | * ata_set_mode - Program timings and issue SET FEATURES - XFER |
| 2063 | * @ap: port on which timings will be programmed |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2064 | * @r_failed_dev: out paramter for failed device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | * |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2066 | * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If |
| 2067 | * ata_set_mode() fails, pointer to the failing device is |
| 2068 | * returned in @r_failed_dev. |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2069 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2071 | * PCI/etc. bus probe sem. |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2072 | * |
| 2073 | * RETURNS: |
| 2074 | * 0 on success, negative errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | */ |
Tejun Heo | 1ad8e7f | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2076 | 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] | 2077 | { |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2078 | struct ata_device *dev; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2079 | int i, rc = 0, used_dma = 0, found = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 2081 | /* has private set_mode? */ |
| 2082 | if (ap->ops->set_mode) { |
| 2083 | /* FIXME: make ->set_mode handle no device case and |
| 2084 | * return error code and failing device on failure. |
| 2085 | */ |
| 2086 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 2087 | if (ata_dev_enabled(&ap->device[i])) { |
| 2088 | ap->ops->set_mode(ap); |
| 2089 | break; |
| 2090 | } |
| 2091 | } |
| 2092 | return 0; |
| 2093 | } |
| 2094 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2095 | /* step 1: calculate xfer_mask */ |
| 2096 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 2097 | unsigned int pio_mask, dma_mask; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2098 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2099 | dev = &ap->device[i]; |
| 2100 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2101 | if (!ata_dev_enabled(dev)) |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2102 | continue; |
| 2103 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2104 | ata_dev_xfermask(dev); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2105 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 2106 | pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0); |
| 2107 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
| 2108 | dev->pio_mode = ata_xfer_mask2mode(pio_mask); |
| 2109 | dev->dma_mode = ata_xfer_mask2mode(dma_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2110 | |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2111 | found = 1; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2112 | if (dev->dma_mode) |
| 2113 | used_dma = 1; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2114 | } |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2115 | if (!found) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2116 | goto out; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2117 | |
| 2118 | /* step 2: always set host PIO timings */ |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2119 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 2120 | dev = &ap->device[i]; |
| 2121 | if (!ata_dev_enabled(dev)) |
| 2122 | continue; |
| 2123 | |
| 2124 | if (!dev->pio_mode) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2125 | ata_dev_printk(dev, KERN_WARNING, "no PIO support\n"); |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2126 | rc = -EINVAL; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2127 | goto out; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2128 | } |
| 2129 | |
| 2130 | dev->xfer_mode = dev->pio_mode; |
| 2131 | dev->xfer_shift = ATA_SHIFT_PIO; |
| 2132 | if (ap->ops->set_piomode) |
| 2133 | ap->ops->set_piomode(ap, dev); |
| 2134 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2136 | /* step 3: set host DMA timings */ |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2137 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 2138 | dev = &ap->device[i]; |
| 2139 | |
| 2140 | if (!ata_dev_enabled(dev) || !dev->dma_mode) |
| 2141 | continue; |
| 2142 | |
| 2143 | dev->xfer_mode = dev->dma_mode; |
| 2144 | dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode); |
| 2145 | if (ap->ops->set_dmamode) |
| 2146 | ap->ops->set_dmamode(ap, dev); |
| 2147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | |
| 2149 | /* step 4: update devices' xfer mode */ |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2150 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2151 | dev = &ap->device[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2153 | if (!ata_dev_enabled(dev)) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2154 | continue; |
| 2155 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2156 | rc = ata_dev_set_mode(dev); |
Tejun Heo | 5bbc53f | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2157 | if (rc) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2158 | goto out; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 2159 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2161 | /* Record simplex status. If we selected DMA then the other |
| 2162 | * host channels are not permitted to do so. |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2163 | */ |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 2164 | if (used_dma && (ap->host_set->flags & ATA_HOST_SIMPLEX)) |
| 2165 | ap->host_set->simplex_claimed = 1; |
| 2166 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2167 | /* step5: chip specific finalisation */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | if (ap->ops->post_set_mode) |
| 2169 | ap->ops->post_set_mode(ap); |
| 2170 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2171 | out: |
| 2172 | if (rc) |
| 2173 | *r_failed_dev = dev; |
| 2174 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | } |
| 2176 | |
| 2177 | /** |
Jeff Garzik | 1fdffbc | 2006-02-09 05:15:27 -0500 | [diff] [blame] | 2178 | * ata_tf_to_host - issue ATA taskfile to host controller |
| 2179 | * @ap: port to which command is being issued |
| 2180 | * @tf: ATA taskfile register set |
| 2181 | * |
| 2182 | * Issues ATA taskfile register set to ATA host controller, |
| 2183 | * with proper synchronization with interrupt handler and |
| 2184 | * other threads. |
| 2185 | * |
| 2186 | * LOCKING: |
| 2187 | * spin_lock_irqsave(host_set lock) |
| 2188 | */ |
| 2189 | |
| 2190 | static inline void ata_tf_to_host(struct ata_port *ap, |
| 2191 | const struct ata_taskfile *tf) |
| 2192 | { |
| 2193 | ap->ops->tf_load(ap, tf); |
| 2194 | ap->ops->exec_command(ap, tf); |
| 2195 | } |
| 2196 | |
| 2197 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | * ata_busy_sleep - sleep until BSY clears, or timeout |
| 2199 | * @ap: port containing status register to be polled |
| 2200 | * @tmout_pat: impatience timeout |
| 2201 | * @tmout: overall timeout |
| 2202 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2203 | * Sleep until ATA Status register bit BSY clears, |
| 2204 | * or a timeout occurs. |
| 2205 | * |
| 2206 | * LOCKING: None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | */ |
| 2208 | |
Tejun Heo | 6f8b995 | 2006-01-24 17:05:21 +0900 | [diff] [blame] | 2209 | unsigned int ata_busy_sleep (struct ata_port *ap, |
| 2210 | unsigned long tmout_pat, unsigned long tmout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | { |
| 2212 | unsigned long timer_start, timeout; |
| 2213 | u8 status; |
| 2214 | |
| 2215 | status = ata_busy_wait(ap, ATA_BUSY, 300); |
| 2216 | timer_start = jiffies; |
| 2217 | timeout = timer_start + tmout_pat; |
| 2218 | while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) { |
| 2219 | msleep(50); |
| 2220 | status = ata_busy_wait(ap, ATA_BUSY, 3); |
| 2221 | } |
| 2222 | |
| 2223 | if (status & ATA_BUSY) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2224 | ata_port_printk(ap, KERN_WARNING, |
| 2225 | "port is slow to respond, please be patient\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | |
| 2227 | timeout = timer_start + tmout; |
| 2228 | while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) { |
| 2229 | msleep(50); |
| 2230 | status = ata_chk_status(ap); |
| 2231 | } |
| 2232 | |
| 2233 | if (status & ATA_BUSY) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2234 | ata_port_printk(ap, KERN_ERR, "port failed to respond " |
| 2235 | "(%lu secs)\n", tmout / HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | return 1; |
| 2237 | } |
| 2238 | |
| 2239 | return 0; |
| 2240 | } |
| 2241 | |
| 2242 | static void ata_bus_post_reset(struct ata_port *ap, unsigned int devmask) |
| 2243 | { |
| 2244 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 2245 | unsigned int dev0 = devmask & (1 << 0); |
| 2246 | unsigned int dev1 = devmask & (1 << 1); |
| 2247 | unsigned long timeout; |
| 2248 | |
| 2249 | /* if device 0 was found in ata_devchk, wait for its |
| 2250 | * BSY bit to clear |
| 2251 | */ |
| 2252 | if (dev0) |
| 2253 | ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT); |
| 2254 | |
| 2255 | /* if device 1 was found in ata_devchk, wait for |
| 2256 | * register access, then wait for BSY to clear |
| 2257 | */ |
| 2258 | timeout = jiffies + ATA_TMOUT_BOOT; |
| 2259 | while (dev1) { |
| 2260 | u8 nsect, lbal; |
| 2261 | |
| 2262 | ap->ops->dev_select(ap, 1); |
| 2263 | if (ap->flags & ATA_FLAG_MMIO) { |
| 2264 | nsect = readb((void __iomem *) ioaddr->nsect_addr); |
| 2265 | lbal = readb((void __iomem *) ioaddr->lbal_addr); |
| 2266 | } else { |
| 2267 | nsect = inb(ioaddr->nsect_addr); |
| 2268 | lbal = inb(ioaddr->lbal_addr); |
| 2269 | } |
| 2270 | if ((nsect == 1) && (lbal == 1)) |
| 2271 | break; |
| 2272 | if (time_after(jiffies, timeout)) { |
| 2273 | dev1 = 0; |
| 2274 | break; |
| 2275 | } |
| 2276 | msleep(50); /* give drive a breather */ |
| 2277 | } |
| 2278 | if (dev1) |
| 2279 | ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT); |
| 2280 | |
| 2281 | /* is all this really necessary? */ |
| 2282 | ap->ops->dev_select(ap, 0); |
| 2283 | if (dev1) |
| 2284 | ap->ops->dev_select(ap, 1); |
| 2285 | if (dev0) |
| 2286 | ap->ops->dev_select(ap, 0); |
| 2287 | } |
| 2288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | static unsigned int ata_bus_softreset(struct ata_port *ap, |
| 2290 | unsigned int devmask) |
| 2291 | { |
| 2292 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 2293 | |
| 2294 | DPRINTK("ata%u: bus reset via SRST\n", ap->id); |
| 2295 | |
| 2296 | /* software reset. causes dev0 to be selected */ |
| 2297 | if (ap->flags & ATA_FLAG_MMIO) { |
| 2298 | writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr); |
| 2299 | udelay(20); /* FIXME: flush */ |
| 2300 | writeb(ap->ctl | ATA_SRST, (void __iomem *) ioaddr->ctl_addr); |
| 2301 | udelay(20); /* FIXME: flush */ |
| 2302 | writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr); |
| 2303 | } else { |
| 2304 | outb(ap->ctl, ioaddr->ctl_addr); |
| 2305 | udelay(10); |
| 2306 | outb(ap->ctl | ATA_SRST, ioaddr->ctl_addr); |
| 2307 | udelay(10); |
| 2308 | outb(ap->ctl, ioaddr->ctl_addr); |
| 2309 | } |
| 2310 | |
| 2311 | /* spec mandates ">= 2ms" before checking status. |
| 2312 | * We wait 150ms, because that was the magic delay used for |
| 2313 | * ATAPI devices in Hale Landis's ATADRVR, for the period of time |
| 2314 | * between when the ATA command register is written, and then |
| 2315 | * status is checked. Because waiting for "a while" before |
| 2316 | * checking status is fine, post SRST, we perform this magic |
| 2317 | * delay here as well. |
Alan Cox | 09c7ad7 | 2006-03-22 15:52:40 +0000 | [diff] [blame] | 2318 | * |
| 2319 | * Old drivers/ide uses the 2mS rule and then waits for ready |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | */ |
| 2321 | msleep(150); |
| 2322 | |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2323 | /* Before we perform post reset processing we want to see if |
Tejun Heo | 298a41c | 2006-03-25 02:58:13 +0900 | [diff] [blame] | 2324 | * the bus shows 0xFF because the odd clown forgets the D7 |
| 2325 | * pulldown resistor. |
| 2326 | */ |
Tejun Heo | 987d2f0 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2327 | if (ata_check_status(ap) == 0xFF) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2328 | ata_port_printk(ap, KERN_ERR, "SRST failed (status 0xFF)\n"); |
Tejun Heo | 298a41c | 2006-03-25 02:58:13 +0900 | [diff] [blame] | 2329 | return AC_ERR_OTHER; |
Tejun Heo | 987d2f0 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2330 | } |
Alan Cox | 09c7ad7 | 2006-03-22 15:52:40 +0000 | [diff] [blame] | 2331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | ata_bus_post_reset(ap, devmask); |
| 2333 | |
| 2334 | return 0; |
| 2335 | } |
| 2336 | |
| 2337 | /** |
| 2338 | * ata_bus_reset - reset host port and associated ATA channel |
| 2339 | * @ap: port to reset |
| 2340 | * |
| 2341 | * This is typically the first time we actually start issuing |
| 2342 | * commands to the ATA channel. We wait for BSY to clear, then |
| 2343 | * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its |
| 2344 | * result. Determine what devices, if any, are on the channel |
| 2345 | * by looking at the device 0/1 error register. Look at the signature |
| 2346 | * stored in each device's taskfile registers, to determine if |
| 2347 | * the device is ATA or ATAPI. |
| 2348 | * |
| 2349 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2350 | * PCI/etc. bus probe sem. |
| 2351 | * Obtains host_set lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | * |
| 2353 | * SIDE EFFECTS: |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2354 | * Sets ATA_FLAG_DISABLED if bus reset fails. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2355 | */ |
| 2356 | |
| 2357 | void ata_bus_reset(struct ata_port *ap) |
| 2358 | { |
| 2359 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 2360 | unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS; |
| 2361 | u8 err; |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 2362 | unsigned int dev0, dev1 = 0, devmask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | |
| 2364 | DPRINTK("ENTER, host %u, port %u\n", ap->id, ap->port_no); |
| 2365 | |
| 2366 | /* determine if device 0/1 are present */ |
| 2367 | if (ap->flags & ATA_FLAG_SATA_RESET) |
| 2368 | dev0 = 1; |
| 2369 | else { |
| 2370 | dev0 = ata_devchk(ap, 0); |
| 2371 | if (slave_possible) |
| 2372 | dev1 = ata_devchk(ap, 1); |
| 2373 | } |
| 2374 | |
| 2375 | if (dev0) |
| 2376 | devmask |= (1 << 0); |
| 2377 | if (dev1) |
| 2378 | devmask |= (1 << 1); |
| 2379 | |
| 2380 | /* select device 0 again */ |
| 2381 | ap->ops->dev_select(ap, 0); |
| 2382 | |
| 2383 | /* issue bus reset */ |
| 2384 | if (ap->flags & ATA_FLAG_SRST) |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 2385 | if (ata_bus_softreset(ap, devmask)) |
| 2386 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | |
| 2388 | /* |
| 2389 | * determine by signature whether we have ATA or ATAPI devices |
| 2390 | */ |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2391 | ap->device[0].class = ata_dev_try_classify(ap, 0, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2392 | if ((slave_possible) && (err != 0x81)) |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2393 | ap->device[1].class = ata_dev_try_classify(ap, 1, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | |
| 2395 | /* re-enable interrupts */ |
| 2396 | if (ap->ioaddr.ctl_addr) /* FIXME: hack. create a hook instead */ |
| 2397 | ata_irq_on(ap); |
| 2398 | |
| 2399 | /* is double-select really necessary? */ |
| 2400 | if (ap->device[1].class != ATA_DEV_NONE) |
| 2401 | ap->ops->dev_select(ap, 1); |
| 2402 | if (ap->device[0].class != ATA_DEV_NONE) |
| 2403 | ap->ops->dev_select(ap, 0); |
| 2404 | |
| 2405 | /* if no devices were detected, disable this port */ |
| 2406 | if ((ap->device[0].class == ATA_DEV_NONE) && |
| 2407 | (ap->device[1].class == ATA_DEV_NONE)) |
| 2408 | goto err_out; |
| 2409 | |
| 2410 | if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) { |
| 2411 | /* set up device control for ATA_FLAG_SATA_RESET */ |
| 2412 | if (ap->flags & ATA_FLAG_MMIO) |
| 2413 | writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr); |
| 2414 | else |
| 2415 | outb(ap->ctl, ioaddr->ctl_addr); |
| 2416 | } |
| 2417 | |
| 2418 | DPRINTK("EXIT\n"); |
| 2419 | return; |
| 2420 | |
| 2421 | err_out: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2422 | ata_port_printk(ap, KERN_ERR, "disabling port\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | ap->ops->port_disable(ap); |
| 2424 | |
| 2425 | DPRINTK("EXIT\n"); |
| 2426 | } |
| 2427 | |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2428 | static int sata_phy_resume(struct ata_port *ap) |
| 2429 | { |
| 2430 | unsigned long timeout = jiffies + (HZ * 5); |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2431 | u32 scontrol, sstatus; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2432 | int rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2433 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2434 | if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol))) |
| 2435 | return rc; |
| 2436 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2437 | scontrol = (scontrol & 0x0f0) | 0x300; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2438 | |
| 2439 | if ((rc = sata_scr_write(ap, SCR_CONTROL, scontrol))) |
| 2440 | return rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2441 | |
| 2442 | /* Wait for phy to become ready, if necessary. */ |
| 2443 | do { |
| 2444 | msleep(200); |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2445 | if ((rc = sata_scr_read(ap, SCR_STATUS, &sstatus))) |
| 2446 | return rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2447 | if ((sstatus & 0xf) != 1) |
| 2448 | return 0; |
| 2449 | } while (time_before(jiffies, timeout)); |
| 2450 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2451 | return -EBUSY; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2452 | } |
| 2453 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2454 | /** |
Tejun Heo | 8a19ac8 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2455 | * ata_std_probeinit - initialize probing |
| 2456 | * @ap: port to be probed |
| 2457 | * |
| 2458 | * @ap is about to be probed. Initialize it. This function is |
| 2459 | * to be used as standard callback for ata_drive_probe_reset(). |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2460 | * |
| 2461 | * NOTE!!! Do not use this function as probeinit if a low level |
| 2462 | * driver implements only hardreset. Just pass NULL as probeinit |
| 2463 | * in that case. Using this function is probably okay but doing |
| 2464 | * so makes reset sequence different from the original |
| 2465 | * ->phy_reset implementation and Jeff nervous. :-P |
Tejun Heo | 8a19ac8 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2466 | */ |
Alan Cox | 17efc5f | 2006-03-27 19:01:32 +0100 | [diff] [blame] | 2467 | void ata_std_probeinit(struct ata_port *ap) |
Tejun Heo | 8a19ac8 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2468 | { |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2469 | u32 scontrol; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2470 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2471 | /* resume link */ |
| 2472 | sata_phy_resume(ap); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2473 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2474 | /* init sata_spd_limit to the current value */ |
| 2475 | if (sata_scr_read(ap, SCR_CONTROL, &scontrol) == 0) { |
| 2476 | int spd = (scontrol >> 4) & 0xf; |
| 2477 | ap->sata_spd_limit &= (1 << spd) - 1; |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2478 | } |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2479 | |
| 2480 | /* wait for device */ |
| 2481 | if (ata_port_online(ap)) |
| 2482 | ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT); |
Tejun Heo | 8a19ac8 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2483 | } |
| 2484 | |
| 2485 | /** |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2486 | * ata_std_softreset - reset host port via ATA SRST |
| 2487 | * @ap: port to reset |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2488 | * @classes: resulting classes of attached devices |
| 2489 | * |
| 2490 | * Reset host port using ATA SRST. This function is to be used |
| 2491 | * as standard callback for ata_drive_*_reset() functions. |
| 2492 | * |
| 2493 | * LOCKING: |
| 2494 | * Kernel thread context (may sleep) |
| 2495 | * |
| 2496 | * RETURNS: |
| 2497 | * 0 on success, -errno otherwise. |
| 2498 | */ |
Tejun Heo | 2bf2cb2 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2499 | int ata_std_softreset(struct ata_port *ap, unsigned int *classes) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2500 | { |
| 2501 | unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS; |
| 2502 | unsigned int devmask = 0, err_mask; |
| 2503 | u8 err; |
| 2504 | |
| 2505 | DPRINTK("ENTER\n"); |
| 2506 | |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2507 | if (ata_port_offline(ap)) { |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2508 | classes[0] = ATA_DEV_NONE; |
| 2509 | goto out; |
| 2510 | } |
| 2511 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2512 | /* determine if device 0/1 are present */ |
| 2513 | if (ata_devchk(ap, 0)) |
| 2514 | devmask |= (1 << 0); |
| 2515 | if (slave_possible && ata_devchk(ap, 1)) |
| 2516 | devmask |= (1 << 1); |
| 2517 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2518 | /* select device 0 again */ |
| 2519 | ap->ops->dev_select(ap, 0); |
| 2520 | |
| 2521 | /* issue bus reset */ |
| 2522 | DPRINTK("about to softreset, devmask=%x\n", devmask); |
| 2523 | err_mask = ata_bus_softreset(ap, devmask); |
| 2524 | if (err_mask) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2525 | ata_port_printk(ap, KERN_ERR, "SRST failed (err_mask=0x%x)\n", |
| 2526 | err_mask); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2527 | return -EIO; |
| 2528 | } |
| 2529 | |
| 2530 | /* determine by signature whether we have ATA or ATAPI devices */ |
| 2531 | classes[0] = ata_dev_try_classify(ap, 0, &err); |
| 2532 | if (slave_possible && err != 0x81) |
| 2533 | classes[1] = ata_dev_try_classify(ap, 1, &err); |
| 2534 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2535 | out: |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2536 | DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]); |
| 2537 | return 0; |
| 2538 | } |
| 2539 | |
| 2540 | /** |
| 2541 | * sata_std_hardreset - reset host port via SATA phy reset |
| 2542 | * @ap: port to reset |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2543 | * @class: resulting class of attached device |
| 2544 | * |
| 2545 | * SATA phy-reset host port using DET bits of SControl register. |
| 2546 | * This function is to be used as standard callback for |
| 2547 | * ata_drive_*_reset(). |
| 2548 | * |
| 2549 | * LOCKING: |
| 2550 | * Kernel thread context (may sleep) |
| 2551 | * |
| 2552 | * RETURNS: |
| 2553 | * 0 on success, -errno otherwise. |
| 2554 | */ |
Tejun Heo | 2bf2cb2 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2555 | int sata_std_hardreset(struct ata_port *ap, unsigned int *class) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2556 | { |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2557 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2558 | int rc; |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2559 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2560 | DPRINTK("ENTER\n"); |
| 2561 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2562 | if (sata_set_spd_needed(ap)) { |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2563 | /* SATA spec says nothing about how to reconfigure |
| 2564 | * spd. To be on the safe side, turn off phy during |
| 2565 | * reconfiguration. This works for at least ICH7 AHCI |
| 2566 | * and Sil3124. |
| 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 | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2571 | scontrol = (scontrol & 0x0f0) | 0x302; |
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 | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2575 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2576 | sata_set_spd(ap); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2577 | } |
| 2578 | |
| 2579 | /* issue phy wake/reset */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2580 | if ((rc = sata_scr_read(ap, SCR_CONTROL, &scontrol))) |
| 2581 | return rc; |
| 2582 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2583 | scontrol = (scontrol & 0x0f0) | 0x301; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2584 | |
| 2585 | if ((rc = sata_scr_write_flush(ap, SCR_CONTROL, scontrol))) |
| 2586 | return rc; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2587 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2588 | /* 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] | 2589 | * 10.4.2 says at least 1 ms. |
| 2590 | */ |
| 2591 | msleep(1); |
| 2592 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2593 | /* bring phy back */ |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2594 | sata_phy_resume(ap); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2595 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2596 | /* TODO: phy layer with polling, timeouts, etc. */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2597 | if (ata_port_offline(ap)) { |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2598 | *class = ATA_DEV_NONE; |
| 2599 | DPRINTK("EXIT, link offline\n"); |
| 2600 | return 0; |
| 2601 | } |
| 2602 | |
| 2603 | if (ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT)) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2604 | ata_port_printk(ap, KERN_ERR, |
| 2605 | "COMRESET failed (device not ready)\n"); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2606 | return -EIO; |
| 2607 | } |
| 2608 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2609 | ap->ops->dev_select(ap, 0); /* probably unnecessary */ |
| 2610 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2611 | *class = ata_dev_try_classify(ap, 0, NULL); |
| 2612 | |
| 2613 | DPRINTK("EXIT, class=%u\n", *class); |
| 2614 | return 0; |
| 2615 | } |
| 2616 | |
| 2617 | /** |
| 2618 | * ata_std_postreset - standard postreset callback |
| 2619 | * @ap: the target ata_port |
| 2620 | * @classes: classes of attached devices |
| 2621 | * |
| 2622 | * This function is invoked after a successful reset. Note that |
| 2623 | * the device might have been reset more than once using |
| 2624 | * different reset methods before postreset is invoked. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2625 | * |
| 2626 | * This function is to be used as standard callback for |
| 2627 | * ata_drive_*_reset(). |
| 2628 | * |
| 2629 | * LOCKING: |
| 2630 | * Kernel thread context (may sleep) |
| 2631 | */ |
| 2632 | void ata_std_postreset(struct ata_port *ap, unsigned int *classes) |
| 2633 | { |
Tejun Heo | dc2b351 | 2006-05-15 20:58:00 +0900 | [diff] [blame] | 2634 | u32 serror; |
| 2635 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2636 | DPRINTK("ENTER\n"); |
| 2637 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2638 | /* print link status */ |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2639 | sata_print_link_status(ap); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2640 | |
Tejun Heo | dc2b351 | 2006-05-15 20:58:00 +0900 | [diff] [blame] | 2641 | /* clear SError */ |
| 2642 | if (sata_scr_read(ap, SCR_ERROR, &serror) == 0) |
| 2643 | sata_scr_write(ap, SCR_ERROR, serror); |
| 2644 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2645 | /* re-enable interrupts */ |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 2646 | if (!ap->ops->error_handler) { |
| 2647 | /* FIXME: hack. create a hook instead */ |
| 2648 | if (ap->ioaddr.ctl_addr) |
| 2649 | ata_irq_on(ap); |
| 2650 | } |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2651 | |
| 2652 | /* is double-select really necessary? */ |
| 2653 | if (classes[0] != ATA_DEV_NONE) |
| 2654 | ap->ops->dev_select(ap, 1); |
| 2655 | if (classes[1] != ATA_DEV_NONE) |
| 2656 | ap->ops->dev_select(ap, 0); |
| 2657 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 2658 | /* bail out if no device is present */ |
| 2659 | if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) { |
| 2660 | DPRINTK("EXIT, no device\n"); |
| 2661 | return; |
| 2662 | } |
| 2663 | |
| 2664 | /* set up device control */ |
| 2665 | if (ap->ioaddr.ctl_addr) { |
| 2666 | if (ap->flags & ATA_FLAG_MMIO) |
| 2667 | writeb(ap->ctl, (void __iomem *) ap->ioaddr.ctl_addr); |
| 2668 | else |
| 2669 | outb(ap->ctl, ap->ioaddr.ctl_addr); |
| 2670 | } |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2671 | |
| 2672 | DPRINTK("EXIT\n"); |
| 2673 | } |
| 2674 | |
| 2675 | /** |
| 2676 | * ata_std_probe_reset - standard probe reset method |
| 2677 | * @ap: prot to perform probe-reset |
| 2678 | * @classes: resulting classes of attached devices |
| 2679 | * |
| 2680 | * The stock off-the-shelf ->probe_reset method. |
| 2681 | * |
| 2682 | * LOCKING: |
| 2683 | * Kernel thread context (may sleep) |
| 2684 | * |
| 2685 | * RETURNS: |
| 2686 | * 0 on success, -errno otherwise. |
| 2687 | */ |
| 2688 | int ata_std_probe_reset(struct ata_port *ap, unsigned int *classes) |
| 2689 | { |
| 2690 | ata_reset_fn_t hardreset; |
| 2691 | |
| 2692 | hardreset = NULL; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2693 | if (sata_scr_valid(ap)) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2694 | hardreset = sata_std_hardreset; |
| 2695 | |
Tejun Heo | 8a19ac8 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2696 | return ata_drive_probe_reset(ap, ata_std_probeinit, |
Tejun Heo | 7944ea9 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2697 | ata_std_softreset, hardreset, |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2698 | ata_std_postreset, classes); |
| 2699 | } |
| 2700 | |
Tejun Heo | 2bf2cb2 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2701 | int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset, |
Tejun Heo | 96bd39e | 2006-05-15 20:57:38 +0900 | [diff] [blame] | 2702 | unsigned int *classes) |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2703 | { |
| 2704 | int i, rc; |
| 2705 | |
| 2706 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 2707 | classes[i] = ATA_DEV_UNKNOWN; |
| 2708 | |
Tejun Heo | 2bf2cb2 | 2006-04-11 22:16:45 +0900 | [diff] [blame] | 2709 | rc = reset(ap, classes); |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2710 | if (rc) |
| 2711 | return rc; |
| 2712 | |
| 2713 | /* If any class isn't ATA_DEV_UNKNOWN, consider classification |
| 2714 | * is complete and convert all ATA_DEV_UNKNOWN to |
| 2715 | * ATA_DEV_NONE. |
| 2716 | */ |
| 2717 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 2718 | if (classes[i] != ATA_DEV_UNKNOWN) |
| 2719 | break; |
| 2720 | |
| 2721 | if (i < ATA_MAX_DEVICES) |
| 2722 | for (i = 0; i < ATA_MAX_DEVICES; i++) |
| 2723 | if (classes[i] == ATA_DEV_UNKNOWN) |
| 2724 | classes[i] = ATA_DEV_NONE; |
| 2725 | |
Tejun Heo | 9974e7c | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2726 | return 0; |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2727 | } |
| 2728 | |
| 2729 | /** |
| 2730 | * ata_drive_probe_reset - Perform probe reset with given methods |
| 2731 | * @ap: port to reset |
Tejun Heo | 7944ea9 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2732 | * @probeinit: probeinit method (can be NULL) |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2733 | * @softreset: softreset method (can be NULL) |
| 2734 | * @hardreset: hardreset method (can be NULL) |
| 2735 | * @postreset: postreset method (can be NULL) |
| 2736 | * @classes: resulting classes of attached devices |
| 2737 | * |
| 2738 | * Reset the specified port and classify attached devices using |
| 2739 | * given methods. This function prefers softreset but tries all |
| 2740 | * possible reset sequences to reset and classify devices. This |
| 2741 | * function is intended to be used for constructing ->probe_reset |
| 2742 | * callback by low level drivers. |
| 2743 | * |
| 2744 | * Reset methods should follow the following rules. |
| 2745 | * |
| 2746 | * - Return 0 on sucess, -errno on failure. |
| 2747 | * - If classification is supported, fill classes[] with |
| 2748 | * recognized class codes. |
| 2749 | * - If classification is not supported, leave classes[] alone. |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2750 | * |
| 2751 | * LOCKING: |
| 2752 | * Kernel thread context (may sleep) |
| 2753 | * |
| 2754 | * RETURNS: |
| 2755 | * 0 on success, -EINVAL if no reset method is avaliable, -ENODEV |
| 2756 | * if classification fails, and any error code from reset |
| 2757 | * methods. |
| 2758 | */ |
Tejun Heo | 7944ea9 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2759 | int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit, |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2760 | ata_reset_fn_t softreset, ata_reset_fn_t hardreset, |
| 2761 | ata_postreset_fn_t postreset, unsigned int *classes) |
| 2762 | { |
| 2763 | int rc = -EINVAL; |
| 2764 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 2765 | ata_eh_freeze_port(ap); |
| 2766 | |
Tejun Heo | 7944ea9 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 2767 | if (probeinit) |
| 2768 | probeinit(ap); |
| 2769 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2770 | if (softreset && !sata_set_spd_needed(ap)) { |
Tejun Heo | 96bd39e | 2006-05-15 20:57:38 +0900 | [diff] [blame] | 2771 | rc = ata_do_reset(ap, softreset, classes); |
Tejun Heo | 9974e7c | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2772 | if (rc == 0 && classes[0] != ATA_DEV_UNKNOWN) |
| 2773 | goto done; |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2774 | ata_port_printk(ap, KERN_INFO, "softreset failed, " |
| 2775 | "will try hardreset in 5 secs\n"); |
Tejun Heo | edbabd8 | 2006-04-02 20:55:02 +0900 | [diff] [blame] | 2776 | ssleep(5); |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2777 | } |
| 2778 | |
| 2779 | if (!hardreset) |
Tejun Heo | 9974e7c | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2780 | goto done; |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2781 | |
Tejun Heo | 90dac02 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2782 | while (1) { |
Tejun Heo | 96bd39e | 2006-05-15 20:57:38 +0900 | [diff] [blame] | 2783 | rc = ata_do_reset(ap, hardreset, classes); |
Tejun Heo | 90dac02 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2784 | if (rc == 0) { |
| 2785 | if (classes[0] != ATA_DEV_UNKNOWN) |
| 2786 | goto done; |
| 2787 | break; |
| 2788 | } |
| 2789 | |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2790 | if (sata_down_spd_limit(ap)) |
Tejun Heo | 90dac02 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2791 | goto done; |
Tejun Heo | edbabd8 | 2006-04-02 20:55:02 +0900 | [diff] [blame] | 2792 | |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2793 | ata_port_printk(ap, KERN_INFO, "hardreset failed, " |
| 2794 | "will retry in 5 secs\n"); |
Tejun Heo | edbabd8 | 2006-04-02 20:55:02 +0900 | [diff] [blame] | 2795 | ssleep(5); |
Tejun Heo | 90dac02 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2796 | } |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2797 | |
Tejun Heo | edbabd8 | 2006-04-02 20:55:02 +0900 | [diff] [blame] | 2798 | if (softreset) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2799 | ata_port_printk(ap, KERN_INFO, |
| 2800 | "hardreset succeeded without classification, " |
| 2801 | "will retry softreset in 5 secs\n"); |
Tejun Heo | edbabd8 | 2006-04-02 20:55:02 +0900 | [diff] [blame] | 2802 | ssleep(5); |
| 2803 | |
Tejun Heo | 96bd39e | 2006-05-15 20:57:38 +0900 | [diff] [blame] | 2804 | rc = ata_do_reset(ap, softreset, classes); |
Tejun Heo | edbabd8 | 2006-04-02 20:55:02 +0900 | [diff] [blame] | 2805 | } |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2806 | |
Tejun Heo | 9974e7c | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2807 | done: |
Tejun Heo | 96bd39e | 2006-05-15 20:57:38 +0900 | [diff] [blame] | 2808 | if (rc == 0) { |
| 2809 | if (postreset) |
| 2810 | postreset(ap, classes); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 2811 | |
| 2812 | ata_eh_thaw_port(ap); |
| 2813 | |
Tejun Heo | 96bd39e | 2006-05-15 20:57:38 +0900 | [diff] [blame] | 2814 | if (classes[0] == ATA_DEV_UNKNOWN) |
| 2815 | rc = -ENODEV; |
| 2816 | } |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 2817 | return rc; |
| 2818 | } |
| 2819 | |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2820 | /** |
| 2821 | * ata_dev_same_device - Determine whether new ID matches configured device |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2822 | * @dev: device to compare against |
| 2823 | * @new_class: class of the new device |
| 2824 | * @new_id: IDENTIFY page of the new device |
| 2825 | * |
| 2826 | * Compare @new_class and @new_id against @dev and determine |
| 2827 | * whether @dev is the device indicated by @new_class and |
| 2828 | * @new_id. |
| 2829 | * |
| 2830 | * LOCKING: |
| 2831 | * None. |
| 2832 | * |
| 2833 | * RETURNS: |
| 2834 | * 1 if @dev matches @new_class and @new_id, 0 otherwise. |
| 2835 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2836 | static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class, |
| 2837 | const u16 *new_id) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2838 | { |
| 2839 | const u16 *old_id = dev->id; |
| 2840 | unsigned char model[2][41], serial[2][21]; |
| 2841 | u64 new_n_sectors; |
| 2842 | |
| 2843 | if (dev->class != new_class) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2844 | ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n", |
| 2845 | dev->class, new_class); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2846 | return 0; |
| 2847 | } |
| 2848 | |
| 2849 | ata_id_c_string(old_id, model[0], ATA_ID_PROD_OFS, sizeof(model[0])); |
| 2850 | ata_id_c_string(new_id, model[1], ATA_ID_PROD_OFS, sizeof(model[1])); |
| 2851 | ata_id_c_string(old_id, serial[0], ATA_ID_SERNO_OFS, sizeof(serial[0])); |
| 2852 | ata_id_c_string(new_id, serial[1], ATA_ID_SERNO_OFS, sizeof(serial[1])); |
| 2853 | new_n_sectors = ata_id_n_sectors(new_id); |
| 2854 | |
| 2855 | if (strcmp(model[0], model[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2856 | ata_dev_printk(dev, KERN_INFO, "model number mismatch " |
| 2857 | "'%s' != '%s'\n", model[0], model[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2858 | return 0; |
| 2859 | } |
| 2860 | |
| 2861 | if (strcmp(serial[0], serial[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2862 | ata_dev_printk(dev, KERN_INFO, "serial number mismatch " |
| 2863 | "'%s' != '%s'\n", serial[0], serial[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2864 | return 0; |
| 2865 | } |
| 2866 | |
| 2867 | if (dev->class == ATA_DEV_ATA && dev->n_sectors != new_n_sectors) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2868 | ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch " |
| 2869 | "%llu != %llu\n", |
| 2870 | (unsigned long long)dev->n_sectors, |
| 2871 | (unsigned long long)new_n_sectors); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2872 | return 0; |
| 2873 | } |
| 2874 | |
| 2875 | return 1; |
| 2876 | } |
| 2877 | |
| 2878 | /** |
| 2879 | * ata_dev_revalidate - Revalidate ATA device |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2880 | * @dev: device to revalidate |
| 2881 | * @post_reset: is this revalidation after reset? |
| 2882 | * |
| 2883 | * Re-read IDENTIFY page and make sure @dev is still attached to |
| 2884 | * the port. |
| 2885 | * |
| 2886 | * LOCKING: |
| 2887 | * Kernel thread context (may sleep) |
| 2888 | * |
| 2889 | * RETURNS: |
| 2890 | * 0 on success, negative errno otherwise |
| 2891 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2892 | int ata_dev_revalidate(struct ata_device *dev, int post_reset) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2893 | { |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2894 | unsigned int class = dev->class; |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2895 | u16 *id = (void *)dev->ap->sector_buf; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2896 | int rc; |
| 2897 | |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2898 | if (!ata_dev_enabled(dev)) { |
| 2899 | rc = -ENODEV; |
| 2900 | goto fail; |
| 2901 | } |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2902 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2903 | /* read ID data */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2904 | rc = ata_dev_read_id(dev, &class, post_reset, id); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2905 | if (rc) |
| 2906 | goto fail; |
| 2907 | |
| 2908 | /* is the device still there? */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2909 | if (!ata_dev_same_device(dev, class, id)) { |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2910 | rc = -ENODEV; |
| 2911 | goto fail; |
| 2912 | } |
| 2913 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2914 | memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2915 | |
| 2916 | /* configure device according to the new ID */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2917 | rc = ata_dev_configure(dev, 0); |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2918 | if (rc == 0) |
| 2919 | return 0; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2920 | |
| 2921 | fail: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2922 | ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2923 | return rc; |
| 2924 | } |
| 2925 | |
Arjan van de Ven | 98ac62d | 2005-11-28 10:06:23 +0100 | [diff] [blame] | 2926 | static const char * const ata_dma_blacklist [] = { |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2927 | "WDC AC11000H", NULL, |
| 2928 | "WDC AC22100H", NULL, |
| 2929 | "WDC AC32500H", NULL, |
| 2930 | "WDC AC33100H", NULL, |
| 2931 | "WDC AC31600H", NULL, |
| 2932 | "WDC AC32100H", "24.09P07", |
| 2933 | "WDC AC23200L", "21.10N21", |
| 2934 | "Compaq CRD-8241B", NULL, |
| 2935 | "CRD-8400B", NULL, |
| 2936 | "CRD-8480B", NULL, |
| 2937 | "CRD-8482B", NULL, |
| 2938 | "CRD-84", NULL, |
| 2939 | "SanDisk SDP3B", NULL, |
| 2940 | "SanDisk SDP3B-64", NULL, |
| 2941 | "SANYO CD-ROM CRD", NULL, |
| 2942 | "HITACHI CDR-8", NULL, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2943 | "HITACHI CDR-8335", NULL, |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2944 | "HITACHI CDR-8435", NULL, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2945 | "Toshiba CD-ROM XM-6202B", NULL, |
| 2946 | "TOSHIBA CD-ROM XM-1702BC", NULL, |
| 2947 | "CD-532E-A", NULL, |
| 2948 | "E-IDE CD-ROM CR-840", NULL, |
| 2949 | "CD-ROM Drive/F5A", NULL, |
| 2950 | "WPI CDD-820", NULL, |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2951 | "SAMSUNG CD-ROM SC-148C", NULL, |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2952 | "SAMSUNG CD-ROM SC", NULL, |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2953 | "SanDisk SDP3B-64", NULL, |
| 2954 | "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL, |
| 2955 | "_NEC DV5800A", NULL, |
| 2956 | "SAMSUNG CD-ROM SN-124", "N001" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | }; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2958 | |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2959 | static int ata_strim(char *s, size_t len) |
| 2960 | { |
| 2961 | len = strnlen(s, len); |
| 2962 | |
| 2963 | /* ATAPI specifies that empty space is blank-filled; remove blanks */ |
| 2964 | while ((len > 0) && (s[len - 1] == ' ')) { |
| 2965 | len--; |
| 2966 | s[len] = 0; |
| 2967 | } |
| 2968 | return len; |
| 2969 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2970 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 2971 | static int ata_dma_blacklisted(const struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | { |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2973 | unsigned char model_num[40]; |
| 2974 | unsigned char model_rev[16]; |
| 2975 | unsigned int nlen, rlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | int i; |
| 2977 | |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2978 | ata_id_string(dev->id, model_num, ATA_ID_PROD_OFS, |
| 2979 | sizeof(model_num)); |
| 2980 | ata_id_string(dev->id, model_rev, ATA_ID_FW_REV_OFS, |
| 2981 | sizeof(model_rev)); |
| 2982 | nlen = ata_strim(model_num, sizeof(model_num)); |
| 2983 | rlen = ata_strim(model_rev, sizeof(model_rev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 2985 | for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i += 2) { |
| 2986 | if (!strncmp(ata_dma_blacklist[i], model_num, nlen)) { |
| 2987 | if (ata_dma_blacklist[i+1] == NULL) |
| 2988 | return 1; |
| 2989 | if (!strncmp(ata_dma_blacklist[i], model_rev, rlen)) |
| 2990 | return 1; |
| 2991 | } |
| 2992 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | return 0; |
| 2994 | } |
| 2995 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2996 | /** |
| 2997 | * ata_dev_xfermask - Compute supported xfermask of the given device |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 2998 | * @dev: Device to compute xfermask for |
| 2999 | * |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3000 | * Compute supported xfermask of @dev and store it in |
| 3001 | * dev->*_mask. This function is responsible for applying all |
| 3002 | * known limits including host controller limits, device |
| 3003 | * blacklist, etc... |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3004 | * |
Tejun Heo | 600511e | 2006-03-25 11:14:07 +0900 | [diff] [blame] | 3005 | * FIXME: The current implementation limits all transfer modes to |
| 3006 | * the fastest of the lowested device on the port. This is not |
Tejun Heo | 05c8e0a | 2006-03-25 14:28:57 +0900 | [diff] [blame] | 3007 | * required on most controllers. |
Tejun Heo | 600511e | 2006-03-25 11:14:07 +0900 | [diff] [blame] | 3008 | * |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3009 | * LOCKING: |
| 3010 | * None. |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3011 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3012 | static void ata_dev_xfermask(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3014 | struct ata_port *ap = dev->ap; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3015 | struct ata_host_set *hs = ap->host_set; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3016 | unsigned long xfer_mask; |
| 3017 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3019 | xfer_mask = ata_pack_xfermask(ap->pio_mask, |
| 3020 | ap->mwdma_mask, ap->udma_mask); |
| 3021 | |
| 3022 | /* Apply cable rule here. Don't apply it early because when |
| 3023 | * we handle hot plug the cable type can itself change. |
| 3024 | */ |
| 3025 | if (ap->cbl == ATA_CBL_PATA40) |
| 3026 | xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3028 | /* FIXME: Use port-wide xfermask for now */ |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3029 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 3030 | struct ata_device *d = &ap->device[i]; |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3031 | |
| 3032 | if (ata_dev_absent(d)) |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3033 | continue; |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3034 | |
| 3035 | if (ata_dev_disabled(d)) { |
| 3036 | /* to avoid violating device selection timing */ |
| 3037 | xfer_mask &= ata_pack_xfermask(d->pio_mask, |
| 3038 | UINT_MAX, UINT_MAX); |
| 3039 | continue; |
| 3040 | } |
| 3041 | |
| 3042 | xfer_mask &= ata_pack_xfermask(d->pio_mask, |
| 3043 | d->mwdma_mask, d->udma_mask); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3044 | xfer_mask &= ata_id_xfermask(d->id); |
| 3045 | if (ata_dma_blacklisted(d)) |
| 3046 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | } |
| 3048 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3049 | if (ata_dma_blacklisted(dev)) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3050 | ata_dev_printk(dev, KERN_WARNING, |
| 3051 | "device is on DMA blacklist, disabling DMA\n"); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3052 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3053 | if (hs->flags & ATA_HOST_SIMPLEX) { |
| 3054 | if (hs->simplex_claimed) |
| 3055 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
| 3056 | } |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3057 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3058 | if (ap->ops->mode_filter) |
| 3059 | xfer_mask = ap->ops->mode_filter(ap, dev, xfer_mask); |
| 3060 | |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 3061 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, |
| 3062 | &dev->mwdma_mask, &dev->udma_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | } |
| 3064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3065 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | * @dev: Device to which command will be sent |
| 3068 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3069 | * Issue SET FEATURES - XFER MODE command to device @dev |
| 3070 | * on port @ap. |
| 3071 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3072 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3073 | * PCI/etc. bus probe sem. |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3074 | * |
| 3075 | * RETURNS: |
| 3076 | * 0 on success, AC_ERR_* mask otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | */ |
| 3078 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3079 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 3081 | struct ata_taskfile tf; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3082 | unsigned int err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3083 | |
| 3084 | /* set up set-features taskfile */ |
| 3085 | DPRINTK("set features - xfer mode\n"); |
| 3086 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3087 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 3088 | tf.command = ATA_CMD_SET_FEATURES; |
| 3089 | tf.feature = SETFEATURES_XFER; |
| 3090 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 3091 | tf.protocol = ATA_PROT_NODATA; |
| 3092 | tf.nsect = dev->xfer_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3093 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3094 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3096 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 3097 | return err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | } |
| 3099 | |
| 3100 | /** |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3101 | * ata_dev_init_params - Issue INIT DEV PARAMS command |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3102 | * @dev: Device to which command will be sent |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 3103 | * @heads: Number of heads (taskfile parameter) |
| 3104 | * @sectors: Number of sectors (taskfile parameter) |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3105 | * |
| 3106 | * LOCKING: |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 3107 | * Kernel thread context (may sleep) |
| 3108 | * |
| 3109 | * RETURNS: |
| 3110 | * 0 on success, AC_ERR_* mask otherwise. |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3111 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3112 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 3113 | u16 heads, u16 sectors) |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3114 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 3115 | struct ata_taskfile tf; |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 3116 | unsigned int err_mask; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3117 | |
| 3118 | /* Number of sectors per track 1-255. Number of heads 1-16 */ |
| 3119 | if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16) |
Albert Lee | 00b6f5e | 2006-03-27 16:39:18 +0800 | [diff] [blame] | 3120 | return AC_ERR_INVALID; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3121 | |
| 3122 | /* set up init dev params taskfile */ |
| 3123 | DPRINTK("init dev params \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_INIT_DEV_PARAMS; |
| 3127 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 3128 | tf.protocol = ATA_PROT_NODATA; |
| 3129 | tf.nsect = sectors; |
| 3130 | tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */ |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [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); |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3133 | |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 3134 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 3135 | return err_mask; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 3136 | } |
| 3137 | |
| 3138 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3139 | * ata_sg_clean - Unmap DMA memory associated with command |
| 3140 | * @qc: Command containing DMA memory to be released |
| 3141 | * |
| 3142 | * Unmap all mapped DMA memory associated with this command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | * |
| 3144 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3145 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3146 | */ |
| 3147 | |
| 3148 | static void ata_sg_clean(struct ata_queued_cmd *qc) |
| 3149 | { |
| 3150 | struct ata_port *ap = qc->ap; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3151 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3152 | int dir = qc->dma_dir; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3153 | void *pad_buf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3154 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3155 | WARN_ON(!(qc->flags & ATA_QCFLAG_DMAMAP)); |
| 3156 | WARN_ON(sg == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3157 | |
| 3158 | if (qc->flags & ATA_QCFLAG_SINGLE) |
Jeff Garzik | f131883 | 2006-02-20 16:55:56 -0500 | [diff] [blame] | 3159 | WARN_ON(qc->n_elem > 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3160 | |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 3161 | VPRINTK("unmapping %u sg elements\n", qc->n_elem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3162 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3163 | /* if we padded the buffer out to 32-bit bound, and data |
| 3164 | * xfer direction is from-device, we must copy from the |
| 3165 | * pad buffer back into the supplied buffer |
| 3166 | */ |
| 3167 | if (qc->pad_len && !(qc->tf.flags & ATA_TFLAG_WRITE)) |
| 3168 | pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ); |
| 3169 | |
| 3170 | if (qc->flags & ATA_QCFLAG_SG) { |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3171 | if (qc->n_elem) |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3172 | dma_unmap_sg(ap->dev, sg, qc->n_elem, dir); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3173 | /* restore last sg */ |
| 3174 | sg[qc->orig_n_elem - 1].length += qc->pad_len; |
| 3175 | if (pad_buf) { |
| 3176 | struct scatterlist *psg = &qc->pad_sgent; |
| 3177 | void *addr = kmap_atomic(psg->page, KM_IRQ0); |
| 3178 | memcpy(addr + psg->offset, pad_buf, qc->pad_len); |
Mark Lord | dfa1598 | 2005-12-12 23:19:28 -0500 | [diff] [blame] | 3179 | kunmap_atomic(addr, KM_IRQ0); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3180 | } |
| 3181 | } else { |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3182 | if (qc->n_elem) |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3183 | dma_unmap_single(ap->dev, |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3184 | sg_dma_address(&sg[0]), sg_dma_len(&sg[0]), |
| 3185 | dir); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3186 | /* restore sg */ |
| 3187 | sg->length += qc->pad_len; |
| 3188 | if (pad_buf) |
| 3189 | memcpy(qc->buf_virt + sg->length - qc->pad_len, |
| 3190 | pad_buf, qc->pad_len); |
| 3191 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3192 | |
| 3193 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3194 | qc->__sg = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3195 | } |
| 3196 | |
| 3197 | /** |
| 3198 | * ata_fill_sg - Fill PCI IDE PRD table |
| 3199 | * @qc: Metadata associated with taskfile to be transferred |
| 3200 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3201 | * Fill PCI IDE PRD (scatter-gather) table with segments |
| 3202 | * associated with the current disk command. |
| 3203 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | * LOCKING: |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3205 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3206 | * |
| 3207 | */ |
| 3208 | static void ata_fill_sg(struct ata_queued_cmd *qc) |
| 3209 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | struct ata_port *ap = qc->ap; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3211 | struct scatterlist *sg; |
| 3212 | unsigned int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3213 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3214 | WARN_ON(qc->__sg == NULL); |
Jeff Garzik | f131883 | 2006-02-20 16:55:56 -0500 | [diff] [blame] | 3215 | WARN_ON(qc->n_elem == 0 && qc->pad_len == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3216 | |
| 3217 | idx = 0; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3218 | ata_for_each_sg(sg, qc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3219 | u32 addr, offset; |
| 3220 | u32 sg_len, len; |
| 3221 | |
| 3222 | /* determine if physical DMA addr spans 64K boundary. |
| 3223 | * Note h/w doesn't support 64-bit, so we unconditionally |
| 3224 | * truncate dma_addr_t to u32. |
| 3225 | */ |
| 3226 | addr = (u32) sg_dma_address(sg); |
| 3227 | sg_len = sg_dma_len(sg); |
| 3228 | |
| 3229 | while (sg_len) { |
| 3230 | offset = addr & 0xffff; |
| 3231 | len = sg_len; |
| 3232 | if ((offset + sg_len) > 0x10000) |
| 3233 | len = 0x10000 - offset; |
| 3234 | |
| 3235 | ap->prd[idx].addr = cpu_to_le32(addr); |
| 3236 | ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff); |
| 3237 | VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len); |
| 3238 | |
| 3239 | idx++; |
| 3240 | sg_len -= len; |
| 3241 | addr += len; |
| 3242 | } |
| 3243 | } |
| 3244 | |
| 3245 | if (idx) |
| 3246 | ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT); |
| 3247 | } |
| 3248 | /** |
| 3249 | * ata_check_atapi_dma - Check whether ATAPI DMA can be supported |
| 3250 | * @qc: Metadata associated with taskfile to check |
| 3251 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3252 | * Allow low-level driver to filter ATA PACKET commands, returning |
| 3253 | * a status indicating whether or not it is OK to use DMA for the |
| 3254 | * supplied PACKET command. |
| 3255 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3256 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3257 | * spin_lock_irqsave(host_set lock) |
| 3258 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3259 | * RETURNS: 0 when ATAPI DMA can be used |
| 3260 | * nonzero otherwise |
| 3261 | */ |
| 3262 | int ata_check_atapi_dma(struct ata_queued_cmd *qc) |
| 3263 | { |
| 3264 | struct ata_port *ap = qc->ap; |
| 3265 | int rc = 0; /* Assume ATAPI DMA is OK by default */ |
| 3266 | |
| 3267 | if (ap->ops->check_atapi_dma) |
| 3268 | rc = ap->ops->check_atapi_dma(qc); |
| 3269 | |
Albert Lee | c2bbc55 | 2006-03-25 17:56:55 +0800 | [diff] [blame] | 3270 | /* We don't support polling DMA. |
| 3271 | * Use PIO if the LLDD handles only interrupts in |
| 3272 | * the HSM_ST_LAST state and the ATAPI device |
| 3273 | * generates CDB interrupts. |
| 3274 | */ |
| 3275 | if ((ap->flags & ATA_FLAG_PIO_POLLING) && |
| 3276 | (qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
| 3277 | rc = 1; |
| 3278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3279 | return rc; |
| 3280 | } |
| 3281 | /** |
| 3282 | * ata_qc_prep - Prepare taskfile for submission |
| 3283 | * @qc: Metadata associated with taskfile to be prepared |
| 3284 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3285 | * Prepare ATA taskfile for submission. |
| 3286 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3287 | * LOCKING: |
| 3288 | * spin_lock_irqsave(host_set lock) |
| 3289 | */ |
| 3290 | void ata_qc_prep(struct ata_queued_cmd *qc) |
| 3291 | { |
| 3292 | if (!(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 3293 | return; |
| 3294 | |
| 3295 | ata_fill_sg(qc); |
| 3296 | } |
| 3297 | |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 3298 | void ata_noop_qc_prep(struct ata_queued_cmd *qc) { } |
| 3299 | |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3300 | /** |
| 3301 | * ata_sg_init_one - Associate command with memory buffer |
| 3302 | * @qc: Command to be associated |
| 3303 | * @buf: Memory buffer |
| 3304 | * @buflen: Length of memory buffer, in bytes. |
| 3305 | * |
| 3306 | * Initialize the data-related elements of queued_cmd @qc |
| 3307 | * to point to a single memory buffer, @buf of byte length @buflen. |
| 3308 | * |
| 3309 | * LOCKING: |
| 3310 | * spin_lock_irqsave(host_set lock) |
| 3311 | */ |
| 3312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, unsigned int buflen) |
| 3314 | { |
| 3315 | struct scatterlist *sg; |
| 3316 | |
| 3317 | qc->flags |= ATA_QCFLAG_SINGLE; |
| 3318 | |
| 3319 | memset(&qc->sgent, 0, sizeof(qc->sgent)); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3320 | qc->__sg = &qc->sgent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | qc->n_elem = 1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3322 | qc->orig_n_elem = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3323 | qc->buf_virt = buf; |
| 3324 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3325 | sg = qc->__sg; |
Jeff Garzik | f0612bb | 2005-10-30 01:58:18 -0500 | [diff] [blame] | 3326 | sg_init_one(sg, buf, buflen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3327 | } |
| 3328 | |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3329 | /** |
| 3330 | * ata_sg_init - Associate command with scatter-gather table. |
| 3331 | * @qc: Command to be associated |
| 3332 | * @sg: Scatter-gather table. |
| 3333 | * @n_elem: Number of elements in s/g table. |
| 3334 | * |
| 3335 | * Initialize the data-related elements of queued_cmd @qc |
| 3336 | * to point to a scatter-gather table @sg, containing @n_elem |
| 3337 | * elements. |
| 3338 | * |
| 3339 | * LOCKING: |
| 3340 | * spin_lock_irqsave(host_set lock) |
| 3341 | */ |
| 3342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3343 | void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg, |
| 3344 | unsigned int n_elem) |
| 3345 | { |
| 3346 | qc->flags |= ATA_QCFLAG_SG; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3347 | qc->__sg = sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3348 | qc->n_elem = n_elem; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3349 | qc->orig_n_elem = n_elem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3350 | } |
| 3351 | |
| 3352 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3353 | * ata_sg_setup_one - DMA-map the memory buffer associated with a command. |
| 3354 | * @qc: Command with memory buffer to be mapped. |
| 3355 | * |
| 3356 | * DMA-map the memory buffer associated with queued_cmd @qc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | * |
| 3358 | * LOCKING: |
| 3359 | * spin_lock_irqsave(host_set lock) |
| 3360 | * |
| 3361 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3362 | * Zero on success, negative on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | */ |
| 3364 | |
| 3365 | static int ata_sg_setup_one(struct ata_queued_cmd *qc) |
| 3366 | { |
| 3367 | struct ata_port *ap = qc->ap; |
| 3368 | int dir = qc->dma_dir; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3369 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | dma_addr_t dma_address; |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3371 | int trim_sg = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3372 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3373 | /* we must lengthen transfers to end on a 32-bit boundary */ |
| 3374 | qc->pad_len = sg->length & 3; |
| 3375 | if (qc->pad_len) { |
| 3376 | void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ); |
| 3377 | struct scatterlist *psg = &qc->pad_sgent; |
| 3378 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3379 | WARN_ON(qc->dev->class != ATA_DEV_ATAPI); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3380 | |
| 3381 | memset(pad_buf, 0, ATA_DMA_PAD_SZ); |
| 3382 | |
| 3383 | if (qc->tf.flags & ATA_TFLAG_WRITE) |
| 3384 | memcpy(pad_buf, qc->buf_virt + sg->length - qc->pad_len, |
| 3385 | qc->pad_len); |
| 3386 | |
| 3387 | sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ); |
| 3388 | sg_dma_len(psg) = ATA_DMA_PAD_SZ; |
| 3389 | /* trim sg */ |
| 3390 | sg->length -= qc->pad_len; |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3391 | if (sg->length == 0) |
| 3392 | trim_sg = 1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3393 | |
| 3394 | DPRINTK("padding done, sg->length=%u pad_len=%u\n", |
| 3395 | sg->length, qc->pad_len); |
| 3396 | } |
| 3397 | |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3398 | if (trim_sg) { |
| 3399 | qc->n_elem--; |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3400 | goto skip_map; |
| 3401 | } |
| 3402 | |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3403 | dma_address = dma_map_single(ap->dev, qc->buf_virt, |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3404 | sg->length, dir); |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3405 | if (dma_mapping_error(dma_address)) { |
| 3406 | /* restore sg */ |
| 3407 | sg->length += qc->pad_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | return -1; |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3409 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3410 | |
| 3411 | sg_dma_address(sg) = dma_address; |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3412 | sg_dma_len(sg) = sg->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3413 | |
Tejun Heo | 2e242fa | 2006-02-20 23:48:38 +0900 | [diff] [blame] | 3414 | skip_map: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3415 | DPRINTK("mapped buffer of %d bytes for %s\n", sg_dma_len(sg), |
| 3416 | qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 3417 | |
| 3418 | return 0; |
| 3419 | } |
| 3420 | |
| 3421 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3422 | * ata_sg_setup - DMA-map the scatter-gather table associated with a command. |
| 3423 | * @qc: Command with scatter-gather table to be mapped. |
| 3424 | * |
| 3425 | * DMA-map the scatter-gather table associated with queued_cmd @qc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3426 | * |
| 3427 | * LOCKING: |
| 3428 | * spin_lock_irqsave(host_set lock) |
| 3429 | * |
| 3430 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3431 | * Zero on success, negative on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3432 | * |
| 3433 | */ |
| 3434 | |
| 3435 | static int ata_sg_setup(struct ata_queued_cmd *qc) |
| 3436 | { |
| 3437 | struct ata_port *ap = qc->ap; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3438 | struct scatterlist *sg = qc->__sg; |
| 3439 | struct scatterlist *lsg = &sg[qc->n_elem - 1]; |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3440 | int n_elem, pre_n_elem, dir, trim_sg = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3441 | |
| 3442 | VPRINTK("ENTER, ata%u\n", ap->id); |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3443 | WARN_ON(!(qc->flags & ATA_QCFLAG_SG)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3444 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3445 | /* we must lengthen transfers to end on a 32-bit boundary */ |
| 3446 | qc->pad_len = lsg->length & 3; |
| 3447 | if (qc->pad_len) { |
| 3448 | void *pad_buf = ap->pad + (qc->tag * ATA_DMA_PAD_SZ); |
| 3449 | struct scatterlist *psg = &qc->pad_sgent; |
| 3450 | unsigned int offset; |
| 3451 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 3452 | WARN_ON(qc->dev->class != ATA_DEV_ATAPI); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3453 | |
| 3454 | memset(pad_buf, 0, ATA_DMA_PAD_SZ); |
| 3455 | |
| 3456 | /* |
| 3457 | * psg->page/offset are used to copy to-be-written |
| 3458 | * data in this function or read data in ata_sg_clean. |
| 3459 | */ |
| 3460 | offset = lsg->offset + lsg->length - qc->pad_len; |
| 3461 | psg->page = nth_page(lsg->page, offset >> PAGE_SHIFT); |
| 3462 | psg->offset = offset_in_page(offset); |
| 3463 | |
| 3464 | if (qc->tf.flags & ATA_TFLAG_WRITE) { |
| 3465 | void *addr = kmap_atomic(psg->page, KM_IRQ0); |
| 3466 | memcpy(pad_buf, addr + psg->offset, qc->pad_len); |
Mark Lord | dfa1598 | 2005-12-12 23:19:28 -0500 | [diff] [blame] | 3467 | kunmap_atomic(addr, KM_IRQ0); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3468 | } |
| 3469 | |
| 3470 | sg_dma_address(psg) = ap->pad_dma + (qc->tag * ATA_DMA_PAD_SZ); |
| 3471 | sg_dma_len(psg) = ATA_DMA_PAD_SZ; |
| 3472 | /* trim last sg */ |
| 3473 | lsg->length -= qc->pad_len; |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3474 | if (lsg->length == 0) |
| 3475 | trim_sg = 1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3476 | |
| 3477 | DPRINTK("padding done, sg[%d].length=%u pad_len=%u\n", |
| 3478 | qc->n_elem - 1, lsg->length, qc->pad_len); |
| 3479 | } |
| 3480 | |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3481 | pre_n_elem = qc->n_elem; |
| 3482 | if (trim_sg && pre_n_elem) |
| 3483 | pre_n_elem--; |
| 3484 | |
| 3485 | if (!pre_n_elem) { |
| 3486 | n_elem = 0; |
| 3487 | goto skip_map; |
| 3488 | } |
| 3489 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3490 | dir = qc->dma_dir; |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 3491 | n_elem = dma_map_sg(ap->dev, sg, pre_n_elem, dir); |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3492 | if (n_elem < 1) { |
| 3493 | /* restore last sg */ |
| 3494 | lsg->length += qc->pad_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3495 | return -1; |
Tejun Heo | 537a95d | 2005-11-05 14:29:01 -0500 | [diff] [blame] | 3496 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3497 | |
| 3498 | DPRINTK("%d sg elements mapped\n", n_elem); |
| 3499 | |
Jeff Garzik | e1410f2 | 2005-11-14 14:06:26 -0500 | [diff] [blame] | 3500 | skip_map: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3501 | qc->n_elem = n_elem; |
| 3502 | |
| 3503 | return 0; |
| 3504 | } |
| 3505 | |
| 3506 | /** |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 3507 | * swap_buf_le16 - swap halves of 16-bit words in place |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 3508 | * @buf: Buffer to swap |
| 3509 | * @buf_words: Number of 16-bit words in buffer. |
| 3510 | * |
| 3511 | * Swap halves of 16-bit words if needed to convert from |
| 3512 | * little-endian byte order to native cpu byte order, or |
| 3513 | * vice-versa. |
| 3514 | * |
| 3515 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 3516 | * Inherited from caller. |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 3517 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3518 | void swap_buf_le16(u16 *buf, unsigned int buf_words) |
| 3519 | { |
| 3520 | #ifdef __BIG_ENDIAN |
| 3521 | unsigned int i; |
| 3522 | |
| 3523 | for (i = 0; i < buf_words; i++) |
| 3524 | buf[i] = le16_to_cpu(buf[i]); |
| 3525 | #endif /* __BIG_ENDIAN */ |
| 3526 | } |
| 3527 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3528 | /** |
| 3529 | * ata_mmio_data_xfer - Transfer data by MMIO |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3530 | * @dev: device for this I/O |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3531 | * @buf: data buffer |
| 3532 | * @buflen: buffer length |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 3533 | * @write_data: read/write |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3534 | * |
| 3535 | * Transfer data from/to the device data register by MMIO. |
| 3536 | * |
| 3537 | * LOCKING: |
| 3538 | * Inherited from caller. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3539 | */ |
| 3540 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3541 | void ata_mmio_data_xfer(struct ata_device *adev, unsigned char *buf, |
| 3542 | unsigned int buflen, int write_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3543 | { |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3544 | struct ata_port *ap = adev->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3545 | unsigned int i; |
| 3546 | unsigned int words = buflen >> 1; |
| 3547 | u16 *buf16 = (u16 *) buf; |
| 3548 | void __iomem *mmio = (void __iomem *)ap->ioaddr.data_addr; |
| 3549 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3550 | /* Transfer multiple of 2 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | if (write_data) { |
| 3552 | for (i = 0; i < words; i++) |
| 3553 | writew(le16_to_cpu(buf16[i]), mmio); |
| 3554 | } else { |
| 3555 | for (i = 0; i < words; i++) |
| 3556 | buf16[i] = cpu_to_le16(readw(mmio)); |
| 3557 | } |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3558 | |
| 3559 | /* Transfer trailing 1 byte, if any. */ |
| 3560 | if (unlikely(buflen & 0x01)) { |
| 3561 | u16 align_buf[1] = { 0 }; |
| 3562 | unsigned char *trailing_buf = buf + buflen - 1; |
| 3563 | |
| 3564 | if (write_data) { |
| 3565 | memcpy(align_buf, trailing_buf, 1); |
| 3566 | writew(le16_to_cpu(align_buf[0]), mmio); |
| 3567 | } else { |
| 3568 | align_buf[0] = cpu_to_le16(readw(mmio)); |
| 3569 | memcpy(trailing_buf, align_buf, 1); |
| 3570 | } |
| 3571 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3572 | } |
| 3573 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3574 | /** |
| 3575 | * ata_pio_data_xfer - Transfer data by PIO |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3576 | * @adev: device to target |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3577 | * @buf: data buffer |
| 3578 | * @buflen: buffer length |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 3579 | * @write_data: read/write |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3580 | * |
| 3581 | * Transfer data from/to the device data register by PIO. |
| 3582 | * |
| 3583 | * LOCKING: |
| 3584 | * Inherited from caller. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3585 | */ |
| 3586 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3587 | void ata_pio_data_xfer(struct ata_device *adev, unsigned char *buf, |
| 3588 | unsigned int buflen, int write_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3589 | { |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3590 | struct ata_port *ap = adev->ap; |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3591 | unsigned int words = buflen >> 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3592 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3593 | /* Transfer multiple of 2 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3594 | if (write_data) |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3595 | outsw(ap->ioaddr.data_addr, buf, words); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3596 | else |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3597 | insw(ap->ioaddr.data_addr, buf, words); |
| 3598 | |
| 3599 | /* Transfer trailing 1 byte, if any. */ |
| 3600 | if (unlikely(buflen & 0x01)) { |
| 3601 | u16 align_buf[1] = { 0 }; |
| 3602 | unsigned char *trailing_buf = buf + buflen - 1; |
| 3603 | |
| 3604 | if (write_data) { |
| 3605 | memcpy(align_buf, trailing_buf, 1); |
| 3606 | outw(le16_to_cpu(align_buf[0]), ap->ioaddr.data_addr); |
| 3607 | } else { |
| 3608 | align_buf[0] = cpu_to_le16(inw(ap->ioaddr.data_addr)); |
| 3609 | memcpy(trailing_buf, align_buf, 1); |
| 3610 | } |
| 3611 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3612 | } |
| 3613 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3614 | /** |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame^] | 3615 | * ata_pio_data_xfer_noirq - Transfer data by PIO |
| 3616 | * @adev: device to target |
| 3617 | * @buf: data buffer |
| 3618 | * @buflen: buffer length |
| 3619 | * @write_data: read/write |
| 3620 | * |
| 3621 | * Transfer data from/to the device data register by PIO. Do the |
| 3622 | * transfer with interrupts disabled. |
| 3623 | * |
| 3624 | * LOCKING: |
| 3625 | * Inherited from caller. |
| 3626 | */ |
| 3627 | |
| 3628 | void ata_pio_data_xfer_noirq(struct ata_device *adev, unsigned char *buf, |
| 3629 | unsigned int buflen, int write_data) |
| 3630 | { |
| 3631 | unsigned long flags; |
| 3632 | local_irq_save(flags); |
| 3633 | ata_pio_data_xfer(adev, buf, buflen, write_data); |
| 3634 | local_irq_restore(flags); |
| 3635 | } |
| 3636 | |
| 3637 | |
| 3638 | /** |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3639 | * ata_pio_sector - Transfer ATA_SECT_SIZE (512 bytes) of data. |
| 3640 | * @qc: Command on going |
| 3641 | * |
| 3642 | * Transfer ATA_SECT_SIZE of data from/to the ATA device. |
| 3643 | * |
| 3644 | * LOCKING: |
| 3645 | * Inherited from caller. |
| 3646 | */ |
| 3647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | static void ata_pio_sector(struct ata_queued_cmd *qc) |
| 3649 | { |
| 3650 | int do_write = (qc->tf.flags & ATA_TFLAG_WRITE); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3651 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3652 | struct ata_port *ap = qc->ap; |
| 3653 | struct page *page; |
| 3654 | unsigned int offset; |
| 3655 | unsigned char *buf; |
| 3656 | |
| 3657 | if (qc->cursect == (qc->nsect - 1)) |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3658 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3659 | |
| 3660 | page = sg[qc->cursg].page; |
| 3661 | offset = sg[qc->cursg].offset + qc->cursg_ofs * ATA_SECT_SIZE; |
| 3662 | |
| 3663 | /* get the current page and offset */ |
| 3664 | page = nth_page(page, (offset >> PAGE_SHIFT)); |
| 3665 | offset %= PAGE_SIZE; |
| 3666 | |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3667 | DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 3668 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3669 | if (PageHighMem(page)) { |
| 3670 | unsigned long flags; |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3671 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3672 | /* FIXME: use a bounce buffer */ |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3673 | local_irq_save(flags); |
| 3674 | buf = kmap_atomic(page, KM_IRQ0); |
Albert Lee | 083958d | 2005-10-09 09:47:31 -0400 | [diff] [blame] | 3675 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3676 | /* do the actual data transfer */ |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3677 | 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] | 3678 | |
| 3679 | kunmap_atomic(buf, KM_IRQ0); |
| 3680 | local_irq_restore(flags); |
| 3681 | } else { |
| 3682 | buf = page_address(page); |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3683 | 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] | 3684 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3685 | |
| 3686 | qc->cursect++; |
| 3687 | qc->cursg_ofs++; |
| 3688 | |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3689 | if ((qc->cursg_ofs * ATA_SECT_SIZE) == (&sg[qc->cursg])->length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3690 | qc->cursg++; |
| 3691 | qc->cursg_ofs = 0; |
| 3692 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3693 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3694 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3695 | /** |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3696 | * ata_pio_sectors - Transfer one or many 512-byte sectors. |
| 3697 | * @qc: Command on going |
| 3698 | * |
Jeff Garzik | c81e29b | 2006-05-24 01:49:12 -0400 | [diff] [blame] | 3699 | * Transfer one or many ATA_SECT_SIZE of data from/to the |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3700 | * ATA device for the DRQ request. |
| 3701 | * |
| 3702 | * LOCKING: |
| 3703 | * Inherited from caller. |
| 3704 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3705 | |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3706 | static void ata_pio_sectors(struct ata_queued_cmd *qc) |
| 3707 | { |
| 3708 | if (is_multi_taskfile(&qc->tf)) { |
| 3709 | /* READ/WRITE MULTIPLE */ |
| 3710 | unsigned int nsect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3711 | |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 3712 | WARN_ON(qc->dev->multi_count == 0); |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 3713 | |
| 3714 | nsect = min(qc->nsect - qc->cursect, qc->dev->multi_count); |
| 3715 | while (nsect--) |
| 3716 | ata_pio_sector(qc); |
| 3717 | } else |
| 3718 | ata_pio_sector(qc); |
| 3719 | } |
| 3720 | |
| 3721 | /** |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 3722 | * atapi_send_cdb - Write CDB bytes to hardware |
| 3723 | * @ap: Port to which ATAPI device is attached. |
| 3724 | * @qc: Taskfile currently active |
| 3725 | * |
| 3726 | * When device has indicated its readiness to accept |
| 3727 | * a CDB, this function is called. Send the CDB. |
| 3728 | * |
| 3729 | * LOCKING: |
| 3730 | * caller. |
| 3731 | */ |
| 3732 | |
| 3733 | static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc) |
| 3734 | { |
| 3735 | /* send SCSI cdb */ |
| 3736 | DPRINTK("send cdb\n"); |
Jeff Garzik | db024d5 | 2006-02-13 00:23:57 -0500 | [diff] [blame] | 3737 | WARN_ON(qc->dev->cdb_len < 12); |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 3738 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3739 | 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] | 3740 | ata_altstatus(ap); /* flush */ |
| 3741 | |
| 3742 | switch (qc->tf.protocol) { |
| 3743 | case ATA_PROT_ATAPI: |
| 3744 | ap->hsm_task_state = HSM_ST; |
| 3745 | break; |
| 3746 | case ATA_PROT_ATAPI_NODATA: |
| 3747 | ap->hsm_task_state = HSM_ST_LAST; |
| 3748 | break; |
| 3749 | case ATA_PROT_ATAPI_DMA: |
| 3750 | ap->hsm_task_state = HSM_ST_LAST; |
| 3751 | /* initiate bmdma */ |
| 3752 | ap->ops->bmdma_start(qc); |
| 3753 | break; |
| 3754 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3755 | } |
| 3756 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3757 | /** |
| 3758 | * __atapi_pio_bytes - Transfer data from/to the ATAPI device. |
| 3759 | * @qc: Command on going |
| 3760 | * @bytes: number of bytes |
| 3761 | * |
| 3762 | * Transfer Transfer data from/to the ATAPI device. |
| 3763 | * |
| 3764 | * LOCKING: |
| 3765 | * Inherited from caller. |
| 3766 | * |
| 3767 | */ |
| 3768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3769 | static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes) |
| 3770 | { |
| 3771 | int do_write = (qc->tf.flags & ATA_TFLAG_WRITE); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3772 | struct scatterlist *sg = qc->__sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3773 | struct ata_port *ap = qc->ap; |
| 3774 | struct page *page; |
| 3775 | unsigned char *buf; |
| 3776 | unsigned int offset, count; |
| 3777 | |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3778 | if (qc->curbytes + bytes >= qc->nbytes) |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3779 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3780 | |
| 3781 | next_sg: |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3782 | if (unlikely(qc->cursg >= qc->n_elem)) { |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 3783 | /* |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3784 | * The end of qc->sg is reached and the device expects |
| 3785 | * more data to transfer. In order not to overrun qc->sg |
| 3786 | * and fulfill length specified in the byte count register, |
| 3787 | * - for read case, discard trailing data from the device |
| 3788 | * - for write case, padding zero data to the device |
| 3789 | */ |
| 3790 | u16 pad_buf[1] = { 0 }; |
| 3791 | unsigned int words = bytes >> 1; |
| 3792 | unsigned int i; |
| 3793 | |
| 3794 | if (words) /* warning if bytes > 1 */ |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3795 | ata_dev_printk(qc->dev, KERN_WARNING, |
| 3796 | "%u bytes trailing data\n", bytes); |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3797 | |
| 3798 | for (i = 0; i < words; i++) |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3799 | 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] | 3800 | |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3801 | ap->hsm_task_state = HSM_ST_LAST; |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3802 | return; |
| 3803 | } |
| 3804 | |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 3805 | sg = &qc->__sg[qc->cursg]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3806 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3807 | page = sg->page; |
| 3808 | offset = sg->offset + qc->cursg_ofs; |
| 3809 | |
| 3810 | /* get the current page and offset */ |
| 3811 | page = nth_page(page, (offset >> PAGE_SHIFT)); |
| 3812 | offset %= PAGE_SIZE; |
| 3813 | |
Albert Lee | 6952df0 | 2005-06-06 15:56:03 +0800 | [diff] [blame] | 3814 | /* don't overrun current sg */ |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3815 | count = min(sg->length - qc->cursg_ofs, bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3816 | |
| 3817 | /* don't cross page boundaries */ |
| 3818 | count = min(count, (unsigned int)PAGE_SIZE - offset); |
| 3819 | |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3820 | DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 3821 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3822 | if (PageHighMem(page)) { |
| 3823 | unsigned long flags; |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 3824 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3825 | /* FIXME: use bounce buffer */ |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3826 | local_irq_save(flags); |
| 3827 | buf = kmap_atomic(page, KM_IRQ0); |
Albert Lee | 083958d | 2005-10-09 09:47:31 -0400 | [diff] [blame] | 3828 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3829 | /* do the actual data transfer */ |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3830 | ap->ops->data_xfer(qc->dev, buf + offset, count, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3831 | |
| 3832 | kunmap_atomic(buf, KM_IRQ0); |
| 3833 | local_irq_restore(flags); |
| 3834 | } else { |
| 3835 | buf = page_address(page); |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 3836 | ap->ops->data_xfer(qc->dev, buf + offset, count, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 3837 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3838 | |
| 3839 | bytes -= count; |
| 3840 | qc->curbytes += count; |
| 3841 | qc->cursg_ofs += count; |
| 3842 | |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 3843 | if (qc->cursg_ofs == sg->length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3844 | qc->cursg++; |
| 3845 | qc->cursg_ofs = 0; |
| 3846 | } |
| 3847 | |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 3848 | if (bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | goto next_sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3850 | } |
| 3851 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3852 | /** |
| 3853 | * atapi_pio_bytes - Transfer data from/to the ATAPI device. |
| 3854 | * @qc: Command on going |
| 3855 | * |
| 3856 | * Transfer Transfer data from/to the ATAPI device. |
| 3857 | * |
| 3858 | * LOCKING: |
| 3859 | * Inherited from caller. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 3860 | */ |
| 3861 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3862 | static void atapi_pio_bytes(struct ata_queued_cmd *qc) |
| 3863 | { |
| 3864 | struct ata_port *ap = qc->ap; |
| 3865 | struct ata_device *dev = qc->dev; |
| 3866 | unsigned int ireason, bc_lo, bc_hi, bytes; |
| 3867 | int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0; |
| 3868 | |
Albert Lee | eec4c3f | 2006-05-18 17:51:10 +0800 | [diff] [blame] | 3869 | /* Abuse qc->result_tf for temp storage of intermediate TF |
| 3870 | * here to save some kernel stack usage. |
| 3871 | * For normal completion, qc->result_tf is not relevant. For |
| 3872 | * error, qc->result_tf is later overwritten by ata_qc_complete(). |
| 3873 | * So, the correctness of qc->result_tf is not affected. |
| 3874 | */ |
| 3875 | ap->ops->tf_read(ap, &qc->result_tf); |
| 3876 | ireason = qc->result_tf.nsect; |
| 3877 | bc_lo = qc->result_tf.lbam; |
| 3878 | bc_hi = qc->result_tf.lbah; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3879 | bytes = (bc_hi << 8) | bc_lo; |
| 3880 | |
| 3881 | /* shall be cleared to zero, indicating xfer of data */ |
| 3882 | if (ireason & (1 << 0)) |
| 3883 | goto err_out; |
| 3884 | |
| 3885 | /* make sure transfer direction matches expected */ |
| 3886 | i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0; |
| 3887 | if (do_write != i_write) |
| 3888 | goto err_out; |
| 3889 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 3890 | VPRINTK("ata%u: xfering %d bytes\n", ap->id, bytes); |
| 3891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3892 | __atapi_pio_bytes(qc, bytes); |
| 3893 | |
| 3894 | return; |
| 3895 | |
| 3896 | err_out: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3897 | ata_dev_printk(dev, KERN_INFO, "ATAPI check failed\n"); |
Tejun Heo | 11a56d2 | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 3898 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 3899 | ap->hsm_task_state = HSM_ST_ERR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3900 | } |
| 3901 | |
| 3902 | /** |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3903 | * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue. |
| 3904 | * @ap: the target ata_port |
| 3905 | * @qc: qc on going |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | * |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3907 | * RETURNS: |
| 3908 | * 1 if ok in workqueue, 0 otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3909 | */ |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3910 | |
| 3911 | 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] | 3912 | { |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3913 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 3914 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3915 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3916 | if (ap->hsm_task_state == HSM_ST_FIRST) { |
| 3917 | if (qc->tf.protocol == ATA_PROT_PIO && |
| 3918 | (qc->tf.flags & ATA_TFLAG_WRITE)) |
| 3919 | return 1; |
| 3920 | |
| 3921 | if (is_atapi_taskfile(&qc->tf) && |
| 3922 | !(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
| 3923 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3924 | } |
| 3925 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3926 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3927 | } |
| 3928 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 3929 | /** |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 3930 | * ata_hsm_qc_complete - finish a qc running on standard HSM |
| 3931 | * @qc: Command to complete |
| 3932 | * @in_wq: 1 if called from workqueue, 0 otherwise |
| 3933 | * |
| 3934 | * Finish @qc which is running on standard HSM. |
| 3935 | * |
| 3936 | * LOCKING: |
| 3937 | * If @in_wq is zero, spin_lock_irqsave(host_set lock). |
| 3938 | * Otherwise, none on entry and grabs host lock. |
| 3939 | */ |
| 3940 | static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq) |
| 3941 | { |
| 3942 | struct ata_port *ap = qc->ap; |
| 3943 | unsigned long flags; |
| 3944 | |
| 3945 | if (ap->ops->error_handler) { |
| 3946 | if (in_wq) { |
| 3947 | spin_lock_irqsave(&ap->host_set->lock, flags); |
| 3948 | |
| 3949 | /* EH might have kicked in while host_set lock |
| 3950 | * is released. |
| 3951 | */ |
| 3952 | qc = ata_qc_from_tag(ap, qc->tag); |
| 3953 | if (qc) { |
| 3954 | if (likely(!(qc->err_mask & AC_ERR_HSM))) { |
| 3955 | ata_irq_on(ap); |
| 3956 | ata_qc_complete(qc); |
| 3957 | } else |
| 3958 | ata_port_freeze(ap); |
| 3959 | } |
| 3960 | |
| 3961 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 3962 | } else { |
| 3963 | if (likely(!(qc->err_mask & AC_ERR_HSM))) |
| 3964 | ata_qc_complete(qc); |
| 3965 | else |
| 3966 | ata_port_freeze(ap); |
| 3967 | } |
| 3968 | } else { |
| 3969 | if (in_wq) { |
| 3970 | spin_lock_irqsave(&ap->host_set->lock, flags); |
| 3971 | ata_irq_on(ap); |
| 3972 | ata_qc_complete(qc); |
| 3973 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 3974 | } else |
| 3975 | ata_qc_complete(qc); |
| 3976 | } |
Jeff Garzik | c81e29b | 2006-05-24 01:49:12 -0400 | [diff] [blame] | 3977 | |
| 3978 | ata_altstatus(ap); /* flush */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 3979 | } |
| 3980 | |
| 3981 | /** |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 3982 | * ata_hsm_move - move the HSM to the next state. |
| 3983 | * @ap: the target ata_port |
| 3984 | * @qc: qc on going |
| 3985 | * @status: current device status |
| 3986 | * @in_wq: 1 if called from workqueue, 0 otherwise |
| 3987 | * |
| 3988 | * RETURNS: |
| 3989 | * 1 when poll next status needed, 0 otherwise. |
| 3990 | */ |
| 3991 | |
| 3992 | static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc, |
| 3993 | u8 status, int in_wq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | { |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 3995 | unsigned long flags = 0; |
| 3996 | int poll_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3997 | |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 3998 | WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0); |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 3999 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4000 | /* Make sure ata_qc_issue_prot() does not throw things |
| 4001 | * like DMA polling into the workqueue. Notice that |
| 4002 | * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING). |
Albert Lee | 1c84898 | 2005-12-05 15:40:15 +0800 | [diff] [blame] | 4003 | */ |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 4004 | WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc)); |
Albert Lee | 1c84898 | 2005-12-05 15:40:15 +0800 | [diff] [blame] | 4005 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4006 | fsm_start: |
Albert Lee | 999bb6f | 2006-03-25 18:07:48 +0800 | [diff] [blame] | 4007 | DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n", |
| 4008 | ap->id, qc->tf.protocol, ap->hsm_task_state, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4009 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4010 | switch (ap->hsm_task_state) { |
| 4011 | case HSM_ST_FIRST: |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4012 | /* Send first data block or PACKET CDB */ |
| 4013 | |
| 4014 | /* If polling, we will stay in the work queue after |
| 4015 | * sending the data. Otherwise, interrupt handler |
| 4016 | * takes over after sending the data. |
| 4017 | */ |
| 4018 | poll_next = (qc->tf.flags & ATA_TFLAG_POLLING); |
| 4019 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4020 | /* check device status */ |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4021 | if (unlikely((status & ATA_DRQ) == 0)) { |
| 4022 | /* handle BSY=0, DRQ=0 as error */ |
| 4023 | if (likely(status & (ATA_ERR | ATA_DF))) |
| 4024 | /* device stops HSM for abort/error */ |
| 4025 | qc->err_mask |= AC_ERR_DEV; |
| 4026 | else |
| 4027 | /* HSM violation. Let EH handle this */ |
| 4028 | qc->err_mask |= AC_ERR_HSM; |
| 4029 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4030 | ap->hsm_task_state = HSM_ST_ERR; |
| 4031 | goto fsm_start; |
| 4032 | } |
| 4033 | |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4034 | /* Device should not ask for data transfer (DRQ=1) |
| 4035 | * when it finds something wrong. |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4036 | * We ignore DRQ here and stop the HSM by |
| 4037 | * changing hsm_task_state to HSM_ST_ERR and |
| 4038 | * let the EH abort the command or reset the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4039 | */ |
| 4040 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
| 4041 | printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n", |
| 4042 | ap->id, status); |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4043 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4044 | ap->hsm_task_state = HSM_ST_ERR; |
| 4045 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4046 | } |
| 4047 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4048 | /* Send the CDB (atapi) or the first data block (ata pio out). |
| 4049 | * During the state transition, interrupt handler shouldn't |
| 4050 | * be invoked before the data transfer is complete and |
| 4051 | * hsm_task_state is changed. Hence, the following locking. |
| 4052 | */ |
| 4053 | if (in_wq) |
| 4054 | spin_lock_irqsave(&ap->host_set->lock, flags); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4055 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4056 | if (qc->tf.protocol == ATA_PROT_PIO) { |
| 4057 | /* PIO data out protocol. |
| 4058 | * send first data block. |
| 4059 | */ |
| 4060 | |
| 4061 | /* ata_pio_sectors() might change the state |
| 4062 | * to HSM_ST_LAST. so, the state is changed here |
| 4063 | * before ata_pio_sectors(). |
| 4064 | */ |
| 4065 | ap->hsm_task_state = HSM_ST; |
| 4066 | ata_pio_sectors(qc); |
| 4067 | ata_altstatus(ap); /* flush */ |
| 4068 | } else |
| 4069 | /* send CDB */ |
| 4070 | atapi_send_cdb(ap, qc); |
| 4071 | |
| 4072 | if (in_wq) |
| 4073 | spin_unlock_irqrestore(&ap->host_set->lock, flags); |
| 4074 | |
| 4075 | /* if polling, ata_pio_task() handles the rest. |
| 4076 | * otherwise, interrupt handler takes over from here. |
| 4077 | */ |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4078 | break; |
| 4079 | |
| 4080 | case HSM_ST: |
| 4081 | /* complete command or read/write the data register */ |
| 4082 | if (qc->tf.protocol == ATA_PROT_ATAPI) { |
| 4083 | /* ATAPI PIO protocol */ |
| 4084 | if ((status & ATA_DRQ) == 0) { |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4085 | /* No more data to transfer or device error. |
| 4086 | * Device error will be tagged in HSM_ST_LAST. |
| 4087 | */ |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4088 | ap->hsm_task_state = HSM_ST_LAST; |
| 4089 | goto fsm_start; |
| 4090 | } |
| 4091 | |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4092 | /* Device should not ask for data transfer (DRQ=1) |
| 4093 | * when it finds something wrong. |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4094 | * We ignore DRQ here and stop the HSM by |
| 4095 | * changing hsm_task_state to HSM_ST_ERR and |
| 4096 | * let the EH abort the command or reset the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4097 | */ |
| 4098 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
| 4099 | printk(KERN_WARNING "ata%d: DRQ=1 with device error, dev_stat 0x%X\n", |
| 4100 | ap->id, status); |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4101 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4102 | ap->hsm_task_state = HSM_ST_ERR; |
| 4103 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4104 | } |
| 4105 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4106 | atapi_pio_bytes(qc); |
| 4107 | |
| 4108 | if (unlikely(ap->hsm_task_state == HSM_ST_ERR)) |
| 4109 | /* bad ireason reported by device */ |
| 4110 | goto fsm_start; |
| 4111 | |
| 4112 | } else { |
| 4113 | /* ATA PIO protocol */ |
| 4114 | if (unlikely((status & ATA_DRQ) == 0)) { |
| 4115 | /* handle BSY=0, DRQ=0 as error */ |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4116 | if (likely(status & (ATA_ERR | ATA_DF))) |
| 4117 | /* device stops HSM for abort/error */ |
| 4118 | qc->err_mask |= AC_ERR_DEV; |
| 4119 | else |
| 4120 | /* HSM violation. Let EH handle this */ |
| 4121 | qc->err_mask |= AC_ERR_HSM; |
| 4122 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4123 | ap->hsm_task_state = HSM_ST_ERR; |
| 4124 | goto fsm_start; |
| 4125 | } |
| 4126 | |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4127 | /* For PIO reads, some devices may ask for |
| 4128 | * data transfer (DRQ=1) alone with ERR=1. |
| 4129 | * We respect DRQ here and transfer one |
| 4130 | * block of junk data before changing the |
| 4131 | * hsm_task_state to HSM_ST_ERR. |
| 4132 | * |
| 4133 | * For PIO writes, ERR=1 DRQ=1 doesn't make |
| 4134 | * sense since the data block has been |
| 4135 | * transferred to the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4136 | */ |
| 4137 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4138 | /* data might be corrputed */ |
| 4139 | qc->err_mask |= AC_ERR_DEV; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4140 | |
| 4141 | if (!(qc->tf.flags & ATA_TFLAG_WRITE)) { |
| 4142 | ata_pio_sectors(qc); |
| 4143 | ata_altstatus(ap); |
| 4144 | status = ata_wait_idle(ap); |
| 4145 | } |
| 4146 | |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 4147 | if (status & (ATA_BUSY | ATA_DRQ)) |
| 4148 | qc->err_mask |= AC_ERR_HSM; |
| 4149 | |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 4150 | /* ata_pio_sectors() might change the |
| 4151 | * state to HSM_ST_LAST. so, the state |
| 4152 | * is changed after ata_pio_sectors(). |
| 4153 | */ |
| 4154 | ap->hsm_task_state = HSM_ST_ERR; |
| 4155 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 4156 | } |
| 4157 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4158 | ata_pio_sectors(qc); |
| 4159 | |
| 4160 | if (ap->hsm_task_state == HSM_ST_LAST && |
| 4161 | (!(qc->tf.flags & ATA_TFLAG_WRITE))) { |
| 4162 | /* all data read */ |
| 4163 | ata_altstatus(ap); |
Albert Lee | 52a3220 | 2006-03-25 18:18:15 +0800 | [diff] [blame] | 4164 | status = ata_wait_idle(ap); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4165 | goto fsm_start; |
| 4166 | } |
| 4167 | } |
| 4168 | |
| 4169 | ata_altstatus(ap); /* flush */ |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4170 | poll_next = 1; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4171 | break; |
| 4172 | |
| 4173 | case HSM_ST_LAST: |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4174 | if (unlikely(!ata_ok(status))) { |
| 4175 | qc->err_mask |= __ac_err_mask(status); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4176 | ap->hsm_task_state = HSM_ST_ERR; |
| 4177 | goto fsm_start; |
| 4178 | } |
| 4179 | |
| 4180 | /* no more data to transfer */ |
Albert Lee | 4332a77 | 2006-04-03 17:43:24 +0800 | [diff] [blame] | 4181 | DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n", |
| 4182 | ap->id, qc->dev->devno, status); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4183 | |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4184 | WARN_ON(qc->err_mask); |
| 4185 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4186 | ap->hsm_task_state = HSM_ST_IDLE; |
| 4187 | |
| 4188 | /* complete taskfile transaction */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 4189 | ata_hsm_qc_complete(qc, in_wq); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4190 | |
| 4191 | poll_next = 0; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4192 | break; |
| 4193 | |
| 4194 | case HSM_ST_ERR: |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4195 | /* make sure qc->err_mask is available to |
| 4196 | * know what's wrong and recover |
| 4197 | */ |
| 4198 | WARN_ON(qc->err_mask == 0); |
| 4199 | |
| 4200 | ap->hsm_task_state = HSM_ST_IDLE; |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4201 | |
Albert Lee | 999bb6f | 2006-03-25 18:07:48 +0800 | [diff] [blame] | 4202 | /* complete taskfile transaction */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 4203 | ata_hsm_qc_complete(qc, in_wq); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4204 | |
| 4205 | poll_next = 0; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4206 | break; |
| 4207 | default: |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4208 | poll_next = 0; |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4209 | BUG(); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 4210 | } |
| 4211 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4212 | return poll_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4213 | } |
| 4214 | |
| 4215 | static void ata_pio_task(void *_data) |
| 4216 | { |
Tejun Heo | c91af2c | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 4217 | struct ata_queued_cmd *qc = _data; |
| 4218 | struct ata_port *ap = qc->ap; |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4219 | u8 status; |
| 4220 | int poll_next; |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 4221 | |
| 4222 | fsm_start: |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4223 | WARN_ON(ap->hsm_task_state == HSM_ST_IDLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4224 | |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4225 | /* |
| 4226 | * This is purely heuristic. This is a fast path. |
| 4227 | * Sometimes when we enter, BSY will be cleared in |
| 4228 | * a chk-status or two. If not, the drive is probably seeking |
| 4229 | * or something. Snooze for a couple msecs, then |
| 4230 | * chk-status again. If still busy, queue delayed work. |
| 4231 | */ |
| 4232 | status = ata_busy_wait(ap, ATA_BUSY, 5); |
| 4233 | if (status & ATA_BUSY) { |
| 4234 | msleep(2); |
| 4235 | status = ata_busy_wait(ap, ATA_BUSY, 10); |
| 4236 | if (status & ATA_BUSY) { |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4237 | ata_port_queue_task(ap, ata_pio_task, qc, ATA_SHORT_PAUSE); |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4238 | return; |
| 4239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4240 | } |
| 4241 | |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 4242 | /* move the HSM */ |
| 4243 | poll_next = ata_hsm_move(ap, qc, status, 1); |
| 4244 | |
| 4245 | /* another command or interrupt handler |
| 4246 | * may be running at this point. |
| 4247 | */ |
| 4248 | if (poll_next) |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 4249 | goto fsm_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4250 | } |
| 4251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4252 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | * ata_qc_new - Request an available ATA command, for queueing |
| 4254 | * @ap: Port associated with device @dev |
| 4255 | * @dev: Device from whom we request an available command structure |
| 4256 | * |
| 4257 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4258 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4259 | */ |
| 4260 | |
| 4261 | static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap) |
| 4262 | { |
| 4263 | struct ata_queued_cmd *qc = NULL; |
| 4264 | unsigned int i; |
| 4265 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 4266 | /* no command while frozen */ |
| 4267 | if (unlikely(ap->flags & ATA_FLAG_FROZEN)) |
| 4268 | return NULL; |
| 4269 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 4270 | /* the last tag is reserved for internal command. */ |
| 4271 | for (i = 0; i < ATA_MAX_QUEUE - 1; i++) |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 4272 | if (!test_and_set_bit(i, &ap->qc_allocated)) { |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 4273 | qc = __ata_qc_from_tag(ap, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4274 | break; |
| 4275 | } |
| 4276 | |
| 4277 | if (qc) |
| 4278 | qc->tag = i; |
| 4279 | |
| 4280 | return qc; |
| 4281 | } |
| 4282 | |
| 4283 | /** |
| 4284 | * ata_qc_new_init - Request an available ATA command, and initialize it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4285 | * @dev: Device from whom we request an available command structure |
| 4286 | * |
| 4287 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4288 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4289 | */ |
| 4290 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4291 | struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4292 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4293 | struct ata_port *ap = dev->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4294 | struct ata_queued_cmd *qc; |
| 4295 | |
| 4296 | qc = ata_qc_new(ap); |
| 4297 | if (qc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4298 | qc->scsicmd = NULL; |
| 4299 | qc->ap = ap; |
| 4300 | qc->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4301 | |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 4302 | ata_qc_reinit(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4303 | } |
| 4304 | |
| 4305 | return qc; |
| 4306 | } |
| 4307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4308 | /** |
| 4309 | * ata_qc_free - free unused ata_queued_cmd |
| 4310 | * @qc: Command to complete |
| 4311 | * |
| 4312 | * Designed to free unused ata_queued_cmd object |
| 4313 | * in case something prevents using it. |
| 4314 | * |
| 4315 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4316 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4317 | */ |
| 4318 | void ata_qc_free(struct ata_queued_cmd *qc) |
| 4319 | { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4320 | struct ata_port *ap = qc->ap; |
| 4321 | unsigned int tag; |
| 4322 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4323 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4324 | |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4325 | qc->flags = 0; |
| 4326 | tag = qc->tag; |
| 4327 | if (likely(ata_tag_valid(tag))) { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4328 | qc->tag = ATA_TAG_POISON; |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 4329 | clear_bit(tag, &ap->qc_allocated); |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4331 | } |
| 4332 | |
Tejun Heo | 7601442 | 2006-02-11 15:13:49 +0900 | [diff] [blame] | 4333 | void __ata_qc_complete(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4334 | { |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4335 | struct ata_port *ap = qc->ap; |
| 4336 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4337 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
| 4338 | WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4339 | |
| 4340 | if (likely(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 4341 | ata_sg_clean(qc); |
| 4342 | |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4343 | /* command should be marked inactive atomically with qc completion */ |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4344 | if (qc->tf.protocol == ATA_PROT_NCQ) |
| 4345 | ap->sactive &= ~(1 << qc->tag); |
| 4346 | else |
| 4347 | ap->active_tag = ATA_TAG_POISON; |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4348 | |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4349 | /* atapi: mark qc as inactive to prevent the interrupt handler |
| 4350 | * from completing the command twice later, before the error handler |
| 4351 | * is called. (when rc != 0 and atapi request sense is needed) |
| 4352 | */ |
| 4353 | qc->flags &= ~ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4354 | ap->qc_active &= ~(1 << qc->tag); |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4356 | /* call completion callback */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4357 | qc->complete_fn(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4358 | } |
| 4359 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4360 | /** |
| 4361 | * ata_qc_complete - Complete an active ATA command |
| 4362 | * @qc: Command to complete |
| 4363 | * @err_mask: ATA Status register contents |
| 4364 | * |
| 4365 | * Indicate to the mid and upper layers that an ATA |
| 4366 | * command has completed, with either an ok or not-ok status. |
| 4367 | * |
| 4368 | * LOCKING: |
| 4369 | * spin_lock_irqsave(host_set lock) |
| 4370 | */ |
| 4371 | void ata_qc_complete(struct ata_queued_cmd *qc) |
| 4372 | { |
| 4373 | struct ata_port *ap = qc->ap; |
| 4374 | |
| 4375 | /* XXX: New EH and old EH use different mechanisms to |
| 4376 | * synchronize EH with regular execution path. |
| 4377 | * |
| 4378 | * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED. |
| 4379 | * Normal execution path is responsible for not accessing a |
| 4380 | * failed qc. libata core enforces the rule by returning NULL |
| 4381 | * from ata_qc_from_tag() for failed qcs. |
| 4382 | * |
| 4383 | * Old EH depends on ata_qc_complete() nullifying completion |
| 4384 | * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does |
| 4385 | * not synchronize with interrupt handler. Only PIO task is |
| 4386 | * taken care of. |
| 4387 | */ |
| 4388 | if (ap->ops->error_handler) { |
| 4389 | WARN_ON(ap->flags & ATA_FLAG_FROZEN); |
| 4390 | |
| 4391 | if (unlikely(qc->err_mask)) |
| 4392 | qc->flags |= ATA_QCFLAG_FAILED; |
| 4393 | |
| 4394 | if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) { |
| 4395 | if (!ata_tag_internal(qc->tag)) { |
| 4396 | /* always fill result TF for failed qc */ |
| 4397 | ap->ops->tf_read(ap, &qc->result_tf); |
| 4398 | ata_qc_schedule_eh(qc); |
| 4399 | return; |
| 4400 | } |
| 4401 | } |
| 4402 | |
| 4403 | /* read result TF if requested */ |
| 4404 | if (qc->flags & ATA_QCFLAG_RESULT_TF) |
| 4405 | ap->ops->tf_read(ap, &qc->result_tf); |
| 4406 | |
| 4407 | __ata_qc_complete(qc); |
| 4408 | } else { |
| 4409 | if (qc->flags & ATA_QCFLAG_EH_SCHEDULED) |
| 4410 | return; |
| 4411 | |
| 4412 | /* read result TF if failed or requested */ |
| 4413 | if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF) |
| 4414 | ap->ops->tf_read(ap, &qc->result_tf); |
| 4415 | |
| 4416 | __ata_qc_complete(qc); |
| 4417 | } |
| 4418 | } |
| 4419 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4420 | /** |
| 4421 | * ata_qc_complete_multiple - Complete multiple qcs successfully |
| 4422 | * @ap: port in question |
| 4423 | * @qc_active: new qc_active mask |
| 4424 | * @finish_qc: LLDD callback invoked before completing a qc |
| 4425 | * |
| 4426 | * Complete in-flight commands. This functions is meant to be |
| 4427 | * called from low-level driver's interrupt routine to complete |
| 4428 | * requests normally. ap->qc_active and @qc_active is compared |
| 4429 | * and commands are completed accordingly. |
| 4430 | * |
| 4431 | * LOCKING: |
| 4432 | * spin_lock_irqsave(host_set lock) |
| 4433 | * |
| 4434 | * RETURNS: |
| 4435 | * Number of completed commands on success, -errno otherwise. |
| 4436 | */ |
| 4437 | int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active, |
| 4438 | void (*finish_qc)(struct ata_queued_cmd *)) |
| 4439 | { |
| 4440 | int nr_done = 0; |
| 4441 | u32 done_mask; |
| 4442 | int i; |
| 4443 | |
| 4444 | done_mask = ap->qc_active ^ qc_active; |
| 4445 | |
| 4446 | if (unlikely(done_mask & qc_active)) { |
| 4447 | ata_port_printk(ap, KERN_ERR, "illegal qc_active transition " |
| 4448 | "(%08x->%08x)\n", ap->qc_active, qc_active); |
| 4449 | return -EINVAL; |
| 4450 | } |
| 4451 | |
| 4452 | for (i = 0; i < ATA_MAX_QUEUE; i++) { |
| 4453 | struct ata_queued_cmd *qc; |
| 4454 | |
| 4455 | if (!(done_mask & (1 << i))) |
| 4456 | continue; |
| 4457 | |
| 4458 | if ((qc = ata_qc_from_tag(ap, i))) { |
| 4459 | if (finish_qc) |
| 4460 | finish_qc(qc); |
| 4461 | ata_qc_complete(qc); |
| 4462 | nr_done++; |
| 4463 | } |
| 4464 | } |
| 4465 | |
| 4466 | return nr_done; |
| 4467 | } |
| 4468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4469 | static inline int ata_should_dma_map(struct ata_queued_cmd *qc) |
| 4470 | { |
| 4471 | struct ata_port *ap = qc->ap; |
| 4472 | |
| 4473 | switch (qc->tf.protocol) { |
Tejun Heo | 3dc1d88 | 2006-05-15 21:03:45 +0900 | [diff] [blame] | 4474 | case ATA_PROT_NCQ: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4475 | case ATA_PROT_DMA: |
| 4476 | case ATA_PROT_ATAPI_DMA: |
| 4477 | return 1; |
| 4478 | |
| 4479 | case ATA_PROT_ATAPI: |
| 4480 | case ATA_PROT_PIO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4481 | if (ap->flags & ATA_FLAG_PIO_DMA) |
| 4482 | return 1; |
| 4483 | |
| 4484 | /* fall through */ |
| 4485 | |
| 4486 | default: |
| 4487 | return 0; |
| 4488 | } |
| 4489 | |
| 4490 | /* never reached */ |
| 4491 | } |
| 4492 | |
| 4493 | /** |
| 4494 | * ata_qc_issue - issue taskfile to device |
| 4495 | * @qc: command to issue to device |
| 4496 | * |
| 4497 | * Prepare an ATA command to submission to device. |
| 4498 | * This includes mapping the data into a DMA-able |
| 4499 | * area, filling in the S/G table, and finally |
| 4500 | * writing the taskfile to hardware, starting the command. |
| 4501 | * |
| 4502 | * LOCKING: |
| 4503 | * spin_lock_irqsave(host_set lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4504 | */ |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4505 | void ata_qc_issue(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4506 | { |
| 4507 | struct ata_port *ap = qc->ap; |
| 4508 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4509 | /* Make sure only one non-NCQ command is outstanding. The |
| 4510 | * check is skipped for old EH because it reuses active qc to |
| 4511 | * request ATAPI sense. |
| 4512 | */ |
| 4513 | WARN_ON(ap->ops->error_handler && ata_tag_valid(ap->active_tag)); |
| 4514 | |
| 4515 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
| 4516 | WARN_ON(ap->sactive & (1 << qc->tag)); |
| 4517 | ap->sactive |= 1 << qc->tag; |
| 4518 | } else { |
| 4519 | WARN_ON(ap->sactive); |
| 4520 | ap->active_tag = qc->tag; |
| 4521 | } |
| 4522 | |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 4523 | qc->flags |= ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4524 | ap->qc_active |= 1 << qc->tag; |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 4525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4526 | if (ata_should_dma_map(qc)) { |
| 4527 | if (qc->flags & ATA_QCFLAG_SG) { |
| 4528 | if (ata_sg_setup(qc)) |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4529 | goto sg_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4530 | } else if (qc->flags & ATA_QCFLAG_SINGLE) { |
| 4531 | if (ata_sg_setup_one(qc)) |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4532 | goto sg_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4533 | } |
| 4534 | } else { |
| 4535 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
| 4536 | } |
| 4537 | |
| 4538 | ap->ops->qc_prep(qc); |
| 4539 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4540 | qc->err_mask |= ap->ops->qc_issue(qc); |
| 4541 | if (unlikely(qc->err_mask)) |
| 4542 | goto err; |
| 4543 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4544 | |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4545 | sg_err: |
| 4546 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4547 | qc->err_mask |= AC_ERR_SYSTEM; |
| 4548 | err: |
| 4549 | ata_qc_complete(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4550 | } |
| 4551 | |
| 4552 | /** |
| 4553 | * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner |
| 4554 | * @qc: command to issue to device |
| 4555 | * |
| 4556 | * Using various libata functions and hooks, this function |
| 4557 | * starts an ATA command. ATA commands are grouped into |
| 4558 | * classes called "protocols", and issuing each type of protocol |
| 4559 | * is slightly different. |
| 4560 | * |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4561 | * May be used as the qc_issue() entry in ata_port_operations. |
| 4562 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4563 | * LOCKING: |
| 4564 | * spin_lock_irqsave(host_set lock) |
| 4565 | * |
| 4566 | * RETURNS: |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4567 | * Zero on success, AC_ERR_* mask on failure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4568 | */ |
| 4569 | |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4570 | unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4571 | { |
| 4572 | struct ata_port *ap = qc->ap; |
| 4573 | |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 4574 | /* Use polling pio if the LLD doesn't handle |
| 4575 | * interrupt driven pio and atapi CDB interrupt. |
| 4576 | */ |
| 4577 | if (ap->flags & ATA_FLAG_PIO_POLLING) { |
| 4578 | switch (qc->tf.protocol) { |
| 4579 | case ATA_PROT_PIO: |
| 4580 | case ATA_PROT_ATAPI: |
| 4581 | case ATA_PROT_ATAPI_NODATA: |
| 4582 | qc->tf.flags |= ATA_TFLAG_POLLING; |
| 4583 | break; |
| 4584 | case ATA_PROT_ATAPI_DMA: |
| 4585 | if (qc->dev->flags & ATA_DFLAG_CDB_INTR) |
Albert Lee | c2bbc55 | 2006-03-25 17:56:55 +0800 | [diff] [blame] | 4586 | /* see ata_check_atapi_dma() */ |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 4587 | BUG(); |
| 4588 | break; |
| 4589 | default: |
| 4590 | break; |
| 4591 | } |
| 4592 | } |
| 4593 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4594 | /* select the device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4595 | ata_dev_select(ap, qc->dev->devno, 1, 0); |
| 4596 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4597 | /* start the command */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4598 | switch (qc->tf.protocol) { |
| 4599 | case ATA_PROT_NODATA: |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4600 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 4601 | ata_qc_set_polling(qc); |
| 4602 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 4603 | ata_tf_to_host(ap, &qc->tf); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4604 | ap->hsm_task_state = HSM_ST_LAST; |
| 4605 | |
| 4606 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4607 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4609 | break; |
| 4610 | |
| 4611 | case ATA_PROT_DMA: |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 4612 | WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4614 | ap->ops->tf_load(ap, &qc->tf); /* load tf registers */ |
| 4615 | ap->ops->bmdma_setup(qc); /* set up bmdma */ |
| 4616 | ap->ops->bmdma_start(qc); /* initiate bmdma */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4617 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | break; |
| 4619 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4620 | case ATA_PROT_PIO: |
| 4621 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 4622 | ata_qc_set_polling(qc); |
| 4623 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 4624 | ata_tf_to_host(ap, &qc->tf); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4625 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4626 | if (qc->tf.flags & ATA_TFLAG_WRITE) { |
| 4627 | /* PIO data out protocol */ |
| 4628 | ap->hsm_task_state = HSM_ST_FIRST; |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4629 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4630 | |
| 4631 | /* always send first data block using |
Albert Lee | e27486d | 2005-11-01 19:24:49 +0800 | [diff] [blame] | 4632 | * the ata_pio_task() codepath. |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4633 | */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4634 | } else { |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4635 | /* PIO data in protocol */ |
| 4636 | ap->hsm_task_state = HSM_ST; |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4637 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4638 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4639 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4640 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 4641 | /* if polling, ata_pio_task() handles the rest. |
| 4642 | * otherwise, interrupt handler takes over from here. |
| 4643 | */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4644 | } |
| 4645 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4646 | break; |
| 4647 | |
| 4648 | case ATA_PROT_ATAPI: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4649 | case ATA_PROT_ATAPI_NODATA: |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 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); |
Jeff Garzik | f6ef65e | 2006-01-27 02:45:00 -0500 | [diff] [blame] | 4654 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4655 | ap->hsm_task_state = HSM_ST_FIRST; |
| 4656 | |
| 4657 | /* send cdb by polling if no cdb interrupt */ |
| 4658 | if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) || |
| 4659 | (qc->tf.flags & ATA_TFLAG_POLLING)) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4660 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4661 | break; |
| 4662 | |
| 4663 | case ATA_PROT_ATAPI_DMA: |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 4664 | WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4666 | ap->ops->tf_load(ap, &qc->tf); /* load tf registers */ |
| 4667 | ap->ops->bmdma_setup(qc); /* set up bmdma */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4668 | ap->hsm_task_state = HSM_ST_FIRST; |
| 4669 | |
| 4670 | /* send cdb by polling if no cdb interrupt */ |
| 4671 | if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
Albert Lee | 31ce6da | 2006-04-03 18:31:44 +0800 | [diff] [blame] | 4672 | ata_port_queue_task(ap, ata_pio_task, qc, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | break; |
| 4674 | |
| 4675 | default: |
| 4676 | WARN_ON(1); |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4677 | return AC_ERR_SYSTEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4678 | } |
| 4679 | |
| 4680 | return 0; |
| 4681 | } |
| 4682 | |
| 4683 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4684 | * ata_host_intr - Handle host interrupt for given (port, task) |
| 4685 | * @ap: Port on which interrupt arrived (possibly...) |
| 4686 | * @qc: Taskfile currently active in engine |
| 4687 | * |
| 4688 | * Handle host interrupt for given queued command. Currently, |
| 4689 | * only DMA interrupts are handled. All other commands are |
| 4690 | * handled via polling with interrupts disabled (nIEN bit). |
| 4691 | * |
| 4692 | * LOCKING: |
| 4693 | * spin_lock_irqsave(host_set lock) |
| 4694 | * |
| 4695 | * RETURNS: |
| 4696 | * One if interrupt was handled, zero if not (shared irq). |
| 4697 | */ |
| 4698 | |
| 4699 | inline unsigned int ata_host_intr (struct ata_port *ap, |
| 4700 | struct ata_queued_cmd *qc) |
| 4701 | { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4702 | u8 status, host_stat = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4703 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4704 | VPRINTK("ata%u: protocol %d task_state %d\n", |
| 4705 | ap->id, qc->tf.protocol, ap->hsm_task_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4706 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4707 | /* Check whether we are expecting interrupt in this state */ |
| 4708 | switch (ap->hsm_task_state) { |
| 4709 | case HSM_ST_FIRST: |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 4710 | /* Some pre-ATAPI-4 devices assert INTRQ |
| 4711 | * at this state when ready to receive CDB. |
| 4712 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4713 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4714 | /* Check the ATA_DFLAG_CDB_INTR flag is enough here. |
| 4715 | * The flag was turned on only for atapi devices. |
| 4716 | * No need to check is_atapi_taskfile(&qc->tf) again. |
| 4717 | */ |
| 4718 | if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4719 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4720 | break; |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4721 | case HSM_ST_LAST: |
| 4722 | if (qc->tf.protocol == ATA_PROT_DMA || |
| 4723 | qc->tf.protocol == ATA_PROT_ATAPI_DMA) { |
| 4724 | /* check status of DMA engine */ |
| 4725 | host_stat = ap->ops->bmdma_status(ap); |
| 4726 | VPRINTK("ata%u: host_stat 0x%X\n", ap->id, host_stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4727 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4728 | /* if it's not our irq... */ |
| 4729 | if (!(host_stat & ATA_DMA_INTR)) |
| 4730 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4731 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4732 | /* before we do anything else, clear DMA-Start bit */ |
| 4733 | ap->ops->bmdma_stop(qc); |
Albert Lee | a4f1661 | 2005-12-26 16:40:53 +0800 | [diff] [blame] | 4734 | |
| 4735 | if (unlikely(host_stat & ATA_DMA_ERR)) { |
| 4736 | /* error when transfering data to/from memory */ |
| 4737 | qc->err_mask |= AC_ERR_HOST_BUS; |
| 4738 | ap->hsm_task_state = HSM_ST_ERR; |
| 4739 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4740 | } |
| 4741 | break; |
| 4742 | case HSM_ST: |
| 4743 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4744 | default: |
| 4745 | goto idle_irq; |
| 4746 | } |
| 4747 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4748 | /* check altstatus */ |
| 4749 | status = ata_altstatus(ap); |
| 4750 | if (status & ATA_BUSY) |
| 4751 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4752 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4753 | /* check main status, clearing INTRQ */ |
| 4754 | status = ata_chk_status(ap); |
| 4755 | if (unlikely(status & ATA_BUSY)) |
| 4756 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4757 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4758 | /* ack bmdma irq events */ |
| 4759 | ap->ops->irq_clear(ap); |
| 4760 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 4761 | ata_hsm_move(ap, qc, status, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | return 1; /* irq handled */ |
| 4763 | |
| 4764 | idle_irq: |
| 4765 | ap->stats.idle_irq++; |
| 4766 | |
| 4767 | #ifdef ATA_IRQ_TRAP |
| 4768 | if ((ap->stats.idle_irq % 1000) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4769 | ata_irq_ack(ap, 0); /* debug trap */ |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4770 | ata_port_printk(ap, KERN_WARNING, "irq trap\n"); |
Alan Cox | 23cfce8 | 2006-03-21 16:06:53 +0000 | [diff] [blame] | 4771 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4772 | } |
| 4773 | #endif |
| 4774 | return 0; /* irq not handled */ |
| 4775 | } |
| 4776 | |
| 4777 | /** |
| 4778 | * ata_interrupt - Default ATA host interrupt handler |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4779 | * @irq: irq line (unused) |
| 4780 | * @dev_instance: pointer to our ata_host_set information structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4781 | * @regs: unused |
| 4782 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4783 | * Default interrupt handler for PCI IDE devices. Calls |
| 4784 | * ata_host_intr() for each port that is not disabled. |
| 4785 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4786 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4787 | * Obtains host_set lock during operation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4788 | * |
| 4789 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4790 | * IRQ_NONE or IRQ_HANDLED. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4791 | */ |
| 4792 | |
| 4793 | irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs) |
| 4794 | { |
| 4795 | struct ata_host_set *host_set = dev_instance; |
| 4796 | unsigned int i; |
| 4797 | unsigned int handled = 0; |
| 4798 | unsigned long flags; |
| 4799 | |
| 4800 | /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */ |
| 4801 | spin_lock_irqsave(&host_set->lock, flags); |
| 4802 | |
| 4803 | for (i = 0; i < host_set->n_ports; i++) { |
| 4804 | struct ata_port *ap; |
| 4805 | |
| 4806 | ap = host_set->ports[i]; |
Tejun Heo | c138950 | 2005-08-22 14:59:24 +0900 | [diff] [blame] | 4807 | if (ap && |
Jeff Garzik | 029f546 | 2006-04-02 10:30:40 -0400 | [diff] [blame] | 4808 | !(ap->flags & ATA_FLAG_DISABLED)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4809 | struct ata_queued_cmd *qc; |
| 4810 | |
| 4811 | qc = ata_qc_from_tag(ap, ap->active_tag); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 4812 | if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) && |
Albert Lee | 21b1ed7 | 2005-04-29 17:34:59 +0800 | [diff] [blame] | 4813 | (qc->flags & ATA_QCFLAG_ACTIVE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4814 | handled |= ata_host_intr(ap, qc); |
| 4815 | } |
| 4816 | } |
| 4817 | |
| 4818 | spin_unlock_irqrestore(&host_set->lock, flags); |
| 4819 | |
| 4820 | return IRQ_RETVAL(handled); |
| 4821 | } |
| 4822 | |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4823 | /** |
| 4824 | * sata_scr_valid - test whether SCRs are accessible |
| 4825 | * @ap: ATA port to test SCR accessibility for |
| 4826 | * |
| 4827 | * Test whether SCRs are accessible for @ap. |
| 4828 | * |
| 4829 | * LOCKING: |
| 4830 | * None. |
| 4831 | * |
| 4832 | * RETURNS: |
| 4833 | * 1 if SCRs are accessible, 0 otherwise. |
| 4834 | */ |
| 4835 | int sata_scr_valid(struct ata_port *ap) |
| 4836 | { |
| 4837 | return ap->cbl == ATA_CBL_SATA && ap->ops->scr_read; |
| 4838 | } |
| 4839 | |
| 4840 | /** |
| 4841 | * sata_scr_read - read SCR register of the specified port |
| 4842 | * @ap: ATA port to read SCR for |
| 4843 | * @reg: SCR to read |
| 4844 | * @val: Place to store read value |
| 4845 | * |
| 4846 | * Read SCR register @reg of @ap into *@val. This function is |
| 4847 | * guaranteed to succeed if the cable type of the port is SATA |
| 4848 | * and the port implements ->scr_read. |
| 4849 | * |
| 4850 | * LOCKING: |
| 4851 | * None. |
| 4852 | * |
| 4853 | * RETURNS: |
| 4854 | * 0 on success, negative errno on failure. |
| 4855 | */ |
| 4856 | int sata_scr_read(struct ata_port *ap, int reg, u32 *val) |
| 4857 | { |
| 4858 | if (sata_scr_valid(ap)) { |
| 4859 | *val = ap->ops->scr_read(ap, reg); |
| 4860 | return 0; |
| 4861 | } |
| 4862 | return -EOPNOTSUPP; |
| 4863 | } |
| 4864 | |
| 4865 | /** |
| 4866 | * sata_scr_write - write SCR register of the specified port |
| 4867 | * @ap: ATA port to write SCR for |
| 4868 | * @reg: SCR to write |
| 4869 | * @val: value to write |
| 4870 | * |
| 4871 | * Write @val to SCR register @reg of @ap. This function is |
| 4872 | * guaranteed to succeed if the cable type of the port is SATA |
| 4873 | * and the port implements ->scr_read. |
| 4874 | * |
| 4875 | * LOCKING: |
| 4876 | * None. |
| 4877 | * |
| 4878 | * RETURNS: |
| 4879 | * 0 on success, negative errno on failure. |
| 4880 | */ |
| 4881 | int sata_scr_write(struct ata_port *ap, int reg, u32 val) |
| 4882 | { |
| 4883 | if (sata_scr_valid(ap)) { |
| 4884 | ap->ops->scr_write(ap, reg, val); |
| 4885 | return 0; |
| 4886 | } |
| 4887 | return -EOPNOTSUPP; |
| 4888 | } |
| 4889 | |
| 4890 | /** |
| 4891 | * sata_scr_write_flush - write SCR register of the specified port and flush |
| 4892 | * @ap: ATA port to write SCR for |
| 4893 | * @reg: SCR to write |
| 4894 | * @val: value to write |
| 4895 | * |
| 4896 | * This function is identical to sata_scr_write() except that this |
| 4897 | * function performs flush after writing to the register. |
| 4898 | * |
| 4899 | * LOCKING: |
| 4900 | * None. |
| 4901 | * |
| 4902 | * RETURNS: |
| 4903 | * 0 on success, negative errno on failure. |
| 4904 | */ |
| 4905 | int sata_scr_write_flush(struct ata_port *ap, int reg, u32 val) |
| 4906 | { |
| 4907 | if (sata_scr_valid(ap)) { |
| 4908 | ap->ops->scr_write(ap, reg, val); |
| 4909 | ap->ops->scr_read(ap, reg); |
| 4910 | return 0; |
| 4911 | } |
| 4912 | return -EOPNOTSUPP; |
| 4913 | } |
| 4914 | |
| 4915 | /** |
| 4916 | * ata_port_online - test whether the given port is online |
| 4917 | * @ap: ATA port to test |
| 4918 | * |
| 4919 | * Test whether @ap is online. Note that this function returns 0 |
| 4920 | * if online status of @ap cannot be obtained, so |
| 4921 | * ata_port_online(ap) != !ata_port_offline(ap). |
| 4922 | * |
| 4923 | * LOCKING: |
| 4924 | * None. |
| 4925 | * |
| 4926 | * RETURNS: |
| 4927 | * 1 if the port online status is available and online. |
| 4928 | */ |
| 4929 | int ata_port_online(struct ata_port *ap) |
| 4930 | { |
| 4931 | u32 sstatus; |
| 4932 | |
| 4933 | if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) == 0x3) |
| 4934 | return 1; |
| 4935 | return 0; |
| 4936 | } |
| 4937 | |
| 4938 | /** |
| 4939 | * ata_port_offline - test whether the given port is offline |
| 4940 | * @ap: ATA port to test |
| 4941 | * |
| 4942 | * Test whether @ap is offline. Note that this function returns |
| 4943 | * 0 if offline status of @ap cannot be obtained, so |
| 4944 | * ata_port_online(ap) != !ata_port_offline(ap). |
| 4945 | * |
| 4946 | * LOCKING: |
| 4947 | * None. |
| 4948 | * |
| 4949 | * RETURNS: |
| 4950 | * 1 if the port offline status is available and offline. |
| 4951 | */ |
| 4952 | int ata_port_offline(struct ata_port *ap) |
| 4953 | { |
| 4954 | u32 sstatus; |
| 4955 | |
| 4956 | if (!sata_scr_read(ap, SCR_STATUS, &sstatus) && (sstatus & 0xf) != 0x3) |
| 4957 | return 1; |
| 4958 | return 0; |
| 4959 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4960 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4961 | /* |
| 4962 | * Execute a 'simple' command, that only consists of the opcode 'cmd' itself, |
| 4963 | * without filling any other registers |
| 4964 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4965 | static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4966 | { |
| 4967 | struct ata_taskfile tf; |
| 4968 | int err; |
| 4969 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4970 | ata_tf_init(dev, &tf); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4971 | |
| 4972 | tf.command = cmd; |
| 4973 | tf.flags |= ATA_TFLAG_DEVICE; |
| 4974 | tf.protocol = ATA_PROT_NODATA; |
| 4975 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4976 | err = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4977 | if (err) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4978 | ata_dev_printk(dev, KERN_ERR, "%s: ata command failed: %d\n", |
| 4979 | __FUNCTION__, err); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4980 | |
| 4981 | return err; |
| 4982 | } |
| 4983 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4984 | static int ata_flush_cache(struct ata_device *dev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4985 | { |
| 4986 | u8 cmd; |
| 4987 | |
| 4988 | if (!ata_try_flush_cache(dev)) |
| 4989 | return 0; |
| 4990 | |
| 4991 | if (ata_id_has_flush_ext(dev->id)) |
| 4992 | cmd = ATA_CMD_FLUSH_EXT; |
| 4993 | else |
| 4994 | cmd = ATA_CMD_FLUSH; |
| 4995 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4996 | return ata_do_simple_cmd(dev, cmd); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 4997 | } |
| 4998 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4999 | static int ata_standby_drive(struct ata_device *dev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5000 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5001 | return ata_do_simple_cmd(dev, ATA_CMD_STANDBYNOW1); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5002 | } |
| 5003 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5004 | static int ata_start_drive(struct ata_device *dev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5005 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5006 | return ata_do_simple_cmd(dev, ATA_CMD_IDLEIMMEDIATE); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5007 | } |
| 5008 | |
| 5009 | /** |
| 5010 | * ata_device_resume - wakeup a previously suspended devices |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5011 | * @dev: the device to resume |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5012 | * |
| 5013 | * Kick the drive back into action, by sending it an idle immediate |
| 5014 | * command and making sure its transfer mode matches between drive |
| 5015 | * and host. |
| 5016 | * |
| 5017 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5018 | int ata_device_resume(struct ata_device *dev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5019 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5020 | struct ata_port *ap = dev->ap; |
| 5021 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5022 | if (ap->flags & ATA_FLAG_SUSPENDED) { |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 5023 | struct ata_device *failed_dev; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5024 | ap->flags &= ~ATA_FLAG_SUSPENDED; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 5025 | while (ata_set_mode(ap, &failed_dev)) |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5026 | ata_dev_disable(failed_dev); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5027 | } |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 5028 | if (!ata_dev_enabled(dev)) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5029 | return 0; |
| 5030 | if (dev->class == ATA_DEV_ATA) |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5031 | ata_start_drive(dev); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5032 | |
| 5033 | return 0; |
| 5034 | } |
| 5035 | |
| 5036 | /** |
| 5037 | * ata_device_suspend - prepare a device for suspend |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5038 | * @dev: the device to suspend |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 5039 | * @state: target power management state |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5040 | * |
| 5041 | * Flush the cache on the drive, if appropriate, then issue a |
| 5042 | * standbynow command. |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5043 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5044 | int ata_device_suspend(struct ata_device *dev, pm_message_t state) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5045 | { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5046 | struct ata_port *ap = dev->ap; |
| 5047 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 5048 | if (!ata_dev_enabled(dev)) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5049 | return 0; |
| 5050 | if (dev->class == ATA_DEV_ATA) |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5051 | ata_flush_cache(dev); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5052 | |
Nigel Cunningham | 082776e | 2006-03-23 23:22:16 +1000 | [diff] [blame] | 5053 | if (state.event != PM_EVENT_FREEZE) |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5054 | ata_standby_drive(dev); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5055 | ap->flags |= ATA_FLAG_SUSPENDED; |
| 5056 | return 0; |
| 5057 | } |
| 5058 | |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5059 | /** |
| 5060 | * ata_port_start - Set port up for dma. |
| 5061 | * @ap: Port to initialize |
| 5062 | * |
| 5063 | * Called just after data structures for each port are |
| 5064 | * initialized. Allocates space for PRD table. |
| 5065 | * |
| 5066 | * May be used as the port_start() entry in ata_port_operations. |
| 5067 | * |
| 5068 | * LOCKING: |
| 5069 | * Inherited from caller. |
| 5070 | */ |
| 5071 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5072 | int ata_port_start (struct ata_port *ap) |
| 5073 | { |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5074 | struct device *dev = ap->dev; |
Jeff Garzik | 6037d6b | 2005-11-04 22:08:00 -0500 | [diff] [blame] | 5075 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5076 | |
| 5077 | ap->prd = dma_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, GFP_KERNEL); |
| 5078 | if (!ap->prd) |
| 5079 | return -ENOMEM; |
| 5080 | |
Jeff Garzik | 6037d6b | 2005-11-04 22:08:00 -0500 | [diff] [blame] | 5081 | rc = ata_pad_alloc(ap, dev); |
| 5082 | if (rc) { |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 5083 | 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] | 5084 | return rc; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 5085 | } |
| 5086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5087 | DPRINTK("prd alloc, virt %p, dma %llx\n", ap->prd, (unsigned long long) ap->prd_dma); |
| 5088 | |
| 5089 | return 0; |
| 5090 | } |
| 5091 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5092 | |
| 5093 | /** |
| 5094 | * ata_port_stop - Undo ata_port_start() |
| 5095 | * @ap: Port to shut down |
| 5096 | * |
| 5097 | * Frees the PRD table. |
| 5098 | * |
| 5099 | * May be used as the port_stop() entry in ata_port_operations. |
| 5100 | * |
| 5101 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 5102 | * Inherited from caller. |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5103 | */ |
| 5104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5105 | void ata_port_stop (struct ata_port *ap) |
| 5106 | { |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5107 | struct device *dev = ap->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5108 | |
| 5109 | 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] | 5110 | ata_pad_free(ap, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5111 | } |
| 5112 | |
Jeff Garzik | aa8f0dc | 2005-05-26 21:54:27 -0400 | [diff] [blame] | 5113 | void ata_host_stop (struct ata_host_set *host_set) |
| 5114 | { |
| 5115 | if (host_set->mmio_base) |
| 5116 | iounmap(host_set->mmio_base); |
| 5117 | } |
| 5118 | |
| 5119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5120 | /** |
| 5121 | * ata_host_remove - Unregister SCSI host structure with upper layers |
| 5122 | * @ap: Port to unregister |
| 5123 | * @do_unregister: 1 if we fully unregister, 0 to just stop the port |
| 5124 | * |
| 5125 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 5126 | * Inherited from caller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5127 | */ |
| 5128 | |
| 5129 | static void ata_host_remove(struct ata_port *ap, unsigned int do_unregister) |
| 5130 | { |
| 5131 | struct Scsi_Host *sh = ap->host; |
| 5132 | |
| 5133 | DPRINTK("ENTER\n"); |
| 5134 | |
| 5135 | if (do_unregister) |
| 5136 | scsi_remove_host(sh); |
| 5137 | |
| 5138 | ap->ops->port_stop(ap); |
| 5139 | } |
| 5140 | |
| 5141 | /** |
| 5142 | * ata_host_init - Initialize an ata_port structure |
| 5143 | * @ap: Structure to initialize |
| 5144 | * @host: associated SCSI mid-layer structure |
| 5145 | * @host_set: Collection of hosts to which @ap belongs |
| 5146 | * @ent: Probe information provided by low-level driver |
| 5147 | * @port_no: Port number associated with this ata_port |
| 5148 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5149 | * Initialize a new ata_port structure, and its associated |
| 5150 | * scsi_host. |
| 5151 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5152 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5153 | * Inherited from caller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5154 | */ |
| 5155 | |
| 5156 | static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host, |
| 5157 | struct ata_host_set *host_set, |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5158 | const struct ata_probe_ent *ent, unsigned int port_no) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5159 | { |
| 5160 | unsigned int i; |
| 5161 | |
| 5162 | host->max_id = 16; |
| 5163 | host->max_lun = 1; |
| 5164 | host->max_channel = 1; |
| 5165 | host->unique_id = ata_unique_id++; |
| 5166 | host->max_cmd_len = 12; |
Christoph Hellwig | 1241319 | 2005-06-11 01:05:01 +0200 | [diff] [blame] | 5167 | |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 5168 | ap->flags = ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5169 | ap->id = host->unique_id; |
| 5170 | ap->host = host; |
| 5171 | ap->ctl = ATA_DEVCTL_OBS; |
| 5172 | ap->host_set = host_set; |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5173 | ap->dev = ent->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5174 | ap->port_no = port_no; |
| 5175 | ap->hard_port_no = |
| 5176 | ent->legacy_mode ? ent->hard_port_no : port_no; |
| 5177 | ap->pio_mask = ent->pio_mask; |
| 5178 | ap->mwdma_mask = ent->mwdma_mask; |
| 5179 | ap->udma_mask = ent->udma_mask; |
| 5180 | ap->flags |= ent->host_flags; |
| 5181 | ap->ops = ent->port_ops; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 5182 | ap->sata_spd_limit = UINT_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | ap->active_tag = ATA_TAG_POISON; |
| 5184 | ap->last_ctl = 0xFF; |
| 5185 | |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 5186 | INIT_WORK(&ap->port_task, NULL, NULL); |
Tejun Heo | a72ec4c | 2006-01-23 13:09:37 +0900 | [diff] [blame] | 5187 | INIT_LIST_HEAD(&ap->eh_done_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5188 | |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 5189 | /* set cable type */ |
| 5190 | ap->cbl = ATA_CBL_NONE; |
| 5191 | if (ap->flags & ATA_FLAG_SATA) |
| 5192 | ap->cbl = ATA_CBL_SATA; |
| 5193 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 5194 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 5195 | struct ata_device *dev = &ap->device[i]; |
Tejun Heo | 38d8723 | 2006-05-15 20:57:51 +0900 | [diff] [blame] | 5196 | dev->ap = ap; |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 5197 | dev->devno = i; |
| 5198 | dev->pio_mask = UINT_MAX; |
| 5199 | dev->mwdma_mask = UINT_MAX; |
| 5200 | dev->udma_mask = UINT_MAX; |
| 5201 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5202 | |
| 5203 | #ifdef ATA_IRQ_TRAP |
| 5204 | ap->stats.unhandled_irq = 1; |
| 5205 | ap->stats.idle_irq = 1; |
| 5206 | #endif |
| 5207 | |
| 5208 | memcpy(&ap->ioaddr, &ent->port[port_no], sizeof(struct ata_ioports)); |
| 5209 | } |
| 5210 | |
| 5211 | /** |
| 5212 | * ata_host_add - Attach low-level ATA driver to system |
| 5213 | * @ent: Information provided by low-level driver |
| 5214 | * @host_set: Collections of ports to which we add |
| 5215 | * @port_no: Port number associated with this host |
| 5216 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5217 | * Attach low-level ATA driver to system. |
| 5218 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5219 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5220 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5221 | * |
| 5222 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5223 | * New ata_port on success, for NULL on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5224 | */ |
| 5225 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5226 | 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] | 5227 | struct ata_host_set *host_set, |
| 5228 | unsigned int port_no) |
| 5229 | { |
| 5230 | struct Scsi_Host *host; |
| 5231 | struct ata_port *ap; |
| 5232 | int rc; |
| 5233 | |
| 5234 | DPRINTK("ENTER\n"); |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 5235 | |
| 5236 | if (!ent->port_ops->probe_reset && |
| 5237 | !(ent->host_flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST))) { |
| 5238 | printk(KERN_ERR "ata%u: no reset mechanism available\n", |
| 5239 | port_no); |
| 5240 | return NULL; |
| 5241 | } |
| 5242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5243 | host = scsi_host_alloc(ent->sht, sizeof(struct ata_port)); |
| 5244 | if (!host) |
| 5245 | return NULL; |
| 5246 | |
Tejun Heo | 30afc84 | 2006-03-18 18:40:14 +0900 | [diff] [blame] | 5247 | host->transportt = &ata_scsi_transport_template; |
| 5248 | |
Jeff Garzik | 35bb94b | 2006-04-11 13:12:34 -0400 | [diff] [blame] | 5249 | ap = ata_shost_to_port(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5250 | |
| 5251 | ata_host_init(ap, host, host_set, ent, port_no); |
| 5252 | |
| 5253 | rc = ap->ops->port_start(ap); |
| 5254 | if (rc) |
| 5255 | goto err_out; |
| 5256 | |
| 5257 | return ap; |
| 5258 | |
| 5259 | err_out: |
| 5260 | scsi_host_put(host); |
| 5261 | return NULL; |
| 5262 | } |
| 5263 | |
| 5264 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5265 | * ata_device_add - Register hardware device with ATA and SCSI layers |
| 5266 | * @ent: Probe information describing hardware device to be registered |
| 5267 | * |
| 5268 | * This function processes the information provided in the probe |
| 5269 | * information struct @ent, allocates the necessary ATA and SCSI |
| 5270 | * host information structures, initializes them, and registers |
| 5271 | * everything with requisite kernel subsystems. |
| 5272 | * |
| 5273 | * This function requests irqs, probes the ATA bus, and probes |
| 5274 | * the SCSI bus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5275 | * |
| 5276 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5277 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5278 | * |
| 5279 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5280 | * Number of ports registered. Zero on error (no ports registered). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5281 | */ |
| 5282 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5283 | int ata_device_add(const struct ata_probe_ent *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5284 | { |
| 5285 | unsigned int count = 0, i; |
| 5286 | struct device *dev = ent->dev; |
| 5287 | struct ata_host_set *host_set; |
| 5288 | |
| 5289 | DPRINTK("ENTER\n"); |
| 5290 | /* alloc a container for our list of ATA ports (buses) */ |
Randy Dunlap | 57f3bda | 2005-10-28 20:37:23 -0700 | [diff] [blame] | 5291 | host_set = kzalloc(sizeof(struct ata_host_set) + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5292 | (ent->n_ports * sizeof(void *)), GFP_KERNEL); |
| 5293 | if (!host_set) |
| 5294 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5295 | spin_lock_init(&host_set->lock); |
| 5296 | |
| 5297 | host_set->dev = dev; |
| 5298 | host_set->n_ports = ent->n_ports; |
| 5299 | host_set->irq = ent->irq; |
| 5300 | host_set->mmio_base = ent->mmio_base; |
| 5301 | host_set->private_data = ent->private_data; |
| 5302 | host_set->ops = ent->port_ops; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 5303 | host_set->flags = ent->host_set_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5304 | |
| 5305 | /* register each port bound to this device */ |
| 5306 | for (i = 0; i < ent->n_ports; i++) { |
| 5307 | struct ata_port *ap; |
| 5308 | unsigned long xfer_mode_mask; |
| 5309 | |
| 5310 | ap = ata_host_add(ent, host_set, i); |
| 5311 | if (!ap) |
| 5312 | goto err_out; |
| 5313 | |
| 5314 | host_set->ports[i] = ap; |
| 5315 | xfer_mode_mask =(ap->udma_mask << ATA_SHIFT_UDMA) | |
| 5316 | (ap->mwdma_mask << ATA_SHIFT_MWDMA) | |
| 5317 | (ap->pio_mask << ATA_SHIFT_PIO); |
| 5318 | |
| 5319 | /* print per-port info to dmesg */ |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 5320 | ata_port_printk(ap, KERN_INFO, "%cATA max %s cmd 0x%lX " |
| 5321 | "ctl 0x%lX bmdma 0x%lX irq %lu\n", |
| 5322 | ap->flags & ATA_FLAG_SATA ? 'S' : 'P', |
| 5323 | ata_mode_string(xfer_mode_mask), |
| 5324 | ap->ioaddr.cmd_addr, |
| 5325 | ap->ioaddr.ctl_addr, |
| 5326 | ap->ioaddr.bmdma_addr, |
| 5327 | ent->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5328 | |
| 5329 | ata_chk_status(ap); |
| 5330 | host_set->ops->irq_clear(ap); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 5331 | ata_eh_freeze_port(ap); /* freeze port before requesting IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5332 | count++; |
| 5333 | } |
| 5334 | |
Randy Dunlap | 57f3bda | 2005-10-28 20:37:23 -0700 | [diff] [blame] | 5335 | if (!count) |
| 5336 | goto err_free_ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5337 | |
| 5338 | /* obtain irq, that is shared between channels */ |
| 5339 | if (request_irq(ent->irq, ent->port_ops->irq_handler, ent->irq_flags, |
| 5340 | DRV_NAME, host_set)) |
| 5341 | goto err_out; |
| 5342 | |
| 5343 | /* perform each probe synchronously */ |
| 5344 | DPRINTK("probe begin\n"); |
| 5345 | for (i = 0; i < count; i++) { |
| 5346 | struct ata_port *ap; |
| 5347 | int rc; |
| 5348 | |
| 5349 | ap = host_set->ports[i]; |
| 5350 | |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5351 | DPRINTK("ata%u: bus probe begin\n", ap->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5352 | rc = ata_bus_probe(ap); |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5353 | DPRINTK("ata%u: bus probe end\n", ap->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5354 | |
| 5355 | if (rc) { |
| 5356 | /* FIXME: do something useful here? |
| 5357 | * Current libata behavior will |
| 5358 | * tear down everything when |
| 5359 | * the module is removed |
| 5360 | * or the h/w is unplugged. |
| 5361 | */ |
| 5362 | } |
| 5363 | |
| 5364 | rc = scsi_add_host(ap->host, dev); |
| 5365 | if (rc) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 5366 | ata_port_printk(ap, KERN_ERR, "scsi_add_host failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5367 | /* FIXME: do something useful here */ |
| 5368 | /* FIXME: handle unconditional calls to |
| 5369 | * scsi_scan_host and ata_host_remove, below, |
| 5370 | * at the very least |
| 5371 | */ |
| 5372 | } |
| 5373 | } |
| 5374 | |
| 5375 | /* probes are done, now scan each port's disk(s) */ |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5376 | DPRINTK("host probe begin\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5377 | for (i = 0; i < count; i++) { |
| 5378 | struct ata_port *ap = host_set->ports[i]; |
| 5379 | |
Jeff Garzik | 644dd0c | 2005-10-03 15:55:19 -0400 | [diff] [blame] | 5380 | ata_scsi_scan_host(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5381 | } |
| 5382 | |
| 5383 | dev_set_drvdata(dev, host_set); |
| 5384 | |
| 5385 | VPRINTK("EXIT, returning %u\n", ent->n_ports); |
| 5386 | return ent->n_ports; /* success */ |
| 5387 | |
| 5388 | err_out: |
| 5389 | for (i = 0; i < count; i++) { |
| 5390 | ata_host_remove(host_set->ports[i], 1); |
| 5391 | scsi_host_put(host_set->ports[i]->host); |
| 5392 | } |
Randy Dunlap | 57f3bda | 2005-10-28 20:37:23 -0700 | [diff] [blame] | 5393 | err_free_ret: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5394 | kfree(host_set); |
| 5395 | VPRINTK("EXIT, returning 0\n"); |
| 5396 | return 0; |
| 5397 | } |
| 5398 | |
| 5399 | /** |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5400 | * ata_host_set_remove - PCI layer callback for device removal |
| 5401 | * @host_set: ATA host set that was removed |
| 5402 | * |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 5403 | * Unregister all objects associated with this host set. Free those |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5404 | * objects. |
| 5405 | * |
| 5406 | * LOCKING: |
| 5407 | * Inherited from calling layer (may sleep). |
| 5408 | */ |
| 5409 | |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5410 | void ata_host_set_remove(struct ata_host_set *host_set) |
| 5411 | { |
| 5412 | struct ata_port *ap; |
| 5413 | unsigned int i; |
| 5414 | |
| 5415 | for (i = 0; i < host_set->n_ports; i++) { |
| 5416 | ap = host_set->ports[i]; |
| 5417 | scsi_remove_host(ap->host); |
| 5418 | } |
| 5419 | |
| 5420 | free_irq(host_set->irq, host_set); |
| 5421 | |
| 5422 | for (i = 0; i < host_set->n_ports; i++) { |
| 5423 | ap = host_set->ports[i]; |
| 5424 | |
| 5425 | ata_scsi_release(ap->host); |
| 5426 | |
| 5427 | if ((ap->flags & ATA_FLAG_NO_LEGACY) == 0) { |
| 5428 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 5429 | |
| 5430 | if (ioaddr->cmd_addr == 0x1f0) |
| 5431 | release_region(0x1f0, 8); |
| 5432 | else if (ioaddr->cmd_addr == 0x170) |
| 5433 | release_region(0x170, 8); |
| 5434 | } |
| 5435 | |
| 5436 | scsi_host_put(ap->host); |
| 5437 | } |
| 5438 | |
| 5439 | if (host_set->ops->host_stop) |
| 5440 | host_set->ops->host_stop(host_set); |
| 5441 | |
| 5442 | kfree(host_set); |
| 5443 | } |
| 5444 | |
| 5445 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5446 | * ata_scsi_release - SCSI layer callback hook for host unload |
| 5447 | * @host: libata host to be unloaded |
| 5448 | * |
| 5449 | * Performs all duties necessary to shut down a libata port... |
| 5450 | * Kill port kthread, disable port, and release resources. |
| 5451 | * |
| 5452 | * LOCKING: |
| 5453 | * Inherited from SCSI layer. |
| 5454 | * |
| 5455 | * RETURNS: |
| 5456 | * One. |
| 5457 | */ |
| 5458 | |
| 5459 | int ata_scsi_release(struct Scsi_Host *host) |
| 5460 | { |
Jeff Garzik | 35bb94b | 2006-04-11 13:12:34 -0400 | [diff] [blame] | 5461 | struct ata_port *ap = ata_shost_to_port(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5462 | |
| 5463 | DPRINTK("ENTER\n"); |
| 5464 | |
| 5465 | ap->ops->port_disable(ap); |
| 5466 | ata_host_remove(ap, 0); |
| 5467 | |
| 5468 | DPRINTK("EXIT\n"); |
| 5469 | return 1; |
| 5470 | } |
| 5471 | |
| 5472 | /** |
| 5473 | * ata_std_ports - initialize ioaddr with standard port offsets. |
| 5474 | * @ioaddr: IO address structure to be initialized |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5475 | * |
| 5476 | * Utility function which initializes data_addr, error_addr, |
| 5477 | * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr, |
| 5478 | * device_addr, status_addr, and command_addr to standard offsets |
| 5479 | * relative to cmd_addr. |
| 5480 | * |
| 5481 | * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5482 | */ |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5484 | void ata_std_ports(struct ata_ioports *ioaddr) |
| 5485 | { |
| 5486 | ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA; |
| 5487 | ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR; |
| 5488 | ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE; |
| 5489 | ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT; |
| 5490 | ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL; |
| 5491 | ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM; |
| 5492 | ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH; |
| 5493 | ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE; |
| 5494 | ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS; |
| 5495 | ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD; |
| 5496 | } |
| 5497 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5498 | |
Jeff Garzik | 374b187 | 2005-08-30 05:42:52 -0400 | [diff] [blame] | 5499 | #ifdef CONFIG_PCI |
| 5500 | |
| 5501 | void ata_pci_host_stop (struct ata_host_set *host_set) |
| 5502 | { |
| 5503 | struct pci_dev *pdev = to_pci_dev(host_set->dev); |
| 5504 | |
| 5505 | pci_iounmap(pdev, host_set->mmio_base); |
| 5506 | } |
| 5507 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5508 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5509 | * ata_pci_remove_one - PCI layer callback for device removal |
| 5510 | * @pdev: PCI device that was removed |
| 5511 | * |
| 5512 | * PCI layer indicates to libata via this hook that |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 5513 | * hot-unplug or module unload event has occurred. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5514 | * Handle this by unregistering all objects associated |
| 5515 | * with this PCI device. Free those objects. Then finally |
| 5516 | * release PCI resources and disable device. |
| 5517 | * |
| 5518 | * LOCKING: |
| 5519 | * Inherited from PCI layer (may sleep). |
| 5520 | */ |
| 5521 | |
| 5522 | void ata_pci_remove_one (struct pci_dev *pdev) |
| 5523 | { |
| 5524 | struct device *dev = pci_dev_to_dev(pdev); |
| 5525 | struct ata_host_set *host_set = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5526 | |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5527 | ata_host_set_remove(host_set); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5528 | pci_release_regions(pdev); |
| 5529 | pci_disable_device(pdev); |
| 5530 | dev_set_drvdata(dev, NULL); |
| 5531 | } |
| 5532 | |
| 5533 | /* move to PCI subsystem */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5534 | 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] | 5535 | { |
| 5536 | unsigned long tmp = 0; |
| 5537 | |
| 5538 | switch (bits->width) { |
| 5539 | case 1: { |
| 5540 | u8 tmp8 = 0; |
| 5541 | pci_read_config_byte(pdev, bits->reg, &tmp8); |
| 5542 | tmp = tmp8; |
| 5543 | break; |
| 5544 | } |
| 5545 | case 2: { |
| 5546 | u16 tmp16 = 0; |
| 5547 | pci_read_config_word(pdev, bits->reg, &tmp16); |
| 5548 | tmp = tmp16; |
| 5549 | break; |
| 5550 | } |
| 5551 | case 4: { |
| 5552 | u32 tmp32 = 0; |
| 5553 | pci_read_config_dword(pdev, bits->reg, &tmp32); |
| 5554 | tmp = tmp32; |
| 5555 | break; |
| 5556 | } |
| 5557 | |
| 5558 | default: |
| 5559 | return -EINVAL; |
| 5560 | } |
| 5561 | |
| 5562 | tmp &= bits->mask; |
| 5563 | |
| 5564 | return (tmp == bits->val) ? 1 : 0; |
| 5565 | } |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5566 | |
| 5567 | int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t state) |
| 5568 | { |
| 5569 | pci_save_state(pdev); |
| 5570 | pci_disable_device(pdev); |
| 5571 | pci_set_power_state(pdev, PCI_D3hot); |
| 5572 | return 0; |
| 5573 | } |
| 5574 | |
| 5575 | int ata_pci_device_resume(struct pci_dev *pdev) |
| 5576 | { |
| 5577 | pci_set_power_state(pdev, PCI_D0); |
| 5578 | pci_restore_state(pdev); |
| 5579 | pci_enable_device(pdev); |
| 5580 | pci_set_master(pdev); |
| 5581 | return 0; |
| 5582 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5583 | #endif /* CONFIG_PCI */ |
| 5584 | |
| 5585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5586 | static int __init ata_init(void) |
| 5587 | { |
| 5588 | ata_wq = create_workqueue("ata"); |
| 5589 | if (!ata_wq) |
| 5590 | return -ENOMEM; |
| 5591 | |
| 5592 | printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n"); |
| 5593 | return 0; |
| 5594 | } |
| 5595 | |
| 5596 | static void __exit ata_exit(void) |
| 5597 | { |
| 5598 | destroy_workqueue(ata_wq); |
| 5599 | } |
| 5600 | |
| 5601 | module_init(ata_init); |
| 5602 | module_exit(ata_exit); |
| 5603 | |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 5604 | static unsigned long ratelimit_time; |
| 5605 | static spinlock_t ata_ratelimit_lock = SPIN_LOCK_UNLOCKED; |
| 5606 | |
| 5607 | int ata_ratelimit(void) |
| 5608 | { |
| 5609 | int rc; |
| 5610 | unsigned long flags; |
| 5611 | |
| 5612 | spin_lock_irqsave(&ata_ratelimit_lock, flags); |
| 5613 | |
| 5614 | if (time_after(jiffies, ratelimit_time)) { |
| 5615 | rc = 1; |
| 5616 | ratelimit_time = jiffies + (HZ/5); |
| 5617 | } else |
| 5618 | rc = 0; |
| 5619 | |
| 5620 | spin_unlock_irqrestore(&ata_ratelimit_lock, flags); |
| 5621 | |
| 5622 | return rc; |
| 5623 | } |
| 5624 | |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 5625 | /** |
| 5626 | * ata_wait_register - wait until register value changes |
| 5627 | * @reg: IO-mapped register |
| 5628 | * @mask: Mask to apply to read register value |
| 5629 | * @val: Wait condition |
| 5630 | * @interval_msec: polling interval in milliseconds |
| 5631 | * @timeout_msec: timeout in milliseconds |
| 5632 | * |
| 5633 | * Waiting for some bits of register to change is a common |
| 5634 | * operation for ATA controllers. This function reads 32bit LE |
| 5635 | * IO-mapped register @reg and tests for the following condition. |
| 5636 | * |
| 5637 | * (*@reg & mask) != val |
| 5638 | * |
| 5639 | * If the condition is met, it returns; otherwise, the process is |
| 5640 | * repeated after @interval_msec until timeout. |
| 5641 | * |
| 5642 | * LOCKING: |
| 5643 | * Kernel thread context (may sleep) |
| 5644 | * |
| 5645 | * RETURNS: |
| 5646 | * The final register value. |
| 5647 | */ |
| 5648 | u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val, |
| 5649 | unsigned long interval_msec, |
| 5650 | unsigned long timeout_msec) |
| 5651 | { |
| 5652 | unsigned long timeout; |
| 5653 | u32 tmp; |
| 5654 | |
| 5655 | tmp = ioread32(reg); |
| 5656 | |
| 5657 | /* Calculate timeout _after_ the first read to make sure |
| 5658 | * preceding writes reach the controller before starting to |
| 5659 | * eat away the timeout. |
| 5660 | */ |
| 5661 | timeout = jiffies + (timeout_msec * HZ) / 1000; |
| 5662 | |
| 5663 | while ((tmp & mask) == val && time_before(jiffies, timeout)) { |
| 5664 | msleep(interval_msec); |
| 5665 | tmp = ioread32(reg); |
| 5666 | } |
| 5667 | |
| 5668 | return tmp; |
| 5669 | } |
| 5670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5671 | /* |
| 5672 | * libata is essentially a library of internal helper functions for |
| 5673 | * low-level ATA host controller drivers. As such, the API/ABI is |
| 5674 | * likely to change as new drivers are added and updated. |
| 5675 | * Do not depend on ABI/API stability. |
| 5676 | */ |
| 5677 | |
| 5678 | EXPORT_SYMBOL_GPL(ata_std_bios_param); |
| 5679 | EXPORT_SYMBOL_GPL(ata_std_ports); |
| 5680 | EXPORT_SYMBOL_GPL(ata_device_add); |
Alan Cox | 17b1445 | 2005-09-15 15:44:00 +0100 | [diff] [blame] | 5681 | EXPORT_SYMBOL_GPL(ata_host_set_remove); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5682 | EXPORT_SYMBOL_GPL(ata_sg_init); |
| 5683 | EXPORT_SYMBOL_GPL(ata_sg_init_one); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5684 | EXPORT_SYMBOL_GPL(ata_qc_complete); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5685 | EXPORT_SYMBOL_GPL(ata_qc_complete_multiple); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5686 | EXPORT_SYMBOL_GPL(ata_qc_issue_prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5687 | EXPORT_SYMBOL_GPL(ata_tf_load); |
| 5688 | EXPORT_SYMBOL_GPL(ata_tf_read); |
| 5689 | EXPORT_SYMBOL_GPL(ata_noop_dev_select); |
| 5690 | EXPORT_SYMBOL_GPL(ata_std_dev_select); |
| 5691 | EXPORT_SYMBOL_GPL(ata_tf_to_fis); |
| 5692 | EXPORT_SYMBOL_GPL(ata_tf_from_fis); |
| 5693 | EXPORT_SYMBOL_GPL(ata_check_status); |
| 5694 | EXPORT_SYMBOL_GPL(ata_altstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5695 | EXPORT_SYMBOL_GPL(ata_exec_command); |
| 5696 | EXPORT_SYMBOL_GPL(ata_port_start); |
| 5697 | EXPORT_SYMBOL_GPL(ata_port_stop); |
Jeff Garzik | aa8f0dc | 2005-05-26 21:54:27 -0400 | [diff] [blame] | 5698 | EXPORT_SYMBOL_GPL(ata_host_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5699 | EXPORT_SYMBOL_GPL(ata_interrupt); |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 5700 | EXPORT_SYMBOL_GPL(ata_mmio_data_xfer); |
| 5701 | EXPORT_SYMBOL_GPL(ata_pio_data_xfer); |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame^] | 5702 | EXPORT_SYMBOL_GPL(ata_pio_data_xfer_noirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5703 | EXPORT_SYMBOL_GPL(ata_qc_prep); |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 5704 | EXPORT_SYMBOL_GPL(ata_noop_qc_prep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5705 | EXPORT_SYMBOL_GPL(ata_bmdma_setup); |
| 5706 | EXPORT_SYMBOL_GPL(ata_bmdma_start); |
| 5707 | EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear); |
| 5708 | EXPORT_SYMBOL_GPL(ata_bmdma_status); |
| 5709 | EXPORT_SYMBOL_GPL(ata_bmdma_stop); |
Tejun Heo | 6d97dbd | 2006-05-15 20:58:24 +0900 | [diff] [blame] | 5710 | EXPORT_SYMBOL_GPL(ata_bmdma_freeze); |
| 5711 | EXPORT_SYMBOL_GPL(ata_bmdma_thaw); |
| 5712 | EXPORT_SYMBOL_GPL(ata_bmdma_drive_eh); |
| 5713 | EXPORT_SYMBOL_GPL(ata_bmdma_error_handler); |
| 5714 | EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5715 | EXPORT_SYMBOL_GPL(ata_port_probe); |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 5716 | EXPORT_SYMBOL_GPL(sata_set_spd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5717 | EXPORT_SYMBOL_GPL(sata_phy_reset); |
| 5718 | EXPORT_SYMBOL_GPL(__sata_phy_reset); |
| 5719 | EXPORT_SYMBOL_GPL(ata_bus_reset); |
Tejun Heo | 8a19ac8 | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 5720 | EXPORT_SYMBOL_GPL(ata_std_probeinit); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 5721 | EXPORT_SYMBOL_GPL(ata_std_softreset); |
| 5722 | EXPORT_SYMBOL_GPL(sata_std_hardreset); |
| 5723 | EXPORT_SYMBOL_GPL(ata_std_postreset); |
| 5724 | EXPORT_SYMBOL_GPL(ata_std_probe_reset); |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 5725 | EXPORT_SYMBOL_GPL(ata_drive_probe_reset); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 5726 | EXPORT_SYMBOL_GPL(ata_dev_revalidate); |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 5727 | EXPORT_SYMBOL_GPL(ata_dev_classify); |
| 5728 | EXPORT_SYMBOL_GPL(ata_dev_pair); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5729 | EXPORT_SYMBOL_GPL(ata_port_disable); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 5730 | EXPORT_SYMBOL_GPL(ata_ratelimit); |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 5731 | EXPORT_SYMBOL_GPL(ata_wait_register); |
Tejun Heo | 6f8b995 | 2006-01-24 17:05:21 +0900 | [diff] [blame] | 5732 | EXPORT_SYMBOL_GPL(ata_busy_sleep); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 5733 | EXPORT_SYMBOL_GPL(ata_port_queue_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5734 | EXPORT_SYMBOL_GPL(ata_scsi_ioctl); |
| 5735 | EXPORT_SYMBOL_GPL(ata_scsi_queuecmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5736 | EXPORT_SYMBOL_GPL(ata_scsi_slave_config); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 5737 | EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5738 | EXPORT_SYMBOL_GPL(ata_scsi_release); |
| 5739 | EXPORT_SYMBOL_GPL(ata_host_intr); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5740 | EXPORT_SYMBOL_GPL(sata_scr_valid); |
| 5741 | EXPORT_SYMBOL_GPL(sata_scr_read); |
| 5742 | EXPORT_SYMBOL_GPL(sata_scr_write); |
| 5743 | EXPORT_SYMBOL_GPL(sata_scr_write_flush); |
| 5744 | EXPORT_SYMBOL_GPL(ata_port_online); |
| 5745 | EXPORT_SYMBOL_GPL(ata_port_offline); |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 5746 | EXPORT_SYMBOL_GPL(ata_id_string); |
| 5747 | EXPORT_SYMBOL_GPL(ata_id_c_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5748 | EXPORT_SYMBOL_GPL(ata_scsi_simulate); |
| 5749 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 5750 | EXPORT_SYMBOL_GPL(ata_pio_need_iordy); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 5751 | EXPORT_SYMBOL_GPL(ata_timing_compute); |
| 5752 | EXPORT_SYMBOL_GPL(ata_timing_merge); |
| 5753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5754 | #ifdef CONFIG_PCI |
| 5755 | EXPORT_SYMBOL_GPL(pci_test_config_bits); |
Jeff Garzik | 374b187 | 2005-08-30 05:42:52 -0400 | [diff] [blame] | 5756 | EXPORT_SYMBOL_GPL(ata_pci_host_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5757 | EXPORT_SYMBOL_GPL(ata_pci_init_native_mode); |
| 5758 | EXPORT_SYMBOL_GPL(ata_pci_init_one); |
| 5759 | EXPORT_SYMBOL_GPL(ata_pci_remove_one); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5760 | EXPORT_SYMBOL_GPL(ata_pci_device_suspend); |
| 5761 | EXPORT_SYMBOL_GPL(ata_pci_device_resume); |
Alan Cox | 67951ad | 2006-03-22 15:55:54 +0000 | [diff] [blame] | 5762 | EXPORT_SYMBOL_GPL(ata_pci_default_filter); |
| 5763 | EXPORT_SYMBOL_GPL(ata_pci_clear_simplex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5764 | #endif /* CONFIG_PCI */ |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5765 | |
| 5766 | EXPORT_SYMBOL_GPL(ata_device_suspend); |
| 5767 | EXPORT_SYMBOL_GPL(ata_device_resume); |
| 5768 | EXPORT_SYMBOL_GPL(ata_scsi_device_suspend); |
| 5769 | EXPORT_SYMBOL_GPL(ata_scsi_device_resume); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 5770 | |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 5771 | EXPORT_SYMBOL_GPL(ata_eng_timeout); |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 5772 | EXPORT_SYMBOL_GPL(ata_port_schedule_eh); |
| 5773 | EXPORT_SYMBOL_GPL(ata_port_abort); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 5774 | EXPORT_SYMBOL_GPL(ata_port_freeze); |
| 5775 | EXPORT_SYMBOL_GPL(ata_eh_freeze_port); |
| 5776 | EXPORT_SYMBOL_GPL(ata_eh_thaw_port); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 5777 | EXPORT_SYMBOL_GPL(ata_eh_qc_complete); |
| 5778 | EXPORT_SYMBOL_GPL(ata_eh_qc_retry); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 5779 | EXPORT_SYMBOL_GPL(ata_do_eh); |