From: Tejun Heo <tj@kernel.org>
To: Alex Vandiver <alex@chmrr.net>
Cc: linux-ide <linux-ide@vger.kernel.org>
Subject: Re: Intermittent SATA failures ("link offline, clearing class 1 to NONE")
Date: Wed, 02 Dec 2009 10:43:42 +0900 [thread overview]
Message-ID: <4B15C64E.7090106@kernel.org> (raw)
In-Reply-To: <1259704924-sup-4007@utwig>
[-- Attachment #1: Type: text/plain, Size: 57 bytes --]
Hello,
Can you please try this one?
Thanks.
--
tejun
[-- Attachment #2: piix-longer-debounce.patch --]
[-- Type: text/x-patch, Size: 2956 bytes --]
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c
index 9ac4e37..f50bba6 100644
--- a/drivers/ata/ata_piix.c
+++ b/drivers/ata/ata_piix.c
@@ -173,6 +173,8 @@ static int piix_sidpr_scr_read(struct ata_link *link,
unsigned int reg, u32 *val);
static int piix_sidpr_scr_write(struct ata_link *link,
unsigned int reg, u32 val);
+static int piix_sidpr_hardreset(struct ata_link *link, unsigned int *class,
+ unsigned long deadline);
#ifdef CONFIG_PM
static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
static int piix_pci_device_resume(struct pci_dev *pdev);
@@ -334,9 +336,9 @@ static struct ata_port_operations piix_sata_ops = {
static struct ata_port_operations piix_sidpr_sata_ops = {
.inherits = &piix_sata_ops,
- .hardreset = sata_std_hardreset,
.scr_read = piix_sidpr_scr_read,
.scr_write = piix_sidpr_scr_write,
+ .hardreset = piix_sidpr_hardreset,
};
static const struct piix_map_db ich5_map_db = {
@@ -962,6 +964,18 @@ static int piix_sidpr_scr_write(struct ata_link *link,
return 0;
}
+static int piix_sidpr_hardreset(struct ata_link *link, unsigned int *class,
+ unsigned long deadline)
+{
+ const unsigned long *timing = sata_deb_timing_hotplug;
+ bool online;
+ int rc;
+
+ /* do hardreset */
+ rc = sata_link_hardreset(link, timing, deadline, &online, NULL);
+ return online ? -EAGAIN : rc;
+}
+
#ifdef CONFIG_PM
static int piix_broken_suspend(void)
{
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index dc72690..c501e1e 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -3731,7 +3731,7 @@ int sata_link_debounce(struct ata_link *link, const unsigned long *params,
unsigned long interval = params[0];
unsigned long duration = params[1];
unsigned long last_jiffies, t;
- u32 last, cur;
+ u32 last, cur, xxx;
int rc;
t = ata_deadline(jiffies, params[2]);
@@ -3740,7 +3740,9 @@ int sata_link_debounce(struct ata_link *link, const unsigned long *params,
if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
return rc;
+ xxx = cur;
cur &= 0xf;
+ ata_link_printk(link, KERN_INFO, "XXX debounce start, SStatus=%x\n", xxx);
last = cur;
last_jiffies = jiffies;
@@ -3749,6 +3751,7 @@ int sata_link_debounce(struct ata_link *link, const unsigned long *params,
msleep(interval);
if ((rc = sata_scr_read(link, SCR_STATUS, &cur)))
return rc;
+ xxx = cur;
cur &= 0xf;
/* DET stable? */
@@ -3756,8 +3759,12 @@ int sata_link_debounce(struct ata_link *link, const unsigned long *params,
if (cur == 1 && time_before(jiffies, deadline))
continue;
if (time_after(jiffies,
- ata_deadline(last_jiffies, duration)))
+ ata_deadline(last_jiffies, duration))) {
+ ata_link_printk(link, KERN_INFO,
+ "XXX debounce done, SStatus=%x, DET stable for %u msecs\n",
+ xxx, jiffies_to_msecs(jiffies - last_jiffies));
return 0;
+ }
continue;
}
next prev parent reply other threads:[~2009-12-02 1:44 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-12 19:43 Intermittent SATA failures ("link offline, clearing class 1 to NONE") Alex Vandiver
2009-12-01 6:04 ` Tejun Heo
2009-12-01 7:37 ` Alex Vandiver
2009-12-01 8:12 ` Tejun Heo
2009-12-01 8:31 ` Tejun Heo
2009-12-01 22:02 ` Alex Vandiver
2009-12-02 1:43 ` Tejun Heo [this message]
2009-12-02 17:45 ` Alex Vandiver
2009-12-03 0:19 ` Tejun Heo
2009-12-03 0:42 ` Tejun Heo
2009-12-18 23:26 ` Alex Vandiver
2009-12-21 4:50 ` Tejun Heo
2009-12-21 19:13 ` Alex Vandiver
2009-12-22 0:06 ` Tejun Heo
[not found] <r2qf7a305db1004270252le438bd88vb3ca3d9b753651a9@mail.gmail.com>
2010-04-27 9:55 ` coptang
2010-05-17 9:52 ` Tejun Heo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B15C64E.7090106@kernel.org \
--to=tj@kernel.org \
--cc=alex@chmrr.net \
--cc=linux-ide@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.