libata-link: update ata_scsi_error() to handle PMP links
[linux-block.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/**
1581 * ata_eh_autopsy - analyze error and determine recovery action
0260731f 1582 * @link: ATA 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 */
0260731f 1591static void ata_eh_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/**
1683 * ata_eh_report - report error handling to user
0260731f 1684 * @link: ATA link EH is going on
022bdb07
TH
1685 *
1686 * Report EH to user.
1687 *
1688 * LOCKING:
1689 * None.
1690 */
0260731f 1691static void ata_eh_report(struct ata_link *link)
022bdb07 1692{
0260731f
TH
1693 struct ata_port *ap = link->ap;
1694 struct ata_eh_context *ehc = &link->eh_context;
022bdb07
TH
1695 const char *frozen, *desc;
1696 int tag, nr_failed = 0;
1697
1698 desc = NULL;
1699 if (ehc->i.desc[0] != '\0')
1700 desc = ehc->i.desc;
1701
1702 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
1703 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
1704
0260731f 1705 if (!(qc->flags & ATA_QCFLAG_FAILED) || qc->dev->link != link)
022bdb07
TH
1706 continue;
1707 if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask)
1708 continue;
1709
1710 nr_failed++;
1711 }
1712
1713 if (!nr_failed && !ehc->i.err_mask)
1714 return;
1715
1716 frozen = "";
b51e9e5d 1717 if (ap->pflags & ATA_PFLAG_FROZEN)
022bdb07
TH
1718 frozen = " frozen";
1719
1720 if (ehc->i.dev) {
e8ee8451
TH
1721 ata_dev_printk(ehc->i.dev, KERN_ERR, "exception Emask 0x%x "
1722 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
0260731f 1723 ehc->i.err_mask, link->sactive,
9af5c9c9 1724 ehc->i.serror, ehc->i.action, frozen);
022bdb07 1725 if (desc)
b64bbc39 1726 ata_dev_printk(ehc->i.dev, KERN_ERR, "%s\n", desc);
022bdb07 1727 } else {
0260731f 1728 ata_link_printk(link, KERN_ERR, "exception Emask 0x%x "
e8ee8451 1729 "SAct 0x%x SErr 0x%x action 0x%x%s\n",
0260731f 1730 ehc->i.err_mask, link->sactive,
9af5c9c9 1731 ehc->i.serror, ehc->i.action, frozen);
022bdb07 1732 if (desc)
0260731f 1733 ata_link_printk(link, KERN_ERR, "%s\n", desc);
022bdb07
TH
1734 }
1735
1736 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
8a937581
TH
1737 static const char *dma_str[] = {
1738 [DMA_BIDIRECTIONAL] = "bidi",
1739 [DMA_TO_DEVICE] = "out",
1740 [DMA_FROM_DEVICE] = "in",
1741 [DMA_NONE] = "",
1742 };
022bdb07 1743 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
8a937581 1744 struct ata_taskfile *cmd = &qc->tf, *res = &qc->result_tf;
022bdb07 1745
0260731f
TH
1746 if (!(qc->flags & ATA_QCFLAG_FAILED) ||
1747 qc->dev->link != link || !qc->err_mask)
022bdb07
TH
1748 continue;
1749
8a937581
TH
1750 ata_dev_printk(qc->dev, KERN_ERR,
1751 "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
664e8503 1752 "tag %d cdb 0x%x data %u %s\n "
8a937581 1753 "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
5335b729 1754 "Emask 0x%x (%s)%s\n",
8a937581
TH
1755 cmd->command, cmd->feature, cmd->nsect,
1756 cmd->lbal, cmd->lbam, cmd->lbah,
1757 cmd->hob_feature, cmd->hob_nsect,
1758 cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah,
726f0785 1759 cmd->device, qc->tag, qc->cdb[0], qc->nbytes,
664e8503 1760 dma_str[qc->dma_dir],
8a937581
TH
1761 res->command, res->feature, res->nsect,
1762 res->lbal, res->lbam, res->lbah,
1763 res->hob_feature, res->hob_nsect,
1764 res->hob_lbal, res->hob_lbam, res->hob_lbah,
5335b729
TH
1765 res->device, qc->err_mask, ata_err_string(qc->err_mask),
1766 qc->err_mask & AC_ERR_NCQ ? " <F>" : "");
022bdb07
TH
1767 }
1768}
1769
cc0680a5 1770static int ata_do_reset(struct ata_link *link, ata_reset_fn_t reset,
d4b2bab4 1771 unsigned int *classes, unsigned long deadline)
d87fa38e 1772{
f58229f8
TH
1773 struct ata_device *dev;
1774 int rc;
d87fa38e 1775
cc0680a5 1776 ata_link_for_each_dev(dev, link)
f58229f8 1777 classes[dev->devno] = ATA_DEV_UNKNOWN;
d87fa38e 1778
cc0680a5 1779 rc = reset(link, classes, deadline);
d87fa38e
TH
1780 if (rc)
1781 return rc;
1782
1783 /* If any class isn't ATA_DEV_UNKNOWN, consider classification
1784 * is complete and convert all ATA_DEV_UNKNOWN to
1785 * ATA_DEV_NONE.
1786 */
cc0680a5 1787 ata_link_for_each_dev(dev, link)
f58229f8 1788 if (classes[dev->devno] != ATA_DEV_UNKNOWN)
d87fa38e
TH
1789 break;
1790
f58229f8 1791 if (dev) {
cc0680a5 1792 ata_link_for_each_dev(dev, link) {
f58229f8
TH
1793 if (classes[dev->devno] == ATA_DEV_UNKNOWN)
1794 classes[dev->devno] = ATA_DEV_NONE;
1795 }
1796 }
d87fa38e
TH
1797
1798 return 0;
1799}
1800
664faf09
TH
1801static int ata_eh_followup_srst_needed(int rc, int classify,
1802 const unsigned int *classes)
1803{
1804 if (rc == -EAGAIN)
1805 return 1;
1806 if (rc != 0)
1807 return 0;
1808 if (classify && classes[0] == ATA_DEV_UNKNOWN)
1809 return 1;
1810 return 0;
1811}
1812
cc0680a5 1813static int ata_eh_reset(struct ata_link *link, int classify,
f5914a46 1814 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
022bdb07
TH
1815 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
1816{
936fd732 1817 struct ata_eh_context *ehc = &link->eh_context;
664faf09 1818 unsigned int *classes = ehc->classes;
1cdaf534 1819 int verbose = !(ehc->i.flags & ATA_EHI_QUIET);
31daabda 1820 int try = 0;
f58229f8 1821 struct ata_device *dev;
31daabda 1822 unsigned long deadline;
f5914a46 1823 unsigned int action;
022bdb07 1824 ata_reset_fn_t reset;
f58229f8 1825 int rc;
022bdb07 1826
13abf50d 1827 /* about to reset */
955e57df 1828 ata_eh_about_to_do(link, NULL, ehc->i.action & ATA_EH_RESET_MASK);
13abf50d 1829
f5914a46
TH
1830 /* Determine which reset to use and record in ehc->i.action.
1831 * prereset() may examine and modify it.
1832 */
1833 action = ehc->i.action;
1834 ehc->i.action &= ~ATA_EH_RESET_MASK;
936fd732 1835 if (softreset && (!hardreset || (!sata_set_spd_needed(link) &&
f5914a46
TH
1836 !(action & ATA_EH_HARDRESET))))
1837 ehc->i.action |= ATA_EH_SOFTRESET;
022bdb07 1838 else
f5914a46
TH
1839 ehc->i.action |= ATA_EH_HARDRESET;
1840
1841 if (prereset) {
cc0680a5 1842 rc = prereset(link, jiffies + ATA_EH_PRERESET_TIMEOUT);
f5914a46 1843 if (rc) {
c961922b 1844 if (rc == -ENOENT) {
cc0680a5 1845 ata_link_printk(link, KERN_DEBUG,
4aa9ab67 1846 "port disabled. ignoring.\n");
9af5c9c9 1847 ehc->i.action &= ~ATA_EH_RESET_MASK;
4aa9ab67 1848
936fd732 1849 ata_link_for_each_dev(dev, link)
f58229f8 1850 classes[dev->devno] = ATA_DEV_NONE;
4aa9ab67
TH
1851
1852 rc = 0;
c961922b 1853 } else
cc0680a5 1854 ata_link_printk(link, KERN_ERR,
f5914a46 1855 "prereset failed (errno=%d)\n", rc);
fccb6ea5 1856 goto out;
f5914a46
TH
1857 }
1858 }
1859
1860 /* prereset() might have modified ehc->i.action */
1861 if (ehc->i.action & ATA_EH_HARDRESET)
022bdb07 1862 reset = hardreset;
f5914a46
TH
1863 else if (ehc->i.action & ATA_EH_SOFTRESET)
1864 reset = softreset;
1865 else {
1866 /* prereset told us not to reset, bang classes and return */
936fd732 1867 ata_link_for_each_dev(dev, link)
f58229f8 1868 classes[dev->devno] = ATA_DEV_NONE;
fccb6ea5
TH
1869 rc = 0;
1870 goto out;
f5914a46
TH
1871 }
1872
1873 /* did prereset() screw up? if so, fix up to avoid oopsing */
1874 if (!reset) {
f5914a46
TH
1875 if (softreset)
1876 reset = softreset;
1877 else
1878 reset = hardreset;
1879 }
022bdb07
TH
1880
1881 retry:
31daabda
TH
1882 deadline = jiffies + ata_eh_reset_timeouts[try++];
1883
3e706399
TH
1884 /* shut up during boot probing */
1885 if (verbose)
cc0680a5 1886 ata_link_printk(link, KERN_INFO, "%s resetting link\n",
3e706399 1887 reset == softreset ? "soft" : "hard");
022bdb07 1888
13abf50d 1889 /* mark that this EH session started with reset */
0d64a233
TH
1890 if (reset == hardreset)
1891 ehc->i.flags |= ATA_EHI_DID_HARDRESET;
1892 else
1893 ehc->i.flags |= ATA_EHI_DID_SOFTRESET;
022bdb07 1894
cc0680a5 1895 rc = ata_do_reset(link, reset, classes, deadline);
022bdb07 1896
664faf09
TH
1897 if (reset == hardreset &&
1898 ata_eh_followup_srst_needed(rc, classify, classes)) {
1899 /* okay, let's do follow-up softreset */
664faf09
TH
1900 reset = softreset;
1901
1902 if (!reset) {
cc0680a5 1903 ata_link_printk(link, KERN_ERR,
664faf09
TH
1904 "follow-up softreset required "
1905 "but no softreset avaliable\n");
fccb6ea5
TH
1906 rc = -EINVAL;
1907 goto out;
664faf09
TH
1908 }
1909
955e57df 1910 ata_eh_about_to_do(link, NULL, ATA_EH_RESET_MASK);
cc0680a5 1911 rc = ata_do_reset(link, reset, classes, deadline);
664faf09
TH
1912
1913 if (rc == 0 && classify &&
1914 classes[0] == ATA_DEV_UNKNOWN) {
cc0680a5 1915 ata_link_printk(link, KERN_ERR,
664faf09 1916 "classification failed\n");
fccb6ea5
TH
1917 rc = -EINVAL;
1918 goto out;
664faf09
TH
1919 }
1920 }
1921
31daabda
TH
1922 if (rc && try < ARRAY_SIZE(ata_eh_reset_timeouts)) {
1923 unsigned long now = jiffies;
664faf09 1924
31daabda
TH
1925 if (time_before(now, deadline)) {
1926 unsigned long delta = deadline - jiffies;
664faf09 1927
cc0680a5 1928 ata_link_printk(link, KERN_WARNING, "reset failed "
31daabda
TH
1929 "(errno=%d), retrying in %u secs\n",
1930 rc, (jiffies_to_msecs(delta) + 999) / 1000);
1931
1932 schedule_timeout_uninterruptible(delta);
1933 }
022bdb07 1934
f1545154 1935 if (rc == -EPIPE ||
31daabda 1936 try == ARRAY_SIZE(ata_eh_reset_timeouts) - 1)
936fd732 1937 sata_down_spd_limit(link);
022bdb07
TH
1938 if (hardreset)
1939 reset = hardreset;
1940 goto retry;
1941 }
1942
1943 if (rc == 0) {
008a7896
TH
1944 u32 sstatus;
1945
20952b69
TH
1946 /* After the reset, the device state is PIO 0 and the
1947 * controller state is undefined. Record the mode.
1948 */
936fd732 1949 ata_link_for_each_dev(dev, link)
f58229f8 1950 dev->pio_mode = XFER_PIO_0;
20952b69 1951
008a7896 1952 /* record current link speed */
936fd732
TH
1953 if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0)
1954 link->sata_spd = (sstatus >> 4) & 0xf;
008a7896 1955
022bdb07 1956 if (postreset)
cc0680a5 1957 postreset(link, classes);
022bdb07
TH
1958
1959 /* reset successful, schedule revalidation */
955e57df 1960 ata_eh_done(link, NULL, ehc->i.action & ATA_EH_RESET_MASK);
022bdb07
TH
1961 ehc->i.action |= ATA_EH_REVALIDATE;
1962 }
fccb6ea5
TH
1963 out:
1964 /* clear hotplug flag */
1965 ehc->i.flags &= ~ATA_EHI_HOTPLUGGED;
022bdb07
TH
1966 return rc;
1967}
1968
0260731f 1969static int ata_eh_revalidate_and_attach(struct ata_link *link,
084fe639 1970 struct ata_device **r_failed_dev)
022bdb07 1971{
0260731f
TH
1972 struct ata_port *ap = link->ap;
1973 struct ata_eh_context *ehc = &link->eh_context;
022bdb07 1974 struct ata_device *dev;
8c3c52a8 1975 unsigned int new_mask = 0;
084fe639 1976 unsigned long flags;
f58229f8 1977 int rc = 0;
022bdb07
TH
1978
1979 DPRINTK("ENTER\n");
1980
8c3c52a8
TH
1981 /* For PATA drive side cable detection to work, IDENTIFY must
1982 * be done backwards such that PDIAG- is released by the slave
1983 * device before the master device is identified.
1984 */
0260731f 1985 ata_link_for_each_dev_reverse(dev, link) {
f58229f8
TH
1986 unsigned int action = ata_eh_dev_action(dev);
1987 unsigned int readid_flags = 0;
022bdb07 1988
bff04647
TH
1989 if (ehc->i.flags & ATA_EHI_DID_RESET)
1990 readid_flags |= ATA_READID_POSTRESET;
1991
9666f400 1992 if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) {
0260731f 1993 if (ata_link_offline(link)) {
022bdb07 1994 rc = -EIO;
8c3c52a8 1995 goto err;
022bdb07
TH
1996 }
1997
0260731f 1998 ata_eh_about_to_do(link, dev, ATA_EH_REVALIDATE);
bff04647 1999 rc = ata_dev_revalidate(dev, readid_flags);
022bdb07 2000 if (rc)
8c3c52a8 2001 goto err;
022bdb07 2002
0260731f 2003 ata_eh_done(link, dev, ATA_EH_REVALIDATE);
47005f25 2004
baa1e78a
TH
2005 /* Configuration may have changed, reconfigure
2006 * transfer mode.
2007 */
2008 ehc->i.flags |= ATA_EHI_SETMODE;
2009
3057ac3c 2010 /* schedule the scsi_rescan_device() here */
2011 queue_work(ata_aux_wq, &(ap->scsi_rescan_task));
084fe639
TH
2012 } else if (dev->class == ATA_DEV_UNKNOWN &&
2013 ehc->tries[dev->devno] &&
2014 ata_class_enabled(ehc->classes[dev->devno])) {
2015 dev->class = ehc->classes[dev->devno];
2016
bff04647
TH
2017 rc = ata_dev_read_id(dev, &dev->class, readid_flags,
2018 dev->id);
8c3c52a8
TH
2019 switch (rc) {
2020 case 0:
f58229f8 2021 new_mask |= 1 << dev->devno;
8c3c52a8
TH
2022 break;
2023 case -ENOENT:
55a8e2c8
TH
2024 /* IDENTIFY was issued to non-existent
2025 * device. No need to reset. Just
2026 * thaw and kill the device.
2027 */
2028 ata_eh_thaw_port(ap);
084fe639
TH
2029 dev->class = ATA_DEV_UNKNOWN;
2030 break;
8c3c52a8
TH
2031 default:
2032 dev->class = ATA_DEV_UNKNOWN;
2033 goto err;
084fe639 2034 }
8c3c52a8
TH
2035 }
2036 }
084fe639 2037
c1c4e8d5
TH
2038 /* PDIAG- should have been released, ask cable type if post-reset */
2039 if ((ehc->i.flags & ATA_EHI_DID_RESET) && ap->ops->cable_detect)
2040 ap->cbl = ap->ops->cable_detect(ap);
2041
8c3c52a8
TH
2042 /* Configure new devices forward such that user doesn't see
2043 * device detection messages backwards.
2044 */
0260731f 2045 ata_link_for_each_dev(dev, link) {
f58229f8 2046 if (!(new_mask & (1 << dev->devno)))
8c3c52a8
TH
2047 continue;
2048
2049 ehc->i.flags |= ATA_EHI_PRINTINFO;
2050 rc = ata_dev_configure(dev);
2051 ehc->i.flags &= ~ATA_EHI_PRINTINFO;
2052 if (rc)
2053 goto err;
2054
2055 spin_lock_irqsave(ap->lock, flags);
2056 ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
2057 spin_unlock_irqrestore(ap->lock, flags);
2058
2059 /* new device discovered, configure xfermode */
2060 ehc->i.flags |= ATA_EHI_SETMODE;
022bdb07
TH
2061 }
2062
8c3c52a8 2063 return 0;
022bdb07 2064
8c3c52a8
TH
2065 err:
2066 *r_failed_dev = dev;
2067 DPRINTK("EXIT rc=%d\n", rc);
022bdb07
TH
2068 return rc;
2069}
2070
0260731f 2071static int ata_link_nr_enabled(struct ata_link *link)
022bdb07 2072{
f58229f8
TH
2073 struct ata_device *dev;
2074 int cnt = 0;
022bdb07 2075
0260731f 2076 ata_link_for_each_dev(dev, link)
f58229f8 2077 if (ata_dev_enabled(dev))
022bdb07
TH
2078 cnt++;
2079 return cnt;
2080}
2081
0260731f 2082static int ata_link_nr_vacant(struct ata_link *link)
084fe639 2083{
f58229f8
TH
2084 struct ata_device *dev;
2085 int cnt = 0;
084fe639 2086
0260731f 2087 ata_link_for_each_dev(dev, link)
f58229f8 2088 if (dev->class == ATA_DEV_UNKNOWN)
084fe639
TH
2089 cnt++;
2090 return cnt;
2091}
2092
0260731f 2093static int ata_eh_skip_recovery(struct ata_link *link)
084fe639 2094{
0260731f 2095 struct ata_eh_context *ehc = &link->eh_context;
f58229f8 2096 struct ata_device *dev;
084fe639 2097
7c8c2cff 2098 /* thaw frozen port, resume link and recover failed devices */
0260731f
TH
2099 if ((link->ap->pflags & ATA_PFLAG_FROZEN) ||
2100 (ehc->i.flags & ATA_EHI_RESUME_LINK) || ata_link_nr_enabled(link))
084fe639
TH
2101 return 0;
2102
2103 /* skip if class codes for all vacant slots are ATA_DEV_NONE */
0260731f 2104 ata_link_for_each_dev(dev, link) {
084fe639
TH
2105 if (dev->class == ATA_DEV_UNKNOWN &&
2106 ehc->classes[dev->devno] != ATA_DEV_NONE)
2107 return 0;
2108 }
2109
2110 return 1;
2111}
2112
fee7ca72
TH
2113static void ata_eh_handle_dev_fail(struct ata_device *dev, int err)
2114{
9af5c9c9 2115 struct ata_eh_context *ehc = &dev->link->eh_context;
fee7ca72
TH
2116
2117 ehc->tries[dev->devno]--;
2118
2119 switch (err) {
2120 case -ENODEV:
2121 /* device missing or wrong IDENTIFY data, schedule probing */
2122 ehc->i.probe_mask |= (1 << dev->devno);
2123 case -EINVAL:
2124 /* give it just one more chance */
2125 ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1);
2126 case -EIO:
2127 if (ehc->tries[dev->devno] == 1) {
2128 /* This is the last chance, better to slow
2129 * down than lose it.
2130 */
936fd732 2131 sata_down_spd_limit(dev->link);
fee7ca72
TH
2132 ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
2133 }
2134 }
2135
2136 if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) {
2137 /* disable device if it has used up all its chances */
2138 ata_dev_disable(dev);
2139
2140 /* detach if offline */
936fd732 2141 if (ata_link_offline(dev->link))
fee7ca72
TH
2142 ata_eh_detach_dev(dev);
2143
2144 /* probe if requested */
2145 if ((ehc->i.probe_mask & (1 << dev->devno)) &&
2146 !(ehc->did_probe_mask & (1 << dev->devno))) {
2147 ata_eh_detach_dev(dev);
2148 ata_dev_init(dev);
2149
2150 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
2151 ehc->did_probe_mask |= (1 << dev->devno);
2152 ehc->i.action |= ATA_EH_SOFTRESET;
2153 }
2154 } else {
2155 /* soft didn't work? be haaaaard */
2156 if (ehc->i.flags & ATA_EHI_DID_RESET)
2157 ehc->i.action |= ATA_EH_HARDRESET;
2158 else
2159 ehc->i.action |= ATA_EH_SOFTRESET;
2160 }
2161}
2162
022bdb07
TH
2163/**
2164 * ata_eh_recover - recover host port after error
2165 * @ap: host port to recover
f5914a46 2166 * @prereset: prereset method (can be NULL)
022bdb07
TH
2167 * @softreset: softreset method (can be NULL)
2168 * @hardreset: hardreset method (can be NULL)
2169 * @postreset: postreset method (can be NULL)
2170 *
2171 * This is the alpha and omega, eum and yang, heart and soul of
2172 * libata exception handling. On entry, actions required to
084fe639
TH
2173 * recover the port and hotplug requests are recorded in
2174 * eh_context. This function executes all the operations with
2175 * appropriate retrials and fallbacks to resurrect failed
2176 * devices, detach goners and greet newcomers.
022bdb07
TH
2177 *
2178 * LOCKING:
2179 * Kernel thread context (may sleep).
2180 *
2181 * RETURNS:
2182 * 0 on success, -errno on failure.
2183 */
f5914a46
TH
2184static int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
2185 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
022bdb07
TH
2186 ata_postreset_fn_t postreset)
2187{
0260731f
TH
2188 struct ata_link *link = &ap->link;
2189 struct ata_eh_context *ehc = &link->eh_context;
022bdb07 2190 struct ata_device *dev;
f58229f8 2191 int rc;
022bdb07
TH
2192
2193 DPRINTK("ENTER\n");
2194
2195 /* prep for recovery */
0260731f 2196 ata_link_for_each_dev(dev, link) {
022bdb07 2197 ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
084fe639 2198
79a55b72 2199 /* collect port action mask recorded in dev actions */
f58229f8
TH
2200 ehc->i.action |=
2201 ehc->i.dev_action[dev->devno] & ~ATA_EH_PERDEV_MASK;
2202 ehc->i.dev_action[dev->devno] &= ATA_EH_PERDEV_MASK;
79a55b72 2203
084fe639
TH
2204 /* process hotplug request */
2205 if (dev->flags & ATA_DFLAG_DETACH)
2206 ata_eh_detach_dev(dev);
2207
2208 if (!ata_dev_enabled(dev) &&
2209 ((ehc->i.probe_mask & (1 << dev->devno)) &&
2210 !(ehc->did_probe_mask & (1 << dev->devno)))) {
2211 ata_eh_detach_dev(dev);
2212 ata_dev_init(dev);
2213 ehc->did_probe_mask |= (1 << dev->devno);
2214 ehc->i.action |= ATA_EH_SOFTRESET;
2215 }
022bdb07
TH
2216 }
2217
2218 retry:
022bdb07
TH
2219 rc = 0;
2220
aeb2ecd6 2221 /* if UNLOADING, finish immediately */
b51e9e5d 2222 if (ap->pflags & ATA_PFLAG_UNLOADING)
aeb2ecd6
TH
2223 goto out;
2224
022bdb07 2225 /* skip EH if possible. */
0260731f 2226 if (ata_eh_skip_recovery(link))
022bdb07
TH
2227 ehc->i.action = 0;
2228
0260731f 2229 ata_link_for_each_dev(dev, link)
f58229f8 2230 ehc->classes[dev->devno] = ATA_DEV_UNKNOWN;
084fe639 2231
022bdb07
TH
2232 /* reset */
2233 if (ehc->i.action & ATA_EH_RESET_MASK) {
2234 ata_eh_freeze_port(ap);
2235
0260731f 2236 rc = ata_eh_reset(link, ata_link_nr_vacant(link), prereset,
084fe639 2237 softreset, hardreset, postreset);
022bdb07 2238 if (rc) {
0260731f 2239 ata_link_printk(link, KERN_ERR,
022bdb07
TH
2240 "reset failed, giving up\n");
2241 goto out;
2242 }
2243
2244 ata_eh_thaw_port(ap);
2245 }
2246
084fe639 2247 /* revalidate existing devices and attach new ones */
0260731f 2248 rc = ata_eh_revalidate_and_attach(link, &dev);
022bdb07
TH
2249 if (rc)
2250 goto dev_fail;
2251
baa1e78a
TH
2252 /* configure transfer mode if necessary */
2253 if (ehc->i.flags & ATA_EHI_SETMODE) {
0260731f 2254 rc = ata_set_mode(link, &dev);
4ae72a1e 2255 if (rc)
022bdb07 2256 goto dev_fail;
baa1e78a 2257 ehc->i.flags &= ~ATA_EHI_SETMODE;
022bdb07
TH
2258 }
2259
2260 goto out;
2261
2262 dev_fail:
fee7ca72 2263 ata_eh_handle_dev_fail(dev, rc);
022bdb07 2264
0260731f
TH
2265 if (ata_link_nr_enabled(link)) {
2266 ata_link_printk(link, KERN_WARNING, "failed to recover some "
022bdb07
TH
2267 "devices, retrying in 5 secs\n");
2268 ssleep(5);
2269 } else {
2270 /* no device left, repeat fast */
2271 msleep(500);
2272 }
2273
2274 goto retry;
2275
2276 out:
2277 if (rc) {
0260731f 2278 ata_link_for_each_dev(dev, link);
f58229f8 2279 ata_dev_disable(dev);
022bdb07
TH
2280 }
2281
2282 DPRINTK("EXIT, rc=%d\n", rc);
2283 return rc;
2284}
2285
2286/**
2287 * ata_eh_finish - finish up EH
2288 * @ap: host port to finish EH for
2289 *
2290 * Recovery is complete. Clean up EH states and retry or finish
2291 * failed qcs.
2292 *
2293 * LOCKING:
2294 * None.
2295 */
2296static void ata_eh_finish(struct ata_port *ap)
2297{
2298 int tag;
2299
2300 /* retry or finish qcs */
2301 for (tag = 0; tag < ATA_MAX_QUEUE; tag++) {
2302 struct ata_queued_cmd *qc = __ata_qc_from_tag(ap, tag);
2303
2304 if (!(qc->flags & ATA_QCFLAG_FAILED))
2305 continue;
2306
2307 if (qc->err_mask) {
2308 /* FIXME: Once EH migration is complete,
2309 * generate sense data in this function,
2310 * considering both err_mask and tf.
2311 */
2312 if (qc->err_mask & AC_ERR_INVALID)
2313 ata_eh_qc_complete(qc);
2314 else
2315 ata_eh_qc_retry(qc);
2316 } else {
2317 if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
2318 ata_eh_qc_complete(qc);
2319 } else {
2320 /* feed zero TF to sense generation */
2321 memset(&qc->result_tf, 0, sizeof(qc->result_tf));
2322 ata_eh_qc_retry(qc);
2323 }
2324 }
2325 }
2326}
2327
2328/**
2329 * ata_do_eh - do standard error handling
2330 * @ap: host port to handle error for
f5914a46 2331 * @prereset: prereset method (can be NULL)
022bdb07
TH
2332 * @softreset: softreset method (can be NULL)
2333 * @hardreset: hardreset method (can be NULL)
2334 * @postreset: postreset method (can be NULL)
2335 *
2336 * Perform standard error handling sequence.
2337 *
2338 * LOCKING:
2339 * Kernel thread context (may sleep).
2340 */
f5914a46
TH
2341void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
2342 ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
2343 ata_postreset_fn_t postreset)
022bdb07 2344{
0260731f
TH
2345 ata_eh_autopsy(&ap->link);
2346 ata_eh_report(&ap->link);
f5914a46 2347 ata_eh_recover(ap, prereset, softreset, hardreset, postreset);
022bdb07
TH
2348 ata_eh_finish(ap);
2349}
500530f6 2350
6ffa01d8 2351#ifdef CONFIG_PM
500530f6
TH
2352/**
2353 * ata_eh_handle_port_suspend - perform port suspend operation
2354 * @ap: port to suspend
2355 *
2356 * Suspend @ap.
2357 *
2358 * LOCKING:
2359 * Kernel thread context (may sleep).
2360 */
2361static void ata_eh_handle_port_suspend(struct ata_port *ap)
2362{
2363 unsigned long flags;
2364 int rc = 0;
2365
2366 /* are we suspending? */
2367 spin_lock_irqsave(ap->lock, flags);
2368 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2369 ap->pm_mesg.event == PM_EVENT_ON) {
2370 spin_unlock_irqrestore(ap->lock, flags);
2371 return;
2372 }
2373 spin_unlock_irqrestore(ap->lock, flags);
2374
2375 WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED);
2376
64578a3d
TH
2377 /* tell ACPI we're suspending */
2378 rc = ata_acpi_on_suspend(ap);
2379 if (rc)
2380 goto out;
2381
500530f6
TH
2382 /* suspend */
2383 ata_eh_freeze_port(ap);
2384
2385 if (ap->ops->port_suspend)
2386 rc = ap->ops->port_suspend(ap, ap->pm_mesg);
2387
64578a3d 2388 out:
500530f6
TH
2389 /* report result */
2390 spin_lock_irqsave(ap->lock, flags);
2391
2392 ap->pflags &= ~ATA_PFLAG_PM_PENDING;
2393 if (rc == 0)
2394 ap->pflags |= ATA_PFLAG_SUSPENDED;
64578a3d 2395 else if (ap->pflags & ATA_PFLAG_FROZEN)
500530f6
TH
2396 ata_port_schedule_eh(ap);
2397
2398 if (ap->pm_result) {
2399 *ap->pm_result = rc;
2400 ap->pm_result = NULL;
2401 }
2402
2403 spin_unlock_irqrestore(ap->lock, flags);
2404
2405 return;
2406}
2407
2408/**
2409 * ata_eh_handle_port_resume - perform port resume operation
2410 * @ap: port to resume
2411 *
2412 * Resume @ap.
2413 *
500530f6
TH
2414 * LOCKING:
2415 * Kernel thread context (may sleep).
2416 */
2417static void ata_eh_handle_port_resume(struct ata_port *ap)
2418{
500530f6 2419 unsigned long flags;
9666f400 2420 int rc = 0;
500530f6
TH
2421
2422 /* are we resuming? */
2423 spin_lock_irqsave(ap->lock, flags);
2424 if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
2425 ap->pm_mesg.event != PM_EVENT_ON) {
2426 spin_unlock_irqrestore(ap->lock, flags);
2427 return;
2428 }
2429 spin_unlock_irqrestore(ap->lock, flags);
2430
9666f400 2431 WARN_ON(!(ap->pflags & ATA_PFLAG_SUSPENDED));
500530f6
TH
2432
2433 if (ap->ops->port_resume)
2434 rc = ap->ops->port_resume(ap);
2435
6746544c
TH
2436 /* tell ACPI that we're resuming */
2437 ata_acpi_on_resume(ap);
2438
9666f400 2439 /* report result */
500530f6
TH
2440 spin_lock_irqsave(ap->lock, flags);
2441 ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED);
2442 if (ap->pm_result) {
2443 *ap->pm_result = rc;
2444 ap->pm_result = NULL;
2445 }
2446 spin_unlock_irqrestore(ap->lock, flags);
2447}
6ffa01d8 2448#endif /* CONFIG_PM */