* [PATCH] ata: sata_rcar: Add DIPM mode disabling workaround
@ 2014-10-10 8:45 Yoshihiro Kaneko
2014-10-10 10:04 ` Sergei Shtylyov
0 siblings, 1 reply; 3+ messages in thread
From: Yoshihiro Kaneko @ 2014-10-10 8:45 UTC (permalink / raw)
To: linux-ide; +Cc: Tejun Heo, Simon Horman, Magnus Damm, linux-sh
From: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
This workaround must be applied to R8A7790(H2) ES1
Signed-off-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
---
This patch is against for-next branch of Tejun's libata repo.
drivers/ata/sata_rcar.c | 25 +++++++++++++++++++++++--
1 file changed, 23 insertions(+), 2 deletions(-)
diff --git a/drivers/ata/sata_rcar.c b/drivers/ata/sata_rcar.c
index 61eb6d7..0ba5974 100644
--- a/drivers/ata/sata_rcar.c
+++ b/drivers/ata/sata_rcar.c
@@ -143,6 +143,11 @@
#define RCAR_GEN2_PHY_CTL5_DC BIT(1) /* DC connection */
#define RCAR_GEN2_PHY_CTL5_TR BIT(2) /* Termination Resistor */
+/* Product Register */
+#define PRODUCT_REGISTER 0xFF000044
+#define PRODUCT_CUT_MASK 0x00007FF0
+#define PRODUCT_H2_BIT (0x45 << 8)
+
enum sata_rcar_type {
RCAR_GEN1_SATA,
RCAR_GEN2_SATA,
@@ -751,18 +756,30 @@ done:
return IRQ_RETVAL(handled);
}
-static void sata_rcar_setup_port(struct ata_host *host)
+static int sata_rcar_setup_port(struct ata_host *host)
{
struct ata_port *ap = host->ports[0];
struct ata_ioports *ioaddr = &ap->ioaddr;
struct sata_rcar_priv *priv = host->private_data;
void __iomem *base = priv->base;
+ void __iomem *product_reg;
ap->ops = &sata_rcar_port_ops;
ap->pio_mask = ATA_PIO4;
ap->udma_mask = ATA_UDMA6;
ap->flags |= ATA_FLAG_SATA;
+ product_reg = ioremap_nocache(PRODUCT_REGISTER, 0x04);
+ if (!product_reg) {
+ dev_warn(host->dev, "ioremap fail\n");
+ return -ENOMEM;
+ }
+ /* Add the workaround of DIPM mode disabling in R-Car H2 ES1.x.*/
+ if ((readl(product_reg) & PRODUCT_CUT_MASK) = PRODUCT_H2_BIT)
+ ap->flags |= ATA_FLAG_NO_DIPM;
+
+ iounmap(product_reg);
+
ioaddr->cmd_addr = base + SDATA_REG;
ioaddr->ctl_addr = base + SSDEVCON_REG;
ioaddr->scr_addr = base + SCRSSTS_REG;
@@ -778,6 +795,8 @@ static void sata_rcar_setup_port(struct ata_host *host)
ioaddr->device_addr = ioaddr->cmd_addr + (ATA_REG_DEVICE << 2);
ioaddr->status_addr = ioaddr->cmd_addr + (ATA_REG_STATUS << 2);
ioaddr->command_addr = ioaddr->cmd_addr + (ATA_REG_CMD << 2);
+
+ return 0;
}
static void sata_rcar_init_controller(struct ata_host *host)
@@ -902,7 +921,9 @@ static int sata_rcar_probe(struct platform_device *pdev)
}
/* setup port */
- sata_rcar_setup_port(host);
+ ret = sata_rcar_setup_port(host);
+ if (ret)
+ goto cleanup;
/* initialize host controller */
sata_rcar_init_controller(host);
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ata: sata_rcar: Add DIPM mode disabling workaround
2014-10-10 8:45 [PATCH] ata: sata_rcar: Add DIPM mode disabling workaround Yoshihiro Kaneko
@ 2014-10-10 10:04 ` Sergei Shtylyov
2014-10-24 4:15 ` Simon Horman
0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2014-10-10 10:04 UTC (permalink / raw)
To: Yoshihiro Kaneko, linux-ide
Cc: Tejun Heo, Simon Horman, Magnus Damm, linux-sh
Hello.
On 10/10/2014 12:45 PM, Yoshihiro Kaneko wrote:
> From: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
> This workaround must be applied to R8A7790(H2) ES1
> Signed-off-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
> ---
> This patch is against for-next branch of Tejun's libata repo.
> drivers/ata/sata_rcar.c | 25 +++++++++++++++++++++++--
> 1 file changed, 23 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/ata/sata_rcar.c b/drivers/ata/sata_rcar.c
> index 61eb6d7..0ba5974 100644
> --- a/drivers/ata/sata_rcar.c
> +++ b/drivers/ata/sata_rcar.c
> @@ -143,6 +143,11 @@
> #define RCAR_GEN2_PHY_CTL5_DC BIT(1) /* DC connection */
> #define RCAR_GEN2_PHY_CTL5_TR BIT(2) /* Termination Resistor */
>
> +/* Product Register */
> +#define PRODUCT_REGISTER 0xFF000044
> +#define PRODUCT_CUT_MASK 0x00007FF0
> +#define PRODUCT_H2_BIT (0x45 << 8)
Why _BIT? And why not 0x00004500?
> @@ -751,18 +756,30 @@ done:
> return IRQ_RETVAL(handled);
> }
>
> -static void sata_rcar_setup_port(struct ata_host *host)
> +static int sata_rcar_setup_port(struct ata_host *host)
> {
> struct ata_port *ap = host->ports[0];
> struct ata_ioports *ioaddr = &ap->ioaddr;
> struct sata_rcar_priv *priv = host->private_data;
> void __iomem *base = priv->base;
> + void __iomem *product_reg;
>
> ap->ops = &sata_rcar_port_ops;
> ap->pio_mask = ATA_PIO4;
> ap->udma_mask = ATA_UDMA6;
> ap->flags |= ATA_FLAG_SATA;
>
> + product_reg = ioremap_nocache(PRODUCT_REGISTER, 0x04);
Don't we need some platform function to read that register instead? It's
not specific to SATA, AFAICT.
> + if (!product_reg) {
> + dev_warn(host->dev, "ioremap fail\n");
s/fail/failed/.
> + return -ENOMEM;
> + }
> + /* Add the workaround of DIPM mode disabling in R-Car H2 ES1.x.*/
Please add space before */
[...]
WBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ata: sata_rcar: Add DIPM mode disabling workaround
2014-10-10 10:04 ` Sergei Shtylyov
@ 2014-10-24 4:15 ` Simon Horman
0 siblings, 0 replies; 3+ messages in thread
From: Simon Horman @ 2014-10-24 4:15 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: Yoshihiro Kaneko, linux-ide, Tejun Heo, Magnus Damm, linux-sh
On Fri, Oct 10, 2014 at 02:04:34PM +0400, Sergei Shtylyov wrote:
> Hello.
>
> On 10/10/2014 12:45 PM, Yoshihiro Kaneko wrote:
>
> >From: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
>
> >This workaround must be applied to R8A7790(H2) ES1
>
> >Signed-off-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
> >Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
For the record, this patch has been superseded by
"ata: sata_rcar: Disable DIPM mode for r8a7790 ES1".
> >---
>
> >This patch is against for-next branch of Tejun's libata repo.
>
> > drivers/ata/sata_rcar.c | 25 +++++++++++++++++++++++--
> > 1 file changed, 23 insertions(+), 2 deletions(-)
> >
> >diff --git a/drivers/ata/sata_rcar.c b/drivers/ata/sata_rcar.c
> >index 61eb6d7..0ba5974 100644
> >--- a/drivers/ata/sata_rcar.c
> >+++ b/drivers/ata/sata_rcar.c
> >@@ -143,6 +143,11 @@
> > #define RCAR_GEN2_PHY_CTL5_DC BIT(1) /* DC connection */
> > #define RCAR_GEN2_PHY_CTL5_TR BIT(2) /* Termination Resistor */
> >
> >+/* Product Register */
> >+#define PRODUCT_REGISTER 0xFF000044
> >+#define PRODUCT_CUT_MASK 0x00007FF0
> >+#define PRODUCT_H2_BIT (0x45 << 8)
>
> Why _BIT? And why not 0x00004500?
>
> >@@ -751,18 +756,30 @@ done:
> > return IRQ_RETVAL(handled);
> > }
> >
> >-static void sata_rcar_setup_port(struct ata_host *host)
> >+static int sata_rcar_setup_port(struct ata_host *host)
> > {
> > struct ata_port *ap = host->ports[0];
> > struct ata_ioports *ioaddr = &ap->ioaddr;
> > struct sata_rcar_priv *priv = host->private_data;
> > void __iomem *base = priv->base;
> >+ void __iomem *product_reg;
> >
> > ap->ops = &sata_rcar_port_ops;
> > ap->pio_mask = ATA_PIO4;
> > ap->udma_mask = ATA_UDMA6;
> > ap->flags |= ATA_FLAG_SATA;
> >
> >+ product_reg = ioremap_nocache(PRODUCT_REGISTER, 0x04);
>
> Don't we need some platform function to read that register instead? It's
> not specific to SATA, AFAICT.
>
> >+ if (!product_reg) {
> >+ dev_warn(host->dev, "ioremap fail\n");
>
> s/fail/failed/.
>
> >+ return -ENOMEM;
> >+ }
> >+ /* Add the workaround of DIPM mode disabling in R-Car H2 ES1.x.*/
>
> Please add space before */
>
> [...]
>
> WBR, Sergei
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-10-24 4:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-10 8:45 [PATCH] ata: sata_rcar: Add DIPM mode disabling workaround Yoshihiro Kaneko
2014-10-10 10:04 ` Sergei Shtylyov
2014-10-24 4:15 ` Simon Horman
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).