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 | * |
Alan Cox | 92c52c5 | 2007-11-19 14:30:16 +0000 | [diff] [blame] | 33 | * Standards documents from: |
| 34 | * http://www.t13.org (ATA standards, PCI DMA IDE spec) |
| 35 | * http://www.t10.org (SCSI MMC - for ATAPI MMC) |
| 36 | * http://www.sata-io.org (SATA) |
| 37 | * http://www.compactflash.org (CF) |
| 38 | * http://www.qic.org (QIC157 - Tape and DSC) |
| 39 | * http://www.ce-ata.org (CE-ATA: not supported) |
| 40 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | */ |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/kernel.h> |
| 44 | #include <linux/module.h> |
| 45 | #include <linux/pci.h> |
| 46 | #include <linux/init.h> |
| 47 | #include <linux/list.h> |
| 48 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/spinlock.h> |
| 50 | #include <linux/blkdev.h> |
| 51 | #include <linux/delay.h> |
| 52 | #include <linux/timer.h> |
| 53 | #include <linux/interrupt.h> |
| 54 | #include <linux/completion.h> |
| 55 | #include <linux/suspend.h> |
| 56 | #include <linux/workqueue.h> |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 57 | #include <linux/jiffies.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 58 | #include <linux/scatterlist.h> |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 59 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <scsi/scsi.h> |
Jeff Garzik | 193515d | 2005-11-07 00:59:37 -0500 | [diff] [blame] | 61 | #include <scsi/scsi_cmnd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #include <scsi/scsi_host.h> |
| 63 | #include <linux/libata.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <asm/semaphore.h> |
| 65 | #include <asm/byteorder.h> |
Tejun Heo | 140b5e5 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 66 | #include <linux/cdrom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | #include "libata.h" |
| 69 | |
Jeff Garzik | fda0efc | 2007-01-31 07:43:15 -0500 | [diff] [blame] | 70 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 71 | /* debounce timing parameters in msecs { interval, duration, timeout } */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 72 | const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 }; |
| 73 | const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 }; |
| 74 | const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 }; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 75 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 76 | const struct ata_port_operations ata_base_port_ops = { |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 77 | .prereset = ata_std_prereset, |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 78 | .postreset = ata_std_postreset, |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame] | 79 | .error_handler = ata_std_error_handler, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | const struct ata_port_operations sata_port_ops = { |
| 83 | .inherits = &ata_base_port_ops, |
| 84 | |
| 85 | .qc_defer = ata_std_qc_defer, |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 86 | .hardreset = sata_std_hardreset, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 87 | }; |
| 88 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 89 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 90 | u16 heads, u16 sectors); |
| 91 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev); |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 92 | static unsigned int ata_dev_set_feature(struct ata_device *dev, |
| 93 | u8 enable, u8 feature); |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 94 | static void ata_dev_xfermask(struct ata_device *dev); |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 95 | static unsigned long ata_dev_blacklisted(const struct ata_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 97 | unsigned int ata_print_id = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | static struct workqueue_struct *ata_wq; |
| 99 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 100 | struct workqueue_struct *ata_aux_wq; |
| 101 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 102 | struct ata_force_param { |
| 103 | const char *name; |
| 104 | unsigned int cbl; |
| 105 | int spd_limit; |
| 106 | unsigned long xfer_mask; |
| 107 | unsigned int horkage_on; |
| 108 | unsigned int horkage_off; |
| 109 | }; |
| 110 | |
| 111 | struct ata_force_ent { |
| 112 | int port; |
| 113 | int device; |
| 114 | struct ata_force_param param; |
| 115 | }; |
| 116 | |
| 117 | static struct ata_force_ent *ata_force_tbl; |
| 118 | static int ata_force_tbl_size; |
| 119 | |
| 120 | static char ata_force_param_buf[PAGE_SIZE] __initdata; |
Tejun Heo | 7afb422 | 2008-03-09 20:21:53 +0900 | [diff] [blame] | 121 | /* param_buf is thrown away after initialization, disallow read */ |
| 122 | module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 123 | MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)"); |
| 124 | |
Jeff Garzik | 418dc1f | 2006-03-11 20:50:08 -0500 | [diff] [blame] | 125 | int atapi_enabled = 1; |
Jeff Garzik | 1623c81 | 2005-08-30 03:37:42 -0400 | [diff] [blame] | 126 | module_param(atapi_enabled, int, 0444); |
| 127 | MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)"); |
| 128 | |
Adrian Bunk | c5c61bd | 2008-02-25 02:07:25 +0200 | [diff] [blame] | 129 | static int atapi_dmadir = 0; |
Albert Lee | 95de719 | 2006-04-04 10:57:18 +0800 | [diff] [blame] | 130 | module_param(atapi_dmadir, int, 0444); |
| 131 | MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)"); |
| 132 | |
Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 133 | int atapi_passthru16 = 1; |
| 134 | module_param(atapi_passthru16, int, 0444); |
| 135 | MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)"); |
| 136 | |
Jeff Garzik | c3c013a | 2006-02-27 22:31:19 -0500 | [diff] [blame] | 137 | int libata_fua = 0; |
| 138 | module_param_named(fua, libata_fua, int, 0444); |
| 139 | MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)"); |
| 140 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 141 | static int ata_ignore_hpa; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 142 | module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644); |
| 143 | MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)"); |
| 144 | |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 145 | static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA; |
| 146 | module_param_named(dma, libata_dma_mask, int, 0444); |
| 147 | MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)"); |
| 148 | |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 149 | static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ; |
| 150 | module_param(ata_probe_timeout, int, 0444); |
| 151 | MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)"); |
| 152 | |
Jeff Garzik | 6ebe9d8 | 2007-10-05 16:28:36 -0400 | [diff] [blame] | 153 | int libata_noacpi = 0; |
Jeff Garzik | d7d0dad | 2007-03-28 01:57:37 -0400 | [diff] [blame] | 154 | module_param_named(noacpi, libata_noacpi, int, 0444); |
Jeff Garzik | 6ebe9d8 | 2007-10-05 16:28:36 -0400 | [diff] [blame] | 155 | MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set"); |
Kristen Carlson Accardi | 11ef697 | 2006-09-28 11:29:01 -0700 | [diff] [blame] | 156 | |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 157 | int libata_allow_tpm = 0; |
| 158 | module_param_named(allow_tpm, libata_allow_tpm, int, 0444); |
| 159 | MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands"); |
| 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | MODULE_AUTHOR("Jeff Garzik"); |
| 162 | MODULE_DESCRIPTION("Library module for ATA devices"); |
| 163 | MODULE_LICENSE("GPL"); |
| 164 | MODULE_VERSION(DRV_VERSION); |
| 165 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 166 | |
| 167 | /** |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 168 | * ata_force_cbl - force cable type according to libata.force |
Randy Dunlap | 4cdfa1b | 2008-02-22 12:21:37 -0800 | [diff] [blame] | 169 | * @ap: ATA port of interest |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 170 | * |
| 171 | * Force cable type according to libata.force and whine about it. |
| 172 | * The last entry which has matching port number is used, so it |
| 173 | * can be specified as part of device force parameters. For |
| 174 | * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the |
| 175 | * same effect. |
| 176 | * |
| 177 | * LOCKING: |
| 178 | * EH context. |
| 179 | */ |
| 180 | void ata_force_cbl(struct ata_port *ap) |
| 181 | { |
| 182 | int i; |
| 183 | |
| 184 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 185 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 186 | |
| 187 | if (fe->port != -1 && fe->port != ap->print_id) |
| 188 | continue; |
| 189 | |
| 190 | if (fe->param.cbl == ATA_CBL_NONE) |
| 191 | continue; |
| 192 | |
| 193 | ap->cbl = fe->param.cbl; |
| 194 | ata_port_printk(ap, KERN_NOTICE, |
| 195 | "FORCE: cable set to %s\n", fe->param.name); |
| 196 | return; |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * ata_force_spd_limit - force SATA spd limit according to libata.force |
| 202 | * @link: ATA link of interest |
| 203 | * |
| 204 | * Force SATA spd limit according to libata.force and whine about |
| 205 | * it. When only the port part is specified (e.g. 1:), the limit |
| 206 | * applies to all links connected to both the host link and all |
| 207 | * fan-out ports connected via PMP. If the device part is |
| 208 | * specified as 0 (e.g. 1.00:), it specifies the first fan-out |
| 209 | * link not the host link. Device number 15 always points to the |
| 210 | * host link whether PMP is attached or not. |
| 211 | * |
| 212 | * LOCKING: |
| 213 | * EH context. |
| 214 | */ |
| 215 | static void ata_force_spd_limit(struct ata_link *link) |
| 216 | { |
| 217 | int linkno, i; |
| 218 | |
| 219 | if (ata_is_host_link(link)) |
| 220 | linkno = 15; |
| 221 | else |
| 222 | linkno = link->pmp; |
| 223 | |
| 224 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 225 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 226 | |
| 227 | if (fe->port != -1 && fe->port != link->ap->print_id) |
| 228 | continue; |
| 229 | |
| 230 | if (fe->device != -1 && fe->device != linkno) |
| 231 | continue; |
| 232 | |
| 233 | if (!fe->param.spd_limit) |
| 234 | continue; |
| 235 | |
| 236 | link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1; |
| 237 | ata_link_printk(link, KERN_NOTICE, |
| 238 | "FORCE: PHY spd limit set to %s\n", fe->param.name); |
| 239 | return; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * ata_force_xfermask - force xfermask according to libata.force |
| 245 | * @dev: ATA device of interest |
| 246 | * |
| 247 | * Force xfer_mask according to libata.force and whine about it. |
| 248 | * For consistency with link selection, device number 15 selects |
| 249 | * the first device connected to the host link. |
| 250 | * |
| 251 | * LOCKING: |
| 252 | * EH context. |
| 253 | */ |
| 254 | static void ata_force_xfermask(struct ata_device *dev) |
| 255 | { |
| 256 | int devno = dev->link->pmp + dev->devno; |
| 257 | int alt_devno = devno; |
| 258 | int i; |
| 259 | |
| 260 | /* allow n.15 for the first device attached to host port */ |
| 261 | if (ata_is_host_link(dev->link) && devno == 0) |
| 262 | alt_devno = 15; |
| 263 | |
| 264 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 265 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 266 | unsigned long pio_mask, mwdma_mask, udma_mask; |
| 267 | |
| 268 | if (fe->port != -1 && fe->port != dev->link->ap->print_id) |
| 269 | continue; |
| 270 | |
| 271 | if (fe->device != -1 && fe->device != devno && |
| 272 | fe->device != alt_devno) |
| 273 | continue; |
| 274 | |
| 275 | if (!fe->param.xfer_mask) |
| 276 | continue; |
| 277 | |
| 278 | ata_unpack_xfermask(fe->param.xfer_mask, |
| 279 | &pio_mask, &mwdma_mask, &udma_mask); |
| 280 | if (udma_mask) |
| 281 | dev->udma_mask = udma_mask; |
| 282 | else if (mwdma_mask) { |
| 283 | dev->udma_mask = 0; |
| 284 | dev->mwdma_mask = mwdma_mask; |
| 285 | } else { |
| 286 | dev->udma_mask = 0; |
| 287 | dev->mwdma_mask = 0; |
| 288 | dev->pio_mask = pio_mask; |
| 289 | } |
| 290 | |
| 291 | ata_dev_printk(dev, KERN_NOTICE, |
| 292 | "FORCE: xfer_mask set to %s\n", fe->param.name); |
| 293 | return; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * ata_force_horkage - force horkage according to libata.force |
| 299 | * @dev: ATA device of interest |
| 300 | * |
| 301 | * Force horkage according to libata.force and whine about it. |
| 302 | * For consistency with link selection, device number 15 selects |
| 303 | * the first device connected to the host link. |
| 304 | * |
| 305 | * LOCKING: |
| 306 | * EH context. |
| 307 | */ |
| 308 | static void ata_force_horkage(struct ata_device *dev) |
| 309 | { |
| 310 | int devno = dev->link->pmp + dev->devno; |
| 311 | int alt_devno = devno; |
| 312 | int i; |
| 313 | |
| 314 | /* allow n.15 for the first device attached to host port */ |
| 315 | if (ata_is_host_link(dev->link) && devno == 0) |
| 316 | alt_devno = 15; |
| 317 | |
| 318 | for (i = 0; i < ata_force_tbl_size; i++) { |
| 319 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 320 | |
| 321 | if (fe->port != -1 && fe->port != dev->link->ap->print_id) |
| 322 | continue; |
| 323 | |
| 324 | if (fe->device != -1 && fe->device != devno && |
| 325 | fe->device != alt_devno) |
| 326 | continue; |
| 327 | |
| 328 | if (!(~dev->horkage & fe->param.horkage_on) && |
| 329 | !(dev->horkage & fe->param.horkage_off)) |
| 330 | continue; |
| 331 | |
| 332 | dev->horkage |= fe->param.horkage_on; |
| 333 | dev->horkage &= ~fe->param.horkage_off; |
| 334 | |
| 335 | ata_dev_printk(dev, KERN_NOTICE, |
| 336 | "FORCE: horkage modified (%s)\n", fe->param.name); |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | /** |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 341 | * atapi_cmd_type - Determine ATAPI command type from SCSI opcode |
| 342 | * @opcode: SCSI opcode |
| 343 | * |
| 344 | * Determine ATAPI command type from @opcode. |
| 345 | * |
| 346 | * LOCKING: |
| 347 | * None. |
| 348 | * |
| 349 | * RETURNS: |
| 350 | * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC} |
| 351 | */ |
| 352 | int atapi_cmd_type(u8 opcode) |
| 353 | { |
| 354 | switch (opcode) { |
| 355 | case GPCMD_READ_10: |
| 356 | case GPCMD_READ_12: |
| 357 | return ATAPI_READ; |
| 358 | |
| 359 | case GPCMD_WRITE_10: |
| 360 | case GPCMD_WRITE_12: |
| 361 | case GPCMD_WRITE_AND_VERIFY_10: |
| 362 | return ATAPI_WRITE; |
| 363 | |
| 364 | case GPCMD_READ_CD: |
| 365 | case GPCMD_READ_CD_MSF: |
| 366 | return ATAPI_READ_CD; |
| 367 | |
Tejun Heo | e52dcc4 | 2008-04-02 17:35:19 +0900 | [diff] [blame] | 368 | case ATA_16: |
| 369 | case ATA_12: |
| 370 | if (atapi_passthru16) |
| 371 | return ATAPI_PASS_THRU; |
| 372 | /* fall thru */ |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 373 | default: |
| 374 | return ATAPI_MISC; |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure |
| 380 | * @tf: Taskfile to convert |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | * @pmp: Port multiplier port |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 382 | * @is_cmd: This FIS is for command |
| 383 | * @fis: Buffer into which data will output |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | * |
| 385 | * Converts a standard ATA taskfile to a Serial ATA |
| 386 | * FIS structure (Register - Host to Device). |
| 387 | * |
| 388 | * LOCKING: |
| 389 | * Inherited from caller. |
| 390 | */ |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 391 | void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 393 | fis[0] = 0x27; /* Register - Host to Device FIS */ |
| 394 | fis[1] = pmp & 0xf; /* Port multiplier number*/ |
| 395 | if (is_cmd) |
| 396 | fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */ |
| 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | fis[2] = tf->command; |
| 399 | fis[3] = tf->feature; |
| 400 | |
| 401 | fis[4] = tf->lbal; |
| 402 | fis[5] = tf->lbam; |
| 403 | fis[6] = tf->lbah; |
| 404 | fis[7] = tf->device; |
| 405 | |
| 406 | fis[8] = tf->hob_lbal; |
| 407 | fis[9] = tf->hob_lbam; |
| 408 | fis[10] = tf->hob_lbah; |
| 409 | fis[11] = tf->hob_feature; |
| 410 | |
| 411 | fis[12] = tf->nsect; |
| 412 | fis[13] = tf->hob_nsect; |
| 413 | fis[14] = 0; |
| 414 | fis[15] = tf->ctl; |
| 415 | |
| 416 | fis[16] = 0; |
| 417 | fis[17] = 0; |
| 418 | fis[18] = 0; |
| 419 | fis[19] = 0; |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * ata_tf_from_fis - Convert SATA FIS to ATA taskfile |
| 424 | * @fis: Buffer from which data will be input |
| 425 | * @tf: Taskfile to output |
| 426 | * |
Mark Lord | e12a1be | 2005-11-12 18:55:45 -0500 | [diff] [blame] | 427 | * Converts a serial ATA FIS structure to a standard ATA taskfile. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | * |
| 429 | * LOCKING: |
| 430 | * Inherited from caller. |
| 431 | */ |
| 432 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 433 | void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
| 435 | tf->command = fis[2]; /* status */ |
| 436 | tf->feature = fis[3]; /* error */ |
| 437 | |
| 438 | tf->lbal = fis[4]; |
| 439 | tf->lbam = fis[5]; |
| 440 | tf->lbah = fis[6]; |
| 441 | tf->device = fis[7]; |
| 442 | |
| 443 | tf->hob_lbal = fis[8]; |
| 444 | tf->hob_lbam = fis[9]; |
| 445 | tf->hob_lbah = fis[10]; |
| 446 | |
| 447 | tf->nsect = fis[12]; |
| 448 | tf->hob_nsect = fis[13]; |
| 449 | } |
| 450 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 451 | static const u8 ata_rw_cmds[] = { |
| 452 | /* pio multi */ |
| 453 | ATA_CMD_READ_MULTI, |
| 454 | ATA_CMD_WRITE_MULTI, |
| 455 | ATA_CMD_READ_MULTI_EXT, |
| 456 | ATA_CMD_WRITE_MULTI_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 457 | 0, |
| 458 | 0, |
| 459 | 0, |
| 460 | ATA_CMD_WRITE_MULTI_FUA_EXT, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 461 | /* pio */ |
| 462 | ATA_CMD_PIO_READ, |
| 463 | ATA_CMD_PIO_WRITE, |
| 464 | ATA_CMD_PIO_READ_EXT, |
| 465 | ATA_CMD_PIO_WRITE_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 466 | 0, |
| 467 | 0, |
| 468 | 0, |
| 469 | 0, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 470 | /* dma */ |
| 471 | ATA_CMD_READ, |
| 472 | ATA_CMD_WRITE, |
| 473 | ATA_CMD_READ_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 474 | ATA_CMD_WRITE_EXT, |
| 475 | 0, |
| 476 | 0, |
| 477 | 0, |
| 478 | ATA_CMD_WRITE_FUA_EXT |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 479 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
| 481 | /** |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 482 | * ata_rwcmd_protocol - set taskfile r/w commands and protocol |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 483 | * @tf: command to examine and configure |
| 484 | * @dev: device tf belongs to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | * |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 486 | * Examine the device configuration and tf->flags to calculate |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 487 | * the proper read/write commands and protocol to use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | * |
| 489 | * LOCKING: |
| 490 | * caller. |
| 491 | */ |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 492 | static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | { |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 494 | u8 cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 496 | int index, fua, lba48, write; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 497 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 498 | fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 499 | lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0; |
| 500 | write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 502 | if (dev->flags & ATA_DFLAG_PIO) { |
| 503 | tf->protocol = ATA_PROT_PIO; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 504 | index = dev->multi_count ? 0 : 8; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 505 | } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) { |
Alan Cox | 8d238e0 | 2006-01-17 20:50:31 +0000 | [diff] [blame] | 506 | /* Unable to use DMA due to host limitation */ |
| 507 | tf->protocol = ATA_PROT_PIO; |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 508 | index = dev->multi_count ? 0 : 8; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 509 | } else { |
| 510 | tf->protocol = ATA_PROT_DMA; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 511 | index = 16; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 512 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 514 | cmd = ata_rw_cmds[index + fua + lba48 + write]; |
| 515 | if (cmd) { |
| 516 | tf->command = cmd; |
| 517 | return 0; |
| 518 | } |
| 519 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 522 | /** |
Tejun Heo | 35b649f | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 523 | * ata_tf_read_block - Read block address from ATA taskfile |
| 524 | * @tf: ATA taskfile of interest |
| 525 | * @dev: ATA device @tf belongs to |
| 526 | * |
| 527 | * LOCKING: |
| 528 | * None. |
| 529 | * |
| 530 | * Read block address from @tf. This function can handle all |
| 531 | * three address formats - LBA, LBA48 and CHS. tf->protocol and |
| 532 | * flags select the address format to use. |
| 533 | * |
| 534 | * RETURNS: |
| 535 | * Block address read from @tf. |
| 536 | */ |
| 537 | u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev) |
| 538 | { |
| 539 | u64 block = 0; |
| 540 | |
| 541 | if (tf->flags & ATA_TFLAG_LBA) { |
| 542 | if (tf->flags & ATA_TFLAG_LBA48) { |
| 543 | block |= (u64)tf->hob_lbah << 40; |
| 544 | block |= (u64)tf->hob_lbam << 32; |
| 545 | block |= tf->hob_lbal << 24; |
| 546 | } else |
| 547 | block |= (tf->device & 0xf) << 24; |
| 548 | |
| 549 | block |= tf->lbah << 16; |
| 550 | block |= tf->lbam << 8; |
| 551 | block |= tf->lbal; |
| 552 | } else { |
| 553 | u32 cyl, head, sect; |
| 554 | |
| 555 | cyl = tf->lbam | (tf->lbah << 8); |
| 556 | head = tf->device & 0xf; |
| 557 | sect = tf->lbal; |
| 558 | |
| 559 | block = (cyl * dev->heads + head) * dev->sectors + sect; |
| 560 | } |
| 561 | |
| 562 | return block; |
| 563 | } |
| 564 | |
| 565 | /** |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 566 | * ata_build_rw_tf - Build ATA taskfile for given read/write request |
| 567 | * @tf: Target ATA taskfile |
| 568 | * @dev: ATA device @tf belongs to |
| 569 | * @block: Block address |
| 570 | * @n_block: Number of blocks |
| 571 | * @tf_flags: RW/FUA etc... |
| 572 | * @tag: tag |
| 573 | * |
| 574 | * LOCKING: |
| 575 | * None. |
| 576 | * |
| 577 | * Build ATA taskfile @tf for read/write request described by |
| 578 | * @block, @n_block, @tf_flags and @tag on @dev. |
| 579 | * |
| 580 | * RETURNS: |
| 581 | * |
| 582 | * 0 on success, -ERANGE if the request is too large for @dev, |
| 583 | * -EINVAL if the request is invalid. |
| 584 | */ |
| 585 | int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev, |
| 586 | u64 block, u32 n_block, unsigned int tf_flags, |
| 587 | unsigned int tag) |
| 588 | { |
| 589 | tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 590 | tf->flags |= tf_flags; |
| 591 | |
Tejun Heo | 6d1245b | 2007-02-20 23:20:27 +0900 | [diff] [blame] | 592 | if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) { |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 593 | /* yay, NCQ */ |
| 594 | if (!lba_48_ok(block, n_block)) |
| 595 | return -ERANGE; |
| 596 | |
| 597 | tf->protocol = ATA_PROT_NCQ; |
| 598 | tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48; |
| 599 | |
| 600 | if (tf->flags & ATA_TFLAG_WRITE) |
| 601 | tf->command = ATA_CMD_FPDMA_WRITE; |
| 602 | else |
| 603 | tf->command = ATA_CMD_FPDMA_READ; |
| 604 | |
| 605 | tf->nsect = tag << 3; |
| 606 | tf->hob_feature = (n_block >> 8) & 0xff; |
| 607 | tf->feature = n_block & 0xff; |
| 608 | |
| 609 | tf->hob_lbah = (block >> 40) & 0xff; |
| 610 | tf->hob_lbam = (block >> 32) & 0xff; |
| 611 | tf->hob_lbal = (block >> 24) & 0xff; |
| 612 | tf->lbah = (block >> 16) & 0xff; |
| 613 | tf->lbam = (block >> 8) & 0xff; |
| 614 | tf->lbal = block & 0xff; |
| 615 | |
| 616 | tf->device = 1 << 6; |
| 617 | if (tf->flags & ATA_TFLAG_FUA) |
| 618 | tf->device |= 1 << 7; |
| 619 | } else if (dev->flags & ATA_DFLAG_LBA) { |
| 620 | tf->flags |= ATA_TFLAG_LBA; |
| 621 | |
| 622 | if (lba_28_ok(block, n_block)) { |
| 623 | /* use LBA28 */ |
| 624 | tf->device |= (block >> 24) & 0xf; |
| 625 | } else if (lba_48_ok(block, n_block)) { |
| 626 | if (!(dev->flags & ATA_DFLAG_LBA48)) |
| 627 | return -ERANGE; |
| 628 | |
| 629 | /* use LBA48 */ |
| 630 | tf->flags |= ATA_TFLAG_LBA48; |
| 631 | |
| 632 | tf->hob_nsect = (n_block >> 8) & 0xff; |
| 633 | |
| 634 | tf->hob_lbah = (block >> 40) & 0xff; |
| 635 | tf->hob_lbam = (block >> 32) & 0xff; |
| 636 | tf->hob_lbal = (block >> 24) & 0xff; |
| 637 | } else |
| 638 | /* request too large even for LBA48 */ |
| 639 | return -ERANGE; |
| 640 | |
| 641 | if (unlikely(ata_rwcmd_protocol(tf, dev) < 0)) |
| 642 | return -EINVAL; |
| 643 | |
| 644 | tf->nsect = n_block & 0xff; |
| 645 | |
| 646 | tf->lbah = (block >> 16) & 0xff; |
| 647 | tf->lbam = (block >> 8) & 0xff; |
| 648 | tf->lbal = block & 0xff; |
| 649 | |
| 650 | tf->device |= ATA_LBA; |
| 651 | } else { |
| 652 | /* CHS */ |
| 653 | u32 sect, head, cyl, track; |
| 654 | |
| 655 | /* The request -may- be too large for CHS addressing. */ |
| 656 | if (!lba_28_ok(block, n_block)) |
| 657 | return -ERANGE; |
| 658 | |
| 659 | if (unlikely(ata_rwcmd_protocol(tf, dev) < 0)) |
| 660 | return -EINVAL; |
| 661 | |
| 662 | /* Convert LBA to CHS */ |
| 663 | track = (u32)block / dev->sectors; |
| 664 | cyl = track / dev->heads; |
| 665 | head = track % dev->heads; |
| 666 | sect = (u32)block % dev->sectors + 1; |
| 667 | |
| 668 | DPRINTK("block %u track %u cyl %u head %u sect %u\n", |
| 669 | (u32)block, track, cyl, head, sect); |
| 670 | |
| 671 | /* Check whether the converted CHS can fit. |
| 672 | Cylinder: 0-65535 |
| 673 | Head: 0-15 |
| 674 | Sector: 1-255*/ |
| 675 | if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect)) |
| 676 | return -ERANGE; |
| 677 | |
| 678 | tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */ |
| 679 | tf->lbal = sect; |
| 680 | tf->lbam = cyl; |
| 681 | tf->lbah = cyl >> 8; |
| 682 | tf->device |= head; |
| 683 | } |
| 684 | |
| 685 | return 0; |
| 686 | } |
| 687 | |
| 688 | /** |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 689 | * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask |
| 690 | * @pio_mask: pio_mask |
| 691 | * @mwdma_mask: mwdma_mask |
| 692 | * @udma_mask: udma_mask |
| 693 | * |
| 694 | * Pack @pio_mask, @mwdma_mask and @udma_mask into a single |
| 695 | * unsigned int xfer_mask. |
| 696 | * |
| 697 | * LOCKING: |
| 698 | * None. |
| 699 | * |
| 700 | * RETURNS: |
| 701 | * Packed xfer_mask. |
| 702 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 703 | unsigned long ata_pack_xfermask(unsigned long pio_mask, |
| 704 | unsigned long mwdma_mask, |
| 705 | unsigned long udma_mask) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 706 | { |
| 707 | return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) | |
| 708 | ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) | |
| 709 | ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA); |
| 710 | } |
| 711 | |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 712 | /** |
| 713 | * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks |
| 714 | * @xfer_mask: xfer_mask to unpack |
| 715 | * @pio_mask: resulting pio_mask |
| 716 | * @mwdma_mask: resulting mwdma_mask |
| 717 | * @udma_mask: resulting udma_mask |
| 718 | * |
| 719 | * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask. |
| 720 | * Any NULL distination masks will be ignored. |
| 721 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 722 | void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask, |
| 723 | unsigned long *mwdma_mask, unsigned long *udma_mask) |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 724 | { |
| 725 | if (pio_mask) |
| 726 | *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO; |
| 727 | if (mwdma_mask) |
| 728 | *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA; |
| 729 | if (udma_mask) |
| 730 | *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA; |
| 731 | } |
| 732 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 733 | static const struct ata_xfer_ent { |
Tejun Heo | be9a50c8 | 2006-03-31 22:48:52 +0900 | [diff] [blame] | 734 | int shift, bits; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 735 | u8 base; |
| 736 | } ata_xfer_tbl[] = { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 737 | { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 }, |
| 738 | { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 }, |
| 739 | { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 }, |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 740 | { -1, }, |
| 741 | }; |
| 742 | |
| 743 | /** |
| 744 | * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask |
| 745 | * @xfer_mask: xfer_mask of interest |
| 746 | * |
| 747 | * Return matching XFER_* value for @xfer_mask. Only the highest |
| 748 | * bit of @xfer_mask is considered. |
| 749 | * |
| 750 | * LOCKING: |
| 751 | * None. |
| 752 | * |
| 753 | * RETURNS: |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 754 | * Matching XFER_* value, 0xff if no match found. |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 755 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 756 | u8 ata_xfer_mask2mode(unsigned long xfer_mask) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 757 | { |
| 758 | int highbit = fls(xfer_mask) - 1; |
| 759 | const struct ata_xfer_ent *ent; |
| 760 | |
| 761 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 762 | if (highbit >= ent->shift && highbit < ent->shift + ent->bits) |
| 763 | return ent->base + highbit - ent->shift; |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 764 | return 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | /** |
| 768 | * ata_xfer_mode2mask - Find matching xfer_mask for XFER_* |
| 769 | * @xfer_mode: XFER_* of interest |
| 770 | * |
| 771 | * Return matching xfer_mask for @xfer_mode. |
| 772 | * |
| 773 | * LOCKING: |
| 774 | * None. |
| 775 | * |
| 776 | * RETURNS: |
| 777 | * Matching xfer_mask, 0 if no match found. |
| 778 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 779 | unsigned long ata_xfer_mode2mask(u8 xfer_mode) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 780 | { |
| 781 | const struct ata_xfer_ent *ent; |
| 782 | |
| 783 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 784 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 785 | return ((2 << (ent->shift + xfer_mode - ent->base)) - 1) |
| 786 | & ~((1 << ent->shift) - 1); |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 787 | return 0; |
| 788 | } |
| 789 | |
| 790 | /** |
| 791 | * ata_xfer_mode2shift - Find matching xfer_shift for XFER_* |
| 792 | * @xfer_mode: XFER_* of interest |
| 793 | * |
| 794 | * Return matching xfer_shift for @xfer_mode. |
| 795 | * |
| 796 | * LOCKING: |
| 797 | * None. |
| 798 | * |
| 799 | * RETURNS: |
| 800 | * Matching xfer_shift, -1 if no match found. |
| 801 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 802 | int ata_xfer_mode2shift(unsigned long xfer_mode) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 803 | { |
| 804 | const struct ata_xfer_ent *ent; |
| 805 | |
| 806 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 807 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
| 808 | return ent->shift; |
| 809 | return -1; |
| 810 | } |
| 811 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | /** |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 813 | * ata_mode_string - convert xfer_mask to string |
| 814 | * @xfer_mask: mask of bits supported; only highest bit counts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | * |
| 816 | * Determine string which represents the highest speed |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 817 | * (highest bit in @modemask). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | * |
| 819 | * LOCKING: |
| 820 | * None. |
| 821 | * |
| 822 | * RETURNS: |
| 823 | * Constant C string representing highest speed listed in |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 824 | * @mode_mask, or the constant C string "<n/a>". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 826 | const char *ata_mode_string(unsigned long xfer_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | { |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 828 | static const char * const xfer_mode_str[] = { |
| 829 | "PIO0", |
| 830 | "PIO1", |
| 831 | "PIO2", |
| 832 | "PIO3", |
| 833 | "PIO4", |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 834 | "PIO5", |
| 835 | "PIO6", |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 836 | "MWDMA0", |
| 837 | "MWDMA1", |
| 838 | "MWDMA2", |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 839 | "MWDMA3", |
| 840 | "MWDMA4", |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 841 | "UDMA/16", |
| 842 | "UDMA/25", |
| 843 | "UDMA/33", |
| 844 | "UDMA/44", |
| 845 | "UDMA/66", |
| 846 | "UDMA/100", |
| 847 | "UDMA/133", |
| 848 | "UDMA7", |
| 849 | }; |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 850 | int highbit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 852 | highbit = fls(xfer_mask) - 1; |
| 853 | if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str)) |
| 854 | return xfer_mode_str[highbit]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | return "<n/a>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | } |
| 857 | |
Tejun Heo | 4c360c8 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 858 | static const char *sata_spd_string(unsigned int spd) |
| 859 | { |
| 860 | static const char * const spd_str[] = { |
| 861 | "1.5 Gbps", |
| 862 | "3.0 Gbps", |
| 863 | }; |
| 864 | |
| 865 | if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str)) |
| 866 | return "<unknown>"; |
| 867 | return spd_str[spd - 1]; |
| 868 | } |
| 869 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 870 | void ata_dev_disable(struct ata_device *dev) |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 871 | { |
Tejun Heo | 09d7f9b | 2007-06-25 23:34:02 +0900 | [diff] [blame] | 872 | if (ata_dev_enabled(dev)) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 873 | if (ata_msg_drv(dev->link->ap)) |
Tejun Heo | 09d7f9b | 2007-06-25 23:34:02 +0900 | [diff] [blame] | 874 | ata_dev_printk(dev, KERN_WARNING, "disabled\n"); |
Tejun Heo | 562f0c2 | 2007-12-15 15:05:01 +0900 | [diff] [blame] | 875 | ata_acpi_on_disable(dev); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 876 | ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 | |
| 877 | ATA_DNXFER_QUIET); |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 878 | dev->class++; |
| 879 | } |
| 880 | } |
| 881 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 882 | static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy) |
| 883 | { |
| 884 | struct ata_link *link = dev->link; |
| 885 | struct ata_port *ap = link->ap; |
| 886 | u32 scontrol; |
| 887 | unsigned int err_mask; |
| 888 | int rc; |
| 889 | |
| 890 | /* |
| 891 | * disallow DIPM for drivers which haven't set |
| 892 | * ATA_FLAG_IPM. This is because when DIPM is enabled, |
| 893 | * phy ready will be set in the interrupt status on |
| 894 | * state changes, which will cause some drivers to |
| 895 | * think there are errors - additionally drivers will |
| 896 | * need to disable hot plug. |
| 897 | */ |
| 898 | if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) { |
| 899 | ap->pm_policy = NOT_AVAILABLE; |
| 900 | return -EINVAL; |
| 901 | } |
| 902 | |
| 903 | /* |
| 904 | * For DIPM, we will only enable it for the |
| 905 | * min_power setting. |
| 906 | * |
| 907 | * Why? Because Disks are too stupid to know that |
| 908 | * If the host rejects a request to go to SLUMBER |
| 909 | * they should retry at PARTIAL, and instead it |
| 910 | * just would give up. So, for medium_power to |
| 911 | * work at all, we need to only allow HIPM. |
| 912 | */ |
| 913 | rc = sata_scr_read(link, SCR_CONTROL, &scontrol); |
| 914 | if (rc) |
| 915 | return rc; |
| 916 | |
| 917 | switch (policy) { |
| 918 | case MIN_POWER: |
| 919 | /* no restrictions on IPM transitions */ |
| 920 | scontrol &= ~(0x3 << 8); |
| 921 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 922 | if (rc) |
| 923 | return rc; |
| 924 | |
| 925 | /* enable DIPM */ |
| 926 | if (dev->flags & ATA_DFLAG_DIPM) |
| 927 | err_mask = ata_dev_set_feature(dev, |
| 928 | SETFEATURES_SATA_ENABLE, SATA_DIPM); |
| 929 | break; |
| 930 | case MEDIUM_POWER: |
| 931 | /* allow IPM to PARTIAL */ |
| 932 | scontrol &= ~(0x1 << 8); |
| 933 | scontrol |= (0x2 << 8); |
| 934 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 935 | if (rc) |
| 936 | return rc; |
| 937 | |
Kristen Carlson Accardi | f5456b6 | 2007-11-02 16:37:08 -0700 | [diff] [blame] | 938 | /* |
| 939 | * we don't have to disable DIPM since IPM flags |
| 940 | * disallow transitions to SLUMBER, which effectively |
| 941 | * disable DIPM if it does not support PARTIAL |
| 942 | */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 943 | break; |
| 944 | case NOT_AVAILABLE: |
| 945 | case MAX_PERFORMANCE: |
| 946 | /* disable all IPM transitions */ |
| 947 | scontrol |= (0x3 << 8); |
| 948 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 949 | if (rc) |
| 950 | return rc; |
| 951 | |
Kristen Carlson Accardi | f5456b6 | 2007-11-02 16:37:08 -0700 | [diff] [blame] | 952 | /* |
| 953 | * we don't have to disable DIPM since IPM flags |
| 954 | * disallow all transitions which effectively |
| 955 | * disable DIPM anyway. |
| 956 | */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 957 | break; |
| 958 | } |
| 959 | |
| 960 | /* FIXME: handle SET FEATURES failure */ |
| 961 | (void) err_mask; |
| 962 | |
| 963 | return 0; |
| 964 | } |
| 965 | |
| 966 | /** |
| 967 | * ata_dev_enable_pm - enable SATA interface power management |
Stephen Hemminger | 48166fd | 2007-10-31 10:00:27 -0700 | [diff] [blame] | 968 | * @dev: device to enable power management |
| 969 | * @policy: the link power management policy |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 970 | * |
| 971 | * Enable SATA Interface power management. This will enable |
| 972 | * Device Interface Power Management (DIPM) for min_power |
| 973 | * policy, and then call driver specific callbacks for |
| 974 | * enabling Host Initiated Power management. |
| 975 | * |
| 976 | * Locking: Caller. |
| 977 | * Returns: -EINVAL if IPM is not supported, 0 otherwise. |
| 978 | */ |
| 979 | void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy) |
| 980 | { |
| 981 | int rc = 0; |
| 982 | struct ata_port *ap = dev->link->ap; |
| 983 | |
| 984 | /* set HIPM first, then DIPM */ |
| 985 | if (ap->ops->enable_pm) |
| 986 | rc = ap->ops->enable_pm(ap, policy); |
| 987 | if (rc) |
| 988 | goto enable_pm_out; |
| 989 | rc = ata_dev_set_dipm(dev, policy); |
| 990 | |
| 991 | enable_pm_out: |
| 992 | if (rc) |
| 993 | ap->pm_policy = MAX_PERFORMANCE; |
| 994 | else |
| 995 | ap->pm_policy = policy; |
| 996 | return /* rc */; /* hopefully we can use 'rc' eventually */ |
| 997 | } |
| 998 | |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 999 | #ifdef CONFIG_PM |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1000 | /** |
| 1001 | * ata_dev_disable_pm - disable SATA interface power management |
Stephen Hemminger | 48166fd | 2007-10-31 10:00:27 -0700 | [diff] [blame] | 1002 | * @dev: device to disable power management |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1003 | * |
| 1004 | * Disable SATA Interface power management. This will disable |
| 1005 | * Device Interface Power Management (DIPM) without changing |
| 1006 | * policy, call driver specific callbacks for disabling Host |
| 1007 | * Initiated Power management. |
| 1008 | * |
| 1009 | * Locking: Caller. |
| 1010 | * Returns: void |
| 1011 | */ |
| 1012 | static void ata_dev_disable_pm(struct ata_device *dev) |
| 1013 | { |
| 1014 | struct ata_port *ap = dev->link->ap; |
| 1015 | |
| 1016 | ata_dev_set_dipm(dev, MAX_PERFORMANCE); |
| 1017 | if (ap->ops->disable_pm) |
| 1018 | ap->ops->disable_pm(ap); |
| 1019 | } |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1020 | #endif /* CONFIG_PM */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1021 | |
| 1022 | void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy) |
| 1023 | { |
| 1024 | ap->pm_policy = policy; |
Tejun Heo | 3ec25eb | 2008-03-27 18:37:14 +0900 | [diff] [blame] | 1025 | ap->link.eh_info.action |= ATA_EH_LPM; |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1026 | ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY; |
| 1027 | ata_port_schedule_eh(ap); |
| 1028 | } |
| 1029 | |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1030 | #ifdef CONFIG_PM |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1031 | static void ata_lpm_enable(struct ata_host *host) |
| 1032 | { |
| 1033 | struct ata_link *link; |
| 1034 | struct ata_port *ap; |
| 1035 | struct ata_device *dev; |
| 1036 | int i; |
| 1037 | |
| 1038 | for (i = 0; i < host->n_ports; i++) { |
| 1039 | ap = host->ports[i]; |
| 1040 | ata_port_for_each_link(link, ap) { |
| 1041 | ata_link_for_each_dev(dev, link) |
| 1042 | ata_dev_disable_pm(dev); |
| 1043 | } |
| 1044 | } |
| 1045 | } |
| 1046 | |
| 1047 | static void ata_lpm_disable(struct ata_host *host) |
| 1048 | { |
| 1049 | int i; |
| 1050 | |
| 1051 | for (i = 0; i < host->n_ports; i++) { |
| 1052 | struct ata_port *ap = host->ports[i]; |
| 1053 | ata_lpm_schedule(ap, ap->pm_policy); |
| 1054 | } |
| 1055 | } |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1056 | #endif /* CONFIG_PM */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | /** |
| 1059 | * ata_dev_classify - determine device type based on ATA-spec signature |
| 1060 | * @tf: ATA taskfile register set for device to be identified |
| 1061 | * |
| 1062 | * Determine from taskfile register contents whether a device is |
| 1063 | * ATA or ATAPI, as per "Signature and persistence" section |
| 1064 | * of ATA/PI spec (volume 1, sect 5.14). |
| 1065 | * |
| 1066 | * LOCKING: |
| 1067 | * None. |
| 1068 | * |
| 1069 | * RETURNS: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1070 | * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or |
| 1071 | * %ATA_DEV_UNKNOWN the event of failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 1073 | unsigned int ata_dev_classify(const struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | { |
| 1075 | /* Apple's open source Darwin code hints that some devices only |
| 1076 | * put a proper signature into the LBA mid/high registers, |
| 1077 | * So, we only check those. It's sufficient for uniqueness. |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1078 | * |
| 1079 | * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate |
| 1080 | * signatures for ATA and ATAPI devices attached on SerialATA, |
| 1081 | * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA |
| 1082 | * spec has never mentioned about using different signatures |
| 1083 | * for ATA/ATAPI devices. Then, Serial ATA II: Port |
| 1084 | * Multiplier specification began to use 0x69/0x96 to identify |
| 1085 | * port multpliers and 0x3c/0xc3 to identify SEMB device. |
| 1086 | * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and |
| 1087 | * 0x69/0x96 shortly and described them as reserved for |
| 1088 | * SerialATA. |
| 1089 | * |
| 1090 | * We follow the current spec and consider that 0x69/0x96 |
| 1091 | * identifies a port multiplier and 0x3c/0xc3 a SEMB device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | */ |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1093 | if ((tf->lbam == 0) && (tf->lbah == 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | DPRINTK("found ATA device by sig\n"); |
| 1095 | return ATA_DEV_ATA; |
| 1096 | } |
| 1097 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1098 | if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | DPRINTK("found ATAPI device by sig\n"); |
| 1100 | return ATA_DEV_ATAPI; |
| 1101 | } |
| 1102 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1103 | if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) { |
| 1104 | DPRINTK("found PMP device by sig\n"); |
| 1105 | return ATA_DEV_PMP; |
| 1106 | } |
| 1107 | |
| 1108 | if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1109 | printk(KERN_INFO "ata: SEMB device ignored\n"); |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1110 | return ATA_DEV_SEMB_UNSUP; /* not yet */ |
| 1111 | } |
| 1112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | DPRINTK("unknown device\n"); |
| 1114 | return ATA_DEV_UNKNOWN; |
| 1115 | } |
| 1116 | |
| 1117 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1118 | * ata_id_string - Convert IDENTIFY DEVICE page into string |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | * @id: IDENTIFY DEVICE results we will examine |
| 1120 | * @s: string into which data is output |
| 1121 | * @ofs: offset into identify device page |
| 1122 | * @len: length of string to return. must be an even number. |
| 1123 | * |
| 1124 | * The strings in the IDENTIFY DEVICE page are broken up into |
| 1125 | * 16-bit chunks. Run through the string, and output each |
| 1126 | * 8-bit chunk linearly, regardless of platform. |
| 1127 | * |
| 1128 | * LOCKING: |
| 1129 | * caller. |
| 1130 | */ |
| 1131 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1132 | void ata_id_string(const u16 *id, unsigned char *s, |
| 1133 | unsigned int ofs, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | { |
| 1135 | unsigned int c; |
| 1136 | |
| 1137 | while (len > 0) { |
| 1138 | c = id[ofs] >> 8; |
| 1139 | *s = c; |
| 1140 | s++; |
| 1141 | |
| 1142 | c = id[ofs] & 0xff; |
| 1143 | *s = c; |
| 1144 | s++; |
| 1145 | |
| 1146 | ofs++; |
| 1147 | len -= 2; |
| 1148 | } |
| 1149 | } |
| 1150 | |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1151 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1152 | * ata_id_c_string - Convert IDENTIFY DEVICE page into C string |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1153 | * @id: IDENTIFY DEVICE results we will examine |
| 1154 | * @s: string into which data is output |
| 1155 | * @ofs: offset into identify device page |
| 1156 | * @len: length of string to return. must be an odd number. |
| 1157 | * |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1158 | * This function is identical to ata_id_string except that it |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1159 | * trims trailing spaces and terminates the resulting string with |
| 1160 | * null. @len must be actual maximum length (even number) + 1. |
| 1161 | * |
| 1162 | * LOCKING: |
| 1163 | * caller. |
| 1164 | */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1165 | void ata_id_c_string(const u16 *id, unsigned char *s, |
| 1166 | unsigned int ofs, unsigned int len) |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1167 | { |
| 1168 | unsigned char *p; |
| 1169 | |
| 1170 | WARN_ON(!(len & 1)); |
| 1171 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1172 | ata_id_string(id, s, ofs, len - 1); |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1173 | |
| 1174 | p = s + strnlen(s, len - 1); |
| 1175 | while (p > s && p[-1] == ' ') |
| 1176 | p--; |
| 1177 | *p = '\0'; |
| 1178 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1179 | |
Tejun Heo | db6f875 | 2007-09-03 12:31:58 +0900 | [diff] [blame] | 1180 | static u64 ata_id_n_sectors(const u16 *id) |
| 1181 | { |
| 1182 | if (ata_id_has_lba(id)) { |
| 1183 | if (ata_id_has_lba48(id)) |
| 1184 | return ata_id_u64(id, 100); |
| 1185 | else |
| 1186 | return ata_id_u32(id, 60); |
| 1187 | } else { |
| 1188 | if (ata_id_current_chs_valid(id)) |
| 1189 | return ata_id_u32(id, 57); |
| 1190 | else |
| 1191 | return id[1] * id[3] * id[6]; |
| 1192 | } |
| 1193 | } |
| 1194 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1195 | u64 ata_tf_to_lba48(const struct ata_taskfile *tf) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1196 | { |
| 1197 | u64 sectors = 0; |
| 1198 | |
| 1199 | sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40; |
| 1200 | sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32; |
| 1201 | sectors |= (tf->hob_lbal & 0xff) << 24; |
| 1202 | sectors |= (tf->lbah & 0xff) << 16; |
| 1203 | sectors |= (tf->lbam & 0xff) << 8; |
| 1204 | sectors |= (tf->lbal & 0xff); |
| 1205 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1206 | return sectors; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1207 | } |
| 1208 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1209 | u64 ata_tf_to_lba(const struct ata_taskfile *tf) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1210 | { |
| 1211 | u64 sectors = 0; |
| 1212 | |
| 1213 | sectors |= (tf->device & 0x0f) << 24; |
| 1214 | sectors |= (tf->lbah & 0xff) << 16; |
| 1215 | sectors |= (tf->lbam & 0xff) << 8; |
| 1216 | sectors |= (tf->lbal & 0xff); |
| 1217 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1218 | return sectors; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1219 | } |
| 1220 | |
| 1221 | /** |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1222 | * ata_read_native_max_address - Read native max address |
| 1223 | * @dev: target device |
| 1224 | * @max_sectors: out parameter for the result native max address |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1225 | * |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1226 | * Perform an LBA48 or LBA28 native size query upon the device in |
| 1227 | * question. |
| 1228 | * |
| 1229 | * RETURNS: |
| 1230 | * 0 on success, -EACCES if command is aborted by the drive. |
| 1231 | * -EIO on other errors. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1232 | */ |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1233 | static int ata_read_native_max_address(struct ata_device *dev, u64 *max_sectors) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1234 | { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1235 | unsigned int err_mask; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1236 | struct ata_taskfile tf; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1237 | int lba48 = ata_id_has_lba48(dev->id); |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1238 | |
| 1239 | ata_tf_init(dev, &tf); |
| 1240 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1241 | /* always clear all address registers */ |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1242 | tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1243 | |
| 1244 | if (lba48) { |
| 1245 | tf.command = ATA_CMD_READ_NATIVE_MAX_EXT; |
| 1246 | tf.flags |= ATA_TFLAG_LBA48; |
| 1247 | } else |
| 1248 | tf.command = ATA_CMD_READ_NATIVE_MAX; |
| 1249 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1250 | tf.protocol |= ATA_PROT_NODATA; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1251 | tf.device |= ATA_LBA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1252 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1253 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1254 | if (err_mask) { |
| 1255 | ata_dev_printk(dev, KERN_WARNING, "failed to read native " |
| 1256 | "max address (err_mask=0x%x)\n", err_mask); |
| 1257 | if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED)) |
| 1258 | return -EACCES; |
| 1259 | return -EIO; |
| 1260 | } |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1261 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1262 | if (lba48) |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1263 | *max_sectors = ata_tf_to_lba48(&tf) + 1; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1264 | else |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1265 | *max_sectors = ata_tf_to_lba(&tf) + 1; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1266 | if (dev->horkage & ATA_HORKAGE_HPA_SIZE) |
Alan Cox | 93328e1 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 1267 | (*max_sectors)--; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1268 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1269 | } |
| 1270 | |
| 1271 | /** |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1272 | * ata_set_max_sectors - Set max sectors |
| 1273 | * @dev: target device |
Randy Dunlap | 6b38d1d | 2007-05-01 17:35:55 -0700 | [diff] [blame] | 1274 | * @new_sectors: new max sectors value to set for the device |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1275 | * |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1276 | * Set max sectors of @dev to @new_sectors. |
| 1277 | * |
| 1278 | * RETURNS: |
| 1279 | * 0 on success, -EACCES if command is aborted or denied (due to |
| 1280 | * previous non-volatile SET_MAX) by the drive. -EIO on other |
| 1281 | * errors. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1282 | */ |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1283 | static int ata_set_max_sectors(struct ata_device *dev, u64 new_sectors) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1284 | { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1285 | unsigned int err_mask; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1286 | struct ata_taskfile tf; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1287 | int lba48 = ata_id_has_lba48(dev->id); |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1288 | |
| 1289 | new_sectors--; |
| 1290 | |
| 1291 | ata_tf_init(dev, &tf); |
| 1292 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1293 | tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1294 | |
| 1295 | if (lba48) { |
| 1296 | tf.command = ATA_CMD_SET_MAX_EXT; |
| 1297 | tf.flags |= ATA_TFLAG_LBA48; |
| 1298 | |
| 1299 | tf.hob_lbal = (new_sectors >> 24) & 0xff; |
| 1300 | tf.hob_lbam = (new_sectors >> 32) & 0xff; |
| 1301 | tf.hob_lbah = (new_sectors >> 40) & 0xff; |
Tejun Heo | 1e582ba | 2007-09-21 20:07:14 +0900 | [diff] [blame] | 1302 | } else { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1303 | tf.command = ATA_CMD_SET_MAX; |
| 1304 | |
Tejun Heo | 1e582ba | 2007-09-21 20:07:14 +0900 | [diff] [blame] | 1305 | tf.device |= (new_sectors >> 24) & 0xf; |
| 1306 | } |
| 1307 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1308 | tf.protocol |= ATA_PROT_NODATA; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1309 | tf.device |= ATA_LBA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1310 | |
| 1311 | tf.lbal = (new_sectors >> 0) & 0xff; |
| 1312 | tf.lbam = (new_sectors >> 8) & 0xff; |
| 1313 | tf.lbah = (new_sectors >> 16) & 0xff; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1314 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1315 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1316 | if (err_mask) { |
| 1317 | ata_dev_printk(dev, KERN_WARNING, "failed to set " |
| 1318 | "max address (err_mask=0x%x)\n", err_mask); |
| 1319 | if (err_mask == AC_ERR_DEV && |
| 1320 | (tf.feature & (ATA_ABORTED | ATA_IDNF))) |
| 1321 | return -EACCES; |
| 1322 | return -EIO; |
| 1323 | } |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1324 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1325 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1326 | } |
| 1327 | |
| 1328 | /** |
| 1329 | * ata_hpa_resize - Resize a device with an HPA set |
| 1330 | * @dev: Device to resize |
| 1331 | * |
| 1332 | * Read the size of an LBA28 or LBA48 disk with HPA features and resize |
| 1333 | * it if required to the full size of the media. The caller must check |
| 1334 | * the drive has the HPA feature set enabled. |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1335 | * |
| 1336 | * RETURNS: |
| 1337 | * 0 on success, -errno on failure. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1338 | */ |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1339 | static int ata_hpa_resize(struct ata_device *dev) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1340 | { |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1341 | struct ata_eh_context *ehc = &dev->link->eh_context; |
| 1342 | int print_info = ehc->i.flags & ATA_EHI_PRINTINFO; |
| 1343 | u64 sectors = ata_id_n_sectors(dev->id); |
| 1344 | u64 native_sectors; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1345 | int rc; |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 1346 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1347 | /* do we need to do it? */ |
| 1348 | if (dev->class != ATA_DEV_ATA || |
| 1349 | !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) || |
| 1350 | (dev->horkage & ATA_HORKAGE_BROKEN_HPA)) |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1351 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1352 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1353 | /* read native max address */ |
| 1354 | rc = ata_read_native_max_address(dev, &native_sectors); |
| 1355 | if (rc) { |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1356 | /* If device aborted the command or HPA isn't going to |
| 1357 | * be unlocked, skip HPA resizing. |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1358 | */ |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1359 | if (rc == -EACCES || !ata_ignore_hpa) { |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1360 | ata_dev_printk(dev, KERN_WARNING, "HPA support seems " |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1361 | "broken, skipping HPA handling\n"); |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1362 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1363 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1364 | /* we can continue if device aborted the command */ |
| 1365 | if (rc == -EACCES) |
| 1366 | rc = 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1367 | } |
Tejun Heo | 37301a5 | 2007-06-25 20:45:54 +0900 | [diff] [blame] | 1368 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1369 | return rc; |
| 1370 | } |
| 1371 | |
| 1372 | /* nothing to do? */ |
| 1373 | if (native_sectors <= sectors || !ata_ignore_hpa) { |
| 1374 | if (!print_info || native_sectors == sectors) |
| 1375 | return 0; |
| 1376 | |
| 1377 | if (native_sectors > sectors) |
| 1378 | ata_dev_printk(dev, KERN_INFO, |
| 1379 | "HPA detected: current %llu, native %llu\n", |
| 1380 | (unsigned long long)sectors, |
| 1381 | (unsigned long long)native_sectors); |
| 1382 | else if (native_sectors < sectors) |
| 1383 | ata_dev_printk(dev, KERN_WARNING, |
| 1384 | "native sectors (%llu) is smaller than " |
| 1385 | "sectors (%llu)\n", |
| 1386 | (unsigned long long)native_sectors, |
| 1387 | (unsigned long long)sectors); |
| 1388 | return 0; |
| 1389 | } |
| 1390 | |
| 1391 | /* let's unlock HPA */ |
| 1392 | rc = ata_set_max_sectors(dev, native_sectors); |
| 1393 | if (rc == -EACCES) { |
| 1394 | /* if device aborted the command, skip HPA resizing */ |
| 1395 | ata_dev_printk(dev, KERN_WARNING, "device aborted resize " |
| 1396 | "(%llu -> %llu), skipping HPA handling\n", |
| 1397 | (unsigned long long)sectors, |
| 1398 | (unsigned long long)native_sectors); |
| 1399 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; |
| 1400 | return 0; |
| 1401 | } else if (rc) |
| 1402 | return rc; |
| 1403 | |
| 1404 | /* re-read IDENTIFY data */ |
| 1405 | rc = ata_dev_reread_id(dev, 0); |
| 1406 | if (rc) { |
| 1407 | ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY " |
| 1408 | "data after HPA resizing\n"); |
| 1409 | return rc; |
| 1410 | } |
| 1411 | |
| 1412 | if (print_info) { |
| 1413 | u64 new_sectors = ata_id_n_sectors(dev->id); |
| 1414 | ata_dev_printk(dev, KERN_INFO, |
| 1415 | "HPA unlocked: %llu -> %llu, native %llu\n", |
| 1416 | (unsigned long long)sectors, |
| 1417 | (unsigned long long)new_sectors, |
| 1418 | (unsigned long long)native_sectors); |
| 1419 | } |
| 1420 | |
| 1421 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1422 | } |
| 1423 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1424 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | * ata_dump_id - IDENTIFY DEVICE info debugging output |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1426 | * @id: IDENTIFY DEVICE page to dump |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | * |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1428 | * Dump selected 16-bit words from the given IDENTIFY DEVICE |
| 1429 | * page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | * |
| 1431 | * LOCKING: |
| 1432 | * caller. |
| 1433 | */ |
| 1434 | |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1435 | static inline void ata_dump_id(const u16 *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | { |
| 1437 | DPRINTK("49==0x%04x " |
| 1438 | "53==0x%04x " |
| 1439 | "63==0x%04x " |
| 1440 | "64==0x%04x " |
| 1441 | "75==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1442 | id[49], |
| 1443 | id[53], |
| 1444 | id[63], |
| 1445 | id[64], |
| 1446 | id[75]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | DPRINTK("80==0x%04x " |
| 1448 | "81==0x%04x " |
| 1449 | "82==0x%04x " |
| 1450 | "83==0x%04x " |
| 1451 | "84==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1452 | id[80], |
| 1453 | id[81], |
| 1454 | id[82], |
| 1455 | id[83], |
| 1456 | id[84]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | DPRINTK("88==0x%04x " |
| 1458 | "93==0x%04x\n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1459 | id[88], |
| 1460 | id[93]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | } |
| 1462 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1463 | /** |
| 1464 | * ata_id_xfermask - Compute xfermask from the given IDENTIFY data |
| 1465 | * @id: IDENTIFY data to compute xfer mask from |
| 1466 | * |
| 1467 | * Compute the xfermask for this device. This is not as trivial |
| 1468 | * as it seems if we must consider early devices correctly. |
| 1469 | * |
| 1470 | * FIXME: pre IDE drive timing (do we care ?). |
| 1471 | * |
| 1472 | * LOCKING: |
| 1473 | * None. |
| 1474 | * |
| 1475 | * RETURNS: |
| 1476 | * Computed xfermask |
| 1477 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 1478 | unsigned long ata_id_xfermask(const u16 *id) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1479 | { |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 1480 | unsigned long pio_mask, mwdma_mask, udma_mask; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1481 | |
| 1482 | /* Usual case. Word 53 indicates word 64 is valid */ |
| 1483 | if (id[ATA_ID_FIELD_VALID] & (1 << 1)) { |
| 1484 | pio_mask = id[ATA_ID_PIO_MODES] & 0x03; |
| 1485 | pio_mask <<= 3; |
| 1486 | pio_mask |= 0x7; |
| 1487 | } else { |
| 1488 | /* If word 64 isn't valid then Word 51 high byte holds |
| 1489 | * the PIO timing number for the maximum. Turn it into |
| 1490 | * a mask. |
| 1491 | */ |
Lennert Buytenhek | 7a0f1c8 | 2007-01-29 13:28:47 +0100 | [diff] [blame] | 1492 | u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF; |
Alan Cox | 46767aeb | 2006-09-29 18:26:47 +0100 | [diff] [blame] | 1493 | if (mode < 5) /* Valid PIO range */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1494 | pio_mask = (2 << mode) - 1; |
Alan Cox | 46767aeb | 2006-09-29 18:26:47 +0100 | [diff] [blame] | 1495 | else |
| 1496 | pio_mask = 1; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1497 | |
| 1498 | /* But wait.. there's more. Design your standards by |
| 1499 | * committee and you too can get a free iordy field to |
| 1500 | * process. However its the speeds not the modes that |
| 1501 | * are supported... Note drivers using the timing API |
| 1502 | * will get this right anyway |
| 1503 | */ |
| 1504 | } |
| 1505 | |
| 1506 | mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07; |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 1507 | |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 1508 | if (ata_id_is_cfa(id)) { |
| 1509 | /* |
| 1510 | * Process compact flash extended modes |
| 1511 | */ |
| 1512 | int pio = id[163] & 0x7; |
| 1513 | int dma = (id[163] >> 3) & 7; |
| 1514 | |
| 1515 | if (pio) |
| 1516 | pio_mask |= (1 << 5); |
| 1517 | if (pio > 1) |
| 1518 | pio_mask |= (1 << 6); |
| 1519 | if (dma) |
| 1520 | mwdma_mask |= (1 << 3); |
| 1521 | if (dma > 1) |
| 1522 | mwdma_mask |= (1 << 4); |
| 1523 | } |
| 1524 | |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 1525 | udma_mask = 0; |
| 1526 | if (id[ATA_ID_FIELD_VALID] & (1 << 2)) |
| 1527 | udma_mask = id[ATA_ID_UDMA_MODES] & 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1528 | |
| 1529 | return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 1530 | } |
| 1531 | |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1532 | /** |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 1533 | * ata_pio_queue_task - Queue port_task |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1534 | * @ap: The ata_port to queue port_task for |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 1535 | * @fn: workqueue function to be scheduled |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1536 | * @data: data for @fn to use |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 1537 | * @delay: delay time for workqueue function |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1538 | * |
| 1539 | * Schedule @fn(@data) for execution after @delay jiffies using |
| 1540 | * port_task. There is one port_task per port and it's the |
| 1541 | * user(low level driver)'s responsibility to make sure that only |
| 1542 | * one task is active at any given time. |
| 1543 | * |
| 1544 | * libata core layer takes care of synchronization between |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 1545 | * port_task and EH. ata_pio_queue_task() may be ignored for EH |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1546 | * synchronization. |
| 1547 | * |
| 1548 | * LOCKING: |
| 1549 | * Inherited from caller. |
| 1550 | */ |
Tejun Heo | 624d5c5 | 2008-03-25 22:16:41 +0900 | [diff] [blame] | 1551 | void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay) |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1552 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1553 | ap->port_task_data = data; |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1554 | |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 1555 | /* may fail if ata_port_flush_task() in progress */ |
| 1556 | queue_delayed_work(ata_wq, &ap->port_task, delay); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1557 | } |
| 1558 | |
| 1559 | /** |
| 1560 | * ata_port_flush_task - Flush port_task |
| 1561 | * @ap: The ata_port to flush port_task for |
| 1562 | * |
| 1563 | * After this function completes, port_task is guranteed not to |
| 1564 | * be running or scheduled. |
| 1565 | * |
| 1566 | * LOCKING: |
| 1567 | * Kernel thread context (may sleep) |
| 1568 | */ |
| 1569 | void ata_port_flush_task(struct ata_port *ap) |
| 1570 | { |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1571 | DPRINTK("ENTER\n"); |
| 1572 | |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 1573 | cancel_rearming_delayed_work(&ap->port_task); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1574 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1575 | if (ata_msg_ctl(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 1576 | ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1577 | } |
| 1578 | |
Adrian Bunk | 7102d23 | 2007-01-04 00:09:36 +0100 | [diff] [blame] | 1579 | static void ata_qc_complete_internal(struct ata_queued_cmd *qc) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1580 | { |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1581 | struct completion *waiting = qc->private_data; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1582 | |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1583 | complete(waiting); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | /** |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1587 | * ata_exec_internal_sg - execute libata internal command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1588 | * @dev: Device to which the command is sent |
| 1589 | * @tf: Taskfile registers for the command and the result |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1590 | * @cdb: CDB for packet command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1591 | * @dma_dir: Data tranfer direction of the command |
Randy Dunlap | 5c1ad8b | 2007-10-18 14:12:26 -0700 | [diff] [blame] | 1592 | * @sgl: sg list for the data buffer of the command |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1593 | * @n_elem: Number of sg entries |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1594 | * @timeout: Timeout in msecs (0 for default) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1595 | * |
| 1596 | * Executes libata internal command with timeout. @tf contains |
| 1597 | * command on entry and result on return. Timeout and error |
| 1598 | * conditions are reported via return value. No recovery action |
| 1599 | * is taken after a command times out. It's caller's duty to |
| 1600 | * clean up after timeout. |
| 1601 | * |
| 1602 | * LOCKING: |
| 1603 | * None. Should be called with kernel context, might sleep. |
Tejun Heo | 551e888 | 2006-06-12 14:09:49 +0900 | [diff] [blame] | 1604 | * |
| 1605 | * RETURNS: |
| 1606 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1607 | */ |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1608 | unsigned ata_exec_internal_sg(struct ata_device *dev, |
| 1609 | struct ata_taskfile *tf, const u8 *cdb, |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1610 | int dma_dir, struct scatterlist *sgl, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1611 | unsigned int n_elem, unsigned long timeout) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1612 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1613 | struct ata_link *link = dev->link; |
| 1614 | struct ata_port *ap = link->ap; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1615 | u8 command = tf->command; |
| 1616 | struct ata_queued_cmd *qc; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1617 | unsigned int tag, preempted_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1618 | u32 preempted_sactive, preempted_qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1619 | int preempted_nr_active_links; |
Ingo Molnar | 60be6b9 | 2006-07-03 00:25:26 -0700 | [diff] [blame] | 1620 | DECLARE_COMPLETION_ONSTACK(wait); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1621 | unsigned long flags; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1622 | unsigned int err_mask; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1623 | int rc; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1624 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1625 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1626 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1627 | /* no internal command while frozen */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1628 | if (ap->pflags & ATA_PFLAG_FROZEN) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1629 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1630 | return AC_ERR_SYSTEM; |
| 1631 | } |
| 1632 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1633 | /* initialize internal qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1634 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1635 | /* XXX: Tag 0 is used for drivers with legacy EH as some |
| 1636 | * drivers choke if any other tag is given. This breaks |
| 1637 | * ata_tag_internal() test for those drivers. Don't use new |
| 1638 | * EH stuff without converting to it. |
| 1639 | */ |
| 1640 | if (ap->ops->error_handler) |
| 1641 | tag = ATA_TAG_INTERNAL; |
| 1642 | else |
| 1643 | tag = 0; |
| 1644 | |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 1645 | if (test_and_set_bit(tag, &ap->qc_allocated)) |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1646 | BUG(); |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 1647 | qc = __ata_qc_from_tag(ap, tag); |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1648 | |
| 1649 | qc->tag = tag; |
| 1650 | qc->scsicmd = NULL; |
| 1651 | qc->ap = ap; |
| 1652 | qc->dev = dev; |
| 1653 | ata_qc_reinit(qc); |
| 1654 | |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1655 | preempted_tag = link->active_tag; |
| 1656 | preempted_sactive = link->sactive; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1657 | preempted_qc_active = ap->qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1658 | preempted_nr_active_links = ap->nr_active_links; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1659 | link->active_tag = ATA_TAG_POISON; |
| 1660 | link->sactive = 0; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1661 | ap->qc_active = 0; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1662 | ap->nr_active_links = 0; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1663 | |
| 1664 | /* prepare & issue qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1665 | qc->tf = *tf; |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1666 | if (cdb) |
| 1667 | memcpy(qc->cdb, cdb, ATAPI_CDB_LEN); |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1668 | qc->flags |= ATA_QCFLAG_RESULT_TF; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1669 | qc->dma_dir = dma_dir; |
| 1670 | if (dma_dir != DMA_NONE) { |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1671 | unsigned int i, buflen = 0; |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1672 | struct scatterlist *sg; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1673 | |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1674 | for_each_sg(sgl, sg, n_elem, i) |
| 1675 | buflen += sg->length; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1676 | |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1677 | ata_sg_init(qc, sgl, n_elem); |
Brian King | 49c8042 | 2007-01-30 11:32:26 -0600 | [diff] [blame] | 1678 | qc->nbytes = buflen; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1679 | } |
| 1680 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1681 | qc->private_data = &wait; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1682 | qc->complete_fn = ata_qc_complete_internal; |
| 1683 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 1684 | ata_qc_issue(qc); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1685 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1686 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1687 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1688 | if (!timeout) |
| 1689 | timeout = ata_probe_timeout * 1000 / HZ; |
| 1690 | |
| 1691 | rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout)); |
Albert Lee | 41ade50 | 2006-03-14 11:19:04 +0800 | [diff] [blame] | 1692 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1693 | ata_port_flush_task(ap); |
| 1694 | |
| 1695 | if (!rc) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1696 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1697 | |
| 1698 | /* We're racing with irq here. If we lose, the |
| 1699 | * following test prevents us from completing the qc |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1700 | * twice. If we win, the port is frozen and will be |
| 1701 | * cleaned up by ->post_internal_cmd(). |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1702 | */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1703 | if (qc->flags & ATA_QCFLAG_ACTIVE) { |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1704 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 1705 | |
| 1706 | if (ap->ops->error_handler) |
| 1707 | ata_port_freeze(ap); |
| 1708 | else |
| 1709 | ata_qc_complete(qc); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1710 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1711 | if (ata_msg_warn(ap)) |
| 1712 | ata_dev_printk(dev, KERN_WARNING, |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1713 | "qc timeout (cmd 0x%x)\n", command); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1714 | } |
| 1715 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1716 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1717 | } |
| 1718 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1719 | /* do post_internal_cmd */ |
| 1720 | if (ap->ops->post_internal_cmd) |
| 1721 | ap->ops->post_internal_cmd(qc); |
| 1722 | |
Tejun Heo | a51d644 | 2007-03-20 15:24:11 +0900 | [diff] [blame] | 1723 | /* perform minimal error analysis */ |
| 1724 | if (qc->flags & ATA_QCFLAG_FAILED) { |
| 1725 | if (qc->result_tf.command & (ATA_ERR | ATA_DF)) |
| 1726 | qc->err_mask |= AC_ERR_DEV; |
| 1727 | |
| 1728 | if (!qc->err_mask) |
| 1729 | qc->err_mask |= AC_ERR_OTHER; |
| 1730 | |
| 1731 | if (qc->err_mask & ~AC_ERR_OTHER) |
| 1732 | qc->err_mask &= ~AC_ERR_OTHER; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1733 | } |
| 1734 | |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1735 | /* finish up */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1736 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1737 | |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1738 | *tf = qc->result_tf; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1739 | err_mask = qc->err_mask; |
| 1740 | |
| 1741 | ata_qc_free(qc); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1742 | link->active_tag = preempted_tag; |
| 1743 | link->sactive = preempted_sactive; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1744 | ap->qc_active = preempted_qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1745 | ap->nr_active_links = preempted_nr_active_links; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1746 | |
Tejun Heo | 1f7dd3e | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1747 | /* XXX - Some LLDDs (sata_mv) disable port on command failure. |
| 1748 | * Until those drivers are fixed, we detect the condition |
| 1749 | * here, fail the command with AC_ERR_SYSTEM and reenable the |
| 1750 | * port. |
| 1751 | * |
| 1752 | * Note that this doesn't change any behavior as internal |
| 1753 | * command failure results in disabling the device in the |
| 1754 | * higher layer for LLDDs without new reset/EH callbacks. |
| 1755 | * |
| 1756 | * Kill the following code as soon as those drivers are fixed. |
| 1757 | */ |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1758 | if (ap->flags & ATA_FLAG_DISABLED) { |
Tejun Heo | 1f7dd3e | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1759 | err_mask |= AC_ERR_SYSTEM; |
| 1760 | ata_port_probe(ap); |
| 1761 | } |
| 1762 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1763 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1764 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1765 | return err_mask; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1766 | } |
| 1767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | /** |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 1769 | * ata_exec_internal - execute libata internal command |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1770 | * @dev: Device to which the command is sent |
| 1771 | * @tf: Taskfile registers for the command and the result |
| 1772 | * @cdb: CDB for packet command |
| 1773 | * @dma_dir: Data tranfer direction of the command |
| 1774 | * @buf: Data buffer of the command |
| 1775 | * @buflen: Length of data buffer |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1776 | * @timeout: Timeout in msecs (0 for default) |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1777 | * |
| 1778 | * Wrapper around ata_exec_internal_sg() which takes simple |
| 1779 | * buffer instead of sg list. |
| 1780 | * |
| 1781 | * LOCKING: |
| 1782 | * None. Should be called with kernel context, might sleep. |
| 1783 | * |
| 1784 | * RETURNS: |
| 1785 | * Zero on success, AC_ERR_* mask on failure |
| 1786 | */ |
| 1787 | unsigned ata_exec_internal(struct ata_device *dev, |
| 1788 | struct ata_taskfile *tf, const u8 *cdb, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1789 | int dma_dir, void *buf, unsigned int buflen, |
| 1790 | unsigned long timeout) |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1791 | { |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 1792 | struct scatterlist *psg = NULL, sg; |
| 1793 | unsigned int n_elem = 0; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1794 | |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 1795 | if (dma_dir != DMA_NONE) { |
| 1796 | WARN_ON(!buf); |
| 1797 | sg_init_one(&sg, buf, buflen); |
| 1798 | psg = &sg; |
| 1799 | n_elem++; |
| 1800 | } |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1801 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1802 | return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem, |
| 1803 | timeout); |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1804 | } |
| 1805 | |
| 1806 | /** |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1807 | * ata_do_simple_cmd - execute simple internal command |
| 1808 | * @dev: Device to which the command is sent |
| 1809 | * @cmd: Opcode to execute |
| 1810 | * |
| 1811 | * Execute a 'simple' command, that only consists of the opcode |
| 1812 | * 'cmd' itself, without filling any other registers |
| 1813 | * |
| 1814 | * LOCKING: |
| 1815 | * Kernel thread context (may sleep). |
| 1816 | * |
| 1817 | * RETURNS: |
| 1818 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1819 | */ |
Tejun Heo | 77b08fb | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1820 | unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd) |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1821 | { |
| 1822 | struct ata_taskfile tf; |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1823 | |
| 1824 | ata_tf_init(dev, &tf); |
| 1825 | |
| 1826 | tf.command = cmd; |
| 1827 | tf.flags |= ATA_TFLAG_DEVICE; |
| 1828 | tf.protocol = ATA_PROT_NODATA; |
| 1829 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1830 | return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1831 | } |
| 1832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | /** |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1834 | * ata_pio_need_iordy - check if iordy needed |
| 1835 | * @adev: ATA device |
| 1836 | * |
| 1837 | * Check if the current speed of the device requires IORDY. Used |
| 1838 | * by various controllers for chip configuration. |
| 1839 | */ |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 1840 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1841 | unsigned int ata_pio_need_iordy(const struct ata_device *adev) |
| 1842 | { |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1843 | /* Controller doesn't support IORDY. Probably a pointless check |
| 1844 | as the caller should know this */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1845 | if (adev->link->ap->flags & ATA_FLAG_NO_IORDY) |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1846 | return 0; |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1847 | /* PIO3 and higher it is mandatory */ |
| 1848 | if (adev->pio_mode > XFER_PIO_2) |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1849 | return 1; |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1850 | /* We turn it on when possible */ |
| 1851 | if (ata_id_has_iordy(adev->id)) |
| 1852 | return 1; |
| 1853 | return 0; |
| 1854 | } |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 1855 | |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1856 | /** |
| 1857 | * ata_pio_mask_no_iordy - Return the non IORDY mask |
| 1858 | * @adev: ATA device |
| 1859 | * |
| 1860 | * Compute the highest mode possible if we are not using iordy. Return |
| 1861 | * -1 if no iordy mode is available. |
| 1862 | */ |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 1863 | |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1864 | static u32 ata_pio_mask_no_iordy(const struct ata_device *adev) |
| 1865 | { |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1866 | /* If we have no drive specific rule, then PIO 2 is non IORDY */ |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1867 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */ |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1868 | u16 pio = adev->id[ATA_ID_EIDE_PIO]; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1869 | /* Is the speed faster than the drive allows non IORDY ? */ |
| 1870 | if (pio) { |
| 1871 | /* This is cycle times not frequency - watch the logic! */ |
| 1872 | if (pio > 240) /* PIO2 is 240nS per cycle */ |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1873 | return 3 << ATA_SHIFT_PIO; |
| 1874 | return 7 << ATA_SHIFT_PIO; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1875 | } |
| 1876 | } |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1877 | return 3 << ATA_SHIFT_PIO; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1878 | } |
| 1879 | |
| 1880 | /** |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1881 | * ata_dev_read_id - Read ID data from the specified device |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1882 | * @dev: target device |
| 1883 | * @p_class: pointer to class of the target device (may be changed) |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 1884 | * @flags: ATA_READID_* flags |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 1885 | * @id: buffer to read IDENTIFY data into |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1886 | * |
| 1887 | * Read ID data from the specified device. ATA_CMD_ID_ATA is |
| 1888 | * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 1889 | * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS |
| 1890 | * for pre-ATA4 drives. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1891 | * |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 1892 | * FIXME: ATA_CMD_ID_ATA is optional for early drives and right |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1893 | * now we abort if we hit that case. |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 1894 | * |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1895 | * LOCKING: |
| 1896 | * Kernel thread context (may sleep) |
| 1897 | * |
| 1898 | * RETURNS: |
| 1899 | * 0 on success, -errno otherwise. |
| 1900 | */ |
Tejun Heo | a9beec9 | 2006-05-31 18:27:44 +0900 | [diff] [blame] | 1901 | int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class, |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 1902 | unsigned int flags, u16 *id) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1903 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1904 | struct ata_port *ap = dev->link->ap; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1905 | unsigned int class = *p_class; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1906 | struct ata_taskfile tf; |
| 1907 | unsigned int err_mask = 0; |
| 1908 | const char *reason; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 1909 | int may_fallback = 1, tried_spinup = 0; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1910 | int rc; |
| 1911 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1912 | if (ata_msg_ctl(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 1913 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1914 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1915 | retry: |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1916 | ata_tf_init(dev, &tf); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1917 | |
| 1918 | switch (class) { |
| 1919 | case ATA_DEV_ATA: |
| 1920 | tf.command = ATA_CMD_ID_ATA; |
| 1921 | break; |
| 1922 | case ATA_DEV_ATAPI: |
| 1923 | tf.command = ATA_CMD_ID_ATAPI; |
| 1924 | break; |
| 1925 | default: |
| 1926 | rc = -ENODEV; |
| 1927 | reason = "unsupported class"; |
| 1928 | goto err_out; |
| 1929 | } |
| 1930 | |
| 1931 | tf.protocol = ATA_PROT_PIO; |
Tejun Heo | 81afe89 | 2007-02-07 12:37:41 -0800 | [diff] [blame] | 1932 | |
| 1933 | /* Some devices choke if TF registers contain garbage. Make |
| 1934 | * sure those are properly initialized. |
| 1935 | */ |
| 1936 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 1937 | |
| 1938 | /* Device presence detection is unreliable on some |
| 1939 | * controllers. Always poll IDENTIFY if available. |
| 1940 | */ |
| 1941 | tf.flags |= ATA_TFLAG_POLLING; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1942 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 1943 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1944 | id, sizeof(id[0]) * ATA_ID_WORDS, 0); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1945 | if (err_mask) { |
Tejun Heo | 800b399 | 2006-12-03 21:34:13 +0900 | [diff] [blame] | 1946 | if (err_mask & AC_ERR_NODEV_HINT) { |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 1947 | ata_dev_printk(dev, KERN_DEBUG, |
| 1948 | "NODEV after polling detection\n"); |
Tejun Heo | 55a8e2c | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 1949 | return -ENOENT; |
| 1950 | } |
| 1951 | |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 1952 | if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) { |
| 1953 | /* Device or controller might have reported |
| 1954 | * the wrong device class. Give a shot at the |
| 1955 | * other IDENTIFY if the current one is |
| 1956 | * aborted by the device. |
| 1957 | */ |
| 1958 | if (may_fallback) { |
| 1959 | may_fallback = 0; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 1960 | |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 1961 | if (class == ATA_DEV_ATA) |
| 1962 | class = ATA_DEV_ATAPI; |
| 1963 | else |
| 1964 | class = ATA_DEV_ATA; |
| 1965 | goto retry; |
| 1966 | } |
| 1967 | |
| 1968 | /* Control reaches here iff the device aborted |
| 1969 | * both flavors of IDENTIFYs which happens |
| 1970 | * sometimes with phantom devices. |
| 1971 | */ |
| 1972 | ata_dev_printk(dev, KERN_DEBUG, |
| 1973 | "both IDENTIFYs aborted, assuming NODEV\n"); |
| 1974 | return -ENOENT; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 1975 | } |
| 1976 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1977 | rc = -EIO; |
| 1978 | reason = "I/O error"; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1979 | goto err_out; |
| 1980 | } |
| 1981 | |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 1982 | /* Falling back doesn't make sense if ID data was read |
| 1983 | * successfully at least once. |
| 1984 | */ |
| 1985 | may_fallback = 0; |
| 1986 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1987 | swap_buf_le16(id, ATA_ID_WORDS); |
| 1988 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1989 | /* sanity check */ |
Tejun Heo | a4f5749 | 2006-09-12 20:35:49 -0700 | [diff] [blame] | 1990 | rc = -EINVAL; |
Alan Cox | 6070068 | 2007-06-07 16:13:55 +0100 | [diff] [blame] | 1991 | reason = "device reports invalid type"; |
Tejun Heo | a4f5749 | 2006-09-12 20:35:49 -0700 | [diff] [blame] | 1992 | |
| 1993 | if (class == ATA_DEV_ATA) { |
| 1994 | if (!ata_id_is_ata(id) && !ata_id_is_cfa(id)) |
| 1995 | goto err_out; |
| 1996 | } else { |
| 1997 | if (ata_id_is_ata(id)) |
| 1998 | goto err_out; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 1999 | } |
| 2000 | |
Mark Lord | 169439c | 2007-04-17 18:26:07 -0400 | [diff] [blame] | 2001 | if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) { |
| 2002 | tried_spinup = 1; |
| 2003 | /* |
| 2004 | * Drive powered-up in standby mode, and requires a specific |
| 2005 | * SET_FEATURES spin-up subcommand before it will accept |
| 2006 | * anything other than the original IDENTIFY command. |
| 2007 | */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 2008 | err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0); |
Ryan Power | fb0582f9 | 2007-08-10 13:59:35 -0700 | [diff] [blame] | 2009 | if (err_mask && id[2] != 0x738c) { |
Mark Lord | 169439c | 2007-04-17 18:26:07 -0400 | [diff] [blame] | 2010 | rc = -EIO; |
| 2011 | reason = "SPINUP failed"; |
| 2012 | goto err_out; |
| 2013 | } |
| 2014 | /* |
| 2015 | * If the drive initially returned incomplete IDENTIFY info, |
| 2016 | * we now must reissue the IDENTIFY command. |
| 2017 | */ |
| 2018 | if (id[2] == 0x37c8) |
| 2019 | goto retry; |
| 2020 | } |
| 2021 | |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2022 | if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) { |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2023 | /* |
| 2024 | * The exact sequence expected by certain pre-ATA4 drives is: |
| 2025 | * SRST RESET |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2026 | * IDENTIFY (optional in early ATA) |
| 2027 | * INITIALIZE DEVICE PARAMETERS (later IDE and ATA) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2028 | * anything else.. |
| 2029 | * Some drives were very specific about that exact sequence. |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2030 | * |
| 2031 | * Note that ATA4 says lba is mandatory so the second check |
| 2032 | * shoud never trigger. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2033 | */ |
| 2034 | if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2035 | err_mask = ata_dev_init_params(dev, id[3], id[6]); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2036 | if (err_mask) { |
| 2037 | rc = -EIO; |
| 2038 | reason = "INIT_DEV_PARAMS failed"; |
| 2039 | goto err_out; |
| 2040 | } |
| 2041 | |
| 2042 | /* current CHS translation info (id[53-58]) might be |
| 2043 | * changed. reread the identify device info. |
| 2044 | */ |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2045 | flags &= ~ATA_READID_POSTRESET; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2046 | goto retry; |
| 2047 | } |
| 2048 | } |
| 2049 | |
| 2050 | *p_class = class; |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2051 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2052 | return 0; |
| 2053 | |
| 2054 | err_out: |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2055 | if (ata_msg_warn(ap)) |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2056 | ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY " |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2057 | "(%s, err_mask=0x%x)\n", reason, err_mask); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2058 | return rc; |
| 2059 | } |
| 2060 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2061 | static inline u8 ata_dev_knobble(struct ata_device *dev) |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2062 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2063 | struct ata_port *ap = dev->link->ap; |
| 2064 | return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id))); |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2065 | } |
| 2066 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2067 | static void ata_dev_config_ncq(struct ata_device *dev, |
| 2068 | char *desc, size_t desc_sz) |
| 2069 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2070 | struct ata_port *ap = dev->link->ap; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2071 | int hdepth = 0, ddepth = ata_id_queue_depth(dev->id); |
| 2072 | |
| 2073 | if (!ata_id_has_ncq(dev->id)) { |
| 2074 | desc[0] = '\0'; |
| 2075 | return; |
| 2076 | } |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2077 | if (dev->horkage & ATA_HORKAGE_NONCQ) { |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 2078 | snprintf(desc, desc_sz, "NCQ (not used)"); |
| 2079 | return; |
| 2080 | } |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2081 | if (ap->flags & ATA_FLAG_NCQ) { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2082 | hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2083 | dev->flags |= ATA_DFLAG_NCQ; |
| 2084 | } |
| 2085 | |
| 2086 | if (hdepth >= ddepth) |
| 2087 | snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth); |
| 2088 | else |
| 2089 | snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth); |
| 2090 | } |
| 2091 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2092 | /** |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2093 | * ata_dev_configure - Configure the specified ATA/ATAPI device |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2094 | * @dev: Target device to configure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | * |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2096 | * Configure @dev according to @dev->id. Generic and low-level |
| 2097 | * driver specific fixups are also applied. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | * |
| 2099 | * LOCKING: |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2100 | * Kernel thread context (may sleep) |
| 2101 | * |
| 2102 | * RETURNS: |
| 2103 | * 0 on success, -errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 | */ |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 2105 | int ata_dev_configure(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2107 | struct ata_port *ap = dev->link->ap; |
| 2108 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | 6746544 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 2109 | int print_info = ehc->i.flags & ATA_EHI_PRINTINFO; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2110 | const u16 *id = dev->id; |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 2111 | unsigned long xfer_mask; |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2112 | char revbuf[7]; /* XYZ-99\0 */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2113 | char fwrevbuf[ATA_ID_FW_REV_LEN+1]; |
| 2114 | char modelbuf[ATA_ID_PROD_LEN+1]; |
Brian King | e6d902a | 2006-06-28 08:30:31 -0500 | [diff] [blame] | 2115 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2117 | if (!ata_dev_enabled(dev) && ata_msg_info(ap)) { |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 2118 | ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n", |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2119 | __func__); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2120 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | } |
| 2122 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2123 | if (ata_msg_probe(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2124 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2126 | /* set horkage */ |
| 2127 | dev->horkage |= ata_dev_blacklisted(dev); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 2128 | ata_force_horkage(dev); |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2129 | |
Tejun Heo | 6746544 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 2130 | /* let ACPI work its magic */ |
| 2131 | rc = ata_acpi_on_devcfg(dev); |
| 2132 | if (rc) |
| 2133 | return rc; |
Kristen Carlson Accardi | 08573a8 | 2006-11-10 16:14:47 -0800 | [diff] [blame] | 2134 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 2135 | /* massage HPA, do it early as it might change IDENTIFY data */ |
| 2136 | rc = ata_hpa_resize(dev); |
| 2137 | if (rc) |
| 2138 | return rc; |
| 2139 | |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 2140 | /* print device capabilities */ |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2141 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2142 | ata_dev_printk(dev, KERN_DEBUG, |
| 2143 | "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x " |
| 2144 | "85:%04x 86:%04x 87:%04x 88:%04x\n", |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2145 | __func__, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2146 | id[49], id[82], id[83], id[84], |
| 2147 | id[85], id[86], id[87], id[88]); |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 2148 | |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2149 | /* initialize to-be-configured parameters */ |
Tejun Heo | ea1dd4e | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2150 | dev->flags &= ~ATA_DFLAG_CFG_MASK; |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2151 | dev->max_sectors = 0; |
| 2152 | dev->cdb_len = 0; |
| 2153 | dev->n_sectors = 0; |
| 2154 | dev->cylinders = 0; |
| 2155 | dev->heads = 0; |
| 2156 | dev->sectors = 0; |
| 2157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | /* |
| 2159 | * common ATA, ATAPI feature tests |
| 2160 | */ |
| 2161 | |
Tejun Heo | ff8854b | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 2162 | /* find max transfer mode; for printk only */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2163 | xfer_mask = ata_id_xfermask(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2165 | if (ata_msg_probe(ap)) |
| 2166 | ata_dump_id(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2168 | /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */ |
| 2169 | ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV, |
| 2170 | sizeof(fwrevbuf)); |
| 2171 | |
| 2172 | ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD, |
| 2173 | sizeof(modelbuf)); |
| 2174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | /* ATA-specific feature tests */ |
| 2176 | if (dev->class == ATA_DEV_ATA) { |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2177 | if (ata_id_is_cfa(id)) { |
| 2178 | if (id[162] & 1) /* CPRM may make this media unusable */ |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 2179 | ata_dev_printk(dev, KERN_WARNING, |
| 2180 | "supports DRM functions and may " |
| 2181 | "not be fully accessable.\n"); |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2182 | snprintf(revbuf, 7, "CFA"); |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 2183 | } else { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2184 | snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id)); |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 2185 | /* Warn the user if the device has TPM extensions */ |
| 2186 | if (ata_id_has_tpm(id)) |
| 2187 | ata_dev_printk(dev, KERN_WARNING, |
| 2188 | "supports DRM functions and may " |
| 2189 | "not be fully accessable.\n"); |
| 2190 | } |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2191 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2192 | dev->n_sectors = ata_id_n_sectors(id); |
Tejun Heo | 2940740 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 2193 | |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2194 | if (dev->id[59] & 0x100) |
| 2195 | dev->multi_count = dev->id[59] & 0xff; |
| 2196 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2197 | if (ata_id_has_lba(id)) { |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2198 | const char *lba_desc; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2199 | char ncq_desc[20]; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2200 | |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2201 | lba_desc = "LBA"; |
| 2202 | dev->flags |= ATA_DFLAG_LBA; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2203 | if (ata_id_has_lba48(id)) { |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2204 | dev->flags |= ATA_DFLAG_LBA48; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2205 | lba_desc = "LBA48"; |
Tejun Heo | 6fc49ad | 2006-11-11 20:10:45 +0900 | [diff] [blame] | 2206 | |
| 2207 | if (dev->n_sectors >= (1UL << 28) && |
| 2208 | ata_id_has_flush_ext(id)) |
| 2209 | dev->flags |= ATA_DFLAG_FLUSH_EXT; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2210 | } |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2211 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2212 | /* config NCQ */ |
| 2213 | ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc)); |
| 2214 | |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2215 | /* print device info to dmesg */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2216 | if (ata_msg_drv(ap) && print_info) { |
| 2217 | ata_dev_printk(dev, KERN_INFO, |
| 2218 | "%s: %s, %s, max %s\n", |
| 2219 | revbuf, modelbuf, fwrevbuf, |
| 2220 | ata_mode_string(xfer_mask)); |
| 2221 | ata_dev_printk(dev, KERN_INFO, |
| 2222 | "%Lu sectors, multi %u: %s %s\n", |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2223 | (unsigned long long)dev->n_sectors, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2224 | dev->multi_count, lba_desc, ncq_desc); |
| 2225 | } |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2226 | } else { |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2227 | /* CHS */ |
| 2228 | |
| 2229 | /* Default translation */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2230 | dev->cylinders = id[1]; |
| 2231 | dev->heads = id[3]; |
| 2232 | dev->sectors = id[6]; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2233 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2234 | if (ata_id_current_chs_valid(id)) { |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2235 | /* Current CHS translation is valid. */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2236 | dev->cylinders = id[54]; |
| 2237 | dev->heads = id[55]; |
| 2238 | dev->sectors = id[56]; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2239 | } |
| 2240 | |
| 2241 | /* print device info to dmesg */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2242 | if (ata_msg_drv(ap) && print_info) { |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2243 | ata_dev_printk(dev, KERN_INFO, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2244 | "%s: %s, %s, max %s\n", |
| 2245 | revbuf, modelbuf, fwrevbuf, |
| 2246 | ata_mode_string(xfer_mask)); |
Jeff Garzik | a84471f | 2007-02-26 05:51:33 -0500 | [diff] [blame] | 2247 | ata_dev_printk(dev, KERN_INFO, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2248 | "%Lu sectors, multi %u, CHS %u/%u/%u\n", |
| 2249 | (unsigned long long)dev->n_sectors, |
| 2250 | dev->multi_count, dev->cylinders, |
| 2251 | dev->heads, dev->sectors); |
| 2252 | } |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 2253 | } |
| 2254 | |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 2255 | dev->cdb_len = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | } |
| 2257 | |
| 2258 | /* ATAPI-specific feature tests */ |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 2259 | else if (dev->class == ATA_DEV_ATAPI) { |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2260 | const char *cdb_intr_string = ""; |
| 2261 | const char *atapi_an_string = ""; |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2262 | const char *dma_dir_string = ""; |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2263 | u32 sntf; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2264 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2265 | rc = atapi_cdb_len(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | if ((rc < 12) || (rc > ATAPI_CDB_LEN)) { |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2267 | if (ata_msg_warn(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2268 | ata_dev_printk(dev, KERN_WARNING, |
| 2269 | "unsupported CDB len\n"); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2270 | rc = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | goto err_out_nosup; |
| 2272 | } |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 2273 | dev->cdb_len = (unsigned int) rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2275 | /* Enable ATAPI AN if both the host and device have |
| 2276 | * the support. If PMP is attached, SNTF is required |
| 2277 | * to enable ATAPI AN to discern between PHY status |
| 2278 | * changed notifications and ATAPI ANs. |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2279 | */ |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2280 | if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) && |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 2281 | (!sata_pmp_attached(ap) || |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2282 | sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) { |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2283 | unsigned int err_mask; |
| 2284 | |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2285 | /* issue SET feature command to turn this on */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 2286 | err_mask = ata_dev_set_feature(dev, |
| 2287 | SETFEATURES_SATA_ENABLE, SATA_AN); |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2288 | if (err_mask) |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2289 | ata_dev_printk(dev, KERN_ERR, |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2290 | "failed to enable ATAPI AN " |
| 2291 | "(err_mask=0x%x)\n", err_mask); |
| 2292 | else { |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2293 | dev->flags |= ATA_DFLAG_AN; |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2294 | atapi_an_string = ", ATAPI AN"; |
| 2295 | } |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2296 | } |
| 2297 | |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2298 | if (ata_id_cdb_intr(dev->id)) { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 2299 | dev->flags |= ATA_DFLAG_CDB_INTR; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2300 | cdb_intr_string = ", CDB intr"; |
| 2301 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 2302 | |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2303 | if (atapi_dmadir || atapi_id_dmadir(dev->id)) { |
| 2304 | dev->flags |= ATA_DFLAG_DMADIR; |
| 2305 | dma_dir_string = ", DMADIR"; |
| 2306 | } |
| 2307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | /* print device info to dmesg */ |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 2309 | if (ata_msg_drv(ap) && print_info) |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2310 | ata_dev_printk(dev, KERN_INFO, |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2311 | "ATAPI: %s, %s, max %s%s%s%s\n", |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2312 | modelbuf, fwrevbuf, |
Tejun Heo | 12436c3 | 2006-05-15 20:59:15 +0900 | [diff] [blame] | 2313 | ata_mode_string(xfer_mask), |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2314 | cdb_intr_string, atapi_an_string, |
| 2315 | dma_dir_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | } |
| 2317 | |
Tejun Heo | 914ed35 | 2006-11-01 18:39:55 +0900 | [diff] [blame] | 2318 | /* determine max_sectors */ |
| 2319 | dev->max_sectors = ATA_MAX_SECTORS; |
| 2320 | if (dev->flags & ATA_DFLAG_LBA48) |
| 2321 | dev->max_sectors = ATA_MAX_SECTORS_LBA48; |
| 2322 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 2323 | if (!(dev->horkage & ATA_HORKAGE_IPM)) { |
| 2324 | if (ata_id_has_hipm(dev->id)) |
| 2325 | dev->flags |= ATA_DFLAG_HIPM; |
| 2326 | if (ata_id_has_dipm(dev->id)) |
| 2327 | dev->flags |= ATA_DFLAG_DIPM; |
| 2328 | } |
| 2329 | |
Alan Cox | c5038fc | 2007-10-25 14:21:16 +0100 | [diff] [blame] | 2330 | /* Limit PATA drive on SATA cable bridge transfers to udma5, |
| 2331 | 200 sectors */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2332 | if (ata_dev_knobble(dev)) { |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 2333 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2334 | ata_dev_printk(dev, KERN_INFO, |
| 2335 | "applying bridge limits\n"); |
Tejun Heo | 5a52913 | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 2336 | dev->udma_mask &= ATA_UDMA5; |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2337 | dev->max_sectors = ATA_MAX_SECTORS; |
| 2338 | } |
| 2339 | |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2340 | if ((dev->class == ATA_DEV_ATAPI) && |
Albert Lee | f442cd8 | 2007-11-15 10:35:47 +0900 | [diff] [blame] | 2341 | (atapi_command_packet_set(id) == TYPE_TAPE)) { |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2342 | dev->max_sectors = ATA_MAX_SECTORS_TAPE; |
Albert Lee | f442cd8 | 2007-11-15 10:35:47 +0900 | [diff] [blame] | 2343 | dev->horkage |= ATA_HORKAGE_STUCK_ERR; |
| 2344 | } |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2345 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2346 | if (dev->horkage & ATA_HORKAGE_MAX_SEC_128) |
Tejun Heo | 03ec52d | 2007-04-12 13:38:11 +0900 | [diff] [blame] | 2347 | dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128, |
| 2348 | dev->max_sectors); |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 2349 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 2350 | if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) { |
| 2351 | dev->horkage |= ATA_HORKAGE_IPM; |
| 2352 | |
| 2353 | /* reset link pm_policy for this port to no pm */ |
| 2354 | ap->pm_policy = MAX_PERFORMANCE; |
| 2355 | } |
| 2356 | |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2357 | if (ap->ops->dev_config) |
Alan | cd0d3bb | 2007-03-02 00:56:15 +0000 | [diff] [blame] | 2358 | ap->ops->dev_config(dev); |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2359 | |
Alan Cox | c5038fc | 2007-10-25 14:21:16 +0100 | [diff] [blame] | 2360 | if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) { |
| 2361 | /* Let the user know. We don't want to disallow opens for |
| 2362 | rescue purposes, or in case the vendor is just a blithering |
| 2363 | idiot. Do this after the dev_config call as some controllers |
| 2364 | with buggy firmware may want to avoid reporting false device |
| 2365 | bugs */ |
| 2366 | |
| 2367 | if (print_info) { |
| 2368 | ata_dev_printk(dev, KERN_WARNING, |
| 2369 | "Drive reports diagnostics failure. This may indicate a drive\n"); |
| 2370 | ata_dev_printk(dev, KERN_WARNING, |
| 2371 | "fault or invalid emulation. Contact drive vendor for information.\n"); |
| 2372 | } |
| 2373 | } |
| 2374 | |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2375 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2376 | |
| 2377 | err_out_nosup: |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2378 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2379 | ata_dev_printk(dev, KERN_DEBUG, |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2380 | "%s: EXIT, err\n", __func__); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2381 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | } |
| 2383 | |
| 2384 | /** |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2385 | * ata_cable_40wire - return 40 wire cable type |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2386 | * @ap: port |
| 2387 | * |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2388 | * Helper method for drivers which want to hardwire 40 wire cable |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2389 | * detection. |
| 2390 | */ |
| 2391 | |
| 2392 | int ata_cable_40wire(struct ata_port *ap) |
| 2393 | { |
| 2394 | return ATA_CBL_PATA40; |
| 2395 | } |
| 2396 | |
| 2397 | /** |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2398 | * ata_cable_80wire - return 80 wire cable type |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2399 | * @ap: port |
| 2400 | * |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2401 | * Helper method for drivers which want to hardwire 80 wire cable |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2402 | * detection. |
| 2403 | */ |
| 2404 | |
| 2405 | int ata_cable_80wire(struct ata_port *ap) |
| 2406 | { |
| 2407 | return ATA_CBL_PATA80; |
| 2408 | } |
| 2409 | |
| 2410 | /** |
| 2411 | * ata_cable_unknown - return unknown PATA cable. |
| 2412 | * @ap: port |
| 2413 | * |
| 2414 | * Helper method for drivers which have no PATA cable detection. |
| 2415 | */ |
| 2416 | |
| 2417 | int ata_cable_unknown(struct ata_port *ap) |
| 2418 | { |
| 2419 | return ATA_CBL_PATA_UNK; |
| 2420 | } |
| 2421 | |
| 2422 | /** |
Tejun Heo | c88f90c | 2007-11-27 19:43:48 +0900 | [diff] [blame] | 2423 | * ata_cable_ignore - return ignored PATA cable. |
| 2424 | * @ap: port |
| 2425 | * |
| 2426 | * Helper method for drivers which don't use cable type to limit |
| 2427 | * transfer mode. |
| 2428 | */ |
| 2429 | int ata_cable_ignore(struct ata_port *ap) |
| 2430 | { |
| 2431 | return ATA_CBL_PATA_IGN; |
| 2432 | } |
| 2433 | |
| 2434 | /** |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2435 | * ata_cable_sata - return SATA cable type |
| 2436 | * @ap: port |
| 2437 | * |
| 2438 | * Helper method for drivers which have SATA cables |
| 2439 | */ |
| 2440 | |
| 2441 | int ata_cable_sata(struct ata_port *ap) |
| 2442 | { |
| 2443 | return ATA_CBL_SATA; |
| 2444 | } |
| 2445 | |
| 2446 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2447 | * ata_bus_probe - Reset and probe ATA bus |
| 2448 | * @ap: Bus to probe |
| 2449 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2450 | * Master ATA bus probing function. Initiates a hardware-dependent |
| 2451 | * bus reset, then attempts to identify any devices found on |
| 2452 | * the bus. |
| 2453 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2455 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | * |
| 2457 | * RETURNS: |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2458 | * Zero on success, negative errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | */ |
| 2460 | |
Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 2461 | int ata_bus_probe(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | { |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2463 | unsigned int classes[ATA_MAX_DEVICES]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2464 | int tries[ATA_MAX_DEVICES]; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2465 | int rc; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2466 | struct ata_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2468 | ata_port_probe(ap); |
| 2469 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2470 | ata_link_for_each_dev(dev, &ap->link) |
| 2471 | tries[dev->devno] = ATA_PROBE_MAX_TRIES; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2472 | |
| 2473 | retry: |
Tejun Heo | cdeab11 | 2007-10-29 16:41:09 +0900 | [diff] [blame] | 2474 | ata_link_for_each_dev(dev, &ap->link) { |
| 2475 | /* If we issue an SRST then an ATA drive (not ATAPI) |
| 2476 | * may change configuration and be in PIO0 timing. If |
| 2477 | * we do a hard reset (or are coming from power on) |
| 2478 | * this is true for ATA or ATAPI. Until we've set a |
| 2479 | * suitable controller mode we should not touch the |
| 2480 | * bus as we may be talking too fast. |
| 2481 | */ |
| 2482 | dev->pio_mode = XFER_PIO_0; |
| 2483 | |
| 2484 | /* If the controller has a pio mode setup function |
| 2485 | * then use it to set the chipset to rights. Don't |
| 2486 | * touch the DMA setup as that will be dealt with when |
| 2487 | * configuring devices. |
| 2488 | */ |
| 2489 | if (ap->ops->set_piomode) |
| 2490 | ap->ops->set_piomode(ap, dev); |
| 2491 | } |
| 2492 | |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2493 | /* reset and determine device classes */ |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2494 | ap->ops->phy_reset(ap); |
Tejun Heo | 2061a47 | 2006-03-12 00:57:39 +0900 | [diff] [blame] | 2495 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2496 | ata_link_for_each_dev(dev, &ap->link) { |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2497 | if (!(ap->flags & ATA_FLAG_DISABLED) && |
| 2498 | dev->class != ATA_DEV_UNKNOWN) |
| 2499 | classes[dev->devno] = dev->class; |
| 2500 | else |
| 2501 | classes[dev->devno] = ATA_DEV_NONE; |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2502 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2503 | dev->class = ATA_DEV_UNKNOWN; |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2504 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2506 | ata_port_probe(ap); |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2507 | |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2508 | /* read IDENTIFY page and configure devices. We have to do the identify |
| 2509 | specific sequence bass-ackwards so that PDIAG- is released by |
| 2510 | the slave device */ |
| 2511 | |
Bartlomiej Zolnierkiewicz | a4ba7fe | 2008-04-02 10:35:15 +0900 | [diff] [blame] | 2512 | ata_link_for_each_dev_reverse(dev, &ap->link) { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2513 | if (tries[dev->devno]) |
| 2514 | dev->class = classes[dev->devno]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2515 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2516 | if (!ata_dev_enabled(dev)) |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2517 | continue; |
| 2518 | |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2519 | rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET, |
| 2520 | dev->id); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2521 | if (rc) |
| 2522 | goto fail; |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2523 | } |
| 2524 | |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2525 | /* Now ask for the cable type as PDIAG- should have been released */ |
| 2526 | if (ap->ops->cable_detect) |
| 2527 | ap->cbl = ap->ops->cable_detect(ap); |
| 2528 | |
Alan Cox | 614fe29 | 2007-08-22 23:22:45 +0100 | [diff] [blame] | 2529 | /* We may have SATA bridge glue hiding here irrespective of the |
| 2530 | reported cable types and sensed types */ |
| 2531 | ata_link_for_each_dev(dev, &ap->link) { |
| 2532 | if (!ata_dev_enabled(dev)) |
| 2533 | continue; |
| 2534 | /* SATA drives indicate we have a bridge. We don't know which |
| 2535 | end of the link the bridge is which is a problem */ |
| 2536 | if (ata_id_is_sata(dev->id)) |
| 2537 | ap->cbl = ATA_CBL_SATA; |
| 2538 | } |
| 2539 | |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2540 | /* After the identify sequence we can now set up the devices. We do |
| 2541 | this in the normal order so that the user doesn't get confused */ |
| 2542 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2543 | ata_link_for_each_dev(dev, &ap->link) { |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2544 | if (!ata_dev_enabled(dev)) |
| 2545 | continue; |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2546 | |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2547 | ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO; |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 2548 | rc = ata_dev_configure(dev); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2549 | ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2550 | if (rc) |
| 2551 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | } |
| 2553 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2554 | /* configure transfer mode */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2555 | rc = ata_set_mode(&ap->link, &dev); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2556 | if (rc) |
Tejun Heo | 51713d3 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 2557 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2559 | ata_link_for_each_dev(dev, &ap->link) |
| 2560 | if (ata_dev_enabled(dev)) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2561 | return 0; |
Alan Cox | e35a9e0 | 2006-03-27 18:46:37 +0100 | [diff] [blame] | 2562 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2563 | /* no device present, disable port */ |
| 2564 | ata_port_disable(ap); |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2565 | return -ENODEV; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2566 | |
| 2567 | fail: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2568 | tries[dev->devno]--; |
| 2569 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2570 | switch (rc) { |
| 2571 | case -EINVAL: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2572 | /* eeek, something went very wrong, give up */ |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2573 | tries[dev->devno] = 0; |
| 2574 | break; |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2575 | |
| 2576 | case -ENODEV: |
| 2577 | /* give it just one more chance */ |
| 2578 | tries[dev->devno] = min(tries[dev->devno], 1); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2579 | case -EIO: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2580 | if (tries[dev->devno] == 1) { |
| 2581 | /* This is the last chance, better to slow |
| 2582 | * down than lose it. |
| 2583 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2584 | sata_down_spd_limit(&ap->link); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2585 | ata_down_xfermask_limit(dev, ATA_DNXFER_PIO); |
| 2586 | } |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2587 | } |
| 2588 | |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2589 | if (!tries[dev->devno]) |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2590 | ata_dev_disable(dev); |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 2591 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2592 | goto retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2593 | } |
| 2594 | |
| 2595 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2596 | * ata_port_probe - Mark port as enabled |
| 2597 | * @ap: Port for which we indicate enablement |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2599 | * Modify @ap data structure such that the system |
| 2600 | * thinks that the entire port is enabled. |
| 2601 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2602 | * LOCKING: host lock, or some other form of |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2603 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2604 | */ |
| 2605 | |
| 2606 | void ata_port_probe(struct ata_port *ap) |
| 2607 | { |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2608 | ap->flags &= ~ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | } |
| 2610 | |
| 2611 | /** |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2612 | * sata_print_link_status - Print SATA link status |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2613 | * @link: SATA link to printk link status about |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2614 | * |
| 2615 | * This function prints link speed and status of a SATA link. |
| 2616 | * |
| 2617 | * LOCKING: |
| 2618 | * None. |
| 2619 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2620 | void sata_print_link_status(struct ata_link *link) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2621 | { |
Tejun Heo | 6d5f973 | 2006-04-03 00:09:41 +0900 | [diff] [blame] | 2622 | u32 sstatus, scontrol, tmp; |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2623 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2624 | if (sata_scr_read(link, SCR_STATUS, &sstatus)) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2625 | return; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2626 | sata_scr_read(link, SCR_CONTROL, &scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2627 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2628 | if (ata_link_online(link)) { |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2629 | tmp = (sstatus >> 4) & 0xf; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2630 | ata_link_printk(link, KERN_INFO, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2631 | "SATA link up %s (SStatus %X SControl %X)\n", |
| 2632 | sata_spd_string(tmp), sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2633 | } else { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2634 | ata_link_printk(link, KERN_INFO, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2635 | "SATA link down (SStatus %X SControl %X)\n", |
| 2636 | sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2637 | } |
| 2638 | } |
| 2639 | |
| 2640 | /** |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2641 | * ata_dev_pair - return other device on cable |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2642 | * @adev: device |
| 2643 | * |
| 2644 | * Obtain the other device on the same cable, or if none is |
| 2645 | * present NULL is returned |
| 2646 | */ |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2647 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2648 | struct ata_device *ata_dev_pair(struct ata_device *adev) |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2649 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2650 | struct ata_link *link = adev->link; |
| 2651 | struct ata_device *pair = &link->device[1 - adev->devno]; |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2652 | if (!ata_dev_enabled(pair)) |
Alan Cox | ebdfca6 | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2653 | return NULL; |
| 2654 | return pair; |
| 2655 | } |
| 2656 | |
| 2657 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2658 | * ata_port_disable - Disable port. |
| 2659 | * @ap: Port to be disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2661 | * Modify @ap data structure such that the system |
| 2662 | * thinks that the entire port is disabled, and should |
| 2663 | * never attempt to probe or communicate with devices |
| 2664 | * on this port. |
| 2665 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2666 | * LOCKING: host lock, or some other form of |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2667 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | */ |
| 2669 | |
| 2670 | void ata_port_disable(struct ata_port *ap) |
| 2671 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2672 | ap->link.device[0].class = ATA_DEV_NONE; |
| 2673 | ap->link.device[1].class = ATA_DEV_NONE; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2674 | ap->flags |= ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2675 | } |
| 2676 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2677 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2678 | * sata_down_spd_limit - adjust SATA spd limit downward |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2679 | * @link: Link to adjust SATA spd limit for |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2680 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2681 | * Adjust SATA spd limit of @link downward. Note that this |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2682 | * function only adjusts the limit. The change must be applied |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2683 | * using sata_set_spd(). |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2684 | * |
| 2685 | * LOCKING: |
| 2686 | * Inherited from caller. |
| 2687 | * |
| 2688 | * RETURNS: |
| 2689 | * 0 on success, negative errno on failure |
| 2690 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2691 | int sata_down_spd_limit(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2692 | { |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2693 | u32 sstatus, spd, mask; |
| 2694 | int rc, highbit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2695 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2696 | if (!sata_scr_valid(link)) |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2697 | return -EOPNOTSUPP; |
| 2698 | |
| 2699 | /* If SCR can be read, use it to determine the current SPD. |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2700 | * If not, use cached value in link->sata_spd. |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2701 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2702 | rc = sata_scr_read(link, SCR_STATUS, &sstatus); |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2703 | if (rc == 0) |
| 2704 | spd = (sstatus >> 4) & 0xf; |
| 2705 | else |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2706 | spd = link->sata_spd; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2707 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2708 | mask = link->sata_spd_limit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2709 | if (mask <= 1) |
| 2710 | return -EINVAL; |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2711 | |
| 2712 | /* unconditionally mask off the highest bit */ |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2713 | highbit = fls(mask) - 1; |
| 2714 | mask &= ~(1 << highbit); |
| 2715 | |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2716 | /* Mask off all speeds higher than or equal to the current |
| 2717 | * one. Force 1.5Gbps if current SPD is not available. |
| 2718 | */ |
| 2719 | if (spd > 1) |
| 2720 | mask &= (1 << (spd - 1)) - 1; |
| 2721 | else |
| 2722 | mask &= 1; |
| 2723 | |
| 2724 | /* were we already at the bottom? */ |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2725 | if (!mask) |
| 2726 | return -EINVAL; |
| 2727 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2728 | link->sata_spd_limit = mask; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2729 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2730 | ata_link_printk(link, KERN_WARNING, "limiting SATA link speed to %s\n", |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2731 | sata_spd_string(fls(mask))); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2732 | |
| 2733 | return 0; |
| 2734 | } |
| 2735 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2736 | static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2737 | { |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2738 | struct ata_link *host_link = &link->ap->link; |
| 2739 | u32 limit, target, spd; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2740 | |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2741 | limit = link->sata_spd_limit; |
| 2742 | |
| 2743 | /* Don't configure downstream link faster than upstream link. |
| 2744 | * It doesn't speed up anything and some PMPs choke on such |
| 2745 | * configuration. |
| 2746 | */ |
| 2747 | if (!ata_is_host_link(link) && host_link->sata_spd) |
| 2748 | limit &= (1 << host_link->sata_spd) - 1; |
| 2749 | |
| 2750 | if (limit == UINT_MAX) |
| 2751 | target = 0; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2752 | else |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2753 | target = fls(limit); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2754 | |
| 2755 | spd = (*scontrol >> 4) & 0xf; |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2756 | *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2757 | |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2758 | return spd != target; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2759 | } |
| 2760 | |
| 2761 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2762 | * sata_set_spd_needed - is SATA spd configuration needed |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2763 | * @link: Link in question |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2764 | * |
| 2765 | * Test whether the spd limit in SControl matches |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2766 | * @link->sata_spd_limit. This function is used to determine |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2767 | * whether hardreset is necessary to apply SATA spd |
| 2768 | * configuration. |
| 2769 | * |
| 2770 | * LOCKING: |
| 2771 | * Inherited from caller. |
| 2772 | * |
| 2773 | * RETURNS: |
| 2774 | * 1 if SATA spd configuration is needed, 0 otherwise. |
| 2775 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2776 | int sata_set_spd_needed(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2777 | { |
| 2778 | u32 scontrol; |
| 2779 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2780 | if (sata_scr_read(link, SCR_CONTROL, &scontrol)) |
Tejun Heo | db64bcf | 2007-10-31 10:17:06 +0900 | [diff] [blame] | 2781 | return 1; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2782 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2783 | return __sata_set_spd_needed(link, &scontrol); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2784 | } |
| 2785 | |
| 2786 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2787 | * sata_set_spd - set SATA spd according to spd limit |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2788 | * @link: Link to set SATA spd for |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2789 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2790 | * Set SATA spd of @link according to sata_spd_limit. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2791 | * |
| 2792 | * LOCKING: |
| 2793 | * Inherited from caller. |
| 2794 | * |
| 2795 | * RETURNS: |
| 2796 | * 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] | 2797 | * changed. Negative errno if SCR registers are inaccessible. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2798 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2799 | int sata_set_spd(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2800 | { |
| 2801 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2802 | int rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2803 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2804 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2805 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2806 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2807 | if (!__sata_set_spd_needed(link, &scontrol)) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2808 | return 0; |
| 2809 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2810 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2811 | return rc; |
| 2812 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2813 | return 1; |
| 2814 | } |
| 2815 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2816 | /* |
| 2817 | * This mode timing computation functionality is ported over from |
| 2818 | * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik |
| 2819 | */ |
| 2820 | /* |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2821 | * PIO 0-4, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds). |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2822 | * These were taken from ATA/ATAPI-6 standard, rev 0a, except |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2823 | * for UDMA6, which is currently supported only by Maxtor drives. |
| 2824 | * |
| 2825 | * For PIO 5/6 MWDMA 3/4 see the CFA specification 3.0. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2826 | */ |
| 2827 | |
| 2828 | static const struct ata_timing ata_timing[] = { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 2829 | /* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */ |
| 2830 | { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 }, |
| 2831 | { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 }, |
| 2832 | { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 }, |
| 2833 | { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 }, |
| 2834 | { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 }, |
| 2835 | { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 }, |
| 2836 | { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2837 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 2838 | { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 }, |
| 2839 | { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 }, |
| 2840 | { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2841 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 2842 | { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 }, |
| 2843 | { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 }, |
| 2844 | { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 }, |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2845 | { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 }, |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 2846 | { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2847 | |
| 2848 | /* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */ |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 2849 | { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 }, |
| 2850 | { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 }, |
| 2851 | { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 }, |
| 2852 | { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 }, |
| 2853 | { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 }, |
| 2854 | { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 }, |
| 2855 | { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2856 | |
| 2857 | { 0xFF } |
| 2858 | }; |
| 2859 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2860 | #define ENOUGH(v, unit) (((v)-1)/(unit)+1) |
| 2861 | #define EZ(v, unit) ((v)?ENOUGH(v, unit):0) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2862 | |
| 2863 | static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT) |
| 2864 | { |
| 2865 | q->setup = EZ(t->setup * 1000, T); |
| 2866 | q->act8b = EZ(t->act8b * 1000, T); |
| 2867 | q->rec8b = EZ(t->rec8b * 1000, T); |
| 2868 | q->cyc8b = EZ(t->cyc8b * 1000, T); |
| 2869 | q->active = EZ(t->active * 1000, T); |
| 2870 | q->recover = EZ(t->recover * 1000, T); |
| 2871 | q->cycle = EZ(t->cycle * 1000, T); |
| 2872 | q->udma = EZ(t->udma * 1000, UT); |
| 2873 | } |
| 2874 | |
| 2875 | void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b, |
| 2876 | struct ata_timing *m, unsigned int what) |
| 2877 | { |
| 2878 | if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup); |
| 2879 | if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b); |
| 2880 | if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b); |
| 2881 | if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b); |
| 2882 | if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active); |
| 2883 | if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover); |
| 2884 | if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle); |
| 2885 | if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma); |
| 2886 | } |
| 2887 | |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 2888 | const struct ata_timing *ata_timing_find_mode(u8 xfer_mode) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2889 | { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 2890 | const struct ata_timing *t = ata_timing; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2891 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 2892 | while (xfer_mode > t->mode) |
| 2893 | t++; |
| 2894 | |
| 2895 | if (xfer_mode == t->mode) |
| 2896 | return t; |
| 2897 | return NULL; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2898 | } |
| 2899 | |
| 2900 | int ata_timing_compute(struct ata_device *adev, unsigned short speed, |
| 2901 | struct ata_timing *t, int T, int UT) |
| 2902 | { |
| 2903 | const struct ata_timing *s; |
| 2904 | struct ata_timing p; |
| 2905 | |
| 2906 | /* |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2907 | * Find the mode. |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 2908 | */ |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2909 | |
| 2910 | if (!(s = ata_timing_find_mode(speed))) |
| 2911 | return -EINVAL; |
| 2912 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 2913 | memcpy(t, s, sizeof(*s)); |
| 2914 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2915 | /* |
| 2916 | * If the drive is an EIDE drive, it can tell us it needs extended |
| 2917 | * PIO/MW_DMA cycle timing. |
| 2918 | */ |
| 2919 | |
| 2920 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */ |
| 2921 | memset(&p, 0, sizeof(p)); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2922 | if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2923 | if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO]; |
| 2924 | else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY]; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2925 | } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2926 | p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN]; |
| 2927 | } |
| 2928 | ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B); |
| 2929 | } |
| 2930 | |
| 2931 | /* |
| 2932 | * Convert the timing to bus clock counts. |
| 2933 | */ |
| 2934 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 2935 | ata_timing_quantize(t, t, T, UT); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2936 | |
| 2937 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 2938 | * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, |
| 2939 | * S.M.A.R.T * and some other commands. We have to ensure that the |
| 2940 | * DMA cycle timing is slower/equal than the fastest PIO timing. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2941 | */ |
| 2942 | |
Alan | fd3367a | 2006-12-07 12:41:18 +0000 | [diff] [blame] | 2943 | if (speed > XFER_PIO_6) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2944 | ata_timing_compute(adev, adev->pio_mode, &p, T, UT); |
| 2945 | ata_timing_merge(&p, t, t, ATA_TIMING_ALL); |
| 2946 | } |
| 2947 | |
| 2948 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 2949 | * Lengthen active & recovery time so that cycle time is correct. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2950 | */ |
| 2951 | |
| 2952 | if (t->act8b + t->rec8b < t->cyc8b) { |
| 2953 | t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2; |
| 2954 | t->rec8b = t->cyc8b - t->act8b; |
| 2955 | } |
| 2956 | |
| 2957 | if (t->active + t->recover < t->cycle) { |
| 2958 | t->active += (t->cycle - (t->active + t->recover)) / 2; |
| 2959 | t->recover = t->cycle - t->active; |
| 2960 | } |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 2961 | |
Alan Cox | 4f701d1 | 2007-04-23 11:55:36 +0100 | [diff] [blame] | 2962 | /* In a few cases quantisation may produce enough errors to |
| 2963 | leave t->cycle too low for the sum of active and recovery |
| 2964 | if so we must correct this */ |
| 2965 | if (t->active + t->recover > t->cycle) |
| 2966 | t->cycle = t->active + t->recover; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 2967 | |
| 2968 | return 0; |
| 2969 | } |
| 2970 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2971 | /** |
Tejun Heo | a0f79b9 | 2007-12-18 16:33:05 +0900 | [diff] [blame] | 2972 | * ata_timing_cycle2mode - find xfer mode for the specified cycle duration |
| 2973 | * @xfer_shift: ATA_SHIFT_* value for transfer type to examine. |
| 2974 | * @cycle: cycle duration in ns |
| 2975 | * |
| 2976 | * Return matching xfer mode for @cycle. The returned mode is of |
| 2977 | * the transfer type specified by @xfer_shift. If @cycle is too |
| 2978 | * slow for @xfer_shift, 0xff is returned. If @cycle is faster |
| 2979 | * than the fastest known mode, the fasted mode is returned. |
| 2980 | * |
| 2981 | * LOCKING: |
| 2982 | * None. |
| 2983 | * |
| 2984 | * RETURNS: |
| 2985 | * Matching xfer_mode, 0xff if no match found. |
| 2986 | */ |
| 2987 | u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle) |
| 2988 | { |
| 2989 | u8 base_mode = 0xff, last_mode = 0xff; |
| 2990 | const struct ata_xfer_ent *ent; |
| 2991 | const struct ata_timing *t; |
| 2992 | |
| 2993 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 2994 | if (ent->shift == xfer_shift) |
| 2995 | base_mode = ent->base; |
| 2996 | |
| 2997 | for (t = ata_timing_find_mode(base_mode); |
| 2998 | t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) { |
| 2999 | unsigned short this_cycle; |
| 3000 | |
| 3001 | switch (xfer_shift) { |
| 3002 | case ATA_SHIFT_PIO: |
| 3003 | case ATA_SHIFT_MWDMA: |
| 3004 | this_cycle = t->cycle; |
| 3005 | break; |
| 3006 | case ATA_SHIFT_UDMA: |
| 3007 | this_cycle = t->udma; |
| 3008 | break; |
| 3009 | default: |
| 3010 | return 0xff; |
| 3011 | } |
| 3012 | |
| 3013 | if (cycle > this_cycle) |
| 3014 | break; |
| 3015 | |
| 3016 | last_mode = t->mode; |
| 3017 | } |
| 3018 | |
| 3019 | return last_mode; |
| 3020 | } |
| 3021 | |
| 3022 | /** |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3023 | * ata_down_xfermask_limit - adjust dev xfer masks downward |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3024 | * @dev: Device to adjust xfer masks |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3025 | * @sel: ATA_DNXFER_* selector |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3026 | * |
| 3027 | * Adjust xfer masks of @dev downward. Note that this function |
| 3028 | * does not apply the change. Invoking ata_set_mode() afterwards |
| 3029 | * will apply the limit. |
| 3030 | * |
| 3031 | * LOCKING: |
| 3032 | * Inherited from caller. |
| 3033 | * |
| 3034 | * RETURNS: |
| 3035 | * 0 on success, negative errno on failure |
| 3036 | */ |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3037 | int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel) |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3038 | { |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3039 | char buf[32]; |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 3040 | unsigned long orig_mask, xfer_mask; |
| 3041 | unsigned long pio_mask, mwdma_mask, udma_mask; |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3042 | int quiet, highbit; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3043 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3044 | quiet = !!(sel & ATA_DNXFER_QUIET); |
| 3045 | sel &= ~ATA_DNXFER_QUIET; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3046 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3047 | xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask, |
| 3048 | dev->mwdma_mask, |
| 3049 | dev->udma_mask); |
| 3050 | ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask); |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3051 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3052 | switch (sel) { |
| 3053 | case ATA_DNXFER_PIO: |
| 3054 | highbit = fls(pio_mask) - 1; |
| 3055 | pio_mask &= ~(1 << highbit); |
| 3056 | break; |
| 3057 | |
| 3058 | case ATA_DNXFER_DMA: |
| 3059 | if (udma_mask) { |
| 3060 | highbit = fls(udma_mask) - 1; |
| 3061 | udma_mask &= ~(1 << highbit); |
| 3062 | if (!udma_mask) |
| 3063 | return -ENOENT; |
| 3064 | } else if (mwdma_mask) { |
| 3065 | highbit = fls(mwdma_mask) - 1; |
| 3066 | mwdma_mask &= ~(1 << highbit); |
| 3067 | if (!mwdma_mask) |
| 3068 | return -ENOENT; |
| 3069 | } |
| 3070 | break; |
| 3071 | |
| 3072 | case ATA_DNXFER_40C: |
| 3073 | udma_mask &= ATA_UDMA_MASK_40C; |
| 3074 | break; |
| 3075 | |
| 3076 | case ATA_DNXFER_FORCE_PIO0: |
| 3077 | pio_mask &= 1; |
| 3078 | case ATA_DNXFER_FORCE_PIO: |
| 3079 | mwdma_mask = 0; |
| 3080 | udma_mask = 0; |
| 3081 | break; |
| 3082 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3083 | default: |
| 3084 | BUG(); |
| 3085 | } |
| 3086 | |
| 3087 | xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 3088 | |
| 3089 | if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask) |
| 3090 | return -ENOENT; |
| 3091 | |
| 3092 | if (!quiet) { |
| 3093 | if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA)) |
| 3094 | snprintf(buf, sizeof(buf), "%s:%s", |
| 3095 | ata_mode_string(xfer_mask), |
| 3096 | ata_mode_string(xfer_mask & ATA_MASK_PIO)); |
| 3097 | else |
| 3098 | snprintf(buf, sizeof(buf), "%s", |
| 3099 | ata_mode_string(xfer_mask)); |
| 3100 | |
| 3101 | ata_dev_printk(dev, KERN_WARNING, |
| 3102 | "limiting speed to %s\n", buf); |
| 3103 | } |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3104 | |
| 3105 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask, |
| 3106 | &dev->udma_mask); |
| 3107 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3108 | return 0; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3109 | } |
| 3110 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3111 | static int ata_dev_set_mode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3112 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3113 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3114 | const char *dev_err_whine = ""; |
| 3115 | int ign_dev_err = 0; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3116 | unsigned int err_mask; |
| 3117 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3118 | |
Tejun Heo | e838460 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 3119 | dev->flags &= ~ATA_DFLAG_PIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | if (dev->xfer_shift == ATA_SHIFT_PIO) |
| 3121 | dev->flags |= ATA_DFLAG_PIO; |
| 3122 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3123 | err_mask = ata_dev_set_xfermode(dev); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3124 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3125 | if (err_mask & ~AC_ERR_DEV) |
| 3126 | goto fail; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3127 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3128 | /* revalidate */ |
Tejun Heo | baa1e78 | 2006-11-01 18:39:27 +0900 | [diff] [blame] | 3129 | ehc->i.flags |= ATA_EHI_POST_SETMODE; |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3130 | rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0); |
Tejun Heo | baa1e78 | 2006-11-01 18:39:27 +0900 | [diff] [blame] | 3131 | ehc->i.flags &= ~ATA_EHI_POST_SETMODE; |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 3132 | if (rc) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3133 | return rc; |
Tejun Heo | 48a8a14 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3134 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3135 | /* Old CFA may refuse this command, which is just fine */ |
| 3136 | if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id)) |
| 3137 | ign_dev_err = 1; |
| 3138 | |
| 3139 | /* Some very old devices and some bad newer ones fail any kind of |
| 3140 | SET_XFERMODE request but support PIO0-2 timings and no IORDY */ |
| 3141 | if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) && |
| 3142 | dev->pio_mode <= XFER_PIO_2) |
| 3143 | ign_dev_err = 1; |
| 3144 | |
| 3145 | /* Early MWDMA devices do DMA but don't allow DMA mode setting. |
| 3146 | Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */ |
| 3147 | if (dev->xfer_shift == ATA_SHIFT_MWDMA && |
| 3148 | dev->dma_mode == XFER_MW_DMA_0 && |
| 3149 | (dev->id[63] >> 8) & 1) |
| 3150 | ign_dev_err = 1; |
| 3151 | |
| 3152 | /* if the device is actually configured correctly, ignore dev err */ |
| 3153 | if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id))) |
| 3154 | ign_dev_err = 1; |
| 3155 | |
| 3156 | if (err_mask & AC_ERR_DEV) { |
| 3157 | if (!ign_dev_err) |
| 3158 | goto fail; |
| 3159 | else |
| 3160 | dev_err_whine = " (device error ignored)"; |
| 3161 | } |
| 3162 | |
Tejun Heo | 23e71c3 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3163 | DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n", |
| 3164 | dev->xfer_shift, (int)dev->xfer_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3166 | ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n", |
| 3167 | ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)), |
| 3168 | dev_err_whine); |
| 3169 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3170 | return 0; |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3171 | |
| 3172 | fail: |
| 3173 | ata_dev_printk(dev, KERN_ERR, "failed to set xfermode " |
| 3174 | "(err_mask=0x%x)\n", err_mask); |
| 3175 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3176 | } |
| 3177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3178 | /** |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3179 | * ata_do_set_mode - Program timings and issue SET FEATURES - XFER |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3180 | * @link: link on which timings will be programmed |
Joe Perches | 1967b7f | 2008-02-03 17:08:11 +0200 | [diff] [blame] | 3181 | * @r_failed_dev: out parameter for failed device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3182 | * |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3183 | * Standard implementation of the function used to tune and set |
| 3184 | * ATA device disk transfer mode (PIO3, UDMA6, etc.). If |
| 3185 | * ata_dev_set_mode() fails, pointer to the failing device is |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3186 | * returned in @r_failed_dev. |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3187 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3188 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3189 | * PCI/etc. bus probe sem. |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3190 | * |
| 3191 | * RETURNS: |
| 3192 | * 0 on success, negative errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3193 | */ |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3194 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3195 | int ata_do_set_mode(struct ata_link *link, struct ata_device **r_failed_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3196 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3197 | struct ata_port *ap = link->ap; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3198 | struct ata_device *dev; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3199 | int rc = 0, used_dma = 0, found = 0; |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 3200 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3201 | /* step 1: calculate xfer_mask */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3202 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 3203 | unsigned long pio_mask, dma_mask; |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3204 | unsigned int mode_mask; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3205 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3206 | if (!ata_dev_enabled(dev)) |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3207 | continue; |
| 3208 | |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3209 | mode_mask = ATA_DMA_MASK_ATA; |
| 3210 | if (dev->class == ATA_DEV_ATAPI) |
| 3211 | mode_mask = ATA_DMA_MASK_ATAPI; |
| 3212 | else if (ata_id_is_cfa(dev->id)) |
| 3213 | mode_mask = ATA_DMA_MASK_CFA; |
| 3214 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3215 | ata_dev_xfermask(dev); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 3216 | ata_force_xfermask(dev); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3217 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3218 | pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0); |
| 3219 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3220 | |
| 3221 | if (libata_dma_mask & mode_mask) |
| 3222 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
| 3223 | else |
| 3224 | dma_mask = 0; |
| 3225 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3226 | dev->pio_mode = ata_xfer_mask2mode(pio_mask); |
| 3227 | dev->dma_mode = ata_xfer_mask2mode(dma_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3228 | |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3229 | found = 1; |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3230 | if (dev->dma_mode != 0xff) |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3231 | used_dma = 1; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3232 | } |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3233 | if (!found) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3234 | goto out; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3235 | |
| 3236 | /* step 2: always set host PIO timings */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3237 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3238 | if (!ata_dev_enabled(dev)) |
| 3239 | continue; |
| 3240 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3241 | if (dev->pio_mode == 0xff) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3242 | ata_dev_printk(dev, KERN_WARNING, "no PIO support\n"); |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3243 | rc = -EINVAL; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3244 | goto out; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3245 | } |
| 3246 | |
| 3247 | dev->xfer_mode = dev->pio_mode; |
| 3248 | dev->xfer_shift = ATA_SHIFT_PIO; |
| 3249 | if (ap->ops->set_piomode) |
| 3250 | ap->ops->set_piomode(ap, dev); |
| 3251 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3252 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3253 | /* step 3: set host DMA timings */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3254 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3255 | if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff) |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3256 | continue; |
| 3257 | |
| 3258 | dev->xfer_mode = dev->dma_mode; |
| 3259 | dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode); |
| 3260 | if (ap->ops->set_dmamode) |
| 3261 | ap->ops->set_dmamode(ap, dev); |
| 3262 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3263 | |
| 3264 | /* step 4: update devices' xfer mode */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3265 | ata_link_for_each_dev(dev, link) { |
Alan | 18d90de | 2007-01-24 11:42:38 +0000 | [diff] [blame] | 3266 | /* don't update suspended devices' xfer mode */ |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 3267 | if (!ata_dev_enabled(dev)) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3268 | continue; |
| 3269 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3270 | rc = ata_dev_set_mode(dev); |
Tejun Heo | 5bbc53f | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 3271 | if (rc) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3272 | goto out; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3273 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3275 | /* Record simplex status. If we selected DMA then the other |
| 3276 | * host channels are not permitted to do so. |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3277 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3278 | if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX)) |
Alan | 032af1c | 2007-03-01 17:36:46 +0000 | [diff] [blame] | 3279 | ap->host->simplex_claimed = ap; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3280 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3281 | out: |
| 3282 | if (rc) |
| 3283 | *r_failed_dev = dev; |
| 3284 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3285 | } |
| 3286 | |
| 3287 | /** |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3288 | * ata_wait_ready - wait for link to become ready |
| 3289 | * @link: link to be waited on |
| 3290 | * @deadline: deadline jiffies for the operation |
| 3291 | * @check_ready: callback to check link readiness |
| 3292 | * |
| 3293 | * Wait for @link to become ready. @check_ready should return |
| 3294 | * positive number if @link is ready, 0 if it isn't, -ENODEV if |
| 3295 | * link doesn't seem to be occupied, other errno for other error |
| 3296 | * conditions. |
| 3297 | * |
| 3298 | * Transient -ENODEV conditions are allowed for |
| 3299 | * ATA_TMOUT_FF_WAIT. |
| 3300 | * |
| 3301 | * LOCKING: |
| 3302 | * EH context. |
| 3303 | * |
| 3304 | * RETURNS: |
| 3305 | * 0 if @linke is ready before @deadline; otherwise, -errno. |
| 3306 | */ |
| 3307 | int ata_wait_ready(struct ata_link *link, unsigned long deadline, |
| 3308 | int (*check_ready)(struct ata_link *link)) |
| 3309 | { |
| 3310 | unsigned long start = jiffies; |
| 3311 | unsigned long nodev_deadline = start + ATA_TMOUT_FF_WAIT; |
| 3312 | int warned = 0; |
| 3313 | |
| 3314 | if (time_after(nodev_deadline, deadline)) |
| 3315 | nodev_deadline = deadline; |
| 3316 | |
| 3317 | while (1) { |
| 3318 | unsigned long now = jiffies; |
| 3319 | int ready, tmp; |
| 3320 | |
| 3321 | ready = tmp = check_ready(link); |
| 3322 | if (ready > 0) |
| 3323 | return 0; |
| 3324 | |
| 3325 | /* -ENODEV could be transient. Ignore -ENODEV if link |
| 3326 | * is online. Also, some SATA devices take a long |
| 3327 | * time to clear 0xff after reset. For example, |
| 3328 | * HHD424020F7SV00 iVDR needs >= 800ms while Quantum |
| 3329 | * GoVault needs even more than that. Wait for |
| 3330 | * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline. |
| 3331 | * |
| 3332 | * Note that some PATA controllers (pata_ali) explode |
| 3333 | * if status register is read more than once when |
| 3334 | * there's no device attached. |
| 3335 | */ |
| 3336 | if (ready == -ENODEV) { |
| 3337 | if (ata_link_online(link)) |
| 3338 | ready = 0; |
| 3339 | else if ((link->ap->flags & ATA_FLAG_SATA) && |
| 3340 | !ata_link_offline(link) && |
| 3341 | time_before(now, nodev_deadline)) |
| 3342 | ready = 0; |
| 3343 | } |
| 3344 | |
| 3345 | if (ready) |
| 3346 | return ready; |
| 3347 | if (time_after(now, deadline)) |
| 3348 | return -EBUSY; |
| 3349 | |
| 3350 | if (!warned && time_after(now, start + 5 * HZ) && |
| 3351 | (deadline - now > 3 * HZ)) { |
| 3352 | ata_link_printk(link, KERN_WARNING, |
| 3353 | "link is slow to respond, please be patient " |
| 3354 | "(ready=%d)\n", tmp); |
| 3355 | warned = 1; |
| 3356 | } |
| 3357 | |
| 3358 | msleep(50); |
| 3359 | } |
| 3360 | } |
| 3361 | |
| 3362 | /** |
| 3363 | * ata_wait_after_reset - wait for link to become ready after reset |
| 3364 | * @link: link to be waited on |
| 3365 | * @deadline: deadline jiffies for the operation |
| 3366 | * @check_ready: callback to check link readiness |
| 3367 | * |
| 3368 | * Wait for @link to become ready after reset. |
| 3369 | * |
| 3370 | * LOCKING: |
| 3371 | * EH context. |
| 3372 | * |
| 3373 | * RETURNS: |
| 3374 | * 0 if @linke is ready before @deadline; otherwise, -errno. |
| 3375 | */ |
| 3376 | extern int ata_wait_after_reset(struct ata_link *link, unsigned long deadline, |
| 3377 | int (*check_ready)(struct ata_link *link)) |
| 3378 | { |
| 3379 | msleep(ATA_WAIT_AFTER_RESET_MSECS); |
| 3380 | |
| 3381 | return ata_wait_ready(link, deadline, check_ready); |
| 3382 | } |
| 3383 | |
| 3384 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3385 | * sata_link_debounce - debounce SATA phy status |
| 3386 | * @link: ATA link to debounce SATA phy status for |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3387 | * @params: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3388 | * @deadline: deadline jiffies for the operation |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3389 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3390 | * Make sure SStatus of @link reaches stable state, determined by |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3391 | * holding the same value where DET is not 1 for @duration polled |
| 3392 | * every @interval, before @timeout. Timeout constraints the |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3393 | * beginning of the stable state. Because DET gets stuck at 1 on |
| 3394 | * some controllers after hot unplugging, this functions waits |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3395 | * until timeout then returns 0 if DET is stable at 1. |
| 3396 | * |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3397 | * @timeout is further limited by @deadline. The sooner of the |
| 3398 | * two is used. |
| 3399 | * |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3400 | * LOCKING: |
| 3401 | * Kernel thread context (may sleep) |
| 3402 | * |
| 3403 | * RETURNS: |
| 3404 | * 0 on success, -errno on failure. |
| 3405 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3406 | int sata_link_debounce(struct ata_link *link, const unsigned long *params, |
| 3407 | unsigned long deadline) |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3408 | { |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3409 | unsigned long interval_msec = params[0]; |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3410 | unsigned long duration = msecs_to_jiffies(params[1]); |
| 3411 | unsigned long last_jiffies, t; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3412 | u32 last, cur; |
| 3413 | int rc; |
| 3414 | |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3415 | t = jiffies + msecs_to_jiffies(params[2]); |
| 3416 | if (time_before(t, deadline)) |
| 3417 | deadline = t; |
| 3418 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3419 | if ((rc = sata_scr_read(link, SCR_STATUS, &cur))) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3420 | return rc; |
| 3421 | cur &= 0xf; |
| 3422 | |
| 3423 | last = cur; |
| 3424 | last_jiffies = jiffies; |
| 3425 | |
| 3426 | while (1) { |
| 3427 | msleep(interval_msec); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3428 | if ((rc = sata_scr_read(link, SCR_STATUS, &cur))) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3429 | return rc; |
| 3430 | cur &= 0xf; |
| 3431 | |
| 3432 | /* DET stable? */ |
| 3433 | if (cur == last) { |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3434 | if (cur == 1 && time_before(jiffies, deadline)) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3435 | continue; |
| 3436 | if (time_after(jiffies, last_jiffies + duration)) |
| 3437 | return 0; |
| 3438 | continue; |
| 3439 | } |
| 3440 | |
| 3441 | /* unstable, start over */ |
| 3442 | last = cur; |
| 3443 | last_jiffies = jiffies; |
| 3444 | |
Tejun Heo | f154515 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3445 | /* Check deadline. If debouncing failed, return |
| 3446 | * -EPIPE to tell upper layer to lower link speed. |
| 3447 | */ |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3448 | if (time_after(jiffies, deadline)) |
Tejun Heo | f154515 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3449 | return -EPIPE; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3450 | } |
| 3451 | } |
| 3452 | |
| 3453 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3454 | * sata_link_resume - resume SATA link |
| 3455 | * @link: ATA link to resume SATA |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3456 | * @params: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3457 | * @deadline: deadline jiffies for the operation |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3458 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3459 | * Resume SATA phy @link and debounce it. |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3460 | * |
| 3461 | * LOCKING: |
| 3462 | * Kernel thread context (may sleep) |
| 3463 | * |
| 3464 | * RETURNS: |
| 3465 | * 0 on success, -errno on failure. |
| 3466 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3467 | int sata_link_resume(struct ata_link *link, const unsigned long *params, |
| 3468 | unsigned long deadline) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3469 | { |
Tejun Heo | ac37198 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3470 | u32 scontrol, serror; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3471 | int rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3472 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3473 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3474 | return rc; |
| 3475 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3476 | scontrol = (scontrol & 0x0f0) | 0x300; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3477 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3478 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3479 | return rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3480 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3481 | /* Some PHYs react badly if SStatus is pounded immediately |
| 3482 | * after resuming. Delay 200ms before debouncing. |
| 3483 | */ |
| 3484 | msleep(200); |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3485 | |
Tejun Heo | ac37198 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3486 | if ((rc = sata_link_debounce(link, params, deadline))) |
| 3487 | return rc; |
| 3488 | |
| 3489 | /* Clear SError. PMP and some host PHYs require this to |
| 3490 | * operate and clearing should be done before checking PHY |
| 3491 | * online status to avoid race condition (hotplugging between |
| 3492 | * link resume and status check). |
| 3493 | */ |
| 3494 | if (!(rc = sata_scr_read(link, SCR_ERROR, &serror))) |
| 3495 | rc = sata_scr_write(link, SCR_ERROR, serror); |
| 3496 | if (rc == 0 || rc == -EINVAL) { |
| 3497 | unsigned long flags; |
| 3498 | |
| 3499 | spin_lock_irqsave(link->ap->lock, flags); |
| 3500 | link->eh_info.serror = 0; |
| 3501 | spin_unlock_irqrestore(link->ap->lock, flags); |
| 3502 | rc = 0; |
| 3503 | } |
| 3504 | return rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3505 | } |
| 3506 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3507 | /** |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3508 | * ata_std_prereset - prepare for reset |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3509 | * @link: ATA link to be reset |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3510 | * @deadline: deadline jiffies for the operation |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3511 | * |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3512 | * @link is about to be reset. Initialize it. Failure from |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3513 | * prereset makes libata abort whole reset sequence and give up |
| 3514 | * that port, so prereset should be best-effort. It does its |
| 3515 | * best to prepare for reset sequence but if things go wrong, it |
| 3516 | * should just whine, not fail. |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3517 | * |
| 3518 | * LOCKING: |
| 3519 | * Kernel thread context (may sleep) |
| 3520 | * |
| 3521 | * RETURNS: |
| 3522 | * 0 on success, -errno otherwise. |
| 3523 | */ |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3524 | int ata_std_prereset(struct ata_link *link, unsigned long deadline) |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3525 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3526 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3527 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 3528 | const unsigned long *timing = sata_ehc_deb_timing(ehc); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3529 | int rc; |
| 3530 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3531 | /* if we're about to do hardreset, nothing more to do */ |
| 3532 | if (ehc->i.action & ATA_EH_HARDRESET) |
| 3533 | return 0; |
| 3534 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3535 | /* if SATA, resume link */ |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 3536 | if (ap->flags & ATA_FLAG_SATA) { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3537 | rc = sata_link_resume(link, timing, deadline); |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3538 | /* whine about phy resume failure but proceed */ |
| 3539 | if (rc && rc != -EOPNOTSUPP) |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3540 | ata_link_printk(link, KERN_WARNING, "failed to resume " |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3541 | "link for reset (errno=%d)\n", rc); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3542 | } |
| 3543 | |
Tejun Heo | 45db2f6 | 2008-04-08 01:46:56 +0900 | [diff] [blame] | 3544 | /* no point in trying softreset on offline link */ |
| 3545 | if (ata_link_offline(link)) |
| 3546 | ehc->i.action &= ~ATA_EH_SOFTRESET; |
| 3547 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3548 | return 0; |
| 3549 | } |
| 3550 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3551 | /** |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3552 | * sata_link_hardreset - reset link via SATA phy reset |
| 3553 | * @link: link to reset |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3554 | * @timing: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3555 | * @deadline: deadline jiffies for the operation |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3556 | * @online: optional out parameter indicating link onlineness |
| 3557 | * @check_ready: optional callback to check link readiness |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3558 | * |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3559 | * SATA phy-reset @link using DET bits of SControl register. |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3560 | * After hardreset, link readiness is waited upon using |
| 3561 | * ata_wait_ready() if @check_ready is specified. LLDs are |
| 3562 | * allowed to not specify @check_ready and wait itself after this |
| 3563 | * function returns. Device classification is LLD's |
| 3564 | * responsibility. |
| 3565 | * |
| 3566 | * *@online is set to one iff reset succeeded and @link is online |
| 3567 | * after reset. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3568 | * |
| 3569 | * LOCKING: |
| 3570 | * Kernel thread context (may sleep) |
| 3571 | * |
| 3572 | * RETURNS: |
| 3573 | * 0 on success, -errno otherwise. |
| 3574 | */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3575 | int sata_link_hardreset(struct ata_link *link, const unsigned long *timing, |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3576 | unsigned long deadline, |
| 3577 | bool *online, int (*check_ready)(struct ata_link *)) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3578 | { |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3579 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3580 | int rc; |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3581 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3582 | DPRINTK("ENTER\n"); |
| 3583 | |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3584 | if (online) |
| 3585 | *online = false; |
| 3586 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3587 | if (sata_set_spd_needed(link)) { |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3588 | /* SATA spec says nothing about how to reconfigure |
| 3589 | * spd. To be on the safe side, turn off phy during |
| 3590 | * reconfiguration. This works for at least ICH7 AHCI |
| 3591 | * and Sil3124. |
| 3592 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3593 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3594 | goto out; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3595 | |
Martin Hicks | a34b6fc | 2006-07-05 15:06:13 -0400 | [diff] [blame] | 3596 | scontrol = (scontrol & 0x0f0) | 0x304; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3597 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3598 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3599 | goto out; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3600 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3601 | sata_set_spd(link); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3602 | } |
| 3603 | |
| 3604 | /* issue phy wake/reset */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3605 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3606 | goto out; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3607 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3608 | scontrol = (scontrol & 0x0f0) | 0x301; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3609 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3610 | if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3611 | goto out; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3612 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3613 | /* 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] | 3614 | * 10.4.2 says at least 1 ms. |
| 3615 | */ |
| 3616 | msleep(1); |
| 3617 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3618 | /* bring link back */ |
| 3619 | rc = sata_link_resume(link, timing, deadline); |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3620 | if (rc) |
| 3621 | goto out; |
| 3622 | /* if link is offline nothing more to do */ |
| 3623 | if (ata_link_offline(link)) |
| 3624 | goto out; |
| 3625 | |
| 3626 | /* Link is online. From this point, -ENODEV too is an error. */ |
| 3627 | if (online) |
| 3628 | *online = true; |
| 3629 | |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 3630 | if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) { |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3631 | /* If PMP is supported, we have to do follow-up SRST. |
| 3632 | * Some PMPs don't send D2H Reg FIS after hardreset if |
| 3633 | * the first port is empty. Wait only for |
| 3634 | * ATA_TMOUT_PMP_SRST_WAIT. |
| 3635 | */ |
| 3636 | if (check_ready) { |
| 3637 | unsigned long pmp_deadline; |
| 3638 | |
| 3639 | pmp_deadline = jiffies + ATA_TMOUT_PMP_SRST_WAIT; |
| 3640 | if (time_after(pmp_deadline, deadline)) |
| 3641 | pmp_deadline = deadline; |
| 3642 | ata_wait_ready(link, pmp_deadline, check_ready); |
| 3643 | } |
| 3644 | rc = -EAGAIN; |
| 3645 | goto out; |
| 3646 | } |
| 3647 | |
| 3648 | rc = 0; |
| 3649 | if (check_ready) |
| 3650 | rc = ata_wait_ready(link, deadline, check_ready); |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3651 | out: |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3652 | if (rc && rc != -EAGAIN) |
| 3653 | ata_link_printk(link, KERN_ERR, |
| 3654 | "COMRESET failed (errno=%d)\n", rc); |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3655 | DPRINTK("EXIT, rc=%d\n", rc); |
| 3656 | return rc; |
| 3657 | } |
| 3658 | |
| 3659 | /** |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3660 | * sata_std_hardreset - COMRESET w/o waiting or classification |
| 3661 | * @link: link to reset |
| 3662 | * @class: resulting class of attached device |
| 3663 | * @deadline: deadline jiffies for the operation |
| 3664 | * |
| 3665 | * Standard SATA COMRESET w/o waiting or classification. |
| 3666 | * |
| 3667 | * LOCKING: |
| 3668 | * Kernel thread context (may sleep) |
| 3669 | * |
| 3670 | * RETURNS: |
| 3671 | * 0 if link offline, -EAGAIN if link online, -errno on errors. |
| 3672 | */ |
| 3673 | int sata_std_hardreset(struct ata_link *link, unsigned int *class, |
| 3674 | unsigned long deadline) |
| 3675 | { |
| 3676 | const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context); |
| 3677 | bool online; |
| 3678 | int rc; |
| 3679 | |
| 3680 | /* do hardreset */ |
| 3681 | rc = sata_link_hardreset(link, timing, deadline, &online, NULL); |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3682 | return online ? -EAGAIN : rc; |
| 3683 | } |
| 3684 | |
| 3685 | /** |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3686 | * ata_std_postreset - standard postreset callback |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3687 | * @link: the target ata_link |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3688 | * @classes: classes of attached devices |
| 3689 | * |
| 3690 | * This function is invoked after a successful reset. Note that |
| 3691 | * the device might have been reset more than once using |
| 3692 | * different reset methods before postreset is invoked. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3693 | * |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3694 | * LOCKING: |
| 3695 | * Kernel thread context (may sleep) |
| 3696 | */ |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3697 | void ata_std_postreset(struct ata_link *link, unsigned int *classes) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3698 | { |
| 3699 | DPRINTK("ENTER\n"); |
| 3700 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3701 | /* print link status */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3702 | sata_print_link_status(link); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3703 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3704 | DPRINTK("EXIT\n"); |
| 3705 | } |
| 3706 | |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3707 | /** |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3708 | * ata_dev_same_device - Determine whether new ID matches configured device |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3709 | * @dev: device to compare against |
| 3710 | * @new_class: class of the new device |
| 3711 | * @new_id: IDENTIFY page of the new device |
| 3712 | * |
| 3713 | * Compare @new_class and @new_id against @dev and determine |
| 3714 | * whether @dev is the device indicated by @new_class and |
| 3715 | * @new_id. |
| 3716 | * |
| 3717 | * LOCKING: |
| 3718 | * None. |
| 3719 | * |
| 3720 | * RETURNS: |
| 3721 | * 1 if @dev matches @new_class and @new_id, 0 otherwise. |
| 3722 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3723 | static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class, |
| 3724 | const u16 *new_id) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3725 | { |
| 3726 | const u16 *old_id = dev->id; |
Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 3727 | unsigned char model[2][ATA_ID_PROD_LEN + 1]; |
| 3728 | unsigned char serial[2][ATA_ID_SERNO_LEN + 1]; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3729 | |
| 3730 | if (dev->class != new_class) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3731 | ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n", |
| 3732 | dev->class, new_class); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3733 | return 0; |
| 3734 | } |
| 3735 | |
Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 3736 | ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0])); |
| 3737 | ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1])); |
| 3738 | ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0])); |
| 3739 | ata_id_c_string(new_id, serial[1], ATA_ID_SERNO, sizeof(serial[1])); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3740 | |
| 3741 | if (strcmp(model[0], model[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3742 | ata_dev_printk(dev, KERN_INFO, "model number mismatch " |
| 3743 | "'%s' != '%s'\n", model[0], model[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3744 | return 0; |
| 3745 | } |
| 3746 | |
| 3747 | if (strcmp(serial[0], serial[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3748 | ata_dev_printk(dev, KERN_INFO, "serial number mismatch " |
| 3749 | "'%s' != '%s'\n", serial[0], serial[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3750 | return 0; |
| 3751 | } |
| 3752 | |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3753 | return 1; |
| 3754 | } |
| 3755 | |
| 3756 | /** |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3757 | * ata_dev_reread_id - Re-read IDENTIFY data |
Henrik Kretzschmar | 3fae450 | 2007-06-19 10:10:50 +0200 | [diff] [blame] | 3758 | * @dev: target ATA device |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 3759 | * @readid_flags: read ID flags |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3760 | * |
| 3761 | * Re-read IDENTIFY page and make sure @dev is still attached to |
| 3762 | * the port. |
| 3763 | * |
| 3764 | * LOCKING: |
| 3765 | * Kernel thread context (may sleep) |
| 3766 | * |
| 3767 | * RETURNS: |
| 3768 | * 0 on success, negative errno otherwise |
| 3769 | */ |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3770 | int ata_dev_reread_id(struct ata_device *dev, unsigned int readid_flags) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3771 | { |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 3772 | unsigned int class = dev->class; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3773 | u16 *id = (void *)dev->link->ap->sector_buf; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3774 | int rc; |
| 3775 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 3776 | /* read ID data */ |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 3777 | rc = ata_dev_read_id(dev, &class, readid_flags, id); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3778 | if (rc) |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3779 | return rc; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3780 | |
| 3781 | /* is the device still there? */ |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3782 | if (!ata_dev_same_device(dev, class, id)) |
| 3783 | return -ENODEV; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3784 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 3785 | memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS); |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3786 | return 0; |
| 3787 | } |
| 3788 | |
| 3789 | /** |
| 3790 | * ata_dev_revalidate - Revalidate ATA device |
| 3791 | * @dev: device to revalidate |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3792 | * @new_class: new class code |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3793 | * @readid_flags: read ID flags |
| 3794 | * |
| 3795 | * Re-read IDENTIFY page, make sure @dev is still attached to the |
| 3796 | * port and reconfigure it according to the new IDENTIFY page. |
| 3797 | * |
| 3798 | * LOCKING: |
| 3799 | * Kernel thread context (may sleep) |
| 3800 | * |
| 3801 | * RETURNS: |
| 3802 | * 0 on success, negative errno otherwise |
| 3803 | */ |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3804 | int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class, |
| 3805 | unsigned int readid_flags) |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3806 | { |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3807 | u64 n_sectors = dev->n_sectors; |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3808 | int rc; |
| 3809 | |
| 3810 | if (!ata_dev_enabled(dev)) |
| 3811 | return -ENODEV; |
| 3812 | |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3813 | /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */ |
| 3814 | if (ata_class_enabled(new_class) && |
| 3815 | new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) { |
| 3816 | ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n", |
| 3817 | dev->class, new_class); |
| 3818 | rc = -ENODEV; |
| 3819 | goto fail; |
| 3820 | } |
| 3821 | |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3822 | /* re-read ID */ |
| 3823 | rc = ata_dev_reread_id(dev, readid_flags); |
| 3824 | if (rc) |
| 3825 | goto fail; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3826 | |
| 3827 | /* configure device according to the new ID */ |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 3828 | rc = ata_dev_configure(dev); |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3829 | if (rc) |
| 3830 | goto fail; |
| 3831 | |
| 3832 | /* verify n_sectors hasn't changed */ |
Tejun Heo | b54eebd | 2007-08-17 18:46:51 +0900 | [diff] [blame] | 3833 | if (dev->class == ATA_DEV_ATA && n_sectors && |
| 3834 | dev->n_sectors != n_sectors) { |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3835 | ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch " |
| 3836 | "%llu != %llu\n", |
| 3837 | (unsigned long long)n_sectors, |
| 3838 | (unsigned long long)dev->n_sectors); |
Tejun Heo | 8270bec | 2007-08-16 03:02:22 +0900 | [diff] [blame] | 3839 | |
| 3840 | /* restore original n_sectors */ |
| 3841 | dev->n_sectors = n_sectors; |
| 3842 | |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3843 | rc = -ENODEV; |
| 3844 | goto fail; |
| 3845 | } |
| 3846 | |
| 3847 | return 0; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3848 | |
| 3849 | fail: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3850 | ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3851 | return rc; |
| 3852 | } |
| 3853 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3854 | struct ata_blacklist_entry { |
| 3855 | const char *model_num; |
| 3856 | const char *model_rev; |
| 3857 | unsigned long horkage; |
| 3858 | }; |
| 3859 | |
| 3860 | static const struct ata_blacklist_entry ata_device_blacklist [] = { |
| 3861 | /* Devices with DMA related problems under Linux */ |
| 3862 | { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA }, |
| 3863 | { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA }, |
| 3864 | { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA }, |
| 3865 | { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA }, |
| 3866 | { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA }, |
| 3867 | { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA }, |
| 3868 | { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA }, |
| 3869 | { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA }, |
| 3870 | { "CRD-8400B", NULL, ATA_HORKAGE_NODMA }, |
| 3871 | { "CRD-8480B", NULL, ATA_HORKAGE_NODMA }, |
| 3872 | { "CRD-8482B", NULL, ATA_HORKAGE_NODMA }, |
| 3873 | { "CRD-84", NULL, ATA_HORKAGE_NODMA }, |
| 3874 | { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA }, |
| 3875 | { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA }, |
| 3876 | { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA }, |
| 3877 | { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA }, |
| 3878 | { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA }, |
| 3879 | { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA }, |
| 3880 | { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA }, |
| 3881 | { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA }, |
| 3882 | { "CD-532E-A", NULL, ATA_HORKAGE_NODMA }, |
| 3883 | { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA }, |
| 3884 | { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA }, |
| 3885 | { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA }, |
| 3886 | { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA }, |
| 3887 | { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3888 | { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA }, |
| 3889 | { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA }, |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3890 | { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA }, |
Dave Jones | 39f1988 | 2007-05-21 14:31:03 -0400 | [diff] [blame] | 3891 | { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA }, |
Tejun Heo | 3af9a77 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 3892 | /* Odd clown on sil3726/4726 PMPs */ |
| 3893 | { "Config Disk", NULL, ATA_HORKAGE_NODMA | |
| 3894 | ATA_HORKAGE_SKIP_PM }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3895 | |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 3896 | /* Weird ATAPI devices */ |
Tejun Heo | 40a1d53 | 2007-06-27 02:49:38 +0900 | [diff] [blame] | 3897 | { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 }, |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 3898 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3899 | /* Devices we expect to fail diagnostics */ |
| 3900 | |
| 3901 | /* Devices where NCQ should be avoided */ |
| 3902 | /* NCQ is slow */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3903 | { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ }, |
Tejun Heo | 459ad68 | 2007-12-07 12:46:23 +0900 | [diff] [blame] | 3904 | { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, }, |
Tejun Heo | 09125ea | 2007-02-28 15:21:23 +0900 | [diff] [blame] | 3905 | /* http://thread.gmane.org/gmane.linux.ide/14907 */ |
| 3906 | { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ }, |
Paul Rolland | 7acfaf3 | 2007-03-26 21:43:44 -0800 | [diff] [blame] | 3907 | /* NCQ is broken */ |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 3908 | { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ }, |
Alan Cox | 0e3dbc0 | 2007-09-20 15:22:47 +0100 | [diff] [blame] | 3909 | { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ }, |
Paolo Ornati | da6f0ec | 2007-10-04 11:06:56 +0900 | [diff] [blame] | 3910 | { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ }, |
Tejun Heo | e41bd3e | 2007-12-09 19:45:39 +0900 | [diff] [blame] | 3911 | { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ }, |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 3912 | |
Robert Hancock | 36e337d | 2007-04-02 22:05:29 -0600 | [diff] [blame] | 3913 | /* Blacklist entries taken from Silicon Image 3124/3132 |
| 3914 | Windows driver .inf file - also several Linux problem reports */ |
| 3915 | { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, }, |
| 3916 | { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, }, |
| 3917 | { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3918 | |
Tejun Heo | 16c55b0 | 2007-08-29 11:58:33 +0900 | [diff] [blame] | 3919 | /* devices which puke on READ_NATIVE_MAX */ |
| 3920 | { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, }, |
| 3921 | { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA }, |
| 3922 | { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA }, |
| 3923 | { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3924 | |
Alan Cox | 93328e1 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 3925 | /* Devices which report 1 sector over size HPA */ |
| 3926 | { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
| 3927 | { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
Mikko Rapeli | b152fcd | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 3928 | { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
Alan Cox | 93328e1 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 3929 | |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 3930 | /* Devices which get the IVB wrong */ |
| 3931 | { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, }, |
| 3932 | { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, }, |
Peter Missel | e9f3340 | 2007-11-27 18:04:42 +0100 | [diff] [blame] | 3933 | { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, }, |
| 3934 | { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, }, |
| 3935 | { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, }, |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 3936 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3937 | /* End Marker */ |
| 3938 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3939 | }; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 3940 | |
Adrian Bunk | 741b776 | 2007-10-24 18:23:06 +0200 | [diff] [blame] | 3941 | static int strn_pattern_cmp(const char *patt, const char *name, int wildchar) |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 3942 | { |
| 3943 | const char *p; |
| 3944 | int len; |
| 3945 | |
| 3946 | /* |
| 3947 | * check for trailing wildcard: *\0 |
| 3948 | */ |
| 3949 | p = strchr(patt, wildchar); |
| 3950 | if (p && ((*(p + 1)) == 0)) |
| 3951 | len = p - patt; |
Andrew Paprocki | 317b50b | 2007-10-15 15:43:12 -0400 | [diff] [blame] | 3952 | else { |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 3953 | len = strlen(name); |
Andrew Paprocki | 317b50b | 2007-10-15 15:43:12 -0400 | [diff] [blame] | 3954 | if (!len) { |
| 3955 | if (!*patt) |
| 3956 | return 0; |
| 3957 | return -1; |
| 3958 | } |
| 3959 | } |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 3960 | |
| 3961 | return strncmp(patt, name, len); |
| 3962 | } |
| 3963 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 3964 | static unsigned long ata_dev_blacklisted(const struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3965 | { |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 3966 | unsigned char model_num[ATA_ID_PROD_LEN + 1]; |
| 3967 | unsigned char model_rev[ATA_ID_FW_REV_LEN + 1]; |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3968 | const struct ata_blacklist_entry *ad = ata_device_blacklist; |
Albert Lee | 3a77827 | 2006-06-22 13:00:25 +0800 | [diff] [blame] | 3969 | |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 3970 | ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num)); |
| 3971 | ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3973 | while (ad->model_num) { |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 3974 | if (!strn_pattern_cmp(ad->model_num, model_num, '*')) { |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3975 | if (ad->model_rev == NULL) |
| 3976 | return ad->horkage; |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 3977 | if (!strn_pattern_cmp(ad->model_rev, model_rev, '*')) |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3978 | return ad->horkage; |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 3979 | } |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3980 | ad++; |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 3981 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3982 | return 0; |
| 3983 | } |
| 3984 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3985 | static int ata_dma_blacklisted(const struct ata_device *dev) |
| 3986 | { |
| 3987 | /* We don't support polling DMA. |
| 3988 | * DMA blacklist those ATAPI devices with CDB-intr (and use PIO) |
| 3989 | * if the LLDD handles only interrupts in the HSM_ST_LAST state. |
| 3990 | */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3991 | if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) && |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3992 | (dev->flags & ATA_DFLAG_CDB_INTR)) |
| 3993 | return 1; |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 3994 | return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0; |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 3995 | } |
| 3996 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3997 | /** |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 3998 | * ata_is_40wire - check drive side detection |
| 3999 | * @dev: device |
| 4000 | * |
| 4001 | * Perform drive side detection decoding, allowing for device vendors |
| 4002 | * who can't follow the documentation. |
| 4003 | */ |
| 4004 | |
| 4005 | static int ata_is_40wire(struct ata_device *dev) |
| 4006 | { |
| 4007 | if (dev->horkage & ATA_HORKAGE_IVB) |
| 4008 | return ata_drive_40wire_relaxed(dev->id); |
| 4009 | return ata_drive_40wire(dev->id); |
| 4010 | } |
| 4011 | |
| 4012 | /** |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4013 | * cable_is_40wire - 40/80/SATA decider |
| 4014 | * @ap: port to consider |
| 4015 | * |
| 4016 | * This function encapsulates the policy for speed management |
| 4017 | * in one place. At the moment we don't cache the result but |
| 4018 | * there is a good case for setting ap->cbl to the result when |
| 4019 | * we are called with unknown cables (and figuring out if it |
| 4020 | * impacts hotplug at all). |
| 4021 | * |
| 4022 | * Return 1 if the cable appears to be 40 wire. |
| 4023 | */ |
| 4024 | |
| 4025 | static int cable_is_40wire(struct ata_port *ap) |
| 4026 | { |
| 4027 | struct ata_link *link; |
| 4028 | struct ata_device *dev; |
| 4029 | |
| 4030 | /* If the controller thinks we are 40 wire, we are */ |
| 4031 | if (ap->cbl == ATA_CBL_PATA40) |
| 4032 | return 1; |
| 4033 | /* If the controller thinks we are 80 wire, we are */ |
| 4034 | if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA) |
| 4035 | return 0; |
Alan Cox | f792068 | 2008-04-08 16:37:50 +0100 | [diff] [blame^] | 4036 | /* If the system is known to be 40 wire short cable (eg laptop), |
| 4037 | then we allow 80 wire modes even if the drive isn't sure */ |
| 4038 | if (ap->cbl == ATA_CBL_PATA40_SHORT) |
| 4039 | return 0; |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4040 | /* If the controller doesn't know we scan |
| 4041 | |
| 4042 | - Note: We look for all 40 wire detects at this point. |
| 4043 | Any 80 wire detect is taken to be 80 wire cable |
| 4044 | because |
| 4045 | - In many setups only the one drive (slave if present) |
| 4046 | will give a valid detect |
| 4047 | - If you have a non detect capable drive you don't |
| 4048 | want it to colour the choice |
| 4049 | */ |
| 4050 | ata_port_for_each_link(link, ap) { |
| 4051 | ata_link_for_each_dev(dev, link) { |
| 4052 | if (!ata_is_40wire(dev)) |
| 4053 | return 0; |
| 4054 | } |
| 4055 | } |
| 4056 | return 1; |
| 4057 | } |
| 4058 | |
| 4059 | /** |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4060 | * ata_dev_xfermask - Compute supported xfermask of the given device |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4061 | * @dev: Device to compute xfermask for |
| 4062 | * |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 4063 | * Compute supported xfermask of @dev and store it in |
| 4064 | * dev->*_mask. This function is responsible for applying all |
| 4065 | * known limits including host controller limits, device |
| 4066 | * blacklist, etc... |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4067 | * |
| 4068 | * LOCKING: |
| 4069 | * None. |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4070 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4071 | static void ata_dev_xfermask(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4072 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4073 | struct ata_link *link = dev->link; |
| 4074 | struct ata_port *ap = link->ap; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4075 | struct ata_host *host = ap->host; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4076 | unsigned long xfer_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4077 | |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4078 | /* controller modes available */ |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4079 | xfer_mask = ata_pack_xfermask(ap->pio_mask, |
| 4080 | ap->mwdma_mask, ap->udma_mask); |
| 4081 | |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4082 | /* drive modes available */ |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4083 | xfer_mask &= ata_pack_xfermask(dev->pio_mask, |
| 4084 | dev->mwdma_mask, dev->udma_mask); |
| 4085 | xfer_mask &= ata_id_xfermask(dev->id); |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4086 | |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 4087 | /* |
| 4088 | * CFA Advanced TrueIDE timings are not allowed on a shared |
| 4089 | * cable |
| 4090 | */ |
| 4091 | if (ata_dev_pair(dev)) { |
| 4092 | /* No PIO5 or PIO6 */ |
| 4093 | xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5)); |
| 4094 | /* No MWDMA3 or MWDMA 4 */ |
| 4095 | xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3)); |
| 4096 | } |
| 4097 | |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4098 | if (ata_dma_blacklisted(dev)) { |
| 4099 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4100 | ata_dev_printk(dev, KERN_WARNING, |
| 4101 | "device is on DMA blacklist, disabling DMA\n"); |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4102 | } |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4103 | |
Petr Vandrovec | 14d66ab | 2007-03-08 10:12:12 +0100 | [diff] [blame] | 4104 | if ((host->flags & ATA_HOST_SIMPLEX) && |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4105 | host->simplex_claimed && host->simplex_claimed != ap) { |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4106 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
| 4107 | ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by " |
| 4108 | "other device, disabling DMA\n"); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4109 | } |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4110 | |
Jeff Garzik | e424675 | 2007-03-09 09:56:46 -0500 | [diff] [blame] | 4111 | if (ap->flags & ATA_FLAG_NO_IORDY) |
| 4112 | xfer_mask &= ata_pio_mask_no_iordy(dev); |
| 4113 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4114 | if (ap->ops->mode_filter) |
Alan Cox | a76b62c | 2007-03-09 09:34:07 -0500 | [diff] [blame] | 4115 | xfer_mask = ap->ops->mode_filter(dev, xfer_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4116 | |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4117 | /* Apply cable rule here. Don't apply it early because when |
| 4118 | * we handle hot plug the cable type can itself change. |
| 4119 | * Check this last so that we know if the transfer rate was |
| 4120 | * solely limited by the cable. |
| 4121 | * Unknown or 80 wire cables reported host side are checked |
| 4122 | * drive side as well. Cases where we know a 40wire cable |
| 4123 | * is used safely for 80 are not checked here. |
| 4124 | */ |
| 4125 | if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA)) |
| 4126 | /* UDMA/44 or higher would be available */ |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4127 | if (cable_is_40wire(ap)) { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4128 | ata_dev_printk(dev, KERN_WARNING, |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4129 | "limited to UDMA/33 due to 40-wire cable\n"); |
| 4130 | xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA); |
| 4131 | } |
| 4132 | |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4133 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, |
| 4134 | &dev->mwdma_mask, &dev->udma_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4135 | } |
| 4136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4137 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4138 | * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4139 | * @dev: Device to which command will be sent |
| 4140 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4141 | * Issue SET FEATURES - XFER MODE command to device @dev |
| 4142 | * on port @ap. |
| 4143 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4145 | * PCI/etc. bus probe sem. |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4146 | * |
| 4147 | * RETURNS: |
| 4148 | * 0 on success, AC_ERR_* mask otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4149 | */ |
| 4150 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4151 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4152 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4153 | struct ata_taskfile tf; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4154 | unsigned int err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4155 | |
| 4156 | /* set up set-features taskfile */ |
| 4157 | DPRINTK("set features - xfer mode\n"); |
| 4158 | |
Tejun Heo | 464cf17 | 2007-05-27 15:10:40 +0200 | [diff] [blame] | 4159 | /* Some controllers and ATAPI devices show flaky interrupt |
| 4160 | * behavior after setting xfer mode. Use polling instead. |
| 4161 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4162 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4163 | tf.command = ATA_CMD_SET_FEATURES; |
| 4164 | tf.feature = SETFEATURES_XFER; |
Tejun Heo | 464cf17 | 2007-05-27 15:10:40 +0200 | [diff] [blame] | 4165 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING; |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4166 | tf.protocol = ATA_PROT_NODATA; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4167 | /* If we are using IORDY we must send the mode setting command */ |
Jeff Garzik | 11b7bec | 2007-11-23 21:12:14 -0500 | [diff] [blame] | 4168 | if (ata_pio_need_iordy(dev)) |
| 4169 | tf.nsect = dev->xfer_mode; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4170 | /* If the device has IORDY and the controller does not - turn it off */ |
| 4171 | else if (ata_id_has_iordy(dev->id)) |
Jeff Garzik | 11b7bec | 2007-11-23 21:12:14 -0500 | [diff] [blame] | 4172 | tf.nsect = 0x01; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4173 | else /* In the ancient relic department - skip all of this */ |
| 4174 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4175 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4176 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4177 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4178 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4179 | return err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4180 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4181 | /** |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4182 | * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4183 | * @dev: Device to which command will be sent |
| 4184 | * @enable: Whether to enable or disable the feature |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4185 | * @feature: The sector count represents the feature to set |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4186 | * |
| 4187 | * Issue SET FEATURES - SATA FEATURES command to device @dev |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4188 | * on port @ap with sector count |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4189 | * |
| 4190 | * LOCKING: |
| 4191 | * PCI/etc. bus probe sem. |
| 4192 | * |
| 4193 | * RETURNS: |
| 4194 | * 0 on success, AC_ERR_* mask otherwise. |
| 4195 | */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4196 | static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable, |
| 4197 | u8 feature) |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4198 | { |
| 4199 | struct ata_taskfile tf; |
| 4200 | unsigned int err_mask; |
| 4201 | |
| 4202 | /* set up set-features taskfile */ |
| 4203 | DPRINTK("set features - SATA features\n"); |
| 4204 | |
| 4205 | ata_tf_init(dev, &tf); |
| 4206 | tf.command = ATA_CMD_SET_FEATURES; |
| 4207 | tf.feature = enable; |
| 4208 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 4209 | tf.protocol = ATA_PROT_NODATA; |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4210 | tf.nsect = feature; |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4211 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4212 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4213 | |
| 4214 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4215 | return err_mask; |
| 4216 | } |
| 4217 | |
| 4218 | /** |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4219 | * ata_dev_init_params - Issue INIT DEV PARAMS command |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4220 | * @dev: Device to which command will be sent |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 4221 | * @heads: Number of heads (taskfile parameter) |
| 4222 | * @sectors: Number of sectors (taskfile parameter) |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4223 | * |
| 4224 | * LOCKING: |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4225 | * Kernel thread context (may sleep) |
| 4226 | * |
| 4227 | * RETURNS: |
| 4228 | * 0 on success, AC_ERR_* mask otherwise. |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4229 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4230 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 4231 | u16 heads, u16 sectors) |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4232 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4233 | struct ata_taskfile tf; |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4234 | unsigned int err_mask; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4235 | |
| 4236 | /* Number of sectors per track 1-255. Number of heads 1-16 */ |
| 4237 | if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16) |
Albert Lee | 00b6f5e | 2006-03-27 16:39:18 +0800 | [diff] [blame] | 4238 | return AC_ERR_INVALID; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4239 | |
| 4240 | /* set up init dev params taskfile */ |
| 4241 | DPRINTK("init dev params \n"); |
| 4242 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4243 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4244 | tf.command = ATA_CMD_INIT_DEV_PARAMS; |
| 4245 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 4246 | tf.protocol = ATA_PROT_NODATA; |
| 4247 | tf.nsect = sectors; |
| 4248 | tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */ |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4249 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4250 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Alan Cox | 18b2466 | 2007-08-08 14:28:49 +0100 | [diff] [blame] | 4251 | /* A clean abort indicates an original or just out of spec drive |
| 4252 | and we should continue as we issue the setup based on the |
| 4253 | drive reported working geometry */ |
| 4254 | if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED)) |
| 4255 | err_mask = 0; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4256 | |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4257 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4258 | return err_mask; |
Albert Lee | 8bf62ec | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4259 | } |
| 4260 | |
| 4261 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4262 | * ata_sg_clean - Unmap DMA memory associated with command |
| 4263 | * @qc: Command containing DMA memory to be released |
| 4264 | * |
| 4265 | * Unmap all mapped DMA memory associated with this command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | * |
| 4267 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4268 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4269 | */ |
Tejun Heo | 70e6ad0 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 4270 | void ata_sg_clean(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4271 | { |
| 4272 | struct ata_port *ap = qc->ap; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4273 | struct scatterlist *sg = qc->sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4274 | int dir = qc->dma_dir; |
| 4275 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4276 | WARN_ON(sg == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4277 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4278 | VPRINTK("unmapping %u sg elements\n", qc->n_elem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4280 | if (qc->n_elem) |
| 4281 | dma_unmap_sg(ap->dev, sg, qc->n_elem, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4282 | |
| 4283 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4284 | qc->sg = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4285 | } |
| 4286 | |
| 4287 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | * ata_check_atapi_dma - Check whether ATAPI DMA can be supported |
| 4289 | * @qc: Metadata associated with taskfile to check |
| 4290 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4291 | * Allow low-level driver to filter ATA PACKET commands, returning |
| 4292 | * a status indicating whether or not it is OK to use DMA for the |
| 4293 | * supplied PACKET command. |
| 4294 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4295 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4296 | * spin_lock_irqsave(host lock) |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4297 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4298 | * RETURNS: 0 when ATAPI DMA can be used |
| 4299 | * nonzero otherwise |
| 4300 | */ |
| 4301 | int ata_check_atapi_dma(struct ata_queued_cmd *qc) |
| 4302 | { |
| 4303 | struct ata_port *ap = qc->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4304 | |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4305 | /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a |
| 4306 | * few ATAPI devices choke on such DMA requests. |
| 4307 | */ |
| 4308 | if (unlikely(qc->nbytes & 15)) |
| 4309 | return 1; |
Albert Lee | 6f23a31 | 2007-04-02 11:39:25 +0800 | [diff] [blame] | 4310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | if (ap->ops->check_atapi_dma) |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4312 | return ap->ops->check_atapi_dma(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4314 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4315 | } |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4317 | /** |
Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4318 | * ata_std_qc_defer - Check whether a qc needs to be deferred |
| 4319 | * @qc: ATA command in question |
| 4320 | * |
| 4321 | * Non-NCQ commands cannot run with any other command, NCQ or |
| 4322 | * not. As upper layer only knows the queue depth, we are |
| 4323 | * responsible for maintaining exclusion. This function checks |
| 4324 | * whether a new command @qc can be issued. |
| 4325 | * |
| 4326 | * LOCKING: |
| 4327 | * spin_lock_irqsave(host lock) |
| 4328 | * |
| 4329 | * RETURNS: |
| 4330 | * ATA_DEFER_* if deferring is needed, 0 otherwise. |
| 4331 | */ |
| 4332 | int ata_std_qc_defer(struct ata_queued_cmd *qc) |
| 4333 | { |
| 4334 | struct ata_link *link = qc->dev->link; |
| 4335 | |
| 4336 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
| 4337 | if (!ata_tag_valid(link->active_tag)) |
| 4338 | return 0; |
| 4339 | } else { |
| 4340 | if (!ata_tag_valid(link->active_tag) && !link->sactive) |
| 4341 | return 0; |
| 4342 | } |
| 4343 | |
| 4344 | return ATA_DEFER_LINK; |
| 4345 | } |
| 4346 | |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 4347 | void ata_noop_qc_prep(struct ata_queued_cmd *qc) { } |
| 4348 | |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4349 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4350 | * ata_sg_init - Associate command with scatter-gather table. |
| 4351 | * @qc: Command to be associated |
| 4352 | * @sg: Scatter-gather table. |
| 4353 | * @n_elem: Number of elements in s/g table. |
| 4354 | * |
| 4355 | * Initialize the data-related elements of queued_cmd @qc |
| 4356 | * to point to a scatter-gather table @sg, containing @n_elem |
| 4357 | * elements. |
| 4358 | * |
| 4359 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4360 | * spin_lock_irqsave(host lock) |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4361 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4362 | void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg, |
| 4363 | unsigned int n_elem) |
| 4364 | { |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4365 | qc->sg = sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4366 | qc->n_elem = n_elem; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4367 | qc->cursg = qc->sg; |
| 4368 | } |
| 4369 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4370 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4371 | * ata_sg_setup - DMA-map the scatter-gather table associated with a command. |
| 4372 | * @qc: Command with scatter-gather table to be mapped. |
| 4373 | * |
| 4374 | * DMA-map the scatter-gather table associated with queued_cmd @qc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4375 | * |
| 4376 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4377 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4378 | * |
| 4379 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4380 | * Zero on success, negative on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4381 | * |
| 4382 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4383 | static int ata_sg_setup(struct ata_queued_cmd *qc) |
| 4384 | { |
| 4385 | struct ata_port *ap = qc->ap; |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4386 | unsigned int n_elem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4387 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 4388 | VPRINTK("ENTER, ata%u\n", ap->print_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4389 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4390 | n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir); |
| 4391 | if (n_elem < 1) |
| 4392 | return -1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 4393 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4394 | DPRINTK("%d sg elements mapped\n", n_elem); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 4395 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4396 | qc->n_elem = n_elem; |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 4397 | qc->flags |= ATA_QCFLAG_DMAMAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | |
| 4399 | return 0; |
| 4400 | } |
| 4401 | |
| 4402 | /** |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 4403 | * swap_buf_le16 - swap halves of 16-bit words in place |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4404 | * @buf: Buffer to swap |
| 4405 | * @buf_words: Number of 16-bit words in buffer. |
| 4406 | * |
| 4407 | * Swap halves of 16-bit words if needed to convert from |
| 4408 | * little-endian byte order to native cpu byte order, or |
| 4409 | * vice-versa. |
| 4410 | * |
| 4411 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 4412 | * Inherited from caller. |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4413 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | void swap_buf_le16(u16 *buf, unsigned int buf_words) |
| 4415 | { |
| 4416 | #ifdef __BIG_ENDIAN |
| 4417 | unsigned int i; |
| 4418 | |
| 4419 | for (i = 0; i < buf_words; i++) |
| 4420 | buf[i] = le16_to_cpu(buf[i]); |
| 4421 | #endif /* __BIG_ENDIAN */ |
| 4422 | } |
| 4423 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 4424 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4425 | * ata_qc_new - Request an available ATA command, for queueing |
| 4426 | * @ap: Port associated with device @dev |
| 4427 | * @dev: Device from whom we request an available command structure |
| 4428 | * |
| 4429 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4430 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4431 | */ |
| 4432 | |
| 4433 | static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap) |
| 4434 | { |
| 4435 | struct ata_queued_cmd *qc = NULL; |
| 4436 | unsigned int i; |
| 4437 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 4438 | /* no command while frozen */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 4439 | if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 4440 | return NULL; |
| 4441 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 4442 | /* the last tag is reserved for internal command. */ |
| 4443 | for (i = 0; i < ATA_MAX_QUEUE - 1; i++) |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 4444 | if (!test_and_set_bit(i, &ap->qc_allocated)) { |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 4445 | qc = __ata_qc_from_tag(ap, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4446 | break; |
| 4447 | } |
| 4448 | |
| 4449 | if (qc) |
| 4450 | qc->tag = i; |
| 4451 | |
| 4452 | return qc; |
| 4453 | } |
| 4454 | |
| 4455 | /** |
| 4456 | * ata_qc_new_init - Request an available ATA command, and initialize it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4457 | * @dev: Device from whom we request an available command structure |
| 4458 | * |
| 4459 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4460 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4461 | */ |
| 4462 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4463 | struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4464 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4465 | struct ata_port *ap = dev->link->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4466 | struct ata_queued_cmd *qc; |
| 4467 | |
| 4468 | qc = ata_qc_new(ap); |
| 4469 | if (qc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4470 | qc->scsicmd = NULL; |
| 4471 | qc->ap = ap; |
| 4472 | qc->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4473 | |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 4474 | ata_qc_reinit(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4475 | } |
| 4476 | |
| 4477 | return qc; |
| 4478 | } |
| 4479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4480 | /** |
| 4481 | * ata_qc_free - free unused ata_queued_cmd |
| 4482 | * @qc: Command to complete |
| 4483 | * |
| 4484 | * Designed to free unused ata_queued_cmd object |
| 4485 | * in case something prevents using it. |
| 4486 | * |
| 4487 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4488 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4489 | */ |
| 4490 | void ata_qc_free(struct ata_queued_cmd *qc) |
| 4491 | { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4492 | struct ata_port *ap = qc->ap; |
| 4493 | unsigned int tag; |
| 4494 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4495 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4496 | |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4497 | qc->flags = 0; |
| 4498 | tag = qc->tag; |
| 4499 | if (likely(ata_tag_valid(tag))) { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4500 | qc->tag = ATA_TAG_POISON; |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 4501 | clear_bit(tag, &ap->qc_allocated); |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4502 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4503 | } |
| 4504 | |
Tejun Heo | 7601442 | 2006-02-11 15:13:49 +0900 | [diff] [blame] | 4505 | void __ata_qc_complete(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4506 | { |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4507 | struct ata_port *ap = qc->ap; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4508 | struct ata_link *link = qc->dev->link; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4509 | |
Tejun Heo | a463147 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4510 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
| 4511 | WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4512 | |
| 4513 | if (likely(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 4514 | ata_sg_clean(qc); |
| 4515 | |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4516 | /* command should be marked inactive atomically with qc completion */ |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4517 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4518 | link->sactive &= ~(1 << qc->tag); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4519 | if (!link->sactive) |
| 4520 | ap->nr_active_links--; |
| 4521 | } else { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4522 | link->active_tag = ATA_TAG_POISON; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4523 | ap->nr_active_links--; |
| 4524 | } |
| 4525 | |
| 4526 | /* clear exclusive status */ |
| 4527 | if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL && |
| 4528 | ap->excl_link == link)) |
| 4529 | ap->excl_link = NULL; |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4530 | |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4531 | /* atapi: mark qc as inactive to prevent the interrupt handler |
| 4532 | * from completing the command twice later, before the error handler |
| 4533 | * is called. (when rc != 0 and atapi request sense is needed) |
| 4534 | */ |
| 4535 | qc->flags &= ~ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4536 | ap->qc_active &= ~(1 << qc->tag); |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | /* call completion callback */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4539 | qc->complete_fn(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4540 | } |
| 4541 | |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4542 | static void fill_result_tf(struct ata_queued_cmd *qc) |
| 4543 | { |
| 4544 | struct ata_port *ap = qc->ap; |
| 4545 | |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4546 | qc->result_tf.flags = qc->tf.flags; |
Tejun Heo | 22183bf | 2008-04-07 22:47:20 +0900 | [diff] [blame] | 4547 | ap->ops->qc_fill_rtf(qc); |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4548 | } |
| 4549 | |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 4550 | static void ata_verify_xfer(struct ata_queued_cmd *qc) |
| 4551 | { |
| 4552 | struct ata_device *dev = qc->dev; |
| 4553 | |
| 4554 | if (ata_tag_internal(qc->tag)) |
| 4555 | return; |
| 4556 | |
| 4557 | if (ata_is_nodata(qc->tf.protocol)) |
| 4558 | return; |
| 4559 | |
| 4560 | if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol)) |
| 4561 | return; |
| 4562 | |
| 4563 | dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER; |
| 4564 | } |
| 4565 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4566 | /** |
| 4567 | * ata_qc_complete - Complete an active ATA command |
| 4568 | * @qc: Command to complete |
| 4569 | * @err_mask: ATA Status register contents |
| 4570 | * |
| 4571 | * Indicate to the mid and upper layers that an ATA |
| 4572 | * command has completed, with either an ok or not-ok status. |
| 4573 | * |
| 4574 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4575 | * spin_lock_irqsave(host lock) |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4576 | */ |
| 4577 | void ata_qc_complete(struct ata_queued_cmd *qc) |
| 4578 | { |
| 4579 | struct ata_port *ap = qc->ap; |
| 4580 | |
| 4581 | /* XXX: New EH and old EH use different mechanisms to |
| 4582 | * synchronize EH with regular execution path. |
| 4583 | * |
| 4584 | * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED. |
| 4585 | * Normal execution path is responsible for not accessing a |
| 4586 | * failed qc. libata core enforces the rule by returning NULL |
| 4587 | * from ata_qc_from_tag() for failed qcs. |
| 4588 | * |
| 4589 | * Old EH depends on ata_qc_complete() nullifying completion |
| 4590 | * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does |
| 4591 | * not synchronize with interrupt handler. Only PIO task is |
| 4592 | * taken care of. |
| 4593 | */ |
| 4594 | if (ap->ops->error_handler) { |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 4595 | struct ata_device *dev = qc->dev; |
| 4596 | struct ata_eh_info *ehi = &dev->link->eh_info; |
| 4597 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 4598 | WARN_ON(ap->pflags & ATA_PFLAG_FROZEN); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4599 | |
| 4600 | if (unlikely(qc->err_mask)) |
| 4601 | qc->flags |= ATA_QCFLAG_FAILED; |
| 4602 | |
| 4603 | if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) { |
| 4604 | if (!ata_tag_internal(qc->tag)) { |
| 4605 | /* always fill result TF for failed qc */ |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4606 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4607 | ata_qc_schedule_eh(qc); |
| 4608 | return; |
| 4609 | } |
| 4610 | } |
| 4611 | |
| 4612 | /* read result TF if requested */ |
| 4613 | if (qc->flags & ATA_QCFLAG_RESULT_TF) |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4614 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4615 | |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 4616 | /* Some commands need post-processing after successful |
| 4617 | * completion. |
| 4618 | */ |
| 4619 | switch (qc->tf.command) { |
| 4620 | case ATA_CMD_SET_FEATURES: |
| 4621 | if (qc->tf.feature != SETFEATURES_WC_ON && |
| 4622 | qc->tf.feature != SETFEATURES_WC_OFF) |
| 4623 | break; |
| 4624 | /* fall through */ |
| 4625 | case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */ |
| 4626 | case ATA_CMD_SET_MULTI: /* multi_count changed */ |
| 4627 | /* revalidate device */ |
| 4628 | ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE; |
| 4629 | ata_port_schedule_eh(ap); |
| 4630 | break; |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 4631 | |
| 4632 | case ATA_CMD_SLEEP: |
| 4633 | dev->flags |= ATA_DFLAG_SLEEPING; |
| 4634 | break; |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 4635 | } |
| 4636 | |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 4637 | if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER)) |
| 4638 | ata_verify_xfer(qc); |
| 4639 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4640 | __ata_qc_complete(qc); |
| 4641 | } else { |
| 4642 | if (qc->flags & ATA_QCFLAG_EH_SCHEDULED) |
| 4643 | return; |
| 4644 | |
| 4645 | /* read result TF if failed or requested */ |
| 4646 | if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF) |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4647 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4648 | |
| 4649 | __ata_qc_complete(qc); |
| 4650 | } |
| 4651 | } |
| 4652 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4653 | /** |
| 4654 | * ata_qc_complete_multiple - Complete multiple qcs successfully |
| 4655 | * @ap: port in question |
| 4656 | * @qc_active: new qc_active mask |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4657 | * |
| 4658 | * Complete in-flight commands. This functions is meant to be |
| 4659 | * called from low-level driver's interrupt routine to complete |
| 4660 | * requests normally. ap->qc_active and @qc_active is compared |
| 4661 | * and commands are completed accordingly. |
| 4662 | * |
| 4663 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4664 | * spin_lock_irqsave(host lock) |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4665 | * |
| 4666 | * RETURNS: |
| 4667 | * Number of completed commands on success, -errno otherwise. |
| 4668 | */ |
Tejun Heo | 79f97da | 2008-04-07 22:47:20 +0900 | [diff] [blame] | 4669 | int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active) |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4670 | { |
| 4671 | int nr_done = 0; |
| 4672 | u32 done_mask; |
| 4673 | int i; |
| 4674 | |
| 4675 | done_mask = ap->qc_active ^ qc_active; |
| 4676 | |
| 4677 | if (unlikely(done_mask & qc_active)) { |
| 4678 | ata_port_printk(ap, KERN_ERR, "illegal qc_active transition " |
| 4679 | "(%08x->%08x)\n", ap->qc_active, qc_active); |
| 4680 | return -EINVAL; |
| 4681 | } |
| 4682 | |
| 4683 | for (i = 0; i < ATA_MAX_QUEUE; i++) { |
| 4684 | struct ata_queued_cmd *qc; |
| 4685 | |
| 4686 | if (!(done_mask & (1 << i))) |
| 4687 | continue; |
| 4688 | |
| 4689 | if ((qc = ata_qc_from_tag(ap, i))) { |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4690 | ata_qc_complete(qc); |
| 4691 | nr_done++; |
| 4692 | } |
| 4693 | } |
| 4694 | |
| 4695 | return nr_done; |
| 4696 | } |
| 4697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4698 | /** |
| 4699 | * ata_qc_issue - issue taskfile to device |
| 4700 | * @qc: command to issue to device |
| 4701 | * |
| 4702 | * Prepare an ATA command to submission to device. |
| 4703 | * This includes mapping the data into a DMA-able |
| 4704 | * area, filling in the S/G table, and finally |
| 4705 | * writing the taskfile to hardware, starting the command. |
| 4706 | * |
| 4707 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4708 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4709 | */ |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4710 | void ata_qc_issue(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4711 | { |
| 4712 | struct ata_port *ap = qc->ap; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4713 | struct ata_link *link = qc->dev->link; |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 4714 | u8 prot = qc->tf.protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4715 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4716 | /* Make sure only one non-NCQ command is outstanding. The |
| 4717 | * check is skipped for old EH because it reuses active qc to |
| 4718 | * request ATAPI sense. |
| 4719 | */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4720 | WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag)); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4721 | |
Tejun Heo | 1973a02 | 2007-12-05 10:36:13 +0900 | [diff] [blame] | 4722 | if (ata_is_ncq(prot)) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4723 | WARN_ON(link->sactive & (1 << qc->tag)); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4724 | |
| 4725 | if (!link->sactive) |
| 4726 | ap->nr_active_links++; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4727 | link->sactive |= 1 << qc->tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4728 | } else { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4729 | WARN_ON(link->sactive); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4730 | |
| 4731 | ap->nr_active_links++; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4732 | link->active_tag = qc->tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4733 | } |
| 4734 | |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 4735 | qc->flags |= ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4736 | ap->qc_active |= 1 << qc->tag; |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 4737 | |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 4738 | /* We guarantee to LLDs that they will have at least one |
| 4739 | * non-zero sg if the command is a data command. |
| 4740 | */ |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4741 | BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes)); |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 4742 | |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 4743 | if (ata_is_dma(prot) || (ata_is_pio(prot) && |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 4744 | (ap->flags & ATA_FLAG_PIO_DMA))) |
Tejun Heo | 001102d | 2007-12-05 16:43:09 +0900 | [diff] [blame] | 4745 | if (ata_sg_setup(qc)) |
| 4746 | goto sg_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 4748 | /* if device is sleeping, schedule reset and abort the link */ |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 4749 | if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 4750 | link->eh_info.action |= ATA_EH_RESET; |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 4751 | ata_ehi_push_desc(&link->eh_info, "waking up from sleep"); |
| 4752 | ata_link_abort(link); |
| 4753 | return; |
| 4754 | } |
| 4755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4756 | ap->ops->qc_prep(qc); |
| 4757 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4758 | qc->err_mask |= ap->ops->qc_issue(qc); |
| 4759 | if (unlikely(qc->err_mask)) |
| 4760 | goto err; |
| 4761 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4763 | sg_err: |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4764 | qc->err_mask |= AC_ERR_SYSTEM; |
| 4765 | err: |
| 4766 | ata_qc_complete(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | } |
| 4768 | |
| 4769 | /** |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4770 | * sata_scr_valid - test whether SCRs are accessible |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4771 | * @link: ATA link to test SCR accessibility for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4772 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4773 | * Test whether SCRs are accessible for @link. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4774 | * |
| 4775 | * LOCKING: |
| 4776 | * None. |
| 4777 | * |
| 4778 | * RETURNS: |
| 4779 | * 1 if SCRs are accessible, 0 otherwise. |
| 4780 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4781 | int sata_scr_valid(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4782 | { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4783 | struct ata_port *ap = link->ap; |
| 4784 | |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 4785 | return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4786 | } |
| 4787 | |
| 4788 | /** |
| 4789 | * sata_scr_read - read SCR register of the specified port |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4790 | * @link: ATA link to read SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4791 | * @reg: SCR to read |
| 4792 | * @val: Place to store read value |
| 4793 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4794 | * Read SCR register @reg of @link into *@val. This function is |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4795 | * guaranteed to succeed if @link is ap->link, the cable type of |
| 4796 | * the port is SATA and the port implements ->scr_read. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4797 | * |
| 4798 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4799 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4800 | * |
| 4801 | * RETURNS: |
| 4802 | * 0 on success, negative errno on failure. |
| 4803 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4804 | int sata_scr_read(struct ata_link *link, int reg, u32 *val) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4805 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4806 | if (ata_is_host_link(link)) { |
| 4807 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4808 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4809 | if (sata_scr_valid(link)) |
| 4810 | return ap->ops->scr_read(ap, reg, val); |
| 4811 | return -EOPNOTSUPP; |
| 4812 | } |
| 4813 | |
| 4814 | return sata_pmp_scr_read(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4815 | } |
| 4816 | |
| 4817 | /** |
| 4818 | * sata_scr_write - write SCR register of the specified port |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4819 | * @link: ATA link to write SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4820 | * @reg: SCR to write |
| 4821 | * @val: value to write |
| 4822 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4823 | * Write @val to SCR register @reg of @link. This function is |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4824 | * guaranteed to succeed if @link is ap->link, the cable type of |
| 4825 | * the port is SATA and the port implements ->scr_read. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4826 | * |
| 4827 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4828 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4829 | * |
| 4830 | * RETURNS: |
| 4831 | * 0 on success, negative errno on failure. |
| 4832 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4833 | int sata_scr_write(struct ata_link *link, int reg, u32 val) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4834 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4835 | if (ata_is_host_link(link)) { |
| 4836 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4837 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4838 | if (sata_scr_valid(link)) |
| 4839 | return ap->ops->scr_write(ap, reg, val); |
| 4840 | return -EOPNOTSUPP; |
| 4841 | } |
| 4842 | |
| 4843 | return sata_pmp_scr_write(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4844 | } |
| 4845 | |
| 4846 | /** |
| 4847 | * sata_scr_write_flush - write SCR register of the specified port and flush |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4848 | * @link: ATA link to write SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4849 | * @reg: SCR to write |
| 4850 | * @val: value to write |
| 4851 | * |
| 4852 | * This function is identical to sata_scr_write() except that this |
| 4853 | * function performs flush after writing to the register. |
| 4854 | * |
| 4855 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4856 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4857 | * |
| 4858 | * RETURNS: |
| 4859 | * 0 on success, negative errno on failure. |
| 4860 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4861 | int sata_scr_write_flush(struct ata_link *link, int reg, u32 val) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4862 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4863 | if (ata_is_host_link(link)) { |
| 4864 | struct ata_port *ap = link->ap; |
| 4865 | int rc; |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 4866 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4867 | if (sata_scr_valid(link)) { |
| 4868 | rc = ap->ops->scr_write(ap, reg, val); |
| 4869 | if (rc == 0) |
| 4870 | rc = ap->ops->scr_read(ap, reg, &val); |
| 4871 | return rc; |
| 4872 | } |
| 4873 | return -EOPNOTSUPP; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4874 | } |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4875 | |
| 4876 | return sata_pmp_scr_write(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4877 | } |
| 4878 | |
| 4879 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4880 | * ata_link_online - test whether the given link is online |
| 4881 | * @link: ATA link to test |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4882 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4883 | * Test whether @link is online. Note that this function returns |
| 4884 | * 0 if online status of @link cannot be obtained, so |
| 4885 | * ata_link_online(link) != !ata_link_offline(link). |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4886 | * |
| 4887 | * LOCKING: |
| 4888 | * None. |
| 4889 | * |
| 4890 | * RETURNS: |
| 4891 | * 1 if the port online status is available and online. |
| 4892 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4893 | int ata_link_online(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4894 | { |
| 4895 | u32 sstatus; |
| 4896 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4897 | if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 && |
| 4898 | (sstatus & 0xf) == 0x3) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4899 | return 1; |
| 4900 | return 0; |
| 4901 | } |
| 4902 | |
| 4903 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4904 | * ata_link_offline - test whether the given link is offline |
| 4905 | * @link: ATA link to test |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4906 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4907 | * Test whether @link is offline. Note that this function |
| 4908 | * returns 0 if offline status of @link cannot be obtained, so |
| 4909 | * ata_link_online(link) != !ata_link_offline(link). |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4910 | * |
| 4911 | * LOCKING: |
| 4912 | * None. |
| 4913 | * |
| 4914 | * RETURNS: |
| 4915 | * 1 if the port offline status is available and offline. |
| 4916 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4917 | int ata_link_offline(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4918 | { |
| 4919 | u32 sstatus; |
| 4920 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4921 | if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 && |
| 4922 | (sstatus & 0xf) != 0x3) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 4923 | return 1; |
| 4924 | return 0; |
| 4925 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4926 | |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 4927 | #ifdef CONFIG_PM |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4928 | static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg, |
| 4929 | unsigned int action, unsigned int ehi_flags, |
| 4930 | int wait) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 4931 | { |
| 4932 | unsigned long flags; |
| 4933 | int i, rc; |
| 4934 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4935 | for (i = 0; i < host->n_ports; i++) { |
| 4936 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | e3667eb | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 4937 | struct ata_link *link; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 4938 | |
| 4939 | /* Previous resume operation might still be in |
| 4940 | * progress. Wait for PM_PENDING to clear. |
| 4941 | */ |
| 4942 | if (ap->pflags & ATA_PFLAG_PM_PENDING) { |
| 4943 | ata_port_wait_eh(ap); |
| 4944 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 4945 | } |
| 4946 | |
| 4947 | /* request PM ops to EH */ |
| 4948 | spin_lock_irqsave(ap->lock, flags); |
| 4949 | |
| 4950 | ap->pm_mesg = mesg; |
| 4951 | if (wait) { |
| 4952 | rc = 0; |
| 4953 | ap->pm_result = &rc; |
| 4954 | } |
| 4955 | |
| 4956 | ap->pflags |= ATA_PFLAG_PM_PENDING; |
Tejun Heo | e3667eb | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 4957 | __ata_port_for_each_link(link, ap) { |
| 4958 | link->eh_info.action |= action; |
| 4959 | link->eh_info.flags |= ehi_flags; |
| 4960 | } |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 4961 | |
| 4962 | ata_port_schedule_eh(ap); |
| 4963 | |
| 4964 | spin_unlock_irqrestore(ap->lock, flags); |
| 4965 | |
| 4966 | /* wait and check result */ |
| 4967 | if (wait) { |
| 4968 | ata_port_wait_eh(ap); |
| 4969 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 4970 | if (rc) |
| 4971 | return rc; |
| 4972 | } |
| 4973 | } |
| 4974 | |
| 4975 | return 0; |
| 4976 | } |
| 4977 | |
| 4978 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4979 | * ata_host_suspend - suspend host |
| 4980 | * @host: host to suspend |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 4981 | * @mesg: PM message |
| 4982 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4983 | * Suspend @host. Actual operation is performed by EH. This |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 4984 | * function requests EH to perform PM operations and waits for EH |
| 4985 | * to finish. |
| 4986 | * |
| 4987 | * LOCKING: |
| 4988 | * Kernel thread context (may sleep). |
| 4989 | * |
| 4990 | * RETURNS: |
| 4991 | * 0 on success, -errno on failure. |
| 4992 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4993 | int ata_host_suspend(struct ata_host *host, pm_message_t mesg) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 4994 | { |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 4995 | int rc; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 4996 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 4997 | /* |
| 4998 | * disable link pm on all ports before requesting |
| 4999 | * any pm activity |
| 5000 | */ |
| 5001 | ata_lpm_enable(host); |
| 5002 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5003 | rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1); |
Jeff Garzik | 72ad6ec | 2008-02-25 17:31:10 -0500 | [diff] [blame] | 5004 | if (rc == 0) |
| 5005 | host->dev->power.power_state = mesg; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5006 | return rc; |
| 5007 | } |
| 5008 | |
| 5009 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5010 | * ata_host_resume - resume host |
| 5011 | * @host: host to resume |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5012 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5013 | * Resume @host. Actual operation is performed by EH. This |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5014 | * function requests EH to perform PM operations and returns. |
| 5015 | * Note that all resume operations are performed parallely. |
| 5016 | * |
| 5017 | * LOCKING: |
| 5018 | * Kernel thread context (may sleep). |
| 5019 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5020 | void ata_host_resume(struct ata_host *host) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5021 | { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 5022 | ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET, |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5023 | ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0); |
Jeff Garzik | 72ad6ec | 2008-02-25 17:31:10 -0500 | [diff] [blame] | 5024 | host->dev->power.power_state = PMSG_ON; |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 5025 | |
| 5026 | /* reenable link pm */ |
| 5027 | ata_lpm_disable(host); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5028 | } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 5029 | #endif |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5030 | |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5031 | /** |
| 5032 | * ata_port_start - Set port up for dma. |
| 5033 | * @ap: Port to initialize |
| 5034 | * |
| 5035 | * Called just after data structures for each port are |
| 5036 | * initialized. Allocates space for PRD table. |
| 5037 | * |
| 5038 | * May be used as the port_start() entry in ata_port_operations. |
| 5039 | * |
| 5040 | * LOCKING: |
| 5041 | * Inherited from caller. |
| 5042 | */ |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5043 | int ata_port_start(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5044 | { |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5045 | struct device *dev = ap->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5046 | |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5047 | ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, |
| 5048 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5049 | if (!ap->prd) |
| 5050 | return -ENOMEM; |
| 5051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5052 | return 0; |
| 5053 | } |
| 5054 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5055 | /** |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5056 | * ata_dev_init - Initialize an ata_device structure |
| 5057 | * @dev: Device structure to initialize |
| 5058 | * |
| 5059 | * Initialize @dev in preparation for probing. |
| 5060 | * |
| 5061 | * LOCKING: |
| 5062 | * Inherited from caller. |
| 5063 | */ |
| 5064 | void ata_dev_init(struct ata_device *dev) |
| 5065 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5066 | struct ata_link *link = dev->link; |
| 5067 | struct ata_port *ap = link->ap; |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5068 | unsigned long flags; |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5069 | |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5070 | /* SATA spd limit is bound to the first device */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5071 | link->sata_spd_limit = link->hw_sata_spd_limit; |
| 5072 | link->sata_spd = 0; |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5073 | |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5074 | /* High bits of dev->flags are used to record warm plug |
| 5075 | * requests which occur asynchronously. Synchronize using |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5076 | * host lock. |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5077 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5078 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5079 | dev->flags &= ~ATA_DFLAG_INIT_MASK; |
Tejun Heo | 3dcc323 | 2007-09-03 12:20:11 +0900 | [diff] [blame] | 5080 | dev->horkage = 0; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5081 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5082 | |
| 5083 | memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0, |
| 5084 | sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET); |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5085 | dev->pio_mask = UINT_MAX; |
| 5086 | dev->mwdma_mask = UINT_MAX; |
| 5087 | dev->udma_mask = UINT_MAX; |
| 5088 | } |
| 5089 | |
| 5090 | /** |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5091 | * ata_link_init - Initialize an ata_link structure |
| 5092 | * @ap: ATA port link is attached to |
| 5093 | * @link: Link structure to initialize |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5094 | * @pmp: Port multiplier port number |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5095 | * |
| 5096 | * Initialize @link. |
| 5097 | * |
| 5098 | * LOCKING: |
| 5099 | * Kernel thread context (may sleep) |
| 5100 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5101 | void ata_link_init(struct ata_port *ap, struct ata_link *link, int pmp) |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5102 | { |
| 5103 | int i; |
| 5104 | |
| 5105 | /* clear everything except for devices */ |
| 5106 | memset(link, 0, offsetof(struct ata_link, device[0])); |
| 5107 | |
| 5108 | link->ap = ap; |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5109 | link->pmp = pmp; |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5110 | link->active_tag = ATA_TAG_POISON; |
| 5111 | link->hw_sata_spd_limit = UINT_MAX; |
| 5112 | |
| 5113 | /* can't use iterator, ap isn't initialized yet */ |
| 5114 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 5115 | struct ata_device *dev = &link->device[i]; |
| 5116 | |
| 5117 | dev->link = link; |
| 5118 | dev->devno = dev - link->device; |
| 5119 | ata_dev_init(dev); |
| 5120 | } |
| 5121 | } |
| 5122 | |
| 5123 | /** |
| 5124 | * sata_link_init_spd - Initialize link->sata_spd_limit |
| 5125 | * @link: Link to configure sata_spd_limit for |
| 5126 | * |
| 5127 | * Initialize @link->[hw_]sata_spd_limit to the currently |
| 5128 | * configured value. |
| 5129 | * |
| 5130 | * LOCKING: |
| 5131 | * Kernel thread context (may sleep). |
| 5132 | * |
| 5133 | * RETURNS: |
| 5134 | * 0 on success, -errno on failure. |
| 5135 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5136 | int sata_link_init_spd(struct ata_link *link) |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5137 | { |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 5138 | u32 scontrol; |
| 5139 | u8 spd; |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5140 | int rc; |
| 5141 | |
| 5142 | rc = sata_scr_read(link, SCR_CONTROL, &scontrol); |
| 5143 | if (rc) |
| 5144 | return rc; |
| 5145 | |
| 5146 | spd = (scontrol >> 4) & 0xf; |
| 5147 | if (spd) |
| 5148 | link->hw_sata_spd_limit &= (1 << spd) - 1; |
| 5149 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 5150 | ata_force_spd_limit(link); |
| 5151 | |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5152 | link->sata_spd_limit = link->hw_sata_spd_limit; |
| 5153 | |
| 5154 | return 0; |
| 5155 | } |
| 5156 | |
| 5157 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5158 | * ata_port_alloc - allocate and initialize basic ATA port resources |
| 5159 | * @host: ATA host this allocated port belongs to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5160 | * |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5161 | * Allocate and initialize basic ATA port resources. |
| 5162 | * |
| 5163 | * RETURNS: |
| 5164 | * Allocate ATA port on success, NULL on failure. |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5165 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5166 | * LOCKING: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5167 | * Inherited from calling layer (may sleep). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5168 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5169 | struct ata_port *ata_port_alloc(struct ata_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5170 | { |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5171 | struct ata_port *ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5172 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5173 | DPRINTK("ENTER\n"); |
| 5174 | |
| 5175 | ap = kzalloc(sizeof(*ap), GFP_KERNEL); |
| 5176 | if (!ap) |
| 5177 | return NULL; |
| 5178 | |
Tejun Heo | f4d6d00 | 2007-05-01 11:50:15 +0200 | [diff] [blame] | 5179 | ap->pflags |= ATA_PFLAG_INITIALIZING; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5180 | ap->lock = &host->lock; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 5181 | ap->flags = ATA_FLAG_DISABLED; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5182 | ap->print_id = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | ap->ctl = ATA_DEVCTL_OBS; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5184 | ap->host = host; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5185 | ap->dev = host->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5186 | ap->last_ctl = 0xFF; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 5187 | |
| 5188 | #if defined(ATA_VERBOSE_DEBUG) |
| 5189 | /* turn on all debugging levels */ |
| 5190 | ap->msg_enable = 0x00FF; |
| 5191 | #elif defined(ATA_DEBUG) |
| 5192 | ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR; |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 5193 | #else |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 5194 | ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 5195 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5196 | |
Tejun Heo | 127102a | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 5197 | #ifdef CONFIG_ATA_SFF |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 5198 | INIT_DELAYED_WORK(&ap->port_task, ata_pio_task); |
Tejun Heo | 127102a | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 5199 | #endif |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 5200 | INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug); |
| 5201 | INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan); |
Tejun Heo | a72ec4c | 2006-01-23 13:09:37 +0900 | [diff] [blame] | 5202 | INIT_LIST_HEAD(&ap->eh_done_q); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 5203 | init_waitqueue_head(&ap->eh_wait_q); |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 5204 | init_timer_deferrable(&ap->fastdrain_timer); |
| 5205 | ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn; |
| 5206 | ap->fastdrain_timer.data = (unsigned long)ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5207 | |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 5208 | ap->cbl = ATA_CBL_NONE; |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 5209 | |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5210 | ata_link_init(ap, &ap->link, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5211 | |
| 5212 | #ifdef ATA_IRQ_TRAP |
| 5213 | ap->stats.unhandled_irq = 1; |
| 5214 | ap->stats.idle_irq = 1; |
| 5215 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5216 | return ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5217 | } |
| 5218 | |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5219 | static void ata_host_release(struct device *gendev, void *res) |
| 5220 | { |
| 5221 | struct ata_host *host = dev_get_drvdata(gendev); |
| 5222 | int i; |
| 5223 | |
| 5224 | for (i = 0; i < host->n_ports; i++) { |
| 5225 | struct ata_port *ap = host->ports[i]; |
| 5226 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5227 | if (!ap) |
| 5228 | continue; |
| 5229 | |
Tejun Heo | 4911487 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5230 | if (ap->scsi_host) |
Tejun Heo | 1aa506e | 2007-03-09 19:36:12 +0900 | [diff] [blame] | 5231 | scsi_host_put(ap->scsi_host); |
| 5232 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5233 | kfree(ap->pmp_link); |
Tejun Heo | 4911487 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5234 | kfree(ap); |
Tejun Heo | 1aa506e | 2007-03-09 19:36:12 +0900 | [diff] [blame] | 5235 | host->ports[i] = NULL; |
| 5236 | } |
| 5237 | |
Tejun Heo | 1aa56cc | 2007-02-27 22:33:21 +0900 | [diff] [blame] | 5238 | dev_set_drvdata(gendev, NULL); |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5239 | } |
| 5240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5241 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5242 | * ata_host_alloc - allocate and init basic ATA host resources |
| 5243 | * @dev: generic device this host is associated with |
| 5244 | * @max_ports: maximum number of ATA ports associated with this host |
| 5245 | * |
| 5246 | * Allocate and initialize basic ATA host resources. LLD calls |
| 5247 | * this function to allocate a host, initializes it fully and |
| 5248 | * attaches it using ata_host_register(). |
| 5249 | * |
| 5250 | * @max_ports ports are allocated and host->n_ports is |
| 5251 | * initialized to @max_ports. The caller is allowed to decrease |
| 5252 | * host->n_ports before calling ata_host_register(). The unused |
| 5253 | * ports will be automatically freed on registration. |
| 5254 | * |
| 5255 | * RETURNS: |
| 5256 | * Allocate ATA host on success, NULL on failure. |
| 5257 | * |
| 5258 | * LOCKING: |
| 5259 | * Inherited from calling layer (may sleep). |
| 5260 | */ |
| 5261 | struct ata_host *ata_host_alloc(struct device *dev, int max_ports) |
| 5262 | { |
| 5263 | struct ata_host *host; |
| 5264 | size_t sz; |
| 5265 | int i; |
| 5266 | |
| 5267 | DPRINTK("ENTER\n"); |
| 5268 | |
| 5269 | if (!devres_open_group(dev, NULL, GFP_KERNEL)) |
| 5270 | return NULL; |
| 5271 | |
| 5272 | /* alloc a container for our list of ATA ports (buses) */ |
| 5273 | sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *); |
| 5274 | /* alloc a container for our list of ATA ports (buses) */ |
| 5275 | host = devres_alloc(ata_host_release, sz, GFP_KERNEL); |
| 5276 | if (!host) |
| 5277 | goto err_out; |
| 5278 | |
| 5279 | devres_add(dev, host); |
| 5280 | dev_set_drvdata(dev, host); |
| 5281 | |
| 5282 | spin_lock_init(&host->lock); |
| 5283 | host->dev = dev; |
| 5284 | host->n_ports = max_ports; |
| 5285 | |
| 5286 | /* allocate ports bound to this host */ |
| 5287 | for (i = 0; i < max_ports; i++) { |
| 5288 | struct ata_port *ap; |
| 5289 | |
| 5290 | ap = ata_port_alloc(host); |
| 5291 | if (!ap) |
| 5292 | goto err_out; |
| 5293 | |
| 5294 | ap->port_no = i; |
| 5295 | host->ports[i] = ap; |
| 5296 | } |
| 5297 | |
| 5298 | devres_remove_group(dev, NULL); |
| 5299 | return host; |
| 5300 | |
| 5301 | err_out: |
| 5302 | devres_release_group(dev, NULL); |
| 5303 | return NULL; |
| 5304 | } |
| 5305 | |
| 5306 | /** |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5307 | * ata_host_alloc_pinfo - alloc host and init with port_info array |
| 5308 | * @dev: generic device this host is associated with |
| 5309 | * @ppi: array of ATA port_info to initialize host with |
| 5310 | * @n_ports: number of ATA ports attached to this host |
| 5311 | * |
| 5312 | * Allocate ATA host and initialize with info from @ppi. If NULL |
| 5313 | * terminated, @ppi may contain fewer entries than @n_ports. The |
| 5314 | * last entry will be used for the remaining ports. |
| 5315 | * |
| 5316 | * RETURNS: |
| 5317 | * Allocate ATA host on success, NULL on failure. |
| 5318 | * |
| 5319 | * LOCKING: |
| 5320 | * Inherited from calling layer (may sleep). |
| 5321 | */ |
| 5322 | struct ata_host *ata_host_alloc_pinfo(struct device *dev, |
| 5323 | const struct ata_port_info * const * ppi, |
| 5324 | int n_ports) |
| 5325 | { |
| 5326 | const struct ata_port_info *pi; |
| 5327 | struct ata_host *host; |
| 5328 | int i, j; |
| 5329 | |
| 5330 | host = ata_host_alloc(dev, n_ports); |
| 5331 | if (!host) |
| 5332 | return NULL; |
| 5333 | |
| 5334 | for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) { |
| 5335 | struct ata_port *ap = host->ports[i]; |
| 5336 | |
| 5337 | if (ppi[j]) |
| 5338 | pi = ppi[j++]; |
| 5339 | |
| 5340 | ap->pio_mask = pi->pio_mask; |
| 5341 | ap->mwdma_mask = pi->mwdma_mask; |
| 5342 | ap->udma_mask = pi->udma_mask; |
| 5343 | ap->flags |= pi->flags; |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5344 | ap->link.flags |= pi->link_flags; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5345 | ap->ops = pi->port_ops; |
| 5346 | |
| 5347 | if (!host->ops && (pi->port_ops != &ata_dummy_port_ops)) |
| 5348 | host->ops = pi->port_ops; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5349 | } |
| 5350 | |
| 5351 | return host; |
| 5352 | } |
| 5353 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5354 | static void ata_host_stop(struct device *gendev, void *res) |
| 5355 | { |
| 5356 | struct ata_host *host = dev_get_drvdata(gendev); |
| 5357 | int i; |
| 5358 | |
| 5359 | WARN_ON(!(host->flags & ATA_HOST_STARTED)); |
| 5360 | |
| 5361 | for (i = 0; i < host->n_ports; i++) { |
| 5362 | struct ata_port *ap = host->ports[i]; |
| 5363 | |
| 5364 | if (ap->ops->port_stop) |
| 5365 | ap->ops->port_stop(ap); |
| 5366 | } |
| 5367 | |
| 5368 | if (host->ops->host_stop) |
| 5369 | host->ops->host_stop(host); |
| 5370 | } |
| 5371 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5372 | /** |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5373 | * ata_finalize_port_ops - finalize ata_port_operations |
| 5374 | * @ops: ata_port_operations to finalize |
| 5375 | * |
| 5376 | * An ata_port_operations can inherit from another ops and that |
| 5377 | * ops can again inherit from another. This can go on as many |
| 5378 | * times as necessary as long as there is no loop in the |
| 5379 | * inheritance chain. |
| 5380 | * |
| 5381 | * Ops tables are finalized when the host is started. NULL or |
| 5382 | * unspecified entries are inherited from the closet ancestor |
| 5383 | * which has the method and the entry is populated with it. |
| 5384 | * After finalization, the ops table directly points to all the |
| 5385 | * methods and ->inherits is no longer necessary and cleared. |
| 5386 | * |
| 5387 | * Using ATA_OP_NULL, inheriting ops can force a method to NULL. |
| 5388 | * |
| 5389 | * LOCKING: |
| 5390 | * None. |
| 5391 | */ |
| 5392 | static void ata_finalize_port_ops(struct ata_port_operations *ops) |
| 5393 | { |
| 5394 | static spinlock_t lock = SPIN_LOCK_UNLOCKED; |
| 5395 | const struct ata_port_operations *cur; |
| 5396 | void **begin = (void **)ops; |
| 5397 | void **end = (void **)&ops->inherits; |
| 5398 | void **pp; |
| 5399 | |
| 5400 | if (!ops || !ops->inherits) |
| 5401 | return; |
| 5402 | |
| 5403 | spin_lock(&lock); |
| 5404 | |
| 5405 | for (cur = ops->inherits; cur; cur = cur->inherits) { |
| 5406 | void **inherit = (void **)cur; |
| 5407 | |
| 5408 | for (pp = begin; pp < end; pp++, inherit++) |
| 5409 | if (!*pp) |
| 5410 | *pp = *inherit; |
| 5411 | } |
| 5412 | |
| 5413 | for (pp = begin; pp < end; pp++) |
| 5414 | if (IS_ERR(*pp)) |
| 5415 | *pp = NULL; |
| 5416 | |
| 5417 | ops->inherits = NULL; |
| 5418 | |
| 5419 | spin_unlock(&lock); |
| 5420 | } |
| 5421 | |
| 5422 | /** |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5423 | * ata_host_start - start and freeze ports of an ATA host |
| 5424 | * @host: ATA host to start ports for |
| 5425 | * |
| 5426 | * Start and then freeze ports of @host. Started status is |
| 5427 | * recorded in host->flags, so this function can be called |
| 5428 | * multiple times. Ports are guaranteed to get started only |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5429 | * once. If host->ops isn't initialized yet, its set to the |
| 5430 | * first non-dummy port ops. |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5431 | * |
| 5432 | * LOCKING: |
| 5433 | * Inherited from calling layer (may sleep). |
| 5434 | * |
| 5435 | * RETURNS: |
| 5436 | * 0 if all ports are started successfully, -errno otherwise. |
| 5437 | */ |
| 5438 | int ata_host_start(struct ata_host *host) |
| 5439 | { |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5440 | int have_stop = 0; |
| 5441 | void *start_dr = NULL; |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5442 | int i, rc; |
| 5443 | |
| 5444 | if (host->flags & ATA_HOST_STARTED) |
| 5445 | return 0; |
| 5446 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5447 | ata_finalize_port_ops(host->ops); |
| 5448 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5449 | for (i = 0; i < host->n_ports; i++) { |
| 5450 | struct ata_port *ap = host->ports[i]; |
| 5451 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5452 | ata_finalize_port_ops(ap->ops); |
| 5453 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5454 | if (!host->ops && !ata_port_is_dummy(ap)) |
| 5455 | host->ops = ap->ops; |
| 5456 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5457 | if (ap->ops->port_stop) |
| 5458 | have_stop = 1; |
| 5459 | } |
| 5460 | |
| 5461 | if (host->ops->host_stop) |
| 5462 | have_stop = 1; |
| 5463 | |
| 5464 | if (have_stop) { |
| 5465 | start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL); |
| 5466 | if (!start_dr) |
| 5467 | return -ENOMEM; |
| 5468 | } |
| 5469 | |
| 5470 | for (i = 0; i < host->n_ports; i++) { |
| 5471 | struct ata_port *ap = host->ports[i]; |
| 5472 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5473 | if (ap->ops->port_start) { |
| 5474 | rc = ap->ops->port_start(ap); |
| 5475 | if (rc) { |
Alan Cox | 0f9fe9b | 2007-11-30 15:23:16 +0000 | [diff] [blame] | 5476 | if (rc != -ENODEV) |
Andrew Morton | 0f75774 | 2008-01-10 14:33:09 -0800 | [diff] [blame] | 5477 | dev_printk(KERN_ERR, host->dev, |
| 5478 | "failed to start port %d " |
| 5479 | "(errno=%d)\n", i, rc); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5480 | goto err_out; |
| 5481 | } |
| 5482 | } |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5483 | ata_eh_freeze_port(ap); |
| 5484 | } |
| 5485 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5486 | if (start_dr) |
| 5487 | devres_add(host->dev, start_dr); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5488 | host->flags |= ATA_HOST_STARTED; |
| 5489 | return 0; |
| 5490 | |
| 5491 | err_out: |
| 5492 | while (--i >= 0) { |
| 5493 | struct ata_port *ap = host->ports[i]; |
| 5494 | |
| 5495 | if (ap->ops->port_stop) |
| 5496 | ap->ops->port_stop(ap); |
| 5497 | } |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5498 | devres_free(start_dr); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5499 | return rc; |
| 5500 | } |
| 5501 | |
| 5502 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5503 | * ata_sas_host_init - Initialize a host struct |
| 5504 | * @host: host to initialize |
| 5505 | * @dev: device host is attached to |
| 5506 | * @flags: host flags |
| 5507 | * @ops: port_ops |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 5508 | * |
| 5509 | * LOCKING: |
| 5510 | * PCI/etc. bus probe sem. |
| 5511 | * |
| 5512 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5513 | /* KILLME - the only user left is ipr */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5514 | void ata_host_init(struct ata_host *host, struct device *dev, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5515 | unsigned long flags, struct ata_port_operations *ops) |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 5516 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5517 | spin_lock_init(&host->lock); |
| 5518 | host->dev = dev; |
| 5519 | host->flags = flags; |
| 5520 | host->ops = ops; |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 5521 | } |
| 5522 | |
| 5523 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5524 | * ata_host_register - register initialized ATA host |
| 5525 | * @host: ATA host to register |
| 5526 | * @sht: template for SCSI host |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5527 | * |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5528 | * Register initialized ATA host. @host is allocated using |
| 5529 | * ata_host_alloc() and fully initialized by LLD. This function |
| 5530 | * starts ports, registers @host with ATA and SCSI layers and |
| 5531 | * probe registered devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5532 | * |
| 5533 | * LOCKING: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5534 | * Inherited from calling layer (may sleep). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5535 | * |
| 5536 | * RETURNS: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5537 | * 0 on success, -errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5538 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5539 | int ata_host_register(struct ata_host *host, struct scsi_host_template *sht) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5540 | { |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5541 | int i, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5542 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5543 | /* host must have been started */ |
| 5544 | if (!(host->flags & ATA_HOST_STARTED)) { |
| 5545 | dev_printk(KERN_ERR, host->dev, |
| 5546 | "BUG: trying to register unstarted host\n"); |
| 5547 | WARN_ON(1); |
| 5548 | return -EINVAL; |
Alan Cox | 02f076a | 2006-09-26 17:35:32 +0100 | [diff] [blame] | 5549 | } |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5550 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5551 | /* Blow away unused ports. This happens when LLD can't |
| 5552 | * determine the exact number of ports to allocate at |
| 5553 | * allocation time. |
| 5554 | */ |
| 5555 | for (i = host->n_ports; host->ports[i]; i++) |
| 5556 | kfree(host->ports[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5557 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5558 | /* give ports names and add SCSI hosts */ |
| 5559 | for (i = 0; i < host->n_ports; i++) |
| 5560 | host->ports[i]->print_id = ata_print_id++; |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5561 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5562 | rc = ata_scsi_add_hosts(host, sht); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5563 | if (rc) |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5564 | return rc; |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5565 | |
Tejun Heo | fafbae8 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 5566 | /* associate with ACPI nodes */ |
| 5567 | ata_acpi_associate(host); |
| 5568 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5569 | /* set cable, sata_spd_limit and report */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5570 | for (i = 0; i < host->n_ports; i++) { |
| 5571 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5572 | unsigned long xfer_mask; |
| 5573 | |
| 5574 | /* set SATA cable type if still unset */ |
| 5575 | if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA)) |
| 5576 | ap->cbl = ATA_CBL_SATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5577 | |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5578 | /* init sata_spd_limit to the current value */ |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5579 | sata_link_init_spd(&ap->link); |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5580 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 5581 | /* print per-port info to dmesg */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5582 | xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask, |
| 5583 | ap->udma_mask); |
| 5584 | |
Tejun Heo | abf6e8e | 2007-10-09 14:57:25 +0900 | [diff] [blame] | 5585 | if (!ata_port_is_dummy(ap)) { |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 5586 | ata_port_printk(ap, KERN_INFO, |
| 5587 | "%cATA max %s %s\n", |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 5588 | (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P', |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5589 | ata_mode_string(xfer_mask), |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 5590 | ap->link.eh_info.desc); |
Tejun Heo | abf6e8e | 2007-10-09 14:57:25 +0900 | [diff] [blame] | 5591 | ata_ehi_clear_desc(&ap->link.eh_info); |
| 5592 | } else |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5593 | ata_port_printk(ap, KERN_INFO, "DUMMY\n"); |
| 5594 | } |
| 5595 | |
| 5596 | /* perform each probe synchronously */ |
| 5597 | DPRINTK("probe begin\n"); |
| 5598 | for (i = 0; i < host->n_ports; i++) { |
| 5599 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5600 | |
| 5601 | /* probe */ |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 5602 | if (ap->ops->error_handler) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5603 | struct ata_eh_info *ehi = &ap->link.eh_info; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5604 | unsigned long flags; |
| 5605 | |
| 5606 | ata_port_probe(ap); |
| 5607 | |
| 5608 | /* kick EH for boot probing */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5609 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5610 | |
Tejun Heo | b558edd | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 5611 | ehi->probe_mask |= ATA_ALL_DEVICES; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 5612 | ehi->action |= ATA_EH_RESET; |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 5613 | ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5614 | |
Tejun Heo | f4d6d00 | 2007-05-01 11:50:15 +0200 | [diff] [blame] | 5615 | ap->pflags &= ~ATA_PFLAG_INITIALIZING; |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 5616 | ap->pflags |= ATA_PFLAG_LOADING; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5617 | ata_port_schedule_eh(ap); |
| 5618 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5619 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5620 | |
| 5621 | /* wait for EH to finish */ |
| 5622 | ata_port_wait_eh(ap); |
| 5623 | } else { |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 5624 | DPRINTK("ata%u: bus probe begin\n", ap->print_id); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5625 | rc = ata_bus_probe(ap); |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 5626 | DPRINTK("ata%u: bus probe end\n", ap->print_id); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 5627 | |
| 5628 | if (rc) { |
| 5629 | /* FIXME: do something useful here? |
| 5630 | * Current libata behavior will |
| 5631 | * tear down everything when |
| 5632 | * the module is removed |
| 5633 | * or the h/w is unplugged. |
| 5634 | */ |
| 5635 | } |
| 5636 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5637 | } |
| 5638 | |
| 5639 | /* probes are done, now scan each port's disk(s) */ |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5640 | DPRINTK("host probe begin\n"); |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5641 | for (i = 0; i < host->n_ports; i++) { |
| 5642 | struct ata_port *ap = host->ports[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5643 | |
Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 5644 | ata_scsi_scan_host(ap, 1); |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 5645 | ata_lpm_schedule(ap, ap->pm_policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5646 | } |
| 5647 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5648 | return 0; |
| 5649 | } |
| 5650 | |
| 5651 | /** |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5652 | * ata_host_activate - start host, request IRQ and register it |
| 5653 | * @host: target ATA host |
| 5654 | * @irq: IRQ to request |
| 5655 | * @irq_handler: irq_handler used when requesting IRQ |
| 5656 | * @irq_flags: irq_flags used when requesting IRQ |
| 5657 | * @sht: scsi_host_template to use when registering the host |
| 5658 | * |
| 5659 | * After allocating an ATA host and initializing it, most libata |
| 5660 | * LLDs perform three steps to activate the host - start host, |
| 5661 | * request IRQ and register it. This helper takes necessasry |
| 5662 | * arguments and performs the three steps in one go. |
| 5663 | * |
Paul Mundt | 3d46b2e | 2007-11-08 11:14:56 +0900 | [diff] [blame] | 5664 | * An invalid IRQ skips the IRQ registration and expects the host to |
| 5665 | * have set polling mode on the port. In this case, @irq_handler |
| 5666 | * should be NULL. |
| 5667 | * |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5668 | * LOCKING: |
| 5669 | * Inherited from calling layer (may sleep). |
| 5670 | * |
| 5671 | * RETURNS: |
| 5672 | * 0 on success, -errno otherwise. |
| 5673 | */ |
| 5674 | int ata_host_activate(struct ata_host *host, int irq, |
| 5675 | irq_handler_t irq_handler, unsigned long irq_flags, |
| 5676 | struct scsi_host_template *sht) |
| 5677 | { |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 5678 | int i, rc; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5679 | |
| 5680 | rc = ata_host_start(host); |
| 5681 | if (rc) |
| 5682 | return rc; |
| 5683 | |
Paul Mundt | 3d46b2e | 2007-11-08 11:14:56 +0900 | [diff] [blame] | 5684 | /* Special case for polling mode */ |
| 5685 | if (!irq) { |
| 5686 | WARN_ON(irq_handler); |
| 5687 | return ata_host_register(host, sht); |
| 5688 | } |
| 5689 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5690 | rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags, |
| 5691 | dev_driver_string(host->dev), host); |
| 5692 | if (rc) |
| 5693 | return rc; |
| 5694 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 5695 | for (i = 0; i < host->n_ports; i++) |
| 5696 | ata_port_desc(host->ports[i], "irq %d", irq); |
Tejun Heo | 4031826 | 2007-07-03 01:38:47 +0900 | [diff] [blame] | 5697 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5698 | rc = ata_host_register(host, sht); |
| 5699 | /* if failed, just free the IRQ and leave ports alone */ |
| 5700 | if (rc) |
| 5701 | devm_free_irq(host->dev, irq, host); |
| 5702 | |
| 5703 | return rc; |
| 5704 | } |
| 5705 | |
| 5706 | /** |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5707 | * ata_port_detach - Detach ATA port in prepration of device removal |
| 5708 | * @ap: ATA port to be detached |
| 5709 | * |
| 5710 | * Detach all ATA devices and the associated SCSI devices of @ap; |
| 5711 | * then, remove the associated SCSI host. @ap is guaranteed to |
| 5712 | * be quiescent on return from this function. |
| 5713 | * |
| 5714 | * LOCKING: |
| 5715 | * Kernel thread context (may sleep). |
| 5716 | */ |
Adrian Bunk | 741b776 | 2007-10-24 18:23:06 +0200 | [diff] [blame] | 5717 | static void ata_port_detach(struct ata_port *ap) |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5718 | { |
| 5719 | unsigned long flags; |
Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 5720 | struct ata_link *link; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5721 | struct ata_device *dev; |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5722 | |
| 5723 | if (!ap->ops->error_handler) |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 5724 | goto skip_eh; |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5725 | |
| 5726 | /* tell EH we're leaving & flush EH */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5727 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 5728 | ap->pflags |= ATA_PFLAG_UNLOADING; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5729 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5730 | |
| 5731 | ata_port_wait_eh(ap); |
| 5732 | |
Tejun Heo | 7f9ad9b | 2007-12-15 15:05:00 +0900 | [diff] [blame] | 5733 | /* EH is now guaranteed to see UNLOADING - EH context belongs |
| 5734 | * to us. Disable all existing devices. |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5735 | */ |
Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 5736 | ata_port_for_each_link(link, ap) { |
| 5737 | ata_link_for_each_dev(dev, link) |
| 5738 | ata_dev_disable(dev); |
| 5739 | } |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5740 | |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5741 | /* Final freeze & EH. All in-flight commands are aborted. EH |
| 5742 | * will be skipped and retrials will be terminated with bad |
| 5743 | * target. |
| 5744 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5745 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5746 | ata_port_freeze(ap); /* won't be thawed */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5747 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5748 | |
| 5749 | ata_port_wait_eh(ap); |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 5750 | cancel_rearming_delayed_work(&ap->hotplug_task); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5751 | |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 5752 | skip_eh: |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5753 | /* remove the associated SCSI host */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5754 | scsi_remove_host(ap->scsi_host); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 5755 | } |
| 5756 | |
| 5757 | /** |
Tejun Heo | 0529c15 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 5758 | * ata_host_detach - Detach all ports of an ATA host |
| 5759 | * @host: Host to detach |
| 5760 | * |
| 5761 | * Detach all ports of @host. |
| 5762 | * |
| 5763 | * LOCKING: |
| 5764 | * Kernel thread context (may sleep). |
| 5765 | */ |
| 5766 | void ata_host_detach(struct ata_host *host) |
| 5767 | { |
| 5768 | int i; |
| 5769 | |
| 5770 | for (i = 0; i < host->n_ports; i++) |
| 5771 | ata_port_detach(host->ports[i]); |
Tejun Heo | 562f0c2 | 2007-12-15 15:05:01 +0900 | [diff] [blame] | 5772 | |
| 5773 | /* the host is dead now, dissociate ACPI */ |
| 5774 | ata_acpi_dissociate(host); |
Tejun Heo | 0529c15 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 5775 | } |
| 5776 | |
Jeff Garzik | 374b187 | 2005-08-30 05:42:52 -0400 | [diff] [blame] | 5777 | #ifdef CONFIG_PCI |
| 5778 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5779 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5780 | * ata_pci_remove_one - PCI layer callback for device removal |
| 5781 | * @pdev: PCI device that was removed |
| 5782 | * |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5783 | * PCI layer indicates to libata via this hook that hot-unplug or |
| 5784 | * module unload event has occurred. Detach all ports. Resource |
| 5785 | * release is handled via devres. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5786 | * |
| 5787 | * LOCKING: |
| 5788 | * Inherited from PCI layer (may sleep). |
| 5789 | */ |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5790 | void ata_pci_remove_one(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5791 | { |
Jeff Garzik | 2855568 | 2007-10-11 17:12:35 -0400 | [diff] [blame] | 5792 | struct device *dev = &pdev->dev; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5793 | struct ata_host *host = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5794 | |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5795 | ata_host_detach(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5796 | } |
| 5797 | |
| 5798 | /* move to PCI subsystem */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 5799 | 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] | 5800 | { |
| 5801 | unsigned long tmp = 0; |
| 5802 | |
| 5803 | switch (bits->width) { |
| 5804 | case 1: { |
| 5805 | u8 tmp8 = 0; |
| 5806 | pci_read_config_byte(pdev, bits->reg, &tmp8); |
| 5807 | tmp = tmp8; |
| 5808 | break; |
| 5809 | } |
| 5810 | case 2: { |
| 5811 | u16 tmp16 = 0; |
| 5812 | pci_read_config_word(pdev, bits->reg, &tmp16); |
| 5813 | tmp = tmp16; |
| 5814 | break; |
| 5815 | } |
| 5816 | case 4: { |
| 5817 | u32 tmp32 = 0; |
| 5818 | pci_read_config_dword(pdev, bits->reg, &tmp32); |
| 5819 | tmp = tmp32; |
| 5820 | break; |
| 5821 | } |
| 5822 | |
| 5823 | default: |
| 5824 | return -EINVAL; |
| 5825 | } |
| 5826 | |
| 5827 | tmp &= bits->mask; |
| 5828 | |
| 5829 | return (tmp == bits->val) ? 1 : 0; |
| 5830 | } |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5831 | |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 5832 | #ifdef CONFIG_PM |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 5833 | void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5834 | { |
| 5835 | pci_save_state(pdev); |
Tejun Heo | 4c90d97 | 2007-02-20 18:14:48 +0900 | [diff] [blame] | 5836 | pci_disable_device(pdev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5837 | |
Rafael J. Wysocki | 3a2d5b7 | 2008-02-23 19:13:25 +0100 | [diff] [blame] | 5838 | if (mesg.event & PM_EVENT_SLEEP) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5839 | pci_set_power_state(pdev, PCI_D3hot); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5840 | } |
| 5841 | |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 5842 | int ata_pci_device_do_resume(struct pci_dev *pdev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5843 | { |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 5844 | int rc; |
| 5845 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5846 | pci_set_power_state(pdev, PCI_D0); |
| 5847 | pci_restore_state(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 5848 | |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5849 | rc = pcim_enable_device(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 5850 | if (rc) { |
| 5851 | dev_printk(KERN_ERR, &pdev->dev, |
| 5852 | "failed to enable device after resume (%d)\n", rc); |
| 5853 | return rc; |
| 5854 | } |
| 5855 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5856 | pci_set_master(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 5857 | return 0; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5858 | } |
| 5859 | |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 5860 | int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5861 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5862 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5863 | int rc = 0; |
| 5864 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5865 | rc = ata_host_suspend(host, mesg); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5866 | if (rc) |
| 5867 | return rc; |
| 5868 | |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 5869 | ata_pci_device_do_suspend(pdev, mesg); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5870 | |
| 5871 | return 0; |
| 5872 | } |
| 5873 | |
| 5874 | int ata_pci_device_resume(struct pci_dev *pdev) |
| 5875 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5876 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 5877 | int rc; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5878 | |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 5879 | rc = ata_pci_device_do_resume(pdev); |
| 5880 | if (rc == 0) |
| 5881 | ata_host_resume(host); |
| 5882 | return rc; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 5883 | } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 5884 | #endif /* CONFIG_PM */ |
| 5885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5886 | #endif /* CONFIG_PCI */ |
| 5887 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 5888 | static int __init ata_parse_force_one(char **cur, |
| 5889 | struct ata_force_ent *force_ent, |
| 5890 | const char **reason) |
| 5891 | { |
| 5892 | /* FIXME: Currently, there's no way to tag init const data and |
| 5893 | * using __initdata causes build failure on some versions of |
| 5894 | * gcc. Once __initdataconst is implemented, add const to the |
| 5895 | * following structure. |
| 5896 | */ |
| 5897 | static struct ata_force_param force_tbl[] __initdata = { |
| 5898 | { "40c", .cbl = ATA_CBL_PATA40 }, |
| 5899 | { "80c", .cbl = ATA_CBL_PATA80 }, |
| 5900 | { "short40c", .cbl = ATA_CBL_PATA40_SHORT }, |
| 5901 | { "unk", .cbl = ATA_CBL_PATA_UNK }, |
| 5902 | { "ign", .cbl = ATA_CBL_PATA_IGN }, |
| 5903 | { "sata", .cbl = ATA_CBL_SATA }, |
| 5904 | { "1.5Gbps", .spd_limit = 1 }, |
| 5905 | { "3.0Gbps", .spd_limit = 2 }, |
| 5906 | { "noncq", .horkage_on = ATA_HORKAGE_NONCQ }, |
| 5907 | { "ncq", .horkage_off = ATA_HORKAGE_NONCQ }, |
| 5908 | { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) }, |
| 5909 | { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) }, |
| 5910 | { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) }, |
| 5911 | { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) }, |
| 5912 | { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) }, |
| 5913 | { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) }, |
| 5914 | { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) }, |
| 5915 | { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) }, |
| 5916 | { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) }, |
| 5917 | { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) }, |
| 5918 | { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) }, |
| 5919 | { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) }, |
| 5920 | { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 5921 | { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 5922 | { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 5923 | { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 5924 | { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 5925 | { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 5926 | { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 5927 | { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 5928 | { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 5929 | { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 5930 | { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 5931 | { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 5932 | { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 5933 | { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 5934 | { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 5935 | { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 5936 | { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 5937 | { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 5938 | { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 5939 | { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 5940 | { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 5941 | { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) }, |
| 5942 | }; |
| 5943 | char *start = *cur, *p = *cur; |
| 5944 | char *id, *val, *endp; |
| 5945 | const struct ata_force_param *match_fp = NULL; |
| 5946 | int nr_matches = 0, i; |
| 5947 | |
| 5948 | /* find where this param ends and update *cur */ |
| 5949 | while (*p != '\0' && *p != ',') |
| 5950 | p++; |
| 5951 | |
| 5952 | if (*p == '\0') |
| 5953 | *cur = p; |
| 5954 | else |
| 5955 | *cur = p + 1; |
| 5956 | |
| 5957 | *p = '\0'; |
| 5958 | |
| 5959 | /* parse */ |
| 5960 | p = strchr(start, ':'); |
| 5961 | if (!p) { |
| 5962 | val = strstrip(start); |
| 5963 | goto parse_val; |
| 5964 | } |
| 5965 | *p = '\0'; |
| 5966 | |
| 5967 | id = strstrip(start); |
| 5968 | val = strstrip(p + 1); |
| 5969 | |
| 5970 | /* parse id */ |
| 5971 | p = strchr(id, '.'); |
| 5972 | if (p) { |
| 5973 | *p++ = '\0'; |
| 5974 | force_ent->device = simple_strtoul(p, &endp, 10); |
| 5975 | if (p == endp || *endp != '\0') { |
| 5976 | *reason = "invalid device"; |
| 5977 | return -EINVAL; |
| 5978 | } |
| 5979 | } |
| 5980 | |
| 5981 | force_ent->port = simple_strtoul(id, &endp, 10); |
| 5982 | if (p == endp || *endp != '\0') { |
| 5983 | *reason = "invalid port/link"; |
| 5984 | return -EINVAL; |
| 5985 | } |
| 5986 | |
| 5987 | parse_val: |
| 5988 | /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */ |
| 5989 | for (i = 0; i < ARRAY_SIZE(force_tbl); i++) { |
| 5990 | const struct ata_force_param *fp = &force_tbl[i]; |
| 5991 | |
| 5992 | if (strncasecmp(val, fp->name, strlen(val))) |
| 5993 | continue; |
| 5994 | |
| 5995 | nr_matches++; |
| 5996 | match_fp = fp; |
| 5997 | |
| 5998 | if (strcasecmp(val, fp->name) == 0) { |
| 5999 | nr_matches = 1; |
| 6000 | break; |
| 6001 | } |
| 6002 | } |
| 6003 | |
| 6004 | if (!nr_matches) { |
| 6005 | *reason = "unknown value"; |
| 6006 | return -EINVAL; |
| 6007 | } |
| 6008 | if (nr_matches > 1) { |
| 6009 | *reason = "ambigious value"; |
| 6010 | return -EINVAL; |
| 6011 | } |
| 6012 | |
| 6013 | force_ent->param = *match_fp; |
| 6014 | |
| 6015 | return 0; |
| 6016 | } |
| 6017 | |
| 6018 | static void __init ata_parse_force_param(void) |
| 6019 | { |
| 6020 | int idx = 0, size = 1; |
| 6021 | int last_port = -1, last_device = -1; |
| 6022 | char *p, *cur, *next; |
| 6023 | |
| 6024 | /* calculate maximum number of params and allocate force_tbl */ |
| 6025 | for (p = ata_force_param_buf; *p; p++) |
| 6026 | if (*p == ',') |
| 6027 | size++; |
| 6028 | |
| 6029 | ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL); |
| 6030 | if (!ata_force_tbl) { |
| 6031 | printk(KERN_WARNING "ata: failed to extend force table, " |
| 6032 | "libata.force ignored\n"); |
| 6033 | return; |
| 6034 | } |
| 6035 | |
| 6036 | /* parse and populate the table */ |
| 6037 | for (cur = ata_force_param_buf; *cur != '\0'; cur = next) { |
| 6038 | const char *reason = ""; |
| 6039 | struct ata_force_ent te = { .port = -1, .device = -1 }; |
| 6040 | |
| 6041 | next = cur; |
| 6042 | if (ata_parse_force_one(&next, &te, &reason)) { |
| 6043 | printk(KERN_WARNING "ata: failed to parse force " |
| 6044 | "parameter \"%s\" (%s)\n", |
| 6045 | cur, reason); |
| 6046 | continue; |
| 6047 | } |
| 6048 | |
| 6049 | if (te.port == -1) { |
| 6050 | te.port = last_port; |
| 6051 | te.device = last_device; |
| 6052 | } |
| 6053 | |
| 6054 | ata_force_tbl[idx++] = te; |
| 6055 | |
| 6056 | last_port = te.port; |
| 6057 | last_device = te.device; |
| 6058 | } |
| 6059 | |
| 6060 | ata_force_tbl_size = idx; |
| 6061 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6063 | static int __init ata_init(void) |
| 6064 | { |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 6065 | ata_probe_timeout *= HZ; |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6066 | |
| 6067 | ata_parse_force_param(); |
| 6068 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6069 | ata_wq = create_workqueue("ata"); |
| 6070 | if (!ata_wq) |
| 6071 | return -ENOMEM; |
| 6072 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 6073 | ata_aux_wq = create_singlethread_workqueue("ata_aux"); |
| 6074 | if (!ata_aux_wq) { |
| 6075 | destroy_workqueue(ata_wq); |
| 6076 | return -ENOMEM; |
| 6077 | } |
| 6078 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6079 | printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n"); |
| 6080 | return 0; |
| 6081 | } |
| 6082 | |
| 6083 | static void __exit ata_exit(void) |
| 6084 | { |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6085 | kfree(ata_force_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6086 | destroy_workqueue(ata_wq); |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 6087 | destroy_workqueue(ata_aux_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6088 | } |
| 6089 | |
Brian King | a462508 | 2006-11-13 16:32:36 -0600 | [diff] [blame] | 6090 | subsys_initcall(ata_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6091 | module_exit(ata_exit); |
| 6092 | |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 6093 | static unsigned long ratelimit_time; |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 6094 | static DEFINE_SPINLOCK(ata_ratelimit_lock); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 6095 | |
| 6096 | int ata_ratelimit(void) |
| 6097 | { |
| 6098 | int rc; |
| 6099 | unsigned long flags; |
| 6100 | |
| 6101 | spin_lock_irqsave(&ata_ratelimit_lock, flags); |
| 6102 | |
| 6103 | if (time_after(jiffies, ratelimit_time)) { |
| 6104 | rc = 1; |
| 6105 | ratelimit_time = jiffies + (HZ/5); |
| 6106 | } else |
| 6107 | rc = 0; |
| 6108 | |
| 6109 | spin_unlock_irqrestore(&ata_ratelimit_lock, flags); |
| 6110 | |
| 6111 | return rc; |
| 6112 | } |
| 6113 | |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6114 | /** |
| 6115 | * ata_wait_register - wait until register value changes |
| 6116 | * @reg: IO-mapped register |
| 6117 | * @mask: Mask to apply to read register value |
| 6118 | * @val: Wait condition |
| 6119 | * @interval_msec: polling interval in milliseconds |
| 6120 | * @timeout_msec: timeout in milliseconds |
| 6121 | * |
| 6122 | * Waiting for some bits of register to change is a common |
| 6123 | * operation for ATA controllers. This function reads 32bit LE |
| 6124 | * IO-mapped register @reg and tests for the following condition. |
| 6125 | * |
| 6126 | * (*@reg & mask) != val |
| 6127 | * |
| 6128 | * If the condition is met, it returns; otherwise, the process is |
| 6129 | * repeated after @interval_msec until timeout. |
| 6130 | * |
| 6131 | * LOCKING: |
| 6132 | * Kernel thread context (may sleep) |
| 6133 | * |
| 6134 | * RETURNS: |
| 6135 | * The final register value. |
| 6136 | */ |
| 6137 | u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val, |
| 6138 | unsigned long interval_msec, |
| 6139 | unsigned long timeout_msec) |
| 6140 | { |
| 6141 | unsigned long timeout; |
| 6142 | u32 tmp; |
| 6143 | |
| 6144 | tmp = ioread32(reg); |
| 6145 | |
| 6146 | /* Calculate timeout _after_ the first read to make sure |
| 6147 | * preceding writes reach the controller before starting to |
| 6148 | * eat away the timeout. |
| 6149 | */ |
| 6150 | timeout = jiffies + (timeout_msec * HZ) / 1000; |
| 6151 | |
| 6152 | while ((tmp & mask) == val && time_before(jiffies, timeout)) { |
| 6153 | msleep(interval_msec); |
| 6154 | tmp = ioread32(reg); |
| 6155 | } |
| 6156 | |
| 6157 | return tmp; |
| 6158 | } |
| 6159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6160 | /* |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6161 | * Dummy port_ops |
| 6162 | */ |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6163 | static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc) |
| 6164 | { |
| 6165 | return AC_ERR_SYSTEM; |
| 6166 | } |
| 6167 | |
Tejun Heo | 182d7bb | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 6168 | static void ata_dummy_error_handler(struct ata_port *ap) |
| 6169 | { |
| 6170 | /* truly dummy */ |
| 6171 | } |
| 6172 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 6173 | struct ata_port_operations ata_dummy_port_ops = { |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6174 | .qc_prep = ata_noop_qc_prep, |
| 6175 | .qc_issue = ata_dummy_qc_issue, |
Tejun Heo | 182d7bb | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 6176 | .error_handler = ata_dummy_error_handler, |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6177 | }; |
| 6178 | |
Tejun Heo | 21b0ad4 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6179 | const struct ata_port_info ata_dummy_port_info = { |
| 6180 | .port_ops = &ata_dummy_port_ops, |
| 6181 | }; |
| 6182 | |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6183 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6184 | * libata is essentially a library of internal helper functions for |
| 6185 | * low-level ATA host controller drivers. As such, the API/ABI is |
| 6186 | * likely to change as new drivers are added and updated. |
| 6187 | * Do not depend on ABI/API stability. |
| 6188 | */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 6189 | EXPORT_SYMBOL_GPL(sata_deb_timing_normal); |
| 6190 | EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug); |
| 6191 | EXPORT_SYMBOL_GPL(sata_deb_timing_long); |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 6192 | EXPORT_SYMBOL_GPL(ata_base_port_ops); |
| 6193 | EXPORT_SYMBOL_GPL(sata_port_ops); |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6194 | EXPORT_SYMBOL_GPL(ata_dummy_port_ops); |
Tejun Heo | 21b0ad4 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6195 | EXPORT_SYMBOL_GPL(ata_dummy_port_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6196 | EXPORT_SYMBOL_GPL(ata_std_bios_param); |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6197 | EXPORT_SYMBOL_GPL(ata_host_init); |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6198 | EXPORT_SYMBOL_GPL(ata_host_alloc); |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6199 | EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 6200 | EXPORT_SYMBOL_GPL(ata_host_start); |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6201 | EXPORT_SYMBOL_GPL(ata_host_register); |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6202 | EXPORT_SYMBOL_GPL(ata_host_activate); |
Tejun Heo | 0529c15 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 6203 | EXPORT_SYMBOL_GPL(ata_host_detach); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6204 | EXPORT_SYMBOL_GPL(ata_sg_init); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 6205 | EXPORT_SYMBOL_GPL(ata_qc_complete); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6206 | EXPORT_SYMBOL_GPL(ata_qc_complete_multiple); |
Jeff Garzik | 43727fb | 2007-02-25 16:50:52 -0500 | [diff] [blame] | 6207 | EXPORT_SYMBOL_GPL(sata_print_link_status); |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 6208 | EXPORT_SYMBOL_GPL(atapi_cmd_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6209 | EXPORT_SYMBOL_GPL(ata_tf_to_fis); |
| 6210 | EXPORT_SYMBOL_GPL(ata_tf_from_fis); |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 6211 | EXPORT_SYMBOL_GPL(ata_pack_xfermask); |
| 6212 | EXPORT_SYMBOL_GPL(ata_unpack_xfermask); |
| 6213 | EXPORT_SYMBOL_GPL(ata_xfer_mask2mode); |
| 6214 | EXPORT_SYMBOL_GPL(ata_xfer_mode2mask); |
| 6215 | EXPORT_SYMBOL_GPL(ata_xfer_mode2shift); |
| 6216 | EXPORT_SYMBOL_GPL(ata_mode_string); |
| 6217 | EXPORT_SYMBOL_GPL(ata_id_xfermask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6218 | EXPORT_SYMBOL_GPL(ata_port_start); |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 6219 | EXPORT_SYMBOL_GPL(ata_do_set_mode); |
Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 6220 | EXPORT_SYMBOL_GPL(ata_std_qc_defer); |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 6221 | EXPORT_SYMBOL_GPL(ata_noop_qc_prep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6222 | EXPORT_SYMBOL_GPL(ata_port_probe); |
Alan | 10305f0 | 2007-02-20 18:01:59 +0000 | [diff] [blame] | 6223 | EXPORT_SYMBOL_GPL(ata_dev_disable); |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 6224 | EXPORT_SYMBOL_GPL(sata_set_spd); |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 6225 | EXPORT_SYMBOL_GPL(ata_wait_after_reset); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6226 | EXPORT_SYMBOL_GPL(sata_link_debounce); |
| 6227 | EXPORT_SYMBOL_GPL(sata_link_resume); |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 6228 | EXPORT_SYMBOL_GPL(ata_std_prereset); |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6229 | EXPORT_SYMBOL_GPL(sata_link_hardreset); |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 6230 | EXPORT_SYMBOL_GPL(sata_std_hardreset); |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 6231 | EXPORT_SYMBOL_GPL(ata_std_postreset); |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 6232 | EXPORT_SYMBOL_GPL(ata_dev_classify); |
| 6233 | EXPORT_SYMBOL_GPL(ata_dev_pair); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6234 | EXPORT_SYMBOL_GPL(ata_port_disable); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 6235 | EXPORT_SYMBOL_GPL(ata_ratelimit); |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6236 | EXPORT_SYMBOL_GPL(ata_wait_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6237 | EXPORT_SYMBOL_GPL(ata_scsi_ioctl); |
| 6238 | EXPORT_SYMBOL_GPL(ata_scsi_queuecmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6239 | EXPORT_SYMBOL_GPL(ata_scsi_slave_config); |
Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 6240 | EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 6241 | EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6242 | EXPORT_SYMBOL_GPL(sata_scr_valid); |
| 6243 | EXPORT_SYMBOL_GPL(sata_scr_read); |
| 6244 | EXPORT_SYMBOL_GPL(sata_scr_write); |
| 6245 | EXPORT_SYMBOL_GPL(sata_scr_write_flush); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6246 | EXPORT_SYMBOL_GPL(ata_link_online); |
| 6247 | EXPORT_SYMBOL_GPL(ata_link_offline); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6248 | #ifdef CONFIG_PM |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6249 | EXPORT_SYMBOL_GPL(ata_host_suspend); |
| 6250 | EXPORT_SYMBOL_GPL(ata_host_resume); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6251 | #endif /* CONFIG_PM */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 6252 | EXPORT_SYMBOL_GPL(ata_id_string); |
| 6253 | EXPORT_SYMBOL_GPL(ata_id_c_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6254 | EXPORT_SYMBOL_GPL(ata_scsi_simulate); |
| 6255 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 6256 | EXPORT_SYMBOL_GPL(ata_pio_need_iordy); |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 6257 | EXPORT_SYMBOL_GPL(ata_timing_find_mode); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 6258 | EXPORT_SYMBOL_GPL(ata_timing_compute); |
| 6259 | EXPORT_SYMBOL_GPL(ata_timing_merge); |
Tejun Heo | a0f79b9 | 2007-12-18 16:33:05 +0900 | [diff] [blame] | 6260 | EXPORT_SYMBOL_GPL(ata_timing_cycle2mode); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 6261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6262 | #ifdef CONFIG_PCI |
| 6263 | EXPORT_SYMBOL_GPL(pci_test_config_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6264 | EXPORT_SYMBOL_GPL(ata_pci_remove_one); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6265 | #ifdef CONFIG_PM |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6266 | EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend); |
| 6267 | EXPORT_SYMBOL_GPL(ata_pci_device_do_resume); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6268 | EXPORT_SYMBOL_GPL(ata_pci_device_suspend); |
| 6269 | EXPORT_SYMBOL_GPL(ata_pci_device_resume); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6270 | #endif /* CONFIG_PM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6271 | #endif /* CONFIG_PCI */ |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6272 | |
Tejun Heo | b64bbc3 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 6273 | EXPORT_SYMBOL_GPL(__ata_ehi_push_desc); |
| 6274 | EXPORT_SYMBOL_GPL(ata_ehi_push_desc); |
| 6275 | EXPORT_SYMBOL_GPL(ata_ehi_clear_desc); |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 6276 | EXPORT_SYMBOL_GPL(ata_port_desc); |
| 6277 | #ifdef CONFIG_PCI |
| 6278 | EXPORT_SYMBOL_GPL(ata_port_pbar_desc); |
| 6279 | #endif /* CONFIG_PCI */ |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 6280 | EXPORT_SYMBOL_GPL(ata_port_schedule_eh); |
Tejun Heo | dbd8261 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6281 | EXPORT_SYMBOL_GPL(ata_link_abort); |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 6282 | EXPORT_SYMBOL_GPL(ata_port_abort); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 6283 | EXPORT_SYMBOL_GPL(ata_port_freeze); |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 6284 | EXPORT_SYMBOL_GPL(sata_async_notification); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 6285 | EXPORT_SYMBOL_GPL(ata_eh_freeze_port); |
| 6286 | EXPORT_SYMBOL_GPL(ata_eh_thaw_port); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 6287 | EXPORT_SYMBOL_GPL(ata_eh_qc_complete); |
| 6288 | EXPORT_SYMBOL_GPL(ata_eh_qc_retry); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 6289 | EXPORT_SYMBOL_GPL(ata_do_eh); |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame] | 6290 | EXPORT_SYMBOL_GPL(ata_std_error_handler); |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 6291 | |
| 6292 | EXPORT_SYMBOL_GPL(ata_cable_40wire); |
| 6293 | EXPORT_SYMBOL_GPL(ata_cable_80wire); |
| 6294 | EXPORT_SYMBOL_GPL(ata_cable_unknown); |
Tejun Heo | c88f90c | 2007-11-27 19:43:48 +0900 | [diff] [blame] | 6295 | EXPORT_SYMBOL_GPL(ata_cable_ignore); |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 6296 | EXPORT_SYMBOL_GPL(ata_cable_sata); |