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