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