* [PATCH][v3] driver/FSL SATA:Fix wrong Device Error Register usage
@ 2011-03-09 7:17 Prabhakar Kushwaha
2011-03-14 4:12 ` Kushwaha Prabhakar-B32579
2011-03-14 7:05 ` Jeff Garzik
0 siblings, 2 replies; 3+ messages in thread
From: Prabhakar Kushwaha @ 2011-03-09 7:17 UTC (permalink / raw)
To: linux-ide
Cc: jgarzik, Ashish Kalra, linuxppc-dev, Prabhakar Kushwaha,
meet2prabhu
When a single device error is detected, the device under the error is indicated
by the error bit set in the DER. There is a one to one mapping between register
bit and devices on Port multiplier(PMP) i.e. bit 0 represents PMP device 0 and
bit 1 represents PMP device 1 etc.
Current implementation treats Device error register value as device number not
set of bits representing multiple device on PMP. It is changed to consider bit
level.
No need to check for each set bit as all command is going to be aborted.
Signed-off-by: Ashish Kalra <B00888@freescale.com>
Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
---
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git (branch master)
This patch is already gone through review of linuxppc-dev mail list.
Making CC linuxppc-dev@lists.ozlabs.org
Changes for v2: Incorporated Sergei Shtylyov's comment
- Put space after -
- added a line
Changes for v3: Incorporated David Laight's comment
- Condition check for dereg 0 for hardware error
drivers/ata/sata_fsl.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c
index b0214d0..ad84ddc 100644
--- a/drivers/ata/sata_fsl.c
+++ b/drivers/ata/sata_fsl.c
@@ -1040,12 +1040,15 @@ static void sata_fsl_error_intr(struct ata_port *ap)
/* find out the offending link and qc */
if (ap->nr_pmp_links) {
+ unsigned int dev_num;
+
dereg = ioread32(hcr_base + DE);
iowrite32(dereg, hcr_base + DE);
iowrite32(cereg, hcr_base + CE);
- if (dereg < ap->nr_pmp_links) {
- link = &ap->pmp_link[dereg];
+ dev_num = ffs(dereg) - 1;
+ if (dev_num < ap->nr_pmp_links && dereg != 0) {
+ link = &ap->pmp_link[dev_num];
ehi = &link->eh_info;
qc = ata_qc_from_tag(ap, link->active_tag);
/*
--
1.7.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [PATCH][v3] driver/FSL SATA:Fix wrong Device Error Register usage
2011-03-09 7:17 [PATCH][v3] driver/FSL SATA:Fix wrong Device Error Register usage Prabhakar Kushwaha
@ 2011-03-14 4:12 ` Kushwaha Prabhakar-B32579
2011-03-14 7:05 ` Jeff Garzik
1 sibling, 0 replies; 3+ messages in thread
From: Kushwaha Prabhakar-B32579 @ 2011-03-14 4:12 UTC (permalink / raw)
To: linux-ide@vger.kernel.org, jgarzik@pobox.com
Cc: meet2prabhu@gmail.com, Kalra Ashish-B00888,
linuxppc-dev@lists.ozlabs.org
Hi Jeff,
I am not finding any new comments on this.
Could you please ACK this patch so that it can be applied on external list.=
=20
--Prabhakar
> -----Original Message-----
> From: Kushwaha Prabhakar-B32579
> Sent: Wednesday, March 09, 2011 12:47 PM
> To: linux-ide@vger.kernel.org
> Cc: linuxppc-dev@lists.ozlabs.org; jgarzik@pobox.com;
> meet2prabhu@gmail.com; Kushwaha Prabhakar-B32579; Kalra Ashish-B00888
> Subject: [PATCH][v3] driver/FSL SATA:Fix wrong Device Error Register
> usage
>=20
> When a single device error is detected, the device under the error is
> indicated by the error bit set in the DER. There is a one to one mapping
> between register bit and devices on Port multiplier(PMP) i.e. bit 0
> represents PMP device 0 and bit 1 represents PMP device 1 etc.
>=20
> Current implementation treats Device error register value as device
> number not set of bits representing multiple device on PMP. It is changed
> to consider bit level.
> No need to check for each set bit as all command is going to be aborted.
>=20
> Signed-off-by: Ashish Kalra <B00888@freescale.com>
> Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
> ---
>=20
> git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
> (branch master)
>=20
> This patch is already gone through review of linuxppc-dev mail list.
> Making CC linuxppc-dev@lists.ozlabs.org
>=20
> Changes for v2: Incorporated Sergei Shtylyov's comment
> - Put space after -
> - added a line
> Changes for v3: Incorporated David Laight's comment
> - Condition check for dereg 0 for hardware error
>=20
> drivers/ata/sata_fsl.c | 7 +++++--
> 1 files changed, 5 insertions(+), 2 deletions(-)
>=20
> diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c index
> b0214d0..ad84ddc 100644
> --- a/drivers/ata/sata_fsl.c
> +++ b/drivers/ata/sata_fsl.c
> @@ -1040,12 +1040,15 @@ static void sata_fsl_error_intr(struct ata_port
> *ap)
>=20
> /* find out the offending link and qc */
> if (ap->nr_pmp_links) {
> + unsigned int dev_num;
> +
> dereg =3D ioread32(hcr_base + DE);
> iowrite32(dereg, hcr_base + DE);
> iowrite32(cereg, hcr_base + CE);
>=20
> - if (dereg < ap->nr_pmp_links) {
> - link =3D &ap->pmp_link[dereg];
> + dev_num =3D ffs(dereg) - 1;
> + if (dev_num < ap->nr_pmp_links && dereg !=3D 0) {
> + link =3D &ap->pmp_link[dev_num];
> ehi =3D &link->eh_info;
> qc =3D ata_qc_from_tag(ap, link->active_tag);
> /*
> --
> 1.7.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH][v3] driver/FSL SATA:Fix wrong Device Error Register usage
2011-03-09 7:17 [PATCH][v3] driver/FSL SATA:Fix wrong Device Error Register usage Prabhakar Kushwaha
2011-03-14 4:12 ` Kushwaha Prabhakar-B32579
@ 2011-03-14 7:05 ` Jeff Garzik
1 sibling, 0 replies; 3+ messages in thread
From: Jeff Garzik @ 2011-03-14 7:05 UTC (permalink / raw)
To: Prabhakar Kushwaha; +Cc: linux-ide, Ashish Kalra, linuxppc-dev, meet2prabhu
On 03/09/2011 02:17 AM, Prabhakar Kushwaha wrote:
> When a single device error is detected, the device under the error is indicated
> by the error bit set in the DER. There is a one to one mapping between register
> bit and devices on Port multiplier(PMP) i.e. bit 0 represents PMP device 0 and
> bit 1 represents PMP device 1 etc.
>
> Current implementation treats Device error register value as device number not
> set of bits representing multiple device on PMP. It is changed to consider bit
> level.
> No need to check for each set bit as all command is going to be aborted.
>
> Signed-off-by: Ashish Kalra<B00888@freescale.com>
> Signed-off-by: Prabhakar Kushwaha<prabhakar@freescale.com>
> ---
>
> git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git (branch master)
>
> This patch is already gone through review of linuxppc-dev mail list.
> Making CC linuxppc-dev@lists.ozlabs.org
>
> Changes for v2: Incorporated Sergei Shtylyov's comment
> - Put space after -
> - added a line
> Changes for v3: Incorporated David Laight's comment
> - Condition check for dereg 0 for hardware error
>
> drivers/ata/sata_fsl.c | 7 +++++--
> 1 files changed, 5 insertions(+), 2 deletions(-)
applied
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-03-14 10:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-09 7:17 [PATCH][v3] driver/FSL SATA:Fix wrong Device Error Register usage Prabhakar Kushwaha
2011-03-14 4:12 ` Kushwaha Prabhakar-B32579
2011-03-14 7:05 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).