Commit 8d09a133 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Ulf Hansson

mmc: tmio: ioremap memory resource in tmio_mmc_host_alloc()

The register region is ioremap'ed in the tmio_mmc_host_probe(), i.e.
drivers cannot get access to the hardware before mmc_add_host().

Actually, renesas_sdhi_core.c reads out the CTL_VERSION register to
complete the platform-specific settings.  However, at this point,
the MMC host is already running.

Move the register ioremap to tmio_mmc_host_alloc() so that drivers
can perform platform-specific settings between tmio_mmc_host_alloc()
and tmio_mmc_host_probe().

I changed tmio_mmc_host_alloc() to return an error pointer to
propagate the return code from devm_ioremap_resource().
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 659032dc
...@@ -512,8 +512,8 @@ int renesas_sdhi_probe(struct platform_device *pdev, ...@@ -512,8 +512,8 @@ int renesas_sdhi_probe(struct platform_device *pdev,
} }
host = tmio_mmc_host_alloc(pdev); host = tmio_mmc_host_alloc(pdev);
if (!host) if (IS_ERR(host))
return -ENOMEM; return PTR_ERR(host);
if (of_data) { if (of_data) {
mmc_data->flags |= of_data->tmio_flags; mmc_data->flags |= of_data->tmio_flags;
......
...@@ -93,8 +93,10 @@ static int tmio_mmc_probe(struct platform_device *pdev) ...@@ -93,8 +93,10 @@ static int tmio_mmc_probe(struct platform_device *pdev)
pdata->flags |= TMIO_MMC_HAVE_HIGH_REG; pdata->flags |= TMIO_MMC_HAVE_HIGH_REG;
host = tmio_mmc_host_alloc(pdev); host = tmio_mmc_host_alloc(pdev);
if (!host) if (IS_ERR(host)) {
ret = PTR_ERR(host);
goto cell_disable; goto cell_disable;
}
/* SD control register space size is 0x200, 0x400 for bus_shift=1 */ /* SD control register space size is 0x200, 0x400 for bus_shift=1 */
host->bus_shift = resource_size(res) >> 10; host->bus_shift = resource_size(res) >> 10;
......
...@@ -1150,12 +1150,20 @@ tmio_mmc_host_alloc(struct platform_device *pdev) ...@@ -1150,12 +1150,20 @@ tmio_mmc_host_alloc(struct platform_device *pdev)
{ {
struct tmio_mmc_host *host; struct tmio_mmc_host *host;
struct mmc_host *mmc; struct mmc_host *mmc;
struct resource *res;
void __iomem *ctl;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
ctl = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(ctl))
return ERR_CAST(ctl);
mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev); mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev);
if (!mmc) if (!mmc)
return NULL; return ERR_PTR(-ENOMEM);
host = mmc_priv(mmc); host = mmc_priv(mmc);
host->ctl = ctl;
host->mmc = mmc; host->mmc = mmc;
host->pdev = pdev; host->pdev = pdev;
host->ops = tmio_mmc_ops; host->ops = tmio_mmc_ops;
...@@ -1177,7 +1185,6 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host, ...@@ -1177,7 +1185,6 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host,
{ {
struct platform_device *pdev = _host->pdev; struct platform_device *pdev = _host->pdev;
struct mmc_host *mmc = _host->mmc; struct mmc_host *mmc = _host->mmc;
struct resource *res_ctl;
int ret; int ret;
u32 irq_mask = TMIO_MASK_CMD; u32 irq_mask = TMIO_MASK_CMD;
...@@ -1186,11 +1193,6 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host, ...@@ -1186,11 +1193,6 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host,
if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT)) if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT))
_host->write16_hook = NULL; _host->write16_hook = NULL;
res_ctl = platform_get_resource(pdev, IORESOURCE_MEM, 0);
_host->ctl = devm_ioremap_resource(&pdev->dev, res_ctl);
if (IS_ERR(_host->ctl))
return PTR_ERR(_host->ctl);
ret = mmc_of_parse(mmc); ret = mmc_of_parse(mmc);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
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