libata: clear HOTPLUG flag after a reset
[linux-2.6.git] / drivers / ata / libata-eh.c
bloba5a8f8453061b42a17a16378055542ba6b5f87ea
1 /*
2 * libata-eh.c - libata error handling
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
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,
24 * USA.
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 <scsi/scsi.h>
37 #include <scsi/scsi_host.h>
38 #include <scsi/scsi_eh.h>
39 #include <scsi/scsi_device.h>
40 #include <scsi/scsi_cmnd.h>
41 #include "../scsi/scsi_transport_api.h"
43 #include <linux/libata.h>
45 #include "libata.h"
47 enum {
48 ATA_EH_SPDN_NCQ_OFF = (1 << 0),
49 ATA_EH_SPDN_SPEED_DOWN = (1 << 1),
50 ATA_EH_SPDN_FALLBACK_TO_PIO = (1 << 2),
53 /* Waiting in ->prereset can never be reliable. It's sometimes nice
54 * to wait there but it can't be depended upon; otherwise, we wouldn't
55 * be resetting. Just give it enough time for most drives to spin up.
57 enum {
58 ATA_EH_PRERESET_TIMEOUT = 10 * HZ,
61 /* The following table determines how we sequence resets. Each entry
62 * represents timeout for that try. The first try can be soft or
63 * hardreset. All others are hardreset if available. In most cases
64 * the first reset w/ 10sec timeout should succeed. Following entries
65 * are mostly for error handling, hotplug and retarded devices.
67 static const unsigned long ata_eh_reset_timeouts[] = {
68 10 * HZ, /* most drives spin up by 10sec */
69 10 * HZ, /* > 99% working drives spin up before 20sec */
70 35 * HZ, /* give > 30 secs of idleness for retarded devices */
71 5 * HZ, /* and sweet one last chance */
72 /* > 1 min has elapsed, give up */
75 static void __ata_port_freeze(struct ata_port *ap);
76 static void ata_eh_finish(struct ata_port *ap);
77 #ifdef CONFIG_PM
78 static void ata_eh_handle_port_suspend(struct ata_port *ap);
79 static void ata_eh_handle_port_resume(struct ata_port *ap);
80 #else /* CONFIG_PM */
81 static void ata_eh_handle_port_suspend(struct ata_port *ap)
82 { }
84 static void ata_eh_handle_port_resume(struct ata_port *ap)
85 { }
86 #endif /* CONFIG_PM */
88 static void __ata_ehi_pushv_desc(struct ata_eh_info *ehi, const char *fmt,
89 va_list args)
91 ehi->desc_len += vscnprintf(ehi->desc + ehi->desc_len,
92 ATA_EH_DESC_LEN - ehi->desc_len,
93 fmt, args);
96 /**
97 * __ata_ehi_push_desc - push error description without adding separator
98 * @ehi: target EHI
99 * @fmt: printf format string
101 * Format string according to @fmt and append it to @ehi->desc.
103 * LOCKING:
104 * spin_lock_irqsave(host lock)
106 void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
108 va_list args;
110 va_start(args, fmt);
111 __ata_ehi_pushv_desc(ehi, fmt, args);
112 va_end(args);
116 * ata_ehi_push_desc - push error description with separator
117 * @ehi: target EHI
118 * @fmt: printf format string
120 * Format string according to @fmt and append it to @ehi->desc.
121 * If @ehi->desc is not empty, ", " is added in-between.
123 * LOCKING:
124 * spin_lock_irqsave(host lock)
126 void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
128 va_list args;
130 if (ehi->desc_len)
131 __ata_ehi_push_desc(ehi, ", ");
133 va_start(args, fmt);
134 __ata_ehi_pushv_desc(ehi, fmt, args);
135 va_end(args);
139 * ata_ehi_clear_desc - clean error description
140 * @ehi: target EHI
142 * Clear @ehi->desc.
144 * LOCKING:
145 * spin_lock_irqsave(host lock)
147 void ata_ehi_clear_desc(struct ata_eh_info *ehi)
149 ehi->desc[0] = '\0';
150 ehi->desc_len = 0;
153 static void ata_ering_record(struct ata_ering *ering, int is_io,
154 unsigned int err_mask)
156 struct ata_ering_entry *ent;
158 WARN_ON(!err_mask);
160 ering->cursor++;
161 ering->cursor %= ATA_ERING_SIZE;
163 ent = &ering->ring[ering->cursor];
164 ent->is_io = is_io;
165 ent->err_mask = err_mask;
166 ent->timestamp = get_jiffies_64();
169 static void ata_ering_clear(struct ata_ering *ering)
171 memset(ering, 0, sizeof(*ering));
174 static int ata_ering_map(struct ata_ering *ering,
175 int (*map_fn)(struct ata_ering_entry *, void *),
176 void *arg)
178 int idx, rc = 0;
179 struct ata_ering_entry *ent;
181 idx = ering->cursor;
182 do {
183 ent = &ering->ring[idx];
184 if (!ent->err_mask)
185 break;
186 rc = map_fn(ent, arg);
187 if (rc)
188 break;
189 idx = (idx - 1 + ATA_ERING_SIZE) % ATA_ERING_SIZE;
190 } while (idx != ering->cursor);
192 return rc;
195 static unsigned int ata_eh_dev_action(struct ata_device *dev)
197 struct ata_eh_context *ehc = &dev->ap->eh_context;
199 return ehc->i.action | ehc->i.dev_action[dev->devno];
202 static void ata_eh_clear_action(struct ata_device *dev,
203 struct ata_eh_info *ehi, unsigned int action)
205 int i;
207 if (!dev) {
208 ehi->action &= ~action;
209 for (i = 0; i < ATA_MAX_DEVICES; i++)
210 ehi->dev_action[i] &= ~action;
211 } else {
212 /* doesn't make sense for port-wide EH actions */
213 WARN_ON(!(action & ATA_EH_PERDEV_MASK));
215 /* break ehi->action into ehi->dev_action */
216 if (ehi->action & action) {
217 for (i = 0; i < ATA_MAX_DEVICES; i++)
218 ehi->dev_action[i] |= ehi->action & action;
219 ehi->action &= ~action;
222 /* turn off the specified per-dev action */
223 ehi->dev_action[dev->devno] &= ~action;
228 * ata_scsi_timed_out - SCSI layer time out callback
229 * @cmd: timed out SCSI command
231 * Handles SCSI layer timeout. We race with normal completion of
232 * the qc for @cmd. If the qc is already gone, we lose and let
233 * the scsi command finish (EH_HANDLED). Otherwise, the qc has
234 * timed out and EH should be invoked. Prevent ata_qc_complete()
235 * from finishing it by setting EH_SCHEDULED and return
236 * EH_NOT_HANDLED.
238 * TODO: kill this function once old EH is gone.
240 * LOCKING:
241 * Called from timer context
243 * RETURNS:
244 * EH_HANDLED or EH_NOT_HANDLED
246 enum scsi_eh_timer_return ata_scsi_timed_out(struct scsi_cmnd *cmd)
248 struct Scsi_Host *host = cmd->device->host;
249 struct ata_port *ap = ata_shost_to_port(host);
250 unsigned long flags;
251 struct ata_queued_cmd *qc;
252 enum scsi_eh_timer_return ret;
254 DPRINTK("ENTER\n");
256 if (ap->ops->error_handler) {
257 ret = EH_NOT_HANDLED;
258 goto out;
261 ret = EH_HANDLED;
262 spin_lock_irqsave(ap->lock, flags);
263 qc = ata_qc_from_tag(ap, ap->active_tag);
264 if (qc) {
265 WARN_ON(qc->scsicmd != cmd);
266 qc->flags |= ATA_QCFLAG_EH_SCHEDULED;
267 qc->err_mask |= AC_ERR_TIMEOUT;
268 ret = EH_NOT_HANDLED;
270 spin_unlock_irqrestore(ap->lock, flags);
272 out:
273 DPRINTK("EXIT, ret=%d\n", ret);
274 return ret;
278 * ata_scsi_error - SCSI layer error handler callback
279 * @host: SCSI host on which error occurred
281 * Handles SCSI-layer-thrown error events.
283 * LOCKING:
284 * Inherited from SCSI layer (none, can sleep)
286 * RETURNS:
287 * Zero.
289 void ata_scsi_error(struct Scsi_Host *host)
291 struct ata_port *ap = ata_shost_to_port(host);
292 int i, repeat_cnt = ATA_EH_MAX_REPEAT;
293 unsigned long flags;
295 DPRINTK("ENTER\n");
297 /* synchronize with port task */
298 ata_port_flush_task(ap);
300 /* synchronize with host lock and sort out timeouts */
302 /* For new EH, all qcs are finished in one of three ways -
303 * normal completion, error completion, and SCSI timeout.
304 * Both cmpletions can race against SCSI timeout. When normal
305 * completion wins, the qc never reaches EH. When error
306 * completion wins, the qc has ATA_QCFLAG_FAILED set.
308 * When SCSI timeout wins, things are a bit more complex.
309 * Normal or error completion can occur after the timeout but
310 * before this point. In such cases, both types of
311 * completions are honored. A scmd is determined to have
312 * timed out iff its associated qc is active and not failed.
314 if (ap->ops->error_handler) {
315 struct scsi_cmnd *scmd, *tmp;
316 int nr_timedout = 0;
318 spin_lock_irqsave(ap->lock, flags);
320 list_for_each_entry_safe(scmd, tmp, &host->eh_cmd_q, eh_entry) {
321 struct ata_queued_cmd *qc;
323 for (i = 0; i < ATA_MAX_QUEUE; i++) {
324 qc = __ata_qc_from_tag(ap, i);
325 if (qc->flags & ATA_QCFLAG_ACTIVE &&
326 qc->scsicmd == scmd)
327 break;
330 if (i < ATA_MAX_QUEUE) {
331 /* the scmd has an associated qc */
332 if (!(qc->flags & ATA_QCFLAG_FAILED)) {
333 /* which hasn't failed yet, timeout */
334 qc->err_mask |= AC_ERR_TIMEOUT;
335 qc->flags |= ATA_QCFLAG_FAILED;
336 nr_timedout++;
338 } else {
339 /* Normal completion occurred after
340 * SCSI timeout but before this point.
341 * Successfully complete it.
343 scmd->retries = scmd->allowed;
344 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
348 /* If we have timed out qcs. They belong to EH from
349 * this point but the state of the controller is
350 * unknown. Freeze the port to make sure the IRQ
351 * handler doesn't diddle with those qcs. This must
352 * be done atomically w.r.t. setting QCFLAG_FAILED.
354 if (nr_timedout)
355 __ata_port_freeze(ap);
357 spin_unlock_irqrestore(ap->lock, flags);
358 } else
359 spin_unlock_wait(ap->lock);
361 repeat:
362 /* invoke error handler */
363 if (ap->ops->error_handler) {
364 /* process port resume request */
365 ata_eh_handle_port_resume(ap);
367 /* fetch & clear EH info */
368 spin_lock_irqsave(ap->lock, flags);
370 memset(&ap->eh_context, 0, sizeof(ap->eh_context));
371 ap->eh_context.i = ap->eh_info;
372 memset(&ap->eh_info, 0, sizeof(ap->eh_info));
374 ap->pflags |= ATA_PFLAG_EH_IN_PROGRESS;
375 ap->pflags &= ~ATA_PFLAG_EH_PENDING;
377 spin_unlock_irqrestore(ap->lock, flags);
379 /* invoke EH, skip if unloading or suspended */
380 if (!(ap->pflags & (ATA_PFLAG_UNLOADING | ATA_PFLAG_SUSPENDED)))
381 ap->ops->error_handler(ap);
382 else
383 ata_eh_finish(ap);
385 /* process port suspend request */
386 ata_eh_handle_port_suspend(ap);
388 /* Exception might have happend after ->error_handler
389 * recovered the port but before this point. Repeat
390 * EH in such case.
392 spin_lock_irqsave(ap->lock, flags);
394 if (ap->pflags & ATA_PFLAG_EH_PENDING) {
395 if (--repeat_cnt) {
396 ata_port_printk(ap, KERN_INFO,
397 "EH pending after completion, "
398 "repeating EH (cnt=%d)\n", repeat_cnt);
399 spin_unlock_irqrestore(ap->lock, flags);
400 goto repeat;
402 ata_port_printk(ap, KERN_ERR, "EH pending after %d "
403 "tries, giving up\n", ATA_EH_MAX_REPEAT);
404 ap->pflags &= ~ATA_PFLAG_EH_PENDING;
407 /* this run is complete, make sure EH info is clear */
408 memset(&ap->eh_info, 0, sizeof(ap->eh_info));
410 /* Clear host_eh_scheduled while holding ap->lock such
411 * that if exception occurs after this point but
412 * before EH completion, SCSI midlayer will
413 * re-initiate EH.
415 host->host_eh_scheduled = 0;
417 spin_unlock_irqrestore(ap->lock, flags);
418 } else {
419 WARN_ON(ata_qc_from_tag(ap, ap->active_tag) == NULL);
420 ap->ops->eng_timeout(ap);
423 /* finish or retry handled scmd's and clean up */
424 WARN_ON(host->host_failed || !list_empty(&host->eh_cmd_q));
426 scsi_eh_flush_done_q(&ap->eh_done_q);
428 /* clean up */
429 spin_lock_irqsave(ap->lock, flags);
431 if (ap->pflags & ATA_PFLAG_LOADING)
432 ap->pflags &= ~ATA_PFLAG_LOADING;
433 else if (ap->pflags & ATA_PFLAG_SCSI_HOTPLUG)
434 queue_delayed_work(ata_aux_wq, &ap->hotplug_task, 0);
436 if (ap->pflags & ATA_PFLAG_RECOVERED)
437 ata_port_printk(ap, KERN_INFO, "EH complete\n");
439 ap->pflags &= ~(ATA_PFLAG_SCSI_HOTPLUG | ATA_PFLAG_RECOVERED);
441 /* tell wait_eh that we're done */
442 ap->pflags &= ~ATA_PFLAG_EH_IN_PROGRESS;
443 wake_up_all(&ap->eh_wait_q);
445 spin_unlock_irqrestore(ap->lock, flags);
447 DPRINTK("EXIT\n");
451 * ata_port_wait_eh - Wait for the currently pending EH to complete
452 * @ap: Port to wait EH for
454 * Wait until the currently pending EH is complete.
456 * LOCKING:
457 * Kernel thread context (may sleep).
459 void ata_port_wait_eh(struct ata_port *ap)
461 unsigned long flags;
462 DEFINE_WAIT(wait);
464 retry:
465 spin_lock_irqsave(ap->lock, flags);
467 while (ap->pflags & (ATA_PFLAG_EH_PENDING | ATA_PFLAG_EH_IN_PROGRESS)) {
468 prepare_to_wait(&ap->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE);
469 spin_unlock_irqrestore(ap->lock, flags);
470 schedule();
471 spin_lock_irqsave(ap->lock, flags);
473 finish_wait(&ap->eh_wait_q, &wait);
475 spin_unlock_irqrestore(ap->lock, flags);
477 /* make sure SCSI EH is complete */
478 if (scsi_host_in_recovery(ap->scsi_host)) {
479 msleep(10);
480 goto retry;
485 * ata_qc_timeout - Handle timeout of queued command
486 * @qc: Command that timed out
488 * Some part of the kernel (currently, only the SCSI layer)
489 * has noticed that the active command on port @ap has not
490 * completed after a specified length of time. Handle this
491 * condition by disabling DMA (if necessary) and completing
492 * transactions, with error if necessary.
494 * This also handles the case of the "lost interrupt", where
495 * for some reason (possibly hardware bug, possibly driver bug)
496 * an interrupt was not delivered to the driver, even though the
497 * transaction completed successfully.
499 * TODO: kill this function once old EH is gone.
501 * LOCKING:
502 * Inherited from SCSI layer (none, can sleep)
504 static void ata_qc_timeout(struct ata_queued_cmd *qc)
506 struct ata_port *ap = qc->ap;
507 u8 host_stat = 0, drv_stat;
508 unsigned long flags;
510 DPRINTK("ENTER\n");
512 ap->hsm_task_state = HSM_ST_IDLE;
514 spin_lock_irqsave(ap->lock, flags);
516 switch (qc->tf.protocol) {
518 case ATA_PROT_DMA:
519 case ATA_PROT_ATAPI_DMA:
520 host_stat = ap->ops->bmdma_status(ap);
522 /* before we do anything else, clear DMA-Start bit */
523 ap->ops->bmdma_stop(qc);
525 /* fall through */
527 default:
528 ata_altstatus(ap);
529 drv_stat = ata_chk_status(ap);
531 /* ack bmdma irq events */
532 ap->ops->irq_clear(ap);
534 ata_dev_printk(qc->dev, KERN_ERR, "command 0x%x timeout, "
535 "stat 0x%x host_stat 0x%x\n",
536 qc->tf.command, drv_stat, host_stat);
538 /* complete taskfile transaction */
539 qc->err_mask |= AC_ERR_TIMEOUT;
540 break;
543 spin_unlock_irqrestore(ap->lock, flags);
545 ata_eh_qc_complete(qc);
547 DPRINTK("EXIT\n");
551 * ata_eng_timeout - Handle timeout of queued command
552 * @ap: Port on which timed-out command is active
554 * Some part of the kernel (currently, only the SCSI layer)
555 * has noticed that the active command on port @ap has not
556 * completed after a specified length of time. Handle this
557 * condition by disabling DMA (if necessary) and completing
558 * transactions, with error if necessary.
560 * This also handles the case of the "lost interrupt", where
561 * for some reason (possibly hardware bug, possibly driver bug)
562 * an interrupt was not delivered to the driver, even though the
563 * transaction completed successfully.
565 * TODO: kill this function once old EH is gone.
567 * LOCKING:
568 * Inherited from SCSI layer (none, can sleep)
570 void ata_eng_timeout(struct ata_port *ap)
572 DPRINTK("ENTER\n");
574 ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
576 DPRINTK("EXIT\n");
580 * ata_qc_schedule_eh - schedule qc for error handling
581 * @qc: command to schedule error handling for
583 * Schedule error handling for @qc. EH will kick in as soon as
584 * other commands are drained.
586 * LOCKING:
587 * spin_lock_irqsave(host lock)
589 void ata_qc_schedule_eh(struct ata_queued_cmd *qc)
591 struct ata_port *ap = qc->ap;
593 WARN_ON(!ap->ops->error_handler);
595 qc->flags |= ATA_QCFLAG_FAILED;
596 qc->ap->pflags |= ATA_PFLAG_EH_PENDING;
598 /* The following will fail if timeout has already expired.
599 * ata_scsi_error() takes care of such scmds on EH entry.
600 * Note that ATA_QCFLAG_FAILED is unconditionally set after
601 * this function completes.
603 scsi_req_abort_cmd(qc->scsicmd);
607 * ata_port_schedule_eh - schedule error handling without a qc
608 * @ap: ATA port to schedule EH for
610 * Schedule error handling for @ap. EH will kick in as soon as
611 * all commands are drained.
613 * LOCKING:
614 * spin_lock_irqsave(host lock)
616 void ata_port_schedule_eh(struct ata_port *ap)
618 WARN_ON(!ap->ops->error_handler);
620 if (ap->pflags & ATA_PFLAG_INITIALIZING)
621 return;
623 ap->pflags |= ATA_PFLAG_EH_PENDING;
624 scsi_schedule_eh(ap->scsi_host);
626 DPRINTK("port EH scheduled\n");
630 * ata_port_abort - abort all qc's on the port
631 * @ap: ATA port to abort qc's for
633 * Abort all active qc's of @ap and schedule EH.
635 * LOCKING:
636 * spin_lock_irqsave(host lock)
638 * RETURNS:
639 * Number of aborted qc's.
641 int ata_port_abort(struct ata_port *ap)
643 int tag, nr_aborted = 0;
645 WARN_ON(!ap->ops->error_handler);
647 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
648 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag);
650 if (qc) {
651 qc->flags |= ATA_QCFLAG_FAILED;
652 ata_qc_complete(qc);
653 nr_aborted++;
657 if (!nr_aborted)
658 ata_port_schedule_eh(ap);
660 return nr_aborted;
664 * __ata_port_freeze - freeze port
665 * @ap: ATA port to freeze
667 * This function is called when HSM violation or some other
668 * condition disrupts normal operation of the port. Frozen port
669 * is not allowed to perform any operation until the port is
670 * thawed, which usually follows a successful reset.
672 * ap->ops->freeze() callback can be used for freezing the port
673 * hardware-wise (e.g. mask interrupt and stop DMA engine). If a
674 * port cannot be frozen hardware-wise, the interrupt handler
675 * must ack and clear interrupts unconditionally while the port
676 * is frozen.
678 * LOCKING:
679 * spin_lock_irqsave(host lock)
681 static void __ata_port_freeze(struct ata_port *ap)
683 WARN_ON(!ap->ops->error_handler);
685 if (ap->ops->freeze)
686 ap->ops->freeze(ap);
688 ap->pflags |= ATA_PFLAG_FROZEN;
690 DPRINTK("ata%u port frozen\n", ap->print_id);
694 * ata_port_freeze - abort & freeze port
695 * @ap: ATA port to freeze
697 * Abort and freeze @ap.
699 * LOCKING:
700 * spin_lock_irqsave(host lock)
702 * RETURNS:
703 * Number of aborted commands.
705 int ata_port_freeze(struct ata_port *ap)
707 int nr_aborted;
709 WARN_ON(!ap->ops->error_handler);
711 nr_aborted = ata_port_abort(ap);
712 __ata_port_freeze(ap);
714 return nr_aborted;
718 * ata_eh_freeze_port - EH helper to freeze port
719 * @ap: ATA port to freeze
721 * Freeze @ap.
723 * LOCKING:
724 * None.
726 void ata_eh_freeze_port(struct ata_port *ap)
728 unsigned long flags;
730 if (!ap->ops->error_handler)
731 return;
733 spin_lock_irqsave(ap->lock, flags);
734 __ata_port_freeze(ap);
735 spin_unlock_irqrestore(ap->lock, flags);
739 * ata_port_thaw_port - EH helper to thaw port
740 * @ap: ATA port to thaw
742 * Thaw frozen port @ap.
744 * LOCKING:
745 * None.
747 void ata_eh_thaw_port(struct ata_port *ap)
749 unsigned long flags;
751 if (!ap->ops->error_handler)
752 return;
754 spin_lock_irqsave(ap->lock, flags);
756 ap->pflags &= ~ATA_PFLAG_FROZEN;
758 if (ap->ops->thaw)
759 ap->ops->thaw(ap);
761 spin_unlock_irqrestore(ap->lock, flags);
763 DPRINTK("ata%u port thawed\n", ap->print_id);
766 static void ata_eh_scsidone(struct scsi_cmnd *scmd)
768 /* nada */
771 static void __ata_eh_qc_complete(struct ata_queued_cmd *qc)
773 struct ata_port *ap = qc->ap;
774 struct scsi_cmnd *scmd = qc->scsicmd;
775 unsigned long flags;
777 spin_lock_irqsave(ap->lock, flags);
778 qc->scsidone = ata_eh_scsidone;
779 __ata_qc_complete(qc);
780 WARN_ON(ata_tag_valid(qc->tag));
781 spin_unlock_irqrestore(ap->lock, flags);
783 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
787 * ata_eh_qc_complete - Complete an active ATA command from EH
788 * @qc: Command to complete
790 * Indicate to the mid and upper layers that an ATA command has
791 * completed. To be used from EH.
793 void ata_eh_qc_complete(struct ata_queued_cmd *qc)
795 struct scsi_cmnd *scmd = qc->scsicmd;
796 scmd->retries = scmd->allowed;
797 __ata_eh_qc_complete(qc);
801 * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
802 * @qc: Command to retry
804 * Indicate to the mid and upper layers that an ATA command
805 * should be retried. To be used from EH.
807 * SCSI midlayer limits the number of retries to scmd->allowed.
808 * scmd->retries is decremented for commands which get retried
809 * due to unrelated failures (qc->err_mask is zero).
811 void ata_eh_qc_retry(struct ata_queued_cmd *qc)
813 struct scsi_cmnd *scmd = qc->scsicmd;
814 if (!qc->err_mask && scmd->retries)
815 scmd->retries--;
816 __ata_eh_qc_complete(qc);
820 * ata_eh_detach_dev - detach ATA device
821 * @dev: ATA device to detach
823 * Detach @dev.
825 * LOCKING:
826 * None.
828 static void ata_eh_detach_dev(struct ata_device *dev)
830 struct ata_port *ap = dev->ap;
831 unsigned long flags;
833 ata_dev_disable(dev);
835 spin_lock_irqsave(ap->lock, flags);
837 dev->flags &= ~ATA_DFLAG_DETACH;
839 if (ata_scsi_offline_dev(dev)) {
840 dev->flags |= ATA_DFLAG_DETACHED;
841 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
844 /* clear per-dev EH actions */
845 ata_eh_clear_action(dev, &ap->eh_info, ATA_EH_PERDEV_MASK);
846 ata_eh_clear_action(dev, &ap->eh_context.i, ATA_EH_PERDEV_MASK);
848 spin_unlock_irqrestore(ap->lock, flags);
852 * ata_eh_about_to_do - about to perform eh_action
853 * @ap: target ATA port
854 * @dev: target ATA dev for per-dev action (can be NULL)
855 * @action: action about to be performed
857 * Called just before performing EH actions to clear related bits
858 * in @ap->eh_info such that eh actions are not unnecessarily
859 * repeated.
861 * LOCKING:
862 * None.
864 static void ata_eh_about_to_do(struct ata_port *ap, struct ata_device *dev,
865 unsigned int action)
867 unsigned long flags;
868 struct ata_eh_info *ehi = &ap->eh_info;
869 struct ata_eh_context *ehc = &ap->eh_context;
871 spin_lock_irqsave(ap->lock, flags);
873 /* Reset is represented by combination of actions and EHI
874 * flags. Suck in all related bits before clearing eh_info to
875 * avoid losing requested action.
877 if (action & ATA_EH_RESET_MASK) {
878 ehc->i.action |= ehi->action & ATA_EH_RESET_MASK;
879 ehc->i.flags |= ehi->flags & ATA_EHI_RESET_MODIFIER_MASK;
881 /* make sure all reset actions are cleared & clear EHI flags */
882 action |= ATA_EH_RESET_MASK;
883 ehi->flags &= ~ATA_EHI_RESET_MODIFIER_MASK;
886 ata_eh_clear_action(dev, ehi, action);
888 if (!(ehc->i.flags & ATA_EHI_QUIET))
889 ap->pflags |= ATA_PFLAG_RECOVERED;
891 spin_unlock_irqrestore(ap->lock, flags);
895 * ata_eh_done - EH action complete
896 * @ap: target ATA port
897 * @dev: target ATA dev for per-dev action (can be NULL)
898 * @action: action just completed
900 * Called right after performing EH actions to clear related bits
901 * in @ap->eh_context.
903 * LOCKING:
904 * None.
906 static void ata_eh_done(struct ata_port *ap, struct ata_device *dev,
907 unsigned int action)
909 /* if reset is complete, clear all reset actions & reset modifier */
910 if (action & ATA_EH_RESET_MASK) {
911 action |= ATA_EH_RESET_MASK;
912 ap->eh_context.i.flags &= ~ATA_EHI_RESET_MODIFIER_MASK;
915 ata_eh_clear_action(dev, &ap->eh_context.i, action);
919 * ata_err_string - convert err_mask to descriptive string
920 * @err_mask: error mask to convert to string
922 * Convert @err_mask to descriptive string. Errors are
923 * prioritized according to severity and only the most severe
924 * error is reported.
926 * LOCKING:
927 * None.
929 * RETURNS:
930 * Descriptive string for @err_mask
932 static const char * ata_err_string(unsigned int err_mask)
934 if (err_mask & AC_ERR_HOST_BUS)
935 return "host bus error";
936 if (err_mask & AC_ERR_ATA_BUS)
937 return "ATA bus error";
938 if (err_mask & AC_ERR_TIMEOUT)
939 return "timeout";
940 if (err_mask & AC_ERR_HSM)
941 return "HSM violation";
942 if (err_mask & AC_ERR_SYSTEM)
943 return "internal error";
944 if (err_mask & AC_ERR_MEDIA)
945 return "media error";
946 if (err_mask & AC_ERR_INVALID)
947 return "invalid argument";
948 if (err_mask & AC_ERR_DEV)
949 return "device error";
950 return "unknown error";
954 * ata_read_log_page - read a specific log page
955 * @dev: target device
956 * @page: page to read
957 * @buf: buffer to store read page
958 * @sectors: number of sectors to read
960 * Read log page using READ_LOG_EXT command.
962 * LOCKING:
963 * Kernel thread context (may sleep).
965 * RETURNS:
966 * 0 on success, AC_ERR_* mask otherwise.
968 static unsigned int ata_read_log_page(struct ata_device *dev,
969 u8 page, void *buf, unsigned int sectors)
971 struct ata_taskfile tf;
972 unsigned int err_mask;
974 DPRINTK("read log page - page %d\n", page);
976 ata_tf_init(dev, &tf);
977 tf.command = ATA_CMD_READ_LOG_EXT;
978 tf.lbal = page;
979 tf.nsect = sectors;
980 tf.hob_nsect = sectors >> 8;
981 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_LBA48 | ATA_TFLAG_DEVICE;
982 tf.protocol = ATA_PROT_PIO;
984 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
985 buf, sectors * ATA_SECT_SIZE);
987 DPRINTK("EXIT, err_mask=%x\n", err_mask);
988 return err_mask;
992 * ata_eh_read_log_10h - Read log page 10h for NCQ error details
993 * @dev: Device to read log page 10h from
994 * @tag: Resulting tag of the failed command
995 * @tf: Resulting taskfile registers of the failed command
997 * Read log page 10h to obtain NCQ error details and clear error
998 * condition.
1000 * LOCKING:
1001 * Kernel thread context (may sleep).
1003 * RETURNS:
1004 * 0 on success, -errno otherwise.
1006 static int ata_eh_read_log_10h(struct ata_device *dev,
1007 int *tag, struct ata_taskfile *tf)
1009 u8 *buf = dev->ap->sector_buf;
1010 unsigned int err_mask;
1011 u8 csum;
1012 int i;
1014 err_mask = ata_read_log_page(dev, ATA_LOG_SATA_NCQ, buf, 1);
1015 if (err_mask)
1016 return -EIO;
1018 csum = 0;
1019 for (i = 0; i < ATA_SECT_SIZE; i++)
1020 csum += buf[i];
1021 if (csum)
1022 ata_dev_printk(dev, KERN_WARNING,
1023 "invalid checksum 0x%x on log page 10h\n", csum);
1025 if (buf[0] & 0x80)
1026 return -ENOENT;
1028 *tag = buf[0] & 0x1f;
1030 tf->command = buf[2];
1031 tf->feature = buf[3];
1032 tf->lbal = buf[4];
1033 tf->lbam = buf[5];
1034 tf->lbah = buf[6];
1035 tf->device = buf[7];
1036 tf->hob_lbal = buf[8];
1037 tf->hob_lbam = buf[9];
1038 tf->hob_lbah = buf[10];
1039 tf->nsect = buf[12];
1040 tf->hob_nsect = buf[13];
1042 return 0;
1046 * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
1047 * @dev: device to perform REQUEST_SENSE to
1048 * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
1050 * Perform ATAPI REQUEST_SENSE after the device reported CHECK
1051 * SENSE. This function is EH helper.
1053 * LOCKING:
1054 * Kernel thread context (may sleep).
1056 * RETURNS:
1057 * 0 on success, AC_ERR_* mask on failure
1059 static unsigned int atapi_eh_request_sense(struct ata_queued_cmd *qc)
1061 struct ata_device *dev = qc->dev;
1062 unsigned char *sense_buf = qc->scsicmd->sense_buffer;
1063 struct ata_port *ap = dev->ap;
1064 struct ata_taskfile tf;
1065 u8 cdb[ATAPI_CDB_LEN];
1067 DPRINTK("ATAPI request sense\n");
1069 /* FIXME: is this needed? */
1070 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
1072 /* initialize sense_buf with the error register,
1073 * for the case where they are -not- overwritten
1075 sense_buf[0] = 0x70;
1076 sense_buf[2] = qc->result_tf.feature >> 4;
1078 /* some devices time out if garbage left in tf */
1079 ata_tf_init(dev, &tf);
1081 memset(cdb, 0, ATAPI_CDB_LEN);
1082 cdb[0] = REQUEST_SENSE;
1083 cdb[4] = SCSI_SENSE_BUFFERSIZE;
1085 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1086 tf.command = ATA_CMD_PACKET;
1088 /* is it pointless to prefer PIO for "safety reasons"? */
1089 if (ap->flags & ATA_FLAG_PIO_DMA) {
1090 tf.protocol = ATA_PROT_ATAPI_DMA;
1091 tf.feature |= ATAPI_PKT_DMA;
1092 } else {
1093 tf.protocol = ATA_PROT_ATAPI;
1094 tf.lbam = (8 * 1024) & 0xff;
1095 tf.lbah = (8 * 1024) >> 8;
1098 return ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE,
1099 sense_buf, SCSI_SENSE_BUFFERSIZE);
1103 * ata_eh_analyze_serror - analyze SError for a failed port
1104 * @ap: ATA port to analyze SError for
1106 * Analyze SError if available and further determine cause of
1107 * failure.
1109 * LOCKING:
1110 * None.
1112 static void ata_eh_analyze_serror(struct ata_port *ap)
1114 struct ata_eh_context *ehc = &ap->eh_context;
1115 u32 serror = ehc->i.serror;
1116 unsigned int err_mask = 0, action = 0;
1118 if (serror & SERR_PERSISTENT) {
1119 err_mask |= AC_ERR_ATA_BUS;
1120 action |= ATA_EH_HARDRESET;
1122 if (serror &
1123 (SERR_DATA_RECOVERED | SERR_COMM_RECOVERED | SERR_DATA)) {
1124 err_mask |= AC_ERR_ATA_BUS;
1125 action |= ATA_EH_SOFTRESET;
1127 if (serror & SERR_PROTOCOL) {
1128 err_mask |= AC_ERR_HSM;
1129 action |= ATA_EH_SOFTRESET;
1131 if (serror & SERR_INTERNAL) {
1132 err_mask |= AC_ERR_SYSTEM;
1133 action |= ATA_EH_HARDRESET;
1135 if (serror & (SERR_PHYRDY_CHG | SERR_DEV_XCHG))
1136 ata_ehi_hotplugged(&ehc->i);
1138 ehc->i.err_mask |= err_mask;
1139 ehc->i.action |= action;
1143 * ata_eh_analyze_ncq_error - analyze NCQ error
1144 * @ap: ATA port to analyze NCQ error for
1146 * Read log page 10h, determine the offending qc and acquire
1147 * error status TF. For NCQ device errors, all LLDDs have to do
1148 * is setting AC_ERR_DEV in ehi->err_mask. This function takes
1149 * care of the rest.
1151 * LOCKING:
1152 * Kernel thread context (may sleep).
1154 static void ata_eh_analyze_ncq_error(struct ata_port *ap)
1156 struct ata_eh_context *ehc = &ap->eh_context;
1157 struct ata_device *dev = ap->device;
1158 struct ata_queued_cmd *qc;
1159 struct ata_taskfile tf;
1160 int tag, rc;
1162 /* if frozen, we can't do much */
1163 if (ap->pflags & ATA_PFLAG_FROZEN)
1164 return;
1166 /* is it NCQ device error? */
1167 if (!ap->sactive || !(ehc->i.err_mask & AC_ERR_DEV))
1168 return;
1170 /* has LLDD analyzed already? */
1171 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1172 qc = __ata_qc_from_tag(ap, tag);
1174 if (!(qc->flags & ATA_QCFLAG_FAILED))
1175 continue;
1177 if (qc->err_mask)
1178 return;
1181 /* okay, this error is ours */
1182 rc = ata_eh_read_log_10h(dev, &tag, &tf);
1183 if (rc) {
1184 ata_port_printk(ap, KERN_ERR, "failed to read log page 10h "
1185 "(errno=%d)\n", rc);
1186 return;
1189 if (!(ap->sactive & (1 << tag))) {
1190 ata_port_printk(ap, KERN_ERR, "log page 10h reported "
1191 "inactive tag %d\n", tag);
1192 return;
1195 /* we've got the perpetrator, condemn it */
1196 qc = __ata_qc_from_tag(ap, tag);
1197 memcpy(&qc->result_tf, &tf, sizeof(tf));
1198 qc->err_mask |= AC_ERR_DEV | AC_ERR_NCQ;
1199 ehc->i.err_mask &= ~AC_ERR_DEV;
1203 * ata_eh_analyze_tf - analyze taskfile of a failed qc
1204 * @qc: qc to analyze
1205 * @tf: Taskfile registers to analyze
1207 * Analyze taskfile of @qc and further determine cause of
1208 * failure. This function also requests ATAPI sense data if
1209 * avaliable.
1211 * LOCKING:
1212 * Kernel thread context (may sleep).
1214 * RETURNS:
1215 * Determined recovery action
1217 static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc,
1218 const struct ata_taskfile *tf)
1220 unsigned int tmp, action = 0;
1221 u8 stat = tf->command, err = tf->feature;
1223 if ((stat & (ATA_BUSY | ATA_DRQ | ATA_DRDY)) != ATA_DRDY) {
1224 qc->err_mask |= AC_ERR_HSM;
1225 return ATA_EH_SOFTRESET;
1228 if (stat & (ATA_ERR | ATA_DF))
1229 qc->err_mask |= AC_ERR_DEV;
1230 else
1231 return 0;
1233 switch (qc->dev->class) {
1234 case ATA_DEV_ATA:
1235 if (err & ATA_ICRC)
1236 qc->err_mask |= AC_ERR_ATA_BUS;
1237 if (err & ATA_UNC)
1238 qc->err_mask |= AC_ERR_MEDIA;
1239 if (err & ATA_IDNF)
1240 qc->err_mask |= AC_ERR_INVALID;
1241 break;
1243 case ATA_DEV_ATAPI:
1244 if (!(qc->ap->pflags & ATA_PFLAG_FROZEN)) {
1245 tmp = atapi_eh_request_sense(qc);
1246 if (!tmp) {
1247 /* ATA_QCFLAG_SENSE_VALID is used to
1248 * tell atapi_qc_complete() that sense
1249 * data is already valid.
1251 * TODO: interpret sense data and set
1252 * appropriate err_mask.
1254 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1255 } else
1256 qc->err_mask |= tmp;
1260 if (qc->err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT | AC_ERR_ATA_BUS))
1261 action |= ATA_EH_SOFTRESET;
1263 return action;
1266 static int ata_eh_categorize_error(int is_io, unsigned int err_mask)
1268 if (err_mask & AC_ERR_ATA_BUS)
1269 return 1;
1271 if (err_mask & AC_ERR_TIMEOUT)
1272 return 2;
1274 if (is_io) {
1275 if (err_mask & AC_ERR_HSM)
1276 return 2;
1277 if ((err_mask &
1278 (AC_ERR_DEV|AC_ERR_MEDIA|AC_ERR_INVALID)) == AC_ERR_DEV)
1279 return 3;
1282 return 0;
1285 struct speed_down_verdict_arg {
1286 u64 since;
1287 int nr_errors[4];
1290 static int speed_down_verdict_cb(struct ata_ering_entry *ent, void *void_arg)
1292 struct speed_down_verdict_arg *arg = void_arg;
1293 int cat = ata_eh_categorize_error(ent->is_io, ent->err_mask);
1295 if (ent->timestamp < arg->since)
1296 return -1;
1298 arg->nr_errors[cat]++;
1299 return 0;
1303 * ata_eh_speed_down_verdict - Determine speed down verdict
1304 * @dev: Device of interest
1306 * This function examines error ring of @dev and determines
1307 * whether NCQ needs to be turned off, transfer speed should be
1308 * stepped down, or falling back to PIO is necessary.
1310 * Cat-1 is ATA_BUS error for any command.
1312 * Cat-2 is TIMEOUT for any command or HSM violation for known
1313 * supported commands.
1315 * Cat-3 is is unclassified DEV error for known supported
1316 * command.
1318 * NCQ needs to be turned off if there have been more than 3
1319 * Cat-2 + Cat-3 errors during last 10 minutes.
1321 * Speed down is necessary if there have been more than 3 Cat-1 +
1322 * Cat-2 errors or 10 Cat-3 errors during last 10 minutes.
1324 * Falling back to PIO mode is necessary if there have been more
1325 * than 10 Cat-1 + Cat-2 + Cat-3 errors during last 5 minutes.
1327 * LOCKING:
1328 * Inherited from caller.
1330 * RETURNS:
1331 * OR of ATA_EH_SPDN_* flags.
1333 static unsigned int ata_eh_speed_down_verdict(struct ata_device *dev)
1335 const u64 j5mins = 5LLU * 60 * HZ, j10mins = 10LLU * 60 * HZ;
1336 u64 j64 = get_jiffies_64();
1337 struct speed_down_verdict_arg arg;
1338 unsigned int verdict = 0;
1340 /* scan past 10 mins of error history */
1341 memset(&arg, 0, sizeof(arg));
1342 arg.since = j64 - min(j64, j10mins);
1343 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
1345 if (arg.nr_errors[2] + arg.nr_errors[3] > 3)
1346 verdict |= ATA_EH_SPDN_NCQ_OFF;
1347 if (arg.nr_errors[1] + arg.nr_errors[2] > 3 || arg.nr_errors[3] > 10)
1348 verdict |= ATA_EH_SPDN_SPEED_DOWN;
1350 /* scan past 3 mins of error history */
1351 memset(&arg, 0, sizeof(arg));
1352 arg.since = j64 - min(j64, j5mins);
1353 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
1355 if (arg.nr_errors[1] + arg.nr_errors[2] + arg.nr_errors[3] > 10)
1356 verdict |= ATA_EH_SPDN_FALLBACK_TO_PIO;
1358 return verdict;
1362 * ata_eh_speed_down - record error and speed down if necessary
1363 * @dev: Failed device
1364 * @is_io: Did the device fail during normal IO?
1365 * @err_mask: err_mask of the error
1367 * Record error and examine error history to determine whether
1368 * adjusting transmission speed is necessary. It also sets
1369 * transmission limits appropriately if such adjustment is
1370 * necessary.
1372 * LOCKING:
1373 * Kernel thread context (may sleep).
1375 * RETURNS:
1376 * Determined recovery action.
1378 static unsigned int ata_eh_speed_down(struct ata_device *dev, int is_io,
1379 unsigned int err_mask)
1381 unsigned int verdict;
1382 unsigned int action = 0;
1384 /* don't bother if Cat-0 error */
1385 if (ata_eh_categorize_error(is_io, err_mask) == 0)
1386 return 0;
1388 /* record error and determine whether speed down is necessary */
1389 ata_ering_record(&dev->ering, is_io, err_mask);
1390 verdict = ata_eh_speed_down_verdict(dev);
1392 /* turn off NCQ? */
1393 if ((verdict & ATA_EH_SPDN_NCQ_OFF) &&
1394 (dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ |
1395 ATA_DFLAG_NCQ_OFF)) == ATA_DFLAG_NCQ) {
1396 dev->flags |= ATA_DFLAG_NCQ_OFF;
1397 ata_dev_printk(dev, KERN_WARNING,
1398 "NCQ disabled due to excessive errors\n");
1399 goto done;
1402 /* speed down? */
1403 if (verdict & ATA_EH_SPDN_SPEED_DOWN) {
1404 /* speed down SATA link speed if possible */
1405 if (sata_down_spd_limit(dev->ap) == 0) {
1406 action |= ATA_EH_HARDRESET;
1407 goto done;
1410 /* lower transfer mode */
1411 if (dev->spdn_cnt < 2) {
1412 static const int dma_dnxfer_sel[] =
1413 { ATA_DNXFER_DMA, ATA_DNXFER_40C };
1414 static const int pio_dnxfer_sel[] =
1415 { ATA_DNXFER_PIO, ATA_DNXFER_FORCE_PIO0 };
1416 int sel;
1418 if (dev->xfer_shift != ATA_SHIFT_PIO)
1419 sel = dma_dnxfer_sel[dev->spdn_cnt];
1420 else
1421 sel = pio_dnxfer_sel[dev->spdn_cnt];
1423 dev->spdn_cnt++;
1425 if (ata_down_xfermask_limit(dev, sel) == 0) {
1426 action |= ATA_EH_SOFTRESET;
1427 goto done;
1432 /* Fall back to PIO? Slowing down to PIO is meaningless for
1433 * SATA. Consider it only for PATA.
1435 if ((verdict & ATA_EH_SPDN_FALLBACK_TO_PIO) && (dev->spdn_cnt >= 2) &&
1436 (dev->ap->cbl != ATA_CBL_SATA) &&
1437 (dev->xfer_shift != ATA_SHIFT_PIO)) {
1438 if (ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO) == 0) {
1439 dev->spdn_cnt = 0;
1440 action |= ATA_EH_SOFTRESET;
1441 goto done;
1445 return 0;
1446 done:
1447 /* device has been slowed down, blow error history */
1448 ata_ering_clear(&dev->ering);
1449 return action;
1453 * ata_eh_autopsy - analyze error and determine recovery action
1454 * @ap: ATA port to perform autopsy on
1456 * Analyze why @ap failed and determine which recovery action is
1457 * needed. This function also sets more detailed AC_ERR_* values
1458 * and fills sense data for ATAPI CHECK SENSE.
1460 * LOCKING:
1461 * Kernel thread context (may sleep).
1463 static void ata_eh_autopsy(struct ata_port *ap)
1465 struct ata_eh_context *ehc = &ap->eh_context;
1466 unsigned int all_err_mask = 0;
1467 int tag, is_io = 0;
1468 u32 serror;
1469 int rc;
1471 DPRINTK("ENTER\n");
1473 if (ehc->i.flags & ATA_EHI_NO_AUTOPSY)
1474 return;
1476 /* obtain and analyze SError */
1477 rc = sata_scr_read(ap, SCR_ERROR, &serror);
1478 if (rc == 0) {
1479 ehc->i.serror |= serror;
1480 ata_eh_analyze_serror(ap);
1481 } else if (rc != -EOPNOTSUPP)
1482 ehc->i.action |= ATA_EH_HARDRESET;
1484 /* analyze NCQ failure */
1485 ata_eh_analyze_ncq_error(ap);
1487 /* any real error trumps AC_ERR_OTHER */
1488 if (ehc->i.err_mask & ~AC_ERR_OTHER)
1489 ehc->i.err_mask &= ~AC_ERR_OTHER;
1491 all_err_mask |= ehc->i.err_mask;
1493 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1494 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1496 if (!(qc->flags & ATA_QCFLAG_FAILED))
1497 continue;
1499 /* inherit upper level err_mask */
1500 qc->err_mask |= ehc->i.err_mask;
1502 /* analyze TF */
1503 ehc->i.action |= ata_eh_analyze_tf(qc, &qc->result_tf);
1505 /* DEV errors are probably spurious in case of ATA_BUS error */
1506 if (qc->err_mask & AC_ERR_ATA_BUS)
1507 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_MEDIA |
1508 AC_ERR_INVALID);
1510 /* any real error trumps unknown error */
1511 if (qc->err_mask & ~AC_ERR_OTHER)
1512 qc->err_mask &= ~AC_ERR_OTHER;
1514 /* SENSE_VALID trumps dev/unknown error and revalidation */
1515 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
1516 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER);
1517 ehc->i.action &= ~ATA_EH_REVALIDATE;
1520 /* accumulate error info */
1521 ehc->i.dev = qc->dev;
1522 all_err_mask |= qc->err_mask;
1523 if (qc->flags & ATA_QCFLAG_IO)
1524 is_io = 1;
1527 /* enforce default EH actions */
1528 if (ap->pflags & ATA_PFLAG_FROZEN ||
1529 all_err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT))
1530 ehc->i.action |= ATA_EH_SOFTRESET;
1531 else if (all_err_mask)
1532 ehc->i.action |= ATA_EH_REVALIDATE;
1534 /* if we have offending qcs and the associated failed device */
1535 if (ehc->i.dev) {
1536 /* speed down */
1537 ehc->i.action |= ata_eh_speed_down(ehc->i.dev, is_io,
1538 all_err_mask);
1540 /* perform per-dev EH action only on the offending device */
1541 ehc->i.dev_action[ehc->i.dev->devno] |=
1542 ehc->i.action & ATA_EH_PERDEV_MASK;
1543 ehc->i.action &= ~ATA_EH_PERDEV_MASK;
1546 DPRINTK("EXIT\n");
1550 * ata_eh_report - report error handling to user
1551 * @ap: ATA port EH is going on
1553 * Report EH to user.
1555 * LOCKING:
1556 * None.
1558 static void ata_eh_report(struct ata_port *ap)
1560 struct ata_eh_context *ehc = &ap->eh_context;
1561 const char *frozen, *desc;
1562 int tag, nr_failed = 0;
1564 desc = NULL;
1565 if (ehc->i.desc[0] != '\0')
1566 desc = ehc->i.desc;
1568 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1569 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1571 if (!(qc->flags & ATA_QCFLAG_FAILED))
1572 continue;
1573 if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask)
1574 continue;
1576 nr_failed++;
1579 if (!nr_failed && !ehc->i.err_mask)
1580 return;
1582 frozen = "";
1583 if (ap->pflags & ATA_PFLAG_FROZEN)
1584 frozen = " frozen";
1586 if (ehc->i.dev) {
1587 ata_dev_printk(ehc->i.dev, KERN_ERR, "exception Emask 0x%x "
1588 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
1589 ehc->i.err_mask, ap->sactive, ehc->i.serror,
1590 ehc->i.action, frozen);
1591 if (desc)
1592 ata_dev_printk(ehc->i.dev, KERN_ERR, "%s\n", desc);
1593 } else {
1594 ata_port_printk(ap, KERN_ERR, "exception Emask 0x%x "
1595 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
1596 ehc->i.err_mask, ap->sactive, ehc->i.serror,
1597 ehc->i.action, frozen);
1598 if (desc)
1599 ata_port_printk(ap, KERN_ERR, "%s\n", desc);
1602 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1603 static const char *dma_str[] = {
1604 [DMA_BIDIRECTIONAL] = "bidi",
1605 [DMA_TO_DEVICE] = "out",
1606 [DMA_FROM_DEVICE] = "in",
1607 [DMA_NONE] = "",
1609 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1610 struct ata_taskfile *cmd = &qc->tf, *res = &qc->result_tf;
1612 if (!(qc->flags & ATA_QCFLAG_FAILED) || !qc->err_mask)
1613 continue;
1615 ata_dev_printk(qc->dev, KERN_ERR,
1616 "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
1617 "tag %d cdb 0x%x data %u %s\n "
1618 "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
1619 "Emask 0x%x (%s)%s\n",
1620 cmd->command, cmd->feature, cmd->nsect,
1621 cmd->lbal, cmd->lbam, cmd->lbah,
1622 cmd->hob_feature, cmd->hob_nsect,
1623 cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah,
1624 cmd->device, qc->tag, qc->cdb[0], qc->nbytes,
1625 dma_str[qc->dma_dir],
1626 res->command, res->feature, res->nsect,
1627 res->lbal, res->lbam, res->lbah,
1628 res->hob_feature, res->hob_nsect,
1629 res->hob_lbal, res->hob_lbam, res->hob_lbah,
1630 res->device, qc->err_mask, ata_err_string(qc->err_mask),
1631 qc->err_mask & AC_ERR_NCQ ? " <F>" : "");
1635 static int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
1636 unsigned int *classes, unsigned long deadline)
1638 int i, rc;
1640 for (i = 0; i < ATA_MAX_DEVICES; i++)
1641 classes[i] = ATA_DEV_UNKNOWN;
1643 rc = reset(ap, classes, deadline);
1644 if (rc)
1645 return rc;
1647 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
1648 * is complete and convert all ATA_DEV_UNKNOWN to
1649 * ATA_DEV_NONE.
1651 for (i = 0; i < ATA_MAX_DEVICES; i++)
1652 if (classes[i] != ATA_DEV_UNKNOWN)
1653 break;
1655 if (i < ATA_MAX_DEVICES)
1656 for (i = 0; i < ATA_MAX_DEVICES; i++)
1657 if (classes[i] == ATA_DEV_UNKNOWN)
1658 classes[i] = ATA_DEV_NONE;
1660 return 0;
1663 static int ata_eh_followup_srst_needed(int rc, int classify,
1664 const unsigned int *classes)
1666 if (rc == -EAGAIN)
1667 return 1;
1668 if (rc != 0)
1669 return 0;
1670 if (classify && classes[0] == ATA_DEV_UNKNOWN)
1671 return 1;
1672 return 0;
1675 static int ata_eh_reset(struct ata_port *ap, int classify,
1676 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
1677 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
1679 struct ata_eh_context *ehc = &ap->eh_context;
1680 unsigned int *classes = ehc->classes;
1681 int verbose = !(ehc->i.flags & ATA_EHI_QUIET);
1682 int try = 0;
1683 unsigned long deadline;
1684 unsigned int action;
1685 ata_reset_fn_t reset;
1686 int i, rc;
1688 /* about to reset */
1689 ata_eh_about_to_do(ap, NULL, ehc->i.action & ATA_EH_RESET_MASK);
1691 /* Determine which reset to use and record in ehc->i.action.
1692 * prereset() may examine and modify it.
1694 action = ehc->i.action;
1695 ehc->i.action &= ~ATA_EH_RESET_MASK;
1696 if (softreset && (!hardreset || (!sata_set_spd_needed(ap) &&
1697 !(action & ATA_EH_HARDRESET))))
1698 ehc->i.action |= ATA_EH_SOFTRESET;
1699 else
1700 ehc->i.action |= ATA_EH_HARDRESET;
1702 if (prereset) {
1703 rc = prereset(ap, jiffies + ATA_EH_PRERESET_TIMEOUT);
1704 if (rc) {
1705 if (rc == -ENOENT) {
1706 ata_port_printk(ap, KERN_DEBUG,
1707 "port disabled. ignoring.\n");
1708 ap->eh_context.i.action &= ~ATA_EH_RESET_MASK;
1710 for (i = 0; i < ATA_MAX_DEVICES; i++)
1711 classes[i] = ATA_DEV_NONE;
1713 rc = 0;
1714 } else
1715 ata_port_printk(ap, KERN_ERR,
1716 "prereset failed (errno=%d)\n", rc);
1717 goto out;
1721 /* prereset() might have modified ehc->i.action */
1722 if (ehc->i.action & ATA_EH_HARDRESET)
1723 reset = hardreset;
1724 else if (ehc->i.action & ATA_EH_SOFTRESET)
1725 reset = softreset;
1726 else {
1727 /* prereset told us not to reset, bang classes and return */
1728 for (i = 0; i < ATA_MAX_DEVICES; i++)
1729 classes[i] = ATA_DEV_NONE;
1730 rc = 0;
1731 goto out;
1734 /* did prereset() screw up? if so, fix up to avoid oopsing */
1735 if (!reset) {
1736 if (softreset)
1737 reset = softreset;
1738 else
1739 reset = hardreset;
1742 retry:
1743 deadline = jiffies + ata_eh_reset_timeouts[try++];
1745 /* shut up during boot probing */
1746 if (verbose)
1747 ata_port_printk(ap, KERN_INFO, "%s resetting port\n",
1748 reset == softreset ? "soft" : "hard");
1750 /* mark that this EH session started with reset */
1751 if (reset == hardreset)
1752 ehc->i.flags |= ATA_EHI_DID_HARDRESET;
1753 else
1754 ehc->i.flags |= ATA_EHI_DID_SOFTRESET;
1756 rc = ata_do_reset(ap, reset, classes, deadline);
1758 if (reset == hardreset &&
1759 ata_eh_followup_srst_needed(rc, classify, classes)) {
1760 /* okay, let's do follow-up softreset */
1761 reset = softreset;
1763 if (!reset) {
1764 ata_port_printk(ap, KERN_ERR,
1765 "follow-up softreset required "
1766 "but no softreset avaliable\n");
1767 rc = -EINVAL;
1768 goto out;
1771 ata_eh_about_to_do(ap, NULL, ATA_EH_RESET_MASK);
1772 rc = ata_do_reset(ap, reset, classes, deadline);
1774 if (rc == 0 && classify &&
1775 classes[0] == ATA_DEV_UNKNOWN) {
1776 ata_port_printk(ap, KERN_ERR,
1777 "classification failed\n");
1778 rc = -EINVAL;
1779 goto out;
1783 if (rc && try < ARRAY_SIZE(ata_eh_reset_timeouts)) {
1784 unsigned long now = jiffies;
1786 if (time_before(now, deadline)) {
1787 unsigned long delta = deadline - jiffies;
1789 ata_port_printk(ap, KERN_WARNING, "reset failed "
1790 "(errno=%d), retrying in %u secs\n",
1791 rc, (jiffies_to_msecs(delta) + 999) / 1000);
1793 schedule_timeout_uninterruptible(delta);
1796 if (rc == -EPIPE ||
1797 try == ARRAY_SIZE(ata_eh_reset_timeouts) - 1)
1798 sata_down_spd_limit(ap);
1799 if (hardreset)
1800 reset = hardreset;
1801 goto retry;
1804 if (rc == 0) {
1805 u32 sstatus;
1807 /* After the reset, the device state is PIO 0 and the
1808 * controller state is undefined. Record the mode.
1810 for (i = 0; i < ATA_MAX_DEVICES; i++)
1811 ap->device[i].pio_mode = XFER_PIO_0;
1813 /* record current link speed */
1814 if (sata_scr_read(ap, SCR_STATUS, &sstatus) == 0)
1815 ap->sata_spd = (sstatus >> 4) & 0xf;
1817 if (postreset)
1818 postreset(ap, classes);
1820 /* reset successful, schedule revalidation */
1821 ata_eh_done(ap, NULL, ehc->i.action & ATA_EH_RESET_MASK);
1822 ehc->i.action |= ATA_EH_REVALIDATE;
1824 out:
1825 /* clear hotplug flag */
1826 ehc->i.flags &= ~ATA_EHI_HOTPLUGGED;
1827 return rc;
1830 static int ata_eh_revalidate_and_attach(struct ata_port *ap,
1831 struct ata_device **r_failed_dev)
1833 struct ata_eh_context *ehc = &ap->eh_context;
1834 struct ata_device *dev;
1835 unsigned int new_mask = 0;
1836 unsigned long flags;
1837 int i, rc = 0;
1839 DPRINTK("ENTER\n");
1841 /* For PATA drive side cable detection to work, IDENTIFY must
1842 * be done backwards such that PDIAG- is released by the slave
1843 * device before the master device is identified.
1845 for (i = ATA_MAX_DEVICES - 1; i >= 0; i--) {
1846 unsigned int action, readid_flags = 0;
1848 dev = &ap->device[i];
1849 action = ata_eh_dev_action(dev);
1851 if (ehc->i.flags & ATA_EHI_DID_RESET)
1852 readid_flags |= ATA_READID_POSTRESET;
1854 if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) {
1855 if (ata_port_offline(ap)) {
1856 rc = -EIO;
1857 goto err;
1860 ata_eh_about_to_do(ap, dev, ATA_EH_REVALIDATE);
1861 rc = ata_dev_revalidate(dev, readid_flags);
1862 if (rc)
1863 goto err;
1865 ata_eh_done(ap, dev, ATA_EH_REVALIDATE);
1867 /* Configuration may have changed, reconfigure
1868 * transfer mode.
1870 ehc->i.flags |= ATA_EHI_SETMODE;
1872 /* schedule the scsi_rescan_device() here */
1873 queue_work(ata_aux_wq, &(ap->scsi_rescan_task));
1874 } else if (dev->class == ATA_DEV_UNKNOWN &&
1875 ehc->tries[dev->devno] &&
1876 ata_class_enabled(ehc->classes[dev->devno])) {
1877 dev->class = ehc->classes[dev->devno];
1879 rc = ata_dev_read_id(dev, &dev->class, readid_flags,
1880 dev->id);
1881 switch (rc) {
1882 case 0:
1883 new_mask |= 1 << i;
1884 break;
1885 case -ENOENT:
1886 /* IDENTIFY was issued to non-existent
1887 * device. No need to reset. Just
1888 * thaw and kill the device.
1890 ata_eh_thaw_port(ap);
1891 dev->class = ATA_DEV_UNKNOWN;
1892 break;
1893 default:
1894 dev->class = ATA_DEV_UNKNOWN;
1895 goto err;
1900 /* PDIAG- should have been released, ask cable type if post-reset */
1901 if ((ehc->i.flags & ATA_EHI_DID_RESET) && ap->ops->cable_detect)
1902 ap->cbl = ap->ops->cable_detect(ap);
1904 /* Configure new devices forward such that user doesn't see
1905 * device detection messages backwards.
1907 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1908 dev = &ap->device[i];
1910 if (!(new_mask & (1 << i)))
1911 continue;
1913 ehc->i.flags |= ATA_EHI_PRINTINFO;
1914 rc = ata_dev_configure(dev);
1915 ehc->i.flags &= ~ATA_EHI_PRINTINFO;
1916 if (rc)
1917 goto err;
1919 spin_lock_irqsave(ap->lock, flags);
1920 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
1921 spin_unlock_irqrestore(ap->lock, flags);
1923 /* new device discovered, configure xfermode */
1924 ehc->i.flags |= ATA_EHI_SETMODE;
1927 return 0;
1929 err:
1930 *r_failed_dev = dev;
1931 DPRINTK("EXIT rc=%d\n", rc);
1932 return rc;
1935 static int ata_port_nr_enabled(struct ata_port *ap)
1937 int i, cnt = 0;
1939 for (i = 0; i < ATA_MAX_DEVICES; i++)
1940 if (ata_dev_enabled(&ap->device[i]))
1941 cnt++;
1942 return cnt;
1945 static int ata_port_nr_vacant(struct ata_port *ap)
1947 int i, cnt = 0;
1949 for (i = 0; i < ATA_MAX_DEVICES; i++)
1950 if (ap->device[i].class == ATA_DEV_UNKNOWN)
1951 cnt++;
1952 return cnt;
1955 static int ata_eh_skip_recovery(struct ata_port *ap)
1957 struct ata_eh_context *ehc = &ap->eh_context;
1958 int i;
1960 /* thaw frozen port, resume link and recover failed devices */
1961 if ((ap->pflags & ATA_PFLAG_FROZEN) ||
1962 (ehc->i.flags & ATA_EHI_RESUME_LINK) || ata_port_nr_enabled(ap))
1963 return 0;
1965 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
1966 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1967 struct ata_device *dev = &ap->device[i];
1969 if (dev->class == ATA_DEV_UNKNOWN &&
1970 ehc->classes[dev->devno] != ATA_DEV_NONE)
1971 return 0;
1974 return 1;
1977 static void ata_eh_handle_dev_fail(struct ata_device *dev, int err)
1979 struct ata_port *ap = dev->ap;
1980 struct ata_eh_context *ehc = &ap->eh_context;
1982 ehc->tries[dev->devno]--;
1984 switch (err) {
1985 case -ENODEV:
1986 /* device missing or wrong IDENTIFY data, schedule probing */
1987 ehc->i.probe_mask |= (1 << dev->devno);
1988 case -EINVAL:
1989 /* give it just one more chance */
1990 ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1);
1991 case -EIO:
1992 if (ehc->tries[dev->devno] == 1) {
1993 /* This is the last chance, better to slow
1994 * down than lose it.
1996 sata_down_spd_limit(ap);
1997 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2001 if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) {
2002 /* disable device if it has used up all its chances */
2003 ata_dev_disable(dev);
2005 /* detach if offline */
2006 if (ata_port_offline(ap))
2007 ata_eh_detach_dev(dev);
2009 /* probe if requested */
2010 if ((ehc->i.probe_mask & (1 << dev->devno)) &&
2011 !(ehc->did_probe_mask & (1 << dev->devno))) {
2012 ata_eh_detach_dev(dev);
2013 ata_dev_init(dev);
2015 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
2016 ehc->did_probe_mask |= (1 << dev->devno);
2017 ehc->i.action |= ATA_EH_SOFTRESET;
2019 } else {
2020 /* soft didn't work? be haaaaard */
2021 if (ehc->i.flags & ATA_EHI_DID_RESET)
2022 ehc->i.action |= ATA_EH_HARDRESET;
2023 else
2024 ehc->i.action |= ATA_EH_SOFTRESET;
2029 * ata_eh_recover - recover host port after error
2030 * @ap: host port to recover
2031 * @prereset: prereset method (can be NULL)
2032 * @softreset: softreset method (can be NULL)
2033 * @hardreset: hardreset method (can be NULL)
2034 * @postreset: postreset method (can be NULL)
2036 * This is the alpha and omega, eum and yang, heart and soul of
2037 * libata exception handling. On entry, actions required to
2038 * recover the port and hotplug requests are recorded in
2039 * eh_context. This function executes all the operations with
2040 * appropriate retrials and fallbacks to resurrect failed
2041 * devices, detach goners and greet newcomers.
2043 * LOCKING:
2044 * Kernel thread context (may sleep).
2046 * RETURNS:
2047 * 0 on success, -errno on failure.
2049 static int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
2050 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2051 ata_postreset_fn_t postreset)
2053 struct ata_eh_context *ehc = &ap->eh_context;
2054 struct ata_device *dev;
2055 int i, rc;
2057 DPRINTK("ENTER\n");
2059 /* prep for recovery */
2060 for (i = 0; i < ATA_MAX_DEVICES; i++) {
2061 dev = &ap->device[i];
2063 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
2065 /* collect port action mask recorded in dev actions */
2066 ehc->i.action |= ehc->i.dev_action[i] & ~ATA_EH_PERDEV_MASK;
2067 ehc->i.dev_action[i] &= ATA_EH_PERDEV_MASK;
2069 /* process hotplug request */
2070 if (dev->flags & ATA_DFLAG_DETACH)
2071 ata_eh_detach_dev(dev);
2073 if (!ata_dev_enabled(dev) &&
2074 ((ehc->i.probe_mask & (1 << dev->devno)) &&
2075 !(ehc->did_probe_mask & (1 << dev->devno)))) {
2076 ata_eh_detach_dev(dev);
2077 ata_dev_init(dev);
2078 ehc->did_probe_mask |= (1 << dev->devno);
2079 ehc->i.action |= ATA_EH_SOFTRESET;
2083 retry:
2084 rc = 0;
2086 /* if UNLOADING, finish immediately */
2087 if (ap->pflags & ATA_PFLAG_UNLOADING)
2088 goto out;
2090 /* skip EH if possible. */
2091 if (ata_eh_skip_recovery(ap))
2092 ehc->i.action = 0;
2094 for (i = 0; i < ATA_MAX_DEVICES; i++)
2095 ehc->classes[i] = ATA_DEV_UNKNOWN;
2097 /* reset */
2098 if (ehc->i.action & ATA_EH_RESET_MASK) {
2099 ata_eh_freeze_port(ap);
2101 rc = ata_eh_reset(ap, ata_port_nr_vacant(ap), prereset,
2102 softreset, hardreset, postreset);
2103 if (rc) {
2104 ata_port_printk(ap, KERN_ERR,
2105 "reset failed, giving up\n");
2106 goto out;
2109 ata_eh_thaw_port(ap);
2112 /* revalidate existing devices and attach new ones */
2113 rc = ata_eh_revalidate_and_attach(ap, &dev);
2114 if (rc)
2115 goto dev_fail;
2117 /* configure transfer mode if necessary */
2118 if (ehc->i.flags & ATA_EHI_SETMODE) {
2119 rc = ata_set_mode(ap, &dev);
2120 if (rc)
2121 goto dev_fail;
2122 ehc->i.flags &= ~ATA_EHI_SETMODE;
2125 goto out;
2127 dev_fail:
2128 ata_eh_handle_dev_fail(dev, rc);
2130 if (ata_port_nr_enabled(ap)) {
2131 ata_port_printk(ap, KERN_WARNING, "failed to recover some "
2132 "devices, retrying in 5 secs\n");
2133 ssleep(5);
2134 } else {
2135 /* no device left, repeat fast */
2136 msleep(500);
2139 goto retry;
2141 out:
2142 if (rc) {
2143 for (i = 0; i < ATA_MAX_DEVICES; i++)
2144 ata_dev_disable(&ap->device[i]);
2147 DPRINTK("EXIT, rc=%d\n", rc);
2148 return rc;
2152 * ata_eh_finish - finish up EH
2153 * @ap: host port to finish EH for
2155 * Recovery is complete. Clean up EH states and retry or finish
2156 * failed qcs.
2158 * LOCKING:
2159 * None.
2161 static void ata_eh_finish(struct ata_port *ap)
2163 int tag;
2165 /* retry or finish qcs */
2166 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
2167 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
2169 if (!(qc->flags & ATA_QCFLAG_FAILED))
2170 continue;
2172 if (qc->err_mask) {
2173 /* FIXME: Once EH migration is complete,
2174 * generate sense data in this function,
2175 * considering both err_mask and tf.
2177 if (qc->err_mask & AC_ERR_INVALID)
2178 ata_eh_qc_complete(qc);
2179 else
2180 ata_eh_qc_retry(qc);
2181 } else {
2182 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
2183 ata_eh_qc_complete(qc);
2184 } else {
2185 /* feed zero TF to sense generation */
2186 memset(&qc->result_tf, 0, sizeof(qc->result_tf));
2187 ata_eh_qc_retry(qc);
2194 * ata_do_eh - do standard error handling
2195 * @ap: host port to handle error for
2196 * @prereset: prereset method (can be NULL)
2197 * @softreset: softreset method (can be NULL)
2198 * @hardreset: hardreset method (can be NULL)
2199 * @postreset: postreset method (can be NULL)
2201 * Perform standard error handling sequence.
2203 * LOCKING:
2204 * Kernel thread context (may sleep).
2206 void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
2207 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2208 ata_postreset_fn_t postreset)
2210 ata_eh_autopsy(ap);
2211 ata_eh_report(ap);
2212 ata_eh_recover(ap, prereset, softreset, hardreset, postreset);
2213 ata_eh_finish(ap);
2216 #ifdef CONFIG_PM
2218 * ata_eh_handle_port_suspend - perform port suspend operation
2219 * @ap: port to suspend
2221 * Suspend @ap.
2223 * LOCKING:
2224 * Kernel thread context (may sleep).
2226 static void ata_eh_handle_port_suspend(struct ata_port *ap)
2228 unsigned long flags;
2229 int rc = 0;
2231 /* are we suspending? */
2232 spin_lock_irqsave(ap->lock, flags);
2233 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2234 ap->pm_mesg.event == PM_EVENT_ON) {
2235 spin_unlock_irqrestore(ap->lock, flags);
2236 return;
2238 spin_unlock_irqrestore(ap->lock, flags);
2240 WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED);
2242 /* tell ACPI we're suspending */
2243 rc = ata_acpi_on_suspend(ap);
2244 if (rc)
2245 goto out;
2247 /* suspend */
2248 ata_eh_freeze_port(ap);
2250 if (ap->ops->port_suspend)
2251 rc = ap->ops->port_suspend(ap, ap->pm_mesg);
2253 out:
2254 /* report result */
2255 spin_lock_irqsave(ap->lock, flags);
2257 ap->pflags &= ~ATA_PFLAG_PM_PENDING;
2258 if (rc == 0)
2259 ap->pflags |= ATA_PFLAG_SUSPENDED;
2260 else if (ap->pflags & ATA_PFLAG_FROZEN)
2261 ata_port_schedule_eh(ap);
2263 if (ap->pm_result) {
2264 *ap->pm_result = rc;
2265 ap->pm_result = NULL;
2268 spin_unlock_irqrestore(ap->lock, flags);
2270 return;
2274 * ata_eh_handle_port_resume - perform port resume operation
2275 * @ap: port to resume
2277 * Resume @ap.
2279 * LOCKING:
2280 * Kernel thread context (may sleep).
2282 static void ata_eh_handle_port_resume(struct ata_port *ap)
2284 unsigned long flags;
2285 int rc = 0;
2287 /* are we resuming? */
2288 spin_lock_irqsave(ap->lock, flags);
2289 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2290 ap->pm_mesg.event != PM_EVENT_ON) {
2291 spin_unlock_irqrestore(ap->lock, flags);
2292 return;
2294 spin_unlock_irqrestore(ap->lock, flags);
2296 WARN_ON(!(ap->pflags & ATA_PFLAG_SUSPENDED));
2298 if (ap->ops->port_resume)
2299 rc = ap->ops->port_resume(ap);
2301 /* tell ACPI that we're resuming */
2302 ata_acpi_on_resume(ap);
2304 /* report result */
2305 spin_lock_irqsave(ap->lock, flags);
2306 ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED);
2307 if (ap->pm_result) {
2308 *ap->pm_result = rc;
2309 ap->pm_result = NULL;
2311 spin_unlock_irqrestore(ap->lock, flags);
2313 #endif /* CONFIG_PM */