Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1 | /* |
| 2 | * libata-eh.c - libata error handling |
| 3 | * |
| 4 | * Maintained by: Jeff Garzik <jgarzik@pobox.com> |
| 5 | * Please ALWAYS copy linux-ide@vger.kernel.org |
| 6 | * on emails. |
| 7 | * |
| 8 | * Copyright 2006 Tejun Heo <htejun@gmail.com> |
| 9 | * |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 19 | * General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; see the file COPYING. If not, write to |
| 23 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, |
| 24 | * 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 | * |
| 33 | */ |
| 34 | |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 35 | #include <linux/kernel.h> |
Jeff Garzik | 2855568 | 2007-10-11 17:12:35 -0400 | [diff] [blame] | 36 | #include <linux/pci.h> |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 37 | #include <scsi/scsi.h> |
| 38 | #include <scsi/scsi_host.h> |
| 39 | #include <scsi/scsi_eh.h> |
| 40 | #include <scsi/scsi_device.h> |
| 41 | #include <scsi/scsi_cmnd.h> |
Jeff Garzik | c6fd280 | 2006-08-10 07:31:37 -0400 | [diff] [blame] | 42 | #include "../scsi/scsi_transport_api.h" |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 43 | |
| 44 | #include <linux/libata.h> |
| 45 | |
| 46 | #include "libata.h" |
| 47 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 48 | enum { |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 49 | /* speed down verdicts */ |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 50 | ATA_EH_SPDN_NCQ_OFF = (1 << 0), |
| 51 | ATA_EH_SPDN_SPEED_DOWN = (1 << 1), |
| 52 | ATA_EH_SPDN_FALLBACK_TO_PIO = (1 << 2), |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 53 | ATA_EH_SPDN_KEEP_ERRORS = (1 << 3), |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 54 | |
| 55 | /* error flags */ |
| 56 | ATA_EFLAG_IS_IO = (1 << 0), |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 57 | ATA_EFLAG_DUBIOUS_XFER = (1 << 1), |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 58 | |
| 59 | /* error categories */ |
| 60 | ATA_ECAT_NONE = 0, |
| 61 | ATA_ECAT_ATA_BUS = 1, |
| 62 | ATA_ECAT_TOUT_HSM = 2, |
| 63 | ATA_ECAT_UNK_DEV = 3, |
Tejun Heo | 75f9caf | 2008-01-03 01:21:14 +0900 | [diff] [blame] | 64 | ATA_ECAT_DUBIOUS_NONE = 4, |
| 65 | ATA_ECAT_DUBIOUS_ATA_BUS = 5, |
| 66 | ATA_ECAT_DUBIOUS_TOUT_HSM = 6, |
| 67 | ATA_ECAT_DUBIOUS_UNK_DEV = 7, |
| 68 | ATA_ECAT_NR = 8, |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 69 | |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 70 | ATA_EH_CMD_DFL_TIMEOUT = 5000, |
| 71 | |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 72 | /* always put at least this amount of time between resets */ |
| 73 | ATA_EH_RESET_COOL_DOWN = 5000, |
| 74 | |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 75 | /* Waiting in ->prereset can never be reliable. It's |
| 76 | * sometimes nice to wait there but it can't be depended upon; |
| 77 | * otherwise, we wouldn't be resetting. Just give it enough |
| 78 | * time for most drives to spin up. |
| 79 | */ |
| 80 | ATA_EH_PRERESET_TIMEOUT = 10000, |
| 81 | ATA_EH_FASTDRAIN_INTERVAL = 3000, |
Tejun Heo | 31daabd | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | /* The following table determines how we sequence resets. Each entry |
| 85 | * represents timeout for that try. The first try can be soft or |
| 86 | * hardreset. All others are hardreset if available. In most cases |
| 87 | * the first reset w/ 10sec timeout should succeed. Following entries |
| 88 | * are mostly for error handling, hotplug and retarded devices. |
| 89 | */ |
| 90 | static const unsigned long ata_eh_reset_timeouts[] = { |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 91 | 10000, /* most drives spin up by 10sec */ |
| 92 | 10000, /* > 99% working drives spin up before 20sec */ |
| 93 | 35000, /* give > 30 secs of idleness for retarded devices */ |
| 94 | 5000, /* and sweet one last chance */ |
Tejun Heo | d8af0eb | 2008-05-20 02:17:53 +0900 | [diff] [blame] | 95 | ULONG_MAX, /* > 1 min has elapsed, give up */ |
Tejun Heo | 31daabd | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 96 | }; |
| 97 | |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 98 | static const unsigned long ata_eh_identify_timeouts[] = { |
| 99 | 5000, /* covers > 99% of successes and not too boring on failures */ |
| 100 | 10000, /* combined time till here is enough even for media access */ |
| 101 | 30000, /* for true idiots */ |
| 102 | ULONG_MAX, |
| 103 | }; |
| 104 | |
| 105 | static const unsigned long ata_eh_other_timeouts[] = { |
| 106 | 5000, /* same rationale as identify timeout */ |
| 107 | 10000, /* ditto */ |
| 108 | /* but no merciful 30sec for other commands, it just isn't worth it */ |
| 109 | ULONG_MAX, |
| 110 | }; |
| 111 | |
| 112 | struct ata_eh_cmd_timeout_ent { |
| 113 | const u8 *commands; |
| 114 | const unsigned long *timeouts; |
| 115 | }; |
| 116 | |
| 117 | /* The following table determines timeouts to use for EH internal |
| 118 | * commands. Each table entry is a command class and matches the |
| 119 | * commands the entry applies to and the timeout table to use. |
| 120 | * |
| 121 | * On the retry after a command timed out, the next timeout value from |
| 122 | * the table is used. If the table doesn't contain further entries, |
| 123 | * the last value is used. |
| 124 | * |
| 125 | * ehc->cmd_timeout_idx keeps track of which timeout to use per |
| 126 | * command class, so if SET_FEATURES times out on the first try, the |
| 127 | * next try will use the second timeout value only for that class. |
| 128 | */ |
| 129 | #define CMDS(cmds...) (const u8 []){ cmds, 0 } |
| 130 | static const struct ata_eh_cmd_timeout_ent |
| 131 | ata_eh_cmd_timeout_table[ATA_EH_CMD_TIMEOUT_TABLE_SIZE] = { |
| 132 | { .commands = CMDS(ATA_CMD_ID_ATA, ATA_CMD_ID_ATAPI), |
| 133 | .timeouts = ata_eh_identify_timeouts, }, |
| 134 | { .commands = CMDS(ATA_CMD_READ_NATIVE_MAX, ATA_CMD_READ_NATIVE_MAX_EXT), |
| 135 | .timeouts = ata_eh_other_timeouts, }, |
| 136 | { .commands = CMDS(ATA_CMD_SET_MAX, ATA_CMD_SET_MAX_EXT), |
| 137 | .timeouts = ata_eh_other_timeouts, }, |
| 138 | { .commands = CMDS(ATA_CMD_SET_FEATURES), |
| 139 | .timeouts = ata_eh_other_timeouts, }, |
| 140 | { .commands = CMDS(ATA_CMD_INIT_DEV_PARAMS), |
| 141 | .timeouts = ata_eh_other_timeouts, }, |
| 142 | }; |
| 143 | #undef CMDS |
| 144 | |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 145 | static void __ata_port_freeze(struct ata_port *ap); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 146 | #ifdef CONFIG_PM |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 147 | static void ata_eh_handle_port_suspend(struct ata_port *ap); |
| 148 | static void ata_eh_handle_port_resume(struct ata_port *ap); |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 149 | #else /* CONFIG_PM */ |
| 150 | static void ata_eh_handle_port_suspend(struct ata_port *ap) |
| 151 | { } |
| 152 | |
| 153 | static void ata_eh_handle_port_resume(struct ata_port *ap) |
| 154 | { } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 155 | #endif /* CONFIG_PM */ |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 156 | |
Tejun Heo | b64bbc3 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 157 | static void __ata_ehi_pushv_desc(struct ata_eh_info *ehi, const char *fmt, |
| 158 | va_list args) |
| 159 | { |
| 160 | ehi->desc_len += vscnprintf(ehi->desc + ehi->desc_len, |
| 161 | ATA_EH_DESC_LEN - ehi->desc_len, |
| 162 | fmt, args); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * __ata_ehi_push_desc - push error description without adding separator |
| 167 | * @ehi: target EHI |
| 168 | * @fmt: printf format string |
| 169 | * |
| 170 | * Format string according to @fmt and append it to @ehi->desc. |
| 171 | * |
| 172 | * LOCKING: |
| 173 | * spin_lock_irqsave(host lock) |
| 174 | */ |
| 175 | void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...) |
| 176 | { |
| 177 | va_list args; |
| 178 | |
| 179 | va_start(args, fmt); |
| 180 | __ata_ehi_pushv_desc(ehi, fmt, args); |
| 181 | va_end(args); |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * ata_ehi_push_desc - push error description with separator |
| 186 | * @ehi: target EHI |
| 187 | * @fmt: printf format string |
| 188 | * |
| 189 | * Format string according to @fmt and append it to @ehi->desc. |
| 190 | * If @ehi->desc is not empty, ", " is added in-between. |
| 191 | * |
| 192 | * LOCKING: |
| 193 | * spin_lock_irqsave(host lock) |
| 194 | */ |
| 195 | void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...) |
| 196 | { |
| 197 | va_list args; |
| 198 | |
| 199 | if (ehi->desc_len) |
| 200 | __ata_ehi_push_desc(ehi, ", "); |
| 201 | |
| 202 | va_start(args, fmt); |
| 203 | __ata_ehi_pushv_desc(ehi, fmt, args); |
| 204 | va_end(args); |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * ata_ehi_clear_desc - clean error description |
| 209 | * @ehi: target EHI |
| 210 | * |
| 211 | * Clear @ehi->desc. |
| 212 | * |
| 213 | * LOCKING: |
| 214 | * spin_lock_irqsave(host lock) |
| 215 | */ |
| 216 | void ata_ehi_clear_desc(struct ata_eh_info *ehi) |
| 217 | { |
| 218 | ehi->desc[0] = '\0'; |
| 219 | ehi->desc_len = 0; |
| 220 | } |
| 221 | |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 222 | /** |
| 223 | * ata_port_desc - append port description |
| 224 | * @ap: target ATA port |
| 225 | * @fmt: printf format string |
| 226 | * |
| 227 | * Format string according to @fmt and append it to port |
| 228 | * description. If port description is not empty, " " is added |
| 229 | * in-between. This function is to be used while initializing |
| 230 | * ata_host. The description is printed on host registration. |
| 231 | * |
| 232 | * LOCKING: |
| 233 | * None. |
| 234 | */ |
| 235 | void ata_port_desc(struct ata_port *ap, const char *fmt, ...) |
| 236 | { |
| 237 | va_list args; |
| 238 | |
| 239 | WARN_ON(!(ap->pflags & ATA_PFLAG_INITIALIZING)); |
| 240 | |
| 241 | if (ap->link.eh_info.desc_len) |
| 242 | __ata_ehi_push_desc(&ap->link.eh_info, " "); |
| 243 | |
| 244 | va_start(args, fmt); |
| 245 | __ata_ehi_pushv_desc(&ap->link.eh_info, fmt, args); |
| 246 | va_end(args); |
| 247 | } |
| 248 | |
| 249 | #ifdef CONFIG_PCI |
| 250 | |
| 251 | /** |
| 252 | * ata_port_pbar_desc - append PCI BAR description |
| 253 | * @ap: target ATA port |
| 254 | * @bar: target PCI BAR |
| 255 | * @offset: offset into PCI BAR |
| 256 | * @name: name of the area |
| 257 | * |
| 258 | * If @offset is negative, this function formats a string which |
| 259 | * contains the name, address, size and type of the BAR and |
| 260 | * appends it to the port description. If @offset is zero or |
| 261 | * positive, only name and offsetted address is appended. |
| 262 | * |
| 263 | * LOCKING: |
| 264 | * None. |
| 265 | */ |
| 266 | void ata_port_pbar_desc(struct ata_port *ap, int bar, ssize_t offset, |
| 267 | const char *name) |
| 268 | { |
| 269 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 270 | char *type = ""; |
| 271 | unsigned long long start, len; |
| 272 | |
| 273 | if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) |
| 274 | type = "m"; |
| 275 | else if (pci_resource_flags(pdev, bar) & IORESOURCE_IO) |
| 276 | type = "i"; |
| 277 | |
| 278 | start = (unsigned long long)pci_resource_start(pdev, bar); |
| 279 | len = (unsigned long long)pci_resource_len(pdev, bar); |
| 280 | |
| 281 | if (offset < 0) |
| 282 | ata_port_desc(ap, "%s %s%llu@0x%llx", name, type, len, start); |
| 283 | else |
Andrew Morton | e6a73ab | 2007-12-13 16:01:37 -0800 | [diff] [blame] | 284 | ata_port_desc(ap, "%s 0x%llx", name, |
| 285 | start + (unsigned long long)offset); |
Tejun Heo | cbcdd87 | 2007-08-18 13:14:55 +0900 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | #endif /* CONFIG_PCI */ |
| 289 | |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 290 | static int ata_lookup_timeout_table(u8 cmd) |
| 291 | { |
| 292 | int i; |
| 293 | |
| 294 | for (i = 0; i < ATA_EH_CMD_TIMEOUT_TABLE_SIZE; i++) { |
| 295 | const u8 *cur; |
| 296 | |
| 297 | for (cur = ata_eh_cmd_timeout_table[i].commands; *cur; cur++) |
| 298 | if (*cur == cmd) |
| 299 | return i; |
| 300 | } |
| 301 | |
| 302 | return -1; |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * ata_internal_cmd_timeout - determine timeout for an internal command |
| 307 | * @dev: target device |
| 308 | * @cmd: internal command to be issued |
| 309 | * |
| 310 | * Determine timeout for internal command @cmd for @dev. |
| 311 | * |
| 312 | * LOCKING: |
| 313 | * EH context. |
| 314 | * |
| 315 | * RETURNS: |
| 316 | * Determined timeout. |
| 317 | */ |
| 318 | unsigned long ata_internal_cmd_timeout(struct ata_device *dev, u8 cmd) |
| 319 | { |
| 320 | struct ata_eh_context *ehc = &dev->link->eh_context; |
| 321 | int ent = ata_lookup_timeout_table(cmd); |
| 322 | int idx; |
| 323 | |
| 324 | if (ent < 0) |
| 325 | return ATA_EH_CMD_DFL_TIMEOUT; |
| 326 | |
| 327 | idx = ehc->cmd_timeout_idx[dev->devno][ent]; |
| 328 | return ata_eh_cmd_timeout_table[ent].timeouts[idx]; |
| 329 | } |
| 330 | |
| 331 | /** |
| 332 | * ata_internal_cmd_timed_out - notification for internal command timeout |
| 333 | * @dev: target device |
| 334 | * @cmd: internal command which timed out |
| 335 | * |
| 336 | * Notify EH that internal command @cmd for @dev timed out. This |
| 337 | * function should be called only for commands whose timeouts are |
| 338 | * determined using ata_internal_cmd_timeout(). |
| 339 | * |
| 340 | * LOCKING: |
| 341 | * EH context. |
| 342 | */ |
| 343 | void ata_internal_cmd_timed_out(struct ata_device *dev, u8 cmd) |
| 344 | { |
| 345 | struct ata_eh_context *ehc = &dev->link->eh_context; |
| 346 | int ent = ata_lookup_timeout_table(cmd); |
| 347 | int idx; |
| 348 | |
| 349 | if (ent < 0) |
| 350 | return; |
| 351 | |
| 352 | idx = ehc->cmd_timeout_idx[dev->devno][ent]; |
| 353 | if (ata_eh_cmd_timeout_table[ent].timeouts[idx + 1] != ULONG_MAX) |
| 354 | ehc->cmd_timeout_idx[dev->devno][ent]++; |
| 355 | } |
| 356 | |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 357 | static void ata_ering_record(struct ata_ering *ering, unsigned int eflags, |
Tejun Heo | 0c247c5 | 2006-05-15 20:58:19 +0900 | [diff] [blame] | 358 | unsigned int err_mask) |
| 359 | { |
| 360 | struct ata_ering_entry *ent; |
| 361 | |
| 362 | WARN_ON(!err_mask); |
| 363 | |
| 364 | ering->cursor++; |
| 365 | ering->cursor %= ATA_ERING_SIZE; |
| 366 | |
| 367 | ent = &ering->ring[ering->cursor]; |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 368 | ent->eflags = eflags; |
Tejun Heo | 0c247c5 | 2006-05-15 20:58:19 +0900 | [diff] [blame] | 369 | ent->err_mask = err_mask; |
| 370 | ent->timestamp = get_jiffies_64(); |
| 371 | } |
| 372 | |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 373 | static struct ata_ering_entry *ata_ering_top(struct ata_ering *ering) |
| 374 | { |
| 375 | struct ata_ering_entry *ent = &ering->ring[ering->cursor]; |
| 376 | |
| 377 | if (ent->err_mask) |
| 378 | return ent; |
| 379 | return NULL; |
| 380 | } |
| 381 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 382 | static void ata_ering_clear(struct ata_ering *ering) |
Tejun Heo | 0c247c5 | 2006-05-15 20:58:19 +0900 | [diff] [blame] | 383 | { |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 384 | memset(ering, 0, sizeof(*ering)); |
Tejun Heo | 0c247c5 | 2006-05-15 20:58:19 +0900 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static int ata_ering_map(struct ata_ering *ering, |
| 388 | int (*map_fn)(struct ata_ering_entry *, void *), |
| 389 | void *arg) |
| 390 | { |
| 391 | int idx, rc = 0; |
| 392 | struct ata_ering_entry *ent; |
| 393 | |
| 394 | idx = ering->cursor; |
| 395 | do { |
| 396 | ent = &ering->ring[idx]; |
| 397 | if (!ent->err_mask) |
| 398 | break; |
| 399 | rc = map_fn(ent, arg); |
| 400 | if (rc) |
| 401 | break; |
| 402 | idx = (idx - 1 + ATA_ERING_SIZE) % ATA_ERING_SIZE; |
| 403 | } while (idx != ering->cursor); |
| 404 | |
| 405 | return rc; |
| 406 | } |
| 407 | |
Tejun Heo | 64f65ca | 2006-06-24 20:30:18 +0900 | [diff] [blame] | 408 | static unsigned int ata_eh_dev_action(struct ata_device *dev) |
| 409 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 410 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | 64f65ca | 2006-06-24 20:30:18 +0900 | [diff] [blame] | 411 | |
| 412 | return ehc->i.action | ehc->i.dev_action[dev->devno]; |
| 413 | } |
| 414 | |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 415 | static void ata_eh_clear_action(struct ata_link *link, struct ata_device *dev, |
Tejun Heo | af181c2 | 2006-06-24 20:30:18 +0900 | [diff] [blame] | 416 | struct ata_eh_info *ehi, unsigned int action) |
| 417 | { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 418 | struct ata_device *tdev; |
Tejun Heo | af181c2 | 2006-06-24 20:30:18 +0900 | [diff] [blame] | 419 | |
| 420 | if (!dev) { |
| 421 | ehi->action &= ~action; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 422 | ata_link_for_each_dev(tdev, link) |
| 423 | ehi->dev_action[tdev->devno] &= ~action; |
Tejun Heo | af181c2 | 2006-06-24 20:30:18 +0900 | [diff] [blame] | 424 | } else { |
| 425 | /* doesn't make sense for port-wide EH actions */ |
| 426 | WARN_ON(!(action & ATA_EH_PERDEV_MASK)); |
| 427 | |
| 428 | /* break ehi->action into ehi->dev_action */ |
| 429 | if (ehi->action & action) { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 430 | ata_link_for_each_dev(tdev, link) |
| 431 | ehi->dev_action[tdev->devno] |= |
| 432 | ehi->action & action; |
Tejun Heo | af181c2 | 2006-06-24 20:30:18 +0900 | [diff] [blame] | 433 | ehi->action &= ~action; |
| 434 | } |
| 435 | |
| 436 | /* turn off the specified per-dev action */ |
| 437 | ehi->dev_action[dev->devno] &= ~action; |
| 438 | } |
| 439 | } |
| 440 | |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 441 | /** |
| 442 | * ata_scsi_timed_out - SCSI layer time out callback |
| 443 | * @cmd: timed out SCSI command |
| 444 | * |
| 445 | * Handles SCSI layer timeout. We race with normal completion of |
| 446 | * the qc for @cmd. If the qc is already gone, we lose and let |
| 447 | * the scsi command finish (EH_HANDLED). Otherwise, the qc has |
| 448 | * timed out and EH should be invoked. Prevent ata_qc_complete() |
| 449 | * from finishing it by setting EH_SCHEDULED and return |
| 450 | * EH_NOT_HANDLED. |
| 451 | * |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 452 | * TODO: kill this function once old EH is gone. |
| 453 | * |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 454 | * LOCKING: |
| 455 | * Called from timer context |
| 456 | * |
| 457 | * RETURNS: |
| 458 | * EH_HANDLED or EH_NOT_HANDLED |
| 459 | */ |
| 460 | enum scsi_eh_timer_return ata_scsi_timed_out(struct scsi_cmnd *cmd) |
| 461 | { |
| 462 | struct Scsi_Host *host = cmd->device->host; |
Jeff Garzik | 35bb94b | 2006-04-11 13:12:34 -0400 | [diff] [blame] | 463 | struct ata_port *ap = ata_shost_to_port(host); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 464 | unsigned long flags; |
| 465 | struct ata_queued_cmd *qc; |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 466 | enum scsi_eh_timer_return ret; |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 467 | |
| 468 | DPRINTK("ENTER\n"); |
| 469 | |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 470 | if (ap->ops->error_handler) { |
| 471 | ret = EH_NOT_HANDLED; |
| 472 | goto out; |
| 473 | } |
| 474 | |
| 475 | ret = EH_HANDLED; |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 476 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 477 | qc = ata_qc_from_tag(ap, ap->link.active_tag); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 478 | if (qc) { |
| 479 | WARN_ON(qc->scsicmd != cmd); |
| 480 | qc->flags |= ATA_QCFLAG_EH_SCHEDULED; |
| 481 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 482 | ret = EH_NOT_HANDLED; |
| 483 | } |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 484 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 485 | |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 486 | out: |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 487 | DPRINTK("EXIT, ret=%d\n", ret); |
| 488 | return ret; |
| 489 | } |
| 490 | |
| 491 | /** |
| 492 | * ata_scsi_error - SCSI layer error handler callback |
| 493 | * @host: SCSI host on which error occurred |
| 494 | * |
| 495 | * Handles SCSI-layer-thrown error events. |
| 496 | * |
| 497 | * LOCKING: |
| 498 | * Inherited from SCSI layer (none, can sleep) |
| 499 | * |
| 500 | * RETURNS: |
| 501 | * Zero. |
| 502 | */ |
Jeff Garzik | 381544b | 2006-04-11 13:04:39 -0400 | [diff] [blame] | 503 | void ata_scsi_error(struct Scsi_Host *host) |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 504 | { |
Jeff Garzik | 35bb94b | 2006-04-11 13:12:34 -0400 | [diff] [blame] | 505 | struct ata_port *ap = ata_shost_to_port(host); |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 506 | int i; |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 507 | unsigned long flags; |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 508 | |
| 509 | DPRINTK("ENTER\n"); |
| 510 | |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 511 | /* synchronize with port task */ |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 512 | ata_port_flush_task(ap); |
| 513 | |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 514 | /* synchronize with host lock and sort out timeouts */ |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 515 | |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 516 | /* For new EH, all qcs are finished in one of three ways - |
| 517 | * normal completion, error completion, and SCSI timeout. |
| 518 | * Both cmpletions can race against SCSI timeout. When normal |
| 519 | * completion wins, the qc never reaches EH. When error |
| 520 | * completion wins, the qc has ATA_QCFLAG_FAILED set. |
| 521 | * |
| 522 | * When SCSI timeout wins, things are a bit more complex. |
| 523 | * Normal or error completion can occur after the timeout but |
| 524 | * before this point. In such cases, both types of |
| 525 | * completions are honored. A scmd is determined to have |
| 526 | * timed out iff its associated qc is active and not failed. |
| 527 | */ |
| 528 | if (ap->ops->error_handler) { |
| 529 | struct scsi_cmnd *scmd, *tmp; |
| 530 | int nr_timedout = 0; |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 531 | |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 532 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 533 | |
| 534 | list_for_each_entry_safe(scmd, tmp, &host->eh_cmd_q, eh_entry) { |
| 535 | struct ata_queued_cmd *qc; |
| 536 | |
| 537 | for (i = 0; i < ATA_MAX_QUEUE; i++) { |
| 538 | qc = __ata_qc_from_tag(ap, i); |
| 539 | if (qc->flags & ATA_QCFLAG_ACTIVE && |
| 540 | qc->scsicmd == scmd) |
| 541 | break; |
| 542 | } |
| 543 | |
| 544 | if (i < ATA_MAX_QUEUE) { |
| 545 | /* the scmd has an associated qc */ |
| 546 | if (!(qc->flags & ATA_QCFLAG_FAILED)) { |
| 547 | /* which hasn't failed yet, timeout */ |
| 548 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 549 | qc->flags |= ATA_QCFLAG_FAILED; |
| 550 | nr_timedout++; |
| 551 | } |
| 552 | } else { |
| 553 | /* Normal completion occurred after |
| 554 | * SCSI timeout but before this point. |
| 555 | * Successfully complete it. |
| 556 | */ |
| 557 | scmd->retries = scmd->allowed; |
| 558 | scsi_eh_finish_cmd(scmd, &ap->eh_done_q); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | /* If we have timed out qcs. They belong to EH from |
| 563 | * this point but the state of the controller is |
| 564 | * unknown. Freeze the port to make sure the IRQ |
| 565 | * handler doesn't diddle with those qcs. This must |
| 566 | * be done atomically w.r.t. setting QCFLAG_FAILED. |
| 567 | */ |
| 568 | if (nr_timedout) |
| 569 | __ata_port_freeze(ap); |
| 570 | |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 571 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 572 | |
| 573 | /* initialize eh_tries */ |
| 574 | ap->eh_tries = ATA_EH_MAX_TRIES; |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 575 | } else |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 576 | spin_unlock_wait(ap->lock); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 577 | |
| 578 | repeat: |
| 579 | /* invoke error handler */ |
| 580 | if (ap->ops->error_handler) { |
Tejun Heo | cf1b86c | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 581 | struct ata_link *link; |
| 582 | |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 583 | /* kill fast drain timer */ |
| 584 | del_timer_sync(&ap->fastdrain_timer); |
| 585 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 586 | /* process port resume request */ |
| 587 | ata_eh_handle_port_resume(ap); |
| 588 | |
Tejun Heo | f3e81b1 | 2006-05-15 20:58:21 +0900 | [diff] [blame] | 589 | /* fetch & clear EH info */ |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 590 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | f3e81b1 | 2006-05-15 20:58:21 +0900 | [diff] [blame] | 591 | |
Tejun Heo | cf1b86c | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 592 | __ata_port_for_each_link(link, ap) { |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 593 | struct ata_eh_context *ehc = &link->eh_context; |
| 594 | struct ata_device *dev; |
| 595 | |
Tejun Heo | cf1b86c | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 596 | memset(&link->eh_context, 0, sizeof(link->eh_context)); |
| 597 | link->eh_context.i = link->eh_info; |
| 598 | memset(&link->eh_info, 0, sizeof(link->eh_info)); |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 599 | |
| 600 | ata_link_for_each_dev(dev, link) { |
| 601 | int devno = dev->devno; |
| 602 | |
| 603 | ehc->saved_xfer_mode[devno] = dev->xfer_mode; |
| 604 | if (ata_ncq_enabled(dev)) |
| 605 | ehc->saved_ncq_enabled |= 1 << devno; |
| 606 | } |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 607 | |
| 608 | /* set last reset timestamp to some time in the past */ |
| 609 | ehc->last_reset = jiffies - 60 * HZ; |
Tejun Heo | cf1b86c | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 610 | } |
Tejun Heo | f3e81b1 | 2006-05-15 20:58:21 +0900 | [diff] [blame] | 611 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 612 | ap->pflags |= ATA_PFLAG_EH_IN_PROGRESS; |
| 613 | ap->pflags &= ~ATA_PFLAG_EH_PENDING; |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 614 | ap->excl_link = NULL; /* don't maintain exclusion over EH */ |
Tejun Heo | f3e81b1 | 2006-05-15 20:58:21 +0900 | [diff] [blame] | 615 | |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 616 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 617 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 618 | /* invoke EH, skip if unloading or suspended */ |
| 619 | if (!(ap->pflags & (ATA_PFLAG_UNLOADING | ATA_PFLAG_SUSPENDED))) |
Tejun Heo | 720ba12 | 2006-05-31 18:28:13 +0900 | [diff] [blame] | 620 | ap->ops->error_handler(ap); |
| 621 | else |
| 622 | ata_eh_finish(ap); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 623 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 624 | /* process port suspend request */ |
| 625 | ata_eh_handle_port_suspend(ap); |
| 626 | |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 627 | /* Exception might have happend after ->error_handler |
| 628 | * recovered the port but before this point. Repeat |
| 629 | * EH in such case. |
| 630 | */ |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 631 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 632 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 633 | if (ap->pflags & ATA_PFLAG_EH_PENDING) { |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 634 | if (--ap->eh_tries) { |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 635 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 636 | goto repeat; |
| 637 | } |
| 638 | ata_port_printk(ap, KERN_ERR, "EH pending after %d " |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 639 | "tries, giving up\n", ATA_EH_MAX_TRIES); |
Tejun Heo | 914616a | 2007-06-25 21:47:11 +0900 | [diff] [blame] | 640 | ap->pflags &= ~ATA_PFLAG_EH_PENDING; |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 641 | } |
| 642 | |
Tejun Heo | f3e81b1 | 2006-05-15 20:58:21 +0900 | [diff] [blame] | 643 | /* this run is complete, make sure EH info is clear */ |
Tejun Heo | cf1b86c | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 644 | __ata_port_for_each_link(link, ap) |
| 645 | memset(&link->eh_info, 0, sizeof(link->eh_info)); |
Tejun Heo | f3e81b1 | 2006-05-15 20:58:21 +0900 | [diff] [blame] | 646 | |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 647 | /* Clear host_eh_scheduled while holding ap->lock such |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 648 | * that if exception occurs after this point but |
| 649 | * before EH completion, SCSI midlayer will |
| 650 | * re-initiate EH. |
| 651 | */ |
| 652 | host->host_eh_scheduled = 0; |
| 653 | |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 654 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 655 | } else { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 656 | WARN_ON(ata_qc_from_tag(ap, ap->link.active_tag) == NULL); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 657 | ap->ops->eng_timeout(ap); |
| 658 | } |
| 659 | |
| 660 | /* finish or retry handled scmd's and clean up */ |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 661 | WARN_ON(host->host_failed || !list_empty(&host->eh_cmd_q)); |
| 662 | |
| 663 | scsi_eh_flush_done_q(&ap->eh_done_q); |
| 664 | |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 665 | /* clean up */ |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 666 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 667 | |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 668 | if (ap->pflags & ATA_PFLAG_LOADING) |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 669 | ap->pflags &= ~ATA_PFLAG_LOADING; |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 670 | else if (ap->pflags & ATA_PFLAG_SCSI_HOTPLUG) |
David Howells | 52bad64 | 2006-11-22 14:54:01 +0000 | [diff] [blame] | 671 | queue_delayed_work(ata_aux_wq, &ap->hotplug_task, 0); |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 672 | |
| 673 | if (ap->pflags & ATA_PFLAG_RECOVERED) |
| 674 | ata_port_printk(ap, KERN_INFO, "EH complete\n"); |
Tejun Heo | 580b2102 | 2006-05-31 18:28:05 +0900 | [diff] [blame] | 675 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 676 | ap->pflags &= ~(ATA_PFLAG_SCSI_HOTPLUG | ATA_PFLAG_RECOVERED); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 677 | |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 678 | /* tell wait_eh that we're done */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 679 | ap->pflags &= ~ATA_PFLAG_EH_IN_PROGRESS; |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 680 | wake_up_all(&ap->eh_wait_q); |
| 681 | |
Tejun Heo | e30349d | 2006-07-03 03:02:15 +0900 | [diff] [blame] | 682 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | ad9e276 | 2006-05-15 20:58:12 +0900 | [diff] [blame] | 683 | |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 684 | DPRINTK("EXIT\n"); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | /** |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 688 | * ata_port_wait_eh - Wait for the currently pending EH to complete |
| 689 | * @ap: Port to wait EH for |
| 690 | * |
| 691 | * Wait until the currently pending EH is complete. |
| 692 | * |
| 693 | * LOCKING: |
| 694 | * Kernel thread context (may sleep). |
| 695 | */ |
| 696 | void ata_port_wait_eh(struct ata_port *ap) |
| 697 | { |
| 698 | unsigned long flags; |
| 699 | DEFINE_WAIT(wait); |
| 700 | |
| 701 | retry: |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 702 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 703 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 704 | while (ap->pflags & (ATA_PFLAG_EH_PENDING | ATA_PFLAG_EH_IN_PROGRESS)) { |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 705 | prepare_to_wait(&ap->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE); |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 706 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 707 | schedule(); |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 708 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 709 | } |
Tejun Heo | 0a1b622 | 2006-06-11 11:01:38 +0900 | [diff] [blame] | 710 | finish_wait(&ap->eh_wait_q, &wait); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 711 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 712 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 713 | |
| 714 | /* make sure SCSI EH is complete */ |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 715 | if (scsi_host_in_recovery(ap->scsi_host)) { |
Tejun Heo | c6cf9e9 | 2006-05-31 18:27:27 +0900 | [diff] [blame] | 716 | msleep(10); |
| 717 | goto retry; |
| 718 | } |
| 719 | } |
| 720 | |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 721 | static int ata_eh_nr_in_flight(struct ata_port *ap) |
| 722 | { |
| 723 | unsigned int tag; |
| 724 | int nr = 0; |
| 725 | |
| 726 | /* count only non-internal commands */ |
| 727 | for (tag = 0; tag < ATA_MAX_QUEUE - 1; tag++) |
| 728 | if (ata_qc_from_tag(ap, tag)) |
| 729 | nr++; |
| 730 | |
| 731 | return nr; |
| 732 | } |
| 733 | |
| 734 | void ata_eh_fastdrain_timerfn(unsigned long arg) |
| 735 | { |
| 736 | struct ata_port *ap = (void *)arg; |
| 737 | unsigned long flags; |
| 738 | int cnt; |
| 739 | |
| 740 | spin_lock_irqsave(ap->lock, flags); |
| 741 | |
| 742 | cnt = ata_eh_nr_in_flight(ap); |
| 743 | |
| 744 | /* are we done? */ |
| 745 | if (!cnt) |
| 746 | goto out_unlock; |
| 747 | |
| 748 | if (cnt == ap->fastdrain_cnt) { |
| 749 | unsigned int tag; |
| 750 | |
| 751 | /* No progress during the last interval, tag all |
| 752 | * in-flight qcs as timed out and freeze the port. |
| 753 | */ |
| 754 | for (tag = 0; tag < ATA_MAX_QUEUE - 1; tag++) { |
| 755 | struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag); |
| 756 | if (qc) |
| 757 | qc->err_mask |= AC_ERR_TIMEOUT; |
| 758 | } |
| 759 | |
| 760 | ata_port_freeze(ap); |
| 761 | } else { |
| 762 | /* some qcs have finished, give it another chance */ |
| 763 | ap->fastdrain_cnt = cnt; |
| 764 | ap->fastdrain_timer.expires = |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 765 | ata_deadline(jiffies, ATA_EH_FASTDRAIN_INTERVAL); |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 766 | add_timer(&ap->fastdrain_timer); |
| 767 | } |
| 768 | |
| 769 | out_unlock: |
| 770 | spin_unlock_irqrestore(ap->lock, flags); |
| 771 | } |
| 772 | |
| 773 | /** |
| 774 | * ata_eh_set_pending - set ATA_PFLAG_EH_PENDING and activate fast drain |
| 775 | * @ap: target ATA port |
| 776 | * @fastdrain: activate fast drain |
| 777 | * |
| 778 | * Set ATA_PFLAG_EH_PENDING and activate fast drain if @fastdrain |
| 779 | * is non-zero and EH wasn't pending before. Fast drain ensures |
| 780 | * that EH kicks in in timely manner. |
| 781 | * |
| 782 | * LOCKING: |
| 783 | * spin_lock_irqsave(host lock) |
| 784 | */ |
| 785 | static void ata_eh_set_pending(struct ata_port *ap, int fastdrain) |
| 786 | { |
| 787 | int cnt; |
| 788 | |
| 789 | /* already scheduled? */ |
| 790 | if (ap->pflags & ATA_PFLAG_EH_PENDING) |
| 791 | return; |
| 792 | |
| 793 | ap->pflags |= ATA_PFLAG_EH_PENDING; |
| 794 | |
| 795 | if (!fastdrain) |
| 796 | return; |
| 797 | |
| 798 | /* do we have in-flight qcs? */ |
| 799 | cnt = ata_eh_nr_in_flight(ap); |
| 800 | if (!cnt) |
| 801 | return; |
| 802 | |
| 803 | /* activate fast drain */ |
| 804 | ap->fastdrain_cnt = cnt; |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 805 | ap->fastdrain_timer.expires = |
| 806 | ata_deadline(jiffies, ATA_EH_FASTDRAIN_INTERVAL); |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 807 | add_timer(&ap->fastdrain_timer); |
| 808 | } |
| 809 | |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 810 | /** |
| 811 | * ata_qc_schedule_eh - schedule qc for error handling |
| 812 | * @qc: command to schedule error handling for |
| 813 | * |
| 814 | * Schedule error handling for @qc. EH will kick in as soon as |
| 815 | * other commands are drained. |
| 816 | * |
| 817 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 818 | * spin_lock_irqsave(host lock) |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 819 | */ |
| 820 | void ata_qc_schedule_eh(struct ata_queued_cmd *qc) |
| 821 | { |
| 822 | struct ata_port *ap = qc->ap; |
| 823 | |
| 824 | WARN_ON(!ap->ops->error_handler); |
| 825 | |
| 826 | qc->flags |= ATA_QCFLAG_FAILED; |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 827 | ata_eh_set_pending(ap, 1); |
Tejun Heo | f686bcb | 2006-05-15 20:58:05 +0900 | [diff] [blame] | 828 | |
| 829 | /* The following will fail if timeout has already expired. |
| 830 | * ata_scsi_error() takes care of such scmds on EH entry. |
| 831 | * Note that ATA_QCFLAG_FAILED is unconditionally set after |
| 832 | * this function completes. |
| 833 | */ |
| 834 | scsi_req_abort_cmd(qc->scsicmd); |
| 835 | } |
| 836 | |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 837 | /** |
| 838 | * ata_port_schedule_eh - schedule error handling without a qc |
| 839 | * @ap: ATA port to schedule EH for |
| 840 | * |
| 841 | * Schedule error handling for @ap. EH will kick in as soon as |
| 842 | * all commands are drained. |
| 843 | * |
| 844 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 845 | * spin_lock_irqsave(host lock) |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 846 | */ |
| 847 | void ata_port_schedule_eh(struct ata_port *ap) |
| 848 | { |
| 849 | WARN_ON(!ap->ops->error_handler); |
| 850 | |
Tejun Heo | f4d6d00 | 2007-05-01 11:50:15 +0200 | [diff] [blame] | 851 | if (ap->pflags & ATA_PFLAG_INITIALIZING) |
| 852 | return; |
| 853 | |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 854 | ata_eh_set_pending(ap, 1); |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 855 | scsi_schedule_eh(ap->scsi_host); |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 856 | |
| 857 | DPRINTK("port EH scheduled\n"); |
| 858 | } |
| 859 | |
Tejun Heo | dbd8261 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 860 | static int ata_do_link_abort(struct ata_port *ap, struct ata_link *link) |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 861 | { |
| 862 | int tag, nr_aborted = 0; |
| 863 | |
| 864 | WARN_ON(!ap->ops->error_handler); |
| 865 | |
Tejun Heo | 5ddf24c | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 866 | /* we're gonna abort all commands, no need for fast drain */ |
| 867 | ata_eh_set_pending(ap, 0); |
| 868 | |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 869 | for (tag = 0; tag < ATA_MAX_QUEUE; tag++) { |
| 870 | struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag); |
| 871 | |
Tejun Heo | dbd8261 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 872 | if (qc && (!link || qc->dev->link == link)) { |
Tejun Heo | 7b70fc0 | 2006-05-15 20:58:07 +0900 | [diff] [blame] | 873 | qc->flags |= ATA_QCFLAG_FAILED; |
| 874 | ata_qc_complete(qc); |
| 875 | nr_aborted++; |
| 876 | } |
| 877 | } |
| 878 | |
| 879 | if (!nr_aborted) |
| 880 | ata_port_schedule_eh(ap); |
| 881 | |
| 882 | return nr_aborted; |
| 883 | } |
| 884 | |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 885 | /** |
Tejun Heo | dbd8261 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 886 | * ata_link_abort - abort all qc's on the link |
| 887 | * @link: ATA link to abort qc's for |
| 888 | * |
| 889 | * Abort all active qc's active on @link and schedule EH. |
| 890 | * |
| 891 | * LOCKING: |
| 892 | * spin_lock_irqsave(host lock) |
| 893 | * |
| 894 | * RETURNS: |
| 895 | * Number of aborted qc's. |
| 896 | */ |
| 897 | int ata_link_abort(struct ata_link *link) |
| 898 | { |
| 899 | return ata_do_link_abort(link->ap, link); |
| 900 | } |
| 901 | |
| 902 | /** |
| 903 | * ata_port_abort - abort all qc's on the port |
| 904 | * @ap: ATA port to abort qc's for |
| 905 | * |
| 906 | * Abort all active qc's of @ap and schedule EH. |
| 907 | * |
| 908 | * LOCKING: |
| 909 | * spin_lock_irqsave(host_set lock) |
| 910 | * |
| 911 | * RETURNS: |
| 912 | * Number of aborted qc's. |
| 913 | */ |
| 914 | int ata_port_abort(struct ata_port *ap) |
| 915 | { |
| 916 | return ata_do_link_abort(ap, NULL); |
| 917 | } |
| 918 | |
| 919 | /** |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 920 | * __ata_port_freeze - freeze port |
| 921 | * @ap: ATA port to freeze |
| 922 | * |
| 923 | * This function is called when HSM violation or some other |
| 924 | * condition disrupts normal operation of the port. Frozen port |
| 925 | * is not allowed to perform any operation until the port is |
| 926 | * thawed, which usually follows a successful reset. |
| 927 | * |
| 928 | * ap->ops->freeze() callback can be used for freezing the port |
| 929 | * hardware-wise (e.g. mask interrupt and stop DMA engine). If a |
| 930 | * port cannot be frozen hardware-wise, the interrupt handler |
| 931 | * must ack and clear interrupts unconditionally while the port |
| 932 | * is frozen. |
| 933 | * |
| 934 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 935 | * spin_lock_irqsave(host lock) |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 936 | */ |
| 937 | static void __ata_port_freeze(struct ata_port *ap) |
| 938 | { |
| 939 | WARN_ON(!ap->ops->error_handler); |
| 940 | |
| 941 | if (ap->ops->freeze) |
| 942 | ap->ops->freeze(ap); |
| 943 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 944 | ap->pflags |= ATA_PFLAG_FROZEN; |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 945 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 946 | DPRINTK("ata%u port frozen\n", ap->print_id); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 947 | } |
| 948 | |
| 949 | /** |
| 950 | * ata_port_freeze - abort & freeze port |
| 951 | * @ap: ATA port to freeze |
| 952 | * |
| 953 | * Abort and freeze @ap. |
| 954 | * |
| 955 | * LOCKING: |
Jeff Garzik | cca3974 | 2006-08-24 03:19:22 -0400 | [diff] [blame] | 956 | * spin_lock_irqsave(host lock) |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 957 | * |
| 958 | * RETURNS: |
| 959 | * Number of aborted commands. |
| 960 | */ |
| 961 | int ata_port_freeze(struct ata_port *ap) |
| 962 | { |
| 963 | int nr_aborted; |
| 964 | |
| 965 | WARN_ON(!ap->ops->error_handler); |
| 966 | |
| 967 | nr_aborted = ata_port_abort(ap); |
| 968 | __ata_port_freeze(ap); |
| 969 | |
| 970 | return nr_aborted; |
| 971 | } |
| 972 | |
| 973 | /** |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 974 | * sata_async_notification - SATA async notification handler |
| 975 | * @ap: ATA port where async notification is received |
| 976 | * |
| 977 | * Handler to be called when async notification via SDB FIS is |
| 978 | * received. This function schedules EH if necessary. |
| 979 | * |
| 980 | * LOCKING: |
| 981 | * spin_lock_irqsave(host lock) |
| 982 | * |
| 983 | * RETURNS: |
| 984 | * 1 if EH is scheduled, 0 otherwise. |
| 985 | */ |
| 986 | int sata_async_notification(struct ata_port *ap) |
| 987 | { |
| 988 | u32 sntf; |
| 989 | int rc; |
| 990 | |
| 991 | if (!(ap->flags & ATA_FLAG_AN)) |
| 992 | return 0; |
| 993 | |
| 994 | rc = sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf); |
| 995 | if (rc == 0) |
| 996 | sata_scr_write(&ap->link, SCR_NOTIFICATION, sntf); |
| 997 | |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 998 | if (!sata_pmp_attached(ap) || rc) { |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 999 | /* PMP is not attached or SNTF is not available */ |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 1000 | if (!sata_pmp_attached(ap)) { |
Tejun Heo | 7d77b24 | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 1001 | /* PMP is not attached. Check whether ATAPI |
| 1002 | * AN is configured. If so, notify media |
| 1003 | * change. |
| 1004 | */ |
| 1005 | struct ata_device *dev = ap->link.device; |
| 1006 | |
| 1007 | if ((dev->class == ATA_DEV_ATAPI) && |
| 1008 | (dev->flags & ATA_DFLAG_AN)) |
| 1009 | ata_scsi_media_change_notify(dev); |
| 1010 | return 0; |
| 1011 | } else { |
| 1012 | /* PMP is attached but SNTF is not available. |
| 1013 | * ATAPI async media change notification is |
| 1014 | * not used. The PMP must be reporting PHY |
| 1015 | * status change, schedule EH. |
| 1016 | */ |
| 1017 | ata_port_schedule_eh(ap); |
| 1018 | return 1; |
| 1019 | } |
| 1020 | } else { |
| 1021 | /* PMP is attached and SNTF is available */ |
| 1022 | struct ata_link *link; |
| 1023 | |
| 1024 | /* check and notify ATAPI AN */ |
| 1025 | ata_port_for_each_link(link, ap) { |
| 1026 | if (!(sntf & (1 << link->pmp))) |
| 1027 | continue; |
| 1028 | |
| 1029 | if ((link->device->class == ATA_DEV_ATAPI) && |
| 1030 | (link->device->flags & ATA_DFLAG_AN)) |
| 1031 | ata_scsi_media_change_notify(link->device); |
| 1032 | } |
| 1033 | |
| 1034 | /* If PMP is reporting that PHY status of some |
| 1035 | * downstream ports has changed, schedule EH. |
| 1036 | */ |
| 1037 | if (sntf & (1 << SATA_PMP_CTRL_PORT)) { |
| 1038 | ata_port_schedule_eh(ap); |
| 1039 | return 1; |
| 1040 | } |
| 1041 | |
| 1042 | return 0; |
| 1043 | } |
| 1044 | } |
| 1045 | |
| 1046 | /** |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1047 | * ata_eh_freeze_port - EH helper to freeze port |
| 1048 | * @ap: ATA port to freeze |
| 1049 | * |
| 1050 | * Freeze @ap. |
| 1051 | * |
| 1052 | * LOCKING: |
| 1053 | * None. |
| 1054 | */ |
| 1055 | void ata_eh_freeze_port(struct ata_port *ap) |
| 1056 | { |
| 1057 | unsigned long flags; |
| 1058 | |
| 1059 | if (!ap->ops->error_handler) |
| 1060 | return; |
| 1061 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1062 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1063 | __ata_port_freeze(ap); |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1064 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | /** |
| 1068 | * ata_port_thaw_port - EH helper to thaw port |
| 1069 | * @ap: ATA port to thaw |
| 1070 | * |
| 1071 | * Thaw frozen port @ap. |
| 1072 | * |
| 1073 | * LOCKING: |
| 1074 | * None. |
| 1075 | */ |
| 1076 | void ata_eh_thaw_port(struct ata_port *ap) |
| 1077 | { |
| 1078 | unsigned long flags; |
| 1079 | |
| 1080 | if (!ap->ops->error_handler) |
| 1081 | return; |
| 1082 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1083 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1084 | |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1085 | ap->pflags &= ~ATA_PFLAG_FROZEN; |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1086 | |
| 1087 | if (ap->ops->thaw) |
| 1088 | ap->ops->thaw(ap); |
| 1089 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1090 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1091 | |
Tejun Heo | 44877b4 | 2007-02-21 01:06:51 +0900 | [diff] [blame] | 1092 | DPRINTK("ata%u port thawed\n", ap->print_id); |
Tejun Heo | e318049 | 2006-05-15 20:58:09 +0900 | [diff] [blame] | 1093 | } |
| 1094 | |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1095 | static void ata_eh_scsidone(struct scsi_cmnd *scmd) |
| 1096 | { |
| 1097 | /* nada */ |
| 1098 | } |
| 1099 | |
| 1100 | static void __ata_eh_qc_complete(struct ata_queued_cmd *qc) |
| 1101 | { |
| 1102 | struct ata_port *ap = qc->ap; |
| 1103 | struct scsi_cmnd *scmd = qc->scsicmd; |
| 1104 | unsigned long flags; |
| 1105 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1106 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1107 | qc->scsidone = ata_eh_scsidone; |
| 1108 | __ata_qc_complete(qc); |
| 1109 | WARN_ON(ata_tag_valid(qc->tag)); |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1110 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | ece1d63 | 2006-04-02 18:51:53 +0900 | [diff] [blame] | 1111 | |
| 1112 | scsi_eh_finish_cmd(scmd, &ap->eh_done_q); |
| 1113 | } |
| 1114 | |
| 1115 | /** |
| 1116 | * ata_eh_qc_complete - Complete an active ATA command from EH |
| 1117 | * @qc: Command to complete |
| 1118 | * |
| 1119 | * Indicate to the mid and upper layers that an ATA command has |
| 1120 | * completed. To be used from EH. |
| 1121 | */ |
| 1122 | void ata_eh_qc_complete(struct ata_queued_cmd *qc) |
| 1123 | { |
| 1124 | struct scsi_cmnd *scmd = qc->scsicmd; |
| 1125 | scmd->retries = scmd->allowed; |
| 1126 | __ata_eh_qc_complete(qc); |
| 1127 | } |
| 1128 | |
| 1129 | /** |
| 1130 | * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH |
| 1131 | * @qc: Command to retry |
| 1132 | * |
| 1133 | * Indicate to the mid and upper layers that an ATA command |
| 1134 | * should be retried. To be used from EH. |
| 1135 | * |
| 1136 | * SCSI midlayer limits the number of retries to scmd->allowed. |
| 1137 | * scmd->retries is decremented for commands which get retried |
| 1138 | * due to unrelated failures (qc->err_mask is zero). |
| 1139 | */ |
| 1140 | void ata_eh_qc_retry(struct ata_queued_cmd *qc) |
| 1141 | { |
| 1142 | struct scsi_cmnd *scmd = qc->scsicmd; |
| 1143 | if (!qc->err_mask && scmd->retries) |
| 1144 | scmd->retries--; |
| 1145 | __ata_eh_qc_complete(qc); |
| 1146 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1147 | |
| 1148 | /** |
Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 1149 | * ata_eh_detach_dev - detach ATA device |
| 1150 | * @dev: ATA device to detach |
| 1151 | * |
| 1152 | * Detach @dev. |
| 1153 | * |
| 1154 | * LOCKING: |
| 1155 | * None. |
| 1156 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1157 | void ata_eh_detach_dev(struct ata_device *dev) |
Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 1158 | { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1159 | struct ata_link *link = dev->link; |
| 1160 | struct ata_port *ap = link->ap; |
Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 1161 | unsigned long flags; |
| 1162 | |
| 1163 | ata_dev_disable(dev); |
| 1164 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1165 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 1166 | |
| 1167 | dev->flags &= ~ATA_DFLAG_DETACH; |
| 1168 | |
| 1169 | if (ata_scsi_offline_dev(dev)) { |
| 1170 | dev->flags |= ATA_DFLAG_DETACHED; |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1171 | ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG; |
Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 1172 | } |
| 1173 | |
Tejun Heo | beb07c1 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1174 | /* clear per-dev EH actions */ |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1175 | ata_eh_clear_action(link, dev, &link->eh_info, ATA_EH_PERDEV_MASK); |
| 1176 | ata_eh_clear_action(link, dev, &link->eh_context.i, ATA_EH_PERDEV_MASK); |
Tejun Heo | beb07c1 | 2006-06-24 20:30:19 +0900 | [diff] [blame] | 1177 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1178 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 0ea035a | 2006-05-31 18:28:01 +0900 | [diff] [blame] | 1179 | } |
| 1180 | |
| 1181 | /** |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1182 | * ata_eh_about_to_do - about to perform eh_action |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1183 | * @link: target ATA link |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 1184 | * @dev: target ATA dev for per-dev action (can be NULL) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1185 | * @action: action about to be performed |
| 1186 | * |
| 1187 | * Called just before performing EH actions to clear related bits |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1188 | * in @link->eh_info such that eh actions are not unnecessarily |
| 1189 | * repeated. |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1190 | * |
| 1191 | * LOCKING: |
| 1192 | * None. |
| 1193 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1194 | void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev, |
| 1195 | unsigned int action) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1196 | { |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1197 | struct ata_port *ap = link->ap; |
| 1198 | struct ata_eh_info *ehi = &link->eh_info; |
| 1199 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1200 | unsigned long flags; |
| 1201 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1202 | spin_lock_irqsave(ap->lock, flags); |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 1203 | |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1204 | ata_eh_clear_action(link, dev, ehi, action); |
Tejun Heo | 13abf50 | 2006-07-10 23:18:46 +0900 | [diff] [blame] | 1205 | |
| 1206 | if (!(ehc->i.flags & ATA_EHI_QUIET)) |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 1207 | ap->pflags |= ATA_PFLAG_RECOVERED; |
| 1208 | |
Jeff Garzik | ba6a130 | 2006-06-22 23:46:10 -0400 | [diff] [blame] | 1209 | spin_unlock_irqrestore(ap->lock, flags); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1210 | } |
| 1211 | |
| 1212 | /** |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 1213 | * ata_eh_done - EH action complete |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1214 | * @ap: target ATA port |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 1215 | * @dev: target ATA dev for per-dev action (can be NULL) |
| 1216 | * @action: action just completed |
| 1217 | * |
| 1218 | * Called right after performing EH actions to clear related bits |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1219 | * in @link->eh_context. |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 1220 | * |
| 1221 | * LOCKING: |
| 1222 | * None. |
| 1223 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1224 | void ata_eh_done(struct ata_link *link, struct ata_device *dev, |
| 1225 | unsigned int action) |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 1226 | { |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1227 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1228 | |
Tejun Heo | 955e57d | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1229 | ata_eh_clear_action(link, dev, &ehc->i, action); |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 1230 | } |
| 1231 | |
| 1232 | /** |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1233 | * ata_err_string - convert err_mask to descriptive string |
| 1234 | * @err_mask: error mask to convert to string |
| 1235 | * |
| 1236 | * Convert @err_mask to descriptive string. Errors are |
| 1237 | * prioritized according to severity and only the most severe |
| 1238 | * error is reported. |
| 1239 | * |
| 1240 | * LOCKING: |
| 1241 | * None. |
| 1242 | * |
| 1243 | * RETURNS: |
| 1244 | * Descriptive string for @err_mask |
| 1245 | */ |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 1246 | static const char *ata_err_string(unsigned int err_mask) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1247 | { |
| 1248 | if (err_mask & AC_ERR_HOST_BUS) |
| 1249 | return "host bus error"; |
| 1250 | if (err_mask & AC_ERR_ATA_BUS) |
| 1251 | return "ATA bus error"; |
| 1252 | if (err_mask & AC_ERR_TIMEOUT) |
| 1253 | return "timeout"; |
| 1254 | if (err_mask & AC_ERR_HSM) |
| 1255 | return "HSM violation"; |
| 1256 | if (err_mask & AC_ERR_SYSTEM) |
| 1257 | return "internal error"; |
| 1258 | if (err_mask & AC_ERR_MEDIA) |
| 1259 | return "media error"; |
| 1260 | if (err_mask & AC_ERR_INVALID) |
| 1261 | return "invalid argument"; |
| 1262 | if (err_mask & AC_ERR_DEV) |
| 1263 | return "device error"; |
| 1264 | return "unknown error"; |
| 1265 | } |
| 1266 | |
| 1267 | /** |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1268 | * ata_read_log_page - read a specific log page |
| 1269 | * @dev: target device |
| 1270 | * @page: page to read |
| 1271 | * @buf: buffer to store read page |
| 1272 | * @sectors: number of sectors to read |
| 1273 | * |
| 1274 | * Read log page using READ_LOG_EXT command. |
| 1275 | * |
| 1276 | * LOCKING: |
| 1277 | * Kernel thread context (may sleep). |
| 1278 | * |
| 1279 | * RETURNS: |
| 1280 | * 0 on success, AC_ERR_* mask otherwise. |
| 1281 | */ |
| 1282 | static unsigned int ata_read_log_page(struct ata_device *dev, |
| 1283 | u8 page, void *buf, unsigned int sectors) |
| 1284 | { |
| 1285 | struct ata_taskfile tf; |
| 1286 | unsigned int err_mask; |
| 1287 | |
| 1288 | DPRINTK("read log page - page %d\n", page); |
| 1289 | |
| 1290 | ata_tf_init(dev, &tf); |
| 1291 | tf.command = ATA_CMD_READ_LOG_EXT; |
| 1292 | tf.lbal = page; |
| 1293 | tf.nsect = sectors; |
| 1294 | tf.hob_nsect = sectors >> 8; |
| 1295 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_LBA48 | ATA_TFLAG_DEVICE; |
| 1296 | tf.protocol = ATA_PROT_PIO; |
| 1297 | |
| 1298 | err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1299 | buf, sectors * ATA_SECT_SIZE, 0); |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1300 | |
| 1301 | DPRINTK("EXIT, err_mask=%x\n", err_mask); |
| 1302 | return err_mask; |
| 1303 | } |
| 1304 | |
| 1305 | /** |
| 1306 | * ata_eh_read_log_10h - Read log page 10h for NCQ error details |
| 1307 | * @dev: Device to read log page 10h from |
| 1308 | * @tag: Resulting tag of the failed command |
| 1309 | * @tf: Resulting taskfile registers of the failed command |
| 1310 | * |
| 1311 | * Read log page 10h to obtain NCQ error details and clear error |
| 1312 | * condition. |
| 1313 | * |
| 1314 | * LOCKING: |
| 1315 | * Kernel thread context (may sleep). |
| 1316 | * |
| 1317 | * RETURNS: |
| 1318 | * 0 on success, -errno otherwise. |
| 1319 | */ |
| 1320 | static int ata_eh_read_log_10h(struct ata_device *dev, |
| 1321 | int *tag, struct ata_taskfile *tf) |
| 1322 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1323 | u8 *buf = dev->link->ap->sector_buf; |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1324 | unsigned int err_mask; |
| 1325 | u8 csum; |
| 1326 | int i; |
| 1327 | |
| 1328 | err_mask = ata_read_log_page(dev, ATA_LOG_SATA_NCQ, buf, 1); |
| 1329 | if (err_mask) |
| 1330 | return -EIO; |
| 1331 | |
| 1332 | csum = 0; |
| 1333 | for (i = 0; i < ATA_SECT_SIZE; i++) |
| 1334 | csum += buf[i]; |
| 1335 | if (csum) |
| 1336 | ata_dev_printk(dev, KERN_WARNING, |
| 1337 | "invalid checksum 0x%x on log page 10h\n", csum); |
| 1338 | |
| 1339 | if (buf[0] & 0x80) |
| 1340 | return -ENOENT; |
| 1341 | |
| 1342 | *tag = buf[0] & 0x1f; |
| 1343 | |
| 1344 | tf->command = buf[2]; |
| 1345 | tf->feature = buf[3]; |
| 1346 | tf->lbal = buf[4]; |
| 1347 | tf->lbam = buf[5]; |
| 1348 | tf->lbah = buf[6]; |
| 1349 | tf->device = buf[7]; |
| 1350 | tf->hob_lbal = buf[8]; |
| 1351 | tf->hob_lbam = buf[9]; |
| 1352 | tf->hob_lbah = buf[10]; |
| 1353 | tf->nsect = buf[12]; |
| 1354 | tf->hob_nsect = buf[13]; |
| 1355 | |
| 1356 | return 0; |
| 1357 | } |
| 1358 | |
| 1359 | /** |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1360 | * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE |
| 1361 | * @dev: device to perform REQUEST_SENSE to |
| 1362 | * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long) |
Tejun Heo | 3eabddb | 2008-06-10 18:28:05 +0900 | [diff] [blame] | 1363 | * @dfl_sense_key: default sense key to use |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1364 | * |
| 1365 | * Perform ATAPI REQUEST_SENSE after the device reported CHECK |
| 1366 | * SENSE. This function is EH helper. |
| 1367 | * |
| 1368 | * LOCKING: |
| 1369 | * Kernel thread context (may sleep). |
| 1370 | * |
| 1371 | * RETURNS: |
| 1372 | * 0 on success, AC_ERR_* mask on failure |
| 1373 | */ |
Tejun Heo | 3eabddb | 2008-06-10 18:28:05 +0900 | [diff] [blame] | 1374 | static unsigned int atapi_eh_request_sense(struct ata_device *dev, |
| 1375 | u8 *sense_buf, u8 dfl_sense_key) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1376 | { |
Tejun Heo | 3eabddb | 2008-06-10 18:28:05 +0900 | [diff] [blame] | 1377 | u8 cdb[ATAPI_CDB_LEN] = |
| 1378 | { REQUEST_SENSE, 0, 0, 0, SCSI_SENSE_BUFFERSIZE, 0 }; |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 1379 | struct ata_port *ap = dev->link->ap; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1380 | struct ata_taskfile tf; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1381 | |
| 1382 | DPRINTK("ATAPI request sense\n"); |
| 1383 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1384 | /* FIXME: is this needed? */ |
| 1385 | memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE); |
| 1386 | |
Albert Lee | 5628776 | 2007-04-02 11:30:46 +0800 | [diff] [blame] | 1387 | /* initialize sense_buf with the error register, |
| 1388 | * for the case where they are -not- overwritten |
| 1389 | */ |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1390 | sense_buf[0] = 0x70; |
Tejun Heo | 3eabddb | 2008-06-10 18:28:05 +0900 | [diff] [blame] | 1391 | sense_buf[2] = dfl_sense_key; |
Albert Lee | 5628776 | 2007-04-02 11:30:46 +0800 | [diff] [blame] | 1392 | |
Jeff Garzik | a617c09 | 2007-05-21 20:14:23 -0400 | [diff] [blame] | 1393 | /* some devices time out if garbage left in tf */ |
Albert Lee | 5628776 | 2007-04-02 11:30:46 +0800 | [diff] [blame] | 1394 | ata_tf_init(dev, &tf); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1395 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1396 | tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; |
| 1397 | tf.command = ATA_CMD_PACKET; |
| 1398 | |
| 1399 | /* is it pointless to prefer PIO for "safety reasons"? */ |
| 1400 | if (ap->flags & ATA_FLAG_PIO_DMA) { |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 1401 | tf.protocol = ATAPI_PROT_DMA; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1402 | tf.feature |= ATAPI_PKT_DMA; |
| 1403 | } else { |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 1404 | tf.protocol = ATAPI_PROT_PIO; |
Tejun Heo | f2dfc1a | 2007-12-12 12:12:46 +0900 | [diff] [blame] | 1405 | tf.lbam = SCSI_SENSE_BUFFERSIZE; |
| 1406 | tf.lbah = 0; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | return ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE, |
Tejun Heo | 2b78910 | 2007-10-09 15:05:44 +0900 | [diff] [blame] | 1410 | sense_buf, SCSI_SENSE_BUFFERSIZE, 0); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1411 | } |
| 1412 | |
| 1413 | /** |
| 1414 | * ata_eh_analyze_serror - analyze SError for a failed port |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1415 | * @link: ATA link to analyze SError for |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1416 | * |
| 1417 | * Analyze SError if available and further determine cause of |
| 1418 | * failure. |
| 1419 | * |
| 1420 | * LOCKING: |
| 1421 | * None. |
| 1422 | */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1423 | static void ata_eh_analyze_serror(struct ata_link *link) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1424 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1425 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1426 | u32 serror = ehc->i.serror; |
| 1427 | unsigned int err_mask = 0, action = 0; |
Tejun Heo | f9df58c | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 1428 | u32 hotplug_mask; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1429 | |
Tejun Heo | e0614db | 2008-05-19 01:15:09 +0900 | [diff] [blame] | 1430 | if (serror & (SERR_PERSISTENT | SERR_DATA)) { |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1431 | err_mask |= AC_ERR_ATA_BUS; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1432 | action |= ATA_EH_RESET; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1433 | } |
| 1434 | if (serror & SERR_PROTOCOL) { |
| 1435 | err_mask |= AC_ERR_HSM; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1436 | action |= ATA_EH_RESET; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1437 | } |
| 1438 | if (serror & SERR_INTERNAL) { |
| 1439 | err_mask |= AC_ERR_SYSTEM; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1440 | action |= ATA_EH_RESET; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1441 | } |
Tejun Heo | f9df58c | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 1442 | |
| 1443 | /* Determine whether a hotplug event has occurred. Both |
| 1444 | * SError.N/X are considered hotplug events for enabled or |
| 1445 | * host links. For disabled PMP links, only N bit is |
| 1446 | * considered as X bit is left at 1 for link plugging. |
| 1447 | */ |
| 1448 | hotplug_mask = 0; |
| 1449 | |
| 1450 | if (!(link->flags & ATA_LFLAG_DISABLED) || ata_is_host_link(link)) |
| 1451 | hotplug_mask = SERR_PHYRDY_CHG | SERR_DEV_XCHG; |
| 1452 | else |
| 1453 | hotplug_mask = SERR_PHYRDY_CHG; |
| 1454 | |
| 1455 | if (serror & hotplug_mask) |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 1456 | ata_ehi_hotplugged(&ehc->i); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1457 | |
| 1458 | ehc->i.err_mask |= err_mask; |
| 1459 | ehc->i.action |= action; |
| 1460 | } |
| 1461 | |
| 1462 | /** |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1463 | * ata_eh_analyze_ncq_error - analyze NCQ error |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1464 | * @link: ATA link to analyze NCQ error for |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1465 | * |
| 1466 | * Read log page 10h, determine the offending qc and acquire |
| 1467 | * error status TF. For NCQ device errors, all LLDDs have to do |
| 1468 | * is setting AC_ERR_DEV in ehi->err_mask. This function takes |
| 1469 | * care of the rest. |
| 1470 | * |
| 1471 | * LOCKING: |
| 1472 | * Kernel thread context (may sleep). |
| 1473 | */ |
Mark Lord | 10acf3b | 2008-05-02 02:14:53 -0400 | [diff] [blame] | 1474 | void ata_eh_analyze_ncq_error(struct ata_link *link) |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1475 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1476 | struct ata_port *ap = link->ap; |
| 1477 | struct ata_eh_context *ehc = &link->eh_context; |
| 1478 | struct ata_device *dev = link->device; |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1479 | struct ata_queued_cmd *qc; |
| 1480 | struct ata_taskfile tf; |
| 1481 | int tag, rc; |
| 1482 | |
| 1483 | /* if frozen, we can't do much */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1484 | if (ap->pflags & ATA_PFLAG_FROZEN) |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1485 | return; |
| 1486 | |
| 1487 | /* is it NCQ device error? */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1488 | if (!link->sactive || !(ehc->i.err_mask & AC_ERR_DEV)) |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1489 | return; |
| 1490 | |
| 1491 | /* has LLDD analyzed already? */ |
| 1492 | for (tag = 0; tag < ATA_MAX_QUEUE; tag++) { |
| 1493 | qc = __ata_qc_from_tag(ap, tag); |
| 1494 | |
| 1495 | if (!(qc->flags & ATA_QCFLAG_FAILED)) |
| 1496 | continue; |
| 1497 | |
| 1498 | if (qc->err_mask) |
| 1499 | return; |
| 1500 | } |
| 1501 | |
| 1502 | /* okay, this error is ours */ |
| 1503 | rc = ata_eh_read_log_10h(dev, &tag, &tf); |
| 1504 | if (rc) { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1505 | ata_link_printk(link, KERN_ERR, "failed to read log page 10h " |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1506 | "(errno=%d)\n", rc); |
| 1507 | return; |
| 1508 | } |
| 1509 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1510 | if (!(link->sactive & (1 << tag))) { |
| 1511 | ata_link_printk(link, KERN_ERR, "log page 10h reported " |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1512 | "inactive tag %d\n", tag); |
| 1513 | return; |
| 1514 | } |
| 1515 | |
| 1516 | /* we've got the perpetrator, condemn it */ |
| 1517 | qc = __ata_qc_from_tag(ap, tag); |
| 1518 | memcpy(&qc->result_tf, &tf, sizeof(tf)); |
Mark Lord | a6116c9 | 2008-04-23 22:36:25 -0400 | [diff] [blame] | 1519 | qc->result_tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_LBA | ATA_TFLAG_LBA48; |
Tejun Heo | 5335b72 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 1520 | qc->err_mask |= AC_ERR_DEV | AC_ERR_NCQ; |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1521 | ehc->i.err_mask &= ~AC_ERR_DEV; |
| 1522 | } |
| 1523 | |
| 1524 | /** |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1525 | * ata_eh_analyze_tf - analyze taskfile of a failed qc |
| 1526 | * @qc: qc to analyze |
| 1527 | * @tf: Taskfile registers to analyze |
| 1528 | * |
| 1529 | * Analyze taskfile of @qc and further determine cause of |
| 1530 | * failure. This function also requests ATAPI sense data if |
| 1531 | * avaliable. |
| 1532 | * |
| 1533 | * LOCKING: |
| 1534 | * Kernel thread context (may sleep). |
| 1535 | * |
| 1536 | * RETURNS: |
| 1537 | * Determined recovery action |
| 1538 | */ |
| 1539 | static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc, |
| 1540 | const struct ata_taskfile *tf) |
| 1541 | { |
| 1542 | unsigned int tmp, action = 0; |
| 1543 | u8 stat = tf->command, err = tf->feature; |
| 1544 | |
| 1545 | if ((stat & (ATA_BUSY | ATA_DRQ | ATA_DRDY)) != ATA_DRDY) { |
| 1546 | qc->err_mask |= AC_ERR_HSM; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1547 | return ATA_EH_RESET; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1548 | } |
| 1549 | |
Tejun Heo | a51d644 | 2007-03-20 15:24:11 +0900 | [diff] [blame] | 1550 | if (stat & (ATA_ERR | ATA_DF)) |
| 1551 | qc->err_mask |= AC_ERR_DEV; |
| 1552 | else |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1553 | return 0; |
| 1554 | |
| 1555 | switch (qc->dev->class) { |
| 1556 | case ATA_DEV_ATA: |
| 1557 | if (err & ATA_ICRC) |
| 1558 | qc->err_mask |= AC_ERR_ATA_BUS; |
| 1559 | if (err & ATA_UNC) |
| 1560 | qc->err_mask |= AC_ERR_MEDIA; |
| 1561 | if (err & ATA_IDNF) |
| 1562 | qc->err_mask |= AC_ERR_INVALID; |
| 1563 | break; |
| 1564 | |
| 1565 | case ATA_DEV_ATAPI: |
Tejun Heo | a569a30 | 2006-11-21 10:40:51 +0900 | [diff] [blame] | 1566 | if (!(qc->ap->pflags & ATA_PFLAG_FROZEN)) { |
Tejun Heo | 3eabddb | 2008-06-10 18:28:05 +0900 | [diff] [blame] | 1567 | tmp = atapi_eh_request_sense(qc->dev, |
| 1568 | qc->scsicmd->sense_buffer, |
| 1569 | qc->result_tf.feature >> 4); |
Tejun Heo | a569a30 | 2006-11-21 10:40:51 +0900 | [diff] [blame] | 1570 | if (!tmp) { |
| 1571 | /* ATA_QCFLAG_SENSE_VALID is used to |
| 1572 | * tell atapi_qc_complete() that sense |
| 1573 | * data is already valid. |
| 1574 | * |
| 1575 | * TODO: interpret sense data and set |
| 1576 | * appropriate err_mask. |
| 1577 | */ |
| 1578 | qc->flags |= ATA_QCFLAG_SENSE_VALID; |
| 1579 | } else |
| 1580 | qc->err_mask |= tmp; |
| 1581 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1582 | } |
| 1583 | |
| 1584 | if (qc->err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT | AC_ERR_ATA_BUS)) |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1585 | action |= ATA_EH_RESET; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1586 | |
| 1587 | return action; |
| 1588 | } |
| 1589 | |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1590 | static int ata_eh_categorize_error(unsigned int eflags, unsigned int err_mask, |
| 1591 | int *xfer_ok) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1592 | { |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1593 | int base = 0; |
| 1594 | |
| 1595 | if (!(eflags & ATA_EFLAG_DUBIOUS_XFER)) |
| 1596 | *xfer_ok = 1; |
| 1597 | |
| 1598 | if (!*xfer_ok) |
Tejun Heo | 75f9caf | 2008-01-03 01:21:14 +0900 | [diff] [blame] | 1599 | base = ATA_ECAT_DUBIOUS_NONE; |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1600 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1601 | if (err_mask & AC_ERR_ATA_BUS) |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1602 | return base + ATA_ECAT_ATA_BUS; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1603 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1604 | if (err_mask & AC_ERR_TIMEOUT) |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1605 | return base + ATA_ECAT_TOUT_HSM; |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1606 | |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1607 | if (eflags & ATA_EFLAG_IS_IO) { |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1608 | if (err_mask & AC_ERR_HSM) |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1609 | return base + ATA_ECAT_TOUT_HSM; |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1610 | if ((err_mask & |
| 1611 | (AC_ERR_DEV|AC_ERR_MEDIA|AC_ERR_INVALID)) == AC_ERR_DEV) |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1612 | return base + ATA_ECAT_UNK_DEV; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1613 | } |
| 1614 | |
| 1615 | return 0; |
| 1616 | } |
| 1617 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1618 | struct speed_down_verdict_arg { |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1619 | u64 since; |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1620 | int xfer_ok; |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1621 | int nr_errors[ATA_ECAT_NR]; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1622 | }; |
| 1623 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1624 | static int speed_down_verdict_cb(struct ata_ering_entry *ent, void *void_arg) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1625 | { |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1626 | struct speed_down_verdict_arg *arg = void_arg; |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1627 | int cat; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1628 | |
| 1629 | if (ent->timestamp < arg->since) |
| 1630 | return -1; |
| 1631 | |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1632 | cat = ata_eh_categorize_error(ent->eflags, ent->err_mask, |
| 1633 | &arg->xfer_ok); |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1634 | arg->nr_errors[cat]++; |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1635 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1636 | return 0; |
| 1637 | } |
| 1638 | |
| 1639 | /** |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1640 | * ata_eh_speed_down_verdict - Determine speed down verdict |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1641 | * @dev: Device of interest |
| 1642 | * |
| 1643 | * This function examines error ring of @dev and determines |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1644 | * whether NCQ needs to be turned off, transfer speed should be |
| 1645 | * stepped down, or falling back to PIO is necessary. |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1646 | * |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1647 | * ECAT_ATA_BUS : ATA_BUS error for any command |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1648 | * |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1649 | * ECAT_TOUT_HSM : TIMEOUT for any command or HSM violation for |
| 1650 | * IO commands |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1651 | * |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1652 | * ECAT_UNK_DEV : Unknown DEV error for IO commands |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1653 | * |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1654 | * ECAT_DUBIOUS_* : Identical to above three but occurred while |
| 1655 | * data transfer hasn't been verified. |
| 1656 | * |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1657 | * Verdicts are |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1658 | * |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1659 | * NCQ_OFF : Turn off NCQ. |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1660 | * |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1661 | * SPEED_DOWN : Speed down transfer speed but don't fall back |
| 1662 | * to PIO. |
| 1663 | * |
| 1664 | * FALLBACK_TO_PIO : Fall back to PIO. |
| 1665 | * |
| 1666 | * Even if multiple verdicts are returned, only one action is |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1667 | * taken per error. An action triggered by non-DUBIOUS errors |
| 1668 | * clears ering, while one triggered by DUBIOUS_* errors doesn't. |
| 1669 | * This is to expedite speed down decisions right after device is |
| 1670 | * initially configured. |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1671 | * |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1672 | * The followings are speed down rules. #1 and #2 deal with |
| 1673 | * DUBIOUS errors. |
| 1674 | * |
| 1675 | * 1. If more than one DUBIOUS_ATA_BUS or DUBIOUS_TOUT_HSM errors |
| 1676 | * occurred during last 5 mins, SPEED_DOWN and FALLBACK_TO_PIO. |
| 1677 | * |
| 1678 | * 2. If more than one DUBIOUS_TOUT_HSM or DUBIOUS_UNK_DEV errors |
| 1679 | * occurred during last 5 mins, NCQ_OFF. |
| 1680 | * |
| 1681 | * 3. If more than 8 ATA_BUS, TOUT_HSM or UNK_DEV errors |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1682 | * ocurred during last 5 mins, FALLBACK_TO_PIO |
| 1683 | * |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1684 | * 4. If more than 3 TOUT_HSM or UNK_DEV errors occurred |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1685 | * during last 10 mins, NCQ_OFF. |
| 1686 | * |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1687 | * 5. If more than 3 ATA_BUS or TOUT_HSM errors, or more than 6 |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1688 | * UNK_DEV errors occurred during last 10 mins, SPEED_DOWN. |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1689 | * |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1690 | * LOCKING: |
| 1691 | * Inherited from caller. |
| 1692 | * |
| 1693 | * RETURNS: |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1694 | * OR of ATA_EH_SPDN_* flags. |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1695 | */ |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1696 | static unsigned int ata_eh_speed_down_verdict(struct ata_device *dev) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1697 | { |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1698 | const u64 j5mins = 5LLU * 60 * HZ, j10mins = 10LLU * 60 * HZ; |
| 1699 | u64 j64 = get_jiffies_64(); |
| 1700 | struct speed_down_verdict_arg arg; |
| 1701 | unsigned int verdict = 0; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1702 | |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1703 | /* scan past 5 mins of error history */ |
| 1704 | memset(&arg, 0, sizeof(arg)); |
| 1705 | arg.since = j64 - min(j64, j5mins); |
| 1706 | ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg); |
| 1707 | |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1708 | if (arg.nr_errors[ATA_ECAT_DUBIOUS_ATA_BUS] + |
| 1709 | arg.nr_errors[ATA_ECAT_DUBIOUS_TOUT_HSM] > 1) |
| 1710 | verdict |= ATA_EH_SPDN_SPEED_DOWN | |
| 1711 | ATA_EH_SPDN_FALLBACK_TO_PIO | ATA_EH_SPDN_KEEP_ERRORS; |
| 1712 | |
| 1713 | if (arg.nr_errors[ATA_ECAT_DUBIOUS_TOUT_HSM] + |
| 1714 | arg.nr_errors[ATA_ECAT_DUBIOUS_UNK_DEV] > 1) |
| 1715 | verdict |= ATA_EH_SPDN_NCQ_OFF | ATA_EH_SPDN_KEEP_ERRORS; |
| 1716 | |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1717 | if (arg.nr_errors[ATA_ECAT_ATA_BUS] + |
| 1718 | arg.nr_errors[ATA_ECAT_TOUT_HSM] + |
Tejun Heo | 663f99b | 2007-11-27 19:28:57 +0900 | [diff] [blame] | 1719 | arg.nr_errors[ATA_ECAT_UNK_DEV] > 6) |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1720 | verdict |= ATA_EH_SPDN_FALLBACK_TO_PIO; |
| 1721 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1722 | /* scan past 10 mins of error history */ |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1723 | memset(&arg, 0, sizeof(arg)); |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1724 | arg.since = j64 - min(j64, j10mins); |
| 1725 | ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1726 | |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1727 | if (arg.nr_errors[ATA_ECAT_TOUT_HSM] + |
| 1728 | arg.nr_errors[ATA_ECAT_UNK_DEV] > 3) |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1729 | verdict |= ATA_EH_SPDN_NCQ_OFF; |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1730 | |
| 1731 | if (arg.nr_errors[ATA_ECAT_ATA_BUS] + |
| 1732 | arg.nr_errors[ATA_ECAT_TOUT_HSM] > 3 || |
Tejun Heo | 663f99b | 2007-11-27 19:28:57 +0900 | [diff] [blame] | 1733 | arg.nr_errors[ATA_ECAT_UNK_DEV] > 6) |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1734 | verdict |= ATA_EH_SPDN_SPEED_DOWN; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1735 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1736 | return verdict; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1737 | } |
| 1738 | |
| 1739 | /** |
| 1740 | * ata_eh_speed_down - record error and speed down if necessary |
| 1741 | * @dev: Failed device |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1742 | * @eflags: mask of ATA_EFLAG_* flags |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1743 | * @err_mask: err_mask of the error |
| 1744 | * |
| 1745 | * Record error and examine error history to determine whether |
| 1746 | * adjusting transmission speed is necessary. It also sets |
| 1747 | * transmission limits appropriately if such adjustment is |
| 1748 | * necessary. |
| 1749 | * |
| 1750 | * LOCKING: |
| 1751 | * Kernel thread context (may sleep). |
| 1752 | * |
| 1753 | * RETURNS: |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1754 | * Determined recovery action. |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1755 | */ |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1756 | static unsigned int ata_eh_speed_down(struct ata_device *dev, |
| 1757 | unsigned int eflags, unsigned int err_mask) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1758 | { |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1759 | struct ata_link *link = dev->link; |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1760 | int xfer_ok = 0; |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1761 | unsigned int verdict; |
| 1762 | unsigned int action = 0; |
| 1763 | |
| 1764 | /* don't bother if Cat-0 error */ |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1765 | if (ata_eh_categorize_error(eflags, err_mask, &xfer_ok) == 0) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1766 | return 0; |
| 1767 | |
| 1768 | /* record error and determine whether speed down is necessary */ |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1769 | ata_ering_record(&dev->ering, eflags, err_mask); |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1770 | verdict = ata_eh_speed_down_verdict(dev); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1771 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1772 | /* turn off NCQ? */ |
| 1773 | if ((verdict & ATA_EH_SPDN_NCQ_OFF) && |
| 1774 | (dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ | |
| 1775 | ATA_DFLAG_NCQ_OFF)) == ATA_DFLAG_NCQ) { |
| 1776 | dev->flags |= ATA_DFLAG_NCQ_OFF; |
| 1777 | ata_dev_printk(dev, KERN_WARNING, |
| 1778 | "NCQ disabled due to excessive errors\n"); |
| 1779 | goto done; |
| 1780 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1781 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1782 | /* speed down? */ |
| 1783 | if (verdict & ATA_EH_SPDN_SPEED_DOWN) { |
| 1784 | /* speed down SATA link speed if possible */ |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1785 | if (sata_down_spd_limit(link) == 0) { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1786 | action |= ATA_EH_RESET; |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1787 | goto done; |
| 1788 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1789 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1790 | /* lower transfer mode */ |
| 1791 | if (dev->spdn_cnt < 2) { |
| 1792 | static const int dma_dnxfer_sel[] = |
| 1793 | { ATA_DNXFER_DMA, ATA_DNXFER_40C }; |
| 1794 | static const int pio_dnxfer_sel[] = |
| 1795 | { ATA_DNXFER_PIO, ATA_DNXFER_FORCE_PIO0 }; |
| 1796 | int sel; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1797 | |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1798 | if (dev->xfer_shift != ATA_SHIFT_PIO) |
| 1799 | sel = dma_dnxfer_sel[dev->spdn_cnt]; |
| 1800 | else |
| 1801 | sel = pio_dnxfer_sel[dev->spdn_cnt]; |
| 1802 | |
| 1803 | dev->spdn_cnt++; |
| 1804 | |
| 1805 | if (ata_down_xfermask_limit(dev, sel) == 0) { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1806 | action |= ATA_EH_RESET; |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1807 | goto done; |
| 1808 | } |
| 1809 | } |
| 1810 | } |
| 1811 | |
| 1812 | /* Fall back to PIO? Slowing down to PIO is meaningless for |
Tejun Heo | 663f99b | 2007-11-27 19:28:57 +0900 | [diff] [blame] | 1813 | * SATA ATA devices. Consider it only for PATA and SATAPI. |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1814 | */ |
| 1815 | if ((verdict & ATA_EH_SPDN_FALLBACK_TO_PIO) && (dev->spdn_cnt >= 2) && |
Tejun Heo | 663f99b | 2007-11-27 19:28:57 +0900 | [diff] [blame] | 1816 | (link->ap->cbl != ATA_CBL_SATA || dev->class == ATA_DEV_ATAPI) && |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1817 | (dev->xfer_shift != ATA_SHIFT_PIO)) { |
| 1818 | if (ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO) == 0) { |
| 1819 | dev->spdn_cnt = 0; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1820 | action |= ATA_EH_RESET; |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1821 | goto done; |
| 1822 | } |
| 1823 | } |
| 1824 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1825 | return 0; |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1826 | done: |
| 1827 | /* device has been slowed down, blow error history */ |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1828 | if (!(verdict & ATA_EH_SPDN_KEEP_ERRORS)) |
| 1829 | ata_ering_clear(&dev->ering); |
Tejun Heo | 7d47e8d | 2007-02-02 16:22:31 +0900 | [diff] [blame] | 1830 | return action; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1831 | } |
| 1832 | |
| 1833 | /** |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 1834 | * ata_eh_link_autopsy - analyze error and determine recovery action |
| 1835 | * @link: host link to perform autopsy on |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1836 | * |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1837 | * Analyze why @link failed and determine which recovery actions |
| 1838 | * are needed. This function also sets more detailed AC_ERR_* |
| 1839 | * values and fills sense data for ATAPI CHECK SENSE. |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1840 | * |
| 1841 | * LOCKING: |
| 1842 | * Kernel thread context (may sleep). |
| 1843 | */ |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 1844 | static void ata_eh_link_autopsy(struct ata_link *link) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1845 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1846 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1847 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | dfcc173 | 2007-10-31 10:17:05 +0900 | [diff] [blame] | 1848 | struct ata_device *dev; |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1849 | unsigned int all_err_mask = 0, eflags = 0; |
| 1850 | int tag; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1851 | u32 serror; |
| 1852 | int rc; |
| 1853 | |
| 1854 | DPRINTK("ENTER\n"); |
| 1855 | |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 1856 | if (ehc->i.flags & ATA_EHI_NO_AUTOPSY) |
| 1857 | return; |
| 1858 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1859 | /* obtain and analyze SError */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1860 | rc = sata_scr_read(link, SCR_ERROR, &serror); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1861 | if (rc == 0) { |
| 1862 | ehc->i.serror |= serror; |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1863 | ata_eh_analyze_serror(link); |
Tejun Heo | 4e57c51 | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 1864 | } else if (rc != -EOPNOTSUPP) { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1865 | /* SError read failed, force reset and probing */ |
Tejun Heo | b558edd | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1866 | ehc->i.probe_mask |= ATA_ALL_DEVICES; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1867 | ehc->i.action |= ATA_EH_RESET; |
Tejun Heo | 4e57c51 | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 1868 | ehc->i.err_mask |= AC_ERR_OTHER; |
| 1869 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1870 | |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1871 | /* analyze NCQ failure */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1872 | ata_eh_analyze_ncq_error(link); |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 1873 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1874 | /* any real error trumps AC_ERR_OTHER */ |
| 1875 | if (ehc->i.err_mask & ~AC_ERR_OTHER) |
| 1876 | ehc->i.err_mask &= ~AC_ERR_OTHER; |
| 1877 | |
| 1878 | all_err_mask |= ehc->i.err_mask; |
| 1879 | |
| 1880 | for (tag = 0; tag < ATA_MAX_QUEUE; tag++) { |
| 1881 | struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag); |
| 1882 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1883 | if (!(qc->flags & ATA_QCFLAG_FAILED) || qc->dev->link != link) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1884 | continue; |
| 1885 | |
| 1886 | /* inherit upper level err_mask */ |
| 1887 | qc->err_mask |= ehc->i.err_mask; |
| 1888 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1889 | /* analyze TF */ |
Tejun Heo | 4528e4d | 2006-07-08 20:17:26 +0900 | [diff] [blame] | 1890 | ehc->i.action |= ata_eh_analyze_tf(qc, &qc->result_tf); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1891 | |
| 1892 | /* DEV errors are probably spurious in case of ATA_BUS error */ |
| 1893 | if (qc->err_mask & AC_ERR_ATA_BUS) |
| 1894 | qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_MEDIA | |
| 1895 | AC_ERR_INVALID); |
| 1896 | |
| 1897 | /* any real error trumps unknown error */ |
| 1898 | if (qc->err_mask & ~AC_ERR_OTHER) |
| 1899 | qc->err_mask &= ~AC_ERR_OTHER; |
| 1900 | |
| 1901 | /* SENSE_VALID trumps dev/unknown error and revalidation */ |
Tejun Heo | f90f082 | 2007-10-26 16:12:41 +0900 | [diff] [blame] | 1902 | if (qc->flags & ATA_QCFLAG_SENSE_VALID) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1903 | qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1904 | |
Tejun Heo | 03faab7 | 2008-03-27 19:14:24 +0900 | [diff] [blame] | 1905 | /* determine whether the command is worth retrying */ |
| 1906 | if (!(qc->err_mask & AC_ERR_INVALID) && |
| 1907 | ((qc->flags & ATA_QCFLAG_IO) || qc->err_mask != AC_ERR_DEV)) |
| 1908 | qc->flags |= ATA_QCFLAG_RETRY; |
| 1909 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1910 | /* accumulate error info */ |
Tejun Heo | 4528e4d | 2006-07-08 20:17:26 +0900 | [diff] [blame] | 1911 | ehc->i.dev = qc->dev; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1912 | all_err_mask |= qc->err_mask; |
| 1913 | if (qc->flags & ATA_QCFLAG_IO) |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1914 | eflags |= ATA_EFLAG_IS_IO; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1915 | } |
| 1916 | |
Tejun Heo | a20f33f | 2006-05-16 12:58:24 +0900 | [diff] [blame] | 1917 | /* enforce default EH actions */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 1918 | if (ap->pflags & ATA_PFLAG_FROZEN || |
Tejun Heo | a20f33f | 2006-05-16 12:58:24 +0900 | [diff] [blame] | 1919 | all_err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT)) |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 1920 | ehc->i.action |= ATA_EH_RESET; |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1921 | else if (((eflags & ATA_EFLAG_IS_IO) && all_err_mask) || |
| 1922 | (!(eflags & ATA_EFLAG_IS_IO) && (all_err_mask & ~AC_ERR_DEV))) |
Tejun Heo | 4528e4d | 2006-07-08 20:17:26 +0900 | [diff] [blame] | 1923 | ehc->i.action |= ATA_EH_REVALIDATE; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1924 | |
Tejun Heo | dfcc173 | 2007-10-31 10:17:05 +0900 | [diff] [blame] | 1925 | /* If we have offending qcs and the associated failed device, |
| 1926 | * perform per-dev EH action only on the offending device. |
| 1927 | */ |
Tejun Heo | 4528e4d | 2006-07-08 20:17:26 +0900 | [diff] [blame] | 1928 | if (ehc->i.dev) { |
Tejun Heo | 4528e4d | 2006-07-08 20:17:26 +0900 | [diff] [blame] | 1929 | ehc->i.dev_action[ehc->i.dev->devno] |= |
| 1930 | ehc->i.action & ATA_EH_PERDEV_MASK; |
| 1931 | ehc->i.action &= ~ATA_EH_PERDEV_MASK; |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 1932 | } |
| 1933 | |
Tejun Heo | 2695e36 | 2008-01-10 13:41:23 +0900 | [diff] [blame] | 1934 | /* propagate timeout to host link */ |
| 1935 | if ((all_err_mask & AC_ERR_TIMEOUT) && !ata_is_host_link(link)) |
| 1936 | ap->link.eh_context.i.err_mask |= AC_ERR_TIMEOUT; |
| 1937 | |
| 1938 | /* record error and consider speeding down */ |
Tejun Heo | dfcc173 | 2007-10-31 10:17:05 +0900 | [diff] [blame] | 1939 | dev = ehc->i.dev; |
Tejun Heo | 2695e36 | 2008-01-10 13:41:23 +0900 | [diff] [blame] | 1940 | if (!dev && ((ata_link_max_devices(link) == 1 && |
| 1941 | ata_dev_enabled(link->device)))) |
| 1942 | dev = link->device; |
Tejun Heo | dfcc173 | 2007-10-31 10:17:05 +0900 | [diff] [blame] | 1943 | |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1944 | if (dev) { |
| 1945 | if (dev->flags & ATA_DFLAG_DUBIOUS_XFER) |
| 1946 | eflags |= ATA_EFLAG_DUBIOUS_XFER; |
Tejun Heo | 3884f7b | 2007-11-27 19:28:56 +0900 | [diff] [blame] | 1947 | ehc->i.action |= ata_eh_speed_down(dev, eflags, all_err_mask); |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 1948 | } |
Tejun Heo | dfcc173 | 2007-10-31 10:17:05 +0900 | [diff] [blame] | 1949 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1950 | DPRINTK("EXIT\n"); |
| 1951 | } |
| 1952 | |
| 1953 | /** |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 1954 | * ata_eh_autopsy - analyze error and determine recovery action |
| 1955 | * @ap: host port to perform autopsy on |
| 1956 | * |
| 1957 | * Analyze all links of @ap and determine why they failed and |
| 1958 | * which recovery actions are needed. |
| 1959 | * |
| 1960 | * LOCKING: |
| 1961 | * Kernel thread context (may sleep). |
| 1962 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 1963 | void ata_eh_autopsy(struct ata_port *ap) |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 1964 | { |
| 1965 | struct ata_link *link; |
| 1966 | |
Tejun Heo | 2695e36 | 2008-01-10 13:41:23 +0900 | [diff] [blame] | 1967 | ata_port_for_each_link(link, ap) |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 1968 | ata_eh_link_autopsy(link); |
Tejun Heo | 2695e36 | 2008-01-10 13:41:23 +0900 | [diff] [blame] | 1969 | |
| 1970 | /* Autopsy of fanout ports can affect host link autopsy. |
| 1971 | * Perform host link autopsy last. |
| 1972 | */ |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 1973 | if (sata_pmp_attached(ap)) |
Tejun Heo | 2695e36 | 2008-01-10 13:41:23 +0900 | [diff] [blame] | 1974 | ata_eh_link_autopsy(&ap->link); |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 1975 | } |
| 1976 | |
| 1977 | /** |
| 1978 | * ata_eh_link_report - report error handling to user |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1979 | * @link: ATA link EH is going on |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1980 | * |
| 1981 | * Report EH to user. |
| 1982 | * |
| 1983 | * LOCKING: |
| 1984 | * None. |
| 1985 | */ |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 1986 | static void ata_eh_link_report(struct ata_link *link) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1987 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 1988 | struct ata_port *ap = link->ap; |
| 1989 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1990 | const char *frozen, *desc; |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 1991 | char tries_buf[6]; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1992 | int tag, nr_failed = 0; |
| 1993 | |
Tejun Heo | 94ff3d5 | 2007-10-09 14:57:56 +0900 | [diff] [blame] | 1994 | if (ehc->i.flags & ATA_EHI_QUIET) |
| 1995 | return; |
| 1996 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 1997 | desc = NULL; |
| 1998 | if (ehc->i.desc[0] != '\0') |
| 1999 | desc = ehc->i.desc; |
| 2000 | |
| 2001 | for (tag = 0; tag < ATA_MAX_QUEUE; tag++) { |
| 2002 | struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag); |
| 2003 | |
Tejun Heo | e027bd3 | 2007-10-26 16:19:26 +0900 | [diff] [blame] | 2004 | if (!(qc->flags & ATA_QCFLAG_FAILED) || qc->dev->link != link || |
| 2005 | ((qc->flags & ATA_QCFLAG_QUIET) && |
| 2006 | qc->err_mask == AC_ERR_DEV)) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2007 | continue; |
| 2008 | if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask) |
| 2009 | continue; |
| 2010 | |
| 2011 | nr_failed++; |
| 2012 | } |
| 2013 | |
| 2014 | if (!nr_failed && !ehc->i.err_mask) |
| 2015 | return; |
| 2016 | |
| 2017 | frozen = ""; |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 2018 | if (ap->pflags & ATA_PFLAG_FROZEN) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2019 | frozen = " frozen"; |
| 2020 | |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 2021 | memset(tries_buf, 0, sizeof(tries_buf)); |
| 2022 | if (ap->eh_tries < ATA_EH_MAX_TRIES) |
| 2023 | snprintf(tries_buf, sizeof(tries_buf) - 1, " t%d", |
| 2024 | ap->eh_tries); |
| 2025 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2026 | if (ehc->i.dev) { |
Tejun Heo | e8ee845 | 2006-05-15 21:03:46 +0900 | [diff] [blame] | 2027 | ata_dev_printk(ehc->i.dev, KERN_ERR, "exception Emask 0x%x " |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 2028 | "SAct 0x%x SErr 0x%x action 0x%x%s%s\n", |
| 2029 | ehc->i.err_mask, link->sactive, ehc->i.serror, |
| 2030 | ehc->i.action, frozen, tries_buf); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2031 | if (desc) |
Tejun Heo | b64bbc3 | 2007-07-16 14:29:39 +0900 | [diff] [blame] | 2032 | ata_dev_printk(ehc->i.dev, KERN_ERR, "%s\n", desc); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2033 | } else { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2034 | ata_link_printk(link, KERN_ERR, "exception Emask 0x%x " |
Tejun Heo | a1e10f7 | 2007-08-18 13:28:49 +0900 | [diff] [blame] | 2035 | "SAct 0x%x SErr 0x%x action 0x%x%s%s\n", |
| 2036 | ehc->i.err_mask, link->sactive, ehc->i.serror, |
| 2037 | ehc->i.action, frozen, tries_buf); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2038 | if (desc) |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2039 | ata_link_printk(link, KERN_ERR, "%s\n", desc); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2040 | } |
| 2041 | |
Robert Hancock | 1333e19 | 2007-10-02 11:22:02 -0400 | [diff] [blame] | 2042 | if (ehc->i.serror) |
| 2043 | ata_port_printk(ap, KERN_ERR, |
| 2044 | "SError: { %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s}\n", |
| 2045 | ehc->i.serror & SERR_DATA_RECOVERED ? "RecovData " : "", |
| 2046 | ehc->i.serror & SERR_COMM_RECOVERED ? "RecovComm " : "", |
| 2047 | ehc->i.serror & SERR_DATA ? "UnrecovData " : "", |
| 2048 | ehc->i.serror & SERR_PERSISTENT ? "Persist " : "", |
| 2049 | ehc->i.serror & SERR_PROTOCOL ? "Proto " : "", |
| 2050 | ehc->i.serror & SERR_INTERNAL ? "HostInt " : "", |
| 2051 | ehc->i.serror & SERR_PHYRDY_CHG ? "PHYRdyChg " : "", |
| 2052 | ehc->i.serror & SERR_PHY_INT_ERR ? "PHYInt " : "", |
| 2053 | ehc->i.serror & SERR_COMM_WAKE ? "CommWake " : "", |
| 2054 | ehc->i.serror & SERR_10B_8B_ERR ? "10B8B " : "", |
| 2055 | ehc->i.serror & SERR_DISPARITY ? "Dispar " : "", |
| 2056 | ehc->i.serror & SERR_CRC ? "BadCRC " : "", |
| 2057 | ehc->i.serror & SERR_HANDSHAKE ? "Handshk " : "", |
| 2058 | ehc->i.serror & SERR_LINK_SEQ_ERR ? "LinkSeq " : "", |
| 2059 | ehc->i.serror & SERR_TRANS_ST_ERROR ? "TrStaTrns " : "", |
| 2060 | ehc->i.serror & SERR_UNRECOG_FIS ? "UnrecFIS " : "", |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2061 | ehc->i.serror & SERR_DEV_XCHG ? "DevExch " : ""); |
Robert Hancock | 1333e19 | 2007-10-02 11:22:02 -0400 | [diff] [blame] | 2062 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2063 | for (tag = 0; tag < ATA_MAX_QUEUE; tag++) { |
| 2064 | struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag); |
Tejun Heo | 8a93758 | 2006-11-14 22:36:12 +0900 | [diff] [blame] | 2065 | struct ata_taskfile *cmd = &qc->tf, *res = &qc->result_tf; |
Tejun Heo | abb6a88 | 2007-11-28 23:16:09 +0900 | [diff] [blame] | 2066 | const u8 *cdb = qc->cdb; |
| 2067 | char data_buf[20] = ""; |
| 2068 | char cdb_buf[70] = ""; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2069 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2070 | if (!(qc->flags & ATA_QCFLAG_FAILED) || |
| 2071 | qc->dev->link != link || !qc->err_mask) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2072 | continue; |
| 2073 | |
Tejun Heo | abb6a88 | 2007-11-28 23:16:09 +0900 | [diff] [blame] | 2074 | if (qc->dma_dir != DMA_NONE) { |
| 2075 | static const char *dma_str[] = { |
| 2076 | [DMA_BIDIRECTIONAL] = "bidi", |
| 2077 | [DMA_TO_DEVICE] = "out", |
| 2078 | [DMA_FROM_DEVICE] = "in", |
| 2079 | }; |
| 2080 | static const char *prot_str[] = { |
| 2081 | [ATA_PROT_PIO] = "pio", |
| 2082 | [ATA_PROT_DMA] = "dma", |
| 2083 | [ATA_PROT_NCQ] = "ncq", |
Tejun Heo | 0dc3688 | 2007-12-18 16:34:43 -0500 | [diff] [blame] | 2084 | [ATAPI_PROT_PIO] = "pio", |
| 2085 | [ATAPI_PROT_DMA] = "dma", |
Tejun Heo | abb6a88 | 2007-11-28 23:16:09 +0900 | [diff] [blame] | 2086 | }; |
| 2087 | |
| 2088 | snprintf(data_buf, sizeof(data_buf), " %s %u %s", |
| 2089 | prot_str[qc->tf.protocol], qc->nbytes, |
| 2090 | dma_str[qc->dma_dir]); |
| 2091 | } |
| 2092 | |
Jeff Garzik | e39eec1 | 2007-12-01 18:05:39 -0500 | [diff] [blame] | 2093 | if (ata_is_atapi(qc->tf.protocol)) |
Tejun Heo | abb6a88 | 2007-11-28 23:16:09 +0900 | [diff] [blame] | 2094 | snprintf(cdb_buf, sizeof(cdb_buf), |
| 2095 | "cdb %02x %02x %02x %02x %02x %02x %02x %02x " |
| 2096 | "%02x %02x %02x %02x %02x %02x %02x %02x\n ", |
| 2097 | cdb[0], cdb[1], cdb[2], cdb[3], |
| 2098 | cdb[4], cdb[5], cdb[6], cdb[7], |
| 2099 | cdb[8], cdb[9], cdb[10], cdb[11], |
| 2100 | cdb[12], cdb[13], cdb[14], cdb[15]); |
| 2101 | |
Tejun Heo | 8a93758 | 2006-11-14 22:36:12 +0900 | [diff] [blame] | 2102 | ata_dev_printk(qc->dev, KERN_ERR, |
| 2103 | "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x " |
Tejun Heo | abb6a88 | 2007-11-28 23:16:09 +0900 | [diff] [blame] | 2104 | "tag %d%s\n %s" |
Tejun Heo | 8a93758 | 2006-11-14 22:36:12 +0900 | [diff] [blame] | 2105 | "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x " |
Tejun Heo | 5335b72 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2106 | "Emask 0x%x (%s)%s\n", |
Tejun Heo | 8a93758 | 2006-11-14 22:36:12 +0900 | [diff] [blame] | 2107 | cmd->command, cmd->feature, cmd->nsect, |
| 2108 | cmd->lbal, cmd->lbam, cmd->lbah, |
| 2109 | cmd->hob_feature, cmd->hob_nsect, |
| 2110 | cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah, |
Tejun Heo | abb6a88 | 2007-11-28 23:16:09 +0900 | [diff] [blame] | 2111 | cmd->device, qc->tag, data_buf, cdb_buf, |
Tejun Heo | 8a93758 | 2006-11-14 22:36:12 +0900 | [diff] [blame] | 2112 | res->command, res->feature, res->nsect, |
| 2113 | res->lbal, res->lbam, res->lbah, |
| 2114 | res->hob_feature, res->hob_nsect, |
| 2115 | res->hob_lbal, res->hob_lbam, res->hob_lbah, |
Tejun Heo | 5335b72 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2116 | res->device, qc->err_mask, ata_err_string(qc->err_mask), |
| 2117 | qc->err_mask & AC_ERR_NCQ ? " <F>" : ""); |
Robert Hancock | 1333e19 | 2007-10-02 11:22:02 -0400 | [diff] [blame] | 2118 | |
| 2119 | if (res->command & (ATA_BUSY | ATA_DRDY | ATA_DF | ATA_DRQ | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2120 | ATA_ERR)) { |
Robert Hancock | 1333e19 | 2007-10-02 11:22:02 -0400 | [diff] [blame] | 2121 | if (res->command & ATA_BUSY) |
| 2122 | ata_dev_printk(qc->dev, KERN_ERR, |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2123 | "status: { Busy }\n"); |
Robert Hancock | 1333e19 | 2007-10-02 11:22:02 -0400 | [diff] [blame] | 2124 | else |
| 2125 | ata_dev_printk(qc->dev, KERN_ERR, |
| 2126 | "status: { %s%s%s%s}\n", |
| 2127 | res->command & ATA_DRDY ? "DRDY " : "", |
| 2128 | res->command & ATA_DF ? "DF " : "", |
| 2129 | res->command & ATA_DRQ ? "DRQ " : "", |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2130 | res->command & ATA_ERR ? "ERR " : ""); |
Robert Hancock | 1333e19 | 2007-10-02 11:22:02 -0400 | [diff] [blame] | 2131 | } |
| 2132 | |
| 2133 | if (cmd->command != ATA_CMD_PACKET && |
| 2134 | (res->feature & (ATA_ICRC | ATA_UNC | ATA_IDNF | |
| 2135 | ATA_ABORTED))) |
| 2136 | ata_dev_printk(qc->dev, KERN_ERR, |
| 2137 | "error: { %s%s%s%s}\n", |
| 2138 | res->feature & ATA_ICRC ? "ICRC " : "", |
| 2139 | res->feature & ATA_UNC ? "UNC " : "", |
| 2140 | res->feature & ATA_IDNF ? "IDNF " : "", |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2141 | res->feature & ATA_ABORTED ? "ABRT " : ""); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2142 | } |
| 2143 | } |
| 2144 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2145 | /** |
| 2146 | * ata_eh_report - report error handling to user |
| 2147 | * @ap: ATA port to report EH about |
| 2148 | * |
| 2149 | * Report EH to user. |
| 2150 | * |
| 2151 | * LOCKING: |
| 2152 | * None. |
| 2153 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2154 | void ata_eh_report(struct ata_port *ap) |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2155 | { |
| 2156 | struct ata_link *link; |
| 2157 | |
| 2158 | __ata_port_for_each_link(link, ap) |
| 2159 | ata_eh_link_report(link); |
| 2160 | } |
| 2161 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2162 | static int ata_do_reset(struct ata_link *link, ata_reset_fn_t reset, |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 2163 | unsigned int *classes, unsigned long deadline) |
Tejun Heo | d87fa38 | 2006-05-31 18:28:24 +0900 | [diff] [blame] | 2164 | { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2165 | struct ata_device *dev; |
Tejun Heo | d87fa38 | 2006-05-31 18:28:24 +0900 | [diff] [blame] | 2166 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2167 | ata_link_for_each_dev(dev, link) |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2168 | classes[dev->devno] = ATA_DEV_UNKNOWN; |
Tejun Heo | d87fa38 | 2006-05-31 18:28:24 +0900 | [diff] [blame] | 2169 | |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 2170 | return reset(link, classes, deadline); |
Tejun Heo | d87fa38 | 2006-05-31 18:28:24 +0900 | [diff] [blame] | 2171 | } |
| 2172 | |
Tejun Heo | ae791c0 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2173 | static int ata_eh_followup_srst_needed(struct ata_link *link, |
| 2174 | int rc, int classify, |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2175 | const unsigned int *classes) |
| 2176 | { |
Tejun Heo | 45db2f6 | 2008-04-08 01:46:56 +0900 | [diff] [blame] | 2177 | if ((link->flags & ATA_LFLAG_NO_SRST) || ata_link_offline(link)) |
Tejun Heo | ae791c0 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2178 | return 0; |
Tejun Heo | 305d2a1 | 2008-04-07 22:47:20 +0900 | [diff] [blame] | 2179 | if (rc == -EAGAIN) { |
| 2180 | if (classify) |
| 2181 | return 1; |
| 2182 | rc = 0; |
| 2183 | } |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2184 | if (rc != 0) |
| 2185 | return 0; |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 2186 | if (sata_pmp_supported(link->ap) && ata_is_host_link(link)) |
Tejun Heo | 3495de7 | 2007-09-23 13:19:53 +0900 | [diff] [blame] | 2187 | return 1; |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2188 | return 0; |
| 2189 | } |
| 2190 | |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2191 | int ata_eh_reset(struct ata_link *link, int classify, |
| 2192 | ata_prereset_fn_t prereset, ata_reset_fn_t softreset, |
| 2193 | ata_reset_fn_t hardreset, ata_postreset_fn_t postreset) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2194 | { |
Tejun Heo | afaa5c3 | 2007-10-09 15:06:10 +0900 | [diff] [blame] | 2195 | struct ata_port *ap = link->ap; |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2196 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2197 | unsigned int *classes = ehc->classes; |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2198 | unsigned int lflags = link->flags; |
Tejun Heo | 1cdaf53 | 2006-07-03 16:07:26 +0900 | [diff] [blame] | 2199 | int verbose = !(ehc->i.flags & ATA_EHI_QUIET); |
Tejun Heo | d8af0eb | 2008-05-20 02:17:53 +0900 | [diff] [blame] | 2200 | int max_tries = 0, try = 0; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2201 | struct ata_device *dev; |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2202 | unsigned long deadline, now; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2203 | ata_reset_fn_t reset; |
Tejun Heo | afaa5c3 | 2007-10-09 15:06:10 +0900 | [diff] [blame] | 2204 | unsigned long flags; |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2205 | u32 sstatus; |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 2206 | int nr_known, rc; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2207 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2208 | /* |
| 2209 | * Prepare to reset |
| 2210 | */ |
Tejun Heo | d8af0eb | 2008-05-20 02:17:53 +0900 | [diff] [blame] | 2211 | while (ata_eh_reset_timeouts[max_tries] != ULONG_MAX) |
| 2212 | max_tries++; |
| 2213 | |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2214 | now = jiffies; |
| 2215 | deadline = ata_deadline(ehc->last_reset, ATA_EH_RESET_COOL_DOWN); |
| 2216 | if (time_before(now, deadline)) |
| 2217 | schedule_timeout_uninterruptible(deadline - now); |
| 2218 | |
Tejun Heo | afaa5c3 | 2007-10-09 15:06:10 +0900 | [diff] [blame] | 2219 | spin_lock_irqsave(ap->lock, flags); |
| 2220 | ap->pflags |= ATA_PFLAG_RESETTING; |
| 2221 | spin_unlock_irqrestore(ap->lock, flags); |
| 2222 | |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2223 | ata_eh_about_to_do(link, NULL, ATA_EH_RESET); |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2224 | ehc->last_reset = jiffies; |
Tejun Heo | 13abf50 | 2006-07-10 23:18:46 +0900 | [diff] [blame] | 2225 | |
Tejun Heo | cdeab11 | 2007-10-29 16:41:09 +0900 | [diff] [blame] | 2226 | ata_link_for_each_dev(dev, link) { |
| 2227 | /* If we issue an SRST then an ATA drive (not ATAPI) |
| 2228 | * may change configuration and be in PIO0 timing. If |
| 2229 | * we do a hard reset (or are coming from power on) |
| 2230 | * this is true for ATA or ATAPI. Until we've set a |
| 2231 | * suitable controller mode we should not touch the |
| 2232 | * bus as we may be talking too fast. |
| 2233 | */ |
| 2234 | dev->pio_mode = XFER_PIO_0; |
| 2235 | |
| 2236 | /* If the controller has a pio mode setup function |
| 2237 | * then use it to set the chipset to rights. Don't |
| 2238 | * touch the DMA setup as that will be dealt with when |
| 2239 | * configuring devices. |
| 2240 | */ |
| 2241 | if (ap->ops->set_piomode) |
| 2242 | ap->ops->set_piomode(ap, dev); |
| 2243 | } |
| 2244 | |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2245 | /* prefer hardreset */ |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2246 | reset = NULL; |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2247 | ehc->i.action &= ~ATA_EH_RESET; |
| 2248 | if (hardreset) { |
| 2249 | reset = hardreset; |
| 2250 | ehc->i.action = ATA_EH_HARDRESET; |
Tejun Heo | 4f7faa3 | 2008-01-30 18:18:26 +0900 | [diff] [blame] | 2251 | } else if (softreset) { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2252 | reset = softreset; |
| 2253 | ehc->i.action = ATA_EH_SOFTRESET; |
| 2254 | } |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2255 | |
| 2256 | if (prereset) { |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 2257 | rc = prereset(link, |
| 2258 | ata_deadline(jiffies, ATA_EH_PRERESET_TIMEOUT)); |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2259 | if (rc) { |
Alan Cox | c961922 | 2006-09-26 17:53:38 +0100 | [diff] [blame] | 2260 | if (rc == -ENOENT) { |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2261 | ata_link_printk(link, KERN_DEBUG, |
Tejun Heo | 4aa9ab6 | 2007-03-12 17:24:08 +0900 | [diff] [blame] | 2262 | "port disabled. ignoring.\n"); |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2263 | ehc->i.action &= ~ATA_EH_RESET; |
Tejun Heo | 4aa9ab6 | 2007-03-12 17:24:08 +0900 | [diff] [blame] | 2264 | |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2265 | ata_link_for_each_dev(dev, link) |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2266 | classes[dev->devno] = ATA_DEV_NONE; |
Tejun Heo | 4aa9ab6 | 2007-03-12 17:24:08 +0900 | [diff] [blame] | 2267 | |
| 2268 | rc = 0; |
Alan Cox | c961922 | 2006-09-26 17:53:38 +0100 | [diff] [blame] | 2269 | } else |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2270 | ata_link_printk(link, KERN_ERR, |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2271 | "prereset failed (errno=%d)\n", rc); |
Tejun Heo | fccb6ea | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 2272 | goto out; |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2273 | } |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2274 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2275 | /* prereset() might have cleared ATA_EH_RESET. If so, |
| 2276 | * bang classes and return. |
| 2277 | */ |
| 2278 | if (reset && !(ehc->i.action & ATA_EH_RESET)) { |
| 2279 | ata_link_for_each_dev(dev, link) |
| 2280 | classes[dev->devno] = ATA_DEV_NONE; |
| 2281 | rc = 0; |
| 2282 | goto out; |
| 2283 | } |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2284 | } |
| 2285 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2286 | retry: |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2287 | /* |
| 2288 | * Perform reset |
| 2289 | */ |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2290 | ehc->last_reset = jiffies; |
Tejun Heo | dc98c32 | 2008-05-19 01:15:07 +0900 | [diff] [blame] | 2291 | if (ata_is_host_link(link)) |
| 2292 | ata_eh_freeze_port(ap); |
| 2293 | |
Tejun Heo | 341c2c9 | 2008-05-20 02:17:51 +0900 | [diff] [blame] | 2294 | deadline = ata_deadline(jiffies, ata_eh_reset_timeouts[try++]); |
Tejun Heo | 31daabd | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 2295 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2296 | if (reset) { |
| 2297 | if (verbose) |
| 2298 | ata_link_printk(link, KERN_INFO, "%s resetting link\n", |
| 2299 | reset == softreset ? "soft" : "hard"); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2300 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2301 | /* mark that this EH session started with reset */ |
| 2302 | if (reset == hardreset) |
| 2303 | ehc->i.flags |= ATA_EHI_DID_HARDRESET; |
| 2304 | else |
| 2305 | ehc->i.flags |= ATA_EHI_DID_SOFTRESET; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2306 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2307 | rc = ata_do_reset(link, reset, classes, deadline); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2308 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2309 | if (reset == hardreset && |
| 2310 | ata_eh_followup_srst_needed(link, rc, classify, classes)) { |
| 2311 | /* okay, let's do follow-up softreset */ |
| 2312 | reset = softreset; |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2313 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2314 | if (!reset) { |
| 2315 | ata_link_printk(link, KERN_ERR, |
| 2316 | "follow-up softreset required " |
| 2317 | "but no softreset avaliable\n"); |
| 2318 | rc = -EINVAL; |
| 2319 | goto fail; |
| 2320 | } |
| 2321 | |
| 2322 | ata_eh_about_to_do(link, NULL, ATA_EH_RESET); |
| 2323 | rc = ata_do_reset(link, reset, classes, deadline); |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2324 | } |
| 2325 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2326 | /* -EAGAIN can happen if we skipped followup SRST */ |
| 2327 | if (rc && rc != -EAGAIN) |
| 2328 | goto fail; |
| 2329 | } else { |
| 2330 | if (verbose) |
| 2331 | ata_link_printk(link, KERN_INFO, "no reset method " |
| 2332 | "available, skipping reset\n"); |
| 2333 | if (!(lflags & ATA_LFLAG_ASSUME_CLASS)) |
| 2334 | lflags |= ATA_LFLAG_ASSUME_ATA; |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2335 | } |
| 2336 | |
Tejun Heo | 932648b | 2008-05-19 01:15:06 +0900 | [diff] [blame] | 2337 | /* |
| 2338 | * Post-reset processing |
| 2339 | */ |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2340 | ata_link_for_each_dev(dev, link) { |
| 2341 | /* After the reset, the device state is PIO 0 and the |
| 2342 | * controller state is undefined. Reset also wakes up |
| 2343 | * drives from sleeping mode. |
| 2344 | */ |
| 2345 | dev->pio_mode = XFER_PIO_0; |
| 2346 | dev->flags &= ~ATA_DFLAG_SLEEPING; |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2347 | |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2348 | if (ata_link_offline(link)) |
| 2349 | continue; |
Tejun Heo | 664faf0 | 2006-05-31 18:27:50 +0900 | [diff] [blame] | 2350 | |
Tejun Heo | 4ccd332 | 2008-01-08 20:26:12 +0900 | [diff] [blame] | 2351 | /* apply class override */ |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2352 | if (lflags & ATA_LFLAG_ASSUME_ATA) |
| 2353 | classes[dev->devno] = ATA_DEV_ATA; |
| 2354 | else if (lflags & ATA_LFLAG_ASSUME_SEMB) |
| 2355 | classes[dev->devno] = ATA_DEV_SEMB_UNSUP; /* not yet */ |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2356 | } |
| 2357 | |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2358 | /* record current link speed */ |
| 2359 | if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0) |
| 2360 | link->sata_spd = (sstatus >> 4) & 0xf; |
Tejun Heo | 008a789 | 2007-07-16 14:29:40 +0900 | [diff] [blame] | 2361 | |
Tejun Heo | dc98c32 | 2008-05-19 01:15:07 +0900 | [diff] [blame] | 2362 | /* thaw the port */ |
| 2363 | if (ata_is_host_link(link)) |
| 2364 | ata_eh_thaw_port(ap); |
| 2365 | |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 2366 | /* postreset() should clear hardware SError. Although SError |
| 2367 | * is cleared during link resume, clearing SError here is |
| 2368 | * necessary as some PHYs raise hotplug events after SRST. |
| 2369 | * This introduces race condition where hotplug occurs between |
| 2370 | * reset and here. This race is mediated by cross checking |
| 2371 | * link onlineness and classification result later. |
| 2372 | */ |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2373 | if (postreset) |
| 2374 | postreset(link, classes); |
Tejun Heo | 20952b6 | 2006-05-31 18:27:23 +0900 | [diff] [blame] | 2375 | |
Tejun Heo | f046519 | 2008-05-19 01:15:08 +0900 | [diff] [blame] | 2376 | /* clear cached SError */ |
| 2377 | spin_lock_irqsave(link->ap->lock, flags); |
| 2378 | link->eh_info.serror = 0; |
| 2379 | spin_unlock_irqrestore(link->ap->lock, flags); |
| 2380 | |
| 2381 | /* Make sure onlineness and classification result correspond. |
| 2382 | * Hotplug could have happened during reset and some |
| 2383 | * controllers fail to wait while a drive is spinning up after |
| 2384 | * being hotplugged causing misdetection. By cross checking |
| 2385 | * link onlineness and classification result, those conditions |
| 2386 | * can be reliably detected and retried. |
| 2387 | */ |
| 2388 | nr_known = 0; |
| 2389 | ata_link_for_each_dev(dev, link) { |
| 2390 | /* convert all ATA_DEV_UNKNOWN to ATA_DEV_NONE */ |
| 2391 | if (classes[dev->devno] == ATA_DEV_UNKNOWN) |
| 2392 | classes[dev->devno] = ATA_DEV_NONE; |
| 2393 | else |
| 2394 | nr_known++; |
| 2395 | } |
| 2396 | |
| 2397 | if (classify && !nr_known && ata_link_online(link)) { |
| 2398 | if (try < max_tries) { |
| 2399 | ata_link_printk(link, KERN_WARNING, "link online but " |
| 2400 | "device misclassified, retrying\n"); |
| 2401 | rc = -EAGAIN; |
| 2402 | goto fail; |
| 2403 | } |
| 2404 | ata_link_printk(link, KERN_WARNING, |
| 2405 | "link online but device misclassified, " |
| 2406 | "device detection might fail\n"); |
| 2407 | } |
| 2408 | |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2409 | /* reset successful, schedule revalidation */ |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2410 | ata_eh_done(link, NULL, ATA_EH_RESET); |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2411 | ehc->last_reset = jiffies; |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2412 | ehc->i.action |= ATA_EH_REVALIDATE; |
Tejun Heo | ae791c0 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2413 | |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2414 | rc = 0; |
Tejun Heo | fccb6ea | 2007-07-16 14:29:41 +0900 | [diff] [blame] | 2415 | out: |
| 2416 | /* clear hotplug flag */ |
| 2417 | ehc->i.flags &= ~ATA_EHI_HOTPLUGGED; |
Tejun Heo | afaa5c3 | 2007-10-09 15:06:10 +0900 | [diff] [blame] | 2418 | |
| 2419 | spin_lock_irqsave(ap->lock, flags); |
| 2420 | ap->pflags &= ~ATA_PFLAG_RESETTING; |
| 2421 | spin_unlock_irqrestore(ap->lock, flags); |
| 2422 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2423 | return rc; |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2424 | |
| 2425 | fail: |
Tejun Heo | 5958e30 | 2008-04-07 22:47:20 +0900 | [diff] [blame] | 2426 | /* if SCR isn't accessible on a fan-out port, PMP needs to be reset */ |
| 2427 | if (!ata_is_host_link(link) && |
| 2428 | sata_scr_read(link, SCR_STATUS, &sstatus)) |
| 2429 | rc = -ERESTART; |
| 2430 | |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2431 | if (rc == -ERESTART || try >= max_tries) |
| 2432 | goto out; |
| 2433 | |
| 2434 | now = jiffies; |
| 2435 | if (time_before(now, deadline)) { |
| 2436 | unsigned long delta = deadline - now; |
| 2437 | |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2438 | ata_link_printk(link, KERN_WARNING, |
| 2439 | "reset failed (errno=%d), retrying in %u secs\n", |
| 2440 | rc, DIV_ROUND_UP(jiffies_to_msecs(delta), 1000)); |
Tejun Heo | 416dc9e | 2007-10-31 10:17:03 +0900 | [diff] [blame] | 2441 | |
| 2442 | while (delta) |
| 2443 | delta = schedule_timeout_uninterruptible(delta); |
| 2444 | } |
| 2445 | |
| 2446 | if (rc == -EPIPE || try == max_tries - 1) |
| 2447 | sata_down_spd_limit(link); |
| 2448 | if (hardreset) |
| 2449 | reset = hardreset; |
| 2450 | goto retry; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2451 | } |
| 2452 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2453 | static int ata_eh_revalidate_and_attach(struct ata_link *link, |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2454 | struct ata_device **r_failed_dev) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2455 | { |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2456 | struct ata_port *ap = link->ap; |
| 2457 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2458 | struct ata_device *dev; |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2459 | unsigned int new_mask = 0; |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2460 | unsigned long flags; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2461 | int rc = 0; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2462 | |
| 2463 | DPRINTK("ENTER\n"); |
| 2464 | |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2465 | /* For PATA drive side cable detection to work, IDENTIFY must |
| 2466 | * be done backwards such that PDIAG- is released by the slave |
| 2467 | * device before the master device is identified. |
| 2468 | */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2469 | ata_link_for_each_dev_reverse(dev, link) { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2470 | unsigned int action = ata_eh_dev_action(dev); |
| 2471 | unsigned int readid_flags = 0; |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 2472 | |
Tejun Heo | bff0464 | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2473 | if (ehc->i.flags & ATA_EHI_DID_RESET) |
| 2474 | readid_flags |= ATA_READID_POSTRESET; |
| 2475 | |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 2476 | if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) { |
Tejun Heo | 633273a3 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 2477 | WARN_ON(dev->class == ATA_DEV_PMP); |
| 2478 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2479 | if (ata_link_offline(link)) { |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2480 | rc = -EIO; |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2481 | goto err; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2482 | } |
| 2483 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2484 | ata_eh_about_to_do(link, dev, ATA_EH_REVALIDATE); |
Tejun Heo | 422c9da | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2485 | rc = ata_dev_revalidate(dev, ehc->classes[dev->devno], |
| 2486 | readid_flags); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2487 | if (rc) |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2488 | goto err; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2489 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2490 | ata_eh_done(link, dev, ATA_EH_REVALIDATE); |
Tejun Heo | 47005f2 | 2006-06-19 18:27:23 +0900 | [diff] [blame] | 2491 | |
Tejun Heo | baa1e78 | 2006-11-01 18:39:27 +0900 | [diff] [blame] | 2492 | /* Configuration may have changed, reconfigure |
| 2493 | * transfer mode. |
| 2494 | */ |
| 2495 | ehc->i.flags |= ATA_EHI_SETMODE; |
| 2496 | |
zhao, forrest | 3057ac3 | 2006-06-12 12:01:34 +0800 | [diff] [blame] | 2497 | /* schedule the scsi_rescan_device() here */ |
| 2498 | queue_work(ata_aux_wq, &(ap->scsi_rescan_task)); |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2499 | } else if (dev->class == ATA_DEV_UNKNOWN && |
| 2500 | ehc->tries[dev->devno] && |
| 2501 | ata_class_enabled(ehc->classes[dev->devno])) { |
| 2502 | dev->class = ehc->classes[dev->devno]; |
| 2503 | |
Tejun Heo | 633273a3 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 2504 | if (dev->class == ATA_DEV_PMP) |
| 2505 | rc = sata_pmp_attach(dev); |
| 2506 | else |
| 2507 | rc = ata_dev_read_id(dev, &dev->class, |
| 2508 | readid_flags, dev->id); |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2509 | switch (rc) { |
| 2510 | case 0: |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2511 | new_mask |= 1 << dev->devno; |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2512 | break; |
| 2513 | case -ENOENT: |
Tejun Heo | 55a8e2c | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2514 | /* IDENTIFY was issued to non-existent |
| 2515 | * device. No need to reset. Just |
| 2516 | * thaw and kill the device. |
| 2517 | */ |
| 2518 | ata_eh_thaw_port(ap); |
| 2519 | dev->class = ATA_DEV_UNKNOWN; |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2520 | break; |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2521 | default: |
| 2522 | dev->class = ATA_DEV_UNKNOWN; |
| 2523 | goto err; |
Tejun Heo | 55a8e2c | 2006-11-10 18:08:10 +0900 | [diff] [blame] | 2524 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2525 | } |
| 2526 | } |
| 2527 | |
Tejun Heo | c1c4e8d | 2007-04-23 02:05:53 +0900 | [diff] [blame] | 2528 | /* PDIAG- should have been released, ask cable type if post-reset */ |
Tejun Heo | 3326732 | 2008-02-13 09:15:09 +0900 | [diff] [blame] | 2529 | if ((ehc->i.flags & ATA_EHI_DID_RESET) && ata_is_host_link(link)) { |
| 2530 | if (ap->ops->cable_detect) |
| 2531 | ap->cbl = ap->ops->cable_detect(ap); |
| 2532 | ata_force_cbl(ap); |
| 2533 | } |
Tejun Heo | c1c4e8d | 2007-04-23 02:05:53 +0900 | [diff] [blame] | 2534 | |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2535 | /* Configure new devices forward such that user doesn't see |
| 2536 | * device detection messages backwards. |
| 2537 | */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2538 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | 633273a3 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 2539 | if (!(new_mask & (1 << dev->devno)) || |
| 2540 | dev->class == ATA_DEV_PMP) |
Tejun Heo | 8c3c52a | 2007-03-22 22:24:19 +0900 | [diff] [blame] | 2541 | continue; |
| 2542 | |
| 2543 | ehc->i.flags |= ATA_EHI_PRINTINFO; |
| 2544 | rc = ata_dev_configure(dev); |
| 2545 | ehc->i.flags &= ~ATA_EHI_PRINTINFO; |
| 2546 | if (rc) |
| 2547 | goto err; |
| 2548 | |
| 2549 | spin_lock_irqsave(ap->lock, flags); |
| 2550 | ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG; |
| 2551 | spin_unlock_irqrestore(ap->lock, flags); |
| 2552 | |
| 2553 | /* new device discovered, configure xfermode */ |
| 2554 | ehc->i.flags |= ATA_EHI_SETMODE; |
| 2555 | } |
| 2556 | |
| 2557 | return 0; |
| 2558 | |
| 2559 | err: |
| 2560 | *r_failed_dev = dev; |
| 2561 | DPRINTK("EXIT rc=%d\n", rc); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2562 | return rc; |
| 2563 | } |
| 2564 | |
Tejun Heo | 6f1d1e3 | 2007-11-27 19:28:55 +0900 | [diff] [blame] | 2565 | /** |
| 2566 | * ata_set_mode - Program timings and issue SET FEATURES - XFER |
| 2567 | * @link: link on which timings will be programmed |
| 2568 | * @r_failed_dev: out paramter for failed device |
| 2569 | * |
| 2570 | * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If |
| 2571 | * ata_set_mode() fails, pointer to the failing device is |
| 2572 | * returned in @r_failed_dev. |
| 2573 | * |
| 2574 | * LOCKING: |
| 2575 | * PCI/etc. bus probe sem. |
| 2576 | * |
| 2577 | * RETURNS: |
| 2578 | * 0 on success, negative errno otherwise |
| 2579 | */ |
| 2580 | int ata_set_mode(struct ata_link *link, struct ata_device **r_failed_dev) |
| 2581 | { |
| 2582 | struct ata_port *ap = link->ap; |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 2583 | struct ata_device *dev; |
| 2584 | int rc; |
Tejun Heo | 6f1d1e3 | 2007-11-27 19:28:55 +0900 | [diff] [blame] | 2585 | |
Tejun Heo | 76326ac | 2007-11-27 19:28:59 +0900 | [diff] [blame] | 2586 | /* if data transfer is verified, clear DUBIOUS_XFER on ering top */ |
| 2587 | ata_link_for_each_dev(dev, link) { |
| 2588 | if (!(dev->flags & ATA_DFLAG_DUBIOUS_XFER)) { |
| 2589 | struct ata_ering_entry *ent; |
| 2590 | |
| 2591 | ent = ata_ering_top(&dev->ering); |
| 2592 | if (ent) |
| 2593 | ent->eflags &= ~ATA_EFLAG_DUBIOUS_XFER; |
| 2594 | } |
| 2595 | } |
| 2596 | |
Tejun Heo | 6f1d1e3 | 2007-11-27 19:28:55 +0900 | [diff] [blame] | 2597 | /* has private set_mode? */ |
| 2598 | if (ap->ops->set_mode) |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 2599 | rc = ap->ops->set_mode(link, r_failed_dev); |
| 2600 | else |
| 2601 | rc = ata_do_set_mode(link, r_failed_dev); |
| 2602 | |
| 2603 | /* if transfer mode has changed, set DUBIOUS_XFER on device */ |
| 2604 | ata_link_for_each_dev(dev, link) { |
| 2605 | struct ata_eh_context *ehc = &link->eh_context; |
| 2606 | u8 saved_xfer_mode = ehc->saved_xfer_mode[dev->devno]; |
| 2607 | u8 saved_ncq = !!(ehc->saved_ncq_enabled & (1 << dev->devno)); |
| 2608 | |
| 2609 | if (dev->xfer_mode != saved_xfer_mode || |
| 2610 | ata_ncq_enabled(dev) != saved_ncq) |
| 2611 | dev->flags |= ATA_DFLAG_DUBIOUS_XFER; |
| 2612 | } |
| 2613 | |
| 2614 | return rc; |
Tejun Heo | 6f1d1e3 | 2007-11-27 19:28:55 +0900 | [diff] [blame] | 2615 | } |
| 2616 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2617 | static int ata_link_nr_enabled(struct ata_link *link) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2618 | { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2619 | struct ata_device *dev; |
| 2620 | int cnt = 0; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2621 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2622 | ata_link_for_each_dev(dev, link) |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2623 | if (ata_dev_enabled(dev)) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2624 | cnt++; |
| 2625 | return cnt; |
| 2626 | } |
| 2627 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2628 | static int ata_link_nr_vacant(struct ata_link *link) |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2629 | { |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2630 | struct ata_device *dev; |
| 2631 | int cnt = 0; |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2632 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2633 | ata_link_for_each_dev(dev, link) |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2634 | if (dev->class == ATA_DEV_UNKNOWN) |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2635 | cnt++; |
| 2636 | return cnt; |
| 2637 | } |
| 2638 | |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2639 | static int ata_eh_skip_recovery(struct ata_link *link) |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2640 | { |
Tejun Heo | 672b2d6 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2641 | struct ata_port *ap = link->ap; |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2642 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | f58229f | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2643 | struct ata_device *dev; |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2644 | |
Tejun Heo | f9df58c | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2645 | /* skip disabled links */ |
| 2646 | if (link->flags & ATA_LFLAG_DISABLED) |
| 2647 | return 1; |
| 2648 | |
Tejun Heo | 672b2d6 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2649 | /* thaw frozen port and recover failed devices */ |
| 2650 | if ((ap->pflags & ATA_PFLAG_FROZEN) || ata_link_nr_enabled(link)) |
| 2651 | return 0; |
| 2652 | |
| 2653 | /* reset at least once if reset is requested */ |
| 2654 | if ((ehc->i.action & ATA_EH_RESET) && |
| 2655 | !(ehc->i.flags & ATA_EHI_DID_RESET)) |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2656 | return 0; |
| 2657 | |
| 2658 | /* skip if class codes for all vacant slots are ATA_DEV_NONE */ |
Tejun Heo | 0260731 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2659 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2660 | if (dev->class == ATA_DEV_UNKNOWN && |
| 2661 | ehc->classes[dev->devno] != ATA_DEV_NONE) |
| 2662 | return 0; |
| 2663 | } |
| 2664 | |
| 2665 | return 1; |
| 2666 | } |
| 2667 | |
Tejun Heo | 02c05a2 | 2007-11-27 19:28:54 +0900 | [diff] [blame] | 2668 | static int ata_eh_schedule_probe(struct ata_device *dev) |
| 2669 | { |
| 2670 | struct ata_eh_context *ehc = &dev->link->eh_context; |
| 2671 | |
| 2672 | if (!(ehc->i.probe_mask & (1 << dev->devno)) || |
| 2673 | (ehc->did_probe_mask & (1 << dev->devno))) |
| 2674 | return 0; |
| 2675 | |
| 2676 | ata_eh_detach_dev(dev); |
| 2677 | ata_dev_init(dev); |
| 2678 | ehc->did_probe_mask |= (1 << dev->devno); |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2679 | ehc->i.action |= ATA_EH_RESET; |
Tejun Heo | 00115e0 | 2007-11-27 19:28:58 +0900 | [diff] [blame] | 2680 | ehc->saved_xfer_mode[dev->devno] = 0; |
| 2681 | ehc->saved_ncq_enabled &= ~(1 << dev->devno); |
Tejun Heo | 02c05a2 | 2007-11-27 19:28:54 +0900 | [diff] [blame] | 2682 | |
| 2683 | return 1; |
| 2684 | } |
| 2685 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2686 | static int ata_eh_handle_dev_fail(struct ata_device *dev, int err) |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2687 | { |
Tejun Heo | 9af5c9c | 2007-08-06 18:36:22 +0900 | [diff] [blame] | 2688 | struct ata_eh_context *ehc = &dev->link->eh_context; |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2689 | |
| 2690 | ehc->tries[dev->devno]--; |
| 2691 | |
| 2692 | switch (err) { |
| 2693 | case -ENODEV: |
| 2694 | /* device missing or wrong IDENTIFY data, schedule probing */ |
| 2695 | ehc->i.probe_mask |= (1 << dev->devno); |
| 2696 | case -EINVAL: |
| 2697 | /* give it just one more chance */ |
| 2698 | ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1); |
| 2699 | case -EIO: |
Tejun Heo | 4fb4615 | 2007-10-29 16:45:05 +0900 | [diff] [blame] | 2700 | if (ehc->tries[dev->devno] == 1 && dev->pio_mode > XFER_PIO_0) { |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2701 | /* This is the last chance, better to slow |
| 2702 | * down than lose it. |
| 2703 | */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2704 | sata_down_spd_limit(dev->link); |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2705 | ata_down_xfermask_limit(dev, ATA_DNXFER_PIO); |
| 2706 | } |
| 2707 | } |
| 2708 | |
| 2709 | if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) { |
| 2710 | /* disable device if it has used up all its chances */ |
| 2711 | ata_dev_disable(dev); |
| 2712 | |
| 2713 | /* detach if offline */ |
Tejun Heo | 936fd73 | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 2714 | if (ata_link_offline(dev->link)) |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2715 | ata_eh_detach_dev(dev); |
| 2716 | |
Tejun Heo | 02c05a2 | 2007-11-27 19:28:54 +0900 | [diff] [blame] | 2717 | /* schedule probe if necessary */ |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 2718 | if (ata_eh_schedule_probe(dev)) { |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2719 | ehc->tries[dev->devno] = ATA_EH_DEV_TRIES; |
Tejun Heo | 87fbc5a | 2008-05-20 02:17:54 +0900 | [diff] [blame] | 2720 | memset(ehc->cmd_timeout_idx[dev->devno], 0, |
| 2721 | sizeof(ehc->cmd_timeout_idx[dev->devno])); |
| 2722 | } |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2723 | |
| 2724 | return 1; |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2725 | } else { |
Tejun Heo | cf48062 | 2008-01-24 00:05:14 +0900 | [diff] [blame] | 2726 | ehc->i.action |= ATA_EH_RESET; |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2727 | return 0; |
Tejun Heo | fee7ca7 | 2007-07-01 19:05:58 +0900 | [diff] [blame] | 2728 | } |
| 2729 | } |
| 2730 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2731 | /** |
| 2732 | * ata_eh_recover - recover host port after error |
| 2733 | * @ap: host port to recover |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2734 | * @prereset: prereset method (can be NULL) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2735 | * @softreset: softreset method (can be NULL) |
| 2736 | * @hardreset: hardreset method (can be NULL) |
| 2737 | * @postreset: postreset method (can be NULL) |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2738 | * @r_failed_link: out parameter for failed link |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2739 | * |
| 2740 | * This is the alpha and omega, eum and yang, heart and soul of |
| 2741 | * libata exception handling. On entry, actions required to |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2742 | * recover each link and hotplug requests are recorded in the |
| 2743 | * link's eh_context. This function executes all the operations |
| 2744 | * with appropriate retrials and fallbacks to resurrect failed |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2745 | * devices, detach goners and greet newcomers. |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2746 | * |
| 2747 | * LOCKING: |
| 2748 | * Kernel thread context (may sleep). |
| 2749 | * |
| 2750 | * RETURNS: |
| 2751 | * 0 on success, -errno on failure. |
| 2752 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2753 | int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset, |
| 2754 | ata_reset_fn_t softreset, ata_reset_fn_t hardreset, |
| 2755 | ata_postreset_fn_t postreset, |
| 2756 | struct ata_link **r_failed_link) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2757 | { |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2758 | struct ata_link *link; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2759 | struct ata_device *dev; |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2760 | int nr_failed_devs; |
Tejun Heo | dc98c32 | 2008-05-19 01:15:07 +0900 | [diff] [blame] | 2761 | int rc; |
Tejun Heo | f9df58c | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2762 | unsigned long flags; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2763 | |
| 2764 | DPRINTK("ENTER\n"); |
| 2765 | |
| 2766 | /* prep for recovery */ |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2767 | ata_port_for_each_link(link, ap) { |
| 2768 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2769 | |
Tejun Heo | f9df58c | 2007-09-23 13:14:13 +0900 | [diff] [blame] | 2770 | /* re-enable link? */ |
| 2771 | if (ehc->i.action & ATA_EH_ENABLE_LINK) { |
| 2772 | ata_eh_about_to_do(link, NULL, ATA_EH_ENABLE_LINK); |
| 2773 | spin_lock_irqsave(ap->lock, flags); |
| 2774 | link->flags &= ~ATA_LFLAG_DISABLED; |
| 2775 | spin_unlock_irqrestore(ap->lock, flags); |
| 2776 | ata_eh_done(link, NULL, ATA_EH_ENABLE_LINK); |
| 2777 | } |
| 2778 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2779 | ata_link_for_each_dev(dev, link) { |
Tejun Heo | fd995f7 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2780 | if (link->flags & ATA_LFLAG_NO_RETRY) |
| 2781 | ehc->tries[dev->devno] = 1; |
| 2782 | else |
| 2783 | ehc->tries[dev->devno] = ATA_EH_DEV_TRIES; |
Tejun Heo | 79a55b7 | 2007-01-18 17:22:18 +0900 | [diff] [blame] | 2784 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2785 | /* collect port action mask recorded in dev actions */ |
| 2786 | ehc->i.action |= ehc->i.dev_action[dev->devno] & |
| 2787 | ~ATA_EH_PERDEV_MASK; |
| 2788 | ehc->i.dev_action[dev->devno] &= ATA_EH_PERDEV_MASK; |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2789 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2790 | /* process hotplug request */ |
| 2791 | if (dev->flags & ATA_DFLAG_DETACH) |
| 2792 | ata_eh_detach_dev(dev); |
| 2793 | |
Tejun Heo | 02c05a2 | 2007-11-27 19:28:54 +0900 | [diff] [blame] | 2794 | /* schedule probe if necessary */ |
| 2795 | if (!ata_dev_enabled(dev)) |
| 2796 | ata_eh_schedule_probe(dev); |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2797 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2798 | } |
| 2799 | |
| 2800 | retry: |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2801 | rc = 0; |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2802 | nr_failed_devs = 0; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2803 | |
Tejun Heo | aeb2ecd | 2006-06-12 14:11:43 +0900 | [diff] [blame] | 2804 | /* if UNLOADING, finish immediately */ |
Tejun Heo | b51e9e5 | 2006-06-29 01:29:30 +0900 | [diff] [blame] | 2805 | if (ap->pflags & ATA_PFLAG_UNLOADING) |
Tejun Heo | aeb2ecd | 2006-06-12 14:11:43 +0900 | [diff] [blame] | 2806 | goto out; |
| 2807 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2808 | /* prep for EH */ |
| 2809 | ata_port_for_each_link(link, ap) { |
| 2810 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2811 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2812 | /* skip EH if possible. */ |
| 2813 | if (ata_eh_skip_recovery(link)) |
| 2814 | ehc->i.action = 0; |
| 2815 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2816 | ata_link_for_each_dev(dev, link) |
| 2817 | ehc->classes[dev->devno] = ATA_DEV_UNKNOWN; |
| 2818 | } |
Tejun Heo | 084fe63 | 2006-05-31 18:28:03 +0900 | [diff] [blame] | 2819 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2820 | /* reset */ |
Tejun Heo | dc98c32 | 2008-05-19 01:15:07 +0900 | [diff] [blame] | 2821 | ata_port_for_each_link(link, ap) { |
| 2822 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2823 | |
Tejun Heo | dc98c32 | 2008-05-19 01:15:07 +0900 | [diff] [blame] | 2824 | if (!(ehc->i.action & ATA_EH_RESET)) |
| 2825 | continue; |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2826 | |
Tejun Heo | dc98c32 | 2008-05-19 01:15:07 +0900 | [diff] [blame] | 2827 | rc = ata_eh_reset(link, ata_link_nr_vacant(link), |
| 2828 | prereset, softreset, hardreset, postreset); |
| 2829 | if (rc) { |
| 2830 | ata_link_printk(link, KERN_ERR, |
| 2831 | "reset failed, giving up\n"); |
| 2832 | goto out; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2833 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2834 | } |
| 2835 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2836 | /* the rest */ |
| 2837 | ata_port_for_each_link(link, ap) { |
| 2838 | struct ata_eh_context *ehc = &link->eh_context; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2839 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2840 | /* revalidate existing devices and attach new ones */ |
| 2841 | rc = ata_eh_revalidate_and_attach(link, &dev); |
Tejun Heo | 4ae72a1 | 2007-02-02 16:22:30 +0900 | [diff] [blame] | 2842 | if (rc) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2843 | goto dev_fail; |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2844 | |
Tejun Heo | 633273a3 | 2007-09-23 13:19:54 +0900 | [diff] [blame] | 2845 | /* if PMP got attached, return, pmp EH will take care of it */ |
| 2846 | if (link->device->class == ATA_DEV_PMP) { |
| 2847 | ehc->i.action = 0; |
| 2848 | return 0; |
| 2849 | } |
| 2850 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2851 | /* configure transfer mode if necessary */ |
| 2852 | if (ehc->i.flags & ATA_EHI_SETMODE) { |
| 2853 | rc = ata_set_mode(link, &dev); |
| 2854 | if (rc) |
| 2855 | goto dev_fail; |
| 2856 | ehc->i.flags &= ~ATA_EHI_SETMODE; |
| 2857 | } |
| 2858 | |
Tejun Heo | 3ec25eb | 2008-03-27 18:37:14 +0900 | [diff] [blame] | 2859 | if (ehc->i.action & ATA_EH_LPM) |
Kristen Carlson Accardi | ca77329 | 2007-10-25 00:58:59 -0400 | [diff] [blame] | 2860 | ata_link_for_each_dev(dev, link) |
| 2861 | ata_dev_enable_pm(dev, ap->pm_policy); |
| 2862 | |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2863 | /* this link is okay now */ |
| 2864 | ehc->i.flags = 0; |
| 2865 | continue; |
| 2866 | |
Jeff Garzik | 2dcb407 | 2007-10-19 06:42:56 -0400 | [diff] [blame] | 2867 | dev_fail: |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2868 | nr_failed_devs++; |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2869 | ata_eh_handle_dev_fail(dev, rc); |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2870 | |
Tejun Heo | b06ce3e | 2007-10-09 15:06:48 +0900 | [diff] [blame] | 2871 | if (ap->pflags & ATA_PFLAG_FROZEN) { |
| 2872 | /* PMP reset requires working host port. |
| 2873 | * Can't retry if it's frozen. |
| 2874 | */ |
Tejun Heo | 071f44b | 2008-04-07 22:47:22 +0900 | [diff] [blame] | 2875 | if (sata_pmp_attached(ap)) |
Tejun Heo | b06ce3e | 2007-10-09 15:06:48 +0900 | [diff] [blame] | 2876 | goto out; |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2877 | break; |
Tejun Heo | b06ce3e | 2007-10-09 15:06:48 +0900 | [diff] [blame] | 2878 | } |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2879 | } |
| 2880 | |
Tejun Heo | 0a2c0f5 | 2008-05-20 02:17:52 +0900 | [diff] [blame] | 2881 | if (nr_failed_devs) |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2882 | goto retry; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2883 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2884 | out: |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2885 | if (rc && r_failed_link) |
| 2886 | *r_failed_link = link; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2887 | |
| 2888 | DPRINTK("EXIT, rc=%d\n", rc); |
| 2889 | return rc; |
| 2890 | } |
| 2891 | |
| 2892 | /** |
| 2893 | * ata_eh_finish - finish up EH |
| 2894 | * @ap: host port to finish EH for |
| 2895 | * |
| 2896 | * Recovery is complete. Clean up EH states and retry or finish |
| 2897 | * failed qcs. |
| 2898 | * |
| 2899 | * LOCKING: |
| 2900 | * None. |
| 2901 | */ |
Tejun Heo | fb7fd61 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2902 | void ata_eh_finish(struct ata_port *ap) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2903 | { |
| 2904 | int tag; |
| 2905 | |
| 2906 | /* retry or finish qcs */ |
| 2907 | for (tag = 0; tag < ATA_MAX_QUEUE; tag++) { |
| 2908 | struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag); |
| 2909 | |
| 2910 | if (!(qc->flags & ATA_QCFLAG_FAILED)) |
| 2911 | continue; |
| 2912 | |
| 2913 | if (qc->err_mask) { |
| 2914 | /* FIXME: Once EH migration is complete, |
| 2915 | * generate sense data in this function, |
| 2916 | * considering both err_mask and tf. |
| 2917 | */ |
Tejun Heo | 03faab7 | 2008-03-27 19:14:24 +0900 | [diff] [blame] | 2918 | if (qc->flags & ATA_QCFLAG_RETRY) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2919 | ata_eh_qc_retry(qc); |
Tejun Heo | 03faab7 | 2008-03-27 19:14:24 +0900 | [diff] [blame] | 2920 | else |
| 2921 | ata_eh_qc_complete(qc); |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2922 | } else { |
| 2923 | if (qc->flags & ATA_QCFLAG_SENSE_VALID) { |
| 2924 | ata_eh_qc_complete(qc); |
| 2925 | } else { |
| 2926 | /* feed zero TF to sense generation */ |
| 2927 | memset(&qc->result_tf, 0, sizeof(qc->result_tf)); |
| 2928 | ata_eh_qc_retry(qc); |
| 2929 | } |
| 2930 | } |
| 2931 | } |
Tejun Heo | da917d6 | 2007-09-23 13:14:12 +0900 | [diff] [blame] | 2932 | |
| 2933 | /* make sure nr_active_links is zero after EH */ |
| 2934 | WARN_ON(ap->nr_active_links); |
| 2935 | ap->nr_active_links = 0; |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2936 | } |
| 2937 | |
| 2938 | /** |
| 2939 | * ata_do_eh - do standard error handling |
| 2940 | * @ap: host port to handle error for |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame] | 2941 | * |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2942 | * @prereset: prereset method (can be NULL) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2943 | * @softreset: softreset method (can be NULL) |
| 2944 | * @hardreset: hardreset method (can be NULL) |
| 2945 | * @postreset: postreset method (can be NULL) |
| 2946 | * |
| 2947 | * Perform standard error handling sequence. |
| 2948 | * |
| 2949 | * LOCKING: |
| 2950 | * Kernel thread context (may sleep). |
| 2951 | */ |
Tejun Heo | f5914a4 | 2006-05-31 18:27:48 +0900 | [diff] [blame] | 2952 | void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset, |
| 2953 | ata_reset_fn_t softreset, ata_reset_fn_t hardreset, |
| 2954 | ata_postreset_fn_t postreset) |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2955 | { |
Tejun Heo | 9b1e265 | 2007-08-06 18:36:24 +0900 | [diff] [blame] | 2956 | struct ata_device *dev; |
| 2957 | int rc; |
| 2958 | |
| 2959 | ata_eh_autopsy(ap); |
| 2960 | ata_eh_report(ap); |
| 2961 | |
| 2962 | rc = ata_eh_recover(ap, prereset, softreset, hardreset, postreset, |
| 2963 | NULL); |
| 2964 | if (rc) { |
| 2965 | ata_link_for_each_dev(dev, &ap->link) |
| 2966 | ata_dev_disable(dev); |
| 2967 | } |
| 2968 | |
Tejun Heo | 022bdb0 | 2006-05-15 20:58:22 +0900 | [diff] [blame] | 2969 | ata_eh_finish(ap); |
| 2970 | } |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 2971 | |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame] | 2972 | /** |
| 2973 | * ata_std_error_handler - standard error handler |
| 2974 | * @ap: host port to handle error for |
| 2975 | * |
| 2976 | * Standard error handler |
| 2977 | * |
| 2978 | * LOCKING: |
| 2979 | * Kernel thread context (may sleep). |
| 2980 | */ |
| 2981 | void ata_std_error_handler(struct ata_port *ap) |
| 2982 | { |
| 2983 | struct ata_port_operations *ops = ap->ops; |
| 2984 | ata_reset_fn_t hardreset = ops->hardreset; |
| 2985 | |
Tejun Heo | 57c9efd | 2008-04-07 22:47:19 +0900 | [diff] [blame] | 2986 | /* ignore built-in hardreset if SCR access is not available */ |
| 2987 | if (ata_is_builtin_hardreset(hardreset) && !sata_scr_valid(&ap->link)) |
Tejun Heo | a1efdab | 2008-03-25 12:22:50 +0900 | [diff] [blame] | 2988 | hardreset = NULL; |
| 2989 | |
| 2990 | ata_do_eh(ap, ops->prereset, ops->softreset, hardreset, ops->postreset); |
| 2991 | } |
| 2992 | |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 2993 | #ifdef CONFIG_PM |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 2994 | /** |
| 2995 | * ata_eh_handle_port_suspend - perform port suspend operation |
| 2996 | * @ap: port to suspend |
| 2997 | * |
| 2998 | * Suspend @ap. |
| 2999 | * |
| 3000 | * LOCKING: |
| 3001 | * Kernel thread context (may sleep). |
| 3002 | */ |
| 3003 | static void ata_eh_handle_port_suspend(struct ata_port *ap) |
| 3004 | { |
| 3005 | unsigned long flags; |
| 3006 | int rc = 0; |
| 3007 | |
| 3008 | /* are we suspending? */ |
| 3009 | spin_lock_irqsave(ap->lock, flags); |
| 3010 | if (!(ap->pflags & ATA_PFLAG_PM_PENDING) || |
| 3011 | ap->pm_mesg.event == PM_EVENT_ON) { |
| 3012 | spin_unlock_irqrestore(ap->lock, flags); |
| 3013 | return; |
| 3014 | } |
| 3015 | spin_unlock_irqrestore(ap->lock, flags); |
| 3016 | |
| 3017 | WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED); |
| 3018 | |
Tejun Heo | 64578a3 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 3019 | /* tell ACPI we're suspending */ |
| 3020 | rc = ata_acpi_on_suspend(ap); |
| 3021 | if (rc) |
| 3022 | goto out; |
| 3023 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3024 | /* suspend */ |
| 3025 | ata_eh_freeze_port(ap); |
| 3026 | |
| 3027 | if (ap->ops->port_suspend) |
| 3028 | rc = ap->ops->port_suspend(ap, ap->pm_mesg); |
| 3029 | |
Shaohua Li | bd3adca | 2007-11-02 09:32:38 +0800 | [diff] [blame] | 3030 | ata_acpi_set_state(ap, PMSG_SUSPEND); |
Tejun Heo | 64578a3 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 3031 | out: |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3032 | /* report result */ |
| 3033 | spin_lock_irqsave(ap->lock, flags); |
| 3034 | |
| 3035 | ap->pflags &= ~ATA_PFLAG_PM_PENDING; |
| 3036 | if (rc == 0) |
| 3037 | ap->pflags |= ATA_PFLAG_SUSPENDED; |
Tejun Heo | 64578a3 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 3038 | else if (ap->pflags & ATA_PFLAG_FROZEN) |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3039 | ata_port_schedule_eh(ap); |
| 3040 | |
| 3041 | if (ap->pm_result) { |
| 3042 | *ap->pm_result = rc; |
| 3043 | ap->pm_result = NULL; |
| 3044 | } |
| 3045 | |
| 3046 | spin_unlock_irqrestore(ap->lock, flags); |
| 3047 | |
| 3048 | return; |
| 3049 | } |
| 3050 | |
| 3051 | /** |
| 3052 | * ata_eh_handle_port_resume - perform port resume operation |
| 3053 | * @ap: port to resume |
| 3054 | * |
| 3055 | * Resume @ap. |
| 3056 | * |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3057 | * LOCKING: |
| 3058 | * Kernel thread context (may sleep). |
| 3059 | */ |
| 3060 | static void ata_eh_handle_port_resume(struct ata_port *ap) |
| 3061 | { |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3062 | unsigned long flags; |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 3063 | int rc = 0; |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3064 | |
| 3065 | /* are we resuming? */ |
| 3066 | spin_lock_irqsave(ap->lock, flags); |
| 3067 | if (!(ap->pflags & ATA_PFLAG_PM_PENDING) || |
| 3068 | ap->pm_mesg.event != PM_EVENT_ON) { |
| 3069 | spin_unlock_irqrestore(ap->lock, flags); |
| 3070 | return; |
| 3071 | } |
| 3072 | spin_unlock_irqrestore(ap->lock, flags); |
| 3073 | |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 3074 | WARN_ON(!(ap->pflags & ATA_PFLAG_SUSPENDED)); |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3075 | |
Shaohua Li | bd3adca | 2007-11-02 09:32:38 +0800 | [diff] [blame] | 3076 | ata_acpi_set_state(ap, PMSG_ON); |
| 3077 | |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3078 | if (ap->ops->port_resume) |
| 3079 | rc = ap->ops->port_resume(ap); |
| 3080 | |
Tejun Heo | 6746544 | 2007-05-15 03:28:16 +0900 | [diff] [blame] | 3081 | /* tell ACPI that we're resuming */ |
| 3082 | ata_acpi_on_resume(ap); |
| 3083 | |
Tejun Heo | 9666f40 | 2007-05-04 21:27:47 +0200 | [diff] [blame] | 3084 | /* report result */ |
Tejun Heo | 500530f | 2006-07-03 16:07:27 +0900 | [diff] [blame] | 3085 | spin_lock_irqsave(ap->lock, flags); |
| 3086 | ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED); |
| 3087 | if (ap->pm_result) { |
| 3088 | *ap->pm_result = rc; |
| 3089 | ap->pm_result = NULL; |
| 3090 | } |
| 3091 | spin_unlock_irqrestore(ap->lock, flags); |
| 3092 | } |
Tejun Heo | 6ffa01d | 2007-03-02 17:32:47 +0900 | [diff] [blame] | 3093 | #endif /* CONFIG_PM */ |