2 * libata-eh.c - libata error handling
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
8 * Copyright 2006 Tejun Heo <htejun@gmail.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
35 #include <linux/config.h>
36 #include <linux/kernel.h>
37 #include <scsi/scsi.h>
38 #include <scsi/scsi_host.h>
39 #include <scsi/scsi_eh.h>
40 #include <scsi/scsi_device.h>
41 #include <scsi/scsi_cmnd.h>
42 #include "scsi_transport_api.h"
44 #include <linux/libata.h>
48 static void __ata_port_freeze(struct ata_port *ap);
49 static void ata_eh_finish(struct ata_port *ap);
51 static void ata_ering_record(struct ata_ering *ering, int is_io,
52 unsigned int err_mask)
54 struct ata_ering_entry *ent;
59 ering->cursor %= ATA_ERING_SIZE;
61 ent = &ering->ring[ering->cursor];
63 ent->err_mask = err_mask;
64 ent->timestamp = get_jiffies_64();
67 static struct ata_ering_entry * ata_ering_top(struct ata_ering *ering)
69 struct ata_ering_entry *ent = &ering->ring[ering->cursor];
75 static int ata_ering_map(struct ata_ering *ering,
76 int (*map_fn)(struct ata_ering_entry *, void *),
80 struct ata_ering_entry *ent;
84 ent = &ering->ring[idx];
87 rc = map_fn(ent, arg);
90 idx = (idx - 1 + ATA_ERING_SIZE) % ATA_ERING_SIZE;
91 } while (idx != ering->cursor);
97 * ata_scsi_timed_out - SCSI layer time out callback
98 * @cmd: timed out SCSI command
100 * Handles SCSI layer timeout. We race with normal completion of
101 * the qc for @cmd. If the qc is already gone, we lose and let
102 * the scsi command finish (EH_HANDLED). Otherwise, the qc has
103 * timed out and EH should be invoked. Prevent ata_qc_complete()
104 * from finishing it by setting EH_SCHEDULED and return
107 * TODO: kill this function once old EH is gone.
110 * Called from timer context
113 * EH_HANDLED or EH_NOT_HANDLED
115 enum scsi_eh_timer_return ata_scsi_timed_out(struct scsi_cmnd *cmd)
117 struct Scsi_Host *host = cmd->device->host;
118 struct ata_port *ap = ata_shost_to_port(host);
120 struct ata_queued_cmd *qc;
121 enum scsi_eh_timer_return ret;
125 if (ap->ops->error_handler) {
126 ret = EH_NOT_HANDLED;
131 spin_lock_irqsave(&ap->host_set->lock, flags);
132 qc = ata_qc_from_tag(ap, ap->active_tag);
134 WARN_ON(qc->scsicmd != cmd);
135 qc->flags |= ATA_QCFLAG_EH_SCHEDULED;
136 qc->err_mask |= AC_ERR_TIMEOUT;
137 ret = EH_NOT_HANDLED;
139 spin_unlock_irqrestore(&ap->host_set->lock, flags);
142 DPRINTK("EXIT, ret=%d\n", ret);
147 * ata_scsi_error - SCSI layer error handler callback
148 * @host: SCSI host on which error occurred
150 * Handles SCSI-layer-thrown error events.
153 * Inherited from SCSI layer (none, can sleep)
158 void ata_scsi_error(struct Scsi_Host *host)
160 struct ata_port *ap = ata_shost_to_port(host);
161 spinlock_t *hs_lock = &ap->host_set->lock;
162 int i, repeat_cnt = ATA_EH_MAX_REPEAT;
167 /* synchronize with port task */
168 ata_port_flush_task(ap);
170 /* synchronize with host_set lock and sort out timeouts */
172 /* For new EH, all qcs are finished in one of three ways -
173 * normal completion, error completion, and SCSI timeout.
174 * Both cmpletions can race against SCSI timeout. When normal
175 * completion wins, the qc never reaches EH. When error
176 * completion wins, the qc has ATA_QCFLAG_FAILED set.
178 * When SCSI timeout wins, things are a bit more complex.
179 * Normal or error completion can occur after the timeout but
180 * before this point. In such cases, both types of
181 * completions are honored. A scmd is determined to have
182 * timed out iff its associated qc is active and not failed.
184 if (ap->ops->error_handler) {
185 struct scsi_cmnd *scmd, *tmp;
188 spin_lock_irqsave(hs_lock, flags);
190 list_for_each_entry_safe(scmd, tmp, &host->eh_cmd_q, eh_entry) {
191 struct ata_queued_cmd *qc;
193 for (i = 0; i < ATA_MAX_QUEUE; i++) {
194 qc = __ata_qc_from_tag(ap, i);
195 if (qc->flags & ATA_QCFLAG_ACTIVE &&
200 if (i < ATA_MAX_QUEUE) {
201 /* the scmd has an associated qc */
202 if (!(qc->flags & ATA_QCFLAG_FAILED)) {
203 /* which hasn't failed yet, timeout */
204 qc->err_mask |= AC_ERR_TIMEOUT;
205 qc->flags |= ATA_QCFLAG_FAILED;
209 /* Normal completion occurred after
210 * SCSI timeout but before this point.
211 * Successfully complete it.
213 scmd->retries = scmd->allowed;
214 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
218 /* If we have timed out qcs. They belong to EH from
219 * this point but the state of the controller is
220 * unknown. Freeze the port to make sure the IRQ
221 * handler doesn't diddle with those qcs. This must
222 * be done atomically w.r.t. setting QCFLAG_FAILED.
225 __ata_port_freeze(ap);
227 spin_unlock_irqrestore(hs_lock, flags);
229 spin_unlock_wait(hs_lock);
232 /* invoke error handler */
233 if (ap->ops->error_handler) {
234 /* fetch & clear EH info */
235 spin_lock_irqsave(hs_lock, flags);
237 memset(&ap->eh_context, 0, sizeof(ap->eh_context));
238 ap->eh_context.i = ap->eh_info;
239 memset(&ap->eh_info, 0, sizeof(ap->eh_info));
241 ap->flags |= ATA_FLAG_EH_IN_PROGRESS;
242 ap->flags &= ~ATA_FLAG_EH_PENDING;
244 spin_unlock_irqrestore(hs_lock, flags);
246 /* invoke EH. if unloading, just finish failed qcs */
247 if (!(ap->flags & ATA_FLAG_UNLOADING))
248 ap->ops->error_handler(ap);
252 /* Exception might have happend after ->error_handler
253 * recovered the port but before this point. Repeat
256 spin_lock_irqsave(hs_lock, flags);
258 if (ap->flags & ATA_FLAG_EH_PENDING) {
260 ata_port_printk(ap, KERN_INFO,
261 "EH pending after completion, "
262 "repeating EH (cnt=%d)\n", repeat_cnt);
263 spin_unlock_irqrestore(hs_lock, flags);
266 ata_port_printk(ap, KERN_ERR, "EH pending after %d "
267 "tries, giving up\n", ATA_EH_MAX_REPEAT);
270 /* this run is complete, make sure EH info is clear */
271 memset(&ap->eh_info, 0, sizeof(ap->eh_info));
273 /* Clear host_eh_scheduled while holding hs_lock such
274 * that if exception occurs after this point but
275 * before EH completion, SCSI midlayer will
278 host->host_eh_scheduled = 0;
280 spin_unlock_irqrestore(hs_lock, flags);
282 WARN_ON(ata_qc_from_tag(ap, ap->active_tag) == NULL);
283 ap->ops->eng_timeout(ap);
286 /* finish or retry handled scmd's and clean up */
287 WARN_ON(host->host_failed || !list_empty(&host->eh_cmd_q));
289 scsi_eh_flush_done_q(&ap->eh_done_q);
292 spin_lock_irqsave(hs_lock, flags);
294 if (ap->flags & ATA_FLAG_LOADING) {
295 ap->flags &= ~ATA_FLAG_LOADING;
297 if (ap->flags & ATA_FLAG_SCSI_HOTPLUG)
298 queue_work(ata_aux_wq, &ap->hotplug_task);
299 if (ap->flags & ATA_FLAG_RECOVERED)
300 ata_port_printk(ap, KERN_INFO, "EH complete\n");
303 ap->flags &= ~(ATA_FLAG_SCSI_HOTPLUG | ATA_FLAG_RECOVERED);
305 /* tell wait_eh that we're done */
306 ap->flags &= ~ATA_FLAG_EH_IN_PROGRESS;
307 wake_up_all(&ap->eh_wait_q);
309 spin_unlock_irqrestore(hs_lock, flags);
315 * ata_port_wait_eh - Wait for the currently pending EH to complete
316 * @ap: Port to wait EH for
318 * Wait until the currently pending EH is complete.
321 * Kernel thread context (may sleep).
323 void ata_port_wait_eh(struct ata_port *ap)
329 spin_lock_irqsave(&ap->host_set->lock, flags);
331 while (ap->flags & (ATA_FLAG_EH_PENDING | ATA_FLAG_EH_IN_PROGRESS)) {
332 prepare_to_wait(&ap->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE);
333 spin_unlock_irqrestore(&ap->host_set->lock, flags);
335 spin_lock_irqsave(&ap->host_set->lock, flags);
338 spin_unlock_irqrestore(&ap->host_set->lock, flags);
340 /* make sure SCSI EH is complete */
341 if (scsi_host_in_recovery(ap->host)) {
348 * ata_qc_timeout - Handle timeout of queued command
349 * @qc: Command that timed out
351 * Some part of the kernel (currently, only the SCSI layer)
352 * has noticed that the active command on port @ap has not
353 * completed after a specified length of time. Handle this
354 * condition by disabling DMA (if necessary) and completing
355 * transactions, with error if necessary.
357 * This also handles the case of the "lost interrupt", where
358 * for some reason (possibly hardware bug, possibly driver bug)
359 * an interrupt was not delivered to the driver, even though the
360 * transaction completed successfully.
362 * TODO: kill this function once old EH is gone.
365 * Inherited from SCSI layer (none, can sleep)
367 static void ata_qc_timeout(struct ata_queued_cmd *qc)
369 struct ata_port *ap = qc->ap;
370 struct ata_host_set *host_set = ap->host_set;
371 u8 host_stat = 0, drv_stat;
376 ap->hsm_task_state = HSM_ST_IDLE;
378 spin_lock_irqsave(&host_set->lock, flags);
380 switch (qc->tf.protocol) {
383 case ATA_PROT_ATAPI_DMA:
384 host_stat = ap->ops->bmdma_status(ap);
386 /* before we do anything else, clear DMA-Start bit */
387 ap->ops->bmdma_stop(qc);
393 drv_stat = ata_chk_status(ap);
395 /* ack bmdma irq events */
396 ap->ops->irq_clear(ap);
398 ata_dev_printk(qc->dev, KERN_ERR, "command 0x%x timeout, "
399 "stat 0x%x host_stat 0x%x\n",
400 qc->tf.command, drv_stat, host_stat);
402 /* complete taskfile transaction */
403 qc->err_mask |= AC_ERR_TIMEOUT;
407 spin_unlock_irqrestore(&host_set->lock, flags);
409 ata_eh_qc_complete(qc);
415 * ata_eng_timeout - Handle timeout of queued command
416 * @ap: Port on which timed-out command is active
418 * Some part of the kernel (currently, only the SCSI layer)
419 * has noticed that the active command on port @ap has not
420 * completed after a specified length of time. Handle this
421 * condition by disabling DMA (if necessary) and completing
422 * transactions, with error if necessary.
424 * This also handles the case of the "lost interrupt", where
425 * for some reason (possibly hardware bug, possibly driver bug)
426 * an interrupt was not delivered to the driver, even though the
427 * transaction completed successfully.
429 * TODO: kill this function once old EH is gone.
432 * Inherited from SCSI layer (none, can sleep)
434 void ata_eng_timeout(struct ata_port *ap)
438 ata_qc_timeout(ata_qc_from_tag(ap, ap->active_tag));
444 * ata_qc_schedule_eh - schedule qc for error handling
445 * @qc: command to schedule error handling for
447 * Schedule error handling for @qc. EH will kick in as soon as
448 * other commands are drained.
451 * spin_lock_irqsave(host_set lock)
453 void ata_qc_schedule_eh(struct ata_queued_cmd *qc)
455 struct ata_port *ap = qc->ap;
457 WARN_ON(!ap->ops->error_handler);
459 qc->flags |= ATA_QCFLAG_FAILED;
460 qc->ap->flags |= ATA_FLAG_EH_PENDING;
462 /* The following will fail if timeout has already expired.
463 * ata_scsi_error() takes care of such scmds on EH entry.
464 * Note that ATA_QCFLAG_FAILED is unconditionally set after
465 * this function completes.
467 scsi_req_abort_cmd(qc->scsicmd);
471 * ata_port_schedule_eh - schedule error handling without a qc
472 * @ap: ATA port to schedule EH for
474 * Schedule error handling for @ap. EH will kick in as soon as
475 * all commands are drained.
478 * spin_lock_irqsave(host_set lock)
480 void ata_port_schedule_eh(struct ata_port *ap)
482 WARN_ON(!ap->ops->error_handler);
484 ap->flags |= ATA_FLAG_EH_PENDING;
485 scsi_schedule_eh(ap->host);
487 DPRINTK("port EH scheduled\n");
491 * ata_port_abort - abort all qc's on the port
492 * @ap: ATA port to abort qc's for
494 * Abort all active qc's of @ap and schedule EH.
497 * spin_lock_irqsave(host_set lock)
500 * Number of aborted qc's.
502 int ata_port_abort(struct ata_port *ap)
504 int tag, nr_aborted = 0;
506 WARN_ON(!ap->ops->error_handler);
508 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
509 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag);
512 qc->flags |= ATA_QCFLAG_FAILED;
519 ata_port_schedule_eh(ap);
525 * __ata_port_freeze - freeze port
526 * @ap: ATA port to freeze
528 * This function is called when HSM violation or some other
529 * condition disrupts normal operation of the port. Frozen port
530 * is not allowed to perform any operation until the port is
531 * thawed, which usually follows a successful reset.
533 * ap->ops->freeze() callback can be used for freezing the port
534 * hardware-wise (e.g. mask interrupt and stop DMA engine). If a
535 * port cannot be frozen hardware-wise, the interrupt handler
536 * must ack and clear interrupts unconditionally while the port
540 * spin_lock_irqsave(host_set lock)
542 static void __ata_port_freeze(struct ata_port *ap)
544 WARN_ON(!ap->ops->error_handler);
549 ap->flags |= ATA_FLAG_FROZEN;
551 DPRINTK("ata%u port frozen\n", ap->id);
555 * ata_port_freeze - abort & freeze port
556 * @ap: ATA port to freeze
558 * Abort and freeze @ap.
561 * spin_lock_irqsave(host_set lock)
564 * Number of aborted commands.
566 int ata_port_freeze(struct ata_port *ap)
570 WARN_ON(!ap->ops->error_handler);
572 nr_aborted = ata_port_abort(ap);
573 __ata_port_freeze(ap);
579 * ata_eh_freeze_port - EH helper to freeze port
580 * @ap: ATA port to freeze
587 void ata_eh_freeze_port(struct ata_port *ap)
591 if (!ap->ops->error_handler)
594 spin_lock_irqsave(&ap->host_set->lock, flags);
595 __ata_port_freeze(ap);
596 spin_unlock_irqrestore(&ap->host_set->lock, flags);
600 * ata_port_thaw_port - EH helper to thaw port
601 * @ap: ATA port to thaw
603 * Thaw frozen port @ap.
608 void ata_eh_thaw_port(struct ata_port *ap)
612 if (!ap->ops->error_handler)
615 spin_lock_irqsave(&ap->host_set->lock, flags);
617 ap->flags &= ~ATA_FLAG_FROZEN;
622 spin_unlock_irqrestore(&ap->host_set->lock, flags);
624 DPRINTK("ata%u port thawed\n", ap->id);
627 static void ata_eh_scsidone(struct scsi_cmnd *scmd)
632 static void __ata_eh_qc_complete(struct ata_queued_cmd *qc)
634 struct ata_port *ap = qc->ap;
635 struct scsi_cmnd *scmd = qc->scsicmd;
638 spin_lock_irqsave(&ap->host_set->lock, flags);
639 qc->scsidone = ata_eh_scsidone;
640 __ata_qc_complete(qc);
641 WARN_ON(ata_tag_valid(qc->tag));
642 spin_unlock_irqrestore(&ap->host_set->lock, flags);
644 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
648 * ata_eh_qc_complete - Complete an active ATA command from EH
649 * @qc: Command to complete
651 * Indicate to the mid and upper layers that an ATA command has
652 * completed. To be used from EH.
654 void ata_eh_qc_complete(struct ata_queued_cmd *qc)
656 struct scsi_cmnd *scmd = qc->scsicmd;
657 scmd->retries = scmd->allowed;
658 __ata_eh_qc_complete(qc);
662 * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
663 * @qc: Command to retry
665 * Indicate to the mid and upper layers that an ATA command
666 * should be retried. To be used from EH.
668 * SCSI midlayer limits the number of retries to scmd->allowed.
669 * scmd->retries is decremented for commands which get retried
670 * due to unrelated failures (qc->err_mask is zero).
672 void ata_eh_qc_retry(struct ata_queued_cmd *qc)
674 struct scsi_cmnd *scmd = qc->scsicmd;
675 if (!qc->err_mask && scmd->retries)
677 __ata_eh_qc_complete(qc);
681 * ata_eh_detach_dev - detach ATA device
682 * @dev: ATA device to detach
689 static void ata_eh_detach_dev(struct ata_device *dev)
691 struct ata_port *ap = dev->ap;
694 ata_dev_disable(dev);
696 spin_lock_irqsave(&ap->host_set->lock, flags);
698 dev->flags &= ~ATA_DFLAG_DETACH;
700 if (ata_scsi_offline_dev(dev)) {
701 dev->flags |= ATA_DFLAG_DETACHED;
702 ap->flags |= ATA_FLAG_SCSI_HOTPLUG;
705 spin_unlock_irqrestore(&ap->host_set->lock, flags);
709 * ata_eh_about_to_do - about to perform eh_action
710 * @ap: target ATA port
711 * @action: action about to be performed
713 * Called just before performing EH actions to clear related bits
714 * in @ap->eh_info such that eh actions are not unnecessarily
720 static void ata_eh_about_to_do(struct ata_port *ap, unsigned int action)
724 spin_lock_irqsave(&ap->host_set->lock, flags);
725 ap->eh_info.action &= ~action;
726 ap->flags |= ATA_FLAG_RECOVERED;
727 spin_unlock_irqrestore(&ap->host_set->lock, flags);
731 * ata_err_string - convert err_mask to descriptive string
732 * @err_mask: error mask to convert to string
734 * Convert @err_mask to descriptive string. Errors are
735 * prioritized according to severity and only the most severe
742 * Descriptive string for @err_mask
744 static const char * ata_err_string(unsigned int err_mask)
746 if (err_mask & AC_ERR_HOST_BUS)
747 return "host bus error";
748 if (err_mask & AC_ERR_ATA_BUS)
749 return "ATA bus error";
750 if (err_mask & AC_ERR_TIMEOUT)
752 if (err_mask & AC_ERR_HSM)
753 return "HSM violation";
754 if (err_mask & AC_ERR_SYSTEM)
755 return "internal error";
756 if (err_mask & AC_ERR_MEDIA)
757 return "media error";
758 if (err_mask & AC_ERR_INVALID)
759 return "invalid argument";
760 if (err_mask & AC_ERR_DEV)
761 return "device error";
762 return "unknown error";
766 * ata_read_log_page - read a specific log page
767 * @dev: target device
768 * @page: page to read
769 * @buf: buffer to store read page
770 * @sectors: number of sectors to read
772 * Read log page using READ_LOG_EXT command.
775 * Kernel thread context (may sleep).
778 * 0 on success, AC_ERR_* mask otherwise.
780 static unsigned int ata_read_log_page(struct ata_device *dev,
781 u8 page, void *buf, unsigned int sectors)
783 struct ata_taskfile tf;
784 unsigned int err_mask;
786 DPRINTK("read log page - page %d\n", page);
788 ata_tf_init(dev, &tf);
789 tf.command = ATA_CMD_READ_LOG_EXT;
792 tf.hob_nsect = sectors >> 8;
793 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_LBA48 | ATA_TFLAG_DEVICE;
794 tf.protocol = ATA_PROT_PIO;
796 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
797 buf, sectors * ATA_SECT_SIZE);
799 DPRINTK("EXIT, err_mask=%x\n", err_mask);
804 * ata_eh_read_log_10h - Read log page 10h for NCQ error details
805 * @dev: Device to read log page 10h from
806 * @tag: Resulting tag of the failed command
807 * @tf: Resulting taskfile registers of the failed command
809 * Read log page 10h to obtain NCQ error details and clear error
813 * Kernel thread context (may sleep).
816 * 0 on success, -errno otherwise.
818 static int ata_eh_read_log_10h(struct ata_device *dev,
819 int *tag, struct ata_taskfile *tf)
821 u8 *buf = dev->ap->sector_buf;
822 unsigned int err_mask;
826 err_mask = ata_read_log_page(dev, ATA_LOG_SATA_NCQ, buf, 1);
831 for (i = 0; i < ATA_SECT_SIZE; i++)
834 ata_dev_printk(dev, KERN_WARNING,
835 "invalid checksum 0x%x on log page 10h\n", csum);
840 *tag = buf[0] & 0x1f;
842 tf->command = buf[2];
843 tf->feature = buf[3];
848 tf->hob_lbal = buf[8];
849 tf->hob_lbam = buf[9];
850 tf->hob_lbah = buf[10];
852 tf->hob_nsect = buf[13];
858 * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
859 * @dev: device to perform REQUEST_SENSE to
860 * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
862 * Perform ATAPI REQUEST_SENSE after the device reported CHECK
863 * SENSE. This function is EH helper.
866 * Kernel thread context (may sleep).
869 * 0 on success, AC_ERR_* mask on failure
871 static unsigned int atapi_eh_request_sense(struct ata_device *dev,
872 unsigned char *sense_buf)
874 struct ata_port *ap = dev->ap;
875 struct ata_taskfile tf;
876 u8 cdb[ATAPI_CDB_LEN];
878 DPRINTK("ATAPI request sense\n");
880 ata_tf_init(dev, &tf);
882 /* FIXME: is this needed? */
883 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
885 /* XXX: why tf_read here? */
886 ap->ops->tf_read(ap, &tf);
888 /* fill these in, for the case where they are -not- overwritten */
890 sense_buf[2] = tf.feature >> 4;
892 memset(cdb, 0, ATAPI_CDB_LEN);
893 cdb[0] = REQUEST_SENSE;
894 cdb[4] = SCSI_SENSE_BUFFERSIZE;
896 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
897 tf.command = ATA_CMD_PACKET;
899 /* is it pointless to prefer PIO for "safety reasons"? */
900 if (ap->flags & ATA_FLAG_PIO_DMA) {
901 tf.protocol = ATA_PROT_ATAPI_DMA;
902 tf.feature |= ATAPI_PKT_DMA;
904 tf.protocol = ATA_PROT_ATAPI;
905 tf.lbam = (8 * 1024) & 0xff;
906 tf.lbah = (8 * 1024) >> 8;
909 return ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE,
910 sense_buf, SCSI_SENSE_BUFFERSIZE);
914 * ata_eh_analyze_serror - analyze SError for a failed port
915 * @ap: ATA port to analyze SError for
917 * Analyze SError if available and further determine cause of
923 static void ata_eh_analyze_serror(struct ata_port *ap)
925 struct ata_eh_context *ehc = &ap->eh_context;
926 u32 serror = ehc->i.serror;
927 unsigned int err_mask = 0, action = 0;
929 if (serror & SERR_PERSISTENT) {
930 err_mask |= AC_ERR_ATA_BUS;
931 action |= ATA_EH_HARDRESET;
934 (SERR_DATA_RECOVERED | SERR_COMM_RECOVERED | SERR_DATA)) {
935 err_mask |= AC_ERR_ATA_BUS;
936 action |= ATA_EH_SOFTRESET;
938 if (serror & SERR_PROTOCOL) {
939 err_mask |= AC_ERR_HSM;
940 action |= ATA_EH_SOFTRESET;
942 if (serror & SERR_INTERNAL) {
943 err_mask |= AC_ERR_SYSTEM;
944 action |= ATA_EH_SOFTRESET;
946 if (serror & (SERR_PHYRDY_CHG | SERR_DEV_XCHG))
947 ata_ehi_hotplugged(&ehc->i);
949 ehc->i.err_mask |= err_mask;
950 ehc->i.action |= action;
954 * ata_eh_analyze_ncq_error - analyze NCQ error
955 * @ap: ATA port to analyze NCQ error for
957 * Read log page 10h, determine the offending qc and acquire
958 * error status TF. For NCQ device errors, all LLDDs have to do
959 * is setting AC_ERR_DEV in ehi->err_mask. This function takes
963 * Kernel thread context (may sleep).
965 static void ata_eh_analyze_ncq_error(struct ata_port *ap)
967 struct ata_eh_context *ehc = &ap->eh_context;
968 struct ata_device *dev = ap->device;
969 struct ata_queued_cmd *qc;
970 struct ata_taskfile tf;
973 /* if frozen, we can't do much */
974 if (ap->flags & ATA_FLAG_FROZEN)
977 /* is it NCQ device error? */
978 if (!ap->sactive || !(ehc->i.err_mask & AC_ERR_DEV))
981 /* has LLDD analyzed already? */
982 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
983 qc = __ata_qc_from_tag(ap, tag);
985 if (!(qc->flags & ATA_QCFLAG_FAILED))
992 /* okay, this error is ours */
993 rc = ata_eh_read_log_10h(dev, &tag, &tf);
995 ata_port_printk(ap, KERN_ERR, "failed to read log page 10h "
1000 if (!(ap->sactive & (1 << tag))) {
1001 ata_port_printk(ap, KERN_ERR, "log page 10h reported "
1002 "inactive tag %d\n", tag);
1006 /* we've got the perpetrator, condemn it */
1007 qc = __ata_qc_from_tag(ap, tag);
1008 memcpy(&qc->result_tf, &tf, sizeof(tf));
1009 qc->err_mask |= AC_ERR_DEV;
1010 ehc->i.err_mask &= ~AC_ERR_DEV;
1014 * ata_eh_analyze_tf - analyze taskfile of a failed qc
1015 * @qc: qc to analyze
1016 * @tf: Taskfile registers to analyze
1018 * Analyze taskfile of @qc and further determine cause of
1019 * failure. This function also requests ATAPI sense data if
1023 * Kernel thread context (may sleep).
1026 * Determined recovery action
1028 static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc,
1029 const struct ata_taskfile *tf)
1031 unsigned int tmp, action = 0;
1032 u8 stat = tf->command, err = tf->feature;
1034 if ((stat & (ATA_BUSY | ATA_DRQ | ATA_DRDY)) != ATA_DRDY) {
1035 qc->err_mask |= AC_ERR_HSM;
1036 return ATA_EH_SOFTRESET;
1039 if (!(qc->err_mask & AC_ERR_DEV))
1042 switch (qc->dev->class) {
1045 qc->err_mask |= AC_ERR_ATA_BUS;
1047 qc->err_mask |= AC_ERR_MEDIA;
1049 qc->err_mask |= AC_ERR_INVALID;
1053 tmp = atapi_eh_request_sense(qc->dev,
1054 qc->scsicmd->sense_buffer);
1056 /* ATA_QCFLAG_SENSE_VALID is used to tell
1057 * atapi_qc_complete() that sense data is
1060 * TODO: interpret sense data and set
1061 * appropriate err_mask.
1063 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1065 qc->err_mask |= tmp;
1068 if (qc->err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT | AC_ERR_ATA_BUS))
1069 action |= ATA_EH_SOFTRESET;
1074 static int ata_eh_categorize_ering_entry(struct ata_ering_entry *ent)
1076 if (ent->err_mask & (AC_ERR_ATA_BUS | AC_ERR_TIMEOUT))
1080 if (ent->err_mask & AC_ERR_HSM)
1082 if ((ent->err_mask &
1083 (AC_ERR_DEV|AC_ERR_MEDIA|AC_ERR_INVALID)) == AC_ERR_DEV)
1090 struct speed_down_needed_arg {
1095 static int speed_down_needed_cb(struct ata_ering_entry *ent, void *void_arg)
1097 struct speed_down_needed_arg *arg = void_arg;
1099 if (ent->timestamp < arg->since)
1102 arg->nr_errors[ata_eh_categorize_ering_entry(ent)]++;
1107 * ata_eh_speed_down_needed - Determine wheter speed down is necessary
1108 * @dev: Device of interest
1110 * This function examines error ring of @dev and determines
1111 * whether speed down is necessary. Speed down is necessary if
1112 * there have been more than 3 of Cat-1 errors or 10 of Cat-2
1113 * errors during last 15 minutes.
1115 * Cat-1 errors are ATA_BUS, TIMEOUT for any command and HSM
1116 * violation for known supported commands.
1118 * Cat-2 errors are unclassified DEV error for known supported
1122 * Inherited from caller.
1125 * 1 if speed down is necessary, 0 otherwise
1127 static int ata_eh_speed_down_needed(struct ata_device *dev)
1129 const u64 interval = 15LLU * 60 * HZ;
1130 static const int err_limits[3] = { -1, 3, 10 };
1131 struct speed_down_needed_arg arg;
1132 struct ata_ering_entry *ent;
1136 ent = ata_ering_top(&dev->ering);
1140 err_cat = ata_eh_categorize_ering_entry(ent);
1144 memset(&arg, 0, sizeof(arg));
1146 j64 = get_jiffies_64();
1147 if (j64 >= interval)
1148 arg.since = j64 - interval;
1152 ata_ering_map(&dev->ering, speed_down_needed_cb, &arg);
1154 return arg.nr_errors[err_cat] > err_limits[err_cat];
1158 * ata_eh_speed_down - record error and speed down if necessary
1159 * @dev: Failed device
1160 * @is_io: Did the device fail during normal IO?
1161 * @err_mask: err_mask of the error
1163 * Record error and examine error history to determine whether
1164 * adjusting transmission speed is necessary. It also sets
1165 * transmission limits appropriately if such adjustment is
1169 * Kernel thread context (may sleep).
1172 * 0 on success, -errno otherwise
1174 static int ata_eh_speed_down(struct ata_device *dev, int is_io,
1175 unsigned int err_mask)
1180 /* record error and determine whether speed down is necessary */
1181 ata_ering_record(&dev->ering, is_io, err_mask);
1183 if (!ata_eh_speed_down_needed(dev))
1186 /* speed down SATA link speed if possible */
1187 if (sata_down_spd_limit(dev->ap) == 0)
1188 return ATA_EH_HARDRESET;
1190 /* lower transfer mode */
1191 if (ata_down_xfermask_limit(dev, 0) == 0)
1192 return ATA_EH_SOFTRESET;
1194 ata_dev_printk(dev, KERN_ERR,
1195 "speed down requested but no transfer mode left\n");
1200 * ata_eh_autopsy - analyze error and determine recovery action
1201 * @ap: ATA port to perform autopsy on
1203 * Analyze why @ap failed and determine which recovery action is
1204 * needed. This function also sets more detailed AC_ERR_* values
1205 * and fills sense data for ATAPI CHECK SENSE.
1208 * Kernel thread context (may sleep).
1210 static void ata_eh_autopsy(struct ata_port *ap)
1212 struct ata_eh_context *ehc = &ap->eh_context;
1213 unsigned int action = ehc->i.action;
1214 struct ata_device *failed_dev = NULL;
1215 unsigned int all_err_mask = 0;
1222 /* obtain and analyze SError */
1223 rc = sata_scr_read(ap, SCR_ERROR, &serror);
1225 ehc->i.serror |= serror;
1226 ata_eh_analyze_serror(ap);
1227 } else if (rc != -EOPNOTSUPP)
1228 action |= ATA_EH_HARDRESET;
1230 /* analyze NCQ failure */
1231 ata_eh_analyze_ncq_error(ap);
1233 /* any real error trumps AC_ERR_OTHER */
1234 if (ehc->i.err_mask & ~AC_ERR_OTHER)
1235 ehc->i.err_mask &= ~AC_ERR_OTHER;
1237 all_err_mask |= ehc->i.err_mask;
1239 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1240 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1242 if (!(qc->flags & ATA_QCFLAG_FAILED))
1245 /* inherit upper level err_mask */
1246 qc->err_mask |= ehc->i.err_mask;
1249 action |= ata_eh_analyze_tf(qc, &qc->result_tf);
1251 /* DEV errors are probably spurious in case of ATA_BUS error */
1252 if (qc->err_mask & AC_ERR_ATA_BUS)
1253 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_MEDIA |
1256 /* any real error trumps unknown error */
1257 if (qc->err_mask & ~AC_ERR_OTHER)
1258 qc->err_mask &= ~AC_ERR_OTHER;
1260 /* SENSE_VALID trumps dev/unknown error and revalidation */
1261 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
1262 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER);
1263 action &= ~ATA_EH_REVALIDATE;
1266 /* accumulate error info */
1267 failed_dev = qc->dev;
1268 all_err_mask |= qc->err_mask;
1269 if (qc->flags & ATA_QCFLAG_IO)
1273 /* speed down iff command was in progress */
1275 action |= ata_eh_speed_down(failed_dev, is_io, all_err_mask);
1277 /* enforce default EH actions */
1278 if (ap->flags & ATA_FLAG_FROZEN ||
1279 all_err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT))
1280 action |= ATA_EH_SOFTRESET;
1281 else if (all_err_mask)
1282 action |= ATA_EH_REVALIDATE;
1284 /* record autopsy result */
1285 ehc->i.dev = failed_dev;
1286 ehc->i.action = action;
1292 * ata_eh_report - report error handling to user
1293 * @ap: ATA port EH is going on
1295 * Report EH to user.
1300 static void ata_eh_report(struct ata_port *ap)
1302 struct ata_eh_context *ehc = &ap->eh_context;
1303 const char *frozen, *desc;
1304 int tag, nr_failed = 0;
1307 if (ehc->i.desc[0] != '\0')
1310 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1311 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1313 if (!(qc->flags & ATA_QCFLAG_FAILED))
1315 if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask)
1321 if (!nr_failed && !ehc->i.err_mask)
1325 if (ap->flags & ATA_FLAG_FROZEN)
1329 ata_dev_printk(ehc->i.dev, KERN_ERR, "exception Emask 0x%x "
1330 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
1331 ehc->i.err_mask, ap->sactive, ehc->i.serror,
1332 ehc->i.action, frozen);
1334 ata_dev_printk(ehc->i.dev, KERN_ERR, "(%s)\n", desc);
1336 ata_port_printk(ap, KERN_ERR, "exception Emask 0x%x "
1337 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
1338 ehc->i.err_mask, ap->sactive, ehc->i.serror,
1339 ehc->i.action, frozen);
1341 ata_port_printk(ap, KERN_ERR, "(%s)\n", desc);
1344 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1345 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1347 if (!(qc->flags & ATA_QCFLAG_FAILED) || !qc->err_mask)
1350 ata_dev_printk(qc->dev, KERN_ERR, "tag %d cmd 0x%x "
1351 "Emask 0x%x stat 0x%x err 0x%x (%s)\n",
1352 qc->tag, qc->tf.command, qc->err_mask,
1353 qc->result_tf.command, qc->result_tf.feature,
1354 ata_err_string(qc->err_mask));
1358 static int ata_do_reset(struct ata_port *ap, ata_reset_fn_t reset,
1359 unsigned int *classes)
1363 for (i = 0; i < ATA_MAX_DEVICES; i++)
1364 classes[i] = ATA_DEV_UNKNOWN;
1366 rc = reset(ap, classes);
1370 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
1371 * is complete and convert all ATA_DEV_UNKNOWN to
1374 for (i = 0; i < ATA_MAX_DEVICES; i++)
1375 if (classes[i] != ATA_DEV_UNKNOWN)
1378 if (i < ATA_MAX_DEVICES)
1379 for (i = 0; i < ATA_MAX_DEVICES; i++)
1380 if (classes[i] == ATA_DEV_UNKNOWN)
1381 classes[i] = ATA_DEV_NONE;
1386 static int ata_eh_followup_srst_needed(int rc, int classify,
1387 const unsigned int *classes)
1393 if (classify && classes[0] == ATA_DEV_UNKNOWN)
1398 static int ata_eh_reset(struct ata_port *ap, int classify,
1399 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
1400 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
1402 struct ata_eh_context *ehc = &ap->eh_context;
1403 unsigned int *classes = ehc->classes;
1404 int tries = ATA_EH_RESET_TRIES;
1405 int verbose = !(ap->flags & ATA_FLAG_LOADING);
1406 unsigned int action;
1407 ata_reset_fn_t reset;
1408 int i, did_followup_srst, rc;
1410 /* Determine which reset to use and record in ehc->i.action.
1411 * prereset() may examine and modify it.
1413 action = ehc->i.action;
1414 ehc->i.action &= ~ATA_EH_RESET_MASK;
1415 if (softreset && (!hardreset || (!sata_set_spd_needed(ap) &&
1416 !(action & ATA_EH_HARDRESET))))
1417 ehc->i.action |= ATA_EH_SOFTRESET;
1419 ehc->i.action |= ATA_EH_HARDRESET;
1424 ata_port_printk(ap, KERN_ERR,
1425 "prereset failed (errno=%d)\n", rc);
1430 /* prereset() might have modified ehc->i.action */
1431 if (ehc->i.action & ATA_EH_HARDRESET)
1433 else if (ehc->i.action & ATA_EH_SOFTRESET)
1436 /* prereset told us not to reset, bang classes and return */
1437 for (i = 0; i < ATA_MAX_DEVICES; i++)
1438 classes[i] = ATA_DEV_NONE;
1442 /* did prereset() screw up? if so, fix up to avoid oopsing */
1444 ata_port_printk(ap, KERN_ERR, "BUG: prereset() requested "
1445 "invalid reset type\n");
1453 /* shut up during boot probing */
1455 ata_port_printk(ap, KERN_INFO, "%s resetting port\n",
1456 reset == softreset ? "soft" : "hard");
1459 ata_eh_about_to_do(ap, ATA_EH_RESET_MASK);
1460 ehc->i.flags |= ATA_EHI_DID_RESET;
1462 rc = ata_do_reset(ap, reset, classes);
1464 did_followup_srst = 0;
1465 if (reset == hardreset &&
1466 ata_eh_followup_srst_needed(rc, classify, classes)) {
1467 /* okay, let's do follow-up softreset */
1468 did_followup_srst = 1;
1472 ata_port_printk(ap, KERN_ERR,
1473 "follow-up softreset required "
1474 "but no softreset avaliable\n");
1478 ata_eh_about_to_do(ap, ATA_EH_RESET_MASK);
1479 rc = ata_do_reset(ap, reset, classes);
1481 if (rc == 0 && classify &&
1482 classes[0] == ATA_DEV_UNKNOWN) {
1483 ata_port_printk(ap, KERN_ERR,
1484 "classification failed\n");
1489 if (rc && --tries) {
1492 if (reset == softreset) {
1493 if (did_followup_srst)
1494 type = "follow-up soft";
1500 ata_port_printk(ap, KERN_WARNING,
1501 "%sreset failed, retrying in 5 secs\n", type);
1504 if (reset == hardreset)
1505 sata_down_spd_limit(ap);
1512 /* After the reset, the device state is PIO 0 and the
1513 * controller state is undefined. Record the mode.
1515 for (i = 0; i < ATA_MAX_DEVICES; i++)
1516 ap->device[i].pio_mode = XFER_PIO_0;
1519 postreset(ap, classes);
1521 /* reset successful, schedule revalidation */
1523 ehc->i.action &= ~ATA_EH_RESET_MASK;
1524 ehc->i.action |= ATA_EH_REVALIDATE;
1530 static int ata_eh_revalidate_and_attach(struct ata_port *ap,
1531 struct ata_device **r_failed_dev)
1533 struct ata_eh_context *ehc = &ap->eh_context;
1534 struct ata_device *dev;
1535 unsigned long flags;
1540 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1541 dev = &ap->device[i];
1543 if (ehc->i.action & ATA_EH_REVALIDATE && ata_dev_enabled(dev) &&
1544 (!ehc->i.dev || ehc->i.dev == dev)) {
1545 if (ata_port_offline(ap)) {
1550 ata_eh_about_to_do(ap, ATA_EH_REVALIDATE);
1551 rc = ata_dev_revalidate(dev,
1552 ehc->i.flags & ATA_EHI_DID_RESET);
1556 ehc->i.action &= ~ATA_EH_REVALIDATE;
1557 } else if (dev->class == ATA_DEV_UNKNOWN &&
1558 ehc->tries[dev->devno] &&
1559 ata_class_enabled(ehc->classes[dev->devno])) {
1560 dev->class = ehc->classes[dev->devno];
1562 rc = ata_dev_read_id(dev, &dev->class, 1, dev->id);
1564 rc = ata_dev_configure(dev, 1);
1567 dev->class = ATA_DEV_UNKNOWN;
1571 spin_lock_irqsave(&ap->host_set->lock, flags);
1572 ap->flags |= ATA_FLAG_SCSI_HOTPLUG;
1573 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1578 *r_failed_dev = dev;
1584 static int ata_port_nr_enabled(struct ata_port *ap)
1588 for (i = 0; i < ATA_MAX_DEVICES; i++)
1589 if (ata_dev_enabled(&ap->device[i]))
1594 static int ata_port_nr_vacant(struct ata_port *ap)
1598 for (i = 0; i < ATA_MAX_DEVICES; i++)
1599 if (ap->device[i].class == ATA_DEV_UNKNOWN)
1604 static int ata_eh_skip_recovery(struct ata_port *ap)
1606 struct ata_eh_context *ehc = &ap->eh_context;
1609 if (ap->flags & ATA_FLAG_FROZEN || ata_port_nr_enabled(ap))
1612 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
1613 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1614 struct ata_device *dev = &ap->device[i];
1616 if (dev->class == ATA_DEV_UNKNOWN &&
1617 ehc->classes[dev->devno] != ATA_DEV_NONE)
1625 * ata_eh_recover - recover host port after error
1626 * @ap: host port to recover
1627 * @prereset: prereset method (can be NULL)
1628 * @softreset: softreset method (can be NULL)
1629 * @hardreset: hardreset method (can be NULL)
1630 * @postreset: postreset method (can be NULL)
1632 * This is the alpha and omega, eum and yang, heart and soul of
1633 * libata exception handling. On entry, actions required to
1634 * recover the port and hotplug requests are recorded in
1635 * eh_context. This function executes all the operations with
1636 * appropriate retrials and fallbacks to resurrect failed
1637 * devices, detach goners and greet newcomers.
1640 * Kernel thread context (may sleep).
1643 * 0 on success, -errno on failure.
1645 static int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
1646 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
1647 ata_postreset_fn_t postreset)
1649 struct ata_eh_context *ehc = &ap->eh_context;
1650 struct ata_device *dev;
1651 int down_xfermask, i, rc;
1655 /* prep for recovery */
1656 for (i = 0; i < ATA_MAX_DEVICES; i++) {
1657 dev = &ap->device[i];
1659 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
1661 /* process hotplug request */
1662 if (dev->flags & ATA_DFLAG_DETACH)
1663 ata_eh_detach_dev(dev);
1665 if (!ata_dev_enabled(dev) &&
1666 ((ehc->i.probe_mask & (1 << dev->devno)) &&
1667 !(ehc->did_probe_mask & (1 << dev->devno)))) {
1668 ata_eh_detach_dev(dev);
1670 ehc->did_probe_mask |= (1 << dev->devno);
1671 ehc->i.action |= ATA_EH_SOFTRESET;
1679 /* skip EH if possible. */
1680 if (ata_eh_skip_recovery(ap))
1683 for (i = 0; i < ATA_MAX_DEVICES; i++)
1684 ehc->classes[i] = ATA_DEV_UNKNOWN;
1687 if (ehc->i.action & ATA_EH_RESET_MASK) {
1688 ata_eh_freeze_port(ap);
1690 rc = ata_eh_reset(ap, ata_port_nr_vacant(ap), prereset,
1691 softreset, hardreset, postreset);
1693 ata_port_printk(ap, KERN_ERR,
1694 "reset failed, giving up\n");
1698 ata_eh_thaw_port(ap);
1701 /* revalidate existing devices and attach new ones */
1702 rc = ata_eh_revalidate_and_attach(ap, &dev);
1706 /* configure transfer mode if the port has been reset */
1707 if (ehc->i.flags & ATA_EHI_DID_RESET) {
1708 rc = ata_set_mode(ap, &dev);
1720 /* device missing, schedule probing */
1721 ehc->i.probe_mask |= (1 << dev->devno);
1723 ehc->tries[dev->devno] = 0;
1726 sata_down_spd_limit(ap);
1728 ehc->tries[dev->devno]--;
1729 if (down_xfermask &&
1730 ata_down_xfermask_limit(dev, ehc->tries[dev->devno] == 1))
1731 ehc->tries[dev->devno] = 0;
1734 if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) {
1735 /* disable device if it has used up all its chances */
1736 ata_dev_disable(dev);
1738 /* detach if offline */
1739 if (ata_port_offline(ap))
1740 ata_eh_detach_dev(dev);
1742 /* probe if requested */
1743 if ((ehc->i.probe_mask & (1 << dev->devno)) &&
1744 !(ehc->did_probe_mask & (1 << dev->devno))) {
1745 ata_eh_detach_dev(dev);
1748 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
1749 ehc->did_probe_mask |= (1 << dev->devno);
1750 ehc->i.action |= ATA_EH_SOFTRESET;
1753 /* soft didn't work? be haaaaard */
1754 if (ehc->i.flags & ATA_EHI_DID_RESET)
1755 ehc->i.action |= ATA_EH_HARDRESET;
1757 ehc->i.action |= ATA_EH_SOFTRESET;
1760 if (ata_port_nr_enabled(ap)) {
1761 ata_port_printk(ap, KERN_WARNING, "failed to recover some "
1762 "devices, retrying in 5 secs\n");
1765 /* no device left, repeat fast */
1773 for (i = 0; i < ATA_MAX_DEVICES; i++)
1774 ata_dev_disable(&ap->device[i]);
1777 DPRINTK("EXIT, rc=%d\n", rc);
1782 * ata_eh_finish - finish up EH
1783 * @ap: host port to finish EH for
1785 * Recovery is complete. Clean up EH states and retry or finish
1791 static void ata_eh_finish(struct ata_port *ap)
1795 /* retry or finish qcs */
1796 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1797 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1799 if (!(qc->flags & ATA_QCFLAG_FAILED))
1803 /* FIXME: Once EH migration is complete,
1804 * generate sense data in this function,
1805 * considering both err_mask and tf.
1807 if (qc->err_mask & AC_ERR_INVALID)
1808 ata_eh_qc_complete(qc);
1810 ata_eh_qc_retry(qc);
1812 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
1813 ata_eh_qc_complete(qc);
1815 /* feed zero TF to sense generation */
1816 memset(&qc->result_tf, 0, sizeof(qc->result_tf));
1817 ata_eh_qc_retry(qc);
1824 * ata_do_eh - do standard error handling
1825 * @ap: host port to handle error for
1826 * @prereset: prereset method (can be NULL)
1827 * @softreset: softreset method (can be NULL)
1828 * @hardreset: hardreset method (can be NULL)
1829 * @postreset: postreset method (can be NULL)
1831 * Perform standard error handling sequence.
1834 * Kernel thread context (may sleep).
1836 void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
1837 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
1838 ata_postreset_fn_t postreset)
1840 if (!(ap->flags & ATA_FLAG_LOADING)) {
1845 ata_eh_recover(ap, prereset, softreset, hardreset, postreset);