Commit da77d76b authored by Khiem Nguyen's avatar Khiem Nguyen Committed by Tejun Heo

sata_rcar: Reset SATA PHY when Salvator-X board resumes

Because power of Salvator-X board is cut off in suspend,
it needs to reset SATA PHY state in resume.
Otherwise, SATA partition could not be accessed anymore.
Signed-off-by: default avatarKhiem Nguyen <khiem.nguyen.xt@rvc.renesas.com>
Signed-off-by: default avatarHien Dang <hien.dang.eb@rvc.renesas.com>
[reinit phy in sata_rcar_resume() function on R-Car Gen3 only]
[factor out SATA module init sequence]
[fixed the prefix for the subject]
Signed-off-by: default avatarYoshihiro Kaneko <ykaneko0929@gmail.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 2c1ec6fd
...@@ -146,6 +146,7 @@ ...@@ -146,6 +146,7 @@
enum sata_rcar_type { enum sata_rcar_type {
RCAR_GEN1_SATA, RCAR_GEN1_SATA,
RCAR_GEN2_SATA, RCAR_GEN2_SATA,
RCAR_GEN3_SATA,
RCAR_R8A7790_ES1_SATA, RCAR_R8A7790_ES1_SATA,
}; };
...@@ -784,26 +785,11 @@ static void sata_rcar_setup_port(struct ata_host *host) ...@@ -784,26 +785,11 @@ static void sata_rcar_setup_port(struct ata_host *host)
ioaddr->command_addr = ioaddr->cmd_addr + (ATA_REG_CMD << 2); ioaddr->command_addr = ioaddr->cmd_addr + (ATA_REG_CMD << 2);
} }
static void sata_rcar_init_controller(struct ata_host *host) static void sata_rcar_init_module(struct sata_rcar_priv *priv)
{ {
struct sata_rcar_priv *priv = host->private_data;
void __iomem *base = priv->base; void __iomem *base = priv->base;
u32 val; u32 val;
/* reset and setup phy */
switch (priv->type) {
case RCAR_GEN1_SATA:
sata_rcar_gen1_phy_init(priv);
break;
case RCAR_GEN2_SATA:
case RCAR_R8A7790_ES1_SATA:
sata_rcar_gen2_phy_init(priv);
break;
default:
dev_warn(host->dev, "SATA phy is not initialized\n");
break;
}
/* SATA-IP reset state */ /* SATA-IP reset state */
val = ioread32(base + ATAPI_CONTROL1_REG); val = ioread32(base + ATAPI_CONTROL1_REG);
val |= ATAPI_CONTROL1_RESET; val |= ATAPI_CONTROL1_RESET;
...@@ -824,10 +810,34 @@ static void sata_rcar_init_controller(struct ata_host *host) ...@@ -824,10 +810,34 @@ static void sata_rcar_init_controller(struct ata_host *host)
/* ack and mask */ /* ack and mask */
iowrite32(0, base + SATAINTSTAT_REG); iowrite32(0, base + SATAINTSTAT_REG);
iowrite32(0x7ff, base + SATAINTMASK_REG); iowrite32(0x7ff, base + SATAINTMASK_REG);
/* enable interrupts */ /* enable interrupts */
iowrite32(ATAPI_INT_ENABLE_SATAINT, base + ATAPI_INT_ENABLE_REG); iowrite32(ATAPI_INT_ENABLE_SATAINT, base + ATAPI_INT_ENABLE_REG);
} }
static void sata_rcar_init_controller(struct ata_host *host)
{
struct sata_rcar_priv *priv = host->private_data;
void __iomem *base = priv->base;
/* reset and setup phy */
switch (priv->type) {
case RCAR_GEN1_SATA:
sata_rcar_gen1_phy_init(priv);
break;
case RCAR_GEN2_SATA:
case RCAR_GEN3_SATA:
case RCAR_R8A7790_ES1_SATA:
sata_rcar_gen2_phy_init(priv);
break;
default:
dev_warn(host->dev, "SATA phy is not initialized\n");
break;
}
sata_rcar_init_module(priv);
}
static const struct of_device_id sata_rcar_match[] = { static const struct of_device_id sata_rcar_match[] = {
{ {
/* Deprecated by "renesas,sata-r8a7779" */ /* Deprecated by "renesas,sata-r8a7779" */
...@@ -856,7 +866,7 @@ static const struct of_device_id sata_rcar_match[] = { ...@@ -856,7 +866,7 @@ static const struct of_device_id sata_rcar_match[] = {
}, },
{ {
.compatible = "renesas,sata-r8a7795", .compatible = "renesas,sata-r8a7795",
.data = (void *)RCAR_GEN2_SATA .data = (void *)RCAR_GEN3_SATA
}, },
{ {
.compatible = "renesas,rcar-gen2-sata", .compatible = "renesas,rcar-gen2-sata",
...@@ -864,7 +874,7 @@ static const struct of_device_id sata_rcar_match[] = { ...@@ -864,7 +874,7 @@ static const struct of_device_id sata_rcar_match[] = {
}, },
{ {
.compatible = "renesas,rcar-gen3-sata", .compatible = "renesas,rcar-gen3-sata",
.data = (void *)RCAR_GEN2_SATA .data = (void *)RCAR_GEN3_SATA
}, },
{ }, { },
}; };
...@@ -982,11 +992,18 @@ static int sata_rcar_resume(struct device *dev) ...@@ -982,11 +992,18 @@ static int sata_rcar_resume(struct device *dev)
if (ret) if (ret)
return ret; return ret;
/* ack and mask */ if (priv->type == RCAR_GEN3_SATA) {
iowrite32(0, base + SATAINTSTAT_REG); sata_rcar_gen2_phy_init(priv);
iowrite32(0x7ff, base + SATAINTMASK_REG); sata_rcar_init_module(priv);
/* enable interrupts */ } else {
iowrite32(ATAPI_INT_ENABLE_SATAINT, base + ATAPI_INT_ENABLE_REG); /* ack and mask */
iowrite32(0, base + SATAINTSTAT_REG);
iowrite32(0x7ff, base + SATAINTMASK_REG);
/* enable interrupts */
iowrite32(ATAPI_INT_ENABLE_SATAINT,
base + ATAPI_INT_ENABLE_REG);
}
ata_host_resume(host); ata_host_resume(host);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment