libata: Trim trailing whitespace
[linux-2.6/x86.git] / drivers / ata / libata-eh.c
blobd8070989a39f5881ab43bbc99b2adcd2ccd453e5
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_ering_record(struct ata_ering *ering, int is_io,
89 unsigned int err_mask)
91 struct ata_ering_entry *ent;
93 WARN_ON(!err_mask);
95 ering->cursor++;
96 ering->cursor %= ATA_ERING_SIZE;
98 ent = &ering->ring[ering->cursor];
99 ent->is_io = is_io;
100 ent->err_mask = err_mask;
101 ent->timestamp = get_jiffies_64();
104 static void ata_ering_clear(struct ata_ering *ering)
106 memset(ering, 0, sizeof(*ering));
109 static int ata_ering_map(struct ata_ering *ering,
110 int (*map_fn)(struct ata_ering_entry *, void *),
111 void *arg)
113 int idx, rc = 0;
114 struct ata_ering_entry *ent;
116 idx = ering->cursor;
117 do {
118 ent = &ering->ring[idx];
119 if (!ent->err_mask)
120 break;
121 rc = map_fn(ent, arg);
122 if (rc)
123 break;
124 idx = (idx - 1 + ATA_ERING_SIZE) % ATA_ERING_SIZE;
125 } while (idx != ering->cursor);
127 return rc;
130 static unsigned int ata_eh_dev_action(struct ata_device *dev)
132 struct ata_eh_context *ehc = &dev->ap->eh_context;
134 return ehc->i.action | ehc->i.dev_action[dev->devno];
137 static void ata_eh_clear_action(struct ata_device *dev,
138 struct ata_eh_info *ehi, unsigned int action)
140 int i;
142 if (!dev) {
143 ehi->action &= ~action;
144 for (i = 0; i < ATA_MAX_DEVICES; i++)
145 ehi->dev_action[i] &= ~action;
146 } else {
147 /* doesn't make sense for port-wide EH actions */
148 WARN_ON(!(action & ATA_EH_PERDEV_MASK));
150 /* break ehi->action into ehi->dev_action */
151 if (ehi->action & action) {
152 for (i = 0; i < ATA_MAX_DEVICES; i++)
153 ehi->dev_action[i] |= ehi->action & action;
154 ehi->action &= ~action;
157 /* turn off the specified per-dev action */
158 ehi->dev_action[dev->devno] &= ~action;
163 * ata_scsi_timed_out - SCSI layer time out callback
164 * @cmd: timed out SCSI command
166 * Handles SCSI layer timeout. We race with normal completion of
167 * the qc for @cmd. If the qc is already gone, we lose and let
168 * the scsi command finish (EH_HANDLED). Otherwise, the qc has
169 * timed out and EH should be invoked. Prevent ata_qc_complete()
170 * from finishing it by setting EH_SCHEDULED and return
171 * EH_NOT_HANDLED.
173 * TODO: kill this function once old EH is gone.
175 * LOCKING:
176 * Called from timer context
178 * RETURNS:
179 * EH_HANDLED or EH_NOT_HANDLED
181 enum scsi_eh_timer_return ata_scsi_timed_out(struct scsi_cmnd *cmd)
183 struct Scsi_Host *host = cmd->device->host;
184 struct ata_port *ap = ata_shost_to_port(host);
185 unsigned long flags;
186 struct ata_queued_cmd *qc;
187 enum scsi_eh_timer_return ret;
189 DPRINTK("ENTER\n");
191 if (ap->ops->error_handler) {
192 ret = EH_NOT_HANDLED;
193 goto out;
196 ret = EH_HANDLED;
197 spin_lock_irqsave(ap->lock, flags);
198 qc = ata_qc_from_tag(ap, ap->active_tag);
199 if (qc) {
200 WARN_ON(qc->scsicmd != cmd);
201 qc->flags |= ATA_QCFLAG_EH_SCHEDULED;
202 qc->err_mask |= AC_ERR_TIMEOUT;
203 ret = EH_NOT_HANDLED;
205 spin_unlock_irqrestore(ap->lock, flags);
207 out:
208 DPRINTK("EXIT, ret=%d\n", ret);
209 return ret;
213 * ata_scsi_error - SCSI layer error handler callback
214 * @host: SCSI host on which error occurred
216 * Handles SCSI-layer-thrown error events.
218 * LOCKING:
219 * Inherited from SCSI layer (none, can sleep)
221 * RETURNS:
222 * Zero.
224 void ata_scsi_error(struct Scsi_Host *host)
226 struct ata_port *ap = ata_shost_to_port(host);
227 int i, repeat_cnt = ATA_EH_MAX_REPEAT;
228 unsigned long flags;
230 DPRINTK("ENTER\n");
232 /* synchronize with port task */
233 ata_port_flush_task(ap);
235 /* synchronize with host lock and sort out timeouts */
237 /* For new EH, all qcs are finished in one of three ways -
238 * normal completion, error completion, and SCSI timeout.
239 * Both cmpletions can race against SCSI timeout. When normal
240 * completion wins, the qc never reaches EH. When error
241 * completion wins, the qc has ATA_QCFLAG_FAILED set.
243 * When SCSI timeout wins, things are a bit more complex.
244 * Normal or error completion can occur after the timeout but
245 * before this point. In such cases, both types of
246 * completions are honored. A scmd is determined to have
247 * timed out iff its associated qc is active and not failed.
249 if (ap->ops->error_handler) {
250 struct scsi_cmnd *scmd, *tmp;
251 int nr_timedout = 0;
253 spin_lock_irqsave(ap->lock, flags);
255 list_for_each_entry_safe(scmd, tmp, &host->eh_cmd_q, eh_entry) {
256 struct ata_queued_cmd *qc;
258 for (i = 0; i < ATA_MAX_QUEUE; i++) {
259 qc = __ata_qc_from_tag(ap, i);
260 if (qc->flags & ATA_QCFLAG_ACTIVE &&
261 qc->scsicmd == scmd)
262 break;
265 if (i < ATA_MAX_QUEUE) {
266 /* the scmd has an associated qc */
267 if (!(qc->flags & ATA_QCFLAG_FAILED)) {
268 /* which hasn't failed yet, timeout */
269 qc->err_mask |= AC_ERR_TIMEOUT;
270 qc->flags |= ATA_QCFLAG_FAILED;
271 nr_timedout++;
273 } else {
274 /* Normal completion occurred after
275 * SCSI timeout but before this point.
276 * Successfully complete it.
278 scmd->retries = scmd->allowed;
279 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
283 /* If we have timed out qcs. They belong to EH from
284 * this point but the state of the controller is
285 * unknown. Freeze the port to make sure the IRQ
286 * handler doesn't diddle with those qcs. This must
287 * be done atomically w.r.t. setting QCFLAG_FAILED.
289 if (nr_timedout)
290 __ata_port_freeze(ap);
292 spin_unlock_irqrestore(ap->lock, flags);
293 } else
294 spin_unlock_wait(ap->lock);
296 repeat:
297 /* invoke error handler */
298 if (ap->ops->error_handler) {
299 /* process port resume request */
300 ata_eh_handle_port_resume(ap);
302 /* fetch & clear EH info */
303 spin_lock_irqsave(ap->lock, flags);
305 memset(&ap->eh_context, 0, sizeof(ap->eh_context));
306 ap->eh_context.i = ap->eh_info;
307 memset(&ap->eh_info, 0, sizeof(ap->eh_info));
309 ap->pflags |= ATA_PFLAG_EH_IN_PROGRESS;
310 ap->pflags &= ~ATA_PFLAG_EH_PENDING;
312 spin_unlock_irqrestore(ap->lock, flags);
314 /* invoke EH, skip if unloading or suspended */
315 if (!(ap->pflags & (ATA_PFLAG_UNLOADING | ATA_PFLAG_SUSPENDED)))
316 ap->ops->error_handler(ap);
317 else
318 ata_eh_finish(ap);
320 /* process port suspend request */
321 ata_eh_handle_port_suspend(ap);
323 /* Exception might have happend after ->error_handler
324 * recovered the port but before this point. Repeat
325 * EH in such case.
327 spin_lock_irqsave(ap->lock, flags);
329 if (ap->pflags & ATA_PFLAG_EH_PENDING) {
330 if (--repeat_cnt) {
331 ata_port_printk(ap, KERN_INFO,
332 "EH pending after completion, "
333 "repeating EH (cnt=%d)\n", repeat_cnt);
334 spin_unlock_irqrestore(ap->lock, flags);
335 goto repeat;
337 ata_port_printk(ap, KERN_ERR, "EH pending after %d "
338 "tries, giving up\n", ATA_EH_MAX_REPEAT);
341 /* this run is complete, make sure EH info is clear */
342 memset(&ap->eh_info, 0, sizeof(ap->eh_info));
344 /* Clear host_eh_scheduled while holding ap->lock such
345 * that if exception occurs after this point but
346 * before EH completion, SCSI midlayer will
347 * re-initiate EH.
349 host->host_eh_scheduled = 0;
351 spin_unlock_irqrestore(ap->lock, flags);
352 } else {
353 WARN_ON(ata_qc_from_tag(ap, ap->active_tag) == NULL);
354 ap->ops->eng_timeout(ap);
357 /* finish or retry handled scmd's and clean up */
358 WARN_ON(host->host_failed || !list_empty(&host->eh_cmd_q));
360 scsi_eh_flush_done_q(&ap->eh_done_q);
362 /* clean up */
363 spin_lock_irqsave(ap->lock, flags);
365 if (ap->pflags & ATA_PFLAG_LOADING)
366 ap->pflags &= ~ATA_PFLAG_LOADING;
367 else if (ap->pflags & ATA_PFLAG_SCSI_HOTPLUG)
368 queue_delayed_work(ata_aux_wq, &ap->hotplug_task, 0);
370 if (ap->pflags & ATA_PFLAG_RECOVERED)
371 ata_port_printk(ap, KERN_INFO, "EH complete\n");
373 ap->pflags &= ~(ATA_PFLAG_SCSI_HOTPLUG | ATA_PFLAG_RECOVERED);
375 /* tell wait_eh that we're done */
376 ap->pflags &= ~ATA_PFLAG_EH_IN_PROGRESS;
377 wake_up_all(&ap->eh_wait_q);
379 spin_unlock_irqrestore(ap->lock, flags);
381 DPRINTK("EXIT\n");
385 * ata_port_wait_eh - Wait for the currently pending EH to complete
386 * @ap: Port to wait EH for
388 * Wait until the currently pending EH is complete.
390 * LOCKING:
391 * Kernel thread context (may sleep).
393 void ata_port_wait_eh(struct ata_port *ap)
395 unsigned long flags;
396 DEFINE_WAIT(wait);
398 retry:
399 spin_lock_irqsave(ap->lock, flags);
401 while (ap->pflags & (ATA_PFLAG_EH_PENDING | ATA_PFLAG_EH_IN_PROGRESS)) {
402 prepare_to_wait(&ap->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE);
403 spin_unlock_irqrestore(ap->lock, flags);
404 schedule();
405 spin_lock_irqsave(ap->lock, flags);
407 finish_wait(&ap->eh_wait_q, &wait);
409 spin_unlock_irqrestore(ap->lock, flags);
411 /* make sure SCSI EH is complete */
412 if (scsi_host_in_recovery(ap->scsi_host)) {
413 msleep(10);
414 goto retry;
419 * ata_qc_timeout - Handle timeout of queued command
420 * @qc: Command that timed out
422 * Some part of the kernel (currently, only the SCSI layer)
423 * has noticed that the active command on port @ap has not
424 * completed after a specified length of time. Handle this
425 * condition by disabling DMA (if necessary) and completing
426 * transactions, with error if necessary.
428 * This also handles the case of the "lost interrupt", where
429 * for some reason (possibly hardware bug, possibly driver bug)
430 * an interrupt was not delivered to the driver, even though the
431 * transaction completed successfully.
433 * TODO: kill this function once old EH is gone.
435 * LOCKING:
436 * Inherited from SCSI layer (none, can sleep)
438 static void ata_qc_timeout(struct ata_queued_cmd *qc)
440 struct ata_port *ap = qc->ap;
441 u8 host_stat = 0, drv_stat;
442 unsigned long flags;
444 DPRINTK("ENTER\n");
446 ap->hsm_task_state = HSM_ST_IDLE;
448 spin_lock_irqsave(ap->lock, flags);
450 switch (qc->tf.protocol) {
452 case ATA_PROT_DMA:
453 case ATA_PROT_ATAPI_DMA:
454 host_stat = ap->ops->bmdma_status(ap);
456 /* before we do anything else, clear DMA-Start bit */
457 ap->ops->bmdma_stop(qc);
459 /* fall through */
461 default:
462 ata_altstatus(ap);
463 drv_stat = ata_chk_status(ap);
465 /* ack bmdma irq events */
466 ap->ops->irq_clear(ap);
468 ata_dev_printk(qc->dev, KERN_ERR, "command 0x%x timeout, "
469 "stat 0x%x host_stat 0x%x\n",
470 qc->tf.command, drv_stat, host_stat);
472 /* complete taskfile transaction */
473 qc->err_mask |= AC_ERR_TIMEOUT;
474 break;
477 spin_unlock_irqrestore(ap->lock, flags);
479 ata_eh_qc_complete(qc);
481 DPRINTK("EXIT\n");
485 * ata_eng_timeout - Handle timeout of queued command
486 * @ap: Port on which timed-out command is active
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 void ata_eng_timeout(struct ata_port *ap)
506 DPRINTK("ENTER\n");
508 ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
510 DPRINTK("EXIT\n");
514 * ata_qc_schedule_eh - schedule qc for error handling
515 * @qc: command to schedule error handling for
517 * Schedule error handling for @qc. EH will kick in as soon as
518 * other commands are drained.
520 * LOCKING:
521 * spin_lock_irqsave(host lock)
523 void ata_qc_schedule_eh(struct ata_queued_cmd *qc)
525 struct ata_port *ap = qc->ap;
527 WARN_ON(!ap->ops->error_handler);
529 qc->flags |= ATA_QCFLAG_FAILED;
530 qc->ap->pflags |= ATA_PFLAG_EH_PENDING;
532 /* The following will fail if timeout has already expired.
533 * ata_scsi_error() takes care of such scmds on EH entry.
534 * Note that ATA_QCFLAG_FAILED is unconditionally set after
535 * this function completes.
537 scsi_req_abort_cmd(qc->scsicmd);
541 * ata_port_schedule_eh - schedule error handling without a qc
542 * @ap: ATA port to schedule EH for
544 * Schedule error handling for @ap. EH will kick in as soon as
545 * all commands are drained.
547 * LOCKING:
548 * spin_lock_irqsave(host lock)
550 void ata_port_schedule_eh(struct ata_port *ap)
552 WARN_ON(!ap->ops->error_handler);
554 if (ap->pflags & ATA_PFLAG_INITIALIZING)
555 return;
557 ap->pflags |= ATA_PFLAG_EH_PENDING;
558 scsi_schedule_eh(ap->scsi_host);
560 DPRINTK("port EH scheduled\n");
564 * ata_port_abort - abort all qc's on the port
565 * @ap: ATA port to abort qc's for
567 * Abort all active qc's of @ap and schedule EH.
569 * LOCKING:
570 * spin_lock_irqsave(host lock)
572 * RETURNS:
573 * Number of aborted qc's.
575 int ata_port_abort(struct ata_port *ap)
577 int tag, nr_aborted = 0;
579 WARN_ON(!ap->ops->error_handler);
581 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
582 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag);
584 if (qc) {
585 qc->flags |= ATA_QCFLAG_FAILED;
586 ata_qc_complete(qc);
587 nr_aborted++;
591 if (!nr_aborted)
592 ata_port_schedule_eh(ap);
594 return nr_aborted;
598 * __ata_port_freeze - freeze port
599 * @ap: ATA port to freeze
601 * This function is called when HSM violation or some other
602 * condition disrupts normal operation of the port. Frozen port
603 * is not allowed to perform any operation until the port is
604 * thawed, which usually follows a successful reset.
606 * ap->ops->freeze() callback can be used for freezing the port
607 * hardware-wise (e.g. mask interrupt and stop DMA engine). If a
608 * port cannot be frozen hardware-wise, the interrupt handler
609 * must ack and clear interrupts unconditionally while the port
610 * is frozen.
612 * LOCKING:
613 * spin_lock_irqsave(host lock)
615 static void __ata_port_freeze(struct ata_port *ap)
617 WARN_ON(!ap->ops->error_handler);
619 if (ap->ops->freeze)
620 ap->ops->freeze(ap);
622 ap->pflags |= ATA_PFLAG_FROZEN;
624 DPRINTK("ata%u port frozen\n", ap->print_id);
628 * ata_port_freeze - abort & freeze port
629 * @ap: ATA port to freeze
631 * Abort and freeze @ap.
633 * LOCKING:
634 * spin_lock_irqsave(host lock)
636 * RETURNS:
637 * Number of aborted commands.
639 int ata_port_freeze(struct ata_port *ap)
641 int nr_aborted;
643 WARN_ON(!ap->ops->error_handler);
645 nr_aborted = ata_port_abort(ap);
646 __ata_port_freeze(ap);
648 return nr_aborted;
652 * ata_eh_freeze_port - EH helper to freeze port
653 * @ap: ATA port to freeze
655 * Freeze @ap.
657 * LOCKING:
658 * None.
660 void ata_eh_freeze_port(struct ata_port *ap)
662 unsigned long flags;
664 if (!ap->ops->error_handler)
665 return;
667 spin_lock_irqsave(ap->lock, flags);
668 __ata_port_freeze(ap);
669 spin_unlock_irqrestore(ap->lock, flags);
673 * ata_port_thaw_port - EH helper to thaw port
674 * @ap: ATA port to thaw
676 * Thaw frozen port @ap.
678 * LOCKING:
679 * None.
681 void ata_eh_thaw_port(struct ata_port *ap)
683 unsigned long flags;
685 if (!ap->ops->error_handler)
686 return;
688 spin_lock_irqsave(ap->lock, flags);
690 ap->pflags &= ~ATA_PFLAG_FROZEN;
692 if (ap->ops->thaw)
693 ap->ops->thaw(ap);
695 spin_unlock_irqrestore(ap->lock, flags);
697 DPRINTK("ata%u port thawed\n", ap->print_id);
700 static void ata_eh_scsidone(struct scsi_cmnd *scmd)
702 /* nada */
705 static void __ata_eh_qc_complete(struct ata_queued_cmd *qc)
707 struct ata_port *ap = qc->ap;
708 struct scsi_cmnd *scmd = qc->scsicmd;
709 unsigned long flags;
711 spin_lock_irqsave(ap->lock, flags);
712 qc->scsidone = ata_eh_scsidone;
713 __ata_qc_complete(qc);
714 WARN_ON(ata_tag_valid(qc->tag));
715 spin_unlock_irqrestore(ap->lock, flags);
717 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
721 * ata_eh_qc_complete - Complete an active ATA command from EH
722 * @qc: Command to complete
724 * Indicate to the mid and upper layers that an ATA command has
725 * completed. To be used from EH.
727 void ata_eh_qc_complete(struct ata_queued_cmd *qc)
729 struct scsi_cmnd *scmd = qc->scsicmd;
730 scmd->retries = scmd->allowed;
731 __ata_eh_qc_complete(qc);
735 * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
736 * @qc: Command to retry
738 * Indicate to the mid and upper layers that an ATA command
739 * should be retried. To be used from EH.
741 * SCSI midlayer limits the number of retries to scmd->allowed.
742 * scmd->retries is decremented for commands which get retried
743 * due to unrelated failures (qc->err_mask is zero).
745 void ata_eh_qc_retry(struct ata_queued_cmd *qc)
747 struct scsi_cmnd *scmd = qc->scsicmd;
748 if (!qc->err_mask && scmd->retries)
749 scmd->retries--;
750 __ata_eh_qc_complete(qc);
754 * ata_eh_detach_dev - detach ATA device
755 * @dev: ATA device to detach
757 * Detach @dev.
759 * LOCKING:
760 * None.
762 static void ata_eh_detach_dev(struct ata_device *dev)
764 struct ata_port *ap = dev->ap;
765 unsigned long flags;
767 ata_dev_disable(dev);
769 spin_lock_irqsave(ap->lock, flags);
771 dev->flags &= ~ATA_DFLAG_DETACH;
773 if (ata_scsi_offline_dev(dev)) {
774 dev->flags |= ATA_DFLAG_DETACHED;
775 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
778 /* clear per-dev EH actions */
779 ata_eh_clear_action(dev, &ap->eh_info, ATA_EH_PERDEV_MASK);
780 ata_eh_clear_action(dev, &ap->eh_context.i, ATA_EH_PERDEV_MASK);
782 spin_unlock_irqrestore(ap->lock, flags);
786 * ata_eh_about_to_do - about to perform eh_action
787 * @ap: target ATA port
788 * @dev: target ATA dev for per-dev action (can be NULL)
789 * @action: action about to be performed
791 * Called just before performing EH actions to clear related bits
792 * in @ap->eh_info such that eh actions are not unnecessarily
793 * repeated.
795 * LOCKING:
796 * None.
798 static void ata_eh_about_to_do(struct ata_port *ap, struct ata_device *dev,
799 unsigned int action)
801 unsigned long flags;
802 struct ata_eh_info *ehi = &ap->eh_info;
803 struct ata_eh_context *ehc = &ap->eh_context;
805 spin_lock_irqsave(ap->lock, flags);
807 /* Reset is represented by combination of actions and EHI
808 * flags. Suck in all related bits before clearing eh_info to
809 * avoid losing requested action.
811 if (action & ATA_EH_RESET_MASK) {
812 ehc->i.action |= ehi->action & ATA_EH_RESET_MASK;
813 ehc->i.flags |= ehi->flags & ATA_EHI_RESET_MODIFIER_MASK;
815 /* make sure all reset actions are cleared & clear EHI flags */
816 action |= ATA_EH_RESET_MASK;
817 ehi->flags &= ~ATA_EHI_RESET_MODIFIER_MASK;
820 ata_eh_clear_action(dev, ehi, action);
822 if (!(ehc->i.flags & ATA_EHI_QUIET))
823 ap->pflags |= ATA_PFLAG_RECOVERED;
825 spin_unlock_irqrestore(ap->lock, flags);
829 * ata_eh_done - EH action complete
830 * @ap: target ATA port
831 * @dev: target ATA dev for per-dev action (can be NULL)
832 * @action: action just completed
834 * Called right after performing EH actions to clear related bits
835 * in @ap->eh_context.
837 * LOCKING:
838 * None.
840 static void ata_eh_done(struct ata_port *ap, struct ata_device *dev,
841 unsigned int action)
843 /* if reset is complete, clear all reset actions & reset modifier */
844 if (action & ATA_EH_RESET_MASK) {
845 action |= ATA_EH_RESET_MASK;
846 ap->eh_context.i.flags &= ~ATA_EHI_RESET_MODIFIER_MASK;
849 ata_eh_clear_action(dev, &ap->eh_context.i, action);
853 * ata_err_string - convert err_mask to descriptive string
854 * @err_mask: error mask to convert to string
856 * Convert @err_mask to descriptive string. Errors are
857 * prioritized according to severity and only the most severe
858 * error is reported.
860 * LOCKING:
861 * None.
863 * RETURNS:
864 * Descriptive string for @err_mask
866 static const char * ata_err_string(unsigned int err_mask)
868 if (err_mask & AC_ERR_HOST_BUS)
869 return "host bus error";
870 if (err_mask & AC_ERR_ATA_BUS)
871 return "ATA bus error";
872 if (err_mask & AC_ERR_TIMEOUT)
873 return "timeout";
874 if (err_mask & AC_ERR_HSM)
875 return "HSM violation";
876 if (err_mask & AC_ERR_SYSTEM)
877 return "internal error";
878 if (err_mask & AC_ERR_MEDIA)
879 return "media error";
880 if (err_mask & AC_ERR_INVALID)
881 return "invalid argument";
882 if (err_mask & AC_ERR_DEV)
883 return "device error";
884 return "unknown error";
888 * ata_read_log_page - read a specific log page
889 * @dev: target device
890 * @page: page to read
891 * @buf: buffer to store read page
892 * @sectors: number of sectors to read
894 * Read log page using READ_LOG_EXT command.
896 * LOCKING:
897 * Kernel thread context (may sleep).
899 * RETURNS:
900 * 0 on success, AC_ERR_* mask otherwise.
902 static unsigned int ata_read_log_page(struct ata_device *dev,
903 u8 page, void *buf, unsigned int sectors)
905 struct ata_taskfile tf;
906 unsigned int err_mask;
908 DPRINTK("read log page - page %d\n", page);
910 ata_tf_init(dev, &tf);
911 tf.command = ATA_CMD_READ_LOG_EXT;
912 tf.lbal = page;
913 tf.nsect = sectors;
914 tf.hob_nsect = sectors >> 8;
915 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_LBA48 | ATA_TFLAG_DEVICE;
916 tf.protocol = ATA_PROT_PIO;
918 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
919 buf, sectors * ATA_SECT_SIZE);
921 DPRINTK("EXIT, err_mask=%x\n", err_mask);
922 return err_mask;
926 * ata_eh_read_log_10h - Read log page 10h for NCQ error details
927 * @dev: Device to read log page 10h from
928 * @tag: Resulting tag of the failed command
929 * @tf: Resulting taskfile registers of the failed command
931 * Read log page 10h to obtain NCQ error details and clear error
932 * condition.
934 * LOCKING:
935 * Kernel thread context (may sleep).
937 * RETURNS:
938 * 0 on success, -errno otherwise.
940 static int ata_eh_read_log_10h(struct ata_device *dev,
941 int *tag, struct ata_taskfile *tf)
943 u8 *buf = dev->ap->sector_buf;
944 unsigned int err_mask;
945 u8 csum;
946 int i;
948 err_mask = ata_read_log_page(dev, ATA_LOG_SATA_NCQ, buf, 1);
949 if (err_mask)
950 return -EIO;
952 csum = 0;
953 for (i = 0; i < ATA_SECT_SIZE; i++)
954 csum += buf[i];
955 if (csum)
956 ata_dev_printk(dev, KERN_WARNING,
957 "invalid checksum 0x%x on log page 10h\n", csum);
959 if (buf[0] & 0x80)
960 return -ENOENT;
962 *tag = buf[0] & 0x1f;
964 tf->command = buf[2];
965 tf->feature = buf[3];
966 tf->lbal = buf[4];
967 tf->lbam = buf[5];
968 tf->lbah = buf[6];
969 tf->device = buf[7];
970 tf->hob_lbal = buf[8];
971 tf->hob_lbam = buf[9];
972 tf->hob_lbah = buf[10];
973 tf->nsect = buf[12];
974 tf->hob_nsect = buf[13];
976 return 0;
980 * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
981 * @dev: device to perform REQUEST_SENSE to
982 * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
984 * Perform ATAPI REQUEST_SENSE after the device reported CHECK
985 * SENSE. This function is EH helper.
987 * LOCKING:
988 * Kernel thread context (may sleep).
990 * RETURNS:
991 * 0 on success, AC_ERR_* mask on failure
993 static unsigned int atapi_eh_request_sense(struct ata_queued_cmd *qc)
995 struct ata_device *dev = qc->dev;
996 unsigned char *sense_buf = qc->scsicmd->sense_buffer;
997 struct ata_port *ap = dev->ap;
998 struct ata_taskfile tf;
999 u8 cdb[ATAPI_CDB_LEN];
1001 DPRINTK("ATAPI request sense\n");
1003 /* FIXME: is this needed? */
1004 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
1006 /* initialize sense_buf with the error register,
1007 * for the case where they are -not- overwritten
1009 sense_buf[0] = 0x70;
1010 sense_buf[2] = qc->result_tf.feature >> 4;
1012 /* some devices time out if garbage left in tf */
1013 ata_tf_init(dev, &tf);
1015 memset(cdb, 0, ATAPI_CDB_LEN);
1016 cdb[0] = REQUEST_SENSE;
1017 cdb[4] = SCSI_SENSE_BUFFERSIZE;
1019 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1020 tf.command = ATA_CMD_PACKET;
1022 /* is it pointless to prefer PIO for "safety reasons"? */
1023 if (ap->flags & ATA_FLAG_PIO_DMA) {
1024 tf.protocol = ATA_PROT_ATAPI_DMA;
1025 tf.feature |= ATAPI_PKT_DMA;
1026 } else {
1027 tf.protocol = ATA_PROT_ATAPI;
1028 tf.lbam = (8 * 1024) & 0xff;
1029 tf.lbah = (8 * 1024) >> 8;
1032 return ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE,
1033 sense_buf, SCSI_SENSE_BUFFERSIZE);
1037 * ata_eh_analyze_serror - analyze SError for a failed port
1038 * @ap: ATA port to analyze SError for
1040 * Analyze SError if available and further determine cause of
1041 * failure.
1043 * LOCKING:
1044 * None.
1046 static void ata_eh_analyze_serror(struct ata_port *ap)
1048 struct ata_eh_context *ehc = &ap->eh_context;
1049 u32 serror = ehc->i.serror;
1050 unsigned int err_mask = 0, action = 0;
1052 if (serror & SERR_PERSISTENT) {
1053 err_mask |= AC_ERR_ATA_BUS;
1054 action |= ATA_EH_HARDRESET;
1056 if (serror &
1057 (SERR_DATA_RECOVERED | SERR_COMM_RECOVERED | SERR_DATA)) {
1058 err_mask |= AC_ERR_ATA_BUS;
1059 action |= ATA_EH_SOFTRESET;
1061 if (serror & SERR_PROTOCOL) {
1062 err_mask |= AC_ERR_HSM;
1063 action |= ATA_EH_SOFTRESET;
1065 if (serror & SERR_INTERNAL) {
1066 err_mask |= AC_ERR_SYSTEM;
1067 action |= ATA_EH_HARDRESET;
1069 if (serror & (SERR_PHYRDY_CHG | SERR_DEV_XCHG))
1070 ata_ehi_hotplugged(&ehc->i);
1072 ehc->i.err_mask |= err_mask;
1073 ehc->i.action |= action;
1077 * ata_eh_analyze_ncq_error - analyze NCQ error
1078 * @ap: ATA port to analyze NCQ error for
1080 * Read log page 10h, determine the offending qc and acquire
1081 * error status TF. For NCQ device errors, all LLDDs have to do
1082 * is setting AC_ERR_DEV in ehi->err_mask. This function takes
1083 * care of the rest.
1085 * LOCKING:
1086 * Kernel thread context (may sleep).
1088 static void ata_eh_analyze_ncq_error(struct ata_port *ap)
1090 struct ata_eh_context *ehc = &ap->eh_context;
1091 struct ata_device *dev = ap->device;
1092 struct ata_queued_cmd *qc;
1093 struct ata_taskfile tf;
1094 int tag, rc;
1096 /* if frozen, we can't do much */
1097 if (ap->pflags & ATA_PFLAG_FROZEN)
1098 return;
1100 /* is it NCQ device error? */
1101 if (!ap->sactive || !(ehc->i.err_mask & AC_ERR_DEV))
1102 return;
1104 /* has LLDD analyzed already? */
1105 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1106 qc = __ata_qc_from_tag(ap, tag);
1108 if (!(qc->flags & ATA_QCFLAG_FAILED))
1109 continue;
1111 if (qc->err_mask)
1112 return;
1115 /* okay, this error is ours */
1116 rc = ata_eh_read_log_10h(dev, &tag, &tf);
1117 if (rc) {
1118 ata_port_printk(ap, KERN_ERR, "failed to read log page 10h "
1119 "(errno=%d)\n", rc);
1120 return;
1123 if (!(ap->sactive & (1 << tag))) {
1124 ata_port_printk(ap, KERN_ERR, "log page 10h reported "
1125 "inactive tag %d\n", tag);
1126 return;
1129 /* we've got the perpetrator, condemn it */
1130 qc = __ata_qc_from_tag(ap, tag);
1131 memcpy(&qc->result_tf, &tf, sizeof(tf));
1132 qc->err_mask |= AC_ERR_DEV;
1133 ehc->i.err_mask &= ~AC_ERR_DEV;
1137 * ata_eh_analyze_tf - analyze taskfile of a failed qc
1138 * @qc: qc to analyze
1139 * @tf: Taskfile registers to analyze
1141 * Analyze taskfile of @qc and further determine cause of
1142 * failure. This function also requests ATAPI sense data if
1143 * avaliable.
1145 * LOCKING:
1146 * Kernel thread context (may sleep).
1148 * RETURNS:
1149 * Determined recovery action
1151 static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc,
1152 const struct ata_taskfile *tf)
1154 unsigned int tmp, action = 0;
1155 u8 stat = tf->command, err = tf->feature;
1157 if ((stat & (ATA_BUSY | ATA_DRQ | ATA_DRDY)) != ATA_DRDY) {
1158 qc->err_mask |= AC_ERR_HSM;
1159 return ATA_EH_SOFTRESET;
1162 if (stat & (ATA_ERR | ATA_DF))
1163 qc->err_mask |= AC_ERR_DEV;
1164 else
1165 return 0;
1167 switch (qc->dev->class) {
1168 case ATA_DEV_ATA:
1169 if (err & ATA_ICRC)
1170 qc->err_mask |= AC_ERR_ATA_BUS;
1171 if (err & ATA_UNC)
1172 qc->err_mask |= AC_ERR_MEDIA;
1173 if (err & ATA_IDNF)
1174 qc->err_mask |= AC_ERR_INVALID;
1175 break;
1177 case ATA_DEV_ATAPI:
1178 if (!(qc->ap->pflags & ATA_PFLAG_FROZEN)) {
1179 tmp = atapi_eh_request_sense(qc);
1180 if (!tmp) {
1181 /* ATA_QCFLAG_SENSE_VALID is used to
1182 * tell atapi_qc_complete() that sense
1183 * data is already valid.
1185 * TODO: interpret sense data and set
1186 * appropriate err_mask.
1188 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1189 } else
1190 qc->err_mask |= tmp;
1194 if (qc->err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT | AC_ERR_ATA_BUS))
1195 action |= ATA_EH_SOFTRESET;
1197 return action;
1200 static int ata_eh_categorize_error(int is_io, unsigned int err_mask)
1202 if (err_mask & AC_ERR_ATA_BUS)
1203 return 1;
1205 if (err_mask & AC_ERR_TIMEOUT)
1206 return 2;
1208 if (is_io) {
1209 if (err_mask & AC_ERR_HSM)
1210 return 2;
1211 if ((err_mask &
1212 (AC_ERR_DEV|AC_ERR_MEDIA|AC_ERR_INVALID)) == AC_ERR_DEV)
1213 return 3;
1216 return 0;
1219 struct speed_down_verdict_arg {
1220 u64 since;
1221 int nr_errors[4];
1224 static int speed_down_verdict_cb(struct ata_ering_entry *ent, void *void_arg)
1226 struct speed_down_verdict_arg *arg = void_arg;
1227 int cat = ata_eh_categorize_error(ent->is_io, ent->err_mask);
1229 if (ent->timestamp < arg->since)
1230 return -1;
1232 arg->nr_errors[cat]++;
1233 return 0;
1237 * ata_eh_speed_down_verdict - Determine speed down verdict
1238 * @dev: Device of interest
1240 * This function examines error ring of @dev and determines
1241 * whether NCQ needs to be turned off, transfer speed should be
1242 * stepped down, or falling back to PIO is necessary.
1244 * Cat-1 is ATA_BUS error for any command.
1246 * Cat-2 is TIMEOUT for any command or HSM violation for known
1247 * supported commands.
1249 * Cat-3 is is unclassified DEV error for known supported
1250 * command.
1252 * NCQ needs to be turned off if there have been more than 3
1253 * Cat-2 + Cat-3 errors during last 10 minutes.
1255 * Speed down is necessary if there have been more than 3 Cat-1 +
1256 * Cat-2 errors or 10 Cat-3 errors during last 10 minutes.
1258 * Falling back to PIO mode is necessary if there have been more
1259 * than 10 Cat-1 + Cat-2 + Cat-3 errors during last 5 minutes.
1261 * LOCKING:
1262 * Inherited from caller.
1264 * RETURNS:
1265 * OR of ATA_EH_SPDN_* flags.
1267 static unsigned int ata_eh_speed_down_verdict(struct ata_device *dev)
1269 const u64 j5mins = 5LLU * 60 * HZ, j10mins = 10LLU * 60 * HZ;
1270 u64 j64 = get_jiffies_64();
1271 struct speed_down_verdict_arg arg;
1272 unsigned int verdict = 0;
1274 /* scan past 10 mins of error history */
1275 memset(&arg, 0, sizeof(arg));
1276 arg.since = j64 - min(j64, j10mins);
1277 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
1279 if (arg.nr_errors[2] + arg.nr_errors[3] > 3)
1280 verdict |= ATA_EH_SPDN_NCQ_OFF;
1281 if (arg.nr_errors[1] + arg.nr_errors[2] > 3 || arg.nr_errors[3] > 10)
1282 verdict |= ATA_EH_SPDN_SPEED_DOWN;
1284 /* scan past 3 mins of error history */
1285 memset(&arg, 0, sizeof(arg));
1286 arg.since = j64 - min(j64, j5mins);
1287 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
1289 if (arg.nr_errors[1] + arg.nr_errors[2] + arg.nr_errors[3] > 10)
1290 verdict |= ATA_EH_SPDN_FALLBACK_TO_PIO;
1292 return verdict;
1296 * ata_eh_speed_down - record error and speed down if necessary
1297 * @dev: Failed device
1298 * @is_io: Did the device fail during normal IO?
1299 * @err_mask: err_mask of the error
1301 * Record error and examine error history to determine whether
1302 * adjusting transmission speed is necessary. It also sets
1303 * transmission limits appropriately if such adjustment is
1304 * necessary.
1306 * LOCKING:
1307 * Kernel thread context (may sleep).
1309 * RETURNS:
1310 * Determined recovery action.
1312 static unsigned int ata_eh_speed_down(struct ata_device *dev, int is_io,
1313 unsigned int err_mask)
1315 unsigned int verdict;
1316 unsigned int action = 0;
1318 /* don't bother if Cat-0 error */
1319 if (ata_eh_categorize_error(is_io, err_mask) == 0)
1320 return 0;
1322 /* record error and determine whether speed down is necessary */
1323 ata_ering_record(&dev->ering, is_io, err_mask);
1324 verdict = ata_eh_speed_down_verdict(dev);
1326 /* turn off NCQ? */
1327 if ((verdict & ATA_EH_SPDN_NCQ_OFF) &&
1328 (dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ |
1329 ATA_DFLAG_NCQ_OFF)) == ATA_DFLAG_NCQ) {
1330 dev->flags |= ATA_DFLAG_NCQ_OFF;
1331 ata_dev_printk(dev, KERN_WARNING,
1332 "NCQ disabled due to excessive errors\n");
1333 goto done;
1336 /* speed down? */
1337 if (verdict & ATA_EH_SPDN_SPEED_DOWN) {
1338 /* speed down SATA link speed if possible */
1339 if (sata_down_spd_limit(dev->ap) == 0) {
1340 action |= ATA_EH_HARDRESET;
1341 goto done;
1344 /* lower transfer mode */
1345 if (dev->spdn_cnt < 2) {
1346 static const int dma_dnxfer_sel[] =
1347 { ATA_DNXFER_DMA, ATA_DNXFER_40C };
1348 static const int pio_dnxfer_sel[] =
1349 { ATA_DNXFER_PIO, ATA_DNXFER_FORCE_PIO0 };
1350 int sel;
1352 if (dev->xfer_shift != ATA_SHIFT_PIO)
1353 sel = dma_dnxfer_sel[dev->spdn_cnt];
1354 else
1355 sel = pio_dnxfer_sel[dev->spdn_cnt];
1357 dev->spdn_cnt++;
1359 if (ata_down_xfermask_limit(dev, sel) == 0) {
1360 action |= ATA_EH_SOFTRESET;
1361 goto done;
1366 /* Fall back to PIO? Slowing down to PIO is meaningless for
1367 * SATA. Consider it only for PATA.
1369 if ((verdict & ATA_EH_SPDN_FALLBACK_TO_PIO) && (dev->spdn_cnt >= 2) &&
1370 (dev->ap->cbl != ATA_CBL_SATA) &&
1371 (dev->xfer_shift != ATA_SHIFT_PIO)) {
1372 if (ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO) == 0) {
1373 dev->spdn_cnt = 0;
1374 action |= ATA_EH_SOFTRESET;
1375 goto done;
1379 return 0;
1380 done:
1381 /* device has been slowed down, blow error history */
1382 ata_ering_clear(&dev->ering);
1383 return action;
1387 * ata_eh_autopsy - analyze error and determine recovery action
1388 * @ap: ATA port to perform autopsy on
1390 * Analyze why @ap failed and determine which recovery action is
1391 * needed. This function also sets more detailed AC_ERR_* values
1392 * and fills sense data for ATAPI CHECK SENSE.
1394 * LOCKING:
1395 * Kernel thread context (may sleep).
1397 static void ata_eh_autopsy(struct ata_port *ap)
1399 struct ata_eh_context *ehc = &ap->eh_context;
1400 unsigned int all_err_mask = 0;
1401 int tag, is_io = 0;
1402 u32 serror;
1403 int rc;
1405 DPRINTK("ENTER\n");
1407 if (ehc->i.flags & ATA_EHI_NO_AUTOPSY)
1408 return;
1410 /* obtain and analyze SError */
1411 rc = sata_scr_read(ap, SCR_ERROR, &serror);
1412 if (rc == 0) {
1413 ehc->i.serror |= serror;
1414 ata_eh_analyze_serror(ap);
1415 } else if (rc != -EOPNOTSUPP)
1416 ehc->i.action |= ATA_EH_HARDRESET;
1418 /* analyze NCQ failure */
1419 ata_eh_analyze_ncq_error(ap);
1421 /* any real error trumps AC_ERR_OTHER */
1422 if (ehc->i.err_mask & ~AC_ERR_OTHER)
1423 ehc->i.err_mask &= ~AC_ERR_OTHER;
1425 all_err_mask |= ehc->i.err_mask;
1427 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1428 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1430 if (!(qc->flags & ATA_QCFLAG_FAILED))
1431 continue;
1433 /* inherit upper level err_mask */
1434 qc->err_mask |= ehc->i.err_mask;
1436 /* analyze TF */
1437 ehc->i.action |= ata_eh_analyze_tf(qc, &qc->result_tf);
1439 /* DEV errors are probably spurious in case of ATA_BUS error */
1440 if (qc->err_mask & AC_ERR_ATA_BUS)
1441 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_MEDIA |
1442 AC_ERR_INVALID);
1444 /* any real error trumps unknown error */
1445 if (qc->err_mask & ~AC_ERR_OTHER)
1446 qc->err_mask &= ~AC_ERR_OTHER;
1448 /* SENSE_VALID trumps dev/unknown error and revalidation */
1449 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
1450 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER);
1451 ehc->i.action &= ~ATA_EH_REVALIDATE;
1454 /* accumulate error info */
1455 ehc->i.dev = qc->dev;
1456 all_err_mask |= qc->err_mask;
1457 if (qc->flags & ATA_QCFLAG_IO)
1458 is_io = 1;
1461 /* enforce default EH actions */
1462 if (ap->pflags & ATA_PFLAG_FROZEN ||
1463 all_err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT))
1464 ehc->i.action |= ATA_EH_SOFTRESET;
1465 else if (all_err_mask)
1466 ehc->i.action |= ATA_EH_REVALIDATE;
1468 /* if we have offending qcs and the associated failed device */
1469 if (ehc->i.dev) {
1470 /* speed down */
1471 ehc->i.action |= ata_eh_speed_down(ehc->i.dev, is_io,
1472 all_err_mask);
1474 /* perform per-dev EH action only on the offending device */
1475 ehc->i.dev_action[ehc->i.dev->devno] |=
1476 ehc->i.action & ATA_EH_PERDEV_MASK;
1477 ehc->i.action &= ~ATA_EH_PERDEV_MASK;
1480 DPRINTK("EXIT\n");
1484 * ata_eh_report - report error handling to user
1485 * @ap: ATA port EH is going on
1487 * Report EH to user.
1489 * LOCKING:
1490 * None.
1492 static void ata_eh_report(struct ata_port *ap)
1494 struct ata_eh_context *ehc = &ap->eh_context;
1495 const char *frozen, *desc;
1496 int tag, nr_failed = 0;
1498 desc = NULL;
1499 if (ehc->i.desc[0] != '\0')
1500 desc = ehc->i.desc;
1502 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1503 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1505 if (!(qc->flags & ATA_QCFLAG_FAILED))
1506 continue;
1507 if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask)
1508 continue;
1510 nr_failed++;
1513 if (!nr_failed && !ehc->i.err_mask)
1514 return;
1516 frozen = "";
1517 if (ap->pflags & ATA_PFLAG_FROZEN)
1518 frozen = " frozen";
1520 if (ehc->i.dev) {
1521 ata_dev_printk(ehc->i.dev, KERN_ERR, "exception Emask 0x%x "
1522 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
1523 ehc->i.err_mask, ap->sactive, ehc->i.serror,
1524 ehc->i.action, frozen);
1525 if (desc)
1526 ata_dev_printk(ehc->i.dev, KERN_ERR, "(%s)\n", desc);
1527 } else {
1528 ata_port_printk(ap, KERN_ERR, "exception Emask 0x%x "
1529 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
1530 ehc->i.err_mask, ap->sactive, ehc->i.serror,
1531 ehc->i.action, frozen);
1532 if (desc)
1533 ata_port_printk(ap, KERN_ERR, "(%s)\n", desc);
1536 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1537 static const char *dma_str[] = {
1538 [DMA_BIDIRECTIONAL] = "bidi",
1539 [DMA_TO_DEVICE] = "out",
1540 [DMA_FROM_DEVICE] = "in",
1541 [DMA_NONE] = "",
1543 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1544 struct ata_taskfile *cmd = &qc->tf, *res = &qc->result_tf;
1546 if (!(qc->flags & ATA_QCFLAG_FAILED) || !qc->err_mask)
1547 continue;
1549 ata_dev_printk(qc->dev, KERN_ERR,
1550 "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
1551 "tag %d cdb 0x%x data %u %s\n "
1552 "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
1553 "Emask 0x%x (%s)\n",
1554 cmd->command, cmd->feature, cmd->nsect,
1555 cmd->lbal, cmd->lbam, cmd->lbah,
1556 cmd->hob_feature, cmd->hob_nsect,
1557 cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah,
1558 cmd->device, qc->tag, qc->cdb[0], qc->nbytes,
1559 dma_str[qc->dma_dir],
1560 res->command, res->feature, res->nsect,
1561 res->lbal, res->lbam, res->lbah,
1562 res->hob_feature, res->hob_nsect,
1563 res->hob_lbal, res->hob_lbam, res->hob_lbah,
1564 res->device, qc->err_mask, ata_err_string(qc->err_mask));
1568 static int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
1569 unsigned int *classes, unsigned long deadline)
1571 int i, rc;
1573 for (i = 0; i < ATA_MAX_DEVICES; i++)
1574 classes[i] = ATA_DEV_UNKNOWN;
1576 rc = reset(ap, classes, deadline);
1577 if (rc)
1578 return rc;
1580 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
1581 * is complete and convert all ATA_DEV_UNKNOWN to
1582 * ATA_DEV_NONE.
1584 for (i = 0; i < ATA_MAX_DEVICES; i++)
1585 if (classes[i] != ATA_DEV_UNKNOWN)
1586 break;
1588 if (i < ATA_MAX_DEVICES)
1589 for (i = 0; i < ATA_MAX_DEVICES; i++)
1590 if (classes[i] == ATA_DEV_UNKNOWN)
1591 classes[i] = ATA_DEV_NONE;
1593 return 0;
1596 static int ata_eh_followup_srst_needed(int rc, int classify,
1597 const unsigned int *classes)
1599 if (rc == -EAGAIN)
1600 return 1;
1601 if (rc != 0)
1602 return 0;
1603 if (classify && classes[0] == ATA_DEV_UNKNOWN)
1604 return 1;
1605 return 0;
1608 static int ata_eh_reset(struct ata_port *ap, int classify,
1609 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
1610 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
1612 struct ata_eh_context *ehc = &ap->eh_context;
1613 unsigned int *classes = ehc->classes;
1614 int verbose = !(ehc->i.flags & ATA_EHI_QUIET);
1615 int try = 0;
1616 unsigned long deadline;
1617 unsigned int action;
1618 ata_reset_fn_t reset;
1619 int i, did_followup_srst, rc;
1621 /* about to reset */
1622 ata_eh_about_to_do(ap, NULL, ehc->i.action & ATA_EH_RESET_MASK);
1624 /* Determine which reset to use and record in ehc->i.action.
1625 * prereset() may examine and modify it.
1627 action = ehc->i.action;
1628 ehc->i.action &= ~ATA_EH_RESET_MASK;
1629 if (softreset && (!hardreset || (!sata_set_spd_needed(ap) &&
1630 !(action & ATA_EH_HARDRESET))))
1631 ehc->i.action |= ATA_EH_SOFTRESET;
1632 else
1633 ehc->i.action |= ATA_EH_HARDRESET;
1635 if (prereset) {
1636 rc = prereset(ap, jiffies + ATA_EH_PRERESET_TIMEOUT);
1637 if (rc) {
1638 if (rc == -ENOENT) {
1639 ata_port_printk(ap, KERN_DEBUG,
1640 "port disabled. ignoring.\n");
1641 ap->eh_context.i.action &= ~ATA_EH_RESET_MASK;
1643 for (i = 0; i < ATA_MAX_DEVICES; i++)
1644 classes[i] = ATA_DEV_NONE;
1646 rc = 0;
1647 } else
1648 ata_port_printk(ap, KERN_ERR,
1649 "prereset failed (errno=%d)\n", rc);
1650 return rc;
1654 /* prereset() might have modified ehc->i.action */
1655 if (ehc->i.action & ATA_EH_HARDRESET)
1656 reset = hardreset;
1657 else if (ehc->i.action & ATA_EH_SOFTRESET)
1658 reset = softreset;
1659 else {
1660 /* prereset told us not to reset, bang classes and return */
1661 for (i = 0; i < ATA_MAX_DEVICES; i++)
1662 classes[i] = ATA_DEV_NONE;
1663 return 0;
1666 /* did prereset() screw up? if so, fix up to avoid oopsing */
1667 if (!reset) {
1668 ata_port_printk(ap, KERN_ERR, "BUG: prereset() requested "
1669 "invalid reset type\n");
1670 if (softreset)
1671 reset = softreset;
1672 else
1673 reset = hardreset;
1676 retry:
1677 deadline = jiffies + ata_eh_reset_timeouts[try++];
1679 /* shut up during boot probing */
1680 if (verbose)
1681 ata_port_printk(ap, KERN_INFO, "%s resetting port\n",
1682 reset == softreset ? "soft" : "hard");
1684 /* mark that this EH session started with reset */
1685 if (reset == hardreset)
1686 ehc->i.flags |= ATA_EHI_DID_HARDRESET;
1687 else
1688 ehc->i.flags |= ATA_EHI_DID_SOFTRESET;
1690 rc = ata_do_reset(ap, reset, classes, deadline);
1692 did_followup_srst = 0;
1693 if (reset == hardreset &&
1694 ata_eh_followup_srst_needed(rc, classify, classes)) {
1695 /* okay, let's do follow-up softreset */
1696 did_followup_srst = 1;
1697 reset = softreset;
1699 if (!reset) {
1700 ata_port_printk(ap, KERN_ERR,
1701 "follow-up softreset required "
1702 "but no softreset avaliable\n");
1703 return -EINVAL;
1706 ata_eh_about_to_do(ap, NULL, ATA_EH_RESET_MASK);
1707 rc = ata_do_reset(ap, reset, classes, deadline);
1709 if (rc == 0 && classify &&
1710 classes[0] == ATA_DEV_UNKNOWN) {
1711 ata_port_printk(ap, KERN_ERR,
1712 "classification failed\n");
1713 return -EINVAL;
1717 if (rc && try < ARRAY_SIZE(ata_eh_reset_timeouts)) {
1718 unsigned long now = jiffies;
1720 if (time_before(now, deadline)) {
1721 unsigned long delta = deadline - jiffies;
1723 ata_port_printk(ap, KERN_WARNING, "reset failed "
1724 "(errno=%d), retrying in %u secs\n",
1725 rc, (jiffies_to_msecs(delta) + 999) / 1000);
1727 schedule_timeout_uninterruptible(delta);
1730 if (reset == hardreset &&
1731 try == ARRAY_SIZE(ata_eh_reset_timeouts) - 1)
1732 sata_down_spd_limit(ap);
1733 if (hardreset)
1734 reset = hardreset;
1735 goto retry;
1738 if (rc == 0) {
1739 /* After the reset, the device state is PIO 0 and the
1740 * controller state is undefined. Record the mode.
1742 for (i = 0; i < ATA_MAX_DEVICES; i++)
1743 ap->device[i].pio_mode = XFER_PIO_0;
1745 if (postreset)
1746 postreset(ap, classes);
1748 /* reset successful, schedule revalidation */
1749 ata_eh_done(ap, NULL, ehc->i.action & ATA_EH_RESET_MASK);
1750 ehc->i.action |= ATA_EH_REVALIDATE;
1753 return rc;
1756 static int ata_eh_revalidate_and_attach(struct ata_port *ap,
1757 struct ata_device **r_failed_dev)
1759 struct ata_eh_context *ehc = &ap->eh_context;
1760 struct ata_device *dev;
1761 unsigned int new_mask = 0;
1762 unsigned long flags;
1763 int i, rc = 0;
1765 DPRINTK("ENTER\n");
1767 /* For PATA drive side cable detection to work, IDENTIFY must
1768 * be done backwards such that PDIAG- is released by the slave
1769 * device before the master device is identified.
1771 for (i = ATA_MAX_DEVICES - 1; i >= 0; i--) {
1772 unsigned int action, readid_flags = 0;
1774 dev = &ap->device[i];
1775 action = ata_eh_dev_action(dev);
1777 if (ehc->i.flags & ATA_EHI_DID_RESET)
1778 readid_flags |= ATA_READID_POSTRESET;
1780 if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) {
1781 if (ata_port_offline(ap)) {
1782 rc = -EIO;
1783 goto err;
1786 ata_eh_about_to_do(ap, dev, ATA_EH_REVALIDATE);
1787 rc = ata_dev_revalidate(dev, readid_flags);
1788 if (rc)
1789 goto err;
1791 ata_eh_done(ap, dev, ATA_EH_REVALIDATE);
1793 /* Configuration may have changed, reconfigure
1794 * transfer mode.
1796 ehc->i.flags |= ATA_EHI_SETMODE;
1798 /* schedule the scsi_rescan_device() here */
1799 queue_work(ata_aux_wq, &(ap->scsi_rescan_task));
1800 } else if (dev->class == ATA_DEV_UNKNOWN &&
1801 ehc->tries[dev->devno] &&
1802 ata_class_enabled(ehc->classes[dev->devno])) {
1803 dev->class = ehc->classes[dev->devno];
1805 rc = ata_dev_read_id(dev, &dev->class, readid_flags,
1806 dev->id);
1807 switch (rc) {
1808 case 0:
1809 new_mask |= 1 << i;
1810 break;
1811 case -ENOENT:
1812 /* IDENTIFY was issued to non-existent
1813 * device. No need to reset. Just
1814 * thaw and kill the device.
1816 ata_eh_thaw_port(ap);
1817 dev->class = ATA_DEV_UNKNOWN;
1818 break;
1819 default:
1820 dev->class = ATA_DEV_UNKNOWN;
1821 goto err;
1826 /* PDIAG- should have been released, ask cable type if post-reset */
1827 if ((ehc->i.flags & ATA_EHI_DID_RESET) && ap->ops->cable_detect)
1828 ap->cbl = ap->ops->cable_detect(ap);
1830 /* Configure new devices forward such that user doesn't see
1831 * device detection messages backwards.
1833 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1834 dev = &ap->device[i];
1836 if (!(new_mask & (1 << i)))
1837 continue;
1839 ehc->i.flags |= ATA_EHI_PRINTINFO;
1840 rc = ata_dev_configure(dev);
1841 ehc->i.flags &= ~ATA_EHI_PRINTINFO;
1842 if (rc)
1843 goto err;
1845 spin_lock_irqsave(ap->lock, flags);
1846 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
1847 spin_unlock_irqrestore(ap->lock, flags);
1849 /* new device discovered, configure xfermode */
1850 ehc->i.flags |= ATA_EHI_SETMODE;
1853 return 0;
1855 err:
1856 *r_failed_dev = dev;
1857 DPRINTK("EXIT rc=%d\n", rc);
1858 return rc;
1861 static int ata_port_nr_enabled(struct ata_port *ap)
1863 int i, cnt = 0;
1865 for (i = 0; i < ATA_MAX_DEVICES; i++)
1866 if (ata_dev_enabled(&ap->device[i]))
1867 cnt++;
1868 return cnt;
1871 static int ata_port_nr_vacant(struct ata_port *ap)
1873 int i, cnt = 0;
1875 for (i = 0; i < ATA_MAX_DEVICES; i++)
1876 if (ap->device[i].class == ATA_DEV_UNKNOWN)
1877 cnt++;
1878 return cnt;
1881 static int ata_eh_skip_recovery(struct ata_port *ap)
1883 struct ata_eh_context *ehc = &ap->eh_context;
1884 int i;
1886 /* thaw frozen port, resume link and recover failed devices */
1887 if ((ap->pflags & ATA_PFLAG_FROZEN) ||
1888 (ehc->i.flags & ATA_EHI_RESUME_LINK) || ata_port_nr_enabled(ap))
1889 return 0;
1891 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
1892 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1893 struct ata_device *dev = &ap->device[i];
1895 if (dev->class == ATA_DEV_UNKNOWN &&
1896 ehc->classes[dev->devno] != ATA_DEV_NONE)
1897 return 0;
1900 return 1;
1904 * ata_eh_recover - recover host port after error
1905 * @ap: host port to recover
1906 * @prereset: prereset method (can be NULL)
1907 * @softreset: softreset method (can be NULL)
1908 * @hardreset: hardreset method (can be NULL)
1909 * @postreset: postreset method (can be NULL)
1911 * This is the alpha and omega, eum and yang, heart and soul of
1912 * libata exception handling. On entry, actions required to
1913 * recover the port and hotplug requests are recorded in
1914 * eh_context. This function executes all the operations with
1915 * appropriate retrials and fallbacks to resurrect failed
1916 * devices, detach goners and greet newcomers.
1918 * LOCKING:
1919 * Kernel thread context (may sleep).
1921 * RETURNS:
1922 * 0 on success, -errno on failure.
1924 static int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
1925 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
1926 ata_postreset_fn_t postreset)
1928 struct ata_eh_context *ehc = &ap->eh_context;
1929 struct ata_device *dev;
1930 int i, rc;
1932 DPRINTK("ENTER\n");
1934 /* prep for recovery */
1935 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1936 dev = &ap->device[i];
1938 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
1940 /* collect port action mask recorded in dev actions */
1941 ehc->i.action |= ehc->i.dev_action[i] & ~ATA_EH_PERDEV_MASK;
1942 ehc->i.dev_action[i] &= ATA_EH_PERDEV_MASK;
1944 /* process hotplug request */
1945 if (dev->flags & ATA_DFLAG_DETACH)
1946 ata_eh_detach_dev(dev);
1948 if (!ata_dev_enabled(dev) &&
1949 ((ehc->i.probe_mask & (1 << dev->devno)) &&
1950 !(ehc->did_probe_mask & (1 << dev->devno)))) {
1951 ata_eh_detach_dev(dev);
1952 ata_dev_init(dev);
1953 ehc->did_probe_mask |= (1 << dev->devno);
1954 ehc->i.action |= ATA_EH_SOFTRESET;
1958 retry:
1959 rc = 0;
1961 /* if UNLOADING, finish immediately */
1962 if (ap->pflags & ATA_PFLAG_UNLOADING)
1963 goto out;
1965 /* skip EH if possible. */
1966 if (ata_eh_skip_recovery(ap))
1967 ehc->i.action = 0;
1969 for (i = 0; i < ATA_MAX_DEVICES; i++)
1970 ehc->classes[i] = ATA_DEV_UNKNOWN;
1972 /* reset */
1973 if (ehc->i.action & ATA_EH_RESET_MASK) {
1974 ata_eh_freeze_port(ap);
1976 rc = ata_eh_reset(ap, ata_port_nr_vacant(ap), prereset,
1977 softreset, hardreset, postreset);
1978 if (rc) {
1979 ata_port_printk(ap, KERN_ERR,
1980 "reset failed, giving up\n");
1981 goto out;
1984 ata_eh_thaw_port(ap);
1987 /* revalidate existing devices and attach new ones */
1988 rc = ata_eh_revalidate_and_attach(ap, &dev);
1989 if (rc)
1990 goto dev_fail;
1992 /* configure transfer mode if necessary */
1993 if (ehc->i.flags & ATA_EHI_SETMODE) {
1994 rc = ata_set_mode(ap, &dev);
1995 if (rc)
1996 goto dev_fail;
1997 ehc->i.flags &= ~ATA_EHI_SETMODE;
2000 goto out;
2002 dev_fail:
2003 ehc->tries[dev->devno]--;
2005 switch (rc) {
2006 case -ENODEV:
2007 /* device missing or wrong IDENTIFY data, schedule probing */
2008 ehc->i.probe_mask |= (1 << dev->devno);
2009 case -EINVAL:
2010 /* give it just one more chance */
2011 ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1);
2012 case -EIO:
2013 if (ehc->tries[dev->devno] == 1) {
2014 /* This is the last chance, better to slow
2015 * down than lose it.
2017 sata_down_spd_limit(ap);
2018 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2022 if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) {
2023 /* disable device if it has used up all its chances */
2024 ata_dev_disable(dev);
2026 /* detach if offline */
2027 if (ata_port_offline(ap))
2028 ata_eh_detach_dev(dev);
2030 /* probe if requested */
2031 if ((ehc->i.probe_mask & (1 << dev->devno)) &&
2032 !(ehc->did_probe_mask & (1 << dev->devno))) {
2033 ata_eh_detach_dev(dev);
2034 ata_dev_init(dev);
2036 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
2037 ehc->did_probe_mask |= (1 << dev->devno);
2038 ehc->i.action |= ATA_EH_SOFTRESET;
2040 } else {
2041 /* soft didn't work? be haaaaard */
2042 if (ehc->i.flags & ATA_EHI_DID_RESET)
2043 ehc->i.action |= ATA_EH_HARDRESET;
2044 else
2045 ehc->i.action |= ATA_EH_SOFTRESET;
2048 if (ata_port_nr_enabled(ap)) {
2049 ata_port_printk(ap, KERN_WARNING, "failed to recover some "
2050 "devices, retrying in 5 secs\n");
2051 ssleep(5);
2052 } else {
2053 /* no device left, repeat fast */
2054 msleep(500);
2057 goto retry;
2059 out:
2060 if (rc) {
2061 for (i = 0; i < ATA_MAX_DEVICES; i++)
2062 ata_dev_disable(&ap->device[i]);
2065 DPRINTK("EXIT, rc=%d\n", rc);
2066 return rc;
2070 * ata_eh_finish - finish up EH
2071 * @ap: host port to finish EH for
2073 * Recovery is complete. Clean up EH states and retry or finish
2074 * failed qcs.
2076 * LOCKING:
2077 * None.
2079 static void ata_eh_finish(struct ata_port *ap)
2081 int tag;
2083 /* retry or finish qcs */
2084 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
2085 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
2087 if (!(qc->flags & ATA_QCFLAG_FAILED))
2088 continue;
2090 if (qc->err_mask) {
2091 /* FIXME: Once EH migration is complete,
2092 * generate sense data in this function,
2093 * considering both err_mask and tf.
2095 if (qc->err_mask & AC_ERR_INVALID)
2096 ata_eh_qc_complete(qc);
2097 else
2098 ata_eh_qc_retry(qc);
2099 } else {
2100 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
2101 ata_eh_qc_complete(qc);
2102 } else {
2103 /* feed zero TF to sense generation */
2104 memset(&qc->result_tf, 0, sizeof(qc->result_tf));
2105 ata_eh_qc_retry(qc);
2112 * ata_do_eh - do standard error handling
2113 * @ap: host port to handle error for
2114 * @prereset: prereset method (can be NULL)
2115 * @softreset: softreset method (can be NULL)
2116 * @hardreset: hardreset method (can be NULL)
2117 * @postreset: postreset method (can be NULL)
2119 * Perform standard error handling sequence.
2121 * LOCKING:
2122 * Kernel thread context (may sleep).
2124 void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
2125 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2126 ata_postreset_fn_t postreset)
2128 ata_eh_autopsy(ap);
2129 ata_eh_report(ap);
2130 ata_eh_recover(ap, prereset, softreset, hardreset, postreset);
2131 ata_eh_finish(ap);
2134 #ifdef CONFIG_PM
2136 * ata_eh_handle_port_suspend - perform port suspend operation
2137 * @ap: port to suspend
2139 * Suspend @ap.
2141 * LOCKING:
2142 * Kernel thread context (may sleep).
2144 static void ata_eh_handle_port_suspend(struct ata_port *ap)
2146 unsigned long flags;
2147 int rc = 0;
2149 /* are we suspending? */
2150 spin_lock_irqsave(ap->lock, flags);
2151 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2152 ap->pm_mesg.event == PM_EVENT_ON) {
2153 spin_unlock_irqrestore(ap->lock, flags);
2154 return;
2156 spin_unlock_irqrestore(ap->lock, flags);
2158 WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED);
2160 /* suspend */
2161 ata_eh_freeze_port(ap);
2163 if (ap->ops->port_suspend)
2164 rc = ap->ops->port_suspend(ap, ap->pm_mesg);
2166 /* report result */
2167 spin_lock_irqsave(ap->lock, flags);
2169 ap->pflags &= ~ATA_PFLAG_PM_PENDING;
2170 if (rc == 0)
2171 ap->pflags |= ATA_PFLAG_SUSPENDED;
2172 else
2173 ata_port_schedule_eh(ap);
2175 if (ap->pm_result) {
2176 *ap->pm_result = rc;
2177 ap->pm_result = NULL;
2180 spin_unlock_irqrestore(ap->lock, flags);
2182 return;
2186 * ata_eh_handle_port_resume - perform port resume operation
2187 * @ap: port to resume
2189 * Resume @ap.
2191 * LOCKING:
2192 * Kernel thread context (may sleep).
2194 static void ata_eh_handle_port_resume(struct ata_port *ap)
2196 unsigned long flags;
2197 int rc = 0;
2199 /* are we resuming? */
2200 spin_lock_irqsave(ap->lock, flags);
2201 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2202 ap->pm_mesg.event != PM_EVENT_ON) {
2203 spin_unlock_irqrestore(ap->lock, flags);
2204 return;
2206 spin_unlock_irqrestore(ap->lock, flags);
2208 WARN_ON(!(ap->pflags & ATA_PFLAG_SUSPENDED));
2210 if (ap->ops->port_resume)
2211 rc = ap->ops->port_resume(ap);
2213 /* report result */
2214 spin_lock_irqsave(ap->lock, flags);
2215 ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED);
2216 if (ap->pm_result) {
2217 *ap->pm_result = rc;
2218 ap->pm_result = NULL;
2220 spin_unlock_irqrestore(ap->lock, flags);
2222 #endif /* CONFIG_PM */