1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * libata-eh.c - libata error handling
5 * Copyright 2006 Tejun Heo <htejun@gmail.com>
7 * libata documentation is available via 'make {ps|pdf}docs',
8 * as Documentation/driver-api/libata.rst
10 * Hardware documentation available from http://www.t13.org/ and
11 * http://www.sata-io.org/
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"
26 #include <linux/libata.h>
28 #include <trace/events/libata.h>
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),
39 ATA_EFLAG_IS_IO
= (1 << 0),
40 ATA_EFLAG_DUBIOUS_XFER
= (1 << 1),
41 ATA_EFLAG_OLD_ER
= (1 << 31),
43 /* error categories */
46 ATA_ECAT_TOUT_HSM
= 2,
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,
54 ATA_EH_CMD_DFL_TIMEOUT
= 5000,
56 /* always put at least this amount of time between resets */
57 ATA_EH_RESET_COOL_DOWN
= 5000,
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.
64 ATA_EH_PRERESET_TIMEOUT
= 10000,
65 ATA_EH_FASTDRAIN_INTERVAL
= 3000,
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,
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.
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 */
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 */
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 */
102 static const unsigned int ata_eh_flush_timeouts
[] = {
103 15000, /* be generous with flush */
105 30000, /* and even more generous */
109 static const unsigned int ata_eh_other_timeouts
[] = {
110 5000, /* same rationale as identify timeout */
112 /* but no merciful 30sec for other commands, it just isn't worth it */
116 struct ata_eh_cmd_timeout_ent
{
118 const unsigned int *timeouts
;
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.
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.
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.
133 #define CMDS(cmds...) (const u8 []){ cmds, 0 }
134 static const struct ata_eh_cmd_timeout_ent
135 ata_eh_cmd_timeout_table
[ATA_EH_CMD_TIMEOUT_TABLE_SIZE
] = {
136 { .commands
= CMDS(ATA_CMD_ID_ATA
, ATA_CMD_ID_ATAPI
),
137 .timeouts
= ata_eh_identify_timeouts
, },
138 { .commands
= CMDS(ATA_CMD_READ_LOG_EXT
, ATA_CMD_READ_LOG_DMA_EXT
),
139 .timeouts
= ata_eh_revalidate_timeouts
, },
140 { .commands
= CMDS(ATA_CMD_READ_NATIVE_MAX
, ATA_CMD_READ_NATIVE_MAX_EXT
),
141 .timeouts
= ata_eh_other_timeouts
, },
142 { .commands
= CMDS(ATA_CMD_SET_MAX
, ATA_CMD_SET_MAX_EXT
),
143 .timeouts
= ata_eh_other_timeouts
, },
144 { .commands
= CMDS(ATA_CMD_SET_FEATURES
),
145 .timeouts
= ata_eh_other_timeouts
, },
146 { .commands
= CMDS(ATA_CMD_INIT_DEV_PARAMS
),
147 .timeouts
= ata_eh_other_timeouts
, },
148 { .commands
= CMDS(ATA_CMD_FLUSH
, ATA_CMD_FLUSH_EXT
),
149 .timeouts
= ata_eh_flush_timeouts
},
150 { .commands
= CMDS(ATA_CMD_VERIFY
),
151 .timeouts
= ata_eh_reset_timeouts
},
155 static void __ata_port_freeze(struct ata_port
*ap
);
156 static int ata_eh_set_lpm(struct ata_link
*link
, enum ata_lpm_policy policy
,
157 struct ata_device
**r_failed_dev
);
159 static void ata_eh_handle_port_suspend(struct ata_port
*ap
);
160 static void ata_eh_handle_port_resume(struct ata_port
*ap
);
161 #else /* CONFIG_PM */
162 static void ata_eh_handle_port_suspend(struct ata_port
*ap
)
165 static void ata_eh_handle_port_resume(struct ata_port
*ap
)
167 #endif /* CONFIG_PM */
169 static __printf(2, 0) void __ata_ehi_pushv_desc(struct ata_eh_info
*ehi
,
170 const char *fmt
, va_list args
)
172 ehi
->desc_len
+= vscnprintf(ehi
->desc
+ ehi
->desc_len
,
173 ATA_EH_DESC_LEN
- ehi
->desc_len
,
178 * __ata_ehi_push_desc - push error description without adding separator
180 * @fmt: printf format string
182 * Format string according to @fmt and append it to @ehi->desc.
185 * spin_lock_irqsave(host lock)
187 void __ata_ehi_push_desc(struct ata_eh_info
*ehi
, const char *fmt
, ...)
192 __ata_ehi_pushv_desc(ehi
, fmt
, args
);
195 EXPORT_SYMBOL_GPL(__ata_ehi_push_desc
);
198 * ata_ehi_push_desc - push error description with separator
200 * @fmt: printf format string
202 * Format string according to @fmt and append it to @ehi->desc.
203 * If @ehi->desc is not empty, ", " is added in-between.
206 * spin_lock_irqsave(host lock)
208 void ata_ehi_push_desc(struct ata_eh_info
*ehi
, const char *fmt
, ...)
213 __ata_ehi_push_desc(ehi
, ", ");
216 __ata_ehi_pushv_desc(ehi
, fmt
, args
);
219 EXPORT_SYMBOL_GPL(ata_ehi_push_desc
);
222 * ata_ehi_clear_desc - clean error description
228 * spin_lock_irqsave(host lock)
230 void ata_ehi_clear_desc(struct ata_eh_info
*ehi
)
235 EXPORT_SYMBOL_GPL(ata_ehi_clear_desc
);
238 * ata_port_desc - append port description
239 * @ap: target ATA port
240 * @fmt: printf format string
242 * Format string according to @fmt and append it to port
243 * description. If port description is not empty, " " is added
244 * in-between. This function is to be used while initializing
245 * ata_host. The description is printed on host registration.
250 void ata_port_desc(struct ata_port
*ap
, const char *fmt
, ...)
254 WARN_ON(!(ap
->pflags
& ATA_PFLAG_INITIALIZING
));
256 if (ap
->link
.eh_info
.desc_len
)
257 __ata_ehi_push_desc(&ap
->link
.eh_info
, " ");
260 __ata_ehi_pushv_desc(&ap
->link
.eh_info
, fmt
, args
);
263 EXPORT_SYMBOL_GPL(ata_port_desc
);
267 * ata_port_pbar_desc - append PCI BAR description
268 * @ap: target ATA port
269 * @bar: target PCI BAR
270 * @offset: offset into PCI BAR
271 * @name: name of the area
273 * If @offset is negative, this function formats a string which
274 * contains the name, address, size and type of the BAR and
275 * appends it to the port description. If @offset is zero or
276 * positive, only name and offsetted address is appended.
281 void ata_port_pbar_desc(struct ata_port
*ap
, int bar
, ssize_t offset
,
284 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
286 unsigned long long start
, len
;
288 if (pci_resource_flags(pdev
, bar
) & IORESOURCE_MEM
)
290 else if (pci_resource_flags(pdev
, bar
) & IORESOURCE_IO
)
293 start
= (unsigned long long)pci_resource_start(pdev
, bar
);
294 len
= (unsigned long long)pci_resource_len(pdev
, bar
);
297 ata_port_desc(ap
, "%s %s%llu@0x%llx", name
, type
, len
, start
);
299 ata_port_desc(ap
, "%s 0x%llx", name
,
300 start
+ (unsigned long long)offset
);
302 EXPORT_SYMBOL_GPL(ata_port_pbar_desc
);
303 #endif /* CONFIG_PCI */
305 static int ata_lookup_timeout_table(u8 cmd
)
309 for (i
= 0; i
< ATA_EH_CMD_TIMEOUT_TABLE_SIZE
; i
++) {
312 for (cur
= ata_eh_cmd_timeout_table
[i
].commands
; *cur
; cur
++)
321 * ata_internal_cmd_timeout - determine timeout for an internal command
322 * @dev: target device
323 * @cmd: internal command to be issued
325 * Determine timeout for internal command @cmd for @dev.
331 * Determined timeout.
333 unsigned int ata_internal_cmd_timeout(struct ata_device
*dev
, u8 cmd
)
335 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
336 int ent
= ata_lookup_timeout_table(cmd
);
340 return ATA_EH_CMD_DFL_TIMEOUT
;
342 idx
= ehc
->cmd_timeout_idx
[dev
->devno
][ent
];
343 return ata_eh_cmd_timeout_table
[ent
].timeouts
[idx
];
347 * ata_internal_cmd_timed_out - notification for internal command timeout
348 * @dev: target device
349 * @cmd: internal command which timed out
351 * Notify EH that internal command @cmd for @dev timed out. This
352 * function should be called only for commands whose timeouts are
353 * determined using ata_internal_cmd_timeout().
358 void ata_internal_cmd_timed_out(struct ata_device
*dev
, u8 cmd
)
360 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
361 int ent
= ata_lookup_timeout_table(cmd
);
367 idx
= ehc
->cmd_timeout_idx
[dev
->devno
][ent
];
368 if (ata_eh_cmd_timeout_table
[ent
].timeouts
[idx
+ 1] != UINT_MAX
)
369 ehc
->cmd_timeout_idx
[dev
->devno
][ent
]++;
372 static void ata_ering_record(struct ata_ering
*ering
, unsigned int eflags
,
373 unsigned int err_mask
)
375 struct ata_ering_entry
*ent
;
380 ering
->cursor
%= ATA_ERING_SIZE
;
382 ent
= &ering
->ring
[ering
->cursor
];
383 ent
->eflags
= eflags
;
384 ent
->err_mask
= err_mask
;
385 ent
->timestamp
= get_jiffies_64();
388 static struct ata_ering_entry
*ata_ering_top(struct ata_ering
*ering
)
390 struct ata_ering_entry
*ent
= &ering
->ring
[ering
->cursor
];
397 int ata_ering_map(struct ata_ering
*ering
,
398 int (*map_fn
)(struct ata_ering_entry
*, void *),
402 struct ata_ering_entry
*ent
;
406 ent
= &ering
->ring
[idx
];
409 rc
= map_fn(ent
, arg
);
412 idx
= (idx
- 1 + ATA_ERING_SIZE
) % ATA_ERING_SIZE
;
413 } while (idx
!= ering
->cursor
);
418 static int ata_ering_clear_cb(struct ata_ering_entry
*ent
, void *void_arg
)
420 ent
->eflags
|= ATA_EFLAG_OLD_ER
;
424 static void ata_ering_clear(struct ata_ering
*ering
)
426 ata_ering_map(ering
, ata_ering_clear_cb
, NULL
);
429 static unsigned int ata_eh_dev_action(struct ata_device
*dev
)
431 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
433 return ehc
->i
.action
| ehc
->i
.dev_action
[dev
->devno
];
436 static void ata_eh_clear_action(struct ata_link
*link
, struct ata_device
*dev
,
437 struct ata_eh_info
*ehi
, unsigned int action
)
439 struct ata_device
*tdev
;
442 ehi
->action
&= ~action
;
443 ata_for_each_dev(tdev
, link
, ALL
)
444 ehi
->dev_action
[tdev
->devno
] &= ~action
;
446 /* doesn't make sense for port-wide EH actions */
447 WARN_ON(!(action
& ATA_EH_PERDEV_MASK
));
449 /* break ehi->action into ehi->dev_action */
450 if (ehi
->action
& action
) {
451 ata_for_each_dev(tdev
, link
, ALL
)
452 ehi
->dev_action
[tdev
->devno
] |=
453 ehi
->action
& action
;
454 ehi
->action
&= ~action
;
457 /* turn off the specified per-dev action */
458 ehi
->dev_action
[dev
->devno
] &= ~action
;
463 * ata_eh_acquire - acquire EH ownership
464 * @ap: ATA port to acquire EH ownership for
466 * Acquire EH ownership for @ap. This is the basic exclusion
467 * mechanism for ports sharing a host. Only one port hanging off
468 * the same host can claim the ownership of EH.
473 void ata_eh_acquire(struct ata_port
*ap
)
475 mutex_lock(&ap
->host
->eh_mutex
);
476 WARN_ON_ONCE(ap
->host
->eh_owner
);
477 ap
->host
->eh_owner
= current
;
481 * ata_eh_release - release EH ownership
482 * @ap: ATA port to release EH ownership for
484 * Release EH ownership for @ap if the caller. The caller must
485 * have acquired EH ownership using ata_eh_acquire() previously.
490 void ata_eh_release(struct ata_port
*ap
)
492 WARN_ON_ONCE(ap
->host
->eh_owner
!= current
);
493 ap
->host
->eh_owner
= NULL
;
494 mutex_unlock(&ap
->host
->eh_mutex
);
497 static void ata_eh_dev_disable(struct ata_device
*dev
)
499 ata_acpi_on_disable(dev
);
500 ata_down_xfermask_limit(dev
, ATA_DNXFER_FORCE_PIO0
| ATA_DNXFER_QUIET
);
504 * From now till the next successful probe, ering is used to
505 * track probe failures. Clear accumulated device error info.
507 ata_ering_clear(&dev
->ering
);
509 ata_dev_free_resources(dev
);
512 static void ata_eh_unload(struct ata_port
*ap
)
514 struct ata_link
*link
;
515 struct ata_device
*dev
;
519 * Unless we are restarting, transition all enabled devices to
520 * standby power mode.
522 if (system_state
!= SYSTEM_RESTART
) {
523 ata_for_each_link(link
, ap
, PMP_FIRST
) {
524 ata_for_each_dev(dev
, link
, ENABLED
)
525 ata_dev_power_set_standby(dev
);
530 * Restore SControl IPM and SPD for the next driver and
531 * disable attached devices.
533 ata_for_each_link(link
, ap
, PMP_FIRST
) {
534 sata_scr_write(link
, SCR_CONTROL
, link
->saved_scontrol
& 0xff0);
535 ata_for_each_dev(dev
, link
, ENABLED
)
536 ata_eh_dev_disable(dev
);
539 /* freeze and set UNLOADED */
540 spin_lock_irqsave(ap
->lock
, flags
);
542 ata_port_freeze(ap
); /* won't be thawed */
543 ap
->pflags
&= ~ATA_PFLAG_EH_PENDING
; /* clear pending from freeze */
544 ap
->pflags
|= ATA_PFLAG_UNLOADED
;
546 spin_unlock_irqrestore(ap
->lock
, flags
);
550 * ata_scsi_error - SCSI layer error handler callback
551 * @host: SCSI host on which error occurred
553 * Handles SCSI-layer-thrown error events.
556 * Inherited from SCSI layer (none, can sleep)
561 void ata_scsi_error(struct Scsi_Host
*host
)
563 struct ata_port
*ap
= ata_shost_to_port(host
);
565 LIST_HEAD(eh_work_q
);
567 spin_lock_irqsave(host
->host_lock
, flags
);
568 list_splice_init(&host
->eh_cmd_q
, &eh_work_q
);
569 spin_unlock_irqrestore(host
->host_lock
, flags
);
571 ata_scsi_cmd_error_handler(host
, ap
, &eh_work_q
);
573 /* If we timed raced normal completion and there is nothing to
574 recover nr_timedout == 0 why exactly are we doing error recovery ? */
575 ata_scsi_port_error_handler(host
, ap
);
577 /* finish or retry handled scmd's and clean up */
578 WARN_ON(!list_empty(&eh_work_q
));
583 * ata_scsi_cmd_error_handler - error callback for a list of commands
584 * @host: scsi host containing the port
585 * @ap: ATA port within the host
586 * @eh_work_q: list of commands to process
588 * process the given list of commands and return those finished to the
589 * ap->eh_done_q. This function is the first part of the libata error
590 * handler which processes a given list of failed commands.
592 void ata_scsi_cmd_error_handler(struct Scsi_Host
*host
, struct ata_port
*ap
,
593 struct list_head
*eh_work_q
)
597 struct scsi_cmnd
*scmd
, *tmp
;
600 /* make sure sff pio task is not running */
601 ata_sff_flush_pio_task(ap
);
603 /* synchronize with host lock and sort out timeouts */
606 * For EH, all qcs are finished in one of three ways -
607 * normal completion, error completion, and SCSI timeout.
608 * Both completions can race against SCSI timeout. When normal
609 * completion wins, the qc never reaches EH. When error
610 * completion wins, the qc has ATA_QCFLAG_EH set.
612 * When SCSI timeout wins, things are a bit more complex.
613 * Normal or error completion can occur after the timeout but
614 * before this point. In such cases, both types of
615 * completions are honored. A scmd is determined to have
616 * timed out iff its associated qc is active and not failed.
618 spin_lock_irqsave(ap
->lock
, flags
);
621 * This must occur under the ap->lock as we don't want
622 * a polled recovery to race the real interrupt handler
624 * The lost_interrupt handler checks for any completed but
625 * non-notified command and completes much like an IRQ handler.
627 * We then fall into the error recovery code which will treat
628 * this as if normal completion won the race
630 if (ap
->ops
->lost_interrupt
)
631 ap
->ops
->lost_interrupt(ap
);
633 list_for_each_entry_safe(scmd
, tmp
, eh_work_q
, eh_entry
) {
634 struct ata_queued_cmd
*qc
;
637 * If the scmd was added to EH, via ata_qc_schedule_eh() ->
638 * scsi_timeout() -> scsi_eh_scmd_add(), scsi_timeout() will
639 * have set DID_TIME_OUT (since libata does not have an abort
640 * handler). Thus, to clear DID_TIME_OUT, clear the host byte.
642 set_host_byte(scmd
, DID_OK
);
644 ata_qc_for_each_raw(ap
, qc
, i
) {
645 if (qc
->flags
& ATA_QCFLAG_ACTIVE
&&
650 if (i
< ATA_MAX_QUEUE
) {
651 /* the scmd has an associated qc */
652 if (!(qc
->flags
& ATA_QCFLAG_EH
)) {
653 /* which hasn't failed yet, timeout */
654 qc
->err_mask
|= AC_ERR_TIMEOUT
;
655 qc
->flags
|= ATA_QCFLAG_EH
;
659 /* Normal completion occurred after
660 * SCSI timeout but before this point.
661 * Successfully complete it.
663 scmd
->retries
= scmd
->allowed
;
664 scsi_eh_finish_cmd(scmd
, &ap
->eh_done_q
);
669 * If we have timed out qcs. They belong to EH from
670 * this point but the state of the controller is
671 * unknown. Freeze the port to make sure the IRQ
672 * handler doesn't diddle with those qcs. This must
673 * be done atomically w.r.t. setting ATA_QCFLAG_EH.
676 __ata_port_freeze(ap
);
678 /* initialize eh_tries */
679 ap
->eh_tries
= ATA_EH_MAX_TRIES
;
681 spin_unlock_irqrestore(ap
->lock
, flags
);
683 EXPORT_SYMBOL(ata_scsi_cmd_error_handler
);
686 * ata_scsi_port_error_handler - recover the port after the commands
687 * @host: SCSI host containing the port
690 * Handle the recovery of the port @ap after all the commands
691 * have been recovered.
693 void ata_scsi_port_error_handler(struct Scsi_Host
*host
, struct ata_port
*ap
)
696 struct ata_link
*link
;
698 /* acquire EH ownership */
701 /* kill fast drain timer */
702 del_timer_sync(&ap
->fastdrain_timer
);
704 /* process port resume request */
705 ata_eh_handle_port_resume(ap
);
707 /* fetch & clear EH info */
708 spin_lock_irqsave(ap
->lock
, flags
);
710 ata_for_each_link(link
, ap
, HOST_FIRST
) {
711 struct ata_eh_context
*ehc
= &link
->eh_context
;
712 struct ata_device
*dev
;
714 memset(&link
->eh_context
, 0, sizeof(link
->eh_context
));
715 link
->eh_context
.i
= link
->eh_info
;
716 memset(&link
->eh_info
, 0, sizeof(link
->eh_info
));
718 ata_for_each_dev(dev
, link
, ENABLED
) {
719 int devno
= dev
->devno
;
721 ehc
->saved_xfer_mode
[devno
] = dev
->xfer_mode
;
722 if (ata_ncq_enabled(dev
))
723 ehc
->saved_ncq_enabled
|= 1 << devno
;
725 /* If we are resuming, wake up the device */
726 if (ap
->pflags
& ATA_PFLAG_RESUMING
) {
727 dev
->flags
|= ATA_DFLAG_RESUMING
;
728 ehc
->i
.dev_action
[devno
] |= ATA_EH_SET_ACTIVE
;
733 ap
->pflags
|= ATA_PFLAG_EH_IN_PROGRESS
;
734 ap
->pflags
&= ~ATA_PFLAG_EH_PENDING
;
735 ap
->excl_link
= NULL
; /* don't maintain exclusion over EH */
737 spin_unlock_irqrestore(ap
->lock
, flags
);
739 /* invoke EH, skip if unloading or suspended */
740 if (!(ap
->pflags
& (ATA_PFLAG_UNLOADING
| ATA_PFLAG_SUSPENDED
)))
741 ap
->ops
->error_handler(ap
);
743 /* if unloading, commence suicide */
744 if ((ap
->pflags
& ATA_PFLAG_UNLOADING
) &&
745 !(ap
->pflags
& ATA_PFLAG_UNLOADED
))
750 /* process port suspend request */
751 ata_eh_handle_port_suspend(ap
);
754 * Exception might have happened after ->error_handler recovered the
755 * port but before this point. Repeat EH in such case.
757 spin_lock_irqsave(ap
->lock
, flags
);
759 if (ap
->pflags
& ATA_PFLAG_EH_PENDING
) {
760 if (--ap
->eh_tries
) {
761 spin_unlock_irqrestore(ap
->lock
, flags
);
765 "EH pending after %d tries, giving up\n",
767 ap
->pflags
&= ~ATA_PFLAG_EH_PENDING
;
770 /* this run is complete, make sure EH info is clear */
771 ata_for_each_link(link
, ap
, HOST_FIRST
)
772 memset(&link
->eh_info
, 0, sizeof(link
->eh_info
));
775 * end eh (clear host_eh_scheduled) while holding ap->lock such that if
776 * exception occurs after this point but before EH completion, SCSI
777 * midlayer will re-initiate EH.
781 spin_unlock_irqrestore(ap
->lock
, flags
);
784 scsi_eh_flush_done_q(&ap
->eh_done_q
);
787 spin_lock_irqsave(ap
->lock
, flags
);
789 ap
->pflags
&= ~ATA_PFLAG_RESUMING
;
791 if (ap
->pflags
& ATA_PFLAG_LOADING
)
792 ap
->pflags
&= ~ATA_PFLAG_LOADING
;
793 else if ((ap
->pflags
& ATA_PFLAG_SCSI_HOTPLUG
) &&
794 !(ap
->flags
& ATA_FLAG_SAS_HOST
))
795 schedule_delayed_work(&ap
->hotplug_task
, 0);
797 if (ap
->pflags
& ATA_PFLAG_RECOVERED
)
798 ata_port_info(ap
, "EH complete\n");
800 ap
->pflags
&= ~(ATA_PFLAG_SCSI_HOTPLUG
| ATA_PFLAG_RECOVERED
);
802 /* tell wait_eh that we're done */
803 ap
->pflags
&= ~ATA_PFLAG_EH_IN_PROGRESS
;
804 wake_up_all(&ap
->eh_wait_q
);
806 spin_unlock_irqrestore(ap
->lock
, flags
);
808 EXPORT_SYMBOL_GPL(ata_scsi_port_error_handler
);
811 * ata_port_wait_eh - Wait for the currently pending EH to complete
812 * @ap: Port to wait EH for
814 * Wait until the currently pending EH is complete.
817 * Kernel thread context (may sleep).
819 void ata_port_wait_eh(struct ata_port
*ap
)
825 spin_lock_irqsave(ap
->lock
, flags
);
827 while (ap
->pflags
& (ATA_PFLAG_EH_PENDING
| ATA_PFLAG_EH_IN_PROGRESS
)) {
828 prepare_to_wait(&ap
->eh_wait_q
, &wait
, TASK_UNINTERRUPTIBLE
);
829 spin_unlock_irqrestore(ap
->lock
, flags
);
831 spin_lock_irqsave(ap
->lock
, flags
);
833 finish_wait(&ap
->eh_wait_q
, &wait
);
835 spin_unlock_irqrestore(ap
->lock
, flags
);
837 /* make sure SCSI EH is complete */
838 if (scsi_host_in_recovery(ap
->scsi_host
)) {
843 EXPORT_SYMBOL_GPL(ata_port_wait_eh
);
845 static unsigned int ata_eh_nr_in_flight(struct ata_port
*ap
)
847 struct ata_queued_cmd
*qc
;
851 /* count only non-internal commands */
852 ata_qc_for_each(ap
, qc
, tag
) {
860 void ata_eh_fastdrain_timerfn(struct timer_list
*t
)
862 struct ata_port
*ap
= from_timer(ap
, t
, fastdrain_timer
);
866 spin_lock_irqsave(ap
->lock
, flags
);
868 cnt
= ata_eh_nr_in_flight(ap
);
874 if (cnt
== ap
->fastdrain_cnt
) {
875 struct ata_queued_cmd
*qc
;
878 /* No progress during the last interval, tag all
879 * in-flight qcs as timed out and freeze the port.
881 ata_qc_for_each(ap
, qc
, tag
) {
883 qc
->err_mask
|= AC_ERR_TIMEOUT
;
888 /* some qcs have finished, give it another chance */
889 ap
->fastdrain_cnt
= cnt
;
890 ap
->fastdrain_timer
.expires
=
891 ata_deadline(jiffies
, ATA_EH_FASTDRAIN_INTERVAL
);
892 add_timer(&ap
->fastdrain_timer
);
896 spin_unlock_irqrestore(ap
->lock
, flags
);
900 * ata_eh_set_pending - set ATA_PFLAG_EH_PENDING and activate fast drain
901 * @ap: target ATA port
902 * @fastdrain: activate fast drain
904 * Set ATA_PFLAG_EH_PENDING and activate fast drain if @fastdrain
905 * is non-zero and EH wasn't pending before. Fast drain ensures
906 * that EH kicks in in timely manner.
909 * spin_lock_irqsave(host lock)
911 static void ata_eh_set_pending(struct ata_port
*ap
, int fastdrain
)
915 /* already scheduled? */
916 if (ap
->pflags
& ATA_PFLAG_EH_PENDING
)
919 ap
->pflags
|= ATA_PFLAG_EH_PENDING
;
924 /* do we have in-flight qcs? */
925 cnt
= ata_eh_nr_in_flight(ap
);
929 /* activate fast drain */
930 ap
->fastdrain_cnt
= cnt
;
931 ap
->fastdrain_timer
.expires
=
932 ata_deadline(jiffies
, ATA_EH_FASTDRAIN_INTERVAL
);
933 add_timer(&ap
->fastdrain_timer
);
937 * ata_qc_schedule_eh - schedule qc for error handling
938 * @qc: command to schedule error handling for
940 * Schedule error handling for @qc. EH will kick in as soon as
941 * other commands are drained.
944 * spin_lock_irqsave(host lock)
946 void ata_qc_schedule_eh(struct ata_queued_cmd
*qc
)
948 struct ata_port
*ap
= qc
->ap
;
950 qc
->flags
|= ATA_QCFLAG_EH
;
951 ata_eh_set_pending(ap
, 1);
953 /* The following will fail if timeout has already expired.
954 * ata_scsi_error() takes care of such scmds on EH entry.
955 * Note that ATA_QCFLAG_EH is unconditionally set after
956 * this function completes.
958 blk_abort_request(scsi_cmd_to_rq(qc
->scsicmd
));
962 * ata_std_sched_eh - non-libsas ata_ports issue eh with this common routine
963 * @ap: ATA port to schedule EH for
965 * LOCKING: inherited from ata_port_schedule_eh
966 * spin_lock_irqsave(host lock)
968 void ata_std_sched_eh(struct ata_port
*ap
)
970 if (ap
->pflags
& ATA_PFLAG_INITIALIZING
)
973 ata_eh_set_pending(ap
, 1);
974 scsi_schedule_eh(ap
->scsi_host
);
976 trace_ata_std_sched_eh(ap
);
978 EXPORT_SYMBOL_GPL(ata_std_sched_eh
);
981 * ata_std_end_eh - non-libsas ata_ports complete eh with this common routine
982 * @ap: ATA port to end EH for
984 * In the libata object model there is a 1:1 mapping of ata_port to
985 * shost, so host fields can be directly manipulated under ap->lock, in
986 * the libsas case we need to hold a lock at the ha->level to coordinate
990 * spin_lock_irqsave(host lock)
992 void ata_std_end_eh(struct ata_port
*ap
)
994 struct Scsi_Host
*host
= ap
->scsi_host
;
996 host
->host_eh_scheduled
= 0;
998 EXPORT_SYMBOL(ata_std_end_eh
);
1002 * ata_port_schedule_eh - schedule error handling without a qc
1003 * @ap: ATA port to schedule EH for
1005 * Schedule error handling for @ap. EH will kick in as soon as
1006 * all commands are drained.
1009 * spin_lock_irqsave(host lock)
1011 void ata_port_schedule_eh(struct ata_port
*ap
)
1013 /* see: ata_std_sched_eh, unless you know better */
1014 ap
->ops
->sched_eh(ap
);
1016 EXPORT_SYMBOL_GPL(ata_port_schedule_eh
);
1018 static int ata_do_link_abort(struct ata_port
*ap
, struct ata_link
*link
)
1020 struct ata_queued_cmd
*qc
;
1021 int tag
, nr_aborted
= 0;
1023 /* we're gonna abort all commands, no need for fast drain */
1024 ata_eh_set_pending(ap
, 0);
1026 /* include internal tag in iteration */
1027 ata_qc_for_each_with_internal(ap
, qc
, tag
) {
1028 if (qc
&& (!link
|| qc
->dev
->link
== link
)) {
1029 qc
->flags
|= ATA_QCFLAG_EH
;
1030 ata_qc_complete(qc
);
1036 ata_port_schedule_eh(ap
);
1042 * ata_link_abort - abort all qc's on the link
1043 * @link: ATA link to abort qc's for
1045 * Abort all active qc's active on @link and schedule EH.
1048 * spin_lock_irqsave(host lock)
1051 * Number of aborted qc's.
1053 int ata_link_abort(struct ata_link
*link
)
1055 return ata_do_link_abort(link
->ap
, link
);
1057 EXPORT_SYMBOL_GPL(ata_link_abort
);
1060 * ata_port_abort - abort all qc's on the port
1061 * @ap: ATA port to abort qc's for
1063 * Abort all active qc's of @ap and schedule EH.
1066 * spin_lock_irqsave(host_set lock)
1069 * Number of aborted qc's.
1071 int ata_port_abort(struct ata_port
*ap
)
1073 return ata_do_link_abort(ap
, NULL
);
1075 EXPORT_SYMBOL_GPL(ata_port_abort
);
1078 * __ata_port_freeze - freeze port
1079 * @ap: ATA port to freeze
1081 * This function is called when HSM violation or some other
1082 * condition disrupts normal operation of the port. Frozen port
1083 * is not allowed to perform any operation until the port is
1084 * thawed, which usually follows a successful reset.
1086 * ap->ops->freeze() callback can be used for freezing the port
1087 * hardware-wise (e.g. mask interrupt and stop DMA engine). If a
1088 * port cannot be frozen hardware-wise, the interrupt handler
1089 * must ack and clear interrupts unconditionally while the port
1093 * spin_lock_irqsave(host lock)
1095 static void __ata_port_freeze(struct ata_port
*ap
)
1097 if (ap
->ops
->freeze
)
1098 ap
->ops
->freeze(ap
);
1100 ap
->pflags
|= ATA_PFLAG_FROZEN
;
1102 trace_ata_port_freeze(ap
);
1106 * ata_port_freeze - abort & freeze port
1107 * @ap: ATA port to freeze
1109 * Abort and freeze @ap. The freeze operation must be called
1110 * first, because some hardware requires special operations
1111 * before the taskfile registers are accessible.
1114 * spin_lock_irqsave(host lock)
1117 * Number of aborted commands.
1119 int ata_port_freeze(struct ata_port
*ap
)
1121 __ata_port_freeze(ap
);
1123 return ata_port_abort(ap
);
1125 EXPORT_SYMBOL_GPL(ata_port_freeze
);
1128 * ata_eh_freeze_port - EH helper to freeze port
1129 * @ap: ATA port to freeze
1136 void ata_eh_freeze_port(struct ata_port
*ap
)
1138 unsigned long flags
;
1140 spin_lock_irqsave(ap
->lock
, flags
);
1141 __ata_port_freeze(ap
);
1142 spin_unlock_irqrestore(ap
->lock
, flags
);
1144 EXPORT_SYMBOL_GPL(ata_eh_freeze_port
);
1147 * ata_eh_thaw_port - EH helper to thaw port
1148 * @ap: ATA port to thaw
1150 * Thaw frozen port @ap.
1155 void ata_eh_thaw_port(struct ata_port
*ap
)
1157 unsigned long flags
;
1159 spin_lock_irqsave(ap
->lock
, flags
);
1161 ap
->pflags
&= ~ATA_PFLAG_FROZEN
;
1166 spin_unlock_irqrestore(ap
->lock
, flags
);
1168 trace_ata_port_thaw(ap
);
1171 static void ata_eh_scsidone(struct scsi_cmnd
*scmd
)
1176 static void __ata_eh_qc_complete(struct ata_queued_cmd
*qc
)
1178 struct ata_port
*ap
= qc
->ap
;
1179 struct scsi_cmnd
*scmd
= qc
->scsicmd
;
1180 unsigned long flags
;
1182 spin_lock_irqsave(ap
->lock
, flags
);
1183 qc
->scsidone
= ata_eh_scsidone
;
1184 __ata_qc_complete(qc
);
1185 WARN_ON(ata_tag_valid(qc
->tag
));
1186 spin_unlock_irqrestore(ap
->lock
, flags
);
1188 scsi_eh_finish_cmd(scmd
, &ap
->eh_done_q
);
1192 * ata_eh_qc_complete - Complete an active ATA command from EH
1193 * @qc: Command to complete
1195 * Indicate to the mid and upper layers that an ATA command has
1196 * completed. To be used from EH.
1198 void ata_eh_qc_complete(struct ata_queued_cmd
*qc
)
1200 struct scsi_cmnd
*scmd
= qc
->scsicmd
;
1201 scmd
->retries
= scmd
->allowed
;
1202 __ata_eh_qc_complete(qc
);
1206 * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
1207 * @qc: Command to retry
1209 * Indicate to the mid and upper layers that an ATA command
1210 * should be retried. To be used from EH.
1212 * SCSI midlayer limits the number of retries to scmd->allowed.
1213 * scmd->allowed is incremented for commands which get retried
1214 * due to unrelated failures (qc->err_mask is zero).
1216 void ata_eh_qc_retry(struct ata_queued_cmd
*qc
)
1218 struct scsi_cmnd
*scmd
= qc
->scsicmd
;
1221 __ata_eh_qc_complete(qc
);
1225 * ata_dev_disable - disable ATA device
1226 * @dev: ATA device to disable
1233 void ata_dev_disable(struct ata_device
*dev
)
1235 if (!ata_dev_enabled(dev
))
1238 ata_dev_warn(dev
, "disable device\n");
1240 ata_eh_dev_disable(dev
);
1242 EXPORT_SYMBOL_GPL(ata_dev_disable
);
1245 * ata_eh_detach_dev - detach ATA device
1246 * @dev: ATA device to detach
1253 void ata_eh_detach_dev(struct ata_device
*dev
)
1255 struct ata_link
*link
= dev
->link
;
1256 struct ata_port
*ap
= link
->ap
;
1257 struct ata_eh_context
*ehc
= &link
->eh_context
;
1258 unsigned long flags
;
1261 * If the device is still enabled, transition it to standby power mode
1262 * (i.e. spin down HDDs) and disable it.
1264 if (ata_dev_enabled(dev
)) {
1265 ata_dev_power_set_standby(dev
);
1266 ata_eh_dev_disable(dev
);
1269 spin_lock_irqsave(ap
->lock
, flags
);
1271 dev
->flags
&= ~ATA_DFLAG_DETACH
;
1273 if (ata_scsi_offline_dev(dev
)) {
1274 dev
->flags
|= ATA_DFLAG_DETACHED
;
1275 ap
->pflags
|= ATA_PFLAG_SCSI_HOTPLUG
;
1278 /* clear per-dev EH info */
1279 ata_eh_clear_action(link
, dev
, &link
->eh_info
, ATA_EH_PERDEV_MASK
);
1280 ata_eh_clear_action(link
, dev
, &link
->eh_context
.i
, ATA_EH_PERDEV_MASK
);
1281 ehc
->saved_xfer_mode
[dev
->devno
] = 0;
1282 ehc
->saved_ncq_enabled
&= ~(1 << dev
->devno
);
1284 spin_unlock_irqrestore(ap
->lock
, flags
);
1288 * ata_eh_about_to_do - about to perform eh_action
1289 * @link: target ATA link
1290 * @dev: target ATA dev for per-dev action (can be NULL)
1291 * @action: action about to be performed
1293 * Called just before performing EH actions to clear related bits
1294 * in @link->eh_info such that eh actions are not unnecessarily
1300 void ata_eh_about_to_do(struct ata_link
*link
, struct ata_device
*dev
,
1301 unsigned int action
)
1303 struct ata_port
*ap
= link
->ap
;
1304 struct ata_eh_info
*ehi
= &link
->eh_info
;
1305 struct ata_eh_context
*ehc
= &link
->eh_context
;
1306 unsigned long flags
;
1308 trace_ata_eh_about_to_do(link
, dev
? dev
->devno
: 0, action
);
1310 spin_lock_irqsave(ap
->lock
, flags
);
1312 ata_eh_clear_action(link
, dev
, ehi
, action
);
1314 /* About to take EH action, set RECOVERED. Ignore actions on
1315 * slave links as master will do them again.
1317 if (!(ehc
->i
.flags
& ATA_EHI_QUIET
) && link
!= ap
->slave_link
)
1318 ap
->pflags
|= ATA_PFLAG_RECOVERED
;
1320 spin_unlock_irqrestore(ap
->lock
, flags
);
1324 * ata_eh_done - EH action complete
1325 * @link: ATA link for which EH actions are complete
1326 * @dev: target ATA dev for per-dev action (can be NULL)
1327 * @action: action just completed
1329 * Called right after performing EH actions to clear related bits
1330 * in @link->eh_context.
1335 void ata_eh_done(struct ata_link
*link
, struct ata_device
*dev
,
1336 unsigned int action
)
1338 struct ata_eh_context
*ehc
= &link
->eh_context
;
1340 trace_ata_eh_done(link
, dev
? dev
->devno
: 0, action
);
1342 ata_eh_clear_action(link
, dev
, &ehc
->i
, action
);
1346 * ata_err_string - convert err_mask to descriptive string
1347 * @err_mask: error mask to convert to string
1349 * Convert @err_mask to descriptive string. Errors are
1350 * prioritized according to severity and only the most severe
1351 * error is reported.
1357 * Descriptive string for @err_mask
1359 static const char *ata_err_string(unsigned int err_mask
)
1361 if (err_mask
& AC_ERR_HOST_BUS
)
1362 return "host bus error";
1363 if (err_mask
& AC_ERR_ATA_BUS
)
1364 return "ATA bus error";
1365 if (err_mask
& AC_ERR_TIMEOUT
)
1367 if (err_mask
& AC_ERR_HSM
)
1368 return "HSM violation";
1369 if (err_mask
& AC_ERR_SYSTEM
)
1370 return "internal error";
1371 if (err_mask
& AC_ERR_MEDIA
)
1372 return "media error";
1373 if (err_mask
& AC_ERR_INVALID
)
1374 return "invalid argument";
1375 if (err_mask
& AC_ERR_DEV
)
1376 return "device error";
1377 if (err_mask
& AC_ERR_NCQ
)
1379 if (err_mask
& AC_ERR_NODEV_HINT
)
1380 return "Polling detection error";
1381 return "unknown error";
1385 * atapi_eh_tur - perform ATAPI TEST_UNIT_READY
1386 * @dev: target ATAPI device
1387 * @r_sense_key: out parameter for sense_key
1389 * Perform ATAPI TEST_UNIT_READY.
1392 * EH context (may sleep).
1395 * 0 on success, AC_ERR_* mask on failure.
1397 unsigned int atapi_eh_tur(struct ata_device
*dev
, u8
*r_sense_key
)
1399 u8 cdb
[ATAPI_CDB_LEN
] = { TEST_UNIT_READY
, 0, 0, 0, 0, 0 };
1400 struct ata_taskfile tf
;
1401 unsigned int err_mask
;
1403 ata_tf_init(dev
, &tf
);
1405 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
;
1406 tf
.command
= ATA_CMD_PACKET
;
1407 tf
.protocol
= ATAPI_PROT_NODATA
;
1409 err_mask
= ata_exec_internal(dev
, &tf
, cdb
, DMA_NONE
, NULL
, 0, 0);
1410 if (err_mask
== AC_ERR_DEV
)
1411 *r_sense_key
= tf
.error
>> 4;
1416 * ata_eh_decide_disposition - Disposition a qc based on sense data
1417 * @qc: qc to examine
1419 * For a regular SCSI command, the SCSI completion callback (scsi_done())
1420 * will call scsi_complete(), which will call scsi_decide_disposition(),
1421 * which will call scsi_check_sense(). scsi_complete() finally calls
1422 * scsi_finish_command(). This is fine for SCSI, since any eventual sense
1423 * data is usually returned in the completion itself (without invoking SCSI
1424 * EH). However, for a QC, we always need to fetch the sense data
1425 * explicitly using SCSI EH.
1427 * A command that is completed via SCSI EH will instead be completed using
1428 * scsi_eh_flush_done_q(), which will call scsi_finish_command() directly
1429 * (without ever calling scsi_check_sense()).
1431 * For a command that went through SCSI EH, it is the responsibility of the
1432 * SCSI EH strategy handler to call scsi_decide_disposition(), see e.g. how
1433 * scsi_eh_get_sense() calls scsi_decide_disposition() for SCSI LLDDs that
1434 * do not get the sense data as part of the completion.
1436 * Thus, for QC commands that went via SCSI EH, we need to call
1437 * scsi_check_sense() ourselves, similar to how scsi_eh_get_sense() calls
1438 * scsi_decide_disposition(), which calls scsi_check_sense(), in order to
1439 * set the correct SCSI ML byte (if any).
1445 * SUCCESS or FAILED or NEEDS_RETRY or ADD_TO_MLQUEUE
1447 enum scsi_disposition
ata_eh_decide_disposition(struct ata_queued_cmd
*qc
)
1449 return scsi_check_sense(qc
->scsicmd
);
1453 * ata_eh_request_sense - perform REQUEST_SENSE_DATA_EXT
1454 * @qc: qc to perform REQUEST_SENSE_SENSE_DATA_EXT to
1456 * Perform REQUEST_SENSE_DATA_EXT after the device reported CHECK
1457 * SENSE. This function is an EH helper.
1460 * Kernel thread context (may sleep).
1463 * true if sense data could be fetched, false otherwise.
1465 static bool ata_eh_request_sense(struct ata_queued_cmd
*qc
)
1467 struct scsi_cmnd
*cmd
= qc
->scsicmd
;
1468 struct ata_device
*dev
= qc
->dev
;
1469 struct ata_taskfile tf
;
1470 unsigned int err_mask
;
1472 if (ata_port_is_frozen(qc
->ap
)) {
1473 ata_dev_warn(dev
, "sense data available but port frozen\n");
1477 if (!ata_id_sense_reporting_enabled(dev
->id
)) {
1478 ata_dev_warn(qc
->dev
, "sense data reporting disabled\n");
1482 ata_tf_init(dev
, &tf
);
1483 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
;
1484 tf
.flags
|= ATA_TFLAG_LBA
| ATA_TFLAG_LBA48
;
1485 tf
.command
= ATA_CMD_REQ_SENSE_DATA
;
1486 tf
.protocol
= ATA_PROT_NODATA
;
1488 err_mask
= ata_exec_internal(dev
, &tf
, NULL
, DMA_NONE
, NULL
, 0, 0);
1489 /* Ignore err_mask; ATA_ERR might be set */
1490 if (tf
.status
& ATA_SENSE
) {
1491 if (ata_scsi_sense_is_valid(tf
.lbah
, tf
.lbam
, tf
.lbal
)) {
1492 /* Set sense without also setting scsicmd->result */
1493 scsi_build_sense_buffer(dev
->flags
& ATA_DFLAG_D_SENSE
,
1494 cmd
->sense_buffer
, tf
.lbah
,
1496 qc
->flags
|= ATA_QCFLAG_SENSE_VALID
;
1500 ata_dev_warn(dev
, "request sense failed stat %02x emask %x\n",
1501 tf
.status
, err_mask
);
1508 * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
1509 * @dev: device to perform REQUEST_SENSE to
1510 * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
1511 * @dfl_sense_key: default sense key to use
1513 * Perform ATAPI REQUEST_SENSE after the device reported CHECK
1514 * SENSE. This function is EH helper.
1517 * Kernel thread context (may sleep).
1520 * 0 on success, AC_ERR_* mask on failure
1522 unsigned int atapi_eh_request_sense(struct ata_device
*dev
,
1523 u8
*sense_buf
, u8 dfl_sense_key
)
1525 u8 cdb
[ATAPI_CDB_LEN
] =
1526 { REQUEST_SENSE
, 0, 0, 0, SCSI_SENSE_BUFFERSIZE
, 0 };
1527 struct ata_port
*ap
= dev
->link
->ap
;
1528 struct ata_taskfile tf
;
1530 memset(sense_buf
, 0, SCSI_SENSE_BUFFERSIZE
);
1532 /* initialize sense_buf with the error register,
1533 * for the case where they are -not- overwritten
1535 sense_buf
[0] = 0x70;
1536 sense_buf
[2] = dfl_sense_key
;
1538 /* some devices time out if garbage left in tf */
1539 ata_tf_init(dev
, &tf
);
1541 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
;
1542 tf
.command
= ATA_CMD_PACKET
;
1544 /* is it pointless to prefer PIO for "safety reasons"? */
1545 if (ap
->flags
& ATA_FLAG_PIO_DMA
) {
1546 tf
.protocol
= ATAPI_PROT_DMA
;
1547 tf
.feature
|= ATAPI_PKT_DMA
;
1549 tf
.protocol
= ATAPI_PROT_PIO
;
1550 tf
.lbam
= SCSI_SENSE_BUFFERSIZE
;
1554 return ata_exec_internal(dev
, &tf
, cdb
, DMA_FROM_DEVICE
,
1555 sense_buf
, SCSI_SENSE_BUFFERSIZE
, 0);
1559 * ata_eh_analyze_serror - analyze SError for a failed port
1560 * @link: ATA link to analyze SError for
1562 * Analyze SError if available and further determine cause of
1568 static void ata_eh_analyze_serror(struct ata_link
*link
)
1570 struct ata_eh_context
*ehc
= &link
->eh_context
;
1571 u32 serror
= ehc
->i
.serror
;
1572 unsigned int err_mask
= 0, action
= 0;
1575 if (serror
& (SERR_PERSISTENT
| SERR_DATA
)) {
1576 err_mask
|= AC_ERR_ATA_BUS
;
1577 action
|= ATA_EH_RESET
;
1579 if (serror
& SERR_PROTOCOL
) {
1580 err_mask
|= AC_ERR_HSM
;
1581 action
|= ATA_EH_RESET
;
1583 if (serror
& SERR_INTERNAL
) {
1584 err_mask
|= AC_ERR_SYSTEM
;
1585 action
|= ATA_EH_RESET
;
1588 /* Determine whether a hotplug event has occurred. Both
1589 * SError.N/X are considered hotplug events for enabled or
1590 * host links. For disabled PMP links, only N bit is
1591 * considered as X bit is left at 1 for link plugging.
1593 if (link
->lpm_policy
> ATA_LPM_MAX_POWER
)
1594 hotplug_mask
= 0; /* hotplug doesn't work w/ LPM */
1595 else if (!(link
->flags
& ATA_LFLAG_DISABLED
) || ata_is_host_link(link
))
1596 hotplug_mask
= SERR_PHYRDY_CHG
| SERR_DEV_XCHG
;
1598 hotplug_mask
= SERR_PHYRDY_CHG
;
1600 if (serror
& hotplug_mask
)
1601 ata_ehi_hotplugged(&ehc
->i
);
1603 ehc
->i
.err_mask
|= err_mask
;
1604 ehc
->i
.action
|= action
;
1608 * ata_eh_analyze_tf - analyze taskfile of a failed qc
1609 * @qc: qc to analyze
1611 * Analyze taskfile of @qc and further determine cause of
1612 * failure. This function also requests ATAPI sense data if
1616 * Kernel thread context (may sleep).
1619 * Determined recovery action
1621 static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd
*qc
)
1623 const struct ata_taskfile
*tf
= &qc
->result_tf
;
1624 unsigned int tmp
, action
= 0;
1625 u8 stat
= tf
->status
, err
= tf
->error
;
1627 if ((stat
& (ATA_BUSY
| ATA_DRQ
| ATA_DRDY
)) != ATA_DRDY
) {
1628 qc
->err_mask
|= AC_ERR_HSM
;
1629 return ATA_EH_RESET
;
1632 if (stat
& (ATA_ERR
| ATA_DF
)) {
1633 qc
->err_mask
|= AC_ERR_DEV
;
1635 * Sense data reporting does not work if the
1636 * device fault bit is set.
1644 switch (qc
->dev
->class) {
1648 * Fetch the sense data explicitly if:
1649 * -It was a non-NCQ command that failed, or
1650 * -It was a NCQ command that failed, but the sense data
1651 * was not included in the NCQ command error log
1652 * (i.e. NCQ autosense is not supported by the device).
1654 if (!(qc
->flags
& ATA_QCFLAG_SENSE_VALID
) &&
1655 (stat
& ATA_SENSE
) && ata_eh_request_sense(qc
))
1656 set_status_byte(qc
->scsicmd
, SAM_STAT_CHECK_CONDITION
);
1658 qc
->err_mask
|= AC_ERR_ATA_BUS
;
1659 if (err
& (ATA_UNC
| ATA_AMNF
))
1660 qc
->err_mask
|= AC_ERR_MEDIA
;
1662 qc
->err_mask
|= AC_ERR_INVALID
;
1666 if (!ata_port_is_frozen(qc
->ap
)) {
1667 tmp
= atapi_eh_request_sense(qc
->dev
,
1668 qc
->scsicmd
->sense_buffer
,
1669 qc
->result_tf
.error
>> 4);
1671 qc
->flags
|= ATA_QCFLAG_SENSE_VALID
;
1673 qc
->err_mask
|= tmp
;
1677 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
) {
1678 enum scsi_disposition ret
= ata_eh_decide_disposition(qc
);
1681 * SUCCESS here means that the sense code could be
1682 * evaluated and should be passed to the upper layers
1683 * for correct evaluation.
1684 * FAILED means the sense code could not be interpreted
1685 * and the device would need to be reset.
1686 * NEEDS_RETRY and ADD_TO_MLQUEUE means that the
1687 * command would need to be retried.
1689 if (ret
== NEEDS_RETRY
|| ret
== ADD_TO_MLQUEUE
) {
1690 qc
->flags
|= ATA_QCFLAG_RETRY
;
1691 qc
->err_mask
|= AC_ERR_OTHER
;
1692 } else if (ret
!= SUCCESS
) {
1693 qc
->err_mask
|= AC_ERR_HSM
;
1696 if (qc
->err_mask
& (AC_ERR_HSM
| AC_ERR_TIMEOUT
| AC_ERR_ATA_BUS
))
1697 action
|= ATA_EH_RESET
;
1702 static int ata_eh_categorize_error(unsigned int eflags
, unsigned int err_mask
,
1707 if (!(eflags
& ATA_EFLAG_DUBIOUS_XFER
))
1711 base
= ATA_ECAT_DUBIOUS_NONE
;
1713 if (err_mask
& AC_ERR_ATA_BUS
)
1714 return base
+ ATA_ECAT_ATA_BUS
;
1716 if (err_mask
& AC_ERR_TIMEOUT
)
1717 return base
+ ATA_ECAT_TOUT_HSM
;
1719 if (eflags
& ATA_EFLAG_IS_IO
) {
1720 if (err_mask
& AC_ERR_HSM
)
1721 return base
+ ATA_ECAT_TOUT_HSM
;
1723 (AC_ERR_DEV
|AC_ERR_MEDIA
|AC_ERR_INVALID
)) == AC_ERR_DEV
)
1724 return base
+ ATA_ECAT_UNK_DEV
;
1730 struct speed_down_verdict_arg
{
1733 int nr_errors
[ATA_ECAT_NR
];
1736 static int speed_down_verdict_cb(struct ata_ering_entry
*ent
, void *void_arg
)
1738 struct speed_down_verdict_arg
*arg
= void_arg
;
1741 if ((ent
->eflags
& ATA_EFLAG_OLD_ER
) || (ent
->timestamp
< arg
->since
))
1744 cat
= ata_eh_categorize_error(ent
->eflags
, ent
->err_mask
,
1746 arg
->nr_errors
[cat
]++;
1752 * ata_eh_speed_down_verdict - Determine speed down verdict
1753 * @dev: Device of interest
1755 * This function examines error ring of @dev and determines
1756 * whether NCQ needs to be turned off, transfer speed should be
1757 * stepped down, or falling back to PIO is necessary.
1759 * ECAT_ATA_BUS : ATA_BUS error for any command
1761 * ECAT_TOUT_HSM : TIMEOUT for any command or HSM violation for
1764 * ECAT_UNK_DEV : Unknown DEV error for IO commands
1766 * ECAT_DUBIOUS_* : Identical to above three but occurred while
1767 * data transfer hasn't been verified.
1771 * NCQ_OFF : Turn off NCQ.
1773 * SPEED_DOWN : Speed down transfer speed but don't fall back
1776 * FALLBACK_TO_PIO : Fall back to PIO.
1778 * Even if multiple verdicts are returned, only one action is
1779 * taken per error. An action triggered by non-DUBIOUS errors
1780 * clears ering, while one triggered by DUBIOUS_* errors doesn't.
1781 * This is to expedite speed down decisions right after device is
1782 * initially configured.
1784 * The following are speed down rules. #1 and #2 deal with
1787 * 1. If more than one DUBIOUS_ATA_BUS or DUBIOUS_TOUT_HSM errors
1788 * occurred during last 5 mins, SPEED_DOWN and FALLBACK_TO_PIO.
1790 * 2. If more than one DUBIOUS_TOUT_HSM or DUBIOUS_UNK_DEV errors
1791 * occurred during last 5 mins, NCQ_OFF.
1793 * 3. If more than 8 ATA_BUS, TOUT_HSM or UNK_DEV errors
1794 * occurred during last 5 mins, FALLBACK_TO_PIO
1796 * 4. If more than 3 TOUT_HSM or UNK_DEV errors occurred
1797 * during last 10 mins, NCQ_OFF.
1799 * 5. If more than 3 ATA_BUS or TOUT_HSM errors, or more than 6
1800 * UNK_DEV errors occurred during last 10 mins, SPEED_DOWN.
1803 * Inherited from caller.
1806 * OR of ATA_EH_SPDN_* flags.
1808 static unsigned int ata_eh_speed_down_verdict(struct ata_device
*dev
)
1810 const u64 j5mins
= 5LLU * 60 * HZ
, j10mins
= 10LLU * 60 * HZ
;
1811 u64 j64
= get_jiffies_64();
1812 struct speed_down_verdict_arg arg
;
1813 unsigned int verdict
= 0;
1815 /* scan past 5 mins of error history */
1816 memset(&arg
, 0, sizeof(arg
));
1817 arg
.since
= j64
- min(j64
, j5mins
);
1818 ata_ering_map(&dev
->ering
, speed_down_verdict_cb
, &arg
);
1820 if (arg
.nr_errors
[ATA_ECAT_DUBIOUS_ATA_BUS
] +
1821 arg
.nr_errors
[ATA_ECAT_DUBIOUS_TOUT_HSM
] > 1)
1822 verdict
|= ATA_EH_SPDN_SPEED_DOWN
|
1823 ATA_EH_SPDN_FALLBACK_TO_PIO
| ATA_EH_SPDN_KEEP_ERRORS
;
1825 if (arg
.nr_errors
[ATA_ECAT_DUBIOUS_TOUT_HSM
] +
1826 arg
.nr_errors
[ATA_ECAT_DUBIOUS_UNK_DEV
] > 1)
1827 verdict
|= ATA_EH_SPDN_NCQ_OFF
| ATA_EH_SPDN_KEEP_ERRORS
;
1829 if (arg
.nr_errors
[ATA_ECAT_ATA_BUS
] +
1830 arg
.nr_errors
[ATA_ECAT_TOUT_HSM
] +
1831 arg
.nr_errors
[ATA_ECAT_UNK_DEV
] > 6)
1832 verdict
|= ATA_EH_SPDN_FALLBACK_TO_PIO
;
1834 /* scan past 10 mins of error history */
1835 memset(&arg
, 0, sizeof(arg
));
1836 arg
.since
= j64
- min(j64
, j10mins
);
1837 ata_ering_map(&dev
->ering
, speed_down_verdict_cb
, &arg
);
1839 if (arg
.nr_errors
[ATA_ECAT_TOUT_HSM
] +
1840 arg
.nr_errors
[ATA_ECAT_UNK_DEV
] > 3)
1841 verdict
|= ATA_EH_SPDN_NCQ_OFF
;
1843 if (arg
.nr_errors
[ATA_ECAT_ATA_BUS
] +
1844 arg
.nr_errors
[ATA_ECAT_TOUT_HSM
] > 3 ||
1845 arg
.nr_errors
[ATA_ECAT_UNK_DEV
] > 6)
1846 verdict
|= ATA_EH_SPDN_SPEED_DOWN
;
1852 * ata_eh_speed_down - record error and speed down if necessary
1853 * @dev: Failed device
1854 * @eflags: mask of ATA_EFLAG_* flags
1855 * @err_mask: err_mask of the error
1857 * Record error and examine error history to determine whether
1858 * adjusting transmission speed is necessary. It also sets
1859 * transmission limits appropriately if such adjustment is
1863 * Kernel thread context (may sleep).
1866 * Determined recovery action.
1868 static unsigned int ata_eh_speed_down(struct ata_device
*dev
,
1869 unsigned int eflags
, unsigned int err_mask
)
1871 struct ata_link
*link
= ata_dev_phys_link(dev
);
1873 unsigned int verdict
;
1874 unsigned int action
= 0;
1876 /* don't bother if Cat-0 error */
1877 if (ata_eh_categorize_error(eflags
, err_mask
, &xfer_ok
) == 0)
1880 /* record error and determine whether speed down is necessary */
1881 ata_ering_record(&dev
->ering
, eflags
, err_mask
);
1882 verdict
= ata_eh_speed_down_verdict(dev
);
1885 if ((verdict
& ATA_EH_SPDN_NCQ_OFF
) && ata_ncq_enabled(dev
)) {
1886 dev
->flags
|= ATA_DFLAG_NCQ_OFF
;
1887 ata_dev_warn(dev
, "NCQ disabled due to excessive errors\n");
1892 if (verdict
& ATA_EH_SPDN_SPEED_DOWN
) {
1893 /* speed down SATA link speed if possible */
1894 if (sata_down_spd_limit(link
, 0) == 0) {
1895 action
|= ATA_EH_RESET
;
1899 /* lower transfer mode */
1900 if (dev
->spdn_cnt
< 2) {
1901 static const int dma_dnxfer_sel
[] =
1902 { ATA_DNXFER_DMA
, ATA_DNXFER_40C
};
1903 static const int pio_dnxfer_sel
[] =
1904 { ATA_DNXFER_PIO
, ATA_DNXFER_FORCE_PIO0
};
1907 if (dev
->xfer_shift
!= ATA_SHIFT_PIO
)
1908 sel
= dma_dnxfer_sel
[dev
->spdn_cnt
];
1910 sel
= pio_dnxfer_sel
[dev
->spdn_cnt
];
1914 if (ata_down_xfermask_limit(dev
, sel
) == 0) {
1915 action
|= ATA_EH_RESET
;
1921 /* Fall back to PIO? Slowing down to PIO is meaningless for
1922 * SATA ATA devices. Consider it only for PATA and SATAPI.
1924 if ((verdict
& ATA_EH_SPDN_FALLBACK_TO_PIO
) && (dev
->spdn_cnt
>= 2) &&
1925 (link
->ap
->cbl
!= ATA_CBL_SATA
|| dev
->class == ATA_DEV_ATAPI
) &&
1926 (dev
->xfer_shift
!= ATA_SHIFT_PIO
)) {
1927 if (ata_down_xfermask_limit(dev
, ATA_DNXFER_FORCE_PIO
) == 0) {
1929 action
|= ATA_EH_RESET
;
1936 /* device has been slowed down, blow error history */
1937 if (!(verdict
& ATA_EH_SPDN_KEEP_ERRORS
))
1938 ata_ering_clear(&dev
->ering
);
1943 * ata_eh_worth_retry - analyze error and decide whether to retry
1944 * @qc: qc to possibly retry
1946 * Look at the cause of the error and decide if a retry
1947 * might be useful or not. We don't want to retry media errors
1948 * because the drive itself has probably already taken 10-30 seconds
1949 * doing its own internal retries before reporting the failure.
1951 static inline int ata_eh_worth_retry(struct ata_queued_cmd
*qc
)
1953 if (qc
->err_mask
& AC_ERR_MEDIA
)
1954 return 0; /* don't retry media errors */
1955 if (qc
->flags
& ATA_QCFLAG_IO
)
1956 return 1; /* otherwise retry anything from fs stack */
1957 if (qc
->err_mask
& AC_ERR_INVALID
)
1958 return 0; /* don't retry these */
1959 return qc
->err_mask
!= AC_ERR_DEV
; /* retry if not dev error */
1963 * ata_eh_quiet - check if we need to be quiet about a command error
1966 * Look at the qc flags anbd its scsi command request flags to determine
1967 * if we need to be quiet about the command failure.
1969 static inline bool ata_eh_quiet(struct ata_queued_cmd
*qc
)
1971 if (qc
->scsicmd
&& scsi_cmd_to_rq(qc
->scsicmd
)->rq_flags
& RQF_QUIET
)
1972 qc
->flags
|= ATA_QCFLAG_QUIET
;
1973 return qc
->flags
& ATA_QCFLAG_QUIET
;
1976 static int ata_eh_get_non_ncq_success_sense(struct ata_link
*link
)
1978 struct ata_port
*ap
= link
->ap
;
1979 struct ata_queued_cmd
*qc
;
1981 qc
= __ata_qc_from_tag(ap
, link
->active_tag
);
1985 if (!(qc
->flags
& ATA_QCFLAG_EH
) ||
1986 !(qc
->flags
& ATA_QCFLAG_EH_SUCCESS_CMD
) ||
1990 if (!ata_eh_request_sense(qc
))
1994 * No point in checking the return value, since the command has already
1995 * completed successfully.
1997 ata_eh_decide_disposition(qc
);
2002 static void ata_eh_get_success_sense(struct ata_link
*link
)
2004 struct ata_eh_context
*ehc
= &link
->eh_context
;
2005 struct ata_device
*dev
= link
->device
;
2006 struct ata_port
*ap
= link
->ap
;
2007 struct ata_queued_cmd
*qc
;
2010 if (!(ehc
->i
.dev_action
[dev
->devno
] & ATA_EH_GET_SUCCESS_SENSE
))
2013 /* if frozen, we can't do much */
2014 if (ata_port_is_frozen(ap
)) {
2016 "successful sense data available but port frozen\n");
2021 * If the link has sactive set, then we have outstanding NCQ commands
2022 * and have to read the Successful NCQ Commands log to get the sense
2023 * data. Otherwise, we are dealing with a non-NCQ command and use
2024 * request sense ext command to retrieve the sense data.
2027 ret
= ata_eh_get_ncq_success_sense(link
);
2029 ret
= ata_eh_get_non_ncq_success_sense(link
);
2033 ata_eh_done(link
, dev
, ATA_EH_GET_SUCCESS_SENSE
);
2038 * If we failed to get sense data for a successful command that ought to
2039 * have sense data, we cannot simply return BLK_STS_OK to user space.
2040 * This is because we can't know if the sense data that we couldn't get
2041 * was actually "DATA CURRENTLY UNAVAILABLE". Reporting such a command
2042 * as success to user space would result in a silent data corruption.
2043 * Thus, add a bogus ABORTED_COMMAND sense data to such commands, such
2044 * that SCSI will report these commands as BLK_STS_IOERR to user space.
2046 ata_qc_for_each_raw(ap
, qc
, tag
) {
2047 if (!(qc
->flags
& ATA_QCFLAG_EH
) ||
2048 !(qc
->flags
& ATA_QCFLAG_EH_SUCCESS_CMD
) ||
2050 ata_dev_phys_link(qc
->dev
) != link
)
2053 /* We managed to get sense for this success command, skip. */
2054 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
)
2057 /* This success command did not have any sense data, skip. */
2058 if (!(qc
->result_tf
.status
& ATA_SENSE
))
2061 /* This success command had sense data, but we failed to get. */
2062 ata_scsi_set_sense(dev
, qc
->scsicmd
, ABORTED_COMMAND
, 0, 0);
2063 qc
->flags
|= ATA_QCFLAG_SENSE_VALID
;
2065 ata_eh_done(link
, dev
, ATA_EH_GET_SUCCESS_SENSE
);
2069 * ata_eh_link_autopsy - analyze error and determine recovery action
2070 * @link: host link to perform autopsy on
2072 * Analyze why @link failed and determine which recovery actions
2073 * are needed. This function also sets more detailed AC_ERR_*
2074 * values and fills sense data for ATAPI CHECK SENSE.
2077 * Kernel thread context (may sleep).
2079 static void ata_eh_link_autopsy(struct ata_link
*link
)
2081 struct ata_port
*ap
= link
->ap
;
2082 struct ata_eh_context
*ehc
= &link
->eh_context
;
2083 struct ata_queued_cmd
*qc
;
2084 struct ata_device
*dev
;
2085 unsigned int all_err_mask
= 0, eflags
= 0;
2086 int tag
, nr_failed
= 0, nr_quiet
= 0;
2090 if (ehc
->i
.flags
& ATA_EHI_NO_AUTOPSY
)
2093 /* obtain and analyze SError */
2094 rc
= sata_scr_read(link
, SCR_ERROR
, &serror
);
2096 ehc
->i
.serror
|= serror
;
2097 ata_eh_analyze_serror(link
);
2098 } else if (rc
!= -EOPNOTSUPP
) {
2099 /* SError read failed, force reset and probing */
2100 ehc
->i
.probe_mask
|= ATA_ALL_DEVICES
;
2101 ehc
->i
.action
|= ATA_EH_RESET
;
2102 ehc
->i
.err_mask
|= AC_ERR_OTHER
;
2105 /* analyze NCQ failure */
2106 ata_eh_analyze_ncq_error(link
);
2109 * Check if this was a successful command that simply needs sense data.
2110 * Since the sense data is not part of the completion, we need to fetch
2111 * it using an additional command. Since this can't be done from irq
2112 * context, the sense data for successful commands are fetched by EH.
2114 ata_eh_get_success_sense(link
);
2116 /* any real error trumps AC_ERR_OTHER */
2117 if (ehc
->i
.err_mask
& ~AC_ERR_OTHER
)
2118 ehc
->i
.err_mask
&= ~AC_ERR_OTHER
;
2120 all_err_mask
|= ehc
->i
.err_mask
;
2122 ata_qc_for_each_raw(ap
, qc
, tag
) {
2123 if (!(qc
->flags
& ATA_QCFLAG_EH
) ||
2124 qc
->flags
& ATA_QCFLAG_RETRY
||
2125 qc
->flags
& ATA_QCFLAG_EH_SUCCESS_CMD
||
2126 ata_dev_phys_link(qc
->dev
) != link
)
2129 /* inherit upper level err_mask */
2130 qc
->err_mask
|= ehc
->i
.err_mask
;
2133 ehc
->i
.action
|= ata_eh_analyze_tf(qc
);
2135 /* DEV errors are probably spurious in case of ATA_BUS error */
2136 if (qc
->err_mask
& AC_ERR_ATA_BUS
)
2137 qc
->err_mask
&= ~(AC_ERR_DEV
| AC_ERR_MEDIA
|
2140 /* any real error trumps unknown error */
2141 if (qc
->err_mask
& ~AC_ERR_OTHER
)
2142 qc
->err_mask
&= ~AC_ERR_OTHER
;
2145 * SENSE_VALID trumps dev/unknown error and revalidation. Upper
2146 * layers will determine whether the command is worth retrying
2147 * based on the sense data and device class/type. Otherwise,
2148 * determine directly if the command is worth retrying using its
2149 * error mask and flags.
2151 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
)
2152 qc
->err_mask
&= ~(AC_ERR_DEV
| AC_ERR_OTHER
);
2153 else if (ata_eh_worth_retry(qc
))
2154 qc
->flags
|= ATA_QCFLAG_RETRY
;
2156 /* accumulate error info */
2157 ehc
->i
.dev
= qc
->dev
;
2158 all_err_mask
|= qc
->err_mask
;
2159 if (qc
->flags
& ATA_QCFLAG_IO
)
2160 eflags
|= ATA_EFLAG_IS_IO
;
2161 trace_ata_eh_link_autopsy_qc(qc
);
2163 /* Count quiet errors */
2164 if (ata_eh_quiet(qc
))
2169 /* If all failed commands requested silence, then be quiet */
2170 if (nr_quiet
== nr_failed
)
2171 ehc
->i
.flags
|= ATA_EHI_QUIET
;
2173 /* enforce default EH actions */
2174 if (ata_port_is_frozen(ap
) ||
2175 all_err_mask
& (AC_ERR_HSM
| AC_ERR_TIMEOUT
))
2176 ehc
->i
.action
|= ATA_EH_RESET
;
2177 else if (((eflags
& ATA_EFLAG_IS_IO
) && all_err_mask
) ||
2178 (!(eflags
& ATA_EFLAG_IS_IO
) && (all_err_mask
& ~AC_ERR_DEV
)))
2179 ehc
->i
.action
|= ATA_EH_REVALIDATE
;
2181 /* If we have offending qcs and the associated failed device,
2182 * perform per-dev EH action only on the offending device.
2185 ehc
->i
.dev_action
[ehc
->i
.dev
->devno
] |=
2186 ehc
->i
.action
& ATA_EH_PERDEV_MASK
;
2187 ehc
->i
.action
&= ~ATA_EH_PERDEV_MASK
;
2190 /* propagate timeout to host link */
2191 if ((all_err_mask
& AC_ERR_TIMEOUT
) && !ata_is_host_link(link
))
2192 ap
->link
.eh_context
.i
.err_mask
|= AC_ERR_TIMEOUT
;
2194 /* record error and consider speeding down */
2196 if (!dev
&& ((ata_link_max_devices(link
) == 1 &&
2197 ata_dev_enabled(link
->device
))))
2201 if (dev
->flags
& ATA_DFLAG_DUBIOUS_XFER
)
2202 eflags
|= ATA_EFLAG_DUBIOUS_XFER
;
2203 ehc
->i
.action
|= ata_eh_speed_down(dev
, eflags
, all_err_mask
);
2204 trace_ata_eh_link_autopsy(dev
, ehc
->i
.action
, all_err_mask
);
2209 * ata_eh_autopsy - analyze error and determine recovery action
2210 * @ap: host port to perform autopsy on
2212 * Analyze all links of @ap and determine why they failed and
2213 * which recovery actions are needed.
2216 * Kernel thread context (may sleep).
2218 void ata_eh_autopsy(struct ata_port
*ap
)
2220 struct ata_link
*link
;
2222 ata_for_each_link(link
, ap
, EDGE
)
2223 ata_eh_link_autopsy(link
);
2225 /* Handle the frigging slave link. Autopsy is done similarly
2226 * but actions and flags are transferred over to the master
2227 * link and handled from there.
2229 if (ap
->slave_link
) {
2230 struct ata_eh_context
*mehc
= &ap
->link
.eh_context
;
2231 struct ata_eh_context
*sehc
= &ap
->slave_link
->eh_context
;
2233 /* transfer control flags from master to slave */
2234 sehc
->i
.flags
|= mehc
->i
.flags
& ATA_EHI_TO_SLAVE_MASK
;
2236 /* perform autopsy on the slave link */
2237 ata_eh_link_autopsy(ap
->slave_link
);
2239 /* transfer actions from slave to master and clear slave */
2240 ata_eh_about_to_do(ap
->slave_link
, NULL
, ATA_EH_ALL_ACTIONS
);
2241 mehc
->i
.action
|= sehc
->i
.action
;
2242 mehc
->i
.dev_action
[1] |= sehc
->i
.dev_action
[1];
2243 mehc
->i
.flags
|= sehc
->i
.flags
;
2244 ata_eh_done(ap
->slave_link
, NULL
, ATA_EH_ALL_ACTIONS
);
2247 /* Autopsy of fanout ports can affect host link autopsy.
2248 * Perform host link autopsy last.
2250 if (sata_pmp_attached(ap
))
2251 ata_eh_link_autopsy(&ap
->link
);
2255 * ata_get_cmd_name - get name for ATA command
2256 * @command: ATA command code to get name for
2258 * Return a textual name of the given command or "unknown"
2263 const char *ata_get_cmd_name(u8 command
)
2265 #ifdef CONFIG_ATA_VERBOSE_ERROR
2271 { ATA_CMD_DEV_RESET
, "DEVICE RESET" },
2272 { ATA_CMD_CHK_POWER
, "CHECK POWER MODE" },
2273 { ATA_CMD_STANDBY
, "STANDBY" },
2274 { ATA_CMD_IDLE
, "IDLE" },
2275 { ATA_CMD_EDD
, "EXECUTE DEVICE DIAGNOSTIC" },
2276 { ATA_CMD_DOWNLOAD_MICRO
, "DOWNLOAD MICROCODE" },
2277 { ATA_CMD_DOWNLOAD_MICRO_DMA
, "DOWNLOAD MICROCODE DMA" },
2278 { ATA_CMD_NOP
, "NOP" },
2279 { ATA_CMD_FLUSH
, "FLUSH CACHE" },
2280 { ATA_CMD_FLUSH_EXT
, "FLUSH CACHE EXT" },
2281 { ATA_CMD_ID_ATA
, "IDENTIFY DEVICE" },
2282 { ATA_CMD_ID_ATAPI
, "IDENTIFY PACKET DEVICE" },
2283 { ATA_CMD_SERVICE
, "SERVICE" },
2284 { ATA_CMD_READ
, "READ DMA" },
2285 { ATA_CMD_READ_EXT
, "READ DMA EXT" },
2286 { ATA_CMD_READ_QUEUED
, "READ DMA QUEUED" },
2287 { ATA_CMD_READ_STREAM_EXT
, "READ STREAM EXT" },
2288 { ATA_CMD_READ_STREAM_DMA_EXT
, "READ STREAM DMA EXT" },
2289 { ATA_CMD_WRITE
, "WRITE DMA" },
2290 { ATA_CMD_WRITE_EXT
, "WRITE DMA EXT" },
2291 { ATA_CMD_WRITE_QUEUED
, "WRITE DMA QUEUED EXT" },
2292 { ATA_CMD_WRITE_STREAM_EXT
, "WRITE STREAM EXT" },
2293 { ATA_CMD_WRITE_STREAM_DMA_EXT
, "WRITE STREAM DMA EXT" },
2294 { ATA_CMD_WRITE_FUA_EXT
, "WRITE DMA FUA EXT" },
2295 { ATA_CMD_WRITE_QUEUED_FUA_EXT
, "WRITE DMA QUEUED FUA EXT" },
2296 { ATA_CMD_FPDMA_READ
, "READ FPDMA QUEUED" },
2297 { ATA_CMD_FPDMA_WRITE
, "WRITE FPDMA QUEUED" },
2298 { ATA_CMD_NCQ_NON_DATA
, "NCQ NON-DATA" },
2299 { ATA_CMD_FPDMA_SEND
, "SEND FPDMA QUEUED" },
2300 { ATA_CMD_FPDMA_RECV
, "RECEIVE FPDMA QUEUED" },
2301 { ATA_CMD_PIO_READ
, "READ SECTOR(S)" },
2302 { ATA_CMD_PIO_READ_EXT
, "READ SECTOR(S) EXT" },
2303 { ATA_CMD_PIO_WRITE
, "WRITE SECTOR(S)" },
2304 { ATA_CMD_PIO_WRITE_EXT
, "WRITE SECTOR(S) EXT" },
2305 { ATA_CMD_READ_MULTI
, "READ MULTIPLE" },
2306 { ATA_CMD_READ_MULTI_EXT
, "READ MULTIPLE EXT" },
2307 { ATA_CMD_WRITE_MULTI
, "WRITE MULTIPLE" },
2308 { ATA_CMD_WRITE_MULTI_EXT
, "WRITE MULTIPLE EXT" },
2309 { ATA_CMD_WRITE_MULTI_FUA_EXT
, "WRITE MULTIPLE FUA EXT" },
2310 { ATA_CMD_SET_FEATURES
, "SET FEATURES" },
2311 { ATA_CMD_SET_MULTI
, "SET MULTIPLE MODE" },
2312 { ATA_CMD_VERIFY
, "READ VERIFY SECTOR(S)" },
2313 { ATA_CMD_VERIFY_EXT
, "READ VERIFY SECTOR(S) EXT" },
2314 { ATA_CMD_WRITE_UNCORR_EXT
, "WRITE UNCORRECTABLE EXT" },
2315 { ATA_CMD_STANDBYNOW1
, "STANDBY IMMEDIATE" },
2316 { ATA_CMD_IDLEIMMEDIATE
, "IDLE IMMEDIATE" },
2317 { ATA_CMD_SLEEP
, "SLEEP" },
2318 { ATA_CMD_INIT_DEV_PARAMS
, "INITIALIZE DEVICE PARAMETERS" },
2319 { ATA_CMD_READ_NATIVE_MAX
, "READ NATIVE MAX ADDRESS" },
2320 { ATA_CMD_READ_NATIVE_MAX_EXT
, "READ NATIVE MAX ADDRESS EXT" },
2321 { ATA_CMD_SET_MAX
, "SET MAX ADDRESS" },
2322 { ATA_CMD_SET_MAX_EXT
, "SET MAX ADDRESS EXT" },
2323 { ATA_CMD_READ_LOG_EXT
, "READ LOG EXT" },
2324 { ATA_CMD_WRITE_LOG_EXT
, "WRITE LOG EXT" },
2325 { ATA_CMD_READ_LOG_DMA_EXT
, "READ LOG DMA EXT" },
2326 { ATA_CMD_WRITE_LOG_DMA_EXT
, "WRITE LOG DMA EXT" },
2327 { ATA_CMD_TRUSTED_NONDATA
, "TRUSTED NON-DATA" },
2328 { ATA_CMD_TRUSTED_RCV
, "TRUSTED RECEIVE" },
2329 { ATA_CMD_TRUSTED_RCV_DMA
, "TRUSTED RECEIVE DMA" },
2330 { ATA_CMD_TRUSTED_SND
, "TRUSTED SEND" },
2331 { ATA_CMD_TRUSTED_SND_DMA
, "TRUSTED SEND DMA" },
2332 { ATA_CMD_PMP_READ
, "READ BUFFER" },
2333 { ATA_CMD_PMP_READ_DMA
, "READ BUFFER DMA" },
2334 { ATA_CMD_PMP_WRITE
, "WRITE BUFFER" },
2335 { ATA_CMD_PMP_WRITE_DMA
, "WRITE BUFFER DMA" },
2336 { ATA_CMD_CONF_OVERLAY
, "DEVICE CONFIGURATION OVERLAY" },
2337 { ATA_CMD_SEC_SET_PASS
, "SECURITY SET PASSWORD" },
2338 { ATA_CMD_SEC_UNLOCK
, "SECURITY UNLOCK" },
2339 { ATA_CMD_SEC_ERASE_PREP
, "SECURITY ERASE PREPARE" },
2340 { ATA_CMD_SEC_ERASE_UNIT
, "SECURITY ERASE UNIT" },
2341 { ATA_CMD_SEC_FREEZE_LOCK
, "SECURITY FREEZE LOCK" },
2342 { ATA_CMD_SEC_DISABLE_PASS
, "SECURITY DISABLE PASSWORD" },
2343 { ATA_CMD_CONFIG_STREAM
, "CONFIGURE STREAM" },
2344 { ATA_CMD_SMART
, "SMART" },
2345 { ATA_CMD_MEDIA_LOCK
, "DOOR LOCK" },
2346 { ATA_CMD_MEDIA_UNLOCK
, "DOOR UNLOCK" },
2347 { ATA_CMD_DSM
, "DATA SET MANAGEMENT" },
2348 { ATA_CMD_CHK_MED_CRD_TYP
, "CHECK MEDIA CARD TYPE" },
2349 { ATA_CMD_CFA_REQ_EXT_ERR
, "CFA REQUEST EXTENDED ERROR" },
2350 { ATA_CMD_CFA_WRITE_NE
, "CFA WRITE SECTORS WITHOUT ERASE" },
2351 { ATA_CMD_CFA_TRANS_SECT
, "CFA TRANSLATE SECTOR" },
2352 { ATA_CMD_CFA_ERASE
, "CFA ERASE SECTORS" },
2353 { ATA_CMD_CFA_WRITE_MULT_NE
, "CFA WRITE MULTIPLE WITHOUT ERASE" },
2354 { ATA_CMD_REQ_SENSE_DATA
, "REQUEST SENSE DATA EXT" },
2355 { ATA_CMD_SANITIZE_DEVICE
, "SANITIZE DEVICE" },
2356 { ATA_CMD_ZAC_MGMT_IN
, "ZAC MANAGEMENT IN" },
2357 { ATA_CMD_ZAC_MGMT_OUT
, "ZAC MANAGEMENT OUT" },
2358 { ATA_CMD_READ_LONG
, "READ LONG (with retries)" },
2359 { ATA_CMD_READ_LONG_ONCE
, "READ LONG (without retries)" },
2360 { ATA_CMD_WRITE_LONG
, "WRITE LONG (with retries)" },
2361 { ATA_CMD_WRITE_LONG_ONCE
, "WRITE LONG (without retries)" },
2362 { ATA_CMD_RESTORE
, "RECALIBRATE" },
2363 { 0, NULL
} /* terminate list */
2367 for (i
= 0; cmd_descr
[i
].text
; i
++)
2368 if (cmd_descr
[i
].command
== command
)
2369 return cmd_descr
[i
].text
;
2374 EXPORT_SYMBOL_GPL(ata_get_cmd_name
);
2377 * ata_eh_link_report - report error handling to user
2378 * @link: ATA link EH is going on
2380 * Report EH to user.
2385 static void ata_eh_link_report(struct ata_link
*link
)
2387 struct ata_port
*ap
= link
->ap
;
2388 struct ata_eh_context
*ehc
= &link
->eh_context
;
2389 struct ata_queued_cmd
*qc
;
2390 const char *frozen
, *desc
;
2391 char tries_buf
[16] = "";
2392 int tag
, nr_failed
= 0;
2394 if (ehc
->i
.flags
& ATA_EHI_QUIET
)
2398 if (ehc
->i
.desc
[0] != '\0')
2401 ata_qc_for_each_raw(ap
, qc
, tag
) {
2402 if (!(qc
->flags
& ATA_QCFLAG_EH
) ||
2403 ata_dev_phys_link(qc
->dev
) != link
||
2404 ((qc
->flags
& ATA_QCFLAG_QUIET
) &&
2405 qc
->err_mask
== AC_ERR_DEV
))
2407 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
&& !qc
->err_mask
)
2413 if (!nr_failed
&& !ehc
->i
.err_mask
)
2417 if (ata_port_is_frozen(ap
))
2420 if (ap
->eh_tries
< ATA_EH_MAX_TRIES
)
2421 snprintf(tries_buf
, sizeof(tries_buf
), " t%d",
2425 ata_dev_err(ehc
->i
.dev
, "exception Emask 0x%x "
2426 "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2427 ehc
->i
.err_mask
, link
->sactive
, ehc
->i
.serror
,
2428 ehc
->i
.action
, frozen
, tries_buf
);
2430 ata_dev_err(ehc
->i
.dev
, "%s\n", desc
);
2432 ata_link_err(link
, "exception Emask 0x%x "
2433 "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2434 ehc
->i
.err_mask
, link
->sactive
, ehc
->i
.serror
,
2435 ehc
->i
.action
, frozen
, tries_buf
);
2437 ata_link_err(link
, "%s\n", desc
);
2440 #ifdef CONFIG_ATA_VERBOSE_ERROR
2443 "SError: { %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s}\n",
2444 ehc
->i
.serror
& SERR_DATA_RECOVERED
? "RecovData " : "",
2445 ehc
->i
.serror
& SERR_COMM_RECOVERED
? "RecovComm " : "",
2446 ehc
->i
.serror
& SERR_DATA
? "UnrecovData " : "",
2447 ehc
->i
.serror
& SERR_PERSISTENT
? "Persist " : "",
2448 ehc
->i
.serror
& SERR_PROTOCOL
? "Proto " : "",
2449 ehc
->i
.serror
& SERR_INTERNAL
? "HostInt " : "",
2450 ehc
->i
.serror
& SERR_PHYRDY_CHG
? "PHYRdyChg " : "",
2451 ehc
->i
.serror
& SERR_PHY_INT_ERR
? "PHYInt " : "",
2452 ehc
->i
.serror
& SERR_COMM_WAKE
? "CommWake " : "",
2453 ehc
->i
.serror
& SERR_10B_8B_ERR
? "10B8B " : "",
2454 ehc
->i
.serror
& SERR_DISPARITY
? "Dispar " : "",
2455 ehc
->i
.serror
& SERR_CRC
? "BadCRC " : "",
2456 ehc
->i
.serror
& SERR_HANDSHAKE
? "Handshk " : "",
2457 ehc
->i
.serror
& SERR_LINK_SEQ_ERR
? "LinkSeq " : "",
2458 ehc
->i
.serror
& SERR_TRANS_ST_ERROR
? "TrStaTrns " : "",
2459 ehc
->i
.serror
& SERR_UNRECOG_FIS
? "UnrecFIS " : "",
2460 ehc
->i
.serror
& SERR_DEV_XCHG
? "DevExch " : "");
2463 ata_qc_for_each_raw(ap
, qc
, tag
) {
2464 struct ata_taskfile
*cmd
= &qc
->tf
, *res
= &qc
->result_tf
;
2465 char data_buf
[20] = "";
2466 char cdb_buf
[70] = "";
2468 if (!(qc
->flags
& ATA_QCFLAG_EH
) ||
2469 ata_dev_phys_link(qc
->dev
) != link
|| !qc
->err_mask
)
2472 if (qc
->dma_dir
!= DMA_NONE
) {
2473 static const char *dma_str
[] = {
2474 [DMA_BIDIRECTIONAL
] = "bidi",
2475 [DMA_TO_DEVICE
] = "out",
2476 [DMA_FROM_DEVICE
] = "in",
2478 const char *prot_str
= NULL
;
2480 switch (qc
->tf
.protocol
) {
2481 case ATA_PROT_UNKNOWN
:
2482 prot_str
= "unknown";
2484 case ATA_PROT_NODATA
:
2485 prot_str
= "nodata";
2494 prot_str
= "ncq dma";
2496 case ATA_PROT_NCQ_NODATA
:
2497 prot_str
= "ncq nodata";
2499 case ATAPI_PROT_NODATA
:
2500 prot_str
= "nodata";
2502 case ATAPI_PROT_PIO
:
2505 case ATAPI_PROT_DMA
:
2509 snprintf(data_buf
, sizeof(data_buf
), " %s %u %s",
2510 prot_str
, qc
->nbytes
, dma_str
[qc
->dma_dir
]);
2513 if (ata_is_atapi(qc
->tf
.protocol
)) {
2514 const u8
*cdb
= qc
->cdb
;
2515 size_t cdb_len
= qc
->dev
->cdb_len
;
2518 cdb
= qc
->scsicmd
->cmnd
;
2519 cdb_len
= qc
->scsicmd
->cmd_len
;
2521 __scsi_format_command(cdb_buf
, sizeof(cdb_buf
),
2524 ata_dev_err(qc
->dev
, "failed command: %s\n",
2525 ata_get_cmd_name(cmd
->command
));
2527 ata_dev_err(qc
->dev
,
2528 "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
2530 "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
2531 "Emask 0x%x (%s)%s\n",
2532 cmd
->command
, cmd
->feature
, cmd
->nsect
,
2533 cmd
->lbal
, cmd
->lbam
, cmd
->lbah
,
2534 cmd
->hob_feature
, cmd
->hob_nsect
,
2535 cmd
->hob_lbal
, cmd
->hob_lbam
, cmd
->hob_lbah
,
2536 cmd
->device
, qc
->tag
, data_buf
, cdb_buf
,
2537 res
->status
, res
->error
, res
->nsect
,
2538 res
->lbal
, res
->lbam
, res
->lbah
,
2539 res
->hob_feature
, res
->hob_nsect
,
2540 res
->hob_lbal
, res
->hob_lbam
, res
->hob_lbah
,
2541 res
->device
, qc
->err_mask
, ata_err_string(qc
->err_mask
),
2542 qc
->err_mask
& AC_ERR_NCQ
? " <F>" : "");
2544 #ifdef CONFIG_ATA_VERBOSE_ERROR
2545 if (res
->status
& (ATA_BUSY
| ATA_DRDY
| ATA_DF
| ATA_DRQ
|
2546 ATA_SENSE
| ATA_ERR
)) {
2547 if (res
->status
& ATA_BUSY
)
2548 ata_dev_err(qc
->dev
, "status: { Busy }\n");
2550 ata_dev_err(qc
->dev
, "status: { %s%s%s%s%s}\n",
2551 res
->status
& ATA_DRDY
? "DRDY " : "",
2552 res
->status
& ATA_DF
? "DF " : "",
2553 res
->status
& ATA_DRQ
? "DRQ " : "",
2554 res
->status
& ATA_SENSE
? "SENSE " : "",
2555 res
->status
& ATA_ERR
? "ERR " : "");
2558 if (cmd
->command
!= ATA_CMD_PACKET
&&
2559 (res
->error
& (ATA_ICRC
| ATA_UNC
| ATA_AMNF
| ATA_IDNF
|
2561 ata_dev_err(qc
->dev
, "error: { %s%s%s%s%s}\n",
2562 res
->error
& ATA_ICRC
? "ICRC " : "",
2563 res
->error
& ATA_UNC
? "UNC " : "",
2564 res
->error
& ATA_AMNF
? "AMNF " : "",
2565 res
->error
& ATA_IDNF
? "IDNF " : "",
2566 res
->error
& ATA_ABORTED
? "ABRT " : "");
2572 * ata_eh_report - report error handling to user
2573 * @ap: ATA port to report EH about
2575 * Report EH to user.
2580 void ata_eh_report(struct ata_port
*ap
)
2582 struct ata_link
*link
;
2584 ata_for_each_link(link
, ap
, HOST_FIRST
)
2585 ata_eh_link_report(link
);
2588 static int ata_do_reset(struct ata_link
*link
, ata_reset_fn_t reset
,
2589 unsigned int *classes
, unsigned long deadline
,
2592 struct ata_device
*dev
;
2595 ata_for_each_dev(dev
, link
, ALL
)
2596 classes
[dev
->devno
] = ATA_DEV_UNKNOWN
;
2598 return reset(link
, classes
, deadline
);
2601 static int ata_eh_followup_srst_needed(struct ata_link
*link
, int rc
)
2603 if ((link
->flags
& ATA_LFLAG_NO_SRST
) || ata_link_offline(link
))
2607 if (sata_pmp_supported(link
->ap
) && ata_is_host_link(link
))
2612 int ata_eh_reset(struct ata_link
*link
, int classify
,
2613 ata_prereset_fn_t prereset
, ata_reset_fn_t softreset
,
2614 ata_reset_fn_t hardreset
, ata_postreset_fn_t postreset
)
2616 struct ata_port
*ap
= link
->ap
;
2617 struct ata_link
*slave
= ap
->slave_link
;
2618 struct ata_eh_context
*ehc
= &link
->eh_context
;
2619 struct ata_eh_context
*sehc
= slave
? &slave
->eh_context
: NULL
;
2620 unsigned int *classes
= ehc
->classes
;
2621 unsigned int lflags
= link
->flags
;
2622 int verbose
= !(ehc
->i
.flags
& ATA_EHI_QUIET
);
2623 int max_tries
= 0, try = 0;
2624 struct ata_link
*failed_link
;
2625 struct ata_device
*dev
;
2626 unsigned long deadline
, now
;
2627 ata_reset_fn_t reset
;
2628 unsigned long flags
;
2635 while (ata_eh_reset_timeouts
[max_tries
] != UINT_MAX
)
2637 if (link
->flags
& ATA_LFLAG_RST_ONCE
)
2639 if (link
->flags
& ATA_LFLAG_NO_HRST
)
2641 if (link
->flags
& ATA_LFLAG_NO_SRST
)
2644 /* make sure each reset attempt is at least COOL_DOWN apart */
2645 if (ehc
->i
.flags
& ATA_EHI_DID_RESET
) {
2647 WARN_ON(time_after(ehc
->last_reset
, now
));
2648 deadline
= ata_deadline(ehc
->last_reset
,
2649 ATA_EH_RESET_COOL_DOWN
);
2650 if (time_before(now
, deadline
))
2651 schedule_timeout_uninterruptible(deadline
- now
);
2654 spin_lock_irqsave(ap
->lock
, flags
);
2655 ap
->pflags
|= ATA_PFLAG_RESETTING
;
2656 spin_unlock_irqrestore(ap
->lock
, flags
);
2658 ata_eh_about_to_do(link
, NULL
, ATA_EH_RESET
);
2660 ata_for_each_dev(dev
, link
, ALL
) {
2661 /* If we issue an SRST then an ATA drive (not ATAPI)
2662 * may change configuration and be in PIO0 timing. If
2663 * we do a hard reset (or are coming from power on)
2664 * this is true for ATA or ATAPI. Until we've set a
2665 * suitable controller mode we should not touch the
2666 * bus as we may be talking too fast.
2668 dev
->pio_mode
= XFER_PIO_0
;
2669 dev
->dma_mode
= 0xff;
2671 /* If the controller has a pio mode setup function
2672 * then use it to set the chipset to rights. Don't
2673 * touch the DMA setup as that will be dealt with when
2674 * configuring devices.
2676 if (ap
->ops
->set_piomode
)
2677 ap
->ops
->set_piomode(ap
, dev
);
2680 /* prefer hardreset */
2682 ehc
->i
.action
&= ~ATA_EH_RESET
;
2685 ehc
->i
.action
|= ATA_EH_HARDRESET
;
2686 } else if (softreset
) {
2688 ehc
->i
.action
|= ATA_EH_SOFTRESET
;
2692 unsigned long deadline
= ata_deadline(jiffies
,
2693 ATA_EH_PRERESET_TIMEOUT
);
2696 sehc
->i
.action
&= ~ATA_EH_RESET
;
2697 sehc
->i
.action
|= ehc
->i
.action
;
2700 rc
= prereset(link
, deadline
);
2702 /* If present, do prereset on slave link too. Reset
2703 * is skipped iff both master and slave links report
2704 * -ENOENT or clear ATA_EH_RESET.
2706 if (slave
&& (rc
== 0 || rc
== -ENOENT
)) {
2709 tmp
= prereset(slave
, deadline
);
2713 ehc
->i
.action
|= sehc
->i
.action
;
2717 if (rc
== -ENOENT
) {
2718 ata_link_dbg(link
, "port disabled--ignoring\n");
2719 ehc
->i
.action
&= ~ATA_EH_RESET
;
2721 ata_for_each_dev(dev
, link
, ALL
)
2722 classes
[dev
->devno
] = ATA_DEV_NONE
;
2727 "prereset failed (errno=%d)\n",
2732 /* prereset() might have cleared ATA_EH_RESET. If so,
2733 * bang classes, thaw and return.
2735 if (reset
&& !(ehc
->i
.action
& ATA_EH_RESET
)) {
2736 ata_for_each_dev(dev
, link
, ALL
)
2737 classes
[dev
->devno
] = ATA_DEV_NONE
;
2738 if (ata_port_is_frozen(ap
) && ata_is_host_link(link
))
2739 ata_eh_thaw_port(ap
);
2749 if (ata_is_host_link(link
))
2750 ata_eh_freeze_port(ap
);
2752 deadline
= ata_deadline(jiffies
, ata_eh_reset_timeouts
[try++]);
2756 ata_link_info(link
, "%s resetting link\n",
2757 reset
== softreset
? "soft" : "hard");
2759 /* mark that this EH session started with reset */
2760 ehc
->last_reset
= jiffies
;
2761 if (reset
== hardreset
) {
2762 ehc
->i
.flags
|= ATA_EHI_DID_HARDRESET
;
2763 trace_ata_link_hardreset_begin(link
, classes
, deadline
);
2765 ehc
->i
.flags
|= ATA_EHI_DID_SOFTRESET
;
2766 trace_ata_link_softreset_begin(link
, classes
, deadline
);
2769 rc
= ata_do_reset(link
, reset
, classes
, deadline
, true);
2770 if (reset
== hardreset
)
2771 trace_ata_link_hardreset_end(link
, classes
, rc
);
2773 trace_ata_link_softreset_end(link
, classes
, rc
);
2774 if (rc
&& rc
!= -EAGAIN
) {
2779 /* hardreset slave link if existent */
2780 if (slave
&& reset
== hardreset
) {
2784 ata_link_info(slave
, "hard resetting link\n");
2786 ata_eh_about_to_do(slave
, NULL
, ATA_EH_RESET
);
2787 trace_ata_slave_hardreset_begin(slave
, classes
,
2789 tmp
= ata_do_reset(slave
, reset
, classes
, deadline
,
2791 trace_ata_slave_hardreset_end(slave
, classes
, tmp
);
2799 failed_link
= slave
;
2805 /* perform follow-up SRST if necessary */
2806 if (reset
== hardreset
&&
2807 ata_eh_followup_srst_needed(link
, rc
)) {
2812 "follow-up softreset required but no softreset available\n");
2818 ata_eh_about_to_do(link
, NULL
, ATA_EH_RESET
);
2819 trace_ata_link_softreset_begin(link
, classes
, deadline
);
2820 rc
= ata_do_reset(link
, reset
, classes
, deadline
, true);
2821 trace_ata_link_softreset_end(link
, classes
, rc
);
2830 "no reset method available, skipping reset\n");
2831 if (!(lflags
& ATA_LFLAG_ASSUME_CLASS
))
2832 lflags
|= ATA_LFLAG_ASSUME_ATA
;
2836 * Post-reset processing
2838 ata_for_each_dev(dev
, link
, ALL
) {
2839 /* After the reset, the device state is PIO 0 and the
2840 * controller state is undefined. Reset also wakes up
2841 * drives from sleeping mode.
2843 dev
->pio_mode
= XFER_PIO_0
;
2844 dev
->flags
&= ~ATA_DFLAG_SLEEPING
;
2846 if (ata_phys_link_offline(ata_dev_phys_link(dev
)))
2849 /* apply class override */
2850 if (lflags
& ATA_LFLAG_ASSUME_ATA
)
2851 classes
[dev
->devno
] = ATA_DEV_ATA
;
2852 else if (lflags
& ATA_LFLAG_ASSUME_SEMB
)
2853 classes
[dev
->devno
] = ATA_DEV_SEMB_UNSUP
;
2856 /* record current link speed */
2857 if (sata_scr_read(link
, SCR_STATUS
, &sstatus
) == 0)
2858 link
->sata_spd
= (sstatus
>> 4) & 0xf;
2859 if (slave
&& sata_scr_read(slave
, SCR_STATUS
, &sstatus
) == 0)
2860 slave
->sata_spd
= (sstatus
>> 4) & 0xf;
2863 if (ata_is_host_link(link
))
2864 ata_eh_thaw_port(ap
);
2866 /* postreset() should clear hardware SError. Although SError
2867 * is cleared during link resume, clearing SError here is
2868 * necessary as some PHYs raise hotplug events after SRST.
2869 * This introduces race condition where hotplug occurs between
2870 * reset and here. This race is mediated by cross checking
2871 * link onlineness and classification result later.
2874 postreset(link
, classes
);
2875 trace_ata_link_postreset(link
, classes
, rc
);
2877 postreset(slave
, classes
);
2878 trace_ata_slave_postreset(slave
, classes
, rc
);
2882 /* clear cached SError */
2883 spin_lock_irqsave(link
->ap
->lock
, flags
);
2884 link
->eh_info
.serror
= 0;
2886 slave
->eh_info
.serror
= 0;
2887 spin_unlock_irqrestore(link
->ap
->lock
, flags
);
2890 * Make sure onlineness and classification result correspond.
2891 * Hotplug could have happened during reset and some
2892 * controllers fail to wait while a drive is spinning up after
2893 * being hotplugged causing misdetection. By cross checking
2894 * link on/offlineness and classification result, those
2895 * conditions can be reliably detected and retried.
2898 ata_for_each_dev(dev
, link
, ALL
) {
2899 if (ata_phys_link_online(ata_dev_phys_link(dev
))) {
2900 if (classes
[dev
->devno
] == ATA_DEV_UNKNOWN
) {
2901 ata_dev_dbg(dev
, "link online but device misclassified\n");
2902 classes
[dev
->devno
] = ATA_DEV_NONE
;
2905 } else if (ata_phys_link_offline(ata_dev_phys_link(dev
))) {
2906 if (ata_class_enabled(classes
[dev
->devno
]))
2908 "link offline, clearing class %d to NONE\n",
2909 classes
[dev
->devno
]);
2910 classes
[dev
->devno
] = ATA_DEV_NONE
;
2911 } else if (classes
[dev
->devno
] == ATA_DEV_UNKNOWN
) {
2913 "link status unknown, clearing UNKNOWN to NONE\n");
2914 classes
[dev
->devno
] = ATA_DEV_NONE
;
2918 if (classify
&& nr_unknown
) {
2919 if (try < max_tries
) {
2921 "link online but %d devices misclassified, retrying\n",
2928 "link online but %d devices misclassified, "
2929 "device detection might fail\n", nr_unknown
);
2932 /* reset successful, schedule revalidation */
2933 ata_eh_done(link
, NULL
, ATA_EH_RESET
);
2935 ata_eh_done(slave
, NULL
, ATA_EH_RESET
);
2936 ehc
->last_reset
= jiffies
; /* update to completion time */
2937 ehc
->i
.action
|= ATA_EH_REVALIDATE
;
2938 link
->lpm_policy
= ATA_LPM_UNKNOWN
; /* reset LPM state */
2942 /* clear hotplug flag */
2943 ehc
->i
.flags
&= ~ATA_EHI_HOTPLUGGED
;
2945 sehc
->i
.flags
&= ~ATA_EHI_HOTPLUGGED
;
2947 spin_lock_irqsave(ap
->lock
, flags
);
2948 ap
->pflags
&= ~ATA_PFLAG_RESETTING
;
2949 spin_unlock_irqrestore(ap
->lock
, flags
);
2954 /* if SCR isn't accessible on a fan-out port, PMP needs to be reset */
2955 if (!ata_is_host_link(link
) &&
2956 sata_scr_read(link
, SCR_STATUS
, &sstatus
))
2959 if (try >= max_tries
) {
2961 * Thaw host port even if reset failed, so that the port
2962 * can be retried on the next phy event. This risks
2963 * repeated EH runs but seems to be a better tradeoff than
2964 * shutting down a port after a botched hotplug attempt.
2966 if (ata_is_host_link(link
))
2967 ata_eh_thaw_port(ap
);
2968 ata_link_warn(link
, "%s failed\n",
2969 reset
== hardreset
? "hardreset" : "softreset");
2974 if (time_before(now
, deadline
)) {
2975 unsigned long delta
= deadline
- now
;
2977 ata_link_warn(failed_link
,
2978 "reset failed (errno=%d), retrying in %u secs\n",
2979 rc
, DIV_ROUND_UP(jiffies_to_msecs(delta
), 1000));
2983 delta
= schedule_timeout_uninterruptible(delta
);
2988 * While disks spinup behind PMP, some controllers fail sending SRST.
2989 * They need to be reset - as well as the PMP - before retrying.
2991 if (rc
== -ERESTART
) {
2992 if (ata_is_host_link(link
))
2993 ata_eh_thaw_port(ap
);
2997 if (try == max_tries
- 1) {
2998 sata_down_spd_limit(link
, 0);
3000 sata_down_spd_limit(slave
, 0);
3001 } else if (rc
== -EPIPE
)
3002 sata_down_spd_limit(failed_link
, 0);
3009 static inline void ata_eh_pull_park_action(struct ata_port
*ap
)
3011 struct ata_link
*link
;
3012 struct ata_device
*dev
;
3013 unsigned long flags
;
3016 * This function can be thought of as an extended version of
3017 * ata_eh_about_to_do() specially crafted to accommodate the
3018 * requirements of ATA_EH_PARK handling. Since the EH thread
3019 * does not leave the do {} while () loop in ata_eh_recover as
3020 * long as the timeout for a park request to *one* device on
3021 * the port has not expired, and since we still want to pick
3022 * up park requests to other devices on the same port or
3023 * timeout updates for the same device, we have to pull
3024 * ATA_EH_PARK actions from eh_info into eh_context.i
3025 * ourselves at the beginning of each pass over the loop.
3027 * Additionally, all write accesses to &ap->park_req_pending
3028 * through reinit_completion() (see below) or complete_all()
3029 * (see ata_scsi_park_store()) are protected by the host lock.
3030 * As a result we have that park_req_pending.done is zero on
3031 * exit from this function, i.e. when ATA_EH_PARK actions for
3032 * *all* devices on port ap have been pulled into the
3033 * respective eh_context structs. If, and only if,
3034 * park_req_pending.done is non-zero by the time we reach
3035 * wait_for_completion_timeout(), another ATA_EH_PARK action
3036 * has been scheduled for at least one of the devices on port
3037 * ap and we have to cycle over the do {} while () loop in
3038 * ata_eh_recover() again.
3041 spin_lock_irqsave(ap
->lock
, flags
);
3042 reinit_completion(&ap
->park_req_pending
);
3043 ata_for_each_link(link
, ap
, EDGE
) {
3044 ata_for_each_dev(dev
, link
, ALL
) {
3045 struct ata_eh_info
*ehi
= &link
->eh_info
;
3047 link
->eh_context
.i
.dev_action
[dev
->devno
] |=
3048 ehi
->dev_action
[dev
->devno
] & ATA_EH_PARK
;
3049 ata_eh_clear_action(link
, dev
, ehi
, ATA_EH_PARK
);
3052 spin_unlock_irqrestore(ap
->lock
, flags
);
3055 static void ata_eh_park_issue_cmd(struct ata_device
*dev
, int park
)
3057 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
3058 struct ata_taskfile tf
;
3059 unsigned int err_mask
;
3061 ata_tf_init(dev
, &tf
);
3063 ehc
->unloaded_mask
|= 1 << dev
->devno
;
3064 tf
.command
= ATA_CMD_IDLEIMMEDIATE
;
3070 ehc
->unloaded_mask
&= ~(1 << dev
->devno
);
3071 tf
.command
= ATA_CMD_CHK_POWER
;
3074 tf
.flags
|= ATA_TFLAG_DEVICE
| ATA_TFLAG_ISADDR
;
3075 tf
.protocol
= ATA_PROT_NODATA
;
3076 err_mask
= ata_exec_internal(dev
, &tf
, NULL
, DMA_NONE
, NULL
, 0, 0);
3077 if (park
&& (err_mask
|| tf
.lbal
!= 0xc4)) {
3078 ata_dev_err(dev
, "head unload failed!\n");
3079 ehc
->unloaded_mask
&= ~(1 << dev
->devno
);
3083 static int ata_eh_revalidate_and_attach(struct ata_link
*link
,
3084 struct ata_device
**r_failed_dev
)
3086 struct ata_port
*ap
= link
->ap
;
3087 struct ata_eh_context
*ehc
= &link
->eh_context
;
3088 struct ata_device
*dev
;
3089 unsigned int new_mask
= 0;
3090 unsigned long flags
;
3093 /* For PATA drive side cable detection to work, IDENTIFY must
3094 * be done backwards such that PDIAG- is released by the slave
3095 * device before the master device is identified.
3097 ata_for_each_dev(dev
, link
, ALL_REVERSE
) {
3098 unsigned int action
= ata_eh_dev_action(dev
);
3099 unsigned int readid_flags
= 0;
3101 if (ehc
->i
.flags
& ATA_EHI_DID_RESET
)
3102 readid_flags
|= ATA_READID_POSTRESET
;
3104 if ((action
& ATA_EH_REVALIDATE
) && ata_dev_enabled(dev
)) {
3105 WARN_ON(dev
->class == ATA_DEV_PMP
);
3108 * The link may be in a deep sleep, wake it up.
3110 * If the link is in deep sleep, ata_phys_link_offline()
3111 * will return true, causing the revalidation to fail,
3112 * which leads to a (potentially) needless hard reset.
3114 * ata_eh_recover() will later restore the link policy
3115 * to ap->target_lpm_policy after revalidation is done.
3117 if (link
->lpm_policy
> ATA_LPM_MAX_POWER
) {
3118 rc
= ata_eh_set_lpm(link
, ATA_LPM_MAX_POWER
,
3124 if (ata_phys_link_offline(ata_dev_phys_link(dev
))) {
3129 ata_eh_about_to_do(link
, dev
, ATA_EH_REVALIDATE
);
3130 rc
= ata_dev_revalidate(dev
, ehc
->classes
[dev
->devno
],
3135 ata_eh_done(link
, dev
, ATA_EH_REVALIDATE
);
3137 /* Configuration may have changed, reconfigure
3140 ehc
->i
.flags
|= ATA_EHI_SETMODE
;
3142 /* schedule the scsi_rescan_device() here */
3143 schedule_delayed_work(&ap
->scsi_rescan_task
, 0);
3144 } else if (dev
->class == ATA_DEV_UNKNOWN
&&
3145 ehc
->tries
[dev
->devno
] &&
3146 ata_class_enabled(ehc
->classes
[dev
->devno
])) {
3147 /* Temporarily set dev->class, it will be
3148 * permanently set once all configurations are
3149 * complete. This is necessary because new
3150 * device configuration is done in two
3153 dev
->class = ehc
->classes
[dev
->devno
];
3155 if (dev
->class == ATA_DEV_PMP
)
3156 rc
= sata_pmp_attach(dev
);
3158 rc
= ata_dev_read_id(dev
, &dev
->class,
3159 readid_flags
, dev
->id
);
3161 /* read_id might have changed class, store and reset */
3162 ehc
->classes
[dev
->devno
] = dev
->class;
3163 dev
->class = ATA_DEV_UNKNOWN
;
3167 /* clear error info accumulated during probe */
3168 ata_ering_clear(&dev
->ering
);
3169 new_mask
|= 1 << dev
->devno
;
3172 /* IDENTIFY was issued to non-existent
3173 * device. No need to reset. Just
3174 * thaw and ignore the device.
3176 ata_eh_thaw_port(ap
);
3184 /* PDIAG- should have been released, ask cable type if post-reset */
3185 if ((ehc
->i
.flags
& ATA_EHI_DID_RESET
) && ata_is_host_link(link
)) {
3186 if (ap
->ops
->cable_detect
)
3187 ap
->cbl
= ap
->ops
->cable_detect(ap
);
3191 /* Configure new devices forward such that user doesn't see
3192 * device detection messages backwards.
3194 ata_for_each_dev(dev
, link
, ALL
) {
3195 if (!(new_mask
& (1 << dev
->devno
)))
3198 dev
->class = ehc
->classes
[dev
->devno
];
3200 if (dev
->class == ATA_DEV_PMP
)
3203 ehc
->i
.flags
|= ATA_EHI_PRINTINFO
;
3204 rc
= ata_dev_configure(dev
);
3205 ehc
->i
.flags
&= ~ATA_EHI_PRINTINFO
;
3207 dev
->class = ATA_DEV_UNKNOWN
;
3211 spin_lock_irqsave(ap
->lock
, flags
);
3212 ap
->pflags
|= ATA_PFLAG_SCSI_HOTPLUG
;
3213 spin_unlock_irqrestore(ap
->lock
, flags
);
3215 /* new device discovered, configure xfermode */
3216 ehc
->i
.flags
|= ATA_EHI_SETMODE
;
3222 dev
->flags
&= ~ATA_DFLAG_RESUMING
;
3223 *r_failed_dev
= dev
;
3228 * ata_set_mode - Program timings and issue SET FEATURES - XFER
3229 * @link: link on which timings will be programmed
3230 * @r_failed_dev: out parameter for failed device
3232 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3233 * ata_set_mode() fails, pointer to the failing device is
3234 * returned in @r_failed_dev.
3237 * PCI/etc. bus probe sem.
3240 * 0 on success, negative errno otherwise
3242 int ata_set_mode(struct ata_link
*link
, struct ata_device
**r_failed_dev
)
3244 struct ata_port
*ap
= link
->ap
;
3245 struct ata_device
*dev
;
3248 /* if data transfer is verified, clear DUBIOUS_XFER on ering top */
3249 ata_for_each_dev(dev
, link
, ENABLED
) {
3250 if (!(dev
->flags
& ATA_DFLAG_DUBIOUS_XFER
)) {
3251 struct ata_ering_entry
*ent
;
3253 ent
= ata_ering_top(&dev
->ering
);
3255 ent
->eflags
&= ~ATA_EFLAG_DUBIOUS_XFER
;
3259 /* has private set_mode? */
3260 if (ap
->ops
->set_mode
)
3261 rc
= ap
->ops
->set_mode(link
, r_failed_dev
);
3263 rc
= ata_do_set_mode(link
, r_failed_dev
);
3265 /* if transfer mode has changed, set DUBIOUS_XFER on device */
3266 ata_for_each_dev(dev
, link
, ENABLED
) {
3267 struct ata_eh_context
*ehc
= &link
->eh_context
;
3268 u8 saved_xfer_mode
= ehc
->saved_xfer_mode
[dev
->devno
];
3269 u8 saved_ncq
= !!(ehc
->saved_ncq_enabled
& (1 << dev
->devno
));
3271 if (dev
->xfer_mode
!= saved_xfer_mode
||
3272 ata_ncq_enabled(dev
) != saved_ncq
)
3273 dev
->flags
|= ATA_DFLAG_DUBIOUS_XFER
;
3280 * atapi_eh_clear_ua - Clear ATAPI UNIT ATTENTION after reset
3281 * @dev: ATAPI device to clear UA for
3283 * Resets and other operations can make an ATAPI device raise
3284 * UNIT ATTENTION which causes the next operation to fail. This
3285 * function clears UA.
3288 * EH context (may sleep).
3291 * 0 on success, -errno on failure.
3293 static int atapi_eh_clear_ua(struct ata_device
*dev
)
3297 for (i
= 0; i
< ATA_EH_UA_TRIES
; i
++) {
3298 u8
*sense_buffer
= dev
->sector_buf
;
3300 unsigned int err_mask
;
3302 err_mask
= atapi_eh_tur(dev
, &sense_key
);
3303 if (err_mask
!= 0 && err_mask
!= AC_ERR_DEV
) {
3305 "TEST_UNIT_READY failed (err_mask=0x%x)\n",
3310 if (!err_mask
|| sense_key
!= UNIT_ATTENTION
)
3313 err_mask
= atapi_eh_request_sense(dev
, sense_buffer
, sense_key
);
3315 ata_dev_warn(dev
, "failed to clear "
3316 "UNIT ATTENTION (err_mask=0x%x)\n", err_mask
);
3321 ata_dev_warn(dev
, "UNIT ATTENTION persists after %d tries\n",
3328 * ata_eh_maybe_retry_flush - Retry FLUSH if necessary
3329 * @dev: ATA device which may need FLUSH retry
3331 * If @dev failed FLUSH, it needs to be reported upper layer
3332 * immediately as it means that @dev failed to remap and already
3333 * lost at least a sector and further FLUSH retrials won't make
3334 * any difference to the lost sector. However, if FLUSH failed
3335 * for other reasons, for example transmission error, FLUSH needs
3338 * This function determines whether FLUSH failure retry is
3339 * necessary and performs it if so.
3342 * 0 if EH can continue, -errno if EH needs to be repeated.
3344 static int ata_eh_maybe_retry_flush(struct ata_device
*dev
)
3346 struct ata_link
*link
= dev
->link
;
3347 struct ata_port
*ap
= link
->ap
;
3348 struct ata_queued_cmd
*qc
;
3349 struct ata_taskfile tf
;
3350 unsigned int err_mask
;
3353 /* did flush fail for this device? */
3354 if (!ata_tag_valid(link
->active_tag
))
3357 qc
= __ata_qc_from_tag(ap
, link
->active_tag
);
3358 if (qc
->dev
!= dev
|| (qc
->tf
.command
!= ATA_CMD_FLUSH_EXT
&&
3359 qc
->tf
.command
!= ATA_CMD_FLUSH
))
3362 /* if the device failed it, it should be reported to upper layers */
3363 if (qc
->err_mask
& AC_ERR_DEV
)
3366 /* flush failed for some other reason, give it another shot */
3367 ata_tf_init(dev
, &tf
);
3369 tf
.command
= qc
->tf
.command
;
3370 tf
.flags
|= ATA_TFLAG_DEVICE
;
3371 tf
.protocol
= ATA_PROT_NODATA
;
3373 ata_dev_warn(dev
, "retrying FLUSH 0x%x Emask 0x%x\n",
3374 tf
.command
, qc
->err_mask
);
3376 err_mask
= ata_exec_internal(dev
, &tf
, NULL
, DMA_NONE
, NULL
, 0, 0);
3379 * FLUSH is complete but there's no way to
3380 * successfully complete a failed command from EH.
3381 * Making sure retry is allowed at least once and
3382 * retrying it should do the trick - whatever was in
3383 * the cache is already on the platter and this won't
3384 * cause infinite loop.
3386 qc
->scsicmd
->allowed
= max(qc
->scsicmd
->allowed
, 1);
3388 ata_dev_warn(dev
, "FLUSH failed Emask 0x%x\n",
3392 /* if device failed it, report it to upper layers */
3393 if (err_mask
& AC_ERR_DEV
) {
3394 qc
->err_mask
|= AC_ERR_DEV
;
3396 if (!ata_port_is_frozen(ap
))
3404 * ata_eh_set_lpm - configure SATA interface power management
3405 * @link: link to configure power management
3406 * @policy: the link power management policy
3407 * @r_failed_dev: out parameter for failed device
3409 * Enable SATA Interface power management. This will enable
3410 * Device Interface Power Management (DIPM) for min_power and
3411 * medium_power_with_dipm policies, and then call driver specific
3412 * callbacks for enabling Host Initiated Power management.
3418 * 0 on success, -errno on failure.
3420 static int ata_eh_set_lpm(struct ata_link
*link
, enum ata_lpm_policy policy
,
3421 struct ata_device
**r_failed_dev
)
3423 struct ata_port
*ap
= ata_is_host_link(link
) ? link
->ap
: NULL
;
3424 struct ata_eh_context
*ehc
= &link
->eh_context
;
3425 struct ata_device
*dev
, *link_dev
= NULL
, *lpm_dev
= NULL
;
3426 enum ata_lpm_policy old_policy
= link
->lpm_policy
;
3427 bool no_dipm
= link
->ap
->flags
& ATA_FLAG_NO_DIPM
;
3428 unsigned int hints
= ATA_LPM_EMPTY
| ATA_LPM_HIPM
;
3429 unsigned int err_mask
;
3432 /* if the link or host doesn't do LPM, noop */
3433 if (!IS_ENABLED(CONFIG_SATA_HOST
) ||
3434 (link
->flags
& ATA_LFLAG_NO_LPM
) || (ap
&& !ap
->ops
->set_lpm
))
3438 * DIPM is enabled only for MIN_POWER as some devices
3439 * misbehave when the host NACKs transition to SLUMBER. Order
3440 * device and link configurations such that the host always
3441 * allows DIPM requests.
3443 ata_for_each_dev(dev
, link
, ENABLED
) {
3444 bool hipm
= ata_id_has_hipm(dev
->id
);
3445 bool dipm
= ata_id_has_dipm(dev
->id
) && !no_dipm
;
3447 /* find the first enabled and LPM enabled devices */
3451 if (!lpm_dev
&& (hipm
|| dipm
))
3454 hints
&= ~ATA_LPM_EMPTY
;
3456 hints
&= ~ATA_LPM_HIPM
;
3458 /* disable DIPM before changing link config */
3459 if (policy
< ATA_LPM_MED_POWER_WITH_DIPM
&& dipm
) {
3460 err_mask
= ata_dev_set_feature(dev
,
3461 SETFEATURES_SATA_DISABLE
, SATA_DIPM
);
3462 if (err_mask
&& err_mask
!= AC_ERR_DEV
) {
3464 "failed to disable DIPM, Emask 0x%x\n",
3473 rc
= ap
->ops
->set_lpm(link
, policy
, hints
);
3474 if (!rc
&& ap
->slave_link
)
3475 rc
= ap
->ops
->set_lpm(ap
->slave_link
, policy
, hints
);
3477 rc
= sata_pmp_set_lpm(link
, policy
, hints
);
3480 * Attribute link config failure to the first (LPM) enabled
3481 * device on the link.
3484 if (rc
== -EOPNOTSUPP
) {
3485 link
->flags
|= ATA_LFLAG_NO_LPM
;
3488 dev
= lpm_dev
? lpm_dev
: link_dev
;
3493 * Low level driver acked the transition. Issue DIPM command
3494 * with the new policy set.
3496 link
->lpm_policy
= policy
;
3497 if (ap
&& ap
->slave_link
)
3498 ap
->slave_link
->lpm_policy
= policy
;
3500 /* host config updated, enable DIPM if transitioning to MIN_POWER */
3501 ata_for_each_dev(dev
, link
, ENABLED
) {
3502 if (policy
>= ATA_LPM_MED_POWER_WITH_DIPM
&& !no_dipm
&&
3503 ata_id_has_dipm(dev
->id
)) {
3504 err_mask
= ata_dev_set_feature(dev
,
3505 SETFEATURES_SATA_ENABLE
, SATA_DIPM
);
3506 if (err_mask
&& err_mask
!= AC_ERR_DEV
) {
3508 "failed to enable DIPM, Emask 0x%x\n",
3516 link
->last_lpm_change
= jiffies
;
3517 link
->flags
|= ATA_LFLAG_CHANGED
;
3522 /* restore the old policy */
3523 link
->lpm_policy
= old_policy
;
3524 if (ap
&& ap
->slave_link
)
3525 ap
->slave_link
->lpm_policy
= old_policy
;
3527 /* if no device or only one more chance is left, disable LPM */
3528 if (!dev
|| ehc
->tries
[dev
->devno
] <= 2) {
3529 ata_link_warn(link
, "disabling LPM on the link\n");
3530 link
->flags
|= ATA_LFLAG_NO_LPM
;
3533 *r_failed_dev
= dev
;
3537 int ata_link_nr_enabled(struct ata_link
*link
)
3539 struct ata_device
*dev
;
3542 ata_for_each_dev(dev
, link
, ENABLED
)
3547 static int ata_link_nr_vacant(struct ata_link
*link
)
3549 struct ata_device
*dev
;
3552 ata_for_each_dev(dev
, link
, ALL
)
3553 if (dev
->class == ATA_DEV_UNKNOWN
)
3558 static int ata_eh_skip_recovery(struct ata_link
*link
)
3560 struct ata_port
*ap
= link
->ap
;
3561 struct ata_eh_context
*ehc
= &link
->eh_context
;
3562 struct ata_device
*dev
;
3564 /* skip disabled links */
3565 if (link
->flags
& ATA_LFLAG_DISABLED
)
3568 /* skip if explicitly requested */
3569 if (ehc
->i
.flags
& ATA_EHI_NO_RECOVERY
)
3572 /* thaw frozen port and recover failed devices */
3573 if (ata_port_is_frozen(ap
) || ata_link_nr_enabled(link
))
3576 /* reset at least once if reset is requested */
3577 if ((ehc
->i
.action
& ATA_EH_RESET
) &&
3578 !(ehc
->i
.flags
& ATA_EHI_DID_RESET
))
3581 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
3582 ata_for_each_dev(dev
, link
, ALL
) {
3583 if (dev
->class == ATA_DEV_UNKNOWN
&&
3584 ehc
->classes
[dev
->devno
] != ATA_DEV_NONE
)
3591 static int ata_count_probe_trials_cb(struct ata_ering_entry
*ent
, void *void_arg
)
3593 u64 interval
= msecs_to_jiffies(ATA_EH_PROBE_TRIAL_INTERVAL
);
3594 u64 now
= get_jiffies_64();
3595 int *trials
= void_arg
;
3597 if ((ent
->eflags
& ATA_EFLAG_OLD_ER
) ||
3598 (ent
->timestamp
< now
- min(now
, interval
)))
3605 static int ata_eh_schedule_probe(struct ata_device
*dev
)
3607 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
3608 struct ata_link
*link
= ata_dev_phys_link(dev
);
3611 if (!(ehc
->i
.probe_mask
& (1 << dev
->devno
)) ||
3612 (ehc
->did_probe_mask
& (1 << dev
->devno
)))
3615 ata_eh_detach_dev(dev
);
3617 ehc
->did_probe_mask
|= (1 << dev
->devno
);
3618 ehc
->i
.action
|= ATA_EH_RESET
;
3619 ehc
->saved_xfer_mode
[dev
->devno
] = 0;
3620 ehc
->saved_ncq_enabled
&= ~(1 << dev
->devno
);
3622 /* the link maybe in a deep sleep, wake it up */
3623 if (link
->lpm_policy
> ATA_LPM_MAX_POWER
) {
3624 if (ata_is_host_link(link
))
3625 link
->ap
->ops
->set_lpm(link
, ATA_LPM_MAX_POWER
,
3628 sata_pmp_set_lpm(link
, ATA_LPM_MAX_POWER
,
3632 /* Record and count probe trials on the ering. The specific
3633 * error mask used is irrelevant. Because a successful device
3634 * detection clears the ering, this count accumulates only if
3635 * there are consecutive failed probes.
3637 * If the count is equal to or higher than ATA_EH_PROBE_TRIALS
3638 * in the last ATA_EH_PROBE_TRIAL_INTERVAL, link speed is
3639 * forced to 1.5Gbps.
3641 * This is to work around cases where failed link speed
3642 * negotiation results in device misdetection leading to
3643 * infinite DEVXCHG or PHRDY CHG events.
3645 ata_ering_record(&dev
->ering
, 0, AC_ERR_OTHER
);
3646 ata_ering_map(&dev
->ering
, ata_count_probe_trials_cb
, &trials
);
3648 if (trials
> ATA_EH_PROBE_TRIALS
)
3649 sata_down_spd_limit(link
, 1);
3654 static int ata_eh_handle_dev_fail(struct ata_device
*dev
, int err
)
3656 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
3658 /* -EAGAIN from EH routine indicates retry without prejudice.
3659 * The requester is responsible for ensuring forward progress.
3662 ehc
->tries
[dev
->devno
]--;
3666 /* device missing or wrong IDENTIFY data, schedule probing */
3667 ehc
->i
.probe_mask
|= (1 << dev
->devno
);
3670 /* give it just one more chance */
3671 ehc
->tries
[dev
->devno
] = min(ehc
->tries
[dev
->devno
], 1);
3674 if (ehc
->tries
[dev
->devno
] == 1) {
3675 /* This is the last chance, better to slow
3676 * down than lose it.
3678 sata_down_spd_limit(ata_dev_phys_link(dev
), 0);
3679 if (dev
->pio_mode
> XFER_PIO_0
)
3680 ata_down_xfermask_limit(dev
, ATA_DNXFER_PIO
);
3684 if (ata_dev_enabled(dev
) && !ehc
->tries
[dev
->devno
]) {
3685 /* disable device if it has used up all its chances */
3686 ata_dev_disable(dev
);
3688 /* detach if offline */
3689 if (ata_phys_link_offline(ata_dev_phys_link(dev
)))
3690 ata_eh_detach_dev(dev
);
3692 /* schedule probe if necessary */
3693 if (ata_eh_schedule_probe(dev
)) {
3694 ehc
->tries
[dev
->devno
] = ATA_EH_DEV_TRIES
;
3695 memset(ehc
->cmd_timeout_idx
[dev
->devno
], 0,
3696 sizeof(ehc
->cmd_timeout_idx
[dev
->devno
]));
3701 ehc
->i
.action
|= ATA_EH_RESET
;
3707 * ata_eh_recover - recover host port after error
3708 * @ap: host port to recover
3709 * @prereset: prereset method (can be NULL)
3710 * @softreset: softreset method (can be NULL)
3711 * @hardreset: hardreset method (can be NULL)
3712 * @postreset: postreset method (can be NULL)
3713 * @r_failed_link: out parameter for failed link
3715 * This is the alpha and omega, eum and yang, heart and soul of
3716 * libata exception handling. On entry, actions required to
3717 * recover each link and hotplug requests are recorded in the
3718 * link's eh_context. This function executes all the operations
3719 * with appropriate retrials and fallbacks to resurrect failed
3720 * devices, detach goners and greet newcomers.
3723 * Kernel thread context (may sleep).
3726 * 0 on success, -errno on failure.
3728 int ata_eh_recover(struct ata_port
*ap
, ata_prereset_fn_t prereset
,
3729 ata_reset_fn_t softreset
, ata_reset_fn_t hardreset
,
3730 ata_postreset_fn_t postreset
,
3731 struct ata_link
**r_failed_link
)
3733 struct ata_link
*link
;
3734 struct ata_device
*dev
;
3736 unsigned long flags
, deadline
;
3738 /* prep for recovery */
3739 ata_for_each_link(link
, ap
, EDGE
) {
3740 struct ata_eh_context
*ehc
= &link
->eh_context
;
3742 /* re-enable link? */
3743 if (ehc
->i
.action
& ATA_EH_ENABLE_LINK
) {
3744 ata_eh_about_to_do(link
, NULL
, ATA_EH_ENABLE_LINK
);
3745 spin_lock_irqsave(ap
->lock
, flags
);
3746 link
->flags
&= ~ATA_LFLAG_DISABLED
;
3747 spin_unlock_irqrestore(ap
->lock
, flags
);
3748 ata_eh_done(link
, NULL
, ATA_EH_ENABLE_LINK
);
3751 ata_for_each_dev(dev
, link
, ALL
) {
3752 if (link
->flags
& ATA_LFLAG_NO_RETRY
)
3753 ehc
->tries
[dev
->devno
] = 1;
3755 ehc
->tries
[dev
->devno
] = ATA_EH_DEV_TRIES
;
3757 /* collect port action mask recorded in dev actions */
3758 ehc
->i
.action
|= ehc
->i
.dev_action
[dev
->devno
] &
3759 ~ATA_EH_PERDEV_MASK
;
3760 ehc
->i
.dev_action
[dev
->devno
] &= ATA_EH_PERDEV_MASK
;
3762 /* process hotplug request */
3763 if (dev
->flags
& ATA_DFLAG_DETACH
)
3764 ata_eh_detach_dev(dev
);
3766 /* schedule probe if necessary */
3767 if (!ata_dev_enabled(dev
))
3768 ata_eh_schedule_probe(dev
);
3775 /* if UNLOADING, finish immediately */
3776 if (ap
->pflags
& ATA_PFLAG_UNLOADING
)
3780 ata_for_each_link(link
, ap
, EDGE
) {
3781 struct ata_eh_context
*ehc
= &link
->eh_context
;
3783 /* skip EH if possible. */
3784 if (ata_eh_skip_recovery(link
))
3787 ata_for_each_dev(dev
, link
, ALL
)
3788 ehc
->classes
[dev
->devno
] = ATA_DEV_UNKNOWN
;
3792 ata_for_each_link(link
, ap
, EDGE
) {
3793 struct ata_eh_context
*ehc
= &link
->eh_context
;
3795 if (!(ehc
->i
.action
& ATA_EH_RESET
))
3798 rc
= ata_eh_reset(link
, ata_link_nr_vacant(link
),
3799 prereset
, softreset
, hardreset
, postreset
);
3801 ata_link_err(link
, "reset failed, giving up\n");
3810 * clears ATA_EH_PARK in eh_info and resets
3811 * ap->park_req_pending
3813 ata_eh_pull_park_action(ap
);
3816 ata_for_each_link(link
, ap
, EDGE
) {
3817 ata_for_each_dev(dev
, link
, ALL
) {
3818 struct ata_eh_context
*ehc
= &link
->eh_context
;
3821 if (dev
->class != ATA_DEV_ATA
&&
3822 dev
->class != ATA_DEV_ZAC
)
3824 if (!(ehc
->i
.dev_action
[dev
->devno
] &
3827 tmp
= dev
->unpark_deadline
;
3828 if (time_before(deadline
, tmp
))
3830 else if (time_before_eq(tmp
, jiffies
))
3832 if (ehc
->unloaded_mask
& (1 << dev
->devno
))
3835 ata_eh_park_issue_cmd(dev
, 1);
3840 if (time_before_eq(deadline
, now
))
3844 deadline
= wait_for_completion_timeout(&ap
->park_req_pending
,
3848 ata_for_each_link(link
, ap
, EDGE
) {
3849 ata_for_each_dev(dev
, link
, ALL
) {
3850 if (!(link
->eh_context
.unloaded_mask
&
3854 ata_eh_park_issue_cmd(dev
, 0);
3855 ata_eh_done(link
, dev
, ATA_EH_PARK
);
3861 ata_for_each_link(link
, ap
, PMP_FIRST
) {
3862 struct ata_eh_context
*ehc
= &link
->eh_context
;
3864 if (sata_pmp_attached(ap
) && ata_is_host_link(link
))
3867 /* revalidate existing devices and attach new ones */
3868 rc
= ata_eh_revalidate_and_attach(link
, &dev
);
3872 /* if PMP got attached, return, pmp EH will take care of it */
3873 if (link
->device
->class == ATA_DEV_PMP
) {
3878 /* configure transfer mode if necessary */
3879 if (ehc
->i
.flags
& ATA_EHI_SETMODE
) {
3880 rc
= ata_set_mode(link
, &dev
);
3883 ehc
->i
.flags
&= ~ATA_EHI_SETMODE
;
3886 /* If reset has been issued, clear UA to avoid
3887 * disrupting the current users of the device.
3889 if (ehc
->i
.flags
& ATA_EHI_DID_RESET
) {
3890 ata_for_each_dev(dev
, link
, ALL
) {
3891 if (dev
->class != ATA_DEV_ATAPI
)
3893 rc
= atapi_eh_clear_ua(dev
);
3896 if (zpodd_dev_enabled(dev
))
3897 zpodd_post_poweron(dev
);
3902 * Make sure to transition devices to the active power mode
3903 * if needed (e.g. if we were scheduled on system resume).
3905 ata_for_each_dev(dev
, link
, ENABLED
) {
3906 if (ehc
->i
.dev_action
[dev
->devno
] & ATA_EH_SET_ACTIVE
) {
3907 ata_dev_power_set_active(dev
);
3908 ata_eh_done(link
, dev
, ATA_EH_SET_ACTIVE
);
3912 /* retry flush if necessary */
3913 ata_for_each_dev(dev
, link
, ALL
) {
3914 if (dev
->class != ATA_DEV_ATA
&&
3915 dev
->class != ATA_DEV_ZAC
)
3917 rc
= ata_eh_maybe_retry_flush(dev
);
3923 /* configure link power saving */
3924 if (link
->lpm_policy
!= ap
->target_lpm_policy
) {
3925 rc
= ata_eh_set_lpm(link
, ap
->target_lpm_policy
, &dev
);
3930 /* this link is okay now */
3937 ata_eh_handle_dev_fail(dev
, rc
);
3939 if (ata_port_is_frozen(ap
)) {
3940 /* PMP reset requires working host port.
3941 * Can't retry if it's frozen.
3943 if (sata_pmp_attached(ap
))
3953 if (rc
&& r_failed_link
)
3954 *r_failed_link
= link
;
3960 * ata_eh_finish - finish up EH
3961 * @ap: host port to finish EH for
3963 * Recovery is complete. Clean up EH states and retry or finish
3969 void ata_eh_finish(struct ata_port
*ap
)
3971 struct ata_queued_cmd
*qc
;
3974 /* retry or finish qcs */
3975 ata_qc_for_each_raw(ap
, qc
, tag
) {
3976 if (!(qc
->flags
& ATA_QCFLAG_EH
))
3980 /* FIXME: Once EH migration is complete,
3981 * generate sense data in this function,
3982 * considering both err_mask and tf.
3984 if (qc
->flags
& ATA_QCFLAG_RETRY
) {
3986 * Since qc->err_mask is set, ata_eh_qc_retry()
3987 * will not increment scmd->allowed, so upper
3988 * layer will only retry the command if it has
3989 * not already been retried too many times.
3991 ata_eh_qc_retry(qc
);
3993 ata_eh_qc_complete(qc
);
3996 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
||
3997 qc
->flags
& ATA_QCFLAG_EH_SUCCESS_CMD
) {
3998 ata_eh_qc_complete(qc
);
4000 /* feed zero TF to sense generation */
4001 memset(&qc
->result_tf
, 0, sizeof(qc
->result_tf
));
4003 * Since qc->err_mask is not set,
4004 * ata_eh_qc_retry() will increment
4005 * scmd->allowed, so upper layer is guaranteed
4006 * to retry the command.
4008 ata_eh_qc_retry(qc
);
4013 /* make sure nr_active_links is zero after EH */
4014 WARN_ON(ap
->nr_active_links
);
4015 ap
->nr_active_links
= 0;
4019 * ata_do_eh - do standard error handling
4020 * @ap: host port to handle error for
4022 * @prereset: prereset method (can be NULL)
4023 * @softreset: softreset method (can be NULL)
4024 * @hardreset: hardreset method (can be NULL)
4025 * @postreset: postreset method (can be NULL)
4027 * Perform standard error handling sequence.
4030 * Kernel thread context (may sleep).
4032 void ata_do_eh(struct ata_port
*ap
, ata_prereset_fn_t prereset
,
4033 ata_reset_fn_t softreset
, ata_reset_fn_t hardreset
,
4034 ata_postreset_fn_t postreset
)
4036 struct ata_device
*dev
;
4042 rc
= ata_eh_recover(ap
, prereset
, softreset
, hardreset
, postreset
,
4045 ata_for_each_dev(dev
, &ap
->link
, ALL
)
4046 ata_dev_disable(dev
);
4053 * ata_std_error_handler - standard error handler
4054 * @ap: host port to handle error for
4056 * Standard error handler
4059 * Kernel thread context (may sleep).
4061 void ata_std_error_handler(struct ata_port
*ap
)
4063 struct ata_port_operations
*ops
= ap
->ops
;
4064 ata_reset_fn_t hardreset
= ops
->hardreset
;
4066 /* ignore built-in hardreset if SCR access is not available */
4067 if (hardreset
== sata_std_hardreset
&& !sata_scr_valid(&ap
->link
))
4070 ata_do_eh(ap
, ops
->prereset
, ops
->softreset
, hardreset
, ops
->postreset
);
4072 EXPORT_SYMBOL_GPL(ata_std_error_handler
);
4076 * ata_eh_handle_port_suspend - perform port suspend operation
4077 * @ap: port to suspend
4082 * Kernel thread context (may sleep).
4084 static void ata_eh_handle_port_suspend(struct ata_port
*ap
)
4086 unsigned long flags
;
4088 struct ata_device
*dev
;
4089 struct ata_link
*link
;
4091 /* are we suspending? */
4092 spin_lock_irqsave(ap
->lock
, flags
);
4093 if (!(ap
->pflags
& ATA_PFLAG_PM_PENDING
) ||
4094 ap
->pm_mesg
.event
& PM_EVENT_RESUME
) {
4095 spin_unlock_irqrestore(ap
->lock
, flags
);
4098 spin_unlock_irqrestore(ap
->lock
, flags
);
4100 WARN_ON(ap
->pflags
& ATA_PFLAG_SUSPENDED
);
4103 * We will reach this point for all of the PM events:
4104 * PM_EVENT_SUSPEND (if runtime pm, PM_EVENT_AUTO will also be set)
4105 * PM_EVENT_FREEZE, and PM_EVENT_HIBERNATE.
4107 * We do not want to perform disk spin down for PM_EVENT_FREEZE.
4108 * (Spin down will be performed by the subsequent PM_EVENT_HIBERNATE.)
4110 if (!(ap
->pm_mesg
.event
& PM_EVENT_FREEZE
)) {
4111 /* Set all devices attached to the port in standby mode */
4112 ata_for_each_link(link
, ap
, HOST_FIRST
) {
4113 ata_for_each_dev(dev
, link
, ENABLED
)
4114 ata_dev_power_set_standby(dev
);
4119 * If we have a ZPODD attached, check its zero
4120 * power ready status before the port is frozen.
4121 * Only needed for runtime suspend.
4123 if (PMSG_IS_AUTO(ap
->pm_mesg
)) {
4124 ata_for_each_dev(dev
, &ap
->link
, ENABLED
) {
4125 if (zpodd_dev_enabled(dev
))
4126 zpodd_on_suspend(dev
);
4131 ata_eh_freeze_port(ap
);
4133 if (ap
->ops
->port_suspend
)
4134 rc
= ap
->ops
->port_suspend(ap
, ap
->pm_mesg
);
4136 ata_acpi_set_state(ap
, ap
->pm_mesg
);
4138 /* update the flags */
4139 spin_lock_irqsave(ap
->lock
, flags
);
4141 ap
->pflags
&= ~ATA_PFLAG_PM_PENDING
;
4143 ap
->pflags
|= ATA_PFLAG_SUSPENDED
;
4144 else if (ata_port_is_frozen(ap
))
4145 ata_port_schedule_eh(ap
);
4147 spin_unlock_irqrestore(ap
->lock
, flags
);
4153 * ata_eh_handle_port_resume - perform port resume operation
4154 * @ap: port to resume
4159 * Kernel thread context (may sleep).
4161 static void ata_eh_handle_port_resume(struct ata_port
*ap
)
4163 struct ata_link
*link
;
4164 struct ata_device
*dev
;
4165 unsigned long flags
;
4167 /* are we resuming? */
4168 spin_lock_irqsave(ap
->lock
, flags
);
4169 if (!(ap
->pflags
& ATA_PFLAG_PM_PENDING
) ||
4170 !(ap
->pm_mesg
.event
& PM_EVENT_RESUME
)) {
4171 spin_unlock_irqrestore(ap
->lock
, flags
);
4174 spin_unlock_irqrestore(ap
->lock
, flags
);
4176 WARN_ON(!(ap
->pflags
& ATA_PFLAG_SUSPENDED
));
4179 * Error timestamps are in jiffies which doesn't run while
4180 * suspended and PHY events during resume isn't too uncommon.
4181 * When the two are combined, it can lead to unnecessary speed
4182 * downs if the machine is suspended and resumed repeatedly.
4183 * Clear error history.
4185 ata_for_each_link(link
, ap
, HOST_FIRST
)
4186 ata_for_each_dev(dev
, link
, ALL
)
4187 ata_ering_clear(&dev
->ering
);
4189 ata_acpi_set_state(ap
, ap
->pm_mesg
);
4191 if (ap
->ops
->port_resume
)
4192 ap
->ops
->port_resume(ap
);
4194 /* tell ACPI that we're resuming */
4195 ata_acpi_on_resume(ap
);
4197 /* update the flags */
4198 spin_lock_irqsave(ap
->lock
, flags
);
4199 ap
->pflags
&= ~(ATA_PFLAG_PM_PENDING
| ATA_PFLAG_SUSPENDED
);
4200 ap
->pflags
|= ATA_PFLAG_RESUMING
;
4201 spin_unlock_irqrestore(ap
->lock
, flags
);
4203 #endif /* CONFIG_PM */