mmc: tmio: move tmio_mmc_set_clock() to platform hook
tmio_mmc_set_clock() is full of quirks because different SoC vendors extended this in different ways. The original IP defines the divisor range 1/2 ... 1/512. bit 7 is set: 1/512 bit 6 is set: 1/256 ... bit 0 is set: 1/4 all bits clear: 1/2 It is platform-dependent how to achieve the 1/1 clock. I guess the TMIO-MFD variant uses the clock selector outside of this IP, as far as I see tmio_core_mmc_clk_div() in drivers/mfd/tmio_core.c I guess bit[7:0]=0xff is Renesas-specific extension. Socionext (and Panasonic) uses bit 10 (CLKSEL) for 1/1. Also, newer versions of UniPhier SoC variants use bit 16 for 1/1024. host->clk_update() is only used by the Renesas variants, whereas host->set_clk_div() is only used by the TMIO-MFD variants. To cope with this mess, promote tmio_mmc_set_clock() to a new platform hook ->set_clock(), and melt the old two hooks into it. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
74005a01f1
commit
0196c8db83
|
@ -152,6 +152,66 @@ static unsigned int renesas_sdhi_clk_update(struct tmio_mmc_host *host,
|
||||||
return ret == 0 ? best_freq : clk_get_rate(priv->clk);
|
return ret == 0 ? best_freq : clk_get_rate(priv->clk);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void renesas_sdhi_clk_start(struct tmio_mmc_host *host)
|
||||||
|
{
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, CLK_CTL_SCLKEN |
|
||||||
|
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
||||||
|
|
||||||
|
/* HW engineers overrode docs: no sleep needed on R-Car2+ */
|
||||||
|
if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void renesas_sdhi_clk_stop(struct tmio_mmc_host *host)
|
||||||
|
{
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
|
||||||
|
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
||||||
|
|
||||||
|
/* HW engineers overrode docs: no sleep needed on R-Car2+ */
|
||||||
|
if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void renesas_sdhi_set_clock(struct tmio_mmc_host *host,
|
||||||
|
unsigned int new_clock)
|
||||||
|
{
|
||||||
|
u32 clk = 0, clock;
|
||||||
|
|
||||||
|
if (new_clock == 0) {
|
||||||
|
renesas_sdhi_clk_stop(host);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* Both HS400 and HS200/SD104 set 200MHz, but some devices need to
|
||||||
|
* set 400MHz to distinguish the CPG settings in HS400.
|
||||||
|
*/
|
||||||
|
if (host->mmc->ios.timing == MMC_TIMING_MMC_HS400 &&
|
||||||
|
host->pdata->flags & TMIO_MMC_HAVE_4TAP_HS400 &&
|
||||||
|
new_clock == 200000000)
|
||||||
|
new_clock = 400000000;
|
||||||
|
|
||||||
|
clock = renesas_sdhi_clk_update(host, new_clock) / 512;
|
||||||
|
|
||||||
|
for (clk = 0x80000080; new_clock >= (clock << 1); clk >>= 1)
|
||||||
|
clock <<= 1;
|
||||||
|
|
||||||
|
/* 1/1 clock is option */
|
||||||
|
if ((host->pdata->flags & TMIO_MMC_CLK_ACTUAL) && ((clk >> 22) & 0x1)) {
|
||||||
|
if (!(host->mmc->ios.timing == MMC_TIMING_MMC_HS400))
|
||||||
|
clk |= 0xff;
|
||||||
|
else
|
||||||
|
clk &= ~0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
|
||||||
|
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & CLK_CTL_DIV_MASK);
|
||||||
|
if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
|
||||||
|
renesas_sdhi_clk_start(host);
|
||||||
|
}
|
||||||
|
|
||||||
static void renesas_sdhi_clk_disable(struct tmio_mmc_host *host)
|
static void renesas_sdhi_clk_disable(struct tmio_mmc_host *host)
|
||||||
{
|
{
|
||||||
struct renesas_sdhi *priv = host_to_priv(host);
|
struct renesas_sdhi *priv = host_to_priv(host);
|
||||||
|
@ -617,8 +677,8 @@ int renesas_sdhi_probe(struct platform_device *pdev,
|
||||||
|
|
||||||
host->write16_hook = renesas_sdhi_write16_hook;
|
host->write16_hook = renesas_sdhi_write16_hook;
|
||||||
host->clk_enable = renesas_sdhi_clk_enable;
|
host->clk_enable = renesas_sdhi_clk_enable;
|
||||||
host->clk_update = renesas_sdhi_clk_update;
|
|
||||||
host->clk_disable = renesas_sdhi_clk_disable;
|
host->clk_disable = renesas_sdhi_clk_disable;
|
||||||
|
host->set_clock = renesas_sdhi_set_clock;
|
||||||
host->multi_io_quirk = renesas_sdhi_multi_io_quirk;
|
host->multi_io_quirk = renesas_sdhi_multi_io_quirk;
|
||||||
host->dma_ops = dma_ops;
|
host->dma_ops = dma_ops;
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
* Copyright (C) 2004 Ian Molton
|
* Copyright (C) 2004 Ian Molton
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <linux/delay.h>
|
||||||
#include <linux/device.h>
|
#include <linux/device.h>
|
||||||
#include <linux/mfd/core.h>
|
#include <linux/mfd/core.h>
|
||||||
#include <linux/mfd/tmio.h>
|
#include <linux/mfd/tmio.h>
|
||||||
|
@ -20,6 +21,52 @@
|
||||||
|
|
||||||
#include "tmio_mmc.h"
|
#include "tmio_mmc.h"
|
||||||
|
|
||||||
|
static void tmio_mmc_clk_start(struct tmio_mmc_host *host)
|
||||||
|
{
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, CLK_CTL_SCLKEN |
|
||||||
|
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
||||||
|
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0100);
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void tmio_mmc_clk_stop(struct tmio_mmc_host *host)
|
||||||
|
{
|
||||||
|
sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0000);
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
|
||||||
|
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
||||||
|
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void tmio_mmc_set_clock(struct tmio_mmc_host *host,
|
||||||
|
unsigned int new_clock)
|
||||||
|
{
|
||||||
|
u32 clk = 0, clock;
|
||||||
|
|
||||||
|
if (new_clock == 0) {
|
||||||
|
tmio_mmc_clk_stop(host);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
clock = host->mmc->f_min;
|
||||||
|
|
||||||
|
for (clk = 0x80000080; new_clock >= (clock << 1); clk >>= 1)
|
||||||
|
clock <<= 1;
|
||||||
|
|
||||||
|
host->pdata->set_clk_div(host->pdev, (clk >> 22) & 1);
|
||||||
|
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
|
||||||
|
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
||||||
|
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & CLK_CTL_DIV_MASK);
|
||||||
|
usleep_range(10000, 11000);
|
||||||
|
|
||||||
|
tmio_mmc_clk_start(host);
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PM_SLEEP
|
#ifdef CONFIG_PM_SLEEP
|
||||||
static int tmio_mmc_suspend(struct device *dev)
|
static int tmio_mmc_suspend(struct device *dev)
|
||||||
{
|
{
|
||||||
|
@ -97,6 +144,7 @@ static int tmio_mmc_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
/* 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;
|
||||||
|
host->set_clock = tmio_mmc_set_clock;
|
||||||
|
|
||||||
host->mmc->f_max = pdata->hclk;
|
host->mmc->f_max = pdata->hclk;
|
||||||
host->mmc->f_min = pdata->hclk / 512;
|
host->mmc->f_min = pdata->hclk / 512;
|
||||||
|
|
|
@ -129,7 +129,6 @@ struct tmio_mmc_host {
|
||||||
|
|
||||||
/* Callbacks for clock / power control */
|
/* Callbacks for clock / power control */
|
||||||
void (*set_pwr)(struct platform_device *host, int state);
|
void (*set_pwr)(struct platform_device *host, int state);
|
||||||
void (*set_clk_div)(struct platform_device *host, int state);
|
|
||||||
|
|
||||||
/* pio related stuff */
|
/* pio related stuff */
|
||||||
struct scatterlist *sg_ptr;
|
struct scatterlist *sg_ptr;
|
||||||
|
@ -166,10 +165,9 @@ struct tmio_mmc_host {
|
||||||
|
|
||||||
/* Mandatory callback */
|
/* Mandatory callback */
|
||||||
int (*clk_enable)(struct tmio_mmc_host *host);
|
int (*clk_enable)(struct tmio_mmc_host *host);
|
||||||
|
void (*set_clock)(struct tmio_mmc_host *host, unsigned int clock);
|
||||||
|
|
||||||
/* Optional callbacks */
|
/* Optional callbacks */
|
||||||
unsigned int (*clk_update)(struct tmio_mmc_host *host,
|
|
||||||
unsigned int new_clock);
|
|
||||||
void (*clk_disable)(struct tmio_mmc_host *host);
|
void (*clk_disable)(struct tmio_mmc_host *host);
|
||||||
int (*multi_io_quirk)(struct mmc_card *card,
|
int (*multi_io_quirk)(struct mmc_card *card,
|
||||||
unsigned int direction, int blk_size);
|
unsigned int direction, int blk_size);
|
||||||
|
|
|
@ -157,83 +157,6 @@ static void tmio_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void tmio_mmc_clk_start(struct tmio_mmc_host *host)
|
|
||||||
{
|
|
||||||
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, CLK_CTL_SCLKEN |
|
|
||||||
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
|
||||||
|
|
||||||
/* HW engineers overrode docs: no sleep needed on R-Car2+ */
|
|
||||||
if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
|
|
||||||
usleep_range(10000, 11000);
|
|
||||||
|
|
||||||
if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
|
|
||||||
sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0100);
|
|
||||||
usleep_range(10000, 11000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void tmio_mmc_clk_stop(struct tmio_mmc_host *host)
|
|
||||||
{
|
|
||||||
if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
|
|
||||||
sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0000);
|
|
||||||
usleep_range(10000, 11000);
|
|
||||||
}
|
|
||||||
|
|
||||||
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
|
|
||||||
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
|
||||||
|
|
||||||
/* HW engineers overrode docs: no sleep needed on R-Car2+ */
|
|
||||||
if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
|
|
||||||
usleep_range(10000, 11000);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void tmio_mmc_set_clock(struct tmio_mmc_host *host,
|
|
||||||
unsigned int new_clock)
|
|
||||||
{
|
|
||||||
u32 clk = 0, clock;
|
|
||||||
|
|
||||||
if (new_clock == 0) {
|
|
||||||
tmio_mmc_clk_stop(host);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* Both HS400 and HS200/SD104 set 200MHz, but some devices need to
|
|
||||||
* set 400MHz to distinguish the CPG settings in HS400.
|
|
||||||
*/
|
|
||||||
if (host->mmc->ios.timing == MMC_TIMING_MMC_HS400 &&
|
|
||||||
host->pdata->flags & TMIO_MMC_HAVE_4TAP_HS400 &&
|
|
||||||
new_clock == 200000000)
|
|
||||||
new_clock = 400000000;
|
|
||||||
|
|
||||||
if (host->clk_update)
|
|
||||||
clock = host->clk_update(host, new_clock) / 512;
|
|
||||||
else
|
|
||||||
clock = host->mmc->f_min;
|
|
||||||
|
|
||||||
for (clk = 0x80000080; new_clock >= (clock << 1); clk >>= 1)
|
|
||||||
clock <<= 1;
|
|
||||||
|
|
||||||
/* 1/1 clock is option */
|
|
||||||
if ((host->pdata->flags & TMIO_MMC_CLK_ACTUAL) &&
|
|
||||||
((clk >> 22) & 0x1)) {
|
|
||||||
if (!(host->mmc->ios.timing == MMC_TIMING_MMC_HS400))
|
|
||||||
clk |= 0xff;
|
|
||||||
else
|
|
||||||
clk &= ~0xff;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (host->set_clk_div)
|
|
||||||
host->set_clk_div(host->pdev, (clk >> 22) & 1);
|
|
||||||
|
|
||||||
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
|
|
||||||
sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
|
|
||||||
sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & CLK_CTL_DIV_MASK);
|
|
||||||
if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
|
|
||||||
usleep_range(10000, 11000);
|
|
||||||
|
|
||||||
tmio_mmc_clk_start(host);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void tmio_mmc_reset(struct tmio_mmc_host *host)
|
static void tmio_mmc_reset(struct tmio_mmc_host *host)
|
||||||
{
|
{
|
||||||
/* FIXME - should we set stop clock reg here */
|
/* FIXME - should we set stop clock reg here */
|
||||||
|
@ -1040,15 +963,15 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
|
||||||
switch (ios->power_mode) {
|
switch (ios->power_mode) {
|
||||||
case MMC_POWER_OFF:
|
case MMC_POWER_OFF:
|
||||||
tmio_mmc_power_off(host);
|
tmio_mmc_power_off(host);
|
||||||
tmio_mmc_set_clock(host, 0);
|
host->set_clock(host, 0);
|
||||||
break;
|
break;
|
||||||
case MMC_POWER_UP:
|
case MMC_POWER_UP:
|
||||||
tmio_mmc_power_on(host, ios->vdd);
|
tmio_mmc_power_on(host, ios->vdd);
|
||||||
tmio_mmc_set_clock(host, ios->clock);
|
host->set_clock(host, ios->clock);
|
||||||
tmio_mmc_set_bus_width(host, ios->bus_width);
|
tmio_mmc_set_bus_width(host, ios->bus_width);
|
||||||
break;
|
break;
|
||||||
case MMC_POWER_ON:
|
case MMC_POWER_ON:
|
||||||
tmio_mmc_set_clock(host, ios->clock);
|
host->set_clock(host, ios->clock);
|
||||||
tmio_mmc_set_bus_width(host, ios->bus_width);
|
tmio_mmc_set_bus_width(host, ios->bus_width);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1234,7 +1157,7 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host)
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Check the sanity of mmc->f_min to prevent tmio_mmc_set_clock() from
|
* Check the sanity of mmc->f_min to prevent host->set_clock() from
|
||||||
* looping forever...
|
* looping forever...
|
||||||
*/
|
*/
|
||||||
if (mmc->f_min == 0)
|
if (mmc->f_min == 0)
|
||||||
|
@ -1244,7 +1167,6 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host)
|
||||||
_host->write16_hook = NULL;
|
_host->write16_hook = NULL;
|
||||||
|
|
||||||
_host->set_pwr = pdata->set_pwr;
|
_host->set_pwr = pdata->set_pwr;
|
||||||
_host->set_clk_div = pdata->set_clk_div;
|
|
||||||
|
|
||||||
ret = tmio_mmc_init_ocr(_host);
|
ret = tmio_mmc_init_ocr(_host);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
@ -1307,7 +1229,7 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host)
|
||||||
if (pdata->flags & TMIO_MMC_SDIO_IRQ)
|
if (pdata->flags & TMIO_MMC_SDIO_IRQ)
|
||||||
_host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
|
_host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
|
||||||
|
|
||||||
tmio_mmc_set_clock(_host, 0);
|
_host->set_clock(_host, 0);
|
||||||
tmio_mmc_reset(_host);
|
tmio_mmc_reset(_host);
|
||||||
|
|
||||||
_host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
|
_host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
|
||||||
|
@ -1391,7 +1313,7 @@ int tmio_mmc_host_runtime_suspend(struct device *dev)
|
||||||
tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
|
tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
|
||||||
|
|
||||||
if (host->clk_cache)
|
if (host->clk_cache)
|
||||||
tmio_mmc_set_clock(host, 0);
|
host->set_clock(host, 0);
|
||||||
|
|
||||||
tmio_mmc_clk_disable(host);
|
tmio_mmc_clk_disable(host);
|
||||||
|
|
||||||
|
@ -1412,7 +1334,7 @@ int tmio_mmc_host_runtime_resume(struct device *dev)
|
||||||
tmio_mmc_clk_enable(host);
|
tmio_mmc_clk_enable(host);
|
||||||
|
|
||||||
if (host->clk_cache)
|
if (host->clk_cache)
|
||||||
tmio_mmc_set_clock(host, host->clk_cache);
|
host->set_clock(host, host->clk_cache);
|
||||||
|
|
||||||
if (host->native_hotplug)
|
if (host->native_hotplug)
|
||||||
tmio_mmc_enable_mmc_irqs(host,
|
tmio_mmc_enable_mmc_irqs(host,
|
||||||
|
|
Loading…
Reference in New Issue