xref: /openbmc/linux/drivers/ata/libata-eh.c (revision c82ee6d3beaa489058c1fe1ca710042a07df9d40)
1*c82ee6d3SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2c6fd2807SJeff Garzik /*
3c6fd2807SJeff Garzik  *  libata-eh.c - libata error handling
4c6fd2807SJeff Garzik  *
58c3d3d4bSTejun Heo  *  Maintained by:  Tejun Heo <tj@kernel.org>
6c6fd2807SJeff Garzik  *    		    Please ALWAYS copy linux-ide@vger.kernel.org
7c6fd2807SJeff Garzik  *		    on emails.
8c6fd2807SJeff Garzik  *
9c6fd2807SJeff Garzik  *  Copyright 2006 Tejun Heo <htejun@gmail.com>
10c6fd2807SJeff Garzik  *
11c6fd2807SJeff Garzik  *  libata documentation is available via 'make {ps|pdf}docs',
129bb9a39cSMauro Carvalho Chehab  *  as Documentation/driver-api/libata.rst
13c6fd2807SJeff Garzik  *
14c6fd2807SJeff Garzik  *  Hardware documentation available from http://www.t13.org/ and
15c6fd2807SJeff Garzik  *  http://www.sata-io.org/
16c6fd2807SJeff Garzik  */
17c6fd2807SJeff Garzik 
18c6fd2807SJeff Garzik #include <linux/kernel.h>
19242f9dcbSJens Axboe #include <linux/blkdev.h>
2038789fdaSPaul Gortmaker #include <linux/export.h>
212855568bSJeff Garzik #include <linux/pci.h>
22c6fd2807SJeff Garzik #include <scsi/scsi.h>
23c6fd2807SJeff Garzik #include <scsi/scsi_host.h>
24c6fd2807SJeff Garzik #include <scsi/scsi_eh.h>
25c6fd2807SJeff Garzik #include <scsi/scsi_device.h>
26c6fd2807SJeff Garzik #include <scsi/scsi_cmnd.h>
276521148cSRobert Hancock #include <scsi/scsi_dbg.h>
28c6fd2807SJeff Garzik #include "../scsi/scsi_transport_api.h"
29c6fd2807SJeff Garzik 
30c6fd2807SJeff Garzik #include <linux/libata.h>
31c6fd2807SJeff Garzik 
32255c03d1SHannes Reinecke #include <trace/events/libata.h>
33c6fd2807SJeff Garzik #include "libata.h"
34c6fd2807SJeff Garzik 
357d47e8d4STejun Heo enum {
363884f7b0STejun Heo 	/* speed down verdicts */
377d47e8d4STejun Heo 	ATA_EH_SPDN_NCQ_OFF		= (1 << 0),
387d47e8d4STejun Heo 	ATA_EH_SPDN_SPEED_DOWN		= (1 << 1),
397d47e8d4STejun Heo 	ATA_EH_SPDN_FALLBACK_TO_PIO	= (1 << 2),
4076326ac1STejun Heo 	ATA_EH_SPDN_KEEP_ERRORS		= (1 << 3),
413884f7b0STejun Heo 
423884f7b0STejun Heo 	/* error flags */
433884f7b0STejun Heo 	ATA_EFLAG_IS_IO			= (1 << 0),
4476326ac1STejun Heo 	ATA_EFLAG_DUBIOUS_XFER		= (1 << 1),
45d9027470SGwendal Grignou 	ATA_EFLAG_OLD_ER                = (1 << 31),
463884f7b0STejun Heo 
473884f7b0STejun Heo 	/* error categories */
483884f7b0STejun Heo 	ATA_ECAT_NONE			= 0,
493884f7b0STejun Heo 	ATA_ECAT_ATA_BUS		= 1,
503884f7b0STejun Heo 	ATA_ECAT_TOUT_HSM		= 2,
513884f7b0STejun Heo 	ATA_ECAT_UNK_DEV		= 3,
5275f9cafcSTejun Heo 	ATA_ECAT_DUBIOUS_NONE		= 4,
5375f9cafcSTejun Heo 	ATA_ECAT_DUBIOUS_ATA_BUS	= 5,
5475f9cafcSTejun Heo 	ATA_ECAT_DUBIOUS_TOUT_HSM	= 6,
5575f9cafcSTejun Heo 	ATA_ECAT_DUBIOUS_UNK_DEV	= 7,
5675f9cafcSTejun Heo 	ATA_ECAT_NR			= 8,
577d47e8d4STejun Heo 
5887fbc5a0STejun Heo 	ATA_EH_CMD_DFL_TIMEOUT		=  5000,
5987fbc5a0STejun Heo 
600a2c0f56STejun Heo 	/* always put at least this amount of time between resets */
610a2c0f56STejun Heo 	ATA_EH_RESET_COOL_DOWN		=  5000,
620a2c0f56STejun Heo 
63341c2c95STejun Heo 	/* Waiting in ->prereset can never be reliable.  It's
64341c2c95STejun Heo 	 * sometimes nice to wait there but it can't be depended upon;
65341c2c95STejun Heo 	 * otherwise, we wouldn't be resetting.  Just give it enough
66341c2c95STejun Heo 	 * time for most drives to spin up.
6731daabdaSTejun Heo 	 */
68341c2c95STejun Heo 	ATA_EH_PRERESET_TIMEOUT		= 10000,
69341c2c95STejun Heo 	ATA_EH_FASTDRAIN_INTERVAL	=  3000,
7011fc33daSTejun Heo 
7111fc33daSTejun Heo 	ATA_EH_UA_TRIES			= 5,
72c2c7a89cSTejun Heo 
73c2c7a89cSTejun Heo 	/* probe speed down parameters, see ata_eh_schedule_probe() */
74c2c7a89cSTejun Heo 	ATA_EH_PROBE_TRIAL_INTERVAL	= 60000,	/* 1 min */
75c2c7a89cSTejun Heo 	ATA_EH_PROBE_TRIALS		= 2,
7631daabdaSTejun Heo };
7731daabdaSTejun Heo 
7831daabdaSTejun Heo /* The following table determines how we sequence resets.  Each entry
7931daabdaSTejun Heo  * represents timeout for that try.  The first try can be soft or
8031daabdaSTejun Heo  * hardreset.  All others are hardreset if available.  In most cases
8131daabdaSTejun Heo  * the first reset w/ 10sec timeout should succeed.  Following entries
8235bf8821SDan Williams  * are mostly for error handling, hotplug and those outlier devices that
8335bf8821SDan Williams  * take an exceptionally long time to recover from reset.
8431daabdaSTejun Heo  */
8531daabdaSTejun Heo static const unsigned long ata_eh_reset_timeouts[] = {
86341c2c95STejun Heo 	10000,	/* most drives spin up by 10sec */
87341c2c95STejun Heo 	10000,	/* > 99% working drives spin up before 20sec */
8835bf8821SDan Williams 	35000,	/* give > 30 secs of idleness for outlier devices */
89341c2c95STejun Heo 	 5000,	/* and sweet one last chance */
90d8af0eb6STejun Heo 	ULONG_MAX, /* > 1 min has elapsed, give up */
9131daabdaSTejun Heo };
9231daabdaSTejun Heo 
9387fbc5a0STejun Heo static const unsigned long ata_eh_identify_timeouts[] = {
9487fbc5a0STejun Heo 	 5000,	/* covers > 99% of successes and not too boring on failures */
9587fbc5a0STejun Heo 	10000,  /* combined time till here is enough even for media access */
9687fbc5a0STejun Heo 	30000,	/* for true idiots */
9787fbc5a0STejun Heo 	ULONG_MAX,
9887fbc5a0STejun Heo };
9987fbc5a0STejun Heo 
1006013efd8STejun Heo static const unsigned long ata_eh_flush_timeouts[] = {
1016013efd8STejun Heo 	15000,	/* be generous with flush */
1026013efd8STejun Heo 	15000,  /* ditto */
1036013efd8STejun Heo 	30000,	/* and even more generous */
1046013efd8STejun Heo 	ULONG_MAX,
1056013efd8STejun Heo };
1066013efd8STejun Heo 
10787fbc5a0STejun Heo static const unsigned long ata_eh_other_timeouts[] = {
10887fbc5a0STejun Heo 	 5000,	/* same rationale as identify timeout */
10987fbc5a0STejun Heo 	10000,	/* ditto */
11087fbc5a0STejun Heo 	/* but no merciful 30sec for other commands, it just isn't worth it */
11187fbc5a0STejun Heo 	ULONG_MAX,
11287fbc5a0STejun Heo };
11387fbc5a0STejun Heo 
11487fbc5a0STejun Heo struct ata_eh_cmd_timeout_ent {
11587fbc5a0STejun Heo 	const u8		*commands;
11687fbc5a0STejun Heo 	const unsigned long	*timeouts;
11787fbc5a0STejun Heo };
11887fbc5a0STejun Heo 
11987fbc5a0STejun Heo /* The following table determines timeouts to use for EH internal
12087fbc5a0STejun Heo  * commands.  Each table entry is a command class and matches the
12187fbc5a0STejun Heo  * commands the entry applies to and the timeout table to use.
12287fbc5a0STejun Heo  *
12387fbc5a0STejun Heo  * On the retry after a command timed out, the next timeout value from
12487fbc5a0STejun Heo  * the table is used.  If the table doesn't contain further entries,
12587fbc5a0STejun Heo  * the last value is used.
12687fbc5a0STejun Heo  *
12787fbc5a0STejun Heo  * ehc->cmd_timeout_idx keeps track of which timeout to use per
12887fbc5a0STejun Heo  * command class, so if SET_FEATURES times out on the first try, the
12987fbc5a0STejun Heo  * next try will use the second timeout value only for that class.
13087fbc5a0STejun Heo  */
13187fbc5a0STejun Heo #define CMDS(cmds...)	(const u8 []){ cmds, 0 }
13287fbc5a0STejun Heo static const struct ata_eh_cmd_timeout_ent
13387fbc5a0STejun Heo ata_eh_cmd_timeout_table[ATA_EH_CMD_TIMEOUT_TABLE_SIZE] = {
13487fbc5a0STejun Heo 	{ .commands = CMDS(ATA_CMD_ID_ATA, ATA_CMD_ID_ATAPI),
13587fbc5a0STejun Heo 	  .timeouts = ata_eh_identify_timeouts, },
13687fbc5a0STejun Heo 	{ .commands = CMDS(ATA_CMD_READ_NATIVE_MAX, ATA_CMD_READ_NATIVE_MAX_EXT),
13787fbc5a0STejun Heo 	  .timeouts = ata_eh_other_timeouts, },
13887fbc5a0STejun Heo 	{ .commands = CMDS(ATA_CMD_SET_MAX, ATA_CMD_SET_MAX_EXT),
13987fbc5a0STejun Heo 	  .timeouts = ata_eh_other_timeouts, },
14087fbc5a0STejun Heo 	{ .commands = CMDS(ATA_CMD_SET_FEATURES),
14187fbc5a0STejun Heo 	  .timeouts = ata_eh_other_timeouts, },
14287fbc5a0STejun Heo 	{ .commands = CMDS(ATA_CMD_INIT_DEV_PARAMS),
14387fbc5a0STejun Heo 	  .timeouts = ata_eh_other_timeouts, },
1446013efd8STejun Heo 	{ .commands = CMDS(ATA_CMD_FLUSH, ATA_CMD_FLUSH_EXT),
1456013efd8STejun Heo 	  .timeouts = ata_eh_flush_timeouts },
14687fbc5a0STejun Heo };
14787fbc5a0STejun Heo #undef CMDS
14887fbc5a0STejun Heo 
149c6fd2807SJeff Garzik static void __ata_port_freeze(struct ata_port *ap);
1506ffa01d8STejun Heo #ifdef CONFIG_PM
151c6fd2807SJeff Garzik static void ata_eh_handle_port_suspend(struct ata_port *ap);
152c6fd2807SJeff Garzik static void ata_eh_handle_port_resume(struct ata_port *ap);
1536ffa01d8STejun Heo #else /* CONFIG_PM */
1546ffa01d8STejun Heo static void ata_eh_handle_port_suspend(struct ata_port *ap)
1556ffa01d8STejun Heo { }
1566ffa01d8STejun Heo 
1576ffa01d8STejun Heo static void ata_eh_handle_port_resume(struct ata_port *ap)
1586ffa01d8STejun Heo { }
1596ffa01d8STejun Heo #endif /* CONFIG_PM */
160c6fd2807SJeff Garzik 
1610d74d872SMathieu Malaterre static __printf(2, 0) void __ata_ehi_pushv_desc(struct ata_eh_info *ehi,
1620d74d872SMathieu Malaterre 				 const char *fmt, va_list args)
163b64bbc39STejun Heo {
164b64bbc39STejun Heo 	ehi->desc_len += vscnprintf(ehi->desc + ehi->desc_len,
165b64bbc39STejun Heo 				     ATA_EH_DESC_LEN - ehi->desc_len,
166b64bbc39STejun Heo 				     fmt, args);
167b64bbc39STejun Heo }
168b64bbc39STejun Heo 
169b64bbc39STejun Heo /**
170b64bbc39STejun Heo  *	__ata_ehi_push_desc - push error description without adding separator
171b64bbc39STejun Heo  *	@ehi: target EHI
172b64bbc39STejun Heo  *	@fmt: printf format string
173b64bbc39STejun Heo  *
174b64bbc39STejun Heo  *	Format string according to @fmt and append it to @ehi->desc.
175b64bbc39STejun Heo  *
176b64bbc39STejun Heo  *	LOCKING:
177b64bbc39STejun Heo  *	spin_lock_irqsave(host lock)
178b64bbc39STejun Heo  */
179b64bbc39STejun Heo void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
180b64bbc39STejun Heo {
181b64bbc39STejun Heo 	va_list args;
182b64bbc39STejun Heo 
183b64bbc39STejun Heo 	va_start(args, fmt);
184b64bbc39STejun Heo 	__ata_ehi_pushv_desc(ehi, fmt, args);
185b64bbc39STejun Heo 	va_end(args);
186b64bbc39STejun Heo }
187b64bbc39STejun Heo 
188b64bbc39STejun Heo /**
189b64bbc39STejun Heo  *	ata_ehi_push_desc - push error description with separator
190b64bbc39STejun Heo  *	@ehi: target EHI
191b64bbc39STejun Heo  *	@fmt: printf format string
192b64bbc39STejun Heo  *
193b64bbc39STejun Heo  *	Format string according to @fmt and append it to @ehi->desc.
194b64bbc39STejun Heo  *	If @ehi->desc is not empty, ", " is added in-between.
195b64bbc39STejun Heo  *
196b64bbc39STejun Heo  *	LOCKING:
197b64bbc39STejun Heo  *	spin_lock_irqsave(host lock)
198b64bbc39STejun Heo  */
199b64bbc39STejun Heo void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
200b64bbc39STejun Heo {
201b64bbc39STejun Heo 	va_list args;
202b64bbc39STejun Heo 
203b64bbc39STejun Heo 	if (ehi->desc_len)
204b64bbc39STejun Heo 		__ata_ehi_push_desc(ehi, ", ");
205b64bbc39STejun Heo 
206b64bbc39STejun Heo 	va_start(args, fmt);
207b64bbc39STejun Heo 	__ata_ehi_pushv_desc(ehi, fmt, args);
208b64bbc39STejun Heo 	va_end(args);
209b64bbc39STejun Heo }
210b64bbc39STejun Heo 
211b64bbc39STejun Heo /**
212b64bbc39STejun Heo  *	ata_ehi_clear_desc - clean error description
213b64bbc39STejun Heo  *	@ehi: target EHI
214b64bbc39STejun Heo  *
215b64bbc39STejun Heo  *	Clear @ehi->desc.
216b64bbc39STejun Heo  *
217b64bbc39STejun Heo  *	LOCKING:
218b64bbc39STejun Heo  *	spin_lock_irqsave(host lock)
219b64bbc39STejun Heo  */
220b64bbc39STejun Heo void ata_ehi_clear_desc(struct ata_eh_info *ehi)
221b64bbc39STejun Heo {
222b64bbc39STejun Heo 	ehi->desc[0] = '\0';
223b64bbc39STejun Heo 	ehi->desc_len = 0;
224b64bbc39STejun Heo }
225b64bbc39STejun Heo 
226cbcdd875STejun Heo /**
227cbcdd875STejun Heo  *	ata_port_desc - append port description
228cbcdd875STejun Heo  *	@ap: target ATA port
229cbcdd875STejun Heo  *	@fmt: printf format string
230cbcdd875STejun Heo  *
231cbcdd875STejun Heo  *	Format string according to @fmt and append it to port
232cbcdd875STejun Heo  *	description.  If port description is not empty, " " is added
233cbcdd875STejun Heo  *	in-between.  This function is to be used while initializing
234cbcdd875STejun Heo  *	ata_host.  The description is printed on host registration.
235cbcdd875STejun Heo  *
236cbcdd875STejun Heo  *	LOCKING:
237cbcdd875STejun Heo  *	None.
238cbcdd875STejun Heo  */
239cbcdd875STejun Heo void ata_port_desc(struct ata_port *ap, const char *fmt, ...)
240cbcdd875STejun Heo {
241cbcdd875STejun Heo 	va_list args;
242cbcdd875STejun Heo 
243cbcdd875STejun Heo 	WARN_ON(!(ap->pflags & ATA_PFLAG_INITIALIZING));
244cbcdd875STejun Heo 
245cbcdd875STejun Heo 	if (ap->link.eh_info.desc_len)
246cbcdd875STejun Heo 		__ata_ehi_push_desc(&ap->link.eh_info, " ");
247cbcdd875STejun Heo 
248cbcdd875STejun Heo 	va_start(args, fmt);
249cbcdd875STejun Heo 	__ata_ehi_pushv_desc(&ap->link.eh_info, fmt, args);
250cbcdd875STejun Heo 	va_end(args);
251cbcdd875STejun Heo }
252cbcdd875STejun Heo 
253cbcdd875STejun Heo #ifdef CONFIG_PCI
254cbcdd875STejun Heo 
255cbcdd875STejun Heo /**
256cbcdd875STejun Heo  *	ata_port_pbar_desc - append PCI BAR description
257cbcdd875STejun Heo  *	@ap: target ATA port
258cbcdd875STejun Heo  *	@bar: target PCI BAR
259cbcdd875STejun Heo  *	@offset: offset into PCI BAR
260cbcdd875STejun Heo  *	@name: name of the area
261cbcdd875STejun Heo  *
262cbcdd875STejun Heo  *	If @offset is negative, this function formats a string which
263cbcdd875STejun Heo  *	contains the name, address, size and type of the BAR and
264cbcdd875STejun Heo  *	appends it to the port description.  If @offset is zero or
265cbcdd875STejun Heo  *	positive, only name and offsetted address is appended.
266cbcdd875STejun Heo  *
267cbcdd875STejun Heo  *	LOCKING:
268cbcdd875STejun Heo  *	None.
269cbcdd875STejun Heo  */
270cbcdd875STejun Heo void ata_port_pbar_desc(struct ata_port *ap, int bar, ssize_t offset,
271cbcdd875STejun Heo 			const char *name)
272cbcdd875STejun Heo {
273cbcdd875STejun Heo 	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
274cbcdd875STejun Heo 	char *type = "";
275cbcdd875STejun Heo 	unsigned long long start, len;
276cbcdd875STejun Heo 
277cbcdd875STejun Heo 	if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM)
278cbcdd875STejun Heo 		type = "m";
279cbcdd875STejun Heo 	else if (pci_resource_flags(pdev, bar) & IORESOURCE_IO)
280cbcdd875STejun Heo 		type = "i";
281cbcdd875STejun Heo 
282cbcdd875STejun Heo 	start = (unsigned long long)pci_resource_start(pdev, bar);
283cbcdd875STejun Heo 	len = (unsigned long long)pci_resource_len(pdev, bar);
284cbcdd875STejun Heo 
285cbcdd875STejun Heo 	if (offset < 0)
286cbcdd875STejun Heo 		ata_port_desc(ap, "%s %s%llu@0x%llx", name, type, len, start);
287cbcdd875STejun Heo 	else
288e6a73ab1SAndrew Morton 		ata_port_desc(ap, "%s 0x%llx", name,
289e6a73ab1SAndrew Morton 				start + (unsigned long long)offset);
290cbcdd875STejun Heo }
291cbcdd875STejun Heo 
292cbcdd875STejun Heo #endif /* CONFIG_PCI */
293cbcdd875STejun Heo 
29487fbc5a0STejun Heo static int ata_lookup_timeout_table(u8 cmd)
29587fbc5a0STejun Heo {
29687fbc5a0STejun Heo 	int i;
29787fbc5a0STejun Heo 
29887fbc5a0STejun Heo 	for (i = 0; i < ATA_EH_CMD_TIMEOUT_TABLE_SIZE; i++) {
29987fbc5a0STejun Heo 		const u8 *cur;
30087fbc5a0STejun Heo 
30187fbc5a0STejun Heo 		for (cur = ata_eh_cmd_timeout_table[i].commands; *cur; cur++)
30287fbc5a0STejun Heo 			if (*cur == cmd)
30387fbc5a0STejun Heo 				return i;
30487fbc5a0STejun Heo 	}
30587fbc5a0STejun Heo 
30687fbc5a0STejun Heo 	return -1;
30787fbc5a0STejun Heo }
30887fbc5a0STejun Heo 
30987fbc5a0STejun Heo /**
31087fbc5a0STejun Heo  *	ata_internal_cmd_timeout - determine timeout for an internal command
31187fbc5a0STejun Heo  *	@dev: target device
31287fbc5a0STejun Heo  *	@cmd: internal command to be issued
31387fbc5a0STejun Heo  *
31487fbc5a0STejun Heo  *	Determine timeout for internal command @cmd for @dev.
31587fbc5a0STejun Heo  *
31687fbc5a0STejun Heo  *	LOCKING:
31787fbc5a0STejun Heo  *	EH context.
31887fbc5a0STejun Heo  *
31987fbc5a0STejun Heo  *	RETURNS:
32087fbc5a0STejun Heo  *	Determined timeout.
32187fbc5a0STejun Heo  */
32287fbc5a0STejun Heo unsigned long ata_internal_cmd_timeout(struct ata_device *dev, u8 cmd)
32387fbc5a0STejun Heo {
32487fbc5a0STejun Heo 	struct ata_eh_context *ehc = &dev->link->eh_context;
32587fbc5a0STejun Heo 	int ent = ata_lookup_timeout_table(cmd);
32687fbc5a0STejun Heo 	int idx;
32787fbc5a0STejun Heo 
32887fbc5a0STejun Heo 	if (ent < 0)
32987fbc5a0STejun Heo 		return ATA_EH_CMD_DFL_TIMEOUT;
33087fbc5a0STejun Heo 
33187fbc5a0STejun Heo 	idx = ehc->cmd_timeout_idx[dev->devno][ent];
33287fbc5a0STejun Heo 	return ata_eh_cmd_timeout_table[ent].timeouts[idx];
33387fbc5a0STejun Heo }
33487fbc5a0STejun Heo 
33587fbc5a0STejun Heo /**
33687fbc5a0STejun Heo  *	ata_internal_cmd_timed_out - notification for internal command timeout
33787fbc5a0STejun Heo  *	@dev: target device
33887fbc5a0STejun Heo  *	@cmd: internal command which timed out
33987fbc5a0STejun Heo  *
34087fbc5a0STejun Heo  *	Notify EH that internal command @cmd for @dev timed out.  This
34187fbc5a0STejun Heo  *	function should be called only for commands whose timeouts are
34287fbc5a0STejun Heo  *	determined using ata_internal_cmd_timeout().
34387fbc5a0STejun Heo  *
34487fbc5a0STejun Heo  *	LOCKING:
34587fbc5a0STejun Heo  *	EH context.
34687fbc5a0STejun Heo  */
34787fbc5a0STejun Heo void ata_internal_cmd_timed_out(struct ata_device *dev, u8 cmd)
34887fbc5a0STejun Heo {
34987fbc5a0STejun Heo 	struct ata_eh_context *ehc = &dev->link->eh_context;
35087fbc5a0STejun Heo 	int ent = ata_lookup_timeout_table(cmd);
35187fbc5a0STejun Heo 	int idx;
35287fbc5a0STejun Heo 
35387fbc5a0STejun Heo 	if (ent < 0)
35487fbc5a0STejun Heo 		return;
35587fbc5a0STejun Heo 
35687fbc5a0STejun Heo 	idx = ehc->cmd_timeout_idx[dev->devno][ent];
35787fbc5a0STejun Heo 	if (ata_eh_cmd_timeout_table[ent].timeouts[idx + 1] != ULONG_MAX)
35887fbc5a0STejun Heo 		ehc->cmd_timeout_idx[dev->devno][ent]++;
35987fbc5a0STejun Heo }
36087fbc5a0STejun Heo 
3613884f7b0STejun Heo static void ata_ering_record(struct ata_ering *ering, unsigned int eflags,
362c6fd2807SJeff Garzik 			     unsigned int err_mask)
363c6fd2807SJeff Garzik {
364c6fd2807SJeff Garzik 	struct ata_ering_entry *ent;
365c6fd2807SJeff Garzik 
366c6fd2807SJeff Garzik 	WARN_ON(!err_mask);
367c6fd2807SJeff Garzik 
368c6fd2807SJeff Garzik 	ering->cursor++;
369c6fd2807SJeff Garzik 	ering->cursor %= ATA_ERING_SIZE;
370c6fd2807SJeff Garzik 
371c6fd2807SJeff Garzik 	ent = &ering->ring[ering->cursor];
3723884f7b0STejun Heo 	ent->eflags = eflags;
373c6fd2807SJeff Garzik 	ent->err_mask = err_mask;
374c6fd2807SJeff Garzik 	ent->timestamp = get_jiffies_64();
375c6fd2807SJeff Garzik }
376c6fd2807SJeff Garzik 
37776326ac1STejun Heo static struct ata_ering_entry *ata_ering_top(struct ata_ering *ering)
37876326ac1STejun Heo {
37976326ac1STejun Heo 	struct ata_ering_entry *ent = &ering->ring[ering->cursor];
38076326ac1STejun Heo 
38176326ac1STejun Heo 	if (ent->err_mask)
38276326ac1STejun Heo 		return ent;
38376326ac1STejun Heo 	return NULL;
38476326ac1STejun Heo }
38576326ac1STejun Heo 
386d9027470SGwendal Grignou int ata_ering_map(struct ata_ering *ering,
387c6fd2807SJeff Garzik 		  int (*map_fn)(struct ata_ering_entry *, void *),
388c6fd2807SJeff Garzik 		  void *arg)
389c6fd2807SJeff Garzik {
390c6fd2807SJeff Garzik 	int idx, rc = 0;
391c6fd2807SJeff Garzik 	struct ata_ering_entry *ent;
392c6fd2807SJeff Garzik 
393c6fd2807SJeff Garzik 	idx = ering->cursor;
394c6fd2807SJeff Garzik 	do {
395c6fd2807SJeff Garzik 		ent = &ering->ring[idx];
396c6fd2807SJeff Garzik 		if (!ent->err_mask)
397c6fd2807SJeff Garzik 			break;
398c6fd2807SJeff Garzik 		rc = map_fn(ent, arg);
399c6fd2807SJeff Garzik 		if (rc)
400c6fd2807SJeff Garzik 			break;
401c6fd2807SJeff Garzik 		idx = (idx - 1 + ATA_ERING_SIZE) % ATA_ERING_SIZE;
402c6fd2807SJeff Garzik 	} while (idx != ering->cursor);
403c6fd2807SJeff Garzik 
404c6fd2807SJeff Garzik 	return rc;
405c6fd2807SJeff Garzik }
406c6fd2807SJeff Garzik 
40760428407SH Hartley Sweeten static int ata_ering_clear_cb(struct ata_ering_entry *ent, void *void_arg)
408d9027470SGwendal Grignou {
409d9027470SGwendal Grignou 	ent->eflags |= ATA_EFLAG_OLD_ER;
410d9027470SGwendal Grignou 	return 0;
411d9027470SGwendal Grignou }
412d9027470SGwendal Grignou 
413d9027470SGwendal Grignou static void ata_ering_clear(struct ata_ering *ering)
414d9027470SGwendal Grignou {
415d9027470SGwendal Grignou 	ata_ering_map(ering, ata_ering_clear_cb, NULL);
416d9027470SGwendal Grignou }
417d9027470SGwendal Grignou 
418c6fd2807SJeff Garzik static unsigned int ata_eh_dev_action(struct ata_device *dev)
419c6fd2807SJeff Garzik {
4209af5c9c9STejun Heo 	struct ata_eh_context *ehc = &dev->link->eh_context;
421c6fd2807SJeff Garzik 
422c6fd2807SJeff Garzik 	return ehc->i.action | ehc->i.dev_action[dev->devno];
423c6fd2807SJeff Garzik }
424c6fd2807SJeff Garzik 
425f58229f8STejun Heo static void ata_eh_clear_action(struct ata_link *link, struct ata_device *dev,
426c6fd2807SJeff Garzik 				struct ata_eh_info *ehi, unsigned int action)
427c6fd2807SJeff Garzik {
428f58229f8STejun Heo 	struct ata_device *tdev;
429c6fd2807SJeff Garzik 
430c6fd2807SJeff Garzik 	if (!dev) {
431c6fd2807SJeff Garzik 		ehi->action &= ~action;
4321eca4365STejun Heo 		ata_for_each_dev(tdev, link, ALL)
433f58229f8STejun Heo 			ehi->dev_action[tdev->devno] &= ~action;
434c6fd2807SJeff Garzik 	} else {
435c6fd2807SJeff Garzik 		/* doesn't make sense for port-wide EH actions */
436c6fd2807SJeff Garzik 		WARN_ON(!(action & ATA_EH_PERDEV_MASK));
437c6fd2807SJeff Garzik 
438c6fd2807SJeff Garzik 		/* break ehi->action into ehi->dev_action */
439c6fd2807SJeff Garzik 		if (ehi->action & action) {
4401eca4365STejun Heo 			ata_for_each_dev(tdev, link, ALL)
441f58229f8STejun Heo 				ehi->dev_action[tdev->devno] |=
442f58229f8STejun Heo 					ehi->action & action;
443c6fd2807SJeff Garzik 			ehi->action &= ~action;
444c6fd2807SJeff Garzik 		}
445c6fd2807SJeff Garzik 
446c6fd2807SJeff Garzik 		/* turn off the specified per-dev action */
447c6fd2807SJeff Garzik 		ehi->dev_action[dev->devno] &= ~action;
448c6fd2807SJeff Garzik 	}
449c6fd2807SJeff Garzik }
450c6fd2807SJeff Garzik 
451c6fd2807SJeff Garzik /**
452c0c362b6STejun Heo  *	ata_eh_acquire - acquire EH ownership
453c0c362b6STejun Heo  *	@ap: ATA port to acquire EH ownership for
454c0c362b6STejun Heo  *
455c0c362b6STejun Heo  *	Acquire EH ownership for @ap.  This is the basic exclusion
456c0c362b6STejun Heo  *	mechanism for ports sharing a host.  Only one port hanging off
457c0c362b6STejun Heo  *	the same host can claim the ownership of EH.
458c0c362b6STejun Heo  *
459c0c362b6STejun Heo  *	LOCKING:
460c0c362b6STejun Heo  *	EH context.
461c0c362b6STejun Heo  */
462c0c362b6STejun Heo void ata_eh_acquire(struct ata_port *ap)
463c0c362b6STejun Heo {
464c0c362b6STejun Heo 	mutex_lock(&ap->host->eh_mutex);
465c0c362b6STejun Heo 	WARN_ON_ONCE(ap->host->eh_owner);
466c0c362b6STejun Heo 	ap->host->eh_owner = current;
467c0c362b6STejun Heo }
468c0c362b6STejun Heo 
469c0c362b6STejun Heo /**
470c0c362b6STejun Heo  *	ata_eh_release - release EH ownership
471c0c362b6STejun Heo  *	@ap: ATA port to release EH ownership for
472c0c362b6STejun Heo  *
473c0c362b6STejun Heo  *	Release EH ownership for @ap if the caller.  The caller must
474c0c362b6STejun Heo  *	have acquired EH ownership using ata_eh_acquire() previously.
475c0c362b6STejun Heo  *
476c0c362b6STejun Heo  *	LOCKING:
477c0c362b6STejun Heo  *	EH context.
478c0c362b6STejun Heo  */
479c0c362b6STejun Heo void ata_eh_release(struct ata_port *ap)
480c0c362b6STejun Heo {
481c0c362b6STejun Heo 	WARN_ON_ONCE(ap->host->eh_owner != current);
482c0c362b6STejun Heo 	ap->host->eh_owner = NULL;
483c0c362b6STejun Heo 	mutex_unlock(&ap->host->eh_mutex);
484c0c362b6STejun Heo }
485c0c362b6STejun Heo 
486ece180d1STejun Heo static void ata_eh_unload(struct ata_port *ap)
487ece180d1STejun Heo {
488ece180d1STejun Heo 	struct ata_link *link;
489ece180d1STejun Heo 	struct ata_device *dev;
490ece180d1STejun Heo 	unsigned long flags;
491ece180d1STejun Heo 
492ece180d1STejun Heo 	/* Restore SControl IPM and SPD for the next driver and
493ece180d1STejun Heo 	 * disable attached devices.
494ece180d1STejun Heo 	 */
495ece180d1STejun Heo 	ata_for_each_link(link, ap, PMP_FIRST) {
496ece180d1STejun Heo 		sata_scr_write(link, SCR_CONTROL, link->saved_scontrol & 0xff0);
497ece180d1STejun Heo 		ata_for_each_dev(dev, link, ALL)
498ece180d1STejun Heo 			ata_dev_disable(dev);
499ece180d1STejun Heo 	}
500ece180d1STejun Heo 
501ece180d1STejun Heo 	/* freeze and set UNLOADED */
502ece180d1STejun Heo 	spin_lock_irqsave(ap->lock, flags);
503ece180d1STejun Heo 
504ece180d1STejun Heo 	ata_port_freeze(ap);			/* won't be thawed */
505ece180d1STejun Heo 	ap->pflags &= ~ATA_PFLAG_EH_PENDING;	/* clear pending from freeze */
506ece180d1STejun Heo 	ap->pflags |= ATA_PFLAG_UNLOADED;
507ece180d1STejun Heo 
508ece180d1STejun Heo 	spin_unlock_irqrestore(ap->lock, flags);
509ece180d1STejun Heo }
510ece180d1STejun Heo 
511c6fd2807SJeff Garzik /**
512c6fd2807SJeff Garzik  *	ata_scsi_error - SCSI layer error handler callback
513c6fd2807SJeff Garzik  *	@host: SCSI host on which error occurred
514c6fd2807SJeff Garzik  *
515c6fd2807SJeff Garzik  *	Handles SCSI-layer-thrown error events.
516c6fd2807SJeff Garzik  *
517c6fd2807SJeff Garzik  *	LOCKING:
518c6fd2807SJeff Garzik  *	Inherited from SCSI layer (none, can sleep)
519c6fd2807SJeff Garzik  *
520c6fd2807SJeff Garzik  *	RETURNS:
521c6fd2807SJeff Garzik  *	Zero.
522c6fd2807SJeff Garzik  */
523c6fd2807SJeff Garzik void ata_scsi_error(struct Scsi_Host *host)
524c6fd2807SJeff Garzik {
525c6fd2807SJeff Garzik 	struct ata_port *ap = ata_shost_to_port(host);
526c6fd2807SJeff Garzik 	unsigned long flags;
527c34aeebcSJames Bottomley 	LIST_HEAD(eh_work_q);
528c6fd2807SJeff Garzik 
529c6fd2807SJeff Garzik 	DPRINTK("ENTER\n");
530c6fd2807SJeff Garzik 
531c34aeebcSJames Bottomley 	spin_lock_irqsave(host->host_lock, flags);
532c34aeebcSJames Bottomley 	list_splice_init(&host->eh_cmd_q, &eh_work_q);
533c34aeebcSJames Bottomley 	spin_unlock_irqrestore(host->host_lock, flags);
534c34aeebcSJames Bottomley 
5350e0b494cSJames Bottomley 	ata_scsi_cmd_error_handler(host, ap, &eh_work_q);
5360e0b494cSJames Bottomley 
5370e0b494cSJames Bottomley 	/* If we timed raced normal completion and there is nothing to
5380e0b494cSJames Bottomley 	   recover nr_timedout == 0 why exactly are we doing error recovery ? */
5390e0b494cSJames Bottomley 	ata_scsi_port_error_handler(host, ap);
5400e0b494cSJames Bottomley 
5410e0b494cSJames Bottomley 	/* finish or retry handled scmd's and clean up */
54272d8c36eSWei Fang 	WARN_ON(!list_empty(&eh_work_q));
5430e0b494cSJames Bottomley 
5440e0b494cSJames Bottomley 	DPRINTK("EXIT\n");
5450e0b494cSJames Bottomley }
5460e0b494cSJames Bottomley 
5470e0b494cSJames Bottomley /**
5480e0b494cSJames Bottomley  * ata_scsi_cmd_error_handler - error callback for a list of commands
5490e0b494cSJames Bottomley  * @host:	scsi host containing the port
5500e0b494cSJames Bottomley  * @ap:		ATA port within the host
5510e0b494cSJames Bottomley  * @eh_work_q:	list of commands to process
5520e0b494cSJames Bottomley  *
5530e0b494cSJames Bottomley  * process the given list of commands and return those finished to the
5540e0b494cSJames Bottomley  * ap->eh_done_q.  This function is the first part of the libata error
5550e0b494cSJames Bottomley  * handler which processes a given list of failed commands.
5560e0b494cSJames Bottomley  */
5570e0b494cSJames Bottomley void ata_scsi_cmd_error_handler(struct Scsi_Host *host, struct ata_port *ap,
5580e0b494cSJames Bottomley 				struct list_head *eh_work_q)
5590e0b494cSJames Bottomley {
5600e0b494cSJames Bottomley 	int i;
5610e0b494cSJames Bottomley 	unsigned long flags;
5620e0b494cSJames Bottomley 
563c429137aSTejun Heo 	/* make sure sff pio task is not running */
564c429137aSTejun Heo 	ata_sff_flush_pio_task(ap);
565c6fd2807SJeff Garzik 
566cca3974eSJeff Garzik 	/* synchronize with host lock and sort out timeouts */
567c6fd2807SJeff Garzik 
568c6fd2807SJeff Garzik 	/* For new EH, all qcs are finished in one of three ways -
569c6fd2807SJeff Garzik 	 * normal completion, error completion, and SCSI timeout.
570c96f1732SAlan Cox 	 * Both completions can race against SCSI timeout.  When normal
571c6fd2807SJeff Garzik 	 * completion wins, the qc never reaches EH.  When error
572c6fd2807SJeff Garzik 	 * completion wins, the qc has ATA_QCFLAG_FAILED set.
573c6fd2807SJeff Garzik 	 *
574c6fd2807SJeff Garzik 	 * When SCSI timeout wins, things are a bit more complex.
575c6fd2807SJeff Garzik 	 * Normal or error completion can occur after the timeout but
576c6fd2807SJeff Garzik 	 * before this point.  In such cases, both types of
577c6fd2807SJeff Garzik 	 * completions are honored.  A scmd is determined to have
578c6fd2807SJeff Garzik 	 * timed out iff its associated qc is active and not failed.
579c6fd2807SJeff Garzik 	 */
580a4f08141SPaul E. McKenney 	spin_lock_irqsave(ap->lock, flags);
581c6fd2807SJeff Garzik 	if (ap->ops->error_handler) {
582c6fd2807SJeff Garzik 		struct scsi_cmnd *scmd, *tmp;
583c6fd2807SJeff Garzik 		int nr_timedout = 0;
584c6fd2807SJeff Garzik 
585c96f1732SAlan Cox 		/* This must occur under the ap->lock as we don't want
586c96f1732SAlan Cox 		   a polled recovery to race the real interrupt handler
587c96f1732SAlan Cox 
588c96f1732SAlan Cox 		   The lost_interrupt handler checks for any completed but
589c96f1732SAlan Cox 		   non-notified command and completes much like an IRQ handler.
590c96f1732SAlan Cox 
591c96f1732SAlan Cox 		   We then fall into the error recovery code which will treat
592c96f1732SAlan Cox 		   this as if normal completion won the race */
593c96f1732SAlan Cox 
594c96f1732SAlan Cox 		if (ap->ops->lost_interrupt)
595c96f1732SAlan Cox 			ap->ops->lost_interrupt(ap);
596c96f1732SAlan Cox 
5970e0b494cSJames Bottomley 		list_for_each_entry_safe(scmd, tmp, eh_work_q, eh_entry) {
598c6fd2807SJeff Garzik 			struct ata_queued_cmd *qc;
599c6fd2807SJeff Garzik 
600258c4e5cSJens Axboe 			ata_qc_for_each_raw(ap, qc, i) {
601c6fd2807SJeff Garzik 				if (qc->flags & ATA_QCFLAG_ACTIVE &&
602c6fd2807SJeff Garzik 				    qc->scsicmd == scmd)
603c6fd2807SJeff Garzik 					break;
604c6fd2807SJeff Garzik 			}
605c6fd2807SJeff Garzik 
606c6fd2807SJeff Garzik 			if (i < ATA_MAX_QUEUE) {
607c6fd2807SJeff Garzik 				/* the scmd has an associated qc */
608c6fd2807SJeff Garzik 				if (!(qc->flags & ATA_QCFLAG_FAILED)) {
609c6fd2807SJeff Garzik 					/* which hasn't failed yet, timeout */
610c6fd2807SJeff Garzik 					qc->err_mask |= AC_ERR_TIMEOUT;
611c6fd2807SJeff Garzik 					qc->flags |= ATA_QCFLAG_FAILED;
612c6fd2807SJeff Garzik 					nr_timedout++;
613c6fd2807SJeff Garzik 				}
614c6fd2807SJeff Garzik 			} else {
615c6fd2807SJeff Garzik 				/* Normal completion occurred after
616c6fd2807SJeff Garzik 				 * SCSI timeout but before this point.
617c6fd2807SJeff Garzik 				 * Successfully complete it.
618c6fd2807SJeff Garzik 				 */
619c6fd2807SJeff Garzik 				scmd->retries = scmd->allowed;
620c6fd2807SJeff Garzik 				scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
621c6fd2807SJeff Garzik 			}
622c6fd2807SJeff Garzik 		}
623c6fd2807SJeff Garzik 
624c6fd2807SJeff Garzik 		/* If we have timed out qcs.  They belong to EH from
625c6fd2807SJeff Garzik 		 * this point but the state of the controller is
626c6fd2807SJeff Garzik 		 * unknown.  Freeze the port to make sure the IRQ
627c6fd2807SJeff Garzik 		 * handler doesn't diddle with those qcs.  This must
628c6fd2807SJeff Garzik 		 * be done atomically w.r.t. setting QCFLAG_FAILED.
629c6fd2807SJeff Garzik 		 */
630c6fd2807SJeff Garzik 		if (nr_timedout)
631c6fd2807SJeff Garzik 			__ata_port_freeze(ap);
632c6fd2807SJeff Garzik 
633a1e10f7eSTejun Heo 
634a1e10f7eSTejun Heo 		/* initialize eh_tries */
635a1e10f7eSTejun Heo 		ap->eh_tries = ATA_EH_MAX_TRIES;
636a4f08141SPaul E. McKenney 	}
637a4f08141SPaul E. McKenney 	spin_unlock_irqrestore(ap->lock, flags);
638c6fd2807SJeff Garzik 
6390e0b494cSJames Bottomley }
6400e0b494cSJames Bottomley EXPORT_SYMBOL(ata_scsi_cmd_error_handler);
6410e0b494cSJames Bottomley 
6420e0b494cSJames Bottomley /**
6430e0b494cSJames Bottomley  * ata_scsi_port_error_handler - recover the port after the commands
6440e0b494cSJames Bottomley  * @host:	SCSI host containing the port
6450e0b494cSJames Bottomley  * @ap:		the ATA port
6460e0b494cSJames Bottomley  *
6470e0b494cSJames Bottomley  * Handle the recovery of the port @ap after all the commands
6480e0b494cSJames Bottomley  * have been recovered.
6490e0b494cSJames Bottomley  */
6500e0b494cSJames Bottomley void ata_scsi_port_error_handler(struct Scsi_Host *host, struct ata_port *ap)
6510e0b494cSJames Bottomley {
6520e0b494cSJames Bottomley 	unsigned long flags;
653c96f1732SAlan Cox 
654c6fd2807SJeff Garzik 	/* invoke error handler */
655c6fd2807SJeff Garzik 	if (ap->ops->error_handler) {
656cf1b86c8STejun Heo 		struct ata_link *link;
657cf1b86c8STejun Heo 
658c0c362b6STejun Heo 		/* acquire EH ownership */
659c0c362b6STejun Heo 		ata_eh_acquire(ap);
660c0c362b6STejun Heo  repeat:
6615ddf24c5STejun Heo 		/* kill fast drain timer */
6625ddf24c5STejun Heo 		del_timer_sync(&ap->fastdrain_timer);
6635ddf24c5STejun Heo 
664c6fd2807SJeff Garzik 		/* process port resume request */
665c6fd2807SJeff Garzik 		ata_eh_handle_port_resume(ap);
666c6fd2807SJeff Garzik 
667c6fd2807SJeff Garzik 		/* fetch & clear EH info */
668c6fd2807SJeff Garzik 		spin_lock_irqsave(ap->lock, flags);
669c6fd2807SJeff Garzik 
6701eca4365STejun Heo 		ata_for_each_link(link, ap, HOST_FIRST) {
67100115e0fSTejun Heo 			struct ata_eh_context *ehc = &link->eh_context;
67200115e0fSTejun Heo 			struct ata_device *dev;
67300115e0fSTejun Heo 
674cf1b86c8STejun Heo 			memset(&link->eh_context, 0, sizeof(link->eh_context));
675cf1b86c8STejun Heo 			link->eh_context.i = link->eh_info;
676cf1b86c8STejun Heo 			memset(&link->eh_info, 0, sizeof(link->eh_info));
67700115e0fSTejun Heo 
6781eca4365STejun Heo 			ata_for_each_dev(dev, link, ENABLED) {
67900115e0fSTejun Heo 				int devno = dev->devno;
68000115e0fSTejun Heo 
68100115e0fSTejun Heo 				ehc->saved_xfer_mode[devno] = dev->xfer_mode;
68200115e0fSTejun Heo 				if (ata_ncq_enabled(dev))
68300115e0fSTejun Heo 					ehc->saved_ncq_enabled |= 1 << devno;
68400115e0fSTejun Heo 			}
685cf1b86c8STejun Heo 		}
686c6fd2807SJeff Garzik 
687c6fd2807SJeff Garzik 		ap->pflags |= ATA_PFLAG_EH_IN_PROGRESS;
688c6fd2807SJeff Garzik 		ap->pflags &= ~ATA_PFLAG_EH_PENDING;
689da917d69STejun Heo 		ap->excl_link = NULL;	/* don't maintain exclusion over EH */
690c6fd2807SJeff Garzik 
691c6fd2807SJeff Garzik 		spin_unlock_irqrestore(ap->lock, flags);
692c6fd2807SJeff Garzik 
693c6fd2807SJeff Garzik 		/* invoke EH, skip if unloading or suspended */
694c6fd2807SJeff Garzik 		if (!(ap->pflags & (ATA_PFLAG_UNLOADING | ATA_PFLAG_SUSPENDED)))
695c6fd2807SJeff Garzik 			ap->ops->error_handler(ap);
696ece180d1STejun Heo 		else {
697ece180d1STejun Heo 			/* if unloading, commence suicide */
698ece180d1STejun Heo 			if ((ap->pflags & ATA_PFLAG_UNLOADING) &&
699ece180d1STejun Heo 			    !(ap->pflags & ATA_PFLAG_UNLOADED))
700ece180d1STejun Heo 				ata_eh_unload(ap);
701c6fd2807SJeff Garzik 			ata_eh_finish(ap);
702ece180d1STejun Heo 		}
703c6fd2807SJeff Garzik 
704c6fd2807SJeff Garzik 		/* process port suspend request */
705c6fd2807SJeff Garzik 		ata_eh_handle_port_suspend(ap);
706c6fd2807SJeff Garzik 
70725985edcSLucas De Marchi 		/* Exception might have happened after ->error_handler
708c6fd2807SJeff Garzik 		 * recovered the port but before this point.  Repeat
709c6fd2807SJeff Garzik 		 * EH in such case.
710c6fd2807SJeff Garzik 		 */
711c6fd2807SJeff Garzik 		spin_lock_irqsave(ap->lock, flags);
712c6fd2807SJeff Garzik 
713c6fd2807SJeff Garzik 		if (ap->pflags & ATA_PFLAG_EH_PENDING) {
714a1e10f7eSTejun Heo 			if (--ap->eh_tries) {
715c6fd2807SJeff Garzik 				spin_unlock_irqrestore(ap->lock, flags);
716c6fd2807SJeff Garzik 				goto repeat;
717c6fd2807SJeff Garzik 			}
718a9a79dfeSJoe Perches 			ata_port_err(ap,
719a9a79dfeSJoe Perches 				     "EH pending after %d tries, giving up\n",
720a9a79dfeSJoe Perches 				     ATA_EH_MAX_TRIES);
721914616a3STejun Heo 			ap->pflags &= ~ATA_PFLAG_EH_PENDING;
722c6fd2807SJeff Garzik 		}
723c6fd2807SJeff Garzik 
724c6fd2807SJeff Garzik 		/* this run is complete, make sure EH info is clear */
7251eca4365STejun Heo 		ata_for_each_link(link, ap, HOST_FIRST)
726cf1b86c8STejun Heo 			memset(&link->eh_info, 0, sizeof(link->eh_info));
727c6fd2807SJeff Garzik 
728e4a9c373SDan Williams 		/* end eh (clear host_eh_scheduled) while holding
729e4a9c373SDan Williams 		 * ap->lock such that if exception occurs after this
730e4a9c373SDan Williams 		 * point but before EH completion, SCSI midlayer will
731c6fd2807SJeff Garzik 		 * re-initiate EH.
732c6fd2807SJeff Garzik 		 */
733e4a9c373SDan Williams 		ap->ops->end_eh(ap);
734c6fd2807SJeff Garzik 
735c6fd2807SJeff Garzik 		spin_unlock_irqrestore(ap->lock, flags);
736c0c362b6STejun Heo 		ata_eh_release(ap);
737c6fd2807SJeff Garzik 	} else {
7389af5c9c9STejun Heo 		WARN_ON(ata_qc_from_tag(ap, ap->link.active_tag) == NULL);
739c6fd2807SJeff Garzik 		ap->ops->eng_timeout(ap);
740c6fd2807SJeff Garzik 	}
741c6fd2807SJeff Garzik 
742c6fd2807SJeff Garzik 	scsi_eh_flush_done_q(&ap->eh_done_q);
743c6fd2807SJeff Garzik 
744c6fd2807SJeff Garzik 	/* clean up */
745c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
746c6fd2807SJeff Garzik 
747c6fd2807SJeff Garzik 	if (ap->pflags & ATA_PFLAG_LOADING)
748c6fd2807SJeff Garzik 		ap->pflags &= ~ATA_PFLAG_LOADING;
7496f54120eSJason Yan 	else if ((ap->pflags & ATA_PFLAG_SCSI_HOTPLUG) &&
7506f54120eSJason Yan 		!(ap->flags & ATA_FLAG_SAS_HOST))
751ad72cf98STejun Heo 		schedule_delayed_work(&ap->hotplug_task, 0);
752c6fd2807SJeff Garzik 
753c6fd2807SJeff Garzik 	if (ap->pflags & ATA_PFLAG_RECOVERED)
754a9a79dfeSJoe Perches 		ata_port_info(ap, "EH complete\n");
755c6fd2807SJeff Garzik 
756c6fd2807SJeff Garzik 	ap->pflags &= ~(ATA_PFLAG_SCSI_HOTPLUG | ATA_PFLAG_RECOVERED);
757c6fd2807SJeff Garzik 
758c6fd2807SJeff Garzik 	/* tell wait_eh that we're done */
759c6fd2807SJeff Garzik 	ap->pflags &= ~ATA_PFLAG_EH_IN_PROGRESS;
760c6fd2807SJeff Garzik 	wake_up_all(&ap->eh_wait_q);
761c6fd2807SJeff Garzik 
762c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
763c6fd2807SJeff Garzik }
7640e0b494cSJames Bottomley EXPORT_SYMBOL_GPL(ata_scsi_port_error_handler);
765c6fd2807SJeff Garzik 
766c6fd2807SJeff Garzik /**
767c6fd2807SJeff Garzik  *	ata_port_wait_eh - Wait for the currently pending EH to complete
768c6fd2807SJeff Garzik  *	@ap: Port to wait EH for
769c6fd2807SJeff Garzik  *
770c6fd2807SJeff Garzik  *	Wait until the currently pending EH is complete.
771c6fd2807SJeff Garzik  *
772c6fd2807SJeff Garzik  *	LOCKING:
773c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
774c6fd2807SJeff Garzik  */
775c6fd2807SJeff Garzik void ata_port_wait_eh(struct ata_port *ap)
776c6fd2807SJeff Garzik {
777c6fd2807SJeff Garzik 	unsigned long flags;
778c6fd2807SJeff Garzik 	DEFINE_WAIT(wait);
779c6fd2807SJeff Garzik 
780c6fd2807SJeff Garzik  retry:
781c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
782c6fd2807SJeff Garzik 
783c6fd2807SJeff Garzik 	while (ap->pflags & (ATA_PFLAG_EH_PENDING | ATA_PFLAG_EH_IN_PROGRESS)) {
784c6fd2807SJeff Garzik 		prepare_to_wait(&ap->eh_wait_q, &wait, TASK_UNINTERRUPTIBLE);
785c6fd2807SJeff Garzik 		spin_unlock_irqrestore(ap->lock, flags);
786c6fd2807SJeff Garzik 		schedule();
787c6fd2807SJeff Garzik 		spin_lock_irqsave(ap->lock, flags);
788c6fd2807SJeff Garzik 	}
789c6fd2807SJeff Garzik 	finish_wait(&ap->eh_wait_q, &wait);
790c6fd2807SJeff Garzik 
791c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
792c6fd2807SJeff Garzik 
793c6fd2807SJeff Garzik 	/* make sure SCSI EH is complete */
794cca3974eSJeff Garzik 	if (scsi_host_in_recovery(ap->scsi_host)) {
79597750cebSTejun Heo 		ata_msleep(ap, 10);
796c6fd2807SJeff Garzik 		goto retry;
797c6fd2807SJeff Garzik 	}
798c6fd2807SJeff Garzik }
79981c757bcSDan Williams EXPORT_SYMBOL_GPL(ata_port_wait_eh);
800c6fd2807SJeff Garzik 
8015ddf24c5STejun Heo static int ata_eh_nr_in_flight(struct ata_port *ap)
8025ddf24c5STejun Heo {
803258c4e5cSJens Axboe 	struct ata_queued_cmd *qc;
8045ddf24c5STejun Heo 	unsigned int tag;
8055ddf24c5STejun Heo 	int nr = 0;
8065ddf24c5STejun Heo 
8075ddf24c5STejun Heo 	/* count only non-internal commands */
808258c4e5cSJens Axboe 	ata_qc_for_each(ap, qc, tag) {
809258c4e5cSJens Axboe 		if (qc)
8105ddf24c5STejun Heo 			nr++;
8119d207accSJens Axboe 	}
8125ddf24c5STejun Heo 
8135ddf24c5STejun Heo 	return nr;
8145ddf24c5STejun Heo }
8155ddf24c5STejun Heo 
816b93ab338SKees Cook void ata_eh_fastdrain_timerfn(struct timer_list *t)
8175ddf24c5STejun Heo {
818b93ab338SKees Cook 	struct ata_port *ap = from_timer(ap, t, fastdrain_timer);
8195ddf24c5STejun Heo 	unsigned long flags;
8205ddf24c5STejun Heo 	int cnt;
8215ddf24c5STejun Heo 
8225ddf24c5STejun Heo 	spin_lock_irqsave(ap->lock, flags);
8235ddf24c5STejun Heo 
8245ddf24c5STejun Heo 	cnt = ata_eh_nr_in_flight(ap);
8255ddf24c5STejun Heo 
8265ddf24c5STejun Heo 	/* are we done? */
8275ddf24c5STejun Heo 	if (!cnt)
8285ddf24c5STejun Heo 		goto out_unlock;
8295ddf24c5STejun Heo 
8305ddf24c5STejun Heo 	if (cnt == ap->fastdrain_cnt) {
831258c4e5cSJens Axboe 		struct ata_queued_cmd *qc;
8325ddf24c5STejun Heo 		unsigned int tag;
8335ddf24c5STejun Heo 
8345ddf24c5STejun Heo 		/* No progress during the last interval, tag all
8355ddf24c5STejun Heo 		 * in-flight qcs as timed out and freeze the port.
8365ddf24c5STejun Heo 		 */
837258c4e5cSJens Axboe 		ata_qc_for_each(ap, qc, tag) {
8385ddf24c5STejun Heo 			if (qc)
8395ddf24c5STejun Heo 				qc->err_mask |= AC_ERR_TIMEOUT;
8405ddf24c5STejun Heo 		}
8415ddf24c5STejun Heo 
8425ddf24c5STejun Heo 		ata_port_freeze(ap);
8435ddf24c5STejun Heo 	} else {
8445ddf24c5STejun Heo 		/* some qcs have finished, give it another chance */
8455ddf24c5STejun Heo 		ap->fastdrain_cnt = cnt;
8465ddf24c5STejun Heo 		ap->fastdrain_timer.expires =
847341c2c95STejun Heo 			ata_deadline(jiffies, ATA_EH_FASTDRAIN_INTERVAL);
8485ddf24c5STejun Heo 		add_timer(&ap->fastdrain_timer);
8495ddf24c5STejun Heo 	}
8505ddf24c5STejun Heo 
8515ddf24c5STejun Heo  out_unlock:
8525ddf24c5STejun Heo 	spin_unlock_irqrestore(ap->lock, flags);
8535ddf24c5STejun Heo }
8545ddf24c5STejun Heo 
8555ddf24c5STejun Heo /**
8565ddf24c5STejun Heo  *	ata_eh_set_pending - set ATA_PFLAG_EH_PENDING and activate fast drain
8575ddf24c5STejun Heo  *	@ap: target ATA port
8585ddf24c5STejun Heo  *	@fastdrain: activate fast drain
8595ddf24c5STejun Heo  *
8605ddf24c5STejun Heo  *	Set ATA_PFLAG_EH_PENDING and activate fast drain if @fastdrain
8615ddf24c5STejun Heo  *	is non-zero and EH wasn't pending before.  Fast drain ensures
8625ddf24c5STejun Heo  *	that EH kicks in in timely manner.
8635ddf24c5STejun Heo  *
8645ddf24c5STejun Heo  *	LOCKING:
8655ddf24c5STejun Heo  *	spin_lock_irqsave(host lock)
8665ddf24c5STejun Heo  */
8675ddf24c5STejun Heo static void ata_eh_set_pending(struct ata_port *ap, int fastdrain)
8685ddf24c5STejun Heo {
8695ddf24c5STejun Heo 	int cnt;
8705ddf24c5STejun Heo 
8715ddf24c5STejun Heo 	/* already scheduled? */
8725ddf24c5STejun Heo 	if (ap->pflags & ATA_PFLAG_EH_PENDING)
8735ddf24c5STejun Heo 		return;
8745ddf24c5STejun Heo 
8755ddf24c5STejun Heo 	ap->pflags |= ATA_PFLAG_EH_PENDING;
8765ddf24c5STejun Heo 
8775ddf24c5STejun Heo 	if (!fastdrain)
8785ddf24c5STejun Heo 		return;
8795ddf24c5STejun Heo 
8805ddf24c5STejun Heo 	/* do we have in-flight qcs? */
8815ddf24c5STejun Heo 	cnt = ata_eh_nr_in_flight(ap);
8825ddf24c5STejun Heo 	if (!cnt)
8835ddf24c5STejun Heo 		return;
8845ddf24c5STejun Heo 
8855ddf24c5STejun Heo 	/* activate fast drain */
8865ddf24c5STejun Heo 	ap->fastdrain_cnt = cnt;
887341c2c95STejun Heo 	ap->fastdrain_timer.expires =
888341c2c95STejun Heo 		ata_deadline(jiffies, ATA_EH_FASTDRAIN_INTERVAL);
8895ddf24c5STejun Heo 	add_timer(&ap->fastdrain_timer);
8905ddf24c5STejun Heo }
8915ddf24c5STejun Heo 
892c6fd2807SJeff Garzik /**
893c6fd2807SJeff Garzik  *	ata_qc_schedule_eh - schedule qc for error handling
894c6fd2807SJeff Garzik  *	@qc: command to schedule error handling for
895c6fd2807SJeff Garzik  *
896c6fd2807SJeff Garzik  *	Schedule error handling for @qc.  EH will kick in as soon as
897c6fd2807SJeff Garzik  *	other commands are drained.
898c6fd2807SJeff Garzik  *
899c6fd2807SJeff Garzik  *	LOCKING:
900cca3974eSJeff Garzik  *	spin_lock_irqsave(host lock)
901c6fd2807SJeff Garzik  */
902c6fd2807SJeff Garzik void ata_qc_schedule_eh(struct ata_queued_cmd *qc)
903c6fd2807SJeff Garzik {
904c6fd2807SJeff Garzik 	struct ata_port *ap = qc->ap;
905c6fd2807SJeff Garzik 
906c6fd2807SJeff Garzik 	WARN_ON(!ap->ops->error_handler);
907c6fd2807SJeff Garzik 
908c6fd2807SJeff Garzik 	qc->flags |= ATA_QCFLAG_FAILED;
9095ddf24c5STejun Heo 	ata_eh_set_pending(ap, 1);
910c6fd2807SJeff Garzik 
911c6fd2807SJeff Garzik 	/* The following will fail if timeout has already expired.
912c6fd2807SJeff Garzik 	 * ata_scsi_error() takes care of such scmds on EH entry.
913c6fd2807SJeff Garzik 	 * Note that ATA_QCFLAG_FAILED is unconditionally set after
914c6fd2807SJeff Garzik 	 * this function completes.
915c6fd2807SJeff Garzik 	 */
916242f9dcbSJens Axboe 	blk_abort_request(qc->scsicmd->request);
917c6fd2807SJeff Garzik }
918c6fd2807SJeff Garzik 
919c6fd2807SJeff Garzik /**
920e4a9c373SDan Williams  * ata_std_sched_eh - non-libsas ata_ports issue eh with this common routine
921e4a9c373SDan Williams  * @ap: ATA port to schedule EH for
922e4a9c373SDan Williams  *
923e4a9c373SDan Williams  *	LOCKING: inherited from ata_port_schedule_eh
924e4a9c373SDan Williams  *	spin_lock_irqsave(host lock)
925e4a9c373SDan Williams  */
926e4a9c373SDan Williams void ata_std_sched_eh(struct ata_port *ap)
927e4a9c373SDan Williams {
928e4a9c373SDan Williams 	WARN_ON(!ap->ops->error_handler);
929e4a9c373SDan Williams 
930e4a9c373SDan Williams 	if (ap->pflags & ATA_PFLAG_INITIALIZING)
931e4a9c373SDan Williams 		return;
932e4a9c373SDan Williams 
933e4a9c373SDan Williams 	ata_eh_set_pending(ap, 1);
934e4a9c373SDan Williams 	scsi_schedule_eh(ap->scsi_host);
935e4a9c373SDan Williams 
936e4a9c373SDan Williams 	DPRINTK("port EH scheduled\n");
937e4a9c373SDan Williams }
938e4a9c373SDan Williams EXPORT_SYMBOL_GPL(ata_std_sched_eh);
939e4a9c373SDan Williams 
940e4a9c373SDan Williams /**
941e4a9c373SDan Williams  * ata_std_end_eh - non-libsas ata_ports complete eh with this common routine
942e4a9c373SDan Williams  * @ap: ATA port to end EH for
943e4a9c373SDan Williams  *
944e4a9c373SDan Williams  * In the libata object model there is a 1:1 mapping of ata_port to
945e4a9c373SDan Williams  * shost, so host fields can be directly manipulated under ap->lock, in
946e4a9c373SDan Williams  * the libsas case we need to hold a lock at the ha->level to coordinate
947e4a9c373SDan Williams  * these events.
948e4a9c373SDan Williams  *
949e4a9c373SDan Williams  *	LOCKING:
950e4a9c373SDan Williams  *	spin_lock_irqsave(host lock)
951e4a9c373SDan Williams  */
952e4a9c373SDan Williams void ata_std_end_eh(struct ata_port *ap)
953e4a9c373SDan Williams {
954e4a9c373SDan Williams 	struct Scsi_Host *host = ap->scsi_host;
955e4a9c373SDan Williams 
956e4a9c373SDan Williams 	host->host_eh_scheduled = 0;
957e4a9c373SDan Williams }
958e4a9c373SDan Williams EXPORT_SYMBOL(ata_std_end_eh);
959e4a9c373SDan Williams 
960e4a9c373SDan Williams 
961e4a9c373SDan Williams /**
962c6fd2807SJeff Garzik  *	ata_port_schedule_eh - schedule error handling without a qc
963c6fd2807SJeff Garzik  *	@ap: ATA port to schedule EH for
964c6fd2807SJeff Garzik  *
965c6fd2807SJeff Garzik  *	Schedule error handling for @ap.  EH will kick in as soon as
966c6fd2807SJeff Garzik  *	all commands are drained.
967c6fd2807SJeff Garzik  *
968c6fd2807SJeff Garzik  *	LOCKING:
969cca3974eSJeff Garzik  *	spin_lock_irqsave(host lock)
970c6fd2807SJeff Garzik  */
971c6fd2807SJeff Garzik void ata_port_schedule_eh(struct ata_port *ap)
972c6fd2807SJeff Garzik {
973e4a9c373SDan Williams 	/* see: ata_std_sched_eh, unless you know better */
974e4a9c373SDan Williams 	ap->ops->sched_eh(ap);
975c6fd2807SJeff Garzik }
976c6fd2807SJeff Garzik 
977dbd82616STejun Heo static int ata_do_link_abort(struct ata_port *ap, struct ata_link *link)
978c6fd2807SJeff Garzik {
979258c4e5cSJens Axboe 	struct ata_queued_cmd *qc;
980c6fd2807SJeff Garzik 	int tag, nr_aborted = 0;
981c6fd2807SJeff Garzik 
982c6fd2807SJeff Garzik 	WARN_ON(!ap->ops->error_handler);
983c6fd2807SJeff Garzik 
9845ddf24c5STejun Heo 	/* we're gonna abort all commands, no need for fast drain */
9855ddf24c5STejun Heo 	ata_eh_set_pending(ap, 0);
9865ddf24c5STejun Heo 
98728361c40SJens Axboe 	/* include internal tag in iteration */
988258c4e5cSJens Axboe 	ata_qc_for_each_with_internal(ap, qc, tag) {
989dbd82616STejun Heo 		if (qc && (!link || qc->dev->link == link)) {
990c6fd2807SJeff Garzik 			qc->flags |= ATA_QCFLAG_FAILED;
991c6fd2807SJeff Garzik 			ata_qc_complete(qc);
992c6fd2807SJeff Garzik 			nr_aborted++;
993c6fd2807SJeff Garzik 		}
994c6fd2807SJeff Garzik 	}
995c6fd2807SJeff Garzik 
996c6fd2807SJeff Garzik 	if (!nr_aborted)
997c6fd2807SJeff Garzik 		ata_port_schedule_eh(ap);
998c6fd2807SJeff Garzik 
999c6fd2807SJeff Garzik 	return nr_aborted;
1000c6fd2807SJeff Garzik }
1001c6fd2807SJeff Garzik 
1002c6fd2807SJeff Garzik /**
1003dbd82616STejun Heo  *	ata_link_abort - abort all qc's on the link
1004dbd82616STejun Heo  *	@link: ATA link to abort qc's for
1005dbd82616STejun Heo  *
1006dbd82616STejun Heo  *	Abort all active qc's active on @link and schedule EH.
1007dbd82616STejun Heo  *
1008dbd82616STejun Heo  *	LOCKING:
1009dbd82616STejun Heo  *	spin_lock_irqsave(host lock)
1010dbd82616STejun Heo  *
1011dbd82616STejun Heo  *	RETURNS:
1012dbd82616STejun Heo  *	Number of aborted qc's.
1013dbd82616STejun Heo  */
1014dbd82616STejun Heo int ata_link_abort(struct ata_link *link)
1015dbd82616STejun Heo {
1016dbd82616STejun Heo 	return ata_do_link_abort(link->ap, link);
1017dbd82616STejun Heo }
1018dbd82616STejun Heo 
1019dbd82616STejun Heo /**
1020dbd82616STejun Heo  *	ata_port_abort - abort all qc's on the port
1021dbd82616STejun Heo  *	@ap: ATA port to abort qc's for
1022dbd82616STejun Heo  *
1023dbd82616STejun Heo  *	Abort all active qc's of @ap and schedule EH.
1024dbd82616STejun Heo  *
1025dbd82616STejun Heo  *	LOCKING:
1026dbd82616STejun Heo  *	spin_lock_irqsave(host_set lock)
1027dbd82616STejun Heo  *
1028dbd82616STejun Heo  *	RETURNS:
1029dbd82616STejun Heo  *	Number of aborted qc's.
1030dbd82616STejun Heo  */
1031dbd82616STejun Heo int ata_port_abort(struct ata_port *ap)
1032dbd82616STejun Heo {
1033dbd82616STejun Heo 	return ata_do_link_abort(ap, NULL);
1034dbd82616STejun Heo }
1035dbd82616STejun Heo 
1036dbd82616STejun Heo /**
1037c6fd2807SJeff Garzik  *	__ata_port_freeze - freeze port
1038c6fd2807SJeff Garzik  *	@ap: ATA port to freeze
1039c6fd2807SJeff Garzik  *
1040c6fd2807SJeff Garzik  *	This function is called when HSM violation or some other
1041c6fd2807SJeff Garzik  *	condition disrupts normal operation of the port.  Frozen port
1042c6fd2807SJeff Garzik  *	is not allowed to perform any operation until the port is
1043c6fd2807SJeff Garzik  *	thawed, which usually follows a successful reset.
1044c6fd2807SJeff Garzik  *
1045c6fd2807SJeff Garzik  *	ap->ops->freeze() callback can be used for freezing the port
1046c6fd2807SJeff Garzik  *	hardware-wise (e.g. mask interrupt and stop DMA engine).  If a
1047c6fd2807SJeff Garzik  *	port cannot be frozen hardware-wise, the interrupt handler
1048c6fd2807SJeff Garzik  *	must ack and clear interrupts unconditionally while the port
1049c6fd2807SJeff Garzik  *	is frozen.
1050c6fd2807SJeff Garzik  *
1051c6fd2807SJeff Garzik  *	LOCKING:
1052cca3974eSJeff Garzik  *	spin_lock_irqsave(host lock)
1053c6fd2807SJeff Garzik  */
1054c6fd2807SJeff Garzik static void __ata_port_freeze(struct ata_port *ap)
1055c6fd2807SJeff Garzik {
1056c6fd2807SJeff Garzik 	WARN_ON(!ap->ops->error_handler);
1057c6fd2807SJeff Garzik 
1058c6fd2807SJeff Garzik 	if (ap->ops->freeze)
1059c6fd2807SJeff Garzik 		ap->ops->freeze(ap);
1060c6fd2807SJeff Garzik 
1061c6fd2807SJeff Garzik 	ap->pflags |= ATA_PFLAG_FROZEN;
1062c6fd2807SJeff Garzik 
106344877b4eSTejun Heo 	DPRINTK("ata%u port frozen\n", ap->print_id);
1064c6fd2807SJeff Garzik }
1065c6fd2807SJeff Garzik 
1066c6fd2807SJeff Garzik /**
1067c6fd2807SJeff Garzik  *	ata_port_freeze - abort & freeze port
1068c6fd2807SJeff Garzik  *	@ap: ATA port to freeze
1069c6fd2807SJeff Garzik  *
107054c38444SJeff Garzik  *	Abort and freeze @ap.  The freeze operation must be called
107154c38444SJeff Garzik  *	first, because some hardware requires special operations
107254c38444SJeff Garzik  *	before the taskfile registers are accessible.
1073c6fd2807SJeff Garzik  *
1074c6fd2807SJeff Garzik  *	LOCKING:
1075cca3974eSJeff Garzik  *	spin_lock_irqsave(host lock)
1076c6fd2807SJeff Garzik  *
1077c6fd2807SJeff Garzik  *	RETURNS:
1078c6fd2807SJeff Garzik  *	Number of aborted commands.
1079c6fd2807SJeff Garzik  */
1080c6fd2807SJeff Garzik int ata_port_freeze(struct ata_port *ap)
1081c6fd2807SJeff Garzik {
1082c6fd2807SJeff Garzik 	int nr_aborted;
1083c6fd2807SJeff Garzik 
1084c6fd2807SJeff Garzik 	WARN_ON(!ap->ops->error_handler);
1085c6fd2807SJeff Garzik 
1086c6fd2807SJeff Garzik 	__ata_port_freeze(ap);
108754c38444SJeff Garzik 	nr_aborted = ata_port_abort(ap);
1088c6fd2807SJeff Garzik 
1089c6fd2807SJeff Garzik 	return nr_aborted;
1090c6fd2807SJeff Garzik }
1091c6fd2807SJeff Garzik 
1092c6fd2807SJeff Garzik /**
10937d77b247STejun Heo  *	sata_async_notification - SATA async notification handler
10947d77b247STejun Heo  *	@ap: ATA port where async notification is received
10957d77b247STejun Heo  *
10967d77b247STejun Heo  *	Handler to be called when async notification via SDB FIS is
10977d77b247STejun Heo  *	received.  This function schedules EH if necessary.
10987d77b247STejun Heo  *
10997d77b247STejun Heo  *	LOCKING:
11007d77b247STejun Heo  *	spin_lock_irqsave(host lock)
11017d77b247STejun Heo  *
11027d77b247STejun Heo  *	RETURNS:
11037d77b247STejun Heo  *	1 if EH is scheduled, 0 otherwise.
11047d77b247STejun Heo  */
11057d77b247STejun Heo int sata_async_notification(struct ata_port *ap)
11067d77b247STejun Heo {
11077d77b247STejun Heo 	u32 sntf;
11087d77b247STejun Heo 	int rc;
11097d77b247STejun Heo 
11107d77b247STejun Heo 	if (!(ap->flags & ATA_FLAG_AN))
11117d77b247STejun Heo 		return 0;
11127d77b247STejun Heo 
11137d77b247STejun Heo 	rc = sata_scr_read(&ap->link, SCR_NOTIFICATION, &sntf);
11147d77b247STejun Heo 	if (rc == 0)
11157d77b247STejun Heo 		sata_scr_write(&ap->link, SCR_NOTIFICATION, sntf);
11167d77b247STejun Heo 
1117071f44b1STejun Heo 	if (!sata_pmp_attached(ap) || rc) {
11187d77b247STejun Heo 		/* PMP is not attached or SNTF is not available */
1119071f44b1STejun Heo 		if (!sata_pmp_attached(ap)) {
11207d77b247STejun Heo 			/* PMP is not attached.  Check whether ATAPI
11217d77b247STejun Heo 			 * AN is configured.  If so, notify media
11227d77b247STejun Heo 			 * change.
11237d77b247STejun Heo 			 */
11247d77b247STejun Heo 			struct ata_device *dev = ap->link.device;
11257d77b247STejun Heo 
11267d77b247STejun Heo 			if ((dev->class == ATA_DEV_ATAPI) &&
11277d77b247STejun Heo 			    (dev->flags & ATA_DFLAG_AN))
11287d77b247STejun Heo 				ata_scsi_media_change_notify(dev);
11297d77b247STejun Heo 			return 0;
11307d77b247STejun Heo 		} else {
11317d77b247STejun Heo 			/* PMP is attached but SNTF is not available.
11327d77b247STejun Heo 			 * ATAPI async media change notification is
11337d77b247STejun Heo 			 * not used.  The PMP must be reporting PHY
11347d77b247STejun Heo 			 * status change, schedule EH.
11357d77b247STejun Heo 			 */
11367d77b247STejun Heo 			ata_port_schedule_eh(ap);
11377d77b247STejun Heo 			return 1;
11387d77b247STejun Heo 		}
11397d77b247STejun Heo 	} else {
11407d77b247STejun Heo 		/* PMP is attached and SNTF is available */
11417d77b247STejun Heo 		struct ata_link *link;
11427d77b247STejun Heo 
11437d77b247STejun Heo 		/* check and notify ATAPI AN */
11441eca4365STejun Heo 		ata_for_each_link(link, ap, EDGE) {
11457d77b247STejun Heo 			if (!(sntf & (1 << link->pmp)))
11467d77b247STejun Heo 				continue;
11477d77b247STejun Heo 
11487d77b247STejun Heo 			if ((link->device->class == ATA_DEV_ATAPI) &&
11497d77b247STejun Heo 			    (link->device->flags & ATA_DFLAG_AN))
11507d77b247STejun Heo 				ata_scsi_media_change_notify(link->device);
11517d77b247STejun Heo 		}
11527d77b247STejun Heo 
11537d77b247STejun Heo 		/* If PMP is reporting that PHY status of some
11547d77b247STejun Heo 		 * downstream ports has changed, schedule EH.
11557d77b247STejun Heo 		 */
11567d77b247STejun Heo 		if (sntf & (1 << SATA_PMP_CTRL_PORT)) {
11577d77b247STejun Heo 			ata_port_schedule_eh(ap);
11587d77b247STejun Heo 			return 1;
11597d77b247STejun Heo 		}
11607d77b247STejun Heo 
11617d77b247STejun Heo 		return 0;
11627d77b247STejun Heo 	}
11637d77b247STejun Heo }
11647d77b247STejun Heo 
11657d77b247STejun Heo /**
1166c6fd2807SJeff Garzik  *	ata_eh_freeze_port - EH helper to freeze port
1167c6fd2807SJeff Garzik  *	@ap: ATA port to freeze
1168c6fd2807SJeff Garzik  *
1169c6fd2807SJeff Garzik  *	Freeze @ap.
1170c6fd2807SJeff Garzik  *
1171c6fd2807SJeff Garzik  *	LOCKING:
1172c6fd2807SJeff Garzik  *	None.
1173c6fd2807SJeff Garzik  */
1174c6fd2807SJeff Garzik void ata_eh_freeze_port(struct ata_port *ap)
1175c6fd2807SJeff Garzik {
1176c6fd2807SJeff Garzik 	unsigned long flags;
1177c6fd2807SJeff Garzik 
1178c6fd2807SJeff Garzik 	if (!ap->ops->error_handler)
1179c6fd2807SJeff Garzik 		return;
1180c6fd2807SJeff Garzik 
1181c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
1182c6fd2807SJeff Garzik 	__ata_port_freeze(ap);
1183c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
1184c6fd2807SJeff Garzik }
1185c6fd2807SJeff Garzik 
1186c6fd2807SJeff Garzik /**
1187c6fd2807SJeff Garzik  *	ata_port_thaw_port - EH helper to thaw port
1188c6fd2807SJeff Garzik  *	@ap: ATA port to thaw
1189c6fd2807SJeff Garzik  *
1190c6fd2807SJeff Garzik  *	Thaw frozen port @ap.
1191c6fd2807SJeff Garzik  *
1192c6fd2807SJeff Garzik  *	LOCKING:
1193c6fd2807SJeff Garzik  *	None.
1194c6fd2807SJeff Garzik  */
1195c6fd2807SJeff Garzik void ata_eh_thaw_port(struct ata_port *ap)
1196c6fd2807SJeff Garzik {
1197c6fd2807SJeff Garzik 	unsigned long flags;
1198c6fd2807SJeff Garzik 
1199c6fd2807SJeff Garzik 	if (!ap->ops->error_handler)
1200c6fd2807SJeff Garzik 		return;
1201c6fd2807SJeff Garzik 
1202c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
1203c6fd2807SJeff Garzik 
1204c6fd2807SJeff Garzik 	ap->pflags &= ~ATA_PFLAG_FROZEN;
1205c6fd2807SJeff Garzik 
1206c6fd2807SJeff Garzik 	if (ap->ops->thaw)
1207c6fd2807SJeff Garzik 		ap->ops->thaw(ap);
1208c6fd2807SJeff Garzik 
1209c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
1210c6fd2807SJeff Garzik 
121144877b4eSTejun Heo 	DPRINTK("ata%u port thawed\n", ap->print_id);
1212c6fd2807SJeff Garzik }
1213c6fd2807SJeff Garzik 
1214c6fd2807SJeff Garzik static void ata_eh_scsidone(struct scsi_cmnd *scmd)
1215c6fd2807SJeff Garzik {
1216c6fd2807SJeff Garzik 	/* nada */
1217c6fd2807SJeff Garzik }
1218c6fd2807SJeff Garzik 
1219c6fd2807SJeff Garzik static void __ata_eh_qc_complete(struct ata_queued_cmd *qc)
1220c6fd2807SJeff Garzik {
1221c6fd2807SJeff Garzik 	struct ata_port *ap = qc->ap;
1222c6fd2807SJeff Garzik 	struct scsi_cmnd *scmd = qc->scsicmd;
1223c6fd2807SJeff Garzik 	unsigned long flags;
1224c6fd2807SJeff Garzik 
1225c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
1226c6fd2807SJeff Garzik 	qc->scsidone = ata_eh_scsidone;
1227c6fd2807SJeff Garzik 	__ata_qc_complete(qc);
1228c6fd2807SJeff Garzik 	WARN_ON(ata_tag_valid(qc->tag));
1229c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
1230c6fd2807SJeff Garzik 
1231c6fd2807SJeff Garzik 	scsi_eh_finish_cmd(scmd, &ap->eh_done_q);
1232c6fd2807SJeff Garzik }
1233c6fd2807SJeff Garzik 
1234c6fd2807SJeff Garzik /**
1235c6fd2807SJeff Garzik  *	ata_eh_qc_complete - Complete an active ATA command from EH
1236c6fd2807SJeff Garzik  *	@qc: Command to complete
1237c6fd2807SJeff Garzik  *
1238c6fd2807SJeff Garzik  *	Indicate to the mid and upper layers that an ATA command has
1239c6fd2807SJeff Garzik  *	completed.  To be used from EH.
1240c6fd2807SJeff Garzik  */
1241c6fd2807SJeff Garzik void ata_eh_qc_complete(struct ata_queued_cmd *qc)
1242c6fd2807SJeff Garzik {
1243c6fd2807SJeff Garzik 	struct scsi_cmnd *scmd = qc->scsicmd;
1244c6fd2807SJeff Garzik 	scmd->retries = scmd->allowed;
1245c6fd2807SJeff Garzik 	__ata_eh_qc_complete(qc);
1246c6fd2807SJeff Garzik }
1247c6fd2807SJeff Garzik 
1248c6fd2807SJeff Garzik /**
1249c6fd2807SJeff Garzik  *	ata_eh_qc_retry - Tell midlayer to retry an ATA command after EH
1250c6fd2807SJeff Garzik  *	@qc: Command to retry
1251c6fd2807SJeff Garzik  *
1252c6fd2807SJeff Garzik  *	Indicate to the mid and upper layers that an ATA command
1253c6fd2807SJeff Garzik  *	should be retried.  To be used from EH.
1254c6fd2807SJeff Garzik  *
1255c6fd2807SJeff Garzik  *	SCSI midlayer limits the number of retries to scmd->allowed.
1256f13e2201SGwendal Grignou  *	scmd->allowed is incremented for commands which get retried
1257c6fd2807SJeff Garzik  *	due to unrelated failures (qc->err_mask is zero).
1258c6fd2807SJeff Garzik  */
1259c6fd2807SJeff Garzik void ata_eh_qc_retry(struct ata_queued_cmd *qc)
1260c6fd2807SJeff Garzik {
1261c6fd2807SJeff Garzik 	struct scsi_cmnd *scmd = qc->scsicmd;
1262f13e2201SGwendal Grignou 	if (!qc->err_mask)
1263f13e2201SGwendal Grignou 		scmd->allowed++;
1264c6fd2807SJeff Garzik 	__ata_eh_qc_complete(qc);
1265c6fd2807SJeff Garzik }
1266c6fd2807SJeff Garzik 
1267c6fd2807SJeff Garzik /**
1268678afac6STejun Heo  *	ata_dev_disable - disable ATA device
1269678afac6STejun Heo  *	@dev: ATA device to disable
1270678afac6STejun Heo  *
1271678afac6STejun Heo  *	Disable @dev.
1272678afac6STejun Heo  *
1273678afac6STejun Heo  *	Locking:
1274678afac6STejun Heo  *	EH context.
1275678afac6STejun Heo  */
1276678afac6STejun Heo void ata_dev_disable(struct ata_device *dev)
1277678afac6STejun Heo {
1278678afac6STejun Heo 	if (!ata_dev_enabled(dev))
1279678afac6STejun Heo 		return;
1280678afac6STejun Heo 
1281678afac6STejun Heo 	if (ata_msg_drv(dev->link->ap))
1282a9a79dfeSJoe Perches 		ata_dev_warn(dev, "disabled\n");
1283678afac6STejun Heo 	ata_acpi_on_disable(dev);
1284678afac6STejun Heo 	ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO0 | ATA_DNXFER_QUIET);
1285678afac6STejun Heo 	dev->class++;
128699cf610aSTejun Heo 
128799cf610aSTejun Heo 	/* From now till the next successful probe, ering is used to
128899cf610aSTejun Heo 	 * track probe failures.  Clear accumulated device error info.
128999cf610aSTejun Heo 	 */
129099cf610aSTejun Heo 	ata_ering_clear(&dev->ering);
1291678afac6STejun Heo }
1292678afac6STejun Heo 
1293678afac6STejun Heo /**
1294c6fd2807SJeff Garzik  *	ata_eh_detach_dev - detach ATA device
1295c6fd2807SJeff Garzik  *	@dev: ATA device to detach
1296c6fd2807SJeff Garzik  *
1297c6fd2807SJeff Garzik  *	Detach @dev.
1298c6fd2807SJeff Garzik  *
1299c6fd2807SJeff Garzik  *	LOCKING:
1300c6fd2807SJeff Garzik  *	None.
1301c6fd2807SJeff Garzik  */
1302fb7fd614STejun Heo void ata_eh_detach_dev(struct ata_device *dev)
1303c6fd2807SJeff Garzik {
1304f58229f8STejun Heo 	struct ata_link *link = dev->link;
1305f58229f8STejun Heo 	struct ata_port *ap = link->ap;
130690484ebfSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
1307c6fd2807SJeff Garzik 	unsigned long flags;
1308c6fd2807SJeff Garzik 
1309c6fd2807SJeff Garzik 	ata_dev_disable(dev);
1310c6fd2807SJeff Garzik 
1311c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
1312c6fd2807SJeff Garzik 
1313c6fd2807SJeff Garzik 	dev->flags &= ~ATA_DFLAG_DETACH;
1314c6fd2807SJeff Garzik 
1315c6fd2807SJeff Garzik 	if (ata_scsi_offline_dev(dev)) {
1316c6fd2807SJeff Garzik 		dev->flags |= ATA_DFLAG_DETACHED;
1317c6fd2807SJeff Garzik 		ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
1318c6fd2807SJeff Garzik 	}
1319c6fd2807SJeff Garzik 
132090484ebfSTejun Heo 	/* clear per-dev EH info */
1321f58229f8STejun Heo 	ata_eh_clear_action(link, dev, &link->eh_info, ATA_EH_PERDEV_MASK);
1322f58229f8STejun Heo 	ata_eh_clear_action(link, dev, &link->eh_context.i, ATA_EH_PERDEV_MASK);
132390484ebfSTejun Heo 	ehc->saved_xfer_mode[dev->devno] = 0;
132490484ebfSTejun Heo 	ehc->saved_ncq_enabled &= ~(1 << dev->devno);
1325c6fd2807SJeff Garzik 
1326c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
1327c6fd2807SJeff Garzik }
1328c6fd2807SJeff Garzik 
1329c6fd2807SJeff Garzik /**
1330c6fd2807SJeff Garzik  *	ata_eh_about_to_do - about to perform eh_action
1331955e57dfSTejun Heo  *	@link: target ATA link
1332c6fd2807SJeff Garzik  *	@dev: target ATA dev for per-dev action (can be NULL)
1333c6fd2807SJeff Garzik  *	@action: action about to be performed
1334c6fd2807SJeff Garzik  *
1335c6fd2807SJeff Garzik  *	Called just before performing EH actions to clear related bits
1336955e57dfSTejun Heo  *	in @link->eh_info such that eh actions are not unnecessarily
1337955e57dfSTejun Heo  *	repeated.
1338c6fd2807SJeff Garzik  *
1339c6fd2807SJeff Garzik  *	LOCKING:
1340c6fd2807SJeff Garzik  *	None.
1341c6fd2807SJeff Garzik  */
1342fb7fd614STejun Heo void ata_eh_about_to_do(struct ata_link *link, struct ata_device *dev,
1343c6fd2807SJeff Garzik 			unsigned int action)
1344c6fd2807SJeff Garzik {
1345955e57dfSTejun Heo 	struct ata_port *ap = link->ap;
1346955e57dfSTejun Heo 	struct ata_eh_info *ehi = &link->eh_info;
1347955e57dfSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
1348c6fd2807SJeff Garzik 	unsigned long flags;
1349c6fd2807SJeff Garzik 
1350c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
1351c6fd2807SJeff Garzik 
1352955e57dfSTejun Heo 	ata_eh_clear_action(link, dev, ehi, action);
1353c6fd2807SJeff Garzik 
1354a568d1d2STejun Heo 	/* About to take EH action, set RECOVERED.  Ignore actions on
1355a568d1d2STejun Heo 	 * slave links as master will do them again.
1356a568d1d2STejun Heo 	 */
1357a568d1d2STejun Heo 	if (!(ehc->i.flags & ATA_EHI_QUIET) && link != ap->slave_link)
1358c6fd2807SJeff Garzik 		ap->pflags |= ATA_PFLAG_RECOVERED;
1359c6fd2807SJeff Garzik 
1360c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
1361c6fd2807SJeff Garzik }
1362c6fd2807SJeff Garzik 
1363c6fd2807SJeff Garzik /**
1364c6fd2807SJeff Garzik  *	ata_eh_done - EH action complete
13652f60e1abSJonathan Corbet  *	@link: ATA link for which EH actions are complete
1366c6fd2807SJeff Garzik  *	@dev: target ATA dev for per-dev action (can be NULL)
1367c6fd2807SJeff Garzik  *	@action: action just completed
1368c6fd2807SJeff Garzik  *
1369c6fd2807SJeff Garzik  *	Called right after performing EH actions to clear related bits
1370955e57dfSTejun Heo  *	in @link->eh_context.
1371c6fd2807SJeff Garzik  *
1372c6fd2807SJeff Garzik  *	LOCKING:
1373c6fd2807SJeff Garzik  *	None.
1374c6fd2807SJeff Garzik  */
1375fb7fd614STejun Heo void ata_eh_done(struct ata_link *link, struct ata_device *dev,
1376c6fd2807SJeff Garzik 		 unsigned int action)
1377c6fd2807SJeff Garzik {
1378955e57dfSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
13799af5c9c9STejun Heo 
1380955e57dfSTejun Heo 	ata_eh_clear_action(link, dev, &ehc->i, action);
1381c6fd2807SJeff Garzik }
1382c6fd2807SJeff Garzik 
1383c6fd2807SJeff Garzik /**
1384c6fd2807SJeff Garzik  *	ata_err_string - convert err_mask to descriptive string
1385c6fd2807SJeff Garzik  *	@err_mask: error mask to convert to string
1386c6fd2807SJeff Garzik  *
1387c6fd2807SJeff Garzik  *	Convert @err_mask to descriptive string.  Errors are
1388c6fd2807SJeff Garzik  *	prioritized according to severity and only the most severe
1389c6fd2807SJeff Garzik  *	error is reported.
1390c6fd2807SJeff Garzik  *
1391c6fd2807SJeff Garzik  *	LOCKING:
1392c6fd2807SJeff Garzik  *	None.
1393c6fd2807SJeff Garzik  *
1394c6fd2807SJeff Garzik  *	RETURNS:
1395c6fd2807SJeff Garzik  *	Descriptive string for @err_mask
1396c6fd2807SJeff Garzik  */
1397c6fd2807SJeff Garzik static const char *ata_err_string(unsigned int err_mask)
1398c6fd2807SJeff Garzik {
1399c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_HOST_BUS)
1400c6fd2807SJeff Garzik 		return "host bus error";
1401c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_ATA_BUS)
1402c6fd2807SJeff Garzik 		return "ATA bus error";
1403c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_TIMEOUT)
1404c6fd2807SJeff Garzik 		return "timeout";
1405c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_HSM)
1406c6fd2807SJeff Garzik 		return "HSM violation";
1407c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_SYSTEM)
1408c6fd2807SJeff Garzik 		return "internal error";
1409c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_MEDIA)
1410c6fd2807SJeff Garzik 		return "media error";
1411c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_INVALID)
1412c6fd2807SJeff Garzik 		return "invalid argument";
1413c6fd2807SJeff Garzik 	if (err_mask & AC_ERR_DEV)
1414c6fd2807SJeff Garzik 		return "device error";
141554fb131bSDamien Le Moal 	if (err_mask & AC_ERR_NCQ)
141654fb131bSDamien Le Moal 		return "NCQ error";
141754fb131bSDamien Le Moal 	if (err_mask & AC_ERR_NODEV_HINT)
141854fb131bSDamien Le Moal 		return "Polling detection error";
1419c6fd2807SJeff Garzik 	return "unknown error";
1420c6fd2807SJeff Garzik }
1421c6fd2807SJeff Garzik 
1422c6fd2807SJeff Garzik /**
1423c6fd2807SJeff Garzik  *	ata_eh_read_log_10h - Read log page 10h for NCQ error details
1424c6fd2807SJeff Garzik  *	@dev: Device to read log page 10h from
1425c6fd2807SJeff Garzik  *	@tag: Resulting tag of the failed command
1426c6fd2807SJeff Garzik  *	@tf: Resulting taskfile registers of the failed command
1427c6fd2807SJeff Garzik  *
1428c6fd2807SJeff Garzik  *	Read log page 10h to obtain NCQ error details and clear error
1429c6fd2807SJeff Garzik  *	condition.
1430c6fd2807SJeff Garzik  *
1431c6fd2807SJeff Garzik  *	LOCKING:
1432c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
1433c6fd2807SJeff Garzik  *
1434c6fd2807SJeff Garzik  *	RETURNS:
1435c6fd2807SJeff Garzik  *	0 on success, -errno otherwise.
1436c6fd2807SJeff Garzik  */
1437c6fd2807SJeff Garzik static int ata_eh_read_log_10h(struct ata_device *dev,
1438c6fd2807SJeff Garzik 			       int *tag, struct ata_taskfile *tf)
1439c6fd2807SJeff Garzik {
14409af5c9c9STejun Heo 	u8 *buf = dev->link->ap->sector_buf;
1441c6fd2807SJeff Garzik 	unsigned int err_mask;
1442c6fd2807SJeff Garzik 	u8 csum;
1443c6fd2807SJeff Garzik 	int i;
1444c6fd2807SJeff Garzik 
144565fe1f0fSShane Huang 	err_mask = ata_read_log_page(dev, ATA_LOG_SATA_NCQ, 0, buf, 1);
1446c6fd2807SJeff Garzik 	if (err_mask)
1447c6fd2807SJeff Garzik 		return -EIO;
1448c6fd2807SJeff Garzik 
1449c6fd2807SJeff Garzik 	csum = 0;
1450c6fd2807SJeff Garzik 	for (i = 0; i < ATA_SECT_SIZE; i++)
1451c6fd2807SJeff Garzik 		csum += buf[i];
1452c6fd2807SJeff Garzik 	if (csum)
1453a9a79dfeSJoe Perches 		ata_dev_warn(dev, "invalid checksum 0x%x on log page 10h\n",
1454a9a79dfeSJoe Perches 			     csum);
1455c6fd2807SJeff Garzik 
1456c6fd2807SJeff Garzik 	if (buf[0] & 0x80)
1457c6fd2807SJeff Garzik 		return -ENOENT;
1458c6fd2807SJeff Garzik 
1459c6fd2807SJeff Garzik 	*tag = buf[0] & 0x1f;
1460c6fd2807SJeff Garzik 
1461c6fd2807SJeff Garzik 	tf->command = buf[2];
1462c6fd2807SJeff Garzik 	tf->feature = buf[3];
1463c6fd2807SJeff Garzik 	tf->lbal = buf[4];
1464c6fd2807SJeff Garzik 	tf->lbam = buf[5];
1465c6fd2807SJeff Garzik 	tf->lbah = buf[6];
1466c6fd2807SJeff Garzik 	tf->device = buf[7];
1467c6fd2807SJeff Garzik 	tf->hob_lbal = buf[8];
1468c6fd2807SJeff Garzik 	tf->hob_lbam = buf[9];
1469c6fd2807SJeff Garzik 	tf->hob_lbah = buf[10];
1470c6fd2807SJeff Garzik 	tf->nsect = buf[12];
1471c6fd2807SJeff Garzik 	tf->hob_nsect = buf[13];
14725b01e4b9SHannes Reinecke 	if (ata_id_has_ncq_autosense(dev->id))
14735b01e4b9SHannes Reinecke 		tf->auxiliary = buf[14] << 16 | buf[15] << 8 | buf[16];
1474c6fd2807SJeff Garzik 
1475c6fd2807SJeff Garzik 	return 0;
1476c6fd2807SJeff Garzik }
1477c6fd2807SJeff Garzik 
1478c6fd2807SJeff Garzik /**
147911fc33daSTejun Heo  *	atapi_eh_tur - perform ATAPI TEST_UNIT_READY
148011fc33daSTejun Heo  *	@dev: target ATAPI device
148111fc33daSTejun Heo  *	@r_sense_key: out parameter for sense_key
148211fc33daSTejun Heo  *
148311fc33daSTejun Heo  *	Perform ATAPI TEST_UNIT_READY.
148411fc33daSTejun Heo  *
148511fc33daSTejun Heo  *	LOCKING:
148611fc33daSTejun Heo  *	EH context (may sleep).
148711fc33daSTejun Heo  *
148811fc33daSTejun Heo  *	RETURNS:
148911fc33daSTejun Heo  *	0 on success, AC_ERR_* mask on failure.
149011fc33daSTejun Heo  */
14913dc67440SAaron Lu unsigned int atapi_eh_tur(struct ata_device *dev, u8 *r_sense_key)
149211fc33daSTejun Heo {
149311fc33daSTejun Heo 	u8 cdb[ATAPI_CDB_LEN] = { TEST_UNIT_READY, 0, 0, 0, 0, 0 };
149411fc33daSTejun Heo 	struct ata_taskfile tf;
149511fc33daSTejun Heo 	unsigned int err_mask;
149611fc33daSTejun Heo 
149711fc33daSTejun Heo 	ata_tf_init(dev, &tf);
149811fc33daSTejun Heo 
149911fc33daSTejun Heo 	tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
150011fc33daSTejun Heo 	tf.command = ATA_CMD_PACKET;
150111fc33daSTejun Heo 	tf.protocol = ATAPI_PROT_NODATA;
150211fc33daSTejun Heo 
150311fc33daSTejun Heo 	err_mask = ata_exec_internal(dev, &tf, cdb, DMA_NONE, NULL, 0, 0);
150411fc33daSTejun Heo 	if (err_mask == AC_ERR_DEV)
150511fc33daSTejun Heo 		*r_sense_key = tf.feature >> 4;
150611fc33daSTejun Heo 	return err_mask;
150711fc33daSTejun Heo }
150811fc33daSTejun Heo 
150911fc33daSTejun Heo /**
1510e87fd28cSHannes Reinecke  *	ata_eh_request_sense - perform REQUEST_SENSE_DATA_EXT
15112f60e1abSJonathan Corbet  *	@qc: qc to perform REQUEST_SENSE_SENSE_DATA_EXT to
1512e87fd28cSHannes Reinecke  *	@cmd: scsi command for which the sense code should be set
1513e87fd28cSHannes Reinecke  *
1514e87fd28cSHannes Reinecke  *	Perform REQUEST_SENSE_DATA_EXT after the device reported CHECK
1515e87fd28cSHannes Reinecke  *	SENSE.  This function is an EH helper.
1516e87fd28cSHannes Reinecke  *
1517e87fd28cSHannes Reinecke  *	LOCKING:
1518e87fd28cSHannes Reinecke  *	Kernel thread context (may sleep).
1519e87fd28cSHannes Reinecke  */
1520e87fd28cSHannes Reinecke static void ata_eh_request_sense(struct ata_queued_cmd *qc,
1521e87fd28cSHannes Reinecke 				 struct scsi_cmnd *cmd)
1522e87fd28cSHannes Reinecke {
1523e87fd28cSHannes Reinecke 	struct ata_device *dev = qc->dev;
1524e87fd28cSHannes Reinecke 	struct ata_taskfile tf;
1525e87fd28cSHannes Reinecke 	unsigned int err_mask;
1526e87fd28cSHannes Reinecke 
1527e87fd28cSHannes Reinecke 	if (qc->ap->pflags & ATA_PFLAG_FROZEN) {
1528e87fd28cSHannes Reinecke 		ata_dev_warn(dev, "sense data available but port frozen\n");
1529e87fd28cSHannes Reinecke 		return;
1530e87fd28cSHannes Reinecke 	}
1531e87fd28cSHannes Reinecke 
1532d238ffd5SHannes Reinecke 	if (!cmd || qc->flags & ATA_QCFLAG_SENSE_VALID)
1533e87fd28cSHannes Reinecke 		return;
1534e87fd28cSHannes Reinecke 
1535e87fd28cSHannes Reinecke 	if (!ata_id_sense_reporting_enabled(dev->id)) {
1536e87fd28cSHannes Reinecke 		ata_dev_warn(qc->dev, "sense data reporting disabled\n");
1537e87fd28cSHannes Reinecke 		return;
1538e87fd28cSHannes Reinecke 	}
1539e87fd28cSHannes Reinecke 
1540e87fd28cSHannes Reinecke 	DPRINTK("ATA request sense\n");
1541e87fd28cSHannes Reinecke 
1542e87fd28cSHannes Reinecke 	ata_tf_init(dev, &tf);
1543e87fd28cSHannes Reinecke 	tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1544e87fd28cSHannes Reinecke 	tf.flags |= ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
1545e87fd28cSHannes Reinecke 	tf.command = ATA_CMD_REQ_SENSE_DATA;
1546e87fd28cSHannes Reinecke 	tf.protocol = ATA_PROT_NODATA;
1547e87fd28cSHannes Reinecke 
1548e87fd28cSHannes Reinecke 	err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
1549e87fd28cSHannes Reinecke 	/* Ignore err_mask; ATA_ERR might be set */
1550e87fd28cSHannes Reinecke 	if (tf.command & ATA_SENSE) {
155106dbde5fSHannes Reinecke 		ata_scsi_set_sense(dev, cmd, tf.lbah, tf.lbam, tf.lbal);
1552e87fd28cSHannes Reinecke 		qc->flags |= ATA_QCFLAG_SENSE_VALID;
1553e87fd28cSHannes Reinecke 	} else {
1554e87fd28cSHannes Reinecke 		ata_dev_warn(dev, "request sense failed stat %02x emask %x\n",
1555e87fd28cSHannes Reinecke 			     tf.command, err_mask);
1556e87fd28cSHannes Reinecke 	}
1557e87fd28cSHannes Reinecke }
1558e87fd28cSHannes Reinecke 
1559e87fd28cSHannes Reinecke /**
1560c6fd2807SJeff Garzik  *	atapi_eh_request_sense - perform ATAPI REQUEST_SENSE
1561c6fd2807SJeff Garzik  *	@dev: device to perform REQUEST_SENSE to
1562c6fd2807SJeff Garzik  *	@sense_buf: result sense data buffer (SCSI_SENSE_BUFFERSIZE bytes long)
15633eabddb8STejun Heo  *	@dfl_sense_key: default sense key to use
1564c6fd2807SJeff Garzik  *
1565c6fd2807SJeff Garzik  *	Perform ATAPI REQUEST_SENSE after the device reported CHECK
1566c6fd2807SJeff Garzik  *	SENSE.  This function is EH helper.
1567c6fd2807SJeff Garzik  *
1568c6fd2807SJeff Garzik  *	LOCKING:
1569c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
1570c6fd2807SJeff Garzik  *
1571c6fd2807SJeff Garzik  *	RETURNS:
1572c6fd2807SJeff Garzik  *	0 on success, AC_ERR_* mask on failure
1573c6fd2807SJeff Garzik  */
15743dc67440SAaron Lu unsigned int atapi_eh_request_sense(struct ata_device *dev,
15753eabddb8STejun Heo 					   u8 *sense_buf, u8 dfl_sense_key)
1576c6fd2807SJeff Garzik {
15773eabddb8STejun Heo 	u8 cdb[ATAPI_CDB_LEN] =
15783eabddb8STejun Heo 		{ REQUEST_SENSE, 0, 0, 0, SCSI_SENSE_BUFFERSIZE, 0 };
15799af5c9c9STejun Heo 	struct ata_port *ap = dev->link->ap;
1580c6fd2807SJeff Garzik 	struct ata_taskfile tf;
1581c6fd2807SJeff Garzik 
1582c6fd2807SJeff Garzik 	DPRINTK("ATAPI request sense\n");
1583c6fd2807SJeff Garzik 
1584c6fd2807SJeff Garzik 	memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
1585c6fd2807SJeff Garzik 
158656287768SAlbert Lee 	/* initialize sense_buf with the error register,
158756287768SAlbert Lee 	 * for the case where they are -not- overwritten
158856287768SAlbert Lee 	 */
1589c6fd2807SJeff Garzik 	sense_buf[0] = 0x70;
15903eabddb8STejun Heo 	sense_buf[2] = dfl_sense_key;
159156287768SAlbert Lee 
159256287768SAlbert Lee 	/* some devices time out if garbage left in tf */
159356287768SAlbert Lee 	ata_tf_init(dev, &tf);
1594c6fd2807SJeff Garzik 
1595c6fd2807SJeff Garzik 	tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
1596c6fd2807SJeff Garzik 	tf.command = ATA_CMD_PACKET;
1597c6fd2807SJeff Garzik 
1598c6fd2807SJeff Garzik 	/* is it pointless to prefer PIO for "safety reasons"? */
1599c6fd2807SJeff Garzik 	if (ap->flags & ATA_FLAG_PIO_DMA) {
16000dc36888STejun Heo 		tf.protocol = ATAPI_PROT_DMA;
1601c6fd2807SJeff Garzik 		tf.feature |= ATAPI_PKT_DMA;
1602c6fd2807SJeff Garzik 	} else {
16030dc36888STejun Heo 		tf.protocol = ATAPI_PROT_PIO;
1604f2dfc1a1STejun Heo 		tf.lbam = SCSI_SENSE_BUFFERSIZE;
1605f2dfc1a1STejun Heo 		tf.lbah = 0;
1606c6fd2807SJeff Garzik 	}
1607c6fd2807SJeff Garzik 
1608c6fd2807SJeff Garzik 	return ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE,
16092b789108STejun Heo 				 sense_buf, SCSI_SENSE_BUFFERSIZE, 0);
1610c6fd2807SJeff Garzik }
1611c6fd2807SJeff Garzik 
1612c6fd2807SJeff Garzik /**
1613c6fd2807SJeff Garzik  *	ata_eh_analyze_serror - analyze SError for a failed port
16140260731fSTejun Heo  *	@link: ATA link to analyze SError for
1615c6fd2807SJeff Garzik  *
1616c6fd2807SJeff Garzik  *	Analyze SError if available and further determine cause of
1617c6fd2807SJeff Garzik  *	failure.
1618c6fd2807SJeff Garzik  *
1619c6fd2807SJeff Garzik  *	LOCKING:
1620c6fd2807SJeff Garzik  *	None.
1621c6fd2807SJeff Garzik  */
16220260731fSTejun Heo static void ata_eh_analyze_serror(struct ata_link *link)
1623c6fd2807SJeff Garzik {
16240260731fSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
1625c6fd2807SJeff Garzik 	u32 serror = ehc->i.serror;
1626c6fd2807SJeff Garzik 	unsigned int err_mask = 0, action = 0;
1627f9df58cbSTejun Heo 	u32 hotplug_mask;
1628c6fd2807SJeff Garzik 
1629e0614db2STejun Heo 	if (serror & (SERR_PERSISTENT | SERR_DATA)) {
1630c6fd2807SJeff Garzik 		err_mask |= AC_ERR_ATA_BUS;
1631cf480626STejun Heo 		action |= ATA_EH_RESET;
1632c6fd2807SJeff Garzik 	}
1633c6fd2807SJeff Garzik 	if (serror & SERR_PROTOCOL) {
1634c6fd2807SJeff Garzik 		err_mask |= AC_ERR_HSM;
1635cf480626STejun Heo 		action |= ATA_EH_RESET;
1636c6fd2807SJeff Garzik 	}
1637c6fd2807SJeff Garzik 	if (serror & SERR_INTERNAL) {
1638c6fd2807SJeff Garzik 		err_mask |= AC_ERR_SYSTEM;
1639cf480626STejun Heo 		action |= ATA_EH_RESET;
1640c6fd2807SJeff Garzik 	}
1641f9df58cbSTejun Heo 
1642f9df58cbSTejun Heo 	/* Determine whether a hotplug event has occurred.  Both
1643f9df58cbSTejun Heo 	 * SError.N/X are considered hotplug events for enabled or
1644f9df58cbSTejun Heo 	 * host links.  For disabled PMP links, only N bit is
1645f9df58cbSTejun Heo 	 * considered as X bit is left at 1 for link plugging.
1646f9df58cbSTejun Heo 	 */
1647eb0e85e3STejun Heo 	if (link->lpm_policy > ATA_LPM_MAX_POWER)
16486b7ae954STejun Heo 		hotplug_mask = 0;	/* hotplug doesn't work w/ LPM */
16496b7ae954STejun Heo 	else if (!(link->flags & ATA_LFLAG_DISABLED) || ata_is_host_link(link))
1650f9df58cbSTejun Heo 		hotplug_mask = SERR_PHYRDY_CHG | SERR_DEV_XCHG;
1651f9df58cbSTejun Heo 	else
1652f9df58cbSTejun Heo 		hotplug_mask = SERR_PHYRDY_CHG;
1653f9df58cbSTejun Heo 
1654f9df58cbSTejun Heo 	if (serror & hotplug_mask)
1655c6fd2807SJeff Garzik 		ata_ehi_hotplugged(&ehc->i);
1656c6fd2807SJeff Garzik 
1657c6fd2807SJeff Garzik 	ehc->i.err_mask |= err_mask;
1658c6fd2807SJeff Garzik 	ehc->i.action |= action;
1659c6fd2807SJeff Garzik }
1660c6fd2807SJeff Garzik 
1661c6fd2807SJeff Garzik /**
1662c6fd2807SJeff Garzik  *	ata_eh_analyze_ncq_error - analyze NCQ error
16630260731fSTejun Heo  *	@link: ATA link to analyze NCQ error for
1664c6fd2807SJeff Garzik  *
1665c6fd2807SJeff Garzik  *	Read log page 10h, determine the offending qc and acquire
1666c6fd2807SJeff Garzik  *	error status TF.  For NCQ device errors, all LLDDs have to do
1667c6fd2807SJeff Garzik  *	is setting AC_ERR_DEV in ehi->err_mask.  This function takes
1668c6fd2807SJeff Garzik  *	care of the rest.
1669c6fd2807SJeff Garzik  *
1670c6fd2807SJeff Garzik  *	LOCKING:
1671c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
1672c6fd2807SJeff Garzik  */
167310acf3b0SMark Lord void ata_eh_analyze_ncq_error(struct ata_link *link)
1674c6fd2807SJeff Garzik {
16750260731fSTejun Heo 	struct ata_port *ap = link->ap;
16760260731fSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
16770260731fSTejun Heo 	struct ata_device *dev = link->device;
1678c6fd2807SJeff Garzik 	struct ata_queued_cmd *qc;
1679c6fd2807SJeff Garzik 	struct ata_taskfile tf;
1680c6fd2807SJeff Garzik 	int tag, rc;
1681c6fd2807SJeff Garzik 
1682c6fd2807SJeff Garzik 	/* if frozen, we can't do much */
1683c6fd2807SJeff Garzik 	if (ap->pflags & ATA_PFLAG_FROZEN)
1684c6fd2807SJeff Garzik 		return;
1685c6fd2807SJeff Garzik 
1686c6fd2807SJeff Garzik 	/* is it NCQ device error? */
16870260731fSTejun Heo 	if (!link->sactive || !(ehc->i.err_mask & AC_ERR_DEV))
1688c6fd2807SJeff Garzik 		return;
1689c6fd2807SJeff Garzik 
1690c6fd2807SJeff Garzik 	/* has LLDD analyzed already? */
1691258c4e5cSJens Axboe 	ata_qc_for_each_raw(ap, qc, tag) {
1692c6fd2807SJeff Garzik 		if (!(qc->flags & ATA_QCFLAG_FAILED))
1693c6fd2807SJeff Garzik 			continue;
1694c6fd2807SJeff Garzik 
1695c6fd2807SJeff Garzik 		if (qc->err_mask)
1696c6fd2807SJeff Garzik 			return;
1697c6fd2807SJeff Garzik 	}
1698c6fd2807SJeff Garzik 
1699c6fd2807SJeff Garzik 	/* okay, this error is ours */
1700a09bf4cdSJeff Garzik 	memset(&tf, 0, sizeof(tf));
1701c6fd2807SJeff Garzik 	rc = ata_eh_read_log_10h(dev, &tag, &tf);
1702c6fd2807SJeff Garzik 	if (rc) {
1703a9a79dfeSJoe Perches 		ata_link_err(link, "failed to read log page 10h (errno=%d)\n",
1704a9a79dfeSJoe Perches 			     rc);
1705c6fd2807SJeff Garzik 		return;
1706c6fd2807SJeff Garzik 	}
1707c6fd2807SJeff Garzik 
17080260731fSTejun Heo 	if (!(link->sactive & (1 << tag))) {
1709a9a79dfeSJoe Perches 		ata_link_err(link, "log page 10h reported inactive tag %d\n",
1710a9a79dfeSJoe Perches 			     tag);
1711c6fd2807SJeff Garzik 		return;
1712c6fd2807SJeff Garzik 	}
1713c6fd2807SJeff Garzik 
1714c6fd2807SJeff Garzik 	/* we've got the perpetrator, condemn it */
1715c6fd2807SJeff Garzik 	qc = __ata_qc_from_tag(ap, tag);
1716c6fd2807SJeff Garzik 	memcpy(&qc->result_tf, &tf, sizeof(tf));
1717a6116c9eSMark Lord 	qc->result_tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
17185335b729STejun Heo 	qc->err_mask |= AC_ERR_DEV | AC_ERR_NCQ;
1719d238ffd5SHannes Reinecke 	if ((qc->result_tf.command & ATA_SENSE) || qc->result_tf.auxiliary) {
17205b01e4b9SHannes Reinecke 		char sense_key, asc, ascq;
17215b01e4b9SHannes Reinecke 
17225b01e4b9SHannes Reinecke 		sense_key = (qc->result_tf.auxiliary >> 16) & 0xff;
17235b01e4b9SHannes Reinecke 		asc = (qc->result_tf.auxiliary >> 8) & 0xff;
17245b01e4b9SHannes Reinecke 		ascq = qc->result_tf.auxiliary & 0xff;
172506dbde5fSHannes Reinecke 		ata_scsi_set_sense(dev, qc->scsicmd, sense_key, asc, ascq);
1726492bf621SHannes Reinecke 		ata_scsi_set_sense_information(dev, qc->scsicmd,
1727492bf621SHannes Reinecke 					       &qc->result_tf);
17285b01e4b9SHannes Reinecke 		qc->flags |= ATA_QCFLAG_SENSE_VALID;
17295b01e4b9SHannes Reinecke 	}
17305b01e4b9SHannes Reinecke 
1731c6fd2807SJeff Garzik 	ehc->i.err_mask &= ~AC_ERR_DEV;
1732c6fd2807SJeff Garzik }
1733c6fd2807SJeff Garzik 
1734c6fd2807SJeff Garzik /**
1735c6fd2807SJeff Garzik  *	ata_eh_analyze_tf - analyze taskfile of a failed qc
1736c6fd2807SJeff Garzik  *	@qc: qc to analyze
1737c6fd2807SJeff Garzik  *	@tf: Taskfile registers to analyze
1738c6fd2807SJeff Garzik  *
1739c6fd2807SJeff Garzik  *	Analyze taskfile of @qc and further determine cause of
1740c6fd2807SJeff Garzik  *	failure.  This function also requests ATAPI sense data if
174125985edcSLucas De Marchi  *	available.
1742c6fd2807SJeff Garzik  *
1743c6fd2807SJeff Garzik  *	LOCKING:
1744c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
1745c6fd2807SJeff Garzik  *
1746c6fd2807SJeff Garzik  *	RETURNS:
1747c6fd2807SJeff Garzik  *	Determined recovery action
1748c6fd2807SJeff Garzik  */
1749c6fd2807SJeff Garzik static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc,
1750c6fd2807SJeff Garzik 				      const struct ata_taskfile *tf)
1751c6fd2807SJeff Garzik {
1752c6fd2807SJeff Garzik 	unsigned int tmp, action = 0;
1753c6fd2807SJeff Garzik 	u8 stat = tf->command, err = tf->feature;
1754c6fd2807SJeff Garzik 
1755c6fd2807SJeff Garzik 	if ((stat & (ATA_BUSY | ATA_DRQ | ATA_DRDY)) != ATA_DRDY) {
1756c6fd2807SJeff Garzik 		qc->err_mask |= AC_ERR_HSM;
1757cf480626STejun Heo 		return ATA_EH_RESET;
1758c6fd2807SJeff Garzik 	}
1759c6fd2807SJeff Garzik 
1760e87fd28cSHannes Reinecke 	if (stat & (ATA_ERR | ATA_DF)) {
1761a51d644aSTejun Heo 		qc->err_mask |= AC_ERR_DEV;
1762e87fd28cSHannes Reinecke 		/*
1763e87fd28cSHannes Reinecke 		 * Sense data reporting does not work if the
1764e87fd28cSHannes Reinecke 		 * device fault bit is set.
1765e87fd28cSHannes Reinecke 		 */
1766e87fd28cSHannes Reinecke 		if (stat & ATA_DF)
1767e87fd28cSHannes Reinecke 			stat &= ~ATA_SENSE;
1768e87fd28cSHannes Reinecke 	} else {
1769c6fd2807SJeff Garzik 		return 0;
1770e87fd28cSHannes Reinecke 	}
1771c6fd2807SJeff Garzik 
1772c6fd2807SJeff Garzik 	switch (qc->dev->class) {
1773c6fd2807SJeff Garzik 	case ATA_DEV_ATA:
17749162c657SHannes Reinecke 	case ATA_DEV_ZAC:
1775e87fd28cSHannes Reinecke 		if (stat & ATA_SENSE)
1776e87fd28cSHannes Reinecke 			ata_eh_request_sense(qc, qc->scsicmd);
1777c6fd2807SJeff Garzik 		if (err & ATA_ICRC)
1778c6fd2807SJeff Garzik 			qc->err_mask |= AC_ERR_ATA_BUS;
1779eec7e1c1SAlexey Asemov 		if (err & (ATA_UNC | ATA_AMNF))
1780c6fd2807SJeff Garzik 			qc->err_mask |= AC_ERR_MEDIA;
1781c6fd2807SJeff Garzik 		if (err & ATA_IDNF)
1782c6fd2807SJeff Garzik 			qc->err_mask |= AC_ERR_INVALID;
1783c6fd2807SJeff Garzik 		break;
1784c6fd2807SJeff Garzik 
1785c6fd2807SJeff Garzik 	case ATA_DEV_ATAPI:
1786a569a30dSTejun Heo 		if (!(qc->ap->pflags & ATA_PFLAG_FROZEN)) {
17873eabddb8STejun Heo 			tmp = atapi_eh_request_sense(qc->dev,
17883eabddb8STejun Heo 						qc->scsicmd->sense_buffer,
17893eabddb8STejun Heo 						qc->result_tf.feature >> 4);
17903852e373SHannes Reinecke 			if (!tmp)
1791c6fd2807SJeff Garzik 				qc->flags |= ATA_QCFLAG_SENSE_VALID;
17923852e373SHannes Reinecke 			else
1793c6fd2807SJeff Garzik 				qc->err_mask |= tmp;
1794c6fd2807SJeff Garzik 		}
1795a569a30dSTejun Heo 	}
1796c6fd2807SJeff Garzik 
17973852e373SHannes Reinecke 	if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
17983852e373SHannes Reinecke 		int ret = scsi_check_sense(qc->scsicmd);
17993852e373SHannes Reinecke 		/*
180079487259SDamien Le Moal 		 * SUCCESS here means that the sense code could be
18013852e373SHannes Reinecke 		 * evaluated and should be passed to the upper layers
18023852e373SHannes Reinecke 		 * for correct evaluation.
180379487259SDamien Le Moal 		 * FAILED means the sense code could not be interpreted
18043852e373SHannes Reinecke 		 * and the device would need to be reset.
18053852e373SHannes Reinecke 		 * NEEDS_RETRY and ADD_TO_MLQUEUE means that the
18063852e373SHannes Reinecke 		 * command would need to be retried.
18073852e373SHannes Reinecke 		 */
18083852e373SHannes Reinecke 		if (ret == NEEDS_RETRY || ret == ADD_TO_MLQUEUE) {
18093852e373SHannes Reinecke 			qc->flags |= ATA_QCFLAG_RETRY;
18103852e373SHannes Reinecke 			qc->err_mask |= AC_ERR_OTHER;
18113852e373SHannes Reinecke 		} else if (ret != SUCCESS) {
18123852e373SHannes Reinecke 			qc->err_mask |= AC_ERR_HSM;
18133852e373SHannes Reinecke 		}
18143852e373SHannes Reinecke 	}
1815c6fd2807SJeff Garzik 	if (qc->err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT | AC_ERR_ATA_BUS))
1816cf480626STejun Heo 		action |= ATA_EH_RESET;
1817c6fd2807SJeff Garzik 
1818c6fd2807SJeff Garzik 	return action;
1819c6fd2807SJeff Garzik }
1820c6fd2807SJeff Garzik 
182176326ac1STejun Heo static int ata_eh_categorize_error(unsigned int eflags, unsigned int err_mask,
182276326ac1STejun Heo 				   int *xfer_ok)
1823c6fd2807SJeff Garzik {
182476326ac1STejun Heo 	int base = 0;
182576326ac1STejun Heo 
182676326ac1STejun Heo 	if (!(eflags & ATA_EFLAG_DUBIOUS_XFER))
182776326ac1STejun Heo 		*xfer_ok = 1;
182876326ac1STejun Heo 
182976326ac1STejun Heo 	if (!*xfer_ok)
183075f9cafcSTejun Heo 		base = ATA_ECAT_DUBIOUS_NONE;
183176326ac1STejun Heo 
18327d47e8d4STejun Heo 	if (err_mask & AC_ERR_ATA_BUS)
183376326ac1STejun Heo 		return base + ATA_ECAT_ATA_BUS;
1834c6fd2807SJeff Garzik 
18357d47e8d4STejun Heo 	if (err_mask & AC_ERR_TIMEOUT)
183676326ac1STejun Heo 		return base + ATA_ECAT_TOUT_HSM;
18377d47e8d4STejun Heo 
18383884f7b0STejun Heo 	if (eflags & ATA_EFLAG_IS_IO) {
18397d47e8d4STejun Heo 		if (err_mask & AC_ERR_HSM)
184076326ac1STejun Heo 			return base + ATA_ECAT_TOUT_HSM;
18417d47e8d4STejun Heo 		if ((err_mask &
18427d47e8d4STejun Heo 		     (AC_ERR_DEV|AC_ERR_MEDIA|AC_ERR_INVALID)) == AC_ERR_DEV)
184376326ac1STejun Heo 			return base + ATA_ECAT_UNK_DEV;
1844c6fd2807SJeff Garzik 	}
1845c6fd2807SJeff Garzik 
1846c6fd2807SJeff Garzik 	return 0;
1847c6fd2807SJeff Garzik }
1848c6fd2807SJeff Garzik 
18497d47e8d4STejun Heo struct speed_down_verdict_arg {
1850c6fd2807SJeff Garzik 	u64 since;
185176326ac1STejun Heo 	int xfer_ok;
18523884f7b0STejun Heo 	int nr_errors[ATA_ECAT_NR];
1853c6fd2807SJeff Garzik };
1854c6fd2807SJeff Garzik 
18557d47e8d4STejun Heo static int speed_down_verdict_cb(struct ata_ering_entry *ent, void *void_arg)
1856c6fd2807SJeff Garzik {
18577d47e8d4STejun Heo 	struct speed_down_verdict_arg *arg = void_arg;
185876326ac1STejun Heo 	int cat;
1859c6fd2807SJeff Garzik 
1860d9027470SGwendal Grignou 	if ((ent->eflags & ATA_EFLAG_OLD_ER) || (ent->timestamp < arg->since))
1861c6fd2807SJeff Garzik 		return -1;
1862c6fd2807SJeff Garzik 
186376326ac1STejun Heo 	cat = ata_eh_categorize_error(ent->eflags, ent->err_mask,
186476326ac1STejun Heo 				      &arg->xfer_ok);
18657d47e8d4STejun Heo 	arg->nr_errors[cat]++;
186676326ac1STejun Heo 
1867c6fd2807SJeff Garzik 	return 0;
1868c6fd2807SJeff Garzik }
1869c6fd2807SJeff Garzik 
1870c6fd2807SJeff Garzik /**
18717d47e8d4STejun Heo  *	ata_eh_speed_down_verdict - Determine speed down verdict
1872c6fd2807SJeff Garzik  *	@dev: Device of interest
1873c6fd2807SJeff Garzik  *
1874c6fd2807SJeff Garzik  *	This function examines error ring of @dev and determines
18757d47e8d4STejun Heo  *	whether NCQ needs to be turned off, transfer speed should be
18767d47e8d4STejun Heo  *	stepped down, or falling back to PIO is necessary.
1877c6fd2807SJeff Garzik  *
18783884f7b0STejun Heo  *	ECAT_ATA_BUS	: ATA_BUS error for any command
1879c6fd2807SJeff Garzik  *
18803884f7b0STejun Heo  *	ECAT_TOUT_HSM	: TIMEOUT for any command or HSM violation for
18813884f7b0STejun Heo  *			  IO commands
18827d47e8d4STejun Heo  *
18833884f7b0STejun Heo  *	ECAT_UNK_DEV	: Unknown DEV error for IO commands
1884c6fd2807SJeff Garzik  *
188576326ac1STejun Heo  *	ECAT_DUBIOUS_*	: Identical to above three but occurred while
188676326ac1STejun Heo  *			  data transfer hasn't been verified.
188776326ac1STejun Heo  *
18883884f7b0STejun Heo  *	Verdicts are
18897d47e8d4STejun Heo  *
18903884f7b0STejun Heo  *	NCQ_OFF		: Turn off NCQ.
18917d47e8d4STejun Heo  *
18923884f7b0STejun Heo  *	SPEED_DOWN	: Speed down transfer speed but don't fall back
18933884f7b0STejun Heo  *			  to PIO.
18943884f7b0STejun Heo  *
18953884f7b0STejun Heo  *	FALLBACK_TO_PIO	: Fall back to PIO.
18963884f7b0STejun Heo  *
18973884f7b0STejun Heo  *	Even if multiple verdicts are returned, only one action is
189876326ac1STejun Heo  *	taken per error.  An action triggered by non-DUBIOUS errors
189976326ac1STejun Heo  *	clears ering, while one triggered by DUBIOUS_* errors doesn't.
190076326ac1STejun Heo  *	This is to expedite speed down decisions right after device is
190176326ac1STejun Heo  *	initially configured.
19023884f7b0STejun Heo  *
19034091fb95SMasahiro Yamada  *	The following are speed down rules.  #1 and #2 deal with
190476326ac1STejun Heo  *	DUBIOUS errors.
190576326ac1STejun Heo  *
190676326ac1STejun Heo  *	1. If more than one DUBIOUS_ATA_BUS or DUBIOUS_TOUT_HSM errors
190776326ac1STejun Heo  *	   occurred during last 5 mins, SPEED_DOWN and FALLBACK_TO_PIO.
190876326ac1STejun Heo  *
190976326ac1STejun Heo  *	2. If more than one DUBIOUS_TOUT_HSM or DUBIOUS_UNK_DEV errors
191076326ac1STejun Heo  *	   occurred during last 5 mins, NCQ_OFF.
191176326ac1STejun Heo  *
191276326ac1STejun Heo  *	3. If more than 8 ATA_BUS, TOUT_HSM or UNK_DEV errors
191325985edcSLucas De Marchi  *	   occurred during last 5 mins, FALLBACK_TO_PIO
19143884f7b0STejun Heo  *
191576326ac1STejun Heo  *	4. If more than 3 TOUT_HSM or UNK_DEV errors occurred
19163884f7b0STejun Heo  *	   during last 10 mins, NCQ_OFF.
19173884f7b0STejun Heo  *
191876326ac1STejun Heo  *	5. If more than 3 ATA_BUS or TOUT_HSM errors, or more than 6
19193884f7b0STejun Heo  *	   UNK_DEV errors occurred during last 10 mins, SPEED_DOWN.
19207d47e8d4STejun Heo  *
1921c6fd2807SJeff Garzik  *	LOCKING:
1922c6fd2807SJeff Garzik  *	Inherited from caller.
1923c6fd2807SJeff Garzik  *
1924c6fd2807SJeff Garzik  *	RETURNS:
19257d47e8d4STejun Heo  *	OR of ATA_EH_SPDN_* flags.
1926c6fd2807SJeff Garzik  */
19277d47e8d4STejun Heo static unsigned int ata_eh_speed_down_verdict(struct ata_device *dev)
1928c6fd2807SJeff Garzik {
19297d47e8d4STejun Heo 	const u64 j5mins = 5LLU * 60 * HZ, j10mins = 10LLU * 60 * HZ;
19307d47e8d4STejun Heo 	u64 j64 = get_jiffies_64();
19317d47e8d4STejun Heo 	struct speed_down_verdict_arg arg;
19327d47e8d4STejun Heo 	unsigned int verdict = 0;
1933c6fd2807SJeff Garzik 
19343884f7b0STejun Heo 	/* scan past 5 mins of error history */
19353884f7b0STejun Heo 	memset(&arg, 0, sizeof(arg));
19363884f7b0STejun Heo 	arg.since = j64 - min(j64, j5mins);
19373884f7b0STejun Heo 	ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
19383884f7b0STejun Heo 
193976326ac1STejun Heo 	if (arg.nr_errors[ATA_ECAT_DUBIOUS_ATA_BUS] +
194076326ac1STejun Heo 	    arg.nr_errors[ATA_ECAT_DUBIOUS_TOUT_HSM] > 1)
194176326ac1STejun Heo 		verdict |= ATA_EH_SPDN_SPEED_DOWN |
194276326ac1STejun Heo 			ATA_EH_SPDN_FALLBACK_TO_PIO | ATA_EH_SPDN_KEEP_ERRORS;
194376326ac1STejun Heo 
194476326ac1STejun Heo 	if (arg.nr_errors[ATA_ECAT_DUBIOUS_TOUT_HSM] +
194576326ac1STejun Heo 	    arg.nr_errors[ATA_ECAT_DUBIOUS_UNK_DEV] > 1)
194676326ac1STejun Heo 		verdict |= ATA_EH_SPDN_NCQ_OFF | ATA_EH_SPDN_KEEP_ERRORS;
194776326ac1STejun Heo 
19483884f7b0STejun Heo 	if (arg.nr_errors[ATA_ECAT_ATA_BUS] +
19493884f7b0STejun Heo 	    arg.nr_errors[ATA_ECAT_TOUT_HSM] +
1950663f99b8STejun Heo 	    arg.nr_errors[ATA_ECAT_UNK_DEV] > 6)
19513884f7b0STejun Heo 		verdict |= ATA_EH_SPDN_FALLBACK_TO_PIO;
19523884f7b0STejun Heo 
19537d47e8d4STejun Heo 	/* scan past 10 mins of error history */
1954c6fd2807SJeff Garzik 	memset(&arg, 0, sizeof(arg));
19557d47e8d4STejun Heo 	arg.since = j64 - min(j64, j10mins);
19567d47e8d4STejun Heo 	ata_ering_map(&dev->ering, speed_down_verdict_cb, &arg);
1957c6fd2807SJeff Garzik 
19583884f7b0STejun Heo 	if (arg.nr_errors[ATA_ECAT_TOUT_HSM] +
19593884f7b0STejun Heo 	    arg.nr_errors[ATA_ECAT_UNK_DEV] > 3)
19607d47e8d4STejun Heo 		verdict |= ATA_EH_SPDN_NCQ_OFF;
19613884f7b0STejun Heo 
19623884f7b0STejun Heo 	if (arg.nr_errors[ATA_ECAT_ATA_BUS] +
19633884f7b0STejun Heo 	    arg.nr_errors[ATA_ECAT_TOUT_HSM] > 3 ||
1964663f99b8STejun Heo 	    arg.nr_errors[ATA_ECAT_UNK_DEV] > 6)
19657d47e8d4STejun Heo 		verdict |= ATA_EH_SPDN_SPEED_DOWN;
1966c6fd2807SJeff Garzik 
19677d47e8d4STejun Heo 	return verdict;
1968c6fd2807SJeff Garzik }
1969c6fd2807SJeff Garzik 
1970c6fd2807SJeff Garzik /**
1971c6fd2807SJeff Garzik  *	ata_eh_speed_down - record error and speed down if necessary
1972c6fd2807SJeff Garzik  *	@dev: Failed device
19733884f7b0STejun Heo  *	@eflags: mask of ATA_EFLAG_* flags
1974c6fd2807SJeff Garzik  *	@err_mask: err_mask of the error
1975c6fd2807SJeff Garzik  *
1976c6fd2807SJeff Garzik  *	Record error and examine error history to determine whether
1977c6fd2807SJeff Garzik  *	adjusting transmission speed is necessary.  It also sets
1978c6fd2807SJeff Garzik  *	transmission limits appropriately if such adjustment is
1979c6fd2807SJeff Garzik  *	necessary.
1980c6fd2807SJeff Garzik  *
1981c6fd2807SJeff Garzik  *	LOCKING:
1982c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
1983c6fd2807SJeff Garzik  *
1984c6fd2807SJeff Garzik  *	RETURNS:
19857d47e8d4STejun Heo  *	Determined recovery action.
1986c6fd2807SJeff Garzik  */
19873884f7b0STejun Heo static unsigned int ata_eh_speed_down(struct ata_device *dev,
19883884f7b0STejun Heo 				unsigned int eflags, unsigned int err_mask)
1989c6fd2807SJeff Garzik {
1990b1c72916STejun Heo 	struct ata_link *link = ata_dev_phys_link(dev);
199176326ac1STejun Heo 	int xfer_ok = 0;
19927d47e8d4STejun Heo 	unsigned int verdict;
19937d47e8d4STejun Heo 	unsigned int action = 0;
19947d47e8d4STejun Heo 
19957d47e8d4STejun Heo 	/* don't bother if Cat-0 error */
199676326ac1STejun Heo 	if (ata_eh_categorize_error(eflags, err_mask, &xfer_ok) == 0)
1997c6fd2807SJeff Garzik 		return 0;
1998c6fd2807SJeff Garzik 
1999c6fd2807SJeff Garzik 	/* record error and determine whether speed down is necessary */
20003884f7b0STejun Heo 	ata_ering_record(&dev->ering, eflags, err_mask);
20017d47e8d4STejun Heo 	verdict = ata_eh_speed_down_verdict(dev);
2002c6fd2807SJeff Garzik 
20037d47e8d4STejun Heo 	/* turn off NCQ? */
20047d47e8d4STejun Heo 	if ((verdict & ATA_EH_SPDN_NCQ_OFF) &&
20057d47e8d4STejun Heo 	    (dev->flags & (ATA_DFLAG_PIO | ATA_DFLAG_NCQ |
20067d47e8d4STejun Heo 			   ATA_DFLAG_NCQ_OFF)) == ATA_DFLAG_NCQ) {
20077d47e8d4STejun Heo 		dev->flags |= ATA_DFLAG_NCQ_OFF;
2008a9a79dfeSJoe Perches 		ata_dev_warn(dev, "NCQ disabled due to excessive errors\n");
20097d47e8d4STejun Heo 		goto done;
20107d47e8d4STejun Heo 	}
2011c6fd2807SJeff Garzik 
20127d47e8d4STejun Heo 	/* speed down? */
20137d47e8d4STejun Heo 	if (verdict & ATA_EH_SPDN_SPEED_DOWN) {
2014c6fd2807SJeff Garzik 		/* speed down SATA link speed if possible */
2015a07d499bSTejun Heo 		if (sata_down_spd_limit(link, 0) == 0) {
2016cf480626STejun Heo 			action |= ATA_EH_RESET;
20177d47e8d4STejun Heo 			goto done;
20187d47e8d4STejun Heo 		}
2019c6fd2807SJeff Garzik 
2020c6fd2807SJeff Garzik 		/* lower transfer mode */
20217d47e8d4STejun Heo 		if (dev->spdn_cnt < 2) {
20227d47e8d4STejun Heo 			static const int dma_dnxfer_sel[] =
20237d47e8d4STejun Heo 				{ ATA_DNXFER_DMA, ATA_DNXFER_40C };
20247d47e8d4STejun Heo 			static const int pio_dnxfer_sel[] =
20257d47e8d4STejun Heo 				{ ATA_DNXFER_PIO, ATA_DNXFER_FORCE_PIO0 };
20267d47e8d4STejun Heo 			int sel;
2027c6fd2807SJeff Garzik 
20287d47e8d4STejun Heo 			if (dev->xfer_shift != ATA_SHIFT_PIO)
20297d47e8d4STejun Heo 				sel = dma_dnxfer_sel[dev->spdn_cnt];
20307d47e8d4STejun Heo 			else
20317d47e8d4STejun Heo 				sel = pio_dnxfer_sel[dev->spdn_cnt];
20327d47e8d4STejun Heo 
20337d47e8d4STejun Heo 			dev->spdn_cnt++;
20347d47e8d4STejun Heo 
20357d47e8d4STejun Heo 			if (ata_down_xfermask_limit(dev, sel) == 0) {
2036cf480626STejun Heo 				action |= ATA_EH_RESET;
20377d47e8d4STejun Heo 				goto done;
20387d47e8d4STejun Heo 			}
20397d47e8d4STejun Heo 		}
20407d47e8d4STejun Heo 	}
20417d47e8d4STejun Heo 
20427d47e8d4STejun Heo 	/* Fall back to PIO?  Slowing down to PIO is meaningless for
2043663f99b8STejun Heo 	 * SATA ATA devices.  Consider it only for PATA and SATAPI.
20447d47e8d4STejun Heo 	 */
20457d47e8d4STejun Heo 	if ((verdict & ATA_EH_SPDN_FALLBACK_TO_PIO) && (dev->spdn_cnt >= 2) &&
2046663f99b8STejun Heo 	    (link->ap->cbl != ATA_CBL_SATA || dev->class == ATA_DEV_ATAPI) &&
20477d47e8d4STejun Heo 	    (dev->xfer_shift != ATA_SHIFT_PIO)) {
20487d47e8d4STejun Heo 		if (ata_down_xfermask_limit(dev, ATA_DNXFER_FORCE_PIO) == 0) {
20497d47e8d4STejun Heo 			dev->spdn_cnt = 0;
2050cf480626STejun Heo 			action |= ATA_EH_RESET;
20517d47e8d4STejun Heo 			goto done;
20527d47e8d4STejun Heo 		}
20537d47e8d4STejun Heo 	}
20547d47e8d4STejun Heo 
2055c6fd2807SJeff Garzik 	return 0;
20567d47e8d4STejun Heo  done:
20577d47e8d4STejun Heo 	/* device has been slowed down, blow error history */
205876326ac1STejun Heo 	if (!(verdict & ATA_EH_SPDN_KEEP_ERRORS))
20597d47e8d4STejun Heo 		ata_ering_clear(&dev->ering);
20607d47e8d4STejun Heo 	return action;
2061c6fd2807SJeff Garzik }
2062c6fd2807SJeff Garzik 
2063c6fd2807SJeff Garzik /**
20648d899e70SMark Lord  *	ata_eh_worth_retry - analyze error and decide whether to retry
20658d899e70SMark Lord  *	@qc: qc to possibly retry
20668d899e70SMark Lord  *
20678d899e70SMark Lord  *	Look at the cause of the error and decide if a retry
20688d899e70SMark Lord  * 	might be useful or not.  We don't want to retry media errors
20698d899e70SMark Lord  *	because the drive itself has probably already taken 10-30 seconds
20708d899e70SMark Lord  *	doing its own internal retries before reporting the failure.
20718d899e70SMark Lord  */
20728d899e70SMark Lord static inline int ata_eh_worth_retry(struct ata_queued_cmd *qc)
20738d899e70SMark Lord {
20741eaca39aSBian Yu 	if (qc->err_mask & AC_ERR_MEDIA)
20758d899e70SMark Lord 		return 0;	/* don't retry media errors */
20768d899e70SMark Lord 	if (qc->flags & ATA_QCFLAG_IO)
20778d899e70SMark Lord 		return 1;	/* otherwise retry anything from fs stack */
20788d899e70SMark Lord 	if (qc->err_mask & AC_ERR_INVALID)
20798d899e70SMark Lord 		return 0;	/* don't retry these */
20808d899e70SMark Lord 	return qc->err_mask != AC_ERR_DEV;  /* retry if not dev error */
20818d899e70SMark Lord }
20828d899e70SMark Lord 
20838d899e70SMark Lord /**
20847eb49509SDamien Le Moal  *      ata_eh_quiet - check if we need to be quiet about a command error
20857eb49509SDamien Le Moal  *      @qc: qc to check
20867eb49509SDamien Le Moal  *
20877eb49509SDamien Le Moal  *      Look at the qc flags anbd its scsi command request flags to determine
20887eb49509SDamien Le Moal  *      if we need to be quiet about the command failure.
20897eb49509SDamien Le Moal  */
20907eb49509SDamien Le Moal static inline bool ata_eh_quiet(struct ata_queued_cmd *qc)
20917eb49509SDamien Le Moal {
20927eb49509SDamien Le Moal 	if (qc->scsicmd &&
20937eb49509SDamien Le Moal 	    qc->scsicmd->request->rq_flags & RQF_QUIET)
20947eb49509SDamien Le Moal 		qc->flags |= ATA_QCFLAG_QUIET;
20957eb49509SDamien Le Moal 	return qc->flags & ATA_QCFLAG_QUIET;
20967eb49509SDamien Le Moal }
20977eb49509SDamien Le Moal 
20987eb49509SDamien Le Moal /**
20999b1e2658STejun Heo  *	ata_eh_link_autopsy - analyze error and determine recovery action
21009b1e2658STejun Heo  *	@link: host link to perform autopsy on
2101c6fd2807SJeff Garzik  *
21020260731fSTejun Heo  *	Analyze why @link failed and determine which recovery actions
21030260731fSTejun Heo  *	are needed.  This function also sets more detailed AC_ERR_*
21040260731fSTejun Heo  *	values and fills sense data for ATAPI CHECK SENSE.
2105c6fd2807SJeff Garzik  *
2106c6fd2807SJeff Garzik  *	LOCKING:
2107c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
2108c6fd2807SJeff Garzik  */
21099b1e2658STejun Heo static void ata_eh_link_autopsy(struct ata_link *link)
2110c6fd2807SJeff Garzik {
21110260731fSTejun Heo 	struct ata_port *ap = link->ap;
2112936fd732STejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
2113258c4e5cSJens Axboe 	struct ata_queued_cmd *qc;
2114dfcc173dSTejun Heo 	struct ata_device *dev;
21153884f7b0STejun Heo 	unsigned int all_err_mask = 0, eflags = 0;
21167eb49509SDamien Le Moal 	int tag, nr_failed = 0, nr_quiet = 0;
2117c6fd2807SJeff Garzik 	u32 serror;
2118c6fd2807SJeff Garzik 	int rc;
2119c6fd2807SJeff Garzik 
2120c6fd2807SJeff Garzik 	DPRINTK("ENTER\n");
2121c6fd2807SJeff Garzik 
2122c6fd2807SJeff Garzik 	if (ehc->i.flags & ATA_EHI_NO_AUTOPSY)
2123c6fd2807SJeff Garzik 		return;
2124c6fd2807SJeff Garzik 
2125c6fd2807SJeff Garzik 	/* obtain and analyze SError */
2126936fd732STejun Heo 	rc = sata_scr_read(link, SCR_ERROR, &serror);
2127c6fd2807SJeff Garzik 	if (rc == 0) {
2128c6fd2807SJeff Garzik 		ehc->i.serror |= serror;
21290260731fSTejun Heo 		ata_eh_analyze_serror(link);
21304e57c517STejun Heo 	} else if (rc != -EOPNOTSUPP) {
2131cf480626STejun Heo 		/* SError read failed, force reset and probing */
2132b558edddSTejun Heo 		ehc->i.probe_mask |= ATA_ALL_DEVICES;
2133cf480626STejun Heo 		ehc->i.action |= ATA_EH_RESET;
21344e57c517STejun Heo 		ehc->i.err_mask |= AC_ERR_OTHER;
21354e57c517STejun Heo 	}
2136c6fd2807SJeff Garzik 
2137c6fd2807SJeff Garzik 	/* analyze NCQ failure */
21380260731fSTejun Heo 	ata_eh_analyze_ncq_error(link);
2139c6fd2807SJeff Garzik 
2140c6fd2807SJeff Garzik 	/* any real error trumps AC_ERR_OTHER */
2141c6fd2807SJeff Garzik 	if (ehc->i.err_mask & ~AC_ERR_OTHER)
2142c6fd2807SJeff Garzik 		ehc->i.err_mask &= ~AC_ERR_OTHER;
2143c6fd2807SJeff Garzik 
2144c6fd2807SJeff Garzik 	all_err_mask |= ehc->i.err_mask;
2145c6fd2807SJeff Garzik 
2146258c4e5cSJens Axboe 	ata_qc_for_each_raw(ap, qc, tag) {
2147b1c72916STejun Heo 		if (!(qc->flags & ATA_QCFLAG_FAILED) ||
2148b1c72916STejun Heo 		    ata_dev_phys_link(qc->dev) != link)
2149c6fd2807SJeff Garzik 			continue;
2150c6fd2807SJeff Garzik 
2151c6fd2807SJeff Garzik 		/* inherit upper level err_mask */
2152c6fd2807SJeff Garzik 		qc->err_mask |= ehc->i.err_mask;
2153c6fd2807SJeff Garzik 
2154c6fd2807SJeff Garzik 		/* analyze TF */
2155c6fd2807SJeff Garzik 		ehc->i.action |= ata_eh_analyze_tf(qc, &qc->result_tf);
2156c6fd2807SJeff Garzik 
2157c6fd2807SJeff Garzik 		/* DEV errors are probably spurious in case of ATA_BUS error */
2158c6fd2807SJeff Garzik 		if (qc->err_mask & AC_ERR_ATA_BUS)
2159c6fd2807SJeff Garzik 			qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_MEDIA |
2160c6fd2807SJeff Garzik 					  AC_ERR_INVALID);
2161c6fd2807SJeff Garzik 
2162c6fd2807SJeff Garzik 		/* any real error trumps unknown error */
2163c6fd2807SJeff Garzik 		if (qc->err_mask & ~AC_ERR_OTHER)
2164c6fd2807SJeff Garzik 			qc->err_mask &= ~AC_ERR_OTHER;
2165c6fd2807SJeff Garzik 
2166804689adSDamien Le Moal 		/*
2167804689adSDamien Le Moal 		 * SENSE_VALID trumps dev/unknown error and revalidation. Upper
2168804689adSDamien Le Moal 		 * layers will determine whether the command is worth retrying
2169804689adSDamien Le Moal 		 * based on the sense data and device class/type. Otherwise,
2170804689adSDamien Le Moal 		 * determine directly if the command is worth retrying using its
2171804689adSDamien Le Moal 		 * error mask and flags.
2172804689adSDamien Le Moal 		 */
2173f90f0828STejun Heo 		if (qc->flags & ATA_QCFLAG_SENSE_VALID)
2174c6fd2807SJeff Garzik 			qc->err_mask &= ~(AC_ERR_DEV | AC_ERR_OTHER);
2175804689adSDamien Le Moal 		else if (ata_eh_worth_retry(qc))
217603faab78STejun Heo 			qc->flags |= ATA_QCFLAG_RETRY;
217703faab78STejun Heo 
2178c6fd2807SJeff Garzik 		/* accumulate error info */
2179c6fd2807SJeff Garzik 		ehc->i.dev = qc->dev;
2180c6fd2807SJeff Garzik 		all_err_mask |= qc->err_mask;
2181c6fd2807SJeff Garzik 		if (qc->flags & ATA_QCFLAG_IO)
21823884f7b0STejun Heo 			eflags |= ATA_EFLAG_IS_IO;
2183255c03d1SHannes Reinecke 		trace_ata_eh_link_autopsy_qc(qc);
21847eb49509SDamien Le Moal 
21857eb49509SDamien Le Moal 		/* Count quiet errors */
21867eb49509SDamien Le Moal 		if (ata_eh_quiet(qc))
21877eb49509SDamien Le Moal 			nr_quiet++;
21887eb49509SDamien Le Moal 		nr_failed++;
2189c6fd2807SJeff Garzik 	}
2190c6fd2807SJeff Garzik 
21917eb49509SDamien Le Moal 	/* If all failed commands requested silence, then be quiet */
21927eb49509SDamien Le Moal 	if (nr_quiet == nr_failed)
21937eb49509SDamien Le Moal 		ehc->i.flags |= ATA_EHI_QUIET;
21947eb49509SDamien Le Moal 
2195c6fd2807SJeff Garzik 	/* enforce default EH actions */
2196c6fd2807SJeff Garzik 	if (ap->pflags & ATA_PFLAG_FROZEN ||
2197c6fd2807SJeff Garzik 	    all_err_mask & (AC_ERR_HSM | AC_ERR_TIMEOUT))
2198cf480626STejun Heo 		ehc->i.action |= ATA_EH_RESET;
21993884f7b0STejun Heo 	else if (((eflags & ATA_EFLAG_IS_IO) && all_err_mask) ||
22003884f7b0STejun Heo 		 (!(eflags & ATA_EFLAG_IS_IO) && (all_err_mask & ~AC_ERR_DEV)))
2201c6fd2807SJeff Garzik 		ehc->i.action |= ATA_EH_REVALIDATE;
2202c6fd2807SJeff Garzik 
2203dfcc173dSTejun Heo 	/* If we have offending qcs and the associated failed device,
2204dfcc173dSTejun Heo 	 * perform per-dev EH action only on the offending device.
2205dfcc173dSTejun Heo 	 */
2206c6fd2807SJeff Garzik 	if (ehc->i.dev) {
2207c6fd2807SJeff Garzik 		ehc->i.dev_action[ehc->i.dev->devno] |=
2208c6fd2807SJeff Garzik 			ehc->i.action & ATA_EH_PERDEV_MASK;
2209c6fd2807SJeff Garzik 		ehc->i.action &= ~ATA_EH_PERDEV_MASK;
2210c6fd2807SJeff Garzik 	}
2211c6fd2807SJeff Garzik 
22122695e366STejun Heo 	/* propagate timeout to host link */
22132695e366STejun Heo 	if ((all_err_mask & AC_ERR_TIMEOUT) && !ata_is_host_link(link))
22142695e366STejun Heo 		ap->link.eh_context.i.err_mask |= AC_ERR_TIMEOUT;
22152695e366STejun Heo 
22162695e366STejun Heo 	/* record error and consider speeding down */
2217dfcc173dSTejun Heo 	dev = ehc->i.dev;
22182695e366STejun Heo 	if (!dev && ((ata_link_max_devices(link) == 1 &&
22192695e366STejun Heo 		      ata_dev_enabled(link->device))))
2220dfcc173dSTejun Heo 	    dev = link->device;
2221dfcc173dSTejun Heo 
222276326ac1STejun Heo 	if (dev) {
222376326ac1STejun Heo 		if (dev->flags & ATA_DFLAG_DUBIOUS_XFER)
222476326ac1STejun Heo 			eflags |= ATA_EFLAG_DUBIOUS_XFER;
22253884f7b0STejun Heo 		ehc->i.action |= ata_eh_speed_down(dev, eflags, all_err_mask);
2226255c03d1SHannes Reinecke 		trace_ata_eh_link_autopsy(dev, ehc->i.action, all_err_mask);
2227f1601113SRameshwar Prasad Sahu 	}
2228c6fd2807SJeff Garzik 	DPRINTK("EXIT\n");
2229c6fd2807SJeff Garzik }
2230c6fd2807SJeff Garzik 
2231c6fd2807SJeff Garzik /**
22329b1e2658STejun Heo  *	ata_eh_autopsy - analyze error and determine recovery action
22339b1e2658STejun Heo  *	@ap: host port to perform autopsy on
22349b1e2658STejun Heo  *
22359b1e2658STejun Heo  *	Analyze all links of @ap and determine why they failed and
22369b1e2658STejun Heo  *	which recovery actions are needed.
22379b1e2658STejun Heo  *
22389b1e2658STejun Heo  *	LOCKING:
22399b1e2658STejun Heo  *	Kernel thread context (may sleep).
22409b1e2658STejun Heo  */
2241fb7fd614STejun Heo void ata_eh_autopsy(struct ata_port *ap)
22429b1e2658STejun Heo {
22439b1e2658STejun Heo 	struct ata_link *link;
22449b1e2658STejun Heo 
22451eca4365STejun Heo 	ata_for_each_link(link, ap, EDGE)
22469b1e2658STejun Heo 		ata_eh_link_autopsy(link);
22472695e366STejun Heo 
2248b1c72916STejun Heo 	/* Handle the frigging slave link.  Autopsy is done similarly
2249b1c72916STejun Heo 	 * but actions and flags are transferred over to the master
2250b1c72916STejun Heo 	 * link and handled from there.
2251b1c72916STejun Heo 	 */
2252b1c72916STejun Heo 	if (ap->slave_link) {
2253b1c72916STejun Heo 		struct ata_eh_context *mehc = &ap->link.eh_context;
2254b1c72916STejun Heo 		struct ata_eh_context *sehc = &ap->slave_link->eh_context;
2255b1c72916STejun Heo 
2256848e4c68STejun Heo 		/* transfer control flags from master to slave */
2257848e4c68STejun Heo 		sehc->i.flags |= mehc->i.flags & ATA_EHI_TO_SLAVE_MASK;
2258848e4c68STejun Heo 
2259848e4c68STejun Heo 		/* perform autopsy on the slave link */
2260b1c72916STejun Heo 		ata_eh_link_autopsy(ap->slave_link);
2261b1c72916STejun Heo 
2262848e4c68STejun Heo 		/* transfer actions from slave to master and clear slave */
2263b1c72916STejun Heo 		ata_eh_about_to_do(ap->slave_link, NULL, ATA_EH_ALL_ACTIONS);
2264b1c72916STejun Heo 		mehc->i.action		|= sehc->i.action;
2265b1c72916STejun Heo 		mehc->i.dev_action[1]	|= sehc->i.dev_action[1];
2266b1c72916STejun Heo 		mehc->i.flags		|= sehc->i.flags;
2267b1c72916STejun Heo 		ata_eh_done(ap->slave_link, NULL, ATA_EH_ALL_ACTIONS);
2268b1c72916STejun Heo 	}
2269b1c72916STejun Heo 
22702695e366STejun Heo 	/* Autopsy of fanout ports can affect host link autopsy.
22712695e366STejun Heo 	 * Perform host link autopsy last.
22722695e366STejun Heo 	 */
2273071f44b1STejun Heo 	if (sata_pmp_attached(ap))
22742695e366STejun Heo 		ata_eh_link_autopsy(&ap->link);
22759b1e2658STejun Heo }
22769b1e2658STejun Heo 
22779b1e2658STejun Heo /**
22786521148cSRobert Hancock  *	ata_get_cmd_descript - get description for ATA command
22796521148cSRobert Hancock  *	@command: ATA command code to get description for
22806521148cSRobert Hancock  *
22816521148cSRobert Hancock  *	Return a textual description of the given command, or NULL if the
22826521148cSRobert Hancock  *	command is not known.
22836521148cSRobert Hancock  *
22846521148cSRobert Hancock  *	LOCKING:
22856521148cSRobert Hancock  *	None
22866521148cSRobert Hancock  */
22876521148cSRobert Hancock const char *ata_get_cmd_descript(u8 command)
22886521148cSRobert Hancock {
22896521148cSRobert Hancock #ifdef CONFIG_ATA_VERBOSE_ERROR
22906521148cSRobert Hancock 	static const struct
22916521148cSRobert Hancock 	{
22926521148cSRobert Hancock 		u8 command;
22936521148cSRobert Hancock 		const char *text;
22946521148cSRobert Hancock 	} cmd_descr[] = {
22956521148cSRobert Hancock 		{ ATA_CMD_DEV_RESET,		"DEVICE RESET" },
22966521148cSRobert Hancock 		{ ATA_CMD_CHK_POWER,		"CHECK POWER MODE" },
22976521148cSRobert Hancock 		{ ATA_CMD_STANDBY,		"STANDBY" },
22986521148cSRobert Hancock 		{ ATA_CMD_IDLE,			"IDLE" },
22996521148cSRobert Hancock 		{ ATA_CMD_EDD,			"EXECUTE DEVICE DIAGNOSTIC" },
23006521148cSRobert Hancock 		{ ATA_CMD_DOWNLOAD_MICRO,	"DOWNLOAD MICROCODE" },
23013915c3b5SRobert Hancock 		{ ATA_CMD_DOWNLOAD_MICRO_DMA,	"DOWNLOAD MICROCODE DMA" },
23026521148cSRobert Hancock 		{ ATA_CMD_NOP,			"NOP" },
23036521148cSRobert Hancock 		{ ATA_CMD_FLUSH,		"FLUSH CACHE" },
23046521148cSRobert Hancock 		{ ATA_CMD_FLUSH_EXT,		"FLUSH CACHE EXT" },
23056521148cSRobert Hancock 		{ ATA_CMD_ID_ATA,		"IDENTIFY DEVICE" },
23066521148cSRobert Hancock 		{ ATA_CMD_ID_ATAPI,		"IDENTIFY PACKET DEVICE" },
23076521148cSRobert Hancock 		{ ATA_CMD_SERVICE,		"SERVICE" },
23086521148cSRobert Hancock 		{ ATA_CMD_READ,			"READ DMA" },
23096521148cSRobert Hancock 		{ ATA_CMD_READ_EXT,		"READ DMA EXT" },
23106521148cSRobert Hancock 		{ ATA_CMD_READ_QUEUED,		"READ DMA QUEUED" },
23116521148cSRobert Hancock 		{ ATA_CMD_READ_STREAM_EXT,	"READ STREAM EXT" },
23126521148cSRobert Hancock 		{ ATA_CMD_READ_STREAM_DMA_EXT,  "READ STREAM DMA EXT" },
23136521148cSRobert Hancock 		{ ATA_CMD_WRITE,		"WRITE DMA" },
23146521148cSRobert Hancock 		{ ATA_CMD_WRITE_EXT,		"WRITE DMA EXT" },
23156521148cSRobert Hancock 		{ ATA_CMD_WRITE_QUEUED,		"WRITE DMA QUEUED EXT" },
23166521148cSRobert Hancock 		{ ATA_CMD_WRITE_STREAM_EXT,	"WRITE STREAM EXT" },
23176521148cSRobert Hancock 		{ ATA_CMD_WRITE_STREAM_DMA_EXT, "WRITE STREAM DMA EXT" },
23186521148cSRobert Hancock 		{ ATA_CMD_WRITE_FUA_EXT,	"WRITE DMA FUA EXT" },
23196521148cSRobert Hancock 		{ ATA_CMD_WRITE_QUEUED_FUA_EXT, "WRITE DMA QUEUED FUA EXT" },
23206521148cSRobert Hancock 		{ ATA_CMD_FPDMA_READ,		"READ FPDMA QUEUED" },
23216521148cSRobert Hancock 		{ ATA_CMD_FPDMA_WRITE,		"WRITE FPDMA QUEUED" },
23223915c3b5SRobert Hancock 		{ ATA_CMD_FPDMA_SEND,		"SEND FPDMA QUEUED" },
23233915c3b5SRobert Hancock 		{ ATA_CMD_FPDMA_RECV,		"RECEIVE FPDMA QUEUED" },
23246521148cSRobert Hancock 		{ ATA_CMD_PIO_READ,		"READ SECTOR(S)" },
23256521148cSRobert Hancock 		{ ATA_CMD_PIO_READ_EXT,		"READ SECTOR(S) EXT" },
23266521148cSRobert Hancock 		{ ATA_CMD_PIO_WRITE,		"WRITE SECTOR(S)" },
23276521148cSRobert Hancock 		{ ATA_CMD_PIO_WRITE_EXT,	"WRITE SECTOR(S) EXT" },
23286521148cSRobert Hancock 		{ ATA_CMD_READ_MULTI,		"READ MULTIPLE" },
23296521148cSRobert Hancock 		{ ATA_CMD_READ_MULTI_EXT,	"READ MULTIPLE EXT" },
23306521148cSRobert Hancock 		{ ATA_CMD_WRITE_MULTI,		"WRITE MULTIPLE" },
23316521148cSRobert Hancock 		{ ATA_CMD_WRITE_MULTI_EXT,	"WRITE MULTIPLE EXT" },
23326521148cSRobert Hancock 		{ ATA_CMD_WRITE_MULTI_FUA_EXT,	"WRITE MULTIPLE FUA EXT" },
23336521148cSRobert Hancock 		{ ATA_CMD_SET_FEATURES,		"SET FEATURES" },
23346521148cSRobert Hancock 		{ ATA_CMD_SET_MULTI,		"SET MULTIPLE MODE" },
23356521148cSRobert Hancock 		{ ATA_CMD_VERIFY,		"READ VERIFY SECTOR(S)" },
23366521148cSRobert Hancock 		{ ATA_CMD_VERIFY_EXT,		"READ VERIFY SECTOR(S) EXT" },
23376521148cSRobert Hancock 		{ ATA_CMD_WRITE_UNCORR_EXT,	"WRITE UNCORRECTABLE EXT" },
23386521148cSRobert Hancock 		{ ATA_CMD_STANDBYNOW1,		"STANDBY IMMEDIATE" },
23396521148cSRobert Hancock 		{ ATA_CMD_IDLEIMMEDIATE,	"IDLE IMMEDIATE" },
23406521148cSRobert Hancock 		{ ATA_CMD_SLEEP,		"SLEEP" },
23416521148cSRobert Hancock 		{ ATA_CMD_INIT_DEV_PARAMS,	"INITIALIZE DEVICE PARAMETERS" },
23426521148cSRobert Hancock 		{ ATA_CMD_READ_NATIVE_MAX,	"READ NATIVE MAX ADDRESS" },
23436521148cSRobert Hancock 		{ ATA_CMD_READ_NATIVE_MAX_EXT,	"READ NATIVE MAX ADDRESS EXT" },
23446521148cSRobert Hancock 		{ ATA_CMD_SET_MAX,		"SET MAX ADDRESS" },
23456521148cSRobert Hancock 		{ ATA_CMD_SET_MAX_EXT,		"SET MAX ADDRESS EXT" },
23466521148cSRobert Hancock 		{ ATA_CMD_READ_LOG_EXT,		"READ LOG EXT" },
23476521148cSRobert Hancock 		{ ATA_CMD_WRITE_LOG_EXT,	"WRITE LOG EXT" },
23486521148cSRobert Hancock 		{ ATA_CMD_READ_LOG_DMA_EXT,	"READ LOG DMA EXT" },
23496521148cSRobert Hancock 		{ ATA_CMD_WRITE_LOG_DMA_EXT,	"WRITE LOG DMA EXT" },
23503915c3b5SRobert Hancock 		{ ATA_CMD_TRUSTED_NONDATA,	"TRUSTED NON-DATA" },
23516521148cSRobert Hancock 		{ ATA_CMD_TRUSTED_RCV,		"TRUSTED RECEIVE" },
23526521148cSRobert Hancock 		{ ATA_CMD_TRUSTED_RCV_DMA,	"TRUSTED RECEIVE DMA" },
23536521148cSRobert Hancock 		{ ATA_CMD_TRUSTED_SND,		"TRUSTED SEND" },
23546521148cSRobert Hancock 		{ ATA_CMD_TRUSTED_SND_DMA,	"TRUSTED SEND DMA" },
23556521148cSRobert Hancock 		{ ATA_CMD_PMP_READ,		"READ BUFFER" },
23563915c3b5SRobert Hancock 		{ ATA_CMD_PMP_READ_DMA,		"READ BUFFER DMA" },
23576521148cSRobert Hancock 		{ ATA_CMD_PMP_WRITE,		"WRITE BUFFER" },
23583915c3b5SRobert Hancock 		{ ATA_CMD_PMP_WRITE_DMA,	"WRITE BUFFER DMA" },
23596521148cSRobert Hancock 		{ ATA_CMD_CONF_OVERLAY,		"DEVICE CONFIGURATION OVERLAY" },
23606521148cSRobert Hancock 		{ ATA_CMD_SEC_SET_PASS,		"SECURITY SET PASSWORD" },
23616521148cSRobert Hancock 		{ ATA_CMD_SEC_UNLOCK,		"SECURITY UNLOCK" },
23626521148cSRobert Hancock 		{ ATA_CMD_SEC_ERASE_PREP,	"SECURITY ERASE PREPARE" },
23636521148cSRobert Hancock 		{ ATA_CMD_SEC_ERASE_UNIT,	"SECURITY ERASE UNIT" },
23646521148cSRobert Hancock 		{ ATA_CMD_SEC_FREEZE_LOCK,	"SECURITY FREEZE LOCK" },
23656521148cSRobert Hancock 		{ ATA_CMD_SEC_DISABLE_PASS,	"SECURITY DISABLE PASSWORD" },
23666521148cSRobert Hancock 		{ ATA_CMD_CONFIG_STREAM,	"CONFIGURE STREAM" },
23676521148cSRobert Hancock 		{ ATA_CMD_SMART,		"SMART" },
23686521148cSRobert Hancock 		{ ATA_CMD_MEDIA_LOCK,		"DOOR LOCK" },
23696521148cSRobert Hancock 		{ ATA_CMD_MEDIA_UNLOCK,		"DOOR UNLOCK" },
2370acad7627SFUJITA Tomonori 		{ ATA_CMD_DSM,			"DATA SET MANAGEMENT" },
23716521148cSRobert Hancock 		{ ATA_CMD_CHK_MED_CRD_TYP,	"CHECK MEDIA CARD TYPE" },
23726521148cSRobert Hancock 		{ ATA_CMD_CFA_REQ_EXT_ERR,	"CFA REQUEST EXTENDED ERROR" },
23736521148cSRobert Hancock 		{ ATA_CMD_CFA_WRITE_NE,		"CFA WRITE SECTORS WITHOUT ERASE" },
23746521148cSRobert Hancock 		{ ATA_CMD_CFA_TRANS_SECT,	"CFA TRANSLATE SECTOR" },
23756521148cSRobert Hancock 		{ ATA_CMD_CFA_ERASE,		"CFA ERASE SECTORS" },
23766521148cSRobert Hancock 		{ ATA_CMD_CFA_WRITE_MULT_NE,	"CFA WRITE MULTIPLE WITHOUT ERASE" },
23773915c3b5SRobert Hancock 		{ ATA_CMD_REQ_SENSE_DATA,	"REQUEST SENSE DATA EXT" },
23783915c3b5SRobert Hancock 		{ ATA_CMD_SANITIZE_DEVICE,	"SANITIZE DEVICE" },
237928a3fc22SHannes Reinecke 		{ ATA_CMD_ZAC_MGMT_IN,		"ZAC MANAGEMENT IN" },
238027708a95SHannes Reinecke 		{ ATA_CMD_ZAC_MGMT_OUT,		"ZAC MANAGEMENT OUT" },
23816521148cSRobert Hancock 		{ ATA_CMD_READ_LONG,		"READ LONG (with retries)" },
23826521148cSRobert Hancock 		{ ATA_CMD_READ_LONG_ONCE,	"READ LONG (without retries)" },
23836521148cSRobert Hancock 		{ ATA_CMD_WRITE_LONG,		"WRITE LONG (with retries)" },
23846521148cSRobert Hancock 		{ ATA_CMD_WRITE_LONG_ONCE,	"WRITE LONG (without retries)" },
23856521148cSRobert Hancock 		{ ATA_CMD_RESTORE,		"RECALIBRATE" },
23866521148cSRobert Hancock 		{ 0,				NULL } /* terminate list */
23876521148cSRobert Hancock 	};
23886521148cSRobert Hancock 
23896521148cSRobert Hancock 	unsigned int i;
23906521148cSRobert Hancock 	for (i = 0; cmd_descr[i].text; i++)
23916521148cSRobert Hancock 		if (cmd_descr[i].command == command)
23926521148cSRobert Hancock 			return cmd_descr[i].text;
23936521148cSRobert Hancock #endif
23946521148cSRobert Hancock 
23956521148cSRobert Hancock 	return NULL;
23966521148cSRobert Hancock }
239736aae28eSAndy Shevchenko EXPORT_SYMBOL_GPL(ata_get_cmd_descript);
23986521148cSRobert Hancock 
23996521148cSRobert Hancock /**
24009b1e2658STejun Heo  *	ata_eh_link_report - report error handling to user
24010260731fSTejun Heo  *	@link: ATA link EH is going on
2402c6fd2807SJeff Garzik  *
2403c6fd2807SJeff Garzik  *	Report EH to user.
2404c6fd2807SJeff Garzik  *
2405c6fd2807SJeff Garzik  *	LOCKING:
2406c6fd2807SJeff Garzik  *	None.
2407c6fd2807SJeff Garzik  */
24089b1e2658STejun Heo static void ata_eh_link_report(struct ata_link *link)
2409c6fd2807SJeff Garzik {
24100260731fSTejun Heo 	struct ata_port *ap = link->ap;
24110260731fSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
2412258c4e5cSJens Axboe 	struct ata_queued_cmd *qc;
2413c6fd2807SJeff Garzik 	const char *frozen, *desc;
2414462098b0SLevente Kurusa 	char tries_buf[6] = "";
2415c6fd2807SJeff Garzik 	int tag, nr_failed = 0;
2416c6fd2807SJeff Garzik 
241794ff3d54STejun Heo 	if (ehc->i.flags & ATA_EHI_QUIET)
241894ff3d54STejun Heo 		return;
241994ff3d54STejun Heo 
2420c6fd2807SJeff Garzik 	desc = NULL;
2421c6fd2807SJeff Garzik 	if (ehc->i.desc[0] != '\0')
2422c6fd2807SJeff Garzik 		desc = ehc->i.desc;
2423c6fd2807SJeff Garzik 
2424258c4e5cSJens Axboe 	ata_qc_for_each_raw(ap, qc, tag) {
2425b1c72916STejun Heo 		if (!(qc->flags & ATA_QCFLAG_FAILED) ||
2426b1c72916STejun Heo 		    ata_dev_phys_link(qc->dev) != link ||
2427e027bd36STejun Heo 		    ((qc->flags & ATA_QCFLAG_QUIET) &&
2428e027bd36STejun Heo 		     qc->err_mask == AC_ERR_DEV))
2429c6fd2807SJeff Garzik 			continue;
2430c6fd2807SJeff Garzik 		if (qc->flags & ATA_QCFLAG_SENSE_VALID && !qc->err_mask)
2431c6fd2807SJeff Garzik 			continue;
2432c6fd2807SJeff Garzik 
2433c6fd2807SJeff Garzik 		nr_failed++;
2434c6fd2807SJeff Garzik 	}
2435c6fd2807SJeff Garzik 
2436c6fd2807SJeff Garzik 	if (!nr_failed && !ehc->i.err_mask)
2437c6fd2807SJeff Garzik 		return;
2438c6fd2807SJeff Garzik 
2439c6fd2807SJeff Garzik 	frozen = "";
2440c6fd2807SJeff Garzik 	if (ap->pflags & ATA_PFLAG_FROZEN)
2441c6fd2807SJeff Garzik 		frozen = " frozen";
2442c6fd2807SJeff Garzik 
2443a1e10f7eSTejun Heo 	if (ap->eh_tries < ATA_EH_MAX_TRIES)
2444462098b0SLevente Kurusa 		snprintf(tries_buf, sizeof(tries_buf), " t%d",
2445a1e10f7eSTejun Heo 			 ap->eh_tries);
2446a1e10f7eSTejun Heo 
2447c6fd2807SJeff Garzik 	if (ehc->i.dev) {
2448a9a79dfeSJoe Perches 		ata_dev_err(ehc->i.dev, "exception Emask 0x%x "
2449a1e10f7eSTejun Heo 			    "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2450a1e10f7eSTejun Heo 			    ehc->i.err_mask, link->sactive, ehc->i.serror,
2451a1e10f7eSTejun Heo 			    ehc->i.action, frozen, tries_buf);
2452c6fd2807SJeff Garzik 		if (desc)
2453a9a79dfeSJoe Perches 			ata_dev_err(ehc->i.dev, "%s\n", desc);
2454c6fd2807SJeff Garzik 	} else {
2455a9a79dfeSJoe Perches 		ata_link_err(link, "exception Emask 0x%x "
2456a1e10f7eSTejun Heo 			     "SAct 0x%x SErr 0x%x action 0x%x%s%s\n",
2457a1e10f7eSTejun Heo 			     ehc->i.err_mask, link->sactive, ehc->i.serror,
2458a1e10f7eSTejun Heo 			     ehc->i.action, frozen, tries_buf);
2459c6fd2807SJeff Garzik 		if (desc)
2460a9a79dfeSJoe Perches 			ata_link_err(link, "%s\n", desc);
2461c6fd2807SJeff Garzik 	}
2462c6fd2807SJeff Garzik 
24636521148cSRobert Hancock #ifdef CONFIG_ATA_VERBOSE_ERROR
24641333e194SRobert Hancock 	if (ehc->i.serror)
2465a9a79dfeSJoe Perches 		ata_link_err(link,
24661333e194SRobert Hancock 		  "SError: { %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s}\n",
24671333e194SRobert Hancock 		  ehc->i.serror & SERR_DATA_RECOVERED ? "RecovData " : "",
24681333e194SRobert Hancock 		  ehc->i.serror & SERR_COMM_RECOVERED ? "RecovComm " : "",
24691333e194SRobert Hancock 		  ehc->i.serror & SERR_DATA ? "UnrecovData " : "",
24701333e194SRobert Hancock 		  ehc->i.serror & SERR_PERSISTENT ? "Persist " : "",
24711333e194SRobert Hancock 		  ehc->i.serror & SERR_PROTOCOL ? "Proto " : "",
24721333e194SRobert Hancock 		  ehc->i.serror & SERR_INTERNAL ? "HostInt " : "",
24731333e194SRobert Hancock 		  ehc->i.serror & SERR_PHYRDY_CHG ? "PHYRdyChg " : "",
24741333e194SRobert Hancock 		  ehc->i.serror & SERR_PHY_INT_ERR ? "PHYInt " : "",
24751333e194SRobert Hancock 		  ehc->i.serror & SERR_COMM_WAKE ? "CommWake " : "",
24761333e194SRobert Hancock 		  ehc->i.serror & SERR_10B_8B_ERR ? "10B8B " : "",
24771333e194SRobert Hancock 		  ehc->i.serror & SERR_DISPARITY ? "Dispar " : "",
24781333e194SRobert Hancock 		  ehc->i.serror & SERR_CRC ? "BadCRC " : "",
24791333e194SRobert Hancock 		  ehc->i.serror & SERR_HANDSHAKE ? "Handshk " : "",
24801333e194SRobert Hancock 		  ehc->i.serror & SERR_LINK_SEQ_ERR ? "LinkSeq " : "",
24811333e194SRobert Hancock 		  ehc->i.serror & SERR_TRANS_ST_ERROR ? "TrStaTrns " : "",
24821333e194SRobert Hancock 		  ehc->i.serror & SERR_UNRECOG_FIS ? "UnrecFIS " : "",
24831333e194SRobert Hancock 		  ehc->i.serror & SERR_DEV_XCHG ? "DevExch " : "");
24846521148cSRobert Hancock #endif
24851333e194SRobert Hancock 
2486258c4e5cSJens Axboe 	ata_qc_for_each_raw(ap, qc, tag) {
24878a937581STejun Heo 		struct ata_taskfile *cmd = &qc->tf, *res = &qc->result_tf;
2488abb6a889STejun Heo 		char data_buf[20] = "";
2489abb6a889STejun Heo 		char cdb_buf[70] = "";
2490c6fd2807SJeff Garzik 
24910260731fSTejun Heo 		if (!(qc->flags & ATA_QCFLAG_FAILED) ||
2492b1c72916STejun Heo 		    ata_dev_phys_link(qc->dev) != link || !qc->err_mask)
2493c6fd2807SJeff Garzik 			continue;
2494c6fd2807SJeff Garzik 
2495abb6a889STejun Heo 		if (qc->dma_dir != DMA_NONE) {
2496abb6a889STejun Heo 			static const char *dma_str[] = {
2497abb6a889STejun Heo 				[DMA_BIDIRECTIONAL]	= "bidi",
2498abb6a889STejun Heo 				[DMA_TO_DEVICE]		= "out",
2499abb6a889STejun Heo 				[DMA_FROM_DEVICE]	= "in",
2500abb6a889STejun Heo 			};
2501fb1b8b11SGeert Uytterhoeven 			const char *prot_str = NULL;
2502abb6a889STejun Heo 
2503fb1b8b11SGeert Uytterhoeven 			switch (qc->tf.protocol) {
2504fb1b8b11SGeert Uytterhoeven 			case ATA_PROT_UNKNOWN:
2505fb1b8b11SGeert Uytterhoeven 				prot_str = "unknown";
2506fb1b8b11SGeert Uytterhoeven 				break;
2507fb1b8b11SGeert Uytterhoeven 			case ATA_PROT_NODATA:
2508fb1b8b11SGeert Uytterhoeven 				prot_str = "nodata";
2509fb1b8b11SGeert Uytterhoeven 				break;
2510fb1b8b11SGeert Uytterhoeven 			case ATA_PROT_PIO:
2511fb1b8b11SGeert Uytterhoeven 				prot_str = "pio";
2512fb1b8b11SGeert Uytterhoeven 				break;
2513fb1b8b11SGeert Uytterhoeven 			case ATA_PROT_DMA:
2514fb1b8b11SGeert Uytterhoeven 				prot_str = "dma";
2515fb1b8b11SGeert Uytterhoeven 				break;
2516fb1b8b11SGeert Uytterhoeven 			case ATA_PROT_NCQ:
2517fb1b8b11SGeert Uytterhoeven 				prot_str = "ncq dma";
2518fb1b8b11SGeert Uytterhoeven 				break;
2519fb1b8b11SGeert Uytterhoeven 			case ATA_PROT_NCQ_NODATA:
2520fb1b8b11SGeert Uytterhoeven 				prot_str = "ncq nodata";
2521fb1b8b11SGeert Uytterhoeven 				break;
2522fb1b8b11SGeert Uytterhoeven 			case ATAPI_PROT_NODATA:
2523fb1b8b11SGeert Uytterhoeven 				prot_str = "nodata";
2524fb1b8b11SGeert Uytterhoeven 				break;
2525fb1b8b11SGeert Uytterhoeven 			case ATAPI_PROT_PIO:
2526fb1b8b11SGeert Uytterhoeven 				prot_str = "pio";
2527fb1b8b11SGeert Uytterhoeven 				break;
2528fb1b8b11SGeert Uytterhoeven 			case ATAPI_PROT_DMA:
2529fb1b8b11SGeert Uytterhoeven 				prot_str = "dma";
2530fb1b8b11SGeert Uytterhoeven 				break;
2531fb1b8b11SGeert Uytterhoeven 			}
2532abb6a889STejun Heo 			snprintf(data_buf, sizeof(data_buf), " %s %u %s",
2533fb1b8b11SGeert Uytterhoeven 				 prot_str, qc->nbytes, dma_str[qc->dma_dir]);
2534abb6a889STejun Heo 		}
2535abb6a889STejun Heo 
25366521148cSRobert Hancock 		if (ata_is_atapi(qc->tf.protocol)) {
2537a13b0c9dSHannes Reinecke 			const u8 *cdb = qc->cdb;
2538a13b0c9dSHannes Reinecke 			size_t cdb_len = qc->dev->cdb_len;
2539a13b0c9dSHannes Reinecke 
2540cbba5b0eSHannes Reinecke 			if (qc->scsicmd) {
2541cbba5b0eSHannes Reinecke 				cdb = qc->scsicmd->cmnd;
2542cbba5b0eSHannes Reinecke 				cdb_len = qc->scsicmd->cmd_len;
2543cbba5b0eSHannes Reinecke 			}
2544cbba5b0eSHannes Reinecke 			__scsi_format_command(cdb_buf, sizeof(cdb_buf),
2545cbba5b0eSHannes Reinecke 					      cdb, cdb_len);
25466521148cSRobert Hancock 		} else {
25476521148cSRobert Hancock 			const char *descr = ata_get_cmd_descript(cmd->command);
25486521148cSRobert Hancock 			if (descr)
2549a9a79dfeSJoe Perches 				ata_dev_err(qc->dev, "failed command: %s\n",
2550a9a79dfeSJoe Perches 					    descr);
25516521148cSRobert Hancock 		}
2552abb6a889STejun Heo 
2553a9a79dfeSJoe Perches 		ata_dev_err(qc->dev,
25548a937581STejun Heo 			"cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
2555abb6a889STejun Heo 			"tag %d%s\n         %s"
25568a937581STejun Heo 			"res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x "
25575335b729STejun Heo 			"Emask 0x%x (%s)%s\n",
25588a937581STejun Heo 			cmd->command, cmd->feature, cmd->nsect,
25598a937581STejun Heo 			cmd->lbal, cmd->lbam, cmd->lbah,
25608a937581STejun Heo 			cmd->hob_feature, cmd->hob_nsect,
25618a937581STejun Heo 			cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah,
2562abb6a889STejun Heo 			cmd->device, qc->tag, data_buf, cdb_buf,
25638a937581STejun Heo 			res->command, res->feature, res->nsect,
25648a937581STejun Heo 			res->lbal, res->lbam, res->lbah,
25658a937581STejun Heo 			res->hob_feature, res->hob_nsect,
25668a937581STejun Heo 			res->hob_lbal, res->hob_lbam, res->hob_lbah,
25675335b729STejun Heo 			res->device, qc->err_mask, ata_err_string(qc->err_mask),
25685335b729STejun Heo 			qc->err_mask & AC_ERR_NCQ ? " <F>" : "");
25691333e194SRobert Hancock 
25706521148cSRobert Hancock #ifdef CONFIG_ATA_VERBOSE_ERROR
25711333e194SRobert Hancock 		if (res->command & (ATA_BUSY | ATA_DRDY | ATA_DF | ATA_DRQ |
2572e87fd28cSHannes Reinecke 				    ATA_SENSE | ATA_ERR)) {
25731333e194SRobert Hancock 			if (res->command & ATA_BUSY)
2574a9a79dfeSJoe Perches 				ata_dev_err(qc->dev, "status: { Busy }\n");
25751333e194SRobert Hancock 			else
2576e87fd28cSHannes Reinecke 				ata_dev_err(qc->dev, "status: { %s%s%s%s%s}\n",
25771333e194SRobert Hancock 				  res->command & ATA_DRDY ? "DRDY " : "",
25781333e194SRobert Hancock 				  res->command & ATA_DF ? "DF " : "",
25791333e194SRobert Hancock 				  res->command & ATA_DRQ ? "DRQ " : "",
2580e87fd28cSHannes Reinecke 				  res->command & ATA_SENSE ? "SENSE " : "",
25811333e194SRobert Hancock 				  res->command & ATA_ERR ? "ERR " : "");
25821333e194SRobert Hancock 		}
25831333e194SRobert Hancock 
25841333e194SRobert Hancock 		if (cmd->command != ATA_CMD_PACKET &&
2585eec7e1c1SAlexey Asemov 		    (res->feature & (ATA_ICRC | ATA_UNC | ATA_AMNF |
2586eec7e1c1SAlexey Asemov 				     ATA_IDNF | ATA_ABORTED)))
2587eec7e1c1SAlexey Asemov 			ata_dev_err(qc->dev, "error: { %s%s%s%s%s}\n",
25881333e194SRobert Hancock 			  res->feature & ATA_ICRC ? "ICRC " : "",
25891333e194SRobert Hancock 			  res->feature & ATA_UNC ? "UNC " : "",
2590eec7e1c1SAlexey Asemov 			  res->feature & ATA_AMNF ? "AMNF " : "",
25911333e194SRobert Hancock 			  res->feature & ATA_IDNF ? "IDNF " : "",
25921333e194SRobert Hancock 			  res->feature & ATA_ABORTED ? "ABRT " : "");
25936521148cSRobert Hancock #endif
2594c6fd2807SJeff Garzik 	}
2595c6fd2807SJeff Garzik }
2596c6fd2807SJeff Garzik 
25979b1e2658STejun Heo /**
25989b1e2658STejun Heo  *	ata_eh_report - report error handling to user
25999b1e2658STejun Heo  *	@ap: ATA port to report EH about
26009b1e2658STejun Heo  *
26019b1e2658STejun Heo  *	Report EH to user.
26029b1e2658STejun Heo  *
26039b1e2658STejun Heo  *	LOCKING:
26049b1e2658STejun Heo  *	None.
26059b1e2658STejun Heo  */
2606fb7fd614STejun Heo void ata_eh_report(struct ata_port *ap)
26079b1e2658STejun Heo {
26089b1e2658STejun Heo 	struct ata_link *link;
26099b1e2658STejun Heo 
26101eca4365STejun Heo 	ata_for_each_link(link, ap, HOST_FIRST)
26119b1e2658STejun Heo 		ata_eh_link_report(link);
26129b1e2658STejun Heo }
26139b1e2658STejun Heo 
2614cc0680a5STejun Heo static int ata_do_reset(struct ata_link *link, ata_reset_fn_t reset,
2615b1c72916STejun Heo 			unsigned int *classes, unsigned long deadline,
2616b1c72916STejun Heo 			bool clear_classes)
2617c6fd2807SJeff Garzik {
2618f58229f8STejun Heo 	struct ata_device *dev;
2619c6fd2807SJeff Garzik 
2620b1c72916STejun Heo 	if (clear_classes)
26211eca4365STejun Heo 		ata_for_each_dev(dev, link, ALL)
2622f58229f8STejun Heo 			classes[dev->devno] = ATA_DEV_UNKNOWN;
2623c6fd2807SJeff Garzik 
2624f046519fSTejun Heo 	return reset(link, classes, deadline);
2625c6fd2807SJeff Garzik }
2626c6fd2807SJeff Garzik 
2627e8411fbaSSergei Shtylyov static int ata_eh_followup_srst_needed(struct ata_link *link, int rc)
2628c6fd2807SJeff Garzik {
262945db2f6cSTejun Heo 	if ((link->flags & ATA_LFLAG_NO_SRST) || ata_link_offline(link))
2630ae791c05STejun Heo 		return 0;
26315dbfc9cbSTejun Heo 	if (rc == -EAGAIN)
2632c6fd2807SJeff Garzik 		return 1;
2633071f44b1STejun Heo 	if (sata_pmp_supported(link->ap) && ata_is_host_link(link))
26343495de73STejun Heo 		return 1;
2635c6fd2807SJeff Garzik 	return 0;
2636c6fd2807SJeff Garzik }
2637c6fd2807SJeff Garzik 
2638fb7fd614STejun Heo int ata_eh_reset(struct ata_link *link, int classify,
2639c6fd2807SJeff Garzik 		 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
2640c6fd2807SJeff Garzik 		 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
2641c6fd2807SJeff Garzik {
2642afaa5c37STejun Heo 	struct ata_port *ap = link->ap;
2643b1c72916STejun Heo 	struct ata_link *slave = ap->slave_link;
2644936fd732STejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
2645705d2014SBartlomiej Zolnierkiewicz 	struct ata_eh_context *sehc = slave ? &slave->eh_context : NULL;
2646c6fd2807SJeff Garzik 	unsigned int *classes = ehc->classes;
2647416dc9edSTejun Heo 	unsigned int lflags = link->flags;
2648c6fd2807SJeff Garzik 	int verbose = !(ehc->i.flags & ATA_EHI_QUIET);
2649d8af0eb6STejun Heo 	int max_tries = 0, try = 0;
2650b1c72916STejun Heo 	struct ata_link *failed_link;
2651f58229f8STejun Heo 	struct ata_device *dev;
2652416dc9edSTejun Heo 	unsigned long deadline, now;
2653c6fd2807SJeff Garzik 	ata_reset_fn_t reset;
2654afaa5c37STejun Heo 	unsigned long flags;
2655416dc9edSTejun Heo 	u32 sstatus;
2656b1c72916STejun Heo 	int nr_unknown, rc;
2657c6fd2807SJeff Garzik 
2658932648b0STejun Heo 	/*
2659932648b0STejun Heo 	 * Prepare to reset
2660932648b0STejun Heo 	 */
2661d8af0eb6STejun Heo 	while (ata_eh_reset_timeouts[max_tries] != ULONG_MAX)
2662d8af0eb6STejun Heo 		max_tries++;
2663ca6d43b0SDan Williams 	if (link->flags & ATA_LFLAG_RST_ONCE)
2664ca6d43b0SDan Williams 		max_tries = 1;
266505944bdfSTejun Heo 	if (link->flags & ATA_LFLAG_NO_HRST)
266605944bdfSTejun Heo 		hardreset = NULL;
266705944bdfSTejun Heo 	if (link->flags & ATA_LFLAG_NO_SRST)
266805944bdfSTejun Heo 		softreset = NULL;
2669d8af0eb6STejun Heo 
267025985edcSLucas De Marchi 	/* make sure each reset attempt is at least COOL_DOWN apart */
267119b72321STejun Heo 	if (ehc->i.flags & ATA_EHI_DID_RESET) {
26720a2c0f56STejun Heo 		now = jiffies;
267319b72321STejun Heo 		WARN_ON(time_after(ehc->last_reset, now));
267419b72321STejun Heo 		deadline = ata_deadline(ehc->last_reset,
267519b72321STejun Heo 					ATA_EH_RESET_COOL_DOWN);
26760a2c0f56STejun Heo 		if (time_before(now, deadline))
26770a2c0f56STejun Heo 			schedule_timeout_uninterruptible(deadline - now);
267819b72321STejun Heo 	}
26790a2c0f56STejun Heo 
2680afaa5c37STejun Heo 	spin_lock_irqsave(ap->lock, flags);
2681afaa5c37STejun Heo 	ap->pflags |= ATA_PFLAG_RESETTING;
2682afaa5c37STejun Heo 	spin_unlock_irqrestore(ap->lock, flags);
2683afaa5c37STejun Heo 
2684cf480626STejun Heo 	ata_eh_about_to_do(link, NULL, ATA_EH_RESET);
2685c6fd2807SJeff Garzik 
26861eca4365STejun Heo 	ata_for_each_dev(dev, link, ALL) {
2687cdeab114STejun Heo 		/* If we issue an SRST then an ATA drive (not ATAPI)
2688cdeab114STejun Heo 		 * may change configuration and be in PIO0 timing. If
2689cdeab114STejun Heo 		 * we do a hard reset (or are coming from power on)
2690cdeab114STejun Heo 		 * this is true for ATA or ATAPI. Until we've set a
2691cdeab114STejun Heo 		 * suitable controller mode we should not touch the
2692cdeab114STejun Heo 		 * bus as we may be talking too fast.
2693cdeab114STejun Heo 		 */
2694cdeab114STejun Heo 		dev->pio_mode = XFER_PIO_0;
26955416912aSAaron Lu 		dev->dma_mode = 0xff;
2696cdeab114STejun Heo 
2697cdeab114STejun Heo 		/* If the controller has a pio mode setup function
2698cdeab114STejun Heo 		 * then use it to set the chipset to rights. Don't
2699cdeab114STejun Heo 		 * touch the DMA setup as that will be dealt with when
2700cdeab114STejun Heo 		 * configuring devices.
2701cdeab114STejun Heo 		 */
2702cdeab114STejun Heo 		if (ap->ops->set_piomode)
2703cdeab114STejun Heo 			ap->ops->set_piomode(ap, dev);
2704cdeab114STejun Heo 	}
2705cdeab114STejun Heo 
2706cf480626STejun Heo 	/* prefer hardreset */
2707932648b0STejun Heo 	reset = NULL;
2708cf480626STejun Heo 	ehc->i.action &= ~ATA_EH_RESET;
2709cf480626STejun Heo 	if (hardreset) {
2710cf480626STejun Heo 		reset = hardreset;
2711a674050eSTejun Heo 		ehc->i.action |= ATA_EH_HARDRESET;
27124f7faa3fSTejun Heo 	} else if (softreset) {
2713cf480626STejun Heo 		reset = softreset;
2714a674050eSTejun Heo 		ehc->i.action |= ATA_EH_SOFTRESET;
2715cf480626STejun Heo 	}
2716c6fd2807SJeff Garzik 
2717c6fd2807SJeff Garzik 	if (prereset) {
2718b1c72916STejun Heo 		unsigned long deadline = ata_deadline(jiffies,
2719b1c72916STejun Heo 						      ATA_EH_PRERESET_TIMEOUT);
2720b1c72916STejun Heo 
2721b1c72916STejun Heo 		if (slave) {
2722b1c72916STejun Heo 			sehc->i.action &= ~ATA_EH_RESET;
2723b1c72916STejun Heo 			sehc->i.action |= ehc->i.action;
2724b1c72916STejun Heo 		}
2725b1c72916STejun Heo 
2726b1c72916STejun Heo 		rc = prereset(link, deadline);
2727b1c72916STejun Heo 
2728b1c72916STejun Heo 		/* If present, do prereset on slave link too.  Reset
2729b1c72916STejun Heo 		 * is skipped iff both master and slave links report
2730b1c72916STejun Heo 		 * -ENOENT or clear ATA_EH_RESET.
2731b1c72916STejun Heo 		 */
2732b1c72916STejun Heo 		if (slave && (rc == 0 || rc == -ENOENT)) {
2733b1c72916STejun Heo 			int tmp;
2734b1c72916STejun Heo 
2735b1c72916STejun Heo 			tmp = prereset(slave, deadline);
2736b1c72916STejun Heo 			if (tmp != -ENOENT)
2737b1c72916STejun Heo 				rc = tmp;
2738b1c72916STejun Heo 
2739b1c72916STejun Heo 			ehc->i.action |= sehc->i.action;
2740b1c72916STejun Heo 		}
2741b1c72916STejun Heo 
2742c6fd2807SJeff Garzik 		if (rc) {
2743c961922bSAlan Cox 			if (rc == -ENOENT) {
2744a9a79dfeSJoe Perches 				ata_link_dbg(link, "port disabled--ignoring\n");
2745cf480626STejun Heo 				ehc->i.action &= ~ATA_EH_RESET;
27464aa9ab67STejun Heo 
27471eca4365STejun Heo 				ata_for_each_dev(dev, link, ALL)
2748f58229f8STejun Heo 					classes[dev->devno] = ATA_DEV_NONE;
27494aa9ab67STejun Heo 
27504aa9ab67STejun Heo 				rc = 0;
2751c961922bSAlan Cox 			} else
2752a9a79dfeSJoe Perches 				ata_link_err(link,
2753a9a79dfeSJoe Perches 					     "prereset failed (errno=%d)\n",
2754a9a79dfeSJoe Perches 					     rc);
2755fccb6ea5STejun Heo 			goto out;
2756c6fd2807SJeff Garzik 		}
2757c6fd2807SJeff Garzik 
2758932648b0STejun Heo 		/* prereset() might have cleared ATA_EH_RESET.  If so,
2759d6515e6fSTejun Heo 		 * bang classes, thaw and return.
2760932648b0STejun Heo 		 */
2761932648b0STejun Heo 		if (reset && !(ehc->i.action & ATA_EH_RESET)) {
27621eca4365STejun Heo 			ata_for_each_dev(dev, link, ALL)
2763f58229f8STejun Heo 				classes[dev->devno] = ATA_DEV_NONE;
2764d6515e6fSTejun Heo 			if ((ap->pflags & ATA_PFLAG_FROZEN) &&
2765d6515e6fSTejun Heo 			    ata_is_host_link(link))
2766d6515e6fSTejun Heo 				ata_eh_thaw_port(ap);
2767fccb6ea5STejun Heo 			rc = 0;
2768fccb6ea5STejun Heo 			goto out;
2769c6fd2807SJeff Garzik 		}
2770932648b0STejun Heo 	}
2771c6fd2807SJeff Garzik 
2772c6fd2807SJeff Garzik  retry:
2773932648b0STejun Heo 	/*
2774932648b0STejun Heo 	 * Perform reset
2775932648b0STejun Heo 	 */
2776dc98c32cSTejun Heo 	if (ata_is_host_link(link))
2777dc98c32cSTejun Heo 		ata_eh_freeze_port(ap);
2778dc98c32cSTejun Heo 
2779341c2c95STejun Heo 	deadline = ata_deadline(jiffies, ata_eh_reset_timeouts[try++]);
278031daabdaSTejun Heo 
2781932648b0STejun Heo 	if (reset) {
2782c6fd2807SJeff Garzik 		if (verbose)
2783a9a79dfeSJoe Perches 			ata_link_info(link, "%s resetting link\n",
2784c6fd2807SJeff Garzik 				      reset == softreset ? "soft" : "hard");
2785c6fd2807SJeff Garzik 
2786c6fd2807SJeff Garzik 		/* mark that this EH session started with reset */
278719b72321STejun Heo 		ehc->last_reset = jiffies;
27880d64a233STejun Heo 		if (reset == hardreset)
27890d64a233STejun Heo 			ehc->i.flags |= ATA_EHI_DID_HARDRESET;
27900d64a233STejun Heo 		else
27910d64a233STejun Heo 			ehc->i.flags |= ATA_EHI_DID_SOFTRESET;
2792c6fd2807SJeff Garzik 
2793b1c72916STejun Heo 		rc = ata_do_reset(link, reset, classes, deadline, true);
2794b1c72916STejun Heo 		if (rc && rc != -EAGAIN) {
2795b1c72916STejun Heo 			failed_link = link;
27965dbfc9cbSTejun Heo 			goto fail;
2797b1c72916STejun Heo 		}
2798c6fd2807SJeff Garzik 
2799b1c72916STejun Heo 		/* hardreset slave link if existent */
2800b1c72916STejun Heo 		if (slave && reset == hardreset) {
2801b1c72916STejun Heo 			int tmp;
2802b1c72916STejun Heo 
2803b1c72916STejun Heo 			if (verbose)
2804a9a79dfeSJoe Perches 				ata_link_info(slave, "hard resetting link\n");
2805b1c72916STejun Heo 
2806b1c72916STejun Heo 			ata_eh_about_to_do(slave, NULL, ATA_EH_RESET);
2807b1c72916STejun Heo 			tmp = ata_do_reset(slave, reset, classes, deadline,
2808b1c72916STejun Heo 					   false);
2809b1c72916STejun Heo 			switch (tmp) {
2810b1c72916STejun Heo 			case -EAGAIN:
2811b1c72916STejun Heo 				rc = -EAGAIN;
2812b1c72916STejun Heo 			case 0:
2813b1c72916STejun Heo 				break;
2814b1c72916STejun Heo 			default:
2815b1c72916STejun Heo 				failed_link = slave;
2816b1c72916STejun Heo 				rc = tmp;
2817b1c72916STejun Heo 				goto fail;
2818b1c72916STejun Heo 			}
2819b1c72916STejun Heo 		}
2820b1c72916STejun Heo 
2821b1c72916STejun Heo 		/* perform follow-up SRST if necessary */
2822c6fd2807SJeff Garzik 		if (reset == hardreset &&
2823e8411fbaSSergei Shtylyov 		    ata_eh_followup_srst_needed(link, rc)) {
2824c6fd2807SJeff Garzik 			reset = softreset;
2825c6fd2807SJeff Garzik 
2826c6fd2807SJeff Garzik 			if (!reset) {
2827a9a79dfeSJoe Perches 				ata_link_err(link,
2828a9a79dfeSJoe Perches 	     "follow-up softreset required but no softreset available\n");
2829b1c72916STejun Heo 				failed_link = link;
2830fccb6ea5STejun Heo 				rc = -EINVAL;
283108cf69d0STejun Heo 				goto fail;
2832c6fd2807SJeff Garzik 			}
2833c6fd2807SJeff Garzik 
2834cf480626STejun Heo 			ata_eh_about_to_do(link, NULL, ATA_EH_RESET);
2835b1c72916STejun Heo 			rc = ata_do_reset(link, reset, classes, deadline, true);
2836fe2c4d01STejun Heo 			if (rc) {
2837fe2c4d01STejun Heo 				failed_link = link;
2838fe2c4d01STejun Heo 				goto fail;
2839fe2c4d01STejun Heo 			}
2840c6fd2807SJeff Garzik 		}
2841932648b0STejun Heo 	} else {
2842932648b0STejun Heo 		if (verbose)
2843a9a79dfeSJoe Perches 			ata_link_info(link,
2844a9a79dfeSJoe Perches 	"no reset method available, skipping reset\n");
2845932648b0STejun Heo 		if (!(lflags & ATA_LFLAG_ASSUME_CLASS))
2846932648b0STejun Heo 			lflags |= ATA_LFLAG_ASSUME_ATA;
2847932648b0STejun Heo 	}
2848008a7896STejun Heo 
2849932648b0STejun Heo 	/*
2850932648b0STejun Heo 	 * Post-reset processing
2851932648b0STejun Heo 	 */
28521eca4365STejun Heo 	ata_for_each_dev(dev, link, ALL) {
2853416dc9edSTejun Heo 		/* After the reset, the device state is PIO 0 and the
2854416dc9edSTejun Heo 		 * controller state is undefined.  Reset also wakes up
2855416dc9edSTejun Heo 		 * drives from sleeping mode.
2856c6fd2807SJeff Garzik 		 */
2857f58229f8STejun Heo 		dev->pio_mode = XFER_PIO_0;
2858054a5fbaSTejun Heo 		dev->flags &= ~ATA_DFLAG_SLEEPING;
2859c6fd2807SJeff Garzik 
28603b761d3dSTejun Heo 		if (ata_phys_link_offline(ata_dev_phys_link(dev)))
28613b761d3dSTejun Heo 			continue;
28623b761d3dSTejun Heo 
28634ccd3329STejun Heo 		/* apply class override */
2864416dc9edSTejun Heo 		if (lflags & ATA_LFLAG_ASSUME_ATA)
2865ae791c05STejun Heo 			classes[dev->devno] = ATA_DEV_ATA;
2866416dc9edSTejun Heo 		else if (lflags & ATA_LFLAG_ASSUME_SEMB)
2867816ab897STejun Heo 			classes[dev->devno] = ATA_DEV_SEMB_UNSUP;
2868ae791c05STejun Heo 	}
2869ae791c05STejun Heo 
2870008a7896STejun Heo 	/* record current link speed */
2871936fd732STejun Heo 	if (sata_scr_read(link, SCR_STATUS, &sstatus) == 0)
2872936fd732STejun Heo 		link->sata_spd = (sstatus >> 4) & 0xf;
2873b1c72916STejun Heo 	if (slave && sata_scr_read(slave, SCR_STATUS, &sstatus) == 0)
2874b1c72916STejun Heo 		slave->sata_spd = (sstatus >> 4) & 0xf;
2875008a7896STejun Heo 
2876dc98c32cSTejun Heo 	/* thaw the port */
2877dc98c32cSTejun Heo 	if (ata_is_host_link(link))
2878dc98c32cSTejun Heo 		ata_eh_thaw_port(ap);
2879dc98c32cSTejun Heo 
2880f046519fSTejun Heo 	/* postreset() should clear hardware SError.  Although SError
2881f046519fSTejun Heo 	 * is cleared during link resume, clearing SError here is
2882f046519fSTejun Heo 	 * necessary as some PHYs raise hotplug events after SRST.
2883f046519fSTejun Heo 	 * This introduces race condition where hotplug occurs between
2884f046519fSTejun Heo 	 * reset and here.  This race is mediated by cross checking
2885f046519fSTejun Heo 	 * link onlineness and classification result later.
2886f046519fSTejun Heo 	 */
2887b1c72916STejun Heo 	if (postreset) {
2888cc0680a5STejun Heo 		postreset(link, classes);
2889b1c72916STejun Heo 		if (slave)
2890b1c72916STejun Heo 			postreset(slave, classes);
2891b1c72916STejun Heo 	}
2892c6fd2807SJeff Garzik 
28931e641060STejun Heo 	/*
28948c56caccSTejun Heo 	 * Some controllers can't be frozen very well and may set spurious
28958c56caccSTejun Heo 	 * error conditions during reset.  Clear accumulated error
28968c56caccSTejun Heo 	 * information and re-thaw the port if frozen.  As reset is the
28978c56caccSTejun Heo 	 * final recovery action and we cross check link onlineness against
28988c56caccSTejun Heo 	 * device classification later, no hotplug event is lost by this.
28991e641060STejun Heo 	 */
2900f046519fSTejun Heo 	spin_lock_irqsave(link->ap->lock, flags);
29011e641060STejun Heo 	memset(&link->eh_info, 0, sizeof(link->eh_info));
2902b1c72916STejun Heo 	if (slave)
29031e641060STejun Heo 		memset(&slave->eh_info, 0, sizeof(link->eh_info));
29041e641060STejun Heo 	ap->pflags &= ~ATA_PFLAG_EH_PENDING;
2905f046519fSTejun Heo 	spin_unlock_irqrestore(link->ap->lock, flags);
2906f046519fSTejun Heo 
29078c56caccSTejun Heo 	if (ap->pflags & ATA_PFLAG_FROZEN)
29088c56caccSTejun Heo 		ata_eh_thaw_port(ap);
29098c56caccSTejun Heo 
29103b761d3dSTejun Heo 	/*
29113b761d3dSTejun Heo 	 * Make sure onlineness and classification result correspond.
2912f046519fSTejun Heo 	 * Hotplug could have happened during reset and some
2913f046519fSTejun Heo 	 * controllers fail to wait while a drive is spinning up after
2914f046519fSTejun Heo 	 * being hotplugged causing misdetection.  By cross checking
29153b761d3dSTejun Heo 	 * link on/offlineness and classification result, those
29163b761d3dSTejun Heo 	 * conditions can be reliably detected and retried.
2917f046519fSTejun Heo 	 */
2918b1c72916STejun Heo 	nr_unknown = 0;
29191eca4365STejun Heo 	ata_for_each_dev(dev, link, ALL) {
29203b761d3dSTejun Heo 		if (ata_phys_link_online(ata_dev_phys_link(dev))) {
2921b1c72916STejun Heo 			if (classes[dev->devno] == ATA_DEV_UNKNOWN) {
2922a9a79dfeSJoe Perches 				ata_dev_dbg(dev, "link online but device misclassified\n");
2923f046519fSTejun Heo 				classes[dev->devno] = ATA_DEV_NONE;
2924b1c72916STejun Heo 				nr_unknown++;
2925b1c72916STejun Heo 			}
29263b761d3dSTejun Heo 		} else if (ata_phys_link_offline(ata_dev_phys_link(dev))) {
29273b761d3dSTejun Heo 			if (ata_class_enabled(classes[dev->devno]))
2928a9a79dfeSJoe Perches 				ata_dev_dbg(dev,
2929a9a79dfeSJoe Perches 					    "link offline, clearing class %d to NONE\n",
29303b761d3dSTejun Heo 					    classes[dev->devno]);
29313b761d3dSTejun Heo 			classes[dev->devno] = ATA_DEV_NONE;
29323b761d3dSTejun Heo 		} else if (classes[dev->devno] == ATA_DEV_UNKNOWN) {
2933a9a79dfeSJoe Perches 			ata_dev_dbg(dev,
2934a9a79dfeSJoe Perches 				    "link status unknown, clearing UNKNOWN to NONE\n");
29353b761d3dSTejun Heo 			classes[dev->devno] = ATA_DEV_NONE;
29363b761d3dSTejun Heo 		}
2937f046519fSTejun Heo 	}
2938f046519fSTejun Heo 
2939b1c72916STejun Heo 	if (classify && nr_unknown) {
2940f046519fSTejun Heo 		if (try < max_tries) {
2941a9a79dfeSJoe Perches 			ata_link_warn(link,
2942a9a79dfeSJoe Perches 				      "link online but %d devices misclassified, retrying\n",
29433b761d3dSTejun Heo 				      nr_unknown);
2944b1c72916STejun Heo 			failed_link = link;
2945f046519fSTejun Heo 			rc = -EAGAIN;
2946f046519fSTejun Heo 			goto fail;
2947f046519fSTejun Heo 		}
2948a9a79dfeSJoe Perches 		ata_link_warn(link,
29493b761d3dSTejun Heo 			      "link online but %d devices misclassified, "
29503b761d3dSTejun Heo 			      "device detection might fail\n", nr_unknown);
2951f046519fSTejun Heo 	}
2952f046519fSTejun Heo 
2953c6fd2807SJeff Garzik 	/* reset successful, schedule revalidation */
2954cf480626STejun Heo 	ata_eh_done(link, NULL, ATA_EH_RESET);
2955b1c72916STejun Heo 	if (slave)
2956b1c72916STejun Heo 		ata_eh_done(slave, NULL, ATA_EH_RESET);
295719b72321STejun Heo 	ehc->last_reset = jiffies;		/* update to completion time */
2958c6fd2807SJeff Garzik 	ehc->i.action |= ATA_EH_REVALIDATE;
29596b7ae954STejun Heo 	link->lpm_policy = ATA_LPM_UNKNOWN;	/* reset LPM state */
2960416dc9edSTejun Heo 
2961416dc9edSTejun Heo 	rc = 0;
2962fccb6ea5STejun Heo  out:
2963fccb6ea5STejun Heo 	/* clear hotplug flag */
2964fccb6ea5STejun Heo 	ehc->i.flags &= ~ATA_EHI_HOTPLUGGED;
2965b1c72916STejun Heo 	if (slave)
2966b1c72916STejun Heo 		sehc->i.flags &= ~ATA_EHI_HOTPLUGGED;
2967afaa5c37STejun Heo 
2968afaa5c37STejun Heo 	spin_lock_irqsave(ap->lock, flags);
2969afaa5c37STejun Heo 	ap->pflags &= ~ATA_PFLAG_RESETTING;
2970afaa5c37STejun Heo 	spin_unlock_irqrestore(ap->lock, flags);
2971afaa5c37STejun Heo 
2972c6fd2807SJeff Garzik 	return rc;
2973416dc9edSTejun Heo 
2974416dc9edSTejun Heo  fail:
29755958e302STejun Heo 	/* if SCR isn't accessible on a fan-out port, PMP needs to be reset */
29765958e302STejun Heo 	if (!ata_is_host_link(link) &&
29775958e302STejun Heo 	    sata_scr_read(link, SCR_STATUS, &sstatus))
29785958e302STejun Heo 		rc = -ERESTART;
29795958e302STejun Heo 
29807a46c078SGwendal Grignou 	if (try >= max_tries) {
29818ea7645cSTejun Heo 		/*
29828ea7645cSTejun Heo 		 * Thaw host port even if reset failed, so that the port
29838ea7645cSTejun Heo 		 * can be retried on the next phy event.  This risks
29848ea7645cSTejun Heo 		 * repeated EH runs but seems to be a better tradeoff than
29858ea7645cSTejun Heo 		 * shutting down a port after a botched hotplug attempt.
29868ea7645cSTejun Heo 		 */
29878ea7645cSTejun Heo 		if (ata_is_host_link(link))
29888ea7645cSTejun Heo 			ata_eh_thaw_port(ap);
2989416dc9edSTejun Heo 		goto out;
29908ea7645cSTejun Heo 	}
2991416dc9edSTejun Heo 
2992416dc9edSTejun Heo 	now = jiffies;
2993416dc9edSTejun Heo 	if (time_before(now, deadline)) {
2994416dc9edSTejun Heo 		unsigned long delta = deadline - now;
2995416dc9edSTejun Heo 
2996a9a79dfeSJoe Perches 		ata_link_warn(failed_link,
29970a2c0f56STejun Heo 			"reset failed (errno=%d), retrying in %u secs\n",
29980a2c0f56STejun Heo 			rc, DIV_ROUND_UP(jiffies_to_msecs(delta), 1000));
2999416dc9edSTejun Heo 
3000c0c362b6STejun Heo 		ata_eh_release(ap);
3001416dc9edSTejun Heo 		while (delta)
3002416dc9edSTejun Heo 			delta = schedule_timeout_uninterruptible(delta);
3003c0c362b6STejun Heo 		ata_eh_acquire(ap);
3004416dc9edSTejun Heo 	}
3005416dc9edSTejun Heo 
30067a46c078SGwendal Grignou 	/*
30077a46c078SGwendal Grignou 	 * While disks spinup behind PMP, some controllers fail sending SRST.
30087a46c078SGwendal Grignou 	 * They need to be reset - as well as the PMP - before retrying.
30097a46c078SGwendal Grignou 	 */
30107a46c078SGwendal Grignou 	if (rc == -ERESTART) {
30117a46c078SGwendal Grignou 		if (ata_is_host_link(link))
30127a46c078SGwendal Grignou 			ata_eh_thaw_port(ap);
30137a46c078SGwendal Grignou 		goto out;
30147a46c078SGwendal Grignou 	}
30157a46c078SGwendal Grignou 
3016b1c72916STejun Heo 	if (try == max_tries - 1) {
3017a07d499bSTejun Heo 		sata_down_spd_limit(link, 0);
3018b1c72916STejun Heo 		if (slave)
3019a07d499bSTejun Heo 			sata_down_spd_limit(slave, 0);
3020b1c72916STejun Heo 	} else if (rc == -EPIPE)
3021a07d499bSTejun Heo 		sata_down_spd_limit(failed_link, 0);
3022b1c72916STejun Heo 
3023416dc9edSTejun Heo 	if (hardreset)
3024416dc9edSTejun Heo 		reset = hardreset;
3025416dc9edSTejun Heo 	goto retry;
3026c6fd2807SJeff Garzik }
3027c6fd2807SJeff Garzik 
302845fabbb7SElias Oltmanns static inline void ata_eh_pull_park_action(struct ata_port *ap)
302945fabbb7SElias Oltmanns {
303045fabbb7SElias Oltmanns 	struct ata_link *link;
303145fabbb7SElias Oltmanns 	struct ata_device *dev;
303245fabbb7SElias Oltmanns 	unsigned long flags;
303345fabbb7SElias Oltmanns 
303445fabbb7SElias Oltmanns 	/*
303545fabbb7SElias Oltmanns 	 * This function can be thought of as an extended version of
303645fabbb7SElias Oltmanns 	 * ata_eh_about_to_do() specially crafted to accommodate the
303745fabbb7SElias Oltmanns 	 * requirements of ATA_EH_PARK handling. Since the EH thread
303845fabbb7SElias Oltmanns 	 * does not leave the do {} while () loop in ata_eh_recover as
303945fabbb7SElias Oltmanns 	 * long as the timeout for a park request to *one* device on
304045fabbb7SElias Oltmanns 	 * the port has not expired, and since we still want to pick
304145fabbb7SElias Oltmanns 	 * up park requests to other devices on the same port or
304245fabbb7SElias Oltmanns 	 * timeout updates for the same device, we have to pull
304345fabbb7SElias Oltmanns 	 * ATA_EH_PARK actions from eh_info into eh_context.i
304445fabbb7SElias Oltmanns 	 * ourselves at the beginning of each pass over the loop.
304545fabbb7SElias Oltmanns 	 *
304645fabbb7SElias Oltmanns 	 * Additionally, all write accesses to &ap->park_req_pending
304716735d02SWolfram Sang 	 * through reinit_completion() (see below) or complete_all()
304845fabbb7SElias Oltmanns 	 * (see ata_scsi_park_store()) are protected by the host lock.
304945fabbb7SElias Oltmanns 	 * As a result we have that park_req_pending.done is zero on
305045fabbb7SElias Oltmanns 	 * exit from this function, i.e. when ATA_EH_PARK actions for
305145fabbb7SElias Oltmanns 	 * *all* devices on port ap have been pulled into the
305245fabbb7SElias Oltmanns 	 * respective eh_context structs. If, and only if,
305345fabbb7SElias Oltmanns 	 * park_req_pending.done is non-zero by the time we reach
305445fabbb7SElias Oltmanns 	 * wait_for_completion_timeout(), another ATA_EH_PARK action
305545fabbb7SElias Oltmanns 	 * has been scheduled for at least one of the devices on port
305645fabbb7SElias Oltmanns 	 * ap and we have to cycle over the do {} while () loop in
305745fabbb7SElias Oltmanns 	 * ata_eh_recover() again.
305845fabbb7SElias Oltmanns 	 */
305945fabbb7SElias Oltmanns 
306045fabbb7SElias Oltmanns 	spin_lock_irqsave(ap->lock, flags);
306116735d02SWolfram Sang 	reinit_completion(&ap->park_req_pending);
30621eca4365STejun Heo 	ata_for_each_link(link, ap, EDGE) {
30631eca4365STejun Heo 		ata_for_each_dev(dev, link, ALL) {
306445fabbb7SElias Oltmanns 			struct ata_eh_info *ehi = &link->eh_info;
306545fabbb7SElias Oltmanns 
306645fabbb7SElias Oltmanns 			link->eh_context.i.dev_action[dev->devno] |=
306745fabbb7SElias Oltmanns 				ehi->dev_action[dev->devno] & ATA_EH_PARK;
306845fabbb7SElias Oltmanns 			ata_eh_clear_action(link, dev, ehi, ATA_EH_PARK);
306945fabbb7SElias Oltmanns 		}
307045fabbb7SElias Oltmanns 	}
307145fabbb7SElias Oltmanns 	spin_unlock_irqrestore(ap->lock, flags);
307245fabbb7SElias Oltmanns }
307345fabbb7SElias Oltmanns 
307445fabbb7SElias Oltmanns static void ata_eh_park_issue_cmd(struct ata_device *dev, int park)
307545fabbb7SElias Oltmanns {
307645fabbb7SElias Oltmanns 	struct ata_eh_context *ehc = &dev->link->eh_context;
307745fabbb7SElias Oltmanns 	struct ata_taskfile tf;
307845fabbb7SElias Oltmanns 	unsigned int err_mask;
307945fabbb7SElias Oltmanns 
308045fabbb7SElias Oltmanns 	ata_tf_init(dev, &tf);
308145fabbb7SElias Oltmanns 	if (park) {
308245fabbb7SElias Oltmanns 		ehc->unloaded_mask |= 1 << dev->devno;
308345fabbb7SElias Oltmanns 		tf.command = ATA_CMD_IDLEIMMEDIATE;
308445fabbb7SElias Oltmanns 		tf.feature = 0x44;
308545fabbb7SElias Oltmanns 		tf.lbal = 0x4c;
308645fabbb7SElias Oltmanns 		tf.lbam = 0x4e;
308745fabbb7SElias Oltmanns 		tf.lbah = 0x55;
308845fabbb7SElias Oltmanns 	} else {
308945fabbb7SElias Oltmanns 		ehc->unloaded_mask &= ~(1 << dev->devno);
309045fabbb7SElias Oltmanns 		tf.command = ATA_CMD_CHK_POWER;
309145fabbb7SElias Oltmanns 	}
309245fabbb7SElias Oltmanns 
309345fabbb7SElias Oltmanns 	tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR;
3094bd18bc04SHannes Reinecke 	tf.protocol = ATA_PROT_NODATA;
309545fabbb7SElias Oltmanns 	err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
309645fabbb7SElias Oltmanns 	if (park && (err_mask || tf.lbal != 0xc4)) {
3097a9a79dfeSJoe Perches 		ata_dev_err(dev, "head unload failed!\n");
309845fabbb7SElias Oltmanns 		ehc->unloaded_mask &= ~(1 << dev->devno);
309945fabbb7SElias Oltmanns 	}
310045fabbb7SElias Oltmanns }
310145fabbb7SElias Oltmanns 
31020260731fSTejun Heo static int ata_eh_revalidate_and_attach(struct ata_link *link,
3103c6fd2807SJeff Garzik 					struct ata_device **r_failed_dev)
3104c6fd2807SJeff Garzik {
31050260731fSTejun Heo 	struct ata_port *ap = link->ap;
31060260731fSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
3107c6fd2807SJeff Garzik 	struct ata_device *dev;
31088c3c52a8STejun Heo 	unsigned int new_mask = 0;
3109c6fd2807SJeff Garzik 	unsigned long flags;
3110f58229f8STejun Heo 	int rc = 0;
3111c6fd2807SJeff Garzik 
3112c6fd2807SJeff Garzik 	DPRINTK("ENTER\n");
3113c6fd2807SJeff Garzik 
31148c3c52a8STejun Heo 	/* For PATA drive side cable detection to work, IDENTIFY must
31158c3c52a8STejun Heo 	 * be done backwards such that PDIAG- is released by the slave
31168c3c52a8STejun Heo 	 * device before the master device is identified.
31178c3c52a8STejun Heo 	 */
31181eca4365STejun Heo 	ata_for_each_dev(dev, link, ALL_REVERSE) {
3119f58229f8STejun Heo 		unsigned int action = ata_eh_dev_action(dev);
3120f58229f8STejun Heo 		unsigned int readid_flags = 0;
3121c6fd2807SJeff Garzik 
3122bff04647STejun Heo 		if (ehc->i.flags & ATA_EHI_DID_RESET)
3123bff04647STejun Heo 			readid_flags |= ATA_READID_POSTRESET;
3124bff04647STejun Heo 
31259666f400STejun Heo 		if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) {
3126633273a3STejun Heo 			WARN_ON(dev->class == ATA_DEV_PMP);
3127633273a3STejun Heo 
3128b1c72916STejun Heo 			if (ata_phys_link_offline(ata_dev_phys_link(dev))) {
3129c6fd2807SJeff Garzik 				rc = -EIO;
31308c3c52a8STejun Heo 				goto err;
3131c6fd2807SJeff Garzik 			}
3132c6fd2807SJeff Garzik 
31330260731fSTejun Heo 			ata_eh_about_to_do(link, dev, ATA_EH_REVALIDATE);
3134422c9daaSTejun Heo 			rc = ata_dev_revalidate(dev, ehc->classes[dev->devno],
3135422c9daaSTejun Heo 						readid_flags);
3136c6fd2807SJeff Garzik 			if (rc)
31378c3c52a8STejun Heo 				goto err;
3138c6fd2807SJeff Garzik 
31390260731fSTejun Heo 			ata_eh_done(link, dev, ATA_EH_REVALIDATE);
3140c6fd2807SJeff Garzik 
3141baa1e78aSTejun Heo 			/* Configuration may have changed, reconfigure
3142baa1e78aSTejun Heo 			 * transfer mode.
3143baa1e78aSTejun Heo 			 */
3144baa1e78aSTejun Heo 			ehc->i.flags |= ATA_EHI_SETMODE;
3145baa1e78aSTejun Heo 
3146c6fd2807SJeff Garzik 			/* schedule the scsi_rescan_device() here */
3147ad72cf98STejun Heo 			schedule_work(&(ap->scsi_rescan_task));
3148c6fd2807SJeff Garzik 		} else if (dev->class == ATA_DEV_UNKNOWN &&
3149c6fd2807SJeff Garzik 			   ehc->tries[dev->devno] &&
3150c6fd2807SJeff Garzik 			   ata_class_enabled(ehc->classes[dev->devno])) {
3151842faa6cSTejun Heo 			/* Temporarily set dev->class, it will be
3152842faa6cSTejun Heo 			 * permanently set once all configurations are
3153842faa6cSTejun Heo 			 * complete.  This is necessary because new
3154842faa6cSTejun Heo 			 * device configuration is done in two
3155842faa6cSTejun Heo 			 * separate loops.
3156842faa6cSTejun Heo 			 */
3157c6fd2807SJeff Garzik 			dev->class = ehc->classes[dev->devno];
3158c6fd2807SJeff Garzik 
3159633273a3STejun Heo 			if (dev->class == ATA_DEV_PMP)
3160633273a3STejun Heo 				rc = sata_pmp_attach(dev);
3161633273a3STejun Heo 			else
3162633273a3STejun Heo 				rc = ata_dev_read_id(dev, &dev->class,
3163633273a3STejun Heo 						     readid_flags, dev->id);
3164842faa6cSTejun Heo 
3165842faa6cSTejun Heo 			/* read_id might have changed class, store and reset */
3166842faa6cSTejun Heo 			ehc->classes[dev->devno] = dev->class;
3167842faa6cSTejun Heo 			dev->class = ATA_DEV_UNKNOWN;
3168842faa6cSTejun Heo 
31698c3c52a8STejun Heo 			switch (rc) {
31708c3c52a8STejun Heo 			case 0:
317199cf610aSTejun Heo 				/* clear error info accumulated during probe */
317299cf610aSTejun Heo 				ata_ering_clear(&dev->ering);
3173f58229f8STejun Heo 				new_mask |= 1 << dev->devno;
31748c3c52a8STejun Heo 				break;
31758c3c52a8STejun Heo 			case -ENOENT:
317655a8e2c8STejun Heo 				/* IDENTIFY was issued to non-existent
317755a8e2c8STejun Heo 				 * device.  No need to reset.  Just
3178842faa6cSTejun Heo 				 * thaw and ignore the device.
317955a8e2c8STejun Heo 				 */
318055a8e2c8STejun Heo 				ata_eh_thaw_port(ap);
3181c6fd2807SJeff Garzik 				break;
31828c3c52a8STejun Heo 			default:
31838c3c52a8STejun Heo 				goto err;
31848c3c52a8STejun Heo 			}
31858c3c52a8STejun Heo 		}
3186c6fd2807SJeff Garzik 	}
3187c6fd2807SJeff Garzik 
3188c1c4e8d5STejun Heo 	/* PDIAG- should have been released, ask cable type if post-reset */
318933267325STejun Heo 	if ((ehc->i.flags & ATA_EHI_DID_RESET) && ata_is_host_link(link)) {
319033267325STejun Heo 		if (ap->ops->cable_detect)
3191c1c4e8d5STejun Heo 			ap->cbl = ap->ops->cable_detect(ap);
319233267325STejun Heo 		ata_force_cbl(ap);
319333267325STejun Heo 	}
3194c1c4e8d5STejun Heo 
31958c3c52a8STejun Heo 	/* Configure new devices forward such that user doesn't see
31968c3c52a8STejun Heo 	 * device detection messages backwards.
31978c3c52a8STejun Heo 	 */
31981eca4365STejun Heo 	ata_for_each_dev(dev, link, ALL) {
31994f7c2874STejun Heo 		if (!(new_mask & (1 << dev->devno)))
32008c3c52a8STejun Heo 			continue;
32018c3c52a8STejun Heo 
3202842faa6cSTejun Heo 		dev->class = ehc->classes[dev->devno];
3203842faa6cSTejun Heo 
32044f7c2874STejun Heo 		if (dev->class == ATA_DEV_PMP)
32054f7c2874STejun Heo 			continue;
32064f7c2874STejun Heo 
32078c3c52a8STejun Heo 		ehc->i.flags |= ATA_EHI_PRINTINFO;
32088c3c52a8STejun Heo 		rc = ata_dev_configure(dev);
32098c3c52a8STejun Heo 		ehc->i.flags &= ~ATA_EHI_PRINTINFO;
3210842faa6cSTejun Heo 		if (rc) {
3211842faa6cSTejun Heo 			dev->class = ATA_DEV_UNKNOWN;
32128c3c52a8STejun Heo 			goto err;
3213842faa6cSTejun Heo 		}
32148c3c52a8STejun Heo 
3215c6fd2807SJeff Garzik 		spin_lock_irqsave(ap->lock, flags);
3216c6fd2807SJeff Garzik 		ap->pflags |= ATA_PFLAG_SCSI_HOTPLUG;
3217c6fd2807SJeff Garzik 		spin_unlock_irqrestore(ap->lock, flags);
3218baa1e78aSTejun Heo 
321955a8e2c8STejun Heo 		/* new device discovered, configure xfermode */
3220baa1e78aSTejun Heo 		ehc->i.flags |= ATA_EHI_SETMODE;
3221c6fd2807SJeff Garzik 	}
3222c6fd2807SJeff Garzik 
32238c3c52a8STejun Heo 	return 0;
32248c3c52a8STejun Heo 
32258c3c52a8STejun Heo  err:
3226c6fd2807SJeff Garzik 	*r_failed_dev = dev;
32278c3c52a8STejun Heo 	DPRINTK("EXIT rc=%d\n", rc);
3228c6fd2807SJeff Garzik 	return rc;
3229c6fd2807SJeff Garzik }
3230c6fd2807SJeff Garzik 
32316f1d1e3aSTejun Heo /**
32326f1d1e3aSTejun Heo  *	ata_set_mode - Program timings and issue SET FEATURES - XFER
32336f1d1e3aSTejun Heo  *	@link: link on which timings will be programmed
323498a1708dSMartin Olsson  *	@r_failed_dev: out parameter for failed device
32356f1d1e3aSTejun Heo  *
32366f1d1e3aSTejun Heo  *	Set ATA device disk transfer mode (PIO3, UDMA6, etc.).  If
32376f1d1e3aSTejun Heo  *	ata_set_mode() fails, pointer to the failing device is
32386f1d1e3aSTejun Heo  *	returned in @r_failed_dev.
32396f1d1e3aSTejun Heo  *
32406f1d1e3aSTejun Heo  *	LOCKING:
32416f1d1e3aSTejun Heo  *	PCI/etc. bus probe sem.
32426f1d1e3aSTejun Heo  *
32436f1d1e3aSTejun Heo  *	RETURNS:
32446f1d1e3aSTejun Heo  *	0 on success, negative errno otherwise
32456f1d1e3aSTejun Heo  */
32466f1d1e3aSTejun Heo int ata_set_mode(struct ata_link *link, struct ata_device **r_failed_dev)
32476f1d1e3aSTejun Heo {
32486f1d1e3aSTejun Heo 	struct ata_port *ap = link->ap;
324900115e0fSTejun Heo 	struct ata_device *dev;
325000115e0fSTejun Heo 	int rc;
32516f1d1e3aSTejun Heo 
325276326ac1STejun Heo 	/* if data transfer is verified, clear DUBIOUS_XFER on ering top */
32531eca4365STejun Heo 	ata_for_each_dev(dev, link, ENABLED) {
325476326ac1STejun Heo 		if (!(dev->flags & ATA_DFLAG_DUBIOUS_XFER)) {
325576326ac1STejun Heo 			struct ata_ering_entry *ent;
325676326ac1STejun Heo 
325776326ac1STejun Heo 			ent = ata_ering_top(&dev->ering);
325876326ac1STejun Heo 			if (ent)
325976326ac1STejun Heo 				ent->eflags &= ~ATA_EFLAG_DUBIOUS_XFER;
326076326ac1STejun Heo 		}
326176326ac1STejun Heo 	}
326276326ac1STejun Heo 
32636f1d1e3aSTejun Heo 	/* has private set_mode? */
32646f1d1e3aSTejun Heo 	if (ap->ops->set_mode)
326500115e0fSTejun Heo 		rc = ap->ops->set_mode(link, r_failed_dev);
326600115e0fSTejun Heo 	else
326700115e0fSTejun Heo 		rc = ata_do_set_mode(link, r_failed_dev);
326800115e0fSTejun Heo 
326900115e0fSTejun Heo 	/* if transfer mode has changed, set DUBIOUS_XFER on device */
32701eca4365STejun Heo 	ata_for_each_dev(dev, link, ENABLED) {
327100115e0fSTejun Heo 		struct ata_eh_context *ehc = &link->eh_context;
327200115e0fSTejun Heo 		u8 saved_xfer_mode = ehc->saved_xfer_mode[dev->devno];
327300115e0fSTejun Heo 		u8 saved_ncq = !!(ehc->saved_ncq_enabled & (1 << dev->devno));
327400115e0fSTejun Heo 
327500115e0fSTejun Heo 		if (dev->xfer_mode != saved_xfer_mode ||
327600115e0fSTejun Heo 		    ata_ncq_enabled(dev) != saved_ncq)
327700115e0fSTejun Heo 			dev->flags |= ATA_DFLAG_DUBIOUS_XFER;
327800115e0fSTejun Heo 	}
327900115e0fSTejun Heo 
328000115e0fSTejun Heo 	return rc;
32816f1d1e3aSTejun Heo }
32826f1d1e3aSTejun Heo 
328311fc33daSTejun Heo /**
328411fc33daSTejun Heo  *	atapi_eh_clear_ua - Clear ATAPI UNIT ATTENTION after reset
328511fc33daSTejun Heo  *	@dev: ATAPI device to clear UA for
328611fc33daSTejun Heo  *
328711fc33daSTejun Heo  *	Resets and other operations can make an ATAPI device raise
328811fc33daSTejun Heo  *	UNIT ATTENTION which causes the next operation to fail.  This
328911fc33daSTejun Heo  *	function clears UA.
329011fc33daSTejun Heo  *
329111fc33daSTejun Heo  *	LOCKING:
329211fc33daSTejun Heo  *	EH context (may sleep).
329311fc33daSTejun Heo  *
329411fc33daSTejun Heo  *	RETURNS:
329511fc33daSTejun Heo  *	0 on success, -errno on failure.
329611fc33daSTejun Heo  */
329711fc33daSTejun Heo static int atapi_eh_clear_ua(struct ata_device *dev)
329811fc33daSTejun Heo {
329911fc33daSTejun Heo 	int i;
330011fc33daSTejun Heo 
330111fc33daSTejun Heo 	for (i = 0; i < ATA_EH_UA_TRIES; i++) {
3302b5357081STejun Heo 		u8 *sense_buffer = dev->link->ap->sector_buf;
330311fc33daSTejun Heo 		u8 sense_key = 0;
330411fc33daSTejun Heo 		unsigned int err_mask;
330511fc33daSTejun Heo 
330611fc33daSTejun Heo 		err_mask = atapi_eh_tur(dev, &sense_key);
330711fc33daSTejun Heo 		if (err_mask != 0 && err_mask != AC_ERR_DEV) {
3308a9a79dfeSJoe Perches 			ata_dev_warn(dev,
3309a9a79dfeSJoe Perches 				     "TEST_UNIT_READY failed (err_mask=0x%x)\n",
3310a9a79dfeSJoe Perches 				     err_mask);
331111fc33daSTejun Heo 			return -EIO;
331211fc33daSTejun Heo 		}
331311fc33daSTejun Heo 
331411fc33daSTejun Heo 		if (!err_mask || sense_key != UNIT_ATTENTION)
331511fc33daSTejun Heo 			return 0;
331611fc33daSTejun Heo 
331711fc33daSTejun Heo 		err_mask = atapi_eh_request_sense(dev, sense_buffer, sense_key);
331811fc33daSTejun Heo 		if (err_mask) {
3319a9a79dfeSJoe Perches 			ata_dev_warn(dev, "failed to clear "
332011fc33daSTejun Heo 				"UNIT ATTENTION (err_mask=0x%x)\n", err_mask);
332111fc33daSTejun Heo 			return -EIO;
332211fc33daSTejun Heo 		}
332311fc33daSTejun Heo 	}
332411fc33daSTejun Heo 
3325a9a79dfeSJoe Perches 	ata_dev_warn(dev, "UNIT ATTENTION persists after %d tries\n",
3326a9a79dfeSJoe Perches 		     ATA_EH_UA_TRIES);
332711fc33daSTejun Heo 
332811fc33daSTejun Heo 	return 0;
332911fc33daSTejun Heo }
333011fc33daSTejun Heo 
33316013efd8STejun Heo /**
33326013efd8STejun Heo  *	ata_eh_maybe_retry_flush - Retry FLUSH if necessary
33336013efd8STejun Heo  *	@dev: ATA device which may need FLUSH retry
33346013efd8STejun Heo  *
33356013efd8STejun Heo  *	If @dev failed FLUSH, it needs to be reported upper layer
33366013efd8STejun Heo  *	immediately as it means that @dev failed to remap and already
33376013efd8STejun Heo  *	lost at least a sector and further FLUSH retrials won't make
33386013efd8STejun Heo  *	any difference to the lost sector.  However, if FLUSH failed
33396013efd8STejun Heo  *	for other reasons, for example transmission error, FLUSH needs
33406013efd8STejun Heo  *	to be retried.
33416013efd8STejun Heo  *
33426013efd8STejun Heo  *	This function determines whether FLUSH failure retry is
33436013efd8STejun Heo  *	necessary and performs it if so.
33446013efd8STejun Heo  *
33456013efd8STejun Heo  *	RETURNS:
33466013efd8STejun Heo  *	0 if EH can continue, -errno if EH needs to be repeated.
33476013efd8STejun Heo  */
33486013efd8STejun Heo static int ata_eh_maybe_retry_flush(struct ata_device *dev)
33496013efd8STejun Heo {
33506013efd8STejun Heo 	struct ata_link *link = dev->link;
33516013efd8STejun Heo 	struct ata_port *ap = link->ap;
33526013efd8STejun Heo 	struct ata_queued_cmd *qc;
33536013efd8STejun Heo 	struct ata_taskfile tf;
33546013efd8STejun Heo 	unsigned int err_mask;
33556013efd8STejun Heo 	int rc = 0;
33566013efd8STejun Heo 
33576013efd8STejun Heo 	/* did flush fail for this device? */
33586013efd8STejun Heo 	if (!ata_tag_valid(link->active_tag))
33596013efd8STejun Heo 		return 0;
33606013efd8STejun Heo 
33616013efd8STejun Heo 	qc = __ata_qc_from_tag(ap, link->active_tag);
33626013efd8STejun Heo 	if (qc->dev != dev || (qc->tf.command != ATA_CMD_FLUSH_EXT &&
33636013efd8STejun Heo 			       qc->tf.command != ATA_CMD_FLUSH))
33646013efd8STejun Heo 		return 0;
33656013efd8STejun Heo 
33666013efd8STejun Heo 	/* if the device failed it, it should be reported to upper layers */
33676013efd8STejun Heo 	if (qc->err_mask & AC_ERR_DEV)
33686013efd8STejun Heo 		return 0;
33696013efd8STejun Heo 
33706013efd8STejun Heo 	/* flush failed for some other reason, give it another shot */
33716013efd8STejun Heo 	ata_tf_init(dev, &tf);
33726013efd8STejun Heo 
33736013efd8STejun Heo 	tf.command = qc->tf.command;
33746013efd8STejun Heo 	tf.flags |= ATA_TFLAG_DEVICE;
33756013efd8STejun Heo 	tf.protocol = ATA_PROT_NODATA;
33766013efd8STejun Heo 
3377a9a79dfeSJoe Perches 	ata_dev_warn(dev, "retrying FLUSH 0x%x Emask 0x%x\n",
33786013efd8STejun Heo 		       tf.command, qc->err_mask);
33796013efd8STejun Heo 
33806013efd8STejun Heo 	err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0);
33816013efd8STejun Heo 	if (!err_mask) {
33826013efd8STejun Heo 		/*
33836013efd8STejun Heo 		 * FLUSH is complete but there's no way to
33846013efd8STejun Heo 		 * successfully complete a failed command from EH.
33856013efd8STejun Heo 		 * Making sure retry is allowed at least once and
33866013efd8STejun Heo 		 * retrying it should do the trick - whatever was in
33876013efd8STejun Heo 		 * the cache is already on the platter and this won't
33886013efd8STejun Heo 		 * cause infinite loop.
33896013efd8STejun Heo 		 */
33906013efd8STejun Heo 		qc->scsicmd->allowed = max(qc->scsicmd->allowed, 1);
33916013efd8STejun Heo 	} else {
3392a9a79dfeSJoe Perches 		ata_dev_warn(dev, "FLUSH failed Emask 0x%x\n",
33936013efd8STejun Heo 			       err_mask);
33946013efd8STejun Heo 		rc = -EIO;
33956013efd8STejun Heo 
33966013efd8STejun Heo 		/* if device failed it, report it to upper layers */
33976013efd8STejun Heo 		if (err_mask & AC_ERR_DEV) {
33986013efd8STejun Heo 			qc->err_mask |= AC_ERR_DEV;
33996013efd8STejun Heo 			qc->result_tf = tf;
34006013efd8STejun Heo 			if (!(ap->pflags & ATA_PFLAG_FROZEN))
34016013efd8STejun Heo 				rc = 0;
34026013efd8STejun Heo 		}
34036013efd8STejun Heo 	}
34046013efd8STejun Heo 	return rc;
34056013efd8STejun Heo }
34066013efd8STejun Heo 
34076b7ae954STejun Heo /**
34086b7ae954STejun Heo  *	ata_eh_set_lpm - configure SATA interface power management
34096b7ae954STejun Heo  *	@link: link to configure power management
34106b7ae954STejun Heo  *	@policy: the link power management policy
34116b7ae954STejun Heo  *	@r_failed_dev: out parameter for failed device
34126b7ae954STejun Heo  *
34136b7ae954STejun Heo  *	Enable SATA Interface power management.  This will enable
3414f4ac6476SHans de Goede  *	Device Interface Power Management (DIPM) for min_power and
3415f4ac6476SHans de Goede  *	medium_power_with_dipm policies, and then call driver specific
3416f4ac6476SHans de Goede  *	callbacks for enabling Host Initiated Power management.
34176b7ae954STejun Heo  *
34186b7ae954STejun Heo  *	LOCKING:
34196b7ae954STejun Heo  *	EH context.
34206b7ae954STejun Heo  *
34216b7ae954STejun Heo  *	RETURNS:
34226b7ae954STejun Heo  *	0 on success, -errno on failure.
34236b7ae954STejun Heo  */
34246b7ae954STejun Heo static int ata_eh_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
34256b7ae954STejun Heo 			  struct ata_device **r_failed_dev)
34266b7ae954STejun Heo {
34276c8ea89cSTejun Heo 	struct ata_port *ap = ata_is_host_link(link) ? link->ap : NULL;
34286b7ae954STejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
34296b7ae954STejun Heo 	struct ata_device *dev, *link_dev = NULL, *lpm_dev = NULL;
3430e5005b15STejun Heo 	enum ata_lpm_policy old_policy = link->lpm_policy;
34315f6f12ccSTejun Heo 	bool no_dipm = link->ap->flags & ATA_FLAG_NO_DIPM;
34326b7ae954STejun Heo 	unsigned int hints = ATA_LPM_EMPTY | ATA_LPM_HIPM;
34336b7ae954STejun Heo 	unsigned int err_mask;
34346b7ae954STejun Heo 	int rc;
34356b7ae954STejun Heo 
34366b7ae954STejun Heo 	/* if the link or host doesn't do LPM, noop */
34376b7ae954STejun Heo 	if ((link->flags & ATA_LFLAG_NO_LPM) || (ap && !ap->ops->set_lpm))
34386b7ae954STejun Heo 		return 0;
34396b7ae954STejun Heo 
34406b7ae954STejun Heo 	/*
34416b7ae954STejun Heo 	 * DIPM is enabled only for MIN_POWER as some devices
34426b7ae954STejun Heo 	 * misbehave when the host NACKs transition to SLUMBER.  Order
34436b7ae954STejun Heo 	 * device and link configurations such that the host always
34446b7ae954STejun Heo 	 * allows DIPM requests.
34456b7ae954STejun Heo 	 */
34466b7ae954STejun Heo 	ata_for_each_dev(dev, link, ENABLED) {
34476b7ae954STejun Heo 		bool hipm = ata_id_has_hipm(dev->id);
3448ae01b249STejun Heo 		bool dipm = ata_id_has_dipm(dev->id) && !no_dipm;
34496b7ae954STejun Heo 
34506b7ae954STejun Heo 		/* find the first enabled and LPM enabled devices */
34516b7ae954STejun Heo 		if (!link_dev)
34526b7ae954STejun Heo 			link_dev = dev;
34536b7ae954STejun Heo 
34546b7ae954STejun Heo 		if (!lpm_dev && (hipm || dipm))
34556b7ae954STejun Heo 			lpm_dev = dev;
34566b7ae954STejun Heo 
34576b7ae954STejun Heo 		hints &= ~ATA_LPM_EMPTY;
34586b7ae954STejun Heo 		if (!hipm)
34596b7ae954STejun Heo 			hints &= ~ATA_LPM_HIPM;
34606b7ae954STejun Heo 
34616b7ae954STejun Heo 		/* disable DIPM before changing link config */
3462f4ac6476SHans de Goede 		if (policy < ATA_LPM_MED_POWER_WITH_DIPM && dipm) {
34636b7ae954STejun Heo 			err_mask = ata_dev_set_feature(dev,
34646b7ae954STejun Heo 					SETFEATURES_SATA_DISABLE, SATA_DIPM);
34656b7ae954STejun Heo 			if (err_mask && err_mask != AC_ERR_DEV) {
3466a9a79dfeSJoe Perches 				ata_dev_warn(dev,
34676b7ae954STejun Heo 					     "failed to disable DIPM, Emask 0x%x\n",
34686b7ae954STejun Heo 					     err_mask);
34696b7ae954STejun Heo 				rc = -EIO;
34706b7ae954STejun Heo 				goto fail;
34716b7ae954STejun Heo 			}
34726b7ae954STejun Heo 		}
34736b7ae954STejun Heo 	}
34746b7ae954STejun Heo 
34756c8ea89cSTejun Heo 	if (ap) {
34766b7ae954STejun Heo 		rc = ap->ops->set_lpm(link, policy, hints);
34776b7ae954STejun Heo 		if (!rc && ap->slave_link)
34786b7ae954STejun Heo 			rc = ap->ops->set_lpm(ap->slave_link, policy, hints);
34796c8ea89cSTejun Heo 	} else
34806c8ea89cSTejun Heo 		rc = sata_pmp_set_lpm(link, policy, hints);
34816b7ae954STejun Heo 
34826b7ae954STejun Heo 	/*
34836b7ae954STejun Heo 	 * Attribute link config failure to the first (LPM) enabled
34846b7ae954STejun Heo 	 * device on the link.
34856b7ae954STejun Heo 	 */
34866b7ae954STejun Heo 	if (rc) {
34876b7ae954STejun Heo 		if (rc == -EOPNOTSUPP) {
34886b7ae954STejun Heo 			link->flags |= ATA_LFLAG_NO_LPM;
34896b7ae954STejun Heo 			return 0;
34906b7ae954STejun Heo 		}
34916b7ae954STejun Heo 		dev = lpm_dev ? lpm_dev : link_dev;
34926b7ae954STejun Heo 		goto fail;
34936b7ae954STejun Heo 	}
34946b7ae954STejun Heo 
3495e5005b15STejun Heo 	/*
3496e5005b15STejun Heo 	 * Low level driver acked the transition.  Issue DIPM command
3497e5005b15STejun Heo 	 * with the new policy set.
3498e5005b15STejun Heo 	 */
3499e5005b15STejun Heo 	link->lpm_policy = policy;
3500e5005b15STejun Heo 	if (ap && ap->slave_link)
3501e5005b15STejun Heo 		ap->slave_link->lpm_policy = policy;
3502e5005b15STejun Heo 
35036b7ae954STejun Heo 	/* host config updated, enable DIPM if transitioning to MIN_POWER */
35046b7ae954STejun Heo 	ata_for_each_dev(dev, link, ENABLED) {
3505f4ac6476SHans de Goede 		if (policy >= ATA_LPM_MED_POWER_WITH_DIPM && !no_dipm &&
3506ae01b249STejun Heo 		    ata_id_has_dipm(dev->id)) {
35076b7ae954STejun Heo 			err_mask = ata_dev_set_feature(dev,
35086b7ae954STejun Heo 					SETFEATURES_SATA_ENABLE, SATA_DIPM);
35096b7ae954STejun Heo 			if (err_mask && err_mask != AC_ERR_DEV) {
3510a9a79dfeSJoe Perches 				ata_dev_warn(dev,
35116b7ae954STejun Heo 					"failed to enable DIPM, Emask 0x%x\n",
35126b7ae954STejun Heo 					err_mask);
35136b7ae954STejun Heo 				rc = -EIO;
35146b7ae954STejun Heo 				goto fail;
35156b7ae954STejun Heo 			}
35166b7ae954STejun Heo 		}
35176b7ae954STejun Heo 	}
35186b7ae954STejun Heo 
351909c5b480SGabriele Mazzotta 	link->last_lpm_change = jiffies;
352009c5b480SGabriele Mazzotta 	link->flags |= ATA_LFLAG_CHANGED;
352109c5b480SGabriele Mazzotta 
35226b7ae954STejun Heo 	return 0;
35236b7ae954STejun Heo 
35246b7ae954STejun Heo fail:
3525e5005b15STejun Heo 	/* restore the old policy */
3526e5005b15STejun Heo 	link->lpm_policy = old_policy;
3527e5005b15STejun Heo 	if (ap && ap->slave_link)
3528e5005b15STejun Heo 		ap->slave_link->lpm_policy = old_policy;
3529e5005b15STejun Heo 
35306b7ae954STejun Heo 	/* if no device or only one more chance is left, disable LPM */
35316b7ae954STejun Heo 	if (!dev || ehc->tries[dev->devno] <= 2) {
3532a9a79dfeSJoe Perches 		ata_link_warn(link, "disabling LPM on the link\n");
35336b7ae954STejun Heo 		link->flags |= ATA_LFLAG_NO_LPM;
35346b7ae954STejun Heo 	}
35356b7ae954STejun Heo 	if (r_failed_dev)
35366b7ae954STejun Heo 		*r_failed_dev = dev;
35376b7ae954STejun Heo 	return rc;
35386b7ae954STejun Heo }
35396b7ae954STejun Heo 
35408a745f1fSKristen Carlson Accardi int ata_link_nr_enabled(struct ata_link *link)
3541c6fd2807SJeff Garzik {
3542f58229f8STejun Heo 	struct ata_device *dev;
3543f58229f8STejun Heo 	int cnt = 0;
3544c6fd2807SJeff Garzik 
35451eca4365STejun Heo 	ata_for_each_dev(dev, link, ENABLED)
3546c6fd2807SJeff Garzik 		cnt++;
3547c6fd2807SJeff Garzik 	return cnt;
3548c6fd2807SJeff Garzik }
3549c6fd2807SJeff Garzik 
35500260731fSTejun Heo static int ata_link_nr_vacant(struct ata_link *link)
3551c6fd2807SJeff Garzik {
3552f58229f8STejun Heo 	struct ata_device *dev;
3553f58229f8STejun Heo 	int cnt = 0;
3554c6fd2807SJeff Garzik 
35551eca4365STejun Heo 	ata_for_each_dev(dev, link, ALL)
3556f58229f8STejun Heo 		if (dev->class == ATA_DEV_UNKNOWN)
3557c6fd2807SJeff Garzik 			cnt++;
3558c6fd2807SJeff Garzik 	return cnt;
3559c6fd2807SJeff Garzik }
3560c6fd2807SJeff Garzik 
35610260731fSTejun Heo static int ata_eh_skip_recovery(struct ata_link *link)
3562c6fd2807SJeff Garzik {
3563672b2d65STejun Heo 	struct ata_port *ap = link->ap;
35640260731fSTejun Heo 	struct ata_eh_context *ehc = &link->eh_context;
3565f58229f8STejun Heo 	struct ata_device *dev;
3566c6fd2807SJeff Garzik 
3567f9df58cbSTejun Heo 	/* skip disabled links */
3568f9df58cbSTejun Heo 	if (link->flags & ATA_LFLAG_DISABLED)
3569f9df58cbSTejun Heo 		return 1;
3570f9df58cbSTejun Heo 
3571e2f3d75fSTejun Heo 	/* skip if explicitly requested */
3572e2f3d75fSTejun Heo 	if (ehc->i.flags & ATA_EHI_NO_RECOVERY)
3573e2f3d75fSTejun Heo 		return 1;
3574e2f3d75fSTejun Heo 
3575672b2d65STejun Heo 	/* thaw frozen port and recover failed devices */
3576672b2d65STejun Heo 	if ((ap->pflags & ATA_PFLAG_FROZEN) || ata_link_nr_enabled(link))
3577672b2d65STejun Heo 		return 0;
3578672b2d65STejun Heo 
3579672b2d65STejun Heo 	/* reset at least once if reset is requested */
3580672b2d65STejun Heo 	if ((ehc->i.action & ATA_EH_RESET) &&
3581672b2d65STejun Heo 	    !(ehc->i.flags & ATA_EHI_DID_RESET))
3582c6fd2807SJeff Garzik 		return 0;
3583c6fd2807SJeff Garzik 
3584c6fd2807SJeff Garzik 	/* skip if class codes for all vacant slots are ATA_DEV_NONE */
35851eca4365STejun Heo 	ata_for_each_dev(dev, link, ALL) {
3586c6fd2807SJeff Garzik 		if (dev->class == ATA_DEV_UNKNOWN &&
3587c6fd2807SJeff Garzik 		    ehc->classes[dev->devno] != ATA_DEV_NONE)
3588c6fd2807SJeff Garzik 			return 0;
3589c6fd2807SJeff Garzik 	}
3590c6fd2807SJeff Garzik 
3591c6fd2807SJeff Garzik 	return 1;
3592c6fd2807SJeff Garzik }
3593c6fd2807SJeff Garzik 
3594c2c7a89cSTejun Heo static int ata_count_probe_trials_cb(struct ata_ering_entry *ent, void *void_arg)
3595c2c7a89cSTejun Heo {
3596c2c7a89cSTejun Heo 	u64 interval = msecs_to_jiffies(ATA_EH_PROBE_TRIAL_INTERVAL);
3597c2c7a89cSTejun Heo 	u64 now = get_jiffies_64();
3598c2c7a89cSTejun Heo 	int *trials = void_arg;
3599c2c7a89cSTejun Heo 
36006868225eSLin Ming 	if ((ent->eflags & ATA_EFLAG_OLD_ER) ||
36016868225eSLin Ming 	    (ent->timestamp < now - min(now, interval)))
3602c2c7a89cSTejun Heo 		return -1;
3603c2c7a89cSTejun Heo 
3604c2c7a89cSTejun Heo 	(*trials)++;
3605c2c7a89cSTejun Heo 	return 0;
3606c2c7a89cSTejun Heo }
3607c2c7a89cSTejun Heo 
360802c05a27STejun Heo static int ata_eh_schedule_probe(struct ata_device *dev)
360902c05a27STejun Heo {
361002c05a27STejun Heo 	struct ata_eh_context *ehc = &dev->link->eh_context;
3611c2c7a89cSTejun Heo 	struct ata_link *link = ata_dev_phys_link(dev);
3612c2c7a89cSTejun Heo 	int trials = 0;
361302c05a27STejun Heo 
361402c05a27STejun Heo 	if (!(ehc->i.probe_mask & (1 << dev->devno)) ||
361502c05a27STejun Heo 	    (ehc->did_probe_mask & (1 << dev->devno)))
361602c05a27STejun Heo 		return 0;
361702c05a27STejun Heo 
361802c05a27STejun Heo 	ata_eh_detach_dev(dev);
361902c05a27STejun Heo 	ata_dev_init(dev);
362002c05a27STejun Heo 	ehc->did_probe_mask |= (1 << dev->devno);
3621cf480626STejun Heo 	ehc->i.action |= ATA_EH_RESET;
362200115e0fSTejun Heo 	ehc->saved_xfer_mode[dev->devno] = 0;
362300115e0fSTejun Heo 	ehc->saved_ncq_enabled &= ~(1 << dev->devno);
362402c05a27STejun Heo 
36256b7ae954STejun Heo 	/* the link maybe in a deep sleep, wake it up */
36266c8ea89cSTejun Heo 	if (link->lpm_policy > ATA_LPM_MAX_POWER) {
36276c8ea89cSTejun Heo 		if (ata_is_host_link(link))
36286c8ea89cSTejun Heo 			link->ap->ops->set_lpm(link, ATA_LPM_MAX_POWER,
36296c8ea89cSTejun Heo 					       ATA_LPM_EMPTY);
36306c8ea89cSTejun Heo 		else
36316c8ea89cSTejun Heo 			sata_pmp_set_lpm(link, ATA_LPM_MAX_POWER,
36326c8ea89cSTejun Heo 					 ATA_LPM_EMPTY);
36336c8ea89cSTejun Heo 	}
36346b7ae954STejun Heo 
3635c2c7a89cSTejun Heo 	/* Record and count probe trials on the ering.  The specific
3636c2c7a89cSTejun Heo 	 * error mask used is irrelevant.  Because a successful device
3637c2c7a89cSTejun Heo 	 * detection clears the ering, this count accumulates only if
3638c2c7a89cSTejun Heo 	 * there are consecutive failed probes.
3639c2c7a89cSTejun Heo 	 *
3640c2c7a89cSTejun Heo 	 * If the count is equal to or higher than ATA_EH_PROBE_TRIALS
3641c2c7a89cSTejun Heo 	 * in the last ATA_EH_PROBE_TRIAL_INTERVAL, link speed is
3642c2c7a89cSTejun Heo 	 * forced to 1.5Gbps.
3643c2c7a89cSTejun Heo 	 *
3644c2c7a89cSTejun Heo 	 * This is to work around cases where failed link speed
3645c2c7a89cSTejun Heo 	 * negotiation results in device misdetection leading to
3646c2c7a89cSTejun Heo 	 * infinite DEVXCHG or PHRDY CHG events.
3647c2c7a89cSTejun Heo 	 */
3648c2c7a89cSTejun Heo 	ata_ering_record(&dev->ering, 0, AC_ERR_OTHER);
3649c2c7a89cSTejun Heo 	ata_ering_map(&dev->ering, ata_count_probe_trials_cb, &trials);
3650c2c7a89cSTejun Heo 
3651c2c7a89cSTejun Heo 	if (trials > ATA_EH_PROBE_TRIALS)
3652c2c7a89cSTejun Heo 		sata_down_spd_limit(link, 1);
3653c2c7a89cSTejun Heo 
365402c05a27STejun Heo 	return 1;
365502c05a27STejun Heo }
365602c05a27STejun Heo 
36579b1e2658STejun Heo static int ata_eh_handle_dev_fail(struct ata_device *dev, int err)
3658fee7ca72STejun Heo {
36599af5c9c9STejun Heo 	struct ata_eh_context *ehc = &dev->link->eh_context;
3660fee7ca72STejun Heo 
3661cf9a590aSTejun Heo 	/* -EAGAIN from EH routine indicates retry without prejudice.
3662cf9a590aSTejun Heo 	 * The requester is responsible for ensuring forward progress.
3663cf9a590aSTejun Heo 	 */
3664cf9a590aSTejun Heo 	if (err != -EAGAIN)
3665fee7ca72STejun Heo 		ehc->tries[dev->devno]--;
3666fee7ca72STejun Heo 
3667fee7ca72STejun Heo 	switch (err) {
3668fee7ca72STejun Heo 	case -ENODEV:
3669fee7ca72STejun Heo 		/* device missing or wrong IDENTIFY data, schedule probing */
3670fee7ca72STejun Heo 		ehc->i.probe_mask |= (1 << dev->devno);
367105b83605SGustavo A. R. Silva 		/* fall through */
3672fee7ca72STejun Heo 	case -EINVAL:
3673fee7ca72STejun Heo 		/* give it just one more chance */
3674fee7ca72STejun Heo 		ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1);
367505b83605SGustavo A. R. Silva 		/* fall through */
3676fee7ca72STejun Heo 	case -EIO:
3677d89293abSTejun Heo 		if (ehc->tries[dev->devno] == 1) {
3678fee7ca72STejun Heo 			/* This is the last chance, better to slow
3679fee7ca72STejun Heo 			 * down than lose it.
3680fee7ca72STejun Heo 			 */
3681a07d499bSTejun Heo 			sata_down_spd_limit(ata_dev_phys_link(dev), 0);
3682d89293abSTejun Heo 			if (dev->pio_mode > XFER_PIO_0)
3683fee7ca72STejun Heo 				ata_down_xfermask_limit(dev, ATA_DNXFER_PIO);
3684fee7ca72STejun Heo 		}
3685fee7ca72STejun Heo 	}
3686fee7ca72STejun Heo 
3687fee7ca72STejun Heo 	if (ata_dev_enabled(dev) && !ehc->tries[dev->devno]) {
3688fee7ca72STejun Heo 		/* disable device if it has used up all its chances */
3689fee7ca72STejun Heo 		ata_dev_disable(dev);
3690fee7ca72STejun Heo 
3691fee7ca72STejun Heo 		/* detach if offline */
3692b1c72916STejun Heo 		if (ata_phys_link_offline(ata_dev_phys_link(dev)))
3693fee7ca72STejun Heo 			ata_eh_detach_dev(dev);
3694fee7ca72STejun Heo 
369502c05a27STejun Heo 		/* schedule probe if necessary */
369687fbc5a0STejun Heo 		if (ata_eh_schedule_probe(dev)) {
3697fee7ca72STejun Heo 			ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
369887fbc5a0STejun Heo 			memset(ehc->cmd_timeout_idx[dev->devno], 0,
369987fbc5a0STejun Heo 			       sizeof(ehc->cmd_timeout_idx[dev->devno]));
370087fbc5a0STejun Heo 		}
37019b1e2658STejun Heo 
37029b1e2658STejun Heo 		return 1;
3703fee7ca72STejun Heo 	} else {
3704cf480626STejun Heo 		ehc->i.action |= ATA_EH_RESET;
37059b1e2658STejun Heo 		return 0;
3706fee7ca72STejun Heo 	}
3707fee7ca72STejun Heo }
3708fee7ca72STejun Heo 
3709c6fd2807SJeff Garzik /**
3710c6fd2807SJeff Garzik  *	ata_eh_recover - recover host port after error
3711c6fd2807SJeff Garzik  *	@ap: host port to recover
3712c6fd2807SJeff Garzik  *	@prereset: prereset method (can be NULL)
3713c6fd2807SJeff Garzik  *	@softreset: softreset method (can be NULL)
3714c6fd2807SJeff Garzik  *	@hardreset: hardreset method (can be NULL)
3715c6fd2807SJeff Garzik  *	@postreset: postreset method (can be NULL)
37169b1e2658STejun Heo  *	@r_failed_link: out parameter for failed link
3717c6fd2807SJeff Garzik  *
3718c6fd2807SJeff Garzik  *	This is the alpha and omega, eum and yang, heart and soul of
3719c6fd2807SJeff Garzik  *	libata exception handling.  On entry, actions required to
37209b1e2658STejun Heo  *	recover each link and hotplug requests are recorded in the
37219b1e2658STejun Heo  *	link's eh_context.  This function executes all the operations
37229b1e2658STejun Heo  *	with appropriate retrials and fallbacks to resurrect failed
3723c6fd2807SJeff Garzik  *	devices, detach goners and greet newcomers.
3724c6fd2807SJeff Garzik  *
3725c6fd2807SJeff Garzik  *	LOCKING:
3726c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
3727c6fd2807SJeff Garzik  *
3728c6fd2807SJeff Garzik  *	RETURNS:
3729c6fd2807SJeff Garzik  *	0 on success, -errno on failure.
3730c6fd2807SJeff Garzik  */
3731fb7fd614STejun Heo int ata_eh_recover(struct ata_port *ap, ata_prereset_fn_t prereset,
3732c6fd2807SJeff Garzik 		   ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
37339b1e2658STejun Heo 		   ata_postreset_fn_t postreset,
37349b1e2658STejun Heo 		   struct ata_link **r_failed_link)
3735c6fd2807SJeff Garzik {
37369b1e2658STejun Heo 	struct ata_link *link;
3737c6fd2807SJeff Garzik 	struct ata_device *dev;
37386b7ae954STejun Heo 	int rc, nr_fails;
373945fabbb7SElias Oltmanns 	unsigned long flags, deadline;
3740c6fd2807SJeff Garzik 
3741c6fd2807SJeff Garzik 	DPRINTK("ENTER\n");
3742c6fd2807SJeff Garzik 
3743c6fd2807SJeff Garzik 	/* prep for recovery */
37441eca4365STejun Heo 	ata_for_each_link(link, ap, EDGE) {
37459b1e2658STejun Heo 		struct ata_eh_context *ehc = &link->eh_context;
37469b1e2658STejun Heo 
3747f9df58cbSTejun Heo 		/* re-enable link? */
3748f9df58cbSTejun Heo 		if (ehc->i.action & ATA_EH_ENABLE_LINK) {
3749f9df58cbSTejun Heo 			ata_eh_about_to_do(link, NULL, ATA_EH_ENABLE_LINK);
3750f9df58cbSTejun Heo 			spin_lock_irqsave(ap->lock, flags);
3751f9df58cbSTejun Heo 			link->flags &= ~ATA_LFLAG_DISABLED;
3752f9df58cbSTejun Heo 			spin_unlock_irqrestore(ap->lock, flags);
3753f9df58cbSTejun Heo 			ata_eh_done(link, NULL, ATA_EH_ENABLE_LINK);
3754f9df58cbSTejun Heo 		}
3755f9df58cbSTejun Heo 
37561eca4365STejun Heo 		ata_for_each_dev(dev, link, ALL) {
3757fd995f70STejun Heo 			if (link->flags & ATA_LFLAG_NO_RETRY)
3758fd995f70STejun Heo 				ehc->tries[dev->devno] = 1;
3759fd995f70STejun Heo 			else
3760c6fd2807SJeff Garzik 				ehc->tries[dev->devno] = ATA_EH_DEV_TRIES;
3761c6fd2807SJeff Garzik 
376279a55b72STejun Heo 			/* collect port action mask recorded in dev actions */
37639b1e2658STejun Heo 			ehc->i.action |= ehc->i.dev_action[dev->devno] &
37649b1e2658STejun Heo 					 ~ATA_EH_PERDEV_MASK;
3765f58229f8STejun Heo 			ehc->i.dev_action[dev->devno] &= ATA_EH_PERDEV_MASK;
376679a55b72STejun Heo 
3767c6fd2807SJeff Garzik 			/* process hotplug request */
3768c6fd2807SJeff Garzik 			if (dev->flags & ATA_DFLAG_DETACH)
3769c6fd2807SJeff Garzik 				ata_eh_detach_dev(dev);
3770c6fd2807SJeff Garzik 
377102c05a27STejun Heo 			/* schedule probe if necessary */
377202c05a27STejun Heo 			if (!ata_dev_enabled(dev))
377302c05a27STejun Heo 				ata_eh_schedule_probe(dev);
3774c6fd2807SJeff Garzik 		}
37759b1e2658STejun Heo 	}
3776c6fd2807SJeff Garzik 
3777c6fd2807SJeff Garzik  retry:
3778c6fd2807SJeff Garzik 	rc = 0;
3779c6fd2807SJeff Garzik 
3780c6fd2807SJeff Garzik 	/* if UNLOADING, finish immediately */
3781c6fd2807SJeff Garzik 	if (ap->pflags & ATA_PFLAG_UNLOADING)
3782c6fd2807SJeff Garzik 		goto out;
3783c6fd2807SJeff Garzik 
37849b1e2658STejun Heo 	/* prep for EH */
37851eca4365STejun Heo 	ata_for_each_link(link, ap, EDGE) {
37869b1e2658STejun Heo 		struct ata_eh_context *ehc = &link->eh_context;
37879b1e2658STejun Heo 
3788c6fd2807SJeff Garzik 		/* skip EH if possible. */
37890260731fSTejun Heo 		if (ata_eh_skip_recovery(link))
3790c6fd2807SJeff Garzik 			ehc->i.action = 0;
3791c6fd2807SJeff Garzik 
37921eca4365STejun Heo 		ata_for_each_dev(dev, link, ALL)
3793f58229f8STejun Heo 			ehc->classes[dev->devno] = ATA_DEV_UNKNOWN;
37949b1e2658STejun Heo 	}
3795c6fd2807SJeff Garzik 
3796c6fd2807SJeff Garzik 	/* reset */
37971eca4365STejun Heo 	ata_for_each_link(link, ap, EDGE) {
37989b1e2658STejun Heo 		struct ata_eh_context *ehc = &link->eh_context;
37999b1e2658STejun Heo 
3800cf480626STejun Heo 		if (!(ehc->i.action & ATA_EH_RESET))
38019b1e2658STejun Heo 			continue;
38029b1e2658STejun Heo 
38039b1e2658STejun Heo 		rc = ata_eh_reset(link, ata_link_nr_vacant(link),
3804dc98c32cSTejun Heo 				  prereset, softreset, hardreset, postreset);
3805c6fd2807SJeff Garzik 		if (rc) {
3806a9a79dfeSJoe Perches 			ata_link_err(link, "reset failed, giving up\n");
3807c6fd2807SJeff Garzik 			goto out;
3808c6fd2807SJeff Garzik 		}
38099b1e2658STejun Heo 	}
3810c6fd2807SJeff Garzik 
381145fabbb7SElias Oltmanns 	do {
381245fabbb7SElias Oltmanns 		unsigned long now;
381345fabbb7SElias Oltmanns 
381445fabbb7SElias Oltmanns 		/*
381545fabbb7SElias Oltmanns 		 * clears ATA_EH_PARK in eh_info and resets
381645fabbb7SElias Oltmanns 		 * ap->park_req_pending
381745fabbb7SElias Oltmanns 		 */
381845fabbb7SElias Oltmanns 		ata_eh_pull_park_action(ap);
381945fabbb7SElias Oltmanns 
382045fabbb7SElias Oltmanns 		deadline = jiffies;
38211eca4365STejun Heo 		ata_for_each_link(link, ap, EDGE) {
38221eca4365STejun Heo 			ata_for_each_dev(dev, link, ALL) {
382345fabbb7SElias Oltmanns 				struct ata_eh_context *ehc = &link->eh_context;
382445fabbb7SElias Oltmanns 				unsigned long tmp;
382545fabbb7SElias Oltmanns 
38269162c657SHannes Reinecke 				if (dev->class != ATA_DEV_ATA &&
38279162c657SHannes Reinecke 				    dev->class != ATA_DEV_ZAC)
382845fabbb7SElias Oltmanns 					continue;
382945fabbb7SElias Oltmanns 				if (!(ehc->i.dev_action[dev->devno] &
383045fabbb7SElias Oltmanns 				      ATA_EH_PARK))
383145fabbb7SElias Oltmanns 					continue;
383245fabbb7SElias Oltmanns 				tmp = dev->unpark_deadline;
383345fabbb7SElias Oltmanns 				if (time_before(deadline, tmp))
383445fabbb7SElias Oltmanns 					deadline = tmp;
383545fabbb7SElias Oltmanns 				else if (time_before_eq(tmp, jiffies))
383645fabbb7SElias Oltmanns 					continue;
383745fabbb7SElias Oltmanns 				if (ehc->unloaded_mask & (1 << dev->devno))
383845fabbb7SElias Oltmanns 					continue;
383945fabbb7SElias Oltmanns 
384045fabbb7SElias Oltmanns 				ata_eh_park_issue_cmd(dev, 1);
384145fabbb7SElias Oltmanns 			}
384245fabbb7SElias Oltmanns 		}
384345fabbb7SElias Oltmanns 
384445fabbb7SElias Oltmanns 		now = jiffies;
384545fabbb7SElias Oltmanns 		if (time_before_eq(deadline, now))
384645fabbb7SElias Oltmanns 			break;
384745fabbb7SElias Oltmanns 
3848c0c362b6STejun Heo 		ata_eh_release(ap);
384945fabbb7SElias Oltmanns 		deadline = wait_for_completion_timeout(&ap->park_req_pending,
385045fabbb7SElias Oltmanns 						       deadline - now);
3851c0c362b6STejun Heo 		ata_eh_acquire(ap);
385245fabbb7SElias Oltmanns 	} while (deadline);
38531eca4365STejun Heo 	ata_for_each_link(link, ap, EDGE) {
38541eca4365STejun Heo 		ata_for_each_dev(dev, link, ALL) {
385545fabbb7SElias Oltmanns 			if (!(link->eh_context.unloaded_mask &
385645fabbb7SElias Oltmanns 			      (1 << dev->devno)))
385745fabbb7SElias Oltmanns 				continue;
385845fabbb7SElias Oltmanns 
385945fabbb7SElias Oltmanns 			ata_eh_park_issue_cmd(dev, 0);
386045fabbb7SElias Oltmanns 			ata_eh_done(link, dev, ATA_EH_PARK);
386145fabbb7SElias Oltmanns 		}
386245fabbb7SElias Oltmanns 	}
386345fabbb7SElias Oltmanns 
38649b1e2658STejun Heo 	/* the rest */
38656b7ae954STejun Heo 	nr_fails = 0;
38666b7ae954STejun Heo 	ata_for_each_link(link, ap, PMP_FIRST) {
38679b1e2658STejun Heo 		struct ata_eh_context *ehc = &link->eh_context;
38689b1e2658STejun Heo 
38696b7ae954STejun Heo 		if (sata_pmp_attached(ap) && ata_is_host_link(link))
38706b7ae954STejun Heo 			goto config_lpm;
38716b7ae954STejun Heo 
3872c6fd2807SJeff Garzik 		/* revalidate existing devices and attach new ones */
38730260731fSTejun Heo 		rc = ata_eh_revalidate_and_attach(link, &dev);
3874c6fd2807SJeff Garzik 		if (rc)
38756b7ae954STejun Heo 			goto rest_fail;
3876c6fd2807SJeff Garzik 
3877633273a3STejun Heo 		/* if PMP got attached, return, pmp EH will take care of it */
3878633273a3STejun Heo 		if (link->device->class == ATA_DEV_PMP) {
3879633273a3STejun Heo 			ehc->i.action = 0;
3880633273a3STejun Heo 			return 0;
3881633273a3STejun Heo 		}
3882633273a3STejun Heo 
3883baa1e78aSTejun Heo 		/* configure transfer mode if necessary */
3884baa1e78aSTejun Heo 		if (ehc->i.flags & ATA_EHI_SETMODE) {
38850260731fSTejun Heo 			rc = ata_set_mode(link, &dev);
38864ae72a1eSTejun Heo 			if (rc)
38876b7ae954STejun Heo 				goto rest_fail;
3888baa1e78aSTejun Heo 			ehc->i.flags &= ~ATA_EHI_SETMODE;
3889c6fd2807SJeff Garzik 		}
3890c6fd2807SJeff Garzik 
389111fc33daSTejun Heo 		/* If reset has been issued, clear UA to avoid
389211fc33daSTejun Heo 		 * disrupting the current users of the device.
389311fc33daSTejun Heo 		 */
389411fc33daSTejun Heo 		if (ehc->i.flags & ATA_EHI_DID_RESET) {
38951eca4365STejun Heo 			ata_for_each_dev(dev, link, ALL) {
389611fc33daSTejun Heo 				if (dev->class != ATA_DEV_ATAPI)
389711fc33daSTejun Heo 					continue;
389811fc33daSTejun Heo 				rc = atapi_eh_clear_ua(dev);
389911fc33daSTejun Heo 				if (rc)
39006b7ae954STejun Heo 					goto rest_fail;
390121334205SAaron Lu 				if (zpodd_dev_enabled(dev))
390221334205SAaron Lu 					zpodd_post_poweron(dev);
390311fc33daSTejun Heo 			}
390411fc33daSTejun Heo 		}
390511fc33daSTejun Heo 
39066013efd8STejun Heo 		/* retry flush if necessary */
39076013efd8STejun Heo 		ata_for_each_dev(dev, link, ALL) {
39089162c657SHannes Reinecke 			if (dev->class != ATA_DEV_ATA &&
39099162c657SHannes Reinecke 			    dev->class != ATA_DEV_ZAC)
39106013efd8STejun Heo 				continue;
39116013efd8STejun Heo 			rc = ata_eh_maybe_retry_flush(dev);
39126013efd8STejun Heo 			if (rc)
39136b7ae954STejun Heo 				goto rest_fail;
39146013efd8STejun Heo 		}
39156013efd8STejun Heo 
39166b7ae954STejun Heo 	config_lpm:
391711fc33daSTejun Heo 		/* configure link power saving */
39186b7ae954STejun Heo 		if (link->lpm_policy != ap->target_lpm_policy) {
39196b7ae954STejun Heo 			rc = ata_eh_set_lpm(link, ap->target_lpm_policy, &dev);
39206b7ae954STejun Heo 			if (rc)
39216b7ae954STejun Heo 				goto rest_fail;
39226b7ae954STejun Heo 		}
3923ca77329fSKristen Carlson Accardi 
39249b1e2658STejun Heo 		/* this link is okay now */
39259b1e2658STejun Heo 		ehc->i.flags = 0;
39269b1e2658STejun Heo 		continue;
3927c6fd2807SJeff Garzik 
39286b7ae954STejun Heo 	rest_fail:
39296b7ae954STejun Heo 		nr_fails++;
39306b7ae954STejun Heo 		if (dev)
39310a2c0f56STejun Heo 			ata_eh_handle_dev_fail(dev, rc);
3932c6fd2807SJeff Garzik 
3933b06ce3e5STejun Heo 		if (ap->pflags & ATA_PFLAG_FROZEN) {
3934b06ce3e5STejun Heo 			/* PMP reset requires working host port.
3935b06ce3e5STejun Heo 			 * Can't retry if it's frozen.
3936b06ce3e5STejun Heo 			 */
3937071f44b1STejun Heo 			if (sata_pmp_attached(ap))
3938b06ce3e5STejun Heo 				goto out;
39399b1e2658STejun Heo 			break;
39409b1e2658STejun Heo 		}
3941b06ce3e5STejun Heo 	}
39429b1e2658STejun Heo 
39436b7ae954STejun Heo 	if (nr_fails)
3944c6fd2807SJeff Garzik 		goto retry;
3945c6fd2807SJeff Garzik 
3946c6fd2807SJeff Garzik  out:
39479b1e2658STejun Heo 	if (rc && r_failed_link)
39489b1e2658STejun Heo 		*r_failed_link = link;
3949c6fd2807SJeff Garzik 
3950c6fd2807SJeff Garzik 	DPRINTK("EXIT, rc=%d\n", rc);
3951c6fd2807SJeff Garzik 	return rc;
3952c6fd2807SJeff Garzik }
3953c6fd2807SJeff Garzik 
3954c6fd2807SJeff Garzik /**
3955c6fd2807SJeff Garzik  *	ata_eh_finish - finish up EH
3956c6fd2807SJeff Garzik  *	@ap: host port to finish EH for
3957c6fd2807SJeff Garzik  *
3958c6fd2807SJeff Garzik  *	Recovery is complete.  Clean up EH states and retry or finish
3959c6fd2807SJeff Garzik  *	failed qcs.
3960c6fd2807SJeff Garzik  *
3961c6fd2807SJeff Garzik  *	LOCKING:
3962c6fd2807SJeff Garzik  *	None.
3963c6fd2807SJeff Garzik  */
3964fb7fd614STejun Heo void ata_eh_finish(struct ata_port *ap)
3965c6fd2807SJeff Garzik {
3966258c4e5cSJens Axboe 	struct ata_queued_cmd *qc;
3967c6fd2807SJeff Garzik 	int tag;
3968c6fd2807SJeff Garzik 
3969c6fd2807SJeff Garzik 	/* retry or finish qcs */
3970258c4e5cSJens Axboe 	ata_qc_for_each_raw(ap, qc, tag) {
3971c6fd2807SJeff Garzik 		if (!(qc->flags & ATA_QCFLAG_FAILED))
3972c6fd2807SJeff Garzik 			continue;
3973c6fd2807SJeff Garzik 
3974c6fd2807SJeff Garzik 		if (qc->err_mask) {
3975c6fd2807SJeff Garzik 			/* FIXME: Once EH migration is complete,
3976c6fd2807SJeff Garzik 			 * generate sense data in this function,
3977c6fd2807SJeff Garzik 			 * considering both err_mask and tf.
3978c6fd2807SJeff Garzik 			 */
397903faab78STejun Heo 			if (qc->flags & ATA_QCFLAG_RETRY)
3980c6fd2807SJeff Garzik 				ata_eh_qc_retry(qc);
398103faab78STejun Heo 			else
398203faab78STejun Heo 				ata_eh_qc_complete(qc);
3983c6fd2807SJeff Garzik 		} else {
3984c6fd2807SJeff Garzik 			if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
3985c6fd2807SJeff Garzik 				ata_eh_qc_complete(qc);
3986c6fd2807SJeff Garzik 			} else {
3987c6fd2807SJeff Garzik 				/* feed zero TF to sense generation */
3988c6fd2807SJeff Garzik 				memset(&qc->result_tf, 0, sizeof(qc->result_tf));
3989c6fd2807SJeff Garzik 				ata_eh_qc_retry(qc);
3990c6fd2807SJeff Garzik 			}
3991c6fd2807SJeff Garzik 		}
3992c6fd2807SJeff Garzik 	}
3993da917d69STejun Heo 
3994da917d69STejun Heo 	/* make sure nr_active_links is zero after EH */
3995da917d69STejun Heo 	WARN_ON(ap->nr_active_links);
3996da917d69STejun Heo 	ap->nr_active_links = 0;
3997c6fd2807SJeff Garzik }
3998c6fd2807SJeff Garzik 
3999c6fd2807SJeff Garzik /**
4000c6fd2807SJeff Garzik  *	ata_do_eh - do standard error handling
4001c6fd2807SJeff Garzik  *	@ap: host port to handle error for
4002a1efdabaSTejun Heo  *
4003c6fd2807SJeff Garzik  *	@prereset: prereset method (can be NULL)
4004c6fd2807SJeff Garzik  *	@softreset: softreset method (can be NULL)
4005c6fd2807SJeff Garzik  *	@hardreset: hardreset method (can be NULL)
4006c6fd2807SJeff Garzik  *	@postreset: postreset method (can be NULL)
4007c6fd2807SJeff Garzik  *
4008c6fd2807SJeff Garzik  *	Perform standard error handling sequence.
4009c6fd2807SJeff Garzik  *
4010c6fd2807SJeff Garzik  *	LOCKING:
4011c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
4012c6fd2807SJeff Garzik  */
4013c6fd2807SJeff Garzik void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset,
4014c6fd2807SJeff Garzik 	       ata_reset_fn_t softreset, ata_reset_fn_t hardreset,
4015c6fd2807SJeff Garzik 	       ata_postreset_fn_t postreset)
4016c6fd2807SJeff Garzik {
40179b1e2658STejun Heo 	struct ata_device *dev;
40189b1e2658STejun Heo 	int rc;
40199b1e2658STejun Heo 
40209b1e2658STejun Heo 	ata_eh_autopsy(ap);
40219b1e2658STejun Heo 	ata_eh_report(ap);
40229b1e2658STejun Heo 
40239b1e2658STejun Heo 	rc = ata_eh_recover(ap, prereset, softreset, hardreset, postreset,
40249b1e2658STejun Heo 			    NULL);
40259b1e2658STejun Heo 	if (rc) {
40261eca4365STejun Heo 		ata_for_each_dev(dev, &ap->link, ALL)
40279b1e2658STejun Heo 			ata_dev_disable(dev);
40289b1e2658STejun Heo 	}
40299b1e2658STejun Heo 
4030c6fd2807SJeff Garzik 	ata_eh_finish(ap);
4031c6fd2807SJeff Garzik }
4032c6fd2807SJeff Garzik 
4033a1efdabaSTejun Heo /**
4034a1efdabaSTejun Heo  *	ata_std_error_handler - standard error handler
4035a1efdabaSTejun Heo  *	@ap: host port to handle error for
4036a1efdabaSTejun Heo  *
4037a1efdabaSTejun Heo  *	Standard error handler
4038a1efdabaSTejun Heo  *
4039a1efdabaSTejun Heo  *	LOCKING:
4040a1efdabaSTejun Heo  *	Kernel thread context (may sleep).
4041a1efdabaSTejun Heo  */
4042a1efdabaSTejun Heo void ata_std_error_handler(struct ata_port *ap)
4043a1efdabaSTejun Heo {
4044a1efdabaSTejun Heo 	struct ata_port_operations *ops = ap->ops;
4045a1efdabaSTejun Heo 	ata_reset_fn_t hardreset = ops->hardreset;
4046a1efdabaSTejun Heo 
404757c9efdfSTejun Heo 	/* ignore built-in hardreset if SCR access is not available */
4048fe06e5f9STejun Heo 	if (hardreset == sata_std_hardreset && !sata_scr_valid(&ap->link))
4049a1efdabaSTejun Heo 		hardreset = NULL;
4050a1efdabaSTejun Heo 
4051a1efdabaSTejun Heo 	ata_do_eh(ap, ops->prereset, ops->softreset, hardreset, ops->postreset);
4052a1efdabaSTejun Heo }
4053a1efdabaSTejun Heo 
40546ffa01d8STejun Heo #ifdef CONFIG_PM
4055c6fd2807SJeff Garzik /**
4056c6fd2807SJeff Garzik  *	ata_eh_handle_port_suspend - perform port suspend operation
4057c6fd2807SJeff Garzik  *	@ap: port to suspend
4058c6fd2807SJeff Garzik  *
4059c6fd2807SJeff Garzik  *	Suspend @ap.
4060c6fd2807SJeff Garzik  *
4061c6fd2807SJeff Garzik  *	LOCKING:
4062c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
4063c6fd2807SJeff Garzik  */
4064c6fd2807SJeff Garzik static void ata_eh_handle_port_suspend(struct ata_port *ap)
4065c6fd2807SJeff Garzik {
4066c6fd2807SJeff Garzik 	unsigned long flags;
4067c6fd2807SJeff Garzik 	int rc = 0;
40683dc67440SAaron Lu 	struct ata_device *dev;
4069c6fd2807SJeff Garzik 
4070c6fd2807SJeff Garzik 	/* are we suspending? */
4071c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
4072c6fd2807SJeff Garzik 	if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
4073a7ff60dbSAaron Lu 	    ap->pm_mesg.event & PM_EVENT_RESUME) {
4074c6fd2807SJeff Garzik 		spin_unlock_irqrestore(ap->lock, flags);
4075c6fd2807SJeff Garzik 		return;
4076c6fd2807SJeff Garzik 	}
4077c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
4078c6fd2807SJeff Garzik 
4079c6fd2807SJeff Garzik 	WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED);
4080c6fd2807SJeff Garzik 
40813dc67440SAaron Lu 	/*
40823dc67440SAaron Lu 	 * If we have a ZPODD attached, check its zero
40833dc67440SAaron Lu 	 * power ready status before the port is frozen.
4084a7ff60dbSAaron Lu 	 * Only needed for runtime suspend.
40853dc67440SAaron Lu 	 */
4086a7ff60dbSAaron Lu 	if (PMSG_IS_AUTO(ap->pm_mesg)) {
40873dc67440SAaron Lu 		ata_for_each_dev(dev, &ap->link, ENABLED) {
40883dc67440SAaron Lu 			if (zpodd_dev_enabled(dev))
40893dc67440SAaron Lu 				zpodd_on_suspend(dev);
40903dc67440SAaron Lu 		}
4091a7ff60dbSAaron Lu 	}
40923dc67440SAaron Lu 
409364578a3dSTejun Heo 	/* tell ACPI we're suspending */
409464578a3dSTejun Heo 	rc = ata_acpi_on_suspend(ap);
409564578a3dSTejun Heo 	if (rc)
409664578a3dSTejun Heo 		goto out;
409764578a3dSTejun Heo 
4098c6fd2807SJeff Garzik 	/* suspend */
4099c6fd2807SJeff Garzik 	ata_eh_freeze_port(ap);
4100c6fd2807SJeff Garzik 
4101c6fd2807SJeff Garzik 	if (ap->ops->port_suspend)
4102c6fd2807SJeff Garzik 		rc = ap->ops->port_suspend(ap, ap->pm_mesg);
4103c6fd2807SJeff Garzik 
4104a7ff60dbSAaron Lu 	ata_acpi_set_state(ap, ap->pm_mesg);
410564578a3dSTejun Heo  out:
4106bc6e7c4bSDan Williams 	/* update the flags */
4107c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
4108c6fd2807SJeff Garzik 
4109c6fd2807SJeff Garzik 	ap->pflags &= ~ATA_PFLAG_PM_PENDING;
4110c6fd2807SJeff Garzik 	if (rc == 0)
4111c6fd2807SJeff Garzik 		ap->pflags |= ATA_PFLAG_SUSPENDED;
411264578a3dSTejun Heo 	else if (ap->pflags & ATA_PFLAG_FROZEN)
4113c6fd2807SJeff Garzik 		ata_port_schedule_eh(ap);
4114c6fd2807SJeff Garzik 
4115c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
4116c6fd2807SJeff Garzik 
4117c6fd2807SJeff Garzik 	return;
4118c6fd2807SJeff Garzik }
4119c6fd2807SJeff Garzik 
4120c6fd2807SJeff Garzik /**
4121c6fd2807SJeff Garzik  *	ata_eh_handle_port_resume - perform port resume operation
4122c6fd2807SJeff Garzik  *	@ap: port to resume
4123c6fd2807SJeff Garzik  *
4124c6fd2807SJeff Garzik  *	Resume @ap.
4125c6fd2807SJeff Garzik  *
4126c6fd2807SJeff Garzik  *	LOCKING:
4127c6fd2807SJeff Garzik  *	Kernel thread context (may sleep).
4128c6fd2807SJeff Garzik  */
4129c6fd2807SJeff Garzik static void ata_eh_handle_port_resume(struct ata_port *ap)
4130c6fd2807SJeff Garzik {
41316f9c1ea2STejun Heo 	struct ata_link *link;
41326f9c1ea2STejun Heo 	struct ata_device *dev;
4133c6fd2807SJeff Garzik 	unsigned long flags;
4134c6fd2807SJeff Garzik 
4135c6fd2807SJeff Garzik 	/* are we resuming? */
4136c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
4137c6fd2807SJeff Garzik 	if (!(ap->pflags & ATA_PFLAG_PM_PENDING) ||
4138a7ff60dbSAaron Lu 	    !(ap->pm_mesg.event & PM_EVENT_RESUME)) {
4139c6fd2807SJeff Garzik 		spin_unlock_irqrestore(ap->lock, flags);
4140c6fd2807SJeff Garzik 		return;
4141c6fd2807SJeff Garzik 	}
4142c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
4143c6fd2807SJeff Garzik 
41449666f400STejun Heo 	WARN_ON(!(ap->pflags & ATA_PFLAG_SUSPENDED));
4145c6fd2807SJeff Garzik 
41466f9c1ea2STejun Heo 	/*
41476f9c1ea2STejun Heo 	 * Error timestamps are in jiffies which doesn't run while
41486f9c1ea2STejun Heo 	 * suspended and PHY events during resume isn't too uncommon.
41496f9c1ea2STejun Heo 	 * When the two are combined, it can lead to unnecessary speed
41506f9c1ea2STejun Heo 	 * downs if the machine is suspended and resumed repeatedly.
41516f9c1ea2STejun Heo 	 * Clear error history.
41526f9c1ea2STejun Heo 	 */
41536f9c1ea2STejun Heo 	ata_for_each_link(link, ap, HOST_FIRST)
41546f9c1ea2STejun Heo 		ata_for_each_dev(dev, link, ALL)
41556f9c1ea2STejun Heo 			ata_ering_clear(&dev->ering);
41566f9c1ea2STejun Heo 
4157a7ff60dbSAaron Lu 	ata_acpi_set_state(ap, ap->pm_mesg);
4158bd3adca5SShaohua Li 
4159c6fd2807SJeff Garzik 	if (ap->ops->port_resume)
4160ae867937SKefeng Wang 		ap->ops->port_resume(ap);
4161c6fd2807SJeff Garzik 
41626746544cSTejun Heo 	/* tell ACPI that we're resuming */
41636746544cSTejun Heo 	ata_acpi_on_resume(ap);
41646746544cSTejun Heo 
4165bc6e7c4bSDan Williams 	/* update the flags */
4166c6fd2807SJeff Garzik 	spin_lock_irqsave(ap->lock, flags);
4167c6fd2807SJeff Garzik 	ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED);
4168c6fd2807SJeff Garzik 	spin_unlock_irqrestore(ap->lock, flags);
4169c6fd2807SJeff Garzik }
41706ffa01d8STejun Heo #endif /* CONFIG_PM */
4171