libata: pata_pdc2027x PLL detection minor cleanup
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / ata / libata-eh.c
CommitLineData
ece1d636
TH
1/*
2 * libata-eh.c - libata error handling
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2006 Tejun Heo <htejun@gmail.com>
9 *
10 *
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.
15 *
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.
20 *
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.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware documentation available from http://www.t13.org/ and
31 * http://www.sata-io.org/
32 *
33 */
34
ece1d636
TH
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>
c6fd2807 41#include "../scsi/scsi_transport_api.h"
ece1d636
TH
42
43#include <linux/libata.h>
44
45#include "libata.h"
46
7d47e8d4
TH
47enum {
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),
51};
52
31daabda
TH
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.
56 */
57enum {
58 ATA_EH_PRERESET_TIMEOUT = 10 * HZ,
5ddf24c5 59 ATA_EH_FASTDRAIN_INTERVAL = 3 * HZ,
31daabda
TH
60};
61
62/* The following table determines how we sequence resets. Each entry
63 * represents timeout for that try. The first try can be soft or
64 * hardreset. All others are hardreset if available. In most cases
65 * the first reset w/ 10sec timeout should succeed. Following entries
66 * are mostly for error handling, hotplug and retarded devices.
67 */
68static const unsigned long ata_eh_reset_timeouts[] = {
69 10 * HZ, /* most drives spin up by 10sec */
70 10 * HZ, /* > 99% working drives spin up before 20sec */
71 35 * HZ, /* give > 30 secs of idleness for retarded devices */
72 5 * HZ, /* and sweet one last chance */
73 /* > 1 min has elapsed, give up */
74};
75
ad9e2762 76static void __ata_port_freeze(struct ata_port *ap);
720ba126 77static void ata_eh_finish(struct ata_port *ap);
6ffa01d8 78#ifdef CONFIG_PM
500530f6
TH
79static void ata_eh_handle_port_suspend(struct ata_port *ap);
80static void ata_eh_handle_port_resume(struct ata_port *ap);
6ffa01d8
TH
81#else /* CONFIG_PM */
82static void ata_eh_handle_port_suspend(struct ata_port *ap)
83{ }
84
85static void ata_eh_handle_port_resume(struct ata_port *ap)
86{ }
6ffa01d8 87#endif /* CONFIG_PM */
ad9e2762 88
b64bbc39
TH
89static void __ata_ehi_pushv_desc(struct ata_eh_info *ehi, const char *fmt,
90 va_list args)
91{
92 ehi->desc_len += vscnprintf(ehi->desc + ehi->desc_len,
93 ATA_EH_DESC_LEN - ehi->desc_len,
94 fmt, args);
95}
96
97/**
98 * __ata_ehi_push_desc - push error description without adding separator
99 * @ehi: target EHI
100 * @fmt: printf format string
101 *
102 * Format string according to @fmt and append it to @ehi->desc.
103 *
104 * LOCKING:
105 * spin_lock_irqsave(host lock)
106 */
107void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
108{
109 va_list args;
110
111 va_start(args, fmt);
112 __ata_ehi_pushv_desc(ehi, fmt, args);
113 va_end(args);
114}
115
116/**
117 * ata_ehi_push_desc - push error description with separator
118 * @ehi: target EHI
119 * @fmt: printf format string
120 *
121 * Format string according to @fmt and append it to @ehi->desc.
122 * If @ehi->desc is not empty, ", " is added in-between.
123 *
124 * LOCKING:
125 * spin_lock_irqsave(host lock)
126 */
127void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
128{
129 va_list args;
130
131 if (ehi->desc_len)
132 __ata_ehi_push_desc(ehi, ", ");
133
134 va_start(args, fmt);
135 __ata_ehi_pushv_desc(ehi, fmt, args);
136 va_end(args);
137}
138
139/**
140 * ata_ehi_clear_desc - clean error description
141 * @ehi: target EHI
142 *
143 * Clear @ehi->desc.
144 *
145 * LOCKING:
146 * spin_lock_irqsave(host lock)
147 */
148void ata_ehi_clear_desc(struct ata_eh_info *ehi)
149{
150 ehi->desc[0] = '\0';
151 ehi->desc_len = 0;
152}
153
0c247c55
TH
154static void ata_ering_record(struct ata_ering *ering, int is_io,
155 unsigned int err_mask)
156{
157 struct ata_ering_entry *ent;
158
159 WARN_ON(!err_mask);
160
161 ering->cursor++;
162 ering->cursor %= ATA_ERING_SIZE;
163
164 ent = &ering->ring[ering->cursor];
165 ent->is_io = is_io;
166 ent->err_mask = err_mask;
167 ent->timestamp = get_jiffies_64();
168}
169
7d47e8d4 170static void ata_ering_clear(struct ata_ering *ering)
0c247c55 171{
7d47e8d4 172 memset(ering, 0, sizeof(*ering));
0c247c55
TH
173}
174
175static int ata_ering_map(struct ata_ering *ering,
176 int (*map_fn)(struct ata_ering_entry *, void *),
177 void *arg)
178{
179 int idx, rc = 0;
180 struct ata_ering_entry *ent;
181
182 idx = ering->cursor;
183 do {
184 ent = &ering->ring[idx];
185 if (!ent->err_mask)
186 break;
187 rc = map_fn(ent, arg);
188 if (rc)
189 break;
190 idx = (idx - 1 + ATA_ERING_SIZE) % ATA_ERING_SIZE;
191 } while (idx != ering->cursor);
192
193 return rc;
194}
195
64f65ca6
TH
196static unsigned int ata_eh_dev_action(struct ata_device *dev)
197{
9af5c9c9 198 struct ata_eh_context *ehc = &dev->link->eh_context;
64f65ca6
TH
199
200 return ehc->i.action | ehc->i.dev_action[dev->devno];
201}
202
f58229f8 203static void ata_eh_clear_action(struct ata_link *link, struct ata_device *dev,
af181c2d
TH
204 struct ata_eh_info *ehi, unsigned int action)
205{
f58229f8 206 struct ata_device *tdev;
af181c2d
TH
207
208 if (!dev) {
209 ehi->action &= ~action;
f58229f8
TH
210 ata_link_for_each_dev(tdev, link)
211 ehi->dev_action[tdev->devno] &= ~action;
af181c2d
TH
212 } else {
213 /* doesn't make sense for port-wide EH actions */
214 WARN_ON(!(action & ATA_EH_PERDEV_MASK));
215
216 /* break ehi->action into ehi->dev_action */
217 if (ehi->action & action) {
f58229f8
TH
218 ata_link_for_each_dev(tdev, link)
219 ehi->dev_action[tdev->devno] |=
220 ehi->action & action;
af181c2d
TH
221 ehi->action &= ~action;
222 }
223
224 /* turn off the specified per-dev action */
225 ehi->dev_action[dev->devno] &= ~action;
226 }
227}
228
ece1d636
TH
229/**
230 * ata_scsi_timed_out - SCSI layer time out callback
231 * @cmd: timed out SCSI command
232 *
233 * Handles SCSI layer timeout. We race with normal completion of
234 * the qc for @cmd. If the qc is already gone, we lose and let
235 * the scsi command finish (EH_HANDLED). Otherwise, the qc has
236 * timed out and EH should be invoked. Prevent ata_qc_complete()
237 * from finishing it by setting EH_SCHEDULED and return
238 * EH_NOT_HANDLED.
239 *
ad9e2762
TH
240 * TODO: kill this function once old EH is gone.
241 *
ece1d636
TH
242 * LOCKING:
243 * Called from timer context
244 *
245 * RETURNS:
246 * EH_HANDLED or EH_NOT_HANDLED
247 */
248enum scsi_eh_timer_return ata_scsi_timed_out(struct scsi_cmnd *cmd)
249{
250 struct Scsi_Host *host = cmd->device->host;
35bb94b1 251 struct ata_port *ap = ata_shost_to_port(host);
ece1d636
TH
252 unsigned long flags;
253 struct ata_queued_cmd *qc;
ad9e2762 254 enum scsi_eh_timer_return ret;
ece1d636
TH
255
256 DPRINTK("ENTER\n");
257
ad9e2762
TH
258 if (ap->ops->error_handler) {
259 ret = EH_NOT_HANDLED;
260 goto out;
261 }
262
263 ret = EH_HANDLED;
ba6a1308 264 spin_lock_irqsave(ap->lock, flags);
9af5c9c9 265 qc = ata_qc_from_tag(ap, ap->link.active_tag);
ece1d636
TH
266 if (qc) {
267 WARN_ON(qc->scsicmd != cmd);
268 qc->flags |= ATA_QCFLAG_EH_SCHEDULED;
269 qc->err_mask |= AC_ERR_TIMEOUT;
270 ret = EH_NOT_HANDLED;
271 }
ba6a1308 272 spin_unlock_irqrestore(ap->lock, flags);
ece1d636 273
ad9e2762 274 out:
ece1d636
TH
275 DPRINTK("EXIT, ret=%d\n", ret);
276 return ret;
277}
278
279/**
280 * ata_scsi_error - SCSI layer error handler callback
281 * @host: SCSI host on which error occurred
282 *
283 * Handles SCSI-layer-thrown error events.
284 *
285 * LOCKING:
286 * Inherited from SCSI layer (none, can sleep)
287 *
288 * RETURNS:
289 * Zero.
290 */
381544bb 291void ata_scsi_error(struct Scsi_Host *host)
ece1d636 292{
35bb94b1 293 struct ata_port *ap = ata_shost_to_port(host);
ad9e2762
TH
294 int i, repeat_cnt = ATA_EH_MAX_REPEAT;
295 unsigned long flags;
ece1d636
TH
296
297 DPRINTK("ENTER\n");
298
ad9e2762 299 /* synchronize with port task */
ece1d636
TH
300 ata_port_flush_task(ap);
301
cca3974e 302 /* synchronize with host lock and sort out timeouts */
ad9e2762
TH
303
304 /* For new EH, all qcs are finished in one of three ways -
305 * normal completion, error completion, and SCSI timeout.
306 * Both cmpletions can race against SCSI timeout. When normal
307 * completion wins, the qc never reaches EH. When error
308 * completion wins, the qc has ATA_QCFLAG_FAILED set.
309 *
310 * When SCSI timeout wins, things are a bit more complex.
311 * Normal or error completion can occur after the timeout but
312 * before this point. In such cases, both types of
313 * completions are honored. A scmd is determined to have
314 * timed out iff its associated qc is active and not failed.
315 */
316 if (ap->ops->error_handler) {
317 struct scsi_cmnd *scmd, *tmp;
318 int nr_timedout = 0;
319
e30349d2 320 spin_lock_irqsave(ap->lock, flags);
ad9e2762
TH
321
322 list_for_each_entry_safe(scmd, tmp, &host->eh_cmd_q, eh_entry) {
323 struct ata_queued_cmd *qc;
324
325 for (i = 0; i < ATA_MAX_QUEUE; i++) {
326 qc = __ata_qc_from_tag(ap, i);
327 if (qc->flags & ATA_QCFLAG_ACTIVE &&
328 qc->scsicmd == scmd)
329 break;
330 }
331
332 if (i < ATA_MAX_QUEUE) {
333 /* the scmd has an associated qc */
334 if (!(qc->flags & ATA_QCFLAG_FAILED)) {
335 /* which hasn't failed yet, timeout */
336 qc->err_mask |= AC_ERR_TIMEOUT;
337 qc->flags |= ATA_QCFLAG_FAILED;
338 nr_timedout++;
339 }
340 } else {
341 /* Normal completion occurred after
342 * SCSI timeout but before this point.
343 * Successfully complete it.
344 */
345 scmd->retries = scmd->allowed;
346 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
347 }
348 }
349
350 /* If we have timed out qcs. They belong to EH from
351 * this point but the state of the controller is
352 * unknown. Freeze the port to make sure the IRQ
353 * handler doesn't diddle with those qcs. This must
354 * be done atomically w.r.t. setting QCFLAG_FAILED.
355 */
356 if (nr_timedout)
357 __ata_port_freeze(ap);
358
e30349d2 359 spin_unlock_irqrestore(ap->lock, flags);
ad9e2762 360 } else
e30349d2 361 spin_unlock_wait(ap->lock);
ad9e2762
TH
362
363 repeat:
364 /* invoke error handler */
365 if (ap->ops->error_handler) {
cf1b86c8
TH
366 struct ata_link *link;
367
5ddf24c5
TH
368 /* kill fast drain timer */
369 del_timer_sync(&ap->fastdrain_timer);
370
500530f6
TH
371 /* process port resume request */
372 ata_eh_handle_port_resume(ap);
373
f3e81b19 374 /* fetch & clear EH info */
e30349d2 375 spin_lock_irqsave(ap->lock, flags);
f3e81b19 376
cf1b86c8
TH
377 __ata_port_for_each_link(link, ap) {
378 memset(&link->eh_context, 0, sizeof(link->eh_context));
379 link->eh_context.i = link->eh_info;
380 memset(&link->eh_info, 0, sizeof(link->eh_info));
381 }
f3e81b19 382
b51e9e5d
TH
383 ap->pflags |= ATA_PFLAG_EH_IN_PROGRESS;
384 ap->pflags &= ~ATA_PFLAG_EH_PENDING;
f3e81b19 385
e30349d2 386 spin_unlock_irqrestore(ap->lock, flags);
ad9e2762 387
500530f6
TH
388 /* invoke EH, skip if unloading or suspended */
389 if (!(ap->pflags & (ATA_PFLAG_UNLOADING | ATA_PFLAG_SUSPENDED)))
720ba126
TH
390 ap->ops->error_handler(ap);
391 else
392 ata_eh_finish(ap);
ad9e2762 393
500530f6
TH
394 /* process port suspend request */
395 ata_eh_handle_port_suspend(ap);
396
ad9e2762
TH
397 /* Exception might have happend after ->error_handler
398 * recovered the port but before this point. Repeat
399 * EH in such case.
400 */
e30349d2 401 spin_lock_irqsave(ap->lock, flags);
ad9e2762 402
b51e9e5d 403 if (ap->pflags & ATA_PFLAG_EH_PENDING) {
ad9e2762
TH
404 if (--repeat_cnt) {
405 ata_port_printk(ap, KERN_INFO,
406 "EH pending after completion, "
407 "repeating EH (cnt=%d)\n", repeat_cnt);
e30349d2 408 spin_unlock_irqrestore(ap->lock, flags);
ad9e2762
TH
409 goto repeat;
410 }
411 ata_port_printk(ap, KERN_ERR, "EH pending after %d "
412 "tries, giving up\n", ATA_EH_MAX_REPEAT);
914616a3 413 ap->pflags &= ~ATA_PFLAG_EH_PENDING;
ad9e2762
TH
414 }
415
f3e81b19 416 /* this run is complete, make sure EH info is clear */
cf1b86c8
TH
417 __ata_port_for_each_link(link, ap)
418 memset(&link->eh_info, 0, sizeof(link->eh_info));
f3e81b19 419
e30349d2 420 /* Clear host_eh_scheduled while holding ap->lock such
ad9e2762
TH
421 * that if exception occurs after this point but
422 * before EH completion, SCSI midlayer will
423 * re-initiate EH.
424 */
425 host->host_eh_scheduled = 0;
426
e30349d2 427 spin_unlock_irqrestore(ap->lock, flags);
ad9e2762 428 } else {
9af5c9c9 429 WARN_ON(ata_qc_from_tag(ap, ap->link.active_tag) == NULL);
ad9e2762
TH
430 ap->ops->eng_timeout(ap);
431 }
ece1d636 432
ad9e2762 433 /* finish or retry handled scmd's and clean up */
ece1d636
TH
434 WARN_ON(host->host_failed || !list_empty(&host->eh_cmd_q));
435
436 scsi_eh_flush_done_q(&ap->eh_done_q);
437
ad9e2762 438 /* clean up */
e30349d2 439 spin_lock_irqsave(ap->lock, flags);
ad9e2762 440
1cdaf534 441 if (ap->pflags & ATA_PFLAG_LOADING)
b51e9e5d 442 ap->pflags &= ~ATA_PFLAG_LOADING;
1cdaf534 443 else if (ap->pflags & ATA_PFLAG_SCSI_HOTPLUG)
52bad64d 444 queue_delayed_work(ata_aux_wq, &ap->hotplug_task, 0);
1cdaf534
TH
445
446 if (ap->pflags & ATA_PFLAG_RECOVERED)
447 ata_port_printk(ap, KERN_INFO, "EH complete\n");
580b2102 448
b51e9e5d 449 ap->pflags &= ~(ATA_PFLAG_SCSI_HOTPLUG | ATA_PFLAG_RECOVERED);
ad9e2762 450
c6cf9e99 451 /* tell wait_eh that we're done */
b51e9e5d 452 ap->pflags &= ~ATA_PFLAG_EH_IN_PROGRESS;
c6cf9e99
TH
453 wake_up_all(&ap->eh_wait_q);
454
e30349d2 455 spin_unlock_irqrestore(ap->lock, flags);
ad9e2762 456
ece1d636 457 DPRINTK("EXIT\n");
ece1d636
TH
458}
459
c6cf9e99
TH
460/**
461 * ata_port_wait_eh - Wait for the currently pending EH to complete
462 * @ap: Port to wait EH for
463 *
464 * Wait until the currently pending EH is complete.
465 *
466 * LOCKING:
467 * Kernel thread context (may sleep).
468 */
469void ata_port_wait_eh(struct ata_port *ap)
470{
471 unsigned long flags;
472 DEFINE_WAIT(wait);
473
474 retry:
ba6a1308 475 spin_lock_irqsave(ap->lock, flags);
c6cf9e99 476
b51e9e5d 477 while (ap->pflags & (ATA_PFLAG_EH_PENDING | ATA_PFLAG_EH_IN_PROGRESS)) {
c6cf9e99 478 prepare_to_wait(&ap->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE);
ba6a1308 479 spin_unlock_irqrestore(ap->lock, flags);
c6cf9e99 480 schedule();
ba6a1308 481 spin_lock_irqsave(ap->lock, flags);
c6cf9e99 482 }
0a1b622e 483 finish_wait(&ap->eh_wait_q, &wait);
c6cf9e99 484
ba6a1308 485 spin_unlock_irqrestore(ap->lock, flags);
c6cf9e99
TH
486
487 /* make sure SCSI EH is complete */
cca3974e 488 if (scsi_host_in_recovery(ap->scsi_host)) {
c6cf9e99
TH
489 msleep(10);
490 goto retry;
491 }
492}
493
ece1d636
TH
494/**
495 * ata_qc_timeout - Handle timeout of queued command
496 * @qc: Command that timed out
497 *
498 * Some part of the kernel (currently, only the SCSI layer)
499 * has noticed that the active command on port @ap has not
500 * completed after a specified length of time. Handle this
501 * condition by disabling DMA (if necessary) and completing
502 * transactions, with error if necessary.
503 *
504 * This also handles the case of the "lost interrupt", where
505 * for some reason (possibly hardware bug, possibly driver bug)
506 * an interrupt was not delivered to the driver, even though the
507 * transaction completed successfully.
508 *
ad9e2762
TH
509 * TODO: kill this function once old EH is gone.
510 *
ece1d636
TH
511 * LOCKING:
512 * Inherited from SCSI layer (none, can sleep)
513 */
514static void ata_qc_timeout(struct ata_queued_cmd *qc)
515{
516 struct ata_port *ap = qc->ap;
ece1d636
TH
517 u8 host_stat = 0, drv_stat;
518 unsigned long flags;
519
520 DPRINTK("ENTER\n");
521
522 ap->hsm_task_state = HSM_ST_IDLE;
523
ba6a1308 524 spin_lock_irqsave(ap->lock, flags);
ece1d636
TH
525
526 switch (qc->tf.protocol) {
527
528 case ATA_PROT_DMA:
529 case ATA_PROT_ATAPI_DMA:
530 host_stat = ap->ops->bmdma_status(ap);
531
532 /* before we do anything else, clear DMA-Start bit */
533 ap->ops->bmdma_stop(qc);
534
535 /* fall through */
536
537 default:
538 ata_altstatus(ap);
539 drv_stat = ata_chk_status(ap);
540
541 /* ack bmdma irq events */
542 ap->ops->irq_clear(ap);
543
f15a1daf
TH
544 ata_dev_printk(qc->dev, KERN_ERR, "command 0x%x timeout, "
545 "stat 0x%x host_stat 0x%x\n",
546 qc->tf.command, drv_stat, host_stat);
ece1d636
TH
547
548 /* complete taskfile transaction */
c13b56a1 549 qc->err_mask |= AC_ERR_TIMEOUT;
ece1d636
TH
550 break;
551 }
552
ba6a1308 553 spin_unlock_irqrestore(ap->lock, flags);
ece1d636
TH
554
555 ata_eh_qc_complete(qc);
556
557 DPRINTK("EXIT\n");
558}
559
560/**
561 * ata_eng_timeout - Handle timeout of queued command
562 * @ap: Port on which timed-out command is active
563 *
564 * Some part of the kernel (currently, only the SCSI layer)
565 * has noticed that the active command on port @ap has not
566 * completed after a specified length of time. Handle this
567 * condition by disabling DMA (if necessary) and completing
568 * transactions, with error if necessary.
569 *
570 * This also handles the case of the "lost interrupt", where
571 * for some reason (possibly hardware bug, possibly driver bug)
572 * an interrupt was not delivered to the driver, even though the
573 * transaction completed successfully.
574 *
ad9e2762
TH
575 * TODO: kill this function once old EH is gone.
576 *
ece1d636
TH
577 * LOCKING:
578 * Inherited from SCSI layer (none, can sleep)
579 */
580void ata_eng_timeout(struct ata_port *ap)
581{
582 DPRINTK("ENTER\n");
583
9af5c9c9 584 ata_qc_timeout(ata_qc_from_tag(ap, ap->link.active_tag));
ece1d636
TH
585
586 DPRINTK("EXIT\n");
587}
588
5ddf24c5
TH
589static int ata_eh_nr_in_flight(struct ata_port *ap)
590{
591 unsigned int tag;
592 int nr = 0;
593
594 /* count only non-internal commands */
595 for (tag = 0; tag < ATA_MAX_QUEUE - 1; tag++)
596 if (ata_qc_from_tag(ap, tag))
597 nr++;
598
599 return nr;
600}
601
602void ata_eh_fastdrain_timerfn(unsigned long arg)
603{
604 struct ata_port *ap = (void *)arg;
605 unsigned long flags;
606 int cnt;
607
608 spin_lock_irqsave(ap->lock, flags);
609
610 cnt = ata_eh_nr_in_flight(ap);
611
612 /* are we done? */
613 if (!cnt)
614 goto out_unlock;
615
616 if (cnt == ap->fastdrain_cnt) {
617 unsigned int tag;
618
619 /* No progress during the last interval, tag all
620 * in-flight qcs as timed out and freeze the port.
621 */
622 for (tag = 0; tag < ATA_MAX_QUEUE - 1; tag++) {
623 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag);
624 if (qc)
625 qc->err_mask |= AC_ERR_TIMEOUT;
626 }
627
628 ata_port_freeze(ap);
629 } else {
630 /* some qcs have finished, give it another chance */
631 ap->fastdrain_cnt = cnt;
632 ap->fastdrain_timer.expires =
633 jiffies + ATA_EH_FASTDRAIN_INTERVAL;
634 add_timer(&ap->fastdrain_timer);
635 }
636
637 out_unlock:
638 spin_unlock_irqrestore(ap->lock, flags);
639}
640
641/**
642 * ata_eh_set_pending - set ATA_PFLAG_EH_PENDING and activate fast drain
643 * @ap: target ATA port
644 * @fastdrain: activate fast drain
645 *
646 * Set ATA_PFLAG_EH_PENDING and activate fast drain if @fastdrain
647 * is non-zero and EH wasn't pending before. Fast drain ensures
648 * that EH kicks in in timely manner.
649 *
650 * LOCKING:
651 * spin_lock_irqsave(host lock)
652 */
653static void ata_eh_set_pending(struct ata_port *ap, int fastdrain)
654{
655 int cnt;
656
657 /* already scheduled? */
658 if (ap->pflags & ATA_PFLAG_EH_PENDING)
659 return;
660
661 ap->pflags |= ATA_PFLAG_EH_PENDING;
662
663 if (!fastdrain)
664 return;
665
666 /* do we have in-flight qcs? */
667 cnt = ata_eh_nr_in_flight(ap);
668 if (!cnt)
669 return;
670
671 /* activate fast drain */
672 ap->fastdrain_cnt = cnt;
673 ap->fastdrain_timer.expires = jiffies + ATA_EH_FASTDRAIN_INTERVAL;
674 add_timer(&ap->fastdrain_timer);
675}
676
f686bcb8
TH
677/**
678 * ata_qc_schedule_eh - schedule qc for error handling
679 * @qc: command to schedule error handling for
680 *
681 * Schedule error handling for @qc. EH will kick in as soon as
682 * other commands are drained.
683 *
684 * LOCKING:
cca3974e 685 * spin_lock_irqsave(host lock)
f686bcb8
TH
686 */
687void ata_qc_schedule_eh(struct ata_queued_cmd *qc)
688{
689 struct ata_port *ap = qc->ap;
690
691 WARN_ON(!ap->ops->error_handler);
692
693 qc->flags |= ATA_QCFLAG_FAILED;
5ddf24c5 694 ata_eh_set_pending(ap, 1);
f686bcb8
TH
695
696 /* The following will fail if timeout has already expired.
697 * ata_scsi_error() takes care of such scmds on EH entry.
698 * Note that ATA_QCFLAG_FAILED is unconditionally set after
699 * this function completes.
700 */
701 scsi_req_abort_cmd(qc->scsicmd);
702}
703
7b70fc03
TH
704/**
705 * ata_port_schedule_eh - schedule error handling without a qc
706 * @ap: ATA port to schedule EH for
707 *
708 * Schedule error handling for @ap. EH will kick in as soon as
709 * all commands are drained.
710 *
711 * LOCKING:
cca3974e 712 * spin_lock_irqsave(host lock)
7b70fc03
TH
713 */
714void ata_port_schedule_eh(struct ata_port *ap)
715{
716 WARN_ON(!ap->ops->error_handler);
717
f4d6d004
TH
718 if (ap->pflags & ATA_PFLAG_INITIALIZING)
719 return;
720
5ddf24c5 721 ata_eh_set_pending(ap, 1);
cca3974e 722 scsi_schedule_eh(ap->scsi_host);
7b70fc03
TH
723
724 DPRINTK("port EH scheduled\n");
725}
726
dbd82616 727static int ata_do_link_abort(struct ata_port *ap, struct ata_link *link)
7b70fc03
TH
728{
729 int tag, nr_aborted = 0;
730
731 WARN_ON(!ap->ops->error_handler);
732
5ddf24c5
TH
733 /* we're gonna abort all commands, no need for fast drain */
734 ata_eh_set_pending(ap, 0);
735
7b70fc03
TH
736 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
737 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag);
738
dbd82616 739 if (qc && (!link || qc->dev->link == link)) {
7b70fc03
TH
740 qc->flags |= ATA_QCFLAG_FAILED;
741 ata_qc_complete(qc);
742 nr_aborted++;
743 }
744 }
745
746 if (!nr_aborted)
747 ata_port_schedule_eh(ap);
748
749 return nr_aborted;
750}
751
dbd82616
TH
752/**
753 * ata_link_abort - abort all qc's on the link
754 * @link: ATA link to abort qc's for
755 *
756 * Abort all active qc's active on @link and schedule EH.
757 *
758 * LOCKING:
759 * spin_lock_irqsave(host lock)
760 *
761 * RETURNS:
762 * Number of aborted qc's.
763 */
764int ata_link_abort(struct ata_link *link)
765{
766 return ata_do_link_abort(link->ap, link);
767}
768
769/**
770 * ata_port_abort - abort all qc's on the port
771 * @ap: ATA port to abort qc's for
772 *
773 * Abort all active qc's of @ap and schedule EH.
774 *
775 * LOCKING:
776 * spin_lock_irqsave(host_set lock)
777 *
778 * RETURNS:
779 * Number of aborted qc's.
780 */
781int ata_port_abort(struct ata_port *ap)
782{
783 return ata_do_link_abort(ap, NULL);
784}
785
e3180499
TH
786/**
787 * __ata_port_freeze - freeze port
788 * @ap: ATA port to freeze
789 *
790 * This function is called when HSM violation or some other
791 * condition disrupts normal operation of the port. Frozen port
792 * is not allowed to perform any operation until the port is
793 * thawed, which usually follows a successful reset.
794 *
795 * ap->ops->freeze() callback can be used for freezing the port
796 * hardware-wise (e.g. mask interrupt and stop DMA engine). If a
797 * port cannot be frozen hardware-wise, the interrupt handler
798 * must ack and clear interrupts unconditionally while the port
799 * is frozen.
800 *
801 * LOCKING:
cca3974e 802 * spin_lock_irqsave(host lock)
e3180499
TH
803 */
804static void __ata_port_freeze(struct ata_port *ap)
805{
806 WARN_ON(!ap->ops->error_handler);
807
808 if (ap->ops->freeze)
809 ap->ops->freeze(ap);
810
b51e9e5d 811 ap->pflags |= ATA_PFLAG_FROZEN;
e3180499 812
44877b4e 813 DPRINTK("ata%u port frozen\n", ap->print_id);
e3180499
TH
814}
815
816/**
817 * ata_port_freeze - abort & freeze port
818 * @ap: ATA port to freeze
819 *
820 * Abort and freeze @ap.
821 *
822 * LOCKING:
cca3974e 823 * spin_lock_irqsave(host lock)
e3180499
TH
824 *
825 * RETURNS:
826 * Number of aborted commands.
827 */
828int ata_port_freeze(struct ata_port *ap)
829{
830 int nr_aborted;
831
832 WARN_ON(!ap->ops->error_handler);
833
834 nr_aborted = ata_port_abort(ap);
835 __ata_port_freeze(ap);
836
837 return nr_aborted;
838}
839
840/**
841 * ata_eh_freeze_port - EH helper to freeze port
842 * @ap: ATA port to freeze
843 *
844 * Freeze @ap.
845 *
846 * LOCKING:
847 * None.
848 */
849void ata_eh_freeze_port(struct ata_port *ap)
850{
851 unsigned long flags;
852
853 if (!ap->ops->error_handler)
854 return;
855
ba6a1308 856 spin_lock_irqsave(ap->lock, flags);
e3180499 857 __ata_port_freeze(ap);
ba6a1308 858 spin_unlock_irqrestore(ap->lock, flags);
e3180499
TH
859}
860
861/**
862 * ata_port_thaw_port - EH helper to thaw port
863 * @ap: ATA port to thaw
864 *
865 * Thaw frozen port @ap.
866 *
867 * LOCKING:
868 * None.
869 */
870void ata_eh_thaw_port(struct ata_port *ap)
871{
872 unsigned long flags;
873
874 if (!ap->ops->error_handler)
875 return;
876
ba6a1308 877 spin_lock_irqsave(ap->lock, flags);
e3180499 878
b51e9e5d 879 ap->pflags &= ~ATA_PFLAG_FROZEN;
e3180499
TH
880
881 if (ap->ops->thaw)
882 ap->ops->thaw(ap);
883
ba6a1308 884 spin_unlock_irqrestore(ap->lock, flags);
e3180499 885
44877b4e 886 DPRINTK("ata%u port thawed\n", ap->print_id);
e3180499
TH
887}
888
ece1d636
TH
889static void ata_eh_scsidone(struct scsi_cmnd *scmd)
890{
891 /* nada */
892}
893
894static void __ata_eh_qc_complete(struct ata_queued_cmd *qc)
895{
896 struct ata_port *ap = qc->ap;
897 struct scsi_cmnd *scmd = qc->scsicmd;
898 unsigned long flags;
899
ba6a1308 900 spin_lock_irqsave(ap->lock, flags);
ece1d636
TH
901 qc->scsidone = ata_eh_scsidone;
902 __ata_qc_complete(qc);
903 WARN_ON(ata_tag_valid(qc->tag));
ba6a1308 904 spin_unlock_irqrestore(ap->lock, flags);
ece1d636
TH
905
906 scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
907}
908
909/**
910 * ata_eh_qc_complete - Complete an active ATA command from EH
911 * @qc: Command to complete
912 *
913 * Indicate to the mid and upper layers that an ATA command has
914 * completed. To be used from EH.
915 */
916void ata_eh_qc_complete(struct ata_queued_cmd *qc)
917{
918 struct scsi_cmnd *scmd = qc->scsicmd;
919 scmd->retries = scmd->allowed;
920 __ata_eh_qc_complete(qc);
921}
922
923/**
924 * ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
925 * @qc: Command to retry
926 *
927 * Indicate to the mid and upper layers that an ATA command
928 * should be retried. To be used from EH.
929 *
930 * SCSI midlayer limits the number of retries to scmd->allowed.
931 * scmd->retries is decremented for commands which get retried
932 * due to unrelated failures (qc->err_mask is zero).
933 */
934void ata_eh_qc_retry(struct ata_queued_cmd *qc)
935{
936 struct scsi_cmnd *scmd = qc->scsicmd;
937 if (!qc->err_mask && scmd->retries)
938 scmd->retries--;
939 __ata_eh_qc_complete(qc);
940}
022bdb07 941
0ea035a3
TH
942/**
943 * ata_eh_detach_dev - detach ATA device
944 * @dev: ATA device to detach
945 *
946 * Detach @dev.
947 *
948 * LOCKING:
949 * None.
950 */
951static void ata_eh_detach_dev(struct ata_device *dev)
952{
f58229f8
TH
953 struct ata_link *link = dev->link;
954 struct ata_port *ap = link->ap;
0ea035a3
TH
955 unsigned long flags;
956
957 ata_dev_disable(dev);
958
ba6a1308 959 spin_lock_irqsave(ap->lock, flags);
0ea035a3
TH
960
961 dev->flags &= ~ATA_DFLAG_DETACH;
962
963 if (ata_scsi_offline_dev(dev)) {
964 dev->flags |= ATA_DFLAG_DETACHED;
b51e9e5d 965 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
0ea035a3
TH
966 }
967
beb07c1a 968 /* clear per-dev EH actions */
f58229f8
TH
969 ata_eh_clear_action(link, dev, &link->eh_info, ATA_EH_PERDEV_MASK);
970 ata_eh_clear_action(link, dev, &link->eh_context.i, ATA_EH_PERDEV_MASK);
beb07c1a 971
ba6a1308 972 spin_unlock_irqrestore(ap->lock, flags);
0ea035a3
TH
973}
974
022bdb07
TH
975/**
976 * ata_eh_about_to_do - about to perform eh_action
955e57df 977 * @link: target ATA link
47005f25 978 * @dev: target ATA dev for per-dev action (can be NULL)
022bdb07
TH
979 * @action: action about to be performed
980 *
981 * Called just before performing EH actions to clear related bits
955e57df
TH
982 * in @link->eh_info such that eh actions are not unnecessarily
983 * repeated.
022bdb07
TH
984 *
985 * LOCKING:
986 * None.
987 */
955e57df 988static void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev,
47005f25 989 unsigned int action)
022bdb07 990{
955e57df
TH
991 struct ata_port *ap = link->ap;
992 struct ata_eh_info *ehi = &link->eh_info;
993 struct ata_eh_context *ehc = &link->eh_context;
022bdb07
TH
994 unsigned long flags;
995
ba6a1308 996 spin_lock_irqsave(ap->lock, flags);
1cdaf534 997
13abf50d
TH
998 /* Reset is represented by combination of actions and EHI
999 * flags. Suck in all related bits before clearing eh_info to
1000 * avoid losing requested action.
1001 */
1002 if (action & ATA_EH_RESET_MASK) {
1003 ehc->i.action |= ehi->action & ATA_EH_RESET_MASK;
1004 ehc->i.flags |= ehi->flags & ATA_EHI_RESET_MODIFIER_MASK;
1005
1006 /* make sure all reset actions are cleared & clear EHI flags */
1007 action |= ATA_EH_RESET_MASK;
1008 ehi->flags &= ~ATA_EHI_RESET_MODIFIER_MASK;
1009 }
1010
955e57df 1011 ata_eh_clear_action(link, dev, ehi, action);
1cdaf534 1012
13abf50d 1013 if (!(ehc->i.flags & ATA_EHI_QUIET))
1cdaf534
TH
1014 ap->pflags |= ATA_PFLAG_RECOVERED;
1015
ba6a1308 1016 spin_unlock_irqrestore(ap->lock, flags);
022bdb07
TH
1017}
1018
47005f25
TH
1019/**
1020 * ata_eh_done - EH action complete
955e57df 1021* @ap: target ATA port
47005f25
TH
1022 * @dev: target ATA dev for per-dev action (can be NULL)
1023 * @action: action just completed
1024 *
1025 * Called right after performing EH actions to clear related bits
955e57df 1026 * in @link->eh_context.
47005f25
TH
1027 *
1028 * LOCKING:
1029 * None.
1030 */
955e57df 1031static void ata_eh_done(struct ata_link *link, struct ata_device *dev,
47005f25
TH
1032 unsigned int action)
1033{
955e57df 1034 struct ata_eh_context *ehc = &link->eh_context;
9af5c9c9 1035
13abf50d
TH
1036 /* if reset is complete, clear all reset actions & reset modifier */
1037 if (action & ATA_EH_RESET_MASK) {
1038 action |= ATA_EH_RESET_MASK;
9af5c9c9 1039 ehc->i.flags &= ~ATA_EHI_RESET_MODIFIER_MASK;
13abf50d
TH
1040 }
1041
955e57df 1042 ata_eh_clear_action(link, dev, &ehc->i, action);
47005f25
TH
1043}
1044
022bdb07
TH
1045/**
1046 * ata_err_string - convert err_mask to descriptive string
1047 * @err_mask: error mask to convert to string
1048 *
1049 * Convert @err_mask to descriptive string. Errors are
1050 * prioritized according to severity and only the most severe
1051 * error is reported.
1052 *
1053 * LOCKING:
1054 * None.
1055 *
1056 * RETURNS:
1057 * Descriptive string for @err_mask
1058 */
1059static const char * ata_err_string(unsigned int err_mask)
1060{
1061 if (err_mask & AC_ERR_HOST_BUS)
1062 return "host bus error";
1063 if (err_mask & AC_ERR_ATA_BUS)
1064 return "ATA bus error";
1065 if (err_mask & AC_ERR_TIMEOUT)
1066 return "timeout";
1067 if (err_mask & AC_ERR_HSM)
1068 return "HSM violation";
1069 if (err_mask & AC_ERR_SYSTEM)
1070 return "internal error";
1071 if (err_mask & AC_ERR_MEDIA)
1072 return "media error";
1073 if (err_mask & AC_ERR_INVALID)
1074 return "invalid argument";
1075 if (err_mask & AC_ERR_DEV)
1076 return "device error";
1077 return "unknown error";
1078}
1079
e8ee8451
TH
1080/**
1081 * ata_read_log_page - read a specific log page
1082 * @dev: target device
1083 * @page: page to read
1084 * @buf: buffer to store read page
1085 * @sectors: number of sectors to read
1086 *
1087 * Read log page using READ_LOG_EXT command.
1088 *
1089 * LOCKING:
1090 * Kernel thread context (may sleep).
1091 *
1092 * RETURNS:
1093 * 0 on success, AC_ERR_* mask otherwise.
1094 */
1095static unsigned int ata_read_log_page(struct ata_device *dev,
1096 u8 page, void *buf, unsigned int sectors)
1097{
1098 struct ata_taskfile tf;
1099 unsigned int err_mask;
1100
1101 DPRINTK("read log page - page %d\n", page);
1102
1103 ata_tf_init(dev, &tf);
1104 tf.command = ATA_CMD_READ_LOG_EXT;
1105 tf.lbal = page;
1106 tf.nsect = sectors;
1107 tf.hob_nsect = sectors >> 8;
1108 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_LBA48 | ATA_TFLAG_DEVICE;
1109 tf.protocol = ATA_PROT_PIO;
1110
1111 err_mask = ata_exec_internal(dev, &tf, NULL, DMA_FROM_DEVICE,
1112 buf, sectors * ATA_SECT_SIZE);
1113
1114 DPRINTK("EXIT, err_mask=%x\n", err_mask);
1115 return err_mask;
1116}
1117
1118/**
1119 * ata_eh_read_log_10h - Read log page 10h for NCQ error details
1120 * @dev: Device to read log page 10h from
1121 * @tag: Resulting tag of the failed command
1122 * @tf: Resulting taskfile registers of the failed command
1123 *
1124 * Read log page 10h to obtain NCQ error details and clear error
1125 * condition.
1126 *
1127 * LOCKING:
1128 * Kernel thread context (may sleep).
1129 *
1130 * RETURNS:
1131 * 0 on success, -errno otherwise.
1132 */
1133static int ata_eh_read_log_10h(struct ata_device *dev,
1134 int *tag, struct ata_taskfile *tf)
1135{
9af5c9c9 1136 u8 *buf = dev->link->ap->sector_buf;
e8ee8451
TH
1137 unsigned int err_mask;
1138 u8 csum;
1139 int i;
1140
1141 err_mask = ata_read_log_page(dev, ATA_LOG_SATA_NCQ, buf, 1);
1142 if (err_mask)
1143 return -EIO;
1144
1145 csum = 0;
1146 for (i = 0; i < ATA_SECT_SIZE; i++)
1147 csum += buf[i];
1148 if (csum)
1149 ata_dev_printk(dev, KERN_WARNING,
1150 "invalid checksum 0x%x on log page 10h\n", csum);
1151
1152 if (buf[0] & 0x80)
1153 return -ENOENT;
1154
1155 *tag = buf[0] & 0x1f;
1156
1157 tf->command = buf[2];
1158 tf->feature = buf[3];
1159 tf->lbal = buf[4];
1160 tf->lbam = buf[5];
1161 tf->lbah = buf[6];
1162 tf->device = buf[7];
1163 tf->hob_lbal = buf[8];
1164 tf->hob_lbam = buf[9];
1165 tf->hob_lbah = buf[10];
1166 tf->nsect = buf[12];
1167 tf->hob_nsect = buf[13];
1168
1169 return 0;
1170}
1171
022bdb07
TH
1172/**
1173 * atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
1174 * @dev: device to perform REQUEST_SENSE to
1175 * @sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
1176 *
1177 * Perform ATAPI REQUEST_SENSE after the device reported CHECK
1178 * SENSE. This function is EH helper.
1179 *
1180 * LOCKING:
1181 * Kernel thread context (may sleep).
1182 *
1183 * RETURNS:
1184 * 0 on success, AC_ERR_* mask on failure
1185 */
56287768 1186static unsigned int atapi_eh_request_sense(struct ata_queued_cmd *qc)
022bdb07 1187{
56287768
AL
1188 struct ata_device *dev = qc->dev;
1189 unsigned char *sense_buf = qc->scsicmd->sense_buffer;
9af5c9c9 1190 struct ata_port *ap = dev->link->ap;
022bdb07
TH
1191 struct ata_taskfile tf;
1192 u8 cdb[ATAPI_CDB_LEN];
1193
1194 DPRINTK("ATAPI request sense\n");
1195
022bdb07
TH
1196 /* FIXME: is this needed? */
1197 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
1198
56287768
AL
1199 /* initialize sense_buf with the error register,
1200 * for the case where they are -not- overwritten
1201 */
022bdb07 1202 sense_buf[0] = 0x70;
56287768
AL
1203 sense_buf[2] = qc->result_tf.feature >> 4;
1204
a617c09f 1205 /* some devices time out if garbage left in tf */
56287768 1206 ata_tf_init(dev, &tf);
022bdb07
TH
1207
1208 memset(cdb, 0, ATAPI_CDB_LEN);
1209 cdb[0] = REQUEST_SENSE;
1210 cdb[4] = SCSI_SENSE_BUFFERSIZE;
1211
1212 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1213 tf.command = ATA_CMD_PACKET;
1214
1215 /* is it pointless to prefer PIO for "safety reasons"? */
1216 if (ap->flags & ATA_FLAG_PIO_DMA) {
1217 tf.protocol = ATA_PROT_ATAPI_DMA;
1218 tf.feature |= ATAPI_PKT_DMA;
1219 } else {
1220 tf.protocol = ATA_PROT_ATAPI;
1221 tf.lbam = (8 * 1024) & 0xff;
1222 tf.lbah = (8 * 1024) >> 8;
1223 }
1224
1225 return ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE,
1226 sense_buf, SCSI_SENSE_BUFFERSIZE);
1227}
1228
1229/**
1230 * ata_eh_analyze_serror - analyze SError for a failed port
0260731f 1231 * @link: ATA link to analyze SError for
022bdb07
TH
1232 *
1233 * Analyze SError if available and further determine cause of
1234 * failure.
1235 *
1236 * LOCKING:
1237 * None.
1238 */
0260731f 1239static void ata_eh_analyze_serror(struct ata_link *link)
022bdb07 1240{
0260731f 1241 struct ata_eh_context *ehc = &link->eh_context;
022bdb07
TH
1242 u32 serror = ehc->i.serror;
1243 unsigned int err_mask = 0, action = 0;
1244
1245 if (serror & SERR_PERSISTENT) {
1246 err_mask |= AC_ERR_ATA_BUS;
1247 action |= ATA_EH_HARDRESET;
1248 }
1249 if (serror &
1250 (SERR_DATA_RECOVERED | SERR_COMM_RECOVERED | SERR_DATA)) {
1251 err_mask |= AC_ERR_ATA_BUS;
1252 action |= ATA_EH_SOFTRESET;
1253 }
1254 if (serror & SERR_PROTOCOL) {
1255 err_mask |= AC_ERR_HSM;
1256 action |= ATA_EH_SOFTRESET;
1257 }
1258 if (serror & SERR_INTERNAL) {
1259 err_mask |= AC_ERR_SYSTEM;
771b8dad 1260 action |= ATA_EH_HARDRESET;
022bdb07 1261 }
084fe639
TH
1262 if (serror & (SERR_PHYRDY_CHG | SERR_DEV_XCHG))
1263 ata_ehi_hotplugged(&ehc->i);
022bdb07
TH
1264
1265 ehc->i.err_mask |= err_mask;
1266 ehc->i.action |= action;
1267}
1268
e8ee8451
TH
1269/**
1270 * ata_eh_analyze_ncq_error - analyze NCQ error
0260731f 1271 * @link: ATA link to analyze NCQ error for
e8ee8451
TH
1272 *
1273 * Read log page 10h, determine the offending qc and acquire
1274 * error status TF. For NCQ device errors, all LLDDs have to do
1275 * is setting AC_ERR_DEV in ehi->err_mask. This function takes
1276 * care of the rest.
1277 *
1278 * LOCKING:
1279 * Kernel thread context (may sleep).
1280 */
0260731f 1281static void ata_eh_analyze_ncq_error(struct ata_link *link)
e8ee8451 1282{
0260731f
TH
1283 struct ata_port *ap = link->ap;
1284 struct ata_eh_context *ehc = &link->eh_context;
1285 struct ata_device *dev = link->device;
e8ee8451
TH
1286 struct ata_queued_cmd *qc;
1287 struct ata_taskfile tf;
1288 int tag, rc;
1289
1290 /* if frozen, we can't do much */
b51e9e5d 1291 if (ap->pflags & ATA_PFLAG_FROZEN)
e8ee8451
TH
1292 return;
1293
1294 /* is it NCQ device error? */
0260731f 1295 if (!link->sactive || !(ehc->i.err_mask & AC_ERR_DEV))
e8ee8451
TH
1296 return;
1297
1298 /* has LLDD analyzed already? */
1299 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1300 qc = __ata_qc_from_tag(ap, tag);
1301
1302 if (!(qc->flags & ATA_QCFLAG_FAILED))
1303 continue;
1304
1305 if (qc->err_mask)
1306 return;
1307 }
1308
1309 /* okay, this error is ours */
1310 rc = ata_eh_read_log_10h(dev, &tag, &tf);
1311 if (rc) {
0260731f 1312 ata_link_printk(link, KERN_ERR, "failed to read log page 10h "
e8ee8451
TH
1313 "(errno=%d)\n", rc);
1314 return;
1315 }
1316
0260731f
TH
1317 if (!(link->sactive & (1 << tag))) {
1318 ata_link_printk(link, KERN_ERR, "log page 10h reported "
e8ee8451
TH
1319 "inactive tag %d\n", tag);
1320 return;
1321 }
1322
1323 /* we've got the perpetrator, condemn it */
1324 qc = __ata_qc_from_tag(ap, tag);
1325 memcpy(&qc->result_tf, &tf, sizeof(tf));
5335b729 1326 qc->err_mask |= AC_ERR_DEV | AC_ERR_NCQ;
e8ee8451
TH
1327 ehc->i.err_mask &= ~AC_ERR_DEV;
1328}
1329
022bdb07
TH
1330/**
1331 * ata_eh_analyze_tf - analyze taskfile of a failed qc
1332 * @qc: qc to analyze
1333 * @tf: Taskfile registers to analyze
1334 *
1335 * Analyze taskfile of @qc and further determine cause of
1336 * failure. This function also requests ATAPI sense data if
1337 * avaliable.
1338 *
1339 * LOCKING:
1340 * Kernel thread context (may sleep).
1341 *
1342 * RETURNS:
1343 * Determined recovery action
1344 */
1345static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc,
1346 const struct ata_taskfile *tf)
1347{
1348 unsigned int tmp, action = 0;
1349 u8 stat = tf->command, err = tf->feature;
1350
1351 if ((stat & (ATA_BUSY | ATA_DRQ | ATA_DRDY)) != ATA_DRDY) {
1352 qc->err_mask |= AC_ERR_HSM;
1353 return ATA_EH_SOFTRESET;
1354 }
1355
a51d644a
TH
1356 if (stat & (ATA_ERR | ATA_DF))
1357 qc->err_mask |= AC_ERR_DEV;
1358 else
022bdb07
TH
1359 return 0;
1360
1361 switch (qc->dev->class) {
1362 case ATA_DEV_ATA:
1363 if (err & ATA_ICRC)
1364 qc->err_mask |= AC_ERR_ATA_BUS;
1365 if (err & ATA_UNC)
1366 qc->err_mask |= AC_ERR_MEDIA;
1367 if (err & ATA_IDNF)
1368 qc->err_mask |= AC_ERR_INVALID;
1369 break;
1370
1371 case ATA_DEV_ATAPI:
a569a30d 1372 if (!(qc->ap->pflags & ATA_PFLAG_FROZEN)) {
56287768 1373 tmp = atapi_eh_request_sense(qc);
a569a30d
TH
1374 if (!tmp) {
1375 /* ATA_QCFLAG_SENSE_VALID is used to
1376 * tell atapi_qc_complete() that sense
1377 * data is already valid.
1378 *
1379 * TODO: interpret sense data and set
1380 * appropriate err_mask.
1381 */
1382 qc->flags |= ATA_QCFLAG_SENSE_VALID;
1383 } else
1384 qc->err_mask |= tmp;
1385 }
022bdb07
TH
1386 }
1387
1388 if (qc->err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT | AC_ERR_ATA_BUS))
1389 action |= ATA_EH_SOFTRESET;
1390
1391 return action;
1392}
1393
7d47e8d4 1394static int ata_eh_categorize_error(int is_io, unsigned int err_mask)
022bdb07 1395{
7d47e8d4 1396 if (err_mask & AC_ERR_ATA_BUS)
022bdb07
TH
1397 return 1;
1398
7d47e8d4
TH
1399 if (err_mask & AC_ERR_TIMEOUT)
1400 return 2;
1401
1402 if (is_io) {
1403 if (err_mask & AC_ERR_HSM)
022bdb07 1404 return 2;
7d47e8d4
TH
1405 if ((err_mask &
1406 (AC_ERR_DEV|AC_ERR_MEDIA|AC_ERR_INVALID)) == AC_ERR_DEV)
1407 return 3;
022bdb07
TH
1408 }
1409
1410 return 0;
1411}
1412
7d47e8d4 1413struct speed_down_verdict_arg {
022bdb07 1414 u64 since;
7d47e8d4 1415 int nr_errors[4];
022bdb07
TH
1416};
1417
7d47e8d4 1418static int speed_down_verdict_cb(struct ata_ering_entry *ent, void *void_arg)
022bdb07 1419{
7d47e8d4
TH
1420 struct speed_down_verdict_arg *arg = void_arg;
1421 int cat = ata_eh_categorize_error(ent->is_io, ent->err_mask);
022bdb07
TH
1422
1423 if (ent->timestamp < arg->since)
1424 return -1;
1425
7d47e8d4 1426 arg->nr_errors[cat]++;
022bdb07
TH
1427 return 0;
1428}
1429
1430/**
7d47e8d4 1431 * ata_eh_speed_down_verdict - Determine speed down verdict
022bdb07
TH
1432 * @dev: Device of interest
1433 *
1434 * This function examines error ring of @dev and determines
7d47e8d4
TH
1435 * whether NCQ needs to be turned off, transfer speed should be
1436 * stepped down, or falling back to PIO is necessary.
022bdb07 1437 *
7d47e8d4 1438 * Cat-1 is ATA_BUS error for any command.
022bdb07 1439 *
7d47e8d4
TH
1440 * Cat-2 is TIMEOUT for any command or HSM violation for known
1441 * supported commands.
1442 *
1443 * Cat-3 is is unclassified DEV error for known supported
022bdb07
TH
1444 * command.
1445 *
7d47e8d4
TH
1446 * NCQ needs to be turned off if there have been more than 3
1447 * Cat-2 + Cat-3 errors during last 10 minutes.
1448 *
1449 * Speed down is necessary if there have been more than 3 Cat-1 +
1450 * Cat-2 errors or 10 Cat-3 errors during last 10 minutes.
1451 *
1452 * Falling back to PIO mode is necessary if there have been more
1453 * than 10 Cat-1 + Cat-2 + Cat-3 errors during last 5 minutes.
1454 *
022bdb07
TH
1455 * LOCKING:
1456 * Inherited from caller.
1457 *
1458 * RETURNS:
7d47e8d4 1459 * OR of ATA_EH_SPDN_* flags.
022bdb07 1460 */
7d47e8d4 1461static unsigned int ata_eh_speed_down_verdict(struct ata_device *dev)
022bdb07 1462{
7d47e8d4
TH
1463 const u64 j5mins = 5LLU * 60 * HZ, j10mins = 10LLU * 60 * HZ;
1464 u64 j64 = get_jiffies_64();
1465 struct speed_down_verdict_arg arg;
1466 unsigned int verdict = 0;
022bdb07 1467
7d47e8d4
TH
1468 /* scan past 10 mins of error history */
1469 memset(&arg, 0, sizeof(arg));
1470 arg.since = j64 - min(j64, j10mins);
1471 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
022bdb07 1472
7d47e8d4
TH
1473 if (arg.nr_errors[2] + arg.nr_errors[3] > 3)
1474 verdict |= ATA_EH_SPDN_NCQ_OFF;
1475 if (arg.nr_errors[1] + arg.nr_errors[2] > 3 || arg.nr_errors[3] > 10)
1476 verdict |= ATA_EH_SPDN_SPEED_DOWN;
022bdb07 1477
7d47e8d4 1478 /* scan past 3 mins of error history */
022bdb07 1479 memset(&arg, 0, sizeof(arg));
7d47e8d4
TH
1480 arg.since = j64 - min(j64, j5mins);
1481 ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
022bdb07 1482
7d47e8d4
TH
1483 if (arg.nr_errors[1] + arg.nr_errors[2] + arg.nr_errors[3] > 10)
1484 verdict |= ATA_EH_SPDN_FALLBACK_TO_PIO;
022bdb07 1485
7d47e8d4 1486 return verdict;
022bdb07
TH
1487}
1488
1489/**
1490 * ata_eh_speed_down - record error and speed down if necessary
1491 * @dev: Failed device
1492 * @is_io: Did the device fail during normal IO?
1493 * @err_mask: err_mask of the error
1494 *
1495 * Record error and examine error history to determine whether
1496 * adjusting transmission speed is necessary. It also sets
1497 * transmission limits appropriately if such adjustment is
1498 * necessary.
1499 *
1500 * LOCKING:
1501 * Kernel thread context (may sleep).
1502 *
1503 * RETURNS:
7d47e8d4 1504 * Determined recovery action.
022bdb07 1505 */
7d47e8d4
TH
1506static unsigned int ata_eh_speed_down(struct ata_device *dev, int is_io,
1507 unsigned int err_mask)
022bdb07 1508{
7d47e8d4
TH
1509 unsigned int verdict;
1510 unsigned int action = 0;
1511
1512 /* don't bother if Cat-0 error */
1513 if (ata_eh_categorize_error(is_io, err_mask) == 0)
022bdb07
TH
1514 return 0;
1515
1516 /* record error and determine whether speed down is necessary */
1517 ata_ering_record(&dev->ering, is_io, err_mask);
7d47e8d4 1518 verdict = ata_eh_speed_down_verdict(dev);
022bdb07 1519
7d47e8d4
TH
1520 /* turn off NCQ? */
1521 if ((verdict & ATA_EH_SPDN_NCQ_OFF) &&
1522 (dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ |
1523 ATA_DFLAG_NCQ_OFF)) == ATA_DFLAG_NCQ) {
1524 dev->flags |= ATA_DFLAG_NCQ_OFF;
1525 ata_dev_printk(dev, KERN_WARNING,
1526 "NCQ disabled due to excessive errors\n");
1527 goto done;
1528 }
022bdb07 1529
7d47e8d4
TH
1530 /* speed down? */
1531 if (verdict & ATA_EH_SPDN_SPEED_DOWN) {
1532 /* speed down SATA link speed if possible */
936fd732 1533 if (sata_down_spd_limit(dev->link) == 0) {
7d47e8d4
TH
1534 action |= ATA_EH_HARDRESET;
1535 goto done;
1536 }
022bdb07 1537
7d47e8d4
TH
1538 /* lower transfer mode */
1539 if (dev->spdn_cnt < 2) {
1540 static const int dma_dnxfer_sel[] =
1541 { ATA_DNXFER_DMA, ATA_DNXFER_40C };
1542 static const int pio_dnxfer_sel[] =
1543 { ATA_DNXFER_PIO, ATA_DNXFER_FORCE_PIO0 };
1544 int sel;
1545
1546 if (dev->xfer_shift != ATA_SHIFT_PIO)
1547 sel = dma_dnxfer_sel[dev->spdn_cnt];
1548 else
1549 sel = pio_dnxfer_sel[dev->spdn_cnt];
1550
1551 dev->spdn_cnt++;
1552
1553 if (ata_down_xfermask_limit(dev, sel) == 0) {
1554 action |= ATA_EH_SOFTRESET;
1555 goto done;
1556 }
1557 }
1558 }
1559
1560 /* Fall back to PIO? Slowing down to PIO is meaningless for
1561 * SATA. Consider it only for PATA.
1562 */
1563 if ((verdict & ATA_EH_SPDN_FALLBACK_TO_PIO) && (dev->spdn_cnt >= 2) &&
9af5c9c9 1564 (dev->link->ap->cbl != ATA_CBL_SATA) &&
7d47e8d4
TH
1565 (dev->xfer_shift != ATA_SHIFT_PIO)) {
1566 if (ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO) == 0) {
1567 dev->spdn_cnt = 0;
1568 action |= ATA_EH_SOFTRESET;
1569 goto done;
1570 }
1571 }
022bdb07 1572
022bdb07 1573 return 0;
7d47e8d4
TH
1574 done:
1575 /* device has been slowed down, blow error history */
1576 ata_ering_clear(&dev->ering);
1577 return action;
022bdb07
TH
1578}
1579
1580/**
9b1e2658
TH
1581 * ata_eh_link_autopsy - analyze error and determine recovery action
1582 * @link: host link to perform autopsy on
022bdb07 1583 *
0260731f
TH
1584 * Analyze why @link failed and determine which recovery actions
1585 * are needed. This function also sets more detailed AC_ERR_*
1586 * values and fills sense data for ATAPI CHECK SENSE.
022bdb07
TH
1587 *
1588 * LOCKING:
1589 * Kernel thread context (may sleep).
1590 */
9b1e2658 1591static void ata_eh_link_autopsy(struct ata_link *link)
022bdb07 1592{
0260731f 1593 struct ata_port *ap = link->ap;
936fd732 1594 struct ata_eh_context *ehc = &link->eh_context;
022bdb07
TH
1595 unsigned int all_err_mask = 0;
1596 int tag, is_io = 0;
1597 u32 serror;
1598 int rc;
1599
1600 DPRINTK("ENTER\n");
1601
1cdaf534
TH
1602 if (ehc->i.flags & ATA_EHI_NO_AUTOPSY)
1603 return;
1604
022bdb07 1605 /* obtain and analyze SError */
936fd732 1606 rc = sata_scr_read(link, SCR_ERROR, &serror);
022bdb07
TH
1607 if (rc == 0) {
1608 ehc->i.serror |= serror;
0260731f 1609 ata_eh_analyze_serror(link);
4e57c517
TH
1610 } else if (rc != -EOPNOTSUPP) {
1611 /* SError read failed, force hardreset and probing */
1612 ata_ehi_schedule_probe(&ehc->i);
4528e4da 1613 ehc->i.action |= ATA_EH_HARDRESET;
4e57c517
TH
1614 ehc->i.err_mask |= AC_ERR_OTHER;
1615 }
022bdb07 1616
e8ee8451 1617 /* analyze NCQ failure */
0260731f 1618 ata_eh_analyze_ncq_error(link);
e8ee8451 1619
022bdb07
TH
1620 /* any real error trumps AC_ERR_OTHER */
1621 if (ehc->i.err_mask & ~AC_ERR_OTHER)
1622 ehc->i.err_mask &= ~AC_ERR_OTHER;
1623
1624 all_err_mask |= ehc->i.err_mask;
1625
1626 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1627 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1628
0260731f 1629 if (!(qc->flags & ATA_QCFLAG_FAILED) || qc->dev->link != link)
022bdb07
TH
1630 continue;
1631
1632 /* inherit upper level err_mask */
1633 qc->err_mask |= ehc->i.err_mask;
1634
022bdb07 1635 /* analyze TF */
4528e4da 1636 ehc->i.action |= ata_eh_analyze_tf(qc, &qc->result_tf);
022bdb07
TH
1637
1638 /* DEV errors are probably spurious in case of ATA_BUS error */
1639 if (qc->err_mask & AC_ERR_ATA_BUS)
1640 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_MEDIA |
1641 AC_ERR_INVALID);
1642
1643 /* any real error trumps unknown error */
1644 if (qc->err_mask & ~AC_ERR_OTHER)
1645 qc->err_mask &= ~AC_ERR_OTHER;
1646
1647 /* SENSE_VALID trumps dev/unknown error and revalidation */
1648 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
1649 qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER);
4528e4da 1650 ehc->i.action &= ~ATA_EH_REVALIDATE;
022bdb07
TH
1651 }
1652
1653 /* accumulate error info */
4528e4da 1654 ehc->i.dev = qc->dev;
022bdb07
TH
1655 all_err_mask |= qc->err_mask;
1656 if (qc->flags & ATA_QCFLAG_IO)
1657 is_io = 1;
1658 }
1659
a20f33ff 1660 /* enforce default EH actions */
b51e9e5d 1661 if (ap->pflags & ATA_PFLAG_FROZEN ||
a20f33ff 1662 all_err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT))
4528e4da 1663 ehc->i.action |= ATA_EH_SOFTRESET;
a20f33ff 1664 else if (all_err_mask)
4528e4da 1665 ehc->i.action |= ATA_EH_REVALIDATE;
022bdb07 1666
47005f25 1667 /* if we have offending qcs and the associated failed device */
4528e4da 1668 if (ehc->i.dev) {
47005f25 1669 /* speed down */
4528e4da
TH
1670 ehc->i.action |= ata_eh_speed_down(ehc->i.dev, is_io,
1671 all_err_mask);
47005f25
TH
1672
1673 /* perform per-dev EH action only on the offending device */
4528e4da
TH
1674 ehc->i.dev_action[ehc->i.dev->devno] |=
1675 ehc->i.action & ATA_EH_PERDEV_MASK;
1676 ehc->i.action &= ~ATA_EH_PERDEV_MASK;
47005f25
TH
1677 }
1678
022bdb07
TH
1679 DPRINTK("EXIT\n");
1680}
1681
1682/**
9b1e2658
TH
1683 * ata_eh_autopsy - analyze error and determine recovery action
1684 * @ap: host port to perform autopsy on
1685 *
1686 * Analyze all links of @ap and determine why they failed and
1687 * which recovery actions are needed.
1688 *
1689 * LOCKING:
1690 * Kernel thread context (may sleep).
1691 */
1692static void ata_eh_autopsy(struct ata_port *ap)
1693{
1694 struct ata_link *link;
1695
1696 __ata_port_for_each_link(link, ap)
1697 ata_eh_link_autopsy(link);
1698}
1699
1700/**
1701 * ata_eh_link_report - report error handling to user
0260731f 1702 * @link: ATA link EH is going on
022bdb07
TH
1703 *
1704 * Report EH to user.
1705 *
1706 * LOCKING:
1707 * None.
1708 */
9b1e2658 1709static void ata_eh_link_report(struct ata_link *link)
022bdb07 1710{
0260731f
TH
1711 struct ata_port *ap = link->ap;
1712 struct ata_eh_context *ehc = &link->eh_context;
022bdb07
TH
1713 const char *frozen, *desc;
1714 int tag, nr_failed = 0;
1715
1716 desc = NULL;
1717 if (ehc->i.desc[0] != '\0')
1718 desc = ehc->i.desc;
1719
1720 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1721 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1722
0260731f 1723 if (!(qc->flags & ATA_QCFLAG_FAILED) || qc->dev->link != link)
022bdb07
TH
1724 continue;
1725 if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask)
1726 continue;
1727
1728 nr_failed++;
1729 }
1730
1731 if (!nr_failed && !ehc->i.err_mask)
1732 return;
1733
1734 frozen = "";
b51e9e5d 1735 if (ap->pflags & ATA_PFLAG_FROZEN)
022bdb07
TH
1736 frozen = " frozen";
1737
1738 if (ehc->i.dev) {
e8ee8451
TH
1739 ata_dev_printk(ehc->i.dev, KERN_ERR, "exception Emask 0x%x "
1740 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
0260731f 1741 ehc->i.err_mask, link->sactive,
9af5c9c9 1742 ehc->i.serror, ehc->i.action, frozen);
022bdb07 1743 if (desc)
b64bbc39 1744 ata_dev_printk(ehc->i.dev, KERN_ERR, "%s\n", desc);
022bdb07 1745 } else {
0260731f 1746 ata_link_printk(link, KERN_ERR, "exception Emask 0x%x "
e8ee8451 1747 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
0260731f 1748 ehc->i.err_mask, link->sactive,
9af5c9c9 1749 ehc->i.serror, ehc->i.action, frozen);
022bdb07 1750 if (desc)
0260731f 1751 ata_link_printk(link, KERN_ERR, "%s\n", desc);
022bdb07
TH
1752 }
1753
1754 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
8a937581
TH
1755 static const char *dma_str[] = {
1756 [DMA_BIDIRECTIONAL] = "bidi",
1757 [DMA_TO_DEVICE] = "out",
1758 [DMA_FROM_DEVICE] = "in",
1759 [DMA_NONE] = "",
1760 };
022bdb07 1761 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
8a937581 1762 struct ata_taskfile *cmd = &qc->tf, *res = &qc->result_tf;
022bdb07 1763
0260731f
TH
1764 if (!(qc->flags & ATA_QCFLAG_FAILED) ||
1765 qc->dev->link != link || !qc->err_mask)
022bdb07
TH
1766 continue;
1767
8a937581
TH
1768 ata_dev_printk(qc->dev, KERN_ERR,
1769 "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
664e8503 1770 "tag %d cdb 0x%x data %u %s\n "
8a937581 1771 "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
5335b729 1772 "Emask 0x%x (%s)%s\n",
8a937581
TH
1773 cmd->command, cmd->feature, cmd->nsect,
1774 cmd->lbal, cmd->lbam, cmd->lbah,
1775 cmd->hob_feature, cmd->hob_nsect,
1776 cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah,
726f0785 1777 cmd->device, qc->tag, qc->cdb[0], qc->nbytes,
664e8503 1778 dma_str[qc->dma_dir],
8a937581
TH
1779 res->command, res->feature, res->nsect,
1780 res->lbal, res->lbam, res->lbah,
1781 res->hob_feature, res->hob_nsect,
1782 res->hob_lbal, res->hob_lbam, res->hob_lbah,
5335b729
TH
1783 res->device, qc->err_mask, ata_err_string(qc->err_mask),
1784 qc->err_mask & AC_ERR_NCQ ? " <F>" : "");
022bdb07
TH
1785 }
1786}
1787
9b1e2658
TH
1788/**
1789 * ata_eh_report - report error handling to user
1790 * @ap: ATA port to report EH about
1791 *
1792 * Report EH to user.
1793 *
1794 * LOCKING:
1795 * None.
1796 */
1797static void ata_eh_report(struct ata_port *ap)
1798{
1799 struct ata_link *link;
1800
1801 __ata_port_for_each_link(link, ap)
1802 ata_eh_link_report(link);
1803}
1804
cc0680a5 1805static int ata_do_reset(struct ata_link *link, ata_reset_fn_t reset,
d4b2bab4 1806 unsigned int *classes, unsigned long deadline)
d87fa38e 1807{
f58229f8
TH
1808 struct ata_device *dev;
1809 int rc;
d87fa38e 1810
cc0680a5 1811 ata_link_for_each_dev(dev, link)
f58229f8 1812 classes[dev->devno] = ATA_DEV_UNKNOWN;
d87fa38e 1813
cc0680a5 1814 rc = reset(link, classes, deadline);
d87fa38e
TH
1815 if (rc)
1816 return rc;
1817
1818 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
1819 * is complete and convert all ATA_DEV_UNKNOWN to
1820 * ATA_DEV_NONE.
1821 */
cc0680a5 1822 ata_link_for_each_dev(dev, link)
f58229f8 1823 if (classes[dev->devno] != ATA_DEV_UNKNOWN)
d87fa38e
TH
1824 break;
1825
f58229f8 1826 if (dev) {
cc0680a5 1827 ata_link_for_each_dev(dev, link) {
f58229f8
TH
1828 if (classes[dev->devno] == ATA_DEV_UNKNOWN)
1829 classes[dev->devno] = ATA_DEV_NONE;
1830 }
1831 }
d87fa38e
TH
1832
1833 return 0;
1834}
1835
664faf09
TH
1836static int ata_eh_followup_srst_needed(int rc, int classify,
1837 const unsigned int *classes)
1838{
1839 if (rc == -EAGAIN)
1840 return 1;
1841 if (rc != 0)
1842 return 0;
1843 if (classify && classes[0] == ATA_DEV_UNKNOWN)
1844 return 1;
1845 return 0;
1846}
1847
cc0680a5 1848static int ata_eh_reset(struct ata_link *link, int classify,
f5914a46 1849 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
022bdb07
TH
1850 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
1851{
936fd732 1852 struct ata_eh_context *ehc = &link->eh_context;
664faf09 1853 unsigned int *classes = ehc->classes;
1cdaf534 1854 int verbose = !(ehc->i.flags & ATA_EHI_QUIET);
31daabda 1855 int try = 0;
f58229f8 1856 struct ata_device *dev;
31daabda 1857 unsigned long deadline;
f5914a46 1858 unsigned int action;
022bdb07 1859 ata_reset_fn_t reset;
f58229f8 1860 int rc;
022bdb07 1861
13abf50d 1862 /* about to reset */
955e57df 1863 ata_eh_about_to_do(link, NULL, ehc->i.action & ATA_EH_RESET_MASK);
13abf50d 1864
f5914a46
TH
1865 /* Determine which reset to use and record in ehc->i.action.
1866 * prereset() may examine and modify it.
1867 */
1868 action = ehc->i.action;
1869 ehc->i.action &= ~ATA_EH_RESET_MASK;
936fd732 1870 if (softreset && (!hardreset || (!sata_set_spd_needed(link) &&
f5914a46
TH
1871 !(action & ATA_EH_HARDRESET))))
1872 ehc->i.action |= ATA_EH_SOFTRESET;
022bdb07 1873 else
f5914a46
TH
1874 ehc->i.action |= ATA_EH_HARDRESET;
1875
1876 if (prereset) {
cc0680a5 1877 rc = prereset(link, jiffies + ATA_EH_PRERESET_TIMEOUT);
f5914a46 1878 if (rc) {
c961922b 1879 if (rc == -ENOENT) {
cc0680a5 1880 ata_link_printk(link, KERN_DEBUG,
4aa9ab67 1881 "port disabled. ignoring.\n");
9af5c9c9 1882 ehc->i.action &= ~ATA_EH_RESET_MASK;
4aa9ab67 1883
936fd732 1884 ata_link_for_each_dev(dev, link)
f58229f8 1885 classes[dev->devno] = ATA_DEV_NONE;
4aa9ab67
TH
1886
1887 rc = 0;
c961922b 1888 } else
cc0680a5 1889 ata_link_printk(link, KERN_ERR,
f5914a46 1890 "prereset failed (errno=%d)\n", rc);
fccb6ea5 1891 goto out;
f5914a46
TH
1892 }
1893 }
1894
1895 /* prereset() might have modified ehc->i.action */
1896 if (ehc->i.action & ATA_EH_HARDRESET)
022bdb07 1897 reset = hardreset;
f5914a46
TH
1898 else if (ehc->i.action & ATA_EH_SOFTRESET)
1899 reset = softreset;
1900 else {
1901 /* prereset told us not to reset, bang classes and return */
936fd732 1902 ata_link_for_each_dev(dev, link)
f58229f8 1903 classes[dev->devno] = ATA_DEV_NONE;
fccb6ea5
TH
1904 rc = 0;
1905 goto out;
f5914a46
TH
1906 }
1907
1908 /* did prereset() screw up? if so, fix up to avoid oopsing */
1909 if (!reset) {
f5914a46
TH
1910 if (softreset)
1911 reset = softreset;
1912 else
1913 reset = hardreset;
1914 }
022bdb07
TH
1915
1916 retry:
31daabda
TH
1917 deadline = jiffies + ata_eh_reset_timeouts[try++];
1918
3e706399
TH
1919 /* shut up during boot probing */
1920 if (verbose)
cc0680a5 1921 ata_link_printk(link, KERN_INFO, "%s resetting link\n",
3e706399 1922 reset == softreset ? "soft" : "hard");
022bdb07 1923
13abf50d 1924 /* mark that this EH session started with reset */
0d64a233
TH
1925 if (reset == hardreset)
1926 ehc->i.flags |= ATA_EHI_DID_HARDRESET;
1927 else
1928 ehc->i.flags |= ATA_EHI_DID_SOFTRESET;
022bdb07 1929
cc0680a5 1930 rc = ata_do_reset(link, reset, classes, deadline);
022bdb07 1931
664faf09
TH
1932 if (reset == hardreset &&
1933 ata_eh_followup_srst_needed(rc, classify, classes)) {
1934 /* okay, let's do follow-up softreset */
664faf09
TH
1935 reset = softreset;
1936
1937 if (!reset) {
cc0680a5 1938 ata_link_printk(link, KERN_ERR,
664faf09
TH
1939 "follow-up softreset required "
1940 "but no softreset avaliable\n");
fccb6ea5
TH
1941 rc = -EINVAL;
1942 goto out;
664faf09
TH
1943 }
1944
955e57df 1945 ata_eh_about_to_do(link, NULL, ATA_EH_RESET_MASK);
cc0680a5 1946 rc = ata_do_reset(link, reset, classes, deadline);
664faf09
TH
1947
1948 if (rc == 0 && classify &&
1949 classes[0] == ATA_DEV_UNKNOWN) {
cc0680a5 1950 ata_link_printk(link, KERN_ERR,
664faf09 1951 "classification failed\n");
fccb6ea5
TH
1952 rc = -EINVAL;
1953 goto out;
664faf09
TH
1954 }
1955 }
1956
31daabda
TH
1957 if (rc && try < ARRAY_SIZE(ata_eh_reset_timeouts)) {
1958 unsigned long now = jiffies;
664faf09 1959
31daabda
TH
1960 if (time_before(now, deadline)) {
1961 unsigned long delta = deadline - jiffies;
664faf09 1962
cc0680a5 1963 ata_link_printk(link, KERN_WARNING, "reset failed "
31daabda
TH
1964 "(errno=%d), retrying in %u secs\n",
1965 rc, (jiffies_to_msecs(delta) + 999) / 1000);
1966
1967 schedule_timeout_uninterruptible(delta);
1968 }
022bdb07 1969
f1545154 1970 if (rc == -EPIPE ||
31daabda 1971 try == ARRAY_SIZE(ata_eh_reset_timeouts) - 1)
936fd732 1972 sata_down_spd_limit(link);
022bdb07
TH
1973 if (hardreset)
1974 reset = hardreset;
1975 goto retry;
1976 }
1977
1978 if (rc == 0) {
008a7896
TH
1979 u32 sstatus;
1980
20952b69
TH
1981 /* After the reset, the device state is PIO 0 and the
1982 * controller state is undefined. Record the mode.
1983 */
936fd732 1984 ata_link_for_each_dev(dev, link)
f58229f8 1985 dev->pio_mode = XFER_PIO_0;
20952b69 1986
008a7896 1987 /* record current link speed */
936fd732
TH
1988 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0)
1989 link->sata_spd = (sstatus >> 4) & 0xf;
008a7896 1990
022bdb07 1991 if (postreset)
cc0680a5 1992 postreset(link, classes);
022bdb07
TH
1993
1994 /* reset successful, schedule revalidation */
955e57df 1995 ata_eh_done(link, NULL, ehc->i.action & ATA_EH_RESET_MASK);
022bdb07
TH
1996 ehc->i.action |= ATA_EH_REVALIDATE;
1997 }
fccb6ea5
TH
1998 out:
1999 /* clear hotplug flag */
2000 ehc->i.flags &= ~ATA_EHI_HOTPLUGGED;
022bdb07
TH
2001 return rc;
2002}
2003
0260731f 2004static int ata_eh_revalidate_and_attach(struct ata_link *link,
084fe639 2005 struct ata_device **r_failed_dev)
022bdb07 2006{
0260731f
TH
2007 struct ata_port *ap = link->ap;
2008 struct ata_eh_context *ehc = &link->eh_context;
022bdb07 2009 struct ata_device *dev;
8c3c52a8 2010 unsigned int new_mask = 0;
084fe639 2011 unsigned long flags;
f58229f8 2012 int rc = 0;
022bdb07
TH
2013
2014 DPRINTK("ENTER\n");
2015
8c3c52a8
TH
2016 /* For PATA drive side cable detection to work, IDENTIFY must
2017 * be done backwards such that PDIAG- is released by the slave
2018 * device before the master device is identified.
2019 */
0260731f 2020 ata_link_for_each_dev_reverse(dev, link) {
f58229f8
TH
2021 unsigned int action = ata_eh_dev_action(dev);
2022 unsigned int readid_flags = 0;
022bdb07 2023
bff04647
TH
2024 if (ehc->i.flags & ATA_EHI_DID_RESET)
2025 readid_flags |= ATA_READID_POSTRESET;
2026
9666f400 2027 if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) {
0260731f 2028 if (ata_link_offline(link)) {
022bdb07 2029 rc = -EIO;
8c3c52a8 2030 goto err;
022bdb07
TH
2031 }
2032
0260731f 2033 ata_eh_about_to_do(link, dev, ATA_EH_REVALIDATE);
bff04647 2034 rc = ata_dev_revalidate(dev, readid_flags);
022bdb07 2035 if (rc)
8c3c52a8 2036 goto err;
022bdb07 2037
0260731f 2038 ata_eh_done(link, dev, ATA_EH_REVALIDATE);
47005f25 2039
baa1e78a
TH
2040 /* Configuration may have changed, reconfigure
2041 * transfer mode.
2042 */
2043 ehc->i.flags |= ATA_EHI_SETMODE;
2044
3057ac3c 2045 /* schedule the scsi_rescan_device() here */
2046 queue_work(ata_aux_wq, &(ap->scsi_rescan_task));
084fe639
TH
2047 } else if (dev->class == ATA_DEV_UNKNOWN &&
2048 ehc->tries[dev->devno] &&
2049 ata_class_enabled(ehc->classes[dev->devno])) {
2050 dev->class = ehc->classes[dev->devno];
2051
bff04647
TH
2052 rc = ata_dev_read_id(dev, &dev->class, readid_flags,
2053 dev->id);
8c3c52a8
TH
2054 switch (rc) {
2055 case 0:
f58229f8 2056 new_mask |= 1 << dev->devno;
8c3c52a8
TH
2057 break;
2058 case -ENOENT:
55a8e2c8
TH
2059 /* IDENTIFY was issued to non-existent
2060 * device. No need to reset. Just
2061 * thaw and kill the device.
2062 */
2063 ata_eh_thaw_port(ap);
084fe639
TH
2064 dev->class = ATA_DEV_UNKNOWN;
2065 break;
8c3c52a8
TH
2066 default:
2067 dev->class = ATA_DEV_UNKNOWN;
2068 goto err;
084fe639 2069 }
8c3c52a8
TH
2070 }
2071 }
084fe639 2072
c1c4e8d5 2073 /* PDIAG- should have been released, ask cable type if post-reset */
9b1e2658
TH
2074 if (ata_is_host_link(link) && ap->ops->cable_detect &&
2075 (ehc->i.flags & ATA_EHI_DID_RESET))
c1c4e8d5
TH
2076 ap->cbl = ap->ops->cable_detect(ap);
2077
8c3c52a8
TH
2078 /* Configure new devices forward such that user doesn't see
2079 * device detection messages backwards.
2080 */
0260731f 2081 ata_link_for_each_dev(dev, link) {
f58229f8 2082 if (!(new_mask & (1 << dev->devno)))
8c3c52a8
TH
2083 continue;
2084
2085 ehc->i.flags |= ATA_EHI_PRINTINFO;
2086 rc = ata_dev_configure(dev);
2087 ehc->i.flags &= ~ATA_EHI_PRINTINFO;
2088 if (rc)
2089 goto err;
2090
2091 spin_lock_irqsave(ap->lock, flags);
2092 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
2093 spin_unlock_irqrestore(ap->lock, flags);
2094
2095 /* new device discovered, configure xfermode */
2096 ehc->i.flags |= ATA_EHI_SETMODE;
022bdb07
TH
2097 }
2098
8c3c52a8 2099 return 0;
022bdb07 2100
8c3c52a8
TH
2101 err:
2102 *r_failed_dev = dev;
2103 DPRINTK("EXIT rc=%d\n", rc);
022bdb07
TH
2104 return rc;
2105}
2106
0260731f 2107static int ata_link_nr_enabled(struct ata_link *link)
022bdb07 2108{
f58229f8
TH
2109 struct ata_device *dev;
2110 int cnt = 0;
022bdb07 2111
0260731f 2112 ata_link_for_each_dev(dev, link)
f58229f8 2113 if (ata_dev_enabled(dev))
022bdb07
TH
2114 cnt++;
2115 return cnt;
2116}
2117
0260731f 2118static int ata_link_nr_vacant(struct ata_link *link)
084fe639 2119{
f58229f8
TH
2120 struct ata_device *dev;
2121 int cnt = 0;
084fe639 2122
0260731f 2123 ata_link_for_each_dev(dev, link)
f58229f8 2124 if (dev->class == ATA_DEV_UNKNOWN)
084fe639
TH
2125 cnt++;
2126 return cnt;
2127}
2128
0260731f 2129static int ata_eh_skip_recovery(struct ata_link *link)
084fe639 2130{
0260731f 2131 struct ata_eh_context *ehc = &link->eh_context;
f58229f8 2132 struct ata_device *dev;
084fe639 2133
7c8c2cff 2134 /* thaw frozen port, resume link and recover failed devices */
0260731f
TH
2135 if ((link->ap->pflags & ATA_PFLAG_FROZEN) ||
2136 (ehc->i.flags & ATA_EHI_RESUME_LINK) || ata_link_nr_enabled(link))
084fe639
TH
2137 return 0;
2138
2139 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
0260731f 2140 ata_link_for_each_dev(dev, link) {
084fe639
TH
2141 if (dev->class == ATA_DEV_UNKNOWN &&
2142 ehc->classes[dev->devno] != ATA_DEV_NONE)
2143 return 0;
2144 }
2145
2146 return 1;
2147}
2148
9b1e2658 2149static int ata_eh_handle_dev_fail(struct ata_device *dev, int err)
fee7ca72 2150{
9af5c9c9 2151 struct ata_eh_context *ehc = &dev->link->eh_context;
fee7ca72
TH
2152
2153 ehc->tries[dev->devno]--;
2154
2155 switch (err) {
2156 case -ENODEV:
2157 /* device missing or wrong IDENTIFY data, schedule probing */
2158 ehc->i.probe_mask |= (1 << dev->devno);
2159 case -EINVAL:
2160 /* give it just one more chance */
2161 ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1);
2162 case -EIO:
2163 if (ehc->tries[dev->devno] == 1) {
2164 /* This is the last chance, better to slow
2165 * down than lose it.
2166 */
936fd732 2167 sata_down_spd_limit(dev->link);
fee7ca72
TH
2168 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2169 }
2170 }
2171
2172 if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) {
2173 /* disable device if it has used up all its chances */
2174 ata_dev_disable(dev);
2175
2176 /* detach if offline */
936fd732 2177 if (ata_link_offline(dev->link))
fee7ca72
TH
2178 ata_eh_detach_dev(dev);
2179
2180 /* probe if requested */
2181 if ((ehc->i.probe_mask & (1 << dev->devno)) &&
2182 !(ehc->did_probe_mask & (1 << dev->devno))) {
2183 ata_eh_detach_dev(dev);
2184 ata_dev_init(dev);
2185
2186 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
2187 ehc->did_probe_mask |= (1 << dev->devno);
2188 ehc->i.action |= ATA_EH_SOFTRESET;
2189 }
9b1e2658
TH
2190
2191 return 1;
fee7ca72
TH
2192 } else {
2193 /* soft didn't work? be haaaaard */
2194 if (ehc->i.flags & ATA_EHI_DID_RESET)
2195 ehc->i.action |= ATA_EH_HARDRESET;
2196 else
2197 ehc->i.action |= ATA_EH_SOFTRESET;
9b1e2658
TH
2198
2199 return 0;
fee7ca72
TH
2200 }
2201}
2202
022bdb07
TH
2203/**
2204 * ata_eh_recover - recover host port after error
2205 * @ap: host port to recover
f5914a46 2206 * @prereset: prereset method (can be NULL)
022bdb07
TH
2207 * @softreset: softreset method (can be NULL)
2208 * @hardreset: hardreset method (can be NULL)
2209 * @postreset: postreset method (can be NULL)
9b1e2658 2210 * @r_failed_link: out parameter for failed link
022bdb07
TH
2211 *
2212 * This is the alpha and omega, eum and yang, heart and soul of
2213 * libata exception handling. On entry, actions required to
9b1e2658
TH
2214 * recover each link and hotplug requests are recorded in the
2215 * link's eh_context. This function executes all the operations
2216 * with appropriate retrials and fallbacks to resurrect failed
084fe639 2217 * devices, detach goners and greet newcomers.
022bdb07
TH
2218 *
2219 * LOCKING:
2220 * Kernel thread context (may sleep).
2221 *
2222 * RETURNS:
2223 * 0 on success, -errno on failure.
2224 */
f5914a46
TH
2225static int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
2226 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
9b1e2658
TH
2227 ata_postreset_fn_t postreset,
2228 struct ata_link **r_failed_link)
022bdb07 2229{
9b1e2658 2230 struct ata_link *link;
022bdb07 2231 struct ata_device *dev;
9b1e2658
TH
2232 int nr_failed_devs, nr_disabled_devs;
2233 int reset, rc;
022bdb07
TH
2234
2235 DPRINTK("ENTER\n");
2236
2237 /* prep for recovery */
9b1e2658
TH
2238 ata_port_for_each_link(link, ap) {
2239 struct ata_eh_context *ehc = &link->eh_context;
084fe639 2240
9b1e2658
TH
2241 ata_link_for_each_dev(dev, link) {
2242 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
084fe639 2243
9b1e2658
TH
2244 /* collect port action mask recorded in dev actions */
2245 ehc->i.action |= ehc->i.dev_action[dev->devno] &
2246 ~ATA_EH_PERDEV_MASK;
2247 ehc->i.dev_action[dev->devno] &= ATA_EH_PERDEV_MASK;
2248
2249 /* process hotplug request */
2250 if (dev->flags & ATA_DFLAG_DETACH)
2251 ata_eh_detach_dev(dev);
2252
2253 if (!ata_dev_enabled(dev) &&
2254 ((ehc->i.probe_mask & (1 << dev->devno)) &&
2255 !(ehc->did_probe_mask & (1 << dev->devno)))) {
2256 ata_eh_detach_dev(dev);
2257 ata_dev_init(dev);
2258 ehc->did_probe_mask |= (1 << dev->devno);
2259 ehc->i.action |= ATA_EH_SOFTRESET;
2260 }
084fe639 2261 }
022bdb07
TH
2262 }
2263
2264 retry:
022bdb07 2265 rc = 0;
9b1e2658
TH
2266 nr_failed_devs = 0;
2267 nr_disabled_devs = 0;
2268 reset = 0;
022bdb07 2269
aeb2ecd6 2270 /* if UNLOADING, finish immediately */
b51e9e5d 2271 if (ap->pflags & ATA_PFLAG_UNLOADING)
aeb2ecd6
TH
2272 goto out;
2273
9b1e2658
TH
2274 /* prep for EH */
2275 ata_port_for_each_link(link, ap) {
2276 struct ata_eh_context *ehc = &link->eh_context;
022bdb07 2277
9b1e2658
TH
2278 /* skip EH if possible. */
2279 if (ata_eh_skip_recovery(link))
2280 ehc->i.action = 0;
2281
2282 /* do we need to reset? */
2283 if (ehc->i.action & ATA_EH_RESET_MASK)
2284 reset = 1;
2285
2286 ata_link_for_each_dev(dev, link)
2287 ehc->classes[dev->devno] = ATA_DEV_UNKNOWN;
2288 }
084fe639 2289
022bdb07 2290 /* reset */
9b1e2658 2291 if (reset) {
022bdb07
TH
2292 ata_eh_freeze_port(ap);
2293
9b1e2658
TH
2294 ata_port_for_each_link(link, ap) {
2295 struct ata_eh_context *ehc = &link->eh_context;
2296
2297 if (!(ehc->i.action & ATA_EH_RESET_MASK))
2298 continue;
2299
2300 rc = ata_eh_reset(link, ata_link_nr_vacant(link),
2301 prereset, softreset, hardreset,
2302 postreset);
2303 if (rc) {
2304 ata_link_printk(link, KERN_ERR,
2305 "reset failed, giving up\n");
2306 goto out;
2307 }
022bdb07
TH
2308 }
2309
2310 ata_eh_thaw_port(ap);
2311 }
2312
9b1e2658
TH
2313 /* the rest */
2314 ata_port_for_each_link(link, ap) {
2315 struct ata_eh_context *ehc = &link->eh_context;
022bdb07 2316
9b1e2658
TH
2317 /* revalidate existing devices and attach new ones */
2318 rc = ata_eh_revalidate_and_attach(link, &dev);
4ae72a1e 2319 if (rc)
022bdb07 2320 goto dev_fail;
022bdb07 2321
9b1e2658
TH
2322 /* configure transfer mode if necessary */
2323 if (ehc->i.flags & ATA_EHI_SETMODE) {
2324 rc = ata_set_mode(link, &dev);
2325 if (rc)
2326 goto dev_fail;
2327 ehc->i.flags &= ~ATA_EHI_SETMODE;
2328 }
2329
2330 /* this link is okay now */
2331 ehc->i.flags = 0;
2332 continue;
022bdb07 2333
9b1e2658
TH
2334 dev_fail:
2335 nr_failed_devs++;
2336 if (ata_eh_handle_dev_fail(dev, rc))
2337 nr_disabled_devs++;
022bdb07 2338
9b1e2658
TH
2339 if (ap->pflags & ATA_PFLAG_FROZEN)
2340 break;
022bdb07
TH
2341 }
2342
9b1e2658
TH
2343 if (nr_failed_devs) {
2344 if (nr_failed_devs != nr_disabled_devs) {
2345 ata_port_printk(ap, KERN_WARNING, "failed to recover "
2346 "some devices, retrying in 5 secs\n");
2347 ssleep(5);
2348 } else {
2349 /* no device left to recover, repeat fast */
2350 msleep(500);
2351 }
022bdb07 2352
9b1e2658 2353 goto retry;
022bdb07
TH
2354 }
2355
9b1e2658
TH
2356 out:
2357 if (rc && r_failed_link)
2358 *r_failed_link = link;
2359
022bdb07
TH
2360 DPRINTK("EXIT, rc=%d\n", rc);
2361 return rc;
2362}
2363
2364/**
2365 * ata_eh_finish - finish up EH
2366 * @ap: host port to finish EH for
2367 *
2368 * Recovery is complete. Clean up EH states and retry or finish
2369 * failed qcs.
2370 *
2371 * LOCKING:
2372 * None.
2373 */
2374static void ata_eh_finish(struct ata_port *ap)
2375{
2376 int tag;
2377
2378 /* retry or finish qcs */
2379 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
2380 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
2381
2382 if (!(qc->flags & ATA_QCFLAG_FAILED))
2383 continue;
2384
2385 if (qc->err_mask) {
2386 /* FIXME: Once EH migration is complete,
2387 * generate sense data in this function,
2388 * considering both err_mask and tf.
2389 */
2390 if (qc->err_mask & AC_ERR_INVALID)
2391 ata_eh_qc_complete(qc);
2392 else
2393 ata_eh_qc_retry(qc);
2394 } else {
2395 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
2396 ata_eh_qc_complete(qc);
2397 } else {
2398 /* feed zero TF to sense generation */
2399 memset(&qc->result_tf, 0, sizeof(qc->result_tf));
2400 ata_eh_qc_retry(qc);
2401 }
2402 }
2403 }
2404}
2405
2406/**
2407 * ata_do_eh - do standard error handling
2408 * @ap: host port to handle error for
f5914a46 2409 * @prereset: prereset method (can be NULL)
022bdb07
TH
2410 * @softreset: softreset method (can be NULL)
2411 * @hardreset: hardreset method (can be NULL)
2412 * @postreset: postreset method (can be NULL)
2413 *
2414 * Perform standard error handling sequence.
2415 *
2416 * LOCKING:
2417 * Kernel thread context (may sleep).
2418 */
f5914a46
TH
2419void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
2420 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2421 ata_postreset_fn_t postreset)
022bdb07 2422{
9b1e2658
TH
2423 struct ata_device *dev;
2424 int rc;
2425
2426 ata_eh_autopsy(ap);
2427 ata_eh_report(ap);
2428
2429 rc = ata_eh_recover(ap, prereset, softreset, hardreset, postreset,
2430 NULL);
2431 if (rc) {
2432 ata_link_for_each_dev(dev, &ap->link)
2433 ata_dev_disable(dev);
2434 }
2435
022bdb07
TH
2436 ata_eh_finish(ap);
2437}
500530f6 2438
6ffa01d8 2439#ifdef CONFIG_PM
500530f6
TH
2440/**
2441 * ata_eh_handle_port_suspend - perform port suspend operation
2442 * @ap: port to suspend
2443 *
2444 * Suspend @ap.
2445 *
2446 * LOCKING:
2447 * Kernel thread context (may sleep).
2448 */
2449static void ata_eh_handle_port_suspend(struct ata_port *ap)
2450{
2451 unsigned long flags;
2452 int rc = 0;
2453
2454 /* are we suspending? */
2455 spin_lock_irqsave(ap->lock, flags);
2456 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2457 ap->pm_mesg.event == PM_EVENT_ON) {
2458 spin_unlock_irqrestore(ap->lock, flags);
2459 return;
2460 }
2461 spin_unlock_irqrestore(ap->lock, flags);
2462
2463 WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED);
2464
64578a3d
TH
2465 /* tell ACPI we're suspending */
2466 rc = ata_acpi_on_suspend(ap);
2467 if (rc)
2468 goto out;
2469
500530f6
TH
2470 /* suspend */
2471 ata_eh_freeze_port(ap);
2472
2473 if (ap->ops->port_suspend)
2474 rc = ap->ops->port_suspend(ap, ap->pm_mesg);
2475
64578a3d 2476 out:
500530f6
TH
2477 /* report result */
2478 spin_lock_irqsave(ap->lock, flags);
2479
2480 ap->pflags &= ~ATA_PFLAG_PM_PENDING;
2481 if (rc == 0)
2482 ap->pflags |= ATA_PFLAG_SUSPENDED;
64578a3d 2483 else if (ap->pflags & ATA_PFLAG_FROZEN)
500530f6
TH
2484 ata_port_schedule_eh(ap);
2485
2486 if (ap->pm_result) {
2487 *ap->pm_result = rc;
2488 ap->pm_result = NULL;
2489 }
2490
2491 spin_unlock_irqrestore(ap->lock, flags);
2492
2493 return;
2494}
2495
2496/**
2497 * ata_eh_handle_port_resume - perform port resume operation
2498 * @ap: port to resume
2499 *
2500 * Resume @ap.
2501 *
500530f6
TH
2502 * LOCKING:
2503 * Kernel thread context (may sleep).
2504 */
2505static void ata_eh_handle_port_resume(struct ata_port *ap)
2506{
500530f6 2507 unsigned long flags;
9666f400 2508 int rc = 0;
500530f6
TH
2509
2510 /* are we resuming? */
2511 spin_lock_irqsave(ap->lock, flags);
2512 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2513 ap->pm_mesg.event != PM_EVENT_ON) {
2514 spin_unlock_irqrestore(ap->lock, flags);
2515 return;
2516 }
2517 spin_unlock_irqrestore(ap->lock, flags);
2518
9666f400 2519 WARN_ON(!(ap->pflags & ATA_PFLAG_SUSPENDED));
500530f6
TH
2520
2521 if (ap->ops->port_resume)
2522 rc = ap->ops->port_resume(ap);
2523
6746544c
TH
2524 /* tell ACPI that we're resuming */
2525 ata_acpi_on_resume(ap);
2526
9666f400 2527 /* report result */
500530f6
TH
2528 spin_lock_irqsave(ap->lock, flags);
2529 ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED);
2530 if (ap->pm_result) {
2531 *ap->pm_result = rc;
2532 ap->pm_result = NULL;
2533 }
2534 spin_unlock_irqrestore(ap->lock, flags);
2535}
6ffa01d8 2536#endif /* CONFIG_PM */