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> |
| 49 | #include <linux/highmem.h> |
| 50 | #include <linux/spinlock.h> |
| 51 | #include <linux/blkdev.h> |
| 52 | #include <linux/delay.h> |
| 53 | #include <linux/timer.h> |
| 54 | #include <linux/interrupt.h> |
| 55 | #include <linux/completion.h> |
| 56 | #include <linux/suspend.h> |
| 57 | #include <linux/workqueue.h> |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 58 | #include <linux/jiffies.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 59 | #include <linux/scatterlist.h> |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 60 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <scsi/scsi.h> |
Jeff Garzik | 193515d | 2005-11-07 00:59:37 -0500 | [diff] [blame] | 62 | #include <scsi/scsi_cmnd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #include <scsi/scsi_host.h> |
| 64 | #include <linux/libata.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <asm/semaphore.h> |
| 66 | #include <asm/byteorder.h> |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 67 | #include <linux/cdrom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | #include "libata.h" |
| 70 | |
Jeff Garzik | fda0efc | 2007-01-31 07:43:15 -0500 | [diff] [blame] | 71 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 72 | /* debounce timing parameters in msecs { interval, duration, timeout } */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 73 | const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 }; |
| 74 | const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 }; |
| 75 | const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 }; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 76 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 77 | const struct ata_port_operations ata_base_port_ops = { |
| 78 | .irq_clear = ata_noop_irq_clear, |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame^] | 79 | .prereset = ata_std_prereset, |
| 80 | .hardreset = sata_std_hardreset, |
| 81 | .postreset = ata_std_postreset, |
| 82 | .error_handler = ata_std_error_handler, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | const struct ata_port_operations sata_port_ops = { |
| 86 | .inherits = &ata_base_port_ops, |
| 87 | |
| 88 | .qc_defer = ata_std_qc_defer, |
| 89 | .dev_select = ata_noop_dev_select, |
| 90 | }; |
| 91 | |
| 92 | const struct ata_port_operations sata_pmp_port_ops = { |
| 93 | .inherits = &sata_port_ops, |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame^] | 94 | |
| 95 | .pmp_prereset = sata_pmp_std_prereset, |
| 96 | .pmp_hardreset = sata_pmp_std_hardreset, |
| 97 | .pmp_postreset = sata_pmp_std_postreset, |
| 98 | .error_handler = sata_pmp_error_handler, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | const struct ata_port_operations ata_sff_port_ops = { |
| 102 | .inherits = &ata_base_port_ops, |
| 103 | |
| 104 | .qc_prep = ata_qc_prep, |
| 105 | .qc_issue = ata_qc_issue_prot, |
| 106 | |
| 107 | .freeze = ata_bmdma_freeze, |
| 108 | .thaw = ata_bmdma_thaw, |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame^] | 109 | .softreset = ata_std_softreset, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 110 | .error_handler = ata_bmdma_error_handler, |
| 111 | .post_internal_cmd = ata_bmdma_post_internal_cmd, |
| 112 | |
| 113 | .dev_select = ata_std_dev_select, |
| 114 | .check_status = ata_check_status, |
| 115 | .tf_load = ata_tf_load, |
| 116 | .tf_read = ata_tf_read, |
| 117 | .exec_command = ata_exec_command, |
| 118 | .data_xfer = ata_data_xfer, |
| 119 | .irq_on = ata_irq_on, |
| 120 | |
| 121 | .port_start = ata_sff_port_start, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | const struct ata_port_operations ata_bmdma_port_ops = { |
| 125 | .inherits = &ata_sff_port_ops, |
| 126 | |
| 127 | .mode_filter = ata_pci_default_filter, |
| 128 | |
| 129 | .bmdma_setup = ata_bmdma_setup, |
| 130 | .bmdma_start = ata_bmdma_start, |
| 131 | .bmdma_stop = ata_bmdma_stop, |
| 132 | .bmdma_status = ata_bmdma_status, |
| 133 | .irq_clear = ata_bmdma_irq_clear, |
| 134 | }; |
| 135 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 136 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 137 | u16 heads, u16 sectors); |
| 138 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev); |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 139 | static unsigned int ata_dev_set_feature(struct ata_device *dev, |
| 140 | u8 enable, u8 feature); |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 141 | static void ata_dev_xfermask(struct ata_device *dev); |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 142 | static unsigned long ata_dev_blacklisted(const struct ata_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 144 | unsigned int ata_print_id = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | static struct workqueue_struct *ata_wq; |
| 146 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 147 | struct workqueue_struct *ata_aux_wq; |
| 148 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 149 | struct ata_force_param { |
| 150 | const char *name; |
| 151 | unsigned int cbl; |
| 152 | int spd_limit; |
| 153 | unsigned long xfer_mask; |
| 154 | unsigned int horkage_on; |
| 155 | unsigned int horkage_off; |
| 156 | }; |
| 157 | |
| 158 | struct ata_force_ent { |
| 159 | int port; |
| 160 | int device; |
| 161 | struct ata_force_param param; |
| 162 | }; |
| 163 | |
| 164 | static struct ata_force_ent *ata_force_tbl; |
| 165 | static int ata_force_tbl_size; |
| 166 | |
| 167 | static char ata_force_param_buf[PAGE_SIZE] __initdata; |
Tejun Heo | 7afb422 | 2008-03-09 20:21:53 +0900 | [diff] [blame] | 168 | /* param_buf is thrown away after initialization, disallow read */ |
| 169 | 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] | 170 | MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)"); |
| 171 | |
Jeff Garzik | 418dc1f | 2006-03-11 20:50:08 -0500 | [diff] [blame] | 172 | int atapi_enabled = 1; |
Jeff Garzik | 1623c81 | 2005-08-30 03:37:42 -0400 | [diff] [blame] | 173 | module_param(atapi_enabled, int, 0444); |
| 174 | MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)"); |
| 175 | |
Adrian Bunk | c5c61bd | 2008-02-25 02:07:25 +0200 | [diff] [blame] | 176 | static int atapi_dmadir = 0; |
Albert Lee | 95de719 | 2006-04-04 10:57:18 +0800 | [diff] [blame] | 177 | module_param(atapi_dmadir, int, 0444); |
| 178 | MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)"); |
| 179 | |
Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 180 | int atapi_passthru16 = 1; |
| 181 | module_param(atapi_passthru16, int, 0444); |
| 182 | MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)"); |
| 183 | |
Jeff Garzik | c3c013a | 2006-02-27 22:31:19 -0500 | [diff] [blame] | 184 | int libata_fua = 0; |
| 185 | module_param_named(fua, libata_fua, int, 0444); |
| 186 | MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)"); |
| 187 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 188 | static int ata_ignore_hpa; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 189 | module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644); |
| 190 | MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)"); |
| 191 | |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 192 | static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA; |
| 193 | module_param_named(dma, libata_dma_mask, int, 0444); |
| 194 | MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)"); |
| 195 | |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 196 | static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ; |
| 197 | module_param(ata_probe_timeout, int, 0444); |
| 198 | MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)"); |
| 199 | |
Jeff Garzik | 6ebe9d8 | 2007-10-05 16:28:36 -0400 | [diff] [blame] | 200 | int libata_noacpi = 0; |
Jeff Garzik | d7d0dad | 2007-03-28 01:57:37 -0400 | [diff] [blame] | 201 | module_param_named(noacpi, libata_noacpi, int, 0444); |
Jeff Garzik | 6ebe9d8 | 2007-10-05 16:28:36 -0400 | [diff] [blame] | 202 | 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] | 203 | |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 204 | int libata_allow_tpm = 0; |
| 205 | module_param_named(allow_tpm, libata_allow_tpm, int, 0444); |
| 206 | MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands"); |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | MODULE_AUTHOR("Jeff Garzik"); |
| 209 | MODULE_DESCRIPTION("Library module for ATA devices"); |
| 210 | MODULE_LICENSE("GPL"); |
| 211 | MODULE_VERSION(DRV_VERSION); |
| 212 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 213 | |
| 214 | /** |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 215 | * ata_force_cbl - force cable type according to libata.force |
Randy Dunlap | 4cdfa1b | 2008-02-22 12:21:37 -0800 | [diff] [blame] | 216 | * @ap: ATA port of interest |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 217 | * |
| 218 | * Force cable type according to libata.force and whine about it. |
| 219 | * The last entry which has matching port number is used, so it |
| 220 | * can be specified as part of device force parameters. For |
| 221 | * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the |
| 222 | * same effect. |
| 223 | * |
| 224 | * LOCKING: |
| 225 | * EH context. |
| 226 | */ |
| 227 | void ata_force_cbl(struct ata_port *ap) |
| 228 | { |
| 229 | int i; |
| 230 | |
| 231 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 232 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 233 | |
| 234 | if (fe->port != -1 && fe->port != ap->print_id) |
| 235 | continue; |
| 236 | |
| 237 | if (fe->param.cbl == ATA_CBL_NONE) |
| 238 | continue; |
| 239 | |
| 240 | ap->cbl = fe->param.cbl; |
| 241 | ata_port_printk(ap, KERN_NOTICE, |
| 242 | "FORCE: cable set to %s\n", fe->param.name); |
| 243 | return; |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * ata_force_spd_limit - force SATA spd limit according to libata.force |
| 249 | * @link: ATA link of interest |
| 250 | * |
| 251 | * Force SATA spd limit according to libata.force and whine about |
| 252 | * it. When only the port part is specified (e.g. 1:), the limit |
| 253 | * applies to all links connected to both the host link and all |
| 254 | * fan-out ports connected via PMP. If the device part is |
| 255 | * specified as 0 (e.g. 1.00:), it specifies the first fan-out |
| 256 | * link not the host link. Device number 15 always points to the |
| 257 | * host link whether PMP is attached or not. |
| 258 | * |
| 259 | * LOCKING: |
| 260 | * EH context. |
| 261 | */ |
| 262 | static void ata_force_spd_limit(struct ata_link *link) |
| 263 | { |
| 264 | int linkno, i; |
| 265 | |
| 266 | if (ata_is_host_link(link)) |
| 267 | linkno = 15; |
| 268 | else |
| 269 | linkno = link->pmp; |
| 270 | |
| 271 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 272 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 273 | |
| 274 | if (fe->port != -1 && fe->port != link->ap->print_id) |
| 275 | continue; |
| 276 | |
| 277 | if (fe->device != -1 && fe->device != linkno) |
| 278 | continue; |
| 279 | |
| 280 | if (!fe->param.spd_limit) |
| 281 | continue; |
| 282 | |
| 283 | link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1; |
| 284 | ata_link_printk(link, KERN_NOTICE, |
| 285 | "FORCE: PHY spd limit set to %s\n", fe->param.name); |
| 286 | return; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * ata_force_xfermask - force xfermask according to libata.force |
| 292 | * @dev: ATA device of interest |
| 293 | * |
| 294 | * Force xfer_mask according to libata.force and whine about it. |
| 295 | * For consistency with link selection, device number 15 selects |
| 296 | * the first device connected to the host link. |
| 297 | * |
| 298 | * LOCKING: |
| 299 | * EH context. |
| 300 | */ |
| 301 | static void ata_force_xfermask(struct ata_device *dev) |
| 302 | { |
| 303 | int devno = dev->link->pmp + dev->devno; |
| 304 | int alt_devno = devno; |
| 305 | int i; |
| 306 | |
| 307 | /* allow n.15 for the first device attached to host port */ |
| 308 | if (ata_is_host_link(dev->link) && devno == 0) |
| 309 | alt_devno = 15; |
| 310 | |
| 311 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 312 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 313 | unsigned long pio_mask, mwdma_mask, udma_mask; |
| 314 | |
| 315 | if (fe->port != -1 && fe->port != dev->link->ap->print_id) |
| 316 | continue; |
| 317 | |
| 318 | if (fe->device != -1 && fe->device != devno && |
| 319 | fe->device != alt_devno) |
| 320 | continue; |
| 321 | |
| 322 | if (!fe->param.xfer_mask) |
| 323 | continue; |
| 324 | |
| 325 | ata_unpack_xfermask(fe->param.xfer_mask, |
| 326 | &pio_mask, &mwdma_mask, &udma_mask); |
| 327 | if (udma_mask) |
| 328 | dev->udma_mask = udma_mask; |
| 329 | else if (mwdma_mask) { |
| 330 | dev->udma_mask = 0; |
| 331 | dev->mwdma_mask = mwdma_mask; |
| 332 | } else { |
| 333 | dev->udma_mask = 0; |
| 334 | dev->mwdma_mask = 0; |
| 335 | dev->pio_mask = pio_mask; |
| 336 | } |
| 337 | |
| 338 | ata_dev_printk(dev, KERN_NOTICE, |
| 339 | "FORCE: xfer_mask set to %s\n", fe->param.name); |
| 340 | return; |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * ata_force_horkage - force horkage according to libata.force |
| 346 | * @dev: ATA device of interest |
| 347 | * |
| 348 | * Force horkage according to libata.force and whine about it. |
| 349 | * For consistency with link selection, device number 15 selects |
| 350 | * the first device connected to the host link. |
| 351 | * |
| 352 | * LOCKING: |
| 353 | * EH context. |
| 354 | */ |
| 355 | static void ata_force_horkage(struct ata_device *dev) |
| 356 | { |
| 357 | int devno = dev->link->pmp + dev->devno; |
| 358 | int alt_devno = devno; |
| 359 | int i; |
| 360 | |
| 361 | /* allow n.15 for the first device attached to host port */ |
| 362 | if (ata_is_host_link(dev->link) && devno == 0) |
| 363 | alt_devno = 15; |
| 364 | |
| 365 | for (i = 0; i < ata_force_tbl_size; i++) { |
| 366 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 367 | |
| 368 | if (fe->port != -1 && fe->port != dev->link->ap->print_id) |
| 369 | continue; |
| 370 | |
| 371 | if (fe->device != -1 && fe->device != devno && |
| 372 | fe->device != alt_devno) |
| 373 | continue; |
| 374 | |
| 375 | if (!(~dev->horkage & fe->param.horkage_on) && |
| 376 | !(dev->horkage & fe->param.horkage_off)) |
| 377 | continue; |
| 378 | |
| 379 | dev->horkage |= fe->param.horkage_on; |
| 380 | dev->horkage &= ~fe->param.horkage_off; |
| 381 | |
| 382 | ata_dev_printk(dev, KERN_NOTICE, |
| 383 | "FORCE: horkage modified (%s)\n", fe->param.name); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | /** |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 388 | * atapi_cmd_type - Determine ATAPI command type from SCSI opcode |
| 389 | * @opcode: SCSI opcode |
| 390 | * |
| 391 | * Determine ATAPI command type from @opcode. |
| 392 | * |
| 393 | * LOCKING: |
| 394 | * None. |
| 395 | * |
| 396 | * RETURNS: |
| 397 | * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC} |
| 398 | */ |
| 399 | int atapi_cmd_type(u8 opcode) |
| 400 | { |
| 401 | switch (opcode) { |
| 402 | case GPCMD_READ_10: |
| 403 | case GPCMD_READ_12: |
| 404 | return ATAPI_READ; |
| 405 | |
| 406 | case GPCMD_WRITE_10: |
| 407 | case GPCMD_WRITE_12: |
| 408 | case GPCMD_WRITE_AND_VERIFY_10: |
| 409 | return ATAPI_WRITE; |
| 410 | |
| 411 | case GPCMD_READ_CD: |
| 412 | case GPCMD_READ_CD_MSF: |
| 413 | return ATAPI_READ_CD; |
| 414 | |
Tejun Heo | e52dcc4 | 2008-04-02 17:35:19 +0900 | [diff] [blame] | 415 | case ATA_16: |
| 416 | case ATA_12: |
| 417 | if (atapi_passthru16) |
| 418 | return ATAPI_PASS_THRU; |
| 419 | /* fall thru */ |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 420 | default: |
| 421 | return ATAPI_MISC; |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure |
| 427 | * @tf: Taskfile to convert |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | * @pmp: Port multiplier port |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 429 | * @is_cmd: This FIS is for command |
| 430 | * @fis: Buffer into which data will output |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | * |
| 432 | * Converts a standard ATA taskfile to a Serial ATA |
| 433 | * FIS structure (Register - Host to Device). |
| 434 | * |
| 435 | * LOCKING: |
| 436 | * Inherited from caller. |
| 437 | */ |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 438 | 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] | 439 | { |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 440 | fis[0] = 0x27; /* Register - Host to Device FIS */ |
| 441 | fis[1] = pmp & 0xf; /* Port multiplier number*/ |
| 442 | if (is_cmd) |
| 443 | fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */ |
| 444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | fis[2] = tf->command; |
| 446 | fis[3] = tf->feature; |
| 447 | |
| 448 | fis[4] = tf->lbal; |
| 449 | fis[5] = tf->lbam; |
| 450 | fis[6] = tf->lbah; |
| 451 | fis[7] = tf->device; |
| 452 | |
| 453 | fis[8] = tf->hob_lbal; |
| 454 | fis[9] = tf->hob_lbam; |
| 455 | fis[10] = tf->hob_lbah; |
| 456 | fis[11] = tf->hob_feature; |
| 457 | |
| 458 | fis[12] = tf->nsect; |
| 459 | fis[13] = tf->hob_nsect; |
| 460 | fis[14] = 0; |
| 461 | fis[15] = tf->ctl; |
| 462 | |
| 463 | fis[16] = 0; |
| 464 | fis[17] = 0; |
| 465 | fis[18] = 0; |
| 466 | fis[19] = 0; |
| 467 | } |
| 468 | |
| 469 | /** |
| 470 | * ata_tf_from_fis - Convert SATA FIS to ATA taskfile |
| 471 | * @fis: Buffer from which data will be input |
| 472 | * @tf: Taskfile to output |
| 473 | * |
Mark Lord | e12a1be | 2005-11-12 18:55:45 -0500 | [diff] [blame] | 474 | * Converts a serial ATA FIS structure to a standard ATA taskfile. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | * |
| 476 | * LOCKING: |
| 477 | * Inherited from caller. |
| 478 | */ |
| 479 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 480 | void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
| 482 | tf->command = fis[2]; /* status */ |
| 483 | tf->feature = fis[3]; /* error */ |
| 484 | |
| 485 | tf->lbal = fis[4]; |
| 486 | tf->lbam = fis[5]; |
| 487 | tf->lbah = fis[6]; |
| 488 | tf->device = fis[7]; |
| 489 | |
| 490 | tf->hob_lbal = fis[8]; |
| 491 | tf->hob_lbam = fis[9]; |
| 492 | tf->hob_lbah = fis[10]; |
| 493 | |
| 494 | tf->nsect = fis[12]; |
| 495 | tf->hob_nsect = fis[13]; |
| 496 | } |
| 497 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 498 | static const u8 ata_rw_cmds[] = { |
| 499 | /* pio multi */ |
| 500 | ATA_CMD_READ_MULTI, |
| 501 | ATA_CMD_WRITE_MULTI, |
| 502 | ATA_CMD_READ_MULTI_EXT, |
| 503 | ATA_CMD_WRITE_MULTI_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 504 | 0, |
| 505 | 0, |
| 506 | 0, |
| 507 | ATA_CMD_WRITE_MULTI_FUA_EXT, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 508 | /* pio */ |
| 509 | ATA_CMD_PIO_READ, |
| 510 | ATA_CMD_PIO_WRITE, |
| 511 | ATA_CMD_PIO_READ_EXT, |
| 512 | ATA_CMD_PIO_WRITE_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 513 | 0, |
| 514 | 0, |
| 515 | 0, |
| 516 | 0, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 517 | /* dma */ |
| 518 | ATA_CMD_READ, |
| 519 | ATA_CMD_WRITE, |
| 520 | ATA_CMD_READ_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 521 | ATA_CMD_WRITE_EXT, |
| 522 | 0, |
| 523 | 0, |
| 524 | 0, |
| 525 | ATA_CMD_WRITE_FUA_EXT |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 526 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
| 528 | /** |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 529 | * ata_rwcmd_protocol - set taskfile r/w commands and protocol |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 530 | * @tf: command to examine and configure |
| 531 | * @dev: device tf belongs to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | * |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 533 | * Examine the device configuration and tf->flags to calculate |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 534 | * the proper read/write commands and protocol to use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | * |
| 536 | * LOCKING: |
| 537 | * caller. |
| 538 | */ |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 539 | 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] | 540 | { |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 541 | u8 cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 543 | int index, fua, lba48, write; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 544 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 545 | fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 546 | lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0; |
| 547 | write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 549 | if (dev->flags & ATA_DFLAG_PIO) { |
| 550 | tf->protocol = ATA_PROT_PIO; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 551 | index = dev->multi_count ? 0 : 8; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 552 | } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) { |
Alan Cox | 8d238e0 | 2006-01-17 20:50:31 +0000 | [diff] [blame] | 553 | /* Unable to use DMA due to host limitation */ |
| 554 | tf->protocol = ATA_PROT_PIO; |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 555 | index = dev->multi_count ? 0 : 8; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 556 | } else { |
| 557 | tf->protocol = ATA_PROT_DMA; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 558 | index = 16; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 559 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 561 | cmd = ata_rw_cmds[index + fua + lba48 + write]; |
| 562 | if (cmd) { |
| 563 | tf->command = cmd; |
| 564 | return 0; |
| 565 | } |
| 566 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 569 | /** |
Tejun Heo | 35b649f | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 570 | * ata_tf_read_block - Read block address from ATA taskfile |
| 571 | * @tf: ATA taskfile of interest |
| 572 | * @dev: ATA device @tf belongs to |
| 573 | * |
| 574 | * LOCKING: |
| 575 | * None. |
| 576 | * |
| 577 | * Read block address from @tf. This function can handle all |
| 578 | * three address formats - LBA, LBA48 and CHS. tf->protocol and |
| 579 | * flags select the address format to use. |
| 580 | * |
| 581 | * RETURNS: |
| 582 | * Block address read from @tf. |
| 583 | */ |
| 584 | u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev) |
| 585 | { |
| 586 | u64 block = 0; |
| 587 | |
| 588 | if (tf->flags & ATA_TFLAG_LBA) { |
| 589 | if (tf->flags & ATA_TFLAG_LBA48) { |
| 590 | block |= (u64)tf->hob_lbah << 40; |
| 591 | block |= (u64)tf->hob_lbam << 32; |
| 592 | block |= tf->hob_lbal << 24; |
| 593 | } else |
| 594 | block |= (tf->device & 0xf) << 24; |
| 595 | |
| 596 | block |= tf->lbah << 16; |
| 597 | block |= tf->lbam << 8; |
| 598 | block |= tf->lbal; |
| 599 | } else { |
| 600 | u32 cyl, head, sect; |
| 601 | |
| 602 | cyl = tf->lbam | (tf->lbah << 8); |
| 603 | head = tf->device & 0xf; |
| 604 | sect = tf->lbal; |
| 605 | |
| 606 | block = (cyl * dev->heads + head) * dev->sectors + sect; |
| 607 | } |
| 608 | |
| 609 | return block; |
| 610 | } |
| 611 | |
| 612 | /** |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 613 | * ata_build_rw_tf - Build ATA taskfile for given read/write request |
| 614 | * @tf: Target ATA taskfile |
| 615 | * @dev: ATA device @tf belongs to |
| 616 | * @block: Block address |
| 617 | * @n_block: Number of blocks |
| 618 | * @tf_flags: RW/FUA etc... |
| 619 | * @tag: tag |
| 620 | * |
| 621 | * LOCKING: |
| 622 | * None. |
| 623 | * |
| 624 | * Build ATA taskfile @tf for read/write request described by |
| 625 | * @block, @n_block, @tf_flags and @tag on @dev. |
| 626 | * |
| 627 | * RETURNS: |
| 628 | * |
| 629 | * 0 on success, -ERANGE if the request is too large for @dev, |
| 630 | * -EINVAL if the request is invalid. |
| 631 | */ |
| 632 | int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev, |
| 633 | u64 block, u32 n_block, unsigned int tf_flags, |
| 634 | unsigned int tag) |
| 635 | { |
| 636 | tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 637 | tf->flags |= tf_flags; |
| 638 | |
Tejun Heo | 6d1245b | 2007-02-20 23:20:27 +0900 | [diff] [blame] | 639 | if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) { |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 640 | /* yay, NCQ */ |
| 641 | if (!lba_48_ok(block, n_block)) |
| 642 | return -ERANGE; |
| 643 | |
| 644 | tf->protocol = ATA_PROT_NCQ; |
| 645 | tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48; |
| 646 | |
| 647 | if (tf->flags & ATA_TFLAG_WRITE) |
| 648 | tf->command = ATA_CMD_FPDMA_WRITE; |
| 649 | else |
| 650 | tf->command = ATA_CMD_FPDMA_READ; |
| 651 | |
| 652 | tf->nsect = tag << 3; |
| 653 | tf->hob_feature = (n_block >> 8) & 0xff; |
| 654 | tf->feature = n_block & 0xff; |
| 655 | |
| 656 | tf->hob_lbah = (block >> 40) & 0xff; |
| 657 | tf->hob_lbam = (block >> 32) & 0xff; |
| 658 | tf->hob_lbal = (block >> 24) & 0xff; |
| 659 | tf->lbah = (block >> 16) & 0xff; |
| 660 | tf->lbam = (block >> 8) & 0xff; |
| 661 | tf->lbal = block & 0xff; |
| 662 | |
| 663 | tf->device = 1 << 6; |
| 664 | if (tf->flags & ATA_TFLAG_FUA) |
| 665 | tf->device |= 1 << 7; |
| 666 | } else if (dev->flags & ATA_DFLAG_LBA) { |
| 667 | tf->flags |= ATA_TFLAG_LBA; |
| 668 | |
| 669 | if (lba_28_ok(block, n_block)) { |
| 670 | /* use LBA28 */ |
| 671 | tf->device |= (block >> 24) & 0xf; |
| 672 | } else if (lba_48_ok(block, n_block)) { |
| 673 | if (!(dev->flags & ATA_DFLAG_LBA48)) |
| 674 | return -ERANGE; |
| 675 | |
| 676 | /* use LBA48 */ |
| 677 | tf->flags |= ATA_TFLAG_LBA48; |
| 678 | |
| 679 | tf->hob_nsect = (n_block >> 8) & 0xff; |
| 680 | |
| 681 | tf->hob_lbah = (block >> 40) & 0xff; |
| 682 | tf->hob_lbam = (block >> 32) & 0xff; |
| 683 | tf->hob_lbal = (block >> 24) & 0xff; |
| 684 | } else |
| 685 | /* request too large even for LBA48 */ |
| 686 | return -ERANGE; |
| 687 | |
| 688 | if (unlikely(ata_rwcmd_protocol(tf, dev) < 0)) |
| 689 | return -EINVAL; |
| 690 | |
| 691 | tf->nsect = n_block & 0xff; |
| 692 | |
| 693 | tf->lbah = (block >> 16) & 0xff; |
| 694 | tf->lbam = (block >> 8) & 0xff; |
| 695 | tf->lbal = block & 0xff; |
| 696 | |
| 697 | tf->device |= ATA_LBA; |
| 698 | } else { |
| 699 | /* CHS */ |
| 700 | u32 sect, head, cyl, track; |
| 701 | |
| 702 | /* The request -may- be too large for CHS addressing. */ |
| 703 | if (!lba_28_ok(block, n_block)) |
| 704 | return -ERANGE; |
| 705 | |
| 706 | if (unlikely(ata_rwcmd_protocol(tf, dev) < 0)) |
| 707 | return -EINVAL; |
| 708 | |
| 709 | /* Convert LBA to CHS */ |
| 710 | track = (u32)block / dev->sectors; |
| 711 | cyl = track / dev->heads; |
| 712 | head = track % dev->heads; |
| 713 | sect = (u32)block % dev->sectors + 1; |
| 714 | |
| 715 | DPRINTK("block %u track %u cyl %u head %u sect %u\n", |
| 716 | (u32)block, track, cyl, head, sect); |
| 717 | |
| 718 | /* Check whether the converted CHS can fit. |
| 719 | Cylinder: 0-65535 |
| 720 | Head: 0-15 |
| 721 | Sector: 1-255*/ |
| 722 | if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect)) |
| 723 | return -ERANGE; |
| 724 | |
| 725 | tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */ |
| 726 | tf->lbal = sect; |
| 727 | tf->lbam = cyl; |
| 728 | tf->lbah = cyl >> 8; |
| 729 | tf->device |= head; |
| 730 | } |
| 731 | |
| 732 | return 0; |
| 733 | } |
| 734 | |
| 735 | /** |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 736 | * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask |
| 737 | * @pio_mask: pio_mask |
| 738 | * @mwdma_mask: mwdma_mask |
| 739 | * @udma_mask: udma_mask |
| 740 | * |
| 741 | * Pack @pio_mask, @mwdma_mask and @udma_mask into a single |
| 742 | * unsigned int xfer_mask. |
| 743 | * |
| 744 | * LOCKING: |
| 745 | * None. |
| 746 | * |
| 747 | * RETURNS: |
| 748 | * Packed xfer_mask. |
| 749 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 750 | unsigned long ata_pack_xfermask(unsigned long pio_mask, |
| 751 | unsigned long mwdma_mask, |
| 752 | unsigned long udma_mask) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 753 | { |
| 754 | return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) | |
| 755 | ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) | |
| 756 | ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA); |
| 757 | } |
| 758 | |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 759 | /** |
| 760 | * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks |
| 761 | * @xfer_mask: xfer_mask to unpack |
| 762 | * @pio_mask: resulting pio_mask |
| 763 | * @mwdma_mask: resulting mwdma_mask |
| 764 | * @udma_mask: resulting udma_mask |
| 765 | * |
| 766 | * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask. |
| 767 | * Any NULL distination masks will be ignored. |
| 768 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 769 | void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask, |
| 770 | unsigned long *mwdma_mask, unsigned long *udma_mask) |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 771 | { |
| 772 | if (pio_mask) |
| 773 | *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO; |
| 774 | if (mwdma_mask) |
| 775 | *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA; |
| 776 | if (udma_mask) |
| 777 | *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA; |
| 778 | } |
| 779 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 780 | static const struct ata_xfer_ent { |
Tejun Heo | be9a50c | 2006-03-31 22:48:52 +0900 | [diff] [blame] | 781 | int shift, bits; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 782 | u8 base; |
| 783 | } ata_xfer_tbl[] = { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 784 | { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 }, |
| 785 | { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 }, |
| 786 | { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 }, |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 787 | { -1, }, |
| 788 | }; |
| 789 | |
| 790 | /** |
| 791 | * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask |
| 792 | * @xfer_mask: xfer_mask of interest |
| 793 | * |
| 794 | * Return matching XFER_* value for @xfer_mask. Only the highest |
| 795 | * bit of @xfer_mask is considered. |
| 796 | * |
| 797 | * LOCKING: |
| 798 | * None. |
| 799 | * |
| 800 | * RETURNS: |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 801 | * Matching XFER_* value, 0xff if no match found. |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 802 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 803 | u8 ata_xfer_mask2mode(unsigned long xfer_mask) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 804 | { |
| 805 | int highbit = fls(xfer_mask) - 1; |
| 806 | const struct ata_xfer_ent *ent; |
| 807 | |
| 808 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 809 | if (highbit >= ent->shift && highbit < ent->shift + ent->bits) |
| 810 | return ent->base + highbit - ent->shift; |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 811 | return 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | /** |
| 815 | * ata_xfer_mode2mask - Find matching xfer_mask for XFER_* |
| 816 | * @xfer_mode: XFER_* of interest |
| 817 | * |
| 818 | * Return matching xfer_mask for @xfer_mode. |
| 819 | * |
| 820 | * LOCKING: |
| 821 | * None. |
| 822 | * |
| 823 | * RETURNS: |
| 824 | * Matching xfer_mask, 0 if no match found. |
| 825 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 826 | unsigned long ata_xfer_mode2mask(u8 xfer_mode) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 827 | { |
| 828 | const struct ata_xfer_ent *ent; |
| 829 | |
| 830 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 831 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 832 | return ((2 << (ent->shift + xfer_mode - ent->base)) - 1) |
| 833 | & ~((1 << ent->shift) - 1); |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 834 | return 0; |
| 835 | } |
| 836 | |
| 837 | /** |
| 838 | * ata_xfer_mode2shift - Find matching xfer_shift for XFER_* |
| 839 | * @xfer_mode: XFER_* of interest |
| 840 | * |
| 841 | * Return matching xfer_shift for @xfer_mode. |
| 842 | * |
| 843 | * LOCKING: |
| 844 | * None. |
| 845 | * |
| 846 | * RETURNS: |
| 847 | * Matching xfer_shift, -1 if no match found. |
| 848 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 849 | int ata_xfer_mode2shift(unsigned long xfer_mode) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 850 | { |
| 851 | const struct ata_xfer_ent *ent; |
| 852 | |
| 853 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 854 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
| 855 | return ent->shift; |
| 856 | return -1; |
| 857 | } |
| 858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | /** |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 860 | * ata_mode_string - convert xfer_mask to string |
| 861 | * @xfer_mask: mask of bits supported; only highest bit counts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | * |
| 863 | * Determine string which represents the highest speed |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 864 | * (highest bit in @modemask). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | * |
| 866 | * LOCKING: |
| 867 | * None. |
| 868 | * |
| 869 | * RETURNS: |
| 870 | * Constant C string representing highest speed listed in |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 871 | * @mode_mask, or the constant C string "<n/a>". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 873 | const char *ata_mode_string(unsigned long xfer_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | { |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 875 | static const char * const xfer_mode_str[] = { |
| 876 | "PIO0", |
| 877 | "PIO1", |
| 878 | "PIO2", |
| 879 | "PIO3", |
| 880 | "PIO4", |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 881 | "PIO5", |
| 882 | "PIO6", |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 883 | "MWDMA0", |
| 884 | "MWDMA1", |
| 885 | "MWDMA2", |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 886 | "MWDMA3", |
| 887 | "MWDMA4", |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 888 | "UDMA/16", |
| 889 | "UDMA/25", |
| 890 | "UDMA/33", |
| 891 | "UDMA/44", |
| 892 | "UDMA/66", |
| 893 | "UDMA/100", |
| 894 | "UDMA/133", |
| 895 | "UDMA7", |
| 896 | }; |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 897 | int highbit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 899 | highbit = fls(xfer_mask) - 1; |
| 900 | if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str)) |
| 901 | return xfer_mode_str[highbit]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | return "<n/a>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | } |
| 904 | |
Tejun Heo | 4c360c8 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 905 | static const char *sata_spd_string(unsigned int spd) |
| 906 | { |
| 907 | static const char * const spd_str[] = { |
| 908 | "1.5 Gbps", |
| 909 | "3.0 Gbps", |
| 910 | }; |
| 911 | |
| 912 | if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str)) |
| 913 | return "<unknown>"; |
| 914 | return spd_str[spd - 1]; |
| 915 | } |
| 916 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 917 | void ata_dev_disable(struct ata_device *dev) |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 918 | { |
Tejun Heo | 09d7f9b | 2007-06-25 23:34:02 +0900 | [diff] [blame] | 919 | if (ata_dev_enabled(dev)) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 920 | if (ata_msg_drv(dev->link->ap)) |
Tejun Heo | 09d7f9b | 2007-06-25 23:34:02 +0900 | [diff] [blame] | 921 | ata_dev_printk(dev, KERN_WARNING, "disabled\n"); |
Tejun Heo | 562f0c2 | 2007-12-15 15:05:01 +0900 | [diff] [blame] | 922 | ata_acpi_on_disable(dev); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 923 | ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 | |
| 924 | ATA_DNXFER_QUIET); |
Tejun Heo | 0b8efb0 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 925 | dev->class++; |
| 926 | } |
| 927 | } |
| 928 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 929 | static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy) |
| 930 | { |
| 931 | struct ata_link *link = dev->link; |
| 932 | struct ata_port *ap = link->ap; |
| 933 | u32 scontrol; |
| 934 | unsigned int err_mask; |
| 935 | int rc; |
| 936 | |
| 937 | /* |
| 938 | * disallow DIPM for drivers which haven't set |
| 939 | * ATA_FLAG_IPM. This is because when DIPM is enabled, |
| 940 | * phy ready will be set in the interrupt status on |
| 941 | * state changes, which will cause some drivers to |
| 942 | * think there are errors - additionally drivers will |
| 943 | * need to disable hot plug. |
| 944 | */ |
| 945 | if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) { |
| 946 | ap->pm_policy = NOT_AVAILABLE; |
| 947 | return -EINVAL; |
| 948 | } |
| 949 | |
| 950 | /* |
| 951 | * For DIPM, we will only enable it for the |
| 952 | * min_power setting. |
| 953 | * |
| 954 | * Why? Because Disks are too stupid to know that |
| 955 | * If the host rejects a request to go to SLUMBER |
| 956 | * they should retry at PARTIAL, and instead it |
| 957 | * just would give up. So, for medium_power to |
| 958 | * work at all, we need to only allow HIPM. |
| 959 | */ |
| 960 | rc = sata_scr_read(link, SCR_CONTROL, &scontrol); |
| 961 | if (rc) |
| 962 | return rc; |
| 963 | |
| 964 | switch (policy) { |
| 965 | case MIN_POWER: |
| 966 | /* no restrictions on IPM transitions */ |
| 967 | scontrol &= ~(0x3 << 8); |
| 968 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 969 | if (rc) |
| 970 | return rc; |
| 971 | |
| 972 | /* enable DIPM */ |
| 973 | if (dev->flags & ATA_DFLAG_DIPM) |
| 974 | err_mask = ata_dev_set_feature(dev, |
| 975 | SETFEATURES_SATA_ENABLE, SATA_DIPM); |
| 976 | break; |
| 977 | case MEDIUM_POWER: |
| 978 | /* allow IPM to PARTIAL */ |
| 979 | scontrol &= ~(0x1 << 8); |
| 980 | scontrol |= (0x2 << 8); |
| 981 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 982 | if (rc) |
| 983 | return rc; |
| 984 | |
Kristen Carlson Accardi | f5456b6 | 2007-11-02 16:37:08 -0700 | [diff] [blame] | 985 | /* |
| 986 | * we don't have to disable DIPM since IPM flags |
| 987 | * disallow transitions to SLUMBER, which effectively |
| 988 | * disable DIPM if it does not support PARTIAL |
| 989 | */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 990 | break; |
| 991 | case NOT_AVAILABLE: |
| 992 | case MAX_PERFORMANCE: |
| 993 | /* disable all IPM transitions */ |
| 994 | scontrol |= (0x3 << 8); |
| 995 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 996 | if (rc) |
| 997 | return rc; |
| 998 | |
Kristen Carlson Accardi | f5456b6 | 2007-11-02 16:37:08 -0700 | [diff] [blame] | 999 | /* |
| 1000 | * we don't have to disable DIPM since IPM flags |
| 1001 | * disallow all transitions which effectively |
| 1002 | * disable DIPM anyway. |
| 1003 | */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1004 | break; |
| 1005 | } |
| 1006 | |
| 1007 | /* FIXME: handle SET FEATURES failure */ |
| 1008 | (void) err_mask; |
| 1009 | |
| 1010 | return 0; |
| 1011 | } |
| 1012 | |
| 1013 | /** |
| 1014 | * ata_dev_enable_pm - enable SATA interface power management |
Stephen Hemminger | 48166fd | 2007-10-31 10:00:27 -0700 | [diff] [blame] | 1015 | * @dev: device to enable power management |
| 1016 | * @policy: the link power management policy |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1017 | * |
| 1018 | * Enable SATA Interface power management. This will enable |
| 1019 | * Device Interface Power Management (DIPM) for min_power |
| 1020 | * policy, and then call driver specific callbacks for |
| 1021 | * enabling Host Initiated Power management. |
| 1022 | * |
| 1023 | * Locking: Caller. |
| 1024 | * Returns: -EINVAL if IPM is not supported, 0 otherwise. |
| 1025 | */ |
| 1026 | void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy) |
| 1027 | { |
| 1028 | int rc = 0; |
| 1029 | struct ata_port *ap = dev->link->ap; |
| 1030 | |
| 1031 | /* set HIPM first, then DIPM */ |
| 1032 | if (ap->ops->enable_pm) |
| 1033 | rc = ap->ops->enable_pm(ap, policy); |
| 1034 | if (rc) |
| 1035 | goto enable_pm_out; |
| 1036 | rc = ata_dev_set_dipm(dev, policy); |
| 1037 | |
| 1038 | enable_pm_out: |
| 1039 | if (rc) |
| 1040 | ap->pm_policy = MAX_PERFORMANCE; |
| 1041 | else |
| 1042 | ap->pm_policy = policy; |
| 1043 | return /* rc */; /* hopefully we can use 'rc' eventually */ |
| 1044 | } |
| 1045 | |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1046 | #ifdef CONFIG_PM |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1047 | /** |
| 1048 | * ata_dev_disable_pm - disable SATA interface power management |
Stephen Hemminger | 48166fd | 2007-10-31 10:00:27 -0700 | [diff] [blame] | 1049 | * @dev: device to disable power management |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1050 | * |
| 1051 | * Disable SATA Interface power management. This will disable |
| 1052 | * Device Interface Power Management (DIPM) without changing |
| 1053 | * policy, call driver specific callbacks for disabling Host |
| 1054 | * Initiated Power management. |
| 1055 | * |
| 1056 | * Locking: Caller. |
| 1057 | * Returns: void |
| 1058 | */ |
| 1059 | static void ata_dev_disable_pm(struct ata_device *dev) |
| 1060 | { |
| 1061 | struct ata_port *ap = dev->link->ap; |
| 1062 | |
| 1063 | ata_dev_set_dipm(dev, MAX_PERFORMANCE); |
| 1064 | if (ap->ops->disable_pm) |
| 1065 | ap->ops->disable_pm(ap); |
| 1066 | } |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1067 | #endif /* CONFIG_PM */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1068 | |
| 1069 | void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy) |
| 1070 | { |
| 1071 | ap->pm_policy = policy; |
Tejun Heo | 3ec25eb | 2008-03-27 18:37:14 +0900 | [diff] [blame] | 1072 | ap->link.eh_info.action |= ATA_EH_LPM; |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1073 | ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY; |
| 1074 | ata_port_schedule_eh(ap); |
| 1075 | } |
| 1076 | |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1077 | #ifdef CONFIG_PM |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1078 | static void ata_lpm_enable(struct ata_host *host) |
| 1079 | { |
| 1080 | struct ata_link *link; |
| 1081 | struct ata_port *ap; |
| 1082 | struct ata_device *dev; |
| 1083 | int i; |
| 1084 | |
| 1085 | for (i = 0; i < host->n_ports; i++) { |
| 1086 | ap = host->ports[i]; |
| 1087 | ata_port_for_each_link(link, ap) { |
| 1088 | ata_link_for_each_dev(dev, link) |
| 1089 | ata_dev_disable_pm(dev); |
| 1090 | } |
| 1091 | } |
| 1092 | } |
| 1093 | |
| 1094 | static void ata_lpm_disable(struct ata_host *host) |
| 1095 | { |
| 1096 | int i; |
| 1097 | |
| 1098 | for (i = 0; i < host->n_ports; i++) { |
| 1099 | struct ata_port *ap = host->ports[i]; |
| 1100 | ata_lpm_schedule(ap, ap->pm_policy); |
| 1101 | } |
| 1102 | } |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1103 | #endif /* CONFIG_PM */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1104 | |
| 1105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | * ata_devchk - PATA device presence detection |
| 1108 | * @ap: ATA channel to examine |
| 1109 | * @device: Device to examine (starting at zero) |
| 1110 | * |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1111 | * This technique was originally described in |
| 1112 | * Hale Landis's ATADRVR (www.ata-atapi.com), and |
| 1113 | * later found its way into the ATA/ATAPI spec. |
| 1114 | * |
| 1115 | * Write a pattern to the ATA shadow registers, |
| 1116 | * and if a device is present, it will respond by |
| 1117 | * correctly storing and echoing back the |
| 1118 | * ATA shadow register contents. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | * |
| 1120 | * LOCKING: |
| 1121 | * caller. |
| 1122 | */ |
| 1123 | |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1124 | static unsigned int ata_devchk(struct ata_port *ap, unsigned int device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | { |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1126 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 1127 | u8 nsect, lbal; |
| 1128 | |
| 1129 | ap->ops->dev_select(ap, device); |
| 1130 | |
| 1131 | iowrite8(0x55, ioaddr->nsect_addr); |
| 1132 | iowrite8(0xaa, ioaddr->lbal_addr); |
| 1133 | |
| 1134 | iowrite8(0xaa, ioaddr->nsect_addr); |
| 1135 | iowrite8(0x55, ioaddr->lbal_addr); |
| 1136 | |
| 1137 | iowrite8(0x55, ioaddr->nsect_addr); |
| 1138 | iowrite8(0xaa, ioaddr->lbal_addr); |
| 1139 | |
| 1140 | nsect = ioread8(ioaddr->nsect_addr); |
| 1141 | lbal = ioread8(ioaddr->lbal_addr); |
| 1142 | |
| 1143 | if ((nsect == 0x55) && (lbal == 0xaa)) |
| 1144 | return 1; /* we found a device */ |
| 1145 | |
| 1146 | return 0; /* nothing found */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | /** |
| 1150 | * ata_dev_classify - determine device type based on ATA-spec signature |
| 1151 | * @tf: ATA taskfile register set for device to be identified |
| 1152 | * |
| 1153 | * Determine from taskfile register contents whether a device is |
| 1154 | * ATA or ATAPI, as per "Signature and persistence" section |
| 1155 | * of ATA/PI spec (volume 1, sect 5.14). |
| 1156 | * |
| 1157 | * LOCKING: |
| 1158 | * None. |
| 1159 | * |
| 1160 | * RETURNS: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1161 | * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or |
| 1162 | * %ATA_DEV_UNKNOWN the event of failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 1164 | unsigned int ata_dev_classify(const struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | { |
| 1166 | /* Apple's open source Darwin code hints that some devices only |
| 1167 | * put a proper signature into the LBA mid/high registers, |
| 1168 | * So, we only check those. It's sufficient for uniqueness. |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1169 | * |
| 1170 | * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate |
| 1171 | * signatures for ATA and ATAPI devices attached on SerialATA, |
| 1172 | * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA |
| 1173 | * spec has never mentioned about using different signatures |
| 1174 | * for ATA/ATAPI devices. Then, Serial ATA II: Port |
| 1175 | * Multiplier specification began to use 0x69/0x96 to identify |
| 1176 | * port multpliers and 0x3c/0xc3 to identify SEMB device. |
| 1177 | * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and |
| 1178 | * 0x69/0x96 shortly and described them as reserved for |
| 1179 | * SerialATA. |
| 1180 | * |
| 1181 | * We follow the current spec and consider that 0x69/0x96 |
| 1182 | * identifies a port multiplier and 0x3c/0xc3 a SEMB device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | */ |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1184 | if ((tf->lbam == 0) && (tf->lbah == 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | DPRINTK("found ATA device by sig\n"); |
| 1186 | return ATA_DEV_ATA; |
| 1187 | } |
| 1188 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1189 | if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | DPRINTK("found ATAPI device by sig\n"); |
| 1191 | return ATA_DEV_ATAPI; |
| 1192 | } |
| 1193 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1194 | if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) { |
| 1195 | DPRINTK("found PMP device by sig\n"); |
| 1196 | return ATA_DEV_PMP; |
| 1197 | } |
| 1198 | |
| 1199 | if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1200 | printk(KERN_INFO "ata: SEMB device ignored\n"); |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1201 | return ATA_DEV_SEMB_UNSUP; /* not yet */ |
| 1202 | } |
| 1203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | DPRINTK("unknown device\n"); |
| 1205 | return ATA_DEV_UNKNOWN; |
| 1206 | } |
| 1207 | |
| 1208 | /** |
| 1209 | * ata_dev_try_classify - Parse returned ATA device signature |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 1210 | * @dev: ATA device to classify (starting at zero) |
| 1211 | * @present: device seems present |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1212 | * @r_err: Value of error register on completion |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | * |
| 1214 | * After an event -- SRST, E.D.D., or SATA COMRESET -- occurs, |
| 1215 | * an ATA/ATAPI-defined set of values is placed in the ATA |
| 1216 | * shadow registers, indicating the results of device detection |
| 1217 | * and diagnostics. |
| 1218 | * |
| 1219 | * Select the ATA device, and read the values from the ATA shadow |
| 1220 | * registers. Then parse according to the Error register value, |
| 1221 | * and the spec-defined values examined by ata_dev_classify(). |
| 1222 | * |
| 1223 | * LOCKING: |
| 1224 | * caller. |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1225 | * |
| 1226 | * RETURNS: |
| 1227 | * Device type - %ATA_DEV_ATA, %ATA_DEV_ATAPI or %ATA_DEV_NONE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | */ |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 1229 | unsigned int ata_dev_try_classify(struct ata_device *dev, int present, |
| 1230 | u8 *r_err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | { |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 1232 | struct ata_port *ap = dev->link->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | struct ata_taskfile tf; |
| 1234 | unsigned int class; |
| 1235 | u8 err; |
| 1236 | |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 1237 | ap->ops->dev_select(ap, dev->devno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
| 1239 | memset(&tf, 0, sizeof(tf)); |
| 1240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | ap->ops->tf_read(ap, &tf); |
Jeff Garzik | 0169e28 | 2005-10-29 21:25:10 -0400 | [diff] [blame] | 1242 | err = tf.feature; |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1243 | if (r_err) |
| 1244 | *r_err = err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | |
Alan Cox | c5038fc | 2007-10-25 14:21:16 +0100 | [diff] [blame] | 1246 | /* see if device passed diags: continue and warn later */ |
| 1247 | if (err == 0) |
Alan Cox | 9359085 | 2006-09-12 16:55:12 +0100 | [diff] [blame] | 1248 | /* diagnostic fail : do nothing _YET_ */ |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 1249 | dev->horkage |= ATA_HORKAGE_DIAGNOSTIC; |
Alan Cox | 9359085 | 2006-09-12 16:55:12 +0100 | [diff] [blame] | 1250 | else if (err == 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | /* do nothing */ ; |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 1252 | else if ((dev->devno == 0) && (err == 0x81)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | /* do nothing */ ; |
| 1254 | else |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1255 | return ATA_DEV_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1257 | /* determine if device is ATA or ATAPI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | class = ata_dev_classify(&tf); |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1259 | |
Tejun Heo | d7fbee0 | 2007-09-02 23:24:48 +0900 | [diff] [blame] | 1260 | if (class == ATA_DEV_UNKNOWN) { |
| 1261 | /* If the device failed diagnostic, it's likely to |
| 1262 | * have reported incorrect device signature too. |
| 1263 | * Assume ATA device if the device seems present but |
| 1264 | * device signature is invalid with diagnostic |
| 1265 | * failure. |
| 1266 | */ |
| 1267 | if (present && (dev->horkage & ATA_HORKAGE_DIAGNOSTIC)) |
| 1268 | class = ATA_DEV_ATA; |
| 1269 | else |
| 1270 | class = ATA_DEV_NONE; |
| 1271 | } else if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0)) |
| 1272 | class = ATA_DEV_NONE; |
| 1273 | |
Tejun Heo | b4dc762 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 1274 | return class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | } |
| 1276 | |
| 1277 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1278 | * ata_id_string - Convert IDENTIFY DEVICE page into string |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | * @id: IDENTIFY DEVICE results we will examine |
| 1280 | * @s: string into which data is output |
| 1281 | * @ofs: offset into identify device page |
| 1282 | * @len: length of string to return. must be an even number. |
| 1283 | * |
| 1284 | * The strings in the IDENTIFY DEVICE page are broken up into |
| 1285 | * 16-bit chunks. Run through the string, and output each |
| 1286 | * 8-bit chunk linearly, regardless of platform. |
| 1287 | * |
| 1288 | * LOCKING: |
| 1289 | * caller. |
| 1290 | */ |
| 1291 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1292 | void ata_id_string(const u16 *id, unsigned char *s, |
| 1293 | unsigned int ofs, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | { |
| 1295 | unsigned int c; |
| 1296 | |
| 1297 | while (len > 0) { |
| 1298 | c = id[ofs] >> 8; |
| 1299 | *s = c; |
| 1300 | s++; |
| 1301 | |
| 1302 | c = id[ofs] & 0xff; |
| 1303 | *s = c; |
| 1304 | s++; |
| 1305 | |
| 1306 | ofs++; |
| 1307 | len -= 2; |
| 1308 | } |
| 1309 | } |
| 1310 | |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1311 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1312 | * ata_id_c_string - Convert IDENTIFY DEVICE page into C string |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1313 | * @id: IDENTIFY DEVICE results we will examine |
| 1314 | * @s: string into which data is output |
| 1315 | * @ofs: offset into identify device page |
| 1316 | * @len: length of string to return. must be an odd number. |
| 1317 | * |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1318 | * This function is identical to ata_id_string except that it |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1319 | * trims trailing spaces and terminates the resulting string with |
| 1320 | * null. @len must be actual maximum length (even number) + 1. |
| 1321 | * |
| 1322 | * LOCKING: |
| 1323 | * caller. |
| 1324 | */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1325 | void ata_id_c_string(const u16 *id, unsigned char *s, |
| 1326 | unsigned int ofs, unsigned int len) |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1327 | { |
| 1328 | unsigned char *p; |
| 1329 | |
| 1330 | WARN_ON(!(len & 1)); |
| 1331 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1332 | ata_id_string(id, s, ofs, len - 1); |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1333 | |
| 1334 | p = s + strnlen(s, len - 1); |
| 1335 | while (p > s && p[-1] == ' ') |
| 1336 | p--; |
| 1337 | *p = '\0'; |
| 1338 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1339 | |
Tejun Heo | db6f875 | 2007-09-03 12:31:58 +0900 | [diff] [blame] | 1340 | static u64 ata_id_n_sectors(const u16 *id) |
| 1341 | { |
| 1342 | if (ata_id_has_lba(id)) { |
| 1343 | if (ata_id_has_lba48(id)) |
| 1344 | return ata_id_u64(id, 100); |
| 1345 | else |
| 1346 | return ata_id_u32(id, 60); |
| 1347 | } else { |
| 1348 | if (ata_id_current_chs_valid(id)) |
| 1349 | return ata_id_u32(id, 57); |
| 1350 | else |
| 1351 | return id[1] * id[3] * id[6]; |
| 1352 | } |
| 1353 | } |
| 1354 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1355 | static u64 ata_tf_to_lba48(struct ata_taskfile *tf) |
| 1356 | { |
| 1357 | u64 sectors = 0; |
| 1358 | |
| 1359 | sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40; |
| 1360 | sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32; |
| 1361 | sectors |= (tf->hob_lbal & 0xff) << 24; |
| 1362 | sectors |= (tf->lbah & 0xff) << 16; |
| 1363 | sectors |= (tf->lbam & 0xff) << 8; |
| 1364 | sectors |= (tf->lbal & 0xff); |
| 1365 | |
| 1366 | return ++sectors; |
| 1367 | } |
| 1368 | |
| 1369 | static u64 ata_tf_to_lba(struct ata_taskfile *tf) |
| 1370 | { |
| 1371 | u64 sectors = 0; |
| 1372 | |
| 1373 | sectors |= (tf->device & 0x0f) << 24; |
| 1374 | sectors |= (tf->lbah & 0xff) << 16; |
| 1375 | sectors |= (tf->lbam & 0xff) << 8; |
| 1376 | sectors |= (tf->lbal & 0xff); |
| 1377 | |
| 1378 | return ++sectors; |
| 1379 | } |
| 1380 | |
| 1381 | /** |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1382 | * ata_read_native_max_address - Read native max address |
| 1383 | * @dev: target device |
| 1384 | * @max_sectors: out parameter for the result native max address |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1385 | * |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1386 | * Perform an LBA48 or LBA28 native size query upon the device in |
| 1387 | * question. |
| 1388 | * |
| 1389 | * RETURNS: |
| 1390 | * 0 on success, -EACCES if command is aborted by the drive. |
| 1391 | * -EIO on other errors. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1392 | */ |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1393 | 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] | 1394 | { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1395 | unsigned int err_mask; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1396 | struct ata_taskfile tf; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1397 | int lba48 = ata_id_has_lba48(dev->id); |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1398 | |
| 1399 | ata_tf_init(dev, &tf); |
| 1400 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1401 | /* always clear all address registers */ |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1402 | tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1403 | |
| 1404 | if (lba48) { |
| 1405 | tf.command = ATA_CMD_READ_NATIVE_MAX_EXT; |
| 1406 | tf.flags |= ATA_TFLAG_LBA48; |
| 1407 | } else |
| 1408 | tf.command = ATA_CMD_READ_NATIVE_MAX; |
| 1409 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1410 | tf.protocol |= ATA_PROT_NODATA; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1411 | tf.device |= ATA_LBA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1412 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1413 | 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] | 1414 | if (err_mask) { |
| 1415 | ata_dev_printk(dev, KERN_WARNING, "failed to read native " |
| 1416 | "max address (err_mask=0x%x)\n", err_mask); |
| 1417 | if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED)) |
| 1418 | return -EACCES; |
| 1419 | return -EIO; |
| 1420 | } |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1421 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1422 | if (lba48) |
| 1423 | *max_sectors = ata_tf_to_lba48(&tf); |
| 1424 | else |
| 1425 | *max_sectors = ata_tf_to_lba(&tf); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1426 | if (dev->horkage & ATA_HORKAGE_HPA_SIZE) |
Alan Cox | 93328e11 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 1427 | (*max_sectors)--; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1428 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | /** |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1432 | * ata_set_max_sectors - Set max sectors |
| 1433 | * @dev: target device |
Randy Dunlap | 6b38d1d | 2007-05-01 17:35:55 -0700 | [diff] [blame] | 1434 | * @new_sectors: new max sectors value to set for the device |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1435 | * |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1436 | * Set max sectors of @dev to @new_sectors. |
| 1437 | * |
| 1438 | * RETURNS: |
| 1439 | * 0 on success, -EACCES if command is aborted or denied (due to |
| 1440 | * previous non-volatile SET_MAX) by the drive. -EIO on other |
| 1441 | * errors. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1442 | */ |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1443 | 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] | 1444 | { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1445 | unsigned int err_mask; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1446 | struct ata_taskfile tf; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1447 | int lba48 = ata_id_has_lba48(dev->id); |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1448 | |
| 1449 | new_sectors--; |
| 1450 | |
| 1451 | ata_tf_init(dev, &tf); |
| 1452 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1453 | tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1454 | |
| 1455 | if (lba48) { |
| 1456 | tf.command = ATA_CMD_SET_MAX_EXT; |
| 1457 | tf.flags |= ATA_TFLAG_LBA48; |
| 1458 | |
| 1459 | tf.hob_lbal = (new_sectors >> 24) & 0xff; |
| 1460 | tf.hob_lbam = (new_sectors >> 32) & 0xff; |
| 1461 | tf.hob_lbah = (new_sectors >> 40) & 0xff; |
Tejun Heo | 1e582ba | 2007-09-21 20:07:14 +0900 | [diff] [blame] | 1462 | } else { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1463 | tf.command = ATA_CMD_SET_MAX; |
| 1464 | |
Tejun Heo | 1e582ba | 2007-09-21 20:07:14 +0900 | [diff] [blame] | 1465 | tf.device |= (new_sectors >> 24) & 0xf; |
| 1466 | } |
| 1467 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1468 | tf.protocol |= ATA_PROT_NODATA; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1469 | tf.device |= ATA_LBA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1470 | |
| 1471 | tf.lbal = (new_sectors >> 0) & 0xff; |
| 1472 | tf.lbam = (new_sectors >> 8) & 0xff; |
| 1473 | tf.lbah = (new_sectors >> 16) & 0xff; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1474 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1475 | 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] | 1476 | if (err_mask) { |
| 1477 | ata_dev_printk(dev, KERN_WARNING, "failed to set " |
| 1478 | "max address (err_mask=0x%x)\n", err_mask); |
| 1479 | if (err_mask == AC_ERR_DEV && |
| 1480 | (tf.feature & (ATA_ABORTED | ATA_IDNF))) |
| 1481 | return -EACCES; |
| 1482 | return -EIO; |
| 1483 | } |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1484 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1485 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1486 | } |
| 1487 | |
| 1488 | /** |
| 1489 | * ata_hpa_resize - Resize a device with an HPA set |
| 1490 | * @dev: Device to resize |
| 1491 | * |
| 1492 | * Read the size of an LBA28 or LBA48 disk with HPA features and resize |
| 1493 | * it if required to the full size of the media. The caller must check |
| 1494 | * the drive has the HPA feature set enabled. |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1495 | * |
| 1496 | * RETURNS: |
| 1497 | * 0 on success, -errno on failure. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1498 | */ |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1499 | static int ata_hpa_resize(struct ata_device *dev) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1500 | { |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1501 | struct ata_eh_context *ehc = &dev->link->eh_context; |
| 1502 | int print_info = ehc->i.flags & ATA_EHI_PRINTINFO; |
| 1503 | u64 sectors = ata_id_n_sectors(dev->id); |
| 1504 | u64 native_sectors; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1505 | int rc; |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 1506 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1507 | /* do we need to do it? */ |
| 1508 | if (dev->class != ATA_DEV_ATA || |
| 1509 | !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) || |
| 1510 | (dev->horkage & ATA_HORKAGE_BROKEN_HPA)) |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1511 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1512 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1513 | /* read native max address */ |
| 1514 | rc = ata_read_native_max_address(dev, &native_sectors); |
| 1515 | if (rc) { |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1516 | /* If device aborted the command or HPA isn't going to |
| 1517 | * be unlocked, skip HPA resizing. |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1518 | */ |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1519 | if (rc == -EACCES || !ata_ignore_hpa) { |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1520 | ata_dev_printk(dev, KERN_WARNING, "HPA support seems " |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1521 | "broken, skipping HPA handling\n"); |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1522 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1523 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1524 | /* we can continue if device aborted the command */ |
| 1525 | if (rc == -EACCES) |
| 1526 | rc = 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1527 | } |
Tejun Heo | 37301a5 | 2007-06-25 20:45:54 +0900 | [diff] [blame] | 1528 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1529 | return rc; |
| 1530 | } |
| 1531 | |
| 1532 | /* nothing to do? */ |
| 1533 | if (native_sectors <= sectors || !ata_ignore_hpa) { |
| 1534 | if (!print_info || native_sectors == sectors) |
| 1535 | return 0; |
| 1536 | |
| 1537 | if (native_sectors > sectors) |
| 1538 | ata_dev_printk(dev, KERN_INFO, |
| 1539 | "HPA detected: current %llu, native %llu\n", |
| 1540 | (unsigned long long)sectors, |
| 1541 | (unsigned long long)native_sectors); |
| 1542 | else if (native_sectors < sectors) |
| 1543 | ata_dev_printk(dev, KERN_WARNING, |
| 1544 | "native sectors (%llu) is smaller than " |
| 1545 | "sectors (%llu)\n", |
| 1546 | (unsigned long long)native_sectors, |
| 1547 | (unsigned long long)sectors); |
| 1548 | return 0; |
| 1549 | } |
| 1550 | |
| 1551 | /* let's unlock HPA */ |
| 1552 | rc = ata_set_max_sectors(dev, native_sectors); |
| 1553 | if (rc == -EACCES) { |
| 1554 | /* if device aborted the command, skip HPA resizing */ |
| 1555 | ata_dev_printk(dev, KERN_WARNING, "device aborted resize " |
| 1556 | "(%llu -> %llu), skipping HPA handling\n", |
| 1557 | (unsigned long long)sectors, |
| 1558 | (unsigned long long)native_sectors); |
| 1559 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; |
| 1560 | return 0; |
| 1561 | } else if (rc) |
| 1562 | return rc; |
| 1563 | |
| 1564 | /* re-read IDENTIFY data */ |
| 1565 | rc = ata_dev_reread_id(dev, 0); |
| 1566 | if (rc) { |
| 1567 | ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY " |
| 1568 | "data after HPA resizing\n"); |
| 1569 | return rc; |
| 1570 | } |
| 1571 | |
| 1572 | if (print_info) { |
| 1573 | u64 new_sectors = ata_id_n_sectors(dev->id); |
| 1574 | ata_dev_printk(dev, KERN_INFO, |
| 1575 | "HPA unlocked: %llu -> %llu, native %llu\n", |
| 1576 | (unsigned long long)sectors, |
| 1577 | (unsigned long long)new_sectors, |
| 1578 | (unsigned long long)native_sectors); |
| 1579 | } |
| 1580 | |
| 1581 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1582 | } |
| 1583 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1584 | /** |
| 1585 | * ata_noop_dev_select - Select device 0/1 on ATA bus |
| 1586 | * @ap: ATA channel to manipulate |
| 1587 | * @device: ATA device (numbered from zero) to select |
| 1588 | * |
| 1589 | * This function performs no actual function. |
| 1590 | * |
| 1591 | * May be used as the dev_select() entry in ata_port_operations. |
| 1592 | * |
| 1593 | * LOCKING: |
| 1594 | * caller. |
| 1595 | */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1596 | void ata_noop_dev_select(struct ata_port *ap, unsigned int device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | { |
| 1598 | } |
| 1599 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | /** |
| 1602 | * ata_std_dev_select - Select device 0/1 on ATA bus |
| 1603 | * @ap: ATA channel to manipulate |
| 1604 | * @device: ATA device (numbered from zero) to select |
| 1605 | * |
| 1606 | * Use the method defined in the ATA specification to |
| 1607 | * make either device 0, or device 1, active on the |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1608 | * ATA channel. Works with both PIO and MMIO. |
| 1609 | * |
| 1610 | * May be used as the dev_select() entry in ata_port_operations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | * |
| 1612 | * LOCKING: |
| 1613 | * caller. |
| 1614 | */ |
| 1615 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1616 | void ata_std_dev_select(struct ata_port *ap, unsigned int device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | { |
| 1618 | u8 tmp; |
| 1619 | |
| 1620 | if (device == 0) |
| 1621 | tmp = ATA_DEVICE_OBS; |
| 1622 | else |
| 1623 | tmp = ATA_DEVICE_OBS | ATA_DEV1; |
| 1624 | |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 1625 | iowrite8(tmp, ap->ioaddr.device_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | ata_pause(ap); /* needed; also flushes, for mmio */ |
| 1627 | } |
| 1628 | |
| 1629 | /** |
| 1630 | * ata_dev_select - Select device 0/1 on ATA bus |
| 1631 | * @ap: ATA channel to manipulate |
| 1632 | * @device: ATA device (numbered from zero) to select |
| 1633 | * @wait: non-zero to wait for Status register BSY bit to clear |
| 1634 | * @can_sleep: non-zero if context allows sleeping |
| 1635 | * |
| 1636 | * Use the method defined in the ATA specification to |
| 1637 | * make either device 0, or device 1, active on the |
| 1638 | * ATA channel. |
| 1639 | * |
| 1640 | * This is a high-level version of ata_std_dev_select(), |
| 1641 | * which additionally provides the services of inserting |
| 1642 | * the proper pauses and status polling, where needed. |
| 1643 | * |
| 1644 | * LOCKING: |
| 1645 | * caller. |
| 1646 | */ |
| 1647 | |
| 1648 | void ata_dev_select(struct ata_port *ap, unsigned int device, |
| 1649 | unsigned int wait, unsigned int can_sleep) |
| 1650 | { |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1651 | if (ata_msg_probe(ap)) |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 1652 | ata_port_printk(ap, KERN_INFO, "ata_dev_select: ENTER, " |
| 1653 | "device %u, wait %u\n", device, wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | |
| 1655 | if (wait) |
| 1656 | ata_wait_idle(ap); |
| 1657 | |
| 1658 | ap->ops->dev_select(ap, device); |
| 1659 | |
| 1660 | if (wait) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1661 | if (can_sleep && ap->link.device[device].class == ATA_DEV_ATAPI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | msleep(150); |
| 1663 | ata_wait_idle(ap); |
| 1664 | } |
| 1665 | } |
| 1666 | |
| 1667 | /** |
| 1668 | * ata_dump_id - IDENTIFY DEVICE info debugging output |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1669 | * @id: IDENTIFY DEVICE page to dump |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | * |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1671 | * Dump selected 16-bit words from the given IDENTIFY DEVICE |
| 1672 | * page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | * |
| 1674 | * LOCKING: |
| 1675 | * caller. |
| 1676 | */ |
| 1677 | |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1678 | static inline void ata_dump_id(const u16 *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | { |
| 1680 | DPRINTK("49==0x%04x " |
| 1681 | "53==0x%04x " |
| 1682 | "63==0x%04x " |
| 1683 | "64==0x%04x " |
| 1684 | "75==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1685 | id[49], |
| 1686 | id[53], |
| 1687 | id[63], |
| 1688 | id[64], |
| 1689 | id[75]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | DPRINTK("80==0x%04x " |
| 1691 | "81==0x%04x " |
| 1692 | "82==0x%04x " |
| 1693 | "83==0x%04x " |
| 1694 | "84==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1695 | id[80], |
| 1696 | id[81], |
| 1697 | id[82], |
| 1698 | id[83], |
| 1699 | id[84]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | DPRINTK("88==0x%04x " |
| 1701 | "93==0x%04x\n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1702 | id[88], |
| 1703 | id[93]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | } |
| 1705 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1706 | /** |
| 1707 | * ata_id_xfermask - Compute xfermask from the given IDENTIFY data |
| 1708 | * @id: IDENTIFY data to compute xfer mask from |
| 1709 | * |
| 1710 | * Compute the xfermask for this device. This is not as trivial |
| 1711 | * as it seems if we must consider early devices correctly. |
| 1712 | * |
| 1713 | * FIXME: pre IDE drive timing (do we care ?). |
| 1714 | * |
| 1715 | * LOCKING: |
| 1716 | * None. |
| 1717 | * |
| 1718 | * RETURNS: |
| 1719 | * Computed xfermask |
| 1720 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 1721 | unsigned long ata_id_xfermask(const u16 *id) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1722 | { |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 1723 | unsigned long pio_mask, mwdma_mask, udma_mask; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1724 | |
| 1725 | /* Usual case. Word 53 indicates word 64 is valid */ |
| 1726 | if (id[ATA_ID_FIELD_VALID] & (1 << 1)) { |
| 1727 | pio_mask = id[ATA_ID_PIO_MODES] & 0x03; |
| 1728 | pio_mask <<= 3; |
| 1729 | pio_mask |= 0x7; |
| 1730 | } else { |
| 1731 | /* If word 64 isn't valid then Word 51 high byte holds |
| 1732 | * the PIO timing number for the maximum. Turn it into |
| 1733 | * a mask. |
| 1734 | */ |
Lennert Buytenhek | 7a0f1c8 | 2007-01-29 13:28:47 +0100 | [diff] [blame] | 1735 | u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF; |
Alan Cox | 46767aeb | 2006-09-29 18:26:47 +0100 | [diff] [blame] | 1736 | if (mode < 5) /* Valid PIO range */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1737 | pio_mask = (2 << mode) - 1; |
Alan Cox | 46767aeb | 2006-09-29 18:26:47 +0100 | [diff] [blame] | 1738 | else |
| 1739 | pio_mask = 1; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1740 | |
| 1741 | /* But wait.. there's more. Design your standards by |
| 1742 | * committee and you too can get a free iordy field to |
| 1743 | * process. However its the speeds not the modes that |
| 1744 | * are supported... Note drivers using the timing API |
| 1745 | * will get this right anyway |
| 1746 | */ |
| 1747 | } |
| 1748 | |
| 1749 | mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07; |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 1750 | |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 1751 | if (ata_id_is_cfa(id)) { |
| 1752 | /* |
| 1753 | * Process compact flash extended modes |
| 1754 | */ |
| 1755 | int pio = id[163] & 0x7; |
| 1756 | int dma = (id[163] >> 3) & 7; |
| 1757 | |
| 1758 | if (pio) |
| 1759 | pio_mask |= (1 << 5); |
| 1760 | if (pio > 1) |
| 1761 | pio_mask |= (1 << 6); |
| 1762 | if (dma) |
| 1763 | mwdma_mask |= (1 << 3); |
| 1764 | if (dma > 1) |
| 1765 | mwdma_mask |= (1 << 4); |
| 1766 | } |
| 1767 | |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 1768 | udma_mask = 0; |
| 1769 | if (id[ATA_ID_FIELD_VALID] & (1 << 2)) |
| 1770 | udma_mask = id[ATA_ID_UDMA_MODES] & 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1771 | |
| 1772 | return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 1773 | } |
| 1774 | |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1775 | /** |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 1776 | * ata_pio_queue_task - Queue port_task |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1777 | * @ap: The ata_port to queue port_task for |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 1778 | * @fn: workqueue function to be scheduled |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1779 | * @data: data for @fn to use |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 1780 | * @delay: delay time for workqueue function |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1781 | * |
| 1782 | * Schedule @fn(@data) for execution after @delay jiffies using |
| 1783 | * port_task. There is one port_task per port and it's the |
| 1784 | * user(low level driver)'s responsibility to make sure that only |
| 1785 | * one task is active at any given time. |
| 1786 | * |
| 1787 | * libata core layer takes care of synchronization between |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 1788 | * 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] | 1789 | * synchronization. |
| 1790 | * |
| 1791 | * LOCKING: |
| 1792 | * Inherited from caller. |
| 1793 | */ |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 1794 | static void ata_pio_queue_task(struct ata_port *ap, void *data, |
| 1795 | unsigned long delay) |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1796 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1797 | ap->port_task_data = data; |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1798 | |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 1799 | /* may fail if ata_port_flush_task() in progress */ |
| 1800 | queue_delayed_work(ata_wq, &ap->port_task, delay); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1801 | } |
| 1802 | |
| 1803 | /** |
| 1804 | * ata_port_flush_task - Flush port_task |
| 1805 | * @ap: The ata_port to flush port_task for |
| 1806 | * |
| 1807 | * After this function completes, port_task is guranteed not to |
| 1808 | * be running or scheduled. |
| 1809 | * |
| 1810 | * LOCKING: |
| 1811 | * Kernel thread context (may sleep) |
| 1812 | */ |
| 1813 | void ata_port_flush_task(struct ata_port *ap) |
| 1814 | { |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1815 | DPRINTK("ENTER\n"); |
| 1816 | |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 1817 | cancel_rearming_delayed_work(&ap->port_task); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1818 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1819 | if (ata_msg_ctl(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 1820 | ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1821 | } |
| 1822 | |
Adrian Bunk | 7102d23 | 2007-01-04 00:09:36 +0100 | [diff] [blame] | 1823 | static void ata_qc_complete_internal(struct ata_queued_cmd *qc) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1824 | { |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1825 | struct completion *waiting = qc->private_data; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1826 | |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1827 | complete(waiting); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | /** |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1831 | * ata_exec_internal_sg - execute libata internal command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1832 | * @dev: Device to which the command is sent |
| 1833 | * @tf: Taskfile registers for the command and the result |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1834 | * @cdb: CDB for packet command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1835 | * @dma_dir: Data tranfer direction of the command |
Randy Dunlap | 5c1ad8b | 2007-10-18 14:12:26 -0700 | [diff] [blame] | 1836 | * @sgl: sg list for the data buffer of the command |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1837 | * @n_elem: Number of sg entries |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1838 | * @timeout: Timeout in msecs (0 for default) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1839 | * |
| 1840 | * Executes libata internal command with timeout. @tf contains |
| 1841 | * command on entry and result on return. Timeout and error |
| 1842 | * conditions are reported via return value. No recovery action |
| 1843 | * is taken after a command times out. It's caller's duty to |
| 1844 | * clean up after timeout. |
| 1845 | * |
| 1846 | * LOCKING: |
| 1847 | * None. Should be called with kernel context, might sleep. |
Tejun Heo | 551e888 | 2006-06-12 14:09:49 +0900 | [diff] [blame] | 1848 | * |
| 1849 | * RETURNS: |
| 1850 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1851 | */ |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1852 | unsigned ata_exec_internal_sg(struct ata_device *dev, |
| 1853 | struct ata_taskfile *tf, const u8 *cdb, |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1854 | int dma_dir, struct scatterlist *sgl, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1855 | unsigned int n_elem, unsigned long timeout) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1856 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1857 | struct ata_link *link = dev->link; |
| 1858 | struct ata_port *ap = link->ap; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1859 | u8 command = tf->command; |
| 1860 | struct ata_queued_cmd *qc; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1861 | unsigned int tag, preempted_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1862 | u32 preempted_sactive, preempted_qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1863 | int preempted_nr_active_links; |
Ingo Molnar | 60be6b9 | 2006-07-03 00:25:26 -0700 | [diff] [blame] | 1864 | DECLARE_COMPLETION_ONSTACK(wait); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1865 | unsigned long flags; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1866 | unsigned int err_mask; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1867 | int rc; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1868 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1869 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1870 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1871 | /* no internal command while frozen */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1872 | if (ap->pflags & ATA_PFLAG_FROZEN) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1873 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1874 | return AC_ERR_SYSTEM; |
| 1875 | } |
| 1876 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1877 | /* initialize internal qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1878 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1879 | /* XXX: Tag 0 is used for drivers with legacy EH as some |
| 1880 | * drivers choke if any other tag is given. This breaks |
| 1881 | * ata_tag_internal() test for those drivers. Don't use new |
| 1882 | * EH stuff without converting to it. |
| 1883 | */ |
| 1884 | if (ap->ops->error_handler) |
| 1885 | tag = ATA_TAG_INTERNAL; |
| 1886 | else |
| 1887 | tag = 0; |
| 1888 | |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 1889 | if (test_and_set_bit(tag, &ap->qc_allocated)) |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1890 | BUG(); |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 1891 | qc = __ata_qc_from_tag(ap, tag); |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1892 | |
| 1893 | qc->tag = tag; |
| 1894 | qc->scsicmd = NULL; |
| 1895 | qc->ap = ap; |
| 1896 | qc->dev = dev; |
| 1897 | ata_qc_reinit(qc); |
| 1898 | |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1899 | preempted_tag = link->active_tag; |
| 1900 | preempted_sactive = link->sactive; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1901 | preempted_qc_active = ap->qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1902 | preempted_nr_active_links = ap->nr_active_links; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1903 | link->active_tag = ATA_TAG_POISON; |
| 1904 | link->sactive = 0; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1905 | ap->qc_active = 0; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1906 | ap->nr_active_links = 0; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1907 | |
| 1908 | /* prepare & issue qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1909 | qc->tf = *tf; |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1910 | if (cdb) |
| 1911 | memcpy(qc->cdb, cdb, ATAPI_CDB_LEN); |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1912 | qc->flags |= ATA_QCFLAG_RESULT_TF; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1913 | qc->dma_dir = dma_dir; |
| 1914 | if (dma_dir != DMA_NONE) { |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1915 | unsigned int i, buflen = 0; |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1916 | struct scatterlist *sg; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1917 | |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1918 | for_each_sg(sgl, sg, n_elem, i) |
| 1919 | buflen += sg->length; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1920 | |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1921 | ata_sg_init(qc, sgl, n_elem); |
Brian King | 49c8042 | 2007-01-30 11:32:26 -0600 | [diff] [blame] | 1922 | qc->nbytes = buflen; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1923 | } |
| 1924 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1925 | qc->private_data = &wait; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1926 | qc->complete_fn = ata_qc_complete_internal; |
| 1927 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 1928 | ata_qc_issue(qc); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1929 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1930 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1931 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1932 | if (!timeout) |
| 1933 | timeout = ata_probe_timeout * 1000 / HZ; |
| 1934 | |
| 1935 | rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout)); |
Albert Lee | 41ade50 | 2006-03-14 11:19:04 +0800 | [diff] [blame] | 1936 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1937 | ata_port_flush_task(ap); |
| 1938 | |
| 1939 | if (!rc) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1940 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1941 | |
| 1942 | /* We're racing with irq here. If we lose, the |
| 1943 | * following test prevents us from completing the qc |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1944 | * twice. If we win, the port is frozen and will be |
| 1945 | * cleaned up by ->post_internal_cmd(). |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1946 | */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1947 | if (qc->flags & ATA_QCFLAG_ACTIVE) { |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1948 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 1949 | |
| 1950 | if (ap->ops->error_handler) |
| 1951 | ata_port_freeze(ap); |
| 1952 | else |
| 1953 | ata_qc_complete(qc); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1954 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1955 | if (ata_msg_warn(ap)) |
| 1956 | ata_dev_printk(dev, KERN_WARNING, |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1957 | "qc timeout (cmd 0x%x)\n", command); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1958 | } |
| 1959 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1960 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1961 | } |
| 1962 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1963 | /* do post_internal_cmd */ |
| 1964 | if (ap->ops->post_internal_cmd) |
| 1965 | ap->ops->post_internal_cmd(qc); |
| 1966 | |
Tejun Heo | a51d644 | 2007-03-20 15:24:11 +0900 | [diff] [blame] | 1967 | /* perform minimal error analysis */ |
| 1968 | if (qc->flags & ATA_QCFLAG_FAILED) { |
| 1969 | if (qc->result_tf.command & (ATA_ERR | ATA_DF)) |
| 1970 | qc->err_mask |= AC_ERR_DEV; |
| 1971 | |
| 1972 | if (!qc->err_mask) |
| 1973 | qc->err_mask |= AC_ERR_OTHER; |
| 1974 | |
| 1975 | if (qc->err_mask & ~AC_ERR_OTHER) |
| 1976 | qc->err_mask &= ~AC_ERR_OTHER; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1977 | } |
| 1978 | |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1979 | /* finish up */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1980 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1981 | |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1982 | *tf = qc->result_tf; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1983 | err_mask = qc->err_mask; |
| 1984 | |
| 1985 | ata_qc_free(qc); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1986 | link->active_tag = preempted_tag; |
| 1987 | link->sactive = preempted_sactive; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1988 | ap->qc_active = preempted_qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1989 | ap->nr_active_links = preempted_nr_active_links; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1990 | |
Tejun Heo | 1f7dd3e9 | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1991 | /* XXX - Some LLDDs (sata_mv) disable port on command failure. |
| 1992 | * Until those drivers are fixed, we detect the condition |
| 1993 | * here, fail the command with AC_ERR_SYSTEM and reenable the |
| 1994 | * port. |
| 1995 | * |
| 1996 | * Note that this doesn't change any behavior as internal |
| 1997 | * command failure results in disabling the device in the |
| 1998 | * higher layer for LLDDs without new reset/EH callbacks. |
| 1999 | * |
| 2000 | * Kill the following code as soon as those drivers are fixed. |
| 2001 | */ |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2002 | if (ap->flags & ATA_FLAG_DISABLED) { |
Tejun Heo | 1f7dd3e9 | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 2003 | err_mask |= AC_ERR_SYSTEM; |
| 2004 | ata_port_probe(ap); |
| 2005 | } |
| 2006 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 2007 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 2008 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 2009 | return err_mask; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 2010 | } |
| 2011 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | /** |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 2013 | * ata_exec_internal - execute libata internal command |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 2014 | * @dev: Device to which the command is sent |
| 2015 | * @tf: Taskfile registers for the command and the result |
| 2016 | * @cdb: CDB for packet command |
| 2017 | * @dma_dir: Data tranfer direction of the command |
| 2018 | * @buf: Data buffer of the command |
| 2019 | * @buflen: Length of data buffer |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 2020 | * @timeout: Timeout in msecs (0 for default) |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 2021 | * |
| 2022 | * Wrapper around ata_exec_internal_sg() which takes simple |
| 2023 | * buffer instead of sg list. |
| 2024 | * |
| 2025 | * LOCKING: |
| 2026 | * None. Should be called with kernel context, might sleep. |
| 2027 | * |
| 2028 | * RETURNS: |
| 2029 | * Zero on success, AC_ERR_* mask on failure |
| 2030 | */ |
| 2031 | unsigned ata_exec_internal(struct ata_device *dev, |
| 2032 | struct ata_taskfile *tf, const u8 *cdb, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 2033 | int dma_dir, void *buf, unsigned int buflen, |
| 2034 | unsigned long timeout) |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 2035 | { |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 2036 | struct scatterlist *psg = NULL, sg; |
| 2037 | unsigned int n_elem = 0; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 2038 | |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 2039 | if (dma_dir != DMA_NONE) { |
| 2040 | WARN_ON(!buf); |
| 2041 | sg_init_one(&sg, buf, buflen); |
| 2042 | psg = &sg; |
| 2043 | n_elem++; |
| 2044 | } |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 2045 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 2046 | return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem, |
| 2047 | timeout); |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 2048 | } |
| 2049 | |
| 2050 | /** |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 2051 | * ata_do_simple_cmd - execute simple internal command |
| 2052 | * @dev: Device to which the command is sent |
| 2053 | * @cmd: Opcode to execute |
| 2054 | * |
| 2055 | * Execute a 'simple' command, that only consists of the opcode |
| 2056 | * 'cmd' itself, without filling any other registers |
| 2057 | * |
| 2058 | * LOCKING: |
| 2059 | * Kernel thread context (may sleep). |
| 2060 | * |
| 2061 | * RETURNS: |
| 2062 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 2063 | */ |
Tejun Heo | 77b08fb | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 2064 | unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd) |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 2065 | { |
| 2066 | struct ata_taskfile tf; |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 2067 | |
| 2068 | ata_tf_init(dev, &tf); |
| 2069 | |
| 2070 | tf.command = cmd; |
| 2071 | tf.flags |= ATA_TFLAG_DEVICE; |
| 2072 | tf.protocol = ATA_PROT_NODATA; |
| 2073 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 2074 | return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 2075 | } |
| 2076 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | /** |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2078 | * ata_pio_need_iordy - check if iordy needed |
| 2079 | * @adev: ATA device |
| 2080 | * |
| 2081 | * Check if the current speed of the device requires IORDY. Used |
| 2082 | * by various controllers for chip configuration. |
| 2083 | */ |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 2084 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2085 | unsigned int ata_pio_need_iordy(const struct ata_device *adev) |
| 2086 | { |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2087 | /* Controller doesn't support IORDY. Probably a pointless check |
| 2088 | as the caller should know this */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2089 | if (adev->link->ap->flags & ATA_FLAG_NO_IORDY) |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2090 | return 0; |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2091 | /* PIO3 and higher it is mandatory */ |
| 2092 | if (adev->pio_mode > XFER_PIO_2) |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2093 | return 1; |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2094 | /* We turn it on when possible */ |
| 2095 | if (ata_id_has_iordy(adev->id)) |
| 2096 | return 1; |
| 2097 | return 0; |
| 2098 | } |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2099 | |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2100 | /** |
| 2101 | * ata_pio_mask_no_iordy - Return the non IORDY mask |
| 2102 | * @adev: ATA device |
| 2103 | * |
| 2104 | * Compute the highest mode possible if we are not using iordy. Return |
| 2105 | * -1 if no iordy mode is available. |
| 2106 | */ |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 2107 | |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2108 | static u32 ata_pio_mask_no_iordy(const struct ata_device *adev) |
| 2109 | { |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2110 | /* 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] | 2111 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */ |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2112 | u16 pio = adev->id[ATA_ID_EIDE_PIO]; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2113 | /* Is the speed faster than the drive allows non IORDY ? */ |
| 2114 | if (pio) { |
| 2115 | /* This is cycle times not frequency - watch the logic! */ |
| 2116 | if (pio > 240) /* PIO2 is 240nS per cycle */ |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2117 | return 3 << ATA_SHIFT_PIO; |
| 2118 | return 7 << ATA_SHIFT_PIO; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2119 | } |
| 2120 | } |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2121 | return 3 << ATA_SHIFT_PIO; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2122 | } |
| 2123 | |
| 2124 | /** |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2125 | * ata_dev_read_id - Read ID data from the specified device |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2126 | * @dev: target device |
| 2127 | * @p_class: pointer to class of the target device (may be changed) |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2128 | * @flags: ATA_READID_* flags |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2129 | * @id: buffer to read IDENTIFY data into |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2130 | * |
| 2131 | * Read ID data from the specified device. ATA_CMD_ID_ATA is |
| 2132 | * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 2133 | * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS |
| 2134 | * for pre-ATA4 drives. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2135 | * |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2136 | * FIXME: ATA_CMD_ID_ATA is optional for early drives and right |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2137 | * now we abort if we hit that case. |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2138 | * |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2139 | * LOCKING: |
| 2140 | * Kernel thread context (may sleep) |
| 2141 | * |
| 2142 | * RETURNS: |
| 2143 | * 0 on success, -errno otherwise. |
| 2144 | */ |
Tejun Heo | a9beec9 | 2006-05-31 18:27:44 +0900 | [diff] [blame] | 2145 | 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] | 2146 | unsigned int flags, u16 *id) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2147 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2148 | struct ata_port *ap = dev->link->ap; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2149 | unsigned int class = *p_class; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2150 | struct ata_taskfile tf; |
| 2151 | unsigned int err_mask = 0; |
| 2152 | const char *reason; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2153 | int may_fallback = 1, tried_spinup = 0; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2154 | int rc; |
| 2155 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2156 | if (ata_msg_ctl(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2157 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2158 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2159 | ata_dev_select(ap, dev->devno, 1, 1); /* select device 0/1 */ |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2160 | retry: |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2161 | ata_tf_init(dev, &tf); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2162 | |
| 2163 | switch (class) { |
| 2164 | case ATA_DEV_ATA: |
| 2165 | tf.command = ATA_CMD_ID_ATA; |
| 2166 | break; |
| 2167 | case ATA_DEV_ATAPI: |
| 2168 | tf.command = ATA_CMD_ID_ATAPI; |
| 2169 | break; |
| 2170 | default: |
| 2171 | rc = -ENODEV; |
| 2172 | reason = "unsupported class"; |
| 2173 | goto err_out; |
| 2174 | } |
| 2175 | |
| 2176 | tf.protocol = ATA_PROT_PIO; |
Tejun Heo | 81afe89 | 2007-02-07 12:37:41 -0800 | [diff] [blame] | 2177 | |
| 2178 | /* Some devices choke if TF registers contain garbage. Make |
| 2179 | * sure those are properly initialized. |
| 2180 | */ |
| 2181 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 2182 | |
| 2183 | /* Device presence detection is unreliable on some |
| 2184 | * controllers. Always poll IDENTIFY if available. |
| 2185 | */ |
| 2186 | tf.flags |= ATA_TFLAG_POLLING; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2187 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2188 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 2189 | id, sizeof(id[0]) * ATA_ID_WORDS, 0); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2190 | if (err_mask) { |
Tejun Heo | 800b399 | 2006-12-03 21:34:13 +0900 | [diff] [blame] | 2191 | if (err_mask & AC_ERR_NODEV_HINT) { |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 2192 | ata_dev_printk(dev, KERN_DEBUG, |
| 2193 | "NODEV after polling detection\n"); |
Tejun Heo | 55a8e2c | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2194 | return -ENOENT; |
| 2195 | } |
| 2196 | |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 2197 | if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) { |
| 2198 | /* Device or controller might have reported |
| 2199 | * the wrong device class. Give a shot at the |
| 2200 | * other IDENTIFY if the current one is |
| 2201 | * aborted by the device. |
| 2202 | */ |
| 2203 | if (may_fallback) { |
| 2204 | may_fallback = 0; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2205 | |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 2206 | if (class == ATA_DEV_ATA) |
| 2207 | class = ATA_DEV_ATAPI; |
| 2208 | else |
| 2209 | class = ATA_DEV_ATA; |
| 2210 | goto retry; |
| 2211 | } |
| 2212 | |
| 2213 | /* Control reaches here iff the device aborted |
| 2214 | * both flavors of IDENTIFYs which happens |
| 2215 | * sometimes with phantom devices. |
| 2216 | */ |
| 2217 | ata_dev_printk(dev, KERN_DEBUG, |
| 2218 | "both IDENTIFYs aborted, assuming NODEV\n"); |
| 2219 | return -ENOENT; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2220 | } |
| 2221 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2222 | rc = -EIO; |
| 2223 | reason = "I/O error"; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2224 | goto err_out; |
| 2225 | } |
| 2226 | |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2227 | /* Falling back doesn't make sense if ID data was read |
| 2228 | * successfully at least once. |
| 2229 | */ |
| 2230 | may_fallback = 0; |
| 2231 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2232 | swap_buf_le16(id, ATA_ID_WORDS); |
| 2233 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2234 | /* sanity check */ |
Tejun Heo | a4f5749 | 2006-09-12 20:35:49 -0700 | [diff] [blame] | 2235 | rc = -EINVAL; |
Alan Cox | 6070068 | 2007-06-07 16:13:55 +0100 | [diff] [blame] | 2236 | reason = "device reports invalid type"; |
Tejun Heo | a4f5749 | 2006-09-12 20:35:49 -0700 | [diff] [blame] | 2237 | |
| 2238 | if (class == ATA_DEV_ATA) { |
| 2239 | if (!ata_id_is_ata(id) && !ata_id_is_cfa(id)) |
| 2240 | goto err_out; |
| 2241 | } else { |
| 2242 | if (ata_id_is_ata(id)) |
| 2243 | goto err_out; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2244 | } |
| 2245 | |
Mark Lord | 169439c | 2007-04-17 18:26:07 -0400 | [diff] [blame] | 2246 | if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) { |
| 2247 | tried_spinup = 1; |
| 2248 | /* |
| 2249 | * Drive powered-up in standby mode, and requires a specific |
| 2250 | * SET_FEATURES spin-up subcommand before it will accept |
| 2251 | * anything other than the original IDENTIFY command. |
| 2252 | */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 2253 | err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0); |
Ryan Power | fb0582f9 | 2007-08-10 13:59:35 -0700 | [diff] [blame] | 2254 | if (err_mask && id[2] != 0x738c) { |
Mark Lord | 169439c | 2007-04-17 18:26:07 -0400 | [diff] [blame] | 2255 | rc = -EIO; |
| 2256 | reason = "SPINUP failed"; |
| 2257 | goto err_out; |
| 2258 | } |
| 2259 | /* |
| 2260 | * If the drive initially returned incomplete IDENTIFY info, |
| 2261 | * we now must reissue the IDENTIFY command. |
| 2262 | */ |
| 2263 | if (id[2] == 0x37c8) |
| 2264 | goto retry; |
| 2265 | } |
| 2266 | |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2267 | if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) { |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2268 | /* |
| 2269 | * The exact sequence expected by certain pre-ATA4 drives is: |
| 2270 | * SRST RESET |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2271 | * IDENTIFY (optional in early ATA) |
| 2272 | * INITIALIZE DEVICE PARAMETERS (later IDE and ATA) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2273 | * anything else.. |
| 2274 | * Some drives were very specific about that exact sequence. |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2275 | * |
| 2276 | * Note that ATA4 says lba is mandatory so the second check |
| 2277 | * shoud never trigger. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2278 | */ |
| 2279 | if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2280 | err_mask = ata_dev_init_params(dev, id[3], id[6]); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2281 | if (err_mask) { |
| 2282 | rc = -EIO; |
| 2283 | reason = "INIT_DEV_PARAMS failed"; |
| 2284 | goto err_out; |
| 2285 | } |
| 2286 | |
| 2287 | /* current CHS translation info (id[53-58]) might be |
| 2288 | * changed. reread the identify device info. |
| 2289 | */ |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2290 | flags &= ~ATA_READID_POSTRESET; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2291 | goto retry; |
| 2292 | } |
| 2293 | } |
| 2294 | |
| 2295 | *p_class = class; |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2296 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2297 | return 0; |
| 2298 | |
| 2299 | err_out: |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2300 | if (ata_msg_warn(ap)) |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2301 | ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY " |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2302 | "(%s, err_mask=0x%x)\n", reason, err_mask); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2303 | return rc; |
| 2304 | } |
| 2305 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2306 | static inline u8 ata_dev_knobble(struct ata_device *dev) |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2307 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2308 | struct ata_port *ap = dev->link->ap; |
| 2309 | return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id))); |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2310 | } |
| 2311 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2312 | static void ata_dev_config_ncq(struct ata_device *dev, |
| 2313 | char *desc, size_t desc_sz) |
| 2314 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2315 | struct ata_port *ap = dev->link->ap; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2316 | int hdepth = 0, ddepth = ata_id_queue_depth(dev->id); |
| 2317 | |
| 2318 | if (!ata_id_has_ncq(dev->id)) { |
| 2319 | desc[0] = '\0'; |
| 2320 | return; |
| 2321 | } |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2322 | if (dev->horkage & ATA_HORKAGE_NONCQ) { |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 2323 | snprintf(desc, desc_sz, "NCQ (not used)"); |
| 2324 | return; |
| 2325 | } |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2326 | if (ap->flags & ATA_FLAG_NCQ) { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2327 | hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2328 | dev->flags |= ATA_DFLAG_NCQ; |
| 2329 | } |
| 2330 | |
| 2331 | if (hdepth >= ddepth) |
| 2332 | snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth); |
| 2333 | else |
| 2334 | snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth); |
| 2335 | } |
| 2336 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2337 | /** |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2338 | * ata_dev_configure - Configure the specified ATA/ATAPI device |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2339 | * @dev: Target device to configure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | * |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2341 | * Configure @dev according to @dev->id. Generic and low-level |
| 2342 | * driver specific fixups are also applied. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2343 | * |
| 2344 | * LOCKING: |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2345 | * Kernel thread context (may sleep) |
| 2346 | * |
| 2347 | * RETURNS: |
| 2348 | * 0 on success, -errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | */ |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 2350 | int ata_dev_configure(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2352 | struct ata_port *ap = dev->link->ap; |
| 2353 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | 6746544 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 2354 | int print_info = ehc->i.flags & ATA_EHI_PRINTINFO; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2355 | const u16 *id = dev->id; |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 2356 | unsigned long xfer_mask; |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2357 | char revbuf[7]; /* XYZ-99\0 */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2358 | char fwrevbuf[ATA_ID_FW_REV_LEN+1]; |
| 2359 | char modelbuf[ATA_ID_PROD_LEN+1]; |
Brian King | e6d902a | 2006-06-28 08:30:31 -0500 | [diff] [blame] | 2360 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2362 | if (!ata_dev_enabled(dev) && ata_msg_info(ap)) { |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 2363 | ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n", |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2364 | __func__); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2365 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2366 | } |
| 2367 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2368 | if (ata_msg_probe(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2369 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2371 | /* set horkage */ |
| 2372 | dev->horkage |= ata_dev_blacklisted(dev); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 2373 | ata_force_horkage(dev); |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2374 | |
Tejun Heo | 6746544 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 2375 | /* let ACPI work its magic */ |
| 2376 | rc = ata_acpi_on_devcfg(dev); |
| 2377 | if (rc) |
| 2378 | return rc; |
Kristen Carlson Accardi | 08573a8 | 2006-11-10 16:14:47 -0800 | [diff] [blame] | 2379 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 2380 | /* massage HPA, do it early as it might change IDENTIFY data */ |
| 2381 | rc = ata_hpa_resize(dev); |
| 2382 | if (rc) |
| 2383 | return rc; |
| 2384 | |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 2385 | /* print device capabilities */ |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2386 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2387 | ata_dev_printk(dev, KERN_DEBUG, |
| 2388 | "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x " |
| 2389 | "85:%04x 86:%04x 87:%04x 88:%04x\n", |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2390 | __func__, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2391 | id[49], id[82], id[83], id[84], |
| 2392 | id[85], id[86], id[87], id[88]); |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 2393 | |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2394 | /* initialize to-be-configured parameters */ |
Tejun Heo | ea1dd4e | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2395 | dev->flags &= ~ATA_DFLAG_CFG_MASK; |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2396 | dev->max_sectors = 0; |
| 2397 | dev->cdb_len = 0; |
| 2398 | dev->n_sectors = 0; |
| 2399 | dev->cylinders = 0; |
| 2400 | dev->heads = 0; |
| 2401 | dev->sectors = 0; |
| 2402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | /* |
| 2404 | * common ATA, ATAPI feature tests |
| 2405 | */ |
| 2406 | |
Tejun Heo | ff8854b | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 2407 | /* find max transfer mode; for printk only */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2408 | xfer_mask = ata_id_xfermask(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2410 | if (ata_msg_probe(ap)) |
| 2411 | ata_dump_id(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2413 | /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */ |
| 2414 | ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV, |
| 2415 | sizeof(fwrevbuf)); |
| 2416 | |
| 2417 | ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD, |
| 2418 | sizeof(modelbuf)); |
| 2419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | /* ATA-specific feature tests */ |
| 2421 | if (dev->class == ATA_DEV_ATA) { |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2422 | if (ata_id_is_cfa(id)) { |
| 2423 | if (id[162] & 1) /* CPRM may make this media unusable */ |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 2424 | ata_dev_printk(dev, KERN_WARNING, |
| 2425 | "supports DRM functions and may " |
| 2426 | "not be fully accessable.\n"); |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2427 | snprintf(revbuf, 7, "CFA"); |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 2428 | } else { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2429 | snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id)); |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 2430 | /* Warn the user if the device has TPM extensions */ |
| 2431 | if (ata_id_has_tpm(id)) |
| 2432 | ata_dev_printk(dev, KERN_WARNING, |
| 2433 | "supports DRM functions and may " |
| 2434 | "not be fully accessable.\n"); |
| 2435 | } |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2436 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2437 | dev->n_sectors = ata_id_n_sectors(id); |
Tejun Heo | 2940740 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 2438 | |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2439 | if (dev->id[59] & 0x100) |
| 2440 | dev->multi_count = dev->id[59] & 0xff; |
| 2441 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2442 | if (ata_id_has_lba(id)) { |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2443 | const char *lba_desc; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2444 | char ncq_desc[20]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2445 | |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2446 | lba_desc = "LBA"; |
| 2447 | dev->flags |= ATA_DFLAG_LBA; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2448 | if (ata_id_has_lba48(id)) { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2449 | dev->flags |= ATA_DFLAG_LBA48; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2450 | lba_desc = "LBA48"; |
Tejun Heo | 6fc49ad | 2006-11-11 20:10:45 +0900 | [diff] [blame] | 2451 | |
| 2452 | if (dev->n_sectors >= (1UL << 28) && |
| 2453 | ata_id_has_flush_ext(id)) |
| 2454 | dev->flags |= ATA_DFLAG_FLUSH_EXT; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2455 | } |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2456 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2457 | /* config NCQ */ |
| 2458 | ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc)); |
| 2459 | |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2460 | /* print device info to dmesg */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2461 | if (ata_msg_drv(ap) && print_info) { |
| 2462 | ata_dev_printk(dev, KERN_INFO, |
| 2463 | "%s: %s, %s, max %s\n", |
| 2464 | revbuf, modelbuf, fwrevbuf, |
| 2465 | ata_mode_string(xfer_mask)); |
| 2466 | ata_dev_printk(dev, KERN_INFO, |
| 2467 | "%Lu sectors, multi %u: %s %s\n", |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2468 | (unsigned long long)dev->n_sectors, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2469 | dev->multi_count, lba_desc, ncq_desc); |
| 2470 | } |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2471 | } else { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2472 | /* CHS */ |
| 2473 | |
| 2474 | /* Default translation */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2475 | dev->cylinders = id[1]; |
| 2476 | dev->heads = id[3]; |
| 2477 | dev->sectors = id[6]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2478 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2479 | if (ata_id_current_chs_valid(id)) { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2480 | /* Current CHS translation is valid. */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2481 | dev->cylinders = id[54]; |
| 2482 | dev->heads = id[55]; |
| 2483 | dev->sectors = id[56]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2484 | } |
| 2485 | |
| 2486 | /* print device info to dmesg */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2487 | if (ata_msg_drv(ap) && print_info) { |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2488 | ata_dev_printk(dev, KERN_INFO, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2489 | "%s: %s, %s, max %s\n", |
| 2490 | revbuf, modelbuf, fwrevbuf, |
| 2491 | ata_mode_string(xfer_mask)); |
Jeff Garzik | a84471f | 2007-02-26 05:51:33 -0500 | [diff] [blame] | 2492 | ata_dev_printk(dev, KERN_INFO, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2493 | "%Lu sectors, multi %u, CHS %u/%u/%u\n", |
| 2494 | (unsigned long long)dev->n_sectors, |
| 2495 | dev->multi_count, dev->cylinders, |
| 2496 | dev->heads, dev->sectors); |
| 2497 | } |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 2498 | } |
| 2499 | |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 2500 | dev->cdb_len = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | } |
| 2502 | |
| 2503 | /* ATAPI-specific feature tests */ |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 2504 | else if (dev->class == ATA_DEV_ATAPI) { |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2505 | const char *cdb_intr_string = ""; |
| 2506 | const char *atapi_an_string = ""; |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2507 | const char *dma_dir_string = ""; |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2508 | u32 sntf; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2509 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2510 | rc = atapi_cdb_len(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | if ((rc < 12) || (rc > ATAPI_CDB_LEN)) { |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2512 | if (ata_msg_warn(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2513 | ata_dev_printk(dev, KERN_WARNING, |
| 2514 | "unsupported CDB len\n"); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2515 | rc = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | goto err_out_nosup; |
| 2517 | } |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 2518 | dev->cdb_len = (unsigned int) rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2520 | /* Enable ATAPI AN if both the host and device have |
| 2521 | * the support. If PMP is attached, SNTF is required |
| 2522 | * to enable ATAPI AN to discern between PHY status |
| 2523 | * changed notifications and ATAPI ANs. |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2524 | */ |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2525 | if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) && |
| 2526 | (!ap->nr_pmp_links || |
| 2527 | sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) { |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2528 | unsigned int err_mask; |
| 2529 | |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2530 | /* issue SET feature command to turn this on */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 2531 | err_mask = ata_dev_set_feature(dev, |
| 2532 | SETFEATURES_SATA_ENABLE, SATA_AN); |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2533 | if (err_mask) |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2534 | ata_dev_printk(dev, KERN_ERR, |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2535 | "failed to enable ATAPI AN " |
| 2536 | "(err_mask=0x%x)\n", err_mask); |
| 2537 | else { |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2538 | dev->flags |= ATA_DFLAG_AN; |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2539 | atapi_an_string = ", ATAPI AN"; |
| 2540 | } |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2541 | } |
| 2542 | |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2543 | if (ata_id_cdb_intr(dev->id)) { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 2544 | dev->flags |= ATA_DFLAG_CDB_INTR; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2545 | cdb_intr_string = ", CDB intr"; |
| 2546 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 2547 | |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2548 | if (atapi_dmadir || atapi_id_dmadir(dev->id)) { |
| 2549 | dev->flags |= ATA_DFLAG_DMADIR; |
| 2550 | dma_dir_string = ", DMADIR"; |
| 2551 | } |
| 2552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | /* print device info to dmesg */ |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 2554 | if (ata_msg_drv(ap) && print_info) |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2555 | ata_dev_printk(dev, KERN_INFO, |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2556 | "ATAPI: %s, %s, max %s%s%s%s\n", |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2557 | modelbuf, fwrevbuf, |
Tejun Heo | 12436c3 | 2006-05-15 20:59:15 +0900 | [diff] [blame] | 2558 | ata_mode_string(xfer_mask), |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2559 | cdb_intr_string, atapi_an_string, |
| 2560 | dma_dir_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | } |
| 2562 | |
Tejun Heo | 914ed35 | 2006-11-01 18:39:55 +0900 | [diff] [blame] | 2563 | /* determine max_sectors */ |
| 2564 | dev->max_sectors = ATA_MAX_SECTORS; |
| 2565 | if (dev->flags & ATA_DFLAG_LBA48) |
| 2566 | dev->max_sectors = ATA_MAX_SECTORS_LBA48; |
| 2567 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 2568 | if (!(dev->horkage & ATA_HORKAGE_IPM)) { |
| 2569 | if (ata_id_has_hipm(dev->id)) |
| 2570 | dev->flags |= ATA_DFLAG_HIPM; |
| 2571 | if (ata_id_has_dipm(dev->id)) |
| 2572 | dev->flags |= ATA_DFLAG_DIPM; |
| 2573 | } |
| 2574 | |
Alan Cox | c5038fc | 2007-10-25 14:21:16 +0100 | [diff] [blame] | 2575 | /* Limit PATA drive on SATA cable bridge transfers to udma5, |
| 2576 | 200 sectors */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2577 | if (ata_dev_knobble(dev)) { |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 2578 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2579 | ata_dev_printk(dev, KERN_INFO, |
| 2580 | "applying bridge limits\n"); |
Tejun Heo | 5a52913 | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 2581 | dev->udma_mask &= ATA_UDMA5; |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2582 | dev->max_sectors = ATA_MAX_SECTORS; |
| 2583 | } |
| 2584 | |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2585 | if ((dev->class == ATA_DEV_ATAPI) && |
Albert Lee | f442cd8 | 2007-11-15 10:35:47 +0900 | [diff] [blame] | 2586 | (atapi_command_packet_set(id) == TYPE_TAPE)) { |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2587 | dev->max_sectors = ATA_MAX_SECTORS_TAPE; |
Albert Lee | f442cd8 | 2007-11-15 10:35:47 +0900 | [diff] [blame] | 2588 | dev->horkage |= ATA_HORKAGE_STUCK_ERR; |
| 2589 | } |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2590 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2591 | if (dev->horkage & ATA_HORKAGE_MAX_SEC_128) |
Tejun Heo | 03ec52d | 2007-04-12 13:38:11 +0900 | [diff] [blame] | 2592 | dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128, |
| 2593 | dev->max_sectors); |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 2594 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 2595 | if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) { |
| 2596 | dev->horkage |= ATA_HORKAGE_IPM; |
| 2597 | |
| 2598 | /* reset link pm_policy for this port to no pm */ |
| 2599 | ap->pm_policy = MAX_PERFORMANCE; |
| 2600 | } |
| 2601 | |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2602 | if (ap->ops->dev_config) |
Alan | cd0d3bb | 2007-03-02 00:56:15 +0000 | [diff] [blame] | 2603 | ap->ops->dev_config(dev); |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2604 | |
Alan Cox | c5038fc | 2007-10-25 14:21:16 +0100 | [diff] [blame] | 2605 | if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) { |
| 2606 | /* Let the user know. We don't want to disallow opens for |
| 2607 | rescue purposes, or in case the vendor is just a blithering |
| 2608 | idiot. Do this after the dev_config call as some controllers |
| 2609 | with buggy firmware may want to avoid reporting false device |
| 2610 | bugs */ |
| 2611 | |
| 2612 | if (print_info) { |
| 2613 | ata_dev_printk(dev, KERN_WARNING, |
| 2614 | "Drive reports diagnostics failure. This may indicate a drive\n"); |
| 2615 | ata_dev_printk(dev, KERN_WARNING, |
| 2616 | "fault or invalid emulation. Contact drive vendor for information.\n"); |
| 2617 | } |
| 2618 | } |
| 2619 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2620 | if (ata_msg_probe(ap)) |
| 2621 | ata_dev_printk(dev, KERN_DEBUG, "%s: EXIT, drv_stat = 0x%x\n", |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2622 | __func__, ata_chk_status(ap)); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2623 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2624 | |
| 2625 | err_out_nosup: |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2626 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2627 | ata_dev_printk(dev, KERN_DEBUG, |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2628 | "%s: EXIT, err\n", __func__); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2629 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | } |
| 2631 | |
| 2632 | /** |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2633 | * ata_cable_40wire - return 40 wire cable type |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2634 | * @ap: port |
| 2635 | * |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2636 | * Helper method for drivers which want to hardwire 40 wire cable |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2637 | * detection. |
| 2638 | */ |
| 2639 | |
| 2640 | int ata_cable_40wire(struct ata_port *ap) |
| 2641 | { |
| 2642 | return ATA_CBL_PATA40; |
| 2643 | } |
| 2644 | |
| 2645 | /** |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2646 | * ata_cable_80wire - return 80 wire cable type |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2647 | * @ap: port |
| 2648 | * |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2649 | * Helper method for drivers which want to hardwire 80 wire cable |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2650 | * detection. |
| 2651 | */ |
| 2652 | |
| 2653 | int ata_cable_80wire(struct ata_port *ap) |
| 2654 | { |
| 2655 | return ATA_CBL_PATA80; |
| 2656 | } |
| 2657 | |
| 2658 | /** |
| 2659 | * ata_cable_unknown - return unknown PATA cable. |
| 2660 | * @ap: port |
| 2661 | * |
| 2662 | * Helper method for drivers which have no PATA cable detection. |
| 2663 | */ |
| 2664 | |
| 2665 | int ata_cable_unknown(struct ata_port *ap) |
| 2666 | { |
| 2667 | return ATA_CBL_PATA_UNK; |
| 2668 | } |
| 2669 | |
| 2670 | /** |
Tejun Heo | c88f90c | 2007-11-27 19:43:48 +0900 | [diff] [blame] | 2671 | * ata_cable_ignore - return ignored PATA cable. |
| 2672 | * @ap: port |
| 2673 | * |
| 2674 | * Helper method for drivers which don't use cable type to limit |
| 2675 | * transfer mode. |
| 2676 | */ |
| 2677 | int ata_cable_ignore(struct ata_port *ap) |
| 2678 | { |
| 2679 | return ATA_CBL_PATA_IGN; |
| 2680 | } |
| 2681 | |
| 2682 | /** |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2683 | * ata_cable_sata - return SATA cable type |
| 2684 | * @ap: port |
| 2685 | * |
| 2686 | * Helper method for drivers which have SATA cables |
| 2687 | */ |
| 2688 | |
| 2689 | int ata_cable_sata(struct ata_port *ap) |
| 2690 | { |
| 2691 | return ATA_CBL_SATA; |
| 2692 | } |
| 2693 | |
| 2694 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | * ata_bus_probe - Reset and probe ATA bus |
| 2696 | * @ap: Bus to probe |
| 2697 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2698 | * Master ATA bus probing function. Initiates a hardware-dependent |
| 2699 | * bus reset, then attempts to identify any devices found on |
| 2700 | * the bus. |
| 2701 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2703 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | * |
| 2705 | * RETURNS: |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2706 | * Zero on success, negative errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | */ |
| 2708 | |
Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 2709 | int ata_bus_probe(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | { |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2711 | unsigned int classes[ATA_MAX_DEVICES]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2712 | int tries[ATA_MAX_DEVICES]; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2713 | int rc; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2714 | struct ata_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2715 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2716 | ata_port_probe(ap); |
| 2717 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2718 | ata_link_for_each_dev(dev, &ap->link) |
| 2719 | tries[dev->devno] = ATA_PROBE_MAX_TRIES; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2720 | |
| 2721 | retry: |
Tejun Heo | cdeab11 | 2007-10-29 16:41:09 +0900 | [diff] [blame] | 2722 | ata_link_for_each_dev(dev, &ap->link) { |
| 2723 | /* If we issue an SRST then an ATA drive (not ATAPI) |
| 2724 | * may change configuration and be in PIO0 timing. If |
| 2725 | * we do a hard reset (or are coming from power on) |
| 2726 | * this is true for ATA or ATAPI. Until we've set a |
| 2727 | * suitable controller mode we should not touch the |
| 2728 | * bus as we may be talking too fast. |
| 2729 | */ |
| 2730 | dev->pio_mode = XFER_PIO_0; |
| 2731 | |
| 2732 | /* If the controller has a pio mode setup function |
| 2733 | * then use it to set the chipset to rights. Don't |
| 2734 | * touch the DMA setup as that will be dealt with when |
| 2735 | * configuring devices. |
| 2736 | */ |
| 2737 | if (ap->ops->set_piomode) |
| 2738 | ap->ops->set_piomode(ap, dev); |
| 2739 | } |
| 2740 | |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2741 | /* reset and determine device classes */ |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2742 | ap->ops->phy_reset(ap); |
Tejun Heo | 2061a47 | 2006-03-12 00:57:39 +0900 | [diff] [blame] | 2743 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2744 | ata_link_for_each_dev(dev, &ap->link) { |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2745 | if (!(ap->flags & ATA_FLAG_DISABLED) && |
| 2746 | dev->class != ATA_DEV_UNKNOWN) |
| 2747 | classes[dev->devno] = dev->class; |
| 2748 | else |
| 2749 | classes[dev->devno] = ATA_DEV_NONE; |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2750 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2751 | dev->class = ATA_DEV_UNKNOWN; |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2752 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2753 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2754 | ata_port_probe(ap); |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2755 | |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2756 | /* read IDENTIFY page and configure devices. We have to do the identify |
| 2757 | specific sequence bass-ackwards so that PDIAG- is released by |
| 2758 | the slave device */ |
| 2759 | |
Bartlomiej Zolnierkiewicz | a4ba7fe | 2008-04-02 10:35:15 +0900 | [diff] [blame] | 2760 | ata_link_for_each_dev_reverse(dev, &ap->link) { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2761 | if (tries[dev->devno]) |
| 2762 | dev->class = classes[dev->devno]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2763 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2764 | if (!ata_dev_enabled(dev)) |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2765 | continue; |
| 2766 | |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2767 | rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET, |
| 2768 | dev->id); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2769 | if (rc) |
| 2770 | goto fail; |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2771 | } |
| 2772 | |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2773 | /* Now ask for the cable type as PDIAG- should have been released */ |
| 2774 | if (ap->ops->cable_detect) |
| 2775 | ap->cbl = ap->ops->cable_detect(ap); |
| 2776 | |
Alan Cox | 614fe29 | 2007-08-22 23:22:45 +0100 | [diff] [blame] | 2777 | /* We may have SATA bridge glue hiding here irrespective of the |
| 2778 | reported cable types and sensed types */ |
| 2779 | ata_link_for_each_dev(dev, &ap->link) { |
| 2780 | if (!ata_dev_enabled(dev)) |
| 2781 | continue; |
| 2782 | /* SATA drives indicate we have a bridge. We don't know which |
| 2783 | end of the link the bridge is which is a problem */ |
| 2784 | if (ata_id_is_sata(dev->id)) |
| 2785 | ap->cbl = ATA_CBL_SATA; |
| 2786 | } |
| 2787 | |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2788 | /* After the identify sequence we can now set up the devices. We do |
| 2789 | this in the normal order so that the user doesn't get confused */ |
| 2790 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2791 | ata_link_for_each_dev(dev, &ap->link) { |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2792 | if (!ata_dev_enabled(dev)) |
| 2793 | continue; |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2794 | |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2795 | ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO; |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 2796 | rc = ata_dev_configure(dev); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2797 | ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2798 | if (rc) |
| 2799 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | } |
| 2801 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2802 | /* configure transfer mode */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2803 | rc = ata_set_mode(&ap->link, &dev); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2804 | if (rc) |
Tejun Heo | 51713d3 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 2805 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2807 | ata_link_for_each_dev(dev, &ap->link) |
| 2808 | if (ata_dev_enabled(dev)) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2809 | return 0; |
Alan Cox | e35a9e0 | 2006-03-27 18:46:37 +0100 | [diff] [blame] | 2810 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2811 | /* no device present, disable port */ |
| 2812 | ata_port_disable(ap); |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2813 | return -ENODEV; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2814 | |
| 2815 | fail: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2816 | tries[dev->devno]--; |
| 2817 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2818 | switch (rc) { |
| 2819 | case -EINVAL: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2820 | /* eeek, something went very wrong, give up */ |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2821 | tries[dev->devno] = 0; |
| 2822 | break; |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2823 | |
| 2824 | case -ENODEV: |
| 2825 | /* give it just one more chance */ |
| 2826 | tries[dev->devno] = min(tries[dev->devno], 1); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2827 | case -EIO: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2828 | if (tries[dev->devno] == 1) { |
| 2829 | /* This is the last chance, better to slow |
| 2830 | * down than lose it. |
| 2831 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2832 | sata_down_spd_limit(&ap->link); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2833 | ata_down_xfermask_limit(dev, ATA_DNXFER_PIO); |
| 2834 | } |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2835 | } |
| 2836 | |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2837 | if (!tries[dev->devno]) |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2838 | ata_dev_disable(dev); |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 2839 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2840 | goto retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | } |
| 2842 | |
| 2843 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2844 | * ata_port_probe - Mark port as enabled |
| 2845 | * @ap: Port for which we indicate enablement |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2847 | * Modify @ap data structure such that the system |
| 2848 | * thinks that the entire port is enabled. |
| 2849 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2850 | * LOCKING: host lock, or some other form of |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2851 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | */ |
| 2853 | |
| 2854 | void ata_port_probe(struct ata_port *ap) |
| 2855 | { |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2856 | ap->flags &= ~ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | } |
| 2858 | |
| 2859 | /** |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2860 | * sata_print_link_status - Print SATA link status |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2861 | * @link: SATA link to printk link status about |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2862 | * |
| 2863 | * This function prints link speed and status of a SATA link. |
| 2864 | * |
| 2865 | * LOCKING: |
| 2866 | * None. |
| 2867 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2868 | void sata_print_link_status(struct ata_link *link) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2869 | { |
Tejun Heo | 6d5f973 | 2006-04-03 00:09:41 +0900 | [diff] [blame] | 2870 | u32 sstatus, scontrol, tmp; |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2871 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2872 | if (sata_scr_read(link, SCR_STATUS, &sstatus)) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2873 | return; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2874 | sata_scr_read(link, SCR_CONTROL, &scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2875 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2876 | if (ata_link_online(link)) { |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2877 | tmp = (sstatus >> 4) & 0xf; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2878 | ata_link_printk(link, KERN_INFO, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2879 | "SATA link up %s (SStatus %X SControl %X)\n", |
| 2880 | sata_spd_string(tmp), sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2881 | } else { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2882 | ata_link_printk(link, KERN_INFO, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2883 | "SATA link down (SStatus %X SControl %X)\n", |
| 2884 | sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2885 | } |
| 2886 | } |
| 2887 | |
| 2888 | /** |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2889 | * ata_dev_pair - return other device on cable |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2890 | * @adev: device |
| 2891 | * |
| 2892 | * Obtain the other device on the same cable, or if none is |
| 2893 | * present NULL is returned |
| 2894 | */ |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2895 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2896 | struct ata_device *ata_dev_pair(struct ata_device *adev) |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2897 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2898 | struct ata_link *link = adev->link; |
| 2899 | struct ata_device *pair = &link->device[1 - adev->devno]; |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2900 | if (!ata_dev_enabled(pair)) |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2901 | return NULL; |
| 2902 | return pair; |
| 2903 | } |
| 2904 | |
| 2905 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2906 | * ata_port_disable - Disable port. |
| 2907 | * @ap: Port to be disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2909 | * Modify @ap data structure such that the system |
| 2910 | * thinks that the entire port is disabled, and should |
| 2911 | * never attempt to probe or communicate with devices |
| 2912 | * on this port. |
| 2913 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2914 | * LOCKING: host lock, or some other form of |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2915 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | */ |
| 2917 | |
| 2918 | void ata_port_disable(struct ata_port *ap) |
| 2919 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2920 | ap->link.device[0].class = ATA_DEV_NONE; |
| 2921 | ap->link.device[1].class = ATA_DEV_NONE; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2922 | ap->flags |= ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 | } |
| 2924 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2925 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2926 | * sata_down_spd_limit - adjust SATA spd limit downward |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2927 | * @link: Link to adjust SATA spd limit for |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2928 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2929 | * Adjust SATA spd limit of @link downward. Note that this |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2930 | * function only adjusts the limit. The change must be applied |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2931 | * using sata_set_spd(). |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2932 | * |
| 2933 | * LOCKING: |
| 2934 | * Inherited from caller. |
| 2935 | * |
| 2936 | * RETURNS: |
| 2937 | * 0 on success, negative errno on failure |
| 2938 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2939 | int sata_down_spd_limit(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2940 | { |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2941 | u32 sstatus, spd, mask; |
| 2942 | int rc, highbit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2943 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2944 | if (!sata_scr_valid(link)) |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2945 | return -EOPNOTSUPP; |
| 2946 | |
| 2947 | /* If SCR can be read, use it to determine the current SPD. |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2948 | * If not, use cached value in link->sata_spd. |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2949 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2950 | rc = sata_scr_read(link, SCR_STATUS, &sstatus); |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2951 | if (rc == 0) |
| 2952 | spd = (sstatus >> 4) & 0xf; |
| 2953 | else |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2954 | spd = link->sata_spd; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2955 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2956 | mask = link->sata_spd_limit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2957 | if (mask <= 1) |
| 2958 | return -EINVAL; |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2959 | |
| 2960 | /* unconditionally mask off the highest bit */ |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2961 | highbit = fls(mask) - 1; |
| 2962 | mask &= ~(1 << highbit); |
| 2963 | |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2964 | /* Mask off all speeds higher than or equal to the current |
| 2965 | * one. Force 1.5Gbps if current SPD is not available. |
| 2966 | */ |
| 2967 | if (spd > 1) |
| 2968 | mask &= (1 << (spd - 1)) - 1; |
| 2969 | else |
| 2970 | mask &= 1; |
| 2971 | |
| 2972 | /* were we already at the bottom? */ |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2973 | if (!mask) |
| 2974 | return -EINVAL; |
| 2975 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2976 | link->sata_spd_limit = mask; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2977 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2978 | 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] | 2979 | sata_spd_string(fls(mask))); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2980 | |
| 2981 | return 0; |
| 2982 | } |
| 2983 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2984 | static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2985 | { |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2986 | struct ata_link *host_link = &link->ap->link; |
| 2987 | u32 limit, target, spd; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2988 | |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2989 | limit = link->sata_spd_limit; |
| 2990 | |
| 2991 | /* Don't configure downstream link faster than upstream link. |
| 2992 | * It doesn't speed up anything and some PMPs choke on such |
| 2993 | * configuration. |
| 2994 | */ |
| 2995 | if (!ata_is_host_link(link) && host_link->sata_spd) |
| 2996 | limit &= (1 << host_link->sata_spd) - 1; |
| 2997 | |
| 2998 | if (limit == UINT_MAX) |
| 2999 | target = 0; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3000 | else |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 3001 | target = fls(limit); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3002 | |
| 3003 | spd = (*scontrol >> 4) & 0xf; |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 3004 | *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3005 | |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 3006 | return spd != target; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3007 | } |
| 3008 | |
| 3009 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 3010 | * sata_set_spd_needed - is SATA spd configuration needed |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3011 | * @link: Link in question |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3012 | * |
| 3013 | * Test whether the spd limit in SControl matches |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3014 | * @link->sata_spd_limit. This function is used to determine |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3015 | * whether hardreset is necessary to apply SATA spd |
| 3016 | * configuration. |
| 3017 | * |
| 3018 | * LOCKING: |
| 3019 | * Inherited from caller. |
| 3020 | * |
| 3021 | * RETURNS: |
| 3022 | * 1 if SATA spd configuration is needed, 0 otherwise. |
| 3023 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3024 | int sata_set_spd_needed(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3025 | { |
| 3026 | u32 scontrol; |
| 3027 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3028 | if (sata_scr_read(link, SCR_CONTROL, &scontrol)) |
Tejun Heo | db64bcf | 2007-10-31 10:17:06 +0900 | [diff] [blame] | 3029 | return 1; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3030 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3031 | return __sata_set_spd_needed(link, &scontrol); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3032 | } |
| 3033 | |
| 3034 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 3035 | * sata_set_spd - set SATA spd according to spd limit |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3036 | * @link: Link to set SATA spd for |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3037 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3038 | * Set SATA spd of @link according to sata_spd_limit. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3039 | * |
| 3040 | * LOCKING: |
| 3041 | * Inherited from caller. |
| 3042 | * |
| 3043 | * RETURNS: |
| 3044 | * 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] | 3045 | * changed. Negative errno if SCR registers are inaccessible. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3046 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3047 | int sata_set_spd(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3048 | { |
| 3049 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3050 | int rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3051 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3052 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3053 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3054 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3055 | if (!__sata_set_spd_needed(link, &scontrol)) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3056 | return 0; |
| 3057 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3058 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3059 | return rc; |
| 3060 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3061 | return 1; |
| 3062 | } |
| 3063 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3064 | /* |
| 3065 | * This mode timing computation functionality is ported over from |
| 3066 | * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik |
| 3067 | */ |
| 3068 | /* |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 3069 | * 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] | 3070 | * These were taken from ATA/ATAPI-6 standard, rev 0a, except |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 3071 | * for UDMA6, which is currently supported only by Maxtor drives. |
| 3072 | * |
| 3073 | * 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] | 3074 | */ |
| 3075 | |
| 3076 | static const struct ata_timing ata_timing[] = { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3077 | /* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960, 0 }, */ |
| 3078 | { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 600, 0 }, |
| 3079 | { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 383, 0 }, |
| 3080 | { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 240, 0 }, |
| 3081 | { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 180, 0 }, |
| 3082 | { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 120, 0 }, |
| 3083 | { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 100, 0 }, |
| 3084 | { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 80, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3085 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3086 | { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 960, 0 }, |
| 3087 | { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 480, 0 }, |
| 3088 | { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 240, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3089 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3090 | { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 480, 0 }, |
| 3091 | { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 150, 0 }, |
| 3092 | { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 120, 0 }, |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 3093 | { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 100, 0 }, |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3094 | { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 80, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3095 | |
| 3096 | /* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 150 }, */ |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3097 | { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 120 }, |
| 3098 | { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 80 }, |
| 3099 | { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 60 }, |
| 3100 | { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 45 }, |
| 3101 | { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 30 }, |
| 3102 | { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 20 }, |
| 3103 | { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 15 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3104 | |
| 3105 | { 0xFF } |
| 3106 | }; |
| 3107 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3108 | #define ENOUGH(v, unit) (((v)-1)/(unit)+1) |
| 3109 | #define EZ(v, unit) ((v)?ENOUGH(v, unit):0) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3110 | |
| 3111 | static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT) |
| 3112 | { |
| 3113 | q->setup = EZ(t->setup * 1000, T); |
| 3114 | q->act8b = EZ(t->act8b * 1000, T); |
| 3115 | q->rec8b = EZ(t->rec8b * 1000, T); |
| 3116 | q->cyc8b = EZ(t->cyc8b * 1000, T); |
| 3117 | q->active = EZ(t->active * 1000, T); |
| 3118 | q->recover = EZ(t->recover * 1000, T); |
| 3119 | q->cycle = EZ(t->cycle * 1000, T); |
| 3120 | q->udma = EZ(t->udma * 1000, UT); |
| 3121 | } |
| 3122 | |
| 3123 | void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b, |
| 3124 | struct ata_timing *m, unsigned int what) |
| 3125 | { |
| 3126 | if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup); |
| 3127 | if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b); |
| 3128 | if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b); |
| 3129 | if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b); |
| 3130 | if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active); |
| 3131 | if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover); |
| 3132 | if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle); |
| 3133 | if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma); |
| 3134 | } |
| 3135 | |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 3136 | const struct ata_timing *ata_timing_find_mode(u8 xfer_mode) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3137 | { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3138 | const struct ata_timing *t = ata_timing; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3139 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3140 | while (xfer_mode > t->mode) |
| 3141 | t++; |
| 3142 | |
| 3143 | if (xfer_mode == t->mode) |
| 3144 | return t; |
| 3145 | return NULL; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3146 | } |
| 3147 | |
| 3148 | int ata_timing_compute(struct ata_device *adev, unsigned short speed, |
| 3149 | struct ata_timing *t, int T, int UT) |
| 3150 | { |
| 3151 | const struct ata_timing *s; |
| 3152 | struct ata_timing p; |
| 3153 | |
| 3154 | /* |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 3155 | * Find the mode. |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 3156 | */ |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3157 | |
| 3158 | if (!(s = ata_timing_find_mode(speed))) |
| 3159 | return -EINVAL; |
| 3160 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 3161 | memcpy(t, s, sizeof(*s)); |
| 3162 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3163 | /* |
| 3164 | * If the drive is an EIDE drive, it can tell us it needs extended |
| 3165 | * PIO/MW_DMA cycle timing. |
| 3166 | */ |
| 3167 | |
| 3168 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */ |
| 3169 | memset(&p, 0, sizeof(p)); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3170 | if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3171 | if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO]; |
| 3172 | else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY]; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3173 | } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3174 | p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN]; |
| 3175 | } |
| 3176 | ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B); |
| 3177 | } |
| 3178 | |
| 3179 | /* |
| 3180 | * Convert the timing to bus clock counts. |
| 3181 | */ |
| 3182 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 3183 | ata_timing_quantize(t, t, T, UT); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3184 | |
| 3185 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 3186 | * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, |
| 3187 | * S.M.A.R.T * and some other commands. We have to ensure that the |
| 3188 | * DMA cycle timing is slower/equal than the fastest PIO timing. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3189 | */ |
| 3190 | |
Alan | fd3367af | 2006-12-07 12:41:18 +0000 | [diff] [blame] | 3191 | if (speed > XFER_PIO_6) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3192 | ata_timing_compute(adev, adev->pio_mode, &p, T, UT); |
| 3193 | ata_timing_merge(&p, t, t, ATA_TIMING_ALL); |
| 3194 | } |
| 3195 | |
| 3196 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 3197 | * Lengthen active & recovery time so that cycle time is correct. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3198 | */ |
| 3199 | |
| 3200 | if (t->act8b + t->rec8b < t->cyc8b) { |
| 3201 | t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2; |
| 3202 | t->rec8b = t->cyc8b - t->act8b; |
| 3203 | } |
| 3204 | |
| 3205 | if (t->active + t->recover < t->cycle) { |
| 3206 | t->active += (t->cycle - (t->active + t->recover)) / 2; |
| 3207 | t->recover = t->cycle - t->active; |
| 3208 | } |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 3209 | |
Alan Cox | 4f701d1 | 2007-04-23 11:55:36 +0100 | [diff] [blame] | 3210 | /* In a few cases quantisation may produce enough errors to |
| 3211 | leave t->cycle too low for the sum of active and recovery |
| 3212 | if so we must correct this */ |
| 3213 | if (t->active + t->recover > t->cycle) |
| 3214 | t->cycle = t->active + t->recover; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3215 | |
| 3216 | return 0; |
| 3217 | } |
| 3218 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3219 | /** |
Tejun Heo | a0f79b9 | 2007-12-18 16:33:05 +0900 | [diff] [blame] | 3220 | * ata_timing_cycle2mode - find xfer mode for the specified cycle duration |
| 3221 | * @xfer_shift: ATA_SHIFT_* value for transfer type to examine. |
| 3222 | * @cycle: cycle duration in ns |
| 3223 | * |
| 3224 | * Return matching xfer mode for @cycle. The returned mode is of |
| 3225 | * the transfer type specified by @xfer_shift. If @cycle is too |
| 3226 | * slow for @xfer_shift, 0xff is returned. If @cycle is faster |
| 3227 | * than the fastest known mode, the fasted mode is returned. |
| 3228 | * |
| 3229 | * LOCKING: |
| 3230 | * None. |
| 3231 | * |
| 3232 | * RETURNS: |
| 3233 | * Matching xfer_mode, 0xff if no match found. |
| 3234 | */ |
| 3235 | u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle) |
| 3236 | { |
| 3237 | u8 base_mode = 0xff, last_mode = 0xff; |
| 3238 | const struct ata_xfer_ent *ent; |
| 3239 | const struct ata_timing *t; |
| 3240 | |
| 3241 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 3242 | if (ent->shift == xfer_shift) |
| 3243 | base_mode = ent->base; |
| 3244 | |
| 3245 | for (t = ata_timing_find_mode(base_mode); |
| 3246 | t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) { |
| 3247 | unsigned short this_cycle; |
| 3248 | |
| 3249 | switch (xfer_shift) { |
| 3250 | case ATA_SHIFT_PIO: |
| 3251 | case ATA_SHIFT_MWDMA: |
| 3252 | this_cycle = t->cycle; |
| 3253 | break; |
| 3254 | case ATA_SHIFT_UDMA: |
| 3255 | this_cycle = t->udma; |
| 3256 | break; |
| 3257 | default: |
| 3258 | return 0xff; |
| 3259 | } |
| 3260 | |
| 3261 | if (cycle > this_cycle) |
| 3262 | break; |
| 3263 | |
| 3264 | last_mode = t->mode; |
| 3265 | } |
| 3266 | |
| 3267 | return last_mode; |
| 3268 | } |
| 3269 | |
| 3270 | /** |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3271 | * ata_down_xfermask_limit - adjust dev xfer masks downward |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3272 | * @dev: Device to adjust xfer masks |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3273 | * @sel: ATA_DNXFER_* selector |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3274 | * |
| 3275 | * Adjust xfer masks of @dev downward. Note that this function |
| 3276 | * does not apply the change. Invoking ata_set_mode() afterwards |
| 3277 | * will apply the limit. |
| 3278 | * |
| 3279 | * LOCKING: |
| 3280 | * Inherited from caller. |
| 3281 | * |
| 3282 | * RETURNS: |
| 3283 | * 0 on success, negative errno on failure |
| 3284 | */ |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3285 | int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel) |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3286 | { |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3287 | char buf[32]; |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 3288 | unsigned long orig_mask, xfer_mask; |
| 3289 | unsigned long pio_mask, mwdma_mask, udma_mask; |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3290 | int quiet, highbit; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3291 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3292 | quiet = !!(sel & ATA_DNXFER_QUIET); |
| 3293 | sel &= ~ATA_DNXFER_QUIET; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3294 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3295 | xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask, |
| 3296 | dev->mwdma_mask, |
| 3297 | dev->udma_mask); |
| 3298 | ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask); |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3299 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3300 | switch (sel) { |
| 3301 | case ATA_DNXFER_PIO: |
| 3302 | highbit = fls(pio_mask) - 1; |
| 3303 | pio_mask &= ~(1 << highbit); |
| 3304 | break; |
| 3305 | |
| 3306 | case ATA_DNXFER_DMA: |
| 3307 | if (udma_mask) { |
| 3308 | highbit = fls(udma_mask) - 1; |
| 3309 | udma_mask &= ~(1 << highbit); |
| 3310 | if (!udma_mask) |
| 3311 | return -ENOENT; |
| 3312 | } else if (mwdma_mask) { |
| 3313 | highbit = fls(mwdma_mask) - 1; |
| 3314 | mwdma_mask &= ~(1 << highbit); |
| 3315 | if (!mwdma_mask) |
| 3316 | return -ENOENT; |
| 3317 | } |
| 3318 | break; |
| 3319 | |
| 3320 | case ATA_DNXFER_40C: |
| 3321 | udma_mask &= ATA_UDMA_MASK_40C; |
| 3322 | break; |
| 3323 | |
| 3324 | case ATA_DNXFER_FORCE_PIO0: |
| 3325 | pio_mask &= 1; |
| 3326 | case ATA_DNXFER_FORCE_PIO: |
| 3327 | mwdma_mask = 0; |
| 3328 | udma_mask = 0; |
| 3329 | break; |
| 3330 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3331 | default: |
| 3332 | BUG(); |
| 3333 | } |
| 3334 | |
| 3335 | xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 3336 | |
| 3337 | if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask) |
| 3338 | return -ENOENT; |
| 3339 | |
| 3340 | if (!quiet) { |
| 3341 | if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA)) |
| 3342 | snprintf(buf, sizeof(buf), "%s:%s", |
| 3343 | ata_mode_string(xfer_mask), |
| 3344 | ata_mode_string(xfer_mask & ATA_MASK_PIO)); |
| 3345 | else |
| 3346 | snprintf(buf, sizeof(buf), "%s", |
| 3347 | ata_mode_string(xfer_mask)); |
| 3348 | |
| 3349 | ata_dev_printk(dev, KERN_WARNING, |
| 3350 | "limiting speed to %s\n", buf); |
| 3351 | } |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3352 | |
| 3353 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask, |
| 3354 | &dev->udma_mask); |
| 3355 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3356 | return 0; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3357 | } |
| 3358 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3359 | static int ata_dev_set_mode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3360 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3361 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3362 | const char *dev_err_whine = ""; |
| 3363 | int ign_dev_err = 0; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3364 | unsigned int err_mask; |
| 3365 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | |
Tejun Heo | e838460 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 3367 | dev->flags &= ~ATA_DFLAG_PIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3368 | if (dev->xfer_shift == ATA_SHIFT_PIO) |
| 3369 | dev->flags |= ATA_DFLAG_PIO; |
| 3370 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3371 | err_mask = ata_dev_set_xfermode(dev); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3372 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3373 | if (err_mask & ~AC_ERR_DEV) |
| 3374 | goto fail; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3375 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3376 | /* revalidate */ |
Tejun Heo | baa1e78 | 2006-11-01 18:39:27 +0900 | [diff] [blame] | 3377 | ehc->i.flags |= ATA_EHI_POST_SETMODE; |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3378 | rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0); |
Tejun Heo | baa1e78 | 2006-11-01 18:39:27 +0900 | [diff] [blame] | 3379 | ehc->i.flags &= ~ATA_EHI_POST_SETMODE; |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 3380 | if (rc) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3381 | return rc; |
Tejun Heo | 48a8a14 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3382 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3383 | /* Old CFA may refuse this command, which is just fine */ |
| 3384 | if (dev->xfer_shift == ATA_SHIFT_PIO && ata_id_is_cfa(dev->id)) |
| 3385 | ign_dev_err = 1; |
| 3386 | |
| 3387 | /* Some very old devices and some bad newer ones fail any kind of |
| 3388 | SET_XFERMODE request but support PIO0-2 timings and no IORDY */ |
| 3389 | if (dev->xfer_shift == ATA_SHIFT_PIO && !ata_id_has_iordy(dev->id) && |
| 3390 | dev->pio_mode <= XFER_PIO_2) |
| 3391 | ign_dev_err = 1; |
| 3392 | |
| 3393 | /* Early MWDMA devices do DMA but don't allow DMA mode setting. |
| 3394 | Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */ |
| 3395 | if (dev->xfer_shift == ATA_SHIFT_MWDMA && |
| 3396 | dev->dma_mode == XFER_MW_DMA_0 && |
| 3397 | (dev->id[63] >> 8) & 1) |
| 3398 | ign_dev_err = 1; |
| 3399 | |
| 3400 | /* if the device is actually configured correctly, ignore dev err */ |
| 3401 | if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id))) |
| 3402 | ign_dev_err = 1; |
| 3403 | |
| 3404 | if (err_mask & AC_ERR_DEV) { |
| 3405 | if (!ign_dev_err) |
| 3406 | goto fail; |
| 3407 | else |
| 3408 | dev_err_whine = " (device error ignored)"; |
| 3409 | } |
| 3410 | |
Tejun Heo | 23e71c3 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3411 | DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n", |
| 3412 | dev->xfer_shift, (int)dev->xfer_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3413 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3414 | ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n", |
| 3415 | ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)), |
| 3416 | dev_err_whine); |
| 3417 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3418 | return 0; |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3419 | |
| 3420 | fail: |
| 3421 | ata_dev_printk(dev, KERN_ERR, "failed to set xfermode " |
| 3422 | "(err_mask=0x%x)\n", err_mask); |
| 3423 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3424 | } |
| 3425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3426 | /** |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3427 | * ata_do_set_mode - Program timings and issue SET FEATURES - XFER |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3428 | * @link: link on which timings will be programmed |
Joe Perches | 1967b7f | 2008-02-03 17:08:11 +0200 | [diff] [blame] | 3429 | * @r_failed_dev: out parameter for failed device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | * |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3431 | * Standard implementation of the function used to tune and set |
| 3432 | * ATA device disk transfer mode (PIO3, UDMA6, etc.). If |
| 3433 | * ata_dev_set_mode() fails, pointer to the failing device is |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3434 | * returned in @r_failed_dev. |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3435 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3437 | * PCI/etc. bus probe sem. |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3438 | * |
| 3439 | * RETURNS: |
| 3440 | * 0 on success, negative errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3441 | */ |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3442 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3443 | 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] | 3444 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3445 | struct ata_port *ap = link->ap; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3446 | struct ata_device *dev; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3447 | int rc = 0, used_dma = 0, found = 0; |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 3448 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3449 | /* step 1: calculate xfer_mask */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3450 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 3451 | unsigned long pio_mask, dma_mask; |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3452 | unsigned int mode_mask; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3453 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3454 | if (!ata_dev_enabled(dev)) |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3455 | continue; |
| 3456 | |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3457 | mode_mask = ATA_DMA_MASK_ATA; |
| 3458 | if (dev->class == ATA_DEV_ATAPI) |
| 3459 | mode_mask = ATA_DMA_MASK_ATAPI; |
| 3460 | else if (ata_id_is_cfa(dev->id)) |
| 3461 | mode_mask = ATA_DMA_MASK_CFA; |
| 3462 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3463 | ata_dev_xfermask(dev); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 3464 | ata_force_xfermask(dev); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3465 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3466 | pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0); |
| 3467 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3468 | |
| 3469 | if (libata_dma_mask & mode_mask) |
| 3470 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
| 3471 | else |
| 3472 | dma_mask = 0; |
| 3473 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3474 | dev->pio_mode = ata_xfer_mask2mode(pio_mask); |
| 3475 | dev->dma_mode = ata_xfer_mask2mode(dma_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3476 | |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3477 | found = 1; |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3478 | if (dev->dma_mode != 0xff) |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3479 | used_dma = 1; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3480 | } |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3481 | if (!found) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3482 | goto out; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3483 | |
| 3484 | /* step 2: always set host PIO timings */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3485 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3486 | if (!ata_dev_enabled(dev)) |
| 3487 | continue; |
| 3488 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3489 | if (dev->pio_mode == 0xff) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3490 | ata_dev_printk(dev, KERN_WARNING, "no PIO support\n"); |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3491 | rc = -EINVAL; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3492 | goto out; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3493 | } |
| 3494 | |
| 3495 | dev->xfer_mode = dev->pio_mode; |
| 3496 | dev->xfer_shift = ATA_SHIFT_PIO; |
| 3497 | if (ap->ops->set_piomode) |
| 3498 | ap->ops->set_piomode(ap, dev); |
| 3499 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3500 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3501 | /* step 3: set host DMA timings */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3502 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3503 | if (!ata_dev_enabled(dev) || dev->dma_mode == 0xff) |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3504 | continue; |
| 3505 | |
| 3506 | dev->xfer_mode = dev->dma_mode; |
| 3507 | dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode); |
| 3508 | if (ap->ops->set_dmamode) |
| 3509 | ap->ops->set_dmamode(ap, dev); |
| 3510 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3511 | |
| 3512 | /* step 4: update devices' xfer mode */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3513 | ata_link_for_each_dev(dev, link) { |
Alan | 18d90de | 2007-01-24 11:42:38 +0000 | [diff] [blame] | 3514 | /* don't update suspended devices' xfer mode */ |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 3515 | if (!ata_dev_enabled(dev)) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3516 | continue; |
| 3517 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3518 | rc = ata_dev_set_mode(dev); |
Tejun Heo | 5bbc53f | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 3519 | if (rc) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3520 | goto out; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3521 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3522 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3523 | /* Record simplex status. If we selected DMA then the other |
| 3524 | * host channels are not permitted to do so. |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3525 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3526 | if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX)) |
Alan | 032af1c | 2007-03-01 17:36:46 +0000 | [diff] [blame] | 3527 | ap->host->simplex_claimed = ap; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3528 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3529 | out: |
| 3530 | if (rc) |
| 3531 | *r_failed_dev = dev; |
| 3532 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3533 | } |
| 3534 | |
| 3535 | /** |
Jeff Garzik | 1fdffbc | 2006-02-09 05:15:27 -0500 | [diff] [blame] | 3536 | * ata_tf_to_host - issue ATA taskfile to host controller |
| 3537 | * @ap: port to which command is being issued |
| 3538 | * @tf: ATA taskfile register set |
| 3539 | * |
| 3540 | * Issues ATA taskfile register set to ATA host controller, |
| 3541 | * with proper synchronization with interrupt handler and |
| 3542 | * other threads. |
| 3543 | * |
| 3544 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3545 | * spin_lock_irqsave(host lock) |
Jeff Garzik | 1fdffbc | 2006-02-09 05:15:27 -0500 | [diff] [blame] | 3546 | */ |
| 3547 | |
| 3548 | static inline void ata_tf_to_host(struct ata_port *ap, |
| 3549 | const struct ata_taskfile *tf) |
| 3550 | { |
| 3551 | ap->ops->tf_load(ap, tf); |
| 3552 | ap->ops->exec_command(ap, tf); |
| 3553 | } |
| 3554 | |
| 3555 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3556 | * ata_busy_sleep - sleep until BSY clears, or timeout |
| 3557 | * @ap: port containing status register to be polled |
| 3558 | * @tmout_pat: impatience timeout |
| 3559 | * @tmout: overall timeout |
| 3560 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3561 | * Sleep until ATA Status register bit BSY clears, |
| 3562 | * or a timeout occurs. |
| 3563 | * |
Tejun Heo | d1adc1b | 2006-10-09 18:32:15 +0900 | [diff] [blame] | 3564 | * LOCKING: |
| 3565 | * Kernel thread context (may sleep). |
| 3566 | * |
| 3567 | * RETURNS: |
| 3568 | * 0 on success, -errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3569 | */ |
Tejun Heo | d1adc1b | 2006-10-09 18:32:15 +0900 | [diff] [blame] | 3570 | int ata_busy_sleep(struct ata_port *ap, |
| 3571 | unsigned long tmout_pat, unsigned long tmout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3572 | { |
| 3573 | unsigned long timer_start, timeout; |
| 3574 | u8 status; |
| 3575 | |
| 3576 | status = ata_busy_wait(ap, ATA_BUSY, 300); |
| 3577 | timer_start = jiffies; |
| 3578 | timeout = timer_start + tmout_pat; |
Tejun Heo | d1adc1b | 2006-10-09 18:32:15 +0900 | [diff] [blame] | 3579 | while (status != 0xff && (status & ATA_BUSY) && |
| 3580 | time_before(jiffies, timeout)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3581 | msleep(50); |
| 3582 | status = ata_busy_wait(ap, ATA_BUSY, 3); |
| 3583 | } |
| 3584 | |
Tejun Heo | d1adc1b | 2006-10-09 18:32:15 +0900 | [diff] [blame] | 3585 | if (status != 0xff && (status & ATA_BUSY)) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3586 | ata_port_printk(ap, KERN_WARNING, |
Jeff Garzik | 35aa7a4 | 2006-09-28 06:50:24 -0400 | [diff] [blame] | 3587 | "port is slow to respond, please be patient " |
| 3588 | "(Status 0x%x)\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3589 | |
| 3590 | timeout = timer_start + tmout; |
Tejun Heo | d1adc1b | 2006-10-09 18:32:15 +0900 | [diff] [blame] | 3591 | while (status != 0xff && (status & ATA_BUSY) && |
| 3592 | time_before(jiffies, timeout)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3593 | msleep(50); |
| 3594 | status = ata_chk_status(ap); |
| 3595 | } |
| 3596 | |
Tejun Heo | d1adc1b | 2006-10-09 18:32:15 +0900 | [diff] [blame] | 3597 | if (status == 0xff) |
| 3598 | return -ENODEV; |
| 3599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | if (status & ATA_BUSY) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3601 | ata_port_printk(ap, KERN_ERR, "port failed to respond " |
Jeff Garzik | 35aa7a4 | 2006-09-28 06:50:24 -0400 | [diff] [blame] | 3602 | "(%lu secs, Status 0x%x)\n", |
| 3603 | tmout / HZ, status); |
Tejun Heo | d1adc1b | 2006-10-09 18:32:15 +0900 | [diff] [blame] | 3604 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3605 | } |
| 3606 | |
| 3607 | return 0; |
| 3608 | } |
| 3609 | |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3610 | /** |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 3611 | * ata_wait_after_reset - wait before checking status after reset |
| 3612 | * @ap: port containing status register to be polled |
| 3613 | * @deadline: deadline jiffies for the operation |
| 3614 | * |
| 3615 | * After reset, we need to pause a while before reading status. |
| 3616 | * Also, certain combination of controller and device report 0xff |
| 3617 | * for some duration (e.g. until SATA PHY is up and running) |
| 3618 | * which is interpreted as empty port in ATA world. This |
| 3619 | * function also waits for such devices to get out of 0xff |
| 3620 | * status. |
| 3621 | * |
| 3622 | * LOCKING: |
| 3623 | * Kernel thread context (may sleep). |
| 3624 | */ |
| 3625 | void ata_wait_after_reset(struct ata_port *ap, unsigned long deadline) |
| 3626 | { |
| 3627 | unsigned long until = jiffies + ATA_TMOUT_FF_WAIT; |
| 3628 | |
| 3629 | if (time_before(until, deadline)) |
| 3630 | deadline = until; |
| 3631 | |
| 3632 | /* Spec mandates ">= 2ms" before checking status. We wait |
| 3633 | * 150ms, because that was the magic delay used for ATAPI |
| 3634 | * devices in Hale Landis's ATADRVR, for the period of time |
| 3635 | * between when the ATA command register is written, and then |
| 3636 | * status is checked. Because waiting for "a while" before |
| 3637 | * checking status is fine, post SRST, we perform this magic |
| 3638 | * delay here as well. |
| 3639 | * |
| 3640 | * Old drivers/ide uses the 2mS rule and then waits for ready. |
| 3641 | */ |
| 3642 | msleep(150); |
| 3643 | |
| 3644 | /* Wait for 0xff to clear. Some SATA devices take a long time |
| 3645 | * to clear 0xff after reset. For example, HHD424020F7SV00 |
| 3646 | * iVDR needs >= 800ms while. Quantum GoVault needs even more |
| 3647 | * than that. |
Tejun Heo | 1974e20 | 2007-11-08 11:20:18 +0900 | [diff] [blame] | 3648 | * |
| 3649 | * Note that some PATA controllers (pata_ali) explode if |
| 3650 | * status register is read more than once when there's no |
| 3651 | * device attached. |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 3652 | */ |
Tejun Heo | 1974e20 | 2007-11-08 11:20:18 +0900 | [diff] [blame] | 3653 | if (ap->flags & ATA_FLAG_SATA) { |
| 3654 | while (1) { |
| 3655 | u8 status = ata_chk_status(ap); |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 3656 | |
Tejun Heo | 1974e20 | 2007-11-08 11:20:18 +0900 | [diff] [blame] | 3657 | if (status != 0xff || time_after(jiffies, deadline)) |
| 3658 | return; |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 3659 | |
Tejun Heo | 1974e20 | 2007-11-08 11:20:18 +0900 | [diff] [blame] | 3660 | msleep(50); |
| 3661 | } |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 3662 | } |
| 3663 | } |
| 3664 | |
| 3665 | /** |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3666 | * ata_wait_ready - sleep until BSY clears, or timeout |
| 3667 | * @ap: port containing status register to be polled |
| 3668 | * @deadline: deadline jiffies for the operation |
| 3669 | * |
| 3670 | * Sleep until ATA Status register bit BSY clears, or timeout |
| 3671 | * occurs. |
| 3672 | * |
| 3673 | * LOCKING: |
| 3674 | * Kernel thread context (may sleep). |
| 3675 | * |
| 3676 | * RETURNS: |
| 3677 | * 0 on success, -errno otherwise. |
| 3678 | */ |
| 3679 | int ata_wait_ready(struct ata_port *ap, unsigned long deadline) |
| 3680 | { |
| 3681 | unsigned long start = jiffies; |
| 3682 | int warned = 0; |
| 3683 | |
| 3684 | while (1) { |
| 3685 | u8 status = ata_chk_status(ap); |
| 3686 | unsigned long now = jiffies; |
| 3687 | |
| 3688 | if (!(status & ATA_BUSY)) |
| 3689 | return 0; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3690 | if (!ata_link_online(&ap->link) && status == 0xff) |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3691 | return -ENODEV; |
| 3692 | if (time_after(now, deadline)) |
| 3693 | return -EBUSY; |
| 3694 | |
| 3695 | if (!warned && time_after(now, start + 5 * HZ) && |
| 3696 | (deadline - now > 3 * HZ)) { |
| 3697 | ata_port_printk(ap, KERN_WARNING, |
| 3698 | "port is slow to respond, please be patient " |
| 3699 | "(Status 0x%x)\n", status); |
| 3700 | warned = 1; |
| 3701 | } |
| 3702 | |
| 3703 | msleep(50); |
| 3704 | } |
| 3705 | } |
| 3706 | |
| 3707 | static int ata_bus_post_reset(struct ata_port *ap, unsigned int devmask, |
| 3708 | unsigned long deadline) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3709 | { |
| 3710 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 3711 | unsigned int dev0 = devmask & (1 << 0); |
| 3712 | unsigned int dev1 = devmask & (1 << 1); |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3713 | int rc, ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | |
| 3715 | /* if device 0 was found in ata_devchk, wait for its |
| 3716 | * BSY bit to clear |
| 3717 | */ |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3718 | if (dev0) { |
| 3719 | rc = ata_wait_ready(ap, deadline); |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3720 | if (rc) { |
| 3721 | if (rc != -ENODEV) |
| 3722 | return rc; |
| 3723 | ret = rc; |
| 3724 | } |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3725 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3726 | |
Tejun Heo | e141d99 | 2007-06-10 14:26:20 +0900 | [diff] [blame] | 3727 | /* if device 1 was found in ata_devchk, wait for register |
| 3728 | * access briefly, then wait for BSY to clear. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3729 | */ |
Tejun Heo | e141d99 | 2007-06-10 14:26:20 +0900 | [diff] [blame] | 3730 | if (dev1) { |
| 3731 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3732 | |
| 3733 | ap->ops->dev_select(ap, 1); |
Tejun Heo | e141d99 | 2007-06-10 14:26:20 +0900 | [diff] [blame] | 3734 | |
| 3735 | /* Wait for register access. Some ATAPI devices fail |
| 3736 | * to set nsect/lbal after reset, so don't waste too |
| 3737 | * much time on it. We're gonna wait for !BSY anyway. |
| 3738 | */ |
| 3739 | for (i = 0; i < 2; i++) { |
| 3740 | u8 nsect, lbal; |
| 3741 | |
| 3742 | nsect = ioread8(ioaddr->nsect_addr); |
| 3743 | lbal = ioread8(ioaddr->lbal_addr); |
| 3744 | if ((nsect == 1) && (lbal == 1)) |
| 3745 | break; |
| 3746 | msleep(50); /* give drive a breather */ |
| 3747 | } |
| 3748 | |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3749 | rc = ata_wait_ready(ap, deadline); |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3750 | if (rc) { |
| 3751 | if (rc != -ENODEV) |
| 3752 | return rc; |
| 3753 | ret = rc; |
| 3754 | } |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3755 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3756 | |
| 3757 | /* is all this really necessary? */ |
| 3758 | ap->ops->dev_select(ap, 0); |
| 3759 | if (dev1) |
| 3760 | ap->ops->dev_select(ap, 1); |
| 3761 | if (dev0) |
| 3762 | ap->ops->dev_select(ap, 0); |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3763 | |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3764 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3765 | } |
| 3766 | |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3767 | static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask, |
| 3768 | unsigned long deadline) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3769 | { |
| 3770 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 3771 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 3772 | DPRINTK("ata%u: bus reset via SRST\n", ap->print_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3773 | |
| 3774 | /* software reset. causes dev0 to be selected */ |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 3775 | iowrite8(ap->ctl, ioaddr->ctl_addr); |
| 3776 | udelay(20); /* FIXME: flush */ |
| 3777 | iowrite8(ap->ctl | ATA_SRST, ioaddr->ctl_addr); |
| 3778 | udelay(20); /* FIXME: flush */ |
| 3779 | iowrite8(ap->ctl, ioaddr->ctl_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3780 | |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 3781 | /* wait a while before checking status */ |
| 3782 | ata_wait_after_reset(ap, deadline); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3783 | |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 3784 | /* Before we perform post reset processing we want to see if |
Tejun Heo | 298a41c | 2006-03-25 02:58:13 +0900 | [diff] [blame] | 3785 | * the bus shows 0xFF because the odd clown forgets the D7 |
| 3786 | * pulldown resistor. |
| 3787 | */ |
Alan Cox | 150981b | 2007-10-23 16:50:02 +0100 | [diff] [blame] | 3788 | if (ata_chk_status(ap) == 0xFF) |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3789 | return -ENODEV; |
Alan Cox | 09c7ad7 | 2006-03-22 15:52:40 +0000 | [diff] [blame] | 3790 | |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3791 | return ata_bus_post_reset(ap, devmask, deadline); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3792 | } |
| 3793 | |
| 3794 | /** |
| 3795 | * ata_bus_reset - reset host port and associated ATA channel |
| 3796 | * @ap: port to reset |
| 3797 | * |
| 3798 | * This is typically the first time we actually start issuing |
| 3799 | * commands to the ATA channel. We wait for BSY to clear, then |
| 3800 | * issue EXECUTE DEVICE DIAGNOSTIC command, polling for its |
| 3801 | * result. Determine what devices, if any, are on the channel |
| 3802 | * by looking at the device 0/1 error register. Look at the signature |
| 3803 | * stored in each device's taskfile registers, to determine if |
| 3804 | * the device is ATA or ATAPI. |
| 3805 | * |
| 3806 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3807 | * PCI/etc. bus probe sem. |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3808 | * Obtains host lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3809 | * |
| 3810 | * SIDE EFFECTS: |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 3811 | * Sets ATA_FLAG_DISABLED if bus reset fails. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3812 | */ |
| 3813 | |
| 3814 | void ata_bus_reset(struct ata_port *ap) |
| 3815 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3816 | struct ata_device *device = ap->link.device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3817 | struct ata_ioports *ioaddr = &ap->ioaddr; |
| 3818 | unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS; |
| 3819 | u8 err; |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 3820 | unsigned int dev0, dev1 = 0, devmask = 0; |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3821 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3822 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 3823 | DPRINTK("ENTER, host %u, port %u\n", ap->print_id, ap->port_no); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3824 | |
| 3825 | /* determine if device 0/1 are present */ |
| 3826 | if (ap->flags & ATA_FLAG_SATA_RESET) |
| 3827 | dev0 = 1; |
| 3828 | else { |
| 3829 | dev0 = ata_devchk(ap, 0); |
| 3830 | if (slave_possible) |
| 3831 | dev1 = ata_devchk(ap, 1); |
| 3832 | } |
| 3833 | |
| 3834 | if (dev0) |
| 3835 | devmask |= (1 << 0); |
| 3836 | if (dev1) |
| 3837 | devmask |= (1 << 1); |
| 3838 | |
| 3839 | /* select device 0 again */ |
| 3840 | ap->ops->dev_select(ap, 0); |
| 3841 | |
| 3842 | /* issue bus reset */ |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3843 | if (ap->flags & ATA_FLAG_SRST) { |
| 3844 | rc = ata_bus_softreset(ap, devmask, jiffies + 40 * HZ); |
| 3845 | if (rc && rc != -ENODEV) |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 3846 | goto err_out; |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3848 | |
| 3849 | /* |
| 3850 | * determine by signature whether we have ATA or ATAPI devices |
| 3851 | */ |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 3852 | device[0].class = ata_dev_try_classify(&device[0], dev0, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3853 | if ((slave_possible) && (err != 0x81)) |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 3854 | device[1].class = ata_dev_try_classify(&device[1], dev1, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | /* is double-select really necessary? */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3857 | if (device[1].class != ATA_DEV_NONE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3858 | ap->ops->dev_select(ap, 1); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3859 | if (device[0].class != ATA_DEV_NONE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | ap->ops->dev_select(ap, 0); |
| 3861 | |
| 3862 | /* if no devices were detected, disable this port */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3863 | if ((device[0].class == ATA_DEV_NONE) && |
| 3864 | (device[1].class == ATA_DEV_NONE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | goto err_out; |
| 3866 | |
| 3867 | if (ap->flags & (ATA_FLAG_SATA_RESET | ATA_FLAG_SRST)) { |
| 3868 | /* set up device control for ATA_FLAG_SATA_RESET */ |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 3869 | iowrite8(ap->ctl, ioaddr->ctl_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | } |
| 3871 | |
| 3872 | DPRINTK("EXIT\n"); |
| 3873 | return; |
| 3874 | |
| 3875 | err_out: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3876 | ata_port_printk(ap, KERN_ERR, "disabling port\n"); |
Jeff Garzik | ac8869d | 2007-08-16 03:17:03 -0400 | [diff] [blame] | 3877 | ata_port_disable(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3878 | |
| 3879 | DPRINTK("EXIT\n"); |
| 3880 | } |
| 3881 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3882 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3883 | * sata_link_debounce - debounce SATA phy status |
| 3884 | * @link: ATA link to debounce SATA phy status for |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3885 | * @params: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3886 | * @deadline: deadline jiffies for the operation |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3887 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3888 | * Make sure SStatus of @link reaches stable state, determined by |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3889 | * holding the same value where DET is not 1 for @duration polled |
| 3890 | * every @interval, before @timeout. Timeout constraints the |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3891 | * beginning of the stable state. Because DET gets stuck at 1 on |
| 3892 | * some controllers after hot unplugging, this functions waits |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3893 | * until timeout then returns 0 if DET is stable at 1. |
| 3894 | * |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3895 | * @timeout is further limited by @deadline. The sooner of the |
| 3896 | * two is used. |
| 3897 | * |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3898 | * LOCKING: |
| 3899 | * Kernel thread context (may sleep) |
| 3900 | * |
| 3901 | * RETURNS: |
| 3902 | * 0 on success, -errno on failure. |
| 3903 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3904 | int sata_link_debounce(struct ata_link *link, const unsigned long *params, |
| 3905 | unsigned long deadline) |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3906 | { |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3907 | unsigned long interval_msec = params[0]; |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3908 | unsigned long duration = msecs_to_jiffies(params[1]); |
| 3909 | unsigned long last_jiffies, t; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3910 | u32 last, cur; |
| 3911 | int rc; |
| 3912 | |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3913 | t = jiffies + msecs_to_jiffies(params[2]); |
| 3914 | if (time_before(t, deadline)) |
| 3915 | deadline = t; |
| 3916 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3917 | if ((rc = sata_scr_read(link, SCR_STATUS, &cur))) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3918 | return rc; |
| 3919 | cur &= 0xf; |
| 3920 | |
| 3921 | last = cur; |
| 3922 | last_jiffies = jiffies; |
| 3923 | |
| 3924 | while (1) { |
| 3925 | msleep(interval_msec); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3926 | if ((rc = sata_scr_read(link, SCR_STATUS, &cur))) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3927 | return rc; |
| 3928 | cur &= 0xf; |
| 3929 | |
| 3930 | /* DET stable? */ |
| 3931 | if (cur == last) { |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3932 | if (cur == 1 && time_before(jiffies, deadline)) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3933 | continue; |
| 3934 | if (time_after(jiffies, last_jiffies + duration)) |
| 3935 | return 0; |
| 3936 | continue; |
| 3937 | } |
| 3938 | |
| 3939 | /* unstable, start over */ |
| 3940 | last = cur; |
| 3941 | last_jiffies = jiffies; |
| 3942 | |
Tejun Heo | f154515 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3943 | /* Check deadline. If debouncing failed, return |
| 3944 | * -EPIPE to tell upper layer to lower link speed. |
| 3945 | */ |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3946 | if (time_after(jiffies, deadline)) |
Tejun Heo | f154515 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3947 | return -EPIPE; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3948 | } |
| 3949 | } |
| 3950 | |
| 3951 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3952 | * sata_link_resume - resume SATA link |
| 3953 | * @link: ATA link to resume SATA |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3954 | * @params: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3955 | * @deadline: deadline jiffies for the operation |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3956 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3957 | * Resume SATA phy @link and debounce it. |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3958 | * |
| 3959 | * LOCKING: |
| 3960 | * Kernel thread context (may sleep) |
| 3961 | * |
| 3962 | * RETURNS: |
| 3963 | * 0 on success, -errno on failure. |
| 3964 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3965 | int sata_link_resume(struct ata_link *link, const unsigned long *params, |
| 3966 | unsigned long deadline) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3967 | { |
| 3968 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3969 | int rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3970 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3971 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3972 | return rc; |
| 3973 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3974 | scontrol = (scontrol & 0x0f0) | 0x300; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3975 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3976 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3977 | return rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3978 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3979 | /* Some PHYs react badly if SStatus is pounded immediately |
| 3980 | * after resuming. Delay 200ms before debouncing. |
| 3981 | */ |
| 3982 | msleep(200); |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3983 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3984 | return sata_link_debounce(link, params, deadline); |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3985 | } |
| 3986 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3987 | /** |
| 3988 | * ata_std_prereset - prepare for reset |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3989 | * @link: ATA link to be reset |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3990 | * @deadline: deadline jiffies for the operation |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3991 | * |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3992 | * @link is about to be reset. Initialize it. Failure from |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3993 | * prereset makes libata abort whole reset sequence and give up |
| 3994 | * that port, so prereset should be best-effort. It does its |
| 3995 | * best to prepare for reset sequence but if things go wrong, it |
| 3996 | * should just whine, not fail. |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3997 | * |
| 3998 | * LOCKING: |
| 3999 | * Kernel thread context (may sleep) |
| 4000 | * |
| 4001 | * RETURNS: |
| 4002 | * 0 on success, -errno otherwise. |
| 4003 | */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4004 | int ata_std_prereset(struct ata_link *link, unsigned long deadline) |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 4005 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4006 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4007 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 4008 | const unsigned long *timing = sata_ehc_deb_timing(ehc); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 4009 | int rc; |
| 4010 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 4011 | /* if we're about to do hardreset, nothing more to do */ |
| 4012 | if (ehc->i.action & ATA_EH_HARDRESET) |
| 4013 | return 0; |
| 4014 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4015 | /* if SATA, resume link */ |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 4016 | if (ap->flags & ATA_FLAG_SATA) { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4017 | rc = sata_link_resume(link, timing, deadline); |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4018 | /* whine about phy resume failure but proceed */ |
| 4019 | if (rc && rc != -EOPNOTSUPP) |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4020 | ata_link_printk(link, KERN_WARNING, "failed to resume " |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 4021 | "link for reset (errno=%d)\n", rc); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 4022 | } |
| 4023 | |
Tejun Heo | 8cebf27 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 4024 | /* wait for !BSY if we don't know that no device is attached */ |
| 4025 | if (!ata_link_offline(link)) { |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4026 | rc = ata_wait_ready(ap, deadline); |
Tejun Heo | 6dffaf6 | 2007-05-23 11:58:52 +0200 | [diff] [blame] | 4027 | if (rc && rc != -ENODEV) { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4028 | ata_link_printk(link, KERN_WARNING, "device not ready " |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4029 | "(errno=%d), forcing hardreset\n", rc); |
| 4030 | ehc->i.action |= ATA_EH_HARDRESET; |
| 4031 | } |
| 4032 | } |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 4033 | |
| 4034 | return 0; |
| 4035 | } |
| 4036 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4037 | /** |
| 4038 | * ata_std_softreset - reset host port via ATA SRST |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4039 | * @link: ATA link to reset |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4040 | * @classes: resulting classes of attached devices |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4041 | * @deadline: deadline jiffies for the operation |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4042 | * |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 4043 | * Reset host port using ATA SRST. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4044 | * |
| 4045 | * LOCKING: |
| 4046 | * Kernel thread context (may sleep) |
| 4047 | * |
| 4048 | * RETURNS: |
| 4049 | * 0 on success, -errno otherwise. |
| 4050 | */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4051 | int ata_std_softreset(struct ata_link *link, unsigned int *classes, |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4052 | unsigned long deadline) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4053 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4054 | struct ata_port *ap = link->ap; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4055 | unsigned int slave_possible = ap->flags & ATA_FLAG_SLAVE_POSS; |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4056 | unsigned int devmask = 0; |
| 4057 | int rc; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4058 | u8 err; |
| 4059 | |
| 4060 | DPRINTK("ENTER\n"); |
| 4061 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4062 | if (ata_link_offline(link)) { |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 4063 | classes[0] = ATA_DEV_NONE; |
| 4064 | goto out; |
| 4065 | } |
| 4066 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4067 | /* determine if device 0/1 are present */ |
| 4068 | if (ata_devchk(ap, 0)) |
| 4069 | devmask |= (1 << 0); |
| 4070 | if (slave_possible && ata_devchk(ap, 1)) |
| 4071 | devmask |= (1 << 1); |
| 4072 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4073 | /* select device 0 again */ |
| 4074 | ap->ops->dev_select(ap, 0); |
| 4075 | |
| 4076 | /* issue bus reset */ |
| 4077 | DPRINTK("about to softreset, devmask=%x\n", devmask); |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4078 | rc = ata_bus_softreset(ap, devmask, deadline); |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4079 | /* if link is occupied, -ENODEV too is an error */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4080 | if (rc && (rc != -ENODEV || sata_scr_valid(link))) { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4081 | ata_link_printk(link, KERN_ERR, "SRST failed (errno=%d)\n", rc); |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4082 | return rc; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4083 | } |
| 4084 | |
| 4085 | /* determine by signature whether we have ATA or ATAPI devices */ |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 4086 | classes[0] = ata_dev_try_classify(&link->device[0], |
| 4087 | devmask & (1 << 0), &err); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4088 | if (slave_possible && err != 0x81) |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 4089 | classes[1] = ata_dev_try_classify(&link->device[1], |
| 4090 | devmask & (1 << 1), &err); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4091 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 4092 | out: |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4093 | DPRINTK("EXIT, classes[0]=%u [1]=%u\n", classes[0], classes[1]); |
| 4094 | return 0; |
| 4095 | } |
| 4096 | |
| 4097 | /** |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4098 | * sata_link_hardreset - reset link via SATA phy reset |
| 4099 | * @link: link to reset |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4100 | * @timing: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4101 | * @deadline: deadline jiffies for the operation |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4102 | * |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4103 | * SATA phy-reset @link using DET bits of SControl register. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4104 | * |
| 4105 | * LOCKING: |
| 4106 | * Kernel thread context (may sleep) |
| 4107 | * |
| 4108 | * RETURNS: |
| 4109 | * 0 on success, -errno otherwise. |
| 4110 | */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4111 | int sata_link_hardreset(struct ata_link *link, const unsigned long *timing, |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4112 | unsigned long deadline) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4113 | { |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 4114 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 4115 | int rc; |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 4116 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4117 | DPRINTK("ENTER\n"); |
| 4118 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4119 | if (sata_set_spd_needed(link)) { |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 4120 | /* SATA spec says nothing about how to reconfigure |
| 4121 | * spd. To be on the safe side, turn off phy during |
| 4122 | * reconfiguration. This works for at least ICH7 AHCI |
| 4123 | * and Sil3124. |
| 4124 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4125 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4126 | goto out; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 4127 | |
Martin Hicks | a34b6fc | 2006-07-05 15:06:13 -0400 | [diff] [blame] | 4128 | scontrol = (scontrol & 0x0f0) | 0x304; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 4129 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4130 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4131 | goto out; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 4132 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4133 | sata_set_spd(link); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 4134 | } |
| 4135 | |
| 4136 | /* issue phy wake/reset */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4137 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4138 | goto out; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 4139 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 4140 | scontrol = (scontrol & 0x0f0) | 0x301; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 4141 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4142 | if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4143 | goto out; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4144 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 4145 | /* 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] | 4146 | * 10.4.2 says at least 1 ms. |
| 4147 | */ |
| 4148 | msleep(1); |
| 4149 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4150 | /* bring link back */ |
| 4151 | rc = sata_link_resume(link, timing, deadline); |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4152 | out: |
| 4153 | DPRINTK("EXIT, rc=%d\n", rc); |
| 4154 | return rc; |
| 4155 | } |
| 4156 | |
| 4157 | /** |
| 4158 | * sata_std_hardreset - reset host port via SATA phy reset |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4159 | * @link: link to reset |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4160 | * @class: resulting class of attached device |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4161 | * @deadline: deadline jiffies for the operation |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4162 | * |
| 4163 | * SATA phy-reset host port using DET bits of SControl register, |
| 4164 | * wait for !BSY and classify the attached device. |
| 4165 | * |
| 4166 | * LOCKING: |
| 4167 | * Kernel thread context (may sleep) |
| 4168 | * |
| 4169 | * RETURNS: |
| 4170 | * 0 on success, -errno otherwise. |
| 4171 | */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4172 | int sata_std_hardreset(struct ata_link *link, unsigned int *class, |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4173 | unsigned long deadline) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4174 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4175 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4176 | const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context); |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4177 | int rc; |
| 4178 | |
| 4179 | DPRINTK("ENTER\n"); |
| 4180 | |
| 4181 | /* do hardreset */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4182 | rc = sata_link_hardreset(link, timing, deadline); |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4183 | if (rc) { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4184 | ata_link_printk(link, KERN_ERR, |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 4185 | "COMRESET failed (errno=%d)\n", rc); |
| 4186 | return rc; |
| 4187 | } |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4188 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4189 | /* TODO: phy layer with polling, timeouts, etc. */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4190 | if (ata_link_offline(link)) { |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4191 | *class = ATA_DEV_NONE; |
| 4192 | DPRINTK("EXIT, link offline\n"); |
| 4193 | return 0; |
| 4194 | } |
| 4195 | |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 4196 | /* wait a while before checking status */ |
| 4197 | ata_wait_after_reset(ap, deadline); |
Tejun Heo | 34fee22 | 2007-02-02 15:29:27 +0900 | [diff] [blame] | 4198 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4199 | /* If PMP is supported, we have to do follow-up SRST. Note |
| 4200 | * that some PMPs don't send D2H Reg FIS after hardreset at |
| 4201 | * all if the first port is empty. Wait for it just for a |
| 4202 | * second and request follow-up SRST. |
| 4203 | */ |
| 4204 | if (ap->flags & ATA_FLAG_PMP) { |
| 4205 | ata_wait_ready(ap, jiffies + HZ); |
| 4206 | return -EAGAIN; |
| 4207 | } |
| 4208 | |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4209 | rc = ata_wait_ready(ap, deadline); |
Tejun Heo | 9b89391 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4210 | /* link occupied, -ENODEV too is an error */ |
| 4211 | if (rc) { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4212 | ata_link_printk(link, KERN_ERR, |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 4213 | "COMRESET failed (errno=%d)\n", rc); |
| 4214 | return rc; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4215 | } |
| 4216 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 4217 | ap->ops->dev_select(ap, 0); /* probably unnecessary */ |
| 4218 | |
Tejun Heo | 3f19859 | 2007-09-02 23:23:57 +0900 | [diff] [blame] | 4219 | *class = ata_dev_try_classify(link->device, 1, NULL); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4220 | |
| 4221 | DPRINTK("EXIT, class=%u\n", *class); |
| 4222 | return 0; |
| 4223 | } |
| 4224 | |
| 4225 | /** |
| 4226 | * ata_std_postreset - standard postreset callback |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4227 | * @link: the target ata_link |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4228 | * @classes: classes of attached devices |
| 4229 | * |
| 4230 | * This function is invoked after a successful reset. Note that |
| 4231 | * the device might have been reset more than once using |
| 4232 | * different reset methods before postreset is invoked. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4233 | * |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4234 | * LOCKING: |
| 4235 | * Kernel thread context (may sleep) |
| 4236 | */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4237 | void ata_std_postreset(struct ata_link *link, unsigned int *classes) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4238 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4239 | struct ata_port *ap = link->ap; |
Tejun Heo | dc2b351 | 2006-05-15 20:58:00 +0900 | [diff] [blame] | 4240 | u32 serror; |
| 4241 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4242 | DPRINTK("ENTER\n"); |
| 4243 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4244 | /* print link status */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4245 | sata_print_link_status(link); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4246 | |
Tejun Heo | dc2b351 | 2006-05-15 20:58:00 +0900 | [diff] [blame] | 4247 | /* clear SError */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 4248 | if (sata_scr_read(link, SCR_ERROR, &serror) == 0) |
| 4249 | sata_scr_write(link, SCR_ERROR, serror); |
Tejun Heo | f7fe7ad | 2007-12-08 08:47:01 +0900 | [diff] [blame] | 4250 | link->eh_info.serror = 0; |
Tejun Heo | dc2b351 | 2006-05-15 20:58:00 +0900 | [diff] [blame] | 4251 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4252 | /* is double-select really necessary? */ |
| 4253 | if (classes[0] != ATA_DEV_NONE) |
| 4254 | ap->ops->dev_select(ap, 1); |
| 4255 | if (classes[1] != ATA_DEV_NONE) |
| 4256 | ap->ops->dev_select(ap, 0); |
| 4257 | |
Tejun Heo | 3a39746 | 2006-02-10 23:58:48 +0900 | [diff] [blame] | 4258 | /* bail out if no device is present */ |
| 4259 | if (classes[0] == ATA_DEV_NONE && classes[1] == ATA_DEV_NONE) { |
| 4260 | DPRINTK("EXIT, no device\n"); |
| 4261 | return; |
| 4262 | } |
| 4263 | |
| 4264 | /* set up device control */ |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 4265 | if (ap->ioaddr.ctl_addr) |
| 4266 | iowrite8(ap->ctl, ap->ioaddr.ctl_addr); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4267 | |
| 4268 | DPRINTK("EXIT\n"); |
| 4269 | } |
| 4270 | |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 4271 | /** |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4272 | * ata_dev_same_device - Determine whether new ID matches configured device |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4273 | * @dev: device to compare against |
| 4274 | * @new_class: class of the new device |
| 4275 | * @new_id: IDENTIFY page of the new device |
| 4276 | * |
| 4277 | * Compare @new_class and @new_id against @dev and determine |
| 4278 | * whether @dev is the device indicated by @new_class and |
| 4279 | * @new_id. |
| 4280 | * |
| 4281 | * LOCKING: |
| 4282 | * None. |
| 4283 | * |
| 4284 | * RETURNS: |
| 4285 | * 1 if @dev matches @new_class and @new_id, 0 otherwise. |
| 4286 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4287 | static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class, |
| 4288 | const u16 *new_id) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4289 | { |
| 4290 | const u16 *old_id = dev->id; |
Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 4291 | unsigned char model[2][ATA_ID_PROD_LEN + 1]; |
| 4292 | unsigned char serial[2][ATA_ID_SERNO_LEN + 1]; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4293 | |
| 4294 | if (dev->class != new_class) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4295 | ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n", |
| 4296 | dev->class, new_class); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4297 | return 0; |
| 4298 | } |
| 4299 | |
Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 4300 | ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0])); |
| 4301 | ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1])); |
| 4302 | ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0])); |
| 4303 | 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] | 4304 | |
| 4305 | if (strcmp(model[0], model[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4306 | ata_dev_printk(dev, KERN_INFO, "model number mismatch " |
| 4307 | "'%s' != '%s'\n", model[0], model[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4308 | return 0; |
| 4309 | } |
| 4310 | |
| 4311 | if (strcmp(serial[0], serial[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4312 | ata_dev_printk(dev, KERN_INFO, "serial number mismatch " |
| 4313 | "'%s' != '%s'\n", serial[0], serial[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4314 | return 0; |
| 4315 | } |
| 4316 | |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4317 | return 1; |
| 4318 | } |
| 4319 | |
| 4320 | /** |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4321 | * ata_dev_reread_id - Re-read IDENTIFY data |
Henrik Kretzschmar | 3fae450 | 2007-06-19 10:10:50 +0200 | [diff] [blame] | 4322 | * @dev: target ATA device |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 4323 | * @readid_flags: read ID flags |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4324 | * |
| 4325 | * Re-read IDENTIFY page and make sure @dev is still attached to |
| 4326 | * the port. |
| 4327 | * |
| 4328 | * LOCKING: |
| 4329 | * Kernel thread context (may sleep) |
| 4330 | * |
| 4331 | * RETURNS: |
| 4332 | * 0 on success, negative errno otherwise |
| 4333 | */ |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4334 | 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] | 4335 | { |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 4336 | unsigned int class = dev->class; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4337 | u16 *id = (void *)dev->link->ap->sector_buf; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4338 | int rc; |
| 4339 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 4340 | /* read ID data */ |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 4341 | rc = ata_dev_read_id(dev, &class, readid_flags, id); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4342 | if (rc) |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4343 | return rc; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4344 | |
| 4345 | /* is the device still there? */ |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4346 | if (!ata_dev_same_device(dev, class, id)) |
| 4347 | return -ENODEV; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4348 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 4349 | memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS); |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4350 | return 0; |
| 4351 | } |
| 4352 | |
| 4353 | /** |
| 4354 | * ata_dev_revalidate - Revalidate ATA device |
| 4355 | * @dev: device to revalidate |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4356 | * @new_class: new class code |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4357 | * @readid_flags: read ID flags |
| 4358 | * |
| 4359 | * Re-read IDENTIFY page, make sure @dev is still attached to the |
| 4360 | * port and reconfigure it according to the new IDENTIFY page. |
| 4361 | * |
| 4362 | * LOCKING: |
| 4363 | * Kernel thread context (may sleep) |
| 4364 | * |
| 4365 | * RETURNS: |
| 4366 | * 0 on success, negative errno otherwise |
| 4367 | */ |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4368 | int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class, |
| 4369 | unsigned int readid_flags) |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4370 | { |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4371 | u64 n_sectors = dev->n_sectors; |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4372 | int rc; |
| 4373 | |
| 4374 | if (!ata_dev_enabled(dev)) |
| 4375 | return -ENODEV; |
| 4376 | |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4377 | /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */ |
| 4378 | if (ata_class_enabled(new_class) && |
| 4379 | new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) { |
| 4380 | ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n", |
| 4381 | dev->class, new_class); |
| 4382 | rc = -ENODEV; |
| 4383 | goto fail; |
| 4384 | } |
| 4385 | |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4386 | /* re-read ID */ |
| 4387 | rc = ata_dev_reread_id(dev, readid_flags); |
| 4388 | if (rc) |
| 4389 | goto fail; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4390 | |
| 4391 | /* configure device according to the new ID */ |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 4392 | rc = ata_dev_configure(dev); |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4393 | if (rc) |
| 4394 | goto fail; |
| 4395 | |
| 4396 | /* verify n_sectors hasn't changed */ |
Tejun Heo | b54eebd | 2007-08-17 18:46:51 +0900 | [diff] [blame] | 4397 | if (dev->class == ATA_DEV_ATA && n_sectors && |
| 4398 | dev->n_sectors != n_sectors) { |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4399 | ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch " |
| 4400 | "%llu != %llu\n", |
| 4401 | (unsigned long long)n_sectors, |
| 4402 | (unsigned long long)dev->n_sectors); |
Tejun Heo | 8270bec | 2007-08-16 03:02:22 +0900 | [diff] [blame] | 4403 | |
| 4404 | /* restore original n_sectors */ |
| 4405 | dev->n_sectors = n_sectors; |
| 4406 | |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4407 | rc = -ENODEV; |
| 4408 | goto fail; |
| 4409 | } |
| 4410 | |
| 4411 | return 0; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4412 | |
| 4413 | fail: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4414 | ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4415 | return rc; |
| 4416 | } |
| 4417 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4418 | struct ata_blacklist_entry { |
| 4419 | const char *model_num; |
| 4420 | const char *model_rev; |
| 4421 | unsigned long horkage; |
| 4422 | }; |
| 4423 | |
| 4424 | static const struct ata_blacklist_entry ata_device_blacklist [] = { |
| 4425 | /* Devices with DMA related problems under Linux */ |
| 4426 | { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA }, |
| 4427 | { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA }, |
| 4428 | { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA }, |
| 4429 | { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA }, |
| 4430 | { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA }, |
| 4431 | { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA }, |
| 4432 | { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA }, |
| 4433 | { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA }, |
| 4434 | { "CRD-8400B", NULL, ATA_HORKAGE_NODMA }, |
| 4435 | { "CRD-8480B", NULL, ATA_HORKAGE_NODMA }, |
| 4436 | { "CRD-8482B", NULL, ATA_HORKAGE_NODMA }, |
| 4437 | { "CRD-84", NULL, ATA_HORKAGE_NODMA }, |
| 4438 | { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA }, |
| 4439 | { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA }, |
| 4440 | { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA }, |
| 4441 | { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA }, |
| 4442 | { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA }, |
| 4443 | { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA }, |
| 4444 | { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA }, |
| 4445 | { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA }, |
| 4446 | { "CD-532E-A", NULL, ATA_HORKAGE_NODMA }, |
| 4447 | { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA }, |
| 4448 | { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA }, |
| 4449 | { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA }, |
| 4450 | { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA }, |
| 4451 | { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4452 | { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA }, |
| 4453 | { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA }, |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4454 | { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA }, |
Dave Jones | 39f1988 | 2007-05-21 14:31:03 -0400 | [diff] [blame] | 4455 | { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA }, |
Tejun Heo | 3af9a77 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4456 | /* Odd clown on sil3726/4726 PMPs */ |
| 4457 | { "Config Disk", NULL, ATA_HORKAGE_NODMA | |
| 4458 | ATA_HORKAGE_SKIP_PM }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4459 | |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 4460 | /* Weird ATAPI devices */ |
Tejun Heo | 40a1d53 | 2007-06-27 02:49:38 +0900 | [diff] [blame] | 4461 | { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 }, |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 4462 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4463 | /* Devices we expect to fail diagnostics */ |
| 4464 | |
| 4465 | /* Devices where NCQ should be avoided */ |
| 4466 | /* NCQ is slow */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4467 | { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ }, |
Tejun Heo | 459ad68 | 2007-12-07 12:46:23 +0900 | [diff] [blame] | 4468 | { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, }, |
Tejun Heo | 09125ea | 2007-02-28 15:21:23 +0900 | [diff] [blame] | 4469 | /* http://thread.gmane.org/gmane.linux.ide/14907 */ |
| 4470 | { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ }, |
Paul Rolland | 7acfaf3 | 2007-03-26 21:43:44 -0800 | [diff] [blame] | 4471 | /* NCQ is broken */ |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4472 | { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ }, |
Alan Cox | 0e3dbc0 | 2007-09-20 15:22:47 +0100 | [diff] [blame] | 4473 | { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ }, |
Paolo Ornati | da6f0ec | 2007-10-04 11:06:56 +0900 | [diff] [blame] | 4474 | { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ }, |
Tejun Heo | e41bd3e | 2007-12-09 19:45:39 +0900 | [diff] [blame] | 4475 | { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ }, |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4476 | |
Robert Hancock | 36e337d | 2007-04-02 22:05:29 -0600 | [diff] [blame] | 4477 | /* Blacklist entries taken from Silicon Image 3124/3132 |
| 4478 | Windows driver .inf file - also several Linux problem reports */ |
| 4479 | { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, }, |
| 4480 | { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, }, |
| 4481 | { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4482 | |
Tejun Heo | 16c55b0 | 2007-08-29 11:58:33 +0900 | [diff] [blame] | 4483 | /* devices which puke on READ_NATIVE_MAX */ |
| 4484 | { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, }, |
| 4485 | { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA }, |
| 4486 | { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA }, |
| 4487 | { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4488 | |
Alan Cox | 93328e11 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 4489 | /* Devices which report 1 sector over size HPA */ |
| 4490 | { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
| 4491 | { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
Mikko Rapeli | b152fcd | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 4492 | { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
Alan Cox | 93328e11 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 4493 | |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4494 | /* Devices which get the IVB wrong */ |
| 4495 | { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, }, |
| 4496 | { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, }, |
Peter Missel | e9f3340 | 2007-11-27 18:04:42 +0100 | [diff] [blame] | 4497 | { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, }, |
| 4498 | { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, }, |
| 4499 | { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, }, |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4500 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4501 | /* End Marker */ |
| 4502 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4503 | }; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 4504 | |
Adrian Bunk | 741b776 | 2007-10-24 18:23:06 +0200 | [diff] [blame] | 4505 | 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] | 4506 | { |
| 4507 | const char *p; |
| 4508 | int len; |
| 4509 | |
| 4510 | /* |
| 4511 | * check for trailing wildcard: *\0 |
| 4512 | */ |
| 4513 | p = strchr(patt, wildchar); |
| 4514 | if (p && ((*(p + 1)) == 0)) |
| 4515 | len = p - patt; |
Andrew Paprocki | 317b50b | 2007-10-15 15:43:12 -0400 | [diff] [blame] | 4516 | else { |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4517 | len = strlen(name); |
Andrew Paprocki | 317b50b | 2007-10-15 15:43:12 -0400 | [diff] [blame] | 4518 | if (!len) { |
| 4519 | if (!*patt) |
| 4520 | return 0; |
| 4521 | return -1; |
| 4522 | } |
| 4523 | } |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4524 | |
| 4525 | return strncmp(patt, name, len); |
| 4526 | } |
| 4527 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 4528 | static unsigned long ata_dev_blacklisted(const struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4529 | { |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 4530 | unsigned char model_num[ATA_ID_PROD_LEN + 1]; |
| 4531 | unsigned char model_rev[ATA_ID_FW_REV_LEN + 1]; |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4532 | const struct ata_blacklist_entry *ad = ata_device_blacklist; |
Albert Lee | 3a77827 | 2006-06-22 13:00:25 +0800 | [diff] [blame] | 4533 | |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 4534 | ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num)); |
| 4535 | 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] | 4536 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4537 | while (ad->model_num) { |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4538 | if (!strn_pattern_cmp(ad->model_num, model_num, '*')) { |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4539 | if (ad->model_rev == NULL) |
| 4540 | return ad->horkage; |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4541 | if (!strn_pattern_cmp(ad->model_rev, model_rev, '*')) |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4542 | return ad->horkage; |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 4543 | } |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4544 | ad++; |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 4545 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4546 | return 0; |
| 4547 | } |
| 4548 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4549 | static int ata_dma_blacklisted(const struct ata_device *dev) |
| 4550 | { |
| 4551 | /* We don't support polling DMA. |
| 4552 | * DMA blacklist those ATAPI devices with CDB-intr (and use PIO) |
| 4553 | * if the LLDD handles only interrupts in the HSM_ST_LAST state. |
| 4554 | */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4555 | if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) && |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4556 | (dev->flags & ATA_DFLAG_CDB_INTR)) |
| 4557 | return 1; |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 4558 | return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0; |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4559 | } |
| 4560 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4561 | /** |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4562 | * ata_is_40wire - check drive side detection |
| 4563 | * @dev: device |
| 4564 | * |
| 4565 | * Perform drive side detection decoding, allowing for device vendors |
| 4566 | * who can't follow the documentation. |
| 4567 | */ |
| 4568 | |
| 4569 | static int ata_is_40wire(struct ata_device *dev) |
| 4570 | { |
| 4571 | if (dev->horkage & ATA_HORKAGE_IVB) |
| 4572 | return ata_drive_40wire_relaxed(dev->id); |
| 4573 | return ata_drive_40wire(dev->id); |
| 4574 | } |
| 4575 | |
| 4576 | /** |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4577 | * ata_dev_xfermask - Compute supported xfermask of the given device |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4578 | * @dev: Device to compute xfermask for |
| 4579 | * |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 4580 | * Compute supported xfermask of @dev and store it in |
| 4581 | * dev->*_mask. This function is responsible for applying all |
| 4582 | * known limits including host controller limits, device |
| 4583 | * blacklist, etc... |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4584 | * |
| 4585 | * LOCKING: |
| 4586 | * None. |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4587 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4588 | static void ata_dev_xfermask(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4590 | struct ata_link *link = dev->link; |
| 4591 | struct ata_port *ap = link->ap; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4592 | struct ata_host *host = ap->host; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4593 | unsigned long xfer_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4594 | |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4595 | /* controller modes available */ |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4596 | xfer_mask = ata_pack_xfermask(ap->pio_mask, |
| 4597 | ap->mwdma_mask, ap->udma_mask); |
| 4598 | |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4599 | /* drive modes available */ |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4600 | xfer_mask &= ata_pack_xfermask(dev->pio_mask, |
| 4601 | dev->mwdma_mask, dev->udma_mask); |
| 4602 | xfer_mask &= ata_id_xfermask(dev->id); |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4603 | |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 4604 | /* |
| 4605 | * CFA Advanced TrueIDE timings are not allowed on a shared |
| 4606 | * cable |
| 4607 | */ |
| 4608 | if (ata_dev_pair(dev)) { |
| 4609 | /* No PIO5 or PIO6 */ |
| 4610 | xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5)); |
| 4611 | /* No MWDMA3 or MWDMA 4 */ |
| 4612 | xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3)); |
| 4613 | } |
| 4614 | |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4615 | if (ata_dma_blacklisted(dev)) { |
| 4616 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4617 | ata_dev_printk(dev, KERN_WARNING, |
| 4618 | "device is on DMA blacklist, disabling DMA\n"); |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4619 | } |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4620 | |
Petr Vandrovec | 14d66ab | 2007-03-08 10:12:12 +0100 | [diff] [blame] | 4621 | if ((host->flags & ATA_HOST_SIMPLEX) && |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4622 | host->simplex_claimed && host->simplex_claimed != ap) { |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4623 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
| 4624 | ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by " |
| 4625 | "other device, disabling DMA\n"); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4626 | } |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4627 | |
Jeff Garzik | e424675 | 2007-03-09 09:56:46 -0500 | [diff] [blame] | 4628 | if (ap->flags & ATA_FLAG_NO_IORDY) |
| 4629 | xfer_mask &= ata_pio_mask_no_iordy(dev); |
| 4630 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4631 | if (ap->ops->mode_filter) |
Alan Cox | a76b62ca | 2007-03-09 09:34:07 -0500 | [diff] [blame] | 4632 | xfer_mask = ap->ops->mode_filter(dev, xfer_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4633 | |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4634 | /* Apply cable rule here. Don't apply it early because when |
| 4635 | * we handle hot plug the cable type can itself change. |
| 4636 | * Check this last so that we know if the transfer rate was |
| 4637 | * solely limited by the cable. |
| 4638 | * Unknown or 80 wire cables reported host side are checked |
| 4639 | * drive side as well. Cases where we know a 40wire cable |
| 4640 | * is used safely for 80 are not checked here. |
| 4641 | */ |
| 4642 | if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA)) |
| 4643 | /* UDMA/44 or higher would be available */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4644 | if ((ap->cbl == ATA_CBL_PATA40) || |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4645 | (ata_is_40wire(dev) && |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4646 | (ap->cbl == ATA_CBL_PATA_UNK || |
| 4647 | ap->cbl == ATA_CBL_PATA80))) { |
| 4648 | ata_dev_printk(dev, KERN_WARNING, |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4649 | "limited to UDMA/33 due to 40-wire cable\n"); |
| 4650 | xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA); |
| 4651 | } |
| 4652 | |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4653 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, |
| 4654 | &dev->mwdma_mask, &dev->udma_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4655 | } |
| 4656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4657 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4658 | * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4659 | * @dev: Device to which command will be sent |
| 4660 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4661 | * Issue SET FEATURES - XFER MODE command to device @dev |
| 4662 | * on port @ap. |
| 4663 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4664 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4665 | * PCI/etc. bus probe sem. |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4666 | * |
| 4667 | * RETURNS: |
| 4668 | * 0 on success, AC_ERR_* mask otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4669 | */ |
| 4670 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4671 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4672 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4673 | struct ata_taskfile tf; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4674 | unsigned int err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4675 | |
| 4676 | /* set up set-features taskfile */ |
| 4677 | DPRINTK("set features - xfer mode\n"); |
| 4678 | |
Tejun Heo | 464cf17 | 2007-05-27 15:10:40 +0200 | [diff] [blame] | 4679 | /* Some controllers and ATAPI devices show flaky interrupt |
| 4680 | * behavior after setting xfer mode. Use polling instead. |
| 4681 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4682 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4683 | tf.command = ATA_CMD_SET_FEATURES; |
| 4684 | tf.feature = SETFEATURES_XFER; |
Tejun Heo | 464cf17 | 2007-05-27 15:10:40 +0200 | [diff] [blame] | 4685 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING; |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4686 | tf.protocol = ATA_PROT_NODATA; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4687 | /* If we are using IORDY we must send the mode setting command */ |
Jeff Garzik | 11b7bec | 2007-11-23 21:12:14 -0500 | [diff] [blame] | 4688 | if (ata_pio_need_iordy(dev)) |
| 4689 | tf.nsect = dev->xfer_mode; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4690 | /* If the device has IORDY and the controller does not - turn it off */ |
| 4691 | else if (ata_id_has_iordy(dev->id)) |
Jeff Garzik | 11b7bec | 2007-11-23 21:12:14 -0500 | [diff] [blame] | 4692 | tf.nsect = 0x01; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4693 | else /* In the ancient relic department - skip all of this */ |
| 4694 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4695 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4696 | 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] | 4697 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4698 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4699 | return err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4700 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4701 | /** |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4702 | * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4703 | * @dev: Device to which command will be sent |
| 4704 | * @enable: Whether to enable or disable the feature |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4705 | * @feature: The sector count represents the feature to set |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4706 | * |
| 4707 | * Issue SET FEATURES - SATA FEATURES command to device @dev |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4708 | * on port @ap with sector count |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4709 | * |
| 4710 | * LOCKING: |
| 4711 | * PCI/etc. bus probe sem. |
| 4712 | * |
| 4713 | * RETURNS: |
| 4714 | * 0 on success, AC_ERR_* mask otherwise. |
| 4715 | */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4716 | static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable, |
| 4717 | u8 feature) |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4718 | { |
| 4719 | struct ata_taskfile tf; |
| 4720 | unsigned int err_mask; |
| 4721 | |
| 4722 | /* set up set-features taskfile */ |
| 4723 | DPRINTK("set features - SATA features\n"); |
| 4724 | |
| 4725 | ata_tf_init(dev, &tf); |
| 4726 | tf.command = ATA_CMD_SET_FEATURES; |
| 4727 | tf.feature = enable; |
| 4728 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 4729 | tf.protocol = ATA_PROT_NODATA; |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4730 | tf.nsect = feature; |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4731 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4732 | 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] | 4733 | |
| 4734 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4735 | return err_mask; |
| 4736 | } |
| 4737 | |
| 4738 | /** |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4739 | * ata_dev_init_params - Issue INIT DEV PARAMS command |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4740 | * @dev: Device to which command will be sent |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 4741 | * @heads: Number of heads (taskfile parameter) |
| 4742 | * @sectors: Number of sectors (taskfile parameter) |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4743 | * |
| 4744 | * LOCKING: |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4745 | * Kernel thread context (may sleep) |
| 4746 | * |
| 4747 | * RETURNS: |
| 4748 | * 0 on success, AC_ERR_* mask otherwise. |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4749 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4750 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 4751 | u16 heads, u16 sectors) |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4752 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4753 | struct ata_taskfile tf; |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4754 | unsigned int err_mask; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4755 | |
| 4756 | /* Number of sectors per track 1-255. Number of heads 1-16 */ |
| 4757 | if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16) |
Albert Lee | 00b6f5e | 2006-03-27 16:39:18 +0800 | [diff] [blame] | 4758 | return AC_ERR_INVALID; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4759 | |
| 4760 | /* set up init dev params taskfile */ |
| 4761 | DPRINTK("init dev params \n"); |
| 4762 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4763 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4764 | tf.command = ATA_CMD_INIT_DEV_PARAMS; |
| 4765 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 4766 | tf.protocol = ATA_PROT_NODATA; |
| 4767 | tf.nsect = sectors; |
| 4768 | tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */ |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4769 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4770 | 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] | 4771 | /* A clean abort indicates an original or just out of spec drive |
| 4772 | and we should continue as we issue the setup based on the |
| 4773 | drive reported working geometry */ |
| 4774 | if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED)) |
| 4775 | err_mask = 0; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4776 | |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4777 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4778 | return err_mask; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4779 | } |
| 4780 | |
| 4781 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4782 | * ata_sg_clean - Unmap DMA memory associated with command |
| 4783 | * @qc: Command containing DMA memory to be released |
| 4784 | * |
| 4785 | * Unmap all mapped DMA memory associated with this command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4786 | * |
| 4787 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4788 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4789 | */ |
Tejun Heo | 70e6ad0 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 4790 | void ata_sg_clean(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4791 | { |
| 4792 | struct ata_port *ap = qc->ap; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4793 | struct scatterlist *sg = qc->sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4794 | int dir = qc->dma_dir; |
| 4795 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 4796 | WARN_ON(sg == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4797 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4798 | VPRINTK("unmapping %u sg elements\n", qc->n_elem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4799 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4800 | if (qc->n_elem) |
| 4801 | dma_unmap_sg(ap->dev, sg, qc->n_elem, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4802 | |
| 4803 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4804 | qc->sg = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4805 | } |
| 4806 | |
| 4807 | /** |
| 4808 | * ata_fill_sg - Fill PCI IDE PRD table |
| 4809 | * @qc: Metadata associated with taskfile to be transferred |
| 4810 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4811 | * Fill PCI IDE PRD (scatter-gather) table with segments |
| 4812 | * associated with the current disk command. |
| 4813 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4814 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4815 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4816 | * |
| 4817 | */ |
| 4818 | static void ata_fill_sg(struct ata_queued_cmd *qc) |
| 4819 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4820 | struct ata_port *ap = qc->ap; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 4821 | struct scatterlist *sg; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4822 | unsigned int si, pi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4823 | |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4824 | pi = 0; |
| 4825 | for_each_sg(qc->sg, sg, qc->n_elem, si) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4826 | u32 addr, offset; |
| 4827 | u32 sg_len, len; |
| 4828 | |
| 4829 | /* determine if physical DMA addr spans 64K boundary. |
| 4830 | * Note h/w doesn't support 64-bit, so we unconditionally |
| 4831 | * truncate dma_addr_t to u32. |
| 4832 | */ |
| 4833 | addr = (u32) sg_dma_address(sg); |
| 4834 | sg_len = sg_dma_len(sg); |
| 4835 | |
| 4836 | while (sg_len) { |
| 4837 | offset = addr & 0xffff; |
| 4838 | len = sg_len; |
| 4839 | if ((offset + sg_len) > 0x10000) |
| 4840 | len = 0x10000 - offset; |
| 4841 | |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4842 | ap->prd[pi].addr = cpu_to_le32(addr); |
| 4843 | ap->prd[pi].flags_len = cpu_to_le32(len & 0xffff); |
| 4844 | VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4845 | |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4846 | pi++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4847 | sg_len -= len; |
| 4848 | addr += len; |
| 4849 | } |
| 4850 | } |
| 4851 | |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4852 | ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4853 | } |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4854 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4855 | /** |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4856 | * ata_fill_sg_dumb - Fill PCI IDE PRD table |
| 4857 | * @qc: Metadata associated with taskfile to be transferred |
| 4858 | * |
| 4859 | * Fill PCI IDE PRD (scatter-gather) table with segments |
| 4860 | * associated with the current disk command. Perform the fill |
| 4861 | * so that we avoid writing any length 64K records for |
| 4862 | * controllers that don't follow the spec. |
| 4863 | * |
| 4864 | * LOCKING: |
| 4865 | * spin_lock_irqsave(host lock) |
| 4866 | * |
| 4867 | */ |
| 4868 | static void ata_fill_sg_dumb(struct ata_queued_cmd *qc) |
| 4869 | { |
| 4870 | struct ata_port *ap = qc->ap; |
| 4871 | struct scatterlist *sg; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4872 | unsigned int si, pi; |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4873 | |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4874 | pi = 0; |
| 4875 | for_each_sg(qc->sg, sg, qc->n_elem, si) { |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4876 | u32 addr, offset; |
| 4877 | u32 sg_len, len, blen; |
| 4878 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4879 | /* determine if physical DMA addr spans 64K boundary. |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4880 | * Note h/w doesn't support 64-bit, so we unconditionally |
| 4881 | * truncate dma_addr_t to u32. |
| 4882 | */ |
| 4883 | addr = (u32) sg_dma_address(sg); |
| 4884 | sg_len = sg_dma_len(sg); |
| 4885 | |
| 4886 | while (sg_len) { |
| 4887 | offset = addr & 0xffff; |
| 4888 | len = sg_len; |
| 4889 | if ((offset + sg_len) > 0x10000) |
| 4890 | len = 0x10000 - offset; |
| 4891 | |
| 4892 | blen = len & 0xffff; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4893 | ap->prd[pi].addr = cpu_to_le32(addr); |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4894 | if (blen == 0) { |
| 4895 | /* Some PATA chipsets like the CS5530 can't |
| 4896 | cope with 0x0000 meaning 64K as the spec says */ |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4897 | ap->prd[pi].flags_len = cpu_to_le32(0x8000); |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4898 | blen = 0x8000; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4899 | ap->prd[++pi].addr = cpu_to_le32(addr + 0x8000); |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4900 | } |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4901 | ap->prd[pi].flags_len = cpu_to_le32(blen); |
| 4902 | VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", pi, addr, len); |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4903 | |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4904 | pi++; |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4905 | sg_len -= len; |
| 4906 | addr += len; |
| 4907 | } |
| 4908 | } |
| 4909 | |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4910 | ap->prd[pi - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT); |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4911 | } |
| 4912 | |
| 4913 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4914 | * ata_check_atapi_dma - Check whether ATAPI DMA can be supported |
| 4915 | * @qc: Metadata associated with taskfile to check |
| 4916 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4917 | * Allow low-level driver to filter ATA PACKET commands, returning |
| 4918 | * a status indicating whether or not it is OK to use DMA for the |
| 4919 | * supplied PACKET command. |
| 4920 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4921 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4922 | * spin_lock_irqsave(host lock) |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4923 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4924 | * RETURNS: 0 when ATAPI DMA can be used |
| 4925 | * nonzero otherwise |
| 4926 | */ |
| 4927 | int ata_check_atapi_dma(struct ata_queued_cmd *qc) |
| 4928 | { |
| 4929 | struct ata_port *ap = qc->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4930 | |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4931 | /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a |
| 4932 | * few ATAPI devices choke on such DMA requests. |
| 4933 | */ |
| 4934 | if (unlikely(qc->nbytes & 15)) |
| 4935 | return 1; |
Albert Lee | 6f23a31 | 2007-04-02 11:39:25 +0800 | [diff] [blame] | 4936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4937 | if (ap->ops->check_atapi_dma) |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4938 | return ap->ops->check_atapi_dma(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4939 | |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4940 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4941 | } |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4943 | /** |
Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4944 | * ata_std_qc_defer - Check whether a qc needs to be deferred |
| 4945 | * @qc: ATA command in question |
| 4946 | * |
| 4947 | * Non-NCQ commands cannot run with any other command, NCQ or |
| 4948 | * not. As upper layer only knows the queue depth, we are |
| 4949 | * responsible for maintaining exclusion. This function checks |
| 4950 | * whether a new command @qc can be issued. |
| 4951 | * |
| 4952 | * LOCKING: |
| 4953 | * spin_lock_irqsave(host lock) |
| 4954 | * |
| 4955 | * RETURNS: |
| 4956 | * ATA_DEFER_* if deferring is needed, 0 otherwise. |
| 4957 | */ |
| 4958 | int ata_std_qc_defer(struct ata_queued_cmd *qc) |
| 4959 | { |
| 4960 | struct ata_link *link = qc->dev->link; |
| 4961 | |
| 4962 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
| 4963 | if (!ata_tag_valid(link->active_tag)) |
| 4964 | return 0; |
| 4965 | } else { |
| 4966 | if (!ata_tag_valid(link->active_tag) && !link->sactive) |
| 4967 | return 0; |
| 4968 | } |
| 4969 | |
| 4970 | return ATA_DEFER_LINK; |
| 4971 | } |
| 4972 | |
| 4973 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4974 | * ata_qc_prep - Prepare taskfile for submission |
| 4975 | * @qc: Metadata associated with taskfile to be prepared |
| 4976 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4977 | * Prepare ATA taskfile for submission. |
| 4978 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4979 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4980 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4981 | */ |
| 4982 | void ata_qc_prep(struct ata_queued_cmd *qc) |
| 4983 | { |
| 4984 | if (!(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 4985 | return; |
| 4986 | |
| 4987 | ata_fill_sg(qc); |
| 4988 | } |
| 4989 | |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 4990 | /** |
| 4991 | * ata_dumb_qc_prep - Prepare taskfile for submission |
| 4992 | * @qc: Metadata associated with taskfile to be prepared |
| 4993 | * |
| 4994 | * Prepare ATA taskfile for submission. |
| 4995 | * |
| 4996 | * LOCKING: |
| 4997 | * spin_lock_irqsave(host lock) |
| 4998 | */ |
| 4999 | void ata_dumb_qc_prep(struct ata_queued_cmd *qc) |
| 5000 | { |
| 5001 | if (!(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 5002 | return; |
| 5003 | |
| 5004 | ata_fill_sg_dumb(qc); |
| 5005 | } |
| 5006 | |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 5007 | void ata_noop_qc_prep(struct ata_queued_cmd *qc) { } |
| 5008 | |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5009 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5010 | * ata_sg_init - Associate command with scatter-gather table. |
| 5011 | * @qc: Command to be associated |
| 5012 | * @sg: Scatter-gather table. |
| 5013 | * @n_elem: Number of elements in s/g table. |
| 5014 | * |
| 5015 | * Initialize the data-related elements of queued_cmd @qc |
| 5016 | * to point to a scatter-gather table @sg, containing @n_elem |
| 5017 | * elements. |
| 5018 | * |
| 5019 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5020 | * spin_lock_irqsave(host lock) |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5021 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5022 | void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg, |
| 5023 | unsigned int n_elem) |
| 5024 | { |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 5025 | qc->sg = sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5026 | qc->n_elem = n_elem; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 5027 | qc->cursg = qc->sg; |
| 5028 | } |
| 5029 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5030 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5031 | * ata_sg_setup - DMA-map the scatter-gather table associated with a command. |
| 5032 | * @qc: Command with scatter-gather table to be mapped. |
| 5033 | * |
| 5034 | * DMA-map the scatter-gather table associated with queued_cmd @qc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5035 | * |
| 5036 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5037 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5038 | * |
| 5039 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5040 | * Zero on success, negative on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5041 | * |
| 5042 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5043 | static int ata_sg_setup(struct ata_queued_cmd *qc) |
| 5044 | { |
| 5045 | struct ata_port *ap = qc->ap; |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 5046 | unsigned int n_elem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5047 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 5048 | VPRINTK("ENTER, ata%u\n", ap->print_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5049 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 5050 | n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir); |
| 5051 | if (n_elem < 1) |
| 5052 | return -1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 5053 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 5054 | DPRINTK("%d sg elements mapped\n", n_elem); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 5055 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 5056 | qc->n_elem = n_elem; |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 5057 | qc->flags |= ATA_QCFLAG_DMAMAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5058 | |
| 5059 | return 0; |
| 5060 | } |
| 5061 | |
| 5062 | /** |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5063 | * swap_buf_le16 - swap halves of 16-bit words in place |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5064 | * @buf: Buffer to swap |
| 5065 | * @buf_words: Number of 16-bit words in buffer. |
| 5066 | * |
| 5067 | * Swap halves of 16-bit words if needed to convert from |
| 5068 | * little-endian byte order to native cpu byte order, or |
| 5069 | * vice-versa. |
| 5070 | * |
| 5071 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 5072 | * Inherited from caller. |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5073 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5074 | void swap_buf_le16(u16 *buf, unsigned int buf_words) |
| 5075 | { |
| 5076 | #ifdef __BIG_ENDIAN |
| 5077 | unsigned int i; |
| 5078 | |
| 5079 | for (i = 0; i < buf_words; i++) |
| 5080 | buf[i] = le16_to_cpu(buf[i]); |
| 5081 | #endif /* __BIG_ENDIAN */ |
| 5082 | } |
| 5083 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5084 | /** |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 5085 | * ata_data_xfer - Transfer data by PIO |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5086 | * @dev: device to target |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5087 | * @buf: data buffer |
| 5088 | * @buflen: buffer length |
Linus Nilsson | 0affa45 | 2008-01-28 15:56:27 +0100 | [diff] [blame] | 5089 | * @rw: read/write |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5090 | * |
| 5091 | * Transfer data from/to the device data register by PIO. |
| 5092 | * |
| 5093 | * LOCKING: |
| 5094 | * Inherited from caller. |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5095 | * |
| 5096 | * RETURNS: |
| 5097 | * Bytes consumed. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5098 | */ |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5099 | unsigned int ata_data_xfer(struct ata_device *dev, unsigned char *buf, |
| 5100 | unsigned int buflen, int rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5101 | { |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5102 | struct ata_port *ap = dev->link->ap; |
| 5103 | void __iomem *data_addr = ap->ioaddr.data_addr; |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5104 | unsigned int words = buflen >> 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5105 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5106 | /* Transfer multiple of 2 bytes */ |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5107 | if (rw == READ) |
| 5108 | ioread16_rep(data_addr, buf, words); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5109 | else |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5110 | iowrite16_rep(data_addr, buf, words); |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5111 | |
| 5112 | /* Transfer trailing 1 byte, if any. */ |
| 5113 | if (unlikely(buflen & 0x01)) { |
Al Viro | 4ca4e43 | 2007-12-30 09:32:22 +0000 | [diff] [blame] | 5114 | __le16 align_buf[1] = { 0 }; |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5115 | unsigned char *trailing_buf = buf + buflen - 1; |
| 5116 | |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5117 | if (rw == READ) { |
| 5118 | align_buf[0] = cpu_to_le16(ioread16(data_addr)); |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5119 | memcpy(trailing_buf, align_buf, 1); |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5120 | } else { |
| 5121 | memcpy(align_buf, trailing_buf, 1); |
| 5122 | iowrite16(le16_to_cpu(align_buf[0]), data_addr); |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5123 | } |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5124 | words++; |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5125 | } |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5126 | |
| 5127 | return words << 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5128 | } |
| 5129 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5130 | /** |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 5131 | * ata_data_xfer_noirq - Transfer data by PIO |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5132 | * @dev: device to target |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5133 | * @buf: data buffer |
| 5134 | * @buflen: buffer length |
Linus Nilsson | 0affa45 | 2008-01-28 15:56:27 +0100 | [diff] [blame] | 5135 | * @rw: read/write |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5136 | * |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 5137 | * Transfer data from/to the device data register by PIO. Do the |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5138 | * transfer with interrupts disabled. |
| 5139 | * |
| 5140 | * LOCKING: |
| 5141 | * Inherited from caller. |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5142 | * |
| 5143 | * RETURNS: |
| 5144 | * Bytes consumed. |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5145 | */ |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5146 | unsigned int ata_data_xfer_noirq(struct ata_device *dev, unsigned char *buf, |
| 5147 | unsigned int buflen, int rw) |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5148 | { |
| 5149 | unsigned long flags; |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5150 | unsigned int consumed; |
| 5151 | |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5152 | local_irq_save(flags); |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5153 | consumed = ata_data_xfer(dev, buf, buflen, rw); |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5154 | local_irq_restore(flags); |
Tejun Heo | 55dba31 | 2007-12-05 16:43:07 +0900 | [diff] [blame] | 5155 | |
| 5156 | return consumed; |
Alan Cox | 75e9958 | 2006-05-24 14:14:41 +0100 | [diff] [blame] | 5157 | } |
| 5158 | |
| 5159 | |
| 5160 | /** |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5161 | * ata_pio_sector - Transfer a sector of data. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5162 | * @qc: Command on going |
| 5163 | * |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5164 | * Transfer qc->sect_size bytes of data from/to the ATA device. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5165 | * |
| 5166 | * LOCKING: |
| 5167 | * Inherited from caller. |
| 5168 | */ |
| 5169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5170 | static void ata_pio_sector(struct ata_queued_cmd *qc) |
| 5171 | { |
| 5172 | int do_write = (qc->tf.flags & ATA_TFLAG_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5173 | struct ata_port *ap = qc->ap; |
| 5174 | struct page *page; |
| 5175 | unsigned int offset; |
| 5176 | unsigned char *buf; |
| 5177 | |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5178 | if (qc->curbytes == qc->nbytes - qc->sect_size) |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 5179 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5180 | |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 5181 | page = sg_page(qc->cursg); |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 5182 | offset = qc->cursg->offset + qc->cursg_ofs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | |
| 5184 | /* get the current page and offset */ |
| 5185 | page = nth_page(page, (offset >> PAGE_SHIFT)); |
| 5186 | offset %= PAGE_SIZE; |
| 5187 | |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 5188 | DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 5189 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5190 | if (PageHighMem(page)) { |
| 5191 | unsigned long flags; |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 5192 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 5193 | /* FIXME: use a bounce buffer */ |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5194 | local_irq_save(flags); |
| 5195 | buf = kmap_atomic(page, KM_IRQ0); |
Albert Lee | 083958d | 2005-10-09 09:47:31 -0400 | [diff] [blame] | 5196 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5197 | /* do the actual data transfer */ |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5198 | ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5199 | |
| 5200 | kunmap_atomic(buf, KM_IRQ0); |
| 5201 | local_irq_restore(flags); |
| 5202 | } else { |
| 5203 | buf = page_address(page); |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5204 | ap->ops->data_xfer(qc->dev, buf + offset, qc->sect_size, do_write); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5205 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5206 | |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5207 | qc->curbytes += qc->sect_size; |
| 5208 | qc->cursg_ofs += qc->sect_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5209 | |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 5210 | if (qc->cursg_ofs == qc->cursg->length) { |
| 5211 | qc->cursg = sg_next(qc->cursg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5212 | qc->cursg_ofs = 0; |
| 5213 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5214 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5215 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5216 | /** |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5217 | * ata_pio_sectors - Transfer one or many sectors. |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 5218 | * @qc: Command on going |
| 5219 | * |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5220 | * Transfer one or many sectors of data from/to the |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 5221 | * ATA device for the DRQ request. |
| 5222 | * |
| 5223 | * LOCKING: |
| 5224 | * Inherited from caller. |
| 5225 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5226 | |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 5227 | static void ata_pio_sectors(struct ata_queued_cmd *qc) |
| 5228 | { |
| 5229 | if (is_multi_taskfile(&qc->tf)) { |
| 5230 | /* READ/WRITE MULTIPLE */ |
| 5231 | unsigned int nsect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5232 | |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 5233 | WARN_ON(qc->dev->multi_count == 0); |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 5234 | |
Mark Lord | 5a5dbd1 | 2007-03-16 10:22:26 -0400 | [diff] [blame] | 5235 | nsect = min((qc->nbytes - qc->curbytes) / qc->sect_size, |
Tejun Heo | 726f078 | 2007-01-03 17:30:39 +0900 | [diff] [blame] | 5236 | qc->dev->multi_count); |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 5237 | while (nsect--) |
| 5238 | ata_pio_sector(qc); |
| 5239 | } else |
| 5240 | ata_pio_sector(qc); |
Albert Lee | 4cc980b | 2007-08-15 03:19:45 -0400 | [diff] [blame] | 5241 | |
| 5242 | ata_altstatus(qc->ap); /* flush */ |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 5243 | } |
| 5244 | |
| 5245 | /** |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 5246 | * atapi_send_cdb - Write CDB bytes to hardware |
| 5247 | * @ap: Port to which ATAPI device is attached. |
| 5248 | * @qc: Taskfile currently active |
| 5249 | * |
| 5250 | * When device has indicated its readiness to accept |
| 5251 | * a CDB, this function is called. Send the CDB. |
| 5252 | * |
| 5253 | * LOCKING: |
| 5254 | * caller. |
| 5255 | */ |
| 5256 | |
| 5257 | static void atapi_send_cdb(struct ata_port *ap, struct ata_queued_cmd *qc) |
| 5258 | { |
| 5259 | /* send SCSI cdb */ |
| 5260 | DPRINTK("send cdb\n"); |
Jeff Garzik | db024d5 | 2006-02-13 00:23:57 -0500 | [diff] [blame] | 5261 | WARN_ON(qc->dev->cdb_len < 12); |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 5262 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 5263 | ap->ops->data_xfer(qc->dev, qc->cdb, qc->dev->cdb_len, 1); |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 5264 | ata_altstatus(ap); /* flush */ |
| 5265 | |
| 5266 | switch (qc->tf.protocol) { |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 5267 | case ATAPI_PROT_PIO: |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 5268 | ap->hsm_task_state = HSM_ST; |
| 5269 | break; |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 5270 | case ATAPI_PROT_NODATA: |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 5271 | ap->hsm_task_state = HSM_ST_LAST; |
| 5272 | break; |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 5273 | case ATAPI_PROT_DMA: |
Albert Lee | c71c185 | 2005-10-04 06:03:45 -0400 | [diff] [blame] | 5274 | ap->hsm_task_state = HSM_ST_LAST; |
| 5275 | /* initiate bmdma */ |
| 5276 | ap->ops->bmdma_start(qc); |
| 5277 | break; |
| 5278 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5279 | } |
| 5280 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5281 | /** |
| 5282 | * __atapi_pio_bytes - Transfer data from/to the ATAPI device. |
| 5283 | * @qc: Command on going |
| 5284 | * @bytes: number of bytes |
| 5285 | * |
| 5286 | * Transfer Transfer data from/to the ATAPI device. |
| 5287 | * |
| 5288 | * LOCKING: |
| 5289 | * Inherited from caller. |
| 5290 | * |
| 5291 | */ |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 5292 | static int __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5293 | { |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5294 | int rw = (qc->tf.flags & ATA_TFLAG_WRITE) ? WRITE : READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5295 | struct ata_port *ap = qc->ap; |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5296 | struct ata_device *dev = qc->dev; |
| 5297 | struct ata_eh_info *ehi = &dev->link->eh_info; |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 5298 | struct scatterlist *sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5299 | struct page *page; |
| 5300 | unsigned char *buf; |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5301 | unsigned int offset, count, consumed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5302 | |
| 5303 | next_sg: |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 5304 | sg = qc->cursg; |
| 5305 | if (unlikely(!sg)) { |
James Bottomley | fa2fc7f | 2008-02-19 11:36:57 +0100 | [diff] [blame] | 5306 | ata_ehi_push_desc(ehi, "unexpected or too much trailing data " |
| 5307 | "buf=%u cur=%u bytes=%u", |
| 5308 | qc->nbytes, qc->curbytes, bytes); |
| 5309 | return -1; |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 5310 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5311 | |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 5312 | page = sg_page(sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5313 | offset = sg->offset + qc->cursg_ofs; |
| 5314 | |
| 5315 | /* get the current page and offset */ |
| 5316 | page = nth_page(page, (offset >> PAGE_SHIFT)); |
| 5317 | offset %= PAGE_SIZE; |
| 5318 | |
Albert Lee | 6952df0 | 2005-06-06 15:56:03 +0800 | [diff] [blame] | 5319 | /* don't overrun current sg */ |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 5320 | count = min(sg->length - qc->cursg_ofs, bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5321 | |
| 5322 | /* don't cross page boundaries */ |
| 5323 | count = min(count, (unsigned int)PAGE_SIZE - offset); |
| 5324 | |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 5325 | DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); |
| 5326 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5327 | if (PageHighMem(page)) { |
| 5328 | unsigned long flags; |
Albert Lee | 7282aa4 | 2005-10-09 09:46:07 -0400 | [diff] [blame] | 5329 | |
Alan Cox | a6b2c5d | 2006-05-22 16:59:59 +0100 | [diff] [blame] | 5330 | /* FIXME: use bounce buffer */ |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5331 | local_irq_save(flags); |
| 5332 | buf = kmap_atomic(page, KM_IRQ0); |
Albert Lee | 083958d | 2005-10-09 09:47:31 -0400 | [diff] [blame] | 5333 | |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5334 | /* do the actual data transfer */ |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5335 | consumed = ap->ops->data_xfer(dev, buf + offset, count, rw); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5336 | |
| 5337 | kunmap_atomic(buf, KM_IRQ0); |
| 5338 | local_irq_restore(flags); |
| 5339 | } else { |
| 5340 | buf = page_address(page); |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5341 | consumed = ap->ops->data_xfer(dev, buf + offset, count, rw); |
Albert Lee | 91b8b31 | 2005-10-09 09:48:44 -0400 | [diff] [blame] | 5342 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5343 | |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5344 | bytes -= min(bytes, consumed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5345 | qc->curbytes += count; |
| 5346 | qc->cursg_ofs += count; |
| 5347 | |
Albert Lee | 32529e0 | 2005-05-26 03:49:42 -0400 | [diff] [blame] | 5348 | if (qc->cursg_ofs == sg->length) { |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 5349 | qc->cursg = sg_next(qc->cursg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5350 | qc->cursg_ofs = 0; |
| 5351 | } |
| 5352 | |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5353 | /* consumed can be larger than count only for the last transfer */ |
| 5354 | WARN_ON(qc->cursg && count != consumed); |
| 5355 | |
Albert Lee | 563a6e1 | 2005-08-12 14:17:50 +0800 | [diff] [blame] | 5356 | if (bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5357 | goto next_sg; |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 5358 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5359 | } |
| 5360 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5361 | /** |
| 5362 | * atapi_pio_bytes - Transfer data from/to the ATAPI device. |
| 5363 | * @qc: Command on going |
| 5364 | * |
| 5365 | * Transfer Transfer data from/to the ATAPI device. |
| 5366 | * |
| 5367 | * LOCKING: |
| 5368 | * Inherited from caller. |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 5369 | */ |
| 5370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5371 | static void atapi_pio_bytes(struct ata_queued_cmd *qc) |
| 5372 | { |
| 5373 | struct ata_port *ap = qc->ap; |
| 5374 | struct ata_device *dev = qc->dev; |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5375 | struct ata_eh_info *ehi = &dev->link->eh_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5376 | unsigned int ireason, bc_lo, bc_hi, bytes; |
| 5377 | int i_write, do_write = (qc->tf.flags & ATA_TFLAG_WRITE) ? 1 : 0; |
| 5378 | |
Albert Lee | eec4c3f | 2006-05-18 17:51:10 +0800 | [diff] [blame] | 5379 | /* Abuse qc->result_tf for temp storage of intermediate TF |
| 5380 | * here to save some kernel stack usage. |
| 5381 | * For normal completion, qc->result_tf is not relevant. For |
| 5382 | * error, qc->result_tf is later overwritten by ata_qc_complete(). |
| 5383 | * So, the correctness of qc->result_tf is not affected. |
| 5384 | */ |
| 5385 | ap->ops->tf_read(ap, &qc->result_tf); |
| 5386 | ireason = qc->result_tf.nsect; |
| 5387 | bc_lo = qc->result_tf.lbam; |
| 5388 | bc_hi = qc->result_tf.lbah; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5389 | bytes = (bc_hi << 8) | bc_lo; |
| 5390 | |
| 5391 | /* shall be cleared to zero, indicating xfer of data */ |
Albert Lee | 0106372 | 2007-12-05 16:43:02 +0900 | [diff] [blame] | 5392 | if (unlikely(ireason & (1 << 0))) |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5393 | goto atapi_check; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5394 | |
| 5395 | /* make sure transfer direction matches expected */ |
| 5396 | i_write = ((ireason & (1 << 1)) == 0) ? 1 : 0; |
Albert Lee | 0106372 | 2007-12-05 16:43:02 +0900 | [diff] [blame] | 5397 | if (unlikely(do_write != i_write)) |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5398 | goto atapi_check; |
Albert Lee | 0106372 | 2007-12-05 16:43:02 +0900 | [diff] [blame] | 5399 | |
| 5400 | if (unlikely(!bytes)) |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5401 | goto atapi_check; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5402 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 5403 | VPRINTK("ata%u: xfering %d bytes\n", ap->print_id, bytes); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 5404 | |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5405 | if (unlikely(__atapi_pio_bytes(qc, bytes))) |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 5406 | goto err_out; |
Albert Lee | 4cc980b | 2007-08-15 03:19:45 -0400 | [diff] [blame] | 5407 | ata_altstatus(ap); /* flush */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5408 | |
| 5409 | return; |
| 5410 | |
Tejun Heo | 56c819d | 2008-02-19 11:35:37 +0100 | [diff] [blame] | 5411 | atapi_check: |
| 5412 | ata_ehi_push_desc(ehi, "ATAPI check failed (ireason=0x%x bytes=%u)", |
| 5413 | ireason, bytes); |
| 5414 | err_out: |
Tejun Heo | 11a56d2 | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 5415 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | 14be71f | 2005-09-27 17:36:35 +0800 | [diff] [blame] | 5416 | ap->hsm_task_state = HSM_ST_ERR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5417 | } |
| 5418 | |
| 5419 | /** |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5420 | * ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue. |
| 5421 | * @ap: the target ata_port |
| 5422 | * @qc: qc on going |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5423 | * |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5424 | * RETURNS: |
| 5425 | * 1 if ok in workqueue, 0 otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5426 | */ |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5427 | |
| 5428 | static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5429 | { |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5430 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 5431 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5432 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5433 | if (ap->hsm_task_state == HSM_ST_FIRST) { |
| 5434 | if (qc->tf.protocol == ATA_PROT_PIO && |
| 5435 | (qc->tf.flags & ATA_TFLAG_WRITE)) |
| 5436 | return 1; |
| 5437 | |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 5438 | if (ata_is_atapi(qc->tf.protocol) && |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5439 | !(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
| 5440 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5441 | } |
| 5442 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5443 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5444 | } |
| 5445 | |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5446 | /** |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5447 | * ata_hsm_qc_complete - finish a qc running on standard HSM |
| 5448 | * @qc: Command to complete |
| 5449 | * @in_wq: 1 if called from workqueue, 0 otherwise |
| 5450 | * |
| 5451 | * Finish @qc which is running on standard HSM. |
| 5452 | * |
| 5453 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5454 | * If @in_wq is zero, spin_lock_irqsave(host lock). |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5455 | * Otherwise, none on entry and grabs host lock. |
| 5456 | */ |
| 5457 | static void ata_hsm_qc_complete(struct ata_queued_cmd *qc, int in_wq) |
| 5458 | { |
| 5459 | struct ata_port *ap = qc->ap; |
| 5460 | unsigned long flags; |
| 5461 | |
| 5462 | if (ap->ops->error_handler) { |
| 5463 | if (in_wq) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5464 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5465 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5466 | /* EH might have kicked in while host lock is |
| 5467 | * released. |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5468 | */ |
| 5469 | qc = ata_qc_from_tag(ap, qc->tag); |
| 5470 | if (qc) { |
| 5471 | if (likely(!(qc->err_mask & AC_ERR_HSM))) { |
Akira Iguchi | 8362500 | 2007-01-26 16:27:32 +0900 | [diff] [blame] | 5472 | ap->ops->irq_on(ap); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5473 | ata_qc_complete(qc); |
| 5474 | } else |
| 5475 | ata_port_freeze(ap); |
| 5476 | } |
| 5477 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5478 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5479 | } else { |
| 5480 | if (likely(!(qc->err_mask & AC_ERR_HSM))) |
| 5481 | ata_qc_complete(qc); |
| 5482 | else |
| 5483 | ata_port_freeze(ap); |
| 5484 | } |
| 5485 | } else { |
| 5486 | if (in_wq) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5487 | spin_lock_irqsave(ap->lock, flags); |
Akira Iguchi | 8362500 | 2007-01-26 16:27:32 +0900 | [diff] [blame] | 5488 | ap->ops->irq_on(ap); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5489 | ata_qc_complete(qc); |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5490 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5491 | } else |
| 5492 | ata_qc_complete(qc); |
| 5493 | } |
| 5494 | } |
| 5495 | |
| 5496 | /** |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5497 | * ata_hsm_move - move the HSM to the next state. |
| 5498 | * @ap: the target ata_port |
| 5499 | * @qc: qc on going |
| 5500 | * @status: current device status |
| 5501 | * @in_wq: 1 if called from workqueue, 0 otherwise |
| 5502 | * |
| 5503 | * RETURNS: |
| 5504 | * 1 when poll next status needed, 0 otherwise. |
| 5505 | */ |
Tejun Heo | 9a1004d | 2006-05-31 18:27:52 +0900 | [diff] [blame] | 5506 | int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc, |
| 5507 | u8 status, int in_wq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5508 | { |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5509 | unsigned long flags = 0; |
| 5510 | int poll_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5511 | |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 5512 | WARN_ON((qc->flags & ATA_QCFLAG_ACTIVE) == 0); |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 5513 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5514 | /* Make sure ata_qc_issue_prot() does not throw things |
| 5515 | * like DMA polling into the workqueue. Notice that |
| 5516 | * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING). |
Albert Lee | 1c84898 | 2005-12-05 15:40:15 +0800 | [diff] [blame] | 5517 | */ |
Albert Lee | c234fb0 | 2006-03-25 17:58:38 +0800 | [diff] [blame] | 5518 | WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc)); |
Albert Lee | 1c84898 | 2005-12-05 15:40:15 +0800 | [diff] [blame] | 5519 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5520 | fsm_start: |
Albert Lee | 999bb6f | 2006-03-25 18:07:48 +0800 | [diff] [blame] | 5521 | DPRINTK("ata%u: protocol %d task_state %d (dev_stat 0x%X)\n", |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 5522 | ap->print_id, qc->tf.protocol, ap->hsm_task_state, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5523 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5524 | switch (ap->hsm_task_state) { |
| 5525 | case HSM_ST_FIRST: |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5526 | /* Send first data block or PACKET CDB */ |
| 5527 | |
| 5528 | /* If polling, we will stay in the work queue after |
| 5529 | * sending the data. Otherwise, interrupt handler |
| 5530 | * takes over after sending the data. |
| 5531 | */ |
| 5532 | poll_next = (qc->tf.flags & ATA_TFLAG_POLLING); |
| 5533 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5534 | /* check device status */ |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 5535 | if (unlikely((status & ATA_DRQ) == 0)) { |
| 5536 | /* handle BSY=0, DRQ=0 as error */ |
| 5537 | if (likely(status & (ATA_ERR | ATA_DF))) |
| 5538 | /* device stops HSM for abort/error */ |
| 5539 | qc->err_mask |= AC_ERR_DEV; |
| 5540 | else |
| 5541 | /* HSM violation. Let EH handle this */ |
| 5542 | qc->err_mask |= AC_ERR_HSM; |
| 5543 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5544 | ap->hsm_task_state = HSM_ST_ERR; |
| 5545 | goto fsm_start; |
| 5546 | } |
| 5547 | |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5548 | /* Device should not ask for data transfer (DRQ=1) |
| 5549 | * when it finds something wrong. |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 5550 | * We ignore DRQ here and stop the HSM by |
| 5551 | * changing hsm_task_state to HSM_ST_ERR and |
| 5552 | * let the EH abort the command or reset the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5553 | */ |
| 5554 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
Albert Lee | 2d3b8ee | 2007-11-15 10:35:46 +0900 | [diff] [blame] | 5555 | /* Some ATAPI tape drives forget to clear the ERR bit |
| 5556 | * when doing the next command (mostly request sense). |
| 5557 | * We ignore ERR here to workaround and proceed sending |
| 5558 | * the CDB. |
| 5559 | */ |
| 5560 | if (!(qc->dev->horkage & ATA_HORKAGE_STUCK_ERR)) { |
| 5561 | ata_port_printk(ap, KERN_WARNING, |
| 5562 | "DRQ=1 with device error, " |
| 5563 | "dev_stat 0x%X\n", status); |
| 5564 | qc->err_mask |= AC_ERR_HSM; |
| 5565 | ap->hsm_task_state = HSM_ST_ERR; |
| 5566 | goto fsm_start; |
| 5567 | } |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5568 | } |
| 5569 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5570 | /* Send the CDB (atapi) or the first data block (ata pio out). |
| 5571 | * During the state transition, interrupt handler shouldn't |
| 5572 | * be invoked before the data transfer is complete and |
| 5573 | * hsm_task_state is changed. Hence, the following locking. |
| 5574 | */ |
| 5575 | if (in_wq) |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5576 | spin_lock_irqsave(ap->lock, flags); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5577 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5578 | if (qc->tf.protocol == ATA_PROT_PIO) { |
| 5579 | /* PIO data out protocol. |
| 5580 | * send first data block. |
| 5581 | */ |
| 5582 | |
| 5583 | /* ata_pio_sectors() might change the state |
| 5584 | * to HSM_ST_LAST. so, the state is changed here |
| 5585 | * before ata_pio_sectors(). |
| 5586 | */ |
| 5587 | ap->hsm_task_state = HSM_ST; |
| 5588 | ata_pio_sectors(qc); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5589 | } else |
| 5590 | /* send CDB */ |
| 5591 | atapi_send_cdb(ap, qc); |
| 5592 | |
| 5593 | if (in_wq) |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5594 | spin_unlock_irqrestore(ap->lock, flags); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5595 | |
| 5596 | /* if polling, ata_pio_task() handles the rest. |
| 5597 | * otherwise, interrupt handler takes over from here. |
| 5598 | */ |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5599 | break; |
| 5600 | |
| 5601 | case HSM_ST: |
| 5602 | /* complete command or read/write the data register */ |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 5603 | if (qc->tf.protocol == ATAPI_PROT_PIO) { |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5604 | /* ATAPI PIO protocol */ |
| 5605 | if ((status & ATA_DRQ) == 0) { |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 5606 | /* No more data to transfer or device error. |
| 5607 | * Device error will be tagged in HSM_ST_LAST. |
| 5608 | */ |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5609 | ap->hsm_task_state = HSM_ST_LAST; |
| 5610 | goto fsm_start; |
| 5611 | } |
| 5612 | |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5613 | /* Device should not ask for data transfer (DRQ=1) |
| 5614 | * when it finds something wrong. |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 5615 | * We ignore DRQ here and stop the HSM by |
| 5616 | * changing hsm_task_state to HSM_ST_ERR and |
| 5617 | * let the EH abort the command or reset the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5618 | */ |
| 5619 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 5620 | ata_port_printk(ap, KERN_WARNING, "DRQ=1 with " |
| 5621 | "device error, dev_stat 0x%X\n", |
| 5622 | status); |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 5623 | qc->err_mask |= AC_ERR_HSM; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 5624 | ap->hsm_task_state = HSM_ST_ERR; |
| 5625 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5626 | } |
| 5627 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5628 | atapi_pio_bytes(qc); |
| 5629 | |
| 5630 | if (unlikely(ap->hsm_task_state == HSM_ST_ERR)) |
| 5631 | /* bad ireason reported by device */ |
| 5632 | goto fsm_start; |
| 5633 | |
| 5634 | } else { |
| 5635 | /* ATA PIO protocol */ |
| 5636 | if (unlikely((status & ATA_DRQ) == 0)) { |
| 5637 | /* handle BSY=0, DRQ=0 as error */ |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 5638 | if (likely(status & (ATA_ERR | ATA_DF))) |
| 5639 | /* device stops HSM for abort/error */ |
| 5640 | qc->err_mask |= AC_ERR_DEV; |
| 5641 | else |
Tejun Heo | 55a8e2c | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 5642 | /* HSM violation. Let EH handle this. |
| 5643 | * Phantom devices also trigger this |
| 5644 | * condition. Mark hint. |
| 5645 | */ |
| 5646 | qc->err_mask |= AC_ERR_HSM | |
| 5647 | AC_ERR_NODEV_HINT; |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 5648 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5649 | ap->hsm_task_state = HSM_ST_ERR; |
| 5650 | goto fsm_start; |
| 5651 | } |
| 5652 | |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 5653 | /* For PIO reads, some devices may ask for |
| 5654 | * data transfer (DRQ=1) alone with ERR=1. |
| 5655 | * We respect DRQ here and transfer one |
| 5656 | * block of junk data before changing the |
| 5657 | * hsm_task_state to HSM_ST_ERR. |
| 5658 | * |
| 5659 | * For PIO writes, ERR=1 DRQ=1 doesn't make |
| 5660 | * sense since the data block has been |
| 5661 | * transferred to the device. |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5662 | */ |
| 5663 | if (unlikely(status & (ATA_ERR | ATA_DF))) { |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5664 | /* data might be corrputed */ |
| 5665 | qc->err_mask |= AC_ERR_DEV; |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 5666 | |
| 5667 | if (!(qc->tf.flags & ATA_TFLAG_WRITE)) { |
| 5668 | ata_pio_sectors(qc); |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 5669 | status = ata_wait_idle(ap); |
| 5670 | } |
| 5671 | |
Albert Lee | 3655d1d | 2006-05-19 11:43:04 +0800 | [diff] [blame] | 5672 | if (status & (ATA_BUSY | ATA_DRQ)) |
| 5673 | qc->err_mask |= AC_ERR_HSM; |
| 5674 | |
Albert Lee | eee6c32 | 2006-04-01 17:38:43 +0800 | [diff] [blame] | 5675 | /* ata_pio_sectors() might change the |
| 5676 | * state to HSM_ST_LAST. so, the state |
| 5677 | * is changed after ata_pio_sectors(). |
| 5678 | */ |
| 5679 | ap->hsm_task_state = HSM_ST_ERR; |
| 5680 | goto fsm_start; |
Albert Lee | 7160195 | 2006-03-25 18:11:12 +0800 | [diff] [blame] | 5681 | } |
| 5682 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5683 | ata_pio_sectors(qc); |
| 5684 | |
| 5685 | if (ap->hsm_task_state == HSM_ST_LAST && |
| 5686 | (!(qc->tf.flags & ATA_TFLAG_WRITE))) { |
| 5687 | /* all data read */ |
Albert Lee | 52a3220 | 2006-03-25 18:18:15 +0800 | [diff] [blame] | 5688 | status = ata_wait_idle(ap); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5689 | goto fsm_start; |
| 5690 | } |
| 5691 | } |
| 5692 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5693 | poll_next = 1; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5694 | break; |
| 5695 | |
| 5696 | case HSM_ST_LAST: |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 5697 | if (unlikely(!ata_ok(status))) { |
| 5698 | qc->err_mask |= __ac_err_mask(status); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5699 | ap->hsm_task_state = HSM_ST_ERR; |
| 5700 | goto fsm_start; |
| 5701 | } |
| 5702 | |
| 5703 | /* no more data to transfer */ |
Albert Lee | 4332a77 | 2006-04-03 17:43:24 +0800 | [diff] [blame] | 5704 | DPRINTK("ata%u: dev %u command complete, drv_stat 0x%x\n", |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 5705 | ap->print_id, qc->dev->devno, status); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5706 | |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 5707 | WARN_ON(qc->err_mask); |
| 5708 | |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5709 | ap->hsm_task_state = HSM_ST_IDLE; |
| 5710 | |
| 5711 | /* complete taskfile transaction */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5712 | ata_hsm_qc_complete(qc, in_wq); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5713 | |
| 5714 | poll_next = 0; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5715 | break; |
| 5716 | |
| 5717 | case HSM_ST_ERR: |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5718 | /* make sure qc->err_mask is available to |
| 5719 | * know what's wrong and recover |
| 5720 | */ |
| 5721 | WARN_ON(qc->err_mask == 0); |
| 5722 | |
| 5723 | ap->hsm_task_state = HSM_ST_IDLE; |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5724 | |
Albert Lee | 999bb6f | 2006-03-25 18:07:48 +0800 | [diff] [blame] | 5725 | /* complete taskfile transaction */ |
Tejun Heo | c17ea20 | 2006-05-15 20:59:29 +0900 | [diff] [blame] | 5726 | ata_hsm_qc_complete(qc, in_wq); |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5727 | |
| 5728 | poll_next = 0; |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5729 | break; |
| 5730 | default: |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5731 | poll_next = 0; |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 5732 | BUG(); |
Albert Lee | e2cec77 | 2006-03-25 17:43:49 +0800 | [diff] [blame] | 5733 | } |
| 5734 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 5735 | return poll_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5736 | } |
| 5737 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 5738 | static void ata_pio_task(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5739 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 5740 | struct ata_port *ap = |
| 5741 | container_of(work, struct ata_port, port_task.work); |
| 5742 | struct ata_queued_cmd *qc = ap->port_task_data; |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 5743 | u8 status; |
| 5744 | int poll_next; |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 5745 | |
| 5746 | fsm_start: |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 5747 | WARN_ON(ap->hsm_task_state == HSM_ST_IDLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5748 | |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 5749 | /* |
| 5750 | * This is purely heuristic. This is a fast path. |
| 5751 | * Sometimes when we enter, BSY will be cleared in |
| 5752 | * a chk-status or two. If not, the drive is probably seeking |
| 5753 | * or something. Snooze for a couple msecs, then |
| 5754 | * chk-status again. If still busy, queue delayed work. |
| 5755 | */ |
| 5756 | status = ata_busy_wait(ap, ATA_BUSY, 5); |
| 5757 | if (status & ATA_BUSY) { |
| 5758 | msleep(2); |
| 5759 | status = ata_busy_wait(ap, ATA_BUSY, 10); |
| 5760 | if (status & ATA_BUSY) { |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 5761 | ata_pio_queue_task(ap, qc, ATA_SHORT_PAUSE); |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 5762 | return; |
| 5763 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5764 | } |
| 5765 | |
Albert Lee | a1af373 | 2006-03-25 17:50:15 +0800 | [diff] [blame] | 5766 | /* move the HSM */ |
| 5767 | poll_next = ata_hsm_move(ap, qc, status, 1); |
| 5768 | |
| 5769 | /* another command or interrupt handler |
| 5770 | * may be running at this point. |
| 5771 | */ |
| 5772 | if (poll_next) |
Jeff Garzik | 7fb6ec2 | 2005-09-16 06:01:48 -0400 | [diff] [blame] | 5773 | goto fsm_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5774 | } |
| 5775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5776 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5777 | * ata_qc_new - Request an available ATA command, for queueing |
| 5778 | * @ap: Port associated with device @dev |
| 5779 | * @dev: Device from whom we request an available command structure |
| 5780 | * |
| 5781 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5782 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5783 | */ |
| 5784 | |
| 5785 | static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap) |
| 5786 | { |
| 5787 | struct ata_queued_cmd *qc = NULL; |
| 5788 | unsigned int i; |
| 5789 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 5790 | /* no command while frozen */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 5791 | if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 5792 | return NULL; |
| 5793 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 5794 | /* the last tag is reserved for internal command. */ |
| 5795 | for (i = 0; i < ATA_MAX_QUEUE - 1; i++) |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 5796 | if (!test_and_set_bit(i, &ap->qc_allocated)) { |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 5797 | qc = __ata_qc_from_tag(ap, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5798 | break; |
| 5799 | } |
| 5800 | |
| 5801 | if (qc) |
| 5802 | qc->tag = i; |
| 5803 | |
| 5804 | return qc; |
| 5805 | } |
| 5806 | |
| 5807 | /** |
| 5808 | * ata_qc_new_init - Request an available ATA command, and initialize it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5809 | * @dev: Device from whom we request an available command structure |
| 5810 | * |
| 5811 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5812 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5813 | */ |
| 5814 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 5815 | struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5816 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5817 | struct ata_port *ap = dev->link->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5818 | struct ata_queued_cmd *qc; |
| 5819 | |
| 5820 | qc = ata_qc_new(ap); |
| 5821 | if (qc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5822 | qc->scsicmd = NULL; |
| 5823 | qc->ap = ap; |
| 5824 | qc->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5825 | |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 5826 | ata_qc_reinit(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5827 | } |
| 5828 | |
| 5829 | return qc; |
| 5830 | } |
| 5831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5832 | /** |
| 5833 | * ata_qc_free - free unused ata_queued_cmd |
| 5834 | * @qc: Command to complete |
| 5835 | * |
| 5836 | * Designed to free unused ata_queued_cmd object |
| 5837 | * in case something prevents using it. |
| 5838 | * |
| 5839 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5840 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5841 | */ |
| 5842 | void ata_qc_free(struct ata_queued_cmd *qc) |
| 5843 | { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 5844 | struct ata_port *ap = qc->ap; |
| 5845 | unsigned int tag; |
| 5846 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 5847 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5848 | |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 5849 | qc->flags = 0; |
| 5850 | tag = qc->tag; |
| 5851 | if (likely(ata_tag_valid(tag))) { |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 5852 | qc->tag = ATA_TAG_POISON; |
Tejun Heo | 6cec4a3 | 2006-05-15 21:03:41 +0900 | [diff] [blame] | 5853 | clear_bit(tag, &ap->qc_allocated); |
Tejun Heo | 4ba946e | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 5854 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5855 | } |
| 5856 | |
Tejun Heo | 7601442 | 2006-02-11 15:13:49 +0900 | [diff] [blame] | 5857 | void __ata_qc_complete(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5858 | { |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5859 | struct ata_port *ap = qc->ap; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5860 | struct ata_link *link = qc->dev->link; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5861 | |
Tejun Heo | a4631474 | 2006-02-11 19:11:13 +0900 | [diff] [blame] | 5862 | WARN_ON(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
| 5863 | WARN_ON(!(qc->flags & ATA_QCFLAG_ACTIVE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5864 | |
| 5865 | if (likely(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 5866 | ata_sg_clean(qc); |
| 5867 | |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 5868 | /* command should be marked inactive atomically with qc completion */ |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5869 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5870 | link->sactive &= ~(1 << qc->tag); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5871 | if (!link->sactive) |
| 5872 | ap->nr_active_links--; |
| 5873 | } else { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5874 | link->active_tag = ATA_TAG_POISON; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5875 | ap->nr_active_links--; |
| 5876 | } |
| 5877 | |
| 5878 | /* clear exclusive status */ |
| 5879 | if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL && |
| 5880 | ap->excl_link == link)) |
| 5881 | ap->excl_link = NULL; |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 5882 | |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 5883 | /* atapi: mark qc as inactive to prevent the interrupt handler |
| 5884 | * from completing the command twice later, before the error handler |
| 5885 | * is called. (when rc != 0 and atapi request sense is needed) |
| 5886 | */ |
| 5887 | qc->flags &= ~ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5888 | ap->qc_active &= ~(1 << qc->tag); |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 5889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5890 | /* call completion callback */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 5891 | qc->complete_fn(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5892 | } |
| 5893 | |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 5894 | static void fill_result_tf(struct ata_queued_cmd *qc) |
| 5895 | { |
| 5896 | struct ata_port *ap = qc->ap; |
| 5897 | |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 5898 | qc->result_tf.flags = qc->tf.flags; |
Mark Lord | 4742d54 | 2007-04-02 16:20:35 -0400 | [diff] [blame] | 5899 | ap->ops->tf_read(ap, &qc->result_tf); |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 5900 | } |
| 5901 | |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 5902 | static void ata_verify_xfer(struct ata_queued_cmd *qc) |
| 5903 | { |
| 5904 | struct ata_device *dev = qc->dev; |
| 5905 | |
| 5906 | if (ata_tag_internal(qc->tag)) |
| 5907 | return; |
| 5908 | |
| 5909 | if (ata_is_nodata(qc->tf.protocol)) |
| 5910 | return; |
| 5911 | |
| 5912 | if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol)) |
| 5913 | return; |
| 5914 | |
| 5915 | dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER; |
| 5916 | } |
| 5917 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5918 | /** |
| 5919 | * ata_qc_complete - Complete an active ATA command |
| 5920 | * @qc: Command to complete |
| 5921 | * @err_mask: ATA Status register contents |
| 5922 | * |
| 5923 | * Indicate to the mid and upper layers that an ATA |
| 5924 | * command has completed, with either an ok or not-ok status. |
| 5925 | * |
| 5926 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5927 | * spin_lock_irqsave(host lock) |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5928 | */ |
| 5929 | void ata_qc_complete(struct ata_queued_cmd *qc) |
| 5930 | { |
| 5931 | struct ata_port *ap = qc->ap; |
| 5932 | |
| 5933 | /* XXX: New EH and old EH use different mechanisms to |
| 5934 | * synchronize EH with regular execution path. |
| 5935 | * |
| 5936 | * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED. |
| 5937 | * Normal execution path is responsible for not accessing a |
| 5938 | * failed qc. libata core enforces the rule by returning NULL |
| 5939 | * from ata_qc_from_tag() for failed qcs. |
| 5940 | * |
| 5941 | * Old EH depends on ata_qc_complete() nullifying completion |
| 5942 | * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does |
| 5943 | * not synchronize with interrupt handler. Only PIO task is |
| 5944 | * taken care of. |
| 5945 | */ |
| 5946 | if (ap->ops->error_handler) { |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 5947 | struct ata_device *dev = qc->dev; |
| 5948 | struct ata_eh_info *ehi = &dev->link->eh_info; |
| 5949 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 5950 | WARN_ON(ap->pflags & ATA_PFLAG_FROZEN); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5951 | |
| 5952 | if (unlikely(qc->err_mask)) |
| 5953 | qc->flags |= ATA_QCFLAG_FAILED; |
| 5954 | |
| 5955 | if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) { |
| 5956 | if (!ata_tag_internal(qc->tag)) { |
| 5957 | /* always fill result TF for failed qc */ |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 5958 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5959 | ata_qc_schedule_eh(qc); |
| 5960 | return; |
| 5961 | } |
| 5962 | } |
| 5963 | |
| 5964 | /* read result TF if requested */ |
| 5965 | if (qc->flags & ATA_QCFLAG_RESULT_TF) |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 5966 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5967 | |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 5968 | /* Some commands need post-processing after successful |
| 5969 | * completion. |
| 5970 | */ |
| 5971 | switch (qc->tf.command) { |
| 5972 | case ATA_CMD_SET_FEATURES: |
| 5973 | if (qc->tf.feature != SETFEATURES_WC_ON && |
| 5974 | qc->tf.feature != SETFEATURES_WC_OFF) |
| 5975 | break; |
| 5976 | /* fall through */ |
| 5977 | case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */ |
| 5978 | case ATA_CMD_SET_MULTI: /* multi_count changed */ |
| 5979 | /* revalidate device */ |
| 5980 | ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE; |
| 5981 | ata_port_schedule_eh(ap); |
| 5982 | break; |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 5983 | |
| 5984 | case ATA_CMD_SLEEP: |
| 5985 | dev->flags |= ATA_DFLAG_SLEEPING; |
| 5986 | break; |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 5987 | } |
| 5988 | |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 5989 | if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER)) |
| 5990 | ata_verify_xfer(qc); |
| 5991 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 5992 | __ata_qc_complete(qc); |
| 5993 | } else { |
| 5994 | if (qc->flags & ATA_QCFLAG_EH_SCHEDULED) |
| 5995 | return; |
| 5996 | |
| 5997 | /* read result TF if failed or requested */ |
| 5998 | if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF) |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 5999 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 6000 | |
| 6001 | __ata_qc_complete(qc); |
| 6002 | } |
| 6003 | } |
| 6004 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6005 | /** |
| 6006 | * ata_qc_complete_multiple - Complete multiple qcs successfully |
| 6007 | * @ap: port in question |
| 6008 | * @qc_active: new qc_active mask |
| 6009 | * @finish_qc: LLDD callback invoked before completing a qc |
| 6010 | * |
| 6011 | * Complete in-flight commands. This functions is meant to be |
| 6012 | * called from low-level driver's interrupt routine to complete |
| 6013 | * requests normally. ap->qc_active and @qc_active is compared |
| 6014 | * and commands are completed accordingly. |
| 6015 | * |
| 6016 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6017 | * spin_lock_irqsave(host lock) |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6018 | * |
| 6019 | * RETURNS: |
| 6020 | * Number of completed commands on success, -errno otherwise. |
| 6021 | */ |
| 6022 | int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active, |
| 6023 | void (*finish_qc)(struct ata_queued_cmd *)) |
| 6024 | { |
| 6025 | int nr_done = 0; |
| 6026 | u32 done_mask; |
| 6027 | int i; |
| 6028 | |
| 6029 | done_mask = ap->qc_active ^ qc_active; |
| 6030 | |
| 6031 | if (unlikely(done_mask & qc_active)) { |
| 6032 | ata_port_printk(ap, KERN_ERR, "illegal qc_active transition " |
| 6033 | "(%08x->%08x)\n", ap->qc_active, qc_active); |
| 6034 | return -EINVAL; |
| 6035 | } |
| 6036 | |
| 6037 | for (i = 0; i < ATA_MAX_QUEUE; i++) { |
| 6038 | struct ata_queued_cmd *qc; |
| 6039 | |
| 6040 | if (!(done_mask & (1 << i))) |
| 6041 | continue; |
| 6042 | |
| 6043 | if ((qc = ata_qc_from_tag(ap, i))) { |
| 6044 | if (finish_qc) |
| 6045 | finish_qc(qc); |
| 6046 | ata_qc_complete(qc); |
| 6047 | nr_done++; |
| 6048 | } |
| 6049 | } |
| 6050 | |
| 6051 | return nr_done; |
| 6052 | } |
| 6053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6054 | /** |
| 6055 | * ata_qc_issue - issue taskfile to device |
| 6056 | * @qc: command to issue to device |
| 6057 | * |
| 6058 | * Prepare an ATA command to submission to device. |
| 6059 | * This includes mapping the data into a DMA-able |
| 6060 | * area, filling in the S/G table, and finally |
| 6061 | * writing the taskfile to hardware, starting the command. |
| 6062 | * |
| 6063 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6064 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6065 | */ |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 6066 | void ata_qc_issue(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6067 | { |
| 6068 | struct ata_port *ap = qc->ap; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6069 | struct ata_link *link = qc->dev->link; |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 6070 | u8 prot = qc->tf.protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6071 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6072 | /* Make sure only one non-NCQ command is outstanding. The |
| 6073 | * check is skipped for old EH because it reuses active qc to |
| 6074 | * request ATAPI sense. |
| 6075 | */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6076 | WARN_ON(ap->ops->error_handler && ata_tag_valid(link->active_tag)); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6077 | |
Tejun Heo | 1973a02 | 2007-12-05 10:36:13 +0900 | [diff] [blame] | 6078 | if (ata_is_ncq(prot)) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6079 | WARN_ON(link->sactive & (1 << qc->tag)); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 6080 | |
| 6081 | if (!link->sactive) |
| 6082 | ap->nr_active_links++; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6083 | link->sactive |= 1 << qc->tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6084 | } else { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6085 | WARN_ON(link->sactive); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 6086 | |
| 6087 | ap->nr_active_links++; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6088 | link->active_tag = qc->tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6089 | } |
| 6090 | |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 6091 | qc->flags |= ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6092 | ap->qc_active |= 1 << qc->tag; |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 6093 | |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 6094 | /* We guarantee to LLDs that they will have at least one |
| 6095 | * non-zero sg if the command is a data command. |
| 6096 | */ |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 6097 | 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] | 6098 | |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 6099 | if (ata_is_dma(prot) || (ata_is_pio(prot) && |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 6100 | (ap->flags & ATA_FLAG_PIO_DMA))) |
Tejun Heo | 001102d | 2007-12-05 16:43:09 +0900 | [diff] [blame] | 6101 | if (ata_sg_setup(qc)) |
| 6102 | goto sg_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6103 | |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 6104 | /* if device is sleeping, schedule reset and abort the link */ |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 6105 | if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 6106 | link->eh_info.action |= ATA_EH_RESET; |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 6107 | ata_ehi_push_desc(&link->eh_info, "waking up from sleep"); |
| 6108 | ata_link_abort(link); |
| 6109 | return; |
| 6110 | } |
| 6111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6112 | ap->ops->qc_prep(qc); |
| 6113 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 6114 | qc->err_mask |= ap->ops->qc_issue(qc); |
| 6115 | if (unlikely(qc->err_mask)) |
| 6116 | goto err; |
| 6117 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6118 | |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 6119 | sg_err: |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 6120 | qc->err_mask |= AC_ERR_SYSTEM; |
| 6121 | err: |
| 6122 | ata_qc_complete(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6123 | } |
| 6124 | |
| 6125 | /** |
| 6126 | * ata_qc_issue_prot - issue taskfile to device in proto-dependent manner |
| 6127 | * @qc: command to issue to device |
| 6128 | * |
| 6129 | * Using various libata functions and hooks, this function |
| 6130 | * starts an ATA command. ATA commands are grouped into |
| 6131 | * classes called "protocols", and issuing each type of protocol |
| 6132 | * is slightly different. |
| 6133 | * |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 6134 | * May be used as the qc_issue() entry in ata_port_operations. |
| 6135 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6136 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6137 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6138 | * |
| 6139 | * RETURNS: |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 6140 | * Zero on success, AC_ERR_* mask on failure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6141 | */ |
| 6142 | |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 6143 | unsigned int ata_qc_issue_prot(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6144 | { |
| 6145 | struct ata_port *ap = qc->ap; |
| 6146 | |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 6147 | /* Use polling pio if the LLD doesn't handle |
| 6148 | * interrupt driven pio and atapi CDB interrupt. |
| 6149 | */ |
| 6150 | if (ap->flags & ATA_FLAG_PIO_POLLING) { |
| 6151 | switch (qc->tf.protocol) { |
| 6152 | case ATA_PROT_PIO: |
Albert Lee | e3472cb | 2006-12-07 11:37:58 +0800 | [diff] [blame] | 6153 | case ATA_PROT_NODATA: |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 6154 | case ATAPI_PROT_PIO: |
| 6155 | case ATAPI_PROT_NODATA: |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 6156 | qc->tf.flags |= ATA_TFLAG_POLLING; |
| 6157 | break; |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 6158 | case ATAPI_PROT_DMA: |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 6159 | if (qc->dev->flags & ATA_DFLAG_CDB_INTR) |
Albert Lee | 3a77827 | 2006-06-22 13:00:25 +0800 | [diff] [blame] | 6160 | /* see ata_dma_blacklisted() */ |
Albert Lee | e50362e | 2005-09-27 17:39:50 +0800 | [diff] [blame] | 6161 | BUG(); |
| 6162 | break; |
| 6163 | default: |
| 6164 | break; |
| 6165 | } |
| 6166 | } |
| 6167 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6168 | /* select the device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6169 | ata_dev_select(ap, qc->dev->devno, 1, 0); |
| 6170 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6171 | /* start the command */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6172 | switch (qc->tf.protocol) { |
| 6173 | case ATA_PROT_NODATA: |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6174 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 6175 | ata_qc_set_polling(qc); |
| 6176 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 6177 | ata_tf_to_host(ap, &qc->tf); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6178 | ap->hsm_task_state = HSM_ST_LAST; |
| 6179 | |
| 6180 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 6181 | ata_pio_queue_task(ap, qc, 0); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6183 | break; |
| 6184 | |
| 6185 | case ATA_PROT_DMA: |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 6186 | WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6188 | ap->ops->tf_load(ap, &qc->tf); /* load tf registers */ |
| 6189 | ap->ops->bmdma_setup(qc); /* set up bmdma */ |
| 6190 | ap->ops->bmdma_start(qc); /* initiate bmdma */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6191 | ap->hsm_task_state = HSM_ST_LAST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6192 | break; |
| 6193 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6194 | case ATA_PROT_PIO: |
| 6195 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 6196 | ata_qc_set_polling(qc); |
| 6197 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 6198 | ata_tf_to_host(ap, &qc->tf); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6199 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 6200 | if (qc->tf.flags & ATA_TFLAG_WRITE) { |
| 6201 | /* PIO data out protocol */ |
| 6202 | ap->hsm_task_state = HSM_ST_FIRST; |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 6203 | ata_pio_queue_task(ap, qc, 0); |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 6204 | |
| 6205 | /* always send first data block using |
Albert Lee | e27486d | 2005-11-01 19:24:49 +0800 | [diff] [blame] | 6206 | * the ata_pio_task() codepath. |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 6207 | */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6208 | } else { |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 6209 | /* PIO data in protocol */ |
| 6210 | ap->hsm_task_state = HSM_ST; |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6211 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 6212 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 6213 | ata_pio_queue_task(ap, qc, 0); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6214 | |
Albert Lee | 54f0038 | 2005-09-30 19:14:19 +0800 | [diff] [blame] | 6215 | /* if polling, ata_pio_task() handles the rest. |
| 6216 | * otherwise, interrupt handler takes over from here. |
| 6217 | */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6218 | } |
| 6219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6220 | break; |
| 6221 | |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 6222 | case ATAPI_PROT_PIO: |
| 6223 | case ATAPI_PROT_NODATA: |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6224 | if (qc->tf.flags & ATA_TFLAG_POLLING) |
| 6225 | ata_qc_set_polling(qc); |
| 6226 | |
Jeff Garzik | e533825 | 2005-10-30 21:37:17 -0500 | [diff] [blame] | 6227 | ata_tf_to_host(ap, &qc->tf); |
Jeff Garzik | f6ef65e | 2006-01-27 02:45:00 -0500 | [diff] [blame] | 6228 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6229 | ap->hsm_task_state = HSM_ST_FIRST; |
| 6230 | |
| 6231 | /* send cdb by polling if no cdb interrupt */ |
| 6232 | if ((!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) || |
| 6233 | (qc->tf.flags & ATA_TFLAG_POLLING)) |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 6234 | ata_pio_queue_task(ap, qc, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6235 | break; |
| 6236 | |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 6237 | case ATAPI_PROT_DMA: |
Jeff Garzik | 587005d | 2006-02-11 18:17:32 -0500 | [diff] [blame] | 6238 | WARN_ON(qc->tf.flags & ATA_TFLAG_POLLING); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6240 | ap->ops->tf_load(ap, &qc->tf); /* load tf registers */ |
| 6241 | ap->ops->bmdma_setup(qc); /* set up bmdma */ |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6242 | ap->hsm_task_state = HSM_ST_FIRST; |
| 6243 | |
| 6244 | /* send cdb by polling if no cdb interrupt */ |
| 6245 | if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 6246 | ata_pio_queue_task(ap, qc, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6247 | break; |
| 6248 | |
| 6249 | default: |
| 6250 | WARN_ON(1); |
Tejun Heo | 9a3d9eb | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 6251 | return AC_ERR_SYSTEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6252 | } |
| 6253 | |
| 6254 | return 0; |
| 6255 | } |
| 6256 | |
| 6257 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6258 | * ata_host_intr - Handle host interrupt for given (port, task) |
| 6259 | * @ap: Port on which interrupt arrived (possibly...) |
| 6260 | * @qc: Taskfile currently active in engine |
| 6261 | * |
| 6262 | * Handle host interrupt for given queued command. Currently, |
| 6263 | * only DMA interrupts are handled. All other commands are |
| 6264 | * handled via polling with interrupts disabled (nIEN bit). |
| 6265 | * |
| 6266 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6267 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6268 | * |
| 6269 | * RETURNS: |
| 6270 | * One if interrupt was handled, zero if not (shared irq). |
| 6271 | */ |
| 6272 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 6273 | inline unsigned int ata_host_intr(struct ata_port *ap, |
| 6274 | struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6275 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6276 | struct ata_eh_info *ehi = &ap->link.eh_info; |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6277 | u8 status, host_stat = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6278 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6279 | VPRINTK("ata%u: protocol %d task_state %d\n", |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 6280 | ap->print_id, qc->tf.protocol, ap->hsm_task_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6281 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6282 | /* Check whether we are expecting interrupt in this state */ |
| 6283 | switch (ap->hsm_task_state) { |
| 6284 | case HSM_ST_FIRST: |
Albert Lee | 6912ccd | 2006-03-25 17:45:49 +0800 | [diff] [blame] | 6285 | /* Some pre-ATAPI-4 devices assert INTRQ |
| 6286 | * at this state when ready to receive CDB. |
| 6287 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6288 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6289 | /* Check the ATA_DFLAG_CDB_INTR flag is enough here. |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 6290 | * The flag was turned on only for atapi devices. No |
| 6291 | * need to check ata_is_atapi(qc->tf.protocol) again. |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6292 | */ |
| 6293 | if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6294 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6295 | break; |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6296 | case HSM_ST_LAST: |
| 6297 | if (qc->tf.protocol == ATA_PROT_DMA || |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 6298 | qc->tf.protocol == ATAPI_PROT_DMA) { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6299 | /* check status of DMA engine */ |
| 6300 | host_stat = ap->ops->bmdma_status(ap); |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 6301 | VPRINTK("ata%u: host_stat 0x%X\n", |
| 6302 | ap->print_id, host_stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6303 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6304 | /* if it's not our irq... */ |
| 6305 | if (!(host_stat & ATA_DMA_INTR)) |
| 6306 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6307 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6308 | /* before we do anything else, clear DMA-Start bit */ |
| 6309 | ap->ops->bmdma_stop(qc); |
Albert Lee | a4f1661 | 2005-12-26 16:40:53 +0800 | [diff] [blame] | 6310 | |
| 6311 | if (unlikely(host_stat & ATA_DMA_ERR)) { |
| 6312 | /* error when transfering data to/from memory */ |
| 6313 | qc->err_mask |= AC_ERR_HOST_BUS; |
| 6314 | ap->hsm_task_state = HSM_ST_ERR; |
| 6315 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6316 | } |
| 6317 | break; |
| 6318 | case HSM_ST: |
| 6319 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6320 | default: |
| 6321 | goto idle_irq; |
| 6322 | } |
| 6323 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6324 | /* check altstatus */ |
| 6325 | status = ata_altstatus(ap); |
| 6326 | if (status & ATA_BUSY) |
| 6327 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6328 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6329 | /* check main status, clearing INTRQ */ |
| 6330 | status = ata_chk_status(ap); |
| 6331 | if (unlikely(status & ATA_BUSY)) |
| 6332 | goto idle_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6333 | |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6334 | /* ack bmdma irq events */ |
| 6335 | ap->ops->irq_clear(ap); |
| 6336 | |
Albert Lee | bb5cb29 | 2006-03-25 17:48:02 +0800 | [diff] [blame] | 6337 | ata_hsm_move(ap, qc, status, 0); |
Tejun Heo | ea54763 | 2006-11-17 12:06:21 +0900 | [diff] [blame] | 6338 | |
| 6339 | if (unlikely(qc->err_mask) && (qc->tf.protocol == ATA_PROT_DMA || |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 6340 | qc->tf.protocol == ATAPI_PROT_DMA)) |
Tejun Heo | ea54763 | 2006-11-17 12:06:21 +0900 | [diff] [blame] | 6341 | ata_ehi_push_desc(ehi, "BMDMA stat 0x%x", host_stat); |
| 6342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6343 | return 1; /* irq handled */ |
| 6344 | |
| 6345 | idle_irq: |
| 6346 | ap->stats.idle_irq++; |
| 6347 | |
| 6348 | #ifdef ATA_IRQ_TRAP |
| 6349 | if ((ap->stats.idle_irq % 1000) == 0) { |
Jeff Garzik | 6d32d30 | 2007-08-15 05:38:46 -0400 | [diff] [blame] | 6350 | ata_chk_status(ap); |
| 6351 | ap->ops->irq_clear(ap); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 6352 | ata_port_printk(ap, KERN_WARNING, "irq trap\n"); |
Alan Cox | 23cfce8 | 2006-03-21 16:06:53 +0000 | [diff] [blame] | 6353 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6354 | } |
| 6355 | #endif |
| 6356 | return 0; /* irq not handled */ |
| 6357 | } |
| 6358 | |
| 6359 | /** |
| 6360 | * ata_interrupt - Default ATA host interrupt handler |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 6361 | * @irq: irq line (unused) |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6362 | * @dev_instance: pointer to our ata_host information structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6363 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 6364 | * Default interrupt handler for PCI IDE devices. Calls |
| 6365 | * ata_host_intr() for each port that is not disabled. |
| 6366 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6367 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6368 | * Obtains host lock during operation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6369 | * |
| 6370 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 6371 | * IRQ_NONE or IRQ_HANDLED. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6372 | */ |
| 6373 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 6374 | irqreturn_t ata_interrupt(int irq, void *dev_instance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6375 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6376 | struct ata_host *host = dev_instance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6377 | unsigned int i; |
| 6378 | unsigned int handled = 0; |
| 6379 | unsigned long flags; |
| 6380 | |
| 6381 | /* TODO: make _irqsave conditional on x86 PCI IDE legacy mode */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6382 | spin_lock_irqsave(&host->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6383 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6384 | for (i = 0; i < host->n_ports; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6385 | struct ata_port *ap; |
| 6386 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6387 | ap = host->ports[i]; |
Tejun Heo | c138950 | 2005-08-22 14:59:24 +0900 | [diff] [blame] | 6388 | if (ap && |
Jeff Garzik | 029f546 | 2006-04-02 10:30:40 -0400 | [diff] [blame] | 6389 | !(ap->flags & ATA_FLAG_DISABLED)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6390 | struct ata_queued_cmd *qc; |
| 6391 | |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6392 | qc = ata_qc_from_tag(ap, ap->link.active_tag); |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 6393 | if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)) && |
Albert Lee | 21b1ed7 | 2005-04-29 17:34:59 +0800 | [diff] [blame] | 6394 | (qc->flags & ATA_QCFLAG_ACTIVE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6395 | handled |= ata_host_intr(ap, qc); |
| 6396 | } |
| 6397 | } |
| 6398 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6399 | spin_unlock_irqrestore(&host->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6400 | |
| 6401 | return IRQ_RETVAL(handled); |
| 6402 | } |
| 6403 | |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6404 | /** |
| 6405 | * sata_scr_valid - test whether SCRs are accessible |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6406 | * @link: ATA link to test SCR accessibility for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6407 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6408 | * Test whether SCRs are accessible for @link. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6409 | * |
| 6410 | * LOCKING: |
| 6411 | * None. |
| 6412 | * |
| 6413 | * RETURNS: |
| 6414 | * 1 if SCRs are accessible, 0 otherwise. |
| 6415 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6416 | int sata_scr_valid(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6417 | { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6418 | struct ata_port *ap = link->ap; |
| 6419 | |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 6420 | return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6421 | } |
| 6422 | |
| 6423 | /** |
| 6424 | * sata_scr_read - read SCR register of the specified port |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6425 | * @link: ATA link to read SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6426 | * @reg: SCR to read |
| 6427 | * @val: Place to store read value |
| 6428 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6429 | * Read SCR register @reg of @link into *@val. This function is |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6430 | * guaranteed to succeed if @link is ap->link, the cable type of |
| 6431 | * the port is SATA and the port implements ->scr_read. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6432 | * |
| 6433 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6434 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6435 | * |
| 6436 | * RETURNS: |
| 6437 | * 0 on success, negative errno on failure. |
| 6438 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6439 | int sata_scr_read(struct ata_link *link, int reg, u32 *val) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6440 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6441 | if (ata_is_host_link(link)) { |
| 6442 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6443 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6444 | if (sata_scr_valid(link)) |
| 6445 | return ap->ops->scr_read(ap, reg, val); |
| 6446 | return -EOPNOTSUPP; |
| 6447 | } |
| 6448 | |
| 6449 | return sata_pmp_scr_read(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6450 | } |
| 6451 | |
| 6452 | /** |
| 6453 | * sata_scr_write - write SCR register of the specified port |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6454 | * @link: ATA link to write SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6455 | * @reg: SCR to write |
| 6456 | * @val: value to write |
| 6457 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6458 | * Write @val to SCR register @reg of @link. This function is |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6459 | * guaranteed to succeed if @link is ap->link, the cable type of |
| 6460 | * the port is SATA and the port implements ->scr_read. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6461 | * |
| 6462 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6463 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6464 | * |
| 6465 | * RETURNS: |
| 6466 | * 0 on success, negative errno on failure. |
| 6467 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6468 | int sata_scr_write(struct ata_link *link, int reg, u32 val) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6469 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6470 | if (ata_is_host_link(link)) { |
| 6471 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6472 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6473 | if (sata_scr_valid(link)) |
| 6474 | return ap->ops->scr_write(ap, reg, val); |
| 6475 | return -EOPNOTSUPP; |
| 6476 | } |
| 6477 | |
| 6478 | return sata_pmp_scr_write(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6479 | } |
| 6480 | |
| 6481 | /** |
| 6482 | * 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] | 6483 | * @link: ATA link to write SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6484 | * @reg: SCR to write |
| 6485 | * @val: value to write |
| 6486 | * |
| 6487 | * This function is identical to sata_scr_write() except that this |
| 6488 | * function performs flush after writing to the register. |
| 6489 | * |
| 6490 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6491 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6492 | * |
| 6493 | * RETURNS: |
| 6494 | * 0 on success, negative errno on failure. |
| 6495 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6496 | 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] | 6497 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6498 | if (ata_is_host_link(link)) { |
| 6499 | struct ata_port *ap = link->ap; |
| 6500 | int rc; |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 6501 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6502 | if (sata_scr_valid(link)) { |
| 6503 | rc = ap->ops->scr_write(ap, reg, val); |
| 6504 | if (rc == 0) |
| 6505 | rc = ap->ops->scr_read(ap, reg, &val); |
| 6506 | return rc; |
| 6507 | } |
| 6508 | return -EOPNOTSUPP; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6509 | } |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6510 | |
| 6511 | return sata_pmp_scr_write(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6512 | } |
| 6513 | |
| 6514 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6515 | * ata_link_online - test whether the given link is online |
| 6516 | * @link: ATA link to test |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6517 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6518 | * Test whether @link is online. Note that this function returns |
| 6519 | * 0 if online status of @link cannot be obtained, so |
| 6520 | * ata_link_online(link) != !ata_link_offline(link). |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6521 | * |
| 6522 | * LOCKING: |
| 6523 | * None. |
| 6524 | * |
| 6525 | * RETURNS: |
| 6526 | * 1 if the port online status is available and online. |
| 6527 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6528 | int ata_link_online(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6529 | { |
| 6530 | u32 sstatus; |
| 6531 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6532 | if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 && |
| 6533 | (sstatus & 0xf) == 0x3) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6534 | return 1; |
| 6535 | return 0; |
| 6536 | } |
| 6537 | |
| 6538 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6539 | * ata_link_offline - test whether the given link is offline |
| 6540 | * @link: ATA link to test |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6541 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6542 | * Test whether @link is offline. Note that this function |
| 6543 | * returns 0 if offline status of @link cannot be obtained, so |
| 6544 | * ata_link_online(link) != !ata_link_offline(link). |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6545 | * |
| 6546 | * LOCKING: |
| 6547 | * None. |
| 6548 | * |
| 6549 | * RETURNS: |
| 6550 | * 1 if the port offline status is available and offline. |
| 6551 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6552 | int ata_link_offline(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6553 | { |
| 6554 | u32 sstatus; |
| 6555 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6556 | if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 && |
| 6557 | (sstatus & 0xf) != 0x3) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6558 | return 1; |
| 6559 | return 0; |
| 6560 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 6561 | |
Tejun Heo | 77b08fb | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 6562 | int ata_flush_cache(struct ata_device *dev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6563 | { |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 6564 | unsigned int err_mask; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6565 | u8 cmd; |
| 6566 | |
| 6567 | if (!ata_try_flush_cache(dev)) |
| 6568 | return 0; |
| 6569 | |
Tejun Heo | 6fc49ad | 2006-11-11 20:10:45 +0900 | [diff] [blame] | 6570 | if (dev->flags & ATA_DFLAG_FLUSH_EXT) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6571 | cmd = ATA_CMD_FLUSH_EXT; |
| 6572 | else |
| 6573 | cmd = ATA_CMD_FLUSH; |
| 6574 | |
Alan Cox | 4f34337 | 2007-08-08 14:30:31 +0100 | [diff] [blame] | 6575 | /* This is wrong. On a failed flush we get back the LBA of the lost |
| 6576 | sector and we should (assuming it wasn't aborted as unknown) issue |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 6577 | a further flush command to continue the writeback until it |
Alan Cox | 4f34337 | 2007-08-08 14:30:31 +0100 | [diff] [blame] | 6578 | does not error */ |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 6579 | err_mask = ata_do_simple_cmd(dev, cmd); |
| 6580 | if (err_mask) { |
| 6581 | ata_dev_printk(dev, KERN_ERR, "failed to flush cache\n"); |
| 6582 | return -EIO; |
| 6583 | } |
| 6584 | |
| 6585 | return 0; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6586 | } |
| 6587 | |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6588 | #ifdef CONFIG_PM |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6589 | static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg, |
| 6590 | unsigned int action, unsigned int ehi_flags, |
| 6591 | int wait) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6592 | { |
| 6593 | unsigned long flags; |
| 6594 | int i, rc; |
| 6595 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6596 | for (i = 0; i < host->n_ports; i++) { |
| 6597 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | e3667eb | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 6598 | struct ata_link *link; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6599 | |
| 6600 | /* Previous resume operation might still be in |
| 6601 | * progress. Wait for PM_PENDING to clear. |
| 6602 | */ |
| 6603 | if (ap->pflags & ATA_PFLAG_PM_PENDING) { |
| 6604 | ata_port_wait_eh(ap); |
| 6605 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 6606 | } |
| 6607 | |
| 6608 | /* request PM ops to EH */ |
| 6609 | spin_lock_irqsave(ap->lock, flags); |
| 6610 | |
| 6611 | ap->pm_mesg = mesg; |
| 6612 | if (wait) { |
| 6613 | rc = 0; |
| 6614 | ap->pm_result = &rc; |
| 6615 | } |
| 6616 | |
| 6617 | ap->pflags |= ATA_PFLAG_PM_PENDING; |
Tejun Heo | e3667eb | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 6618 | __ata_port_for_each_link(link, ap) { |
| 6619 | link->eh_info.action |= action; |
| 6620 | link->eh_info.flags |= ehi_flags; |
| 6621 | } |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6622 | |
| 6623 | ata_port_schedule_eh(ap); |
| 6624 | |
| 6625 | spin_unlock_irqrestore(ap->lock, flags); |
| 6626 | |
| 6627 | /* wait and check result */ |
| 6628 | if (wait) { |
| 6629 | ata_port_wait_eh(ap); |
| 6630 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 6631 | if (rc) |
| 6632 | return rc; |
| 6633 | } |
| 6634 | } |
| 6635 | |
| 6636 | return 0; |
| 6637 | } |
| 6638 | |
| 6639 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6640 | * ata_host_suspend - suspend host |
| 6641 | * @host: host to suspend |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6642 | * @mesg: PM message |
| 6643 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6644 | * Suspend @host. Actual operation is performed by EH. This |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6645 | * function requests EH to perform PM operations and waits for EH |
| 6646 | * to finish. |
| 6647 | * |
| 6648 | * LOCKING: |
| 6649 | * Kernel thread context (may sleep). |
| 6650 | * |
| 6651 | * RETURNS: |
| 6652 | * 0 on success, -errno on failure. |
| 6653 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6654 | int ata_host_suspend(struct ata_host *host, pm_message_t mesg) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6655 | { |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 6656 | int rc; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6657 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 6658 | /* |
| 6659 | * disable link pm on all ports before requesting |
| 6660 | * any pm activity |
| 6661 | */ |
| 6662 | ata_lpm_enable(host); |
| 6663 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6664 | rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1); |
Jeff Garzik | 72ad6ec | 2008-02-25 17:31:10 -0500 | [diff] [blame] | 6665 | if (rc == 0) |
| 6666 | host->dev->power.power_state = mesg; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6667 | return rc; |
| 6668 | } |
| 6669 | |
| 6670 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6671 | * ata_host_resume - resume host |
| 6672 | * @host: host to resume |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6673 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6674 | * Resume @host. Actual operation is performed by EH. This |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6675 | * function requests EH to perform PM operations and returns. |
| 6676 | * Note that all resume operations are performed parallely. |
| 6677 | * |
| 6678 | * LOCKING: |
| 6679 | * Kernel thread context (may sleep). |
| 6680 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6681 | void ata_host_resume(struct ata_host *host) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6682 | { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 6683 | ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET, |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6684 | ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0); |
Jeff Garzik | 72ad6ec | 2008-02-25 17:31:10 -0500 | [diff] [blame] | 6685 | host->dev->power.power_state = PMSG_ON; |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 6686 | |
| 6687 | /* reenable link pm */ |
| 6688 | ata_lpm_disable(host); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6689 | } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6690 | #endif |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6691 | |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 6692 | /** |
| 6693 | * ata_port_start - Set port up for dma. |
| 6694 | * @ap: Port to initialize |
| 6695 | * |
| 6696 | * Called just after data structures for each port are |
| 6697 | * initialized. Allocates space for PRD table. |
| 6698 | * |
| 6699 | * May be used as the port_start() entry in ata_port_operations. |
| 6700 | * |
| 6701 | * LOCKING: |
| 6702 | * Inherited from caller. |
| 6703 | */ |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6704 | int ata_port_start(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6705 | { |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 6706 | struct device *dev = ap->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6707 | |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6708 | ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, |
| 6709 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6710 | if (!ap->prd) |
| 6711 | return -ENOMEM; |
| 6712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6713 | return 0; |
| 6714 | } |
| 6715 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 6716 | /** |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 6717 | * ata_dev_init - Initialize an ata_device structure |
| 6718 | * @dev: Device structure to initialize |
| 6719 | * |
| 6720 | * Initialize @dev in preparation for probing. |
| 6721 | * |
| 6722 | * LOCKING: |
| 6723 | * Inherited from caller. |
| 6724 | */ |
| 6725 | void ata_dev_init(struct ata_device *dev) |
| 6726 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6727 | struct ata_link *link = dev->link; |
| 6728 | struct ata_port *ap = link->ap; |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 6729 | unsigned long flags; |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 6730 | |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 6731 | /* SATA spd limit is bound to the first device */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 6732 | link->sata_spd_limit = link->hw_sata_spd_limit; |
| 6733 | link->sata_spd = 0; |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 6734 | |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 6735 | /* High bits of dev->flags are used to record warm plug |
| 6736 | * requests which occur asynchronously. Synchronize using |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6737 | * host lock. |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 6738 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 6739 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 6740 | dev->flags &= ~ATA_DFLAG_INIT_MASK; |
Tejun Heo | 3dcc323 | 2007-09-03 12:20:11 +0900 | [diff] [blame] | 6741 | dev->horkage = 0; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 6742 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 6743 | |
| 6744 | memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0, |
| 6745 | sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET); |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 6746 | dev->pio_mask = UINT_MAX; |
| 6747 | dev->mwdma_mask = UINT_MAX; |
| 6748 | dev->udma_mask = UINT_MAX; |
| 6749 | } |
| 6750 | |
| 6751 | /** |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6752 | * ata_link_init - Initialize an ata_link structure |
| 6753 | * @ap: ATA port link is attached to |
| 6754 | * @link: Link structure to initialize |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6755 | * @pmp: Port multiplier port number |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6756 | * |
| 6757 | * Initialize @link. |
| 6758 | * |
| 6759 | * LOCKING: |
| 6760 | * Kernel thread context (may sleep) |
| 6761 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 6762 | 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] | 6763 | { |
| 6764 | int i; |
| 6765 | |
| 6766 | /* clear everything except for devices */ |
| 6767 | memset(link, 0, offsetof(struct ata_link, device[0])); |
| 6768 | |
| 6769 | link->ap = ap; |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6770 | link->pmp = pmp; |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6771 | link->active_tag = ATA_TAG_POISON; |
| 6772 | link->hw_sata_spd_limit = UINT_MAX; |
| 6773 | |
| 6774 | /* can't use iterator, ap isn't initialized yet */ |
| 6775 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 6776 | struct ata_device *dev = &link->device[i]; |
| 6777 | |
| 6778 | dev->link = link; |
| 6779 | dev->devno = dev - link->device; |
| 6780 | ata_dev_init(dev); |
| 6781 | } |
| 6782 | } |
| 6783 | |
| 6784 | /** |
| 6785 | * sata_link_init_spd - Initialize link->sata_spd_limit |
| 6786 | * @link: Link to configure sata_spd_limit for |
| 6787 | * |
| 6788 | * Initialize @link->[hw_]sata_spd_limit to the currently |
| 6789 | * configured value. |
| 6790 | * |
| 6791 | * LOCKING: |
| 6792 | * Kernel thread context (may sleep). |
| 6793 | * |
| 6794 | * RETURNS: |
| 6795 | * 0 on success, -errno on failure. |
| 6796 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 6797 | int sata_link_init_spd(struct ata_link *link) |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6798 | { |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6799 | u32 scontrol; |
| 6800 | u8 spd; |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6801 | int rc; |
| 6802 | |
| 6803 | rc = sata_scr_read(link, SCR_CONTROL, &scontrol); |
| 6804 | if (rc) |
| 6805 | return rc; |
| 6806 | |
| 6807 | spd = (scontrol >> 4) & 0xf; |
| 6808 | if (spd) |
| 6809 | link->hw_sata_spd_limit &= (1 << spd) - 1; |
| 6810 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6811 | ata_force_spd_limit(link); |
| 6812 | |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6813 | link->sata_spd_limit = link->hw_sata_spd_limit; |
| 6814 | |
| 6815 | return 0; |
| 6816 | } |
| 6817 | |
| 6818 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6819 | * ata_port_alloc - allocate and initialize basic ATA port resources |
| 6820 | * @host: ATA host this allocated port belongs to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6821 | * |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6822 | * Allocate and initialize basic ATA port resources. |
| 6823 | * |
| 6824 | * RETURNS: |
| 6825 | * Allocate ATA port on success, NULL on failure. |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 6826 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6827 | * LOCKING: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6828 | * Inherited from calling layer (may sleep). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6829 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6830 | struct ata_port *ata_port_alloc(struct ata_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6831 | { |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6832 | struct ata_port *ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6833 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6834 | DPRINTK("ENTER\n"); |
| 6835 | |
| 6836 | ap = kzalloc(sizeof(*ap), GFP_KERNEL); |
| 6837 | if (!ap) |
| 6838 | return NULL; |
| 6839 | |
Tejun Heo | f4d6d00 | 2007-05-01 11:50:15 +0200 | [diff] [blame] | 6840 | ap->pflags |= ATA_PFLAG_INITIALIZING; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6841 | ap->lock = &host->lock; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 6842 | ap->flags = ATA_FLAG_DISABLED; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6843 | ap->print_id = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6844 | ap->ctl = ATA_DEVCTL_OBS; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6845 | ap->host = host; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6846 | ap->dev = host->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6847 | ap->last_ctl = 0xFF; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 6848 | |
| 6849 | #if defined(ATA_VERBOSE_DEBUG) |
| 6850 | /* turn on all debugging levels */ |
| 6851 | ap->msg_enable = 0x00FF; |
| 6852 | #elif defined(ATA_DEBUG) |
| 6853 | 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] | 6854 | #else |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 6855 | ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 6856 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6857 | |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 6858 | INIT_DELAYED_WORK(&ap->port_task, ata_pio_task); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 6859 | INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug); |
| 6860 | INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan); |
Tejun Heo | a72ec4c | 2006-01-23 13:09:37 +0900 | [diff] [blame] | 6861 | INIT_LIST_HEAD(&ap->eh_done_q); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 6862 | init_waitqueue_head(&ap->eh_wait_q); |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 6863 | init_timer_deferrable(&ap->fastdrain_timer); |
| 6864 | ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn; |
| 6865 | ap->fastdrain_timer.data = (unsigned long)ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6866 | |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 6867 | ap->cbl = ATA_CBL_NONE; |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 6868 | |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6869 | ata_link_init(ap, &ap->link, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6870 | |
| 6871 | #ifdef ATA_IRQ_TRAP |
| 6872 | ap->stats.unhandled_irq = 1; |
| 6873 | ap->stats.idle_irq = 1; |
| 6874 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6875 | return ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6876 | } |
| 6877 | |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6878 | static void ata_host_release(struct device *gendev, void *res) |
| 6879 | { |
| 6880 | struct ata_host *host = dev_get_drvdata(gendev); |
| 6881 | int i; |
| 6882 | |
| 6883 | for (i = 0; i < host->n_ports; i++) { |
| 6884 | struct ata_port *ap = host->ports[i]; |
| 6885 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 6886 | if (!ap) |
| 6887 | continue; |
| 6888 | |
Tejun Heo | 4911487 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 6889 | if (ap->scsi_host) |
Tejun Heo | 1aa506e4 | 2007-03-09 19:36:12 +0900 | [diff] [blame] | 6890 | scsi_host_put(ap->scsi_host); |
| 6891 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 6892 | kfree(ap->pmp_link); |
Tejun Heo | 4911487 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 6893 | kfree(ap); |
Tejun Heo | 1aa506e4 | 2007-03-09 19:36:12 +0900 | [diff] [blame] | 6894 | host->ports[i] = NULL; |
| 6895 | } |
| 6896 | |
Tejun Heo | 1aa56cc | 2007-02-27 22:33:21 +0900 | [diff] [blame] | 6897 | dev_set_drvdata(gendev, NULL); |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6898 | } |
| 6899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6900 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6901 | * ata_host_alloc - allocate and init basic ATA host resources |
| 6902 | * @dev: generic device this host is associated with |
| 6903 | * @max_ports: maximum number of ATA ports associated with this host |
| 6904 | * |
| 6905 | * Allocate and initialize basic ATA host resources. LLD calls |
| 6906 | * this function to allocate a host, initializes it fully and |
| 6907 | * attaches it using ata_host_register(). |
| 6908 | * |
| 6909 | * @max_ports ports are allocated and host->n_ports is |
| 6910 | * initialized to @max_ports. The caller is allowed to decrease |
| 6911 | * host->n_ports before calling ata_host_register(). The unused |
| 6912 | * ports will be automatically freed on registration. |
| 6913 | * |
| 6914 | * RETURNS: |
| 6915 | * Allocate ATA host on success, NULL on failure. |
| 6916 | * |
| 6917 | * LOCKING: |
| 6918 | * Inherited from calling layer (may sleep). |
| 6919 | */ |
| 6920 | struct ata_host *ata_host_alloc(struct device *dev, int max_ports) |
| 6921 | { |
| 6922 | struct ata_host *host; |
| 6923 | size_t sz; |
| 6924 | int i; |
| 6925 | |
| 6926 | DPRINTK("ENTER\n"); |
| 6927 | |
| 6928 | if (!devres_open_group(dev, NULL, GFP_KERNEL)) |
| 6929 | return NULL; |
| 6930 | |
| 6931 | /* alloc a container for our list of ATA ports (buses) */ |
| 6932 | sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *); |
| 6933 | /* alloc a container for our list of ATA ports (buses) */ |
| 6934 | host = devres_alloc(ata_host_release, sz, GFP_KERNEL); |
| 6935 | if (!host) |
| 6936 | goto err_out; |
| 6937 | |
| 6938 | devres_add(dev, host); |
| 6939 | dev_set_drvdata(dev, host); |
| 6940 | |
| 6941 | spin_lock_init(&host->lock); |
| 6942 | host->dev = dev; |
| 6943 | host->n_ports = max_ports; |
| 6944 | |
| 6945 | /* allocate ports bound to this host */ |
| 6946 | for (i = 0; i < max_ports; i++) { |
| 6947 | struct ata_port *ap; |
| 6948 | |
| 6949 | ap = ata_port_alloc(host); |
| 6950 | if (!ap) |
| 6951 | goto err_out; |
| 6952 | |
| 6953 | ap->port_no = i; |
| 6954 | host->ports[i] = ap; |
| 6955 | } |
| 6956 | |
| 6957 | devres_remove_group(dev, NULL); |
| 6958 | return host; |
| 6959 | |
| 6960 | err_out: |
| 6961 | devres_release_group(dev, NULL); |
| 6962 | return NULL; |
| 6963 | } |
| 6964 | |
| 6965 | /** |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6966 | * ata_host_alloc_pinfo - alloc host and init with port_info array |
| 6967 | * @dev: generic device this host is associated with |
| 6968 | * @ppi: array of ATA port_info to initialize host with |
| 6969 | * @n_ports: number of ATA ports attached to this host |
| 6970 | * |
| 6971 | * Allocate ATA host and initialize with info from @ppi. If NULL |
| 6972 | * terminated, @ppi may contain fewer entries than @n_ports. The |
| 6973 | * last entry will be used for the remaining ports. |
| 6974 | * |
| 6975 | * RETURNS: |
| 6976 | * Allocate ATA host on success, NULL on failure. |
| 6977 | * |
| 6978 | * LOCKING: |
| 6979 | * Inherited from calling layer (may sleep). |
| 6980 | */ |
| 6981 | struct ata_host *ata_host_alloc_pinfo(struct device *dev, |
| 6982 | const struct ata_port_info * const * ppi, |
| 6983 | int n_ports) |
| 6984 | { |
| 6985 | const struct ata_port_info *pi; |
| 6986 | struct ata_host *host; |
| 6987 | int i, j; |
| 6988 | |
| 6989 | host = ata_host_alloc(dev, n_ports); |
| 6990 | if (!host) |
| 6991 | return NULL; |
| 6992 | |
| 6993 | for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) { |
| 6994 | struct ata_port *ap = host->ports[i]; |
| 6995 | |
| 6996 | if (ppi[j]) |
| 6997 | pi = ppi[j++]; |
| 6998 | |
| 6999 | ap->pio_mask = pi->pio_mask; |
| 7000 | ap->mwdma_mask = pi->mwdma_mask; |
| 7001 | ap->udma_mask = pi->udma_mask; |
| 7002 | ap->flags |= pi->flags; |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 7003 | ap->link.flags |= pi->link_flags; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7004 | ap->ops = pi->port_ops; |
| 7005 | |
| 7006 | if (!host->ops && (pi->port_ops != &ata_dummy_port_ops)) |
| 7007 | host->ops = pi->port_ops; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7008 | } |
| 7009 | |
| 7010 | return host; |
| 7011 | } |
| 7012 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 7013 | static void ata_host_stop(struct device *gendev, void *res) |
| 7014 | { |
| 7015 | struct ata_host *host = dev_get_drvdata(gendev); |
| 7016 | int i; |
| 7017 | |
| 7018 | WARN_ON(!(host->flags & ATA_HOST_STARTED)); |
| 7019 | |
| 7020 | for (i = 0; i < host->n_ports; i++) { |
| 7021 | struct ata_port *ap = host->ports[i]; |
| 7022 | |
| 7023 | if (ap->ops->port_stop) |
| 7024 | ap->ops->port_stop(ap); |
| 7025 | } |
| 7026 | |
| 7027 | if (host->ops->host_stop) |
| 7028 | host->ops->host_stop(host); |
| 7029 | } |
| 7030 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7031 | /** |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 7032 | * ata_finalize_port_ops - finalize ata_port_operations |
| 7033 | * @ops: ata_port_operations to finalize |
| 7034 | * |
| 7035 | * An ata_port_operations can inherit from another ops and that |
| 7036 | * ops can again inherit from another. This can go on as many |
| 7037 | * times as necessary as long as there is no loop in the |
| 7038 | * inheritance chain. |
| 7039 | * |
| 7040 | * Ops tables are finalized when the host is started. NULL or |
| 7041 | * unspecified entries are inherited from the closet ancestor |
| 7042 | * which has the method and the entry is populated with it. |
| 7043 | * After finalization, the ops table directly points to all the |
| 7044 | * methods and ->inherits is no longer necessary and cleared. |
| 7045 | * |
| 7046 | * Using ATA_OP_NULL, inheriting ops can force a method to NULL. |
| 7047 | * |
| 7048 | * LOCKING: |
| 7049 | * None. |
| 7050 | */ |
| 7051 | static void ata_finalize_port_ops(struct ata_port_operations *ops) |
| 7052 | { |
| 7053 | static spinlock_t lock = SPIN_LOCK_UNLOCKED; |
| 7054 | const struct ata_port_operations *cur; |
| 7055 | void **begin = (void **)ops; |
| 7056 | void **end = (void **)&ops->inherits; |
| 7057 | void **pp; |
| 7058 | |
| 7059 | if (!ops || !ops->inherits) |
| 7060 | return; |
| 7061 | |
| 7062 | spin_lock(&lock); |
| 7063 | |
| 7064 | for (cur = ops->inherits; cur; cur = cur->inherits) { |
| 7065 | void **inherit = (void **)cur; |
| 7066 | |
| 7067 | for (pp = begin; pp < end; pp++, inherit++) |
| 7068 | if (!*pp) |
| 7069 | *pp = *inherit; |
| 7070 | } |
| 7071 | |
| 7072 | for (pp = begin; pp < end; pp++) |
| 7073 | if (IS_ERR(*pp)) |
| 7074 | *pp = NULL; |
| 7075 | |
| 7076 | ops->inherits = NULL; |
| 7077 | |
| 7078 | spin_unlock(&lock); |
| 7079 | } |
| 7080 | |
| 7081 | /** |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7082 | * ata_host_start - start and freeze ports of an ATA host |
| 7083 | * @host: ATA host to start ports for |
| 7084 | * |
| 7085 | * Start and then freeze ports of @host. Started status is |
| 7086 | * recorded in host->flags, so this function can be called |
| 7087 | * multiple times. Ports are guaranteed to get started only |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7088 | * once. If host->ops isn't initialized yet, its set to the |
| 7089 | * first non-dummy port ops. |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7090 | * |
| 7091 | * LOCKING: |
| 7092 | * Inherited from calling layer (may sleep). |
| 7093 | * |
| 7094 | * RETURNS: |
| 7095 | * 0 if all ports are started successfully, -errno otherwise. |
| 7096 | */ |
| 7097 | int ata_host_start(struct ata_host *host) |
| 7098 | { |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 7099 | int have_stop = 0; |
| 7100 | void *start_dr = NULL; |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7101 | int i, rc; |
| 7102 | |
| 7103 | if (host->flags & ATA_HOST_STARTED) |
| 7104 | return 0; |
| 7105 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 7106 | ata_finalize_port_ops(host->ops); |
| 7107 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7108 | for (i = 0; i < host->n_ports; i++) { |
| 7109 | struct ata_port *ap = host->ports[i]; |
| 7110 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 7111 | ata_finalize_port_ops(ap->ops); |
| 7112 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7113 | if (!host->ops && !ata_port_is_dummy(ap)) |
| 7114 | host->ops = ap->ops; |
| 7115 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 7116 | if (ap->ops->port_stop) |
| 7117 | have_stop = 1; |
| 7118 | } |
| 7119 | |
| 7120 | if (host->ops->host_stop) |
| 7121 | have_stop = 1; |
| 7122 | |
| 7123 | if (have_stop) { |
| 7124 | start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL); |
| 7125 | if (!start_dr) |
| 7126 | return -ENOMEM; |
| 7127 | } |
| 7128 | |
| 7129 | for (i = 0; i < host->n_ports; i++) { |
| 7130 | struct ata_port *ap = host->ports[i]; |
| 7131 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7132 | if (ap->ops->port_start) { |
| 7133 | rc = ap->ops->port_start(ap); |
| 7134 | if (rc) { |
Alan Cox | 0f9fe9b | 2007-11-30 15:23:16 +0000 | [diff] [blame] | 7135 | if (rc != -ENODEV) |
Andrew Morton | 0f75774 | 2008-01-10 14:33:09 -0800 | [diff] [blame] | 7136 | dev_printk(KERN_ERR, host->dev, |
| 7137 | "failed to start port %d " |
| 7138 | "(errno=%d)\n", i, rc); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7139 | goto err_out; |
| 7140 | } |
| 7141 | } |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7142 | ata_eh_freeze_port(ap); |
| 7143 | } |
| 7144 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 7145 | if (start_dr) |
| 7146 | devres_add(host->dev, start_dr); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7147 | host->flags |= ATA_HOST_STARTED; |
| 7148 | return 0; |
| 7149 | |
| 7150 | err_out: |
| 7151 | while (--i >= 0) { |
| 7152 | struct ata_port *ap = host->ports[i]; |
| 7153 | |
| 7154 | if (ap->ops->port_stop) |
| 7155 | ap->ops->port_stop(ap); |
| 7156 | } |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 7157 | devres_free(start_dr); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7158 | return rc; |
| 7159 | } |
| 7160 | |
| 7161 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7162 | * ata_sas_host_init - Initialize a host struct |
| 7163 | * @host: host to initialize |
| 7164 | * @dev: device host is attached to |
| 7165 | * @flags: host flags |
| 7166 | * @ops: port_ops |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 7167 | * |
| 7168 | * LOCKING: |
| 7169 | * PCI/etc. bus probe sem. |
| 7170 | * |
| 7171 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7172 | /* KILLME - the only user left is ipr */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7173 | void ata_host_init(struct ata_host *host, struct device *dev, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 7174 | unsigned long flags, struct ata_port_operations *ops) |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 7175 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7176 | spin_lock_init(&host->lock); |
| 7177 | host->dev = dev; |
| 7178 | host->flags = flags; |
| 7179 | host->ops = ops; |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 7180 | } |
| 7181 | |
| 7182 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7183 | * ata_host_register - register initialized ATA host |
| 7184 | * @host: ATA host to register |
| 7185 | * @sht: template for SCSI host |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 7186 | * |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7187 | * Register initialized ATA host. @host is allocated using |
| 7188 | * ata_host_alloc() and fully initialized by LLD. This function |
| 7189 | * starts ports, registers @host with ATA and SCSI layers and |
| 7190 | * probe registered devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7191 | * |
| 7192 | * LOCKING: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7193 | * Inherited from calling layer (may sleep). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7194 | * |
| 7195 | * RETURNS: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7196 | * 0 on success, -errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7197 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7198 | 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] | 7199 | { |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7200 | int i, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7201 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7202 | /* host must have been started */ |
| 7203 | if (!(host->flags & ATA_HOST_STARTED)) { |
| 7204 | dev_printk(KERN_ERR, host->dev, |
| 7205 | "BUG: trying to register unstarted host\n"); |
| 7206 | WARN_ON(1); |
| 7207 | return -EINVAL; |
Alan Cox | 02f076a | 2006-09-26 17:35:32 +0100 | [diff] [blame] | 7208 | } |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 7209 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7210 | /* Blow away unused ports. This happens when LLD can't |
| 7211 | * determine the exact number of ports to allocate at |
| 7212 | * allocation time. |
| 7213 | */ |
| 7214 | for (i = host->n_ports; host->ports[i]; i++) |
| 7215 | kfree(host->ports[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7216 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7217 | /* give ports names and add SCSI hosts */ |
| 7218 | for (i = 0; i < host->n_ports; i++) |
| 7219 | host->ports[i]->print_id = ata_print_id++; |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 7220 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7221 | rc = ata_scsi_add_hosts(host, sht); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7222 | if (rc) |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7223 | return rc; |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7224 | |
Tejun Heo | fafbae8 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 7225 | /* associate with ACPI nodes */ |
| 7226 | ata_acpi_associate(host); |
| 7227 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7228 | /* set cable, sata_spd_limit and report */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7229 | for (i = 0; i < host->n_ports; i++) { |
| 7230 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7231 | unsigned long xfer_mask; |
| 7232 | |
| 7233 | /* set SATA cable type if still unset */ |
| 7234 | if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA)) |
| 7235 | ap->cbl = ATA_CBL_SATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7236 | |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 7237 | /* init sata_spd_limit to the current value */ |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 7238 | sata_link_init_spd(&ap->link); |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 7239 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 7240 | /* print per-port info to dmesg */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7241 | xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask, |
| 7242 | ap->udma_mask); |
| 7243 | |
Tejun Heo | abf6e8e | 2007-10-09 14:57:25 +0900 | [diff] [blame] | 7244 | if (!ata_port_is_dummy(ap)) { |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 7245 | ata_port_printk(ap, KERN_INFO, |
| 7246 | "%cATA max %s %s\n", |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 7247 | (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P', |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7248 | ata_mode_string(xfer_mask), |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 7249 | ap->link.eh_info.desc); |
Tejun Heo | abf6e8e | 2007-10-09 14:57:25 +0900 | [diff] [blame] | 7250 | ata_ehi_clear_desc(&ap->link.eh_info); |
| 7251 | } else |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7252 | ata_port_printk(ap, KERN_INFO, "DUMMY\n"); |
| 7253 | } |
| 7254 | |
| 7255 | /* perform each probe synchronously */ |
| 7256 | DPRINTK("probe begin\n"); |
| 7257 | for (i = 0; i < host->n_ports; i++) { |
| 7258 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7259 | |
| 7260 | /* probe */ |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 7261 | if (ap->ops->error_handler) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 7262 | struct ata_eh_info *ehi = &ap->link.eh_info; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 7263 | unsigned long flags; |
| 7264 | |
| 7265 | ata_port_probe(ap); |
| 7266 | |
| 7267 | /* kick EH for boot probing */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 7268 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 7269 | |
Tejun Heo | b558edd | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 7270 | ehi->probe_mask |= ATA_ALL_DEVICES; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 7271 | ehi->action |= ATA_EH_RESET; |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 7272 | ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 7273 | |
Tejun Heo | f4d6d00 | 2007-05-01 11:50:15 +0200 | [diff] [blame] | 7274 | ap->pflags &= ~ATA_PFLAG_INITIALIZING; |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 7275 | ap->pflags |= ATA_PFLAG_LOADING; |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 7276 | ata_port_schedule_eh(ap); |
| 7277 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 7278 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 7279 | |
| 7280 | /* wait for EH to finish */ |
| 7281 | ata_port_wait_eh(ap); |
| 7282 | } else { |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 7283 | DPRINTK("ata%u: bus probe begin\n", ap->print_id); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 7284 | rc = ata_bus_probe(ap); |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 7285 | DPRINTK("ata%u: bus probe end\n", ap->print_id); |
Tejun Heo | 3e70639 | 2006-05-31 18:28:11 +0900 | [diff] [blame] | 7286 | |
| 7287 | if (rc) { |
| 7288 | /* FIXME: do something useful here? |
| 7289 | * Current libata behavior will |
| 7290 | * tear down everything when |
| 7291 | * the module is removed |
| 7292 | * or the h/w is unplugged. |
| 7293 | */ |
| 7294 | } |
| 7295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7296 | } |
| 7297 | |
| 7298 | /* probes are done, now scan each port's disk(s) */ |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 7299 | DPRINTK("host probe begin\n"); |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7300 | for (i = 0; i < host->n_ports; i++) { |
| 7301 | struct ata_port *ap = host->ports[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7302 | |
Tejun Heo | 1ae4631 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 7303 | ata_scsi_scan_host(ap, 1); |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 7304 | ata_lpm_schedule(ap, ap->pm_policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7305 | } |
| 7306 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7307 | return 0; |
| 7308 | } |
| 7309 | |
| 7310 | /** |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7311 | * ata_host_activate - start host, request IRQ and register it |
| 7312 | * @host: target ATA host |
| 7313 | * @irq: IRQ to request |
| 7314 | * @irq_handler: irq_handler used when requesting IRQ |
| 7315 | * @irq_flags: irq_flags used when requesting IRQ |
| 7316 | * @sht: scsi_host_template to use when registering the host |
| 7317 | * |
| 7318 | * After allocating an ATA host and initializing it, most libata |
| 7319 | * LLDs perform three steps to activate the host - start host, |
| 7320 | * request IRQ and register it. This helper takes necessasry |
| 7321 | * arguments and performs the three steps in one go. |
| 7322 | * |
Paul Mundt | 3d46b2e | 2007-11-08 11:14:56 +0900 | [diff] [blame] | 7323 | * An invalid IRQ skips the IRQ registration and expects the host to |
| 7324 | * have set polling mode on the port. In this case, @irq_handler |
| 7325 | * should be NULL. |
| 7326 | * |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7327 | * LOCKING: |
| 7328 | * Inherited from calling layer (may sleep). |
| 7329 | * |
| 7330 | * RETURNS: |
| 7331 | * 0 on success, -errno otherwise. |
| 7332 | */ |
| 7333 | int ata_host_activate(struct ata_host *host, int irq, |
| 7334 | irq_handler_t irq_handler, unsigned long irq_flags, |
| 7335 | struct scsi_host_template *sht) |
| 7336 | { |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 7337 | int i, rc; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7338 | |
| 7339 | rc = ata_host_start(host); |
| 7340 | if (rc) |
| 7341 | return rc; |
| 7342 | |
Paul Mundt | 3d46b2e | 2007-11-08 11:14:56 +0900 | [diff] [blame] | 7343 | /* Special case for polling mode */ |
| 7344 | if (!irq) { |
| 7345 | WARN_ON(irq_handler); |
| 7346 | return ata_host_register(host, sht); |
| 7347 | } |
| 7348 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7349 | rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags, |
| 7350 | dev_driver_string(host->dev), host); |
| 7351 | if (rc) |
| 7352 | return rc; |
| 7353 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 7354 | for (i = 0; i < host->n_ports; i++) |
| 7355 | ata_port_desc(host->ports[i], "irq %d", irq); |
Tejun Heo | 4031826 | 2007-07-03 01:38:47 +0900 | [diff] [blame] | 7356 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7357 | rc = ata_host_register(host, sht); |
| 7358 | /* if failed, just free the IRQ and leave ports alone */ |
| 7359 | if (rc) |
| 7360 | devm_free_irq(host->dev, irq, host); |
| 7361 | |
| 7362 | return rc; |
| 7363 | } |
| 7364 | |
| 7365 | /** |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7366 | * ata_port_detach - Detach ATA port in prepration of device removal |
| 7367 | * @ap: ATA port to be detached |
| 7368 | * |
| 7369 | * Detach all ATA devices and the associated SCSI devices of @ap; |
| 7370 | * then, remove the associated SCSI host. @ap is guaranteed to |
| 7371 | * be quiescent on return from this function. |
| 7372 | * |
| 7373 | * LOCKING: |
| 7374 | * Kernel thread context (may sleep). |
| 7375 | */ |
Adrian Bunk | 741b776 | 2007-10-24 18:23:06 +0200 | [diff] [blame] | 7376 | static void ata_port_detach(struct ata_port *ap) |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7377 | { |
| 7378 | unsigned long flags; |
Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 7379 | struct ata_link *link; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 7380 | struct ata_device *dev; |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7381 | |
| 7382 | if (!ap->ops->error_handler) |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 7383 | goto skip_eh; |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7384 | |
| 7385 | /* tell EH we're leaving & flush EH */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 7386 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 7387 | ap->pflags |= ATA_PFLAG_UNLOADING; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 7388 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7389 | |
| 7390 | ata_port_wait_eh(ap); |
| 7391 | |
Tejun Heo | 7f9ad9b | 2007-12-15 15:05:00 +0900 | [diff] [blame] | 7392 | /* EH is now guaranteed to see UNLOADING - EH context belongs |
| 7393 | * to us. Disable all existing devices. |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7394 | */ |
Tejun Heo | 41bda9c | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 7395 | ata_port_for_each_link(link, ap) { |
| 7396 | ata_link_for_each_dev(dev, link) |
| 7397 | ata_dev_disable(dev); |
| 7398 | } |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7399 | |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7400 | /* Final freeze & EH. All in-flight commands are aborted. EH |
| 7401 | * will be skipped and retrials will be terminated with bad |
| 7402 | * target. |
| 7403 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 7404 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7405 | ata_port_freeze(ap); /* won't be thawed */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 7406 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7407 | |
| 7408 | ata_port_wait_eh(ap); |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 7409 | cancel_rearming_delayed_work(&ap->hotplug_task); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7410 | |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 7411 | skip_eh: |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7412 | /* remove the associated SCSI host */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7413 | scsi_remove_host(ap->scsi_host); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 7414 | } |
| 7415 | |
| 7416 | /** |
Tejun Heo | 0529c159 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 7417 | * ata_host_detach - Detach all ports of an ATA host |
| 7418 | * @host: Host to detach |
| 7419 | * |
| 7420 | * Detach all ports of @host. |
| 7421 | * |
| 7422 | * LOCKING: |
| 7423 | * Kernel thread context (may sleep). |
| 7424 | */ |
| 7425 | void ata_host_detach(struct ata_host *host) |
| 7426 | { |
| 7427 | int i; |
| 7428 | |
| 7429 | for (i = 0; i < host->n_ports; i++) |
| 7430 | ata_port_detach(host->ports[i]); |
Tejun Heo | 562f0c2 | 2007-12-15 15:05:01 +0900 | [diff] [blame] | 7431 | |
| 7432 | /* the host is dead now, dissociate ACPI */ |
| 7433 | ata_acpi_dissociate(host); |
Tejun Heo | 0529c159 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 7434 | } |
| 7435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7436 | /** |
| 7437 | * ata_std_ports - initialize ioaddr with standard port offsets. |
| 7438 | * @ioaddr: IO address structure to be initialized |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 7439 | * |
| 7440 | * Utility function which initializes data_addr, error_addr, |
| 7441 | * feature_addr, nsect_addr, lbal_addr, lbam_addr, lbah_addr, |
| 7442 | * device_addr, status_addr, and command_addr to standard offsets |
| 7443 | * relative to cmd_addr. |
| 7444 | * |
| 7445 | * Does not set ctl_addr, altstatus_addr, bmdma_addr, or scr_addr. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7446 | */ |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 7447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7448 | void ata_std_ports(struct ata_ioports *ioaddr) |
| 7449 | { |
| 7450 | ioaddr->data_addr = ioaddr->cmd_addr + ATA_REG_DATA; |
| 7451 | ioaddr->error_addr = ioaddr->cmd_addr + ATA_REG_ERR; |
| 7452 | ioaddr->feature_addr = ioaddr->cmd_addr + ATA_REG_FEATURE; |
| 7453 | ioaddr->nsect_addr = ioaddr->cmd_addr + ATA_REG_NSECT; |
| 7454 | ioaddr->lbal_addr = ioaddr->cmd_addr + ATA_REG_LBAL; |
| 7455 | ioaddr->lbam_addr = ioaddr->cmd_addr + ATA_REG_LBAM; |
| 7456 | ioaddr->lbah_addr = ioaddr->cmd_addr + ATA_REG_LBAH; |
| 7457 | ioaddr->device_addr = ioaddr->cmd_addr + ATA_REG_DEVICE; |
| 7458 | ioaddr->status_addr = ioaddr->cmd_addr + ATA_REG_STATUS; |
| 7459 | ioaddr->command_addr = ioaddr->cmd_addr + ATA_REG_CMD; |
| 7460 | } |
| 7461 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 7462 | |
Jeff Garzik | 374b187 | 2005-08-30 05:42:52 -0400 | [diff] [blame] | 7463 | #ifdef CONFIG_PCI |
| 7464 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 7465 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7466 | * ata_pci_remove_one - PCI layer callback for device removal |
| 7467 | * @pdev: PCI device that was removed |
| 7468 | * |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 7469 | * PCI layer indicates to libata via this hook that hot-unplug or |
| 7470 | * module unload event has occurred. Detach all ports. Resource |
| 7471 | * release is handled via devres. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7472 | * |
| 7473 | * LOCKING: |
| 7474 | * Inherited from PCI layer (may sleep). |
| 7475 | */ |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 7476 | void ata_pci_remove_one(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7477 | { |
Jeff Garzik | 2855568 | 2007-10-11 17:12:35 -0400 | [diff] [blame] | 7478 | struct device *dev = &pdev->dev; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7479 | struct ata_host *host = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7480 | |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 7481 | ata_host_detach(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7482 | } |
| 7483 | |
| 7484 | /* move to PCI subsystem */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 7485 | 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] | 7486 | { |
| 7487 | unsigned long tmp = 0; |
| 7488 | |
| 7489 | switch (bits->width) { |
| 7490 | case 1: { |
| 7491 | u8 tmp8 = 0; |
| 7492 | pci_read_config_byte(pdev, bits->reg, &tmp8); |
| 7493 | tmp = tmp8; |
| 7494 | break; |
| 7495 | } |
| 7496 | case 2: { |
| 7497 | u16 tmp16 = 0; |
| 7498 | pci_read_config_word(pdev, bits->reg, &tmp16); |
| 7499 | tmp = tmp16; |
| 7500 | break; |
| 7501 | } |
| 7502 | case 4: { |
| 7503 | u32 tmp32 = 0; |
| 7504 | pci_read_config_dword(pdev, bits->reg, &tmp32); |
| 7505 | tmp = tmp32; |
| 7506 | break; |
| 7507 | } |
| 7508 | |
| 7509 | default: |
| 7510 | return -EINVAL; |
| 7511 | } |
| 7512 | |
| 7513 | tmp &= bits->mask; |
| 7514 | |
| 7515 | return (tmp == bits->val) ? 1 : 0; |
| 7516 | } |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 7517 | |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 7518 | #ifdef CONFIG_PM |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 7519 | 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] | 7520 | { |
| 7521 | pci_save_state(pdev); |
Tejun Heo | 4c90d97 | 2007-02-20 18:14:48 +0900 | [diff] [blame] | 7522 | pci_disable_device(pdev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 7523 | |
Rafael J. Wysocki | 3a2d5b7 | 2008-02-23 19:13:25 +0100 | [diff] [blame] | 7524 | if (mesg.event & PM_EVENT_SLEEP) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 7525 | pci_set_power_state(pdev, PCI_D3hot); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 7526 | } |
| 7527 | |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 7528 | int ata_pci_device_do_resume(struct pci_dev *pdev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 7529 | { |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 7530 | int rc; |
| 7531 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 7532 | pci_set_power_state(pdev, PCI_D0); |
| 7533 | pci_restore_state(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 7534 | |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 7535 | rc = pcim_enable_device(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 7536 | if (rc) { |
| 7537 | dev_printk(KERN_ERR, &pdev->dev, |
| 7538 | "failed to enable device after resume (%d)\n", rc); |
| 7539 | return rc; |
| 7540 | } |
| 7541 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 7542 | pci_set_master(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 7543 | return 0; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 7544 | } |
| 7545 | |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 7546 | 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] | 7547 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7548 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 7549 | int rc = 0; |
| 7550 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7551 | rc = ata_host_suspend(host, mesg); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 7552 | if (rc) |
| 7553 | return rc; |
| 7554 | |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 7555 | ata_pci_device_do_suspend(pdev, mesg); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 7556 | |
| 7557 | return 0; |
| 7558 | } |
| 7559 | |
| 7560 | int ata_pci_device_resume(struct pci_dev *pdev) |
| 7561 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7562 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 7563 | int rc; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 7564 | |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 7565 | rc = ata_pci_device_do_resume(pdev); |
| 7566 | if (rc == 0) |
| 7567 | ata_host_resume(host); |
| 7568 | return rc; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 7569 | } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 7570 | #endif /* CONFIG_PM */ |
| 7571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7572 | #endif /* CONFIG_PCI */ |
| 7573 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 7574 | static int __init ata_parse_force_one(char **cur, |
| 7575 | struct ata_force_ent *force_ent, |
| 7576 | const char **reason) |
| 7577 | { |
| 7578 | /* FIXME: Currently, there's no way to tag init const data and |
| 7579 | * using __initdata causes build failure on some versions of |
| 7580 | * gcc. Once __initdataconst is implemented, add const to the |
| 7581 | * following structure. |
| 7582 | */ |
| 7583 | static struct ata_force_param force_tbl[] __initdata = { |
| 7584 | { "40c", .cbl = ATA_CBL_PATA40 }, |
| 7585 | { "80c", .cbl = ATA_CBL_PATA80 }, |
| 7586 | { "short40c", .cbl = ATA_CBL_PATA40_SHORT }, |
| 7587 | { "unk", .cbl = ATA_CBL_PATA_UNK }, |
| 7588 | { "ign", .cbl = ATA_CBL_PATA_IGN }, |
| 7589 | { "sata", .cbl = ATA_CBL_SATA }, |
| 7590 | { "1.5Gbps", .spd_limit = 1 }, |
| 7591 | { "3.0Gbps", .spd_limit = 2 }, |
| 7592 | { "noncq", .horkage_on = ATA_HORKAGE_NONCQ }, |
| 7593 | { "ncq", .horkage_off = ATA_HORKAGE_NONCQ }, |
| 7594 | { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) }, |
| 7595 | { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) }, |
| 7596 | { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) }, |
| 7597 | { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) }, |
| 7598 | { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) }, |
| 7599 | { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) }, |
| 7600 | { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) }, |
| 7601 | { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) }, |
| 7602 | { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) }, |
| 7603 | { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) }, |
| 7604 | { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) }, |
| 7605 | { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) }, |
| 7606 | { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 7607 | { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 7608 | { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 7609 | { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 7610 | { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 7611 | { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 7612 | { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 7613 | { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 7614 | { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 7615 | { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 7616 | { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 7617 | { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 7618 | { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 7619 | { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 7620 | { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 7621 | { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 7622 | { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 7623 | { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 7624 | { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 7625 | { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 7626 | { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 7627 | { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) }, |
| 7628 | }; |
| 7629 | char *start = *cur, *p = *cur; |
| 7630 | char *id, *val, *endp; |
| 7631 | const struct ata_force_param *match_fp = NULL; |
| 7632 | int nr_matches = 0, i; |
| 7633 | |
| 7634 | /* find where this param ends and update *cur */ |
| 7635 | while (*p != '\0' && *p != ',') |
| 7636 | p++; |
| 7637 | |
| 7638 | if (*p == '\0') |
| 7639 | *cur = p; |
| 7640 | else |
| 7641 | *cur = p + 1; |
| 7642 | |
| 7643 | *p = '\0'; |
| 7644 | |
| 7645 | /* parse */ |
| 7646 | p = strchr(start, ':'); |
| 7647 | if (!p) { |
| 7648 | val = strstrip(start); |
| 7649 | goto parse_val; |
| 7650 | } |
| 7651 | *p = '\0'; |
| 7652 | |
| 7653 | id = strstrip(start); |
| 7654 | val = strstrip(p + 1); |
| 7655 | |
| 7656 | /* parse id */ |
| 7657 | p = strchr(id, '.'); |
| 7658 | if (p) { |
| 7659 | *p++ = '\0'; |
| 7660 | force_ent->device = simple_strtoul(p, &endp, 10); |
| 7661 | if (p == endp || *endp != '\0') { |
| 7662 | *reason = "invalid device"; |
| 7663 | return -EINVAL; |
| 7664 | } |
| 7665 | } |
| 7666 | |
| 7667 | force_ent->port = simple_strtoul(id, &endp, 10); |
| 7668 | if (p == endp || *endp != '\0') { |
| 7669 | *reason = "invalid port/link"; |
| 7670 | return -EINVAL; |
| 7671 | } |
| 7672 | |
| 7673 | parse_val: |
| 7674 | /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */ |
| 7675 | for (i = 0; i < ARRAY_SIZE(force_tbl); i++) { |
| 7676 | const struct ata_force_param *fp = &force_tbl[i]; |
| 7677 | |
| 7678 | if (strncasecmp(val, fp->name, strlen(val))) |
| 7679 | continue; |
| 7680 | |
| 7681 | nr_matches++; |
| 7682 | match_fp = fp; |
| 7683 | |
| 7684 | if (strcasecmp(val, fp->name) == 0) { |
| 7685 | nr_matches = 1; |
| 7686 | break; |
| 7687 | } |
| 7688 | } |
| 7689 | |
| 7690 | if (!nr_matches) { |
| 7691 | *reason = "unknown value"; |
| 7692 | return -EINVAL; |
| 7693 | } |
| 7694 | if (nr_matches > 1) { |
| 7695 | *reason = "ambigious value"; |
| 7696 | return -EINVAL; |
| 7697 | } |
| 7698 | |
| 7699 | force_ent->param = *match_fp; |
| 7700 | |
| 7701 | return 0; |
| 7702 | } |
| 7703 | |
| 7704 | static void __init ata_parse_force_param(void) |
| 7705 | { |
| 7706 | int idx = 0, size = 1; |
| 7707 | int last_port = -1, last_device = -1; |
| 7708 | char *p, *cur, *next; |
| 7709 | |
| 7710 | /* calculate maximum number of params and allocate force_tbl */ |
| 7711 | for (p = ata_force_param_buf; *p; p++) |
| 7712 | if (*p == ',') |
| 7713 | size++; |
| 7714 | |
| 7715 | ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL); |
| 7716 | if (!ata_force_tbl) { |
| 7717 | printk(KERN_WARNING "ata: failed to extend force table, " |
| 7718 | "libata.force ignored\n"); |
| 7719 | return; |
| 7720 | } |
| 7721 | |
| 7722 | /* parse and populate the table */ |
| 7723 | for (cur = ata_force_param_buf; *cur != '\0'; cur = next) { |
| 7724 | const char *reason = ""; |
| 7725 | struct ata_force_ent te = { .port = -1, .device = -1 }; |
| 7726 | |
| 7727 | next = cur; |
| 7728 | if (ata_parse_force_one(&next, &te, &reason)) { |
| 7729 | printk(KERN_WARNING "ata: failed to parse force " |
| 7730 | "parameter \"%s\" (%s)\n", |
| 7731 | cur, reason); |
| 7732 | continue; |
| 7733 | } |
| 7734 | |
| 7735 | if (te.port == -1) { |
| 7736 | te.port = last_port; |
| 7737 | te.device = last_device; |
| 7738 | } |
| 7739 | |
| 7740 | ata_force_tbl[idx++] = te; |
| 7741 | |
| 7742 | last_port = te.port; |
| 7743 | last_device = te.device; |
| 7744 | } |
| 7745 | |
| 7746 | ata_force_tbl_size = idx; |
| 7747 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7748 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7749 | static int __init ata_init(void) |
| 7750 | { |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 7751 | ata_probe_timeout *= HZ; |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 7752 | |
| 7753 | ata_parse_force_param(); |
| 7754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7755 | ata_wq = create_workqueue("ata"); |
| 7756 | if (!ata_wq) |
| 7757 | return -ENOMEM; |
| 7758 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 7759 | ata_aux_wq = create_singlethread_workqueue("ata_aux"); |
| 7760 | if (!ata_aux_wq) { |
| 7761 | destroy_workqueue(ata_wq); |
| 7762 | return -ENOMEM; |
| 7763 | } |
| 7764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7765 | printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n"); |
| 7766 | return 0; |
| 7767 | } |
| 7768 | |
| 7769 | static void __exit ata_exit(void) |
| 7770 | { |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 7771 | kfree(ata_force_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7772 | destroy_workqueue(ata_wq); |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 7773 | destroy_workqueue(ata_aux_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7774 | } |
| 7775 | |
Brian King | a462508 | 2006-11-13 16:32:36 -0600 | [diff] [blame] | 7776 | subsys_initcall(ata_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7777 | module_exit(ata_exit); |
| 7778 | |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 7779 | static unsigned long ratelimit_time; |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 7780 | static DEFINE_SPINLOCK(ata_ratelimit_lock); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 7781 | |
| 7782 | int ata_ratelimit(void) |
| 7783 | { |
| 7784 | int rc; |
| 7785 | unsigned long flags; |
| 7786 | |
| 7787 | spin_lock_irqsave(&ata_ratelimit_lock, flags); |
| 7788 | |
| 7789 | if (time_after(jiffies, ratelimit_time)) { |
| 7790 | rc = 1; |
| 7791 | ratelimit_time = jiffies + (HZ/5); |
| 7792 | } else |
| 7793 | rc = 0; |
| 7794 | |
| 7795 | spin_unlock_irqrestore(&ata_ratelimit_lock, flags); |
| 7796 | |
| 7797 | return rc; |
| 7798 | } |
| 7799 | |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 7800 | /** |
| 7801 | * ata_wait_register - wait until register value changes |
| 7802 | * @reg: IO-mapped register |
| 7803 | * @mask: Mask to apply to read register value |
| 7804 | * @val: Wait condition |
| 7805 | * @interval_msec: polling interval in milliseconds |
| 7806 | * @timeout_msec: timeout in milliseconds |
| 7807 | * |
| 7808 | * Waiting for some bits of register to change is a common |
| 7809 | * operation for ATA controllers. This function reads 32bit LE |
| 7810 | * IO-mapped register @reg and tests for the following condition. |
| 7811 | * |
| 7812 | * (*@reg & mask) != val |
| 7813 | * |
| 7814 | * If the condition is met, it returns; otherwise, the process is |
| 7815 | * repeated after @interval_msec until timeout. |
| 7816 | * |
| 7817 | * LOCKING: |
| 7818 | * Kernel thread context (may sleep) |
| 7819 | * |
| 7820 | * RETURNS: |
| 7821 | * The final register value. |
| 7822 | */ |
| 7823 | u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val, |
| 7824 | unsigned long interval_msec, |
| 7825 | unsigned long timeout_msec) |
| 7826 | { |
| 7827 | unsigned long timeout; |
| 7828 | u32 tmp; |
| 7829 | |
| 7830 | tmp = ioread32(reg); |
| 7831 | |
| 7832 | /* Calculate timeout _after_ the first read to make sure |
| 7833 | * preceding writes reach the controller before starting to |
| 7834 | * eat away the timeout. |
| 7835 | */ |
| 7836 | timeout = jiffies + (timeout_msec * HZ) / 1000; |
| 7837 | |
| 7838 | while ((tmp & mask) == val && time_before(jiffies, timeout)) { |
| 7839 | msleep(interval_msec); |
| 7840 | tmp = ioread32(reg); |
| 7841 | } |
| 7842 | |
| 7843 | return tmp; |
| 7844 | } |
| 7845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7846 | /* |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 7847 | * Dummy port_ops |
| 7848 | */ |
| 7849 | static void ata_dummy_noret(struct ata_port *ap) { } |
| 7850 | static int ata_dummy_ret0(struct ata_port *ap) { return 0; } |
| 7851 | static void ata_dummy_qc_noret(struct ata_queued_cmd *qc) { } |
| 7852 | |
| 7853 | static u8 ata_dummy_check_status(struct ata_port *ap) |
| 7854 | { |
| 7855 | return ATA_DRDY; |
| 7856 | } |
| 7857 | |
| 7858 | static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc) |
| 7859 | { |
| 7860 | return AC_ERR_SYSTEM; |
| 7861 | } |
| 7862 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 7863 | struct ata_port_operations ata_dummy_port_ops = { |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 7864 | .check_status = ata_dummy_check_status, |
| 7865 | .check_altstatus = ata_dummy_check_status, |
| 7866 | .dev_select = ata_noop_dev_select, |
| 7867 | .qc_prep = ata_noop_qc_prep, |
| 7868 | .qc_issue = ata_dummy_qc_issue, |
| 7869 | .freeze = ata_dummy_noret, |
| 7870 | .thaw = ata_dummy_noret, |
| 7871 | .error_handler = ata_dummy_noret, |
| 7872 | .post_internal_cmd = ata_dummy_qc_noret, |
| 7873 | .irq_clear = ata_dummy_noret, |
| 7874 | .port_start = ata_dummy_ret0, |
| 7875 | .port_stop = ata_dummy_noret, |
| 7876 | }; |
| 7877 | |
Tejun Heo | 21b0ad4 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7878 | const struct ata_port_info ata_dummy_port_info = { |
| 7879 | .port_ops = &ata_dummy_port_ops, |
| 7880 | }; |
| 7881 | |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 7882 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7883 | * libata is essentially a library of internal helper functions for |
| 7884 | * low-level ATA host controller drivers. As such, the API/ABI is |
| 7885 | * likely to change as new drivers are added and updated. |
| 7886 | * Do not depend on ABI/API stability. |
| 7887 | */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 7888 | EXPORT_SYMBOL_GPL(sata_deb_timing_normal); |
| 7889 | EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug); |
| 7890 | EXPORT_SYMBOL_GPL(sata_deb_timing_long); |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 7891 | EXPORT_SYMBOL_GPL(ata_base_port_ops); |
| 7892 | EXPORT_SYMBOL_GPL(sata_port_ops); |
| 7893 | EXPORT_SYMBOL_GPL(sata_pmp_port_ops); |
| 7894 | EXPORT_SYMBOL_GPL(ata_sff_port_ops); |
| 7895 | EXPORT_SYMBOL_GPL(ata_bmdma_port_ops); |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 7896 | EXPORT_SYMBOL_GPL(ata_dummy_port_ops); |
Tejun Heo | 21b0ad4 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7897 | EXPORT_SYMBOL_GPL(ata_dummy_port_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7898 | EXPORT_SYMBOL_GPL(ata_std_bios_param); |
| 7899 | EXPORT_SYMBOL_GPL(ata_std_ports); |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7900 | EXPORT_SYMBOL_GPL(ata_host_init); |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7901 | EXPORT_SYMBOL_GPL(ata_host_alloc); |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7902 | EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 7903 | EXPORT_SYMBOL_GPL(ata_host_start); |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7904 | EXPORT_SYMBOL_GPL(ata_host_register); |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 7905 | EXPORT_SYMBOL_GPL(ata_host_activate); |
Tejun Heo | 0529c159 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 7906 | EXPORT_SYMBOL_GPL(ata_host_detach); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7907 | EXPORT_SYMBOL_GPL(ata_sg_init); |
Tejun Heo | 9a1004d | 2006-05-31 18:27:52 +0900 | [diff] [blame] | 7908 | EXPORT_SYMBOL_GPL(ata_hsm_move); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 7909 | EXPORT_SYMBOL_GPL(ata_qc_complete); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 7910 | EXPORT_SYMBOL_GPL(ata_qc_complete_multiple); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7911 | EXPORT_SYMBOL_GPL(ata_qc_issue_prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7912 | EXPORT_SYMBOL_GPL(ata_tf_load); |
| 7913 | EXPORT_SYMBOL_GPL(ata_tf_read); |
| 7914 | EXPORT_SYMBOL_GPL(ata_noop_dev_select); |
| 7915 | EXPORT_SYMBOL_GPL(ata_std_dev_select); |
Jeff Garzik | 43727fb | 2007-02-25 16:50:52 -0500 | [diff] [blame] | 7916 | EXPORT_SYMBOL_GPL(sata_print_link_status); |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 7917 | EXPORT_SYMBOL_GPL(atapi_cmd_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7918 | EXPORT_SYMBOL_GPL(ata_tf_to_fis); |
| 7919 | EXPORT_SYMBOL_GPL(ata_tf_from_fis); |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 7920 | EXPORT_SYMBOL_GPL(ata_pack_xfermask); |
| 7921 | EXPORT_SYMBOL_GPL(ata_unpack_xfermask); |
| 7922 | EXPORT_SYMBOL_GPL(ata_xfer_mask2mode); |
| 7923 | EXPORT_SYMBOL_GPL(ata_xfer_mode2mask); |
| 7924 | EXPORT_SYMBOL_GPL(ata_xfer_mode2shift); |
| 7925 | EXPORT_SYMBOL_GPL(ata_mode_string); |
| 7926 | EXPORT_SYMBOL_GPL(ata_id_xfermask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7927 | EXPORT_SYMBOL_GPL(ata_check_status); |
| 7928 | EXPORT_SYMBOL_GPL(ata_altstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7929 | EXPORT_SYMBOL_GPL(ata_exec_command); |
| 7930 | EXPORT_SYMBOL_GPL(ata_port_start); |
Alan Cox | d92e74d | 2007-06-07 16:19:15 +0100 | [diff] [blame] | 7931 | EXPORT_SYMBOL_GPL(ata_sff_port_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7932 | EXPORT_SYMBOL_GPL(ata_interrupt); |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 7933 | EXPORT_SYMBOL_GPL(ata_do_set_mode); |
Tejun Heo | 0d5ff56 | 2007-02-01 15:06:36 +0900 | [diff] [blame] | 7934 | EXPORT_SYMBOL_GPL(ata_data_xfer); |
| 7935 | EXPORT_SYMBOL_GPL(ata_data_xfer_noirq); |
Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 7936 | EXPORT_SYMBOL_GPL(ata_std_qc_defer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7937 | EXPORT_SYMBOL_GPL(ata_qc_prep); |
Alan Cox | d26fc95 | 2007-07-06 19:13:52 -0400 | [diff] [blame] | 7938 | EXPORT_SYMBOL_GPL(ata_dumb_qc_prep); |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 7939 | EXPORT_SYMBOL_GPL(ata_noop_qc_prep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7940 | EXPORT_SYMBOL_GPL(ata_bmdma_setup); |
| 7941 | EXPORT_SYMBOL_GPL(ata_bmdma_start); |
| 7942 | EXPORT_SYMBOL_GPL(ata_bmdma_irq_clear); |
Tejun Heo | 358f9a7 | 2008-03-25 12:22:47 +0900 | [diff] [blame] | 7943 | EXPORT_SYMBOL_GPL(ata_noop_irq_clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7944 | EXPORT_SYMBOL_GPL(ata_bmdma_status); |
| 7945 | EXPORT_SYMBOL_GPL(ata_bmdma_stop); |
Tejun Heo | 6d97dbd | 2006-05-15 20:58:24 +0900 | [diff] [blame] | 7946 | EXPORT_SYMBOL_GPL(ata_bmdma_freeze); |
| 7947 | EXPORT_SYMBOL_GPL(ata_bmdma_thaw); |
Tejun Heo | 6d97dbd | 2006-05-15 20:58:24 +0900 | [diff] [blame] | 7948 | EXPORT_SYMBOL_GPL(ata_bmdma_error_handler); |
| 7949 | EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7950 | EXPORT_SYMBOL_GPL(ata_port_probe); |
Alan | 10305f0 | 2007-02-20 18:01:59 +0000 | [diff] [blame] | 7951 | EXPORT_SYMBOL_GPL(ata_dev_disable); |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 7952 | EXPORT_SYMBOL_GPL(sata_set_spd); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 7953 | EXPORT_SYMBOL_GPL(sata_link_debounce); |
| 7954 | EXPORT_SYMBOL_GPL(sata_link_resume); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7955 | EXPORT_SYMBOL_GPL(ata_bus_reset); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 7956 | EXPORT_SYMBOL_GPL(ata_std_prereset); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 7957 | EXPORT_SYMBOL_GPL(ata_std_softreset); |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 7958 | EXPORT_SYMBOL_GPL(sata_link_hardreset); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 7959 | EXPORT_SYMBOL_GPL(sata_std_hardreset); |
| 7960 | EXPORT_SYMBOL_GPL(ata_std_postreset); |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 7961 | EXPORT_SYMBOL_GPL(ata_dev_classify); |
| 7962 | EXPORT_SYMBOL_GPL(ata_dev_pair); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7963 | EXPORT_SYMBOL_GPL(ata_port_disable); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 7964 | EXPORT_SYMBOL_GPL(ata_ratelimit); |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 7965 | EXPORT_SYMBOL_GPL(ata_wait_register); |
Tejun Heo | 6f8b995 | 2006-01-24 17:05:21 +0900 | [diff] [blame] | 7966 | EXPORT_SYMBOL_GPL(ata_busy_sleep); |
Tejun Heo | 88ff6ea | 2007-10-16 14:21:24 -0700 | [diff] [blame] | 7967 | EXPORT_SYMBOL_GPL(ata_wait_after_reset); |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 7968 | EXPORT_SYMBOL_GPL(ata_wait_ready); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7969 | EXPORT_SYMBOL_GPL(ata_scsi_ioctl); |
| 7970 | EXPORT_SYMBOL_GPL(ata_scsi_queuecmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7971 | EXPORT_SYMBOL_GPL(ata_scsi_slave_config); |
Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 7972 | EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 7973 | EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7974 | EXPORT_SYMBOL_GPL(ata_host_intr); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 7975 | EXPORT_SYMBOL_GPL(sata_scr_valid); |
| 7976 | EXPORT_SYMBOL_GPL(sata_scr_read); |
| 7977 | EXPORT_SYMBOL_GPL(sata_scr_write); |
| 7978 | EXPORT_SYMBOL_GPL(sata_scr_write_flush); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 7979 | EXPORT_SYMBOL_GPL(ata_link_online); |
| 7980 | EXPORT_SYMBOL_GPL(ata_link_offline); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 7981 | #ifdef CONFIG_PM |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 7982 | EXPORT_SYMBOL_GPL(ata_host_suspend); |
| 7983 | EXPORT_SYMBOL_GPL(ata_host_resume); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 7984 | #endif /* CONFIG_PM */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 7985 | EXPORT_SYMBOL_GPL(ata_id_string); |
| 7986 | EXPORT_SYMBOL_GPL(ata_id_c_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7987 | EXPORT_SYMBOL_GPL(ata_scsi_simulate); |
| 7988 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 7989 | EXPORT_SYMBOL_GPL(ata_pio_need_iordy); |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 7990 | EXPORT_SYMBOL_GPL(ata_timing_find_mode); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 7991 | EXPORT_SYMBOL_GPL(ata_timing_compute); |
| 7992 | EXPORT_SYMBOL_GPL(ata_timing_merge); |
Tejun Heo | a0f79b9 | 2007-12-18 16:33:05 +0900 | [diff] [blame] | 7993 | EXPORT_SYMBOL_GPL(ata_timing_cycle2mode); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 7994 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7995 | #ifdef CONFIG_PCI |
| 7996 | EXPORT_SYMBOL_GPL(pci_test_config_bits); |
Tejun Heo | d583bc1 | 2007-07-04 18:02:07 +0900 | [diff] [blame] | 7997 | EXPORT_SYMBOL_GPL(ata_pci_init_sff_host); |
Tejun Heo | 1626aeb | 2007-05-04 12:43:58 +0200 | [diff] [blame] | 7998 | EXPORT_SYMBOL_GPL(ata_pci_init_bmdma); |
Tejun Heo | d583bc1 | 2007-07-04 18:02:07 +0900 | [diff] [blame] | 7999 | EXPORT_SYMBOL_GPL(ata_pci_prepare_sff_host); |
Tejun Heo | 4e6b79f | 2008-01-18 18:36:28 +0900 | [diff] [blame] | 8000 | EXPORT_SYMBOL_GPL(ata_pci_activate_sff_host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8001 | EXPORT_SYMBOL_GPL(ata_pci_init_one); |
| 8002 | EXPORT_SYMBOL_GPL(ata_pci_remove_one); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 8003 | #ifdef CONFIG_PM |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 8004 | EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend); |
| 8005 | EXPORT_SYMBOL_GPL(ata_pci_device_do_resume); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 8006 | EXPORT_SYMBOL_GPL(ata_pci_device_suspend); |
| 8007 | EXPORT_SYMBOL_GPL(ata_pci_device_resume); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 8008 | #endif /* CONFIG_PM */ |
Alan Cox | 67951ad | 2006-03-22 15:55:54 +0000 | [diff] [blame] | 8009 | EXPORT_SYMBOL_GPL(ata_pci_default_filter); |
| 8010 | EXPORT_SYMBOL_GPL(ata_pci_clear_simplex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8011 | #endif /* CONFIG_PCI */ |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 8012 | |
Tejun Heo | 31f8838 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 8013 | EXPORT_SYMBOL_GPL(sata_pmp_qc_defer_cmd_switch); |
Tejun Heo | 3af9a77 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 8014 | EXPORT_SYMBOL_GPL(sata_pmp_std_prereset); |
| 8015 | EXPORT_SYMBOL_GPL(sata_pmp_std_hardreset); |
| 8016 | EXPORT_SYMBOL_GPL(sata_pmp_std_postreset); |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame^] | 8017 | EXPORT_SYMBOL_GPL(sata_pmp_error_handler); |
Tejun Heo | 3af9a77 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 8018 | |
Tejun Heo | b64bbc3 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 8019 | EXPORT_SYMBOL_GPL(__ata_ehi_push_desc); |
| 8020 | EXPORT_SYMBOL_GPL(ata_ehi_push_desc); |
| 8021 | EXPORT_SYMBOL_GPL(ata_ehi_clear_desc); |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 8022 | EXPORT_SYMBOL_GPL(ata_port_desc); |
| 8023 | #ifdef CONFIG_PCI |
| 8024 | EXPORT_SYMBOL_GPL(ata_port_pbar_desc); |
| 8025 | #endif /* CONFIG_PCI */ |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 8026 | EXPORT_SYMBOL_GPL(ata_port_schedule_eh); |
Tejun Heo | dbd8261 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 8027 | EXPORT_SYMBOL_GPL(ata_link_abort); |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 8028 | EXPORT_SYMBOL_GPL(ata_port_abort); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 8029 | EXPORT_SYMBOL_GPL(ata_port_freeze); |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 8030 | EXPORT_SYMBOL_GPL(sata_async_notification); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 8031 | EXPORT_SYMBOL_GPL(ata_eh_freeze_port); |
| 8032 | EXPORT_SYMBOL_GPL(ata_eh_thaw_port); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 8033 | EXPORT_SYMBOL_GPL(ata_eh_qc_complete); |
| 8034 | EXPORT_SYMBOL_GPL(ata_eh_qc_retry); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 8035 | EXPORT_SYMBOL_GPL(ata_do_eh); |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame^] | 8036 | EXPORT_SYMBOL_GPL(ata_std_error_handler); |
Akira Iguchi | 8362500 | 2007-01-26 16:27:32 +0900 | [diff] [blame] | 8037 | EXPORT_SYMBOL_GPL(ata_irq_on); |
Akira Iguchi | a619f981b | 2007-01-26 16:28:18 +0900 | [diff] [blame] | 8038 | EXPORT_SYMBOL_GPL(ata_dev_try_classify); |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 8039 | |
| 8040 | EXPORT_SYMBOL_GPL(ata_cable_40wire); |
| 8041 | EXPORT_SYMBOL_GPL(ata_cable_80wire); |
| 8042 | EXPORT_SYMBOL_GPL(ata_cable_unknown); |
Tejun Heo | c88f90c | 2007-11-27 19:43:48 +0900 | [diff] [blame] | 8043 | EXPORT_SYMBOL_GPL(ata_cable_ignore); |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 8044 | EXPORT_SYMBOL_GPL(ata_cable_sata); |