2 * libata-eh.c - libata error handling
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
8 * Copyright 2006 Tejun Heo <htejun@gmail.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
35 #include <linux/kernel.h>
36 #include <linux/blkdev.h>
37 #include <linux/pci.h>
38 #include <scsi/scsi.h>
39 #include <scsi/scsi_host.h>
40 #include <scsi/scsi_eh.h>
41 #include <scsi/scsi_device.h>
42 #include <scsi/scsi_cmnd.h>
43 #include <scsi/scsi_dbg.h>
44 #include "../scsi/scsi_transport_api.h"
46 #include <linux/libata.h>
51 /* speed down verdicts */
52 ATA_EH_SPDN_NCQ_OFF
= (1 << 0),
53 ATA_EH_SPDN_SPEED_DOWN
= (1 << 1),
54 ATA_EH_SPDN_FALLBACK_TO_PIO
= (1 << 2),
55 ATA_EH_SPDN_KEEP_ERRORS
= (1 << 3),
58 ATA_EFLAG_IS_IO
= (1 << 0),
59 ATA_EFLAG_DUBIOUS_XFER
= (1 << 1),
61 /* error categories */
64 ATA_ECAT_TOUT_HSM
= 2,
66 ATA_ECAT_DUBIOUS_NONE
= 4,
67 ATA_ECAT_DUBIOUS_ATA_BUS
= 5,
68 ATA_ECAT_DUBIOUS_TOUT_HSM
= 6,
69 ATA_ECAT_DUBIOUS_UNK_DEV
= 7,
72 ATA_EH_CMD_DFL_TIMEOUT
= 5000,
74 /* always put at least this amount of time between resets */
75 ATA_EH_RESET_COOL_DOWN
= 5000,
77 /* Waiting in ->prereset can never be reliable. It's
78 * sometimes nice to wait there but it can't be depended upon;
79 * otherwise, we wouldn't be resetting. Just give it enough
80 * time for most drives to spin up.
82 ATA_EH_PRERESET_TIMEOUT
= 10000,
83 ATA_EH_FASTDRAIN_INTERVAL
= 3000,
87 /* probe speed down parameters, see ata_eh_schedule_probe() */
88 ATA_EH_PROBE_TRIAL_INTERVAL
= 60000, /* 1 min */
89 ATA_EH_PROBE_TRIALS
= 2,
92 /* The following table determines how we sequence resets. Each entry
93 * represents timeout for that try. The first try can be soft or
94 * hardreset. All others are hardreset if available. In most cases
95 * the first reset w/ 10sec timeout should succeed. Following entries
96 * are mostly for error handling, hotplug and retarded devices.
98 static const unsigned long ata_eh_reset_timeouts
[] = {
99 10000, /* most drives spin up by 10sec */
100 10000, /* > 99% working drives spin up before 20sec */
101 35000, /* give > 30 secs of idleness for retarded devices */
102 5000, /* and sweet one last chance */
103 ULONG_MAX
, /* > 1 min has elapsed, give up */
106 static const unsigned long ata_eh_identify_timeouts
[] = {
107 5000, /* covers > 99% of successes and not too boring on failures */
108 10000, /* combined time till here is enough even for media access */
109 30000, /* for true idiots */
113 static const unsigned long ata_eh_other_timeouts
[] = {
114 5000, /* same rationale as identify timeout */
116 /* but no merciful 30sec for other commands, it just isn't worth it */
120 struct ata_eh_cmd_timeout_ent
{
122 const unsigned long *timeouts
;
125 /* The following table determines timeouts to use for EH internal
126 * commands. Each table entry is a command class and matches the
127 * commands the entry applies to and the timeout table to use.
129 * On the retry after a command timed out, the next timeout value from
130 * the table is used. If the table doesn't contain further entries,
131 * the last value is used.
133 * ehc->cmd_timeout_idx keeps track of which timeout to use per
134 * command class, so if SET_FEATURES times out on the first try, the
135 * next try will use the second timeout value only for that class.
137 #define CMDS(cmds...) (const u8 []){ cmds, 0 }
138 static const struct ata_eh_cmd_timeout_ent
139 ata_eh_cmd_timeout_table
[ATA_EH_CMD_TIMEOUT_TABLE_SIZE
] = {
140 { .commands
= CMDS(ATA_CMD_ID_ATA
, ATA_CMD_ID_ATAPI
),
141 .timeouts
= ata_eh_identify_timeouts
, },
142 { .commands
= CMDS(ATA_CMD_READ_NATIVE_MAX
, ATA_CMD_READ_NATIVE_MAX_EXT
),
143 .timeouts
= ata_eh_other_timeouts
, },
144 { .commands
= CMDS(ATA_CMD_SET_MAX
, ATA_CMD_SET_MAX_EXT
),
145 .timeouts
= ata_eh_other_timeouts
, },
146 { .commands
= CMDS(ATA_CMD_SET_FEATURES
),
147 .timeouts
= ata_eh_other_timeouts
, },
148 { .commands
= CMDS(ATA_CMD_INIT_DEV_PARAMS
),
149 .timeouts
= ata_eh_other_timeouts
, },
153 static void __ata_port_freeze(struct ata_port
*ap
);
155 static void ata_eh_handle_port_suspend(struct ata_port
*ap
);
156 static void ata_eh_handle_port_resume(struct ata_port
*ap
);
157 #else /* CONFIG_PM */
158 static void ata_eh_handle_port_suspend(struct ata_port
*ap
)
161 static void ata_eh_handle_port_resume(struct ata_port
*ap
)
163 #endif /* CONFIG_PM */
165 static void __ata_ehi_pushv_desc(struct ata_eh_info
*ehi
, const char *fmt
,
168 ehi
->desc_len
+= vscnprintf(ehi
->desc
+ ehi
->desc_len
,
169 ATA_EH_DESC_LEN
- ehi
->desc_len
,
174 * __ata_ehi_push_desc - push error description without adding separator
176 * @fmt: printf format string
178 * Format string according to @fmt and append it to @ehi->desc.
181 * spin_lock_irqsave(host lock)
183 void __ata_ehi_push_desc(struct ata_eh_info
*ehi
, const char *fmt
, ...)
188 __ata_ehi_pushv_desc(ehi
, fmt
, args
);
193 * ata_ehi_push_desc - push error description with separator
195 * @fmt: printf format string
197 * Format string according to @fmt and append it to @ehi->desc.
198 * If @ehi->desc is not empty, ", " is added in-between.
201 * spin_lock_irqsave(host lock)
203 void ata_ehi_push_desc(struct ata_eh_info
*ehi
, const char *fmt
, ...)
208 __ata_ehi_push_desc(ehi
, ", ");
211 __ata_ehi_pushv_desc(ehi
, fmt
, args
);
216 * ata_ehi_clear_desc - clean error description
222 * spin_lock_irqsave(host lock)
224 void ata_ehi_clear_desc(struct ata_eh_info
*ehi
)
231 * ata_port_desc - append port description
232 * @ap: target ATA port
233 * @fmt: printf format string
235 * Format string according to @fmt and append it to port
236 * description. If port description is not empty, " " is added
237 * in-between. This function is to be used while initializing
238 * ata_host. The description is printed on host registration.
243 void ata_port_desc(struct ata_port
*ap
, const char *fmt
, ...)
247 WARN_ON(!(ap
->pflags
& ATA_PFLAG_INITIALIZING
));
249 if (ap
->link
.eh_info
.desc_len
)
250 __ata_ehi_push_desc(&ap
->link
.eh_info
, " ");
253 __ata_ehi_pushv_desc(&ap
->link
.eh_info
, fmt
, args
);
260 * ata_port_pbar_desc - append PCI BAR description
261 * @ap: target ATA port
262 * @bar: target PCI BAR
263 * @offset: offset into PCI BAR
264 * @name: name of the area
266 * If @offset is negative, this function formats a string which
267 * contains the name, address, size and type of the BAR and
268 * appends it to the port description. If @offset is zero or
269 * positive, only name and offsetted address is appended.
274 void ata_port_pbar_desc(struct ata_port
*ap
, int bar
, ssize_t offset
,
277 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
279 unsigned long long start
, len
;
281 if (pci_resource_flags(pdev
, bar
) & IORESOURCE_MEM
)
283 else if (pci_resource_flags(pdev
, bar
) & IORESOURCE_IO
)
286 start
= (unsigned long long)pci_resource_start(pdev
, bar
);
287 len
= (unsigned long long)pci_resource_len(pdev
, bar
);
290 ata_port_desc(ap
, "%s %s%llu@0x%llx", name
, type
, len
, start
);
292 ata_port_desc(ap
, "%s 0x%llx", name
,
293 start
+ (unsigned long long)offset
);
296 #endif /* CONFIG_PCI */
298 static int ata_lookup_timeout_table(u8 cmd
)
302 for (i
= 0; i
< ATA_EH_CMD_TIMEOUT_TABLE_SIZE
; i
++) {
305 for (cur
= ata_eh_cmd_timeout_table
[i
].commands
; *cur
; cur
++)
314 * ata_internal_cmd_timeout - determine timeout for an internal command
315 * @dev: target device
316 * @cmd: internal command to be issued
318 * Determine timeout for internal command @cmd for @dev.
324 * Determined timeout.
326 unsigned long ata_internal_cmd_timeout(struct ata_device
*dev
, u8 cmd
)
328 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
329 int ent
= ata_lookup_timeout_table(cmd
);
333 return ATA_EH_CMD_DFL_TIMEOUT
;
335 idx
= ehc
->cmd_timeout_idx
[dev
->devno
][ent
];
336 return ata_eh_cmd_timeout_table
[ent
].timeouts
[idx
];
340 * ata_internal_cmd_timed_out - notification for internal command timeout
341 * @dev: target device
342 * @cmd: internal command which timed out
344 * Notify EH that internal command @cmd for @dev timed out. This
345 * function should be called only for commands whose timeouts are
346 * determined using ata_internal_cmd_timeout().
351 void ata_internal_cmd_timed_out(struct ata_device
*dev
, u8 cmd
)
353 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
354 int ent
= ata_lookup_timeout_table(cmd
);
360 idx
= ehc
->cmd_timeout_idx
[dev
->devno
][ent
];
361 if (ata_eh_cmd_timeout_table
[ent
].timeouts
[idx
+ 1] != ULONG_MAX
)
362 ehc
->cmd_timeout_idx
[dev
->devno
][ent
]++;
365 static void ata_ering_record(struct ata_ering
*ering
, unsigned int eflags
,
366 unsigned int err_mask
)
368 struct ata_ering_entry
*ent
;
373 ering
->cursor
%= ATA_ERING_SIZE
;
375 ent
= &ering
->ring
[ering
->cursor
];
376 ent
->eflags
= eflags
;
377 ent
->err_mask
= err_mask
;
378 ent
->timestamp
= get_jiffies_64();
381 static struct ata_ering_entry
*ata_ering_top(struct ata_ering
*ering
)
383 struct ata_ering_entry
*ent
= &ering
->ring
[ering
->cursor
];
390 static void ata_ering_clear(struct ata_ering
*ering
)
392 memset(ering
, 0, sizeof(*ering
));
395 static int ata_ering_map(struct ata_ering
*ering
,
396 int (*map_fn
)(struct ata_ering_entry
*, void *),
400 struct ata_ering_entry
*ent
;
404 ent
= &ering
->ring
[idx
];
407 rc
= map_fn(ent
, arg
);
410 idx
= (idx
- 1 + ATA_ERING_SIZE
) % ATA_ERING_SIZE
;
411 } while (idx
!= ering
->cursor
);
416 static unsigned int ata_eh_dev_action(struct ata_device
*dev
)
418 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
420 return ehc
->i
.action
| ehc
->i
.dev_action
[dev
->devno
];
423 static void ata_eh_clear_action(struct ata_link
*link
, struct ata_device
*dev
,
424 struct ata_eh_info
*ehi
, unsigned int action
)
426 struct ata_device
*tdev
;
429 ehi
->action
&= ~action
;
430 ata_for_each_dev(tdev
, link
, ALL
)
431 ehi
->dev_action
[tdev
->devno
] &= ~action
;
433 /* doesn't make sense for port-wide EH actions */
434 WARN_ON(!(action
& ATA_EH_PERDEV_MASK
));
436 /* break ehi->action into ehi->dev_action */
437 if (ehi
->action
& action
) {
438 ata_for_each_dev(tdev
, link
, ALL
)
439 ehi
->dev_action
[tdev
->devno
] |=
440 ehi
->action
& action
;
441 ehi
->action
&= ~action
;
444 /* turn off the specified per-dev action */
445 ehi
->dev_action
[dev
->devno
] &= ~action
;
450 * ata_scsi_timed_out - SCSI layer time out callback
451 * @cmd: timed out SCSI command
453 * Handles SCSI layer timeout. We race with normal completion of
454 * the qc for @cmd. If the qc is already gone, we lose and let
455 * the scsi command finish (EH_HANDLED). Otherwise, the qc has
456 * timed out and EH should be invoked. Prevent ata_qc_complete()
457 * from finishing it by setting EH_SCHEDULED and return
460 * TODO: kill this function once old EH is gone.
463 * Called from timer context
466 * EH_HANDLED or EH_NOT_HANDLED
468 enum blk_eh_timer_return
ata_scsi_timed_out(struct scsi_cmnd
*cmd
)
470 struct Scsi_Host
*host
= cmd
->device
->host
;
471 struct ata_port
*ap
= ata_shost_to_port(host
);
473 struct ata_queued_cmd
*qc
;
474 enum blk_eh_timer_return ret
;
478 if (ap
->ops
->error_handler
) {
479 ret
= BLK_EH_NOT_HANDLED
;
483 ret
= BLK_EH_HANDLED
;
484 spin_lock_irqsave(ap
->lock
, flags
);
485 qc
= ata_qc_from_tag(ap
, ap
->link
.active_tag
);
487 WARN_ON(qc
->scsicmd
!= cmd
);
488 qc
->flags
|= ATA_QCFLAG_EH_SCHEDULED
;
489 qc
->err_mask
|= AC_ERR_TIMEOUT
;
490 ret
= BLK_EH_NOT_HANDLED
;
492 spin_unlock_irqrestore(ap
->lock
, flags
);
495 DPRINTK("EXIT, ret=%d\n", ret
);
499 static void ata_eh_unload(struct ata_port
*ap
)
501 struct ata_link
*link
;
502 struct ata_device
*dev
;
505 /* Restore SControl IPM and SPD for the next driver and
506 * disable attached devices.
508 ata_for_each_link(link
, ap
, PMP_FIRST
) {
509 sata_scr_write(link
, SCR_CONTROL
, link
->saved_scontrol
& 0xff0);
510 ata_for_each_dev(dev
, link
, ALL
)
511 ata_dev_disable(dev
);
514 /* freeze and set UNLOADED */
515 spin_lock_irqsave(ap
->lock
, flags
);
517 ata_port_freeze(ap
); /* won't be thawed */
518 ap
->pflags
&= ~ATA_PFLAG_EH_PENDING
; /* clear pending from freeze */
519 ap
->pflags
|= ATA_PFLAG_UNLOADED
;
521 spin_unlock_irqrestore(ap
->lock
, flags
);
525 * ata_scsi_error - SCSI layer error handler callback
526 * @host: SCSI host on which error occurred
528 * Handles SCSI-layer-thrown error events.
531 * Inherited from SCSI layer (none, can sleep)
536 void ata_scsi_error(struct Scsi_Host
*host
)
538 struct ata_port
*ap
= ata_shost_to_port(host
);
544 /* synchronize with port task */
545 ata_port_flush_task(ap
);
547 /* synchronize with host lock and sort out timeouts */
549 /* For new EH, all qcs are finished in one of three ways -
550 * normal completion, error completion, and SCSI timeout.
551 * Both completions can race against SCSI timeout. When normal
552 * completion wins, the qc never reaches EH. When error
553 * completion wins, the qc has ATA_QCFLAG_FAILED set.
555 * When SCSI timeout wins, things are a bit more complex.
556 * Normal or error completion can occur after the timeout but
557 * before this point. In such cases, both types of
558 * completions are honored. A scmd is determined to have
559 * timed out iff its associated qc is active and not failed.
561 if (ap
->ops
->error_handler
) {
562 struct scsi_cmnd
*scmd
, *tmp
;
565 spin_lock_irqsave(ap
->lock
, flags
);
567 /* This must occur under the ap->lock as we don't want
568 a polled recovery to race the real interrupt handler
570 The lost_interrupt handler checks for any completed but
571 non-notified command and completes much like an IRQ handler.
573 We then fall into the error recovery code which will treat
574 this as if normal completion won the race */
576 if (ap
->ops
->lost_interrupt
)
577 ap
->ops
->lost_interrupt(ap
);
579 list_for_each_entry_safe(scmd
, tmp
, &host
->eh_cmd_q
, eh_entry
) {
580 struct ata_queued_cmd
*qc
;
582 for (i
= 0; i
< ATA_MAX_QUEUE
; i
++) {
583 qc
= __ata_qc_from_tag(ap
, i
);
584 if (qc
->flags
& ATA_QCFLAG_ACTIVE
&&
589 if (i
< ATA_MAX_QUEUE
) {
590 /* the scmd has an associated qc */
591 if (!(qc
->flags
& ATA_QCFLAG_FAILED
)) {
592 /* which hasn't failed yet, timeout */
593 qc
->err_mask
|= AC_ERR_TIMEOUT
;
594 qc
->flags
|= ATA_QCFLAG_FAILED
;
598 /* Normal completion occurred after
599 * SCSI timeout but before this point.
600 * Successfully complete it.
602 scmd
->retries
= scmd
->allowed
;
603 scsi_eh_finish_cmd(scmd
, &ap
->eh_done_q
);
607 /* If we have timed out qcs. They belong to EH from
608 * this point but the state of the controller is
609 * unknown. Freeze the port to make sure the IRQ
610 * handler doesn't diddle with those qcs. This must
611 * be done atomically w.r.t. setting QCFLAG_FAILED.
614 __ata_port_freeze(ap
);
616 spin_unlock_irqrestore(ap
->lock
, flags
);
618 /* initialize eh_tries */
619 ap
->eh_tries
= ATA_EH_MAX_TRIES
;
621 spin_unlock_wait(ap
->lock
);
623 /* If we timed raced normal completion and there is nothing to
624 recover nr_timedout == 0 why exactly are we doing error recovery ? */
627 /* invoke error handler */
628 if (ap
->ops
->error_handler
) {
629 struct ata_link
*link
;
631 /* kill fast drain timer */
632 del_timer_sync(&ap
->fastdrain_timer
);
634 /* process port resume request */
635 ata_eh_handle_port_resume(ap
);
637 /* fetch & clear EH info */
638 spin_lock_irqsave(ap
->lock
, flags
);
640 ata_for_each_link(link
, ap
, HOST_FIRST
) {
641 struct ata_eh_context
*ehc
= &link
->eh_context
;
642 struct ata_device
*dev
;
644 memset(&link
->eh_context
, 0, sizeof(link
->eh_context
));
645 link
->eh_context
.i
= link
->eh_info
;
646 memset(&link
->eh_info
, 0, sizeof(link
->eh_info
));
648 ata_for_each_dev(dev
, link
, ENABLED
) {
649 int devno
= dev
->devno
;
651 ehc
->saved_xfer_mode
[devno
] = dev
->xfer_mode
;
652 if (ata_ncq_enabled(dev
))
653 ehc
->saved_ncq_enabled
|= 1 << devno
;
657 ap
->pflags
|= ATA_PFLAG_EH_IN_PROGRESS
;
658 ap
->pflags
&= ~ATA_PFLAG_EH_PENDING
;
659 ap
->excl_link
= NULL
; /* don't maintain exclusion over EH */
661 spin_unlock_irqrestore(ap
->lock
, flags
);
663 /* invoke EH, skip if unloading or suspended */
664 if (!(ap
->pflags
& (ATA_PFLAG_UNLOADING
| ATA_PFLAG_SUSPENDED
)))
665 ap
->ops
->error_handler(ap
);
667 /* if unloading, commence suicide */
668 if ((ap
->pflags
& ATA_PFLAG_UNLOADING
) &&
669 !(ap
->pflags
& ATA_PFLAG_UNLOADED
))
674 /* process port suspend request */
675 ata_eh_handle_port_suspend(ap
);
677 /* Exception might have happend after ->error_handler
678 * recovered the port but before this point. Repeat
681 spin_lock_irqsave(ap
->lock
, flags
);
683 if (ap
->pflags
& ATA_PFLAG_EH_PENDING
) {
684 if (--ap
->eh_tries
) {
685 spin_unlock_irqrestore(ap
->lock
, flags
);
688 ata_port_printk(ap
, KERN_ERR
, "EH pending after %d "
689 "tries, giving up\n", ATA_EH_MAX_TRIES
);
690 ap
->pflags
&= ~ATA_PFLAG_EH_PENDING
;
693 /* this run is complete, make sure EH info is clear */
694 ata_for_each_link(link
, ap
, HOST_FIRST
)
695 memset(&link
->eh_info
, 0, sizeof(link
->eh_info
));
697 /* Clear host_eh_scheduled while holding ap->lock such
698 * that if exception occurs after this point but
699 * before EH completion, SCSI midlayer will
702 host
->host_eh_scheduled
= 0;
704 spin_unlock_irqrestore(ap
->lock
, flags
);
706 WARN_ON(ata_qc_from_tag(ap
, ap
->link
.active_tag
) == NULL
);
707 ap
->ops
->eng_timeout(ap
);
710 /* finish or retry handled scmd's and clean up */
711 WARN_ON(host
->host_failed
|| !list_empty(&host
->eh_cmd_q
));
713 scsi_eh_flush_done_q(&ap
->eh_done_q
);
716 spin_lock_irqsave(ap
->lock
, flags
);
718 if (ap
->pflags
& ATA_PFLAG_LOADING
)
719 ap
->pflags
&= ~ATA_PFLAG_LOADING
;
720 else if (ap
->pflags
& ATA_PFLAG_SCSI_HOTPLUG
)
721 queue_delayed_work(ata_aux_wq
, &ap
->hotplug_task
, 0);
723 if (ap
->pflags
& ATA_PFLAG_RECOVERED
)
724 ata_port_printk(ap
, KERN_INFO
, "EH complete\n");
726 ap
->pflags
&= ~(ATA_PFLAG_SCSI_HOTPLUG
| ATA_PFLAG_RECOVERED
);
728 /* tell wait_eh that we're done */
729 ap
->pflags
&= ~ATA_PFLAG_EH_IN_PROGRESS
;
730 wake_up_all(&ap
->eh_wait_q
);
732 spin_unlock_irqrestore(ap
->lock
, flags
);
738 * ata_port_wait_eh - Wait for the currently pending EH to complete
739 * @ap: Port to wait EH for
741 * Wait until the currently pending EH is complete.
744 * Kernel thread context (may sleep).
746 void ata_port_wait_eh(struct ata_port
*ap
)
752 spin_lock_irqsave(ap
->lock
, flags
);
754 while (ap
->pflags
& (ATA_PFLAG_EH_PENDING
| ATA_PFLAG_EH_IN_PROGRESS
)) {
755 prepare_to_wait(&ap
->eh_wait_q
, &wait
, TASK_UNINTERRUPTIBLE
);
756 spin_unlock_irqrestore(ap
->lock
, flags
);
758 spin_lock_irqsave(ap
->lock
, flags
);
760 finish_wait(&ap
->eh_wait_q
, &wait
);
762 spin_unlock_irqrestore(ap
->lock
, flags
);
764 /* make sure SCSI EH is complete */
765 if (scsi_host_in_recovery(ap
->scsi_host
)) {
771 static int ata_eh_nr_in_flight(struct ata_port
*ap
)
776 /* count only non-internal commands */
777 for (tag
= 0; tag
< ATA_MAX_QUEUE
- 1; tag
++)
778 if (ata_qc_from_tag(ap
, tag
))
784 void ata_eh_fastdrain_timerfn(unsigned long arg
)
786 struct ata_port
*ap
= (void *)arg
;
790 spin_lock_irqsave(ap
->lock
, flags
);
792 cnt
= ata_eh_nr_in_flight(ap
);
798 if (cnt
== ap
->fastdrain_cnt
) {
801 /* No progress during the last interval, tag all
802 * in-flight qcs as timed out and freeze the port.
804 for (tag
= 0; tag
< ATA_MAX_QUEUE
- 1; tag
++) {
805 struct ata_queued_cmd
*qc
= ata_qc_from_tag(ap
, tag
);
807 qc
->err_mask
|= AC_ERR_TIMEOUT
;
812 /* some qcs have finished, give it another chance */
813 ap
->fastdrain_cnt
= cnt
;
814 ap
->fastdrain_timer
.expires
=
815 ata_deadline(jiffies
, ATA_EH_FASTDRAIN_INTERVAL
);
816 add_timer(&ap
->fastdrain_timer
);
820 spin_unlock_irqrestore(ap
->lock
, flags
);
824 * ata_eh_set_pending - set ATA_PFLAG_EH_PENDING and activate fast drain
825 * @ap: target ATA port
826 * @fastdrain: activate fast drain
828 * Set ATA_PFLAG_EH_PENDING and activate fast drain if @fastdrain
829 * is non-zero and EH wasn't pending before. Fast drain ensures
830 * that EH kicks in in timely manner.
833 * spin_lock_irqsave(host lock)
835 static void ata_eh_set_pending(struct ata_port
*ap
, int fastdrain
)
839 /* already scheduled? */
840 if (ap
->pflags
& ATA_PFLAG_EH_PENDING
)
843 ap
->pflags
|= ATA_PFLAG_EH_PENDING
;
848 /* do we have in-flight qcs? */
849 cnt
= ata_eh_nr_in_flight(ap
);
853 /* activate fast drain */
854 ap
->fastdrain_cnt
= cnt
;
855 ap
->fastdrain_timer
.expires
=
856 ata_deadline(jiffies
, ATA_EH_FASTDRAIN_INTERVAL
);
857 add_timer(&ap
->fastdrain_timer
);
861 * ata_qc_schedule_eh - schedule qc for error handling
862 * @qc: command to schedule error handling for
864 * Schedule error handling for @qc. EH will kick in as soon as
865 * other commands are drained.
868 * spin_lock_irqsave(host lock)
870 void ata_qc_schedule_eh(struct ata_queued_cmd
*qc
)
872 struct ata_port
*ap
= qc
->ap
;
873 struct request_queue
*q
= qc
->scsicmd
->device
->request_queue
;
876 WARN_ON(!ap
->ops
->error_handler
);
878 qc
->flags
|= ATA_QCFLAG_FAILED
;
879 ata_eh_set_pending(ap
, 1);
881 /* The following will fail if timeout has already expired.
882 * ata_scsi_error() takes care of such scmds on EH entry.
883 * Note that ATA_QCFLAG_FAILED is unconditionally set after
884 * this function completes.
886 spin_lock_irqsave(q
->queue_lock
, flags
);
887 blk_abort_request(qc
->scsicmd
->request
);
888 spin_unlock_irqrestore(q
->queue_lock
, flags
);
892 * ata_port_schedule_eh - schedule error handling without a qc
893 * @ap: ATA port to schedule EH for
895 * Schedule error handling for @ap. EH will kick in as soon as
896 * all commands are drained.
899 * spin_lock_irqsave(host lock)
901 void ata_port_schedule_eh(struct ata_port
*ap
)
903 WARN_ON(!ap
->ops
->error_handler
);
905 if (ap
->pflags
& ATA_PFLAG_INITIALIZING
)
908 ata_eh_set_pending(ap
, 1);
909 scsi_schedule_eh(ap
->scsi_host
);
911 DPRINTK("port EH scheduled\n");
914 static int ata_do_link_abort(struct ata_port
*ap
, struct ata_link
*link
)
916 int tag
, nr_aborted
= 0;
918 WARN_ON(!ap
->ops
->error_handler
);
920 /* we're gonna abort all commands, no need for fast drain */
921 ata_eh_set_pending(ap
, 0);
923 for (tag
= 0; tag
< ATA_MAX_QUEUE
; tag
++) {
924 struct ata_queued_cmd
*qc
= ata_qc_from_tag(ap
, tag
);
926 if (qc
&& (!link
|| qc
->dev
->link
== link
)) {
927 qc
->flags
|= ATA_QCFLAG_FAILED
;
934 ata_port_schedule_eh(ap
);
940 * ata_link_abort - abort all qc's on the link
941 * @link: ATA link to abort qc's for
943 * Abort all active qc's active on @link and schedule EH.
946 * spin_lock_irqsave(host lock)
949 * Number of aborted qc's.
951 int ata_link_abort(struct ata_link
*link
)
953 return ata_do_link_abort(link
->ap
, link
);
957 * ata_port_abort - abort all qc's on the port
958 * @ap: ATA port to abort qc's for
960 * Abort all active qc's of @ap and schedule EH.
963 * spin_lock_irqsave(host_set lock)
966 * Number of aborted qc's.
968 int ata_port_abort(struct ata_port
*ap
)
970 return ata_do_link_abort(ap
, NULL
);
974 * __ata_port_freeze - freeze port
975 * @ap: ATA port to freeze
977 * This function is called when HSM violation or some other
978 * condition disrupts normal operation of the port. Frozen port
979 * is not allowed to perform any operation until the port is
980 * thawed, which usually follows a successful reset.
982 * ap->ops->freeze() callback can be used for freezing the port
983 * hardware-wise (e.g. mask interrupt and stop DMA engine). If a
984 * port cannot be frozen hardware-wise, the interrupt handler
985 * must ack and clear interrupts unconditionally while the port
989 * spin_lock_irqsave(host lock)
991 static void __ata_port_freeze(struct ata_port
*ap
)
993 WARN_ON(!ap
->ops
->error_handler
);
998 ap
->pflags
|= ATA_PFLAG_FROZEN
;
1000 DPRINTK("ata%u port frozen\n", ap
->print_id
);
1004 * ata_port_freeze - abort & freeze port
1005 * @ap: ATA port to freeze
1007 * Abort and freeze @ap. The freeze operation must be called
1008 * first, because some hardware requires special operations
1009 * before the taskfile registers are accessible.
1012 * spin_lock_irqsave(host lock)
1015 * Number of aborted commands.
1017 int ata_port_freeze(struct ata_port
*ap
)
1021 WARN_ON(!ap
->ops
->error_handler
);
1023 __ata_port_freeze(ap
);
1024 nr_aborted
= ata_port_abort(ap
);
1030 * sata_async_notification - SATA async notification handler
1031 * @ap: ATA port where async notification is received
1033 * Handler to be called when async notification via SDB FIS is
1034 * received. This function schedules EH if necessary.
1037 * spin_lock_irqsave(host lock)
1040 * 1 if EH is scheduled, 0 otherwise.
1042 int sata_async_notification(struct ata_port
*ap
)
1047 if (!(ap
->flags
& ATA_FLAG_AN
))
1050 rc
= sata_scr_read(&ap
->link
, SCR_NOTIFICATION
, &sntf
);
1052 sata_scr_write(&ap
->link
, SCR_NOTIFICATION
, sntf
);
1054 if (!sata_pmp_attached(ap
) || rc
) {
1055 /* PMP is not attached or SNTF is not available */
1056 if (!sata_pmp_attached(ap
)) {
1057 /* PMP is not attached. Check whether ATAPI
1058 * AN is configured. If so, notify media
1061 struct ata_device
*dev
= ap
->link
.device
;
1063 if ((dev
->class == ATA_DEV_ATAPI
) &&
1064 (dev
->flags
& ATA_DFLAG_AN
))
1065 ata_scsi_media_change_notify(dev
);
1068 /* PMP is attached but SNTF is not available.
1069 * ATAPI async media change notification is
1070 * not used. The PMP must be reporting PHY
1071 * status change, schedule EH.
1073 ata_port_schedule_eh(ap
);
1077 /* PMP is attached and SNTF is available */
1078 struct ata_link
*link
;
1080 /* check and notify ATAPI AN */
1081 ata_for_each_link(link
, ap
, EDGE
) {
1082 if (!(sntf
& (1 << link
->pmp
)))
1085 if ((link
->device
->class == ATA_DEV_ATAPI
) &&
1086 (link
->device
->flags
& ATA_DFLAG_AN
))
1087 ata_scsi_media_change_notify(link
->device
);
1090 /* If PMP is reporting that PHY status of some
1091 * downstream ports has changed, schedule EH.
1093 if (sntf
& (1 << SATA_PMP_CTRL_PORT
)) {
1094 ata_port_schedule_eh(ap
);
1103 * ata_eh_freeze_port - EH helper to freeze port
1104 * @ap: ATA port to freeze
1111 void ata_eh_freeze_port(struct ata_port
*ap
)
1113 unsigned long flags
;
1115 if (!ap
->ops
->error_handler
)
1118 spin_lock_irqsave(ap
->lock
, flags
);
1119 __ata_port_freeze(ap
);
1120 spin_unlock_irqrestore(ap
->lock
, flags
);
1124 * ata_port_thaw_port - EH helper to thaw port
1125 * @ap: ATA port to thaw
1127 * Thaw frozen port @ap.
1132 void ata_eh_thaw_port(struct ata_port
*ap
)
1134 unsigned long flags
;
1136 if (!ap
->ops
->error_handler
)
1139 spin_lock_irqsave(ap
->lock
, flags
);
1141 ap
->pflags
&= ~ATA_PFLAG_FROZEN
;
1146 spin_unlock_irqrestore(ap
->lock
, flags
);
1148 DPRINTK("ata%u port thawed\n", ap
->print_id
);
1151 static void ata_eh_scsidone(struct scsi_cmnd
*scmd
)
1156 static void __ata_eh_qc_complete(struct ata_queued_cmd
*qc
)
1158 struct ata_port
*ap
= qc
->ap
;
1159 struct scsi_cmnd
*scmd
= qc
->scsicmd
;
1160 unsigned long flags
;
1162 spin_lock_irqsave(ap
->lock
, flags
);
1163 qc
->scsidone
= ata_eh_scsidone
;
1164 __ata_qc_complete(qc
);
1165 WARN_ON(ata_tag_valid(qc
->tag
));
1166 spin_unlock_irqrestore(ap
->lock
, flags
);
1168 scsi_eh_finish_cmd(scmd
, &ap
->eh_done_q
);
1172 * ata_eh_qc_complete - Complete an active ATA command from EH
1173 * @qc: Command to complete
1175 * Indicate to the mid and upper layers that an ATA command has
1176 * completed. To be used from EH.
1178 void ata_eh_qc_complete(struct ata_queued_cmd
*qc
)
1180 struct scsi_cmnd
*scmd
= qc
->scsicmd
;
1181 scmd
->retries
= scmd
->allowed
;
1182 __ata_eh_qc_complete(qc
);
1186 * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
1187 * @qc: Command to retry
1189 * Indicate to the mid and upper layers that an ATA command
1190 * should be retried. To be used from EH.
1192 * SCSI midlayer limits the number of retries to scmd->allowed.
1193 * scmd->retries is decremented for commands which get retried
1194 * due to unrelated failures (qc->err_mask is zero).
1196 void ata_eh_qc_retry(struct ata_queued_cmd
*qc
)
1198 struct scsi_cmnd
*scmd
= qc
->scsicmd
;
1199 if (!qc
->err_mask
&& scmd
->retries
)
1201 __ata_eh_qc_complete(qc
);
1205 * ata_dev_disable - disable ATA device
1206 * @dev: ATA device to disable
1213 void ata_dev_disable(struct ata_device
*dev
)
1215 if (!ata_dev_enabled(dev
))
1218 if (ata_msg_drv(dev
->link
->ap
))
1219 ata_dev_printk(dev
, KERN_WARNING
, "disabled\n");
1220 ata_acpi_on_disable(dev
);
1221 ata_down_xfermask_limit(dev
, ATA_DNXFER_FORCE_PIO0
| ATA_DNXFER_QUIET
);
1224 /* From now till the next successful probe, ering is used to
1225 * track probe failures. Clear accumulated device error info.
1227 ata_ering_clear(&dev
->ering
);
1231 * ata_eh_detach_dev - detach ATA device
1232 * @dev: ATA device to detach
1239 void ata_eh_detach_dev(struct ata_device
*dev
)
1241 struct ata_link
*link
= dev
->link
;
1242 struct ata_port
*ap
= link
->ap
;
1243 struct ata_eh_context
*ehc
= &link
->eh_context
;
1244 unsigned long flags
;
1246 ata_dev_disable(dev
);
1248 spin_lock_irqsave(ap
->lock
, flags
);
1250 dev
->flags
&= ~ATA_DFLAG_DETACH
;
1252 if (ata_scsi_offline_dev(dev
)) {
1253 dev
->flags
|= ATA_DFLAG_DETACHED
;
1254 ap
->pflags
|= ATA_PFLAG_SCSI_HOTPLUG
;
1257 /* clear per-dev EH info */
1258 ata_eh_clear_action(link
, dev
, &link
->eh_info
, ATA_EH_PERDEV_MASK
);
1259 ata_eh_clear_action(link
, dev
, &link
->eh_context
.i
, ATA_EH_PERDEV_MASK
);
1260 ehc
->saved_xfer_mode
[dev
->devno
] = 0;
1261 ehc
->saved_ncq_enabled
&= ~(1 << dev
->devno
);
1263 spin_unlock_irqrestore(ap
->lock
, flags
);
1267 * ata_eh_about_to_do - about to perform eh_action
1268 * @link: target ATA link
1269 * @dev: target ATA dev for per-dev action (can be NULL)
1270 * @action: action about to be performed
1272 * Called just before performing EH actions to clear related bits
1273 * in @link->eh_info such that eh actions are not unnecessarily
1279 void ata_eh_about_to_do(struct ata_link
*link
, struct ata_device
*dev
,
1280 unsigned int action
)
1282 struct ata_port
*ap
= link
->ap
;
1283 struct ata_eh_info
*ehi
= &link
->eh_info
;
1284 struct ata_eh_context
*ehc
= &link
->eh_context
;
1285 unsigned long flags
;
1287 spin_lock_irqsave(ap
->lock
, flags
);
1289 ata_eh_clear_action(link
, dev
, ehi
, action
);
1291 /* About to take EH action, set RECOVERED. Ignore actions on
1292 * slave links as master will do them again.
1294 if (!(ehc
->i
.flags
& ATA_EHI_QUIET
) && link
!= ap
->slave_link
)
1295 ap
->pflags
|= ATA_PFLAG_RECOVERED
;
1297 spin_unlock_irqrestore(ap
->lock
, flags
);
1301 * ata_eh_done - EH action complete
1302 * @ap: target ATA port
1303 * @dev: target ATA dev for per-dev action (can be NULL)
1304 * @action: action just completed
1306 * Called right after performing EH actions to clear related bits
1307 * in @link->eh_context.
1312 void ata_eh_done(struct ata_link
*link
, struct ata_device
*dev
,
1313 unsigned int action
)
1315 struct ata_eh_context
*ehc
= &link
->eh_context
;
1317 ata_eh_clear_action(link
, dev
, &ehc
->i
, action
);
1321 * ata_err_string - convert err_mask to descriptive string
1322 * @err_mask: error mask to convert to string
1324 * Convert @err_mask to descriptive string. Errors are
1325 * prioritized according to severity and only the most severe
1326 * error is reported.
1332 * Descriptive string for @err_mask
1334 static const char *ata_err_string(unsigned int err_mask
)
1336 if (err_mask
& AC_ERR_HOST_BUS
)
1337 return "host bus error";
1338 if (err_mask
& AC_ERR_ATA_BUS
)
1339 return "ATA bus error";
1340 if (err_mask
& AC_ERR_TIMEOUT
)
1342 if (err_mask
& AC_ERR_HSM
)
1343 return "HSM violation";
1344 if (err_mask
& AC_ERR_SYSTEM
)
1345 return "internal error";
1346 if (err_mask
& AC_ERR_MEDIA
)
1347 return "media error";
1348 if (err_mask
& AC_ERR_INVALID
)
1349 return "invalid argument";
1350 if (err_mask
& AC_ERR_DEV
)
1351 return "device error";
1352 return "unknown error";
1356 * ata_read_log_page - read a specific log page
1357 * @dev: target device
1358 * @page: page to read
1359 * @buf: buffer to store read page
1360 * @sectors: number of sectors to read
1362 * Read log page using READ_LOG_EXT command.
1365 * Kernel thread context (may sleep).
1368 * 0 on success, AC_ERR_* mask otherwise.
1370 static unsigned int ata_read_log_page(struct ata_device
*dev
,
1371 u8 page
, void *buf
, unsigned int sectors
)
1373 struct ata_taskfile tf
;
1374 unsigned int err_mask
;
1376 DPRINTK("read log page - page %d\n", page
);
1378 ata_tf_init(dev
, &tf
);
1379 tf
.command
= ATA_CMD_READ_LOG_EXT
;
1382 tf
.hob_nsect
= sectors
>> 8;
1383 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_LBA48
| ATA_TFLAG_DEVICE
;
1384 tf
.protocol
= ATA_PROT_PIO
;
1386 err_mask
= ata_exec_internal(dev
, &tf
, NULL
, DMA_FROM_DEVICE
,
1387 buf
, sectors
* ATA_SECT_SIZE
, 0);
1389 DPRINTK("EXIT, err_mask=%x\n", err_mask
);
1394 * ata_eh_read_log_10h - Read log page 10h for NCQ error details
1395 * @dev: Device to read log page 10h from
1396 * @tag: Resulting tag of the failed command
1397 * @tf: Resulting taskfile registers of the failed command
1399 * Read log page 10h to obtain NCQ error details and clear error
1403 * Kernel thread context (may sleep).
1406 * 0 on success, -errno otherwise.
1408 static int ata_eh_read_log_10h(struct ata_device
*dev
,
1409 int *tag
, struct ata_taskfile
*tf
)
1411 u8
*buf
= dev
->link
->ap
->sector_buf
;
1412 unsigned int err_mask
;
1416 err_mask
= ata_read_log_page(dev
, ATA_LOG_SATA_NCQ
, buf
, 1);
1421 for (i
= 0; i
< ATA_SECT_SIZE
; i
++)
1424 ata_dev_printk(dev
, KERN_WARNING
,
1425 "invalid checksum 0x%x on log page 10h\n", csum
);
1430 *tag
= buf
[0] & 0x1f;
1432 tf
->command
= buf
[2];
1433 tf
->feature
= buf
[3];
1437 tf
->device
= buf
[7];
1438 tf
->hob_lbal
= buf
[8];
1439 tf
->hob_lbam
= buf
[9];
1440 tf
->hob_lbah
= buf
[10];
1441 tf
->nsect
= buf
[12];
1442 tf
->hob_nsect
= buf
[13];
1448 * atapi_eh_tur - perform ATAPI TEST_UNIT_READY
1449 * @dev: target ATAPI device
1450 * @r_sense_key: out parameter for sense_key
1452 * Perform ATAPI TEST_UNIT_READY.
1455 * EH context (may sleep).
1458 * 0 on success, AC_ERR_* mask on failure.
1460 static unsigned int atapi_eh_tur(struct ata_device
*dev
, u8
*r_sense_key
)
1462 u8 cdb
[ATAPI_CDB_LEN
] = { TEST_UNIT_READY
, 0, 0, 0, 0, 0 };
1463 struct ata_taskfile tf
;
1464 unsigned int err_mask
;
1466 ata_tf_init(dev
, &tf
);
1468 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
;
1469 tf
.command
= ATA_CMD_PACKET
;
1470 tf
.protocol
= ATAPI_PROT_NODATA
;
1472 err_mask
= ata_exec_internal(dev
, &tf
, cdb
, DMA_NONE
, NULL
, 0, 0);
1473 if (err_mask
== AC_ERR_DEV
)
1474 *r_sense_key
= tf
.feature
>> 4;
1479 * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
1480 * @dev: device to perform REQUEST_SENSE to
1481 * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
1482 * @dfl_sense_key: default sense key to use
1484 * Perform ATAPI REQUEST_SENSE after the device reported CHECK
1485 * SENSE. This function is EH helper.
1488 * Kernel thread context (may sleep).
1491 * 0 on success, AC_ERR_* mask on failure
1493 static unsigned int atapi_eh_request_sense(struct ata_device
*dev
,
1494 u8
*sense_buf
, u8 dfl_sense_key
)
1496 u8 cdb
[ATAPI_CDB_LEN
] =
1497 { REQUEST_SENSE
, 0, 0, 0, SCSI_SENSE_BUFFERSIZE
, 0 };
1498 struct ata_port
*ap
= dev
->link
->ap
;
1499 struct ata_taskfile tf
;
1501 DPRINTK("ATAPI request sense\n");
1503 /* FIXME: is this needed? */
1504 memset(sense_buf
, 0, SCSI_SENSE_BUFFERSIZE
);
1506 /* initialize sense_buf with the error register,
1507 * for the case where they are -not- overwritten
1509 sense_buf
[0] = 0x70;
1510 sense_buf
[2] = dfl_sense_key
;
1512 /* some devices time out if garbage left in tf */
1513 ata_tf_init(dev
, &tf
);
1515 tf
.flags
|= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
;
1516 tf
.command
= ATA_CMD_PACKET
;
1518 /* is it pointless to prefer PIO for "safety reasons"? */
1519 if (ap
->flags
& ATA_FLAG_PIO_DMA
) {
1520 tf
.protocol
= ATAPI_PROT_DMA
;
1521 tf
.feature
|= ATAPI_PKT_DMA
;
1523 tf
.protocol
= ATAPI_PROT_PIO
;
1524 tf
.lbam
= SCSI_SENSE_BUFFERSIZE
;
1528 return ata_exec_internal(dev
, &tf
, cdb
, DMA_FROM_DEVICE
,
1529 sense_buf
, SCSI_SENSE_BUFFERSIZE
, 0);
1533 * ata_eh_analyze_serror - analyze SError for a failed port
1534 * @link: ATA link to analyze SError for
1536 * Analyze SError if available and further determine cause of
1542 static void ata_eh_analyze_serror(struct ata_link
*link
)
1544 struct ata_eh_context
*ehc
= &link
->eh_context
;
1545 u32 serror
= ehc
->i
.serror
;
1546 unsigned int err_mask
= 0, action
= 0;
1549 if (serror
& (SERR_PERSISTENT
| SERR_DATA
)) {
1550 err_mask
|= AC_ERR_ATA_BUS
;
1551 action
|= ATA_EH_RESET
;
1553 if (serror
& SERR_PROTOCOL
) {
1554 err_mask
|= AC_ERR_HSM
;
1555 action
|= ATA_EH_RESET
;
1557 if (serror
& SERR_INTERNAL
) {
1558 err_mask
|= AC_ERR_SYSTEM
;
1559 action
|= ATA_EH_RESET
;
1562 /* Determine whether a hotplug event has occurred. Both
1563 * SError.N/X are considered hotplug events for enabled or
1564 * host links. For disabled PMP links, only N bit is
1565 * considered as X bit is left at 1 for link plugging.
1569 if (!(link
->flags
& ATA_LFLAG_DISABLED
) || ata_is_host_link(link
))
1570 hotplug_mask
= SERR_PHYRDY_CHG
| SERR_DEV_XCHG
;
1572 hotplug_mask
= SERR_PHYRDY_CHG
;
1574 if (serror
& hotplug_mask
)
1575 ata_ehi_hotplugged(&ehc
->i
);
1577 ehc
->i
.err_mask
|= err_mask
;
1578 ehc
->i
.action
|= action
;
1582 * ata_eh_analyze_ncq_error - analyze NCQ error
1583 * @link: ATA link to analyze NCQ error for
1585 * Read log page 10h, determine the offending qc and acquire
1586 * error status TF. For NCQ device errors, all LLDDs have to do
1587 * is setting AC_ERR_DEV in ehi->err_mask. This function takes
1591 * Kernel thread context (may sleep).
1593 void ata_eh_analyze_ncq_error(struct ata_link
*link
)
1595 struct ata_port
*ap
= link
->ap
;
1596 struct ata_eh_context
*ehc
= &link
->eh_context
;
1597 struct ata_device
*dev
= link
->device
;
1598 struct ata_queued_cmd
*qc
;
1599 struct ata_taskfile tf
;
1602 /* if frozen, we can't do much */
1603 if (ap
->pflags
& ATA_PFLAG_FROZEN
)
1606 /* is it NCQ device error? */
1607 if (!link
->sactive
|| !(ehc
->i
.err_mask
& AC_ERR_DEV
))
1610 /* has LLDD analyzed already? */
1611 for (tag
= 0; tag
< ATA_MAX_QUEUE
; tag
++) {
1612 qc
= __ata_qc_from_tag(ap
, tag
);
1614 if (!(qc
->flags
& ATA_QCFLAG_FAILED
))
1621 /* okay, this error is ours */
1622 memset(&tf
, 0, sizeof(tf
));
1623 rc
= ata_eh_read_log_10h(dev
, &tag
, &tf
);
1625 ata_link_printk(link
, KERN_ERR
, "failed to read log page 10h "
1626 "(errno=%d)\n", rc
);
1630 if (!(link
->sactive
& (1 << tag
))) {
1631 ata_link_printk(link
, KERN_ERR
, "log page 10h reported "
1632 "inactive tag %d\n", tag
);
1636 /* we've got the perpetrator, condemn it */
1637 qc
= __ata_qc_from_tag(ap
, tag
);
1638 memcpy(&qc
->result_tf
, &tf
, sizeof(tf
));
1639 qc
->result_tf
.flags
= ATA_TFLAG_ISADDR
| ATA_TFLAG_LBA
| ATA_TFLAG_LBA48
;
1640 qc
->err_mask
|= AC_ERR_DEV
| AC_ERR_NCQ
;
1641 ehc
->i
.err_mask
&= ~AC_ERR_DEV
;
1645 * ata_eh_analyze_tf - analyze taskfile of a failed qc
1646 * @qc: qc to analyze
1647 * @tf: Taskfile registers to analyze
1649 * Analyze taskfile of @qc and further determine cause of
1650 * failure. This function also requests ATAPI sense data if
1654 * Kernel thread context (may sleep).
1657 * Determined recovery action
1659 static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd
*qc
,
1660 const struct ata_taskfile
*tf
)
1662 unsigned int tmp
, action
= 0;
1663 u8 stat
= tf
->command
, err
= tf
->feature
;
1665 if ((stat
& (ATA_BUSY
| ATA_DRQ
| ATA_DRDY
)) != ATA_DRDY
) {
1666 qc
->err_mask
|= AC_ERR_HSM
;
1667 return ATA_EH_RESET
;
1670 if (stat
& (ATA_ERR
| ATA_DF
))
1671 qc
->err_mask
|= AC_ERR_DEV
;
1675 switch (qc
->dev
->class) {
1678 qc
->err_mask
|= AC_ERR_ATA_BUS
;
1680 qc
->err_mask
|= AC_ERR_MEDIA
;
1682 qc
->err_mask
|= AC_ERR_INVALID
;
1686 if (!(qc
->ap
->pflags
& ATA_PFLAG_FROZEN
)) {
1687 tmp
= atapi_eh_request_sense(qc
->dev
,
1688 qc
->scsicmd
->sense_buffer
,
1689 qc
->result_tf
.feature
>> 4);
1691 /* ATA_QCFLAG_SENSE_VALID is used to
1692 * tell atapi_qc_complete() that sense
1693 * data is already valid.
1695 * TODO: interpret sense data and set
1696 * appropriate err_mask.
1698 qc
->flags
|= ATA_QCFLAG_SENSE_VALID
;
1700 qc
->err_mask
|= tmp
;
1704 if (qc
->err_mask
& (AC_ERR_HSM
| AC_ERR_TIMEOUT
| AC_ERR_ATA_BUS
))
1705 action
|= ATA_EH_RESET
;
1710 static int ata_eh_categorize_error(unsigned int eflags
, unsigned int err_mask
,
1715 if (!(eflags
& ATA_EFLAG_DUBIOUS_XFER
))
1719 base
= ATA_ECAT_DUBIOUS_NONE
;
1721 if (err_mask
& AC_ERR_ATA_BUS
)
1722 return base
+ ATA_ECAT_ATA_BUS
;
1724 if (err_mask
& AC_ERR_TIMEOUT
)
1725 return base
+ ATA_ECAT_TOUT_HSM
;
1727 if (eflags
& ATA_EFLAG_IS_IO
) {
1728 if (err_mask
& AC_ERR_HSM
)
1729 return base
+ ATA_ECAT_TOUT_HSM
;
1731 (AC_ERR_DEV
|AC_ERR_MEDIA
|AC_ERR_INVALID
)) == AC_ERR_DEV
)
1732 return base
+ ATA_ECAT_UNK_DEV
;
1738 struct speed_down_verdict_arg
{
1741 int nr_errors
[ATA_ECAT_NR
];
1744 static int speed_down_verdict_cb(struct ata_ering_entry
*ent
, void *void_arg
)
1746 struct speed_down_verdict_arg
*arg
= void_arg
;
1749 if (ent
->timestamp
< arg
->since
)
1752 cat
= ata_eh_categorize_error(ent
->eflags
, ent
->err_mask
,
1754 arg
->nr_errors
[cat
]++;
1760 * ata_eh_speed_down_verdict - Determine speed down verdict
1761 * @dev: Device of interest
1763 * This function examines error ring of @dev and determines
1764 * whether NCQ needs to be turned off, transfer speed should be
1765 * stepped down, or falling back to PIO is necessary.
1767 * ECAT_ATA_BUS : ATA_BUS error for any command
1769 * ECAT_TOUT_HSM : TIMEOUT for any command or HSM violation for
1772 * ECAT_UNK_DEV : Unknown DEV error for IO commands
1774 * ECAT_DUBIOUS_* : Identical to above three but occurred while
1775 * data transfer hasn't been verified.
1779 * NCQ_OFF : Turn off NCQ.
1781 * SPEED_DOWN : Speed down transfer speed but don't fall back
1784 * FALLBACK_TO_PIO : Fall back to PIO.
1786 * Even if multiple verdicts are returned, only one action is
1787 * taken per error. An action triggered by non-DUBIOUS errors
1788 * clears ering, while one triggered by DUBIOUS_* errors doesn't.
1789 * This is to expedite speed down decisions right after device is
1790 * initially configured.
1792 * The followings are speed down rules. #1 and #2 deal with
1795 * 1. If more than one DUBIOUS_ATA_BUS or DUBIOUS_TOUT_HSM errors
1796 * occurred during last 5 mins, SPEED_DOWN and FALLBACK_TO_PIO.
1798 * 2. If more than one DUBIOUS_TOUT_HSM or DUBIOUS_UNK_DEV errors
1799 * occurred during last 5 mins, NCQ_OFF.
1801 * 3. If more than 8 ATA_BUS, TOUT_HSM or UNK_DEV errors
1802 * ocurred during last 5 mins, FALLBACK_TO_PIO
1804 * 4. If more than 3 TOUT_HSM or UNK_DEV errors occurred
1805 * during last 10 mins, NCQ_OFF.
1807 * 5. If more than 3 ATA_BUS or TOUT_HSM errors, or more than 6
1808 * UNK_DEV errors occurred during last 10 mins, SPEED_DOWN.
1811 * Inherited from caller.
1814 * OR of ATA_EH_SPDN_* flags.
1816 static unsigned int ata_eh_speed_down_verdict(struct ata_device
*dev
)
1818 const u64 j5mins
= 5LLU * 60 * HZ
, j10mins
= 10LLU * 60 * HZ
;
1819 u64 j64
= get_jiffies_64();
1820 struct speed_down_verdict_arg arg
;
1821 unsigned int verdict
= 0;
1823 /* scan past 5 mins of error history */
1824 memset(&arg
, 0, sizeof(arg
));
1825 arg
.since
= j64
- min(j64
, j5mins
);
1826 ata_ering_map(&dev
->ering
, speed_down_verdict_cb
, &arg
);
1828 if (arg
.nr_errors
[ATA_ECAT_DUBIOUS_ATA_BUS
] +
1829 arg
.nr_errors
[ATA_ECAT_DUBIOUS_TOUT_HSM
] > 1)
1830 verdict
|= ATA_EH_SPDN_SPEED_DOWN
|
1831 ATA_EH_SPDN_FALLBACK_TO_PIO
| ATA_EH_SPDN_KEEP_ERRORS
;
1833 if (arg
.nr_errors
[ATA_ECAT_DUBIOUS_TOUT_HSM
] +
1834 arg
.nr_errors
[ATA_ECAT_DUBIOUS_UNK_DEV
] > 1)
1835 verdict
|= ATA_EH_SPDN_NCQ_OFF
| ATA_EH_SPDN_KEEP_ERRORS
;
1837 if (arg
.nr_errors
[ATA_ECAT_ATA_BUS
] +
1838 arg
.nr_errors
[ATA_ECAT_TOUT_HSM
] +
1839 arg
.nr_errors
[ATA_ECAT_UNK_DEV
] > 6)
1840 verdict
|= ATA_EH_SPDN_FALLBACK_TO_PIO
;
1842 /* scan past 10 mins of error history */
1843 memset(&arg
, 0, sizeof(arg
));
1844 arg
.since
= j64
- min(j64
, j10mins
);
1845 ata_ering_map(&dev
->ering
, speed_down_verdict_cb
, &arg
);
1847 if (arg
.nr_errors
[ATA_ECAT_TOUT_HSM
] +
1848 arg
.nr_errors
[ATA_ECAT_UNK_DEV
] > 3)
1849 verdict
|= ATA_EH_SPDN_NCQ_OFF
;
1851 if (arg
.nr_errors
[ATA_ECAT_ATA_BUS
] +
1852 arg
.nr_errors
[ATA_ECAT_TOUT_HSM
] > 3 ||
1853 arg
.nr_errors
[ATA_ECAT_UNK_DEV
] > 6)
1854 verdict
|= ATA_EH_SPDN_SPEED_DOWN
;
1860 * ata_eh_speed_down - record error and speed down if necessary
1861 * @dev: Failed device
1862 * @eflags: mask of ATA_EFLAG_* flags
1863 * @err_mask: err_mask of the error
1865 * Record error and examine error history to determine whether
1866 * adjusting transmission speed is necessary. It also sets
1867 * transmission limits appropriately if such adjustment is
1871 * Kernel thread context (may sleep).
1874 * Determined recovery action.
1876 static unsigned int ata_eh_speed_down(struct ata_device
*dev
,
1877 unsigned int eflags
, unsigned int err_mask
)
1879 struct ata_link
*link
= ata_dev_phys_link(dev
);
1881 unsigned int verdict
;
1882 unsigned int action
= 0;
1884 /* don't bother if Cat-0 error */
1885 if (ata_eh_categorize_error(eflags
, err_mask
, &xfer_ok
) == 0)
1888 /* record error and determine whether speed down is necessary */
1889 ata_ering_record(&dev
->ering
, eflags
, err_mask
);
1890 verdict
= ata_eh_speed_down_verdict(dev
);
1893 if ((verdict
& ATA_EH_SPDN_NCQ_OFF
) &&
1894 (dev
->flags
& (ATA_DFLAG_PIO
| ATA_DFLAG_NCQ
|
1895 ATA_DFLAG_NCQ_OFF
)) == ATA_DFLAG_NCQ
) {
1896 dev
->flags
|= ATA_DFLAG_NCQ_OFF
;
1897 ata_dev_printk(dev
, KERN_WARNING
,
1898 "NCQ disabled due to excessive errors\n");
1903 if (verdict
& ATA_EH_SPDN_SPEED_DOWN
) {
1904 /* speed down SATA link speed if possible */
1905 if (sata_down_spd_limit(link
, 0) == 0) {
1906 action
|= ATA_EH_RESET
;
1910 /* lower transfer mode */
1911 if (dev
->spdn_cnt
< 2) {
1912 static const int dma_dnxfer_sel
[] =
1913 { ATA_DNXFER_DMA
, ATA_DNXFER_40C
};
1914 static const int pio_dnxfer_sel
[] =
1915 { ATA_DNXFER_PIO
, ATA_DNXFER_FORCE_PIO0
};
1918 if (dev
->xfer_shift
!= ATA_SHIFT_PIO
)
1919 sel
= dma_dnxfer_sel
[dev
->spdn_cnt
];
1921 sel
= pio_dnxfer_sel
[dev
->spdn_cnt
];
1925 if (ata_down_xfermask_limit(dev
, sel
) == 0) {
1926 action
|= ATA_EH_RESET
;
1932 /* Fall back to PIO? Slowing down to PIO is meaningless for
1933 * SATA ATA devices. Consider it only for PATA and SATAPI.
1935 if ((verdict
& ATA_EH_SPDN_FALLBACK_TO_PIO
) && (dev
->spdn_cnt
>= 2) &&
1936 (link
->ap
->cbl
!= ATA_CBL_SATA
|| dev
->class == ATA_DEV_ATAPI
) &&
1937 (dev
->xfer_shift
!= ATA_SHIFT_PIO
)) {
1938 if (ata_down_xfermask_limit(dev
, ATA_DNXFER_FORCE_PIO
) == 0) {
1940 action
|= ATA_EH_RESET
;
1947 /* device has been slowed down, blow error history */
1948 if (!(verdict
& ATA_EH_SPDN_KEEP_ERRORS
))
1949 ata_ering_clear(&dev
->ering
);
1954 * ata_eh_link_autopsy - analyze error and determine recovery action
1955 * @link: host link to perform autopsy on
1957 * Analyze why @link failed and determine which recovery actions
1958 * are needed. This function also sets more detailed AC_ERR_*
1959 * values and fills sense data for ATAPI CHECK SENSE.
1962 * Kernel thread context (may sleep).
1964 static void ata_eh_link_autopsy(struct ata_link
*link
)
1966 struct ata_port
*ap
= link
->ap
;
1967 struct ata_eh_context
*ehc
= &link
->eh_context
;
1968 struct ata_device
*dev
;
1969 unsigned int all_err_mask
= 0, eflags
= 0;
1976 if (ehc
->i
.flags
& ATA_EHI_NO_AUTOPSY
)
1979 /* obtain and analyze SError */
1980 rc
= sata_scr_read(link
, SCR_ERROR
, &serror
);
1982 ehc
->i
.serror
|= serror
;
1983 ata_eh_analyze_serror(link
);
1984 } else if (rc
!= -EOPNOTSUPP
) {
1985 /* SError read failed, force reset and probing */
1986 ehc
->i
.probe_mask
|= ATA_ALL_DEVICES
;
1987 ehc
->i
.action
|= ATA_EH_RESET
;
1988 ehc
->i
.err_mask
|= AC_ERR_OTHER
;
1991 /* analyze NCQ failure */
1992 ata_eh_analyze_ncq_error(link
);
1994 /* any real error trumps AC_ERR_OTHER */
1995 if (ehc
->i
.err_mask
& ~AC_ERR_OTHER
)
1996 ehc
->i
.err_mask
&= ~AC_ERR_OTHER
;
1998 all_err_mask
|= ehc
->i
.err_mask
;
2000 for (tag
= 0; tag
< ATA_MAX_QUEUE
; tag
++) {
2001 struct ata_queued_cmd
*qc
= __ata_qc_from_tag(ap
, tag
);
2003 if (!(qc
->flags
& ATA_QCFLAG_FAILED
) ||
2004 ata_dev_phys_link(qc
->dev
) != link
)
2007 /* inherit upper level err_mask */
2008 qc
->err_mask
|= ehc
->i
.err_mask
;
2011 ehc
->i
.action
|= ata_eh_analyze_tf(qc
, &qc
->result_tf
);
2013 /* DEV errors are probably spurious in case of ATA_BUS error */
2014 if (qc
->err_mask
& AC_ERR_ATA_BUS
)
2015 qc
->err_mask
&= ~(AC_ERR_DEV
| AC_ERR_MEDIA
|
2018 /* any real error trumps unknown error */
2019 if (qc
->err_mask
& ~AC_ERR_OTHER
)
2020 qc
->err_mask
&= ~AC_ERR_OTHER
;
2022 /* SENSE_VALID trumps dev/unknown error and revalidation */
2023 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
)
2024 qc
->err_mask
&= ~(AC_ERR_DEV
| AC_ERR_OTHER
);
2026 /* determine whether the command is worth retrying */
2027 if (qc
->flags
& ATA_QCFLAG_IO
||
2028 (!(qc
->err_mask
& AC_ERR_INVALID
) &&
2029 qc
->err_mask
!= AC_ERR_DEV
))
2030 qc
->flags
|= ATA_QCFLAG_RETRY
;
2032 /* accumulate error info */
2033 ehc
->i
.dev
= qc
->dev
;
2034 all_err_mask
|= qc
->err_mask
;
2035 if (qc
->flags
& ATA_QCFLAG_IO
)
2036 eflags
|= ATA_EFLAG_IS_IO
;
2039 /* enforce default EH actions */
2040 if (ap
->pflags
& ATA_PFLAG_FROZEN
||
2041 all_err_mask
& (AC_ERR_HSM
| AC_ERR_TIMEOUT
))
2042 ehc
->i
.action
|= ATA_EH_RESET
;
2043 else if (((eflags
& ATA_EFLAG_IS_IO
) && all_err_mask
) ||
2044 (!(eflags
& ATA_EFLAG_IS_IO
) && (all_err_mask
& ~AC_ERR_DEV
)))
2045 ehc
->i
.action
|= ATA_EH_REVALIDATE
;
2047 /* If we have offending qcs and the associated failed device,
2048 * perform per-dev EH action only on the offending device.
2051 ehc
->i
.dev_action
[ehc
->i
.dev
->devno
] |=
2052 ehc
->i
.action
& ATA_EH_PERDEV_MASK
;
2053 ehc
->i
.action
&= ~ATA_EH_PERDEV_MASK
;
2056 /* propagate timeout to host link */
2057 if ((all_err_mask
& AC_ERR_TIMEOUT
) && !ata_is_host_link(link
))
2058 ap
->link
.eh_context
.i
.err_mask
|= AC_ERR_TIMEOUT
;
2060 /* record error and consider speeding down */
2062 if (!dev
&& ((ata_link_max_devices(link
) == 1 &&
2063 ata_dev_enabled(link
->device
))))
2067 if (dev
->flags
& ATA_DFLAG_DUBIOUS_XFER
)
2068 eflags
|= ATA_EFLAG_DUBIOUS_XFER
;
2069 ehc
->i
.action
|= ata_eh_speed_down(dev
, eflags
, all_err_mask
);
2076 * ata_eh_autopsy - analyze error and determine recovery action
2077 * @ap: host port to perform autopsy on
2079 * Analyze all links of @ap and determine why they failed and
2080 * which recovery actions are needed.
2083 * Kernel thread context (may sleep).
2085 void ata_eh_autopsy(struct ata_port
*ap
)
2087 struct ata_link
*link
;
2089 ata_for_each_link(link
, ap
, EDGE
)
2090 ata_eh_link_autopsy(link
);
2092 /* Handle the frigging slave link. Autopsy is done similarly
2093 * but actions and flags are transferred over to the master
2094 * link and handled from there.
2096 if (ap
->slave_link
) {
2097 struct ata_eh_context
*mehc
= &ap
->link
.eh_context
;
2098 struct ata_eh_context
*sehc
= &ap
->slave_link
->eh_context
;
2100 /* transfer control flags from master to slave */
2101 sehc
->i
.flags
|= mehc
->i
.flags
& ATA_EHI_TO_SLAVE_MASK
;
2103 /* perform autopsy on the slave link */
2104 ata_eh_link_autopsy(ap
->slave_link
);
2106 /* transfer actions from slave to master and clear slave */
2107 ata_eh_about_to_do(ap
->slave_link
, NULL
, ATA_EH_ALL_ACTIONS
);
2108 mehc
->i
.action
|= sehc
->i
.action
;
2109 mehc
->i
.dev_action
[1] |= sehc
->i
.dev_action
[1];
2110 mehc
->i
.flags
|= sehc
->i
.flags
;
2111 ata_eh_done(ap
->slave_link
, NULL
, ATA_EH_ALL_ACTIONS
);
2114 /* Autopsy of fanout ports can affect host link autopsy.
2115 * Perform host link autopsy last.
2117 if (sata_pmp_attached(ap
))
2118 ata_eh_link_autopsy(&ap
->link
);
2122 * ata_get_cmd_descript - get description for ATA command
2123 * @command: ATA command code to get description for
2125 * Return a textual description of the given command, or NULL if the
2126 * command is not known.
2131 const char *ata_get_cmd_descript(u8 command
)
2133 #ifdef CONFIG_ATA_VERBOSE_ERROR
2139 { ATA_CMD_DEV_RESET
, "DEVICE RESET" },
2140 { ATA_CMD_CHK_POWER
, "CHECK POWER MODE" },
2141 { ATA_CMD_STANDBY
, "STANDBY" },
2142 { ATA_CMD_IDLE
, "IDLE" },
2143 { ATA_CMD_EDD
, "EXECUTE DEVICE DIAGNOSTIC" },
2144 { ATA_CMD_DOWNLOAD_MICRO
, "DOWNLOAD MICROCODE" },
2145 { ATA_CMD_NOP
, "NOP" },
2146 { ATA_CMD_FLUSH
, "FLUSH CACHE" },
2147 { ATA_CMD_FLUSH_EXT
, "FLUSH CACHE EXT" },
2148 { ATA_CMD_ID_ATA
, "IDENTIFY DEVICE" },
2149 { ATA_CMD_ID_ATAPI
, "IDENTIFY PACKET DEVICE" },
2150 { ATA_CMD_SERVICE
, "SERVICE" },
2151 { ATA_CMD_READ
, "READ DMA" },
2152 { ATA_CMD_READ_EXT
, "READ DMA EXT" },
2153 { ATA_CMD_READ_QUEUED
, "READ DMA QUEUED" },
2154 { ATA_CMD_READ_STREAM_EXT
, "READ STREAM EXT" },
2155 { ATA_CMD_READ_STREAM_DMA_EXT
, "READ STREAM DMA EXT" },
2156 { ATA_CMD_WRITE
, "WRITE DMA" },
2157 { ATA_CMD_WRITE_EXT
, "WRITE DMA EXT" },
2158 { ATA_CMD_WRITE_QUEUED
, "WRITE DMA QUEUED EXT" },
2159 { ATA_CMD_WRITE_STREAM_EXT
, "WRITE STREAM EXT" },
2160 { ATA_CMD_WRITE_STREAM_DMA_EXT
, "WRITE STREAM DMA EXT" },
2161 { ATA_CMD_WRITE_FUA_EXT
, "WRITE DMA FUA EXT" },
2162 { ATA_CMD_WRITE_QUEUED_FUA_EXT
, "WRITE DMA QUEUED FUA EXT" },
2163 { ATA_CMD_FPDMA_READ
, "READ FPDMA QUEUED" },
2164 { ATA_CMD_FPDMA_WRITE
, "WRITE FPDMA QUEUED" },
2165 { ATA_CMD_PIO_READ
, "READ SECTOR(S)" },
2166 { ATA_CMD_PIO_READ_EXT
, "READ SECTOR(S) EXT" },
2167 { ATA_CMD_PIO_WRITE
, "WRITE SECTOR(S)" },
2168 { ATA_CMD_PIO_WRITE_EXT
, "WRITE SECTOR(S) EXT" },
2169 { ATA_CMD_READ_MULTI
, "READ MULTIPLE" },
2170 { ATA_CMD_READ_MULTI_EXT
, "READ MULTIPLE EXT" },
2171 { ATA_CMD_WRITE_MULTI
, "WRITE MULTIPLE" },
2172 { ATA_CMD_WRITE_MULTI_EXT
, "WRITE MULTIPLE EXT" },
2173 { ATA_CMD_WRITE_MULTI_FUA_EXT
, "WRITE MULTIPLE FUA EXT" },
2174 { ATA_CMD_SET_FEATURES
, "SET FEATURES" },
2175 { ATA_CMD_SET_MULTI
, "SET MULTIPLE MODE" },
2176 { ATA_CMD_VERIFY
, "READ VERIFY SECTOR(S)" },
2177 { ATA_CMD_VERIFY_EXT
, "READ VERIFY SECTOR(S) EXT" },
2178 { ATA_CMD_WRITE_UNCORR_EXT
, "WRITE UNCORRECTABLE EXT" },
2179 { ATA_CMD_STANDBYNOW1
, "STANDBY IMMEDIATE" },
2180 { ATA_CMD_IDLEIMMEDIATE
, "IDLE IMMEDIATE" },
2181 { ATA_CMD_SLEEP
, "SLEEP" },
2182 { ATA_CMD_INIT_DEV_PARAMS
, "INITIALIZE DEVICE PARAMETERS" },
2183 { ATA_CMD_READ_NATIVE_MAX
, "READ NATIVE MAX ADDRESS" },
2184 { ATA_CMD_READ_NATIVE_MAX_EXT
, "READ NATIVE MAX ADDRESS EXT" },
2185 { ATA_CMD_SET_MAX
, "SET MAX ADDRESS" },
2186 { ATA_CMD_SET_MAX_EXT
, "SET MAX ADDRESS EXT" },
2187 { ATA_CMD_READ_LOG_EXT
, "READ LOG EXT" },
2188 { ATA_CMD_WRITE_LOG_EXT
, "WRITE LOG EXT" },
2189 { ATA_CMD_READ_LOG_DMA_EXT
, "READ LOG DMA EXT" },
2190 { ATA_CMD_WRITE_LOG_DMA_EXT
, "WRITE LOG DMA EXT" },
2191 { ATA_CMD_TRUSTED_RCV
, "TRUSTED RECEIVE" },
2192 { ATA_CMD_TRUSTED_RCV_DMA
, "TRUSTED RECEIVE DMA" },
2193 { ATA_CMD_TRUSTED_SND
, "TRUSTED SEND" },
2194 { ATA_CMD_TRUSTED_SND_DMA
, "TRUSTED SEND DMA" },
2195 { ATA_CMD_PMP_READ
, "READ BUFFER" },
2196 { ATA_CMD_PMP_WRITE
, "WRITE BUFFER" },
2197 { ATA_CMD_CONF_OVERLAY
, "DEVICE CONFIGURATION OVERLAY" },
2198 { ATA_CMD_SEC_SET_PASS
, "SECURITY SET PASSWORD" },
2199 { ATA_CMD_SEC_UNLOCK
, "SECURITY UNLOCK" },
2200 { ATA_CMD_SEC_ERASE_PREP
, "SECURITY ERASE PREPARE" },
2201 { ATA_CMD_SEC_ERASE_UNIT
, "SECURITY ERASE UNIT" },
2202 { ATA_CMD_SEC_FREEZE_LOCK
, "SECURITY FREEZE LOCK" },
2203 { ATA_CMD_SEC_DISABLE_PASS
, "SECURITY DISABLE PASSWORD" },
2204 { ATA_CMD_CONFIG_STREAM
, "CONFIGURE STREAM" },
2205 { ATA_CMD_SMART
, "SMART" },
2206 { ATA_CMD_MEDIA_LOCK
, "DOOR LOCK" },
2207 { ATA_CMD_MEDIA_UNLOCK
, "DOOR UNLOCK" },
2208 { ATA_CMD_CHK_MED_CRD_TYP
, "CHECK MEDIA CARD TYPE" },
2209 { ATA_CMD_CFA_REQ_EXT_ERR
, "CFA REQUEST EXTENDED ERROR" },
2210 { ATA_CMD_CFA_WRITE_NE
, "CFA WRITE SECTORS WITHOUT ERASE" },
2211 { ATA_CMD_CFA_TRANS_SECT
, "CFA TRANSLATE SECTOR" },
2212 { ATA_CMD_CFA_ERASE
, "CFA ERASE SECTORS" },
2213 { ATA_CMD_CFA_WRITE_MULT_NE
, "CFA WRITE MULTIPLE WITHOUT ERASE" },
2214 { ATA_CMD_READ_LONG
, "READ LONG (with retries)" },
2215 { ATA_CMD_READ_LONG_ONCE
, "READ LONG (without retries)" },
2216 { ATA_CMD_WRITE_LONG
, "WRITE LONG (with retries)" },
2217 { ATA_CMD_WRITE_LONG_ONCE
, "WRITE LONG (without retries)" },
2218 { ATA_CMD_RESTORE
, "RECALIBRATE" },
2219 { 0, NULL
} /* terminate list */
2223 for (i
= 0; cmd_descr
[i
].text
; i
++)
2224 if (cmd_descr
[i
].command
== command
)
2225 return cmd_descr
[i
].text
;
2232 * ata_eh_link_report - report error handling to user
2233 * @link: ATA link EH is going on
2235 * Report EH to user.
2240 static void ata_eh_link_report(struct ata_link
*link
)
2242 struct ata_port
*ap
= link
->ap
;
2243 struct ata_eh_context
*ehc
= &link
->eh_context
;
2244 const char *frozen
, *desc
;
2246 int tag
, nr_failed
= 0;
2248 if (ehc
->i
.flags
& ATA_EHI_QUIET
)
2252 if (ehc
->i
.desc
[0] != '\0')
2255 for (tag
= 0; tag
< ATA_MAX_QUEUE
; tag
++) {
2256 struct ata_queued_cmd
*qc
= __ata_qc_from_tag(ap
, tag
);
2258 if (!(qc
->flags
& ATA_QCFLAG_FAILED
) ||
2259 ata_dev_phys_link(qc
->dev
) != link
||
2260 ((qc
->flags
& ATA_QCFLAG_QUIET
) &&
2261 qc
->err_mask
== AC_ERR_DEV
))
2263 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
&& !qc
->err_mask
)
2269 if (!nr_failed
&& !ehc
->i
.err_mask
)
2273 if (ap
->pflags
& ATA_PFLAG_FROZEN
)
2276 memset(tries_buf
, 0, sizeof(tries_buf
));
2277 if (ap
->eh_tries
< ATA_EH_MAX_TRIES
)
2278 snprintf(tries_buf
, sizeof(tries_buf
) - 1, " t%d",
2282 ata_dev_printk(ehc
->i
.dev
, KERN_ERR
, "exception Emask 0x%x "
2283 "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2284 ehc
->i
.err_mask
, link
->sactive
, ehc
->i
.serror
,
2285 ehc
->i
.action
, frozen
, tries_buf
);
2287 ata_dev_printk(ehc
->i
.dev
, KERN_ERR
, "%s\n", desc
);
2289 ata_link_printk(link
, KERN_ERR
, "exception Emask 0x%x "
2290 "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2291 ehc
->i
.err_mask
, link
->sactive
, ehc
->i
.serror
,
2292 ehc
->i
.action
, frozen
, tries_buf
);
2294 ata_link_printk(link
, KERN_ERR
, "%s\n", desc
);
2297 #ifdef CONFIG_ATA_VERBOSE_ERROR
2299 ata_link_printk(link
, KERN_ERR
,
2300 "SError: { %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s}\n",
2301 ehc
->i
.serror
& SERR_DATA_RECOVERED
? "RecovData " : "",
2302 ehc
->i
.serror
& SERR_COMM_RECOVERED
? "RecovComm " : "",
2303 ehc
->i
.serror
& SERR_DATA
? "UnrecovData " : "",
2304 ehc
->i
.serror
& SERR_PERSISTENT
? "Persist " : "",
2305 ehc
->i
.serror
& SERR_PROTOCOL
? "Proto " : "",
2306 ehc
->i
.serror
& SERR_INTERNAL
? "HostInt " : "",
2307 ehc
->i
.serror
& SERR_PHYRDY_CHG
? "PHYRdyChg " : "",
2308 ehc
->i
.serror
& SERR_PHY_INT_ERR
? "PHYInt " : "",
2309 ehc
->i
.serror
& SERR_COMM_WAKE
? "CommWake " : "",
2310 ehc
->i
.serror
& SERR_10B_8B_ERR
? "10B8B " : "",
2311 ehc
->i
.serror
& SERR_DISPARITY
? "Dispar " : "",
2312 ehc
->i
.serror
& SERR_CRC
? "BadCRC " : "",
2313 ehc
->i
.serror
& SERR_HANDSHAKE
? "Handshk " : "",
2314 ehc
->i
.serror
& SERR_LINK_SEQ_ERR
? "LinkSeq " : "",
2315 ehc
->i
.serror
& SERR_TRANS_ST_ERROR
? "TrStaTrns " : "",
2316 ehc
->i
.serror
& SERR_UNRECOG_FIS
? "UnrecFIS " : "",
2317 ehc
->i
.serror
& SERR_DEV_XCHG
? "DevExch " : "");
2320 for (tag
= 0; tag
< ATA_MAX_QUEUE
; tag
++) {
2321 struct ata_queued_cmd
*qc
= __ata_qc_from_tag(ap
, tag
);
2322 struct ata_taskfile
*cmd
= &qc
->tf
, *res
= &qc
->result_tf
;
2323 const u8
*cdb
= qc
->cdb
;
2324 char data_buf
[20] = "";
2325 char cdb_buf
[70] = "";
2327 if (!(qc
->flags
& ATA_QCFLAG_FAILED
) ||
2328 ata_dev_phys_link(qc
->dev
) != link
|| !qc
->err_mask
)
2331 if (qc
->dma_dir
!= DMA_NONE
) {
2332 static const char *dma_str
[] = {
2333 [DMA_BIDIRECTIONAL
] = "bidi",
2334 [DMA_TO_DEVICE
] = "out",
2335 [DMA_FROM_DEVICE
] = "in",
2337 static const char *prot_str
[] = {
2338 [ATA_PROT_PIO
] = "pio",
2339 [ATA_PROT_DMA
] = "dma",
2340 [ATA_PROT_NCQ
] = "ncq",
2341 [ATAPI_PROT_PIO
] = "pio",
2342 [ATAPI_PROT_DMA
] = "dma",
2345 snprintf(data_buf
, sizeof(data_buf
), " %s %u %s",
2346 prot_str
[qc
->tf
.protocol
], qc
->nbytes
,
2347 dma_str
[qc
->dma_dir
]);
2350 if (ata_is_atapi(qc
->tf
.protocol
)) {
2352 scsi_print_command(qc
->scsicmd
);
2354 snprintf(cdb_buf
, sizeof(cdb_buf
),
2355 "cdb %02x %02x %02x %02x %02x %02x %02x %02x "
2356 "%02x %02x %02x %02x %02x %02x %02x %02x\n ",
2357 cdb
[0], cdb
[1], cdb
[2], cdb
[3],
2358 cdb
[4], cdb
[5], cdb
[6], cdb
[7],
2359 cdb
[8], cdb
[9], cdb
[10], cdb
[11],
2360 cdb
[12], cdb
[13], cdb
[14], cdb
[15]);
2362 const char *descr
= ata_get_cmd_descript(cmd
->command
);
2364 ata_dev_printk(qc
->dev
, KERN_ERR
,
2365 "failed command: %s\n", descr
);
2368 ata_dev_printk(qc
->dev
, KERN_ERR
,
2369 "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
2371 "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
2372 "Emask 0x%x (%s)%s\n",
2373 cmd
->command
, cmd
->feature
, cmd
->nsect
,
2374 cmd
->lbal
, cmd
->lbam
, cmd
->lbah
,
2375 cmd
->hob_feature
, cmd
->hob_nsect
,
2376 cmd
->hob_lbal
, cmd
->hob_lbam
, cmd
->hob_lbah
,
2377 cmd
->device
, qc
->tag
, data_buf
, cdb_buf
,
2378 res
->command
, res
->feature
, res
->nsect
,
2379 res
->lbal
, res
->lbam
, res
->lbah
,
2380 res
->hob_feature
, res
->hob_nsect
,
2381 res
->hob_lbal
, res
->hob_lbam
, res
->hob_lbah
,
2382 res
->device
, qc
->err_mask
, ata_err_string(qc
->err_mask
),
2383 qc
->err_mask
& AC_ERR_NCQ
? " <F>" : "");
2385 #ifdef CONFIG_ATA_VERBOSE_ERROR
2386 if (res
->command
& (ATA_BUSY
| ATA_DRDY
| ATA_DF
| ATA_DRQ
|
2388 if (res
->command
& ATA_BUSY
)
2389 ata_dev_printk(qc
->dev
, KERN_ERR
,
2390 "status: { Busy }\n");
2392 ata_dev_printk(qc
->dev
, KERN_ERR
,
2393 "status: { %s%s%s%s}\n",
2394 res
->command
& ATA_DRDY
? "DRDY " : "",
2395 res
->command
& ATA_DF
? "DF " : "",
2396 res
->command
& ATA_DRQ
? "DRQ " : "",
2397 res
->command
& ATA_ERR
? "ERR " : "");
2400 if (cmd
->command
!= ATA_CMD_PACKET
&&
2401 (res
->feature
& (ATA_ICRC
| ATA_UNC
| ATA_IDNF
|
2403 ata_dev_printk(qc
->dev
, KERN_ERR
,
2404 "error: { %s%s%s%s}\n",
2405 res
->feature
& ATA_ICRC
? "ICRC " : "",
2406 res
->feature
& ATA_UNC
? "UNC " : "",
2407 res
->feature
& ATA_IDNF
? "IDNF " : "",
2408 res
->feature
& ATA_ABORTED
? "ABRT " : "");
2414 * ata_eh_report - report error handling to user
2415 * @ap: ATA port to report EH about
2417 * Report EH to user.
2422 void ata_eh_report(struct ata_port
*ap
)
2424 struct ata_link
*link
;
2426 ata_for_each_link(link
, ap
, HOST_FIRST
)
2427 ata_eh_link_report(link
);
2430 static int ata_do_reset(struct ata_link
*link
, ata_reset_fn_t reset
,
2431 unsigned int *classes
, unsigned long deadline
,
2434 struct ata_device
*dev
;
2437 ata_for_each_dev(dev
, link
, ALL
)
2438 classes
[dev
->devno
] = ATA_DEV_UNKNOWN
;
2440 return reset(link
, classes
, deadline
);
2443 static int ata_eh_followup_srst_needed(struct ata_link
*link
,
2444 int rc
, const unsigned int *classes
)
2446 if ((link
->flags
& ATA_LFLAG_NO_SRST
) || ata_link_offline(link
))
2450 if (sata_pmp_supported(link
->ap
) && ata_is_host_link(link
))
2455 int ata_eh_reset(struct ata_link
*link
, int classify
,
2456 ata_prereset_fn_t prereset
, ata_reset_fn_t softreset
,
2457 ata_reset_fn_t hardreset
, ata_postreset_fn_t postreset
)
2459 struct ata_port
*ap
= link
->ap
;
2460 struct ata_link
*slave
= ap
->slave_link
;
2461 struct ata_eh_context
*ehc
= &link
->eh_context
;
2462 struct ata_eh_context
*sehc
= slave
? &slave
->eh_context
: NULL
;
2463 unsigned int *classes
= ehc
->classes
;
2464 unsigned int lflags
= link
->flags
;
2465 int verbose
= !(ehc
->i
.flags
& ATA_EHI_QUIET
);
2466 int max_tries
= 0, try = 0;
2467 struct ata_link
*failed_link
;
2468 struct ata_device
*dev
;
2469 unsigned long deadline
, now
;
2470 ata_reset_fn_t reset
;
2471 unsigned long flags
;
2478 while (ata_eh_reset_timeouts
[max_tries
] != ULONG_MAX
)
2480 if (link
->flags
& ATA_LFLAG_NO_HRST
)
2482 if (link
->flags
& ATA_LFLAG_NO_SRST
)
2485 /* make sure each reset attemp is at least COOL_DOWN apart */
2486 if (ehc
->i
.flags
& ATA_EHI_DID_RESET
) {
2488 WARN_ON(time_after(ehc
->last_reset
, now
));
2489 deadline
= ata_deadline(ehc
->last_reset
,
2490 ATA_EH_RESET_COOL_DOWN
);
2491 if (time_before(now
, deadline
))
2492 schedule_timeout_uninterruptible(deadline
- now
);
2495 spin_lock_irqsave(ap
->lock
, flags
);
2496 ap
->pflags
|= ATA_PFLAG_RESETTING
;
2497 spin_unlock_irqrestore(ap
->lock
, flags
);
2499 ata_eh_about_to_do(link
, NULL
, ATA_EH_RESET
);
2501 ata_for_each_dev(dev
, link
, ALL
) {
2502 /* If we issue an SRST then an ATA drive (not ATAPI)
2503 * may change configuration and be in PIO0 timing. If
2504 * we do a hard reset (or are coming from power on)
2505 * this is true for ATA or ATAPI. Until we've set a
2506 * suitable controller mode we should not touch the
2507 * bus as we may be talking too fast.
2509 dev
->pio_mode
= XFER_PIO_0
;
2511 /* If the controller has a pio mode setup function
2512 * then use it to set the chipset to rights. Don't
2513 * touch the DMA setup as that will be dealt with when
2514 * configuring devices.
2516 if (ap
->ops
->set_piomode
)
2517 ap
->ops
->set_piomode(ap
, dev
);
2520 /* prefer hardreset */
2522 ehc
->i
.action
&= ~ATA_EH_RESET
;
2525 ehc
->i
.action
|= ATA_EH_HARDRESET
;
2526 } else if (softreset
) {
2528 ehc
->i
.action
|= ATA_EH_SOFTRESET
;
2532 unsigned long deadline
= ata_deadline(jiffies
,
2533 ATA_EH_PRERESET_TIMEOUT
);
2536 sehc
->i
.action
&= ~ATA_EH_RESET
;
2537 sehc
->i
.action
|= ehc
->i
.action
;
2540 rc
= prereset(link
, deadline
);
2542 /* If present, do prereset on slave link too. Reset
2543 * is skipped iff both master and slave links report
2544 * -ENOENT or clear ATA_EH_RESET.
2546 if (slave
&& (rc
== 0 || rc
== -ENOENT
)) {
2549 tmp
= prereset(slave
, deadline
);
2553 ehc
->i
.action
|= sehc
->i
.action
;
2557 if (rc
== -ENOENT
) {
2558 ata_link_printk(link
, KERN_DEBUG
,
2559 "port disabled. ignoring.\n");
2560 ehc
->i
.action
&= ~ATA_EH_RESET
;
2562 ata_for_each_dev(dev
, link
, ALL
)
2563 classes
[dev
->devno
] = ATA_DEV_NONE
;
2567 ata_link_printk(link
, KERN_ERR
,
2568 "prereset failed (errno=%d)\n", rc
);
2572 /* prereset() might have cleared ATA_EH_RESET. If so,
2573 * bang classes, thaw and return.
2575 if (reset
&& !(ehc
->i
.action
& ATA_EH_RESET
)) {
2576 ata_for_each_dev(dev
, link
, ALL
)
2577 classes
[dev
->devno
] = ATA_DEV_NONE
;
2578 if ((ap
->pflags
& ATA_PFLAG_FROZEN
) &&
2579 ata_is_host_link(link
))
2580 ata_eh_thaw_port(ap
);
2590 if (ata_is_host_link(link
))
2591 ata_eh_freeze_port(ap
);
2593 deadline
= ata_deadline(jiffies
, ata_eh_reset_timeouts
[try++]);
2597 ata_link_printk(link
, KERN_INFO
, "%s resetting link\n",
2598 reset
== softreset
? "soft" : "hard");
2600 /* mark that this EH session started with reset */
2601 ehc
->last_reset
= jiffies
;
2602 if (reset
== hardreset
)
2603 ehc
->i
.flags
|= ATA_EHI_DID_HARDRESET
;
2605 ehc
->i
.flags
|= ATA_EHI_DID_SOFTRESET
;
2607 rc
= ata_do_reset(link
, reset
, classes
, deadline
, true);
2608 if (rc
&& rc
!= -EAGAIN
) {
2613 /* hardreset slave link if existent */
2614 if (slave
&& reset
== hardreset
) {
2618 ata_link_printk(slave
, KERN_INFO
,
2619 "hard resetting link\n");
2621 ata_eh_about_to_do(slave
, NULL
, ATA_EH_RESET
);
2622 tmp
= ata_do_reset(slave
, reset
, classes
, deadline
,
2630 failed_link
= slave
;
2636 /* perform follow-up SRST if necessary */
2637 if (reset
== hardreset
&&
2638 ata_eh_followup_srst_needed(link
, rc
, classes
)) {
2642 ata_link_printk(link
, KERN_ERR
,
2643 "follow-up softreset required "
2644 "but no softreset avaliable\n");
2650 ata_eh_about_to_do(link
, NULL
, ATA_EH_RESET
);
2651 rc
= ata_do_reset(link
, reset
, classes
, deadline
, true);
2659 ata_link_printk(link
, KERN_INFO
, "no reset method "
2660 "available, skipping reset\n");
2661 if (!(lflags
& ATA_LFLAG_ASSUME_CLASS
))
2662 lflags
|= ATA_LFLAG_ASSUME_ATA
;
2666 * Post-reset processing
2668 ata_for_each_dev(dev
, link
, ALL
) {
2669 /* After the reset, the device state is PIO 0 and the
2670 * controller state is undefined. Reset also wakes up
2671 * drives from sleeping mode.
2673 dev
->pio_mode
= XFER_PIO_0
;
2674 dev
->flags
&= ~ATA_DFLAG_SLEEPING
;
2676 if (ata_phys_link_offline(ata_dev_phys_link(dev
)))
2679 /* apply class override */
2680 if (lflags
& ATA_LFLAG_ASSUME_ATA
)
2681 classes
[dev
->devno
] = ATA_DEV_ATA
;
2682 else if (lflags
& ATA_LFLAG_ASSUME_SEMB
)
2683 classes
[dev
->devno
] = ATA_DEV_SEMB_UNSUP
;
2686 /* record current link speed */
2687 if (sata_scr_read(link
, SCR_STATUS
, &sstatus
) == 0)
2688 link
->sata_spd
= (sstatus
>> 4) & 0xf;
2689 if (slave
&& sata_scr_read(slave
, SCR_STATUS
, &sstatus
) == 0)
2690 slave
->sata_spd
= (sstatus
>> 4) & 0xf;
2693 if (ata_is_host_link(link
))
2694 ata_eh_thaw_port(ap
);
2696 /* postreset() should clear hardware SError. Although SError
2697 * is cleared during link resume, clearing SError here is
2698 * necessary as some PHYs raise hotplug events after SRST.
2699 * This introduces race condition where hotplug occurs between
2700 * reset and here. This race is mediated by cross checking
2701 * link onlineness and classification result later.
2704 postreset(link
, classes
);
2706 postreset(slave
, classes
);
2710 * Some controllers can't be frozen very well and may set spurious
2711 * error conditions during reset. Clear accumulated error
2712 * information and re-thaw the port if frozen. As reset is the
2713 * final recovery action and we cross check link onlineness against
2714 * device classification later, no hotplug event is lost by this.
2716 spin_lock_irqsave(link
->ap
->lock
, flags
);
2717 memset(&link
->eh_info
, 0, sizeof(link
->eh_info
));
2719 memset(&slave
->eh_info
, 0, sizeof(link
->eh_info
));
2720 ap
->pflags
&= ~ATA_PFLAG_EH_PENDING
;
2721 spin_unlock_irqrestore(link
->ap
->lock
, flags
);
2723 if (ap
->pflags
& ATA_PFLAG_FROZEN
)
2724 ata_eh_thaw_port(ap
);
2727 * Make sure onlineness and classification result correspond.
2728 * Hotplug could have happened during reset and some
2729 * controllers fail to wait while a drive is spinning up after
2730 * being hotplugged causing misdetection. By cross checking
2731 * link on/offlineness and classification result, those
2732 * conditions can be reliably detected and retried.
2735 ata_for_each_dev(dev
, link
, ALL
) {
2736 if (ata_phys_link_online(ata_dev_phys_link(dev
))) {
2737 if (classes
[dev
->devno
] == ATA_DEV_UNKNOWN
) {
2738 ata_dev_printk(dev
, KERN_DEBUG
, "link online "
2739 "but device misclassifed\n");
2740 classes
[dev
->devno
] = ATA_DEV_NONE
;
2743 } else if (ata_phys_link_offline(ata_dev_phys_link(dev
))) {
2744 if (ata_class_enabled(classes
[dev
->devno
]))
2745 ata_dev_printk(dev
, KERN_DEBUG
, "link offline, "
2746 "clearing class %d to NONE\n",
2747 classes
[dev
->devno
]);
2748 classes
[dev
->devno
] = ATA_DEV_NONE
;
2749 } else if (classes
[dev
->devno
] == ATA_DEV_UNKNOWN
) {
2750 ata_dev_printk(dev
, KERN_DEBUG
, "link status unknown, "
2751 "clearing UNKNOWN to NONE\n");
2752 classes
[dev
->devno
] = ATA_DEV_NONE
;
2756 if (classify
&& nr_unknown
) {
2757 if (try < max_tries
) {
2758 ata_link_printk(link
, KERN_WARNING
, "link online but "
2759 "%d devices misclassified, retrying\n",
2765 ata_link_printk(link
, KERN_WARNING
,
2766 "link online but %d devices misclassified, "
2767 "device detection might fail\n", nr_unknown
);
2770 /* reset successful, schedule revalidation */
2771 ata_eh_done(link
, NULL
, ATA_EH_RESET
);
2773 ata_eh_done(slave
, NULL
, ATA_EH_RESET
);
2774 ehc
->last_reset
= jiffies
; /* update to completion time */
2775 ehc
->i
.action
|= ATA_EH_REVALIDATE
;
2779 /* clear hotplug flag */
2780 ehc
->i
.flags
&= ~ATA_EHI_HOTPLUGGED
;
2782 sehc
->i
.flags
&= ~ATA_EHI_HOTPLUGGED
;
2784 spin_lock_irqsave(ap
->lock
, flags
);
2785 ap
->pflags
&= ~ATA_PFLAG_RESETTING
;
2786 spin_unlock_irqrestore(ap
->lock
, flags
);
2791 /* if SCR isn't accessible on a fan-out port, PMP needs to be reset */
2792 if (!ata_is_host_link(link
) &&
2793 sata_scr_read(link
, SCR_STATUS
, &sstatus
))
2796 if (rc
== -ERESTART
|| try >= max_tries
)
2800 if (time_before(now
, deadline
)) {
2801 unsigned long delta
= deadline
- now
;
2803 ata_link_printk(failed_link
, KERN_WARNING
,
2804 "reset failed (errno=%d), retrying in %u secs\n",
2805 rc
, DIV_ROUND_UP(jiffies_to_msecs(delta
), 1000));
2808 delta
= schedule_timeout_uninterruptible(delta
);
2811 if (try == max_tries
- 1) {
2812 sata_down_spd_limit(link
, 0);
2814 sata_down_spd_limit(slave
, 0);
2815 } else if (rc
== -EPIPE
)
2816 sata_down_spd_limit(failed_link
, 0);
2823 static inline void ata_eh_pull_park_action(struct ata_port
*ap
)
2825 struct ata_link
*link
;
2826 struct ata_device
*dev
;
2827 unsigned long flags
;
2830 * This function can be thought of as an extended version of
2831 * ata_eh_about_to_do() specially crafted to accommodate the
2832 * requirements of ATA_EH_PARK handling. Since the EH thread
2833 * does not leave the do {} while () loop in ata_eh_recover as
2834 * long as the timeout for a park request to *one* device on
2835 * the port has not expired, and since we still want to pick
2836 * up park requests to other devices on the same port or
2837 * timeout updates for the same device, we have to pull
2838 * ATA_EH_PARK actions from eh_info into eh_context.i
2839 * ourselves at the beginning of each pass over the loop.
2841 * Additionally, all write accesses to &ap->park_req_pending
2842 * through INIT_COMPLETION() (see below) or complete_all()
2843 * (see ata_scsi_park_store()) are protected by the host lock.
2844 * As a result we have that park_req_pending.done is zero on
2845 * exit from this function, i.e. when ATA_EH_PARK actions for
2846 * *all* devices on port ap have been pulled into the
2847 * respective eh_context structs. If, and only if,
2848 * park_req_pending.done is non-zero by the time we reach
2849 * wait_for_completion_timeout(), another ATA_EH_PARK action
2850 * has been scheduled for at least one of the devices on port
2851 * ap and we have to cycle over the do {} while () loop in
2852 * ata_eh_recover() again.
2855 spin_lock_irqsave(ap
->lock
, flags
);
2856 INIT_COMPLETION(ap
->park_req_pending
);
2857 ata_for_each_link(link
, ap
, EDGE
) {
2858 ata_for_each_dev(dev
, link
, ALL
) {
2859 struct ata_eh_info
*ehi
= &link
->eh_info
;
2861 link
->eh_context
.i
.dev_action
[dev
->devno
] |=
2862 ehi
->dev_action
[dev
->devno
] & ATA_EH_PARK
;
2863 ata_eh_clear_action(link
, dev
, ehi
, ATA_EH_PARK
);
2866 spin_unlock_irqrestore(ap
->lock
, flags
);
2869 static void ata_eh_park_issue_cmd(struct ata_device
*dev
, int park
)
2871 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
2872 struct ata_taskfile tf
;
2873 unsigned int err_mask
;
2875 ata_tf_init(dev
, &tf
);
2877 ehc
->unloaded_mask
|= 1 << dev
->devno
;
2878 tf
.command
= ATA_CMD_IDLEIMMEDIATE
;
2884 ehc
->unloaded_mask
&= ~(1 << dev
->devno
);
2885 tf
.command
= ATA_CMD_CHK_POWER
;
2888 tf
.flags
|= ATA_TFLAG_DEVICE
| ATA_TFLAG_ISADDR
;
2889 tf
.protocol
|= ATA_PROT_NODATA
;
2890 err_mask
= ata_exec_internal(dev
, &tf
, NULL
, DMA_NONE
, NULL
, 0, 0);
2891 if (park
&& (err_mask
|| tf
.lbal
!= 0xc4)) {
2892 ata_dev_printk(dev
, KERN_ERR
, "head unload failed!\n");
2893 ehc
->unloaded_mask
&= ~(1 << dev
->devno
);
2897 static int ata_eh_revalidate_and_attach(struct ata_link
*link
,
2898 struct ata_device
**r_failed_dev
)
2900 struct ata_port
*ap
= link
->ap
;
2901 struct ata_eh_context
*ehc
= &link
->eh_context
;
2902 struct ata_device
*dev
;
2903 unsigned int new_mask
= 0;
2904 unsigned long flags
;
2909 /* For PATA drive side cable detection to work, IDENTIFY must
2910 * be done backwards such that PDIAG- is released by the slave
2911 * device before the master device is identified.
2913 ata_for_each_dev(dev
, link
, ALL_REVERSE
) {
2914 unsigned int action
= ata_eh_dev_action(dev
);
2915 unsigned int readid_flags
= 0;
2917 if (ehc
->i
.flags
& ATA_EHI_DID_RESET
)
2918 readid_flags
|= ATA_READID_POSTRESET
;
2920 if ((action
& ATA_EH_REVALIDATE
) && ata_dev_enabled(dev
)) {
2921 WARN_ON(dev
->class == ATA_DEV_PMP
);
2923 if (ata_phys_link_offline(ata_dev_phys_link(dev
))) {
2928 ata_eh_about_to_do(link
, dev
, ATA_EH_REVALIDATE
);
2929 rc
= ata_dev_revalidate(dev
, ehc
->classes
[dev
->devno
],
2934 ata_eh_done(link
, dev
, ATA_EH_REVALIDATE
);
2936 /* Configuration may have changed, reconfigure
2939 ehc
->i
.flags
|= ATA_EHI_SETMODE
;
2941 /* schedule the scsi_rescan_device() here */
2942 queue_work(ata_aux_wq
, &(ap
->scsi_rescan_task
));
2943 } else if (dev
->class == ATA_DEV_UNKNOWN
&&
2944 ehc
->tries
[dev
->devno
] &&
2945 ata_class_enabled(ehc
->classes
[dev
->devno
])) {
2946 /* Temporarily set dev->class, it will be
2947 * permanently set once all configurations are
2948 * complete. This is necessary because new
2949 * device configuration is done in two
2952 dev
->class = ehc
->classes
[dev
->devno
];
2954 if (dev
->class == ATA_DEV_PMP
)
2955 rc
= sata_pmp_attach(dev
);
2957 rc
= ata_dev_read_id(dev
, &dev
->class,
2958 readid_flags
, dev
->id
);
2960 /* read_id might have changed class, store and reset */
2961 ehc
->classes
[dev
->devno
] = dev
->class;
2962 dev
->class = ATA_DEV_UNKNOWN
;
2966 /* clear error info accumulated during probe */
2967 ata_ering_clear(&dev
->ering
);
2968 new_mask
|= 1 << dev
->devno
;
2971 /* IDENTIFY was issued to non-existent
2972 * device. No need to reset. Just
2973 * thaw and ignore the device.
2975 ata_eh_thaw_port(ap
);
2983 /* PDIAG- should have been released, ask cable type if post-reset */
2984 if ((ehc
->i
.flags
& ATA_EHI_DID_RESET
) && ata_is_host_link(link
)) {
2985 if (ap
->ops
->cable_detect
)
2986 ap
->cbl
= ap
->ops
->cable_detect(ap
);
2990 /* Configure new devices forward such that user doesn't see
2991 * device detection messages backwards.
2993 ata_for_each_dev(dev
, link
, ALL
) {
2994 if (!(new_mask
& (1 << dev
->devno
)))
2997 dev
->class = ehc
->classes
[dev
->devno
];
2999 if (dev
->class == ATA_DEV_PMP
)
3002 ehc
->i
.flags
|= ATA_EHI_PRINTINFO
;
3003 rc
= ata_dev_configure(dev
);
3004 ehc
->i
.flags
&= ~ATA_EHI_PRINTINFO
;
3006 dev
->class = ATA_DEV_UNKNOWN
;
3010 spin_lock_irqsave(ap
->lock
, flags
);
3011 ap
->pflags
|= ATA_PFLAG_SCSI_HOTPLUG
;
3012 spin_unlock_irqrestore(ap
->lock
, flags
);
3014 /* new device discovered, configure xfermode */
3015 ehc
->i
.flags
|= ATA_EHI_SETMODE
;
3021 *r_failed_dev
= dev
;
3022 DPRINTK("EXIT rc=%d\n", rc
);
3027 * ata_set_mode - Program timings and issue SET FEATURES - XFER
3028 * @link: link on which timings will be programmed
3029 * @r_failed_dev: out parameter for failed device
3031 * Set ATA device disk transfer mode (PIO3, UDMA6, etc.). If
3032 * ata_set_mode() fails, pointer to the failing device is
3033 * returned in @r_failed_dev.
3036 * PCI/etc. bus probe sem.
3039 * 0 on success, negative errno otherwise
3041 int ata_set_mode(struct ata_link
*link
, struct ata_device
**r_failed_dev
)
3043 struct ata_port
*ap
= link
->ap
;
3044 struct ata_device
*dev
;
3047 /* if data transfer is verified, clear DUBIOUS_XFER on ering top */
3048 ata_for_each_dev(dev
, link
, ENABLED
) {
3049 if (!(dev
->flags
& ATA_DFLAG_DUBIOUS_XFER
)) {
3050 struct ata_ering_entry
*ent
;
3052 ent
= ata_ering_top(&dev
->ering
);
3054 ent
->eflags
&= ~ATA_EFLAG_DUBIOUS_XFER
;
3058 /* has private set_mode? */
3059 if (ap
->ops
->set_mode
)
3060 rc
= ap
->ops
->set_mode(link
, r_failed_dev
);
3062 rc
= ata_do_set_mode(link
, r_failed_dev
);
3064 /* if transfer mode has changed, set DUBIOUS_XFER on device */
3065 ata_for_each_dev(dev
, link
, ENABLED
) {
3066 struct ata_eh_context
*ehc
= &link
->eh_context
;
3067 u8 saved_xfer_mode
= ehc
->saved_xfer_mode
[dev
->devno
];
3068 u8 saved_ncq
= !!(ehc
->saved_ncq_enabled
& (1 << dev
->devno
));
3070 if (dev
->xfer_mode
!= saved_xfer_mode
||
3071 ata_ncq_enabled(dev
) != saved_ncq
)
3072 dev
->flags
|= ATA_DFLAG_DUBIOUS_XFER
;
3079 * atapi_eh_clear_ua - Clear ATAPI UNIT ATTENTION after reset
3080 * @dev: ATAPI device to clear UA for
3082 * Resets and other operations can make an ATAPI device raise
3083 * UNIT ATTENTION which causes the next operation to fail. This
3084 * function clears UA.
3087 * EH context (may sleep).
3090 * 0 on success, -errno on failure.
3092 static int atapi_eh_clear_ua(struct ata_device
*dev
)
3096 for (i
= 0; i
< ATA_EH_UA_TRIES
; i
++) {
3097 u8
*sense_buffer
= dev
->link
->ap
->sector_buf
;
3099 unsigned int err_mask
;
3101 err_mask
= atapi_eh_tur(dev
, &sense_key
);
3102 if (err_mask
!= 0 && err_mask
!= AC_ERR_DEV
) {
3103 ata_dev_printk(dev
, KERN_WARNING
, "TEST_UNIT_READY "
3104 "failed (err_mask=0x%x)\n", err_mask
);
3108 if (!err_mask
|| sense_key
!= UNIT_ATTENTION
)
3111 err_mask
= atapi_eh_request_sense(dev
, sense_buffer
, sense_key
);
3113 ata_dev_printk(dev
, KERN_WARNING
, "failed to clear "
3114 "UNIT ATTENTION (err_mask=0x%x)\n", err_mask
);
3119 ata_dev_printk(dev
, KERN_WARNING
,
3120 "UNIT ATTENTION persists after %d tries\n", ATA_EH_UA_TRIES
);
3125 static int ata_link_nr_enabled(struct ata_link
*link
)
3127 struct ata_device
*dev
;
3130 ata_for_each_dev(dev
, link
, ENABLED
)
3135 static int ata_link_nr_vacant(struct ata_link
*link
)
3137 struct ata_device
*dev
;
3140 ata_for_each_dev(dev
, link
, ALL
)
3141 if (dev
->class == ATA_DEV_UNKNOWN
)
3146 static int ata_eh_skip_recovery(struct ata_link
*link
)
3148 struct ata_port
*ap
= link
->ap
;
3149 struct ata_eh_context
*ehc
= &link
->eh_context
;
3150 struct ata_device
*dev
;
3152 /* skip disabled links */
3153 if (link
->flags
& ATA_LFLAG_DISABLED
)
3156 /* skip if explicitly requested */
3157 if (ehc
->i
.flags
& ATA_EHI_NO_RECOVERY
)
3160 /* thaw frozen port and recover failed devices */
3161 if ((ap
->pflags
& ATA_PFLAG_FROZEN
) || ata_link_nr_enabled(link
))
3164 /* reset at least once if reset is requested */
3165 if ((ehc
->i
.action
& ATA_EH_RESET
) &&
3166 !(ehc
->i
.flags
& ATA_EHI_DID_RESET
))
3169 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
3170 ata_for_each_dev(dev
, link
, ALL
) {
3171 if (dev
->class == ATA_DEV_UNKNOWN
&&
3172 ehc
->classes
[dev
->devno
] != ATA_DEV_NONE
)
3179 static int ata_count_probe_trials_cb(struct ata_ering_entry
*ent
, void *void_arg
)
3181 u64 interval
= msecs_to_jiffies(ATA_EH_PROBE_TRIAL_INTERVAL
);
3182 u64 now
= get_jiffies_64();
3183 int *trials
= void_arg
;
3185 if (ent
->timestamp
< now
- min(now
, interval
))
3192 static int ata_eh_schedule_probe(struct ata_device
*dev
)
3194 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
3195 struct ata_link
*link
= ata_dev_phys_link(dev
);
3198 if (!(ehc
->i
.probe_mask
& (1 << dev
->devno
)) ||
3199 (ehc
->did_probe_mask
& (1 << dev
->devno
)))
3202 ata_eh_detach_dev(dev
);
3204 ehc
->did_probe_mask
|= (1 << dev
->devno
);
3205 ehc
->i
.action
|= ATA_EH_RESET
;
3206 ehc
->saved_xfer_mode
[dev
->devno
] = 0;
3207 ehc
->saved_ncq_enabled
&= ~(1 << dev
->devno
);
3209 /* Record and count probe trials on the ering. The specific
3210 * error mask used is irrelevant. Because a successful device
3211 * detection clears the ering, this count accumulates only if
3212 * there are consecutive failed probes.
3214 * If the count is equal to or higher than ATA_EH_PROBE_TRIALS
3215 * in the last ATA_EH_PROBE_TRIAL_INTERVAL, link speed is
3216 * forced to 1.5Gbps.
3218 * This is to work around cases where failed link speed
3219 * negotiation results in device misdetection leading to
3220 * infinite DEVXCHG or PHRDY CHG events.
3222 ata_ering_record(&dev
->ering
, 0, AC_ERR_OTHER
);
3223 ata_ering_map(&dev
->ering
, ata_count_probe_trials_cb
, &trials
);
3225 if (trials
> ATA_EH_PROBE_TRIALS
)
3226 sata_down_spd_limit(link
, 1);
3231 static int ata_eh_handle_dev_fail(struct ata_device
*dev
, int err
)
3233 struct ata_eh_context
*ehc
= &dev
->link
->eh_context
;
3235 /* -EAGAIN from EH routine indicates retry without prejudice.
3236 * The requester is responsible for ensuring forward progress.
3239 ehc
->tries
[dev
->devno
]--;
3243 /* device missing or wrong IDENTIFY data, schedule probing */
3244 ehc
->i
.probe_mask
|= (1 << dev
->devno
);
3246 /* give it just one more chance */
3247 ehc
->tries
[dev
->devno
] = min(ehc
->tries
[dev
->devno
], 1);
3249 if (ehc
->tries
[dev
->devno
] == 1) {
3250 /* This is the last chance, better to slow
3251 * down than lose it.
3253 sata_down_spd_limit(ata_dev_phys_link(dev
), 0);
3254 if (dev
->pio_mode
> XFER_PIO_0
)
3255 ata_down_xfermask_limit(dev
, ATA_DNXFER_PIO
);
3259 if (ata_dev_enabled(dev
) && !ehc
->tries
[dev
->devno
]) {
3260 /* disable device if it has used up all its chances */
3261 ata_dev_disable(dev
);
3263 /* detach if offline */
3264 if (ata_phys_link_offline(ata_dev_phys_link(dev
)))
3265 ata_eh_detach_dev(dev
);
3267 /* schedule probe if necessary */
3268 if (ata_eh_schedule_probe(dev
)) {
3269 ehc
->tries
[dev
->devno
] = ATA_EH_DEV_TRIES
;
3270 memset(ehc
->cmd_timeout_idx
[dev
->devno
], 0,
3271 sizeof(ehc
->cmd_timeout_idx
[dev
->devno
]));
3276 ehc
->i
.action
|= ATA_EH_RESET
;
3282 * ata_eh_recover - recover host port after error
3283 * @ap: host port to recover
3284 * @prereset: prereset method (can be NULL)
3285 * @softreset: softreset method (can be NULL)
3286 * @hardreset: hardreset method (can be NULL)
3287 * @postreset: postreset method (can be NULL)
3288 * @r_failed_link: out parameter for failed link
3290 * This is the alpha and omega, eum and yang, heart and soul of
3291 * libata exception handling. On entry, actions required to
3292 * recover each link and hotplug requests are recorded in the
3293 * link's eh_context. This function executes all the operations
3294 * with appropriate retrials and fallbacks to resurrect failed
3295 * devices, detach goners and greet newcomers.
3298 * Kernel thread context (may sleep).
3301 * 0 on success, -errno on failure.
3303 int ata_eh_recover(struct ata_port
*ap
, ata_prereset_fn_t prereset
,
3304 ata_reset_fn_t softreset
, ata_reset_fn_t hardreset
,
3305 ata_postreset_fn_t postreset
,
3306 struct ata_link
**r_failed_link
)
3308 struct ata_link
*link
;
3309 struct ata_device
*dev
;
3312 unsigned long flags
, deadline
;
3316 /* prep for recovery */
3317 ata_for_each_link(link
, ap
, EDGE
) {
3318 struct ata_eh_context
*ehc
= &link
->eh_context
;
3320 /* re-enable link? */
3321 if (ehc
->i
.action
& ATA_EH_ENABLE_LINK
) {
3322 ata_eh_about_to_do(link
, NULL
, ATA_EH_ENABLE_LINK
);
3323 spin_lock_irqsave(ap
->lock
, flags
);
3324 link
->flags
&= ~ATA_LFLAG_DISABLED
;
3325 spin_unlock_irqrestore(ap
->lock
, flags
);
3326 ata_eh_done(link
, NULL
, ATA_EH_ENABLE_LINK
);
3329 ata_for_each_dev(dev
, link
, ALL
) {
3330 if (link
->flags
& ATA_LFLAG_NO_RETRY
)
3331 ehc
->tries
[dev
->devno
] = 1;
3333 ehc
->tries
[dev
->devno
] = ATA_EH_DEV_TRIES
;
3335 /* collect port action mask recorded in dev actions */
3336 ehc
->i
.action
|= ehc
->i
.dev_action
[dev
->devno
] &
3337 ~ATA_EH_PERDEV_MASK
;
3338 ehc
->i
.dev_action
[dev
->devno
] &= ATA_EH_PERDEV_MASK
;
3340 /* process hotplug request */
3341 if (dev
->flags
& ATA_DFLAG_DETACH
)
3342 ata_eh_detach_dev(dev
);
3344 /* schedule probe if necessary */
3345 if (!ata_dev_enabled(dev
))
3346 ata_eh_schedule_probe(dev
);
3354 /* if UNLOADING, finish immediately */
3355 if (ap
->pflags
& ATA_PFLAG_UNLOADING
)
3359 ata_for_each_link(link
, ap
, EDGE
) {
3360 struct ata_eh_context
*ehc
= &link
->eh_context
;
3362 /* skip EH if possible. */
3363 if (ata_eh_skip_recovery(link
))
3366 ata_for_each_dev(dev
, link
, ALL
)
3367 ehc
->classes
[dev
->devno
] = ATA_DEV_UNKNOWN
;
3371 ata_for_each_link(link
, ap
, EDGE
) {
3372 struct ata_eh_context
*ehc
= &link
->eh_context
;
3374 if (!(ehc
->i
.action
& ATA_EH_RESET
))
3377 rc
= ata_eh_reset(link
, ata_link_nr_vacant(link
),
3378 prereset
, softreset
, hardreset
, postreset
);
3380 ata_link_printk(link
, KERN_ERR
,
3381 "reset failed, giving up\n");
3390 * clears ATA_EH_PARK in eh_info and resets
3391 * ap->park_req_pending
3393 ata_eh_pull_park_action(ap
);
3396 ata_for_each_link(link
, ap
, EDGE
) {
3397 ata_for_each_dev(dev
, link
, ALL
) {
3398 struct ata_eh_context
*ehc
= &link
->eh_context
;
3401 if (dev
->class != ATA_DEV_ATA
)
3403 if (!(ehc
->i
.dev_action
[dev
->devno
] &
3406 tmp
= dev
->unpark_deadline
;
3407 if (time_before(deadline
, tmp
))
3409 else if (time_before_eq(tmp
, jiffies
))
3411 if (ehc
->unloaded_mask
& (1 << dev
->devno
))
3414 ata_eh_park_issue_cmd(dev
, 1);
3419 if (time_before_eq(deadline
, now
))
3422 deadline
= wait_for_completion_timeout(&ap
->park_req_pending
,
3425 ata_for_each_link(link
, ap
, EDGE
) {
3426 ata_for_each_dev(dev
, link
, ALL
) {
3427 if (!(link
->eh_context
.unloaded_mask
&
3431 ata_eh_park_issue_cmd(dev
, 0);
3432 ata_eh_done(link
, dev
, ATA_EH_PARK
);
3437 ata_for_each_link(link
, ap
, EDGE
) {
3438 struct ata_eh_context
*ehc
= &link
->eh_context
;
3440 /* revalidate existing devices and attach new ones */
3441 rc
= ata_eh_revalidate_and_attach(link
, &dev
);
3445 /* if PMP got attached, return, pmp EH will take care of it */
3446 if (link
->device
->class == ATA_DEV_PMP
) {
3451 /* configure transfer mode if necessary */
3452 if (ehc
->i
.flags
& ATA_EHI_SETMODE
) {
3453 rc
= ata_set_mode(link
, &dev
);
3456 ehc
->i
.flags
&= ~ATA_EHI_SETMODE
;
3459 /* If reset has been issued, clear UA to avoid
3460 * disrupting the current users of the device.
3462 if (ehc
->i
.flags
& ATA_EHI_DID_RESET
) {
3463 ata_for_each_dev(dev
, link
, ALL
) {
3464 if (dev
->class != ATA_DEV_ATAPI
)
3466 rc
= atapi_eh_clear_ua(dev
);
3472 /* configure link power saving */
3473 if (ehc
->i
.action
& ATA_EH_LPM
)
3474 ata_for_each_dev(dev
, link
, ALL
)
3475 ata_dev_enable_pm(dev
, ap
->pm_policy
);
3477 /* this link is okay now */
3483 ata_eh_handle_dev_fail(dev
, rc
);
3485 if (ap
->pflags
& ATA_PFLAG_FROZEN
) {
3486 /* PMP reset requires working host port.
3487 * Can't retry if it's frozen.
3489 if (sata_pmp_attached(ap
))
3499 if (rc
&& r_failed_link
)
3500 *r_failed_link
= link
;
3502 DPRINTK("EXIT, rc=%d\n", rc
);
3507 * ata_eh_finish - finish up EH
3508 * @ap: host port to finish EH for
3510 * Recovery is complete. Clean up EH states and retry or finish
3516 void ata_eh_finish(struct ata_port
*ap
)
3520 /* retry or finish qcs */
3521 for (tag
= 0; tag
< ATA_MAX_QUEUE
; tag
++) {
3522 struct ata_queued_cmd
*qc
= __ata_qc_from_tag(ap
, tag
);
3524 if (!(qc
->flags
& ATA_QCFLAG_FAILED
))
3528 /* FIXME: Once EH migration is complete,
3529 * generate sense data in this function,
3530 * considering both err_mask and tf.
3532 if (qc
->flags
& ATA_QCFLAG_RETRY
)
3533 ata_eh_qc_retry(qc
);
3535 ata_eh_qc_complete(qc
);
3537 if (qc
->flags
& ATA_QCFLAG_SENSE_VALID
) {
3538 ata_eh_qc_complete(qc
);
3540 /* feed zero TF to sense generation */
3541 memset(&qc
->result_tf
, 0, sizeof(qc
->result_tf
));
3542 ata_eh_qc_retry(qc
);
3547 /* make sure nr_active_links is zero after EH */
3548 WARN_ON(ap
->nr_active_links
);
3549 ap
->nr_active_links
= 0;
3553 * ata_do_eh - do standard error handling
3554 * @ap: host port to handle error for
3556 * @prereset: prereset method (can be NULL)
3557 * @softreset: softreset method (can be NULL)
3558 * @hardreset: hardreset method (can be NULL)
3559 * @postreset: postreset method (can be NULL)
3561 * Perform standard error handling sequence.
3564 * Kernel thread context (may sleep).
3566 void ata_do_eh(struct ata_port
*ap
, ata_prereset_fn_t prereset
,
3567 ata_reset_fn_t softreset
, ata_reset_fn_t hardreset
,
3568 ata_postreset_fn_t postreset
)
3570 struct ata_device
*dev
;
3576 rc
= ata_eh_recover(ap
, prereset
, softreset
, hardreset
, postreset
,
3579 ata_for_each_dev(dev
, &ap
->link
, ALL
)
3580 ata_dev_disable(dev
);
3587 * ata_std_error_handler - standard error handler
3588 * @ap: host port to handle error for
3590 * Standard error handler
3593 * Kernel thread context (may sleep).
3595 void ata_std_error_handler(struct ata_port
*ap
)
3597 struct ata_port_operations
*ops
= ap
->ops
;
3598 ata_reset_fn_t hardreset
= ops
->hardreset
;
3600 /* ignore built-in hardreset if SCR access is not available */
3601 if (ata_is_builtin_hardreset(hardreset
) && !sata_scr_valid(&ap
->link
))
3604 ata_do_eh(ap
, ops
->prereset
, ops
->softreset
, hardreset
, ops
->postreset
);
3609 * ata_eh_handle_port_suspend - perform port suspend operation
3610 * @ap: port to suspend
3615 * Kernel thread context (may sleep).
3617 static void ata_eh_handle_port_suspend(struct ata_port
*ap
)
3619 unsigned long flags
;
3622 /* are we suspending? */
3623 spin_lock_irqsave(ap
->lock
, flags
);
3624 if (!(ap
->pflags
& ATA_PFLAG_PM_PENDING
) ||
3625 ap
->pm_mesg
.event
== PM_EVENT_ON
) {
3626 spin_unlock_irqrestore(ap
->lock
, flags
);
3629 spin_unlock_irqrestore(ap
->lock
, flags
);
3631 WARN_ON(ap
->pflags
& ATA_PFLAG_SUSPENDED
);
3633 /* tell ACPI we're suspending */
3634 rc
= ata_acpi_on_suspend(ap
);
3639 ata_eh_freeze_port(ap
);
3641 if (ap
->ops
->port_suspend
)
3642 rc
= ap
->ops
->port_suspend(ap
, ap
->pm_mesg
);
3644 ata_acpi_set_state(ap
, PMSG_SUSPEND
);
3647 spin_lock_irqsave(ap
->lock
, flags
);
3649 ap
->pflags
&= ~ATA_PFLAG_PM_PENDING
;
3651 ap
->pflags
|= ATA_PFLAG_SUSPENDED
;
3652 else if (ap
->pflags
& ATA_PFLAG_FROZEN
)
3653 ata_port_schedule_eh(ap
);
3655 if (ap
->pm_result
) {
3656 *ap
->pm_result
= rc
;
3657 ap
->pm_result
= NULL
;
3660 spin_unlock_irqrestore(ap
->lock
, flags
);
3666 * ata_eh_handle_port_resume - perform port resume operation
3667 * @ap: port to resume
3672 * Kernel thread context (may sleep).
3674 static void ata_eh_handle_port_resume(struct ata_port
*ap
)
3676 struct ata_link
*link
;
3677 struct ata_device
*dev
;
3678 unsigned long flags
;
3681 /* are we resuming? */
3682 spin_lock_irqsave(ap
->lock
, flags
);
3683 if (!(ap
->pflags
& ATA_PFLAG_PM_PENDING
) ||
3684 ap
->pm_mesg
.event
!= PM_EVENT_ON
) {
3685 spin_unlock_irqrestore(ap
->lock
, flags
);
3688 spin_unlock_irqrestore(ap
->lock
, flags
);
3690 WARN_ON(!(ap
->pflags
& ATA_PFLAG_SUSPENDED
));
3693 * Error timestamps are in jiffies which doesn't run while
3694 * suspended and PHY events during resume isn't too uncommon.
3695 * When the two are combined, it can lead to unnecessary speed
3696 * downs if the machine is suspended and resumed repeatedly.
3697 * Clear error history.
3699 ata_for_each_link(link
, ap
, HOST_FIRST
)
3700 ata_for_each_dev(dev
, link
, ALL
)
3701 ata_ering_clear(&dev
->ering
);
3703 ata_acpi_set_state(ap
, PMSG_ON
);
3705 if (ap
->ops
->port_resume
)
3706 rc
= ap
->ops
->port_resume(ap
);
3708 /* tell ACPI that we're resuming */
3709 ata_acpi_on_resume(ap
);
3712 spin_lock_irqsave(ap
->lock
, flags
);
3713 ap
->pflags
&= ~(ATA_PFLAG_PM_PENDING
| ATA_PFLAG_SUSPENDED
);
3714 if (ap
->pm_result
) {
3715 *ap
->pm_result
= rc
;
3716 ap
->pm_result
= NULL
;
3718 spin_unlock_irqrestore(ap
->lock
, flags
);
3720 #endif /* CONFIG_PM */