1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * libata-eh.c - libata error handling
4 *
5 * Copyright 2006 Tejun Heo <[email protected]>
6 *
7 * libata documentation is available via 'make {ps|pdf}docs',
8 * as Documentation/driver-api/libata.rst
9 *
10 * Hardware documentation available from http://www.t13.org/ and
11 * http://www.sata-io.org/
12 */
13
14 #include <linux/kernel.h>
15 #include <linux/blkdev.h>
16 #include <linux/export.h>
17 #include <linux/pci.h>
18 #include <scsi/scsi.h>
19 #include <scsi/scsi_host.h>
20 #include <scsi/scsi_eh.h>
21 #include <scsi/scsi_device.h>
22 #include <scsi/scsi_cmnd.h>
23 #include <scsi/scsi_dbg.h>
24 #include "../scsi/scsi_transport_api.h"
25
26 #include <linux/libata.h>
27
28 #include <trace/events/libata.h>
29 #include "libata.h"
30
31 enum {
32 /* speed down verdicts */
33 ATA_EH_SPDN_NCQ_OFF = (1 << 0),
34 ATA_EH_SPDN_SPEED_DOWN = (1 << 1),
35 ATA_EH_SPDN_FALLBACK_TO_PIO = (1 << 2),
36 ATA_EH_SPDN_KEEP_ERRORS = (1 << 3),
37
38 /* error flags */
39 ATA_EFLAG_IS_IO = (1 << 0),
40 ATA_EFLAG_DUBIOUS_XFER = (1 << 1),
41 ATA_EFLAG_OLD_ER = (1 << 31),
42
43 /* error categories */
44 ATA_ECAT_NONE = 0,
45 ATA_ECAT_ATA_BUS = 1,
46 ATA_ECAT_TOUT_HSM = 2,
47 ATA_ECAT_UNK_DEV = 3,
48 ATA_ECAT_DUBIOUS_NONE = 4,
49 ATA_ECAT_DUBIOUS_ATA_BUS = 5,
50 ATA_ECAT_DUBIOUS_TOUT_HSM = 6,
51 ATA_ECAT_DUBIOUS_UNK_DEV = 7,
52 ATA_ECAT_NR = 8,
53
54 ATA_EH_CMD_DFL_TIMEOUT = 5000,
55
56 /* always put at least this amount of time between resets */
57 ATA_EH_RESET_COOL_DOWN = 5000,
58
59 /* Waiting in ->prereset can never be reliable. It's
60 * sometimes nice to wait there but it can't be depended upon;
61 * otherwise, we wouldn't be resetting. Just give it enough
62 * time for most drives to spin up.
63 */
64 ATA_EH_PRERESET_TIMEOUT = 10000,
65 ATA_EH_FASTDRAIN_INTERVAL = 3000,
66
67 ATA_EH_UA_TRIES = 5,
68
69 /* probe speed down parameters, see ata_eh_schedule_probe() */
70 ATA_EH_PROBE_TRIAL_INTERVAL = 60000, /* 1 min */
71 ATA_EH_PROBE_TRIALS = 2,
72 };
73
74 /* The following table determines how we sequence resets. Each entry
75 * represents timeout for that try. The first try can be soft or
76 * hardreset. All others are hardreset if available. In most cases
77 * the first reset w/ 10sec timeout should succeed. Following entries
78 * are mostly for error handling, hotplug and those outlier devices that
79 * take an exceptionally long time to recover from reset.
80 */
81 static const unsigned int ata_eh_reset_timeouts[] = {
82 10000, /* most drives spin up by 10sec */
83 10000, /* > 99% working drives spin up before 20sec */
84 35000, /* give > 30 secs of idleness for outlier devices */
85 5000, /* and sweet one last chance */
86 UINT_MAX, /* > 1 min has elapsed, give up */
87 };
88
89 static const unsigned int ata_eh_identify_timeouts[] = {
90 5000, /* covers > 99% of successes and not too boring on failures */
91 10000, /* combined time till here is enough even for media access */
92 30000, /* for true idiots */
93 UINT_MAX,
94 };
95
96 static const unsigned int ata_eh_revalidate_timeouts[] = {
97 15000, /* Some drives are slow to read log pages when waking-up */
98 15000, /* combined time till here is enough even for media access */
99 UINT_MAX,
100 };
101
102 static const unsigned int ata_eh_flush_timeouts[] = {
103 15000, /* be generous with flush */
104 15000, /* ditto */
105 30000, /* and even more generous */
106 UINT_MAX,
107 };
108
109 static const unsigned int ata_eh_other_timeouts[] = {
110 5000, /* same rationale as identify timeout */
111 10000, /* ditto */
112 /* but no merciful 30sec for other commands, it just isn't worth it */
113 UINT_MAX,
114 };
115
116 struct ata_eh_cmd_timeout_ent {
117 const u8 *commands;
118 const unsigned int *timeouts;
119 };
120
121 /* The following table determines timeouts to use for EH internal
122 * commands. Each table entry is a command class and matches the
123 * commands the entry applies to and the timeout table to use.
124 *
125 * On the retry after a command timed out, the next timeout value from
126 * the table is used. If the table doesn't contain further entries,
127 * the last value is used.
128 *
129 * ehc->cmd_timeout_idx keeps track of which timeout to use per
130 * command class, so if SET_FEATURES times out on the first try, the
131 * next try will use the second timeout value only for that class.
132 */
133 #define CMDS(cmds...) (const u8 []){ cmds, 0 }
134 static const struct ata_eh_cmd_timeout_ent
135 ata_eh_cmd_timeout_table[ATA_EH_CMD_TIMEOUT_TABLE_SIZE] = {
136 { .commands = CMDS(ATA_CMD_ID_ATA, ATA_CMD_ID_ATAPI),
137 .timeouts = ata_eh_identify_timeouts, },
138 { .commands = CMDS(ATA_CMD_READ_LOG_EXT, ATA_CMD_READ_LOG_DMA_EXT),
139 .timeouts = ata_eh_revalidate_timeouts, },
140 { .commands = CMDS(ATA_CMD_READ_NATIVE_MAX, ATA_CMD_READ_NATIVE_MAX_EXT),
141 .timeouts = ata_eh_other_timeouts, },
142 { .commands = CMDS(ATA_CMD_SET_MAX, ATA_CMD_SET_MAX_EXT),
143 .timeouts = ata_eh_other_timeouts, },
144 { .commands = CMDS(ATA_CMD_SET_FEATURES),
145 .timeouts = ata_eh_other_timeouts, },
146 { .commands = CMDS(ATA_CMD_INIT_DEV_PARAMS),
147 .timeouts = ata_eh_other_timeouts, },
148 { .commands = CMDS(ATA_CMD_FLUSH, ATA_CMD_FLUSH_EXT),
149 .timeouts = ata_eh_flush_timeouts },
150 { .commands = CMDS(ATA_CMD_VERIFY),
151 .timeouts = ata_eh_reset_timeouts },
152 };
153 #undef CMDS
154
155 static void __ata_port_freeze(struct ata_port *ap);
156 static int ata_eh_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
157 struct ata_device **r_failed_dev);
158 #ifdef CONFIG_PM
159 static void ata_eh_handle_port_suspend(struct ata_port *ap);
160 static void ata_eh_handle_port_resume(struct ata_port *ap);
161 #else /* CONFIG_PM */
ata_eh_handle_port_suspend(struct ata_port * ap)162 static void ata_eh_handle_port_suspend(struct ata_port *ap)
163 { }
164
ata_eh_handle_port_resume(struct ata_port * ap)165 static void ata_eh_handle_port_resume(struct ata_port *ap)
166 { }
167 #endif /* CONFIG_PM */
168
__ata_ehi_pushv_desc(struct ata_eh_info * ehi,const char * fmt,va_list args)169 static __printf(2, 0) void __ata_ehi_pushv_desc(struct ata_eh_info *ehi,
170 const char *fmt, va_list args)
171 {
172 ehi->desc_len += vscnprintf(ehi->desc + ehi->desc_len,
173 ATA_EH_DESC_LEN - ehi->desc_len,
174 fmt, args);
175 }
176
177 /**
178 * __ata_ehi_push_desc - push error description without adding separator
179 * @ehi: target EHI
180 * @fmt: printf format string
181 *
182 * Format string according to @fmt and append it to @ehi->desc.
183 *
184 * LOCKING:
185 * spin_lock_irqsave(host lock)
186 */
__ata_ehi_push_desc(struct ata_eh_info * ehi,const char * fmt,...)187 void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
188 {
189 va_list args;
190
191 va_start(args, fmt);
192 __ata_ehi_pushv_desc(ehi, fmt, args);
193 va_end(args);
194 }
195 EXPORT_SYMBOL_GPL(__ata_ehi_push_desc);
196
197 /**
198 * ata_ehi_push_desc - push error description with separator
199 * @ehi: target EHI
200 * @fmt: printf format string
201 *
202 * Format string according to @fmt and append it to @ehi->desc.
203 * If @ehi->desc is not empty, ", " is added in-between.
204 *
205 * LOCKING:
206 * spin_lock_irqsave(host lock)
207 */
ata_ehi_push_desc(struct ata_eh_info * ehi,const char * fmt,...)208 void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
209 {
210 va_list args;
211
212 if (ehi->desc_len)
213 __ata_ehi_push_desc(ehi, ", ");
214
215 va_start(args, fmt);
216 __ata_ehi_pushv_desc(ehi, fmt, args);
217 va_end(args);
218 }
219 EXPORT_SYMBOL_GPL(ata_ehi_push_desc);
220
221 /**
222 * ata_ehi_clear_desc - clean error description
223 * @ehi: target EHI
224 *
225 * Clear @ehi->desc.
226 *
227 * LOCKING:
228 * spin_lock_irqsave(host lock)
229 */
ata_ehi_clear_desc(struct ata_eh_info * ehi)230 void ata_ehi_clear_desc(struct ata_eh_info *ehi)
231 {
232 ehi->desc[0] = '\0';
233 ehi->desc_len = 0;
234 }
235 EXPORT_SYMBOL_GPL(ata_ehi_clear_desc);
236
237 /**
238 * ata_port_desc - append port description
239 * @ap: target ATA port
240 * @fmt: printf format string
241 *
242 * Format string according to @fmt and append it to port
243 * description. If port description is not empty, " " is added
244 * in-between. This function is to be used while initializing
245 * ata_host. The description is printed on host registration.
246 *
247 * LOCKING:
248 * None.
249 */
ata_port_desc(struct ata_port * ap,const char * fmt,...)250 void ata_port_desc(struct ata_port *ap, const char *fmt, ...)
251 {
252 va_list args;
253
254 WARN_ON(!(ap->pflags & ATA_PFLAG_INITIALIZING));
255
256 if (ap->link.eh_info.desc_len)
257 __ata_ehi_push_desc(&ap->link.eh_info, " ");
258
259 va_start(args, fmt);
260 __ata_ehi_pushv_desc(&ap->link.eh_info, fmt, args);
261 va_end(args);
262 }
263 EXPORT_SYMBOL_GPL(ata_port_desc);
264
265 #ifdef CONFIG_PCI
266 /**
267 * ata_port_pbar_desc - append PCI BAR description
268 * @ap: target ATA port
269 * @bar: target PCI BAR
270 * @offset: offset into PCI BAR
271 * @name: name of the area
272 *
273 * If @offset is negative, this function formats a string which
274 * contains the name, address, size and type of the BAR and
275 * appends it to the port description. If @offset is zero or
276 * positive, only name and offsetted address is appended.
277 *
278 * LOCKING:
279 * None.
280 */
ata_port_pbar_desc(struct ata_port * ap,int bar,ssize_t offset,const char * name)281 void ata_port_pbar_desc(struct ata_port *ap, int bar, ssize_t offset,
282 const char *name)
283 {
284 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
285 char *type = "";
286 unsigned long long start, len;
287
288 if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
289 type = "m";
290 else if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
291 type = "i";
292
293 start = (unsigned long long)pci_resource_start(pdev, bar);
294 len = (unsigned long long)pci_resource_len(pdev, bar);
295
296 if (offset < 0)
297 ata_port_desc(ap, "%s %s%llu@0x%llx", name, type, len, start);
298 else
299 ata_port_desc(ap, "%s 0x%llx", name,
300 start + (unsigned long long)offset);
301 }
302 EXPORT_SYMBOL_GPL(ata_port_pbar_desc);
303 #endif /* CONFIG_PCI */
304
ata_lookup_timeout_table(u8 cmd)305 static int ata_lookup_timeout_table(u8 cmd)
306 {
307 int i;
308
309 for (i = 0; i < ATA_EH_CMD_TIMEOUT_TABLE_SIZE; i++) {
310 const u8 *cur;
311
312 for (cur = ata_eh_cmd_timeout_table[i].commands; *cur; cur++)
313 if (*cur == cmd)
314 return i;
315 }
316
317 return -1;
318 }
319
320 /**
321 * ata_internal_cmd_timeout - determine timeout for an internal command
322 * @dev: target device
323 * @cmd: internal command to be issued
324 *
325 * Determine timeout for internal command @cmd for @dev.
326 *
327 * LOCKING:
328 * EH context.
329 *
330 * RETURNS:
331 * Determined timeout.
332 */
ata_internal_cmd_timeout(struct ata_device * dev,u8 cmd)333 unsigned int ata_internal_cmd_timeout(struct ata_device *dev, u8 cmd)
334 {
335 struct ata_eh_context *ehc = &dev->link->eh_context;
336 int ent = ata_lookup_timeout_table(cmd);
337 int idx;
338
339 if (ent < 0)
340 return ATA_EH_CMD_DFL_TIMEOUT;
341
342 idx = ehc->cmd_timeout_idx[dev->devno][ent];
343 return ata_eh_cmd_timeout_table[ent].timeouts[idx];
344 }
345
346 /**
347 * ata_internal_cmd_timed_out - notification for internal command timeout
348 * @dev: target device
349 * @cmd: internal command which timed out
350 *
351 * Notify EH that internal command @cmd for @dev timed out. This
352 * function should be called only for commands whose timeouts are
353 * determined using ata_internal_cmd_timeout().
354 *
355 * LOCKING:
356 * EH context.
357 */
ata_internal_cmd_timed_out(struct ata_device * dev,u8 cmd)358 void ata_internal_cmd_timed_out(struct ata_device *dev, u8 cmd)
359 {
360 struct ata_eh_context *ehc = &dev->link->eh_context;
361 int ent = ata_lookup_timeout_table(cmd);
362 int idx;
363
364 if (ent < 0)
365 return;
366
367 idx = ehc->cmd_timeout_idx[dev->devno][ent];
368 if (ata_eh_cmd_timeout_table[ent].timeouts[idx + 1] != UINT_MAX)
369 ehc->cmd_timeout_idx[dev->devno][ent]++;
370 }
371
ata_ering_record(struct ata_ering * ering,unsigned int eflags,unsigned int err_mask)372 static void ata_ering_record(struct ata_ering *ering, unsigned int eflags,
373 unsigned int err_mask)
374 {
375 struct ata_ering_entry *ent;
376
377 WARN_ON(!err_mask);
378
379 ering->cursor++;
380 ering->cursor %= ATA_ERING_SIZE;
381
382 ent = &ering->ring[ering->cursor];
383 ent->eflags = eflags;
384 ent->err_mask = err_mask;
385 ent->timestamp = get_jiffies_64();
386 }
387
ata_ering_top(struct ata_ering * ering)388 static struct ata_ering_entry *ata_ering_top(struct ata_ering *ering)
389 {
390 struct ata_ering_entry *ent = &ering->ring[ering->cursor];
391
392 if (ent->err_mask)
393 return ent;
394 return NULL;
395 }
396
ata_ering_map(struct ata_ering * ering,int (* map_fn)(struct ata_ering_entry *,void *),void * arg)397 int ata_ering_map(struct ata_ering *ering,
398 int (*map_fn)(struct ata_ering_entry *, void *),
399 void *arg)
400 {
401 int idx, rc = 0;
402 struct ata_ering_entry *ent;
403
404 idx = ering->cursor;
405 do {
406 ent = &ering->ring[idx];
407 if (!ent->err_mask)
408 break;
409 rc = map_fn(ent, arg);
410 if (rc)
411 break;
412 idx = (idx - 1 + ATA_ERING_SIZE) % ATA_ERING_SIZE;
413 } while (idx != ering->cursor);
414
415 return rc;
416 }
417
ata_ering_clear_cb(struct ata_ering_entry * ent,void * void_arg)418 static int ata_ering_clear_cb(struct ata_ering_entry *ent, void *void_arg)
419 {
420 ent->eflags |= ATA_EFLAG_OLD_ER;
421 return 0;
422 }
423
ata_ering_clear(struct ata_ering * ering)424 static void ata_ering_clear(struct ata_ering *ering)
425 {
426 ata_ering_map(ering, ata_ering_clear_cb, NULL);
427 }
428
ata_eh_dev_action(struct ata_device * dev)429 static unsigned int ata_eh_dev_action(struct ata_device *dev)
430 {
431 struct ata_eh_context *ehc = &dev->link->eh_context;
432
433 return ehc->i.action | ehc->i.dev_action[dev->devno];
434 }
435
ata_eh_clear_action(struct ata_link * link,struct ata_device * dev,struct ata_eh_info * ehi,unsigned int action)436 static void ata_eh_clear_action(struct ata_link *link, struct ata_device *dev,
437 struct ata_eh_info *ehi, unsigned int action)
438 {
439 struct ata_device *tdev;
440
441 if (!dev) {
442 ehi->action &= ~action;
443 ata_for_each_dev(tdev, link, ALL)
444 ehi->dev_action[tdev->devno] &= ~action;
445 } else {
446 /* doesn't make sense for port-wide EH actions */
447 WARN_ON(!(action & ATA_EH_PERDEV_MASK));
448
449 /* break ehi->action into ehi->dev_action */
450 if (ehi->action & action) {
451 ata_for_each_dev(tdev, link, ALL)
452 ehi->dev_action[tdev->devno] |=
453 ehi->action & action;
454 ehi->action &= ~action;
455 }
456
457 /* turn off the specified per-dev action */
458 ehi->dev_action[dev->devno] &= ~action;
459 }
460 }
461
462 /**
463 * ata_eh_acquire - acquire EH ownership
464 * @ap: ATA port to acquire EH ownership for
465 *
466 * Acquire EH ownership for @ap. This is the basic exclusion
467 * mechanism for ports sharing a host. Only one port hanging off
468 * the same host can claim the ownership of EH.
469 *
470 * LOCKING:
471 * EH context.
472 */
ata_eh_acquire(struct ata_port * ap)473 void ata_eh_acquire(struct ata_port *ap)
474 {
475 mutex_lock(&ap->host->eh_mutex);
476 WARN_ON_ONCE(ap->host->eh_owner);
477 ap->host->eh_owner = current;
478 }
479
480 /**
481 * ata_eh_release - release EH ownership
482 * @ap: ATA port to release EH ownership for
483 *
484 * Release EH ownership for @ap if the caller. The caller must
485 * have acquired EH ownership using ata_eh_acquire() previously.
486 *
487 * LOCKING:
488 * EH context.
489 */
ata_eh_release(struct ata_port * ap)490 void ata_eh_release(struct ata_port *ap)
491 {
492 WARN_ON_ONCE(ap->host->eh_owner != current);
493 ap->host->eh_owner = NULL;
494 mutex_unlock(&ap->host->eh_mutex);
495 }
496
ata_eh_dev_disable(struct ata_device * dev)497 static void ata_eh_dev_disable(struct ata_device *dev)
498 {
499 ata_acpi_on_disable(dev);
500 ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 | ATA_DNXFER_QUIET);
501 dev->class++;
502
503 /*
504 * From now till the next successful probe, ering is used to
505 * track probe failures. Clear accumulated device error info.
506 */
507 ata_ering_clear(&dev->ering);
508
509 ata_dev_free_resources(dev);
510 }
511
ata_eh_unload(struct ata_port * ap)512 static void ata_eh_unload(struct ata_port *ap)
513 {
514 struct ata_link *link;
515 struct ata_device *dev;
516 unsigned long flags;
517
518 /*
519 * Unless we are restarting, transition all enabled devices to
520 * standby power mode.
521 */
522 if (system_state != SYSTEM_RESTART) {
523 ata_for_each_link(link, ap, PMP_FIRST) {
524 ata_for_each_dev(dev, link, ENABLED)
525 ata_dev_power_set_standby(dev);
526 }
527 }
528
529 /*
530 * Restore SControl IPM and SPD for the next driver and
531 * disable attached devices.
532 */
533 ata_for_each_link(link, ap, PMP_FIRST) {
534 sata_scr_write(link, SCR_CONTROL, link->saved_scontrol & 0xff0);
535 ata_for_each_dev(dev, link, ENABLED)
536 ata_eh_dev_disable(dev);
537 }
538
539 /* freeze and set UNLOADED */
540 spin_lock_irqsave(ap->lock, flags);
541
542 ata_port_freeze(ap); /* won't be thawed */
543 ap->pflags &= ~ATA_PFLAG_EH_PENDING; /* clear pending from freeze */
544 ap->pflags |= ATA_PFLAG_UNLOADED;
545
546 spin_unlock_irqrestore(ap->lock, flags);
547 }
548
549 /**
550 * ata_scsi_error - SCSI layer error handler callback
551 * @host: SCSI host on which error occurred
552 *
553 * Handles SCSI-layer-thrown error events.
554 *
555 * LOCKING:
556 * Inherited from SCSI layer (none, can sleep)
557 *
558 * RETURNS:
559 * Zero.
560 */
ata_scsi_error(struct Scsi_Host * host)561 void ata_scsi_error(struct Scsi_Host *host)
562 {
563 struct ata_port *ap = ata_shost_to_port(host);
564 unsigned long flags;
565 LIST_HEAD(eh_work_q);
566
567 spin_lock_irqsave(host->host_lock, flags);
568 list_splice_init(&host->eh_cmd_q, &eh_work_q);
569 spin_unlock_irqrestore(host->host_lock, flags);
570
571 ata_scsi_cmd_error_handler(host, ap, &eh_work_q);
572
573 /* If we timed raced normal completion and there is nothing to
574 recover nr_timedout == 0 why exactly are we doing error recovery ? */
575 ata_scsi_port_error_handler(host, ap);
576
577 /* finish or retry handled scmd's and clean up */
578 WARN_ON(!list_empty(&eh_work_q));
579
580 }
581
582 /**
583 * ata_scsi_cmd_error_handler - error callback for a list of commands
584 * @host: scsi host containing the port
585 * @ap: ATA port within the host
586 * @eh_work_q: list of commands to process
587 *
588 * process the given list of commands and return those finished to the
589 * ap->eh_done_q. This function is the first part of the libata error
590 * handler which processes a given list of failed commands.
591 */
ata_scsi_cmd_error_handler(struct Scsi_Host * host,struct ata_port * ap,struct list_head * eh_work_q)592 void ata_scsi_cmd_error_handler(struct Scsi_Host *host, struct ata_port *ap,
593 struct list_head *eh_work_q)
594 {
595 int i;
596 unsigned long flags;
597 struct scsi_cmnd *scmd, *tmp;
598 int nr_timedout = 0;
599
600 /* make sure sff pio task is not running */
601 ata_sff_flush_pio_task(ap);
602
603 /* synchronize with host lock and sort out timeouts */
604
605 /*
606 * For EH, all qcs are finished in one of three ways -
607 * normal completion, error completion, and SCSI timeout.
608 * Both completions can race against SCSI timeout. When normal
609 * completion wins, the qc never reaches EH. When error
610 * completion wins, the qc has ATA_QCFLAG_EH set.
611 *
612 * When SCSI timeout wins, things are a bit more complex.
613 * Normal or error completion can occur after the timeout but
614 * before this point. In such cases, both types of
615 * completions are honored. A scmd is determined to have
616 * timed out iff its associated qc is active and not failed.
617 */
618 spin_lock_irqsave(ap->lock, flags);
619
620 /*
621 * This must occur under the ap->lock as we don't want
622 * a polled recovery to race the real interrupt handler
623 *
624 * The lost_interrupt handler checks for any completed but
625 * non-notified command and completes much like an IRQ handler.
626 *
627 * We then fall into the error recovery code which will treat
628 * this as if normal completion won the race
629 */
630 if (ap->ops->lost_interrupt)
631 ap->ops->lost_interrupt(ap);
632
633 list_for_each_entry_safe(scmd, tmp, eh_work_q, eh_entry) {
634 struct ata_queued_cmd *qc;
635
636 /*
637 * If the scmd was added to EH, via ata_qc_schedule_eh() ->
638 * scsi_timeout() -> scsi_eh_scmd_add(), scsi_timeout() will
639 * have set DID_TIME_OUT (since libata does not have an abort
640 * handler). Thus, to clear DID_TIME_OUT, clear the host byte.
641 */
642 set_host_byte(scmd, DID_OK);
643
644 ata_qc_for_each_raw(ap, qc, i) {
645 if (qc->flags & ATA_QCFLAG_ACTIVE &&
646 qc->scsicmd == scmd)
647 break;
648 }
649
650 if (i < ATA_MAX_QUEUE) {
651 /* the scmd has an associated qc */
652 if (!(qc->flags & ATA_QCFLAG_EH)) {
653 /* which hasn't failed yet, timeout */
654 set_host_byte(scmd, DID_TIME_OUT);
655 qc->err_mask |= AC_ERR_TIMEOUT;
656 qc->flags |= ATA_QCFLAG_EH;
657 nr_timedout++;
658 }
659 } else {
660 /* Normal completion occurred after
661 * SCSI timeout but before this point.
662 * Successfully complete it.
663 */
664 scmd->retries = scmd->allowed;
665 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
666 }
667 }
668
669 /*
670 * If we have timed out qcs. They belong to EH from
671 * this point but the state of the controller is
672 * unknown. Freeze the port to make sure the IRQ
673 * handler doesn't diddle with those qcs. This must
674 * be done atomically w.r.t. setting ATA_QCFLAG_EH.
675 */
676 if (nr_timedout)
677 __ata_port_freeze(ap);
678
679 /* initialize eh_tries */
680 ap->eh_tries = ATA_EH_MAX_TRIES;
681
682 spin_unlock_irqrestore(ap->lock, flags);
683 }
684 EXPORT_SYMBOL(ata_scsi_cmd_error_handler);
685
686 /**
687 * ata_scsi_port_error_handler - recover the port after the commands
688 * @host: SCSI host containing the port
689 * @ap: the ATA port
690 *
691 * Handle the recovery of the port @ap after all the commands
692 * have been recovered.
693 */
ata_scsi_port_error_handler(struct Scsi_Host * host,struct ata_port * ap)694 void ata_scsi_port_error_handler(struct Scsi_Host *host, struct ata_port *ap)
695 {
696 unsigned long flags;
697 struct ata_link *link;
698
699 /* acquire EH ownership */
700 ata_eh_acquire(ap);
701 repeat:
702 /* kill fast drain timer */
703 del_timer_sync(&ap->fastdrain_timer);
704
705 /* process port resume request */
706 ata_eh_handle_port_resume(ap);
707
708 /* fetch & clear EH info */
709 spin_lock_irqsave(ap->lock, flags);
710
711 ata_for_each_link(link, ap, HOST_FIRST) {
712 struct ata_eh_context *ehc = &link->eh_context;
713 struct ata_device *dev;
714
715 memset(&link->eh_context, 0, sizeof(link->eh_context));
716 link->eh_context.i = link->eh_info;
717 memset(&link->eh_info, 0, sizeof(link->eh_info));
718
719 ata_for_each_dev(dev, link, ENABLED) {
720 int devno = dev->devno;
721
722 ehc->saved_xfer_mode[devno] = dev->xfer_mode;
723 if (ata_ncq_enabled(dev))
724 ehc->saved_ncq_enabled |= 1 << devno;
725
726 /* If we are resuming, wake up the device */
727 if (ap->pflags & ATA_PFLAG_RESUMING) {
728 dev->flags |= ATA_DFLAG_RESUMING;
729 ehc->i.dev_action[devno] |= ATA_EH_SET_ACTIVE;
730 }
731 }
732 }
733
734 ap->pflags |= ATA_PFLAG_EH_IN_PROGRESS;
735 ap->pflags &= ~ATA_PFLAG_EH_PENDING;
736 ap->excl_link = NULL; /* don't maintain exclusion over EH */
737
738 spin_unlock_irqrestore(ap->lock, flags);
739
740 /* invoke EH, skip if unloading or suspended */
741 if (!(ap->pflags & (ATA_PFLAG_UNLOADING | ATA_PFLAG_SUSPENDED)))
742 ap->ops->error_handler(ap);
743 else {
744 /* if unloading, commence suicide */
745 if ((ap->pflags & ATA_PFLAG_UNLOADING) &&
746 !(ap->pflags & ATA_PFLAG_UNLOADED))
747 ata_eh_unload(ap);
748 ata_eh_finish(ap);
749 }
750
751 /* process port suspend request */
752 ata_eh_handle_port_suspend(ap);
753
754 /*
755 * Exception might have happened after ->error_handler recovered the
756 * port but before this point. Repeat EH in such case.
757 */
758 spin_lock_irqsave(ap->lock, flags);
759
760 if (ap->pflags & ATA_PFLAG_EH_PENDING) {
761 if (--ap->eh_tries) {
762 spin_unlock_irqrestore(ap->lock, flags);
763 goto repeat;
764 }
765 ata_port_err(ap,
766 "EH pending after %d tries, giving up\n",
767 ATA_EH_MAX_TRIES);
768 ap->pflags &= ~ATA_PFLAG_EH_PENDING;
769 }
770
771 /* this run is complete, make sure EH info is clear */
772 ata_for_each_link(link, ap, HOST_FIRST)
773 memset(&link->eh_info, 0, sizeof(link->eh_info));
774
775 /*
776 * end eh (clear host_eh_scheduled) while holding ap->lock such that if
777 * exception occurs after this point but before EH completion, SCSI
778 * midlayer will re-initiate EH.
779 */
780 ap->ops->end_eh(ap);
781
782 spin_unlock_irqrestore(ap->lock, flags);
783 ata_eh_release(ap);
784
785 scsi_eh_flush_done_q(&ap->eh_done_q);
786
787 /* clean up */
788 spin_lock_irqsave(ap->lock, flags);
789
790 ap->pflags &= ~ATA_PFLAG_RESUMING;
791
792 if (ap->pflags & ATA_PFLAG_LOADING)
793 ap->pflags &= ~ATA_PFLAG_LOADING;
794 else if ((ap->pflags & ATA_PFLAG_SCSI_HOTPLUG) &&
795 !(ap->flags & ATA_FLAG_SAS_HOST))
796 schedule_delayed_work(&ap->hotplug_task, 0);
797
798 if (ap->pflags & ATA_PFLAG_RECOVERED)
799 ata_port_info(ap, "EH complete\n");
800
801 ap->pflags &= ~(ATA_PFLAG_SCSI_HOTPLUG | ATA_PFLAG_RECOVERED);
802
803 /* tell wait_eh that we're done */
804 ap->pflags &= ~ATA_PFLAG_EH_IN_PROGRESS;
805 wake_up_all(&ap->eh_wait_q);
806
807 spin_unlock_irqrestore(ap->lock, flags);
808 }
809 EXPORT_SYMBOL_GPL(ata_scsi_port_error_handler);
810
811 /**
812 * ata_port_wait_eh - Wait for the currently pending EH to complete
813 * @ap: Port to wait EH for
814 *
815 * Wait until the currently pending EH is complete.
816 *
817 * LOCKING:
818 * Kernel thread context (may sleep).
819 */
ata_port_wait_eh(struct ata_port * ap)820 void ata_port_wait_eh(struct ata_port *ap)
821 {
822 unsigned long flags;
823 DEFINE_WAIT(wait);
824
825 retry:
826 spin_lock_irqsave(ap->lock, flags);
827
828 while (ap->pflags & (ATA_PFLAG_EH_PENDING | ATA_PFLAG_EH_IN_PROGRESS)) {
829 prepare_to_wait(&ap->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE);
830 spin_unlock_irqrestore(ap->lock, flags);
831 schedule();
832 spin_lock_irqsave(ap->lock, flags);
833 }
834 finish_wait(&ap->eh_wait_q, &wait);
835
836 spin_unlock_irqrestore(ap->lock, flags);
837
838 /* make sure SCSI EH is complete */
839 if (scsi_host_in_recovery(ap->scsi_host)) {
840 ata_msleep(ap, 10);
841 goto retry;
842 }
843 }
844 EXPORT_SYMBOL_GPL(ata_port_wait_eh);
845
ata_eh_nr_in_flight(struct ata_port * ap)846 static unsigned int ata_eh_nr_in_flight(struct ata_port *ap)
847 {
848 struct ata_queued_cmd *qc;
849 unsigned int tag;
850 unsigned int nr = 0;
851
852 /* count only non-internal commands */
853 ata_qc_for_each(ap, qc, tag) {
854 if (qc)
855 nr++;
856 }
857
858 return nr;
859 }
860
ata_eh_fastdrain_timerfn(struct timer_list * t)861 void ata_eh_fastdrain_timerfn(struct timer_list *t)
862 {
863 struct ata_port *ap = from_timer(ap, t, fastdrain_timer);
864 unsigned long flags;
865 unsigned int cnt;
866
867 spin_lock_irqsave(ap->lock, flags);
868
869 cnt = ata_eh_nr_in_flight(ap);
870
871 /* are we done? */
872 if (!cnt)
873 goto out_unlock;
874
875 if (cnt == ap->fastdrain_cnt) {
876 struct ata_queued_cmd *qc;
877 unsigned int tag;
878
879 /* No progress during the last interval, tag all
880 * in-flight qcs as timed out and freeze the port.
881 */
882 ata_qc_for_each(ap, qc, tag) {
883 if (qc)
884 qc->err_mask |= AC_ERR_TIMEOUT;
885 }
886
887 ata_port_freeze(ap);
888 } else {
889 /* some qcs have finished, give it another chance */
890 ap->fastdrain_cnt = cnt;
891 ap->fastdrain_timer.expires =
892 ata_deadline(jiffies, ATA_EH_FASTDRAIN_INTERVAL);
893 add_timer(&ap->fastdrain_timer);
894 }
895
896 out_unlock:
897 spin_unlock_irqrestore(ap->lock, flags);
898 }
899
900 /**
901 * ata_eh_set_pending - set ATA_PFLAG_EH_PENDING and activate fast drain
902 * @ap: target ATA port
903 * @fastdrain: activate fast drain
904 *
905 * Set ATA_PFLAG_EH_PENDING and activate fast drain if @fastdrain
906 * is non-zero and EH wasn't pending before. Fast drain ensures
907 * that EH kicks in in timely manner.
908 *
909 * LOCKING:
910 * spin_lock_irqsave(host lock)
911 */
ata_eh_set_pending(struct ata_port * ap,int fastdrain)912 static void ata_eh_set_pending(struct ata_port *ap, int fastdrain)
913 {
914 unsigned int cnt;
915
916 /* already scheduled? */
917 if (ap->pflags & ATA_PFLAG_EH_PENDING)
918 return;
919
920 ap->pflags |= ATA_PFLAG_EH_PENDING;
921
922 if (!fastdrain)
923 return;
924
925 /* do we have in-flight qcs? */
926 cnt = ata_eh_nr_in_flight(ap);
927 if (!cnt)
928 return;
929
930 /* activate fast drain */
931 ap->fastdrain_cnt = cnt;
932 ap->fastdrain_timer.expires =
933 ata_deadline(jiffies, ATA_EH_FASTDRAIN_INTERVAL);
934 add_timer(&ap->fastdrain_timer);
935 }
936
937 /**
938 * ata_qc_schedule_eh - schedule qc for error handling
939 * @qc: command to schedule error handling for
940 *
941 * Schedule error handling for @qc. EH will kick in as soon as
942 * other commands are drained.
943 *
944 * LOCKING:
945 * spin_lock_irqsave(host lock)
946 */
ata_qc_schedule_eh(struct ata_queued_cmd * qc)947 void ata_qc_schedule_eh(struct ata_queued_cmd *qc)
948 {
949 struct ata_port *ap = qc->ap;
950
951 qc->flags |= ATA_QCFLAG_EH;
952 ata_eh_set_pending(ap, 1);
953
954 /* The following will fail if timeout has already expired.
955 * ata_scsi_error() takes care of such scmds on EH entry.
956 * Note that ATA_QCFLAG_EH is unconditionally set after
957 * this function completes.
958 */
959 blk_abort_request(scsi_cmd_to_rq(qc->scsicmd));
960 }
961
962 /**
963 * ata_std_sched_eh - non-libsas ata_ports issue eh with this common routine
964 * @ap: ATA port to schedule EH for
965 *
966 * LOCKING: inherited from ata_port_schedule_eh
967 * spin_lock_irqsave(host lock)
968 */
ata_std_sched_eh(struct ata_port * ap)969 void ata_std_sched_eh(struct ata_port *ap)
970 {
971 if (ap->pflags & ATA_PFLAG_INITIALIZING)
972 return;
973
974 ata_eh_set_pending(ap, 1);
975 scsi_schedule_eh(ap->scsi_host);
976
977 trace_ata_std_sched_eh(ap);
978 }
979 EXPORT_SYMBOL_GPL(ata_std_sched_eh);
980
981 /**
982 * ata_std_end_eh - non-libsas ata_ports complete eh with this common routine
983 * @ap: ATA port to end EH for
984 *
985 * In the libata object model there is a 1:1 mapping of ata_port to
986 * shost, so host fields can be directly manipulated under ap->lock, in
987 * the libsas case we need to hold a lock at the ha->level to coordinate
988 * these events.
989 *
990 * LOCKING:
991 * spin_lock_irqsave(host lock)
992 */
ata_std_end_eh(struct ata_port * ap)993 void ata_std_end_eh(struct ata_port *ap)
994 {
995 struct Scsi_Host *host = ap->scsi_host;
996
997 host->host_eh_scheduled = 0;
998 }
999 EXPORT_SYMBOL(ata_std_end_eh);
1000
1001
1002 /**
1003 * ata_port_schedule_eh - schedule error handling without a qc
1004 * @ap: ATA port to schedule EH for
1005 *
1006 * Schedule error handling for @ap. EH will kick in as soon as
1007 * all commands are drained.
1008 *
1009 * LOCKING:
1010 * spin_lock_irqsave(host lock)
1011 */
ata_port_schedule_eh(struct ata_port * ap)1012 void ata_port_schedule_eh(struct ata_port *ap)
1013 {
1014 /* see: ata_std_sched_eh, unless you know better */
1015 ap->ops->sched_eh(ap);
1016 }
1017 EXPORT_SYMBOL_GPL(ata_port_schedule_eh);
1018
ata_do_link_abort(struct ata_port * ap,struct ata_link * link)1019 static int ata_do_link_abort(struct ata_port *ap, struct ata_link *link)
1020 {
1021 struct ata_queued_cmd *qc;
1022 int tag, nr_aborted = 0;
1023
1024 /* we're gonna abort all commands, no need for fast drain */
1025 ata_eh_set_pending(ap, 0);
1026
1027 /* include internal tag in iteration */
1028 ata_qc_for_each_with_internal(ap, qc, tag) {
1029 if (qc && (!link || qc->dev->link == link)) {
1030 qc->flags |= ATA_QCFLAG_EH;
1031 ata_qc_complete(qc);
1032 nr_aborted++;
1033 }
1034 }
1035
1036 if (!nr_aborted)
1037 ata_port_schedule_eh(ap);
1038
1039 return nr_aborted;
1040 }
1041
1042 /**
1043 * ata_link_abort - abort all qc's on the link
1044 * @link: ATA link to abort qc's for
1045 *
1046 * Abort all active qc's active on @link and schedule EH.
1047 *
1048 * LOCKING:
1049 * spin_lock_irqsave(host lock)
1050 *
1051 * RETURNS:
1052 * Number of aborted qc's.
1053 */
ata_link_abort(struct ata_link * link)1054 int ata_link_abort(struct ata_link *link)
1055 {
1056 return ata_do_link_abort(link->ap, link);
1057 }
1058 EXPORT_SYMBOL_GPL(ata_link_abort);
1059
1060 /**
1061 * ata_port_abort - abort all qc's on the port
1062 * @ap: ATA port to abort qc's for
1063 *
1064 * Abort all active qc's of @ap and schedule EH.
1065 *
1066 * LOCKING:
1067 * spin_lock_irqsave(host_set lock)
1068 *
1069 * RETURNS:
1070 * Number of aborted qc's.
1071 */
ata_port_abort(struct ata_port * ap)1072 int ata_port_abort(struct ata_port *ap)
1073 {
1074 return ata_do_link_abort(ap, NULL);
1075 }
1076 EXPORT_SYMBOL_GPL(ata_port_abort);
1077
1078 /**
1079 * __ata_port_freeze - freeze port
1080 * @ap: ATA port to freeze
1081 *
1082 * This function is called when HSM violation or some other
1083 * condition disrupts normal operation of the port. Frozen port
1084 * is not allowed to perform any operation until the port is
1085 * thawed, which usually follows a successful reset.
1086 *
1087 * ap->ops->freeze() callback can be used for freezing the port
1088 * hardware-wise (e.g. mask interrupt and stop DMA engine). If a
1089 * port cannot be frozen hardware-wise, the interrupt handler
1090 * must ack and clear interrupts unconditionally while the port
1091 * is frozen.
1092 *
1093 * LOCKING:
1094 * spin_lock_irqsave(host lock)
1095 */
__ata_port_freeze(struct ata_port * ap)1096 static void __ata_port_freeze(struct ata_port *ap)
1097 {
1098 if (ap->ops->freeze)
1099 ap->ops->freeze(ap);
1100
1101 ap->pflags |= ATA_PFLAG_FROZEN;
1102
1103 trace_ata_port_freeze(ap);
1104 }
1105
1106 /**
1107 * ata_port_freeze - abort & freeze port
1108 * @ap: ATA port to freeze
1109 *
1110 * Abort and freeze @ap. The freeze operation must be called
1111 * first, because some hardware requires special operations
1112 * before the taskfile registers are accessible.
1113 *
1114 * LOCKING:
1115 * spin_lock_irqsave(host lock)
1116 *
1117 * RETURNS:
1118 * Number of aborted commands.
1119 */
ata_port_freeze(struct ata_port * ap)1120 int ata_port_freeze(struct ata_port *ap)
1121 {
1122 __ata_port_freeze(ap);
1123
1124 return ata_port_abort(ap);
1125 }
1126 EXPORT_SYMBOL_GPL(ata_port_freeze);
1127
1128 /**
1129 * ata_eh_freeze_port - EH helper to freeze port
1130 * @ap: ATA port to freeze
1131 *
1132 * Freeze @ap.
1133 *
1134 * LOCKING:
1135 * None.
1136 */
ata_eh_freeze_port(struct ata_port * ap)1137 void ata_eh_freeze_port(struct ata_port *ap)
1138 {
1139 unsigned long flags;
1140
1141 spin_lock_irqsave(ap->lock, flags);
1142 __ata_port_freeze(ap);
1143 spin_unlock_irqrestore(ap->lock, flags);
1144 }
1145 EXPORT_SYMBOL_GPL(ata_eh_freeze_port);
1146
1147 /**
1148 * ata_eh_thaw_port - EH helper to thaw port
1149 * @ap: ATA port to thaw
1150 *
1151 * Thaw frozen port @ap.
1152 *
1153 * LOCKING:
1154 * None.
1155 */
ata_eh_thaw_port(struct ata_port * ap)1156 void ata_eh_thaw_port(struct ata_port *ap)
1157 {
1158 unsigned long flags;
1159
1160 spin_lock_irqsave(ap->lock, flags);
1161
1162 ap->pflags &= ~ATA_PFLAG_FROZEN;
1163
1164 if (ap->ops->thaw)
1165 ap->ops->thaw(ap);
1166
1167 spin_unlock_irqrestore(ap->lock, flags);
1168
1169 trace_ata_port_thaw(ap);
1170 }
1171
ata_eh_scsidone(struct scsi_cmnd * scmd)1172 static void ata_eh_scsidone(struct scsi_cmnd *scmd)
1173 {
1174 /* nada */
1175 }
1176
__ata_eh_qc_complete(struct ata_queued_cmd * qc)1177 static void __ata_eh_qc_complete(struct ata_queued_cmd *qc)
1178 {
1179 struct ata_port *ap = qc->ap;
1180 struct scsi_cmnd *scmd = qc->scsicmd;
1181 unsigned long flags;
1182
1183 spin_lock_irqsave(ap->lock, flags);
1184 qc->scsidone = ata_eh_scsidone;
1185 __ata_qc_complete(qc);
1186 WARN_ON(ata_tag_valid(qc->tag));
1187 spin_unlock_irqrestore(ap->lock, flags);
1188
1189 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
1190 }
1191
1192 /**
1193 * ata_eh_qc_complete - Complete an active ATA command from EH
1194 * @qc: Command to complete
1195 *
1196 * Indicate to the mid and upper layers that an ATA command has
1197 * completed. To be used from EH.
1198 */
ata_eh_qc_complete(struct ata_queued_cmd * qc)1199 void ata_eh_qc_complete(struct ata_queued_cmd *qc)
1200 {
1201 struct scsi_cmnd *scmd = qc->scsicmd;
1202 scmd->retries = scmd->allowed;
1203 __ata_eh_qc_complete(qc);
1204 }
1205
1206 /**
1207 * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
1208 * @qc: Command to retry
1209 *
1210 * Indicate to the mid and upper layers that an ATA command
1211 * should be retried. To be used from EH.
1212 *
1213 * SCSI midlayer limits the number of retries to scmd->allowed.
1214 * scmd->allowed is incremented for commands which get retried
1215 * due to unrelated failures (qc->err_mask is zero).
1216 */
ata_eh_qc_retry(struct ata_queued_cmd * qc)1217 void ata_eh_qc_retry(struct ata_queued_cmd *qc)
1218 {
1219 struct scsi_cmnd *scmd = qc->scsicmd;
1220 if (!qc->err_mask)
1221 scmd->allowed++;
1222 __ata_eh_qc_complete(qc);
1223 }
1224
1225 /**
1226 * ata_dev_disable - disable ATA device
1227 * @dev: ATA device to disable
1228 *
1229 * Disable @dev.
1230 *
1231 * Locking:
1232 * EH context.
1233 */
ata_dev_disable(struct ata_device * dev)1234 void ata_dev_disable(struct ata_device *dev)
1235 {
1236 if (!ata_dev_enabled(dev))
1237 return;
1238
1239 ata_dev_warn(dev, "disable device\n");
1240
1241 ata_eh_dev_disable(dev);
1242 }
1243 EXPORT_SYMBOL_GPL(ata_dev_disable);
1244
1245 /**
1246 * ata_eh_detach_dev - detach ATA device
1247 * @dev: ATA device to detach
1248 *
1249 * Detach @dev.
1250 *
1251 * LOCKING:
1252 * None.
1253 */
ata_eh_detach_dev(struct ata_device * dev)1254 void ata_eh_detach_dev(struct ata_device *dev)
1255 {
1256 struct ata_link *link = dev->link;
1257 struct ata_port *ap = link->ap;
1258 struct ata_eh_context *ehc = &link->eh_context;
1259 unsigned long flags;
1260
1261 /*
1262 * If the device is still enabled, transition it to standby power mode
1263 * (i.e. spin down HDDs) and disable it.
1264 */
1265 if (ata_dev_enabled(dev)) {
1266 ata_dev_power_set_standby(dev);
1267 ata_eh_dev_disable(dev);
1268 }
1269
1270 spin_lock_irqsave(ap->lock, flags);
1271
1272 dev->flags &= ~ATA_DFLAG_DETACH;
1273
1274 if (ata_scsi_offline_dev(dev)) {
1275 dev->flags |= ATA_DFLAG_DETACHED;
1276 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
1277 }
1278
1279 /* clear per-dev EH info */
1280 ata_eh_clear_action(link, dev, &link->eh_info, ATA_EH_PERDEV_MASK);
1281 ata_eh_clear_action(link, dev, &link->eh_context.i, ATA_EH_PERDEV_MASK);
1282 ehc->saved_xfer_mode[dev->devno] = 0;
1283 ehc->saved_ncq_enabled &= ~(1 << dev->devno);
1284
1285 spin_unlock_irqrestore(ap->lock, flags);
1286 }
1287
1288 /**
1289 * ata_eh_about_to_do - about to perform eh_action
1290 * @link: target ATA link
1291 * @dev: target ATA dev for per-dev action (can be NULL)
1292 * @action: action about to be performed
1293 *
1294 * Called just before performing EH actions to clear related bits
1295 * in @link->eh_info such that eh actions are not unnecessarily
1296 * repeated.
1297 *
1298 * LOCKING:
1299 * None.
1300 */
ata_eh_about_to_do(struct ata_link * link,struct ata_device * dev,unsigned int action)1301 void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev,
1302 unsigned int action)
1303 {
1304 struct ata_port *ap = link->ap;
1305 struct ata_eh_info *ehi = &link->eh_info;
1306 struct ata_eh_context *ehc = &link->eh_context;
1307 unsigned long flags;
1308
1309 trace_ata_eh_about_to_do(link, dev ? dev->devno : 0, action);
1310
1311 spin_lock_irqsave(ap->lock, flags);
1312
1313 ata_eh_clear_action(link, dev, ehi, action);
1314
1315 /* About to take EH action, set RECOVERED. Ignore actions on
1316 * slave links as master will do them again.
1317 */
1318 if (!(ehc->i.flags & ATA_EHI_QUIET) && link != ap->slave_link)
1319 ap->pflags |= ATA_PFLAG_RECOVERED;
1320
1321 spin_unlock_irqrestore(ap->lock, flags);
1322 }
1323
1324 /**
1325 * ata_eh_done - EH action complete
1326 * @link: ATA link for which EH actions are complete
1327 * @dev: target ATA dev for per-dev action (can be NULL)
1328 * @action: action just completed
1329 *
1330 * Called right after performing EH actions to clear related bits
1331 * in @link->eh_context.
1332 *
1333 * LOCKING:
1334 * None.
1335 */
ata_eh_done(struct ata_link * link,struct ata_device * dev,unsigned int action)1336 void ata_eh_done(struct ata_link *link, struct ata_device *dev,
1337 unsigned int action)
1338 {
1339 struct ata_eh_context *ehc = &link->eh_context;
1340
1341 trace_ata_eh_done(link, dev ? dev->devno : 0, action);
1342
1343 ata_eh_clear_action(link, dev, &ehc->i, action);
1344 }
1345
1346 /**
1347 * ata_err_string - convert err_mask to descriptive string
1348 * @err_mask: error mask to convert to string
1349 *
1350 * Convert @err_mask to descriptive string. Errors are
1351 * prioritized according to severity and only the most severe
1352 * error is reported.
1353 *
1354 * LOCKING:
1355 * None.
1356 *
1357 * RETURNS:
1358 * Descriptive string for @err_mask
1359 */
ata_err_string(unsigned int err_mask)1360 static const char *ata_err_string(unsigned int err_mask)
1361 {
1362 if (err_mask & AC_ERR_HOST_BUS)
1363 return "host bus error";
1364 if (err_mask & AC_ERR_ATA_BUS)
1365 return "ATA bus error";
1366 if (err_mask & AC_ERR_TIMEOUT)
1367 return "timeout";
1368 if (err_mask & AC_ERR_HSM)
1369 return "HSM violation";
1370 if (err_mask & AC_ERR_SYSTEM)
1371 return "internal error";
1372 if (err_mask & AC_ERR_MEDIA)
1373 return "media error";
1374 if (err_mask & AC_ERR_INVALID)
1375 return "invalid argument";
1376 if (err_mask & AC_ERR_DEV)
1377 return "device error";
1378 if (err_mask & AC_ERR_NCQ)
1379 return "NCQ error";
1380 if (err_mask & AC_ERR_NODEV_HINT)
1381 return "Polling detection error";
1382 return "unknown error";
1383 }
1384
1385 /**
1386 * atapi_eh_tur - perform ATAPI TEST_UNIT_READY
1387 * @dev: target ATAPI device
1388 * @r_sense_key: out parameter for sense_key
1389 *
1390 * Perform ATAPI TEST_UNIT_READY.
1391 *
1392 * LOCKING:
1393 * EH context (may sleep).
1394 *
1395 * RETURNS:
1396 * 0 on success, AC_ERR_* mask on failure.
1397 */
atapi_eh_tur(struct ata_device * dev,u8 * r_sense_key)1398 unsigned int atapi_eh_tur(struct ata_device *dev, u8 *r_sense_key)
1399 {
1400 u8 cdb[ATAPI_CDB_LEN] = { TEST_UNIT_READY, 0, 0, 0, 0, 0 };
1401 struct ata_taskfile tf;
1402 unsigned int err_mask;
1403
1404 ata_tf_init(dev, &tf);
1405
1406 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1407 tf.command = ATA_CMD_PACKET;
1408 tf.protocol = ATAPI_PROT_NODATA;
1409
1410 err_mask = ata_exec_internal(dev, &tf, cdb, DMA_NONE, NULL, 0, 0);
1411 if (err_mask == AC_ERR_DEV)
1412 *r_sense_key = tf.error >> 4;
1413 return err_mask;
1414 }
1415
1416 /**
1417 * ata_eh_decide_disposition - Disposition a qc based on sense data
1418 * @qc: qc to examine
1419 *
1420 * For a regular SCSI command, the SCSI completion callback (scsi_done())
1421 * will call scsi_complete(), which will call scsi_decide_disposition(),
1422 * which will call scsi_check_sense(). scsi_complete() finally calls
1423 * scsi_finish_command(). This is fine for SCSI, since any eventual sense
1424 * data is usually returned in the completion itself (without invoking SCSI
1425 * EH). However, for a QC, we always need to fetch the sense data
1426 * explicitly using SCSI EH.
1427 *
1428 * A command that is completed via SCSI EH will instead be completed using
1429 * scsi_eh_flush_done_q(), which will call scsi_finish_command() directly
1430 * (without ever calling scsi_check_sense()).
1431 *
1432 * For a command that went through SCSI EH, it is the responsibility of the
1433 * SCSI EH strategy handler to call scsi_decide_disposition(), see e.g. how
1434 * scsi_eh_get_sense() calls scsi_decide_disposition() for SCSI LLDDs that
1435 * do not get the sense data as part of the completion.
1436 *
1437 * Thus, for QC commands that went via SCSI EH, we need to call
1438 * scsi_check_sense() ourselves, similar to how scsi_eh_get_sense() calls
1439 * scsi_decide_disposition(), which calls scsi_check_sense(), in order to
1440 * set the correct SCSI ML byte (if any).
1441 *
1442 * LOCKING:
1443 * EH context.
1444 *
1445 * RETURNS:
1446 * SUCCESS or FAILED or NEEDS_RETRY or ADD_TO_MLQUEUE
1447 */
ata_eh_decide_disposition(struct ata_queued_cmd * qc)1448 enum scsi_disposition ata_eh_decide_disposition(struct ata_queued_cmd *qc)
1449 {
1450 return scsi_check_sense(qc->scsicmd);
1451 }
1452
1453 /**
1454 * ata_eh_request_sense - perform REQUEST_SENSE_DATA_EXT
1455 * @qc: qc to perform REQUEST_SENSE_SENSE_DATA_EXT to
1456 *
1457 * Perform REQUEST_SENSE_DATA_EXT after the device reported CHECK
1458 * SENSE. This function is an EH helper.
1459 *
1460 * LOCKING:
1461 * Kernel thread context (may sleep).
1462 *
1463 * RETURNS:
1464 * true if sense data could be fetched, false otherwise.
1465 */
ata_eh_request_sense(struct ata_queued_cmd * qc)1466 static bool ata_eh_request_sense(struct ata_queued_cmd *qc)
1467 {
1468 struct scsi_cmnd *cmd = qc->scsicmd;
1469 struct ata_device *dev = qc->dev;
1470 struct ata_taskfile tf;
1471 unsigned int err_mask;
1472
1473 if (ata_port_is_frozen(qc->ap)) {
1474 ata_dev_warn(dev, "sense data available but port frozen\n");
1475 return false;
1476 }
1477
1478 if (!ata_id_sense_reporting_enabled(dev->id)) {
1479 ata_dev_warn(qc->dev, "sense data reporting disabled\n");
1480 return false;
1481 }
1482
1483 ata_tf_init(dev, &tf);
1484 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1485 tf.flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
1486 tf.command = ATA_CMD_REQ_SENSE_DATA;
1487 tf.protocol = ATA_PROT_NODATA;
1488
1489 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
1490 /* Ignore err_mask; ATA_ERR might be set */
1491 if (tf.status & ATA_SENSE) {
1492 if (ata_scsi_sense_is_valid(tf.lbah, tf.lbam, tf.lbal)) {
1493 /* Set sense without also setting scsicmd->result */
1494 scsi_build_sense_buffer(dev->flags & ATA_DFLAG_D_SENSE,
1495 cmd->sense_buffer, tf.lbah,
1496 tf.lbam, tf.lbal);
1497 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1498 return true;
1499 }
1500 } else {
1501 ata_dev_warn(dev, "request sense failed stat %02x emask %x\n",
1502 tf.status, err_mask);
1503 }
1504
1505 return false;
1506 }
1507
1508 /**
1509 * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
1510 * @dev: device to perform REQUEST_SENSE to
1511 * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
1512 * @dfl_sense_key: default sense key to use
1513 *
1514 * Perform ATAPI REQUEST_SENSE after the device reported CHECK
1515 * SENSE. This function is EH helper.
1516 *
1517 * LOCKING:
1518 * Kernel thread context (may sleep).
1519 *
1520 * RETURNS:
1521 * 0 on success, AC_ERR_* mask on failure
1522 */
atapi_eh_request_sense(struct ata_device * dev,u8 * sense_buf,u8 dfl_sense_key)1523 unsigned int atapi_eh_request_sense(struct ata_device *dev,
1524 u8 *sense_buf, u8 dfl_sense_key)
1525 {
1526 u8 cdb[ATAPI_CDB_LEN] =
1527 { REQUEST_SENSE, 0, 0, 0, SCSI_SENSE_BUFFERSIZE, 0 };
1528 struct ata_port *ap = dev->link->ap;
1529 struct ata_taskfile tf;
1530
1531 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
1532
1533 /* initialize sense_buf with the error register,
1534 * for the case where they are -not- overwritten
1535 */
1536 sense_buf[0] = 0x70;
1537 sense_buf[2] = dfl_sense_key;
1538
1539 /* some devices time out if garbage left in tf */
1540 ata_tf_init(dev, &tf);
1541
1542 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1543 tf.command = ATA_CMD_PACKET;
1544
1545 /*
1546 * Do not use DMA if the connected device only supports PIO, even if the
1547 * port prefers PIO commands via DMA.
1548 *
1549 * Ideally, we should call atapi_check_dma() to check if it is safe for
1550 * the LLD to use DMA for REQUEST_SENSE, but we don't have a qc.
1551 * Since we can't check the command, perhaps we should only use pio?
1552 */
1553 if ((ap->flags & ATA_FLAG_PIO_DMA) && !(dev->flags & ATA_DFLAG_PIO)) {
1554 tf.protocol = ATAPI_PROT_DMA;
1555 tf.feature |= ATAPI_PKT_DMA;
1556 } else {
1557 tf.protocol = ATAPI_PROT_PIO;
1558 tf.lbam = SCSI_SENSE_BUFFERSIZE;
1559 tf.lbah = 0;
1560 }
1561
1562 return ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE,
1563 sense_buf, SCSI_SENSE_BUFFERSIZE, 0);
1564 }
1565
1566 /**
1567 * ata_eh_analyze_serror - analyze SError for a failed port
1568 * @link: ATA link to analyze SError for
1569 *
1570 * Analyze SError if available and further determine cause of
1571 * failure.
1572 *
1573 * LOCKING:
1574 * None.
1575 */
ata_eh_analyze_serror(struct ata_link * link)1576 static void ata_eh_analyze_serror(struct ata_link *link)
1577 {
1578 struct ata_eh_context *ehc = &link->eh_context;
1579 u32 serror = ehc->i.serror;
1580 unsigned int err_mask = 0, action = 0;
1581 u32 hotplug_mask;
1582
1583 if (serror & (SERR_PERSISTENT | SERR_DATA)) {
1584 err_mask |= AC_ERR_ATA_BUS;
1585 action |= ATA_EH_RESET;
1586 }
1587 if (serror & SERR_PROTOCOL) {
1588 err_mask |= AC_ERR_HSM;
1589 action |= ATA_EH_RESET;
1590 }
1591 if (serror & SERR_INTERNAL) {
1592 err_mask |= AC_ERR_SYSTEM;
1593 action |= ATA_EH_RESET;
1594 }
1595
1596 /* Determine whether a hotplug event has occurred. Both
1597 * SError.N/X are considered hotplug events for enabled or
1598 * host links. For disabled PMP links, only N bit is
1599 * considered as X bit is left at 1 for link plugging.
1600 */
1601 if (link->lpm_policy > ATA_LPM_MAX_POWER)
1602 hotplug_mask = 0; /* hotplug doesn't work w/ LPM */
1603 else if (!(link->flags & ATA_LFLAG_DISABLED) || ata_is_host_link(link))
1604 hotplug_mask = SERR_PHYRDY_CHG | SERR_DEV_XCHG;
1605 else
1606 hotplug_mask = SERR_PHYRDY_CHG;
1607
1608 if (serror & hotplug_mask)
1609 ata_ehi_hotplugged(&ehc->i);
1610
1611 ehc->i.err_mask |= err_mask;
1612 ehc->i.action |= action;
1613 }
1614
1615 /**
1616 * ata_eh_analyze_tf - analyze taskfile of a failed qc
1617 * @qc: qc to analyze
1618 *
1619 * Analyze taskfile of @qc and further determine cause of
1620 * failure. This function also requests ATAPI sense data if
1621 * available.
1622 *
1623 * LOCKING:
1624 * Kernel thread context (may sleep).
1625 *
1626 * RETURNS:
1627 * Determined recovery action
1628 */
ata_eh_analyze_tf(struct ata_queued_cmd * qc)1629 static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc)
1630 {
1631 const struct ata_taskfile *tf = &qc->result_tf;
1632 unsigned int tmp, action = 0;
1633 u8 stat = tf->status, err = tf->error;
1634
1635 if ((stat & (ATA_BUSY | ATA_DRQ | ATA_DRDY)) != ATA_DRDY) {
1636 qc->err_mask |= AC_ERR_HSM;
1637 return ATA_EH_RESET;
1638 }
1639
1640 if (stat & (ATA_ERR | ATA_DF)) {
1641 qc->err_mask |= AC_ERR_DEV;
1642 /*
1643 * Sense data reporting does not work if the
1644 * device fault bit is set.
1645 */
1646 if (stat & ATA_DF)
1647 stat &= ~ATA_SENSE;
1648 } else {
1649 return 0;
1650 }
1651
1652 switch (qc->dev->class) {
1653 case ATA_DEV_ATA:
1654 case ATA_DEV_ZAC:
1655 /*
1656 * Fetch the sense data explicitly if:
1657 * -It was a non-NCQ command that failed, or
1658 * -It was a NCQ command that failed, but the sense data
1659 * was not included in the NCQ command error log
1660 * (i.e. NCQ autosense is not supported by the device).
1661 */
1662 if (!(qc->flags & ATA_QCFLAG_SENSE_VALID) &&
1663 (stat & ATA_SENSE) && ata_eh_request_sense(qc))
1664 set_status_byte(qc->scsicmd, SAM_STAT_CHECK_CONDITION);
1665 if (err & ATA_ICRC)
1666 qc->err_mask |= AC_ERR_ATA_BUS;
1667 if (err & (ATA_UNC | ATA_AMNF))
1668 qc->err_mask |= AC_ERR_MEDIA;
1669 if (err & ATA_IDNF)
1670 qc->err_mask |= AC_ERR_INVALID;
1671 break;
1672
1673 case ATA_DEV_ATAPI:
1674 if (!ata_port_is_frozen(qc->ap)) {
1675 tmp = atapi_eh_request_sense(qc->dev,
1676 qc->scsicmd->sense_buffer,
1677 qc->result_tf.error >> 4);
1678 if (!tmp)
1679 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1680 else
1681 qc->err_mask |= tmp;
1682 }
1683 }
1684
1685 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
1686 enum scsi_disposition ret = ata_eh_decide_disposition(qc);
1687
1688 /*
1689 * SUCCESS here means that the sense code could be
1690 * evaluated and should be passed to the upper layers
1691 * for correct evaluation.
1692 * FAILED means the sense code could not be interpreted
1693 * and the device would need to be reset.
1694 * NEEDS_RETRY and ADD_TO_MLQUEUE means that the
1695 * command would need to be retried.
1696 */
1697 if (ret == NEEDS_RETRY || ret == ADD_TO_MLQUEUE) {
1698 qc->flags |= ATA_QCFLAG_RETRY;
1699 qc->err_mask |= AC_ERR_OTHER;
1700 } else if (ret != SUCCESS) {
1701 qc->err_mask |= AC_ERR_HSM;
1702 }
1703 }
1704 if (qc->err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT | AC_ERR_ATA_BUS))
1705 action |= ATA_EH_RESET;
1706
1707 return action;
1708 }
1709
ata_eh_categorize_error(unsigned int eflags,unsigned int err_mask,int * xfer_ok)1710 static int ata_eh_categorize_error(unsigned int eflags, unsigned int err_mask,
1711 int *xfer_ok)
1712 {
1713 int base = 0;
1714
1715 if (!(eflags & ATA_EFLAG_DUBIOUS_XFER))
1716 *xfer_ok = 1;
1717
1718 if (!*xfer_ok)
1719 base = ATA_ECAT_DUBIOUS_NONE;
1720
1721 if (err_mask & AC_ERR_ATA_BUS)
1722 return base + ATA_ECAT_ATA_BUS;
1723
1724 if (err_mask & AC_ERR_TIMEOUT)
1725 return base + ATA_ECAT_TOUT_HSM;
1726
1727 if (eflags & ATA_EFLAG_IS_IO) {
1728 if (err_mask & AC_ERR_HSM)
1729 return base + ATA_ECAT_TOUT_HSM;
1730 if ((err_mask &
1731 (AC_ERR_DEV|AC_ERR_MEDIA|AC_ERR_INVALID)) == AC_ERR_DEV)
1732 return base + ATA_ECAT_UNK_DEV;
1733 }
1734
1735 return 0;
1736 }
1737
1738 struct speed_down_verdict_arg {
1739 u64 since;
1740 int xfer_ok;
1741 int nr_errors[ATA_ECAT_NR];
1742 };
1743
speed_down_verdict_cb(struct ata_ering_entry * ent,void * void_arg)1744 static int speed_down_verdict_cb(struct ata_ering_entry *ent, void *void_arg)
1745 {
1746 struct speed_down_verdict_arg *arg = void_arg;
1747 int cat;
1748
1749 if ((ent->eflags & ATA_EFLAG_OLD_ER) || (ent->timestamp < arg->since))
1750 return -1;
1751
1752 cat = ata_eh_categorize_error(ent->eflags, ent->err_mask,
1753 &arg->xfer_ok);
1754 arg->nr_errors[cat]++;
1755
1756 return 0;
1757 }
1758
1759 /**
1760 * ata_eh_speed_down_verdict - Determine speed down verdict
1761 * @dev: Device of interest
1762 *
1763 * This function examines error ring of @dev and determines
1764 * whether NCQ needs to be turned off, transfer speed should be
1765 * stepped down, or falling back to PIO is necessary.
1766 *
1767 * ECAT_ATA_BUS : ATA_BUS error for any command
1768 *
1769 * ECAT_TOUT_HSM : TIMEOUT for any command or HSM violation for
1770 * IO commands
1771 *
1772 * ECAT_UNK_DEV : Unknown DEV error for IO commands
1773 *
1774 * ECAT_DUBIOUS_* : Identical to above three but occurred while
1775 * data transfer hasn't been verified.
1776 *
1777 * Verdicts are
1778 *
1779 * NCQ_OFF : Turn off NCQ.
1780 *
1781 * SPEED_DOWN : Speed down transfer speed but don't fall back
1782 * to PIO.
1783 *
1784 * FALLBACK_TO_PIO : Fall back to PIO.
1785 *
1786 * Even if multiple verdicts are returned, only one action is
1787 * taken per error. An action triggered by non-DUBIOUS errors
1788 * clears ering, while one triggered by DUBIOUS_* errors doesn't.
1789 * This is to expedite speed down decisions right after device is
1790 * initially configured.
1791 *
1792 * The following are speed down rules. #1 and #2 deal with
1793 * DUBIOUS errors.
1794 *
1795 * 1. If more than one DUBIOUS_ATA_BUS or DUBIOUS_TOUT_HSM errors
1796 * occurred during last 5 mins, SPEED_DOWN and FALLBACK_TO_PIO.
1797 *
1798 * 2. If more than one DUBIOUS_TOUT_HSM or DUBIOUS_UNK_DEV errors
1799 * occurred during last 5 mins, NCQ_OFF.
1800 *
1801 * 3. If more than 8 ATA_BUS, TOUT_HSM or UNK_DEV errors
1802 * occurred during last 5 mins, FALLBACK_TO_PIO
1803 *
1804 * 4. If more than 3 TOUT_HSM or UNK_DEV errors occurred
1805 * during last 10 mins, NCQ_OFF.
1806 *
1807 * 5. If more than 3 ATA_BUS or TOUT_HSM errors, or more than 6
1808 * UNK_DEV errors occurred during last 10 mins, SPEED_DOWN.
1809 *
1810 * LOCKING:
1811 * Inherited from caller.
1812 *
1813 * RETURNS:
1814 * OR of ATA_EH_SPDN_* flags.
1815 */
ata_eh_speed_down_verdict(struct ata_device * dev)1816 static unsigned int ata_eh_speed_down_verdict(struct ata_device *dev)
1817 {
1818 const u64 j5mins = 5LLU * 60 * HZ, j10mins = 10LLU * 60 * HZ;
1819 u64 j64 = get_jiffies_64();
1820 struct speed_down_verdict_arg arg;
1821 unsigned int verdict = 0;
1822
1823 /* scan past 5 mins of error history */
1824 memset(&arg, 0, sizeof(arg));
1825 arg.since = j64 - min(j64, j5mins);
1826 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
1827
1828 if (arg.nr_errors[ATA_ECAT_DUBIOUS_ATA_BUS] +
1829 arg.nr_errors[ATA_ECAT_DUBIOUS_TOUT_HSM] > 1)
1830 verdict |= ATA_EH_SPDN_SPEED_DOWN |
1831 ATA_EH_SPDN_FALLBACK_TO_PIO | ATA_EH_SPDN_KEEP_ERRORS;
1832
1833 if (arg.nr_errors[ATA_ECAT_DUBIOUS_TOUT_HSM] +
1834 arg.nr_errors[ATA_ECAT_DUBIOUS_UNK_DEV] > 1)
1835 verdict |= ATA_EH_SPDN_NCQ_OFF | ATA_EH_SPDN_KEEP_ERRORS;
1836
1837 if (arg.nr_errors[ATA_ECAT_ATA_BUS] +
1838 arg.nr_errors[ATA_ECAT_TOUT_HSM] +
1839 arg.nr_errors[ATA_ECAT_UNK_DEV] > 6)
1840 verdict |= ATA_EH_SPDN_FALLBACK_TO_PIO;
1841
1842 /* scan past 10 mins of error history */
1843 memset(&arg, 0, sizeof(arg));
1844 arg.since = j64 - min(j64, j10mins);
1845 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
1846
1847 if (arg.nr_errors[ATA_ECAT_TOUT_HSM] +
1848 arg.nr_errors[ATA_ECAT_UNK_DEV] > 3)
1849 verdict |= ATA_EH_SPDN_NCQ_OFF;
1850
1851 if (arg.nr_errors[ATA_ECAT_ATA_BUS] +
1852 arg.nr_errors[ATA_ECAT_TOUT_HSM] > 3 ||
1853 arg.nr_errors[ATA_ECAT_UNK_DEV] > 6)
1854 verdict |= ATA_EH_SPDN_SPEED_DOWN;
1855
1856 return verdict;
1857 }
1858
1859 /**
1860 * ata_eh_speed_down - record error and speed down if necessary
1861 * @dev: Failed device
1862 * @eflags: mask of ATA_EFLAG_* flags
1863 * @err_mask: err_mask of the error
1864 *
1865 * Record error and examine error history to determine whether
1866 * adjusting transmission speed is necessary. It also sets
1867 * transmission limits appropriately if such adjustment is
1868 * necessary.
1869 *
1870 * LOCKING:
1871 * Kernel thread context (may sleep).
1872 *
1873 * RETURNS:
1874 * Determined recovery action.
1875 */
ata_eh_speed_down(struct ata_device * dev,unsigned int eflags,unsigned int err_mask)1876 static unsigned int ata_eh_speed_down(struct ata_device *dev,
1877 unsigned int eflags, unsigned int err_mask)
1878 {
1879 struct ata_link *link = ata_dev_phys_link(dev);
1880 int xfer_ok = 0;
1881 unsigned int verdict;
1882 unsigned int action = 0;
1883
1884 /* don't bother if Cat-0 error */
1885 if (ata_eh_categorize_error(eflags, err_mask, &xfer_ok) == 0)
1886 return 0;
1887
1888 /* record error and determine whether speed down is necessary */
1889 ata_ering_record(&dev->ering, eflags, err_mask);
1890 verdict = ata_eh_speed_down_verdict(dev);
1891
1892 /* turn off NCQ? */
1893 if ((verdict & ATA_EH_SPDN_NCQ_OFF) && ata_ncq_enabled(dev)) {
1894 dev->flags |= ATA_DFLAG_NCQ_OFF;
1895 ata_dev_warn(dev, "NCQ disabled due to excessive errors\n");
1896 goto done;
1897 }
1898
1899 /* speed down? */
1900 if (verdict & ATA_EH_SPDN_SPEED_DOWN) {
1901 /* speed down SATA link speed if possible */
1902 if (sata_down_spd_limit(link, 0) == 0) {
1903 action |= ATA_EH_RESET;
1904 goto done;
1905 }
1906
1907 /* lower transfer mode */
1908 if (dev->spdn_cnt < 2) {
1909 static const int dma_dnxfer_sel[] =
1910 { ATA_DNXFER_DMA, ATA_DNXFER_40C };
1911 static const int pio_dnxfer_sel[] =
1912 { ATA_DNXFER_PIO, ATA_DNXFER_FORCE_PIO0 };
1913 int sel;
1914
1915 if (dev->xfer_shift != ATA_SHIFT_PIO)
1916 sel = dma_dnxfer_sel[dev->spdn_cnt];
1917 else
1918 sel = pio_dnxfer_sel[dev->spdn_cnt];
1919
1920 dev->spdn_cnt++;
1921
1922 if (ata_down_xfermask_limit(dev, sel) == 0) {
1923 action |= ATA_EH_RESET;
1924 goto done;
1925 }
1926 }
1927 }
1928
1929 /* Fall back to PIO? Slowing down to PIO is meaningless for
1930 * SATA ATA devices. Consider it only for PATA and SATAPI.
1931 */
1932 if ((verdict & ATA_EH_SPDN_FALLBACK_TO_PIO) && (dev->spdn_cnt >= 2) &&
1933 (link->ap->cbl != ATA_CBL_SATA || dev->class == ATA_DEV_ATAPI) &&
1934 (dev->xfer_shift != ATA_SHIFT_PIO)) {
1935 if (ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO) == 0) {
1936 dev->spdn_cnt = 0;
1937 action |= ATA_EH_RESET;
1938 goto done;
1939 }
1940 }
1941
1942 return 0;
1943 done:
1944 /* device has been slowed down, blow error history */
1945 if (!(verdict & ATA_EH_SPDN_KEEP_ERRORS))
1946 ata_ering_clear(&dev->ering);
1947 return action;
1948 }
1949
1950 /**
1951 * ata_eh_worth_retry - analyze error and decide whether to retry
1952 * @qc: qc to possibly retry
1953 *
1954 * Look at the cause of the error and decide if a retry
1955 * might be useful or not. We don't want to retry media errors
1956 * because the drive itself has probably already taken 10-30 seconds
1957 * doing its own internal retries before reporting the failure.
1958 */
ata_eh_worth_retry(struct ata_queued_cmd * qc)1959 static inline int ata_eh_worth_retry(struct ata_queued_cmd *qc)
1960 {
1961 if (qc->err_mask & AC_ERR_MEDIA)
1962 return 0; /* don't retry media errors */
1963 if (qc->flags & ATA_QCFLAG_IO)
1964 return 1; /* otherwise retry anything from fs stack */
1965 if (qc->err_mask & AC_ERR_INVALID)
1966 return 0; /* don't retry these */
1967 return qc->err_mask != AC_ERR_DEV; /* retry if not dev error */
1968 }
1969
1970 /**
1971 * ata_eh_quiet - check if we need to be quiet about a command error
1972 * @qc: qc to check
1973 *
1974 * Look at the qc flags anbd its scsi command request flags to determine
1975 * if we need to be quiet about the command failure.
1976 */
ata_eh_quiet(struct ata_queued_cmd * qc)1977 static inline bool ata_eh_quiet(struct ata_queued_cmd *qc)
1978 {
1979 if (qc->scsicmd && scsi_cmd_to_rq(qc->scsicmd)->rq_flags & RQF_QUIET)
1980 qc->flags |= ATA_QCFLAG_QUIET;
1981 return qc->flags & ATA_QCFLAG_QUIET;
1982 }
1983
ata_eh_get_non_ncq_success_sense(struct ata_link * link)1984 static int ata_eh_get_non_ncq_success_sense(struct ata_link *link)
1985 {
1986 struct ata_port *ap = link->ap;
1987 struct ata_queued_cmd *qc;
1988
1989 qc = __ata_qc_from_tag(ap, link->active_tag);
1990 if (!qc)
1991 return -EIO;
1992
1993 if (!(qc->flags & ATA_QCFLAG_EH) ||
1994 !(qc->flags & ATA_QCFLAG_EH_SUCCESS_CMD) ||
1995 qc->err_mask)
1996 return -EIO;
1997
1998 if (!ata_eh_request_sense(qc))
1999 return -EIO;
2000
2001 /*
2002 * No point in checking the return value, since the command has already
2003 * completed successfully.
2004 */
2005 ata_eh_decide_disposition(qc);
2006
2007 return 0;
2008 }
2009
ata_eh_get_success_sense(struct ata_link * link)2010 static void ata_eh_get_success_sense(struct ata_link *link)
2011 {
2012 struct ata_eh_context *ehc = &link->eh_context;
2013 struct ata_device *dev = link->device;
2014 struct ata_port *ap = link->ap;
2015 struct ata_queued_cmd *qc;
2016 int tag, ret = 0;
2017
2018 if (!(ehc->i.dev_action[dev->devno] & ATA_EH_GET_SUCCESS_SENSE))
2019 return;
2020
2021 /* if frozen, we can't do much */
2022 if (ata_port_is_frozen(ap)) {
2023 ata_dev_warn(dev,
2024 "successful sense data available but port frozen\n");
2025 goto out;
2026 }
2027
2028 /*
2029 * If the link has sactive set, then we have outstanding NCQ commands
2030 * and have to read the Successful NCQ Commands log to get the sense
2031 * data. Otherwise, we are dealing with a non-NCQ command and use
2032 * request sense ext command to retrieve the sense data.
2033 */
2034 if (link->sactive)
2035 ret = ata_eh_get_ncq_success_sense(link);
2036 else
2037 ret = ata_eh_get_non_ncq_success_sense(link);
2038 if (ret)
2039 goto out;
2040
2041 ata_eh_done(link, dev, ATA_EH_GET_SUCCESS_SENSE);
2042 return;
2043
2044 out:
2045 /*
2046 * If we failed to get sense data for a successful command that ought to
2047 * have sense data, we cannot simply return BLK_STS_OK to user space.
2048 * This is because we can't know if the sense data that we couldn't get
2049 * was actually "DATA CURRENTLY UNAVAILABLE". Reporting such a command
2050 * as success to user space would result in a silent data corruption.
2051 * Thus, add a bogus ABORTED_COMMAND sense data to such commands, such
2052 * that SCSI will report these commands as BLK_STS_IOERR to user space.
2053 */
2054 ata_qc_for_each_raw(ap, qc, tag) {
2055 if (!(qc->flags & ATA_QCFLAG_EH) ||
2056 !(qc->flags & ATA_QCFLAG_EH_SUCCESS_CMD) ||
2057 qc->err_mask ||
2058 ata_dev_phys_link(qc->dev) != link)
2059 continue;
2060
2061 /* We managed to get sense for this success command, skip. */
2062 if (qc->flags & ATA_QCFLAG_SENSE_VALID)
2063 continue;
2064
2065 /* This success command did not have any sense data, skip. */
2066 if (!(qc->result_tf.status & ATA_SENSE))
2067 continue;
2068
2069 /* This success command had sense data, but we failed to get. */
2070 ata_scsi_set_sense(dev, qc->scsicmd, ABORTED_COMMAND, 0, 0);
2071 qc->flags |= ATA_QCFLAG_SENSE_VALID;
2072 }
2073 ata_eh_done(link, dev, ATA_EH_GET_SUCCESS_SENSE);
2074 }
2075
2076 /**
2077 * ata_eh_link_autopsy - analyze error and determine recovery action
2078 * @link: host link to perform autopsy on
2079 *
2080 * Analyze why @link failed and determine which recovery actions
2081 * are needed. This function also sets more detailed AC_ERR_*
2082 * values and fills sense data for ATAPI CHECK SENSE.
2083 *
2084 * LOCKING:
2085 * Kernel thread context (may sleep).
2086 */
ata_eh_link_autopsy(struct ata_link * link)2087 static void ata_eh_link_autopsy(struct ata_link *link)
2088 {
2089 struct ata_port *ap = link->ap;
2090 struct ata_eh_context *ehc = &link->eh_context;
2091 struct ata_queued_cmd *qc;
2092 struct ata_device *dev;
2093 unsigned int all_err_mask = 0, eflags = 0;
2094 int tag, nr_failed = 0, nr_quiet = 0;
2095 u32 serror;
2096 int rc;
2097
2098 if (ehc->i.flags & ATA_EHI_NO_AUTOPSY)
2099 return;
2100
2101 /* obtain and analyze SError */
2102 rc = sata_scr_read(link, SCR_ERROR, &serror);
2103 if (rc == 0) {
2104 ehc->i.serror |= serror;
2105 ata_eh_analyze_serror(link);
2106 } else if (rc != -EOPNOTSUPP) {
2107 /* SError read failed, force reset and probing */
2108 ehc->i.probe_mask |= ATA_ALL_DEVICES;
2109 ehc->i.action |= ATA_EH_RESET;
2110 ehc->i.err_mask |= AC_ERR_OTHER;
2111 }
2112
2113 /* analyze NCQ failure */
2114 ata_eh_analyze_ncq_error(link);
2115
2116 /*
2117 * Check if this was a successful command that simply needs sense data.
2118 * Since the sense data is not part of the completion, we need to fetch
2119 * it using an additional command. Since this can't be done from irq
2120 * context, the sense data for successful commands are fetched by EH.
2121 */
2122 ata_eh_get_success_sense(link);
2123
2124 /* any real error trumps AC_ERR_OTHER */
2125 if (ehc->i.err_mask & ~AC_ERR_OTHER)
2126 ehc->i.err_mask &= ~AC_ERR_OTHER;
2127
2128 all_err_mask |= ehc->i.err_mask;
2129
2130 ata_qc_for_each_raw(ap, qc, tag) {
2131 if (!(qc->flags & ATA_QCFLAG_EH) ||
2132 qc->flags & ATA_QCFLAG_RETRY ||
2133 qc->flags & ATA_QCFLAG_EH_SUCCESS_CMD ||
2134 ata_dev_phys_link(qc->dev) != link)
2135 continue;
2136
2137 /* inherit upper level err_mask */
2138 qc->err_mask |= ehc->i.err_mask;
2139
2140 /* analyze TF */
2141 ehc->i.action |= ata_eh_analyze_tf(qc);
2142
2143 /* DEV errors are probably spurious in case of ATA_BUS error */
2144 if (qc->err_mask & AC_ERR_ATA_BUS)
2145 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_MEDIA |
2146 AC_ERR_INVALID);
2147
2148 /* any real error trumps unknown error */
2149 if (qc->err_mask & ~AC_ERR_OTHER)
2150 qc->err_mask &= ~AC_ERR_OTHER;
2151
2152 /*
2153 * SENSE_VALID trumps dev/unknown error and revalidation. Upper
2154 * layers will determine whether the command is worth retrying
2155 * based on the sense data and device class/type. Otherwise,
2156 * determine directly if the command is worth retrying using its
2157 * error mask and flags.
2158 */
2159 if (qc->flags & ATA_QCFLAG_SENSE_VALID)
2160 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER);
2161 else if (ata_eh_worth_retry(qc))
2162 qc->flags |= ATA_QCFLAG_RETRY;
2163
2164 /* accumulate error info */
2165 ehc->i.dev = qc->dev;
2166 all_err_mask |= qc->err_mask;
2167 if (qc->flags & ATA_QCFLAG_IO)
2168 eflags |= ATA_EFLAG_IS_IO;
2169 trace_ata_eh_link_autopsy_qc(qc);
2170
2171 /* Count quiet errors */
2172 if (ata_eh_quiet(qc))
2173 nr_quiet++;
2174 nr_failed++;
2175 }
2176
2177 /* If all failed commands requested silence, then be quiet */
2178 if (nr_quiet == nr_failed)
2179 ehc->i.flags |= ATA_EHI_QUIET;
2180
2181 /* enforce default EH actions */
2182 if (ata_port_is_frozen(ap) ||
2183 all_err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT))
2184 ehc->i.action |= ATA_EH_RESET;
2185 else if (((eflags & ATA_EFLAG_IS_IO) && all_err_mask) ||
2186 (!(eflags & ATA_EFLAG_IS_IO) && (all_err_mask & ~AC_ERR_DEV)))
2187 ehc->i.action |= ATA_EH_REVALIDATE;
2188
2189 /* If we have offending qcs and the associated failed device,
2190 * perform per-dev EH action only on the offending device.
2191 */
2192 if (ehc->i.dev) {
2193 ehc->i.dev_action[ehc->i.dev->devno] |=
2194 ehc->i.action & ATA_EH_PERDEV_MASK;
2195 ehc->i.action &= ~ATA_EH_PERDEV_MASK;
2196 }
2197
2198 /* propagate timeout to host link */
2199 if ((all_err_mask & AC_ERR_TIMEOUT) && !ata_is_host_link(link))
2200 ap->link.eh_context.i.err_mask |= AC_ERR_TIMEOUT;
2201
2202 /* record error and consider speeding down */
2203 dev = ehc->i.dev;
2204 if (!dev && ((ata_link_max_devices(link) == 1 &&
2205 ata_dev_enabled(link->device))))
2206 dev = link->device;
2207
2208 if (dev) {
2209 if (dev->flags & ATA_DFLAG_DUBIOUS_XFER)
2210 eflags |= ATA_EFLAG_DUBIOUS_XFER;
2211 ehc->i.action |= ata_eh_speed_down(dev, eflags, all_err_mask);
2212 trace_ata_eh_link_autopsy(dev, ehc->i.action, all_err_mask);
2213 }
2214 }
2215
2216 /**
2217 * ata_eh_autopsy - analyze error and determine recovery action
2218 * @ap: host port to perform autopsy on
2219 *
2220 * Analyze all links of @ap and determine why they failed and
2221 * which recovery actions are needed.
2222 *
2223 * LOCKING:
2224 * Kernel thread context (may sleep).
2225 */
ata_eh_autopsy(struct ata_port * ap)2226 void ata_eh_autopsy(struct ata_port *ap)
2227 {
2228 struct ata_link *link;
2229
2230 ata_for_each_link(link, ap, EDGE)
2231 ata_eh_link_autopsy(link);
2232
2233 /* Handle the frigging slave link. Autopsy is done similarly
2234 * but actions and flags are transferred over to the master
2235 * link and handled from there.
2236 */
2237 if (ap->slave_link) {
2238 struct ata_eh_context *mehc = &ap->link.eh_context;
2239 struct ata_eh_context *sehc = &ap->slave_link->eh_context;
2240
2241 /* transfer control flags from master to slave */
2242 sehc->i.flags |= mehc->i.flags & ATA_EHI_TO_SLAVE_MASK;
2243
2244 /* perform autopsy on the slave link */
2245 ata_eh_link_autopsy(ap->slave_link);
2246
2247 /* transfer actions from slave to master and clear slave */
2248 ata_eh_about_to_do(ap->slave_link, NULL, ATA_EH_ALL_ACTIONS);
2249 mehc->i.action |= sehc->i.action;
2250 mehc->i.dev_action[1] |= sehc->i.dev_action[1];
2251 mehc->i.flags |= sehc->i.flags;
2252 ata_eh_done(ap->slave_link, NULL, ATA_EH_ALL_ACTIONS);
2253 }
2254
2255 /* Autopsy of fanout ports can affect host link autopsy.
2256 * Perform host link autopsy last.
2257 */
2258 if (sata_pmp_attached(ap))
2259 ata_eh_link_autopsy(&ap->link);
2260 }
2261
2262 /**
2263 * ata_get_cmd_name - get name for ATA command
2264 * @command: ATA command code to get name for
2265 *
2266 * Return a textual name of the given command or "unknown"
2267 *
2268 * LOCKING:
2269 * None
2270 */
ata_get_cmd_name(u8 command)2271 const char *ata_get_cmd_name(u8 command)
2272 {
2273 #ifdef CONFIG_ATA_VERBOSE_ERROR
2274 static const struct
2275 {
2276 u8 command;
2277 const char *text;
2278 } cmd_descr[] = {
2279 { ATA_CMD_DEV_RESET, "DEVICE RESET" },
2280 { ATA_CMD_CHK_POWER, "CHECK POWER MODE" },
2281 { ATA_CMD_STANDBY, "STANDBY" },
2282 { ATA_CMD_IDLE, "IDLE" },
2283 { ATA_CMD_EDD, "EXECUTE DEVICE DIAGNOSTIC" },
2284 { ATA_CMD_DOWNLOAD_MICRO, "DOWNLOAD MICROCODE" },
2285 { ATA_CMD_DOWNLOAD_MICRO_DMA, "DOWNLOAD MICROCODE DMA" },
2286 { ATA_CMD_NOP, "NOP" },
2287 { ATA_CMD_FLUSH, "FLUSH CACHE" },
2288 { ATA_CMD_FLUSH_EXT, "FLUSH CACHE EXT" },
2289 { ATA_CMD_ID_ATA, "IDENTIFY DEVICE" },
2290 { ATA_CMD_ID_ATAPI, "IDENTIFY PACKET DEVICE" },
2291 { ATA_CMD_SERVICE, "SERVICE" },
2292 { ATA_CMD_READ, "READ DMA" },
2293 { ATA_CMD_READ_EXT, "READ DMA EXT" },
2294 { ATA_CMD_READ_QUEUED, "READ DMA QUEUED" },
2295 { ATA_CMD_READ_STREAM_EXT, "READ STREAM EXT" },
2296 { ATA_CMD_READ_STREAM_DMA_EXT, "READ STREAM DMA EXT" },
2297 { ATA_CMD_WRITE, "WRITE DMA" },
2298 { ATA_CMD_WRITE_EXT, "WRITE DMA EXT" },
2299 { ATA_CMD_WRITE_QUEUED, "WRITE DMA QUEUED EXT" },
2300 { ATA_CMD_WRITE_STREAM_EXT, "WRITE STREAM EXT" },
2301 { ATA_CMD_WRITE_STREAM_DMA_EXT, "WRITE STREAM DMA EXT" },
2302 { ATA_CMD_WRITE_FUA_EXT, "WRITE DMA FUA EXT" },
2303 { ATA_CMD_WRITE_QUEUED_FUA_EXT, "WRITE DMA QUEUED FUA EXT" },
2304 { ATA_CMD_FPDMA_READ, "READ FPDMA QUEUED" },
2305 { ATA_CMD_FPDMA_WRITE, "WRITE FPDMA QUEUED" },
2306 { ATA_CMD_NCQ_NON_DATA, "NCQ NON-DATA" },
2307 { ATA_CMD_FPDMA_SEND, "SEND FPDMA QUEUED" },
2308 { ATA_CMD_FPDMA_RECV, "RECEIVE FPDMA QUEUED" },
2309 { ATA_CMD_PIO_READ, "READ SECTOR(S)" },
2310 { ATA_CMD_PIO_READ_EXT, "READ SECTOR(S) EXT" },
2311 { ATA_CMD_PIO_WRITE, "WRITE SECTOR(S)" },
2312 { ATA_CMD_PIO_WRITE_EXT, "WRITE SECTOR(S) EXT" },
2313 { ATA_CMD_READ_MULTI, "READ MULTIPLE" },
2314 { ATA_CMD_READ_MULTI_EXT, "READ MULTIPLE EXT" },
2315 { ATA_CMD_WRITE_MULTI, "WRITE MULTIPLE" },
2316 { ATA_CMD_WRITE_MULTI_EXT, "WRITE MULTIPLE EXT" },
2317 { ATA_CMD_WRITE_MULTI_FUA_EXT, "WRITE MULTIPLE FUA EXT" },
2318 { ATA_CMD_SET_FEATURES, "SET FEATURES" },
2319 { ATA_CMD_SET_MULTI, "SET MULTIPLE MODE" },
2320 { ATA_CMD_VERIFY, "READ VERIFY SECTOR(S)" },
2321 { ATA_CMD_VERIFY_EXT, "READ VERIFY SECTOR(S) EXT" },
2322 { ATA_CMD_WRITE_UNCORR_EXT, "WRITE UNCORRECTABLE EXT" },
2323 { ATA_CMD_STANDBYNOW1, "STANDBY IMMEDIATE" },
2324 { ATA_CMD_IDLEIMMEDIATE, "IDLE IMMEDIATE" },
2325 { ATA_CMD_SLEEP, "SLEEP" },
2326 { ATA_CMD_INIT_DEV_PARAMS, "INITIALIZE DEVICE PARAMETERS" },
2327 { ATA_CMD_READ_NATIVE_MAX, "READ NATIVE MAX ADDRESS" },
2328 { ATA_CMD_READ_NATIVE_MAX_EXT, "READ NATIVE MAX ADDRESS EXT" },
2329 { ATA_CMD_SET_MAX, "SET MAX ADDRESS" },
2330 { ATA_CMD_SET_MAX_EXT, "SET MAX ADDRESS EXT" },
2331 { ATA_CMD_READ_LOG_EXT, "READ LOG EXT" },
2332 { ATA_CMD_WRITE_LOG_EXT, "WRITE LOG EXT" },
2333 { ATA_CMD_READ_LOG_DMA_EXT, "READ LOG DMA EXT" },
2334 { ATA_CMD_WRITE_LOG_DMA_EXT, "WRITE LOG DMA EXT" },
2335 { ATA_CMD_TRUSTED_NONDATA, "TRUSTED NON-DATA" },
2336 { ATA_CMD_TRUSTED_RCV, "TRUSTED RECEIVE" },
2337 { ATA_CMD_TRUSTED_RCV_DMA, "TRUSTED RECEIVE DMA" },
2338 { ATA_CMD_TRUSTED_SND, "TRUSTED SEND" },
2339 { ATA_CMD_TRUSTED_SND_DMA, "TRUSTED SEND DMA" },
2340 { ATA_CMD_PMP_READ, "READ BUFFER" },
2341 { ATA_CMD_PMP_READ_DMA, "READ BUFFER DMA" },
2342 { ATA_CMD_PMP_WRITE, "WRITE BUFFER" },
2343 { ATA_CMD_PMP_WRITE_DMA, "WRITE BUFFER DMA" },
2344 { ATA_CMD_CONF_OVERLAY, "DEVICE CONFIGURATION OVERLAY" },
2345 { ATA_CMD_SEC_SET_PASS, "SECURITY SET PASSWORD" },
2346 { ATA_CMD_SEC_UNLOCK, "SECURITY UNLOCK" },
2347 { ATA_CMD_SEC_ERASE_PREP, "SECURITY ERASE PREPARE" },
2348 { ATA_CMD_SEC_ERASE_UNIT, "SECURITY ERASE UNIT" },
2349 { ATA_CMD_SEC_FREEZE_LOCK, "SECURITY FREEZE LOCK" },
2350 { ATA_CMD_SEC_DISABLE_PASS, "SECURITY DISABLE PASSWORD" },
2351 { ATA_CMD_CONFIG_STREAM, "CONFIGURE STREAM" },
2352 { ATA_CMD_SMART, "SMART" },
2353 { ATA_CMD_MEDIA_LOCK, "DOOR LOCK" },
2354 { ATA_CMD_MEDIA_UNLOCK, "DOOR UNLOCK" },
2355 { ATA_CMD_DSM, "DATA SET MANAGEMENT" },
2356 { ATA_CMD_CHK_MED_CRD_TYP, "CHECK MEDIA CARD TYPE" },
2357 { ATA_CMD_CFA_REQ_EXT_ERR, "CFA REQUEST EXTENDED ERROR" },
2358 { ATA_CMD_CFA_WRITE_NE, "CFA WRITE SECTORS WITHOUT ERASE" },
2359 { ATA_CMD_CFA_TRANS_SECT, "CFA TRANSLATE SECTOR" },
2360 { ATA_CMD_CFA_ERASE, "CFA ERASE SECTORS" },
2361 { ATA_CMD_CFA_WRITE_MULT_NE, "CFA WRITE MULTIPLE WITHOUT ERASE" },
2362 { ATA_CMD_REQ_SENSE_DATA, "REQUEST SENSE DATA EXT" },
2363 { ATA_CMD_SANITIZE_DEVICE, "SANITIZE DEVICE" },
2364 { ATA_CMD_ZAC_MGMT_IN, "ZAC MANAGEMENT IN" },
2365 { ATA_CMD_ZAC_MGMT_OUT, "ZAC MANAGEMENT OUT" },
2366 { ATA_CMD_READ_LONG, "READ LONG (with retries)" },
2367 { ATA_CMD_READ_LONG_ONCE, "READ LONG (without retries)" },
2368 { ATA_CMD_WRITE_LONG, "WRITE LONG (with retries)" },
2369 { ATA_CMD_WRITE_LONG_ONCE, "WRITE LONG (without retries)" },
2370 { ATA_CMD_RESTORE, "RECALIBRATE" },
2371 { 0, NULL } /* terminate list */
2372 };
2373
2374 unsigned int i;
2375 for (i = 0; cmd_descr[i].text; i++)
2376 if (cmd_descr[i].command == command)
2377 return cmd_descr[i].text;
2378 #endif
2379
2380 return "unknown";
2381 }
2382 EXPORT_SYMBOL_GPL(ata_get_cmd_name);
2383
2384 /**
2385 * ata_eh_link_report - report error handling to user
2386 * @link: ATA link EH is going on
2387 *
2388 * Report EH to user.
2389 *
2390 * LOCKING:
2391 * None.
2392 */
ata_eh_link_report(struct ata_link * link)2393 static void ata_eh_link_report(struct ata_link *link)
2394 {
2395 struct ata_port *ap = link->ap;
2396 struct ata_eh_context *ehc = &link->eh_context;
2397 struct ata_queued_cmd *qc;
2398 const char *frozen, *desc;
2399 char tries_buf[16] = "";
2400 int tag, nr_failed = 0;
2401
2402 if (ehc->i.flags & ATA_EHI_QUIET)
2403 return;
2404
2405 desc = NULL;
2406 if (ehc->i.desc[0] != '\0')
2407 desc = ehc->i.desc;
2408
2409 ata_qc_for_each_raw(ap, qc, tag) {
2410 if (!(qc->flags & ATA_QCFLAG_EH) ||
2411 ata_dev_phys_link(qc->dev) != link ||
2412 ((qc->flags & ATA_QCFLAG_QUIET) &&
2413 qc->err_mask == AC_ERR_DEV))
2414 continue;
2415 if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask)
2416 continue;
2417
2418 nr_failed++;
2419 }
2420
2421 if (!nr_failed && !ehc->i.err_mask)
2422 return;
2423
2424 frozen = "";
2425 if (ata_port_is_frozen(ap))
2426 frozen = " frozen";
2427
2428 if (ap->eh_tries < ATA_EH_MAX_TRIES)
2429 snprintf(tries_buf, sizeof(tries_buf), " t%d",
2430 ap->eh_tries);
2431
2432 if (ehc->i.dev) {
2433 ata_dev_err(ehc->i.dev, "exception Emask 0x%x "
2434 "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2435 ehc->i.err_mask, link->sactive, ehc->i.serror,
2436 ehc->i.action, frozen, tries_buf);
2437 if (desc)
2438 ata_dev_err(ehc->i.dev, "%s\n", desc);
2439 } else {
2440 ata_link_err(link, "exception Emask 0x%x "
2441 "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2442 ehc->i.err_mask, link->sactive, ehc->i.serror,
2443 ehc->i.action, frozen, tries_buf);
2444 if (desc)
2445 ata_link_err(link, "%s\n", desc);
2446 }
2447
2448 #ifdef CONFIG_ATA_VERBOSE_ERROR
2449 if (ehc->i.serror)
2450 ata_link_err(link,
2451 "SError: { %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s}\n",
2452 ehc->i.serror & SERR_DATA_RECOVERED ? "RecovData " : "",
2453 ehc->i.serror & SERR_COMM_RECOVERED ? "RecovComm " : "",
2454 ehc->i.serror & SERR_DATA ? "UnrecovData " : "",
2455 ehc->i.serror & SERR_PERSISTENT ? "Persist " : "",
2456 ehc->i.serror & SERR_PROTOCOL ? "Proto " : "",
2457 ehc->i.serror & SERR_INTERNAL ? "HostInt " : "",
2458 ehc->i.serror & SERR_PHYRDY_CHG ? "PHYRdyChg " : "",
2459 ehc->i.serror & SERR_PHY_INT_ERR ? "PHYInt " : "",
2460 ehc->i.serror & SERR_COMM_WAKE ? "CommWake " : "",
2461 ehc->i.serror & SERR_10B_8B_ERR ? "10B8B " : "",
2462 ehc->i.serror & SERR_DISPARITY ? "Dispar " : "",
2463 ehc->i.serror & SERR_CRC ? "BadCRC " : "",
2464 ehc->i.serror & SERR_HANDSHAKE ? "Handshk " : "",
2465 ehc->i.serror & SERR_LINK_SEQ_ERR ? "LinkSeq " : "",
2466 ehc->i.serror & SERR_TRANS_ST_ERROR ? "TrStaTrns " : "",
2467 ehc->i.serror & SERR_UNRECOG_FIS ? "UnrecFIS " : "",
2468 ehc->i.serror & SERR_DEV_XCHG ? "DevExch " : "");
2469 #endif
2470
2471 ata_qc_for_each_raw(ap, qc, tag) {
2472 struct ata_taskfile *cmd = &qc->tf, *res = &qc->result_tf;
2473 char data_buf[20] = "";
2474 char cdb_buf[70] = "";
2475
2476 if (!(qc->flags & ATA_QCFLAG_EH) ||
2477 ata_dev_phys_link(qc->dev) != link || !qc->err_mask)
2478 continue;
2479
2480 if (qc->dma_dir != DMA_NONE) {
2481 static const char *dma_str[] = {
2482 [DMA_BIDIRECTIONAL] = "bidi",
2483 [DMA_TO_DEVICE] = "out",
2484 [DMA_FROM_DEVICE] = "in",
2485 };
2486 const char *prot_str = NULL;
2487
2488 switch (qc->tf.protocol) {
2489 case ATA_PROT_UNKNOWN:
2490 prot_str = "unknown";
2491 break;
2492 case ATA_PROT_NODATA:
2493 prot_str = "nodata";
2494 break;
2495 case ATA_PROT_PIO:
2496 prot_str = "pio";
2497 break;
2498 case ATA_PROT_DMA:
2499 prot_str = "dma";
2500 break;
2501 case ATA_PROT_NCQ:
2502 prot_str = "ncq dma";
2503 break;
2504 case ATA_PROT_NCQ_NODATA:
2505 prot_str = "ncq nodata";
2506 break;
2507 case ATAPI_PROT_NODATA:
2508 prot_str = "nodata";
2509 break;
2510 case ATAPI_PROT_PIO:
2511 prot_str = "pio";
2512 break;
2513 case ATAPI_PROT_DMA:
2514 prot_str = "dma";
2515 break;
2516 }
2517 snprintf(data_buf, sizeof(data_buf), " %s %u %s",
2518 prot_str, qc->nbytes, dma_str[qc->dma_dir]);
2519 }
2520
2521 if (ata_is_atapi(qc->tf.protocol)) {
2522 const u8 *cdb = qc->cdb;
2523 size_t cdb_len = qc->dev->cdb_len;
2524
2525 if (qc->scsicmd) {
2526 cdb = qc->scsicmd->cmnd;
2527 cdb_len = qc->scsicmd->cmd_len;
2528 }
2529 __scsi_format_command(cdb_buf, sizeof(cdb_buf),
2530 cdb, cdb_len);
2531 } else
2532 ata_dev_err(qc->dev, "failed command: %s\n",
2533 ata_get_cmd_name(cmd->command));
2534
2535 ata_dev_err(qc->dev,
2536 "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
2537 "tag %d%s\n %s"
2538 "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
2539 "Emask 0x%x (%s)%s\n",
2540 cmd->command, cmd->feature, cmd->nsect,
2541 cmd->lbal, cmd->lbam, cmd->lbah,
2542 cmd->hob_feature, cmd->hob_nsect,
2543 cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah,
2544 cmd->device, qc->tag, data_buf, cdb_buf,
2545 res->status, res->error, res->nsect,
2546 res->lbal, res->lbam, res->lbah,
2547 res->hob_feature, res->hob_nsect,
2548 res->hob_lbal, res->hob_lbam, res->hob_lbah,
2549 res->device, qc->err_mask, ata_err_string(qc->err_mask),
2550 qc->err_mask & AC_ERR_NCQ ? " <F>" : "");
2551
2552 #ifdef CONFIG_ATA_VERBOSE_ERROR
2553 if (res->status & (ATA_BUSY | ATA_DRDY | ATA_DF | ATA_DRQ |
2554 ATA_SENSE | ATA_ERR)) {
2555 if (res->status & ATA_BUSY)
2556 ata_dev_err(qc->dev, "status: { Busy }\n");
2557 else
2558 ata_dev_err(qc->dev, "status: { %s%s%s%s%s}\n",
2559 res->status & ATA_DRDY ? "DRDY " : "",
2560 res->status & ATA_DF ? "DF " : "",
2561 res->status & ATA_DRQ ? "DRQ " : "",
2562 res->status & ATA_SENSE ? "SENSE " : "",
2563 res->status & ATA_ERR ? "ERR " : "");
2564 }
2565
2566 if (cmd->command != ATA_CMD_PACKET &&
2567 (res->error & (ATA_ICRC | ATA_UNC | ATA_AMNF | ATA_IDNF |
2568 ATA_ABORTED)))
2569 ata_dev_err(qc->dev, "error: { %s%s%s%s%s}\n",
2570 res->error & ATA_ICRC ? "ICRC " : "",
2571 res->error & ATA_UNC ? "UNC " : "",
2572 res->error & ATA_AMNF ? "AMNF " : "",
2573 res->error & ATA_IDNF ? "IDNF " : "",
2574 res->error & ATA_ABORTED ? "ABRT " : "");
2575 #endif
2576 }
2577 }
2578
2579 /**
2580 * ata_eh_report - report error handling to user
2581 * @ap: ATA port to report EH about
2582 *
2583 * Report EH to user.
2584 *
2585 * LOCKING:
2586 * None.
2587 */
ata_eh_report(struct ata_port * ap)2588 void ata_eh_report(struct ata_port *ap)
2589 {
2590 struct ata_link *link;
2591
2592 ata_for_each_link(link, ap, HOST_FIRST)
2593 ata_eh_link_report(link);
2594 }
2595
ata_do_reset(struct ata_link * link,ata_reset_fn_t reset,unsigned int * classes,unsigned long deadline,bool clear_classes)2596 static int ata_do_reset(struct ata_link *link, ata_reset_fn_t reset,
2597 unsigned int *classes, unsigned long deadline,
2598 bool clear_classes)
2599 {
2600 struct ata_device *dev;
2601
2602 if (clear_classes)
2603 ata_for_each_dev(dev, link, ALL)
2604 classes[dev->devno] = ATA_DEV_UNKNOWN;
2605
2606 return reset(link, classes, deadline);
2607 }
2608
ata_eh_followup_srst_needed(struct ata_link * link,int rc)2609 static int ata_eh_followup_srst_needed(struct ata_link *link, int rc)
2610 {
2611 if ((link->flags & ATA_LFLAG_NO_SRST) || ata_link_offline(link))
2612 return 0;
2613 if (rc == -EAGAIN)
2614 return 1;
2615 if (sata_pmp_supported(link->ap) && ata_is_host_link(link))
2616 return 1;
2617 return 0;
2618 }
2619
ata_eh_reset(struct ata_link * link,int classify,ata_prereset_fn_t prereset,ata_reset_fn_t softreset,ata_reset_fn_t hardreset,ata_postreset_fn_t postreset)2620 int ata_eh_reset(struct ata_link *link, int classify,
2621 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
2622 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
2623 {
2624 struct ata_port *ap = link->ap;
2625 struct ata_link *slave = ap->slave_link;
2626 struct ata_eh_context *ehc = &link->eh_context;
2627 struct ata_eh_context *sehc = slave ? &slave->eh_context : NULL;
2628 unsigned int *classes = ehc->classes;
2629 unsigned int lflags = link->flags;
2630 int verbose = !(ehc->i.flags & ATA_EHI_QUIET);
2631 int max_tries = 0, try = 0;
2632 struct ata_link *failed_link;
2633 struct ata_device *dev;
2634 unsigned long deadline, now;
2635 ata_reset_fn_t reset;
2636 unsigned long flags;
2637 u32 sstatus;
2638 int nr_unknown, rc;
2639
2640 /*
2641 * Prepare to reset
2642 */
2643 while (ata_eh_reset_timeouts[max_tries] != UINT_MAX)
2644 max_tries++;
2645 if (link->flags & ATA_LFLAG_RST_ONCE)
2646 max_tries = 1;
2647 if (link->flags & ATA_LFLAG_NO_HRST)
2648 hardreset = NULL;
2649 if (link->flags & ATA_LFLAG_NO_SRST)
2650 softreset = NULL;
2651
2652 /* make sure each reset attempt is at least COOL_DOWN apart */
2653 if (ehc->i.flags & ATA_EHI_DID_RESET) {
2654 now = jiffies;
2655 WARN_ON(time_after(ehc->last_reset, now));
2656 deadline = ata_deadline(ehc->last_reset,
2657 ATA_EH_RESET_COOL_DOWN);
2658 if (time_before(now, deadline))
2659 schedule_timeout_uninterruptible(deadline - now);
2660 }
2661
2662 spin_lock_irqsave(ap->lock, flags);
2663 ap->pflags |= ATA_PFLAG_RESETTING;
2664 spin_unlock_irqrestore(ap->lock, flags);
2665
2666 ata_eh_about_to_do(link, NULL, ATA_EH_RESET);
2667
2668 ata_for_each_dev(dev, link, ALL) {
2669 /* If we issue an SRST then an ATA drive (not ATAPI)
2670 * may change configuration and be in PIO0 timing. If
2671 * we do a hard reset (or are coming from power on)
2672 * this is true for ATA or ATAPI. Until we've set a
2673 * suitable controller mode we should not touch the
2674 * bus as we may be talking too fast.
2675 */
2676 dev->pio_mode = XFER_PIO_0;
2677 dev->dma_mode = 0xff;
2678
2679 /* If the controller has a pio mode setup function
2680 * then use it to set the chipset to rights. Don't
2681 * touch the DMA setup as that will be dealt with when
2682 * configuring devices.
2683 */
2684 if (ap->ops->set_piomode)
2685 ap->ops->set_piomode(ap, dev);
2686 }
2687
2688 /* prefer hardreset */
2689 reset = NULL;
2690 ehc->i.action &= ~ATA_EH_RESET;
2691 if (hardreset) {
2692 reset = hardreset;
2693 ehc->i.action |= ATA_EH_HARDRESET;
2694 } else if (softreset) {
2695 reset = softreset;
2696 ehc->i.action |= ATA_EH_SOFTRESET;
2697 }
2698
2699 if (prereset) {
2700 unsigned long deadline = ata_deadline(jiffies,
2701 ATA_EH_PRERESET_TIMEOUT);
2702
2703 if (slave) {
2704 sehc->i.action &= ~ATA_EH_RESET;
2705 sehc->i.action |= ehc->i.action;
2706 }
2707
2708 rc = prereset(link, deadline);
2709
2710 /* If present, do prereset on slave link too. Reset
2711 * is skipped iff both master and slave links report
2712 * -ENOENT or clear ATA_EH_RESET.
2713 */
2714 if (slave && (rc == 0 || rc == -ENOENT)) {
2715 int tmp;
2716
2717 tmp = prereset(slave, deadline);
2718 if (tmp != -ENOENT)
2719 rc = tmp;
2720
2721 ehc->i.action |= sehc->i.action;
2722 }
2723
2724 if (rc) {
2725 if (rc == -ENOENT) {
2726 ata_link_dbg(link, "port disabled--ignoring\n");
2727 ehc->i.action &= ~ATA_EH_RESET;
2728
2729 ata_for_each_dev(dev, link, ALL)
2730 classes[dev->devno] = ATA_DEV_NONE;
2731
2732 rc = 0;
2733 } else
2734 ata_link_err(link,
2735 "prereset failed (errno=%d)\n",
2736 rc);
2737 goto out;
2738 }
2739
2740 /* prereset() might have cleared ATA_EH_RESET. If so,
2741 * bang classes, thaw and return.
2742 */
2743 if (reset && !(ehc->i.action & ATA_EH_RESET)) {
2744 ata_for_each_dev(dev, link, ALL)
2745 classes[dev->devno] = ATA_DEV_NONE;
2746 if (ata_port_is_frozen(ap) && ata_is_host_link(link))
2747 ata_eh_thaw_port(ap);
2748 rc = 0;
2749 goto out;
2750 }
2751 }
2752
2753 retry:
2754 /*
2755 * Perform reset
2756 */
2757 if (ata_is_host_link(link))
2758 ata_eh_freeze_port(ap);
2759
2760 deadline = ata_deadline(jiffies, ata_eh_reset_timeouts[try++]);
2761
2762 if (reset) {
2763 if (verbose)
2764 ata_link_info(link, "%s resetting link\n",
2765 reset == softreset ? "soft" : "hard");
2766
2767 /* mark that this EH session started with reset */
2768 ehc->last_reset = jiffies;
2769 if (reset == hardreset) {
2770 ehc->i.flags |= ATA_EHI_DID_HARDRESET;
2771 trace_ata_link_hardreset_begin(link, classes, deadline);
2772 } else {
2773 ehc->i.flags |= ATA_EHI_DID_SOFTRESET;
2774 trace_ata_link_softreset_begin(link, classes, deadline);
2775 }
2776
2777 rc = ata_do_reset(link, reset, classes, deadline, true);
2778 if (reset == hardreset)
2779 trace_ata_link_hardreset_end(link, classes, rc);
2780 else
2781 trace_ata_link_softreset_end(link, classes, rc);
2782 if (rc && rc != -EAGAIN) {
2783 failed_link = link;
2784 goto fail;
2785 }
2786
2787 /* hardreset slave link if existent */
2788 if (slave && reset == hardreset) {
2789 int tmp;
2790
2791 if (verbose)
2792 ata_link_info(slave, "hard resetting link\n");
2793
2794 ata_eh_about_to_do(slave, NULL, ATA_EH_RESET);
2795 trace_ata_slave_hardreset_begin(slave, classes,
2796 deadline);
2797 tmp = ata_do_reset(slave, reset, classes, deadline,
2798 false);
2799 trace_ata_slave_hardreset_end(slave, classes, tmp);
2800 switch (tmp) {
2801 case -EAGAIN:
2802 rc = -EAGAIN;
2803 break;
2804 case 0:
2805 break;
2806 default:
2807 failed_link = slave;
2808 rc = tmp;
2809 goto fail;
2810 }
2811 }
2812
2813 /* perform follow-up SRST if necessary */
2814 if (reset == hardreset &&
2815 ata_eh_followup_srst_needed(link, rc)) {
2816 reset = softreset;
2817
2818 if (!reset) {
2819 ata_link_err(link,
2820 "follow-up softreset required but no softreset available\n");
2821 failed_link = link;
2822 rc = -EINVAL;
2823 goto fail;
2824 }
2825
2826 ata_eh_about_to_do(link, NULL, ATA_EH_RESET);
2827 trace_ata_link_softreset_begin(link, classes, deadline);
2828 rc = ata_do_reset(link, reset, classes, deadline, true);
2829 trace_ata_link_softreset_end(link, classes, rc);
2830 if (rc) {
2831 failed_link = link;
2832 goto fail;
2833 }
2834 }
2835 } else {
2836 if (verbose)
2837 ata_link_info(link,
2838 "no reset method available, skipping reset\n");
2839 if (!(lflags & ATA_LFLAG_ASSUME_CLASS))
2840 lflags |= ATA_LFLAG_ASSUME_ATA;
2841 }
2842
2843 /*
2844 * Post-reset processing
2845 */
2846 ata_for_each_dev(dev, link, ALL) {
2847 /* After the reset, the device state is PIO 0 and the
2848 * controller state is undefined. Reset also wakes up
2849 * drives from sleeping mode.
2850 */
2851 dev->pio_mode = XFER_PIO_0;
2852 dev->flags &= ~ATA_DFLAG_SLEEPING;
2853
2854 if (ata_phys_link_offline(ata_dev_phys_link(dev)))
2855 continue;
2856
2857 /* apply class override */
2858 if (lflags & ATA_LFLAG_ASSUME_ATA)
2859 classes[dev->devno] = ATA_DEV_ATA;
2860 else if (lflags & ATA_LFLAG_ASSUME_SEMB)
2861 classes[dev->devno] = ATA_DEV_SEMB_UNSUP;
2862 }
2863
2864 /* record current link speed */
2865 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0)
2866 link->sata_spd = (sstatus >> 4) & 0xf;
2867 if (slave && sata_scr_read(slave, SCR_STATUS, &sstatus) == 0)
2868 slave->sata_spd = (sstatus >> 4) & 0xf;
2869
2870 /* thaw the port */
2871 if (ata_is_host_link(link))
2872 ata_eh_thaw_port(ap);
2873
2874 /* postreset() should clear hardware SError. Although SError
2875 * is cleared during link resume, clearing SError here is
2876 * necessary as some PHYs raise hotplug events after SRST.
2877 * This introduces race condition where hotplug occurs between
2878 * reset and here. This race is mediated by cross checking
2879 * link onlineness and classification result later.
2880 */
2881 if (postreset) {
2882 postreset(link, classes);
2883 trace_ata_link_postreset(link, classes, rc);
2884 if (slave) {
2885 postreset(slave, classes);
2886 trace_ata_slave_postreset(slave, classes, rc);
2887 }
2888 }
2889
2890 /* clear cached SError */
2891 spin_lock_irqsave(link->ap->lock, flags);
2892 link->eh_info.serror = 0;
2893 if (slave)
2894 slave->eh_info.serror = 0;
2895 spin_unlock_irqrestore(link->ap->lock, flags);
2896
2897 /*
2898 * Make sure onlineness and classification result correspond.
2899 * Hotplug could have happened during reset and some
2900 * controllers fail to wait while a drive is spinning up after
2901 * being hotplugged causing misdetection. By cross checking
2902 * link on/offlineness and classification result, those
2903 * conditions can be reliably detected and retried.
2904 */
2905 nr_unknown = 0;
2906 ata_for_each_dev(dev, link, ALL) {
2907 if (ata_phys_link_online(ata_dev_phys_link(dev))) {
2908 if (classes[dev->devno] == ATA_DEV_UNKNOWN) {
2909 ata_dev_dbg(dev, "link online but device misclassified\n");
2910 classes[dev->devno] = ATA_DEV_NONE;
2911 nr_unknown++;
2912 }
2913 } else if (ata_phys_link_offline(ata_dev_phys_link(dev))) {
2914 if (ata_class_enabled(classes[dev->devno]))
2915 ata_dev_dbg(dev,
2916 "link offline, clearing class %d to NONE\n",
2917 classes[dev->devno]);
2918 classes[dev->devno] = ATA_DEV_NONE;
2919 } else if (classes[dev->devno] == ATA_DEV_UNKNOWN) {
2920 ata_dev_dbg(dev,
2921 "link status unknown, clearing UNKNOWN to NONE\n");
2922 classes[dev->devno] = ATA_DEV_NONE;
2923 }
2924 }
2925
2926 if (classify && nr_unknown) {
2927 if (try < max_tries) {
2928 ata_link_warn(link,
2929 "link online but %d devices misclassified, retrying\n",
2930 nr_unknown);
2931 failed_link = link;
2932 rc = -EAGAIN;
2933 goto fail;
2934 }
2935 ata_link_warn(link,
2936 "link online but %d devices misclassified, "
2937 "device detection might fail\n", nr_unknown);
2938 }
2939
2940 /* reset successful, schedule revalidation */
2941 ata_eh_done(link, NULL, ATA_EH_RESET);
2942 if (slave)
2943 ata_eh_done(slave, NULL, ATA_EH_RESET);
2944 ehc->last_reset = jiffies; /* update to completion time */
2945 ehc->i.action |= ATA_EH_REVALIDATE;
2946 link->lpm_policy = ATA_LPM_UNKNOWN; /* reset LPM state */
2947
2948 rc = 0;
2949 out:
2950 /* clear hotplug flag */
2951 ehc->i.flags &= ~ATA_EHI_HOTPLUGGED;
2952 if (slave)
2953 sehc->i.flags &= ~ATA_EHI_HOTPLUGGED;
2954
2955 spin_lock_irqsave(ap->lock, flags);
2956 ap->pflags &= ~ATA_PFLAG_RESETTING;
2957 spin_unlock_irqrestore(ap->lock, flags);
2958
2959 return rc;
2960
2961 fail:
2962 /* if SCR isn't accessible on a fan-out port, PMP needs to be reset */
2963 if (!ata_is_host_link(link) &&
2964 sata_scr_read(link, SCR_STATUS, &sstatus))
2965 rc = -ERESTART;
2966
2967 if (try >= max_tries) {
2968 /*
2969 * Thaw host port even if reset failed, so that the port
2970 * can be retried on the next phy event. This risks
2971 * repeated EH runs but seems to be a better tradeoff than
2972 * shutting down a port after a botched hotplug attempt.
2973 */
2974 if (ata_is_host_link(link))
2975 ata_eh_thaw_port(ap);
2976 ata_link_warn(link, "%s failed\n",
2977 reset == hardreset ? "hardreset" : "softreset");
2978 goto out;
2979 }
2980
2981 now = jiffies;
2982 if (time_before(now, deadline)) {
2983 unsigned long delta = deadline - now;
2984
2985 ata_link_warn(failed_link,
2986 "reset failed (errno=%d), retrying in %u secs\n",
2987 rc, DIV_ROUND_UP(jiffies_to_msecs(delta), 1000));
2988
2989 ata_eh_release(ap);
2990 while (delta)
2991 delta = schedule_timeout_uninterruptible(delta);
2992 ata_eh_acquire(ap);
2993 }
2994
2995 /*
2996 * While disks spinup behind PMP, some controllers fail sending SRST.
2997 * They need to be reset - as well as the PMP - before retrying.
2998 */
2999 if (rc == -ERESTART) {
3000 if (ata_is_host_link(link))
3001 ata_eh_thaw_port(ap);
3002 goto out;
3003 }
3004
3005 if (try == max_tries - 1) {
3006 sata_down_spd_limit(link, 0);
3007 if (slave)
3008 sata_down_spd_limit(slave, 0);
3009 } else if (rc == -EPIPE)
3010 sata_down_spd_limit(failed_link, 0);
3011
3012 if (hardreset)
3013 reset = hardreset;
3014 goto retry;
3015 }
3016
ata_eh_pull_park_action(struct ata_port * ap)3017 static inline void ata_eh_pull_park_action(struct ata_port *ap)
3018 {
3019 struct ata_link *link;
3020 struct ata_device *dev;
3021 unsigned long flags;
3022
3023 /*
3024 * This function can be thought of as an extended version of
3025 * ata_eh_about_to_do() specially crafted to accommodate the
3026 * requirements of ATA_EH_PARK handling. Since the EH thread
3027 * does not leave the do {} while () loop in ata_eh_recover as
3028 * long as the timeout for a park request to *one* device on
3029 * the port has not expired, and since we still want to pick
3030 * up park requests to other devices on the same port or
3031 * timeout updates for the same device, we have to pull
3032 * ATA_EH_PARK actions from eh_info into eh_context.i
3033 * ourselves at the beginning of each pass over the loop.
3034 *
3035 * Additionally, all write accesses to &ap->park_req_pending
3036 * through reinit_completion() (see below) or complete_all()
3037 * (see ata_scsi_park_store()) are protected by the host lock.
3038 * As a result we have that park_req_pending.done is zero on
3039 * exit from this function, i.e. when ATA_EH_PARK actions for
3040 * *all* devices on port ap have been pulled into the
3041 * respective eh_context structs. If, and only if,
3042 * park_req_pending.done is non-zero by the time we reach
3043 * wait_for_completion_timeout(), another ATA_EH_PARK action
3044 * has been scheduled for at least one of the devices on port
3045 * ap and we have to cycle over the do {} while () loop in
3046 * ata_eh_recover() again.
3047 */
3048
3049 spin_lock_irqsave(ap->lock, flags);
3050 reinit_completion(&ap->park_req_pending);
3051 ata_for_each_link(link, ap, EDGE) {
3052 ata_for_each_dev(dev, link, ALL) {
3053 struct ata_eh_info *ehi = &link->eh_info;
3054
3055 link->eh_context.i.dev_action[dev->devno] |=
3056 ehi->dev_action[dev->devno] & ATA_EH_PARK;
3057 ata_eh_clear_action(link, dev, ehi, ATA_EH_PARK);
3058 }
3059 }
3060 spin_unlock_irqrestore(ap->lock, flags);
3061 }
3062
ata_eh_park_issue_cmd(struct ata_device * dev,int park)3063 static void ata_eh_park_issue_cmd(struct ata_device *dev, int park)
3064 {
3065 struct ata_eh_context *ehc = &dev->link->eh_context;
3066 struct ata_taskfile tf;
3067 unsigned int err_mask;
3068
3069 ata_tf_init(dev, &tf);
3070 if (park) {
3071 ehc->unloaded_mask |= 1 << dev->devno;
3072 tf.command = ATA_CMD_IDLEIMMEDIATE;
3073 tf.feature = 0x44;
3074 tf.lbal = 0x4c;
3075 tf.lbam = 0x4e;
3076 tf.lbah = 0x55;
3077 } else {
3078 ehc->unloaded_mask &= ~(1 << dev->devno);
3079 tf.command = ATA_CMD_CHK_POWER;
3080 }
3081
3082 tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
3083 tf.protocol = ATA_PROT_NODATA;
3084 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
3085 if (park && (err_mask || tf.lbal != 0xc4)) {
3086 ata_dev_err(dev, "head unload failed!\n");
3087 ehc->unloaded_mask &= ~(1 << dev->devno);
3088 }
3089 }
3090
ata_eh_revalidate_and_attach(struct ata_link * link,struct ata_device ** r_failed_dev)3091 static int ata_eh_revalidate_and_attach(struct ata_link *link,
3092 struct ata_device **r_failed_dev)
3093 {
3094 struct ata_port *ap = link->ap;
3095 struct ata_eh_context *ehc = &link->eh_context;
3096 struct ata_device *dev;
3097 unsigned int new_mask = 0;
3098 unsigned long flags;
3099 int rc = 0;
3100
3101 /* For PATA drive side cable detection to work, IDENTIFY must
3102 * be done backwards such that PDIAG- is released by the slave
3103 * device before the master device is identified.
3104 */
3105 ata_for_each_dev(dev, link, ALL_REVERSE) {
3106 unsigned int action = ata_eh_dev_action(dev);
3107 unsigned int readid_flags = 0;
3108
3109 if (ehc->i.flags & ATA_EHI_DID_RESET)
3110 readid_flags |= ATA_READID_POSTRESET;
3111
3112 if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) {
3113 WARN_ON(dev->class == ATA_DEV_PMP);
3114
3115 /*
3116 * The link may be in a deep sleep, wake it up.
3117 *
3118 * If the link is in deep sleep, ata_phys_link_offline()
3119 * will return true, causing the revalidation to fail,
3120 * which leads to a (potentially) needless hard reset.
3121 *
3122 * ata_eh_recover() will later restore the link policy
3123 * to ap->target_lpm_policy after revalidation is done.
3124 */
3125 if (link->lpm_policy > ATA_LPM_MAX_POWER) {
3126 rc = ata_eh_set_lpm(link, ATA_LPM_MAX_POWER,
3127 r_failed_dev);
3128 if (rc)
3129 goto err;
3130 }
3131
3132 if (ata_phys_link_offline(ata_dev_phys_link(dev))) {
3133 rc = -EIO;
3134 goto err;
3135 }
3136
3137 ata_eh_about_to_do(link, dev, ATA_EH_REVALIDATE);
3138 rc = ata_dev_revalidate(dev, ehc->classes[dev->devno],
3139 readid_flags);
3140 if (rc)
3141 goto err;
3142
3143 ata_eh_done(link, dev, ATA_EH_REVALIDATE);
3144
3145 /* Configuration may have changed, reconfigure
3146 * transfer mode.
3147 */
3148 ehc->i.flags |= ATA_EHI_SETMODE;
3149
3150 /* schedule the scsi_rescan_device() here */
3151 schedule_delayed_work(&ap->scsi_rescan_task, 0);
3152 } else if (dev->class == ATA_DEV_UNKNOWN &&
3153 ehc->tries[dev->devno] &&
3154 ata_class_enabled(ehc->classes[dev->devno])) {
3155 /* Temporarily set dev->class, it will be
3156 * permanently set once all configurations are
3157 * complete. This is necessary because new
3158 * device configuration is done in two
3159 * separate loops.
3160 */
3161 dev->class = ehc->classes[dev->devno];
3162
3163 if (dev->class == ATA_DEV_PMP)
3164 rc = sata_pmp_attach(dev);
3165 else
3166 rc = ata_dev_read_id(dev, &dev->class,
3167 readid_flags, dev->id);
3168
3169 /* read_id might have changed class, store and reset */
3170 ehc->classes[dev->devno] = dev->class;
3171 dev->class = ATA_DEV_UNKNOWN;
3172
3173 switch (rc) {
3174 case 0:
3175 /* clear error info accumulated during probe */
3176 ata_ering_clear(&dev->ering);
3177 new_mask |= 1 << dev->devno;
3178 break;
3179 case -ENOENT:
3180 /* IDENTIFY was issued to non-existent
3181 * device. No need to reset. Just
3182 * thaw and ignore the device.
3183 */
3184 ata_eh_thaw_port(ap);
3185 break;
3186 default:
3187 goto err;
3188 }
3189 }
3190 }
3191
3192 /* PDIAG- should have been released, ask cable type if post-reset */
3193 if ((ehc->i.flags & ATA_EHI_DID_RESET) && ata_is_host_link(link)) {
3194 if (ap->ops->cable_detect)
3195 ap->cbl = ap->ops->cable_detect(ap);
3196 ata_force_cbl(ap);
3197 }
3198
3199 /* Configure new devices forward such that user doesn't see
3200 * device detection messages backwards.
3201 */
3202 ata_for_each_dev(dev, link, ALL) {
3203 if (!(new_mask & (1 << dev->devno)))
3204 continue;
3205
3206 dev->class = ehc->classes[dev->devno];
3207
3208 if (dev->class == ATA_DEV_PMP)
3209 continue;
3210
3211 ehc->i.flags |= ATA_EHI_PRINTINFO;
3212 rc = ata_dev_configure(dev);
3213 ehc->i.flags &= ~ATA_EHI_PRINTINFO;
3214 if (rc) {
3215 dev->class = ATA_DEV_UNKNOWN;
3216 goto err;
3217 }
3218
3219 spin_lock_irqsave(ap->lock, flags);
3220 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
3221 spin_unlock_irqrestore(ap->lock, flags);
3222
3223 /* new device discovered, configure xfermode */
3224 ehc->i.flags |= ATA_EHI_SETMODE;
3225 }
3226
3227 return 0;
3228
3229 err:
3230 dev->flags &= ~ATA_DFLAG_RESUMING;
3231 *r_failed_dev = dev;
3232 return rc;
3233 }
3234
3235 /**
3236 * ata_set_mode - Program timings and issue SET FEATURES - XFER
3237 * @link: link on which timings will be programmed
3238 * @r_failed_dev: out parameter for failed device
3239 *
3240 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3241 * ata_set_mode() fails, pointer to the failing device is
3242 * returned in @r_failed_dev.
3243 *
3244 * LOCKING:
3245 * PCI/etc. bus probe sem.
3246 *
3247 * RETURNS:
3248 * 0 on success, negative errno otherwise
3249 */
ata_set_mode(struct ata_link * link,struct ata_device ** r_failed_dev)3250 int ata_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
3251 {
3252 struct ata_port *ap = link->ap;
3253 struct ata_device *dev;
3254 int rc;
3255
3256 /* if data transfer is verified, clear DUBIOUS_XFER on ering top */
3257 ata_for_each_dev(dev, link, ENABLED) {
3258 if (!(dev->flags & ATA_DFLAG_DUBIOUS_XFER)) {
3259 struct ata_ering_entry *ent;
3260
3261 ent = ata_ering_top(&dev->ering);
3262 if (ent)
3263 ent->eflags &= ~ATA_EFLAG_DUBIOUS_XFER;
3264 }
3265 }
3266
3267 /* has private set_mode? */
3268 if (ap->ops->set_mode)
3269 rc = ap->ops->set_mode(link, r_failed_dev);
3270 else
3271 rc = ata_do_set_mode(link, r_failed_dev);
3272
3273 /* if transfer mode has changed, set DUBIOUS_XFER on device */
3274 ata_for_each_dev(dev, link, ENABLED) {
3275 struct ata_eh_context *ehc = &link->eh_context;
3276 u8 saved_xfer_mode = ehc->saved_xfer_mode[dev->devno];
3277 u8 saved_ncq = !!(ehc->saved_ncq_enabled & (1 << dev->devno));
3278
3279 if (dev->xfer_mode != saved_xfer_mode ||
3280 ata_ncq_enabled(dev) != saved_ncq)
3281 dev->flags |= ATA_DFLAG_DUBIOUS_XFER;
3282 }
3283
3284 return rc;
3285 }
3286
3287 /**
3288 * atapi_eh_clear_ua - Clear ATAPI UNIT ATTENTION after reset
3289 * @dev: ATAPI device to clear UA for
3290 *
3291 * Resets and other operations can make an ATAPI device raise
3292 * UNIT ATTENTION which causes the next operation to fail. This
3293 * function clears UA.
3294 *
3295 * LOCKING:
3296 * EH context (may sleep).
3297 *
3298 * RETURNS:
3299 * 0 on success, -errno on failure.
3300 */
atapi_eh_clear_ua(struct ata_device * dev)3301 static int atapi_eh_clear_ua(struct ata_device *dev)
3302 {
3303 int i;
3304
3305 for (i = 0; i < ATA_EH_UA_TRIES; i++) {
3306 u8 *sense_buffer = dev->sector_buf;
3307 u8 sense_key = 0;
3308 unsigned int err_mask;
3309
3310 err_mask = atapi_eh_tur(dev, &sense_key);
3311 if (err_mask != 0 && err_mask != AC_ERR_DEV) {
3312 ata_dev_warn(dev,
3313 "TEST_UNIT_READY failed (err_mask=0x%x)\n",
3314 err_mask);
3315 return -EIO;
3316 }
3317
3318 if (!err_mask || sense_key != UNIT_ATTENTION)
3319 return 0;
3320
3321 err_mask = atapi_eh_request_sense(dev, sense_buffer, sense_key);
3322 if (err_mask) {
3323 ata_dev_warn(dev, "failed to clear "
3324 "UNIT ATTENTION (err_mask=0x%x)\n", err_mask);
3325 return -EIO;
3326 }
3327 }
3328
3329 ata_dev_warn(dev, "UNIT ATTENTION persists after %d tries\n",
3330 ATA_EH_UA_TRIES);
3331
3332 return 0;
3333 }
3334
3335 /**
3336 * ata_eh_maybe_retry_flush - Retry FLUSH if necessary
3337 * @dev: ATA device which may need FLUSH retry
3338 *
3339 * If @dev failed FLUSH, it needs to be reported upper layer
3340 * immediately as it means that @dev failed to remap and already
3341 * lost at least a sector and further FLUSH retrials won't make
3342 * any difference to the lost sector. However, if FLUSH failed
3343 * for other reasons, for example transmission error, FLUSH needs
3344 * to be retried.
3345 *
3346 * This function determines whether FLUSH failure retry is
3347 * necessary and performs it if so.
3348 *
3349 * RETURNS:
3350 * 0 if EH can continue, -errno if EH needs to be repeated.
3351 */
ata_eh_maybe_retry_flush(struct ata_device * dev)3352 static int ata_eh_maybe_retry_flush(struct ata_device *dev)
3353 {
3354 struct ata_link *link = dev->link;
3355 struct ata_port *ap = link->ap;
3356 struct ata_queued_cmd *qc;
3357 struct ata_taskfile tf;
3358 unsigned int err_mask;
3359 int rc = 0;
3360
3361 /* did flush fail for this device? */
3362 if (!ata_tag_valid(link->active_tag))
3363 return 0;
3364
3365 qc = __ata_qc_from_tag(ap, link->active_tag);
3366 if (qc->dev != dev || (qc->tf.command != ATA_CMD_FLUSH_EXT &&
3367 qc->tf.command != ATA_CMD_FLUSH))
3368 return 0;
3369
3370 /* if the device failed it, it should be reported to upper layers */
3371 if (qc->err_mask & AC_ERR_DEV)
3372 return 0;
3373
3374 /* flush failed for some other reason, give it another shot */
3375 ata_tf_init(dev, &tf);
3376
3377 tf.command = qc->tf.command;
3378 tf.flags |= ATA_TFLAG_DEVICE;
3379 tf.protocol = ATA_PROT_NODATA;
3380
3381 ata_dev_warn(dev, "retrying FLUSH 0x%x Emask 0x%x\n",
3382 tf.command, qc->err_mask);
3383
3384 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
3385 if (!err_mask) {
3386 /*
3387 * FLUSH is complete but there's no way to
3388 * successfully complete a failed command from EH.
3389 * Making sure retry is allowed at least once and
3390 * retrying it should do the trick - whatever was in
3391 * the cache is already on the platter and this won't
3392 * cause infinite loop.
3393 */
3394 qc->scsicmd->allowed = max(qc->scsicmd->allowed, 1);
3395 } else {
3396 ata_dev_warn(dev, "FLUSH failed Emask 0x%x\n",
3397 err_mask);
3398 rc = -EIO;
3399
3400 /* if device failed it, report it to upper layers */
3401 if (err_mask & AC_ERR_DEV) {
3402 qc->err_mask |= AC_ERR_DEV;
3403 qc->result_tf = tf;
3404 if (!ata_port_is_frozen(ap))
3405 rc = 0;
3406 }
3407 }
3408 return rc;
3409 }
3410
3411 /**
3412 * ata_eh_set_lpm - configure SATA interface power management
3413 * @link: link to configure power management
3414 * @policy: the link power management policy
3415 * @r_failed_dev: out parameter for failed device
3416 *
3417 * Enable SATA Interface power management. This will enable
3418 * Device Interface Power Management (DIPM) for min_power and
3419 * medium_power_with_dipm policies, and then call driver specific
3420 * callbacks for enabling Host Initiated Power management.
3421 *
3422 * LOCKING:
3423 * EH context.
3424 *
3425 * RETURNS:
3426 * 0 on success, -errno on failure.
3427 */
ata_eh_set_lpm(struct ata_link * link,enum ata_lpm_policy policy,struct ata_device ** r_failed_dev)3428 static int ata_eh_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
3429 struct ata_device **r_failed_dev)
3430 {
3431 struct ata_port *ap = ata_is_host_link(link) ? link->ap : NULL;
3432 struct ata_eh_context *ehc = &link->eh_context;
3433 struct ata_device *dev, *link_dev = NULL, *lpm_dev = NULL;
3434 enum ata_lpm_policy old_policy = link->lpm_policy;
3435 bool no_dipm = link->ap->flags & ATA_FLAG_NO_DIPM;
3436 unsigned int hints = ATA_LPM_EMPTY | ATA_LPM_HIPM;
3437 unsigned int err_mask;
3438 int rc;
3439
3440 /* if the link or host doesn't do LPM, noop */
3441 if (!IS_ENABLED(CONFIG_SATA_HOST) ||
3442 (link->flags & ATA_LFLAG_NO_LPM) || (ap && !ap->ops->set_lpm))
3443 return 0;
3444
3445 /*
3446 * DIPM is enabled only for MIN_POWER as some devices
3447 * misbehave when the host NACKs transition to SLUMBER. Order
3448 * device and link configurations such that the host always
3449 * allows DIPM requests.
3450 */
3451 ata_for_each_dev(dev, link, ENABLED) {
3452 bool hipm = ata_id_has_hipm(dev->id);
3453 bool dipm = ata_id_has_dipm(dev->id) && !no_dipm;
3454
3455 /* find the first enabled and LPM enabled devices */
3456 if (!link_dev)
3457 link_dev = dev;
3458
3459 if (!lpm_dev && (hipm || dipm))
3460 lpm_dev = dev;
3461
3462 hints &= ~ATA_LPM_EMPTY;
3463 if (!hipm)
3464 hints &= ~ATA_LPM_HIPM;
3465
3466 /* disable DIPM before changing link config */
3467 if (policy < ATA_LPM_MED_POWER_WITH_DIPM && dipm) {
3468 err_mask = ata_dev_set_feature(dev,
3469 SETFEATURES_SATA_DISABLE, SATA_DIPM);
3470 if (err_mask && err_mask != AC_ERR_DEV) {
3471 ata_dev_warn(dev,
3472 "failed to disable DIPM, Emask 0x%x\n",
3473 err_mask);
3474 rc = -EIO;
3475 goto fail;
3476 }
3477 }
3478 }
3479
3480 if (ap) {
3481 rc = ap->ops->set_lpm(link, policy, hints);
3482 if (!rc && ap->slave_link)
3483 rc = ap->ops->set_lpm(ap->slave_link, policy, hints);
3484 } else
3485 rc = sata_pmp_set_lpm(link, policy, hints);
3486
3487 /*
3488 * Attribute link config failure to the first (LPM) enabled
3489 * device on the link.
3490 */
3491 if (rc) {
3492 if (rc == -EOPNOTSUPP) {
3493 link->flags |= ATA_LFLAG_NO_LPM;
3494 return 0;
3495 }
3496 dev = lpm_dev ? lpm_dev : link_dev;
3497 goto fail;
3498 }
3499
3500 /*
3501 * Low level driver acked the transition. Issue DIPM command
3502 * with the new policy set.
3503 */
3504 link->lpm_policy = policy;
3505 if (ap && ap->slave_link)
3506 ap->slave_link->lpm_policy = policy;
3507
3508 /* host config updated, enable DIPM if transitioning to MIN_POWER */
3509 ata_for_each_dev(dev, link, ENABLED) {
3510 if (policy >= ATA_LPM_MED_POWER_WITH_DIPM && !no_dipm &&
3511 ata_id_has_dipm(dev->id)) {
3512 err_mask = ata_dev_set_feature(dev,
3513 SETFEATURES_SATA_ENABLE, SATA_DIPM);
3514 if (err_mask && err_mask != AC_ERR_DEV) {
3515 ata_dev_warn(dev,
3516 "failed to enable DIPM, Emask 0x%x\n",
3517 err_mask);
3518 rc = -EIO;
3519 goto fail;
3520 }
3521 }
3522 }
3523
3524 link->last_lpm_change = jiffies;
3525 link->flags |= ATA_LFLAG_CHANGED;
3526
3527 return 0;
3528
3529 fail:
3530 /* restore the old policy */
3531 link->lpm_policy = old_policy;
3532 if (ap && ap->slave_link)
3533 ap->slave_link->lpm_policy = old_policy;
3534
3535 /* if no device or only one more chance is left, disable LPM */
3536 if (!dev || ehc->tries[dev->devno] <= 2) {
3537 ata_link_warn(link, "disabling LPM on the link\n");
3538 link->flags |= ATA_LFLAG_NO_LPM;
3539 }
3540 if (r_failed_dev)
3541 *r_failed_dev = dev;
3542 return rc;
3543 }
3544
ata_link_nr_enabled(struct ata_link * link)3545 int ata_link_nr_enabled(struct ata_link *link)
3546 {
3547 struct ata_device *dev;
3548 int cnt = 0;
3549
3550 ata_for_each_dev(dev, link, ENABLED)
3551 cnt++;
3552 return cnt;
3553 }
3554
ata_link_nr_vacant(struct ata_link * link)3555 static int ata_link_nr_vacant(struct ata_link *link)
3556 {
3557 struct ata_device *dev;
3558 int cnt = 0;
3559
3560 ata_for_each_dev(dev, link, ALL)
3561 if (dev->class == ATA_DEV_UNKNOWN)
3562 cnt++;
3563 return cnt;
3564 }
3565
ata_eh_skip_recovery(struct ata_link * link)3566 static int ata_eh_skip_recovery(struct ata_link *link)
3567 {
3568 struct ata_port *ap = link->ap;
3569 struct ata_eh_context *ehc = &link->eh_context;
3570 struct ata_device *dev;
3571
3572 /* skip disabled links */
3573 if (link->flags & ATA_LFLAG_DISABLED)
3574 return 1;
3575
3576 /* skip if explicitly requested */
3577 if (ehc->i.flags & ATA_EHI_NO_RECOVERY)
3578 return 1;
3579
3580 /* thaw frozen port and recover failed devices */
3581 if (ata_port_is_frozen(ap) || ata_link_nr_enabled(link))
3582 return 0;
3583
3584 /* reset at least once if reset is requested */
3585 if ((ehc->i.action & ATA_EH_RESET) &&
3586 !(ehc->i.flags & ATA_EHI_DID_RESET))
3587 return 0;
3588
3589 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
3590 ata_for_each_dev(dev, link, ALL) {
3591 if (dev->class == ATA_DEV_UNKNOWN &&
3592 ehc->classes[dev->devno] != ATA_DEV_NONE)
3593 return 0;
3594 }
3595
3596 return 1;
3597 }
3598
ata_count_probe_trials_cb(struct ata_ering_entry * ent,void * void_arg)3599 static int ata_count_probe_trials_cb(struct ata_ering_entry *ent, void *void_arg)
3600 {
3601 u64 interval = msecs_to_jiffies(ATA_EH_PROBE_TRIAL_INTERVAL);
3602 u64 now = get_jiffies_64();
3603 int *trials = void_arg;
3604
3605 if ((ent->eflags & ATA_EFLAG_OLD_ER) ||
3606 (ent->timestamp < now - min(now, interval)))
3607 return -1;
3608
3609 (*trials)++;
3610 return 0;
3611 }
3612
ata_eh_schedule_probe(struct ata_device * dev)3613 static int ata_eh_schedule_probe(struct ata_device *dev)
3614 {
3615 struct ata_eh_context *ehc = &dev->link->eh_context;
3616 struct ata_link *link = ata_dev_phys_link(dev);
3617 int trials = 0;
3618
3619 if (!(ehc->i.probe_mask & (1 << dev->devno)) ||
3620 (ehc->did_probe_mask & (1 << dev->devno)))
3621 return 0;
3622
3623 ata_eh_detach_dev(dev);
3624 ata_dev_init(dev);
3625 ehc->did_probe_mask |= (1 << dev->devno);
3626 ehc->i.action |= ATA_EH_RESET;
3627 ehc->saved_xfer_mode[dev->devno] = 0;
3628 ehc->saved_ncq_enabled &= ~(1 << dev->devno);
3629
3630 /* the link maybe in a deep sleep, wake it up */
3631 if (link->lpm_policy > ATA_LPM_MAX_POWER) {
3632 if (ata_is_host_link(link))
3633 link->ap->ops->set_lpm(link, ATA_LPM_MAX_POWER,
3634 ATA_LPM_EMPTY);
3635 else
3636 sata_pmp_set_lpm(link, ATA_LPM_MAX_POWER,
3637 ATA_LPM_EMPTY);
3638 }
3639
3640 /* Record and count probe trials on the ering. The specific
3641 * error mask used is irrelevant. Because a successful device
3642 * detection clears the ering, this count accumulates only if
3643 * there are consecutive failed probes.
3644 *
3645 * If the count is equal to or higher than ATA_EH_PROBE_TRIALS
3646 * in the last ATA_EH_PROBE_TRIAL_INTERVAL, link speed is
3647 * forced to 1.5Gbps.
3648 *
3649 * This is to work around cases where failed link speed
3650 * negotiation results in device misdetection leading to
3651 * infinite DEVXCHG or PHRDY CHG events.
3652 */
3653 ata_ering_record(&dev->ering, 0, AC_ERR_OTHER);
3654 ata_ering_map(&dev->ering, ata_count_probe_trials_cb, &trials);
3655
3656 if (trials > ATA_EH_PROBE_TRIALS)
3657 sata_down_spd_limit(link, 1);
3658
3659 return 1;
3660 }
3661
ata_eh_handle_dev_fail(struct ata_device * dev,int err)3662 static int ata_eh_handle_dev_fail(struct ata_device *dev, int err)
3663 {
3664 struct ata_eh_context *ehc = &dev->link->eh_context;
3665
3666 /* -EAGAIN from EH routine indicates retry without prejudice.
3667 * The requester is responsible for ensuring forward progress.
3668 */
3669 if (err != -EAGAIN)
3670 ehc->tries[dev->devno]--;
3671
3672 switch (err) {
3673 case -ENODEV:
3674 /* device missing or wrong IDENTIFY data, schedule probing */
3675 ehc->i.probe_mask |= (1 << dev->devno);
3676 fallthrough;
3677 case -EINVAL:
3678 /* give it just one more chance */
3679 ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1);
3680 fallthrough;
3681 case -EIO:
3682 if (ehc->tries[dev->devno] == 1) {
3683 /* This is the last chance, better to slow
3684 * down than lose it.
3685 */
3686 sata_down_spd_limit(ata_dev_phys_link(dev), 0);
3687 if (dev->pio_mode > XFER_PIO_0)
3688 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
3689 }
3690 }
3691
3692 if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) {
3693 /* disable device if it has used up all its chances */
3694 ata_dev_disable(dev);
3695
3696 /* detach if offline */
3697 if (ata_phys_link_offline(ata_dev_phys_link(dev)))
3698 ata_eh_detach_dev(dev);
3699
3700 /* schedule probe if necessary */
3701 if (ata_eh_schedule_probe(dev)) {
3702 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
3703 memset(ehc->cmd_timeout_idx[dev->devno], 0,
3704 sizeof(ehc->cmd_timeout_idx[dev->devno]));
3705 }
3706
3707 return 1;
3708 } else {
3709 ehc->i.action |= ATA_EH_RESET;
3710 return 0;
3711 }
3712 }
3713
3714 /**
3715 * ata_eh_recover - recover host port after error
3716 * @ap: host port to recover
3717 * @prereset: prereset method (can be NULL)
3718 * @softreset: softreset method (can be NULL)
3719 * @hardreset: hardreset method (can be NULL)
3720 * @postreset: postreset method (can be NULL)
3721 * @r_failed_link: out parameter for failed link
3722 *
3723 * This is the alpha and omega, eum and yang, heart and soul of
3724 * libata exception handling. On entry, actions required to
3725 * recover each link and hotplug requests are recorded in the
3726 * link's eh_context. This function executes all the operations
3727 * with appropriate retrials and fallbacks to resurrect failed
3728 * devices, detach goners and greet newcomers.
3729 *
3730 * LOCKING:
3731 * Kernel thread context (may sleep).
3732 *
3733 * RETURNS:
3734 * 0 on success, -errno on failure.
3735 */
ata_eh_recover(struct ata_port * ap,ata_prereset_fn_t prereset,ata_reset_fn_t softreset,ata_reset_fn_t hardreset,ata_postreset_fn_t postreset,struct ata_link ** r_failed_link)3736 int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
3737 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
3738 ata_postreset_fn_t postreset,
3739 struct ata_link **r_failed_link)
3740 {
3741 struct ata_link *link;
3742 struct ata_device *dev;
3743 int rc, nr_fails;
3744 unsigned long flags, deadline;
3745
3746 /* prep for recovery */
3747 ata_for_each_link(link, ap, EDGE) {
3748 struct ata_eh_context *ehc = &link->eh_context;
3749
3750 /* re-enable link? */
3751 if (ehc->i.action & ATA_EH_ENABLE_LINK) {
3752 ata_eh_about_to_do(link, NULL, ATA_EH_ENABLE_LINK);
3753 spin_lock_irqsave(ap->lock, flags);
3754 link->flags &= ~ATA_LFLAG_DISABLED;
3755 spin_unlock_irqrestore(ap->lock, flags);
3756 ata_eh_done(link, NULL, ATA_EH_ENABLE_LINK);
3757 }
3758
3759 ata_for_each_dev(dev, link, ALL) {
3760 if (link->flags & ATA_LFLAG_NO_RETRY)
3761 ehc->tries[dev->devno] = 1;
3762 else
3763 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
3764
3765 /* collect port action mask recorded in dev actions */
3766 ehc->i.action |= ehc->i.dev_action[dev->devno] &
3767 ~ATA_EH_PERDEV_MASK;
3768 ehc->i.dev_action[dev->devno] &= ATA_EH_PERDEV_MASK;
3769
3770 /* process hotplug request */
3771 if (dev->flags & ATA_DFLAG_DETACH)
3772 ata_eh_detach_dev(dev);
3773
3774 /* schedule probe if necessary */
3775 if (!ata_dev_enabled(dev))
3776 ata_eh_schedule_probe(dev);
3777 }
3778 }
3779
3780 retry:
3781 rc = 0;
3782
3783 /* if UNLOADING, finish immediately */
3784 if (ap->pflags & ATA_PFLAG_UNLOADING)
3785 goto out;
3786
3787 /* prep for EH */
3788 ata_for_each_link(link, ap, EDGE) {
3789 struct ata_eh_context *ehc = &link->eh_context;
3790
3791 /* skip EH if possible. */
3792 if (ata_eh_skip_recovery(link))
3793 ehc->i.action = 0;
3794
3795 ata_for_each_dev(dev, link, ALL)
3796 ehc->classes[dev->devno] = ATA_DEV_UNKNOWN;
3797 }
3798
3799 /* reset */
3800 ata_for_each_link(link, ap, EDGE) {
3801 struct ata_eh_context *ehc = &link->eh_context;
3802
3803 if (!(ehc->i.action & ATA_EH_RESET))
3804 continue;
3805
3806 rc = ata_eh_reset(link, ata_link_nr_vacant(link),
3807 prereset, softreset, hardreset, postreset);
3808 if (rc) {
3809 ata_link_err(link, "reset failed, giving up\n");
3810 goto out;
3811 }
3812 }
3813
3814 do {
3815 unsigned long now;
3816
3817 /*
3818 * clears ATA_EH_PARK in eh_info and resets
3819 * ap->park_req_pending
3820 */
3821 ata_eh_pull_park_action(ap);
3822
3823 deadline = jiffies;
3824 ata_for_each_link(link, ap, EDGE) {
3825 ata_for_each_dev(dev, link, ALL) {
3826 struct ata_eh_context *ehc = &link->eh_context;
3827 unsigned long tmp;
3828
3829 if (dev->class != ATA_DEV_ATA &&
3830 dev->class != ATA_DEV_ZAC)
3831 continue;
3832 if (!(ehc->i.dev_action[dev->devno] &
3833 ATA_EH_PARK))
3834 continue;
3835 tmp = dev->unpark_deadline;
3836 if (time_before(deadline, tmp))
3837 deadline = tmp;
3838 else if (time_before_eq(tmp, jiffies))
3839 continue;
3840 if (ehc->unloaded_mask & (1 << dev->devno))
3841 continue;
3842
3843 ata_eh_park_issue_cmd(dev, 1);
3844 }
3845 }
3846
3847 now = jiffies;
3848 if (time_before_eq(deadline, now))
3849 break;
3850
3851 ata_eh_release(ap);
3852 deadline = wait_for_completion_timeout(&ap->park_req_pending,
3853 deadline - now);
3854 ata_eh_acquire(ap);
3855 } while (deadline);
3856 ata_for_each_link(link, ap, EDGE) {
3857 ata_for_each_dev(dev, link, ALL) {
3858 if (!(link->eh_context.unloaded_mask &
3859 (1 << dev->devno)))
3860 continue;
3861
3862 ata_eh_park_issue_cmd(dev, 0);
3863 ata_eh_done(link, dev, ATA_EH_PARK);
3864 }
3865 }
3866
3867 /* the rest */
3868 nr_fails = 0;
3869 ata_for_each_link(link, ap, PMP_FIRST) {
3870 struct ata_eh_context *ehc = &link->eh_context;
3871
3872 if (sata_pmp_attached(ap) && ata_is_host_link(link))
3873 goto config_lpm;
3874
3875 /* revalidate existing devices and attach new ones */
3876 rc = ata_eh_revalidate_and_attach(link, &dev);
3877 if (rc)
3878 goto rest_fail;
3879
3880 /* if PMP got attached, return, pmp EH will take care of it */
3881 if (link->device->class == ATA_DEV_PMP) {
3882 ehc->i.action = 0;
3883 return 0;
3884 }
3885
3886 /* configure transfer mode if necessary */
3887 if (ehc->i.flags & ATA_EHI_SETMODE) {
3888 rc = ata_set_mode(link, &dev);
3889 if (rc)
3890 goto rest_fail;
3891 ehc->i.flags &= ~ATA_EHI_SETMODE;
3892 }
3893
3894 /* If reset has been issued, clear UA to avoid
3895 * disrupting the current users of the device.
3896 */
3897 if (ehc->i.flags & ATA_EHI_DID_RESET) {
3898 ata_for_each_dev(dev, link, ALL) {
3899 if (dev->class != ATA_DEV_ATAPI)
3900 continue;
3901 rc = atapi_eh_clear_ua(dev);
3902 if (rc)
3903 goto rest_fail;
3904 if (zpodd_dev_enabled(dev))
3905 zpodd_post_poweron(dev);
3906 }
3907 }
3908
3909 /*
3910 * Make sure to transition devices to the active power mode
3911 * if needed (e.g. if we were scheduled on system resume).
3912 */
3913 ata_for_each_dev(dev, link, ENABLED) {
3914 if (ehc->i.dev_action[dev->devno] & ATA_EH_SET_ACTIVE) {
3915 ata_dev_power_set_active(dev);
3916 ata_eh_done(link, dev, ATA_EH_SET_ACTIVE);
3917 }
3918 }
3919
3920 /* retry flush if necessary */
3921 ata_for_each_dev(dev, link, ALL) {
3922 if (dev->class != ATA_DEV_ATA &&
3923 dev->class != ATA_DEV_ZAC)
3924 continue;
3925 rc = ata_eh_maybe_retry_flush(dev);
3926 if (rc)
3927 goto rest_fail;
3928 }
3929
3930 config_lpm:
3931 /* configure link power saving */
3932 if (link->lpm_policy != ap->target_lpm_policy) {
3933 rc = ata_eh_set_lpm(link, ap->target_lpm_policy, &dev);
3934 if (rc)
3935 goto rest_fail;
3936 }
3937
3938 /* this link is okay now */
3939 ehc->i.flags = 0;
3940 continue;
3941
3942 rest_fail:
3943 nr_fails++;
3944 if (dev)
3945 ata_eh_handle_dev_fail(dev, rc);
3946
3947 if (ata_port_is_frozen(ap)) {
3948 /* PMP reset requires working host port.
3949 * Can't retry if it's frozen.
3950 */
3951 if (sata_pmp_attached(ap))
3952 goto out;
3953 break;
3954 }
3955 }
3956
3957 if (nr_fails)
3958 goto retry;
3959
3960 out:
3961 if (rc && r_failed_link)
3962 *r_failed_link = link;
3963
3964 return rc;
3965 }
3966
3967 /**
3968 * ata_eh_finish - finish up EH
3969 * @ap: host port to finish EH for
3970 *
3971 * Recovery is complete. Clean up EH states and retry or finish
3972 * failed qcs.
3973 *
3974 * LOCKING:
3975 * None.
3976 */
ata_eh_finish(struct ata_port * ap)3977 void ata_eh_finish(struct ata_port *ap)
3978 {
3979 struct ata_queued_cmd *qc;
3980 int tag;
3981
3982 /* retry or finish qcs */
3983 ata_qc_for_each_raw(ap, qc, tag) {
3984 if (!(qc->flags & ATA_QCFLAG_EH))
3985 continue;
3986
3987 if (qc->err_mask) {
3988 /* FIXME: Once EH migration is complete,
3989 * generate sense data in this function,
3990 * considering both err_mask and tf.
3991 */
3992 if (qc->flags & ATA_QCFLAG_RETRY) {
3993 /*
3994 * Since qc->err_mask is set, ata_eh_qc_retry()
3995 * will not increment scmd->allowed, so upper
3996 * layer will only retry the command if it has
3997 * not already been retried too many times.
3998 */
3999 ata_eh_qc_retry(qc);
4000 } else {
4001 ata_eh_qc_complete(qc);
4002 }
4003 } else {
4004 if (qc->flags & ATA_QCFLAG_SENSE_VALID ||
4005 qc->flags & ATA_QCFLAG_EH_SUCCESS_CMD) {
4006 ata_eh_qc_complete(qc);
4007 } else {
4008 /* feed zero TF to sense generation */
4009 memset(&qc->result_tf, 0, sizeof(qc->result_tf));
4010 /*
4011 * Since qc->err_mask is not set,
4012 * ata_eh_qc_retry() will increment
4013 * scmd->allowed, so upper layer is guaranteed
4014 * to retry the command.
4015 */
4016 ata_eh_qc_retry(qc);
4017 }
4018 }
4019 }
4020
4021 /* make sure nr_active_links is zero after EH */
4022 WARN_ON(ap->nr_active_links);
4023 ap->nr_active_links = 0;
4024 }
4025
4026 /**
4027 * ata_do_eh - do standard error handling
4028 * @ap: host port to handle error for
4029 *
4030 * @prereset: prereset method (can be NULL)
4031 * @softreset: softreset method (can be NULL)
4032 * @hardreset: hardreset method (can be NULL)
4033 * @postreset: postreset method (can be NULL)
4034 *
4035 * Perform standard error handling sequence.
4036 *
4037 * LOCKING:
4038 * Kernel thread context (may sleep).
4039 */
ata_do_eh(struct ata_port * ap,ata_prereset_fn_t prereset,ata_reset_fn_t softreset,ata_reset_fn_t hardreset,ata_postreset_fn_t postreset)4040 void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
4041 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
4042 ata_postreset_fn_t postreset)
4043 {
4044 struct ata_device *dev;
4045 int rc;
4046
4047 ata_eh_autopsy(ap);
4048 ata_eh_report(ap);
4049
4050 rc = ata_eh_recover(ap, prereset, softreset, hardreset, postreset,
4051 NULL);
4052 if (rc) {
4053 ata_for_each_dev(dev, &ap->link, ALL)
4054 ata_dev_disable(dev);
4055 }
4056
4057 ata_eh_finish(ap);
4058 }
4059
4060 /**
4061 * ata_std_error_handler - standard error handler
4062 * @ap: host port to handle error for
4063 *
4064 * Standard error handler
4065 *
4066 * LOCKING:
4067 * Kernel thread context (may sleep).
4068 */
ata_std_error_handler(struct ata_port * ap)4069 void ata_std_error_handler(struct ata_port *ap)
4070 {
4071 struct ata_port_operations *ops = ap->ops;
4072 ata_reset_fn_t hardreset = ops->hardreset;
4073
4074 /* ignore built-in hardreset if SCR access is not available */
4075 if (hardreset == sata_std_hardreset && !sata_scr_valid(&ap->link))
4076 hardreset = NULL;
4077
4078 ata_do_eh(ap, ops->prereset, ops->softreset, hardreset, ops->postreset);
4079 }
4080 EXPORT_SYMBOL_GPL(ata_std_error_handler);
4081
4082 #ifdef CONFIG_PM
4083 /**
4084 * ata_eh_handle_port_suspend - perform port suspend operation
4085 * @ap: port to suspend
4086 *
4087 * Suspend @ap.
4088 *
4089 * LOCKING:
4090 * Kernel thread context (may sleep).
4091 */
ata_eh_handle_port_suspend(struct ata_port * ap)4092 static void ata_eh_handle_port_suspend(struct ata_port *ap)
4093 {
4094 unsigned long flags;
4095 int rc = 0;
4096 struct ata_device *dev;
4097 struct ata_link *link;
4098
4099 /* are we suspending? */
4100 spin_lock_irqsave(ap->lock, flags);
4101 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
4102 ap->pm_mesg.event & PM_EVENT_RESUME) {
4103 spin_unlock_irqrestore(ap->lock, flags);
4104 return;
4105 }
4106 spin_unlock_irqrestore(ap->lock, flags);
4107
4108 WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED);
4109
4110 /*
4111 * We will reach this point for all of the PM events:
4112 * PM_EVENT_SUSPEND (if runtime pm, PM_EVENT_AUTO will also be set)
4113 * PM_EVENT_FREEZE, and PM_EVENT_HIBERNATE.
4114 *
4115 * We do not want to perform disk spin down for PM_EVENT_FREEZE.
4116 * (Spin down will be performed by the subsequent PM_EVENT_HIBERNATE.)
4117 */
4118 if (!(ap->pm_mesg.event & PM_EVENT_FREEZE)) {
4119 /* Set all devices attached to the port in standby mode */
4120 ata_for_each_link(link, ap, HOST_FIRST) {
4121 ata_for_each_dev(dev, link, ENABLED)
4122 ata_dev_power_set_standby(dev);
4123 }
4124 }
4125
4126 /*
4127 * If we have a ZPODD attached, check its zero
4128 * power ready status before the port is frozen.
4129 * Only needed for runtime suspend.
4130 */
4131 if (PMSG_IS_AUTO(ap->pm_mesg)) {
4132 ata_for_each_dev(dev, &ap->link, ENABLED) {
4133 if (zpodd_dev_enabled(dev))
4134 zpodd_on_suspend(dev);
4135 }
4136 }
4137
4138 /* suspend */
4139 ata_eh_freeze_port(ap);
4140
4141 if (ap->ops->port_suspend)
4142 rc = ap->ops->port_suspend(ap, ap->pm_mesg);
4143
4144 ata_acpi_set_state(ap, ap->pm_mesg);
4145
4146 /* update the flags */
4147 spin_lock_irqsave(ap->lock, flags);
4148
4149 ap->pflags &= ~ATA_PFLAG_PM_PENDING;
4150 if (rc == 0)
4151 ap->pflags |= ATA_PFLAG_SUSPENDED;
4152 else if (ata_port_is_frozen(ap))
4153 ata_port_schedule_eh(ap);
4154
4155 spin_unlock_irqrestore(ap->lock, flags);
4156
4157 return;
4158 }
4159
4160 /**
4161 * ata_eh_handle_port_resume - perform port resume operation
4162 * @ap: port to resume
4163 *
4164 * Resume @ap.
4165 *
4166 * LOCKING:
4167 * Kernel thread context (may sleep).
4168 */
ata_eh_handle_port_resume(struct ata_port * ap)4169 static void ata_eh_handle_port_resume(struct ata_port *ap)
4170 {
4171 struct ata_link *link;
4172 struct ata_device *dev;
4173 unsigned long flags;
4174
4175 /* are we resuming? */
4176 spin_lock_irqsave(ap->lock, flags);
4177 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
4178 !(ap->pm_mesg.event & PM_EVENT_RESUME)) {
4179 spin_unlock_irqrestore(ap->lock, flags);
4180 return;
4181 }
4182 spin_unlock_irqrestore(ap->lock, flags);
4183
4184 WARN_ON(!(ap->pflags & ATA_PFLAG_SUSPENDED));
4185
4186 /*
4187 * Error timestamps are in jiffies which doesn't run while
4188 * suspended and PHY events during resume isn't too uncommon.
4189 * When the two are combined, it can lead to unnecessary speed
4190 * downs if the machine is suspended and resumed repeatedly.
4191 * Clear error history.
4192 */
4193 ata_for_each_link(link, ap, HOST_FIRST)
4194 ata_for_each_dev(dev, link, ALL)
4195 ata_ering_clear(&dev->ering);
4196
4197 ata_acpi_set_state(ap, ap->pm_mesg);
4198
4199 if (ap->ops->port_resume)
4200 ap->ops->port_resume(ap);
4201
4202 /* tell ACPI that we're resuming */
4203 ata_acpi_on_resume(ap);
4204
4205 /* update the flags */
4206 spin_lock_irqsave(ap->lock, flags);
4207 ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED);
4208 ap->pflags |= ATA_PFLAG_RESUMING;
4209 spin_unlock_irqrestore(ap->lock, flags);
4210 }
4211 #endif /* CONFIG_PM */
4212