Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jeff Garzik | af36d7f | 2005-08-28 20:18:39 -0400 | [diff] [blame] | 2 | * libata-core.c - helper library for ATA |
| 3 | * |
| 4 | * Maintained by: Jeff Garzik <jgarzik@pobox.com> |
| 5 | * Please ALWAYS copy linux-ide@vger.kernel.org |
| 6 | * on emails. |
| 7 | * |
| 8 | * Copyright 2003-2004 Red Hat, Inc. All rights reserved. |
| 9 | * Copyright 2003-2004 Jeff Garzik |
| 10 | * |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2, or (at your option) |
| 15 | * any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; see the file COPYING. If not, write to |
| 24 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 25 | * |
| 26 | * |
| 27 | * libata documentation is available via 'make {ps|pdf}docs', |
| 28 | * as Documentation/DocBook/libata.* |
| 29 | * |
| 30 | * Hardware documentation available from http://www.t13.org/ and |
| 31 | * http://www.sata-io.org/ |
| 32 | * |
Alan Cox | 92c52c5 | 2007-11-19 14:30:16 +0000 | [diff] [blame] | 33 | * Standards documents from: |
| 34 | * http://www.t13.org (ATA standards, PCI DMA IDE spec) |
| 35 | * http://www.t10.org (SCSI MMC - for ATAPI MMC) |
| 36 | * http://www.sata-io.org (SATA) |
| 37 | * http://www.compactflash.org (CF) |
| 38 | * http://www.qic.org (QIC157 - Tape and DSC) |
| 39 | * http://www.ce-ata.org (CE-ATA: not supported) |
| 40 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | */ |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/kernel.h> |
| 44 | #include <linux/module.h> |
| 45 | #include <linux/pci.h> |
| 46 | #include <linux/init.h> |
| 47 | #include <linux/list.h> |
| 48 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/spinlock.h> |
| 50 | #include <linux/blkdev.h> |
| 51 | #include <linux/delay.h> |
| 52 | #include <linux/timer.h> |
| 53 | #include <linux/interrupt.h> |
| 54 | #include <linux/completion.h> |
| 55 | #include <linux/suspend.h> |
| 56 | #include <linux/workqueue.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 57 | #include <linux/scatterlist.h> |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 58 | #include <linux/io.h> |
Arjan van de Ven | 7931805 | 2009-01-04 05:32:28 -0800 | [diff] [blame] | 59 | #include <linux/async.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <scsi/scsi.h> |
Jeff Garzik | 193515d | 2005-11-07 00:59:37 -0500 | [diff] [blame] | 61 | #include <scsi/scsi_cmnd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #include <scsi/scsi_host.h> |
| 63 | #include <linux/libata.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <asm/byteorder.h> |
Tejun Heo | 140b5e59 | 2007-12-12 12:21:52 +0900 | [diff] [blame] | 65 | #include <linux/cdrom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | #include "libata.h" |
| 68 | |
Jeff Garzik | fda0efc | 2007-01-31 07:43:15 -0500 | [diff] [blame] | 69 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 70 | /* debounce timing parameters in msecs { interval, duration, timeout } */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 71 | const unsigned long sata_deb_timing_normal[] = { 5, 100, 2000 }; |
| 72 | const unsigned long sata_deb_timing_hotplug[] = { 25, 500, 2000 }; |
| 73 | const unsigned long sata_deb_timing_long[] = { 100, 2000, 5000 }; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 74 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 75 | const struct ata_port_operations ata_base_port_ops = { |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 76 | .prereset = ata_std_prereset, |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 77 | .postreset = ata_std_postreset, |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame] | 78 | .error_handler = ata_std_error_handler, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | const struct ata_port_operations sata_port_ops = { |
| 82 | .inherits = &ata_base_port_ops, |
| 83 | |
| 84 | .qc_defer = ata_std_qc_defer, |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 85 | .hardreset = sata_std_hardreset, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 86 | }; |
| 87 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 88 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 89 | u16 heads, u16 sectors); |
| 90 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev); |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 91 | static unsigned int ata_dev_set_feature(struct ata_device *dev, |
| 92 | u8 enable, u8 feature); |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 93 | static void ata_dev_xfermask(struct ata_device *dev); |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 94 | static unsigned long ata_dev_blacklisted(const struct ata_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 96 | unsigned int ata_print_id = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | static struct workqueue_struct *ata_wq; |
| 98 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 99 | struct workqueue_struct *ata_aux_wq; |
| 100 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 101 | struct ata_force_param { |
| 102 | const char *name; |
| 103 | unsigned int cbl; |
| 104 | int spd_limit; |
| 105 | unsigned long xfer_mask; |
| 106 | unsigned int horkage_on; |
| 107 | unsigned int horkage_off; |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 108 | unsigned int lflags; |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | struct ata_force_ent { |
| 112 | int port; |
| 113 | int device; |
| 114 | struct ata_force_param param; |
| 115 | }; |
| 116 | |
| 117 | static struct ata_force_ent *ata_force_tbl; |
| 118 | static int ata_force_tbl_size; |
| 119 | |
| 120 | static char ata_force_param_buf[PAGE_SIZE] __initdata; |
Tejun Heo | 7afb422 | 2008-03-09 20:21:53 +0900 | [diff] [blame] | 121 | /* param_buf is thrown away after initialization, disallow read */ |
| 122 | module_param_string(force, ata_force_param_buf, sizeof(ata_force_param_buf), 0); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 123 | MODULE_PARM_DESC(force, "Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details)"); |
| 124 | |
Tejun Heo | 2486fa5 | 2008-07-31 07:52:40 +0900 | [diff] [blame] | 125 | static int atapi_enabled = 1; |
Jeff Garzik | 1623c81 | 2005-08-30 03:37:42 -0400 | [diff] [blame] | 126 | module_param(atapi_enabled, int, 0444); |
| 127 | MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)"); |
| 128 | |
Adrian Bunk | c5c61bd | 2008-02-25 02:07:25 +0200 | [diff] [blame] | 129 | static int atapi_dmadir = 0; |
Albert Lee | 95de719 | 2006-04-04 10:57:18 +0800 | [diff] [blame] | 130 | module_param(atapi_dmadir, int, 0444); |
| 131 | MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)"); |
| 132 | |
Mark Lord | baf4fdf | 2007-08-08 01:08:45 +0900 | [diff] [blame] | 133 | int atapi_passthru16 = 1; |
| 134 | module_param(atapi_passthru16, int, 0444); |
| 135 | MODULE_PARM_DESC(atapi_passthru16, "Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on)"); |
| 136 | |
Jeff Garzik | c3c013a | 2006-02-27 22:31:19 -0500 | [diff] [blame] | 137 | int libata_fua = 0; |
| 138 | module_param_named(fua, libata_fua, int, 0444); |
| 139 | MODULE_PARM_DESC(fua, "FUA support (0=off, 1=on)"); |
| 140 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 141 | static int ata_ignore_hpa; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 142 | module_param_named(ignore_hpa, ata_ignore_hpa, int, 0644); |
| 143 | MODULE_PARM_DESC(ignore_hpa, "Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk)"); |
| 144 | |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 145 | static int libata_dma_mask = ATA_DMA_MASK_ATA|ATA_DMA_MASK_ATAPI|ATA_DMA_MASK_CFA; |
| 146 | module_param_named(dma, libata_dma_mask, int, 0444); |
| 147 | MODULE_PARM_DESC(dma, "DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF)"); |
| 148 | |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 149 | static int ata_probe_timeout; |
Andrew Morton | a8601e5 | 2006-06-25 01:36:52 -0700 | [diff] [blame] | 150 | module_param(ata_probe_timeout, int, 0444); |
| 151 | MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)"); |
| 152 | |
Jeff Garzik | 6ebe9d8 | 2007-10-05 16:28:36 -0400 | [diff] [blame] | 153 | int libata_noacpi = 0; |
Jeff Garzik | d7d0dad | 2007-03-28 01:57:37 -0400 | [diff] [blame] | 154 | module_param_named(noacpi, libata_noacpi, int, 0444); |
Jeff Garzik | 6ebe9d8 | 2007-10-05 16:28:36 -0400 | [diff] [blame] | 155 | MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in probe/suspend/resume when set"); |
Kristen Carlson Accardi | 11ef697 | 2006-09-28 11:29:01 -0700 | [diff] [blame] | 156 | |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 157 | int libata_allow_tpm = 0; |
| 158 | module_param_named(allow_tpm, libata_allow_tpm, int, 0444); |
| 159 | MODULE_PARM_DESC(allow_tpm, "Permit the use of TPM commands"); |
| 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | MODULE_AUTHOR("Jeff Garzik"); |
| 162 | MODULE_DESCRIPTION("Library module for ATA devices"); |
| 163 | MODULE_LICENSE("GPL"); |
| 164 | MODULE_VERSION(DRV_VERSION); |
| 165 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 166 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 167 | /** |
| 168 | * ata_link_next - link iteration helper |
| 169 | * @link: the previous link, NULL to start |
| 170 | * @ap: ATA port containing links to iterate |
| 171 | * @mode: iteration mode, one of ATA_LITER_* |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 172 | * |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 173 | * LOCKING: |
| 174 | * Host lock or EH context. |
| 175 | * |
| 176 | * RETURNS: |
| 177 | * Pointer to the next link. |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 178 | */ |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 179 | struct ata_link *ata_link_next(struct ata_link *link, struct ata_port *ap, |
| 180 | enum ata_link_iter_mode mode) |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 181 | { |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 182 | BUG_ON(mode != ATA_LITER_EDGE && |
| 183 | mode != ATA_LITER_PMP_FIRST && mode != ATA_LITER_HOST_FIRST); |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 184 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 185 | /* NULL link indicates start of iteration */ |
| 186 | if (!link) |
| 187 | switch (mode) { |
| 188 | case ATA_LITER_EDGE: |
| 189 | case ATA_LITER_PMP_FIRST: |
| 190 | if (sata_pmp_attached(ap)) |
| 191 | return ap->pmp_link; |
| 192 | /* fall through */ |
| 193 | case ATA_LITER_HOST_FIRST: |
| 194 | return &ap->link; |
| 195 | } |
| 196 | |
| 197 | /* we just iterated over the host link, what's next? */ |
| 198 | if (link == &ap->link) |
| 199 | switch (mode) { |
| 200 | case ATA_LITER_HOST_FIRST: |
| 201 | if (sata_pmp_attached(ap)) |
| 202 | return ap->pmp_link; |
| 203 | /* fall through */ |
| 204 | case ATA_LITER_PMP_FIRST: |
| 205 | if (unlikely(ap->slave_link)) |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 206 | return ap->slave_link; |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 207 | /* fall through */ |
| 208 | case ATA_LITER_EDGE: |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 209 | return NULL; |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 210 | } |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 211 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 212 | /* slave_link excludes PMP */ |
| 213 | if (unlikely(link == ap->slave_link)) |
| 214 | return NULL; |
| 215 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 216 | /* we were over a PMP link */ |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 217 | if (++link < ap->pmp_link + ap->nr_pmp_links) |
| 218 | return link; |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 219 | |
| 220 | if (mode == ATA_LITER_PMP_FIRST) |
| 221 | return &ap->link; |
| 222 | |
Tejun Heo | aadffb6 | 2008-07-31 17:02:41 +0900 | [diff] [blame] | 223 | return NULL; |
| 224 | } |
| 225 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 226 | /** |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 227 | * ata_dev_next - device iteration helper |
| 228 | * @dev: the previous device, NULL to start |
| 229 | * @link: ATA link containing devices to iterate |
| 230 | * @mode: iteration mode, one of ATA_DITER_* |
| 231 | * |
| 232 | * LOCKING: |
| 233 | * Host lock or EH context. |
| 234 | * |
| 235 | * RETURNS: |
| 236 | * Pointer to the next device. |
| 237 | */ |
| 238 | struct ata_device *ata_dev_next(struct ata_device *dev, struct ata_link *link, |
| 239 | enum ata_dev_iter_mode mode) |
| 240 | { |
| 241 | BUG_ON(mode != ATA_DITER_ENABLED && mode != ATA_DITER_ENABLED_REVERSE && |
| 242 | mode != ATA_DITER_ALL && mode != ATA_DITER_ALL_REVERSE); |
| 243 | |
| 244 | /* NULL dev indicates start of iteration */ |
| 245 | if (!dev) |
| 246 | switch (mode) { |
| 247 | case ATA_DITER_ENABLED: |
| 248 | case ATA_DITER_ALL: |
| 249 | dev = link->device; |
| 250 | goto check; |
| 251 | case ATA_DITER_ENABLED_REVERSE: |
| 252 | case ATA_DITER_ALL_REVERSE: |
| 253 | dev = link->device + ata_link_max_devices(link) - 1; |
| 254 | goto check; |
| 255 | } |
| 256 | |
| 257 | next: |
| 258 | /* move to the next one */ |
| 259 | switch (mode) { |
| 260 | case ATA_DITER_ENABLED: |
| 261 | case ATA_DITER_ALL: |
| 262 | if (++dev < link->device + ata_link_max_devices(link)) |
| 263 | goto check; |
| 264 | return NULL; |
| 265 | case ATA_DITER_ENABLED_REVERSE: |
| 266 | case ATA_DITER_ALL_REVERSE: |
| 267 | if (--dev >= link->device) |
| 268 | goto check; |
| 269 | return NULL; |
| 270 | } |
| 271 | |
| 272 | check: |
| 273 | if ((mode == ATA_DITER_ENABLED || mode == ATA_DITER_ENABLED_REVERSE) && |
| 274 | !ata_dev_enabled(dev)) |
| 275 | goto next; |
| 276 | return dev; |
| 277 | } |
| 278 | |
| 279 | /** |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 280 | * ata_dev_phys_link - find physical link for a device |
| 281 | * @dev: ATA device to look up physical link for |
| 282 | * |
| 283 | * Look up physical link which @dev is attached to. Note that |
| 284 | * this is different from @dev->link only when @dev is on slave |
| 285 | * link. For all other cases, it's the same as @dev->link. |
| 286 | * |
| 287 | * LOCKING: |
| 288 | * Don't care. |
| 289 | * |
| 290 | * RETURNS: |
| 291 | * Pointer to the found physical link. |
| 292 | */ |
| 293 | struct ata_link *ata_dev_phys_link(struct ata_device *dev) |
| 294 | { |
| 295 | struct ata_port *ap = dev->link->ap; |
| 296 | |
| 297 | if (!ap->slave_link) |
| 298 | return dev->link; |
| 299 | if (!dev->devno) |
| 300 | return &ap->link; |
| 301 | return ap->slave_link; |
| 302 | } |
| 303 | |
| 304 | /** |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 305 | * ata_force_cbl - force cable type according to libata.force |
Randy Dunlap | 4cdfa1b | 2008-02-22 12:21:37 -0800 | [diff] [blame] | 306 | * @ap: ATA port of interest |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 307 | * |
| 308 | * Force cable type according to libata.force and whine about it. |
| 309 | * The last entry which has matching port number is used, so it |
| 310 | * can be specified as part of device force parameters. For |
| 311 | * example, both "a:40c,1.00:udma4" and "1.00:40c,udma4" have the |
| 312 | * same effect. |
| 313 | * |
| 314 | * LOCKING: |
| 315 | * EH context. |
| 316 | */ |
| 317 | void ata_force_cbl(struct ata_port *ap) |
| 318 | { |
| 319 | int i; |
| 320 | |
| 321 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 322 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 323 | |
| 324 | if (fe->port != -1 && fe->port != ap->print_id) |
| 325 | continue; |
| 326 | |
| 327 | if (fe->param.cbl == ATA_CBL_NONE) |
| 328 | continue; |
| 329 | |
| 330 | ap->cbl = fe->param.cbl; |
| 331 | ata_port_printk(ap, KERN_NOTICE, |
| 332 | "FORCE: cable set to %s\n", fe->param.name); |
| 333 | return; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | /** |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 338 | * ata_force_link_limits - force link limits according to libata.force |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 339 | * @link: ATA link of interest |
| 340 | * |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 341 | * Force link flags and SATA spd limit according to libata.force |
| 342 | * and whine about it. When only the port part is specified |
| 343 | * (e.g. 1:), the limit applies to all links connected to both |
| 344 | * the host link and all fan-out ports connected via PMP. If the |
| 345 | * device part is specified as 0 (e.g. 1.00:), it specifies the |
| 346 | * first fan-out link not the host link. Device number 15 always |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 347 | * points to the host link whether PMP is attached or not. If the |
| 348 | * controller has slave link, device number 16 points to it. |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 349 | * |
| 350 | * LOCKING: |
| 351 | * EH context. |
| 352 | */ |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 353 | static void ata_force_link_limits(struct ata_link *link) |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 354 | { |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 355 | bool did_spd = false; |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 356 | int linkno = link->pmp; |
| 357 | int i; |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 358 | |
| 359 | if (ata_is_host_link(link)) |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 360 | linkno += 15; |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 361 | |
| 362 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 363 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 364 | |
| 365 | if (fe->port != -1 && fe->port != link->ap->print_id) |
| 366 | continue; |
| 367 | |
| 368 | if (fe->device != -1 && fe->device != linkno) |
| 369 | continue; |
| 370 | |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 371 | /* only honor the first spd limit */ |
| 372 | if (!did_spd && fe->param.spd_limit) { |
| 373 | link->hw_sata_spd_limit = (1 << fe->param.spd_limit) - 1; |
| 374 | ata_link_printk(link, KERN_NOTICE, |
| 375 | "FORCE: PHY spd limit set to %s\n", |
| 376 | fe->param.name); |
| 377 | did_spd = true; |
| 378 | } |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 379 | |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 380 | /* let lflags stack */ |
| 381 | if (fe->param.lflags) { |
| 382 | link->flags |= fe->param.lflags; |
| 383 | ata_link_printk(link, KERN_NOTICE, |
| 384 | "FORCE: link flag 0x%x forced -> 0x%x\n", |
| 385 | fe->param.lflags, link->flags); |
| 386 | } |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 387 | } |
| 388 | } |
| 389 | |
| 390 | /** |
| 391 | * ata_force_xfermask - force xfermask according to libata.force |
| 392 | * @dev: ATA device of interest |
| 393 | * |
| 394 | * Force xfer_mask according to libata.force and whine about it. |
| 395 | * For consistency with link selection, device number 15 selects |
| 396 | * the first device connected to the host link. |
| 397 | * |
| 398 | * LOCKING: |
| 399 | * EH context. |
| 400 | */ |
| 401 | static void ata_force_xfermask(struct ata_device *dev) |
| 402 | { |
| 403 | int devno = dev->link->pmp + dev->devno; |
| 404 | int alt_devno = devno; |
| 405 | int i; |
| 406 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 407 | /* allow n.15/16 for devices attached to host port */ |
| 408 | if (ata_is_host_link(dev->link)) |
| 409 | alt_devno += 15; |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 410 | |
| 411 | for (i = ata_force_tbl_size - 1; i >= 0; i--) { |
| 412 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 413 | unsigned long pio_mask, mwdma_mask, udma_mask; |
| 414 | |
| 415 | if (fe->port != -1 && fe->port != dev->link->ap->print_id) |
| 416 | continue; |
| 417 | |
| 418 | if (fe->device != -1 && fe->device != devno && |
| 419 | fe->device != alt_devno) |
| 420 | continue; |
| 421 | |
| 422 | if (!fe->param.xfer_mask) |
| 423 | continue; |
| 424 | |
| 425 | ata_unpack_xfermask(fe->param.xfer_mask, |
| 426 | &pio_mask, &mwdma_mask, &udma_mask); |
| 427 | if (udma_mask) |
| 428 | dev->udma_mask = udma_mask; |
| 429 | else if (mwdma_mask) { |
| 430 | dev->udma_mask = 0; |
| 431 | dev->mwdma_mask = mwdma_mask; |
| 432 | } else { |
| 433 | dev->udma_mask = 0; |
| 434 | dev->mwdma_mask = 0; |
| 435 | dev->pio_mask = pio_mask; |
| 436 | } |
| 437 | |
| 438 | ata_dev_printk(dev, KERN_NOTICE, |
| 439 | "FORCE: xfer_mask set to %s\n", fe->param.name); |
| 440 | return; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | /** |
| 445 | * ata_force_horkage - force horkage according to libata.force |
| 446 | * @dev: ATA device of interest |
| 447 | * |
| 448 | * Force horkage according to libata.force and whine about it. |
| 449 | * For consistency with link selection, device number 15 selects |
| 450 | * the first device connected to the host link. |
| 451 | * |
| 452 | * LOCKING: |
| 453 | * EH context. |
| 454 | */ |
| 455 | static void ata_force_horkage(struct ata_device *dev) |
| 456 | { |
| 457 | int devno = dev->link->pmp + dev->devno; |
| 458 | int alt_devno = devno; |
| 459 | int i; |
| 460 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 461 | /* allow n.15/16 for devices attached to host port */ |
| 462 | if (ata_is_host_link(dev->link)) |
| 463 | alt_devno += 15; |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 464 | |
| 465 | for (i = 0; i < ata_force_tbl_size; i++) { |
| 466 | const struct ata_force_ent *fe = &ata_force_tbl[i]; |
| 467 | |
| 468 | if (fe->port != -1 && fe->port != dev->link->ap->print_id) |
| 469 | continue; |
| 470 | |
| 471 | if (fe->device != -1 && fe->device != devno && |
| 472 | fe->device != alt_devno) |
| 473 | continue; |
| 474 | |
| 475 | if (!(~dev->horkage & fe->param.horkage_on) && |
| 476 | !(dev->horkage & fe->param.horkage_off)) |
| 477 | continue; |
| 478 | |
| 479 | dev->horkage |= fe->param.horkage_on; |
| 480 | dev->horkage &= ~fe->param.horkage_off; |
| 481 | |
| 482 | ata_dev_printk(dev, KERN_NOTICE, |
| 483 | "FORCE: horkage modified (%s)\n", fe->param.name); |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | /** |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 488 | * atapi_cmd_type - Determine ATAPI command type from SCSI opcode |
| 489 | * @opcode: SCSI opcode |
| 490 | * |
| 491 | * Determine ATAPI command type from @opcode. |
| 492 | * |
| 493 | * LOCKING: |
| 494 | * None. |
| 495 | * |
| 496 | * RETURNS: |
| 497 | * ATAPI_{READ|WRITE|READ_CD|PASS_THRU|MISC} |
| 498 | */ |
| 499 | int atapi_cmd_type(u8 opcode) |
| 500 | { |
| 501 | switch (opcode) { |
| 502 | case GPCMD_READ_10: |
| 503 | case GPCMD_READ_12: |
| 504 | return ATAPI_READ; |
| 505 | |
| 506 | case GPCMD_WRITE_10: |
| 507 | case GPCMD_WRITE_12: |
| 508 | case GPCMD_WRITE_AND_VERIFY_10: |
| 509 | return ATAPI_WRITE; |
| 510 | |
| 511 | case GPCMD_READ_CD: |
| 512 | case GPCMD_READ_CD_MSF: |
| 513 | return ATAPI_READ_CD; |
| 514 | |
Tejun Heo | e52dcc4 | 2008-04-02 17:35:19 +0900 | [diff] [blame] | 515 | case ATA_16: |
| 516 | case ATA_12: |
| 517 | if (atapi_passthru16) |
| 518 | return ATAPI_PASS_THRU; |
| 519 | /* fall thru */ |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 520 | default: |
| 521 | return ATAPI_MISC; |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | * ata_tf_to_fis - Convert ATA taskfile to SATA FIS structure |
| 527 | * @tf: Taskfile to convert |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | * @pmp: Port multiplier port |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 529 | * @is_cmd: This FIS is for command |
| 530 | * @fis: Buffer into which data will output |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | * |
| 532 | * Converts a standard ATA taskfile to a Serial ATA |
| 533 | * FIS structure (Register - Host to Device). |
| 534 | * |
| 535 | * LOCKING: |
| 536 | * Inherited from caller. |
| 537 | */ |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 538 | 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] | 539 | { |
Tejun Heo | 9977126 | 2007-07-16 14:29:38 +0900 | [diff] [blame] | 540 | fis[0] = 0x27; /* Register - Host to Device FIS */ |
| 541 | fis[1] = pmp & 0xf; /* Port multiplier number*/ |
| 542 | if (is_cmd) |
| 543 | fis[1] |= (1 << 7); /* bit 7 indicates Command FIS */ |
| 544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | fis[2] = tf->command; |
| 546 | fis[3] = tf->feature; |
| 547 | |
| 548 | fis[4] = tf->lbal; |
| 549 | fis[5] = tf->lbam; |
| 550 | fis[6] = tf->lbah; |
| 551 | fis[7] = tf->device; |
| 552 | |
| 553 | fis[8] = tf->hob_lbal; |
| 554 | fis[9] = tf->hob_lbam; |
| 555 | fis[10] = tf->hob_lbah; |
| 556 | fis[11] = tf->hob_feature; |
| 557 | |
| 558 | fis[12] = tf->nsect; |
| 559 | fis[13] = tf->hob_nsect; |
| 560 | fis[14] = 0; |
| 561 | fis[15] = tf->ctl; |
| 562 | |
| 563 | fis[16] = 0; |
| 564 | fis[17] = 0; |
| 565 | fis[18] = 0; |
| 566 | fis[19] = 0; |
| 567 | } |
| 568 | |
| 569 | /** |
| 570 | * ata_tf_from_fis - Convert SATA FIS to ATA taskfile |
| 571 | * @fis: Buffer from which data will be input |
| 572 | * @tf: Taskfile to output |
| 573 | * |
Mark Lord | e12a1be | 2005-11-12 18:55:45 -0500 | [diff] [blame] | 574 | * Converts a serial ATA FIS structure to a standard ATA taskfile. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | * |
| 576 | * LOCKING: |
| 577 | * Inherited from caller. |
| 578 | */ |
| 579 | |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 580 | void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | { |
| 582 | tf->command = fis[2]; /* status */ |
| 583 | tf->feature = fis[3]; /* error */ |
| 584 | |
| 585 | tf->lbal = fis[4]; |
| 586 | tf->lbam = fis[5]; |
| 587 | tf->lbah = fis[6]; |
| 588 | tf->device = fis[7]; |
| 589 | |
| 590 | tf->hob_lbal = fis[8]; |
| 591 | tf->hob_lbam = fis[9]; |
| 592 | tf->hob_lbah = fis[10]; |
| 593 | |
| 594 | tf->nsect = fis[12]; |
| 595 | tf->hob_nsect = fis[13]; |
| 596 | } |
| 597 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 598 | static const u8 ata_rw_cmds[] = { |
| 599 | /* pio multi */ |
| 600 | ATA_CMD_READ_MULTI, |
| 601 | ATA_CMD_WRITE_MULTI, |
| 602 | ATA_CMD_READ_MULTI_EXT, |
| 603 | ATA_CMD_WRITE_MULTI_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 604 | 0, |
| 605 | 0, |
| 606 | 0, |
| 607 | ATA_CMD_WRITE_MULTI_FUA_EXT, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 608 | /* pio */ |
| 609 | ATA_CMD_PIO_READ, |
| 610 | ATA_CMD_PIO_WRITE, |
| 611 | ATA_CMD_PIO_READ_EXT, |
| 612 | ATA_CMD_PIO_WRITE_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 613 | 0, |
| 614 | 0, |
| 615 | 0, |
| 616 | 0, |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 617 | /* dma */ |
| 618 | ATA_CMD_READ, |
| 619 | ATA_CMD_WRITE, |
| 620 | ATA_CMD_READ_EXT, |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 621 | ATA_CMD_WRITE_EXT, |
| 622 | 0, |
| 623 | 0, |
| 624 | 0, |
| 625 | ATA_CMD_WRITE_FUA_EXT |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 626 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
| 628 | /** |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 629 | * ata_rwcmd_protocol - set taskfile r/w commands and protocol |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 630 | * @tf: command to examine and configure |
| 631 | * @dev: device tf belongs to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | * |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 633 | * Examine the device configuration and tf->flags to calculate |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 634 | * the proper read/write commands and protocol to use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | * |
| 636 | * LOCKING: |
| 637 | * caller. |
| 638 | */ |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 639 | 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] | 640 | { |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 641 | u8 cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 643 | int index, fua, lba48, write; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 644 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 645 | fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 646 | lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0; |
| 647 | write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 649 | if (dev->flags & ATA_DFLAG_PIO) { |
| 650 | tf->protocol = ATA_PROT_PIO; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 651 | index = dev->multi_count ? 0 : 8; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 652 | } else if (lba48 && (dev->link->ap->flags & ATA_FLAG_PIO_LBA48)) { |
Alan Cox | 8d238e0 | 2006-01-17 20:50:31 +0000 | [diff] [blame] | 653 | /* Unable to use DMA due to host limitation */ |
| 654 | tf->protocol = ATA_PROT_PIO; |
Albert Lee | 0565c26 | 2006-02-13 18:55:25 +0800 | [diff] [blame] | 655 | index = dev->multi_count ? 0 : 8; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 656 | } else { |
| 657 | tf->protocol = ATA_PROT_DMA; |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 658 | index = 16; |
Albert Lee | 8cbd6df | 2005-10-12 15:06:27 +0800 | [diff] [blame] | 659 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
Tejun Heo | 9a3dccc | 2006-01-06 09:56:18 +0100 | [diff] [blame] | 661 | cmd = ata_rw_cmds[index + fua + lba48 + write]; |
| 662 | if (cmd) { |
| 663 | tf->command = cmd; |
| 664 | return 0; |
| 665 | } |
| 666 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 669 | /** |
Tejun Heo | 35b649f | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 670 | * ata_tf_read_block - Read block address from ATA taskfile |
| 671 | * @tf: ATA taskfile of interest |
| 672 | * @dev: ATA device @tf belongs to |
| 673 | * |
| 674 | * LOCKING: |
| 675 | * None. |
| 676 | * |
| 677 | * Read block address from @tf. This function can handle all |
| 678 | * three address formats - LBA, LBA48 and CHS. tf->protocol and |
| 679 | * flags select the address format to use. |
| 680 | * |
| 681 | * RETURNS: |
| 682 | * Block address read from @tf. |
| 683 | */ |
| 684 | u64 ata_tf_read_block(struct ata_taskfile *tf, struct ata_device *dev) |
| 685 | { |
| 686 | u64 block = 0; |
| 687 | |
| 688 | if (tf->flags & ATA_TFLAG_LBA) { |
| 689 | if (tf->flags & ATA_TFLAG_LBA48) { |
| 690 | block |= (u64)tf->hob_lbah << 40; |
| 691 | block |= (u64)tf->hob_lbam << 32; |
Roland Dreier | 44901a9 | 2008-11-04 10:34:48 -0800 | [diff] [blame] | 692 | block |= (u64)tf->hob_lbal << 24; |
Tejun Heo | 35b649f | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 693 | } else |
| 694 | block |= (tf->device & 0xf) << 24; |
| 695 | |
| 696 | block |= tf->lbah << 16; |
| 697 | block |= tf->lbam << 8; |
| 698 | block |= tf->lbal; |
| 699 | } else { |
| 700 | u32 cyl, head, sect; |
| 701 | |
| 702 | cyl = tf->lbam | (tf->lbah << 8); |
| 703 | head = tf->device & 0xf; |
| 704 | sect = tf->lbal; |
| 705 | |
| 706 | block = (cyl * dev->heads + head) * dev->sectors + sect; |
| 707 | } |
| 708 | |
| 709 | return block; |
| 710 | } |
| 711 | |
| 712 | /** |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 713 | * ata_build_rw_tf - Build ATA taskfile for given read/write request |
| 714 | * @tf: Target ATA taskfile |
| 715 | * @dev: ATA device @tf belongs to |
| 716 | * @block: Block address |
| 717 | * @n_block: Number of blocks |
| 718 | * @tf_flags: RW/FUA etc... |
| 719 | * @tag: tag |
| 720 | * |
| 721 | * LOCKING: |
| 722 | * None. |
| 723 | * |
| 724 | * Build ATA taskfile @tf for read/write request described by |
| 725 | * @block, @n_block, @tf_flags and @tag on @dev. |
| 726 | * |
| 727 | * RETURNS: |
| 728 | * |
| 729 | * 0 on success, -ERANGE if the request is too large for @dev, |
| 730 | * -EINVAL if the request is invalid. |
| 731 | */ |
| 732 | int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev, |
| 733 | u64 block, u32 n_block, unsigned int tf_flags, |
| 734 | unsigned int tag) |
| 735 | { |
| 736 | tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 737 | tf->flags |= tf_flags; |
| 738 | |
Tejun Heo | 6d1245b | 2007-02-20 23:20:27 +0900 | [diff] [blame] | 739 | if (ata_ncq_enabled(dev) && likely(tag != ATA_TAG_INTERNAL)) { |
Tejun Heo | bd056d7 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 740 | /* yay, NCQ */ |
| 741 | if (!lba_48_ok(block, n_block)) |
| 742 | return -ERANGE; |
| 743 | |
| 744 | tf->protocol = ATA_PROT_NCQ; |
| 745 | tf->flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48; |
| 746 | |
| 747 | if (tf->flags & ATA_TFLAG_WRITE) |
| 748 | tf->command = ATA_CMD_FPDMA_WRITE; |
| 749 | else |
| 750 | tf->command = ATA_CMD_FPDMA_READ; |
| 751 | |
| 752 | tf->nsect = tag << 3; |
| 753 | tf->hob_feature = (n_block >> 8) & 0xff; |
| 754 | tf->feature = n_block & 0xff; |
| 755 | |
| 756 | tf->hob_lbah = (block >> 40) & 0xff; |
| 757 | tf->hob_lbam = (block >> 32) & 0xff; |
| 758 | tf->hob_lbal = (block >> 24) & 0xff; |
| 759 | tf->lbah = (block >> 16) & 0xff; |
| 760 | tf->lbam = (block >> 8) & 0xff; |
| 761 | tf->lbal = block & 0xff; |
| 762 | |
| 763 | tf->device = 1 << 6; |
| 764 | if (tf->flags & ATA_TFLAG_FUA) |
| 765 | tf->device |= 1 << 7; |
| 766 | } else if (dev->flags & ATA_DFLAG_LBA) { |
| 767 | tf->flags |= ATA_TFLAG_LBA; |
| 768 | |
| 769 | if (lba_28_ok(block, n_block)) { |
| 770 | /* use LBA28 */ |
| 771 | tf->device |= (block >> 24) & 0xf; |
| 772 | } else if (lba_48_ok(block, n_block)) { |
| 773 | if (!(dev->flags & ATA_DFLAG_LBA48)) |
| 774 | return -ERANGE; |
| 775 | |
| 776 | /* use LBA48 */ |
| 777 | tf->flags |= ATA_TFLAG_LBA48; |
| 778 | |
| 779 | tf->hob_nsect = (n_block >> 8) & 0xff; |
| 780 | |
| 781 | tf->hob_lbah = (block >> 40) & 0xff; |
| 782 | tf->hob_lbam = (block >> 32) & 0xff; |
| 783 | tf->hob_lbal = (block >> 24) & 0xff; |
| 784 | } else |
| 785 | /* request too large even for LBA48 */ |
| 786 | return -ERANGE; |
| 787 | |
| 788 | if (unlikely(ata_rwcmd_protocol(tf, dev) < 0)) |
| 789 | return -EINVAL; |
| 790 | |
| 791 | tf->nsect = n_block & 0xff; |
| 792 | |
| 793 | tf->lbah = (block >> 16) & 0xff; |
| 794 | tf->lbam = (block >> 8) & 0xff; |
| 795 | tf->lbal = block & 0xff; |
| 796 | |
| 797 | tf->device |= ATA_LBA; |
| 798 | } else { |
| 799 | /* CHS */ |
| 800 | u32 sect, head, cyl, track; |
| 801 | |
| 802 | /* The request -may- be too large for CHS addressing. */ |
| 803 | if (!lba_28_ok(block, n_block)) |
| 804 | return -ERANGE; |
| 805 | |
| 806 | if (unlikely(ata_rwcmd_protocol(tf, dev) < 0)) |
| 807 | return -EINVAL; |
| 808 | |
| 809 | /* Convert LBA to CHS */ |
| 810 | track = (u32)block / dev->sectors; |
| 811 | cyl = track / dev->heads; |
| 812 | head = track % dev->heads; |
| 813 | sect = (u32)block % dev->sectors + 1; |
| 814 | |
| 815 | DPRINTK("block %u track %u cyl %u head %u sect %u\n", |
| 816 | (u32)block, track, cyl, head, sect); |
| 817 | |
| 818 | /* Check whether the converted CHS can fit. |
| 819 | Cylinder: 0-65535 |
| 820 | Head: 0-15 |
| 821 | Sector: 1-255*/ |
| 822 | if ((cyl >> 16) || (head >> 4) || (sect >> 8) || (!sect)) |
| 823 | return -ERANGE; |
| 824 | |
| 825 | tf->nsect = n_block & 0xff; /* Sector count 0 means 256 sectors */ |
| 826 | tf->lbal = sect; |
| 827 | tf->lbam = cyl; |
| 828 | tf->lbah = cyl >> 8; |
| 829 | tf->device |= head; |
| 830 | } |
| 831 | |
| 832 | return 0; |
| 833 | } |
| 834 | |
| 835 | /** |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 836 | * ata_pack_xfermask - Pack pio, mwdma and udma masks into xfer_mask |
| 837 | * @pio_mask: pio_mask |
| 838 | * @mwdma_mask: mwdma_mask |
| 839 | * @udma_mask: udma_mask |
| 840 | * |
| 841 | * Pack @pio_mask, @mwdma_mask and @udma_mask into a single |
| 842 | * unsigned int xfer_mask. |
| 843 | * |
| 844 | * LOCKING: |
| 845 | * None. |
| 846 | * |
| 847 | * RETURNS: |
| 848 | * Packed xfer_mask. |
| 849 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 850 | unsigned long ata_pack_xfermask(unsigned long pio_mask, |
| 851 | unsigned long mwdma_mask, |
| 852 | unsigned long udma_mask) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 853 | { |
| 854 | return ((pio_mask << ATA_SHIFT_PIO) & ATA_MASK_PIO) | |
| 855 | ((mwdma_mask << ATA_SHIFT_MWDMA) & ATA_MASK_MWDMA) | |
| 856 | ((udma_mask << ATA_SHIFT_UDMA) & ATA_MASK_UDMA); |
| 857 | } |
| 858 | |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 859 | /** |
| 860 | * ata_unpack_xfermask - Unpack xfer_mask into pio, mwdma and udma masks |
| 861 | * @xfer_mask: xfer_mask to unpack |
| 862 | * @pio_mask: resulting pio_mask |
| 863 | * @mwdma_mask: resulting mwdma_mask |
| 864 | * @udma_mask: resulting udma_mask |
| 865 | * |
| 866 | * Unpack @xfer_mask into @pio_mask, @mwdma_mask and @udma_mask. |
| 867 | * Any NULL distination masks will be ignored. |
| 868 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 869 | void ata_unpack_xfermask(unsigned long xfer_mask, unsigned long *pio_mask, |
| 870 | unsigned long *mwdma_mask, unsigned long *udma_mask) |
Tejun Heo | c0489e4 | 2006-03-24 14:07:49 +0900 | [diff] [blame] | 871 | { |
| 872 | if (pio_mask) |
| 873 | *pio_mask = (xfer_mask & ATA_MASK_PIO) >> ATA_SHIFT_PIO; |
| 874 | if (mwdma_mask) |
| 875 | *mwdma_mask = (xfer_mask & ATA_MASK_MWDMA) >> ATA_SHIFT_MWDMA; |
| 876 | if (udma_mask) |
| 877 | *udma_mask = (xfer_mask & ATA_MASK_UDMA) >> ATA_SHIFT_UDMA; |
| 878 | } |
| 879 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 880 | static const struct ata_xfer_ent { |
Tejun Heo | be9a50c | 2006-03-31 22:48:52 +0900 | [diff] [blame] | 881 | int shift, bits; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 882 | u8 base; |
| 883 | } ata_xfer_tbl[] = { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 884 | { ATA_SHIFT_PIO, ATA_NR_PIO_MODES, XFER_PIO_0 }, |
| 885 | { ATA_SHIFT_MWDMA, ATA_NR_MWDMA_MODES, XFER_MW_DMA_0 }, |
| 886 | { ATA_SHIFT_UDMA, ATA_NR_UDMA_MODES, XFER_UDMA_0 }, |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 887 | { -1, }, |
| 888 | }; |
| 889 | |
| 890 | /** |
| 891 | * ata_xfer_mask2mode - Find matching XFER_* for the given xfer_mask |
| 892 | * @xfer_mask: xfer_mask of interest |
| 893 | * |
| 894 | * Return matching XFER_* value for @xfer_mask. Only the highest |
| 895 | * bit of @xfer_mask is considered. |
| 896 | * |
| 897 | * LOCKING: |
| 898 | * None. |
| 899 | * |
| 900 | * RETURNS: |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 901 | * Matching XFER_* value, 0xff if no match found. |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 902 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 903 | u8 ata_xfer_mask2mode(unsigned long xfer_mask) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 904 | { |
| 905 | int highbit = fls(xfer_mask) - 1; |
| 906 | const struct ata_xfer_ent *ent; |
| 907 | |
| 908 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 909 | if (highbit >= ent->shift && highbit < ent->shift + ent->bits) |
| 910 | return ent->base + highbit - ent->shift; |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 911 | return 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | /** |
| 915 | * ata_xfer_mode2mask - Find matching xfer_mask for XFER_* |
| 916 | * @xfer_mode: XFER_* of interest |
| 917 | * |
| 918 | * Return matching xfer_mask for @xfer_mode. |
| 919 | * |
| 920 | * LOCKING: |
| 921 | * None. |
| 922 | * |
| 923 | * RETURNS: |
| 924 | * Matching xfer_mask, 0 if no match found. |
| 925 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 926 | unsigned long ata_xfer_mode2mask(u8 xfer_mode) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 927 | { |
| 928 | const struct ata_xfer_ent *ent; |
| 929 | |
| 930 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 931 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 932 | return ((2 << (ent->shift + xfer_mode - ent->base)) - 1) |
| 933 | & ~((1 << ent->shift) - 1); |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 934 | return 0; |
| 935 | } |
| 936 | |
| 937 | /** |
| 938 | * ata_xfer_mode2shift - Find matching xfer_shift for XFER_* |
| 939 | * @xfer_mode: XFER_* of interest |
| 940 | * |
| 941 | * Return matching xfer_shift for @xfer_mode. |
| 942 | * |
| 943 | * LOCKING: |
| 944 | * None. |
| 945 | * |
| 946 | * RETURNS: |
| 947 | * Matching xfer_shift, -1 if no match found. |
| 948 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 949 | int ata_xfer_mode2shift(unsigned long xfer_mode) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 950 | { |
| 951 | const struct ata_xfer_ent *ent; |
| 952 | |
| 953 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 954 | if (xfer_mode >= ent->base && xfer_mode < ent->base + ent->bits) |
| 955 | return ent->shift; |
| 956 | return -1; |
| 957 | } |
| 958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | /** |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 960 | * ata_mode_string - convert xfer_mask to string |
| 961 | * @xfer_mask: mask of bits supported; only highest bit counts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | * |
| 963 | * Determine string which represents the highest speed |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 964 | * (highest bit in @modemask). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | * |
| 966 | * LOCKING: |
| 967 | * None. |
| 968 | * |
| 969 | * RETURNS: |
| 970 | * Constant C string representing highest speed listed in |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 971 | * @mode_mask, or the constant C string "<n/a>". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 973 | const char *ata_mode_string(unsigned long xfer_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | { |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 975 | static const char * const xfer_mode_str[] = { |
| 976 | "PIO0", |
| 977 | "PIO1", |
| 978 | "PIO2", |
| 979 | "PIO3", |
| 980 | "PIO4", |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 981 | "PIO5", |
| 982 | "PIO6", |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 983 | "MWDMA0", |
| 984 | "MWDMA1", |
| 985 | "MWDMA2", |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 986 | "MWDMA3", |
| 987 | "MWDMA4", |
Tejun Heo | 75f554b | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 988 | "UDMA/16", |
| 989 | "UDMA/25", |
| 990 | "UDMA/33", |
| 991 | "UDMA/44", |
| 992 | "UDMA/66", |
| 993 | "UDMA/100", |
| 994 | "UDMA/133", |
| 995 | "UDMA7", |
| 996 | }; |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 997 | int highbit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | |
Tejun Heo | 1da7b0d | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 999 | highbit = fls(xfer_mask) - 1; |
| 1000 | if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str)) |
| 1001 | return xfer_mode_str[highbit]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | return "<n/a>"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } |
| 1004 | |
Tejun Heo | 4c360c8 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 1005 | static const char *sata_spd_string(unsigned int spd) |
| 1006 | { |
| 1007 | static const char * const spd_str[] = { |
| 1008 | "1.5 Gbps", |
| 1009 | "3.0 Gbps", |
Shane Huang | 8522ee2 | 2008-12-30 11:00:37 +0800 | [diff] [blame] | 1010 | "6.0 Gbps", |
Tejun Heo | 4c360c8 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 1011 | }; |
| 1012 | |
| 1013 | if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str)) |
| 1014 | return "<unknown>"; |
| 1015 | return spd_str[spd - 1]; |
| 1016 | } |
| 1017 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1018 | static int ata_dev_set_dipm(struct ata_device *dev, enum link_pm policy) |
| 1019 | { |
| 1020 | struct ata_link *link = dev->link; |
| 1021 | struct ata_port *ap = link->ap; |
| 1022 | u32 scontrol; |
| 1023 | unsigned int err_mask; |
| 1024 | int rc; |
| 1025 | |
| 1026 | /* |
| 1027 | * disallow DIPM for drivers which haven't set |
| 1028 | * ATA_FLAG_IPM. This is because when DIPM is enabled, |
| 1029 | * phy ready will be set in the interrupt status on |
| 1030 | * state changes, which will cause some drivers to |
| 1031 | * think there are errors - additionally drivers will |
| 1032 | * need to disable hot plug. |
| 1033 | */ |
| 1034 | if (!(ap->flags & ATA_FLAG_IPM) || !ata_dev_enabled(dev)) { |
| 1035 | ap->pm_policy = NOT_AVAILABLE; |
| 1036 | return -EINVAL; |
| 1037 | } |
| 1038 | |
| 1039 | /* |
| 1040 | * For DIPM, we will only enable it for the |
| 1041 | * min_power setting. |
| 1042 | * |
| 1043 | * Why? Because Disks are too stupid to know that |
| 1044 | * If the host rejects a request to go to SLUMBER |
| 1045 | * they should retry at PARTIAL, and instead it |
| 1046 | * just would give up. So, for medium_power to |
| 1047 | * work at all, we need to only allow HIPM. |
| 1048 | */ |
| 1049 | rc = sata_scr_read(link, SCR_CONTROL, &scontrol); |
| 1050 | if (rc) |
| 1051 | return rc; |
| 1052 | |
| 1053 | switch (policy) { |
| 1054 | case MIN_POWER: |
| 1055 | /* no restrictions on IPM transitions */ |
| 1056 | scontrol &= ~(0x3 << 8); |
| 1057 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 1058 | if (rc) |
| 1059 | return rc; |
| 1060 | |
| 1061 | /* enable DIPM */ |
| 1062 | if (dev->flags & ATA_DFLAG_DIPM) |
| 1063 | err_mask = ata_dev_set_feature(dev, |
| 1064 | SETFEATURES_SATA_ENABLE, SATA_DIPM); |
| 1065 | break; |
| 1066 | case MEDIUM_POWER: |
| 1067 | /* allow IPM to PARTIAL */ |
| 1068 | scontrol &= ~(0x1 << 8); |
| 1069 | scontrol |= (0x2 << 8); |
| 1070 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 1071 | if (rc) |
| 1072 | return rc; |
| 1073 | |
Kristen Carlson Accardi | f5456b6 | 2007-11-02 16:37:08 -0700 | [diff] [blame] | 1074 | /* |
| 1075 | * we don't have to disable DIPM since IPM flags |
| 1076 | * disallow transitions to SLUMBER, which effectively |
| 1077 | * disable DIPM if it does not support PARTIAL |
| 1078 | */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1079 | break; |
| 1080 | case NOT_AVAILABLE: |
| 1081 | case MAX_PERFORMANCE: |
| 1082 | /* disable all IPM transitions */ |
| 1083 | scontrol |= (0x3 << 8); |
| 1084 | rc = sata_scr_write(link, SCR_CONTROL, scontrol); |
| 1085 | if (rc) |
| 1086 | return rc; |
| 1087 | |
Kristen Carlson Accardi | f5456b6 | 2007-11-02 16:37:08 -0700 | [diff] [blame] | 1088 | /* |
| 1089 | * we don't have to disable DIPM since IPM flags |
| 1090 | * disallow all transitions which effectively |
| 1091 | * disable DIPM anyway. |
| 1092 | */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1093 | break; |
| 1094 | } |
| 1095 | |
| 1096 | /* FIXME: handle SET FEATURES failure */ |
| 1097 | (void) err_mask; |
| 1098 | |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
| 1102 | /** |
| 1103 | * ata_dev_enable_pm - enable SATA interface power management |
Stephen Hemminger | 48166fd | 2007-10-31 10:00:27 -0700 | [diff] [blame] | 1104 | * @dev: device to enable power management |
| 1105 | * @policy: the link power management policy |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1106 | * |
| 1107 | * Enable SATA Interface power management. This will enable |
| 1108 | * Device Interface Power Management (DIPM) for min_power |
| 1109 | * policy, and then call driver specific callbacks for |
| 1110 | * enabling Host Initiated Power management. |
| 1111 | * |
| 1112 | * Locking: Caller. |
| 1113 | * Returns: -EINVAL if IPM is not supported, 0 otherwise. |
| 1114 | */ |
| 1115 | void ata_dev_enable_pm(struct ata_device *dev, enum link_pm policy) |
| 1116 | { |
| 1117 | int rc = 0; |
| 1118 | struct ata_port *ap = dev->link->ap; |
| 1119 | |
| 1120 | /* set HIPM first, then DIPM */ |
| 1121 | if (ap->ops->enable_pm) |
| 1122 | rc = ap->ops->enable_pm(ap, policy); |
| 1123 | if (rc) |
| 1124 | goto enable_pm_out; |
| 1125 | rc = ata_dev_set_dipm(dev, policy); |
| 1126 | |
| 1127 | enable_pm_out: |
| 1128 | if (rc) |
| 1129 | ap->pm_policy = MAX_PERFORMANCE; |
| 1130 | else |
| 1131 | ap->pm_policy = policy; |
| 1132 | return /* rc */; /* hopefully we can use 'rc' eventually */ |
| 1133 | } |
| 1134 | |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1135 | #ifdef CONFIG_PM |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1136 | /** |
| 1137 | * ata_dev_disable_pm - disable SATA interface power management |
Stephen Hemminger | 48166fd | 2007-10-31 10:00:27 -0700 | [diff] [blame] | 1138 | * @dev: device to disable power management |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1139 | * |
| 1140 | * Disable SATA Interface power management. This will disable |
| 1141 | * Device Interface Power Management (DIPM) without changing |
| 1142 | * policy, call driver specific callbacks for disabling Host |
| 1143 | * Initiated Power management. |
| 1144 | * |
| 1145 | * Locking: Caller. |
| 1146 | * Returns: void |
| 1147 | */ |
| 1148 | static void ata_dev_disable_pm(struct ata_device *dev) |
| 1149 | { |
| 1150 | struct ata_port *ap = dev->link->ap; |
| 1151 | |
| 1152 | ata_dev_set_dipm(dev, MAX_PERFORMANCE); |
| 1153 | if (ap->ops->disable_pm) |
| 1154 | ap->ops->disable_pm(ap); |
| 1155 | } |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1156 | #endif /* CONFIG_PM */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1157 | |
| 1158 | void ata_lpm_schedule(struct ata_port *ap, enum link_pm policy) |
| 1159 | { |
| 1160 | ap->pm_policy = policy; |
Tejun Heo | 3ec25eb | 2008-03-27 18:37:14 +0900 | [diff] [blame] | 1161 | ap->link.eh_info.action |= ATA_EH_LPM; |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1162 | ap->link.eh_info.flags |= ATA_EHI_NO_AUTOPSY; |
| 1163 | ata_port_schedule_eh(ap); |
| 1164 | } |
| 1165 | |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1166 | #ifdef CONFIG_PM |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1167 | static void ata_lpm_enable(struct ata_host *host) |
| 1168 | { |
| 1169 | struct ata_link *link; |
| 1170 | struct ata_port *ap; |
| 1171 | struct ata_device *dev; |
| 1172 | int i; |
| 1173 | |
| 1174 | for (i = 0; i < host->n_ports; i++) { |
| 1175 | ap = host->ports[i]; |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 1176 | ata_for_each_link(link, ap, EDGE) { |
| 1177 | ata_for_each_dev(dev, link, ALL) |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1178 | ata_dev_disable_pm(dev); |
| 1179 | } |
| 1180 | } |
| 1181 | } |
| 1182 | |
| 1183 | static void ata_lpm_disable(struct ata_host *host) |
| 1184 | { |
| 1185 | int i; |
| 1186 | |
| 1187 | for (i = 0; i < host->n_ports; i++) { |
| 1188 | struct ata_port *ap = host->ports[i]; |
| 1189 | ata_lpm_schedule(ap, ap->pm_policy); |
| 1190 | } |
| 1191 | } |
Stephen Rothwell | 1992a5e | 2007-10-31 14:53:32 +1100 | [diff] [blame] | 1192 | #endif /* CONFIG_PM */ |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 1193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | /** |
| 1195 | * ata_dev_classify - determine device type based on ATA-spec signature |
| 1196 | * @tf: ATA taskfile register set for device to be identified |
| 1197 | * |
| 1198 | * Determine from taskfile register contents whether a device is |
| 1199 | * ATA or ATAPI, as per "Signature and persistence" section |
| 1200 | * of ATA/PI spec (volume 1, sect 5.14). |
| 1201 | * |
| 1202 | * LOCKING: |
| 1203 | * None. |
| 1204 | * |
| 1205 | * RETURNS: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1206 | * Device type, %ATA_DEV_ATA, %ATA_DEV_ATAPI, %ATA_DEV_PMP or |
| 1207 | * %ATA_DEV_UNKNOWN the event of failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 1209 | unsigned int ata_dev_classify(const struct ata_taskfile *tf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | { |
| 1211 | /* Apple's open source Darwin code hints that some devices only |
| 1212 | * put a proper signature into the LBA mid/high registers, |
| 1213 | * So, we only check those. It's sufficient for uniqueness. |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1214 | * |
| 1215 | * ATA/ATAPI-7 (d1532v1r1: Feb. 19, 2003) specified separate |
| 1216 | * signatures for ATA and ATAPI devices attached on SerialATA, |
| 1217 | * 0x3c/0xc3 and 0x69/0x96 respectively. However, SerialATA |
| 1218 | * spec has never mentioned about using different signatures |
| 1219 | * for ATA/ATAPI devices. Then, Serial ATA II: Port |
| 1220 | * Multiplier specification began to use 0x69/0x96 to identify |
| 1221 | * port multpliers and 0x3c/0xc3 to identify SEMB device. |
| 1222 | * ATA/ATAPI-7 dropped descriptions about 0x3c/0xc3 and |
| 1223 | * 0x69/0x96 shortly and described them as reserved for |
| 1224 | * SerialATA. |
| 1225 | * |
| 1226 | * We follow the current spec and consider that 0x69/0x96 |
| 1227 | * identifies a port multiplier and 0x3c/0xc3 a SEMB device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | */ |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1229 | if ((tf->lbam == 0) && (tf->lbah == 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | DPRINTK("found ATA device by sig\n"); |
| 1231 | return ATA_DEV_ATA; |
| 1232 | } |
| 1233 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1234 | if ((tf->lbam == 0x14) && (tf->lbah == 0xeb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | DPRINTK("found ATAPI device by sig\n"); |
| 1236 | return ATA_DEV_ATAPI; |
| 1237 | } |
| 1238 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1239 | if ((tf->lbam == 0x69) && (tf->lbah == 0x96)) { |
| 1240 | DPRINTK("found PMP device by sig\n"); |
| 1241 | return ATA_DEV_PMP; |
| 1242 | } |
| 1243 | |
| 1244 | if ((tf->lbam == 0x3c) && (tf->lbah == 0xc3)) { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1245 | printk(KERN_INFO "ata: SEMB device ignored\n"); |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 1246 | return ATA_DEV_SEMB_UNSUP; /* not yet */ |
| 1247 | } |
| 1248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | DPRINTK("unknown device\n"); |
| 1250 | return ATA_DEV_UNKNOWN; |
| 1251 | } |
| 1252 | |
| 1253 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1254 | * ata_id_string - Convert IDENTIFY DEVICE page into string |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | * @id: IDENTIFY DEVICE results we will examine |
| 1256 | * @s: string into which data is output |
| 1257 | * @ofs: offset into identify device page |
| 1258 | * @len: length of string to return. must be an even number. |
| 1259 | * |
| 1260 | * The strings in the IDENTIFY DEVICE page are broken up into |
| 1261 | * 16-bit chunks. Run through the string, and output each |
| 1262 | * 8-bit chunk linearly, regardless of platform. |
| 1263 | * |
| 1264 | * LOCKING: |
| 1265 | * caller. |
| 1266 | */ |
| 1267 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1268 | void ata_id_string(const u16 *id, unsigned char *s, |
| 1269 | unsigned int ofs, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | { |
| 1271 | unsigned int c; |
| 1272 | |
Alan Cox | 963e497 | 2008-07-24 17:16:06 +0100 | [diff] [blame] | 1273 | BUG_ON(len & 1); |
| 1274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | while (len > 0) { |
| 1276 | c = id[ofs] >> 8; |
| 1277 | *s = c; |
| 1278 | s++; |
| 1279 | |
| 1280 | c = id[ofs] & 0xff; |
| 1281 | *s = c; |
| 1282 | s++; |
| 1283 | |
| 1284 | ofs++; |
| 1285 | len -= 2; |
| 1286 | } |
| 1287 | } |
| 1288 | |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1289 | /** |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1290 | * ata_id_c_string - Convert IDENTIFY DEVICE page into C string |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1291 | * @id: IDENTIFY DEVICE results we will examine |
| 1292 | * @s: string into which data is output |
| 1293 | * @ofs: offset into identify device page |
| 1294 | * @len: length of string to return. must be an odd number. |
| 1295 | * |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1296 | * This function is identical to ata_id_string except that it |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1297 | * trims trailing spaces and terminates the resulting string with |
| 1298 | * null. @len must be actual maximum length (even number) + 1. |
| 1299 | * |
| 1300 | * LOCKING: |
| 1301 | * caller. |
| 1302 | */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1303 | void ata_id_c_string(const u16 *id, unsigned char *s, |
| 1304 | unsigned int ofs, unsigned int len) |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1305 | { |
| 1306 | unsigned char *p; |
| 1307 | |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 1308 | ata_id_string(id, s, ofs, len - 1); |
Tejun Heo | 0e949ff | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 1309 | |
| 1310 | p = s + strnlen(s, len - 1); |
| 1311 | while (p > s && p[-1] == ' ') |
| 1312 | p--; |
| 1313 | *p = '\0'; |
| 1314 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1315 | |
Tejun Heo | db6f875 | 2007-09-03 12:31:58 +0900 | [diff] [blame] | 1316 | static u64 ata_id_n_sectors(const u16 *id) |
| 1317 | { |
| 1318 | if (ata_id_has_lba(id)) { |
| 1319 | if (ata_id_has_lba48(id)) |
| 1320 | return ata_id_u64(id, 100); |
| 1321 | else |
| 1322 | return ata_id_u32(id, 60); |
| 1323 | } else { |
| 1324 | if (ata_id_current_chs_valid(id)) |
| 1325 | return ata_id_u32(id, 57); |
| 1326 | else |
| 1327 | return id[1] * id[3] * id[6]; |
| 1328 | } |
| 1329 | } |
| 1330 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1331 | u64 ata_tf_to_lba48(const struct ata_taskfile *tf) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1332 | { |
| 1333 | u64 sectors = 0; |
| 1334 | |
| 1335 | sectors |= ((u64)(tf->hob_lbah & 0xff)) << 40; |
| 1336 | sectors |= ((u64)(tf->hob_lbam & 0xff)) << 32; |
Roland Dreier | ba14a9c | 2008-10-28 16:52:20 -0700 | [diff] [blame] | 1337 | sectors |= ((u64)(tf->hob_lbal & 0xff)) << 24; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1338 | sectors |= (tf->lbah & 0xff) << 16; |
| 1339 | sectors |= (tf->lbam & 0xff) << 8; |
| 1340 | sectors |= (tf->lbal & 0xff); |
| 1341 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1342 | return sectors; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1343 | } |
| 1344 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1345 | u64 ata_tf_to_lba(const struct ata_taskfile *tf) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1346 | { |
| 1347 | u64 sectors = 0; |
| 1348 | |
| 1349 | sectors |= (tf->device & 0x0f) << 24; |
| 1350 | sectors |= (tf->lbah & 0xff) << 16; |
| 1351 | sectors |= (tf->lbam & 0xff) << 8; |
| 1352 | sectors |= (tf->lbal & 0xff); |
| 1353 | |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1354 | return sectors; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | /** |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1358 | * ata_read_native_max_address - Read native max address |
| 1359 | * @dev: target device |
| 1360 | * @max_sectors: out parameter for the result native max address |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1361 | * |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1362 | * Perform an LBA48 or LBA28 native size query upon the device in |
| 1363 | * question. |
| 1364 | * |
| 1365 | * RETURNS: |
| 1366 | * 0 on success, -EACCES if command is aborted by the drive. |
| 1367 | * -EIO on other errors. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1368 | */ |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1369 | 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] | 1370 | { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1371 | unsigned int err_mask; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1372 | struct ata_taskfile tf; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1373 | int lba48 = ata_id_has_lba48(dev->id); |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1374 | |
| 1375 | ata_tf_init(dev, &tf); |
| 1376 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1377 | /* always clear all address registers */ |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1378 | tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1379 | |
| 1380 | if (lba48) { |
| 1381 | tf.command = ATA_CMD_READ_NATIVE_MAX_EXT; |
| 1382 | tf.flags |= ATA_TFLAG_LBA48; |
| 1383 | } else |
| 1384 | tf.command = ATA_CMD_READ_NATIVE_MAX; |
| 1385 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1386 | tf.protocol |= ATA_PROT_NODATA; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1387 | tf.device |= ATA_LBA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1388 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1389 | 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] | 1390 | if (err_mask) { |
| 1391 | ata_dev_printk(dev, KERN_WARNING, "failed to read native " |
| 1392 | "max address (err_mask=0x%x)\n", err_mask); |
| 1393 | if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED)) |
| 1394 | return -EACCES; |
| 1395 | return -EIO; |
| 1396 | } |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1397 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1398 | if (lba48) |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1399 | *max_sectors = ata_tf_to_lba48(&tf) + 1; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1400 | else |
Tejun Heo | a5987e0 | 2008-03-27 19:14:23 +0900 | [diff] [blame] | 1401 | *max_sectors = ata_tf_to_lba(&tf) + 1; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1402 | if (dev->horkage & ATA_HORKAGE_HPA_SIZE) |
Alan Cox | 93328e1 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 1403 | (*max_sectors)--; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1404 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1405 | } |
| 1406 | |
| 1407 | /** |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1408 | * ata_set_max_sectors - Set max sectors |
| 1409 | * @dev: target device |
Randy Dunlap | 6b38d1d | 2007-05-01 17:35:55 -0700 | [diff] [blame] | 1410 | * @new_sectors: new max sectors value to set for the device |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1411 | * |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1412 | * Set max sectors of @dev to @new_sectors. |
| 1413 | * |
| 1414 | * RETURNS: |
| 1415 | * 0 on success, -EACCES if command is aborted or denied (due to |
| 1416 | * previous non-volatile SET_MAX) by the drive. -EIO on other |
| 1417 | * errors. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1418 | */ |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1419 | 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] | 1420 | { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1421 | unsigned int err_mask; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1422 | struct ata_taskfile tf; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1423 | int lba48 = ata_id_has_lba48(dev->id); |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1424 | |
| 1425 | new_sectors--; |
| 1426 | |
| 1427 | ata_tf_init(dev, &tf); |
| 1428 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1429 | tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1430 | |
| 1431 | if (lba48) { |
| 1432 | tf.command = ATA_CMD_SET_MAX_EXT; |
| 1433 | tf.flags |= ATA_TFLAG_LBA48; |
| 1434 | |
| 1435 | tf.hob_lbal = (new_sectors >> 24) & 0xff; |
| 1436 | tf.hob_lbam = (new_sectors >> 32) & 0xff; |
| 1437 | tf.hob_lbah = (new_sectors >> 40) & 0xff; |
Tejun Heo | 1e582ba | 2007-09-21 20:07:14 +0900 | [diff] [blame] | 1438 | } else { |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1439 | tf.command = ATA_CMD_SET_MAX; |
| 1440 | |
Tejun Heo | 1e582ba | 2007-09-21 20:07:14 +0900 | [diff] [blame] | 1441 | tf.device |= (new_sectors >> 24) & 0xf; |
| 1442 | } |
| 1443 | |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1444 | tf.protocol |= ATA_PROT_NODATA; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1445 | tf.device |= ATA_LBA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1446 | |
| 1447 | tf.lbal = (new_sectors >> 0) & 0xff; |
| 1448 | tf.lbam = (new_sectors >> 8) & 0xff; |
| 1449 | tf.lbah = (new_sectors >> 16) & 0xff; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1450 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1451 | 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] | 1452 | if (err_mask) { |
| 1453 | ata_dev_printk(dev, KERN_WARNING, "failed to set " |
| 1454 | "max address (err_mask=0x%x)\n", err_mask); |
| 1455 | if (err_mask == AC_ERR_DEV && |
| 1456 | (tf.feature & (ATA_ABORTED | ATA_IDNF))) |
| 1457 | return -EACCES; |
| 1458 | return -EIO; |
| 1459 | } |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1460 | |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1461 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1462 | } |
| 1463 | |
| 1464 | /** |
| 1465 | * ata_hpa_resize - Resize a device with an HPA set |
| 1466 | * @dev: Device to resize |
| 1467 | * |
| 1468 | * Read the size of an LBA28 or LBA48 disk with HPA features and resize |
| 1469 | * it if required to the full size of the media. The caller must check |
| 1470 | * the drive has the HPA feature set enabled. |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1471 | * |
| 1472 | * RETURNS: |
| 1473 | * 0 on success, -errno on failure. |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1474 | */ |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1475 | static int ata_hpa_resize(struct ata_device *dev) |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1476 | { |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1477 | struct ata_eh_context *ehc = &dev->link->eh_context; |
| 1478 | int print_info = ehc->i.flags & ATA_EHI_PRINTINFO; |
| 1479 | u64 sectors = ata_id_n_sectors(dev->id); |
| 1480 | u64 native_sectors; |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1481 | int rc; |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 1482 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1483 | /* do we need to do it? */ |
| 1484 | if (dev->class != ATA_DEV_ATA || |
| 1485 | !ata_id_has_lba(dev->id) || !ata_id_hpa_enabled(dev->id) || |
| 1486 | (dev->horkage & ATA_HORKAGE_BROKEN_HPA)) |
Tejun Heo | c728a91 | 2007-09-03 12:32:30 +0900 | [diff] [blame] | 1487 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1488 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1489 | /* read native max address */ |
| 1490 | rc = ata_read_native_max_address(dev, &native_sectors); |
| 1491 | if (rc) { |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1492 | /* If device aborted the command or HPA isn't going to |
| 1493 | * be unlocked, skip HPA resizing. |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1494 | */ |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1495 | if (rc == -EACCES || !ata_ignore_hpa) { |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1496 | ata_dev_printk(dev, KERN_WARNING, "HPA support seems " |
Tejun Heo | dda7aba | 2008-03-23 21:05:15 +0900 | [diff] [blame] | 1497 | "broken, skipping HPA handling\n"); |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1498 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1499 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1500 | /* we can continue if device aborted the command */ |
| 1501 | if (rc == -EACCES) |
| 1502 | rc = 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1503 | } |
Tejun Heo | 37301a5 | 2007-06-25 20:45:54 +0900 | [diff] [blame] | 1504 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 1505 | return rc; |
| 1506 | } |
| 1507 | |
| 1508 | /* nothing to do? */ |
| 1509 | if (native_sectors <= sectors || !ata_ignore_hpa) { |
| 1510 | if (!print_info || native_sectors == sectors) |
| 1511 | return 0; |
| 1512 | |
| 1513 | if (native_sectors > sectors) |
| 1514 | ata_dev_printk(dev, KERN_INFO, |
| 1515 | "HPA detected: current %llu, native %llu\n", |
| 1516 | (unsigned long long)sectors, |
| 1517 | (unsigned long long)native_sectors); |
| 1518 | else if (native_sectors < sectors) |
| 1519 | ata_dev_printk(dev, KERN_WARNING, |
| 1520 | "native sectors (%llu) is smaller than " |
| 1521 | "sectors (%llu)\n", |
| 1522 | (unsigned long long)native_sectors, |
| 1523 | (unsigned long long)sectors); |
| 1524 | return 0; |
| 1525 | } |
| 1526 | |
| 1527 | /* let's unlock HPA */ |
| 1528 | rc = ata_set_max_sectors(dev, native_sectors); |
| 1529 | if (rc == -EACCES) { |
| 1530 | /* if device aborted the command, skip HPA resizing */ |
| 1531 | ata_dev_printk(dev, KERN_WARNING, "device aborted resize " |
| 1532 | "(%llu -> %llu), skipping HPA handling\n", |
| 1533 | (unsigned long long)sectors, |
| 1534 | (unsigned long long)native_sectors); |
| 1535 | dev->horkage |= ATA_HORKAGE_BROKEN_HPA; |
| 1536 | return 0; |
| 1537 | } else if (rc) |
| 1538 | return rc; |
| 1539 | |
| 1540 | /* re-read IDENTIFY data */ |
| 1541 | rc = ata_dev_reread_id(dev, 0); |
| 1542 | if (rc) { |
| 1543 | ata_dev_printk(dev, KERN_ERR, "failed to re-read IDENTIFY " |
| 1544 | "data after HPA resizing\n"); |
| 1545 | return rc; |
| 1546 | } |
| 1547 | |
| 1548 | if (print_info) { |
| 1549 | u64 new_sectors = ata_id_n_sectors(dev->id); |
| 1550 | ata_dev_printk(dev, KERN_INFO, |
| 1551 | "HPA unlocked: %llu -> %llu, native %llu\n", |
| 1552 | (unsigned long long)sectors, |
| 1553 | (unsigned long long)new_sectors, |
| 1554 | (unsigned long long)native_sectors); |
| 1555 | } |
| 1556 | |
| 1557 | return 0; |
Alan Cox | 1e99973 | 2007-04-11 00:23:13 +0100 | [diff] [blame] | 1558 | } |
| 1559 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 1560 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | * ata_dump_id - IDENTIFY DEVICE info debugging output |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1562 | * @id: IDENTIFY DEVICE page to dump |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | * |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1564 | * Dump selected 16-bit words from the given IDENTIFY DEVICE |
| 1565 | * page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | * |
| 1567 | * LOCKING: |
| 1568 | * caller. |
| 1569 | */ |
| 1570 | |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1571 | static inline void ata_dump_id(const u16 *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | { |
| 1573 | DPRINTK("49==0x%04x " |
| 1574 | "53==0x%04x " |
| 1575 | "63==0x%04x " |
| 1576 | "64==0x%04x " |
| 1577 | "75==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1578 | id[49], |
| 1579 | id[53], |
| 1580 | id[63], |
| 1581 | id[64], |
| 1582 | id[75]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | DPRINTK("80==0x%04x " |
| 1584 | "81==0x%04x " |
| 1585 | "82==0x%04x " |
| 1586 | "83==0x%04x " |
| 1587 | "84==0x%04x \n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1588 | id[80], |
| 1589 | id[81], |
| 1590 | id[82], |
| 1591 | id[83], |
| 1592 | id[84]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | DPRINTK("88==0x%04x " |
| 1594 | "93==0x%04x\n", |
Tejun Heo | 0bd3300 | 2006-02-12 22:47:05 +0900 | [diff] [blame] | 1595 | id[88], |
| 1596 | id[93]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | } |
| 1598 | |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1599 | /** |
| 1600 | * ata_id_xfermask - Compute xfermask from the given IDENTIFY data |
| 1601 | * @id: IDENTIFY data to compute xfer mask from |
| 1602 | * |
| 1603 | * Compute the xfermask for this device. This is not as trivial |
| 1604 | * as it seems if we must consider early devices correctly. |
| 1605 | * |
| 1606 | * FIXME: pre IDE drive timing (do we care ?). |
| 1607 | * |
| 1608 | * LOCKING: |
| 1609 | * None. |
| 1610 | * |
| 1611 | * RETURNS: |
| 1612 | * Computed xfermask |
| 1613 | */ |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 1614 | unsigned long ata_id_xfermask(const u16 *id) |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1615 | { |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 1616 | unsigned long pio_mask, mwdma_mask, udma_mask; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1617 | |
| 1618 | /* Usual case. Word 53 indicates word 64 is valid */ |
| 1619 | if (id[ATA_ID_FIELD_VALID] & (1 << 1)) { |
| 1620 | pio_mask = id[ATA_ID_PIO_MODES] & 0x03; |
| 1621 | pio_mask <<= 3; |
| 1622 | pio_mask |= 0x7; |
| 1623 | } else { |
| 1624 | /* If word 64 isn't valid then Word 51 high byte holds |
| 1625 | * the PIO timing number for the maximum. Turn it into |
| 1626 | * a mask. |
| 1627 | */ |
Lennert Buytenhek | 7a0f1c8 | 2007-01-29 13:28:47 +0100 | [diff] [blame] | 1628 | u8 mode = (id[ATA_ID_OLD_PIO_MODES] >> 8) & 0xFF; |
Alan Cox | 46767aeb | 2006-09-29 18:26:47 +0100 | [diff] [blame] | 1629 | if (mode < 5) /* Valid PIO range */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1630 | pio_mask = (2 << mode) - 1; |
Alan Cox | 46767aeb | 2006-09-29 18:26:47 +0100 | [diff] [blame] | 1631 | else |
| 1632 | pio_mask = 1; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1633 | |
| 1634 | /* But wait.. there's more. Design your standards by |
| 1635 | * committee and you too can get a free iordy field to |
| 1636 | * process. However its the speeds not the modes that |
| 1637 | * are supported... Note drivers using the timing API |
| 1638 | * will get this right anyway |
| 1639 | */ |
| 1640 | } |
| 1641 | |
| 1642 | mwdma_mask = id[ATA_ID_MWDMA_MODES] & 0x07; |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 1643 | |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 1644 | if (ata_id_is_cfa(id)) { |
| 1645 | /* |
| 1646 | * Process compact flash extended modes |
| 1647 | */ |
| 1648 | int pio = id[163] & 0x7; |
| 1649 | int dma = (id[163] >> 3) & 7; |
| 1650 | |
| 1651 | if (pio) |
| 1652 | pio_mask |= (1 << 5); |
| 1653 | if (pio > 1) |
| 1654 | pio_mask |= (1 << 6); |
| 1655 | if (dma) |
| 1656 | mwdma_mask |= (1 << 3); |
| 1657 | if (dma > 1) |
| 1658 | mwdma_mask |= (1 << 4); |
| 1659 | } |
| 1660 | |
Tejun Heo | fb21f0d | 2006-03-12 12:34:35 +0900 | [diff] [blame] | 1661 | udma_mask = 0; |
| 1662 | if (id[ATA_ID_FIELD_VALID] & (1 << 2)) |
| 1663 | udma_mask = id[ATA_ID_UDMA_MODES] & 0xff; |
Tejun Heo | cb95d56 | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 1664 | |
| 1665 | return ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 1666 | } |
| 1667 | |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1668 | /** |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 1669 | * ata_pio_queue_task - Queue port_task |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1670 | * @ap: The ata_port to queue port_task for |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1671 | * @data: data for @fn to use |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 1672 | * @delay: delay time in msecs for workqueue function |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1673 | * |
| 1674 | * Schedule @fn(@data) for execution after @delay jiffies using |
| 1675 | * port_task. There is one port_task per port and it's the |
| 1676 | * user(low level driver)'s responsibility to make sure that only |
| 1677 | * one task is active at any given time. |
| 1678 | * |
| 1679 | * libata core layer takes care of synchronization between |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 1680 | * 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] | 1681 | * synchronization. |
| 1682 | * |
| 1683 | * LOCKING: |
| 1684 | * Inherited from caller. |
| 1685 | */ |
Tejun Heo | 624d5c5 | 2008-03-25 22:16:41 +0900 | [diff] [blame] | 1686 | void ata_pio_queue_task(struct ata_port *ap, void *data, unsigned long delay) |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1687 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1688 | ap->port_task_data = data; |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1689 | |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 1690 | /* may fail if ata_port_flush_task() in progress */ |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 1691 | queue_delayed_work(ata_wq, &ap->port_task, msecs_to_jiffies(delay)); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | /** |
| 1695 | * ata_port_flush_task - Flush port_task |
| 1696 | * @ap: The ata_port to flush port_task for |
| 1697 | * |
| 1698 | * After this function completes, port_task is guranteed not to |
| 1699 | * be running or scheduled. |
| 1700 | * |
| 1701 | * LOCKING: |
| 1702 | * Kernel thread context (may sleep) |
| 1703 | */ |
| 1704 | void ata_port_flush_task(struct ata_port *ap) |
| 1705 | { |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1706 | DPRINTK("ENTER\n"); |
| 1707 | |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 1708 | cancel_rearming_delayed_work(&ap->port_task); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1709 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1710 | if (ata_msg_ctl(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 1711 | ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __func__); |
Tejun Heo | 86e45b6 | 2006-03-05 15:29:09 +0900 | [diff] [blame] | 1712 | } |
| 1713 | |
Adrian Bunk | 7102d23 | 2007-01-04 00:09:36 +0100 | [diff] [blame] | 1714 | static void ata_qc_complete_internal(struct ata_queued_cmd *qc) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1715 | { |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1716 | struct completion *waiting = qc->private_data; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1717 | |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1718 | complete(waiting); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1719 | } |
| 1720 | |
| 1721 | /** |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1722 | * ata_exec_internal_sg - execute libata internal command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1723 | * @dev: Device to which the command is sent |
| 1724 | * @tf: Taskfile registers for the command and the result |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1725 | * @cdb: CDB for packet command |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1726 | * @dma_dir: Data tranfer direction of the command |
Randy Dunlap | 5c1ad8b | 2007-10-18 14:12:26 -0700 | [diff] [blame] | 1727 | * @sgl: sg list for the data buffer of the command |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1728 | * @n_elem: Number of sg entries |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1729 | * @timeout: Timeout in msecs (0 for default) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1730 | * |
| 1731 | * Executes libata internal command with timeout. @tf contains |
| 1732 | * command on entry and result on return. Timeout and error |
| 1733 | * conditions are reported via return value. No recovery action |
| 1734 | * is taken after a command times out. It's caller's duty to |
| 1735 | * clean up after timeout. |
| 1736 | * |
| 1737 | * LOCKING: |
| 1738 | * None. Should be called with kernel context, might sleep. |
Tejun Heo | 551e888 | 2006-06-12 14:09:49 +0900 | [diff] [blame] | 1739 | * |
| 1740 | * RETURNS: |
| 1741 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1742 | */ |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1743 | unsigned ata_exec_internal_sg(struct ata_device *dev, |
| 1744 | struct ata_taskfile *tf, const u8 *cdb, |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1745 | int dma_dir, struct scatterlist *sgl, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1746 | unsigned int n_elem, unsigned long timeout) |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1747 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1748 | struct ata_link *link = dev->link; |
| 1749 | struct ata_port *ap = link->ap; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1750 | u8 command = tf->command; |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 1751 | int auto_timeout = 0; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1752 | struct ata_queued_cmd *qc; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1753 | unsigned int tag, preempted_tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1754 | u32 preempted_sactive, preempted_qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1755 | int preempted_nr_active_links; |
Ingo Molnar | 60be6b9 | 2006-07-03 00:25:26 -0700 | [diff] [blame] | 1756 | DECLARE_COMPLETION_ONSTACK(wait); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1757 | unsigned long flags; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1758 | unsigned int err_mask; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1759 | int rc; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1760 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1761 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1762 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1763 | /* no internal command while frozen */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1764 | if (ap->pflags & ATA_PFLAG_FROZEN) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1765 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1766 | return AC_ERR_SYSTEM; |
| 1767 | } |
| 1768 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1769 | /* initialize internal qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1770 | |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1771 | /* XXX: Tag 0 is used for drivers with legacy EH as some |
| 1772 | * drivers choke if any other tag is given. This breaks |
| 1773 | * ata_tag_internal() test for those drivers. Don't use new |
| 1774 | * EH stuff without converting to it. |
| 1775 | */ |
| 1776 | if (ap->ops->error_handler) |
| 1777 | tag = ATA_TAG_INTERNAL; |
| 1778 | else |
| 1779 | tag = 0; |
| 1780 | |
Tejun Heo | 8a8bc22 | 2008-11-10 14:48:21 +0900 | [diff] [blame] | 1781 | if (test_and_set_bit(tag, &ap->qc_allocated)) |
| 1782 | BUG(); |
Tejun Heo | f69499f | 2006-05-15 20:58:03 +0900 | [diff] [blame] | 1783 | qc = __ata_qc_from_tag(ap, tag); |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1784 | |
| 1785 | qc->tag = tag; |
| 1786 | qc->scsicmd = NULL; |
| 1787 | qc->ap = ap; |
| 1788 | qc->dev = dev; |
| 1789 | ata_qc_reinit(qc); |
| 1790 | |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1791 | preempted_tag = link->active_tag; |
| 1792 | preempted_sactive = link->sactive; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1793 | preempted_qc_active = ap->qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1794 | preempted_nr_active_links = ap->nr_active_links; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1795 | link->active_tag = ATA_TAG_POISON; |
| 1796 | link->sactive = 0; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1797 | ap->qc_active = 0; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1798 | ap->nr_active_links = 0; |
Tejun Heo | 2ab7db1 | 2006-05-15 20:58:02 +0900 | [diff] [blame] | 1799 | |
| 1800 | /* prepare & issue qc */ |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1801 | qc->tf = *tf; |
Tejun Heo | d69cf37 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1802 | if (cdb) |
| 1803 | memcpy(qc->cdb, cdb, ATAPI_CDB_LEN); |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1804 | qc->flags |= ATA_QCFLAG_RESULT_TF; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1805 | qc->dma_dir = dma_dir; |
| 1806 | if (dma_dir != DMA_NONE) { |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1807 | unsigned int i, buflen = 0; |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1808 | struct scatterlist *sg; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1809 | |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1810 | for_each_sg(sgl, sg, n_elem, i) |
| 1811 | buflen += sg->length; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1812 | |
Jens Axboe | 8726021 | 2007-10-16 11:14:12 +0200 | [diff] [blame] | 1813 | ata_sg_init(qc, sgl, n_elem); |
Brian King | 49c8042 | 2007-01-30 11:32:26 -0600 | [diff] [blame] | 1814 | qc->nbytes = buflen; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1815 | } |
| 1816 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1817 | qc->private_data = &wait; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1818 | qc->complete_fn = ata_qc_complete_internal; |
| 1819 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 1820 | ata_qc_issue(qc); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1821 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1822 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1823 | |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 1824 | if (!timeout) { |
| 1825 | if (ata_probe_timeout) |
| 1826 | timeout = ata_probe_timeout * 1000; |
| 1827 | else { |
| 1828 | timeout = ata_internal_cmd_timeout(dev, command); |
| 1829 | auto_timeout = 1; |
| 1830 | } |
| 1831 | } |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1832 | |
| 1833 | rc = wait_for_completion_timeout(&wait, msecs_to_jiffies(timeout)); |
Albert Lee | 41ade50 | 2006-03-14 11:19:04 +0800 | [diff] [blame] | 1834 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1835 | ata_port_flush_task(ap); |
| 1836 | |
| 1837 | if (!rc) { |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1838 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1839 | |
| 1840 | /* We're racing with irq here. If we lose, the |
| 1841 | * following test prevents us from completing the qc |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1842 | * twice. If we win, the port is frozen and will be |
| 1843 | * cleaned up by ->post_internal_cmd(). |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1844 | */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1845 | if (qc->flags & ATA_QCFLAG_ACTIVE) { |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1846 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 1847 | |
| 1848 | if (ap->ops->error_handler) |
| 1849 | ata_port_freeze(ap); |
| 1850 | else |
| 1851 | ata_qc_complete(qc); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 1852 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 1853 | if (ata_msg_warn(ap)) |
| 1854 | ata_dev_printk(dev, KERN_WARNING, |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 1855 | "qc timeout (cmd 0x%x)\n", command); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1856 | } |
| 1857 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1858 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1859 | } |
| 1860 | |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1861 | /* do post_internal_cmd */ |
| 1862 | if (ap->ops->post_internal_cmd) |
| 1863 | ap->ops->post_internal_cmd(qc); |
| 1864 | |
Tejun Heo | a51d644 | 2007-03-20 15:24:11 +0900 | [diff] [blame] | 1865 | /* perform minimal error analysis */ |
| 1866 | if (qc->flags & ATA_QCFLAG_FAILED) { |
| 1867 | if (qc->result_tf.command & (ATA_ERR | ATA_DF)) |
| 1868 | qc->err_mask |= AC_ERR_DEV; |
| 1869 | |
| 1870 | if (!qc->err_mask) |
| 1871 | qc->err_mask |= AC_ERR_OTHER; |
| 1872 | |
| 1873 | if (qc->err_mask & ~AC_ERR_OTHER) |
| 1874 | qc->err_mask &= ~AC_ERR_OTHER; |
Tejun Heo | d95a717 | 2006-05-15 20:58:14 +0900 | [diff] [blame] | 1875 | } |
| 1876 | |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1877 | /* finish up */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1878 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1879 | |
Tejun Heo | e61e067 | 2006-05-15 20:57:40 +0900 | [diff] [blame] | 1880 | *tf = qc->result_tf; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1881 | err_mask = qc->err_mask; |
| 1882 | |
| 1883 | ata_qc_free(qc); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1884 | link->active_tag = preempted_tag; |
| 1885 | link->sactive = preempted_sactive; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 1886 | ap->qc_active = preempted_qc_active; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1887 | ap->nr_active_links = preempted_nr_active_links; |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1888 | |
Tejun Heo | 1f7dd3e9 | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1889 | /* XXX - Some LLDDs (sata_mv) disable port on command failure. |
| 1890 | * Until those drivers are fixed, we detect the condition |
| 1891 | * here, fail the command with AC_ERR_SYSTEM and reenable the |
| 1892 | * port. |
| 1893 | * |
| 1894 | * Note that this doesn't change any behavior as internal |
| 1895 | * command failure results in disabling the device in the |
| 1896 | * higher layer for LLDDs without new reset/EH callbacks. |
| 1897 | * |
| 1898 | * Kill the following code as soon as those drivers are fixed. |
| 1899 | */ |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 1900 | if (ap->flags & ATA_FLAG_DISABLED) { |
Tejun Heo | 1f7dd3e9 | 2006-03-24 15:25:30 +0900 | [diff] [blame] | 1901 | err_mask |= AC_ERR_SYSTEM; |
| 1902 | ata_port_probe(ap); |
| 1903 | } |
| 1904 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1905 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 1586930 | 2006-05-15 20:57:33 +0900 | [diff] [blame] | 1906 | |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 1907 | if ((err_mask & AC_ERR_TIMEOUT) && auto_timeout) |
| 1908 | ata_internal_cmd_timed_out(dev, command); |
| 1909 | |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 1910 | return err_mask; |
Tejun Heo | a2a7a66 | 2005-12-13 14:48:31 +0900 | [diff] [blame] | 1911 | } |
| 1912 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | /** |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 1914 | * ata_exec_internal - execute libata internal command |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1915 | * @dev: Device to which the command is sent |
| 1916 | * @tf: Taskfile registers for the command and the result |
| 1917 | * @cdb: CDB for packet command |
| 1918 | * @dma_dir: Data tranfer direction of the command |
| 1919 | * @buf: Data buffer of the command |
| 1920 | * @buflen: Length of data buffer |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1921 | * @timeout: Timeout in msecs (0 for default) |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1922 | * |
| 1923 | * Wrapper around ata_exec_internal_sg() which takes simple |
| 1924 | * buffer instead of sg list. |
| 1925 | * |
| 1926 | * LOCKING: |
| 1927 | * None. Should be called with kernel context, might sleep. |
| 1928 | * |
| 1929 | * RETURNS: |
| 1930 | * Zero on success, AC_ERR_* mask on failure |
| 1931 | */ |
| 1932 | unsigned ata_exec_internal(struct ata_device *dev, |
| 1933 | struct ata_taskfile *tf, const u8 *cdb, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1934 | int dma_dir, void *buf, unsigned int buflen, |
| 1935 | unsigned long timeout) |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1936 | { |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 1937 | struct scatterlist *psg = NULL, sg; |
| 1938 | unsigned int n_elem = 0; |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1939 | |
Tejun Heo | 33480a0 | 2006-12-12 02:15:31 +0900 | [diff] [blame] | 1940 | if (dma_dir != DMA_NONE) { |
| 1941 | WARN_ON(!buf); |
| 1942 | sg_init_one(&sg, buf, buflen); |
| 1943 | psg = &sg; |
| 1944 | n_elem++; |
| 1945 | } |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1946 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1947 | return ata_exec_internal_sg(dev, tf, cdb, dma_dir, psg, n_elem, |
| 1948 | timeout); |
Tejun Heo | 2432697 | 2006-11-14 22:47:09 +0900 | [diff] [blame] | 1949 | } |
| 1950 | |
| 1951 | /** |
Tejun Heo | 977e6b9 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1952 | * ata_do_simple_cmd - execute simple internal command |
| 1953 | * @dev: Device to which the command is sent |
| 1954 | * @cmd: Opcode to execute |
| 1955 | * |
| 1956 | * Execute a 'simple' command, that only consists of the opcode |
| 1957 | * 'cmd' itself, without filling any other registers |
| 1958 | * |
| 1959 | * LOCKING: |
| 1960 | * Kernel thread context (may sleep). |
| 1961 | * |
| 1962 | * RETURNS: |
| 1963 | * Zero on success, AC_ERR_* mask on failure |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1964 | */ |
Tejun Heo | 77b08fb | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1965 | unsigned int ata_do_simple_cmd(struct ata_device *dev, u8 cmd) |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1966 | { |
| 1967 | struct ata_taskfile tf; |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1968 | |
| 1969 | ata_tf_init(dev, &tf); |
| 1970 | |
| 1971 | tf.command = cmd; |
| 1972 | tf.flags |= ATA_TFLAG_DEVICE; |
| 1973 | tf.protocol = ATA_PROT_NODATA; |
| 1974 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1975 | return ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); |
Tejun Heo | e58eb58 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1976 | } |
| 1977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | /** |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1979 | * ata_pio_need_iordy - check if iordy needed |
| 1980 | * @adev: ATA device |
| 1981 | * |
| 1982 | * Check if the current speed of the device requires IORDY. Used |
| 1983 | * by various controllers for chip configuration. |
| 1984 | */ |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 1985 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1986 | unsigned int ata_pio_need_iordy(const struct ata_device *adev) |
| 1987 | { |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1988 | /* Controller doesn't support IORDY. Probably a pointless check |
| 1989 | as the caller should know this */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1990 | if (adev->link->ap->flags & ATA_FLAG_NO_IORDY) |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1991 | return 0; |
David Daney | 5c18c4d | 2008-12-10 15:39:12 -0800 | [diff] [blame] | 1992 | /* CF spec. r4.1 Table 22 says no iordy on PIO5 and PIO6. */ |
| 1993 | if (ata_id_is_cfa(adev->id) |
| 1994 | && (adev->pio_mode == XFER_PIO_5 || adev->pio_mode == XFER_PIO_6)) |
| 1995 | return 0; |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1996 | /* PIO3 and higher it is mandatory */ |
| 1997 | if (adev->pio_mode > XFER_PIO_2) |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 1998 | return 1; |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 1999 | /* We turn it on when possible */ |
| 2000 | if (ata_id_has_iordy(adev->id)) |
| 2001 | return 1; |
| 2002 | return 0; |
| 2003 | } |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2004 | |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2005 | /** |
| 2006 | * ata_pio_mask_no_iordy - Return the non IORDY mask |
| 2007 | * @adev: ATA device |
| 2008 | * |
| 2009 | * Compute the highest mode possible if we are not using iordy. Return |
| 2010 | * -1 if no iordy mode is available. |
| 2011 | */ |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 2012 | |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2013 | static u32 ata_pio_mask_no_iordy(const struct ata_device *adev) |
| 2014 | { |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2015 | /* 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] | 2016 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE */ |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2017 | u16 pio = adev->id[ATA_ID_EIDE_PIO]; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2018 | /* Is the speed faster than the drive allows non IORDY ? */ |
| 2019 | if (pio) { |
| 2020 | /* This is cycle times not frequency - watch the logic! */ |
| 2021 | if (pio > 240) /* PIO2 is 240nS per cycle */ |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2022 | return 3 << ATA_SHIFT_PIO; |
| 2023 | return 7 << ATA_SHIFT_PIO; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2024 | } |
| 2025 | } |
Alan Cox | 432729f | 2007-03-08 23:22:59 +0000 | [diff] [blame] | 2026 | return 3 << ATA_SHIFT_PIO; |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 2027 | } |
| 2028 | |
| 2029 | /** |
Alan Cox | 963e497 | 2008-07-24 17:16:06 +0100 | [diff] [blame] | 2030 | * ata_do_dev_read_id - default ID read method |
| 2031 | * @dev: device |
| 2032 | * @tf: proposed taskfile |
| 2033 | * @id: data buffer |
| 2034 | * |
| 2035 | * Issue the identify taskfile and hand back the buffer containing |
| 2036 | * identify data. For some RAID controllers and for pre ATA devices |
| 2037 | * this function is wrapped or replaced by the driver |
| 2038 | */ |
| 2039 | unsigned int ata_do_dev_read_id(struct ata_device *dev, |
| 2040 | struct ata_taskfile *tf, u16 *id) |
| 2041 | { |
| 2042 | return ata_exec_internal(dev, tf, NULL, DMA_FROM_DEVICE, |
| 2043 | id, sizeof(id[0]) * ATA_ID_WORDS, 0); |
| 2044 | } |
| 2045 | |
| 2046 | /** |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2047 | * ata_dev_read_id - Read ID data from the specified device |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2048 | * @dev: target device |
| 2049 | * @p_class: pointer to class of the target device (may be changed) |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2050 | * @flags: ATA_READID_* flags |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2051 | * @id: buffer to read IDENTIFY data into |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2052 | * |
| 2053 | * Read ID data from the specified device. ATA_CMD_ID_ATA is |
| 2054 | * performed on ATA devices and ATA_CMD_ID_ATAPI on ATAPI |
Tejun Heo | aec5c3c | 2006-03-25 01:33:34 +0900 | [diff] [blame] | 2055 | * devices. This function also issues ATA_CMD_INIT_DEV_PARAMS |
| 2056 | * for pre-ATA4 drives. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2057 | * |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2058 | * FIXME: ATA_CMD_ID_ATA is optional for early drives and right |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2059 | * now we abort if we hit that case. |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2060 | * |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2061 | * LOCKING: |
| 2062 | * Kernel thread context (may sleep) |
| 2063 | * |
| 2064 | * RETURNS: |
| 2065 | * 0 on success, -errno otherwise. |
| 2066 | */ |
Tejun Heo | a9beec9 | 2006-05-31 18:27:44 +0900 | [diff] [blame] | 2067 | 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] | 2068 | unsigned int flags, u16 *id) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2069 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2070 | struct ata_port *ap = dev->link->ap; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2071 | unsigned int class = *p_class; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2072 | struct ata_taskfile tf; |
| 2073 | unsigned int err_mask = 0; |
| 2074 | const char *reason; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2075 | int may_fallback = 1, tried_spinup = 0; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2076 | int rc; |
| 2077 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2078 | if (ata_msg_ctl(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2079 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2080 | |
Alan Cox | 963e497 | 2008-07-24 17:16:06 +0100 | [diff] [blame] | 2081 | retry: |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2082 | ata_tf_init(dev, &tf); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2083 | |
| 2084 | switch (class) { |
| 2085 | case ATA_DEV_ATA: |
| 2086 | tf.command = ATA_CMD_ID_ATA; |
| 2087 | break; |
| 2088 | case ATA_DEV_ATAPI: |
| 2089 | tf.command = ATA_CMD_ID_ATAPI; |
| 2090 | break; |
| 2091 | default: |
| 2092 | rc = -ENODEV; |
| 2093 | reason = "unsupported class"; |
| 2094 | goto err_out; |
| 2095 | } |
| 2096 | |
| 2097 | tf.protocol = ATA_PROT_PIO; |
Tejun Heo | 81afe89 | 2007-02-07 12:37:41 -0800 | [diff] [blame] | 2098 | |
| 2099 | /* Some devices choke if TF registers contain garbage. Make |
| 2100 | * sure those are properly initialized. |
| 2101 | */ |
| 2102 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 2103 | |
| 2104 | /* Device presence detection is unreliable on some |
| 2105 | * controllers. Always poll IDENTIFY if available. |
| 2106 | */ |
| 2107 | tf.flags |= ATA_TFLAG_POLLING; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2108 | |
Alan Cox | 963e497 | 2008-07-24 17:16:06 +0100 | [diff] [blame] | 2109 | if (ap->ops->read_id) |
| 2110 | err_mask = ap->ops->read_id(dev, &tf, id); |
| 2111 | else |
| 2112 | err_mask = ata_do_dev_read_id(dev, &tf, id); |
| 2113 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2114 | if (err_mask) { |
Tejun Heo | 800b399 | 2006-12-03 21:34:13 +0900 | [diff] [blame] | 2115 | if (err_mask & AC_ERR_NODEV_HINT) { |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 2116 | ata_dev_printk(dev, KERN_DEBUG, |
| 2117 | "NODEV after polling detection\n"); |
Tejun Heo | 55a8e2c | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2118 | return -ENOENT; |
| 2119 | } |
| 2120 | |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 2121 | if ((err_mask == AC_ERR_DEV) && (tf.feature & ATA_ABORTED)) { |
| 2122 | /* Device or controller might have reported |
| 2123 | * the wrong device class. Give a shot at the |
| 2124 | * other IDENTIFY if the current one is |
| 2125 | * aborted by the device. |
| 2126 | */ |
| 2127 | if (may_fallback) { |
| 2128 | may_fallback = 0; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2129 | |
Tejun Heo | 1ffc151 | 2008-03-23 15:16:53 +0900 | [diff] [blame] | 2130 | if (class == ATA_DEV_ATA) |
| 2131 | class = ATA_DEV_ATAPI; |
| 2132 | else |
| 2133 | class = ATA_DEV_ATA; |
| 2134 | goto retry; |
| 2135 | } |
| 2136 | |
| 2137 | /* Control reaches here iff the device aborted |
| 2138 | * both flavors of IDENTIFYs which happens |
| 2139 | * sometimes with phantom devices. |
| 2140 | */ |
| 2141 | ata_dev_printk(dev, KERN_DEBUG, |
| 2142 | "both IDENTIFYs aborted, assuming NODEV\n"); |
| 2143 | return -ENOENT; |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2144 | } |
| 2145 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2146 | rc = -EIO; |
| 2147 | reason = "I/O error"; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2148 | goto err_out; |
| 2149 | } |
| 2150 | |
Tejun Heo | 54936f8 | 2007-05-11 14:35:29 +0200 | [diff] [blame] | 2151 | /* Falling back doesn't make sense if ID data was read |
| 2152 | * successfully at least once. |
| 2153 | */ |
| 2154 | may_fallback = 0; |
| 2155 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2156 | swap_buf_le16(id, ATA_ID_WORDS); |
| 2157 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2158 | /* sanity check */ |
Tejun Heo | a4f5749 | 2006-09-12 20:35:49 -0700 | [diff] [blame] | 2159 | rc = -EINVAL; |
Alan Cox | 6070068 | 2007-06-07 16:13:55 +0100 | [diff] [blame] | 2160 | reason = "device reports invalid type"; |
Tejun Heo | a4f5749 | 2006-09-12 20:35:49 -0700 | [diff] [blame] | 2161 | |
| 2162 | if (class == ATA_DEV_ATA) { |
| 2163 | if (!ata_id_is_ata(id) && !ata_id_is_cfa(id)) |
| 2164 | goto err_out; |
| 2165 | } else { |
| 2166 | if (ata_id_is_ata(id)) |
| 2167 | goto err_out; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2168 | } |
| 2169 | |
Mark Lord | 169439c | 2007-04-17 18:26:07 -0400 | [diff] [blame] | 2170 | if (!tried_spinup && (id[2] == 0x37c8 || id[2] == 0x738c)) { |
| 2171 | tried_spinup = 1; |
| 2172 | /* |
| 2173 | * Drive powered-up in standby mode, and requires a specific |
| 2174 | * SET_FEATURES spin-up subcommand before it will accept |
| 2175 | * anything other than the original IDENTIFY command. |
| 2176 | */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 2177 | err_mask = ata_dev_set_feature(dev, SETFEATURES_SPINUP, 0); |
Ryan Power | fb0582f9 | 2007-08-10 13:59:35 -0700 | [diff] [blame] | 2178 | if (err_mask && id[2] != 0x738c) { |
Mark Lord | 169439c | 2007-04-17 18:26:07 -0400 | [diff] [blame] | 2179 | rc = -EIO; |
| 2180 | reason = "SPINUP failed"; |
| 2181 | goto err_out; |
| 2182 | } |
| 2183 | /* |
| 2184 | * If the drive initially returned incomplete IDENTIFY info, |
| 2185 | * we now must reissue the IDENTIFY command. |
| 2186 | */ |
| 2187 | if (id[2] == 0x37c8) |
| 2188 | goto retry; |
| 2189 | } |
| 2190 | |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2191 | if ((flags & ATA_READID_POSTRESET) && class == ATA_DEV_ATA) { |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2192 | /* |
| 2193 | * The exact sequence expected by certain pre-ATA4 drives is: |
| 2194 | * SRST RESET |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2195 | * IDENTIFY (optional in early ATA) |
| 2196 | * INITIALIZE DEVICE PARAMETERS (later IDE and ATA) |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2197 | * anything else.. |
| 2198 | * Some drives were very specific about that exact sequence. |
Alan Cox | 50a9901 | 2007-08-08 14:27:00 +0100 | [diff] [blame] | 2199 | * |
| 2200 | * Note that ATA4 says lba is mandatory so the second check |
| 2201 | * shoud never trigger. |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2202 | */ |
| 2203 | if (ata_id_major_version(id) < 4 || !ata_id_has_lba(id)) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2204 | err_mask = ata_dev_init_params(dev, id[3], id[6]); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2205 | if (err_mask) { |
| 2206 | rc = -EIO; |
| 2207 | reason = "INIT_DEV_PARAMS failed"; |
| 2208 | goto err_out; |
| 2209 | } |
| 2210 | |
| 2211 | /* current CHS translation info (id[53-58]) might be |
| 2212 | * changed. reread the identify device info. |
| 2213 | */ |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2214 | flags &= ~ATA_READID_POSTRESET; |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2215 | goto retry; |
| 2216 | } |
| 2217 | } |
| 2218 | |
| 2219 | *p_class = class; |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 2220 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2221 | return 0; |
| 2222 | |
| 2223 | err_out: |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2224 | if (ata_msg_warn(ap)) |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2225 | ata_dev_printk(dev, KERN_WARNING, "failed to IDENTIFY " |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2226 | "(%s, err_mask=0x%x)\n", reason, err_mask); |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2227 | return rc; |
| 2228 | } |
| 2229 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2230 | static inline u8 ata_dev_knobble(struct ata_device *dev) |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2231 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2232 | struct ata_port *ap = dev->link->ap; |
Jens Axboe | 9ce8e30 | 2008-08-27 15:23:18 +0200 | [diff] [blame] | 2233 | |
| 2234 | if (ata_dev_blacklisted(dev) & ATA_HORKAGE_BRIDGE_OK) |
| 2235 | return 0; |
| 2236 | |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2237 | return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(dev->id))); |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2238 | } |
| 2239 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2240 | static void ata_dev_config_ncq(struct ata_device *dev, |
| 2241 | char *desc, size_t desc_sz) |
| 2242 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2243 | struct ata_port *ap = dev->link->ap; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2244 | int hdepth = 0, ddepth = ata_id_queue_depth(dev->id); |
| 2245 | |
| 2246 | if (!ata_id_has_ncq(dev->id)) { |
| 2247 | desc[0] = '\0'; |
| 2248 | return; |
| 2249 | } |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2250 | if (dev->horkage & ATA_HORKAGE_NONCQ) { |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 2251 | snprintf(desc, desc_sz, "NCQ (not used)"); |
| 2252 | return; |
| 2253 | } |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2254 | if (ap->flags & ATA_FLAG_NCQ) { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2255 | hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE - 1); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2256 | dev->flags |= ATA_DFLAG_NCQ; |
| 2257 | } |
| 2258 | |
| 2259 | if (hdepth >= ddepth) |
| 2260 | snprintf(desc, desc_sz, "NCQ (depth %d)", ddepth); |
| 2261 | else |
| 2262 | snprintf(desc, desc_sz, "NCQ (depth %d/%d)", hdepth, ddepth); |
| 2263 | } |
| 2264 | |
Tejun Heo | 49016ac | 2006-02-21 02:12:11 +0900 | [diff] [blame] | 2265 | /** |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2266 | * ata_dev_configure - Configure the specified ATA/ATAPI device |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2267 | * @dev: Target device to configure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | * |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2269 | * Configure @dev according to @dev->id. Generic and low-level |
| 2270 | * driver specific fixups are also applied. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | * |
| 2272 | * LOCKING: |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2273 | * Kernel thread context (may sleep) |
| 2274 | * |
| 2275 | * RETURNS: |
| 2276 | * 0 on success, -errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | */ |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 2278 | int ata_dev_configure(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2280 | struct ata_port *ap = dev->link->ap; |
| 2281 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | 6746544 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 2282 | int print_info = ehc->i.flags & ATA_EHI_PRINTINFO; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2283 | const u16 *id = dev->id; |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 2284 | unsigned long xfer_mask; |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2285 | char revbuf[7]; /* XYZ-99\0 */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2286 | char fwrevbuf[ATA_ID_FW_REV_LEN+1]; |
| 2287 | char modelbuf[ATA_ID_PROD_LEN+1]; |
Brian King | e6d902a | 2006-06-28 08:30:31 -0500 | [diff] [blame] | 2288 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2290 | if (!ata_dev_enabled(dev) && ata_msg_info(ap)) { |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 2291 | ata_dev_printk(dev, KERN_INFO, "%s: ENTER/EXIT -- nodev\n", |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2292 | __func__); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2293 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2294 | } |
| 2295 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2296 | if (ata_msg_probe(ap)) |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2297 | ata_dev_printk(dev, KERN_DEBUG, "%s: ENTER\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2299 | /* set horkage */ |
| 2300 | dev->horkage |= ata_dev_blacklisted(dev); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 2301 | ata_force_horkage(dev); |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2302 | |
Tejun Heo | 50af2fa | 2008-05-19 01:15:14 +0900 | [diff] [blame] | 2303 | if (dev->horkage & ATA_HORKAGE_DISABLE) { |
| 2304 | ata_dev_printk(dev, KERN_INFO, |
| 2305 | "unsupported device, disabling\n"); |
| 2306 | ata_dev_disable(dev); |
| 2307 | return 0; |
| 2308 | } |
| 2309 | |
Tejun Heo | 2486fa5 | 2008-07-31 07:52:40 +0900 | [diff] [blame] | 2310 | if ((!atapi_enabled || (ap->flags & ATA_FLAG_NO_ATAPI)) && |
| 2311 | dev->class == ATA_DEV_ATAPI) { |
| 2312 | ata_dev_printk(dev, KERN_WARNING, |
| 2313 | "WARNING: ATAPI is %s, device ignored.\n", |
| 2314 | atapi_enabled ? "not supported with this driver" |
| 2315 | : "disabled"); |
| 2316 | ata_dev_disable(dev); |
| 2317 | return 0; |
| 2318 | } |
| 2319 | |
Tejun Heo | 6746544 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 2320 | /* let ACPI work its magic */ |
| 2321 | rc = ata_acpi_on_devcfg(dev); |
| 2322 | if (rc) |
| 2323 | return rc; |
Kristen Carlson Accardi | 08573a8 | 2006-11-10 16:14:47 -0800 | [diff] [blame] | 2324 | |
Tejun Heo | 05027ad | 2007-09-03 12:32:57 +0900 | [diff] [blame] | 2325 | /* massage HPA, do it early as it might change IDENTIFY data */ |
| 2326 | rc = ata_hpa_resize(dev); |
| 2327 | if (rc) |
| 2328 | return rc; |
| 2329 | |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 2330 | /* print device capabilities */ |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2331 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2332 | ata_dev_printk(dev, KERN_DEBUG, |
| 2333 | "%s: cfg 49:%04x 82:%04x 83:%04x 84:%04x " |
| 2334 | "85:%04x 86:%04x 87:%04x 88:%04x\n", |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2335 | __func__, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2336 | id[49], id[82], id[83], id[84], |
| 2337 | id[85], id[86], id[87], id[88]); |
Tejun Heo | c39f5eb | 2006-03-13 19:51:19 +0900 | [diff] [blame] | 2338 | |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2339 | /* initialize to-be-configured parameters */ |
Tejun Heo | ea1dd4e | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 2340 | dev->flags &= ~ATA_DFLAG_CFG_MASK; |
Tejun Heo | 208a993 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2341 | dev->max_sectors = 0; |
| 2342 | dev->cdb_len = 0; |
| 2343 | dev->n_sectors = 0; |
| 2344 | dev->cylinders = 0; |
| 2345 | dev->heads = 0; |
| 2346 | dev->sectors = 0; |
| 2347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2348 | /* |
| 2349 | * common ATA, ATAPI feature tests |
| 2350 | */ |
| 2351 | |
Tejun Heo | ff8854b | 2006-03-06 04:31:56 +0900 | [diff] [blame] | 2352 | /* find max transfer mode; for printk only */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2353 | xfer_mask = ata_id_xfermask(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2355 | if (ata_msg_probe(ap)) |
| 2356 | ata_dump_id(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2358 | /* SCSI only uses 4-char revisions, dump full 8 chars from ATA */ |
| 2359 | ata_id_c_string(dev->id, fwrevbuf, ATA_ID_FW_REV, |
| 2360 | sizeof(fwrevbuf)); |
| 2361 | |
| 2362 | ata_id_c_string(dev->id, modelbuf, ATA_ID_PROD, |
| 2363 | sizeof(modelbuf)); |
| 2364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | /* ATA-specific feature tests */ |
| 2366 | if (dev->class == ATA_DEV_ATA) { |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2367 | if (ata_id_is_cfa(id)) { |
| 2368 | if (id[162] & 1) /* CPRM may make this media unusable */ |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 2369 | ata_dev_printk(dev, KERN_WARNING, |
| 2370 | "supports DRM functions and may " |
| 2371 | "not be fully accessable.\n"); |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2372 | snprintf(revbuf, 7, "CFA"); |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 2373 | } else { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2374 | snprintf(revbuf, 7, "ATA-%d", ata_id_major_version(id)); |
Alan Cox | ae8d4ee | 2007-11-04 22:05:49 -0500 | [diff] [blame] | 2375 | /* Warn the user if the device has TPM extensions */ |
| 2376 | if (ata_id_has_tpm(id)) |
| 2377 | ata_dev_printk(dev, KERN_WARNING, |
| 2378 | "supports DRM functions and may " |
| 2379 | "not be fully accessable.\n"); |
| 2380 | } |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 2381 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2382 | dev->n_sectors = ata_id_n_sectors(id); |
Tejun Heo | 2940740 | 2006-02-12 22:47:04 +0900 | [diff] [blame] | 2383 | |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2384 | if (dev->id[59] & 0x100) |
| 2385 | dev->multi_count = dev->id[59] & 0xff; |
| 2386 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2387 | if (ata_id_has_lba(id)) { |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2388 | const char *lba_desc; |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2389 | char ncq_desc[20]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2390 | |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2391 | lba_desc = "LBA"; |
| 2392 | dev->flags |= ATA_DFLAG_LBA; |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2393 | if (ata_id_has_lba48(id)) { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2394 | dev->flags |= ATA_DFLAG_LBA48; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2395 | lba_desc = "LBA48"; |
Tejun Heo | 6fc49ad | 2006-11-11 20:10:45 +0900 | [diff] [blame] | 2396 | |
| 2397 | if (dev->n_sectors >= (1UL << 28) && |
| 2398 | ata_id_has_flush_ext(id)) |
| 2399 | dev->flags |= ATA_DFLAG_FLUSH_EXT; |
Tejun Heo | 4c2d721 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 2400 | } |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2401 | |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 2402 | /* config NCQ */ |
| 2403 | ata_dev_config_ncq(dev, ncq_desc, sizeof(ncq_desc)); |
| 2404 | |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2405 | /* print device info to dmesg */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2406 | if (ata_msg_drv(ap) && print_info) { |
| 2407 | ata_dev_printk(dev, KERN_INFO, |
| 2408 | "%s: %s, %s, max %s\n", |
| 2409 | revbuf, modelbuf, fwrevbuf, |
| 2410 | ata_mode_string(xfer_mask)); |
| 2411 | ata_dev_printk(dev, KERN_INFO, |
| 2412 | "%Lu sectors, multi %u: %s %s\n", |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2413 | (unsigned long long)dev->n_sectors, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2414 | dev->multi_count, lba_desc, ncq_desc); |
| 2415 | } |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2416 | } else { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2417 | /* CHS */ |
| 2418 | |
| 2419 | /* Default translation */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2420 | dev->cylinders = id[1]; |
| 2421 | dev->heads = id[3]; |
| 2422 | dev->sectors = id[6]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2423 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2424 | if (ata_id_current_chs_valid(id)) { |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2425 | /* Current CHS translation is valid. */ |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2426 | dev->cylinders = id[54]; |
| 2427 | dev->heads = id[55]; |
| 2428 | dev->sectors = id[56]; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 2429 | } |
| 2430 | |
| 2431 | /* print device info to dmesg */ |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2432 | if (ata_msg_drv(ap) && print_info) { |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2433 | ata_dev_printk(dev, KERN_INFO, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2434 | "%s: %s, %s, max %s\n", |
| 2435 | revbuf, modelbuf, fwrevbuf, |
| 2436 | ata_mode_string(xfer_mask)); |
Jeff Garzik | a84471f | 2007-02-26 05:51:33 -0500 | [diff] [blame] | 2437 | ata_dev_printk(dev, KERN_INFO, |
Eric D. Mudama | 3f64f56 | 2007-01-30 23:00:40 -0700 | [diff] [blame] | 2438 | "%Lu sectors, multi %u, CHS %u/%u/%u\n", |
| 2439 | (unsigned long long)dev->n_sectors, |
| 2440 | dev->multi_count, dev->cylinders, |
| 2441 | dev->heads, dev->sectors); |
| 2442 | } |
Albert Lee | 07f6f7d | 2005-11-01 19:33:20 +0800 | [diff] [blame] | 2443 | } |
| 2444 | |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 2445 | dev->cdb_len = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2446 | } |
| 2447 | |
| 2448 | /* ATAPI-specific feature tests */ |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 2449 | else if (dev->class == ATA_DEV_ATAPI) { |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2450 | const char *cdb_intr_string = ""; |
| 2451 | const char *atapi_an_string = ""; |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2452 | const char *dma_dir_string = ""; |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2453 | u32 sntf; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2454 | |
Tejun Heo | 1148c3a | 2006-03-13 19:48:04 +0900 | [diff] [blame] | 2455 | rc = atapi_cdb_len(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | if ((rc < 12) || (rc > ATAPI_CDB_LEN)) { |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2457 | if (ata_msg_warn(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2458 | ata_dev_printk(dev, KERN_WARNING, |
| 2459 | "unsupported CDB len\n"); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2460 | rc = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | goto err_out_nosup; |
| 2462 | } |
Tejun Heo | 6e7846e | 2006-02-12 23:32:58 +0900 | [diff] [blame] | 2463 | dev->cdb_len = (unsigned int) rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2464 | |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2465 | /* Enable ATAPI AN if both the host and device have |
| 2466 | * the support. If PMP is attached, SNTF is required |
| 2467 | * to enable ATAPI AN to discern between PHY status |
| 2468 | * changed notifications and ATAPI ANs. |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2469 | */ |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2470 | if ((ap->flags & ATA_FLAG_AN) && ata_id_has_atapi_AN(id) && |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 2471 | (!sata_pmp_attached(ap) || |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2472 | sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf) == 0)) { |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2473 | unsigned int err_mask; |
| 2474 | |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2475 | /* issue SET feature command to turn this on */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 2476 | err_mask = ata_dev_set_feature(dev, |
| 2477 | SETFEATURES_SATA_ENABLE, SATA_AN); |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2478 | if (err_mask) |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2479 | ata_dev_printk(dev, KERN_ERR, |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2480 | "failed to enable ATAPI AN " |
| 2481 | "(err_mask=0x%x)\n", err_mask); |
| 2482 | else { |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2483 | dev->flags |= ATA_DFLAG_AN; |
Tejun Heo | 854c73a | 2007-09-23 13:14:11 +0900 | [diff] [blame] | 2484 | atapi_an_string = ", ATAPI AN"; |
| 2485 | } |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 2486 | } |
| 2487 | |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2488 | if (ata_id_cdb_intr(dev->id)) { |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 2489 | dev->flags |= ATA_DFLAG_CDB_INTR; |
Albert Lee | 08a556d | 2006-03-31 13:29:04 +0800 | [diff] [blame] | 2490 | cdb_intr_string = ", CDB intr"; |
| 2491 | } |
Albert Lee | 312f7da | 2005-09-27 17:38:03 +0800 | [diff] [blame] | 2492 | |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2493 | if (atapi_dmadir || atapi_id_dmadir(dev->id)) { |
| 2494 | dev->flags |= ATA_DFLAG_DMADIR; |
| 2495 | dma_dir_string = ", DMADIR"; |
| 2496 | } |
| 2497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2498 | /* print device info to dmesg */ |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 2499 | if (ata_msg_drv(ap) && print_info) |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2500 | ata_dev_printk(dev, KERN_INFO, |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2501 | "ATAPI: %s, %s, max %s%s%s%s\n", |
Albert Lee | ef143d5 | 2007-06-05 13:01:33 +0800 | [diff] [blame] | 2502 | modelbuf, fwrevbuf, |
Tejun Heo | 12436c3 | 2006-05-15 20:59:15 +0900 | [diff] [blame] | 2503 | ata_mode_string(xfer_mask), |
Tejun Heo | 9116300 | 2008-02-21 13:25:50 +0900 | [diff] [blame] | 2504 | cdb_intr_string, atapi_an_string, |
| 2505 | dma_dir_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | } |
| 2507 | |
Tejun Heo | 914ed35 | 2006-11-01 18:39:55 +0900 | [diff] [blame] | 2508 | /* determine max_sectors */ |
| 2509 | dev->max_sectors = ATA_MAX_SECTORS; |
| 2510 | if (dev->flags & ATA_DFLAG_LBA48) |
| 2511 | dev->max_sectors = ATA_MAX_SECTORS_LBA48; |
| 2512 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 2513 | if (!(dev->horkage & ATA_HORKAGE_IPM)) { |
| 2514 | if (ata_id_has_hipm(dev->id)) |
| 2515 | dev->flags |= ATA_DFLAG_HIPM; |
| 2516 | if (ata_id_has_dipm(dev->id)) |
| 2517 | dev->flags |= ATA_DFLAG_DIPM; |
| 2518 | } |
| 2519 | |
Alan Cox | c5038fc | 2007-10-25 14:21:16 +0100 | [diff] [blame] | 2520 | /* Limit PATA drive on SATA cable bridge transfers to udma5, |
| 2521 | 200 sectors */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2522 | if (ata_dev_knobble(dev)) { |
Borislav Petkov | 5afc814 | 2006-06-27 14:51:25 +0200 | [diff] [blame] | 2523 | if (ata_msg_drv(ap) && print_info) |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2524 | ata_dev_printk(dev, KERN_INFO, |
| 2525 | "applying bridge limits\n"); |
Tejun Heo | 5a52913 | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 2526 | dev->udma_mask &= ATA_UDMA5; |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2527 | dev->max_sectors = ATA_MAX_SECTORS; |
| 2528 | } |
| 2529 | |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2530 | if ((dev->class == ATA_DEV_ATAPI) && |
Albert Lee | f442cd8 | 2007-11-15 10:35:47 +0900 | [diff] [blame] | 2531 | (atapi_command_packet_set(id) == TYPE_TAPE)) { |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2532 | dev->max_sectors = ATA_MAX_SECTORS_TAPE; |
Albert Lee | f442cd8 | 2007-11-15 10:35:47 +0900 | [diff] [blame] | 2533 | dev->horkage |= ATA_HORKAGE_STUCK_ERR; |
| 2534 | } |
Tony Battersby | f8d8e57 | 2007-10-30 11:44:35 -0400 | [diff] [blame] | 2535 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 2536 | if (dev->horkage & ATA_HORKAGE_MAX_SEC_128) |
Tejun Heo | 03ec52d | 2007-04-12 13:38:11 +0900 | [diff] [blame] | 2537 | dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128, |
| 2538 | dev->max_sectors); |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 2539 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 2540 | if (ata_dev_blacklisted(dev) & ATA_HORKAGE_IPM) { |
| 2541 | dev->horkage |= ATA_HORKAGE_IPM; |
| 2542 | |
| 2543 | /* reset link pm_policy for this port to no pm */ |
| 2544 | ap->pm_policy = MAX_PERFORMANCE; |
| 2545 | } |
| 2546 | |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2547 | if (ap->ops->dev_config) |
Alan | cd0d3bb | 2007-03-02 00:56:15 +0000 | [diff] [blame] | 2548 | ap->ops->dev_config(dev); |
Tejun Heo | 4b2f3ed | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2549 | |
Alan Cox | c5038fc | 2007-10-25 14:21:16 +0100 | [diff] [blame] | 2550 | if (dev->horkage & ATA_HORKAGE_DIAGNOSTIC) { |
| 2551 | /* Let the user know. We don't want to disallow opens for |
| 2552 | rescue purposes, or in case the vendor is just a blithering |
| 2553 | idiot. Do this after the dev_config call as some controllers |
| 2554 | with buggy firmware may want to avoid reporting false device |
| 2555 | bugs */ |
| 2556 | |
| 2557 | if (print_info) { |
| 2558 | ata_dev_printk(dev, KERN_WARNING, |
| 2559 | "Drive reports diagnostics failure. This may indicate a drive\n"); |
| 2560 | ata_dev_printk(dev, KERN_WARNING, |
| 2561 | "fault or invalid emulation. Contact drive vendor for information.\n"); |
| 2562 | } |
| 2563 | } |
| 2564 | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 2565 | if ((dev->horkage & ATA_HORKAGE_FIRMWARE_WARN) && print_info) { |
| 2566 | ata_dev_printk(dev, KERN_WARNING, "WARNING: device requires " |
| 2567 | "firmware update to be fully functional.\n"); |
| 2568 | ata_dev_printk(dev, KERN_WARNING, " contact the vendor " |
| 2569 | "or visit http://ata.wiki.kernel.org.\n"); |
| 2570 | } |
| 2571 | |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2572 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2573 | |
| 2574 | err_out_nosup: |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 2575 | if (ata_msg_probe(ap)) |
Tejun Heo | 8857455 | 2006-06-25 20:00:35 +0900 | [diff] [blame] | 2576 | ata_dev_printk(dev, KERN_DEBUG, |
Harvey Harrison | 7f5e4e8 | 2008-03-05 18:24:52 -0800 | [diff] [blame] | 2577 | "%s: EXIT, err\n", __func__); |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2578 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2579 | } |
| 2580 | |
| 2581 | /** |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2582 | * ata_cable_40wire - return 40 wire cable type |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2583 | * @ap: port |
| 2584 | * |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2585 | * Helper method for drivers which want to hardwire 40 wire cable |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2586 | * detection. |
| 2587 | */ |
| 2588 | |
| 2589 | int ata_cable_40wire(struct ata_port *ap) |
| 2590 | { |
| 2591 | return ATA_CBL_PATA40; |
| 2592 | } |
| 2593 | |
| 2594 | /** |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2595 | * ata_cable_80wire - return 80 wire cable type |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2596 | * @ap: port |
| 2597 | * |
Alan Cox | 2e41e8e | 2007-03-08 23:19:19 +0000 | [diff] [blame] | 2598 | * Helper method for drivers which want to hardwire 80 wire cable |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2599 | * detection. |
| 2600 | */ |
| 2601 | |
| 2602 | int ata_cable_80wire(struct ata_port *ap) |
| 2603 | { |
| 2604 | return ATA_CBL_PATA80; |
| 2605 | } |
| 2606 | |
| 2607 | /** |
| 2608 | * ata_cable_unknown - return unknown PATA cable. |
| 2609 | * @ap: port |
| 2610 | * |
| 2611 | * Helper method for drivers which have no PATA cable detection. |
| 2612 | */ |
| 2613 | |
| 2614 | int ata_cable_unknown(struct ata_port *ap) |
| 2615 | { |
| 2616 | return ATA_CBL_PATA_UNK; |
| 2617 | } |
| 2618 | |
| 2619 | /** |
Tejun Heo | c88f90c | 2007-11-27 19:43:48 +0900 | [diff] [blame] | 2620 | * ata_cable_ignore - return ignored PATA cable. |
| 2621 | * @ap: port |
| 2622 | * |
| 2623 | * Helper method for drivers which don't use cable type to limit |
| 2624 | * transfer mode. |
| 2625 | */ |
| 2626 | int ata_cable_ignore(struct ata_port *ap) |
| 2627 | { |
| 2628 | return ATA_CBL_PATA_IGN; |
| 2629 | } |
| 2630 | |
| 2631 | /** |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2632 | * ata_cable_sata - return SATA cable type |
| 2633 | * @ap: port |
| 2634 | * |
| 2635 | * Helper method for drivers which have SATA cables |
| 2636 | */ |
| 2637 | |
| 2638 | int ata_cable_sata(struct ata_port *ap) |
| 2639 | { |
| 2640 | return ATA_CBL_SATA; |
| 2641 | } |
| 2642 | |
| 2643 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2644 | * ata_bus_probe - Reset and probe ATA bus |
| 2645 | * @ap: Bus to probe |
| 2646 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2647 | * Master ATA bus probing function. Initiates a hardware-dependent |
| 2648 | * bus reset, then attempts to identify any devices found on |
| 2649 | * the bus. |
| 2650 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2651 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2652 | * PCI/etc. bus probe sem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | * |
| 2654 | * RETURNS: |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2655 | * Zero on success, negative errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2656 | */ |
| 2657 | |
Brian King | 8028916 | 2006-08-07 14:27:31 -0500 | [diff] [blame] | 2658 | int ata_bus_probe(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2659 | { |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2660 | unsigned int classes[ATA_MAX_DEVICES]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2661 | int tries[ATA_MAX_DEVICES]; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2662 | int rc; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2663 | struct ata_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2664 | |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2665 | ata_port_probe(ap); |
| 2666 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 2667 | ata_for_each_dev(dev, &ap->link, ALL) |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2668 | tries[dev->devno] = ATA_PROBE_MAX_TRIES; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2669 | |
| 2670 | retry: |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 2671 | ata_for_each_dev(dev, &ap->link, ALL) { |
Tejun Heo | cdeab11 | 2007-10-29 16:41:09 +0900 | [diff] [blame] | 2672 | /* If we issue an SRST then an ATA drive (not ATAPI) |
| 2673 | * may change configuration and be in PIO0 timing. If |
| 2674 | * we do a hard reset (or are coming from power on) |
| 2675 | * this is true for ATA or ATAPI. Until we've set a |
| 2676 | * suitable controller mode we should not touch the |
| 2677 | * bus as we may be talking too fast. |
| 2678 | */ |
| 2679 | dev->pio_mode = XFER_PIO_0; |
| 2680 | |
| 2681 | /* If the controller has a pio mode setup function |
| 2682 | * then use it to set the chipset to rights. Don't |
| 2683 | * touch the DMA setup as that will be dealt with when |
| 2684 | * configuring devices. |
| 2685 | */ |
| 2686 | if (ap->ops->set_piomode) |
| 2687 | ap->ops->set_piomode(ap, dev); |
| 2688 | } |
| 2689 | |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2690 | /* reset and determine device classes */ |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2691 | ap->ops->phy_reset(ap); |
Tejun Heo | 2061a47 | 2006-03-12 00:57:39 +0900 | [diff] [blame] | 2692 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 2693 | ata_for_each_dev(dev, &ap->link, ALL) { |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2694 | if (!(ap->flags & ATA_FLAG_DISABLED) && |
| 2695 | dev->class != ATA_DEV_UNKNOWN) |
| 2696 | classes[dev->devno] = dev->class; |
| 2697 | else |
| 2698 | classes[dev->devno] = ATA_DEV_NONE; |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2699 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2700 | dev->class = ATA_DEV_UNKNOWN; |
Tejun Heo | 28ca5c5 | 2006-03-01 16:09:36 +0900 | [diff] [blame] | 2701 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | |
Tejun Heo | 52783c5 | 2006-05-31 18:28:22 +0900 | [diff] [blame] | 2703 | ata_port_probe(ap); |
Tejun Heo | 2044470 | 2006-03-13 01:57:01 +0900 | [diff] [blame] | 2704 | |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2705 | /* read IDENTIFY page and configure devices. We have to do the identify |
| 2706 | specific sequence bass-ackwards so that PDIAG- is released by |
| 2707 | the slave device */ |
| 2708 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 2709 | ata_for_each_dev(dev, &ap->link, ALL_REVERSE) { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2710 | if (tries[dev->devno]) |
| 2711 | dev->class = classes[dev->devno]; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2712 | |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2713 | if (!ata_dev_enabled(dev)) |
Tejun Heo | ffeae41 | 2006-03-01 16:09:35 +0900 | [diff] [blame] | 2714 | continue; |
| 2715 | |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2716 | rc = ata_dev_read_id(dev, &dev->class, ATA_READID_POSTRESET, |
| 2717 | dev->id); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2718 | if (rc) |
| 2719 | goto fail; |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2720 | } |
| 2721 | |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 2722 | /* Now ask for the cable type as PDIAG- should have been released */ |
| 2723 | if (ap->ops->cable_detect) |
| 2724 | ap->cbl = ap->ops->cable_detect(ap); |
| 2725 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 2726 | /* We may have SATA bridge glue hiding here irrespective of |
| 2727 | * the reported cable types and sensed types. When SATA |
| 2728 | * drives indicate we have a bridge, we don't know which end |
| 2729 | * of the link the bridge is which is a problem. |
| 2730 | */ |
| 2731 | ata_for_each_dev(dev, &ap->link, ENABLED) |
Alan Cox | 614fe29 | 2007-08-22 23:22:45 +0100 | [diff] [blame] | 2732 | if (ata_id_is_sata(dev->id)) |
| 2733 | ap->cbl = ATA_CBL_SATA; |
Alan Cox | 614fe29 | 2007-08-22 23:22:45 +0100 | [diff] [blame] | 2734 | |
Jeff Garzik | f31f0cc | 2007-03-02 17:47:28 -0500 | [diff] [blame] | 2735 | /* After the identify sequence we can now set up the devices. We do |
| 2736 | this in the normal order so that the user doesn't get confused */ |
| 2737 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 2738 | ata_for_each_dev(dev, &ap->link, ENABLED) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2739 | ap->link.eh_context.i.flags |= ATA_EHI_PRINTINFO; |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 2740 | rc = ata_dev_configure(dev); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2741 | ap->link.eh_context.i.flags &= ~ATA_EHI_PRINTINFO; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2742 | if (rc) |
| 2743 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | } |
| 2745 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2746 | /* configure transfer mode */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2747 | rc = ata_set_mode(&ap->link, &dev); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2748 | if (rc) |
Tejun Heo | 51713d3 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 2749 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 2751 | ata_for_each_dev(dev, &ap->link, ENABLED) |
| 2752 | return 0; |
Alan Cox | e35a9e0 | 2006-03-27 18:46:37 +0100 | [diff] [blame] | 2753 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2754 | /* no device present, disable port */ |
| 2755 | ata_port_disable(ap); |
Tejun Heo | 96072e6 | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 2756 | return -ENODEV; |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2757 | |
| 2758 | fail: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2759 | tries[dev->devno]--; |
| 2760 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2761 | switch (rc) { |
| 2762 | case -EINVAL: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2763 | /* eeek, something went very wrong, give up */ |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2764 | tries[dev->devno] = 0; |
| 2765 | break; |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2766 | |
| 2767 | case -ENODEV: |
| 2768 | /* give it just one more chance */ |
| 2769 | tries[dev->devno] = min(tries[dev->devno], 1); |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2770 | case -EIO: |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2771 | if (tries[dev->devno] == 1) { |
| 2772 | /* This is the last chance, better to slow |
| 2773 | * down than lose it. |
| 2774 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2775 | sata_down_spd_limit(&ap->link); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2776 | ata_down_xfermask_limit(dev, ATA_DNXFER_PIO); |
| 2777 | } |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2778 | } |
| 2779 | |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2780 | if (!tries[dev->devno]) |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2781 | ata_dev_disable(dev); |
Tejun Heo | ec57375 | 2006-04-11 22:26:29 +0900 | [diff] [blame] | 2782 | |
Tejun Heo | 14d2bac | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 2783 | goto retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2784 | } |
| 2785 | |
| 2786 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2787 | * ata_port_probe - Mark port as enabled |
| 2788 | * @ap: Port for which we indicate enablement |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | * |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2790 | * Modify @ap data structure such that the system |
| 2791 | * thinks that the entire port is enabled. |
| 2792 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2793 | * LOCKING: host lock, or some other form of |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 2794 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | */ |
| 2796 | |
| 2797 | void ata_port_probe(struct ata_port *ap) |
| 2798 | { |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2799 | ap->flags &= ~ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | } |
| 2801 | |
| 2802 | /** |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2803 | * sata_print_link_status - Print SATA link status |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2804 | * @link: SATA link to printk link status about |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2805 | * |
| 2806 | * This function prints link speed and status of a SATA link. |
| 2807 | * |
| 2808 | * LOCKING: |
| 2809 | * None. |
| 2810 | */ |
Adrian Bunk | 6bdb4fc | 2008-04-21 11:51:11 +0300 | [diff] [blame] | 2811 | static void sata_print_link_status(struct ata_link *link) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2812 | { |
Tejun Heo | 6d5f973 | 2006-04-03 00:09:41 +0900 | [diff] [blame] | 2813 | u32 sstatus, scontrol, tmp; |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2814 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2815 | if (sata_scr_read(link, SCR_STATUS, &sstatus)) |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2816 | return; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2817 | sata_scr_read(link, SCR_CONTROL, &scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2818 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 2819 | if (ata_phys_link_online(link)) { |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2820 | tmp = (sstatus >> 4) & 0xf; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2821 | ata_link_printk(link, KERN_INFO, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2822 | "SATA link up %s (SStatus %X SControl %X)\n", |
| 2823 | sata_spd_string(tmp), sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2824 | } else { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2825 | ata_link_printk(link, KERN_INFO, |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 2826 | "SATA link down (SStatus %X SControl %X)\n", |
| 2827 | sstatus, scontrol); |
Tejun Heo | 3be680b | 2005-12-19 22:35:02 +0900 | [diff] [blame] | 2828 | } |
| 2829 | } |
| 2830 | |
| 2831 | /** |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2832 | * ata_dev_pair - return other device on cable |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2833 | * @adev: device |
| 2834 | * |
| 2835 | * Obtain the other device on the same cable, or if none is |
| 2836 | * present NULL is returned |
| 2837 | */ |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 2838 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 2839 | struct ata_device *ata_dev_pair(struct ata_device *adev) |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2840 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2841 | struct ata_link *link = adev->link; |
| 2842 | struct ata_device *pair = &link->device[1 - adev->devno]; |
Tejun Heo | e1211e3 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 2843 | if (!ata_dev_enabled(pair)) |
Alan Cox | ebdfca6e | 2006-03-23 15:38:34 +0000 | [diff] [blame] | 2844 | return NULL; |
| 2845 | return pair; |
| 2846 | } |
| 2847 | |
| 2848 | /** |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2849 | * ata_port_disable - Disable port. |
| 2850 | * @ap: Port to be disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2852 | * Modify @ap data structure such that the system |
| 2853 | * thinks that the entire port is disabled, and should |
| 2854 | * never attempt to probe or communicate with devices |
| 2855 | * on this port. |
| 2856 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 2857 | * LOCKING: host lock, or some other form of |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 2858 | * serialization. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | */ |
| 2860 | |
| 2861 | void ata_port_disable(struct ata_port *ap) |
| 2862 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2863 | ap->link.device[0].class = ATA_DEV_NONE; |
| 2864 | ap->link.device[1].class = ATA_DEV_NONE; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 2865 | ap->flags |= ATA_FLAG_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | } |
| 2867 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2868 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2869 | * sata_down_spd_limit - adjust SATA spd limit downward |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2870 | * @link: Link to adjust SATA spd limit for |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2871 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2872 | * Adjust SATA spd limit of @link downward. Note that this |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2873 | * function only adjusts the limit. The change must be applied |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2874 | * using sata_set_spd(). |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2875 | * |
| 2876 | * LOCKING: |
| 2877 | * Inherited from caller. |
| 2878 | * |
| 2879 | * RETURNS: |
| 2880 | * 0 on success, negative errno on failure |
| 2881 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2882 | int sata_down_spd_limit(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2883 | { |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2884 | u32 sstatus, spd, mask; |
| 2885 | int rc, highbit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2886 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2887 | if (!sata_scr_valid(link)) |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2888 | return -EOPNOTSUPP; |
| 2889 | |
| 2890 | /* If SCR can be read, use it to determine the current SPD. |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2891 | * If not, use cached value in link->sata_spd. |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2892 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2893 | rc = sata_scr_read(link, SCR_STATUS, &sstatus); |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2894 | if (rc == 0) |
| 2895 | spd = (sstatus >> 4) & 0xf; |
| 2896 | else |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2897 | spd = link->sata_spd; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2898 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2899 | mask = link->sata_spd_limit; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2900 | if (mask <= 1) |
| 2901 | return -EINVAL; |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2902 | |
| 2903 | /* unconditionally mask off the highest bit */ |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2904 | highbit = fls(mask) - 1; |
| 2905 | mask &= ~(1 << highbit); |
| 2906 | |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2907 | /* Mask off all speeds higher than or equal to the current |
| 2908 | * one. Force 1.5Gbps if current SPD is not available. |
| 2909 | */ |
| 2910 | if (spd > 1) |
| 2911 | mask &= (1 << (spd - 1)) - 1; |
| 2912 | else |
| 2913 | mask &= 1; |
| 2914 | |
| 2915 | /* were we already at the bottom? */ |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2916 | if (!mask) |
| 2917 | return -EINVAL; |
| 2918 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2919 | link->sata_spd_limit = mask; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2920 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2921 | 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] | 2922 | sata_spd_string(fls(mask))); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2923 | |
| 2924 | return 0; |
| 2925 | } |
| 2926 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2927 | static int __sata_set_spd_needed(struct ata_link *link, u32 *scontrol) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2928 | { |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2929 | struct ata_link *host_link = &link->ap->link; |
| 2930 | u32 limit, target, spd; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2931 | |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2932 | limit = link->sata_spd_limit; |
| 2933 | |
| 2934 | /* Don't configure downstream link faster than upstream link. |
| 2935 | * It doesn't speed up anything and some PMPs choke on such |
| 2936 | * configuration. |
| 2937 | */ |
| 2938 | if (!ata_is_host_link(link) && host_link->sata_spd) |
| 2939 | limit &= (1 << host_link->sata_spd) - 1; |
| 2940 | |
| 2941 | if (limit == UINT_MAX) |
| 2942 | target = 0; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2943 | else |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2944 | target = fls(limit); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2945 | |
| 2946 | spd = (*scontrol >> 4) & 0xf; |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2947 | *scontrol = (*scontrol & ~0xf0) | ((target & 0xf) << 4); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2948 | |
Tejun Heo | 5270222 | 2007-10-31 10:17:07 +0900 | [diff] [blame] | 2949 | return spd != target; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2950 | } |
| 2951 | |
| 2952 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2953 | * sata_set_spd_needed - is SATA spd configuration needed |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2954 | * @link: Link in question |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2955 | * |
| 2956 | * Test whether the spd limit in SControl matches |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2957 | * @link->sata_spd_limit. This function is used to determine |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2958 | * whether hardreset is necessary to apply SATA spd |
| 2959 | * configuration. |
| 2960 | * |
| 2961 | * LOCKING: |
| 2962 | * Inherited from caller. |
| 2963 | * |
| 2964 | * RETURNS: |
| 2965 | * 1 if SATA spd configuration is needed, 0 otherwise. |
| 2966 | */ |
Adrian Bunk | 1dc55e8 | 2008-04-21 11:51:17 +0300 | [diff] [blame] | 2967 | static int sata_set_spd_needed(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2968 | { |
| 2969 | u32 scontrol; |
| 2970 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2971 | if (sata_scr_read(link, SCR_CONTROL, &scontrol)) |
Tejun Heo | db64bcf | 2007-10-31 10:17:06 +0900 | [diff] [blame] | 2972 | return 1; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2973 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2974 | return __sata_set_spd_needed(link, &scontrol); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2975 | } |
| 2976 | |
| 2977 | /** |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 2978 | * sata_set_spd - set SATA spd according to spd limit |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2979 | * @link: Link to set SATA spd for |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2980 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2981 | * Set SATA spd of @link according to sata_spd_limit. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2982 | * |
| 2983 | * LOCKING: |
| 2984 | * Inherited from caller. |
| 2985 | * |
| 2986 | * RETURNS: |
| 2987 | * 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] | 2988 | * changed. Negative errno if SCR registers are inaccessible. |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2989 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2990 | int sata_set_spd(struct ata_link *link) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2991 | { |
| 2992 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2993 | int rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2994 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2995 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 2996 | return rc; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2997 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2998 | if (!__sata_set_spd_needed(link, &scontrol)) |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 2999 | return 0; |
| 3000 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3001 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3002 | return rc; |
| 3003 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3004 | return 1; |
| 3005 | } |
| 3006 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3007 | /* |
| 3008 | * This mode timing computation functionality is ported over from |
| 3009 | * drivers/ide/ide-timing.h and was originally written by Vojtech Pavlik |
| 3010 | */ |
| 3011 | /* |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 3012 | * 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] | 3013 | * These were taken from ATA/ATAPI-6 standard, rev 0a, except |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 3014 | * for UDMA6, which is currently supported only by Maxtor drives. |
| 3015 | * |
| 3016 | * 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] | 3017 | */ |
| 3018 | |
| 3019 | static const struct ata_timing ata_timing[] = { |
David Daney | 3ada9c1 | 2009-01-15 17:45:31 -0800 | [diff] [blame] | 3020 | /* { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 0, 960, 0 }, */ |
| 3021 | { XFER_PIO_0, 70, 290, 240, 600, 165, 150, 0, 600, 0 }, |
| 3022 | { XFER_PIO_1, 50, 290, 93, 383, 125, 100, 0, 383, 0 }, |
| 3023 | { XFER_PIO_2, 30, 290, 40, 330, 100, 90, 0, 240, 0 }, |
| 3024 | { XFER_PIO_3, 30, 80, 70, 180, 80, 70, 0, 180, 0 }, |
| 3025 | { XFER_PIO_4, 25, 70, 25, 120, 70, 25, 0, 120, 0 }, |
| 3026 | { XFER_PIO_5, 15, 65, 25, 100, 65, 25, 0, 100, 0 }, |
| 3027 | { XFER_PIO_6, 10, 55, 20, 80, 55, 20, 0, 80, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3028 | |
David Daney | 3ada9c1 | 2009-01-15 17:45:31 -0800 | [diff] [blame] | 3029 | { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 50, 960, 0 }, |
| 3030 | { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 30, 480, 0 }, |
| 3031 | { XFER_SW_DMA_2, 60, 0, 0, 0, 120, 120, 20, 240, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3032 | |
David Daney | 3ada9c1 | 2009-01-15 17:45:31 -0800 | [diff] [blame] | 3033 | { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 20, 480, 0 }, |
| 3034 | { XFER_MW_DMA_1, 45, 0, 0, 0, 80, 50, 5, 150, 0 }, |
| 3035 | { XFER_MW_DMA_2, 25, 0, 0, 0, 70, 25, 5, 120, 0 }, |
| 3036 | { XFER_MW_DMA_3, 25, 0, 0, 0, 65, 25, 5, 100, 0 }, |
| 3037 | { XFER_MW_DMA_4, 25, 0, 0, 0, 55, 20, 5, 80, 0 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3038 | |
David Daney | 3ada9c1 | 2009-01-15 17:45:31 -0800 | [diff] [blame] | 3039 | /* { XFER_UDMA_SLOW, 0, 0, 0, 0, 0, 0, 0, 0, 150 }, */ |
| 3040 | { XFER_UDMA_0, 0, 0, 0, 0, 0, 0, 0, 0, 120 }, |
| 3041 | { XFER_UDMA_1, 0, 0, 0, 0, 0, 0, 0, 0, 80 }, |
| 3042 | { XFER_UDMA_2, 0, 0, 0, 0, 0, 0, 0, 0, 60 }, |
| 3043 | { XFER_UDMA_3, 0, 0, 0, 0, 0, 0, 0, 0, 45 }, |
| 3044 | { XFER_UDMA_4, 0, 0, 0, 0, 0, 0, 0, 0, 30 }, |
| 3045 | { XFER_UDMA_5, 0, 0, 0, 0, 0, 0, 0, 0, 20 }, |
| 3046 | { XFER_UDMA_6, 0, 0, 0, 0, 0, 0, 0, 0, 15 }, |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3047 | |
| 3048 | { 0xFF } |
| 3049 | }; |
| 3050 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3051 | #define ENOUGH(v, unit) (((v)-1)/(unit)+1) |
| 3052 | #define EZ(v, unit) ((v)?ENOUGH(v, unit):0) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3053 | |
| 3054 | static void ata_timing_quantize(const struct ata_timing *t, struct ata_timing *q, int T, int UT) |
| 3055 | { |
David Daney | 3ada9c1 | 2009-01-15 17:45:31 -0800 | [diff] [blame] | 3056 | q->setup = EZ(t->setup * 1000, T); |
| 3057 | q->act8b = EZ(t->act8b * 1000, T); |
| 3058 | q->rec8b = EZ(t->rec8b * 1000, T); |
| 3059 | q->cyc8b = EZ(t->cyc8b * 1000, T); |
| 3060 | q->active = EZ(t->active * 1000, T); |
| 3061 | q->recover = EZ(t->recover * 1000, T); |
| 3062 | q->dmack_hold = EZ(t->dmack_hold * 1000, T); |
| 3063 | q->cycle = EZ(t->cycle * 1000, T); |
| 3064 | q->udma = EZ(t->udma * 1000, UT); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3065 | } |
| 3066 | |
| 3067 | void ata_timing_merge(const struct ata_timing *a, const struct ata_timing *b, |
| 3068 | struct ata_timing *m, unsigned int what) |
| 3069 | { |
| 3070 | if (what & ATA_TIMING_SETUP ) m->setup = max(a->setup, b->setup); |
| 3071 | if (what & ATA_TIMING_ACT8B ) m->act8b = max(a->act8b, b->act8b); |
| 3072 | if (what & ATA_TIMING_REC8B ) m->rec8b = max(a->rec8b, b->rec8b); |
| 3073 | if (what & ATA_TIMING_CYC8B ) m->cyc8b = max(a->cyc8b, b->cyc8b); |
| 3074 | if (what & ATA_TIMING_ACTIVE ) m->active = max(a->active, b->active); |
| 3075 | if (what & ATA_TIMING_RECOVER) m->recover = max(a->recover, b->recover); |
David Daney | 3ada9c1 | 2009-01-15 17:45:31 -0800 | [diff] [blame] | 3076 | if (what & ATA_TIMING_DMACK_HOLD) m->dmack_hold = max(a->dmack_hold, b->dmack_hold); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3077 | if (what & ATA_TIMING_CYCLE ) m->cycle = max(a->cycle, b->cycle); |
| 3078 | if (what & ATA_TIMING_UDMA ) m->udma = max(a->udma, b->udma); |
| 3079 | } |
| 3080 | |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 3081 | const struct ata_timing *ata_timing_find_mode(u8 xfer_mode) |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3082 | { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3083 | const struct ata_timing *t = ata_timing; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3084 | |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3085 | while (xfer_mode > t->mode) |
| 3086 | t++; |
| 3087 | |
| 3088 | if (xfer_mode == t->mode) |
| 3089 | return t; |
| 3090 | return NULL; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3091 | } |
| 3092 | |
| 3093 | int ata_timing_compute(struct ata_device *adev, unsigned short speed, |
| 3094 | struct ata_timing *t, int T, int UT) |
| 3095 | { |
| 3096 | const struct ata_timing *s; |
| 3097 | struct ata_timing p; |
| 3098 | |
| 3099 | /* |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 3100 | * Find the mode. |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 3101 | */ |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3102 | |
| 3103 | if (!(s = ata_timing_find_mode(speed))) |
| 3104 | return -EINVAL; |
| 3105 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 3106 | memcpy(t, s, sizeof(*s)); |
| 3107 | |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3108 | /* |
| 3109 | * If the drive is an EIDE drive, it can tell us it needs extended |
| 3110 | * PIO/MW_DMA cycle timing. |
| 3111 | */ |
| 3112 | |
| 3113 | if (adev->id[ATA_ID_FIELD_VALID] & 2) { /* EIDE drive */ |
| 3114 | memset(&p, 0, sizeof(p)); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3115 | if (speed >= XFER_PIO_0 && speed <= XFER_SW_DMA_0) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3116 | if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO]; |
| 3117 | else p.cycle = p.cyc8b = adev->id[ATA_ID_EIDE_PIO_IORDY]; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3118 | } else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3119 | p.cycle = adev->id[ATA_ID_EIDE_DMA_MIN]; |
| 3120 | } |
| 3121 | ata_timing_merge(&p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B); |
| 3122 | } |
| 3123 | |
| 3124 | /* |
| 3125 | * Convert the timing to bus clock counts. |
| 3126 | */ |
| 3127 | |
Albert Lee | 75b1f2f | 2005-11-16 17:06:18 +0800 | [diff] [blame] | 3128 | ata_timing_quantize(t, t, T, UT); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3129 | |
| 3130 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 3131 | * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, |
| 3132 | * S.M.A.R.T * and some other commands. We have to ensure that the |
| 3133 | * DMA cycle timing is slower/equal than the fastest PIO timing. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3134 | */ |
| 3135 | |
Alan | fd3367af | 2006-12-07 12:41:18 +0000 | [diff] [blame] | 3136 | if (speed > XFER_PIO_6) { |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3137 | ata_timing_compute(adev, adev->pio_mode, &p, T, UT); |
| 3138 | ata_timing_merge(&p, t, t, ATA_TIMING_ALL); |
| 3139 | } |
| 3140 | |
| 3141 | /* |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 3142 | * Lengthen active & recovery time so that cycle time is correct. |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3143 | */ |
| 3144 | |
| 3145 | if (t->act8b + t->rec8b < t->cyc8b) { |
| 3146 | t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2; |
| 3147 | t->rec8b = t->cyc8b - t->act8b; |
| 3148 | } |
| 3149 | |
| 3150 | if (t->active + t->recover < t->cycle) { |
| 3151 | t->active += (t->cycle - (t->active + t->recover)) / 2; |
| 3152 | t->recover = t->cycle - t->active; |
| 3153 | } |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 3154 | |
Alan Cox | 4f701d1 | 2007-04-23 11:55:36 +0100 | [diff] [blame] | 3155 | /* In a few cases quantisation may produce enough errors to |
| 3156 | leave t->cycle too low for the sum of active and recovery |
| 3157 | if so we must correct this */ |
| 3158 | if (t->active + t->recover > t->cycle) |
| 3159 | t->cycle = t->active + t->recover; |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 3160 | |
| 3161 | return 0; |
| 3162 | } |
| 3163 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3164 | /** |
Tejun Heo | a0f79b9 | 2007-12-18 16:33:05 +0900 | [diff] [blame] | 3165 | * ata_timing_cycle2mode - find xfer mode for the specified cycle duration |
| 3166 | * @xfer_shift: ATA_SHIFT_* value for transfer type to examine. |
| 3167 | * @cycle: cycle duration in ns |
| 3168 | * |
| 3169 | * Return matching xfer mode for @cycle. The returned mode is of |
| 3170 | * the transfer type specified by @xfer_shift. If @cycle is too |
| 3171 | * slow for @xfer_shift, 0xff is returned. If @cycle is faster |
| 3172 | * than the fastest known mode, the fasted mode is returned. |
| 3173 | * |
| 3174 | * LOCKING: |
| 3175 | * None. |
| 3176 | * |
| 3177 | * RETURNS: |
| 3178 | * Matching xfer_mode, 0xff if no match found. |
| 3179 | */ |
| 3180 | u8 ata_timing_cycle2mode(unsigned int xfer_shift, int cycle) |
| 3181 | { |
| 3182 | u8 base_mode = 0xff, last_mode = 0xff; |
| 3183 | const struct ata_xfer_ent *ent; |
| 3184 | const struct ata_timing *t; |
| 3185 | |
| 3186 | for (ent = ata_xfer_tbl; ent->shift >= 0; ent++) |
| 3187 | if (ent->shift == xfer_shift) |
| 3188 | base_mode = ent->base; |
| 3189 | |
| 3190 | for (t = ata_timing_find_mode(base_mode); |
| 3191 | t && ata_xfer_mode2shift(t->mode) == xfer_shift; t++) { |
| 3192 | unsigned short this_cycle; |
| 3193 | |
| 3194 | switch (xfer_shift) { |
| 3195 | case ATA_SHIFT_PIO: |
| 3196 | case ATA_SHIFT_MWDMA: |
| 3197 | this_cycle = t->cycle; |
| 3198 | break; |
| 3199 | case ATA_SHIFT_UDMA: |
| 3200 | this_cycle = t->udma; |
| 3201 | break; |
| 3202 | default: |
| 3203 | return 0xff; |
| 3204 | } |
| 3205 | |
| 3206 | if (cycle > this_cycle) |
| 3207 | break; |
| 3208 | |
| 3209 | last_mode = t->mode; |
| 3210 | } |
| 3211 | |
| 3212 | return last_mode; |
| 3213 | } |
| 3214 | |
| 3215 | /** |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3216 | * ata_down_xfermask_limit - adjust dev xfer masks downward |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3217 | * @dev: Device to adjust xfer masks |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3218 | * @sel: ATA_DNXFER_* selector |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3219 | * |
| 3220 | * Adjust xfer masks of @dev downward. Note that this function |
| 3221 | * does not apply the change. Invoking ata_set_mode() afterwards |
| 3222 | * will apply the limit. |
| 3223 | * |
| 3224 | * LOCKING: |
| 3225 | * Inherited from caller. |
| 3226 | * |
| 3227 | * RETURNS: |
| 3228 | * 0 on success, negative errno on failure |
| 3229 | */ |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3230 | int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel) |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3231 | { |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3232 | char buf[32]; |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 3233 | unsigned long orig_mask, xfer_mask; |
| 3234 | unsigned long pio_mask, mwdma_mask, udma_mask; |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3235 | int quiet, highbit; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3236 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3237 | quiet = !!(sel & ATA_DNXFER_QUIET); |
| 3238 | sel &= ~ATA_DNXFER_QUIET; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3239 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3240 | xfer_mask = orig_mask = ata_pack_xfermask(dev->pio_mask, |
| 3241 | dev->mwdma_mask, |
| 3242 | dev->udma_mask); |
| 3243 | ata_unpack_xfermask(xfer_mask, &pio_mask, &mwdma_mask, &udma_mask); |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3244 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3245 | switch (sel) { |
| 3246 | case ATA_DNXFER_PIO: |
| 3247 | highbit = fls(pio_mask) - 1; |
| 3248 | pio_mask &= ~(1 << highbit); |
| 3249 | break; |
| 3250 | |
| 3251 | case ATA_DNXFER_DMA: |
| 3252 | if (udma_mask) { |
| 3253 | highbit = fls(udma_mask) - 1; |
| 3254 | udma_mask &= ~(1 << highbit); |
| 3255 | if (!udma_mask) |
| 3256 | return -ENOENT; |
| 3257 | } else if (mwdma_mask) { |
| 3258 | highbit = fls(mwdma_mask) - 1; |
| 3259 | mwdma_mask &= ~(1 << highbit); |
| 3260 | if (!mwdma_mask) |
| 3261 | return -ENOENT; |
| 3262 | } |
| 3263 | break; |
| 3264 | |
| 3265 | case ATA_DNXFER_40C: |
| 3266 | udma_mask &= ATA_UDMA_MASK_40C; |
| 3267 | break; |
| 3268 | |
| 3269 | case ATA_DNXFER_FORCE_PIO0: |
| 3270 | pio_mask &= 1; |
| 3271 | case ATA_DNXFER_FORCE_PIO: |
| 3272 | mwdma_mask = 0; |
| 3273 | udma_mask = 0; |
| 3274 | break; |
| 3275 | |
Tejun Heo | 458337d | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 3276 | default: |
| 3277 | BUG(); |
| 3278 | } |
| 3279 | |
| 3280 | xfer_mask &= ata_pack_xfermask(pio_mask, mwdma_mask, udma_mask); |
| 3281 | |
| 3282 | if (!(xfer_mask & ATA_MASK_PIO) || xfer_mask == orig_mask) |
| 3283 | return -ENOENT; |
| 3284 | |
| 3285 | if (!quiet) { |
| 3286 | if (xfer_mask & (ATA_MASK_MWDMA | ATA_MASK_UDMA)) |
| 3287 | snprintf(buf, sizeof(buf), "%s:%s", |
| 3288 | ata_mode_string(xfer_mask), |
| 3289 | ata_mode_string(xfer_mask & ATA_MASK_PIO)); |
| 3290 | else |
| 3291 | snprintf(buf, sizeof(buf), "%s", |
| 3292 | ata_mode_string(xfer_mask)); |
| 3293 | |
| 3294 | ata_dev_printk(dev, KERN_WARNING, |
| 3295 | "limiting speed to %s\n", buf); |
| 3296 | } |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3297 | |
| 3298 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, &dev->mwdma_mask, |
| 3299 | &dev->udma_mask); |
| 3300 | |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3301 | return 0; |
Tejun Heo | cf176e1 | 2006-04-02 17:54:46 +0900 | [diff] [blame] | 3302 | } |
| 3303 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3304 | static int ata_dev_set_mode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3305 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3306 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3307 | const char *dev_err_whine = ""; |
| 3308 | int ign_dev_err = 0; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3309 | unsigned int err_mask; |
| 3310 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | |
Tejun Heo | e838460 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 3312 | dev->flags &= ~ATA_DFLAG_PIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | if (dev->xfer_shift == ATA_SHIFT_PIO) |
| 3314 | dev->flags |= ATA_DFLAG_PIO; |
| 3315 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3316 | err_mask = ata_dev_set_xfermode(dev); |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3317 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3318 | if (err_mask & ~AC_ERR_DEV) |
| 3319 | goto fail; |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 3320 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3321 | /* revalidate */ |
Tejun Heo | baa1e78 | 2006-11-01 18:39:27 +0900 | [diff] [blame] | 3322 | ehc->i.flags |= ATA_EHI_POST_SETMODE; |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3323 | rc = ata_dev_revalidate(dev, ATA_DEV_UNKNOWN, 0); |
Tejun Heo | baa1e78 | 2006-11-01 18:39:27 +0900 | [diff] [blame] | 3324 | ehc->i.flags &= ~ATA_EHI_POST_SETMODE; |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 3325 | if (rc) |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3326 | return rc; |
Tejun Heo | 48a8a14 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3327 | |
Alan Cox | b93fda1 | 2008-04-08 16:36:44 +0100 | [diff] [blame] | 3328 | if (dev->xfer_shift == ATA_SHIFT_PIO) { |
| 3329 | /* Old CFA may refuse this command, which is just fine */ |
| 3330 | if (ata_id_is_cfa(dev->id)) |
| 3331 | ign_dev_err = 1; |
| 3332 | /* Catch several broken garbage emulations plus some pre |
| 3333 | ATA devices */ |
| 3334 | if (ata_id_major_version(dev->id) == 0 && |
| 3335 | dev->pio_mode <= XFER_PIO_2) |
| 3336 | ign_dev_err = 1; |
| 3337 | /* Some very old devices and some bad newer ones fail |
| 3338 | any kind of SET_XFERMODE request but support PIO0-2 |
| 3339 | timings and no IORDY */ |
| 3340 | if (!ata_id_has_iordy(dev->id) && dev->pio_mode <= XFER_PIO_2) |
| 3341 | ign_dev_err = 1; |
| 3342 | } |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3343 | /* Early MWDMA devices do DMA but don't allow DMA mode setting. |
| 3344 | Don't fail an MWDMA0 set IFF the device indicates it is in MWDMA0 */ |
| 3345 | if (dev->xfer_shift == ATA_SHIFT_MWDMA && |
| 3346 | dev->dma_mode == XFER_MW_DMA_0 && |
| 3347 | (dev->id[63] >> 8) & 1) |
| 3348 | ign_dev_err = 1; |
| 3349 | |
| 3350 | /* if the device is actually configured correctly, ignore dev err */ |
| 3351 | if (dev->xfer_mode == ata_xfer_mask2mode(ata_id_xfermask(dev->id))) |
| 3352 | ign_dev_err = 1; |
| 3353 | |
| 3354 | if (err_mask & AC_ERR_DEV) { |
| 3355 | if (!ign_dev_err) |
| 3356 | goto fail; |
| 3357 | else |
| 3358 | dev_err_whine = " (device error ignored)"; |
| 3359 | } |
| 3360 | |
Tejun Heo | 23e71c3 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3361 | DPRINTK("xfer_shift=%u, xfer_mode=0x%x\n", |
| 3362 | dev->xfer_shift, (int)dev->xfer_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3364 | ata_dev_printk(dev, KERN_INFO, "configured for %s%s\n", |
| 3365 | ata_mode_string(ata_xfer_mode2mask(dev->xfer_mode)), |
| 3366 | dev_err_whine); |
| 3367 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3368 | return 0; |
Tejun Heo | 4055dee | 2008-02-07 10:34:08 +0900 | [diff] [blame] | 3369 | |
| 3370 | fail: |
| 3371 | ata_dev_printk(dev, KERN_ERR, "failed to set xfermode " |
| 3372 | "(err_mask=0x%x)\n", err_mask); |
| 3373 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3374 | } |
| 3375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3376 | /** |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3377 | * ata_do_set_mode - Program timings and issue SET FEATURES - XFER |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3378 | * @link: link on which timings will be programmed |
Joe Perches | 1967b7f | 2008-02-03 17:08:11 +0200 | [diff] [blame] | 3379 | * @r_failed_dev: out parameter for failed device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3380 | * |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3381 | * Standard implementation of the function used to tune and set |
| 3382 | * ATA device disk transfer mode (PIO3, UDMA6, etc.). If |
| 3383 | * ata_dev_set_mode() fails, pointer to the failing device is |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3384 | * returned in @r_failed_dev. |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 3385 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3386 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 3387 | * PCI/etc. bus probe sem. |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3388 | * |
| 3389 | * RETURNS: |
| 3390 | * 0 on success, negative errno otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3391 | */ |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 3392 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3393 | 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] | 3394 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3395 | struct ata_port *ap = link->ap; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3396 | struct ata_device *dev; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3397 | int rc = 0, used_dma = 0, found = 0; |
Tejun Heo | 3adcebb | 2006-05-15 20:57:37 +0900 | [diff] [blame] | 3398 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3399 | /* step 1: calculate xfer_mask */ |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 3400 | ata_for_each_dev(dev, link, ENABLED) { |
Tejun Heo | 7dc951a | 2007-11-27 19:43:42 +0900 | [diff] [blame] | 3401 | unsigned long pio_mask, dma_mask; |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3402 | unsigned int mode_mask; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3403 | |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3404 | mode_mask = ATA_DMA_MASK_ATA; |
| 3405 | if (dev->class == ATA_DEV_ATAPI) |
| 3406 | mode_mask = ATA_DMA_MASK_ATAPI; |
| 3407 | else if (ata_id_is_cfa(dev->id)) |
| 3408 | mode_mask = ATA_DMA_MASK_CFA; |
| 3409 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3410 | ata_dev_xfermask(dev); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 3411 | ata_force_xfermask(dev); |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3412 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3413 | pio_mask = ata_pack_xfermask(dev->pio_mask, 0, 0); |
| 3414 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
Alan Cox | b3a7060 | 2007-10-02 12:38:26 -0400 | [diff] [blame] | 3415 | |
| 3416 | if (libata_dma_mask & mode_mask) |
| 3417 | dma_mask = ata_pack_xfermask(0, dev->mwdma_mask, dev->udma_mask); |
| 3418 | else |
| 3419 | dma_mask = 0; |
| 3420 | |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 3421 | dev->pio_mode = ata_xfer_mask2mode(pio_mask); |
| 3422 | dev->dma_mode = ata_xfer_mask2mode(dma_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3423 | |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3424 | found = 1; |
Alan Cox | b15b3eb | 2008-08-01 09:18:34 +0100 | [diff] [blame] | 3425 | if (ata_dma_enabled(dev)) |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3426 | used_dma = 1; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3427 | } |
Tejun Heo | 4f65977 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3428 | if (!found) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3429 | goto out; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3430 | |
| 3431 | /* step 2: always set host PIO timings */ |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 3432 | ata_for_each_dev(dev, link, ENABLED) { |
Tejun Heo | 70cd071 | 2007-11-27 19:43:40 +0900 | [diff] [blame] | 3433 | if (dev->pio_mode == 0xff) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3434 | ata_dev_printk(dev, KERN_WARNING, "no PIO support\n"); |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3435 | rc = -EINVAL; |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3436 | goto out; |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3437 | } |
| 3438 | |
| 3439 | dev->xfer_mode = dev->pio_mode; |
| 3440 | dev->xfer_shift = ATA_SHIFT_PIO; |
| 3441 | if (ap->ops->set_piomode) |
| 3442 | ap->ops->set_piomode(ap, dev); |
| 3443 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3444 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 3445 | /* step 3: set host DMA timings */ |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 3446 | ata_for_each_dev(dev, link, ENABLED) { |
| 3447 | if (!ata_dma_enabled(dev)) |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3448 | continue; |
| 3449 | |
| 3450 | dev->xfer_mode = dev->dma_mode; |
| 3451 | dev->xfer_shift = ata_xfer_mode2shift(dev->dma_mode); |
| 3452 | if (ap->ops->set_dmamode) |
| 3453 | ap->ops->set_dmamode(ap, dev); |
| 3454 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3455 | |
| 3456 | /* step 4: update devices' xfer mode */ |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 3457 | ata_for_each_dev(dev, link, ENABLED) { |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3458 | rc = ata_dev_set_mode(dev); |
Tejun Heo | 5bbc53f | 2006-04-01 01:38:17 +0900 | [diff] [blame] | 3459 | if (rc) |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3460 | goto out; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 3461 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3462 | |
Tejun Heo | e8e0619 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3463 | /* Record simplex status. If we selected DMA then the other |
| 3464 | * host channels are not permitted to do so. |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3465 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 3466 | if (used_dma && (ap->host->flags & ATA_HOST_SIMPLEX)) |
Alan | 032af1c | 2007-03-01 17:36:46 +0000 | [diff] [blame] | 3467 | ap->host->simplex_claimed = ap; |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 3468 | |
Tejun Heo | e82cbdb | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3469 | out: |
| 3470 | if (rc) |
| 3471 | *r_failed_dev = dev; |
| 3472 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3473 | } |
| 3474 | |
| 3475 | /** |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3476 | * ata_wait_ready - wait for link to become ready |
| 3477 | * @link: link to be waited on |
| 3478 | * @deadline: deadline jiffies for the operation |
| 3479 | * @check_ready: callback to check link readiness |
| 3480 | * |
| 3481 | * Wait for @link to become ready. @check_ready should return |
| 3482 | * positive number if @link is ready, 0 if it isn't, -ENODEV if |
| 3483 | * link doesn't seem to be occupied, other errno for other error |
| 3484 | * conditions. |
| 3485 | * |
| 3486 | * Transient -ENODEV conditions are allowed for |
| 3487 | * ATA_TMOUT_FF_WAIT. |
| 3488 | * |
| 3489 | * LOCKING: |
| 3490 | * EH context. |
| 3491 | * |
| 3492 | * RETURNS: |
| 3493 | * 0 if @linke is ready before @deadline; otherwise, -errno. |
| 3494 | */ |
| 3495 | int ata_wait_ready(struct ata_link *link, unsigned long deadline, |
| 3496 | int (*check_ready)(struct ata_link *link)) |
| 3497 | { |
| 3498 | unsigned long start = jiffies; |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 3499 | unsigned long nodev_deadline = ata_deadline(start, ATA_TMOUT_FF_WAIT); |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3500 | int warned = 0; |
| 3501 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 3502 | /* Slave readiness can't be tested separately from master. On |
| 3503 | * M/S emulation configuration, this function should be called |
| 3504 | * only on the master and it will handle both master and slave. |
| 3505 | */ |
| 3506 | WARN_ON(link == link->ap->slave_link); |
| 3507 | |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3508 | if (time_after(nodev_deadline, deadline)) |
| 3509 | nodev_deadline = deadline; |
| 3510 | |
| 3511 | while (1) { |
| 3512 | unsigned long now = jiffies; |
| 3513 | int ready, tmp; |
| 3514 | |
| 3515 | ready = tmp = check_ready(link); |
| 3516 | if (ready > 0) |
| 3517 | return 0; |
| 3518 | |
| 3519 | /* -ENODEV could be transient. Ignore -ENODEV if link |
| 3520 | * is online. Also, some SATA devices take a long |
| 3521 | * time to clear 0xff after reset. For example, |
| 3522 | * HHD424020F7SV00 iVDR needs >= 800ms while Quantum |
| 3523 | * GoVault needs even more than that. Wait for |
| 3524 | * ATA_TMOUT_FF_WAIT on -ENODEV if link isn't offline. |
| 3525 | * |
| 3526 | * Note that some PATA controllers (pata_ali) explode |
| 3527 | * if status register is read more than once when |
| 3528 | * there's no device attached. |
| 3529 | */ |
| 3530 | if (ready == -ENODEV) { |
| 3531 | if (ata_link_online(link)) |
| 3532 | ready = 0; |
| 3533 | else if ((link->ap->flags & ATA_FLAG_SATA) && |
| 3534 | !ata_link_offline(link) && |
| 3535 | time_before(now, nodev_deadline)) |
| 3536 | ready = 0; |
| 3537 | } |
| 3538 | |
| 3539 | if (ready) |
| 3540 | return ready; |
| 3541 | if (time_after(now, deadline)) |
| 3542 | return -EBUSY; |
| 3543 | |
| 3544 | if (!warned && time_after(now, start + 5 * HZ) && |
| 3545 | (deadline - now > 3 * HZ)) { |
| 3546 | ata_link_printk(link, KERN_WARNING, |
| 3547 | "link is slow to respond, please be patient " |
| 3548 | "(ready=%d)\n", tmp); |
| 3549 | warned = 1; |
| 3550 | } |
| 3551 | |
| 3552 | msleep(50); |
| 3553 | } |
| 3554 | } |
| 3555 | |
| 3556 | /** |
| 3557 | * ata_wait_after_reset - wait for link to become ready after reset |
| 3558 | * @link: link to be waited on |
| 3559 | * @deadline: deadline jiffies for the operation |
| 3560 | * @check_ready: callback to check link readiness |
| 3561 | * |
| 3562 | * Wait for @link to become ready after reset. |
| 3563 | * |
| 3564 | * LOCKING: |
| 3565 | * EH context. |
| 3566 | * |
| 3567 | * RETURNS: |
| 3568 | * 0 if @linke is ready before @deadline; otherwise, -errno. |
| 3569 | */ |
Harvey Harrison | 2b4221b | 2008-04-24 18:37:34 -0700 | [diff] [blame] | 3570 | int ata_wait_after_reset(struct ata_link *link, unsigned long deadline, |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3571 | int (*check_ready)(struct ata_link *link)) |
| 3572 | { |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 3573 | msleep(ATA_WAIT_AFTER_RESET); |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3574 | |
| 3575 | return ata_wait_ready(link, deadline, check_ready); |
| 3576 | } |
| 3577 | |
| 3578 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3579 | * sata_link_debounce - debounce SATA phy status |
| 3580 | * @link: ATA link to debounce SATA phy status for |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3581 | * @params: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3582 | * @deadline: deadline jiffies for the operation |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3583 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3584 | * Make sure SStatus of @link reaches stable state, determined by |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3585 | * holding the same value where DET is not 1 for @duration polled |
| 3586 | * every @interval, before @timeout. Timeout constraints the |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3587 | * beginning of the stable state. Because DET gets stuck at 1 on |
| 3588 | * some controllers after hot unplugging, this functions waits |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3589 | * until timeout then returns 0 if DET is stable at 1. |
| 3590 | * |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3591 | * @timeout is further limited by @deadline. The sooner of the |
| 3592 | * two is used. |
| 3593 | * |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3594 | * LOCKING: |
| 3595 | * Kernel thread context (may sleep) |
| 3596 | * |
| 3597 | * RETURNS: |
| 3598 | * 0 on success, -errno on failure. |
| 3599 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3600 | int sata_link_debounce(struct ata_link *link, const unsigned long *params, |
| 3601 | unsigned long deadline) |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3602 | { |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 3603 | unsigned long interval = params[0]; |
| 3604 | unsigned long duration = params[1]; |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3605 | unsigned long last_jiffies, t; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3606 | u32 last, cur; |
| 3607 | int rc; |
| 3608 | |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 3609 | t = ata_deadline(jiffies, params[2]); |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3610 | if (time_before(t, deadline)) |
| 3611 | deadline = t; |
| 3612 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3613 | if ((rc = sata_scr_read(link, SCR_STATUS, &cur))) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3614 | return rc; |
| 3615 | cur &= 0xf; |
| 3616 | |
| 3617 | last = cur; |
| 3618 | last_jiffies = jiffies; |
| 3619 | |
| 3620 | while (1) { |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 3621 | msleep(interval); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3622 | if ((rc = sata_scr_read(link, SCR_STATUS, &cur))) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3623 | return rc; |
| 3624 | cur &= 0xf; |
| 3625 | |
| 3626 | /* DET stable? */ |
| 3627 | if (cur == last) { |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3628 | if (cur == 1 && time_before(jiffies, deadline)) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3629 | continue; |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 3630 | if (time_after(jiffies, |
| 3631 | ata_deadline(last_jiffies, duration))) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3632 | return 0; |
| 3633 | continue; |
| 3634 | } |
| 3635 | |
| 3636 | /* unstable, start over */ |
| 3637 | last = cur; |
| 3638 | last_jiffies = jiffies; |
| 3639 | |
Tejun Heo | f154515 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3640 | /* Check deadline. If debouncing failed, return |
| 3641 | * -EPIPE to tell upper layer to lower link speed. |
| 3642 | */ |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3643 | if (time_after(jiffies, deadline)) |
Tejun Heo | f154515 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 3644 | return -EPIPE; |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3645 | } |
| 3646 | } |
| 3647 | |
| 3648 | /** |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3649 | * sata_link_resume - resume SATA link |
| 3650 | * @link: ATA link to resume SATA |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3651 | * @params: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3652 | * @deadline: deadline jiffies for the operation |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3653 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3654 | * Resume SATA phy @link and debounce it. |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3655 | * |
| 3656 | * LOCKING: |
| 3657 | * Kernel thread context (may sleep) |
| 3658 | * |
| 3659 | * RETURNS: |
| 3660 | * 0 on success, -errno on failure. |
| 3661 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3662 | int sata_link_resume(struct ata_link *link, const unsigned long *params, |
| 3663 | unsigned long deadline) |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3664 | { |
Tejun Heo | ac37198 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3665 | u32 scontrol, serror; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3666 | int rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3667 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3668 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3669 | return rc; |
| 3670 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3671 | scontrol = (scontrol & 0x0f0) | 0x300; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3672 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3673 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3674 | return rc; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3675 | |
Tejun Heo | d7bb4cc | 2006-05-31 18:27:46 +0900 | [diff] [blame] | 3676 | /* Some PHYs react badly if SStatus is pounded immediately |
| 3677 | * after resuming. Delay 200ms before debouncing. |
| 3678 | */ |
| 3679 | msleep(200); |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3680 | |
Tejun Heo | ac37198 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3681 | if ((rc = sata_link_debounce(link, params, deadline))) |
| 3682 | return rc; |
| 3683 | |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 3684 | /* clear SError, some PHYs require this even for SRST to work */ |
Tejun Heo | ac37198 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3685 | if (!(rc = sata_scr_read(link, SCR_ERROR, &serror))) |
| 3686 | rc = sata_scr_write(link, SCR_ERROR, serror); |
Tejun Heo | ac37198 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3687 | |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 3688 | return rc != -EINVAL ? rc : 0; |
Tejun Heo | 7a7921e | 2006-02-02 18:20:00 +0900 | [diff] [blame] | 3689 | } |
| 3690 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3691 | /** |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3692 | * ata_std_prereset - prepare for reset |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3693 | * @link: ATA link to be reset |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3694 | * @deadline: deadline jiffies for the operation |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3695 | * |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3696 | * @link is about to be reset. Initialize it. Failure from |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3697 | * prereset makes libata abort whole reset sequence and give up |
| 3698 | * that port, so prereset should be best-effort. It does its |
| 3699 | * best to prepare for reset sequence but if things go wrong, it |
| 3700 | * should just whine, not fail. |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3701 | * |
| 3702 | * LOCKING: |
| 3703 | * Kernel thread context (may sleep) |
| 3704 | * |
| 3705 | * RETURNS: |
| 3706 | * 0 on success, -errno otherwise. |
| 3707 | */ |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3708 | int ata_std_prereset(struct ata_link *link, unsigned long deadline) |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3709 | { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3710 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3711 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 3712 | const unsigned long *timing = sata_ehc_deb_timing(ehc); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3713 | int rc; |
| 3714 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3715 | /* if we're about to do hardreset, nothing more to do */ |
| 3716 | if (ehc->i.action & ATA_EH_HARDRESET) |
| 3717 | return 0; |
| 3718 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3719 | /* if SATA, resume link */ |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 3720 | if (ap->flags & ATA_FLAG_SATA) { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3721 | rc = sata_link_resume(link, timing, deadline); |
Tejun Heo | b8cffc6 | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3722 | /* whine about phy resume failure but proceed */ |
| 3723 | if (rc && rc != -EOPNOTSUPP) |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3724 | ata_link_printk(link, KERN_WARNING, "failed to resume " |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3725 | "link for reset (errno=%d)\n", rc); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3726 | } |
| 3727 | |
Tejun Heo | 45db2f6 | 2008-04-08 01:46:56 +0900 | [diff] [blame] | 3728 | /* no point in trying softreset on offline link */ |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 3729 | if (ata_phys_link_offline(link)) |
Tejun Heo | 45db2f6 | 2008-04-08 01:46:56 +0900 | [diff] [blame] | 3730 | ehc->i.action &= ~ATA_EH_SOFTRESET; |
| 3731 | |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 3732 | return 0; |
| 3733 | } |
| 3734 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3735 | /** |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3736 | * sata_link_hardreset - reset link via SATA phy reset |
| 3737 | * @link: link to reset |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3738 | * @timing: timing parameters { interval, duratinon, timeout } in msec |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 3739 | * @deadline: deadline jiffies for the operation |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3740 | * @online: optional out parameter indicating link onlineness |
| 3741 | * @check_ready: optional callback to check link readiness |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3742 | * |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3743 | * SATA phy-reset @link using DET bits of SControl register. |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3744 | * After hardreset, link readiness is waited upon using |
| 3745 | * ata_wait_ready() if @check_ready is specified. LLDs are |
| 3746 | * allowed to not specify @check_ready and wait itself after this |
| 3747 | * function returns. Device classification is LLD's |
| 3748 | * responsibility. |
| 3749 | * |
| 3750 | * *@online is set to one iff reset succeeded and @link is online |
| 3751 | * after reset. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3752 | * |
| 3753 | * LOCKING: |
| 3754 | * Kernel thread context (may sleep) |
| 3755 | * |
| 3756 | * RETURNS: |
| 3757 | * 0 on success, -errno otherwise. |
| 3758 | */ |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3759 | int sata_link_hardreset(struct ata_link *link, const unsigned long *timing, |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3760 | unsigned long deadline, |
| 3761 | bool *online, int (*check_ready)(struct ata_link *)) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3762 | { |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3763 | u32 scontrol; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3764 | int rc; |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3765 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3766 | DPRINTK("ENTER\n"); |
| 3767 | |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3768 | if (online) |
| 3769 | *online = false; |
| 3770 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3771 | if (sata_set_spd_needed(link)) { |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3772 | /* SATA spec says nothing about how to reconfigure |
| 3773 | * spd. To be on the safe side, turn off phy during |
| 3774 | * reconfiguration. This works for at least ICH7 AHCI |
| 3775 | * and Sil3124. |
| 3776 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3777 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3778 | goto out; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3779 | |
Martin Hicks | a34b6fc | 2006-07-05 15:06:13 -0400 | [diff] [blame] | 3780 | scontrol = (scontrol & 0x0f0) | 0x304; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3781 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3782 | if ((rc = sata_scr_write(link, SCR_CONTROL, scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3783 | goto out; |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3784 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3785 | sata_set_spd(link); |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3786 | } |
| 3787 | |
| 3788 | /* issue phy wake/reset */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3789 | if ((rc = sata_scr_read(link, SCR_CONTROL, &scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3790 | goto out; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3791 | |
Tejun Heo | 852ee16 | 2006-04-01 01:38:18 +0900 | [diff] [blame] | 3792 | scontrol = (scontrol & 0x0f0) | 0x301; |
Tejun Heo | 81952c5 | 2006-05-15 20:57:47 +0900 | [diff] [blame] | 3793 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3794 | if ((rc = sata_scr_write_flush(link, SCR_CONTROL, scontrol))) |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3795 | goto out; |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3796 | |
Tejun Heo | 1c3fae4 | 2006-04-02 20:53:28 +0900 | [diff] [blame] | 3797 | /* 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] | 3798 | * 10.4.2 says at least 1 ms. |
| 3799 | */ |
| 3800 | msleep(1); |
| 3801 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3802 | /* bring link back */ |
| 3803 | rc = sata_link_resume(link, timing, deadline); |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3804 | if (rc) |
| 3805 | goto out; |
| 3806 | /* if link is offline nothing more to do */ |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 3807 | if (ata_phys_link_offline(link)) |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3808 | goto out; |
| 3809 | |
| 3810 | /* Link is online. From this point, -ENODEV too is an error. */ |
| 3811 | if (online) |
| 3812 | *online = true; |
| 3813 | |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 3814 | if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) { |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3815 | /* If PMP is supported, we have to do follow-up SRST. |
| 3816 | * Some PMPs don't send D2H Reg FIS after hardreset if |
| 3817 | * the first port is empty. Wait only for |
| 3818 | * ATA_TMOUT_PMP_SRST_WAIT. |
| 3819 | */ |
| 3820 | if (check_ready) { |
| 3821 | unsigned long pmp_deadline; |
| 3822 | |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 3823 | pmp_deadline = ata_deadline(jiffies, |
| 3824 | ATA_TMOUT_PMP_SRST_WAIT); |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3825 | if (time_after(pmp_deadline, deadline)) |
| 3826 | pmp_deadline = deadline; |
| 3827 | ata_wait_ready(link, pmp_deadline, check_ready); |
| 3828 | } |
| 3829 | rc = -EAGAIN; |
| 3830 | goto out; |
| 3831 | } |
| 3832 | |
| 3833 | rc = 0; |
| 3834 | if (check_ready) |
| 3835 | rc = ata_wait_ready(link, deadline, check_ready); |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3836 | out: |
Tejun Heo | 0cbf071 | 2008-05-19 01:15:05 +0900 | [diff] [blame] | 3837 | if (rc && rc != -EAGAIN) { |
| 3838 | /* online is set iff link is online && reset succeeded */ |
| 3839 | if (online) |
| 3840 | *online = false; |
Tejun Heo | 9dadd45 | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3841 | ata_link_printk(link, KERN_ERR, |
| 3842 | "COMRESET failed (errno=%d)\n", rc); |
Tejun Heo | 0cbf071 | 2008-05-19 01:15:05 +0900 | [diff] [blame] | 3843 | } |
Tejun Heo | b6103f6 | 2006-11-01 17:59:53 +0900 | [diff] [blame] | 3844 | DPRINTK("EXIT, rc=%d\n", rc); |
| 3845 | return rc; |
| 3846 | } |
| 3847 | |
| 3848 | /** |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3849 | * sata_std_hardreset - COMRESET w/o waiting or classification |
| 3850 | * @link: link to reset |
| 3851 | * @class: resulting class of attached device |
| 3852 | * @deadline: deadline jiffies for the operation |
| 3853 | * |
| 3854 | * Standard SATA COMRESET w/o waiting or classification. |
| 3855 | * |
| 3856 | * LOCKING: |
| 3857 | * Kernel thread context (may sleep) |
| 3858 | * |
| 3859 | * RETURNS: |
| 3860 | * 0 if link offline, -EAGAIN if link online, -errno on errors. |
| 3861 | */ |
| 3862 | int sata_std_hardreset(struct ata_link *link, unsigned int *class, |
| 3863 | unsigned long deadline) |
| 3864 | { |
| 3865 | const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context); |
| 3866 | bool online; |
| 3867 | int rc; |
| 3868 | |
| 3869 | /* do hardreset */ |
| 3870 | rc = sata_link_hardreset(link, timing, deadline, &online, NULL); |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 3871 | return online ? -EAGAIN : rc; |
| 3872 | } |
| 3873 | |
| 3874 | /** |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3875 | * ata_std_postreset - standard postreset callback |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3876 | * @link: the target ata_link |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3877 | * @classes: classes of attached devices |
| 3878 | * |
| 3879 | * This function is invoked after a successful reset. Note that |
| 3880 | * the device might have been reset more than once using |
| 3881 | * different reset methods before postreset is invoked. |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3882 | * |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3883 | * LOCKING: |
| 3884 | * Kernel thread context (may sleep) |
| 3885 | */ |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 3886 | void ata_std_postreset(struct ata_link *link, unsigned int *classes) |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3887 | { |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 3888 | u32 serror; |
| 3889 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3890 | DPRINTK("ENTER\n"); |
| 3891 | |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 3892 | /* reset complete, clear SError */ |
| 3893 | if (!sata_scr_read(link, SCR_ERROR, &serror)) |
| 3894 | sata_scr_write(link, SCR_ERROR, serror); |
| 3895 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3896 | /* print link status */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 3897 | sata_print_link_status(link); |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3898 | |
Tejun Heo | c2bd580 | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3899 | DPRINTK("EXIT\n"); |
| 3900 | } |
| 3901 | |
Tejun Heo | a62c0fc | 2006-01-24 17:05:22 +0900 | [diff] [blame] | 3902 | /** |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3903 | * ata_dev_same_device - Determine whether new ID matches configured device |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3904 | * @dev: device to compare against |
| 3905 | * @new_class: class of the new device |
| 3906 | * @new_id: IDENTIFY page of the new device |
| 3907 | * |
| 3908 | * Compare @new_class and @new_id against @dev and determine |
| 3909 | * whether @dev is the device indicated by @new_class and |
| 3910 | * @new_id. |
| 3911 | * |
| 3912 | * LOCKING: |
| 3913 | * None. |
| 3914 | * |
| 3915 | * RETURNS: |
| 3916 | * 1 if @dev matches @new_class and @new_id, 0 otherwise. |
| 3917 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 3918 | static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class, |
| 3919 | const u16 *new_id) |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3920 | { |
| 3921 | const u16 *old_id = dev->id; |
Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 3922 | unsigned char model[2][ATA_ID_PROD_LEN + 1]; |
| 3923 | unsigned char serial[2][ATA_ID_SERNO_LEN + 1]; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3924 | |
| 3925 | if (dev->class != new_class) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3926 | ata_dev_printk(dev, KERN_INFO, "class mismatch %d != %d\n", |
| 3927 | dev->class, new_class); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3928 | return 0; |
| 3929 | } |
| 3930 | |
Tejun Heo | a0cf733 | 2007-01-02 20:18:49 +0900 | [diff] [blame] | 3931 | ata_id_c_string(old_id, model[0], ATA_ID_PROD, sizeof(model[0])); |
| 3932 | ata_id_c_string(new_id, model[1], ATA_ID_PROD, sizeof(model[1])); |
| 3933 | ata_id_c_string(old_id, serial[0], ATA_ID_SERNO, sizeof(serial[0])); |
| 3934 | 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] | 3935 | |
| 3936 | if (strcmp(model[0], model[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3937 | ata_dev_printk(dev, KERN_INFO, "model number mismatch " |
| 3938 | "'%s' != '%s'\n", model[0], model[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3939 | return 0; |
| 3940 | } |
| 3941 | |
| 3942 | if (strcmp(serial[0], serial[1])) { |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 3943 | ata_dev_printk(dev, KERN_INFO, "serial number mismatch " |
| 3944 | "'%s' != '%s'\n", serial[0], serial[1]); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3945 | return 0; |
| 3946 | } |
| 3947 | |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3948 | return 1; |
| 3949 | } |
| 3950 | |
| 3951 | /** |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3952 | * ata_dev_reread_id - Re-read IDENTIFY data |
Henrik Kretzschmar | 3fae450 | 2007-06-19 10:10:50 +0200 | [diff] [blame] | 3953 | * @dev: target ATA device |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 3954 | * @readid_flags: read ID flags |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3955 | * |
| 3956 | * Re-read IDENTIFY page and make sure @dev is still attached to |
| 3957 | * the port. |
| 3958 | * |
| 3959 | * LOCKING: |
| 3960 | * Kernel thread context (may sleep) |
| 3961 | * |
| 3962 | * RETURNS: |
| 3963 | * 0 on success, negative errno otherwise |
| 3964 | */ |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3965 | 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] | 3966 | { |
Tejun Heo | 5eb45c0 | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 3967 | unsigned int class = dev->class; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 3968 | u16 *id = (void *)dev->link->ap->sector_buf; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3969 | int rc; |
| 3970 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 3971 | /* read ID data */ |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 3972 | rc = ata_dev_read_id(dev, &class, readid_flags, id); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3973 | if (rc) |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3974 | return rc; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3975 | |
| 3976 | /* is the device still there? */ |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3977 | if (!ata_dev_same_device(dev, class, id)) |
| 3978 | return -ENODEV; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 3979 | |
Tejun Heo | fe635c7 | 2006-05-15 20:57:35 +0900 | [diff] [blame] | 3980 | memcpy(dev->id, id, sizeof(id[0]) * ATA_ID_WORDS); |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3981 | return 0; |
| 3982 | } |
| 3983 | |
| 3984 | /** |
| 3985 | * ata_dev_revalidate - Revalidate ATA device |
| 3986 | * @dev: device to revalidate |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3987 | * @new_class: new class code |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 3988 | * @readid_flags: read ID flags |
| 3989 | * |
| 3990 | * Re-read IDENTIFY page, make sure @dev is still attached to the |
| 3991 | * port and reconfigure it according to the new IDENTIFY page. |
| 3992 | * |
| 3993 | * LOCKING: |
| 3994 | * Kernel thread context (may sleep) |
| 3995 | * |
| 3996 | * RETURNS: |
| 3997 | * 0 on success, negative errno otherwise |
| 3998 | */ |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 3999 | int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class, |
| 4000 | unsigned int readid_flags) |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4001 | { |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4002 | u64 n_sectors = dev->n_sectors; |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4003 | int rc; |
| 4004 | |
| 4005 | if (!ata_dev_enabled(dev)) |
| 4006 | return -ENODEV; |
| 4007 | |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4008 | /* fail early if !ATA && !ATAPI to avoid issuing [P]IDENTIFY to PMP */ |
| 4009 | if (ata_class_enabled(new_class) && |
| 4010 | new_class != ATA_DEV_ATA && new_class != ATA_DEV_ATAPI) { |
| 4011 | ata_dev_printk(dev, KERN_INFO, "class mismatch %u != %u\n", |
| 4012 | dev->class, new_class); |
| 4013 | rc = -ENODEV; |
| 4014 | goto fail; |
| 4015 | } |
| 4016 | |
Tejun Heo | fe30911 | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4017 | /* re-read ID */ |
| 4018 | rc = ata_dev_reread_id(dev, readid_flags); |
| 4019 | if (rc) |
| 4020 | goto fail; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4021 | |
| 4022 | /* configure device according to the new ID */ |
Tejun Heo | efdaedc | 2006-11-01 18:38:52 +0900 | [diff] [blame] | 4023 | rc = ata_dev_configure(dev); |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4024 | if (rc) |
| 4025 | goto fail; |
| 4026 | |
| 4027 | /* verify n_sectors hasn't changed */ |
Tejun Heo | b54eebd | 2007-08-17 18:46:51 +0900 | [diff] [blame] | 4028 | if (dev->class == ATA_DEV_ATA && n_sectors && |
| 4029 | dev->n_sectors != n_sectors) { |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4030 | ata_dev_printk(dev, KERN_INFO, "n_sectors mismatch " |
| 4031 | "%llu != %llu\n", |
| 4032 | (unsigned long long)n_sectors, |
| 4033 | (unsigned long long)dev->n_sectors); |
Tejun Heo | 8270bec | 2007-08-16 03:02:22 +0900 | [diff] [blame] | 4034 | |
| 4035 | /* restore original n_sectors */ |
| 4036 | dev->n_sectors = n_sectors; |
| 4037 | |
Tejun Heo | 6ddcd3b | 2007-05-15 03:28:15 +0900 | [diff] [blame] | 4038 | rc = -ENODEV; |
| 4039 | goto fail; |
| 4040 | } |
| 4041 | |
| 4042 | return 0; |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4043 | |
| 4044 | fail: |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4045 | ata_dev_printk(dev, KERN_ERR, "revalidation failed (errno=%d)\n", rc); |
Tejun Heo | 623a312 | 2006-03-05 17:55:58 +0900 | [diff] [blame] | 4046 | return rc; |
| 4047 | } |
| 4048 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4049 | struct ata_blacklist_entry { |
| 4050 | const char *model_num; |
| 4051 | const char *model_rev; |
| 4052 | unsigned long horkage; |
| 4053 | }; |
| 4054 | |
| 4055 | static const struct ata_blacklist_entry ata_device_blacklist [] = { |
| 4056 | /* Devices with DMA related problems under Linux */ |
| 4057 | { "WDC AC11000H", NULL, ATA_HORKAGE_NODMA }, |
| 4058 | { "WDC AC22100H", NULL, ATA_HORKAGE_NODMA }, |
| 4059 | { "WDC AC32500H", NULL, ATA_HORKAGE_NODMA }, |
| 4060 | { "WDC AC33100H", NULL, ATA_HORKAGE_NODMA }, |
| 4061 | { "WDC AC31600H", NULL, ATA_HORKAGE_NODMA }, |
| 4062 | { "WDC AC32100H", "24.09P07", ATA_HORKAGE_NODMA }, |
| 4063 | { "WDC AC23200L", "21.10N21", ATA_HORKAGE_NODMA }, |
| 4064 | { "Compaq CRD-8241B", NULL, ATA_HORKAGE_NODMA }, |
| 4065 | { "CRD-8400B", NULL, ATA_HORKAGE_NODMA }, |
| 4066 | { "CRD-8480B", NULL, ATA_HORKAGE_NODMA }, |
| 4067 | { "CRD-8482B", NULL, ATA_HORKAGE_NODMA }, |
| 4068 | { "CRD-84", NULL, ATA_HORKAGE_NODMA }, |
| 4069 | { "SanDisk SDP3B", NULL, ATA_HORKAGE_NODMA }, |
| 4070 | { "SanDisk SDP3B-64", NULL, ATA_HORKAGE_NODMA }, |
| 4071 | { "SANYO CD-ROM CRD", NULL, ATA_HORKAGE_NODMA }, |
| 4072 | { "HITACHI CDR-8", NULL, ATA_HORKAGE_NODMA }, |
| 4073 | { "HITACHI CDR-8335", NULL, ATA_HORKAGE_NODMA }, |
| 4074 | { "HITACHI CDR-8435", NULL, ATA_HORKAGE_NODMA }, |
| 4075 | { "Toshiba CD-ROM XM-6202B", NULL, ATA_HORKAGE_NODMA }, |
| 4076 | { "TOSHIBA CD-ROM XM-1702BC", NULL, ATA_HORKAGE_NODMA }, |
| 4077 | { "CD-532E-A", NULL, ATA_HORKAGE_NODMA }, |
| 4078 | { "E-IDE CD-ROM CR-840",NULL, ATA_HORKAGE_NODMA }, |
| 4079 | { "CD-ROM Drive/F5A", NULL, ATA_HORKAGE_NODMA }, |
| 4080 | { "WPI CDD-820", NULL, ATA_HORKAGE_NODMA }, |
| 4081 | { "SAMSUNG CD-ROM SC-148C", NULL, ATA_HORKAGE_NODMA }, |
| 4082 | { "SAMSUNG CD-ROM SC", NULL, ATA_HORKAGE_NODMA }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4083 | { "ATAPI CD-ROM DRIVE 40X MAXIMUM",NULL,ATA_HORKAGE_NODMA }, |
| 4084 | { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA }, |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4085 | { "SAMSUNG CD-ROM SN-124", "N001", ATA_HORKAGE_NODMA }, |
Dave Jones | 39f1988 | 2007-05-21 14:31:03 -0400 | [diff] [blame] | 4086 | { "Seagate STT20000A", NULL, ATA_HORKAGE_NODMA }, |
Tejun Heo | 3af9a77 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 4087 | /* Odd clown on sil3726/4726 PMPs */ |
Tejun Heo | 50af2fa | 2008-05-19 01:15:14 +0900 | [diff] [blame] | 4088 | { "Config Disk", NULL, ATA_HORKAGE_DISABLE }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4089 | |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 4090 | /* Weird ATAPI devices */ |
Tejun Heo | 40a1d53 | 2007-06-27 02:49:38 +0900 | [diff] [blame] | 4091 | { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 }, |
Tejun Heo | 6a87e42 | 2008-11-03 19:01:09 +0900 | [diff] [blame] | 4092 | { "QUANTUM DAT DAT72-000", NULL, ATA_HORKAGE_ATAPI_MOD16_DMA }, |
Albert Lee | 18d6e9d | 2007-04-02 11:34:15 +0800 | [diff] [blame] | 4093 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4094 | /* Devices we expect to fail diagnostics */ |
| 4095 | |
| 4096 | /* Devices where NCQ should be avoided */ |
| 4097 | /* NCQ is slow */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4098 | { "WDC WD740ADFD-00", NULL, ATA_HORKAGE_NONCQ }, |
Tejun Heo | 459ad68 | 2007-12-07 12:46:23 +0900 | [diff] [blame] | 4099 | { "WDC WD740ADFD-00NLR1", NULL, ATA_HORKAGE_NONCQ, }, |
Tejun Heo | 09125ea | 2007-02-28 15:21:23 +0900 | [diff] [blame] | 4100 | /* http://thread.gmane.org/gmane.linux.ide/14907 */ |
| 4101 | { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ }, |
Paul Rolland | 7acfaf3 | 2007-03-26 21:43:44 -0800 | [diff] [blame] | 4102 | /* NCQ is broken */ |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4103 | { "Maxtor *", "BANC*", ATA_HORKAGE_NONCQ }, |
Alan Cox | 0e3dbc0 | 2007-09-20 15:22:47 +0100 | [diff] [blame] | 4104 | { "Maxtor 7V300F0", "VA111630", ATA_HORKAGE_NONCQ }, |
Paolo Ornati | da6f0ec | 2007-10-04 11:06:56 +0900 | [diff] [blame] | 4105 | { "ST380817AS", "3.42", ATA_HORKAGE_NONCQ }, |
Tejun Heo | e41bd3e | 2007-12-09 19:45:39 +0900 | [diff] [blame] | 4106 | { "ST3160023AS", "3.42", ATA_HORKAGE_NONCQ }, |
Lubomir Bulej | 5ccfca9 | 2008-12-22 11:35:22 +0100 | [diff] [blame] | 4107 | { "OCZ CORE_SSD", "02.10104", ATA_HORKAGE_NONCQ }, |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4108 | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 4109 | /* Seagate NCQ + FLUSH CACHE firmware bug */ |
Tejun Heo | d10d491 | 2008-12-11 13:42:42 +0900 | [diff] [blame] | 4110 | { "ST31500341AS", "SD15", ATA_HORKAGE_NONCQ | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 4111 | ATA_HORKAGE_FIRMWARE_WARN }, |
Tejun Heo | d10d491 | 2008-12-11 13:42:42 +0900 | [diff] [blame] | 4112 | { "ST31500341AS", "SD16", ATA_HORKAGE_NONCQ | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 4113 | ATA_HORKAGE_FIRMWARE_WARN }, |
Tejun Heo | d10d491 | 2008-12-11 13:42:42 +0900 | [diff] [blame] | 4114 | { "ST31500341AS", "SD17", ATA_HORKAGE_NONCQ | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 4115 | ATA_HORKAGE_FIRMWARE_WARN }, |
Tejun Heo | d10d491 | 2008-12-11 13:42:42 +0900 | [diff] [blame] | 4116 | { "ST31500341AS", "SD18", ATA_HORKAGE_NONCQ | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 4117 | ATA_HORKAGE_FIRMWARE_WARN }, |
Tejun Heo | d10d491 | 2008-12-11 13:42:42 +0900 | [diff] [blame] | 4118 | { "ST31500341AS", "SD19", ATA_HORKAGE_NONCQ | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 4119 | ATA_HORKAGE_FIRMWARE_WARN }, |
Tejun Heo | d10d491 | 2008-12-11 13:42:42 +0900 | [diff] [blame] | 4120 | |
| 4121 | { "ST31000333AS", "SD15", ATA_HORKAGE_NONCQ | |
| 4122 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4123 | { "ST31000333AS", "SD16", ATA_HORKAGE_NONCQ | |
| 4124 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4125 | { "ST31000333AS", "SD17", ATA_HORKAGE_NONCQ | |
| 4126 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4127 | { "ST31000333AS", "SD18", ATA_HORKAGE_NONCQ | |
| 4128 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4129 | { "ST31000333AS", "SD19", ATA_HORKAGE_NONCQ | |
| 4130 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4131 | |
| 4132 | { "ST3640623AS", "SD15", ATA_HORKAGE_NONCQ | |
| 4133 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4134 | { "ST3640623AS", "SD16", ATA_HORKAGE_NONCQ | |
| 4135 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4136 | { "ST3640623AS", "SD17", ATA_HORKAGE_NONCQ | |
| 4137 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4138 | { "ST3640623AS", "SD18", ATA_HORKAGE_NONCQ | |
| 4139 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4140 | { "ST3640623AS", "SD19", ATA_HORKAGE_NONCQ | |
| 4141 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4142 | |
| 4143 | { "ST3640323AS", "SD15", ATA_HORKAGE_NONCQ | |
| 4144 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4145 | { "ST3640323AS", "SD16", ATA_HORKAGE_NONCQ | |
| 4146 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4147 | { "ST3640323AS", "SD17", ATA_HORKAGE_NONCQ | |
| 4148 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4149 | { "ST3640323AS", "SD18", ATA_HORKAGE_NONCQ | |
| 4150 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4151 | { "ST3640323AS", "SD19", ATA_HORKAGE_NONCQ | |
| 4152 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4153 | |
| 4154 | { "ST3320813AS", "SD15", ATA_HORKAGE_NONCQ | |
| 4155 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4156 | { "ST3320813AS", "SD16", ATA_HORKAGE_NONCQ | |
| 4157 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4158 | { "ST3320813AS", "SD17", ATA_HORKAGE_NONCQ | |
| 4159 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4160 | { "ST3320813AS", "SD18", ATA_HORKAGE_NONCQ | |
| 4161 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4162 | { "ST3320813AS", "SD19", ATA_HORKAGE_NONCQ | |
| 4163 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4164 | |
| 4165 | { "ST3320613AS", "SD15", ATA_HORKAGE_NONCQ | |
| 4166 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4167 | { "ST3320613AS", "SD16", ATA_HORKAGE_NONCQ | |
| 4168 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4169 | { "ST3320613AS", "SD17", ATA_HORKAGE_NONCQ | |
| 4170 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4171 | { "ST3320613AS", "SD18", ATA_HORKAGE_NONCQ | |
| 4172 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4173 | { "ST3320613AS", "SD19", ATA_HORKAGE_NONCQ | |
Tejun Heo | ac70a96 | 2008-11-27 13:36:48 +0900 | [diff] [blame] | 4174 | ATA_HORKAGE_FIRMWARE_WARN }, |
| 4175 | |
Robert Hancock | 36e337d | 2007-04-02 22:05:29 -0600 | [diff] [blame] | 4176 | /* Blacklist entries taken from Silicon Image 3124/3132 |
| 4177 | Windows driver .inf file - also several Linux problem reports */ |
| 4178 | { "HTS541060G9SA00", "MB3OC60D", ATA_HORKAGE_NONCQ, }, |
| 4179 | { "HTS541080G9SA00", "MB4OC60D", ATA_HORKAGE_NONCQ, }, |
| 4180 | { "HTS541010G9SA00", "MBZOC60D", ATA_HORKAGE_NONCQ, }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4181 | |
Tejun Heo | 16c55b0 | 2007-08-29 11:58:33 +0900 | [diff] [blame] | 4182 | /* devices which puke on READ_NATIVE_MAX */ |
| 4183 | { "HDS724040KLSA80", "KFAOA20N", ATA_HORKAGE_BROKEN_HPA, }, |
| 4184 | { "WDC WD3200JD-00KLB0", "WD-WCAMR1130137", ATA_HORKAGE_BROKEN_HPA }, |
| 4185 | { "WDC WD2500JD-00HBB0", "WD-WMAL71490727", ATA_HORKAGE_BROKEN_HPA }, |
| 4186 | { "MAXTOR 6L080L4", "A93.0500", ATA_HORKAGE_BROKEN_HPA }, |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4187 | |
Alan Cox | 93328e1 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 4188 | /* Devices which report 1 sector over size HPA */ |
| 4189 | { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
| 4190 | { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
Mikko Rapeli | b152fcd | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 4191 | { "ST310211A", NULL, ATA_HORKAGE_HPA_SIZE, }, |
Alan Cox | 93328e1 | 2007-09-29 04:06:48 -0400 | [diff] [blame] | 4192 | |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4193 | /* Devices which get the IVB wrong */ |
| 4194 | { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, }, |
Alan Cox | a79067e | 2008-04-29 14:08:36 +0100 | [diff] [blame] | 4195 | /* Maybe we should just blacklist TSSTcorp... */ |
| 4196 | { "TSSTcorp CDDVDW SH-S202H", "SB00", ATA_HORKAGE_IVB, }, |
| 4197 | { "TSSTcorp CDDVDW SH-S202H", "SB01", ATA_HORKAGE_IVB, }, |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4198 | { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, }, |
Peter Missel | e9f3340 | 2007-11-27 18:04:42 +0100 | [diff] [blame] | 4199 | { "TSSTcorp CDDVDW SH-S202J", "SB01", ATA_HORKAGE_IVB, }, |
| 4200 | { "TSSTcorp CDDVDW SH-S202N", "SB00", ATA_HORKAGE_IVB, }, |
| 4201 | { "TSSTcorp CDDVDW SH-S202N", "SB01", ATA_HORKAGE_IVB, }, |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4202 | |
Jens Axboe | 9ce8e30 | 2008-08-27 15:23:18 +0200 | [diff] [blame] | 4203 | /* Devices that do not need bridging limits applied */ |
| 4204 | { "MTRON MSP-SATA*", NULL, ATA_HORKAGE_BRIDGE_OK, }, |
| 4205 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4206 | /* End Marker */ |
| 4207 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4208 | }; |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 4209 | |
Adrian Bunk | 741b776 | 2007-10-24 18:23:06 +0200 | [diff] [blame] | 4210 | 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] | 4211 | { |
| 4212 | const char *p; |
| 4213 | int len; |
| 4214 | |
| 4215 | /* |
| 4216 | * check for trailing wildcard: *\0 |
| 4217 | */ |
| 4218 | p = strchr(patt, wildchar); |
| 4219 | if (p && ((*(p + 1)) == 0)) |
| 4220 | len = p - patt; |
Andrew Paprocki | 317b50b | 2007-10-15 15:43:12 -0400 | [diff] [blame] | 4221 | else { |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4222 | len = strlen(name); |
Andrew Paprocki | 317b50b | 2007-10-15 15:43:12 -0400 | [diff] [blame] | 4223 | if (!len) { |
| 4224 | if (!*patt) |
| 4225 | return 0; |
| 4226 | return -1; |
| 4227 | } |
| 4228 | } |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4229 | |
| 4230 | return strncmp(patt, name, len); |
| 4231 | } |
| 4232 | |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 4233 | static unsigned long ata_dev_blacklisted(const struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4234 | { |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 4235 | unsigned char model_num[ATA_ID_PROD_LEN + 1]; |
| 4236 | unsigned char model_rev[ATA_ID_FW_REV_LEN + 1]; |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4237 | const struct ata_blacklist_entry *ad = ata_device_blacklist; |
Albert Lee | 3a77827 | 2006-06-22 13:00:25 +0800 | [diff] [blame] | 4238 | |
Tejun Heo | 8bfa79f | 2007-01-02 20:19:40 +0900 | [diff] [blame] | 4239 | ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num)); |
| 4240 | 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] | 4241 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4242 | while (ad->model_num) { |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4243 | if (!strn_pattern_cmp(ad->model_num, model_num, '*')) { |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4244 | if (ad->model_rev == NULL) |
| 4245 | return ad->horkage; |
Jeff Garzik | 539cc7c | 2007-09-20 16:31:47 -0400 | [diff] [blame] | 4246 | if (!strn_pattern_cmp(ad->model_rev, model_rev, '*')) |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4247 | return ad->horkage; |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 4248 | } |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4249 | ad++; |
Alan Cox | f4b15fe | 2006-03-22 15:54:04 +0000 | [diff] [blame] | 4250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4251 | return 0; |
| 4252 | } |
| 4253 | |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4254 | static int ata_dma_blacklisted(const struct ata_device *dev) |
| 4255 | { |
| 4256 | /* We don't support polling DMA. |
| 4257 | * DMA blacklist those ATAPI devices with CDB-intr (and use PIO) |
| 4258 | * if the LLDD handles only interrupts in the HSM_ST_LAST state. |
| 4259 | */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4260 | if ((dev->link->ap->flags & ATA_FLAG_PIO_POLLING) && |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4261 | (dev->flags & ATA_DFLAG_CDB_INTR)) |
| 4262 | return 1; |
Tejun Heo | 75683fe | 2007-07-05 13:31:27 +0900 | [diff] [blame] | 4263 | return (dev->horkage & ATA_HORKAGE_NODMA) ? 1 : 0; |
Alan Cox | 6919a0a | 2006-10-27 19:08:46 -0700 | [diff] [blame] | 4264 | } |
| 4265 | |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4266 | /** |
Alan Cox | 6bbfd53 | 2007-11-05 22:58:58 +0000 | [diff] [blame] | 4267 | * ata_is_40wire - check drive side detection |
| 4268 | * @dev: device |
| 4269 | * |
| 4270 | * Perform drive side detection decoding, allowing for device vendors |
| 4271 | * who can't follow the documentation. |
| 4272 | */ |
| 4273 | |
| 4274 | static int ata_is_40wire(struct ata_device *dev) |
| 4275 | { |
| 4276 | if (dev->horkage & ATA_HORKAGE_IVB) |
| 4277 | return ata_drive_40wire_relaxed(dev->id); |
| 4278 | return ata_drive_40wire(dev->id); |
| 4279 | } |
| 4280 | |
| 4281 | /** |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4282 | * cable_is_40wire - 40/80/SATA decider |
| 4283 | * @ap: port to consider |
| 4284 | * |
| 4285 | * This function encapsulates the policy for speed management |
| 4286 | * in one place. At the moment we don't cache the result but |
| 4287 | * there is a good case for setting ap->cbl to the result when |
| 4288 | * we are called with unknown cables (and figuring out if it |
| 4289 | * impacts hotplug at all). |
| 4290 | * |
| 4291 | * Return 1 if the cable appears to be 40 wire. |
| 4292 | */ |
| 4293 | |
| 4294 | static int cable_is_40wire(struct ata_port *ap) |
| 4295 | { |
| 4296 | struct ata_link *link; |
| 4297 | struct ata_device *dev; |
| 4298 | |
Tejun Heo | 4a9c7b3 | 2008-10-27 19:59:23 +0900 | [diff] [blame] | 4299 | /* If the controller thinks we are 40 wire, we are. */ |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4300 | if (ap->cbl == ATA_CBL_PATA40) |
| 4301 | return 1; |
Tejun Heo | 4a9c7b3 | 2008-10-27 19:59:23 +0900 | [diff] [blame] | 4302 | |
| 4303 | /* If the controller thinks we are 80 wire, we are. */ |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4304 | if (ap->cbl == ATA_CBL_PATA80 || ap->cbl == ATA_CBL_SATA) |
| 4305 | return 0; |
Tejun Heo | 4a9c7b3 | 2008-10-27 19:59:23 +0900 | [diff] [blame] | 4306 | |
| 4307 | /* If the system is known to be 40 wire short cable (eg |
| 4308 | * laptop), then we allow 80 wire modes even if the drive |
| 4309 | * isn't sure. |
| 4310 | */ |
Alan Cox | f792068 | 2008-04-08 16:37:50 +0100 | [diff] [blame] | 4311 | if (ap->cbl == ATA_CBL_PATA40_SHORT) |
| 4312 | return 0; |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4313 | |
Tejun Heo | 4a9c7b3 | 2008-10-27 19:59:23 +0900 | [diff] [blame] | 4314 | /* If the controller doesn't know, we scan. |
| 4315 | * |
| 4316 | * Note: We look for all 40 wire detects at this point. Any |
| 4317 | * 80 wire detect is taken to be 80 wire cable because |
| 4318 | * - in many setups only the one drive (slave if present) will |
| 4319 | * give a valid detect |
| 4320 | * - if you have a non detect capable drive you don't want it |
| 4321 | * to colour the choice |
| 4322 | */ |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 4323 | ata_for_each_link(link, ap, EDGE) { |
| 4324 | ata_for_each_dev(dev, link, ENABLED) { |
| 4325 | if (!ata_is_40wire(dev)) |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4326 | return 0; |
| 4327 | } |
| 4328 | } |
| 4329 | return 1; |
| 4330 | } |
| 4331 | |
| 4332 | /** |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4333 | * ata_dev_xfermask - Compute supported xfermask of the given device |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4334 | * @dev: Device to compute xfermask for |
| 4335 | * |
Tejun Heo | acf356b | 2006-03-24 14:07:50 +0900 | [diff] [blame] | 4336 | * Compute supported xfermask of @dev and store it in |
| 4337 | * dev->*_mask. This function is responsible for applying all |
| 4338 | * known limits including host controller limits, device |
| 4339 | * blacklist, etc... |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4340 | * |
| 4341 | * LOCKING: |
| 4342 | * None. |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4343 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4344 | static void ata_dev_xfermask(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4345 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4346 | struct ata_link *link = dev->link; |
| 4347 | struct ata_port *ap = link->ap; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4348 | struct ata_host *host = ap->host; |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4349 | unsigned long xfer_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4350 | |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4351 | /* controller modes available */ |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4352 | xfer_mask = ata_pack_xfermask(ap->pio_mask, |
| 4353 | ap->mwdma_mask, ap->udma_mask); |
| 4354 | |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4355 | /* drive modes available */ |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4356 | xfer_mask &= ata_pack_xfermask(dev->pio_mask, |
| 4357 | dev->mwdma_mask, dev->udma_mask); |
| 4358 | xfer_mask &= ata_id_xfermask(dev->id); |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4359 | |
Alan Cox | b352e57 | 2006-08-10 18:52:12 +0100 | [diff] [blame] | 4360 | /* |
| 4361 | * CFA Advanced TrueIDE timings are not allowed on a shared |
| 4362 | * cable |
| 4363 | */ |
| 4364 | if (ata_dev_pair(dev)) { |
| 4365 | /* No PIO5 or PIO6 */ |
| 4366 | xfer_mask &= ~(0x03 << (ATA_SHIFT_PIO + 5)); |
| 4367 | /* No MWDMA3 or MWDMA 4 */ |
| 4368 | xfer_mask &= ~(0x03 << (ATA_SHIFT_MWDMA + 3)); |
| 4369 | } |
| 4370 | |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4371 | if (ata_dma_blacklisted(dev)) { |
| 4372 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
Tejun Heo | f15a1da | 2006-05-15 20:57:56 +0900 | [diff] [blame] | 4373 | ata_dev_printk(dev, KERN_WARNING, |
| 4374 | "device is on DMA blacklist, disabling DMA\n"); |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4375 | } |
Tejun Heo | a6d5a51 | 2006-03-06 04:31:57 +0900 | [diff] [blame] | 4376 | |
Petr Vandrovec | 14d66ab | 2007-03-08 10:12:12 +0100 | [diff] [blame] | 4377 | if ((host->flags & ATA_HOST_SIMPLEX) && |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4378 | host->simplex_claimed && host->simplex_claimed != ap) { |
Tejun Heo | 37deecb | 2006-08-10 16:59:07 +0900 | [diff] [blame] | 4379 | xfer_mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); |
| 4380 | ata_dev_printk(dev, KERN_WARNING, "simplex DMA is claimed by " |
| 4381 | "other device, disabling DMA\n"); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4382 | } |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4383 | |
Jeff Garzik | e424675 | 2007-03-09 09:56:46 -0500 | [diff] [blame] | 4384 | if (ap->flags & ATA_FLAG_NO_IORDY) |
| 4385 | xfer_mask &= ata_pio_mask_no_iordy(dev); |
| 4386 | |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4387 | if (ap->ops->mode_filter) |
Alan Cox | a76b62ca | 2007-03-09 09:34:07 -0500 | [diff] [blame] | 4388 | xfer_mask = ap->ops->mode_filter(dev, xfer_mask); |
Alan Cox | 5444a6f | 2006-03-27 18:58:20 +0100 | [diff] [blame] | 4389 | |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4390 | /* Apply cable rule here. Don't apply it early because when |
| 4391 | * we handle hot plug the cable type can itself change. |
| 4392 | * Check this last so that we know if the transfer rate was |
| 4393 | * solely limited by the cable. |
| 4394 | * Unknown or 80 wire cables reported host side are checked |
| 4395 | * drive side as well. Cases where we know a 40wire cable |
| 4396 | * is used safely for 80 are not checked here. |
| 4397 | */ |
| 4398 | if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA)) |
| 4399 | /* UDMA/44 or higher would be available */ |
Alan Cox | 15a5551 | 2008-03-28 14:33:46 -0700 | [diff] [blame] | 4400 | if (cable_is_40wire(ap)) { |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 4401 | ata_dev_printk(dev, KERN_WARNING, |
Robert Hancock | 8343f88 | 2007-03-06 02:37:51 -0800 | [diff] [blame] | 4402 | "limited to UDMA/33 due to 40-wire cable\n"); |
| 4403 | xfer_mask &= ~(0xF8 << ATA_SHIFT_UDMA); |
| 4404 | } |
| 4405 | |
Tejun Heo | 565083e | 2006-04-02 17:54:47 +0900 | [diff] [blame] | 4406 | ata_unpack_xfermask(xfer_mask, &dev->pio_mask, |
| 4407 | &dev->mwdma_mask, &dev->udma_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4408 | } |
| 4409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4410 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4411 | * ata_dev_set_xfermode - Issue SET FEATURES - XFER MODE command |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4412 | * @dev: Device to which command will be sent |
| 4413 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4414 | * Issue SET FEATURES - XFER MODE command to device @dev |
| 4415 | * on port @ap. |
| 4416 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4417 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4418 | * PCI/etc. bus probe sem. |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4419 | * |
| 4420 | * RETURNS: |
| 4421 | * 0 on success, AC_ERR_* mask otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4422 | */ |
| 4423 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4424 | static unsigned int ata_dev_set_xfermode(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4425 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4426 | struct ata_taskfile tf; |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4427 | unsigned int err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4428 | |
| 4429 | /* set up set-features taskfile */ |
| 4430 | DPRINTK("set features - xfer mode\n"); |
| 4431 | |
Tejun Heo | 464cf17 | 2007-05-27 15:10:40 +0200 | [diff] [blame] | 4432 | /* Some controllers and ATAPI devices show flaky interrupt |
| 4433 | * behavior after setting xfer mode. Use polling instead. |
| 4434 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4435 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4436 | tf.command = ATA_CMD_SET_FEATURES; |
| 4437 | tf.feature = SETFEATURES_XFER; |
Tejun Heo | 464cf17 | 2007-05-27 15:10:40 +0200 | [diff] [blame] | 4438 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_POLLING; |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4439 | tf.protocol = ATA_PROT_NODATA; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4440 | /* If we are using IORDY we must send the mode setting command */ |
Jeff Garzik | 11b7bec | 2007-11-23 21:12:14 -0500 | [diff] [blame] | 4441 | if (ata_pio_need_iordy(dev)) |
| 4442 | tf.nsect = dev->xfer_mode; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4443 | /* If the device has IORDY and the controller does not - turn it off */ |
| 4444 | else if (ata_id_has_iordy(dev->id)) |
Jeff Garzik | 11b7bec | 2007-11-23 21:12:14 -0500 | [diff] [blame] | 4445 | tf.nsect = 0x01; |
Alan Cox | b9f8ab2 | 2007-11-19 14:33:11 +0000 | [diff] [blame] | 4446 | else /* In the ancient relic department - skip all of this */ |
| 4447 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4448 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4449 | 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] | 4450 | |
Tejun Heo | 83206a2 | 2006-03-24 15:25:31 +0900 | [diff] [blame] | 4451 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4452 | return err_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4453 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4454 | /** |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4455 | * ata_dev_set_feature - Issue SET FEATURES - SATA FEATURES |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4456 | * @dev: Device to which command will be sent |
| 4457 | * @enable: Whether to enable or disable the feature |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4458 | * @feature: The sector count represents the feature to set |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4459 | * |
| 4460 | * Issue SET FEATURES - SATA FEATURES command to device @dev |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4461 | * on port @ap with sector count |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4462 | * |
| 4463 | * LOCKING: |
| 4464 | * PCI/etc. bus probe sem. |
| 4465 | * |
| 4466 | * RETURNS: |
| 4467 | * 0 on success, AC_ERR_* mask otherwise. |
| 4468 | */ |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4469 | static unsigned int ata_dev_set_feature(struct ata_device *dev, u8 enable, |
| 4470 | u8 feature) |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4471 | { |
| 4472 | struct ata_taskfile tf; |
| 4473 | unsigned int err_mask; |
| 4474 | |
| 4475 | /* set up set-features taskfile */ |
| 4476 | DPRINTK("set features - SATA features\n"); |
| 4477 | |
| 4478 | ata_tf_init(dev, &tf); |
| 4479 | tf.command = ATA_CMD_SET_FEATURES; |
| 4480 | tf.feature = enable; |
| 4481 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 4482 | tf.protocol = ATA_PROT_NODATA; |
Jeff Garzik | 218f3d3 | 2007-10-25 00:33:27 -0400 | [diff] [blame] | 4483 | tf.nsect = feature; |
Kristen Carlson Accardi | 9f45cbd | 2007-08-15 03:57:11 -0400 | [diff] [blame] | 4484 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4485 | 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] | 4486 | |
| 4487 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4488 | return err_mask; |
| 4489 | } |
| 4490 | |
| 4491 | /** |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4492 | * ata_dev_init_params - Issue INIT DEV PARAMS command |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4493 | * @dev: Device to which command will be sent |
Randy Dunlap | e2a7f77 | 2006-05-18 10:50:18 -0700 | [diff] [blame] | 4494 | * @heads: Number of heads (taskfile parameter) |
| 4495 | * @sectors: Number of sectors (taskfile parameter) |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4496 | * |
| 4497 | * LOCKING: |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4498 | * Kernel thread context (may sleep) |
| 4499 | * |
| 4500 | * RETURNS: |
| 4501 | * 0 on success, AC_ERR_* mask otherwise. |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4502 | */ |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4503 | static unsigned int ata_dev_init_params(struct ata_device *dev, |
| 4504 | u16 heads, u16 sectors) |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4505 | { |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4506 | struct ata_taskfile tf; |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4507 | unsigned int err_mask; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4508 | |
| 4509 | /* Number of sectors per track 1-255. Number of heads 1-16 */ |
| 4510 | if (sectors < 1 || sectors > 255 || heads < 1 || heads > 16) |
Albert Lee | 00b6f5e | 2006-03-27 16:39:18 +0800 | [diff] [blame] | 4511 | return AC_ERR_INVALID; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4512 | |
| 4513 | /* set up init dev params taskfile */ |
| 4514 | DPRINTK("init dev params \n"); |
| 4515 | |
Tejun Heo | 3373efd | 2006-05-15 20:57:53 +0900 | [diff] [blame] | 4516 | ata_tf_init(dev, &tf); |
Tejun Heo | a012370 | 2005-12-13 14:49:31 +0900 | [diff] [blame] | 4517 | tf.command = ATA_CMD_INIT_DEV_PARAMS; |
| 4518 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 4519 | tf.protocol = ATA_PROT_NODATA; |
| 4520 | tf.nsect = sectors; |
| 4521 | tf.device |= (heads - 1) & 0x0f; /* max head = num. of heads - 1 */ |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4522 | |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 4523 | 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] | 4524 | /* A clean abort indicates an original or just out of spec drive |
| 4525 | and we should continue as we issue the setup based on the |
| 4526 | drive reported working geometry */ |
| 4527 | if (err_mask == AC_ERR_DEV && (tf.feature & ATA_ABORTED)) |
| 4528 | err_mask = 0; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4529 | |
Tejun Heo | 6aff8f1 | 2006-02-15 18:24:09 +0900 | [diff] [blame] | 4530 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 4531 | return err_mask; |
Albert Lee | 8bf62ece | 2005-05-12 15:29:42 -0400 | [diff] [blame] | 4532 | } |
| 4533 | |
| 4534 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4535 | * ata_sg_clean - Unmap DMA memory associated with command |
| 4536 | * @qc: Command containing DMA memory to be released |
| 4537 | * |
| 4538 | * Unmap all mapped DMA memory associated with this command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4539 | * |
| 4540 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4541 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4542 | */ |
Tejun Heo | 70e6ad0 | 2006-11-14 22:47:10 +0900 | [diff] [blame] | 4543 | void ata_sg_clean(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4544 | { |
| 4545 | struct ata_port *ap = qc->ap; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4546 | struct scatterlist *sg = qc->sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4547 | int dir = qc->dma_dir; |
| 4548 | |
Tejun Heo | efcb3cf | 2009-01-09 19:19:14 +0900 | [diff] [blame] | 4549 | WARN_ON_ONCE(sg == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4550 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4551 | VPRINTK("unmapping %u sg elements\n", qc->n_elem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4552 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4553 | if (qc->n_elem) |
| 4554 | dma_unmap_sg(ap->dev, sg, qc->n_elem, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4555 | |
| 4556 | qc->flags &= ~ATA_QCFLAG_DMAMAP; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4557 | qc->sg = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4558 | } |
| 4559 | |
| 4560 | /** |
Tejun Heo | 5895ef9 | 2008-06-17 12:36:26 +0900 | [diff] [blame] | 4561 | * atapi_check_dma - Check whether ATAPI DMA can be supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4562 | * @qc: Metadata associated with taskfile to check |
| 4563 | * |
Jeff Garzik | 780a87f | 2005-05-30 15:41:05 -0400 | [diff] [blame] | 4564 | * Allow low-level driver to filter ATA PACKET commands, returning |
| 4565 | * a status indicating whether or not it is OK to use DMA for the |
| 4566 | * supplied PACKET command. |
| 4567 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4568 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4569 | * spin_lock_irqsave(host lock) |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4570 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4571 | * RETURNS: 0 when ATAPI DMA can be used |
| 4572 | * nonzero otherwise |
| 4573 | */ |
Tejun Heo | 5895ef9 | 2008-06-17 12:36:26 +0900 | [diff] [blame] | 4574 | int atapi_check_dma(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4575 | { |
| 4576 | struct ata_port *ap = qc->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4577 | |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4578 | /* Don't allow DMA if it isn't multiple of 16 bytes. Quite a |
| 4579 | * few ATAPI devices choke on such DMA requests. |
| 4580 | */ |
Tejun Heo | 6a87e42 | 2008-11-03 19:01:09 +0900 | [diff] [blame] | 4581 | if (!(qc->dev->horkage & ATA_HORKAGE_ATAPI_MOD16_DMA) && |
| 4582 | unlikely(qc->nbytes & 15)) |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4583 | return 1; |
Albert Lee | 6f23a31 | 2007-04-02 11:39:25 +0800 | [diff] [blame] | 4584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4585 | if (ap->ops->check_atapi_dma) |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4586 | return ap->ops->check_atapi_dma(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4587 | |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4588 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | } |
Tejun Heo | b9a4197 | 2007-06-27 02:48:43 +0900 | [diff] [blame] | 4590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4591 | /** |
Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4592 | * ata_std_qc_defer - Check whether a qc needs to be deferred |
| 4593 | * @qc: ATA command in question |
| 4594 | * |
| 4595 | * Non-NCQ commands cannot run with any other command, NCQ or |
| 4596 | * not. As upper layer only knows the queue depth, we are |
| 4597 | * responsible for maintaining exclusion. This function checks |
| 4598 | * whether a new command @qc can be issued. |
| 4599 | * |
| 4600 | * LOCKING: |
| 4601 | * spin_lock_irqsave(host lock) |
| 4602 | * |
| 4603 | * RETURNS: |
| 4604 | * ATA_DEFER_* if deferring is needed, 0 otherwise. |
| 4605 | */ |
| 4606 | int ata_std_qc_defer(struct ata_queued_cmd *qc) |
| 4607 | { |
| 4608 | struct ata_link *link = qc->dev->link; |
| 4609 | |
| 4610 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
| 4611 | if (!ata_tag_valid(link->active_tag)) |
| 4612 | return 0; |
| 4613 | } else { |
| 4614 | if (!ata_tag_valid(link->active_tag) && !link->sactive) |
| 4615 | return 0; |
| 4616 | } |
| 4617 | |
| 4618 | return ATA_DEFER_LINK; |
| 4619 | } |
| 4620 | |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 4621 | void ata_noop_qc_prep(struct ata_queued_cmd *qc) { } |
| 4622 | |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4623 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4624 | * ata_sg_init - Associate command with scatter-gather table. |
| 4625 | * @qc: Command to be associated |
| 4626 | * @sg: Scatter-gather table. |
| 4627 | * @n_elem: Number of elements in s/g table. |
| 4628 | * |
| 4629 | * Initialize the data-related elements of queued_cmd @qc |
| 4630 | * to point to a scatter-gather table @sg, containing @n_elem |
| 4631 | * elements. |
| 4632 | * |
| 4633 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4634 | * spin_lock_irqsave(host lock) |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4635 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4636 | void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg, |
| 4637 | unsigned int n_elem) |
| 4638 | { |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4639 | qc->sg = sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4640 | qc->n_elem = n_elem; |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 4641 | qc->cursg = qc->sg; |
| 4642 | } |
| 4643 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4644 | /** |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4645 | * ata_sg_setup - DMA-map the scatter-gather table associated with a command. |
| 4646 | * @qc: Command with scatter-gather table to be mapped. |
| 4647 | * |
| 4648 | * DMA-map the scatter-gather table associated with queued_cmd @qc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4649 | * |
| 4650 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4651 | * spin_lock_irqsave(host lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4652 | * |
| 4653 | * RETURNS: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4654 | * Zero on success, negative on error. |
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 | static int ata_sg_setup(struct ata_queued_cmd *qc) |
| 4658 | { |
| 4659 | struct ata_port *ap = qc->ap; |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4660 | unsigned int n_elem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4661 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 4662 | VPRINTK("ENTER, ata%u\n", ap->print_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4663 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4664 | n_elem = dma_map_sg(ap->dev, qc->sg, qc->n_elem, qc->dma_dir); |
| 4665 | if (n_elem < 1) |
| 4666 | return -1; |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 4667 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4668 | DPRINTK("%d sg elements mapped\n", n_elem); |
Jeff Garzik | cedc9a4 | 2005-10-05 07:13:30 -0400 | [diff] [blame] | 4669 | |
James Bottomley | dde2020 | 2008-02-19 11:36:56 +0100 | [diff] [blame] | 4670 | qc->n_elem = n_elem; |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 4671 | qc->flags |= ATA_QCFLAG_DMAMAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4672 | |
| 4673 | return 0; |
| 4674 | } |
| 4675 | |
| 4676 | /** |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 4677 | * swap_buf_le16 - swap halves of 16-bit words in place |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4678 | * @buf: Buffer to swap |
| 4679 | * @buf_words: Number of 16-bit words in buffer. |
| 4680 | * |
| 4681 | * Swap halves of 16-bit words if needed to convert from |
| 4682 | * little-endian byte order to native cpu byte order, or |
| 4683 | * vice-versa. |
| 4684 | * |
| 4685 | * LOCKING: |
Randy Dunlap | 6f0ef4f | 2005-10-25 01:44:30 -0400 | [diff] [blame] | 4686 | * Inherited from caller. |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 4687 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4688 | void swap_buf_le16(u16 *buf, unsigned int buf_words) |
| 4689 | { |
| 4690 | #ifdef __BIG_ENDIAN |
| 4691 | unsigned int i; |
| 4692 | |
| 4693 | for (i = 0; i < buf_words; i++) |
| 4694 | buf[i] = le16_to_cpu(buf[i]); |
| 4695 | #endif /* __BIG_ENDIAN */ |
| 4696 | } |
| 4697 | |
Albert Lee | 6ae4cfb | 2005-08-12 14:15:34 +0800 | [diff] [blame] | 4698 | /** |
Tejun Heo | 8a8bc22 | 2008-11-10 14:48:21 +0900 | [diff] [blame] | 4699 | * ata_qc_new - Request an available ATA command, for queueing |
Randy Dunlap | 5eb66fe | 2009-01-20 16:28:59 -0800 | [diff] [blame] | 4700 | * @ap: target port |
Tejun Heo | 8a8bc22 | 2008-11-10 14:48:21 +0900 | [diff] [blame] | 4701 | * |
| 4702 | * LOCKING: |
| 4703 | * None. |
| 4704 | */ |
| 4705 | |
| 4706 | static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap) |
| 4707 | { |
| 4708 | struct ata_queued_cmd *qc = NULL; |
| 4709 | unsigned int i; |
| 4710 | |
| 4711 | /* no command while frozen */ |
| 4712 | if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) |
| 4713 | return NULL; |
| 4714 | |
| 4715 | /* the last tag is reserved for internal command. */ |
| 4716 | for (i = 0; i < ATA_MAX_QUEUE - 1; i++) |
| 4717 | if (!test_and_set_bit(i, &ap->qc_allocated)) { |
| 4718 | qc = __ata_qc_from_tag(ap, i); |
| 4719 | break; |
| 4720 | } |
| 4721 | |
| 4722 | if (qc) |
| 4723 | qc->tag = i; |
| 4724 | |
| 4725 | return qc; |
| 4726 | } |
| 4727 | |
| 4728 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4729 | * ata_qc_new_init - Request an available ATA command, and initialize it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4730 | * @dev: Device from whom we request an available command structure |
| 4731 | * |
| 4732 | * LOCKING: |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 4733 | * None. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4734 | */ |
| 4735 | |
Tejun Heo | 8a8bc22 | 2008-11-10 14:48:21 +0900 | [diff] [blame] | 4736 | struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4737 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4738 | struct ata_port *ap = dev->link->ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4739 | struct ata_queued_cmd *qc; |
| 4740 | |
Tejun Heo | 8a8bc22 | 2008-11-10 14:48:21 +0900 | [diff] [blame] | 4741 | qc = ata_qc_new(ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4742 | if (qc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4743 | qc->scsicmd = NULL; |
| 4744 | qc->ap = ap; |
| 4745 | qc->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4746 | |
Jeff Garzik | 2c13b7c | 2005-11-14 14:14:16 -0500 | [diff] [blame] | 4747 | ata_qc_reinit(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4748 | } |
| 4749 | |
| 4750 | return qc; |
| 4751 | } |
| 4752 | |
Tejun Heo | 8a8bc22 | 2008-11-10 14:48:21 +0900 | [diff] [blame] | 4753 | /** |
| 4754 | * ata_qc_free - free unused ata_queued_cmd |
| 4755 | * @qc: Command to complete |
| 4756 | * |
| 4757 | * Designed to free unused ata_queued_cmd object |
| 4758 | * in case something prevents using it. |
| 4759 | * |
| 4760 | * LOCKING: |
| 4761 | * spin_lock_irqsave(host lock) |
| 4762 | */ |
| 4763 | void ata_qc_free(struct ata_queued_cmd *qc) |
| 4764 | { |
| 4765 | struct ata_port *ap = qc->ap; |
| 4766 | unsigned int tag; |
| 4767 | |
Tejun Heo | efcb3cf | 2009-01-09 19:19:14 +0900 | [diff] [blame] | 4768 | WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
Tejun Heo | 8a8bc22 | 2008-11-10 14:48:21 +0900 | [diff] [blame] | 4769 | |
| 4770 | qc->flags = 0; |
| 4771 | tag = qc->tag; |
| 4772 | if (likely(ata_tag_valid(tag))) { |
| 4773 | qc->tag = ATA_TAG_POISON; |
| 4774 | clear_bit(tag, &ap->qc_allocated); |
| 4775 | } |
| 4776 | } |
| 4777 | |
Tejun Heo | 7601442 | 2006-02-11 15:13:49 +0900 | [diff] [blame] | 4778 | void __ata_qc_complete(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4779 | { |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4780 | struct ata_port *ap = qc->ap; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4781 | struct ata_link *link = qc->dev->link; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4782 | |
Tejun Heo | efcb3cf | 2009-01-09 19:19:14 +0900 | [diff] [blame] | 4783 | WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
| 4784 | WARN_ON_ONCE(!(qc->flags & ATA_QCFLAG_ACTIVE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4785 | |
| 4786 | if (likely(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 4787 | ata_sg_clean(qc); |
| 4788 | |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4789 | /* command should be marked inactive atomically with qc completion */ |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4790 | if (qc->tf.protocol == ATA_PROT_NCQ) { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4791 | link->sactive &= ~(1 << qc->tag); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4792 | if (!link->sactive) |
| 4793 | ap->nr_active_links--; |
| 4794 | } else { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4795 | link->active_tag = ATA_TAG_POISON; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4796 | ap->nr_active_links--; |
| 4797 | } |
| 4798 | |
| 4799 | /* clear exclusive status */ |
| 4800 | if (unlikely(qc->flags & ATA_QCFLAG_CLEAR_EXCL && |
| 4801 | ap->excl_link == link)) |
| 4802 | ap->excl_link = NULL; |
Tejun Heo | 7401abf | 2006-05-15 20:57:32 +0900 | [diff] [blame] | 4803 | |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4804 | /* atapi: mark qc as inactive to prevent the interrupt handler |
| 4805 | * from completing the command twice later, before the error handler |
| 4806 | * is called. (when rc != 0 and atapi request sense is needed) |
| 4807 | */ |
| 4808 | qc->flags &= ~ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4809 | ap->qc_active &= ~(1 << qc->tag); |
Albert Lee | 3f3791d | 2005-08-16 14:25:38 +0800 | [diff] [blame] | 4810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4811 | /* call completion callback */ |
Tejun Heo | 77853bf | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 4812 | qc->complete_fn(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4813 | } |
| 4814 | |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4815 | static void fill_result_tf(struct ata_queued_cmd *qc) |
| 4816 | { |
| 4817 | struct ata_port *ap = qc->ap; |
| 4818 | |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4819 | qc->result_tf.flags = qc->tf.flags; |
Tejun Heo | 22183bf | 2008-04-07 22:47:20 +0900 | [diff] [blame] | 4820 | ap->ops->qc_fill_rtf(qc); |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4821 | } |
| 4822 | |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 4823 | static void ata_verify_xfer(struct ata_queued_cmd *qc) |
| 4824 | { |
| 4825 | struct ata_device *dev = qc->dev; |
| 4826 | |
| 4827 | if (ata_tag_internal(qc->tag)) |
| 4828 | return; |
| 4829 | |
| 4830 | if (ata_is_nodata(qc->tf.protocol)) |
| 4831 | return; |
| 4832 | |
| 4833 | if ((dev->mwdma_mask || dev->udma_mask) && ata_is_pio(qc->tf.protocol)) |
| 4834 | return; |
| 4835 | |
| 4836 | dev->flags &= ~ATA_DFLAG_DUBIOUS_XFER; |
| 4837 | } |
| 4838 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4839 | /** |
| 4840 | * ata_qc_complete - Complete an active ATA command |
| 4841 | * @qc: Command to complete |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4842 | * |
| 4843 | * Indicate to the mid and upper layers that an ATA |
| 4844 | * command has completed, with either an ok or not-ok status. |
| 4845 | * |
| 4846 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4847 | * spin_lock_irqsave(host lock) |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4848 | */ |
| 4849 | void ata_qc_complete(struct ata_queued_cmd *qc) |
| 4850 | { |
| 4851 | struct ata_port *ap = qc->ap; |
| 4852 | |
| 4853 | /* XXX: New EH and old EH use different mechanisms to |
| 4854 | * synchronize EH with regular execution path. |
| 4855 | * |
| 4856 | * In new EH, a failed qc is marked with ATA_QCFLAG_FAILED. |
| 4857 | * Normal execution path is responsible for not accessing a |
| 4858 | * failed qc. libata core enforces the rule by returning NULL |
| 4859 | * from ata_qc_from_tag() for failed qcs. |
| 4860 | * |
| 4861 | * Old EH depends on ata_qc_complete() nullifying completion |
| 4862 | * requests if ATA_QCFLAG_EH_SCHEDULED is set. Old EH does |
| 4863 | * not synchronize with interrupt handler. Only PIO task is |
| 4864 | * taken care of. |
| 4865 | */ |
| 4866 | if (ap->ops->error_handler) { |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 4867 | struct ata_device *dev = qc->dev; |
| 4868 | struct ata_eh_info *ehi = &dev->link->eh_info; |
| 4869 | |
Tejun Heo | efcb3cf | 2009-01-09 19:19:14 +0900 | [diff] [blame] | 4870 | WARN_ON_ONCE(ap->pflags & ATA_PFLAG_FROZEN); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4871 | |
| 4872 | if (unlikely(qc->err_mask)) |
| 4873 | qc->flags |= ATA_QCFLAG_FAILED; |
| 4874 | |
| 4875 | if (unlikely(qc->flags & ATA_QCFLAG_FAILED)) { |
| 4876 | if (!ata_tag_internal(qc->tag)) { |
| 4877 | /* always fill result TF for failed qc */ |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4878 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4879 | ata_qc_schedule_eh(qc); |
| 4880 | return; |
| 4881 | } |
| 4882 | } |
| 4883 | |
| 4884 | /* read result TF if requested */ |
| 4885 | if (qc->flags & ATA_QCFLAG_RESULT_TF) |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4886 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4887 | |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 4888 | /* Some commands need post-processing after successful |
| 4889 | * completion. |
| 4890 | */ |
| 4891 | switch (qc->tf.command) { |
| 4892 | case ATA_CMD_SET_FEATURES: |
| 4893 | if (qc->tf.feature != SETFEATURES_WC_ON && |
| 4894 | qc->tf.feature != SETFEATURES_WC_OFF) |
| 4895 | break; |
| 4896 | /* fall through */ |
| 4897 | case ATA_CMD_INIT_DEV_PARAMS: /* CHS translation changed */ |
| 4898 | case ATA_CMD_SET_MULTI: /* multi_count changed */ |
| 4899 | /* revalidate device */ |
| 4900 | ehi->dev_action[dev->devno] |= ATA_EH_REVALIDATE; |
| 4901 | ata_port_schedule_eh(ap); |
| 4902 | break; |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 4903 | |
| 4904 | case ATA_CMD_SLEEP: |
| 4905 | dev->flags |= ATA_DFLAG_SLEEPING; |
| 4906 | break; |
Tejun Heo | 4dbfa39 | 2007-10-25 18:22:44 +0900 | [diff] [blame] | 4907 | } |
| 4908 | |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 4909 | if (unlikely(dev->flags & ATA_DFLAG_DUBIOUS_XFER)) |
| 4910 | ata_verify_xfer(qc); |
| 4911 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4912 | __ata_qc_complete(qc); |
| 4913 | } else { |
| 4914 | if (qc->flags & ATA_QCFLAG_EH_SCHEDULED) |
| 4915 | return; |
| 4916 | |
| 4917 | /* read result TF if failed or requested */ |
| 4918 | if (qc->err_mask || qc->flags & ATA_QCFLAG_RESULT_TF) |
Tejun Heo | 39599a5 | 2006-11-14 22:37:35 +0900 | [diff] [blame] | 4919 | fill_result_tf(qc); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 4920 | |
| 4921 | __ata_qc_complete(qc); |
| 4922 | } |
| 4923 | } |
| 4924 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4925 | /** |
| 4926 | * ata_qc_complete_multiple - Complete multiple qcs successfully |
| 4927 | * @ap: port in question |
| 4928 | * @qc_active: new qc_active mask |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4929 | * |
| 4930 | * Complete in-flight commands. This functions is meant to be |
| 4931 | * called from low-level driver's interrupt routine to complete |
| 4932 | * requests normally. ap->qc_active and @qc_active is compared |
| 4933 | * and commands are completed accordingly. |
| 4934 | * |
| 4935 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 4936 | * spin_lock_irqsave(host lock) |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4937 | * |
| 4938 | * RETURNS: |
| 4939 | * Number of completed commands on success, -errno otherwise. |
| 4940 | */ |
Tejun Heo | 79f97da | 2008-04-07 22:47:20 +0900 | [diff] [blame] | 4941 | int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active) |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4942 | { |
| 4943 | int nr_done = 0; |
| 4944 | u32 done_mask; |
| 4945 | int i; |
| 4946 | |
| 4947 | done_mask = ap->qc_active ^ qc_active; |
| 4948 | |
| 4949 | if (unlikely(done_mask & qc_active)) { |
| 4950 | ata_port_printk(ap, KERN_ERR, "illegal qc_active transition " |
| 4951 | "(%08x->%08x)\n", ap->qc_active, qc_active); |
| 4952 | return -EINVAL; |
| 4953 | } |
| 4954 | |
| 4955 | for (i = 0; i < ATA_MAX_QUEUE; i++) { |
| 4956 | struct ata_queued_cmd *qc; |
| 4957 | |
| 4958 | if (!(done_mask & (1 << i))) |
| 4959 | continue; |
| 4960 | |
| 4961 | if ((qc = ata_qc_from_tag(ap, i))) { |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4962 | ata_qc_complete(qc); |
| 4963 | nr_done++; |
| 4964 | } |
| 4965 | } |
| 4966 | |
| 4967 | return nr_done; |
| 4968 | } |
| 4969 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4970 | /** |
| 4971 | * ata_qc_issue - issue taskfile to device |
| 4972 | * @qc: command to issue to device |
| 4973 | * |
| 4974 | * Prepare an ATA command to submission to device. |
| 4975 | * This includes mapping the data into a DMA-able |
| 4976 | * area, filling in the S/G table, and finally |
| 4977 | * writing the taskfile to hardware, starting the command. |
| 4978 | * |
| 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 | */ |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 4982 | void ata_qc_issue(struct ata_queued_cmd *qc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4983 | { |
| 4984 | struct ata_port *ap = qc->ap; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4985 | struct ata_link *link = qc->dev->link; |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 4986 | u8 prot = qc->tf.protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4987 | |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4988 | /* Make sure only one non-NCQ command is outstanding. The |
| 4989 | * check is skipped for old EH because it reuses active qc to |
| 4990 | * request ATAPI sense. |
| 4991 | */ |
Tejun Heo | efcb3cf | 2009-01-09 19:19:14 +0900 | [diff] [blame] | 4992 | WARN_ON_ONCE(ap->ops->error_handler && ata_tag_valid(link->active_tag)); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 4993 | |
Tejun Heo | 1973a02 | 2007-12-05 10:36:13 +0900 | [diff] [blame] | 4994 | if (ata_is_ncq(prot)) { |
Tejun Heo | efcb3cf | 2009-01-09 19:19:14 +0900 | [diff] [blame] | 4995 | WARN_ON_ONCE(link->sactive & (1 << qc->tag)); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 4996 | |
| 4997 | if (!link->sactive) |
| 4998 | ap->nr_active_links++; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 4999 | link->sactive |= 1 << qc->tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5000 | } else { |
Tejun Heo | efcb3cf | 2009-01-09 19:19:14 +0900 | [diff] [blame] | 5001 | WARN_ON_ONCE(link->sactive); |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5002 | |
| 5003 | ap->nr_active_links++; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5004 | link->active_tag = qc->tag; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5005 | } |
| 5006 | |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 5007 | qc->flags |= ATA_QCFLAG_ACTIVE; |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 5008 | ap->qc_active |= 1 << qc->tag; |
Tejun Heo | e4a70e7 | 2006-03-31 20:36:47 +0900 | [diff] [blame] | 5009 | |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 5010 | /* We guarantee to LLDs that they will have at least one |
| 5011 | * non-zero sg if the command is a data command. |
| 5012 | */ |
Tejun Heo | ff2aeb1 | 2007-12-05 16:43:11 +0900 | [diff] [blame] | 5013 | 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] | 5014 | |
Tejun Heo | 405e66b | 2007-11-27 19:28:53 +0900 | [diff] [blame] | 5015 | if (ata_is_dma(prot) || (ata_is_pio(prot) && |
Tejun Heo | f92a263 | 2007-12-05 16:43:10 +0900 | [diff] [blame] | 5016 | (ap->flags & ATA_FLAG_PIO_DMA))) |
Tejun Heo | 001102d | 2007-12-05 16:43:09 +0900 | [diff] [blame] | 5017 | if (ata_sg_setup(qc)) |
| 5018 | goto sg_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5019 | |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 5020 | /* if device is sleeping, schedule reset and abort the link */ |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 5021 | if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 5022 | link->eh_info.action |= ATA_EH_RESET; |
Tejun Heo | 054a5fb | 2007-10-25 18:30:36 +0900 | [diff] [blame] | 5023 | ata_ehi_push_desc(&link->eh_info, "waking up from sleep"); |
| 5024 | ata_link_abort(link); |
| 5025 | return; |
| 5026 | } |
| 5027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5028 | ap->ops->qc_prep(qc); |
| 5029 | |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 5030 | qc->err_mask |= ap->ops->qc_issue(qc); |
| 5031 | if (unlikely(qc->err_mask)) |
| 5032 | goto err; |
| 5033 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5034 | |
Tejun Heo | 8e436af | 2006-01-23 13:09:36 +0900 | [diff] [blame] | 5035 | sg_err: |
Tejun Heo | 8e0e694 | 2006-03-31 20:41:11 +0900 | [diff] [blame] | 5036 | qc->err_mask |= AC_ERR_SYSTEM; |
| 5037 | err: |
| 5038 | ata_qc_complete(qc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5039 | } |
| 5040 | |
| 5041 | /** |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5042 | * sata_scr_valid - test whether SCRs are accessible |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5043 | * @link: ATA link to test SCR accessibility for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5044 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5045 | * Test whether SCRs are accessible for @link. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5046 | * |
| 5047 | * LOCKING: |
| 5048 | * None. |
| 5049 | * |
| 5050 | * RETURNS: |
| 5051 | * 1 if SCRs are accessible, 0 otherwise. |
| 5052 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5053 | int sata_scr_valid(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5054 | { |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5055 | struct ata_port *ap = link->ap; |
| 5056 | |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 5057 | return (ap->flags & ATA_FLAG_SATA) && ap->ops->scr_read; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5058 | } |
| 5059 | |
| 5060 | /** |
| 5061 | * sata_scr_read - read SCR register of the specified port |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5062 | * @link: ATA link to read SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5063 | * @reg: SCR to read |
| 5064 | * @val: Place to store read value |
| 5065 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5066 | * Read SCR register @reg of @link into *@val. This function is |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5067 | * guaranteed to succeed if @link is ap->link, the cable type of |
| 5068 | * the port is SATA and the port implements ->scr_read. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5069 | * |
| 5070 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5071 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5072 | * |
| 5073 | * RETURNS: |
| 5074 | * 0 on success, negative errno on failure. |
| 5075 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5076 | int sata_scr_read(struct ata_link *link, int reg, u32 *val) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5077 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5078 | if (ata_is_host_link(link)) { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5079 | if (sata_scr_valid(link)) |
Tejun Heo | 82ef04f | 2008-07-31 17:02:40 +0900 | [diff] [blame] | 5080 | return link->ap->ops->scr_read(link, reg, val); |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5081 | return -EOPNOTSUPP; |
| 5082 | } |
| 5083 | |
| 5084 | return sata_pmp_scr_read(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5085 | } |
| 5086 | |
| 5087 | /** |
| 5088 | * sata_scr_write - write SCR register of the specified port |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5089 | * @link: ATA link to write SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5090 | * @reg: SCR to write |
| 5091 | * @val: value to write |
| 5092 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5093 | * Write @val to SCR register @reg of @link. This function is |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5094 | * guaranteed to succeed if @link is ap->link, the cable type of |
| 5095 | * the port is SATA and the port implements ->scr_read. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5096 | * |
| 5097 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5098 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5099 | * |
| 5100 | * RETURNS: |
| 5101 | * 0 on success, negative errno on failure. |
| 5102 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5103 | int sata_scr_write(struct ata_link *link, int reg, u32 val) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5104 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5105 | if (ata_is_host_link(link)) { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5106 | if (sata_scr_valid(link)) |
Tejun Heo | 82ef04f | 2008-07-31 17:02:40 +0900 | [diff] [blame] | 5107 | return link->ap->ops->scr_write(link, reg, val); |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5108 | return -EOPNOTSUPP; |
| 5109 | } |
| 5110 | |
| 5111 | return sata_pmp_scr_write(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5112 | } |
| 5113 | |
| 5114 | /** |
| 5115 | * 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] | 5116 | * @link: ATA link to write SCR for |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5117 | * @reg: SCR to write |
| 5118 | * @val: value to write |
| 5119 | * |
| 5120 | * This function is identical to sata_scr_write() except that this |
| 5121 | * function performs flush after writing to the register. |
| 5122 | * |
| 5123 | * LOCKING: |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5124 | * None if @link is ap->link. Kernel thread context otherwise. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5125 | * |
| 5126 | * RETURNS: |
| 5127 | * 0 on success, negative errno on failure. |
| 5128 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5129 | 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] | 5130 | { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5131 | if (ata_is_host_link(link)) { |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5132 | int rc; |
Tejun Heo | da3dbb1 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 5133 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5134 | if (sata_scr_valid(link)) { |
Tejun Heo | 82ef04f | 2008-07-31 17:02:40 +0900 | [diff] [blame] | 5135 | rc = link->ap->ops->scr_write(link, reg, val); |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5136 | if (rc == 0) |
Tejun Heo | 82ef04f | 2008-07-31 17:02:40 +0900 | [diff] [blame] | 5137 | rc = link->ap->ops->scr_read(link, reg, &val); |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5138 | return rc; |
| 5139 | } |
| 5140 | return -EOPNOTSUPP; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5141 | } |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5142 | |
| 5143 | return sata_pmp_scr_write(link, reg, val); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5144 | } |
| 5145 | |
| 5146 | /** |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5147 | * ata_phys_link_online - test whether the given link is online |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5148 | * @link: ATA link to test |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5149 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5150 | * Test whether @link is online. Note that this function returns |
| 5151 | * 0 if online status of @link cannot be obtained, so |
| 5152 | * ata_link_online(link) != !ata_link_offline(link). |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5153 | * |
| 5154 | * LOCKING: |
| 5155 | * None. |
| 5156 | * |
| 5157 | * RETURNS: |
Tejun Heo | b5b3fa3 | 2008-07-31 17:02:42 +0900 | [diff] [blame] | 5158 | * True if the port online status is available and online. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5159 | */ |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5160 | bool ata_phys_link_online(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5161 | { |
| 5162 | u32 sstatus; |
| 5163 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5164 | if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 && |
| 5165 | (sstatus & 0xf) == 0x3) |
Tejun Heo | b5b3fa3 | 2008-07-31 17:02:42 +0900 | [diff] [blame] | 5166 | return true; |
| 5167 | return false; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5168 | } |
| 5169 | |
| 5170 | /** |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5171 | * ata_phys_link_offline - test whether the given link is offline |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5172 | * @link: ATA link to test |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5173 | * |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5174 | * Test whether @link is offline. Note that this function |
| 5175 | * returns 0 if offline status of @link cannot be obtained, so |
| 5176 | * ata_link_online(link) != !ata_link_offline(link). |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5177 | * |
| 5178 | * LOCKING: |
| 5179 | * None. |
| 5180 | * |
| 5181 | * RETURNS: |
Tejun Heo | b5b3fa3 | 2008-07-31 17:02:42 +0900 | [diff] [blame] | 5182 | * True if the port offline status is available and offline. |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5183 | */ |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5184 | bool ata_phys_link_offline(struct ata_link *link) |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5185 | { |
| 5186 | u32 sstatus; |
| 5187 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5188 | if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0 && |
| 5189 | (sstatus & 0xf) != 0x3) |
Tejun Heo | b5b3fa3 | 2008-07-31 17:02:42 +0900 | [diff] [blame] | 5190 | return true; |
| 5191 | return false; |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 5192 | } |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5193 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5194 | /** |
| 5195 | * ata_link_online - test whether the given link is online |
| 5196 | * @link: ATA link to test |
| 5197 | * |
| 5198 | * Test whether @link is online. This is identical to |
| 5199 | * ata_phys_link_online() when there's no slave link. When |
| 5200 | * there's a slave link, this function should only be called on |
| 5201 | * the master link and will return true if any of M/S links is |
| 5202 | * online. |
| 5203 | * |
| 5204 | * LOCKING: |
| 5205 | * None. |
| 5206 | * |
| 5207 | * RETURNS: |
| 5208 | * True if the port online status is available and online. |
| 5209 | */ |
| 5210 | bool ata_link_online(struct ata_link *link) |
| 5211 | { |
| 5212 | struct ata_link *slave = link->ap->slave_link; |
| 5213 | |
| 5214 | WARN_ON(link == slave); /* shouldn't be called on slave link */ |
| 5215 | |
| 5216 | return ata_phys_link_online(link) || |
| 5217 | (slave && ata_phys_link_online(slave)); |
| 5218 | } |
| 5219 | |
| 5220 | /** |
| 5221 | * ata_link_offline - test whether the given link is offline |
| 5222 | * @link: ATA link to test |
| 5223 | * |
| 5224 | * Test whether @link is offline. This is identical to |
| 5225 | * ata_phys_link_offline() when there's no slave link. When |
| 5226 | * there's a slave link, this function should only be called on |
| 5227 | * the master link and will return true if both M/S links are |
| 5228 | * offline. |
| 5229 | * |
| 5230 | * LOCKING: |
| 5231 | * None. |
| 5232 | * |
| 5233 | * RETURNS: |
| 5234 | * True if the port offline status is available and offline. |
| 5235 | */ |
| 5236 | bool ata_link_offline(struct ata_link *link) |
| 5237 | { |
| 5238 | struct ata_link *slave = link->ap->slave_link; |
| 5239 | |
| 5240 | WARN_ON(link == slave); /* shouldn't be called on slave link */ |
| 5241 | |
| 5242 | return ata_phys_link_offline(link) && |
| 5243 | (!slave || ata_phys_link_offline(slave)); |
| 5244 | } |
| 5245 | |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 5246 | #ifdef CONFIG_PM |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5247 | static int ata_host_request_pm(struct ata_host *host, pm_message_t mesg, |
| 5248 | unsigned int action, unsigned int ehi_flags, |
| 5249 | int wait) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5250 | { |
| 5251 | unsigned long flags; |
| 5252 | int i, rc; |
| 5253 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5254 | for (i = 0; i < host->n_ports; i++) { |
| 5255 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | e3667eb | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 5256 | struct ata_link *link; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5257 | |
| 5258 | /* Previous resume operation might still be in |
| 5259 | * progress. Wait for PM_PENDING to clear. |
| 5260 | */ |
| 5261 | if (ap->pflags & ATA_PFLAG_PM_PENDING) { |
| 5262 | ata_port_wait_eh(ap); |
| 5263 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 5264 | } |
| 5265 | |
| 5266 | /* request PM ops to EH */ |
| 5267 | spin_lock_irqsave(ap->lock, flags); |
| 5268 | |
| 5269 | ap->pm_mesg = mesg; |
| 5270 | if (wait) { |
| 5271 | rc = 0; |
| 5272 | ap->pm_result = &rc; |
| 5273 | } |
| 5274 | |
| 5275 | ap->pflags |= ATA_PFLAG_PM_PENDING; |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 5276 | ata_for_each_link(link, ap, HOST_FIRST) { |
Tejun Heo | e3667eb | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 5277 | link->eh_info.action |= action; |
| 5278 | link->eh_info.flags |= ehi_flags; |
| 5279 | } |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5280 | |
| 5281 | ata_port_schedule_eh(ap); |
| 5282 | |
| 5283 | spin_unlock_irqrestore(ap->lock, flags); |
| 5284 | |
| 5285 | /* wait and check result */ |
| 5286 | if (wait) { |
| 5287 | ata_port_wait_eh(ap); |
| 5288 | WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); |
| 5289 | if (rc) |
| 5290 | return rc; |
| 5291 | } |
| 5292 | } |
| 5293 | |
| 5294 | return 0; |
| 5295 | } |
| 5296 | |
| 5297 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5298 | * ata_host_suspend - suspend host |
| 5299 | * @host: host to suspend |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5300 | * @mesg: PM message |
| 5301 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5302 | * Suspend @host. Actual operation is performed by EH. This |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5303 | * function requests EH to perform PM operations and waits for EH |
| 5304 | * to finish. |
| 5305 | * |
| 5306 | * LOCKING: |
| 5307 | * Kernel thread context (may sleep). |
| 5308 | * |
| 5309 | * RETURNS: |
| 5310 | * 0 on success, -errno on failure. |
| 5311 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5312 | int ata_host_suspend(struct ata_host *host, pm_message_t mesg) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5313 | { |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 5314 | int rc; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5315 | |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 5316 | /* |
| 5317 | * disable link pm on all ports before requesting |
| 5318 | * any pm activity |
| 5319 | */ |
| 5320 | ata_lpm_enable(host); |
| 5321 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5322 | rc = ata_host_request_pm(host, mesg, 0, ATA_EHI_QUIET, 1); |
Jeff Garzik | 72ad6ec | 2008-02-25 17:31:10 -0500 | [diff] [blame] | 5323 | if (rc == 0) |
| 5324 | host->dev->power.power_state = mesg; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5325 | return rc; |
| 5326 | } |
| 5327 | |
| 5328 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5329 | * ata_host_resume - resume host |
| 5330 | * @host: host to resume |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5331 | * |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5332 | * Resume @host. Actual operation is performed by EH. This |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5333 | * function requests EH to perform PM operations and returns. |
| 5334 | * Note that all resume operations are performed parallely. |
| 5335 | * |
| 5336 | * LOCKING: |
| 5337 | * Kernel thread context (may sleep). |
| 5338 | */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5339 | void ata_host_resume(struct ata_host *host) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5340 | { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 5341 | ata_host_request_pm(host, PMSG_ON, ATA_EH_RESET, |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5342 | ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET, 0); |
Jeff Garzik | 72ad6ec | 2008-02-25 17:31:10 -0500 | [diff] [blame] | 5343 | host->dev->power.power_state = PMSG_ON; |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 5344 | |
| 5345 | /* reenable link pm */ |
| 5346 | ata_lpm_disable(host); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5347 | } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 5348 | #endif |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 5349 | |
Randy Dunlap | c893a3a | 2006-01-28 13:15:32 -0500 | [diff] [blame] | 5350 | /** |
| 5351 | * ata_port_start - Set port up for dma. |
| 5352 | * @ap: Port to initialize |
| 5353 | * |
| 5354 | * Called just after data structures for each port are |
| 5355 | * initialized. Allocates space for PRD table. |
| 5356 | * |
| 5357 | * May be used as the port_start() entry in ata_port_operations. |
| 5358 | * |
| 5359 | * LOCKING: |
| 5360 | * Inherited from caller. |
| 5361 | */ |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5362 | int ata_port_start(struct ata_port *ap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5363 | { |
Brian King | 2f1f610 | 2006-03-23 17:30:15 -0600 | [diff] [blame] | 5364 | struct device *dev = ap->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5365 | |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5366 | ap->prd = dmam_alloc_coherent(dev, ATA_PRD_TBL_SZ, &ap->prd_dma, |
| 5367 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5368 | if (!ap->prd) |
| 5369 | return -ENOMEM; |
| 5370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5371 | return 0; |
| 5372 | } |
| 5373 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 5374 | /** |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5375 | * ata_dev_init - Initialize an ata_device structure |
| 5376 | * @dev: Device structure to initialize |
| 5377 | * |
| 5378 | * Initialize @dev in preparation for probing. |
| 5379 | * |
| 5380 | * LOCKING: |
| 5381 | * Inherited from caller. |
| 5382 | */ |
| 5383 | void ata_dev_init(struct ata_device *dev) |
| 5384 | { |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5385 | struct ata_link *link = ata_dev_phys_link(dev); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5386 | struct ata_port *ap = link->ap; |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5387 | unsigned long flags; |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5388 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5389 | /* SATA spd limit is bound to the attached device, reset together */ |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 5390 | link->sata_spd_limit = link->hw_sata_spd_limit; |
| 5391 | link->sata_spd = 0; |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 5392 | |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5393 | /* High bits of dev->flags are used to record warm plug |
| 5394 | * requests which occur asynchronously. Synchronize using |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5395 | * host lock. |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5396 | */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5397 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5398 | dev->flags &= ~ATA_DFLAG_INIT_MASK; |
Tejun Heo | 3dcc323 | 2007-09-03 12:20:11 +0900 | [diff] [blame] | 5399 | dev->horkage = 0; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 5400 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 72fa4b7 | 2006-05-31 18:27:32 +0900 | [diff] [blame] | 5401 | |
| 5402 | memset((void *)dev + ATA_DEVICE_CLEAR_OFFSET, 0, |
| 5403 | sizeof(*dev) - ATA_DEVICE_CLEAR_OFFSET); |
Tejun Heo | 3ef3b43 | 2006-05-31 18:27:30 +0900 | [diff] [blame] | 5404 | dev->pio_mask = UINT_MAX; |
| 5405 | dev->mwdma_mask = UINT_MAX; |
| 5406 | dev->udma_mask = UINT_MAX; |
| 5407 | } |
| 5408 | |
| 5409 | /** |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5410 | * ata_link_init - Initialize an ata_link structure |
| 5411 | * @ap: ATA port link is attached to |
| 5412 | * @link: Link structure to initialize |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5413 | * @pmp: Port multiplier port number |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5414 | * |
| 5415 | * Initialize @link. |
| 5416 | * |
| 5417 | * LOCKING: |
| 5418 | * Kernel thread context (may sleep) |
| 5419 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5420 | 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] | 5421 | { |
| 5422 | int i; |
| 5423 | |
| 5424 | /* clear everything except for devices */ |
| 5425 | memset(link, 0, offsetof(struct ata_link, device[0])); |
| 5426 | |
| 5427 | link->ap = ap; |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5428 | link->pmp = pmp; |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5429 | link->active_tag = ATA_TAG_POISON; |
| 5430 | link->hw_sata_spd_limit = UINT_MAX; |
| 5431 | |
| 5432 | /* can't use iterator, ap isn't initialized yet */ |
| 5433 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
| 5434 | struct ata_device *dev = &link->device[i]; |
| 5435 | |
| 5436 | dev->link = link; |
| 5437 | dev->devno = dev - link->device; |
| 5438 | ata_dev_init(dev); |
| 5439 | } |
| 5440 | } |
| 5441 | |
| 5442 | /** |
| 5443 | * sata_link_init_spd - Initialize link->sata_spd_limit |
| 5444 | * @link: Link to configure sata_spd_limit for |
| 5445 | * |
| 5446 | * Initialize @link->[hw_]sata_spd_limit to the currently |
| 5447 | * configured value. |
| 5448 | * |
| 5449 | * LOCKING: |
| 5450 | * Kernel thread context (may sleep). |
| 5451 | * |
| 5452 | * RETURNS: |
| 5453 | * 0 on success, -errno on failure. |
| 5454 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 5455 | int sata_link_init_spd(struct ata_link *link) |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5456 | { |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 5457 | u8 spd; |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5458 | int rc; |
| 5459 | |
Tejun Heo | d127ea7 | 2008-07-31 16:09:34 +0900 | [diff] [blame] | 5460 | rc = sata_scr_read(link, SCR_CONTROL, &link->saved_scontrol); |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5461 | if (rc) |
| 5462 | return rc; |
| 5463 | |
Tejun Heo | d127ea7 | 2008-07-31 16:09:34 +0900 | [diff] [blame] | 5464 | spd = (link->saved_scontrol >> 4) & 0xf; |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5465 | if (spd) |
| 5466 | link->hw_sata_spd_limit &= (1 << spd) - 1; |
| 5467 | |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 5468 | ata_force_link_limits(link); |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 5469 | |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5470 | link->sata_spd_limit = link->hw_sata_spd_limit; |
| 5471 | |
| 5472 | return 0; |
| 5473 | } |
| 5474 | |
| 5475 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5476 | * ata_port_alloc - allocate and initialize basic ATA port resources |
| 5477 | * @host: ATA host this allocated port belongs to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5478 | * |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5479 | * Allocate and initialize basic ATA port resources. |
| 5480 | * |
| 5481 | * RETURNS: |
| 5482 | * Allocate ATA port on success, NULL on failure. |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5483 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5484 | * LOCKING: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5485 | * Inherited from calling layer (may sleep). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5486 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5487 | struct ata_port *ata_port_alloc(struct ata_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5488 | { |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5489 | struct ata_port *ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5490 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5491 | DPRINTK("ENTER\n"); |
| 5492 | |
| 5493 | ap = kzalloc(sizeof(*ap), GFP_KERNEL); |
| 5494 | if (!ap) |
| 5495 | return NULL; |
| 5496 | |
Tejun Heo | f4d6d00 | 2007-05-01 11:50:15 +0200 | [diff] [blame] | 5497 | ap->pflags |= ATA_PFLAG_INITIALIZING; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5498 | ap->lock = &host->lock; |
Tejun Heo | 198e0fe | 2006-04-02 18:51:52 +0900 | [diff] [blame] | 5499 | ap->flags = ATA_FLAG_DISABLED; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5500 | ap->print_id = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5501 | ap->ctl = ATA_DEVCTL_OBS; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5502 | ap->host = host; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5503 | ap->dev = host->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5504 | ap->last_ctl = 0xFF; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 5505 | |
| 5506 | #if defined(ATA_VERBOSE_DEBUG) |
| 5507 | /* turn on all debugging levels */ |
| 5508 | ap->msg_enable = 0x00FF; |
| 5509 | #elif defined(ATA_DEBUG) |
| 5510 | 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] | 5511 | #else |
Borislav Petkov | 0dd4b21 | 2006-06-23 02:29:08 -0400 | [diff] [blame] | 5512 | ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR | ATA_MSG_WARN; |
Borislav Petkov | bd5d825 | 2006-06-11 23:17:01 -0400 | [diff] [blame] | 5513 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5514 | |
Tejun Heo | 127102a | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 5515 | #ifdef CONFIG_ATA_SFF |
Jeff Garzik | 442eacc | 2007-12-19 04:25:10 -0500 | [diff] [blame] | 5516 | INIT_DELAYED_WORK(&ap->port_task, ata_pio_task); |
Tejun Heo | f667fdbb | 2008-10-20 13:11:56 +0900 | [diff] [blame] | 5517 | #else |
| 5518 | INIT_DELAYED_WORK(&ap->port_task, NULL); |
Tejun Heo | 127102a | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 5519 | #endif |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 5520 | INIT_DELAYED_WORK(&ap->hotplug_task, ata_scsi_hotplug); |
| 5521 | INIT_WORK(&ap->scsi_rescan_task, ata_scsi_dev_rescan); |
Tejun Heo | a72ec4c | 2006-01-23 13:09:37 +0900 | [diff] [blame] | 5522 | INIT_LIST_HEAD(&ap->eh_done_q); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 5523 | init_waitqueue_head(&ap->eh_wait_q); |
Elias Oltmanns | 45fabbb | 2008-09-21 11:54:08 +0200 | [diff] [blame] | 5524 | init_completion(&ap->park_req_pending); |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 5525 | init_timer_deferrable(&ap->fastdrain_timer); |
| 5526 | ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn; |
| 5527 | ap->fastdrain_timer.data = (unsigned long)ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5528 | |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 5529 | ap->cbl = ATA_CBL_NONE; |
Tejun Heo | 838df62 | 2006-05-15 20:57:44 +0900 | [diff] [blame] | 5530 | |
Tejun Heo | 8989805 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5531 | ata_link_init(ap, &ap->link, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5532 | |
| 5533 | #ifdef ATA_IRQ_TRAP |
| 5534 | ap->stats.unhandled_irq = 1; |
| 5535 | ap->stats.idle_irq = 1; |
| 5536 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5537 | return ap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5538 | } |
| 5539 | |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5540 | static void ata_host_release(struct device *gendev, void *res) |
| 5541 | { |
| 5542 | struct ata_host *host = dev_get_drvdata(gendev); |
| 5543 | int i; |
| 5544 | |
| 5545 | for (i = 0; i < host->n_ports; i++) { |
| 5546 | struct ata_port *ap = host->ports[i]; |
| 5547 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5548 | if (!ap) |
| 5549 | continue; |
| 5550 | |
Tejun Heo | 4911487 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5551 | if (ap->scsi_host) |
Tejun Heo | 1aa506e | 2007-03-09 19:36:12 +0900 | [diff] [blame] | 5552 | scsi_host_put(ap->scsi_host); |
| 5553 | |
Tejun Heo | 633273a | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 5554 | kfree(ap->pmp_link); |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5555 | kfree(ap->slave_link); |
Tejun Heo | 4911487 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5556 | kfree(ap); |
Tejun Heo | 1aa506e | 2007-03-09 19:36:12 +0900 | [diff] [blame] | 5557 | host->ports[i] = NULL; |
| 5558 | } |
| 5559 | |
Tejun Heo | 1aa56cc | 2007-02-27 22:33:21 +0900 | [diff] [blame] | 5560 | dev_set_drvdata(gendev, NULL); |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5561 | } |
| 5562 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5563 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5564 | * ata_host_alloc - allocate and init basic ATA host resources |
| 5565 | * @dev: generic device this host is associated with |
| 5566 | * @max_ports: maximum number of ATA ports associated with this host |
| 5567 | * |
| 5568 | * Allocate and initialize basic ATA host resources. LLD calls |
| 5569 | * this function to allocate a host, initializes it fully and |
| 5570 | * attaches it using ata_host_register(). |
| 5571 | * |
| 5572 | * @max_ports ports are allocated and host->n_ports is |
| 5573 | * initialized to @max_ports. The caller is allowed to decrease |
| 5574 | * host->n_ports before calling ata_host_register(). The unused |
| 5575 | * ports will be automatically freed on registration. |
| 5576 | * |
| 5577 | * RETURNS: |
| 5578 | * Allocate ATA host on success, NULL on failure. |
| 5579 | * |
| 5580 | * LOCKING: |
| 5581 | * Inherited from calling layer (may sleep). |
| 5582 | */ |
| 5583 | struct ata_host *ata_host_alloc(struct device *dev, int max_ports) |
| 5584 | { |
| 5585 | struct ata_host *host; |
| 5586 | size_t sz; |
| 5587 | int i; |
| 5588 | |
| 5589 | DPRINTK("ENTER\n"); |
| 5590 | |
| 5591 | if (!devres_open_group(dev, NULL, GFP_KERNEL)) |
| 5592 | return NULL; |
| 5593 | |
| 5594 | /* alloc a container for our list of ATA ports (buses) */ |
| 5595 | sz = sizeof(struct ata_host) + (max_ports + 1) * sizeof(void *); |
| 5596 | /* alloc a container for our list of ATA ports (buses) */ |
| 5597 | host = devres_alloc(ata_host_release, sz, GFP_KERNEL); |
| 5598 | if (!host) |
| 5599 | goto err_out; |
| 5600 | |
| 5601 | devres_add(dev, host); |
| 5602 | dev_set_drvdata(dev, host); |
| 5603 | |
| 5604 | spin_lock_init(&host->lock); |
| 5605 | host->dev = dev; |
| 5606 | host->n_ports = max_ports; |
| 5607 | |
| 5608 | /* allocate ports bound to this host */ |
| 5609 | for (i = 0; i < max_ports; i++) { |
| 5610 | struct ata_port *ap; |
| 5611 | |
| 5612 | ap = ata_port_alloc(host); |
| 5613 | if (!ap) |
| 5614 | goto err_out; |
| 5615 | |
| 5616 | ap->port_no = i; |
| 5617 | host->ports[i] = ap; |
| 5618 | } |
| 5619 | |
| 5620 | devres_remove_group(dev, NULL); |
| 5621 | return host; |
| 5622 | |
| 5623 | err_out: |
| 5624 | devres_release_group(dev, NULL); |
| 5625 | return NULL; |
| 5626 | } |
| 5627 | |
| 5628 | /** |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5629 | * ata_host_alloc_pinfo - alloc host and init with port_info array |
| 5630 | * @dev: generic device this host is associated with |
| 5631 | * @ppi: array of ATA port_info to initialize host with |
| 5632 | * @n_ports: number of ATA ports attached to this host |
| 5633 | * |
| 5634 | * Allocate ATA host and initialize with info from @ppi. If NULL |
| 5635 | * terminated, @ppi may contain fewer entries than @n_ports. The |
| 5636 | * last entry will be used for the remaining ports. |
| 5637 | * |
| 5638 | * RETURNS: |
| 5639 | * Allocate ATA host on success, NULL on failure. |
| 5640 | * |
| 5641 | * LOCKING: |
| 5642 | * Inherited from calling layer (may sleep). |
| 5643 | */ |
| 5644 | struct ata_host *ata_host_alloc_pinfo(struct device *dev, |
| 5645 | const struct ata_port_info * const * ppi, |
| 5646 | int n_ports) |
| 5647 | { |
| 5648 | const struct ata_port_info *pi; |
| 5649 | struct ata_host *host; |
| 5650 | int i, j; |
| 5651 | |
| 5652 | host = ata_host_alloc(dev, n_ports); |
| 5653 | if (!host) |
| 5654 | return NULL; |
| 5655 | |
| 5656 | for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) { |
| 5657 | struct ata_port *ap = host->ports[i]; |
| 5658 | |
| 5659 | if (ppi[j]) |
| 5660 | pi = ppi[j++]; |
| 5661 | |
| 5662 | ap->pio_mask = pi->pio_mask; |
| 5663 | ap->mwdma_mask = pi->mwdma_mask; |
| 5664 | ap->udma_mask = pi->udma_mask; |
| 5665 | ap->flags |= pi->flags; |
Tejun Heo | 0c88758 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 5666 | ap->link.flags |= pi->link_flags; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5667 | ap->ops = pi->port_ops; |
| 5668 | |
| 5669 | if (!host->ops && (pi->port_ops != &ata_dummy_port_ops)) |
| 5670 | host->ops = pi->port_ops; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5671 | } |
| 5672 | |
| 5673 | return host; |
| 5674 | } |
| 5675 | |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 5676 | /** |
| 5677 | * ata_slave_link_init - initialize slave link |
| 5678 | * @ap: port to initialize slave link for |
| 5679 | * |
| 5680 | * Create and initialize slave link for @ap. This enables slave |
| 5681 | * link handling on the port. |
| 5682 | * |
| 5683 | * In libata, a port contains links and a link contains devices. |
| 5684 | * There is single host link but if a PMP is attached to it, |
| 5685 | * there can be multiple fan-out links. On SATA, there's usually |
| 5686 | * a single device connected to a link but PATA and SATA |
| 5687 | * controllers emulating TF based interface can have two - master |
| 5688 | * and slave. |
| 5689 | * |
| 5690 | * However, there are a few controllers which don't fit into this |
| 5691 | * abstraction too well - SATA controllers which emulate TF |
| 5692 | * interface with both master and slave devices but also have |
| 5693 | * separate SCR register sets for each device. These controllers |
| 5694 | * need separate links for physical link handling |
| 5695 | * (e.g. onlineness, link speed) but should be treated like a |
| 5696 | * traditional M/S controller for everything else (e.g. command |
| 5697 | * issue, softreset). |
| 5698 | * |
| 5699 | * slave_link is libata's way of handling this class of |
| 5700 | * controllers without impacting core layer too much. For |
| 5701 | * anything other than physical link handling, the default host |
| 5702 | * link is used for both master and slave. For physical link |
| 5703 | * handling, separate @ap->slave_link is used. All dirty details |
| 5704 | * are implemented inside libata core layer. From LLD's POV, the |
| 5705 | * only difference is that prereset, hardreset and postreset are |
| 5706 | * called once more for the slave link, so the reset sequence |
| 5707 | * looks like the following. |
| 5708 | * |
| 5709 | * prereset(M) -> prereset(S) -> hardreset(M) -> hardreset(S) -> |
| 5710 | * softreset(M) -> postreset(M) -> postreset(S) |
| 5711 | * |
| 5712 | * Note that softreset is called only for the master. Softreset |
| 5713 | * resets both M/S by definition, so SRST on master should handle |
| 5714 | * both (the standard method will work just fine). |
| 5715 | * |
| 5716 | * LOCKING: |
| 5717 | * Should be called before host is registered. |
| 5718 | * |
| 5719 | * RETURNS: |
| 5720 | * 0 on success, -errno on failure. |
| 5721 | */ |
| 5722 | int ata_slave_link_init(struct ata_port *ap) |
| 5723 | { |
| 5724 | struct ata_link *link; |
| 5725 | |
| 5726 | WARN_ON(ap->slave_link); |
| 5727 | WARN_ON(ap->flags & ATA_FLAG_PMP); |
| 5728 | |
| 5729 | link = kzalloc(sizeof(*link), GFP_KERNEL); |
| 5730 | if (!link) |
| 5731 | return -ENOMEM; |
| 5732 | |
| 5733 | ata_link_init(ap, link, 1); |
| 5734 | ap->slave_link = link; |
| 5735 | return 0; |
| 5736 | } |
| 5737 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5738 | static void ata_host_stop(struct device *gendev, void *res) |
| 5739 | { |
| 5740 | struct ata_host *host = dev_get_drvdata(gendev); |
| 5741 | int i; |
| 5742 | |
| 5743 | WARN_ON(!(host->flags & ATA_HOST_STARTED)); |
| 5744 | |
| 5745 | for (i = 0; i < host->n_ports; i++) { |
| 5746 | struct ata_port *ap = host->ports[i]; |
| 5747 | |
| 5748 | if (ap->ops->port_stop) |
| 5749 | ap->ops->port_stop(ap); |
| 5750 | } |
| 5751 | |
| 5752 | if (host->ops->host_stop) |
| 5753 | host->ops->host_stop(host); |
| 5754 | } |
| 5755 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5756 | /** |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5757 | * ata_finalize_port_ops - finalize ata_port_operations |
| 5758 | * @ops: ata_port_operations to finalize |
| 5759 | * |
| 5760 | * An ata_port_operations can inherit from another ops and that |
| 5761 | * ops can again inherit from another. This can go on as many |
| 5762 | * times as necessary as long as there is no loop in the |
| 5763 | * inheritance chain. |
| 5764 | * |
| 5765 | * Ops tables are finalized when the host is started. NULL or |
| 5766 | * unspecified entries are inherited from the closet ancestor |
| 5767 | * which has the method and the entry is populated with it. |
| 5768 | * After finalization, the ops table directly points to all the |
| 5769 | * methods and ->inherits is no longer necessary and cleared. |
| 5770 | * |
| 5771 | * Using ATA_OP_NULL, inheriting ops can force a method to NULL. |
| 5772 | * |
| 5773 | * LOCKING: |
| 5774 | * None. |
| 5775 | */ |
| 5776 | static void ata_finalize_port_ops(struct ata_port_operations *ops) |
| 5777 | { |
Pradeep Singh Rautela | 2da6765 | 2008-05-29 23:28:14 +0530 | [diff] [blame] | 5778 | static DEFINE_SPINLOCK(lock); |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5779 | const struct ata_port_operations *cur; |
| 5780 | void **begin = (void **)ops; |
| 5781 | void **end = (void **)&ops->inherits; |
| 5782 | void **pp; |
| 5783 | |
| 5784 | if (!ops || !ops->inherits) |
| 5785 | return; |
| 5786 | |
| 5787 | spin_lock(&lock); |
| 5788 | |
| 5789 | for (cur = ops->inherits; cur; cur = cur->inherits) { |
| 5790 | void **inherit = (void **)cur; |
| 5791 | |
| 5792 | for (pp = begin; pp < end; pp++, inherit++) |
| 5793 | if (!*pp) |
| 5794 | *pp = *inherit; |
| 5795 | } |
| 5796 | |
| 5797 | for (pp = begin; pp < end; pp++) |
| 5798 | if (IS_ERR(*pp)) |
| 5799 | *pp = NULL; |
| 5800 | |
| 5801 | ops->inherits = NULL; |
| 5802 | |
| 5803 | spin_unlock(&lock); |
| 5804 | } |
| 5805 | |
| 5806 | /** |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5807 | * ata_host_start - start and freeze ports of an ATA host |
| 5808 | * @host: ATA host to start ports for |
| 5809 | * |
| 5810 | * Start and then freeze ports of @host. Started status is |
| 5811 | * recorded in host->flags, so this function can be called |
| 5812 | * multiple times. Ports are guaranteed to get started only |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5813 | * once. If host->ops isn't initialized yet, its set to the |
| 5814 | * first non-dummy port ops. |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5815 | * |
| 5816 | * LOCKING: |
| 5817 | * Inherited from calling layer (may sleep). |
| 5818 | * |
| 5819 | * RETURNS: |
| 5820 | * 0 if all ports are started successfully, -errno otherwise. |
| 5821 | */ |
| 5822 | int ata_host_start(struct ata_host *host) |
| 5823 | { |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5824 | int have_stop = 0; |
| 5825 | void *start_dr = NULL; |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5826 | int i, rc; |
| 5827 | |
| 5828 | if (host->flags & ATA_HOST_STARTED) |
| 5829 | return 0; |
| 5830 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5831 | ata_finalize_port_ops(host->ops); |
| 5832 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5833 | for (i = 0; i < host->n_ports; i++) { |
| 5834 | struct ata_port *ap = host->ports[i]; |
| 5835 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5836 | ata_finalize_port_ops(ap->ops); |
| 5837 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5838 | if (!host->ops && !ata_port_is_dummy(ap)) |
| 5839 | host->ops = ap->ops; |
| 5840 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5841 | if (ap->ops->port_stop) |
| 5842 | have_stop = 1; |
| 5843 | } |
| 5844 | |
| 5845 | if (host->ops->host_stop) |
| 5846 | have_stop = 1; |
| 5847 | |
| 5848 | if (have_stop) { |
| 5849 | start_dr = devres_alloc(ata_host_stop, 0, GFP_KERNEL); |
| 5850 | if (!start_dr) |
| 5851 | return -ENOMEM; |
| 5852 | } |
| 5853 | |
| 5854 | for (i = 0; i < host->n_ports; i++) { |
| 5855 | struct ata_port *ap = host->ports[i]; |
| 5856 | |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5857 | if (ap->ops->port_start) { |
| 5858 | rc = ap->ops->port_start(ap); |
| 5859 | if (rc) { |
Alan Cox | 0f9fe9b | 2007-11-30 15:23:16 +0000 | [diff] [blame] | 5860 | if (rc != -ENODEV) |
Andrew Morton | 0f75774 | 2008-01-10 14:33:09 -0800 | [diff] [blame] | 5861 | dev_printk(KERN_ERR, host->dev, |
| 5862 | "failed to start port %d " |
| 5863 | "(errno=%d)\n", i, rc); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5864 | goto err_out; |
| 5865 | } |
| 5866 | } |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5867 | ata_eh_freeze_port(ap); |
| 5868 | } |
| 5869 | |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5870 | if (start_dr) |
| 5871 | devres_add(host->dev, start_dr); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5872 | host->flags |= ATA_HOST_STARTED; |
| 5873 | return 0; |
| 5874 | |
| 5875 | err_out: |
| 5876 | while (--i >= 0) { |
| 5877 | struct ata_port *ap = host->ports[i]; |
| 5878 | |
| 5879 | if (ap->ops->port_stop) |
| 5880 | ap->ops->port_stop(ap); |
| 5881 | } |
Tejun Heo | 32ebbc0 | 2007-11-08 13:09:00 +0900 | [diff] [blame] | 5882 | devres_free(start_dr); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 5883 | return rc; |
| 5884 | } |
| 5885 | |
| 5886 | /** |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5887 | * ata_sas_host_init - Initialize a host struct |
| 5888 | * @host: host to initialize |
| 5889 | * @dev: device host is attached to |
| 5890 | * @flags: host flags |
| 5891 | * @ops: port_ops |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 5892 | * |
| 5893 | * LOCKING: |
| 5894 | * PCI/etc. bus probe sem. |
| 5895 | * |
| 5896 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5897 | /* KILLME - the only user left is ipr */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5898 | void ata_host_init(struct ata_host *host, struct device *dev, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 5899 | unsigned long flags, struct ata_port_operations *ops) |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 5900 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 5901 | spin_lock_init(&host->lock); |
| 5902 | host->dev = dev; |
| 5903 | host->flags = flags; |
| 5904 | host->ops = ops; |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 5905 | } |
| 5906 | |
Arjan van de Ven | 7931805 | 2009-01-04 05:32:28 -0800 | [diff] [blame] | 5907 | |
| 5908 | static void async_port_probe(void *data, async_cookie_t cookie) |
| 5909 | { |
| 5910 | int rc; |
| 5911 | struct ata_port *ap = data; |
Arjan van de Ven | 886ad09 | 2009-01-09 15:54:07 -0800 | [diff] [blame] | 5912 | |
| 5913 | /* |
| 5914 | * If we're not allowed to scan this host in parallel, |
| 5915 | * we need to wait until all previous scans have completed |
| 5916 | * before going further. |
Arjan van de Ven | fa853a4 | 2009-01-10 10:18:44 -0800 | [diff] [blame] | 5917 | * Jeff Garzik says this is only within a controller, so we |
| 5918 | * don't need to wait for port 0, only for later ports. |
Arjan van de Ven | 886ad09 | 2009-01-09 15:54:07 -0800 | [diff] [blame] | 5919 | */ |
Arjan van de Ven | fa853a4 | 2009-01-10 10:18:44 -0800 | [diff] [blame] | 5920 | if (!(ap->host->flags & ATA_HOST_PARALLEL_SCAN) && ap->port_no != 0) |
Arjan van de Ven | 886ad09 | 2009-01-09 15:54:07 -0800 | [diff] [blame] | 5921 | async_synchronize_cookie(cookie); |
| 5922 | |
Arjan van de Ven | 7931805 | 2009-01-04 05:32:28 -0800 | [diff] [blame] | 5923 | /* probe */ |
| 5924 | if (ap->ops->error_handler) { |
| 5925 | struct ata_eh_info *ehi = &ap->link.eh_info; |
| 5926 | unsigned long flags; |
| 5927 | |
| 5928 | ata_port_probe(ap); |
| 5929 | |
| 5930 | /* kick EH for boot probing */ |
| 5931 | spin_lock_irqsave(ap->lock, flags); |
| 5932 | |
| 5933 | ehi->probe_mask |= ATA_ALL_DEVICES; |
| 5934 | ehi->action |= ATA_EH_RESET | ATA_EH_LPM; |
| 5935 | ehi->flags |= ATA_EHI_NO_AUTOPSY | ATA_EHI_QUIET; |
| 5936 | |
| 5937 | ap->pflags &= ~ATA_PFLAG_INITIALIZING; |
| 5938 | ap->pflags |= ATA_PFLAG_LOADING; |
| 5939 | ata_port_schedule_eh(ap); |
| 5940 | |
| 5941 | spin_unlock_irqrestore(ap->lock, flags); |
| 5942 | |
| 5943 | /* wait for EH to finish */ |
| 5944 | ata_port_wait_eh(ap); |
| 5945 | } else { |
| 5946 | DPRINTK("ata%u: bus probe begin\n", ap->print_id); |
| 5947 | rc = ata_bus_probe(ap); |
| 5948 | DPRINTK("ata%u: bus probe end\n", ap->print_id); |
| 5949 | |
| 5950 | if (rc) { |
| 5951 | /* FIXME: do something useful here? |
| 5952 | * Current libata behavior will |
| 5953 | * tear down everything when |
| 5954 | * the module is removed |
| 5955 | * or the h/w is unplugged. |
| 5956 | */ |
| 5957 | } |
| 5958 | } |
Arjan van de Ven | f29d3b2 | 2009-01-05 15:07:07 -0800 | [diff] [blame] | 5959 | |
| 5960 | /* in order to keep device order, we need to synchronize at this point */ |
| 5961 | async_synchronize_cookie(cookie); |
| 5962 | |
| 5963 | ata_scsi_scan_host(ap, 1); |
| 5964 | |
Arjan van de Ven | 7931805 | 2009-01-04 05:32:28 -0800 | [diff] [blame] | 5965 | } |
Brian King | b03732f | 2006-08-07 14:27:10 -0500 | [diff] [blame] | 5966 | /** |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5967 | * ata_host_register - register initialized ATA host |
| 5968 | * @host: ATA host to register |
| 5969 | * @sht: template for SCSI host |
Jeff Garzik | 0cba632 | 2005-05-30 19:49:12 -0400 | [diff] [blame] | 5970 | * |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5971 | * Register initialized ATA host. @host is allocated using |
| 5972 | * ata_host_alloc() and fully initialized by LLD. This function |
| 5973 | * starts ports, registers @host with ATA and SCSI layers and |
| 5974 | * probe registered devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5975 | * |
| 5976 | * LOCKING: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5977 | * Inherited from calling layer (may sleep). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5978 | * |
| 5979 | * RETURNS: |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5980 | * 0 on success, -errno otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5981 | */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5982 | 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] | 5983 | { |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5984 | int i, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5985 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5986 | /* host must have been started */ |
| 5987 | if (!(host->flags & ATA_HOST_STARTED)) { |
| 5988 | dev_printk(KERN_ERR, host->dev, |
| 5989 | "BUG: trying to register unstarted host\n"); |
| 5990 | WARN_ON(1); |
| 5991 | return -EINVAL; |
Alan Cox | 02f076a | 2006-09-26 17:35:32 +0100 | [diff] [blame] | 5992 | } |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 5993 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 5994 | /* Blow away unused ports. This happens when LLD can't |
| 5995 | * determine the exact number of ports to allocate at |
| 5996 | * allocation time. |
| 5997 | */ |
| 5998 | for (i = host->n_ports; host->ports[i]; i++) |
| 5999 | kfree(host->ports[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6000 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6001 | /* give ports names and add SCSI hosts */ |
| 6002 | for (i = 0; i < host->n_ports; i++) |
| 6003 | host->ports[i]->print_id = ata_print_id++; |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6004 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6005 | rc = ata_scsi_add_hosts(host, sht); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 6006 | if (rc) |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6007 | return rc; |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 6008 | |
Tejun Heo | fafbae8 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 6009 | /* associate with ACPI nodes */ |
| 6010 | ata_acpi_associate(host); |
| 6011 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6012 | /* set cable, sata_spd_limit and report */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6013 | for (i = 0; i < host->n_ports; i++) { |
| 6014 | struct ata_port *ap = host->ports[i]; |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6015 | unsigned long xfer_mask; |
| 6016 | |
| 6017 | /* set SATA cable type if still unset */ |
| 6018 | if (ap->cbl == ATA_CBL_NONE && (ap->flags & ATA_FLAG_SATA)) |
| 6019 | ap->cbl = ATA_CBL_SATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6020 | |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 6021 | /* init sata_spd_limit to the current value */ |
Tejun Heo | 4fb37a2 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6022 | sata_link_init_spd(&ap->link); |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 6023 | if (ap->slave_link) |
| 6024 | sata_link_init_spd(ap->slave_link); |
Tejun Heo | 5a04bf4 | 2006-05-31 18:27:38 +0900 | [diff] [blame] | 6025 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 6026 | /* print per-port info to dmesg */ |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6027 | xfer_mask = ata_pack_xfermask(ap->pio_mask, ap->mwdma_mask, |
| 6028 | ap->udma_mask); |
| 6029 | |
Tejun Heo | abf6e8e | 2007-10-09 14:57:25 +0900 | [diff] [blame] | 6030 | if (!ata_port_is_dummy(ap)) { |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 6031 | ata_port_printk(ap, KERN_INFO, |
| 6032 | "%cATA max %s %s\n", |
Tejun Heo | a16abc0 | 2007-05-21 18:33:47 +0200 | [diff] [blame] | 6033 | (ap->flags & ATA_FLAG_SATA) ? 'S' : 'P', |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6034 | ata_mode_string(xfer_mask), |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 6035 | ap->link.eh_info.desc); |
Tejun Heo | abf6e8e | 2007-10-09 14:57:25 +0900 | [diff] [blame] | 6036 | ata_ehi_clear_desc(&ap->link.eh_info); |
| 6037 | } else |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6038 | ata_port_printk(ap, KERN_INFO, "DUMMY\n"); |
| 6039 | } |
| 6040 | |
| 6041 | /* perform each probe synchronously */ |
| 6042 | DPRINTK("probe begin\n"); |
| 6043 | for (i = 0; i < host->n_ports; i++) { |
| 6044 | struct ata_port *ap = host->ports[i]; |
Arjan van de Ven | 7931805 | 2009-01-04 05:32:28 -0800 | [diff] [blame] | 6045 | async_schedule(async_port_probe, ap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6046 | } |
Arjan van de Ven | f29d3b2 | 2009-01-05 15:07:07 -0800 | [diff] [blame] | 6047 | DPRINTK("probe end\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6048 | |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6049 | return 0; |
| 6050 | } |
| 6051 | |
| 6052 | /** |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6053 | * ata_host_activate - start host, request IRQ and register it |
| 6054 | * @host: target ATA host |
| 6055 | * @irq: IRQ to request |
| 6056 | * @irq_handler: irq_handler used when requesting IRQ |
| 6057 | * @irq_flags: irq_flags used when requesting IRQ |
| 6058 | * @sht: scsi_host_template to use when registering the host |
| 6059 | * |
| 6060 | * After allocating an ATA host and initializing it, most libata |
| 6061 | * LLDs perform three steps to activate the host - start host, |
| 6062 | * request IRQ and register it. This helper takes necessasry |
| 6063 | * arguments and performs the three steps in one go. |
| 6064 | * |
Paul Mundt | 3d46b2e | 2007-11-08 11:14:56 +0900 | [diff] [blame] | 6065 | * An invalid IRQ skips the IRQ registration and expects the host to |
| 6066 | * have set polling mode on the port. In this case, @irq_handler |
| 6067 | * should be NULL. |
| 6068 | * |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6069 | * LOCKING: |
| 6070 | * Inherited from calling layer (may sleep). |
| 6071 | * |
| 6072 | * RETURNS: |
| 6073 | * 0 on success, -errno otherwise. |
| 6074 | */ |
| 6075 | int ata_host_activate(struct ata_host *host, int irq, |
| 6076 | irq_handler_t irq_handler, unsigned long irq_flags, |
| 6077 | struct scsi_host_template *sht) |
| 6078 | { |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 6079 | int i, rc; |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6080 | |
| 6081 | rc = ata_host_start(host); |
| 6082 | if (rc) |
| 6083 | return rc; |
| 6084 | |
Paul Mundt | 3d46b2e | 2007-11-08 11:14:56 +0900 | [diff] [blame] | 6085 | /* Special case for polling mode */ |
| 6086 | if (!irq) { |
| 6087 | WARN_ON(irq_handler); |
| 6088 | return ata_host_register(host, sht); |
| 6089 | } |
| 6090 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6091 | rc = devm_request_irq(host->dev, irq, irq_handler, irq_flags, |
| 6092 | dev_driver_string(host->dev), host); |
| 6093 | if (rc) |
| 6094 | return rc; |
| 6095 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 6096 | for (i = 0; i < host->n_ports; i++) |
| 6097 | ata_port_desc(host->ports[i], "irq %d", irq); |
Tejun Heo | 4031826 | 2007-07-03 01:38:47 +0900 | [diff] [blame] | 6098 | |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6099 | rc = ata_host_register(host, sht); |
| 6100 | /* if failed, just free the IRQ and leave ports alone */ |
| 6101 | if (rc) |
| 6102 | devm_free_irq(host->dev, irq, host); |
| 6103 | |
| 6104 | return rc; |
| 6105 | } |
| 6106 | |
| 6107 | /** |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6108 | * ata_port_detach - Detach ATA port in prepration of device removal |
| 6109 | * @ap: ATA port to be detached |
| 6110 | * |
| 6111 | * Detach all ATA devices and the associated SCSI devices of @ap; |
| 6112 | * then, remove the associated SCSI host. @ap is guaranteed to |
| 6113 | * be quiescent on return from this function. |
| 6114 | * |
| 6115 | * LOCKING: |
| 6116 | * Kernel thread context (may sleep). |
| 6117 | */ |
Adrian Bunk | 741b776 | 2007-10-24 18:23:06 +0200 | [diff] [blame] | 6118 | static void ata_port_detach(struct ata_port *ap) |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6119 | { |
| 6120 | unsigned long flags; |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6121 | |
| 6122 | if (!ap->ops->error_handler) |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 6123 | goto skip_eh; |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6124 | |
| 6125 | /* tell EH we're leaving & flush EH */ |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 6126 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 6127 | ap->pflags |= ATA_PFLAG_UNLOADING; |
Tejun Heo | ece180d | 2008-11-03 20:04:37 +0900 | [diff] [blame] | 6128 | ata_port_schedule_eh(ap); |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 6129 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6130 | |
Tejun Heo | ece180d | 2008-11-03 20:04:37 +0900 | [diff] [blame] | 6131 | /* wait till EH commits suicide */ |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6132 | ata_port_wait_eh(ap); |
| 6133 | |
Tejun Heo | ece180d | 2008-11-03 20:04:37 +0900 | [diff] [blame] | 6134 | /* it better be dead now */ |
| 6135 | WARN_ON(!(ap->pflags & ATA_PFLAG_UNLOADED)); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6136 | |
Oleg Nesterov | 45a66c1 | 2007-07-09 11:46:13 -0700 | [diff] [blame] | 6137 | cancel_rearming_delayed_work(&ap->hotplug_task); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6138 | |
Tejun Heo | c3cf30a | 2006-08-05 03:59:11 +0900 | [diff] [blame] | 6139 | skip_eh: |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6140 | /* remove the associated SCSI host */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6141 | scsi_remove_host(ap->scsi_host); |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 6142 | } |
| 6143 | |
| 6144 | /** |
Tejun Heo | 0529c159 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 6145 | * ata_host_detach - Detach all ports of an ATA host |
| 6146 | * @host: Host to detach |
| 6147 | * |
| 6148 | * Detach all ports of @host. |
| 6149 | * |
| 6150 | * LOCKING: |
| 6151 | * Kernel thread context (may sleep). |
| 6152 | */ |
| 6153 | void ata_host_detach(struct ata_host *host) |
| 6154 | { |
| 6155 | int i; |
| 6156 | |
| 6157 | for (i = 0; i < host->n_ports; i++) |
| 6158 | ata_port_detach(host->ports[i]); |
Tejun Heo | 562f0c2 | 2007-12-15 15:05:01 +0900 | [diff] [blame] | 6159 | |
| 6160 | /* the host is dead now, dissociate ACPI */ |
| 6161 | ata_acpi_dissociate(host); |
Tejun Heo | 0529c159 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 6162 | } |
| 6163 | |
Jeff Garzik | 374b187 | 2005-08-30 05:42:52 -0400 | [diff] [blame] | 6164 | #ifdef CONFIG_PCI |
| 6165 | |
Edward Falk | 0baab86 | 2005-06-02 18:17:13 -0400 | [diff] [blame] | 6166 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6167 | * ata_pci_remove_one - PCI layer callback for device removal |
| 6168 | * @pdev: PCI device that was removed |
| 6169 | * |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6170 | * PCI layer indicates to libata via this hook that hot-unplug or |
| 6171 | * module unload event has occurred. Detach all ports. Resource |
| 6172 | * release is handled via devres. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6173 | * |
| 6174 | * LOCKING: |
| 6175 | * Inherited from PCI layer (may sleep). |
| 6176 | */ |
Tejun Heo | f0d36ef | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6177 | void ata_pci_remove_one(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6178 | { |
Jeff Garzik | 2855568 | 2007-10-11 17:12:35 -0400 | [diff] [blame] | 6179 | struct device *dev = &pdev->dev; |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6180 | struct ata_host *host = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6181 | |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6182 | ata_host_detach(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6183 | } |
| 6184 | |
| 6185 | /* move to PCI subsystem */ |
Jeff Garzik | 057ace5 | 2005-10-22 14:27:05 -0400 | [diff] [blame] | 6186 | 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] | 6187 | { |
| 6188 | unsigned long tmp = 0; |
| 6189 | |
| 6190 | switch (bits->width) { |
| 6191 | case 1: { |
| 6192 | u8 tmp8 = 0; |
| 6193 | pci_read_config_byte(pdev, bits->reg, &tmp8); |
| 6194 | tmp = tmp8; |
| 6195 | break; |
| 6196 | } |
| 6197 | case 2: { |
| 6198 | u16 tmp16 = 0; |
| 6199 | pci_read_config_word(pdev, bits->reg, &tmp16); |
| 6200 | tmp = tmp16; |
| 6201 | break; |
| 6202 | } |
| 6203 | case 4: { |
| 6204 | u32 tmp32 = 0; |
| 6205 | pci_read_config_dword(pdev, bits->reg, &tmp32); |
| 6206 | tmp = tmp32; |
| 6207 | break; |
| 6208 | } |
| 6209 | |
| 6210 | default: |
| 6211 | return -EINVAL; |
| 6212 | } |
| 6213 | |
| 6214 | tmp &= bits->mask; |
| 6215 | |
| 6216 | return (tmp == bits->val) ? 1 : 0; |
| 6217 | } |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6218 | |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6219 | #ifdef CONFIG_PM |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 6220 | 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] | 6221 | { |
| 6222 | pci_save_state(pdev); |
Tejun Heo | 4c90d97 | 2007-02-20 18:14:48 +0900 | [diff] [blame] | 6223 | pci_disable_device(pdev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6224 | |
Rafael J. Wysocki | 3a2d5b7 | 2008-02-23 19:13:25 +0100 | [diff] [blame] | 6225 | if (mesg.event & PM_EVENT_SLEEP) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6226 | pci_set_power_state(pdev, PCI_D3hot); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6227 | } |
| 6228 | |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 6229 | int ata_pci_device_do_resume(struct pci_dev *pdev) |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6230 | { |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 6231 | int rc; |
| 6232 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6233 | pci_set_power_state(pdev, PCI_D0); |
| 6234 | pci_restore_state(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 6235 | |
Tejun Heo | b878ca5 | 2007-01-20 16:00:28 +0900 | [diff] [blame] | 6236 | rc = pcim_enable_device(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 6237 | if (rc) { |
| 6238 | dev_printk(KERN_ERR, &pdev->dev, |
| 6239 | "failed to enable device after resume (%d)\n", rc); |
| 6240 | return rc; |
| 6241 | } |
| 6242 | |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6243 | pci_set_master(pdev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 6244 | return 0; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6245 | } |
| 6246 | |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 6247 | 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] | 6248 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6249 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6250 | int rc = 0; |
| 6251 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6252 | rc = ata_host_suspend(host, mesg); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6253 | if (rc) |
| 6254 | return rc; |
| 6255 | |
Tejun Heo | 3c5100c | 2006-07-26 16:58:33 +0900 | [diff] [blame] | 6256 | ata_pci_device_do_suspend(pdev, mesg); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6257 | |
| 6258 | return 0; |
| 6259 | } |
| 6260 | |
| 6261 | int ata_pci_device_resume(struct pci_dev *pdev) |
| 6262 | { |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6263 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 6264 | int rc; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6265 | |
Tejun Heo | 553c4aa | 2006-12-26 19:39:50 +0900 | [diff] [blame] | 6266 | rc = ata_pci_device_do_resume(pdev); |
| 6267 | if (rc == 0) |
| 6268 | ata_host_resume(host); |
| 6269 | return rc; |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6270 | } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6271 | #endif /* CONFIG_PM */ |
| 6272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6273 | #endif /* CONFIG_PCI */ |
| 6274 | |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6275 | static int __init ata_parse_force_one(char **cur, |
| 6276 | struct ata_force_ent *force_ent, |
| 6277 | const char **reason) |
| 6278 | { |
| 6279 | /* FIXME: Currently, there's no way to tag init const data and |
| 6280 | * using __initdata causes build failure on some versions of |
| 6281 | * gcc. Once __initdataconst is implemented, add const to the |
| 6282 | * following structure. |
| 6283 | */ |
| 6284 | static struct ata_force_param force_tbl[] __initdata = { |
| 6285 | { "40c", .cbl = ATA_CBL_PATA40 }, |
| 6286 | { "80c", .cbl = ATA_CBL_PATA80 }, |
| 6287 | { "short40c", .cbl = ATA_CBL_PATA40_SHORT }, |
| 6288 | { "unk", .cbl = ATA_CBL_PATA_UNK }, |
| 6289 | { "ign", .cbl = ATA_CBL_PATA_IGN }, |
| 6290 | { "sata", .cbl = ATA_CBL_SATA }, |
| 6291 | { "1.5Gbps", .spd_limit = 1 }, |
| 6292 | { "3.0Gbps", .spd_limit = 2 }, |
| 6293 | { "noncq", .horkage_on = ATA_HORKAGE_NONCQ }, |
| 6294 | { "ncq", .horkage_off = ATA_HORKAGE_NONCQ }, |
| 6295 | { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) }, |
| 6296 | { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) }, |
| 6297 | { "pio2", .xfer_mask = 1 << (ATA_SHIFT_PIO + 2) }, |
| 6298 | { "pio3", .xfer_mask = 1 << (ATA_SHIFT_PIO + 3) }, |
| 6299 | { "pio4", .xfer_mask = 1 << (ATA_SHIFT_PIO + 4) }, |
| 6300 | { "pio5", .xfer_mask = 1 << (ATA_SHIFT_PIO + 5) }, |
| 6301 | { "pio6", .xfer_mask = 1 << (ATA_SHIFT_PIO + 6) }, |
| 6302 | { "mwdma0", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 0) }, |
| 6303 | { "mwdma1", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 1) }, |
| 6304 | { "mwdma2", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 2) }, |
| 6305 | { "mwdma3", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 3) }, |
| 6306 | { "mwdma4", .xfer_mask = 1 << (ATA_SHIFT_MWDMA + 4) }, |
| 6307 | { "udma0", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 6308 | { "udma16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 6309 | { "udma/16", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 0) }, |
| 6310 | { "udma1", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 6311 | { "udma25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 6312 | { "udma/25", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 1) }, |
| 6313 | { "udma2", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 6314 | { "udma33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 6315 | { "udma/33", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 2) }, |
| 6316 | { "udma3", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 6317 | { "udma44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 6318 | { "udma/44", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 3) }, |
| 6319 | { "udma4", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 6320 | { "udma66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 6321 | { "udma/66", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 4) }, |
| 6322 | { "udma5", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 6323 | { "udma100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 6324 | { "udma/100", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 5) }, |
| 6325 | { "udma6", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 6326 | { "udma133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 6327 | { "udma/133", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 6) }, |
| 6328 | { "udma7", .xfer_mask = 1 << (ATA_SHIFT_UDMA + 7) }, |
Tejun Heo | 05944bd | 2008-08-13 20:19:09 +0900 | [diff] [blame] | 6329 | { "nohrst", .lflags = ATA_LFLAG_NO_HRST }, |
| 6330 | { "nosrst", .lflags = ATA_LFLAG_NO_SRST }, |
| 6331 | { "norst", .lflags = ATA_LFLAG_NO_HRST | ATA_LFLAG_NO_SRST }, |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6332 | }; |
| 6333 | char *start = *cur, *p = *cur; |
| 6334 | char *id, *val, *endp; |
| 6335 | const struct ata_force_param *match_fp = NULL; |
| 6336 | int nr_matches = 0, i; |
| 6337 | |
| 6338 | /* find where this param ends and update *cur */ |
| 6339 | while (*p != '\0' && *p != ',') |
| 6340 | p++; |
| 6341 | |
| 6342 | if (*p == '\0') |
| 6343 | *cur = p; |
| 6344 | else |
| 6345 | *cur = p + 1; |
| 6346 | |
| 6347 | *p = '\0'; |
| 6348 | |
| 6349 | /* parse */ |
| 6350 | p = strchr(start, ':'); |
| 6351 | if (!p) { |
| 6352 | val = strstrip(start); |
| 6353 | goto parse_val; |
| 6354 | } |
| 6355 | *p = '\0'; |
| 6356 | |
| 6357 | id = strstrip(start); |
| 6358 | val = strstrip(p + 1); |
| 6359 | |
| 6360 | /* parse id */ |
| 6361 | p = strchr(id, '.'); |
| 6362 | if (p) { |
| 6363 | *p++ = '\0'; |
| 6364 | force_ent->device = simple_strtoul(p, &endp, 10); |
| 6365 | if (p == endp || *endp != '\0') { |
| 6366 | *reason = "invalid device"; |
| 6367 | return -EINVAL; |
| 6368 | } |
| 6369 | } |
| 6370 | |
| 6371 | force_ent->port = simple_strtoul(id, &endp, 10); |
| 6372 | if (p == endp || *endp != '\0') { |
| 6373 | *reason = "invalid port/link"; |
| 6374 | return -EINVAL; |
| 6375 | } |
| 6376 | |
| 6377 | parse_val: |
| 6378 | /* parse val, allow shortcuts so that both 1.5 and 1.5Gbps work */ |
| 6379 | for (i = 0; i < ARRAY_SIZE(force_tbl); i++) { |
| 6380 | const struct ata_force_param *fp = &force_tbl[i]; |
| 6381 | |
| 6382 | if (strncasecmp(val, fp->name, strlen(val))) |
| 6383 | continue; |
| 6384 | |
| 6385 | nr_matches++; |
| 6386 | match_fp = fp; |
| 6387 | |
| 6388 | if (strcasecmp(val, fp->name) == 0) { |
| 6389 | nr_matches = 1; |
| 6390 | break; |
| 6391 | } |
| 6392 | } |
| 6393 | |
| 6394 | if (!nr_matches) { |
| 6395 | *reason = "unknown value"; |
| 6396 | return -EINVAL; |
| 6397 | } |
| 6398 | if (nr_matches > 1) { |
| 6399 | *reason = "ambigious value"; |
| 6400 | return -EINVAL; |
| 6401 | } |
| 6402 | |
| 6403 | force_ent->param = *match_fp; |
| 6404 | |
| 6405 | return 0; |
| 6406 | } |
| 6407 | |
| 6408 | static void __init ata_parse_force_param(void) |
| 6409 | { |
| 6410 | int idx = 0, size = 1; |
| 6411 | int last_port = -1, last_device = -1; |
| 6412 | char *p, *cur, *next; |
| 6413 | |
| 6414 | /* calculate maximum number of params and allocate force_tbl */ |
| 6415 | for (p = ata_force_param_buf; *p; p++) |
| 6416 | if (*p == ',') |
| 6417 | size++; |
| 6418 | |
| 6419 | ata_force_tbl = kzalloc(sizeof(ata_force_tbl[0]) * size, GFP_KERNEL); |
| 6420 | if (!ata_force_tbl) { |
| 6421 | printk(KERN_WARNING "ata: failed to extend force table, " |
| 6422 | "libata.force ignored\n"); |
| 6423 | return; |
| 6424 | } |
| 6425 | |
| 6426 | /* parse and populate the table */ |
| 6427 | for (cur = ata_force_param_buf; *cur != '\0'; cur = next) { |
| 6428 | const char *reason = ""; |
| 6429 | struct ata_force_ent te = { .port = -1, .device = -1 }; |
| 6430 | |
| 6431 | next = cur; |
| 6432 | if (ata_parse_force_one(&next, &te, &reason)) { |
| 6433 | printk(KERN_WARNING "ata: failed to parse force " |
| 6434 | "parameter \"%s\" (%s)\n", |
| 6435 | cur, reason); |
| 6436 | continue; |
| 6437 | } |
| 6438 | |
| 6439 | if (te.port == -1) { |
| 6440 | te.port = last_port; |
| 6441 | te.device = last_device; |
| 6442 | } |
| 6443 | |
| 6444 | ata_force_tbl[idx++] = te; |
| 6445 | |
| 6446 | last_port = te.port; |
| 6447 | last_device = te.device; |
| 6448 | } |
| 6449 | |
| 6450 | ata_force_tbl_size = idx; |
| 6451 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6453 | static int __init ata_init(void) |
| 6454 | { |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6455 | ata_parse_force_param(); |
| 6456 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6457 | ata_wq = create_workqueue("ata"); |
| 6458 | if (!ata_wq) |
Elias Oltmanns | 49ea3b0 | 2008-07-30 12:32:39 -0700 | [diff] [blame] | 6459 | goto free_force_tbl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6460 | |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 6461 | ata_aux_wq = create_singlethread_workqueue("ata_aux"); |
Elias Oltmanns | 49ea3b0 | 2008-07-30 12:32:39 -0700 | [diff] [blame] | 6462 | if (!ata_aux_wq) |
| 6463 | goto free_wq; |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 6464 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6465 | printk(KERN_DEBUG "libata version " DRV_VERSION " loaded.\n"); |
| 6466 | return 0; |
Elias Oltmanns | 49ea3b0 | 2008-07-30 12:32:39 -0700 | [diff] [blame] | 6467 | |
| 6468 | free_wq: |
| 6469 | destroy_workqueue(ata_wq); |
| 6470 | free_force_tbl: |
| 6471 | kfree(ata_force_tbl); |
| 6472 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6473 | } |
| 6474 | |
| 6475 | static void __exit ata_exit(void) |
| 6476 | { |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 6477 | kfree(ata_force_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6478 | destroy_workqueue(ata_wq); |
Tejun Heo | 453b07a | 2006-05-31 18:27:42 +0900 | [diff] [blame] | 6479 | destroy_workqueue(ata_aux_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6480 | } |
| 6481 | |
Brian King | a462508 | 2006-11-13 16:32:36 -0600 | [diff] [blame] | 6482 | subsys_initcall(ata_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6483 | module_exit(ata_exit); |
| 6484 | |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 6485 | static unsigned long ratelimit_time; |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 6486 | static DEFINE_SPINLOCK(ata_ratelimit_lock); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 6487 | |
| 6488 | int ata_ratelimit(void) |
| 6489 | { |
| 6490 | int rc; |
| 6491 | unsigned long flags; |
| 6492 | |
| 6493 | spin_lock_irqsave(&ata_ratelimit_lock, flags); |
| 6494 | |
| 6495 | if (time_after(jiffies, ratelimit_time)) { |
| 6496 | rc = 1; |
| 6497 | ratelimit_time = jiffies + (HZ/5); |
| 6498 | } else |
| 6499 | rc = 0; |
| 6500 | |
| 6501 | spin_unlock_irqrestore(&ata_ratelimit_lock, flags); |
| 6502 | |
| 6503 | return rc; |
| 6504 | } |
| 6505 | |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6506 | /** |
| 6507 | * ata_wait_register - wait until register value changes |
| 6508 | * @reg: IO-mapped register |
| 6509 | * @mask: Mask to apply to read register value |
| 6510 | * @val: Wait condition |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 6511 | * @interval: polling interval in milliseconds |
| 6512 | * @timeout: timeout in milliseconds |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6513 | * |
| 6514 | * Waiting for some bits of register to change is a common |
| 6515 | * operation for ATA controllers. This function reads 32bit LE |
| 6516 | * IO-mapped register @reg and tests for the following condition. |
| 6517 | * |
| 6518 | * (*@reg & mask) != val |
| 6519 | * |
| 6520 | * If the condition is met, it returns; otherwise, the process is |
| 6521 | * repeated after @interval_msec until timeout. |
| 6522 | * |
| 6523 | * LOCKING: |
| 6524 | * Kernel thread context (may sleep) |
| 6525 | * |
| 6526 | * RETURNS: |
| 6527 | * The final register value. |
| 6528 | */ |
| 6529 | u32 ata_wait_register(void __iomem *reg, u32 mask, u32 val, |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 6530 | unsigned long interval, unsigned long timeout) |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6531 | { |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 6532 | unsigned long deadline; |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6533 | u32 tmp; |
| 6534 | |
| 6535 | tmp = ioread32(reg); |
| 6536 | |
| 6537 | /* Calculate timeout _after_ the first read to make sure |
| 6538 | * preceding writes reach the controller before starting to |
| 6539 | * eat away the timeout. |
| 6540 | */ |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 6541 | deadline = ata_deadline(jiffies, timeout); |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6542 | |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 6543 | while ((tmp & mask) == val && time_before(jiffies, deadline)) { |
| 6544 | msleep(interval); |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6545 | tmp = ioread32(reg); |
| 6546 | } |
| 6547 | |
| 6548 | return tmp; |
| 6549 | } |
| 6550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6551 | /* |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6552 | * Dummy port_ops |
| 6553 | */ |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6554 | static unsigned int ata_dummy_qc_issue(struct ata_queued_cmd *qc) |
| 6555 | { |
| 6556 | return AC_ERR_SYSTEM; |
| 6557 | } |
| 6558 | |
Tejun Heo | 182d7bb | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 6559 | static void ata_dummy_error_handler(struct ata_port *ap) |
| 6560 | { |
| 6561 | /* truly dummy */ |
| 6562 | } |
| 6563 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 6564 | struct ata_port_operations ata_dummy_port_ops = { |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6565 | .qc_prep = ata_noop_qc_prep, |
| 6566 | .qc_issue = ata_dummy_qc_issue, |
Tejun Heo | 182d7bb | 2008-04-07 22:47:21 +0900 | [diff] [blame] | 6567 | .error_handler = ata_dummy_error_handler, |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6568 | }; |
| 6569 | |
Tejun Heo | 21b0ad4 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6570 | const struct ata_port_info ata_dummy_port_info = { |
| 6571 | .port_ops = &ata_dummy_port_ops, |
| 6572 | }; |
| 6573 | |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6574 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6575 | * libata is essentially a library of internal helper functions for |
| 6576 | * low-level ATA host controller drivers. As such, the API/ABI is |
| 6577 | * likely to change as new drivers are added and updated. |
| 6578 | * Do not depend on ABI/API stability. |
| 6579 | */ |
Tejun Heo | e9c8391 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 6580 | EXPORT_SYMBOL_GPL(sata_deb_timing_normal); |
| 6581 | EXPORT_SYMBOL_GPL(sata_deb_timing_hotplug); |
| 6582 | EXPORT_SYMBOL_GPL(sata_deb_timing_long); |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 6583 | EXPORT_SYMBOL_GPL(ata_base_port_ops); |
| 6584 | EXPORT_SYMBOL_GPL(sata_port_ops); |
Tejun Heo | dd5b06c | 2006-08-10 16:59:12 +0900 | [diff] [blame] | 6585 | EXPORT_SYMBOL_GPL(ata_dummy_port_ops); |
Tejun Heo | 21b0ad4 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6586 | EXPORT_SYMBOL_GPL(ata_dummy_port_info); |
Tejun Heo | 1eca436 | 2008-11-03 20:03:17 +0900 | [diff] [blame] | 6587 | EXPORT_SYMBOL_GPL(ata_link_next); |
| 6588 | EXPORT_SYMBOL_GPL(ata_dev_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6589 | EXPORT_SYMBOL_GPL(ata_std_bios_param); |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6590 | EXPORT_SYMBOL_GPL(ata_host_init); |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6591 | EXPORT_SYMBOL_GPL(ata_host_alloc); |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6592 | EXPORT_SYMBOL_GPL(ata_host_alloc_pinfo); |
Tejun Heo | b1c7291 | 2008-07-31 17:02:43 +0900 | [diff] [blame] | 6593 | EXPORT_SYMBOL_GPL(ata_slave_link_init); |
Tejun Heo | ecef725 | 2007-04-17 23:44:06 +0900 | [diff] [blame] | 6594 | EXPORT_SYMBOL_GPL(ata_host_start); |
Tejun Heo | f318719 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6595 | EXPORT_SYMBOL_GPL(ata_host_register); |
Tejun Heo | f5cda25 | 2007-04-17 23:44:07 +0900 | [diff] [blame] | 6596 | EXPORT_SYMBOL_GPL(ata_host_activate); |
Tejun Heo | 0529c159 | 2007-01-20 16:00:26 +0900 | [diff] [blame] | 6597 | EXPORT_SYMBOL_GPL(ata_host_detach); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6598 | EXPORT_SYMBOL_GPL(ata_sg_init); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 6599 | EXPORT_SYMBOL_GPL(ata_qc_complete); |
Tejun Heo | dedaf2b | 2006-05-15 21:03:43 +0900 | [diff] [blame] | 6600 | EXPORT_SYMBOL_GPL(ata_qc_complete_multiple); |
Tejun Heo | 436d34b | 2008-04-02 17:28:46 +0900 | [diff] [blame] | 6601 | EXPORT_SYMBOL_GPL(atapi_cmd_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6602 | EXPORT_SYMBOL_GPL(ata_tf_to_fis); |
| 6603 | EXPORT_SYMBOL_GPL(ata_tf_from_fis); |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 6604 | EXPORT_SYMBOL_GPL(ata_pack_xfermask); |
| 6605 | EXPORT_SYMBOL_GPL(ata_unpack_xfermask); |
| 6606 | EXPORT_SYMBOL_GPL(ata_xfer_mask2mode); |
| 6607 | EXPORT_SYMBOL_GPL(ata_xfer_mode2mask); |
| 6608 | EXPORT_SYMBOL_GPL(ata_xfer_mode2shift); |
| 6609 | EXPORT_SYMBOL_GPL(ata_mode_string); |
| 6610 | EXPORT_SYMBOL_GPL(ata_id_xfermask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6611 | EXPORT_SYMBOL_GPL(ata_port_start); |
Alan | 0435182 | 2007-03-06 02:37:52 -0800 | [diff] [blame] | 6612 | EXPORT_SYMBOL_GPL(ata_do_set_mode); |
Tejun Heo | 31cc23b | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 6613 | EXPORT_SYMBOL_GPL(ata_std_qc_defer); |
Brian King | e46834c | 2006-03-17 17:04:03 -0600 | [diff] [blame] | 6614 | EXPORT_SYMBOL_GPL(ata_noop_qc_prep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6615 | EXPORT_SYMBOL_GPL(ata_port_probe); |
Alan | 10305f0 | 2007-02-20 18:01:59 +0000 | [diff] [blame] | 6616 | EXPORT_SYMBOL_GPL(ata_dev_disable); |
Tejun Heo | 3c567b7 | 2006-05-15 20:57:23 +0900 | [diff] [blame] | 6617 | EXPORT_SYMBOL_GPL(sata_set_spd); |
Tejun Heo | aa2731a | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 6618 | EXPORT_SYMBOL_GPL(ata_wait_after_reset); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6619 | EXPORT_SYMBOL_GPL(sata_link_debounce); |
| 6620 | EXPORT_SYMBOL_GPL(sata_link_resume); |
Tejun Heo | 0aa1113 | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 6621 | EXPORT_SYMBOL_GPL(ata_std_prereset); |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6622 | EXPORT_SYMBOL_GPL(sata_link_hardreset); |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 6623 | EXPORT_SYMBOL_GPL(sata_std_hardreset); |
Tejun Heo | 203c75b | 2008-04-07 22:47:18 +0900 | [diff] [blame] | 6624 | EXPORT_SYMBOL_GPL(ata_std_postreset); |
Jeff Garzik | 2e9edbf | 2006-03-24 09:56:57 -0500 | [diff] [blame] | 6625 | EXPORT_SYMBOL_GPL(ata_dev_classify); |
| 6626 | EXPORT_SYMBOL_GPL(ata_dev_pair); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6627 | EXPORT_SYMBOL_GPL(ata_port_disable); |
Jeff Garzik | 67846b3 | 2005-10-05 02:58:32 -0400 | [diff] [blame] | 6628 | EXPORT_SYMBOL_GPL(ata_ratelimit); |
Tejun Heo | c22daff | 2006-04-11 22:22:29 +0900 | [diff] [blame] | 6629 | EXPORT_SYMBOL_GPL(ata_wait_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6630 | EXPORT_SYMBOL_GPL(ata_scsi_queuecmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6631 | EXPORT_SYMBOL_GPL(ata_scsi_slave_config); |
Tejun Heo | 83c47bc | 2006-05-31 18:28:07 +0900 | [diff] [blame] | 6632 | EXPORT_SYMBOL_GPL(ata_scsi_slave_destroy); |
Tejun Heo | a6e6ce8 | 2006-05-15 21:03:48 +0900 | [diff] [blame] | 6633 | EXPORT_SYMBOL_GPL(ata_scsi_change_queue_depth); |
Tejun Heo | 34bf217 | 2006-05-15 20:57:46 +0900 | [diff] [blame] | 6634 | EXPORT_SYMBOL_GPL(sata_scr_valid); |
| 6635 | EXPORT_SYMBOL_GPL(sata_scr_read); |
| 6636 | EXPORT_SYMBOL_GPL(sata_scr_write); |
| 6637 | EXPORT_SYMBOL_GPL(sata_scr_write_flush); |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6638 | EXPORT_SYMBOL_GPL(ata_link_online); |
| 6639 | EXPORT_SYMBOL_GPL(ata_link_offline); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6640 | #ifdef CONFIG_PM |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 6641 | EXPORT_SYMBOL_GPL(ata_host_suspend); |
| 6642 | EXPORT_SYMBOL_GPL(ata_host_resume); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6643 | #endif /* CONFIG_PM */ |
Tejun Heo | 6a62a04 | 2006-02-13 10:02:46 +0900 | [diff] [blame] | 6644 | EXPORT_SYMBOL_GPL(ata_id_string); |
| 6645 | EXPORT_SYMBOL_GPL(ata_id_c_string); |
Alan Cox | 963e497 | 2008-07-24 17:16:06 +0100 | [diff] [blame] | 6646 | EXPORT_SYMBOL_GPL(ata_do_dev_read_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6647 | EXPORT_SYMBOL_GPL(ata_scsi_simulate); |
| 6648 | |
Alan Cox | 1bc4ccf | 2006-01-09 17:18:14 +0000 | [diff] [blame] | 6649 | EXPORT_SYMBOL_GPL(ata_pio_need_iordy); |
Tejun Heo | 6357357 | 2007-11-27 19:43:39 +0900 | [diff] [blame] | 6650 | EXPORT_SYMBOL_GPL(ata_timing_find_mode); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 6651 | EXPORT_SYMBOL_GPL(ata_timing_compute); |
| 6652 | EXPORT_SYMBOL_GPL(ata_timing_merge); |
Tejun Heo | a0f79b9 | 2007-12-18 16:33:05 +0900 | [diff] [blame] | 6653 | EXPORT_SYMBOL_GPL(ata_timing_cycle2mode); |
Alan Cox | 452503f | 2005-10-21 19:01:32 -0400 | [diff] [blame] | 6654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6655 | #ifdef CONFIG_PCI |
| 6656 | EXPORT_SYMBOL_GPL(pci_test_config_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6657 | EXPORT_SYMBOL_GPL(ata_pci_remove_one); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6658 | #ifdef CONFIG_PM |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 6659 | EXPORT_SYMBOL_GPL(ata_pci_device_do_suspend); |
| 6660 | EXPORT_SYMBOL_GPL(ata_pci_device_do_resume); |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6661 | EXPORT_SYMBOL_GPL(ata_pci_device_suspend); |
| 6662 | EXPORT_SYMBOL_GPL(ata_pci_device_resume); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 6663 | #endif /* CONFIG_PM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6664 | #endif /* CONFIG_PCI */ |
Jens Axboe | 9b84754 | 2006-01-06 09:28:07 +0100 | [diff] [blame] | 6665 | |
Tejun Heo | b64bbc3 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 6666 | EXPORT_SYMBOL_GPL(__ata_ehi_push_desc); |
| 6667 | EXPORT_SYMBOL_GPL(ata_ehi_push_desc); |
| 6668 | EXPORT_SYMBOL_GPL(ata_ehi_clear_desc); |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 6669 | EXPORT_SYMBOL_GPL(ata_port_desc); |
| 6670 | #ifdef CONFIG_PCI |
| 6671 | EXPORT_SYMBOL_GPL(ata_port_pbar_desc); |
| 6672 | #endif /* CONFIG_PCI */ |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 6673 | EXPORT_SYMBOL_GPL(ata_port_schedule_eh); |
Tejun Heo | dbd8261 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 6674 | EXPORT_SYMBOL_GPL(ata_link_abort); |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 6675 | EXPORT_SYMBOL_GPL(ata_port_abort); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 6676 | EXPORT_SYMBOL_GPL(ata_port_freeze); |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 6677 | EXPORT_SYMBOL_GPL(sata_async_notification); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 6678 | EXPORT_SYMBOL_GPL(ata_eh_freeze_port); |
| 6679 | EXPORT_SYMBOL_GPL(ata_eh_thaw_port); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 6680 | EXPORT_SYMBOL_GPL(ata_eh_qc_complete); |
| 6681 | EXPORT_SYMBOL_GPL(ata_eh_qc_retry); |
Mark Lord | 10acf3b | 2008-05-02 02:14:53 -0400 | [diff] [blame] | 6682 | EXPORT_SYMBOL_GPL(ata_eh_analyze_ncq_error); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 6683 | EXPORT_SYMBOL_GPL(ata_do_eh); |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame] | 6684 | EXPORT_SYMBOL_GPL(ata_std_error_handler); |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 6685 | |
| 6686 | EXPORT_SYMBOL_GPL(ata_cable_40wire); |
| 6687 | EXPORT_SYMBOL_GPL(ata_cable_80wire); |
| 6688 | EXPORT_SYMBOL_GPL(ata_cable_unknown); |
Tejun Heo | c88f90c | 2007-11-27 19:43:48 +0900 | [diff] [blame] | 6689 | EXPORT_SYMBOL_GPL(ata_cable_ignore); |
Alan Cox | be0d18d | 2007-03-06 02:37:56 -0800 | [diff] [blame] | 6690 | EXPORT_SYMBOL_GPL(ata_cable_sata); |