* [PATCH V7] mxc : Add i.MX21 support to mxcmmc driver
@ 2010-02-13 15:36 Martin Fuzzey
2010-08-27 19:14 ` Chris Ball
0 siblings, 1 reply; 3+ messages in thread
From: Martin Fuzzey @ 2010-02-13 15:36 UTC (permalink / raw)
To: Sascha Hauer, linux-mmc; +Cc: Pierre Ossman
Even though the i.MX21 SDHC module has the same revision number as the i.MX27
one there are a few differences!!
Some interrupt enables are inverted.
FIFO is only 16 bits wide.
The argument is written to 2x16bit registers (vs 1x32).
Interrupts must be acknowledged via the INT_CNTR register.
Card clock must be enabled for each request.
For writes DMA must be enabled on command response not before.
Signed-off-by: Martin Fuzzey <mfuzzey@gmail.com>
---
Changes from V6 (April 2009):
Minor stylistic changes suggested by Robby Cai:
factorize enables in mxcmci_set_int_cntr()
remove redundant local variable in mxcmci_push() and mxcmci_pull()
Rebased to 2.6.33-rc8
arch/arm/mach-mx2/clock_imx21.c | 4 -
drivers/mmc/host/mxcmmc.c | 159 ++++++++++++++++++++++++++++++---------
2 files changed, 123 insertions(+), 40 deletions(-)
diff --git a/arch/arm/mach-mx2/clock_imx21.c b/arch/arm/mach-mx2/clock_imx21.c
index 1a6bc31..9f24748 100644
--- a/arch/arm/mach-mx2/clock_imx21.c
+++ b/arch/arm/mach-mx2/clock_imx21.c
@@ -939,8 +939,8 @@ static struct clk_lookup lookups[] = {
_REGISTER_CLOCK(NULL, "gpt1", gpt_clk[1])
_REGISTER_CLOCK(NULL, "gpt1", gpt_clk[2])
_REGISTER_CLOCK(NULL, "pwm", pwm_clk[0])
- _REGISTER_CLOCK(NULL, "sdhc1", sdhc_clk[0])
- _REGISTER_CLOCK(NULL, "sdhc2", sdhc_clk[1])
+ _REGISTER_CLOCK("mxc-mmc.0", NULL, sdhc_clk[0])
+ _REGISTER_CLOCK("mxc-mmc.1", NULL, sdhc_clk[1])
_REGISTER_CLOCK(NULL, "cspi1", cspi_clk[0])
_REGISTER_CLOCK(NULL, "cspi2", cspi_clk[1])
_REGISTER_CLOCK(NULL, "cspi3", cspi_clk[2])
diff --git a/drivers/mmc/host/mxcmmc.c b/drivers/mmc/host/mxcmmc.c
index 60a2b69..ec5593b 100644
--- a/drivers/mmc/host/mxcmmc.c
+++ b/drivers/mmc/host/mxcmmc.c
@@ -56,6 +56,8 @@
#define MMC_REG_INT_CNTR 0x24
#define MMC_REG_CMD 0x28
#define MMC_REG_ARG 0x2C
+#define MMC_REG_ARGH 0x2C
+#define MMC_REG_ARGL 0x30
#define MMC_REG_RES_FIFO 0x34
#define MMC_REG_BUFFER_ACCESS 0x38
@@ -142,6 +144,49 @@ struct mxcmci_host {
static void mxcmci_set_clk_rate(struct mxcmci_host *host, unsigned int clk_ios);
+static void mxcmci_write_arg(struct mxcmci_host *host, u32 arg)
+{
+ if (cpu_is_mx21()) {
+ writel(arg >> 16, host->base + MMC_REG_ARGH);
+ writel(arg & 0xFFFF, host->base + MMC_REG_ARGL);
+ } else {
+ writel(arg, host->base + MMC_REG_ARG);
+ }
+}
+
+static void mxcmci_ack_int(struct mxcmci_host *host, u32 stat)
+{
+ if (cpu_is_mx21()) {
+ u32 intclr = readl(host->base + MMC_REG_INT_CNTR);
+
+ if (stat & STATUS_DATA_TRANS_DONE)
+ intclr |= INT_READ_OP_EN;
+ if (stat & STATUS_WRITE_OP_DONE)
+ intclr |= INT_WRITE_OP_DONE_EN;
+ if (stat & STATUS_END_CMD_RESP)
+ intclr |= INT_END_CMD_RES_EN;
+
+ writel(intclr, host->base + MMC_REG_INT_CNTR);
+ }
+}
+
+static inline void mxcmci_set_int_cntr(struct mxcmci_host *host, u32 enables)
+{
+ if (cpu_is_mx21()) /* some interrupt enables have reverse polarity */
+ enables ^= 0x1F;
+ writel(enables, host->base + MMC_REG_INT_CNTR);
+}
+
+static inline void mxcmci_start_clock(struct mxcmci_host *host)
+{
+ writew(STR_STP_CLK_START_CLK, host->base + MMC_REG_STR_STP_CLK);
+}
+
+static inline void mxcmci_stop_clock(struct mxcmci_host *host)
+{
+ writew(STR_STP_CLK_STOP_CLK, host->base + MMC_REG_STR_STP_CLK);
+}
+
static inline int mxcmci_use_dma(struct mxcmci_host *host)
{
return host->do_dma;
@@ -216,7 +261,10 @@ static int mxcmci_setup_data(struct mxcmci_host *host, struct mmc_data *data)
}
wmb();
- imx_dma_enable(host->dma);
+ /* MX21: unreliable writes if dma enabled here - do on command done */
+ if (mxcmci_use_dma(host) &&
+ (!cpu_is_mx21() || host->dma_dir == DMA_FROM_DEVICE))
+ imx_dma_enable(host->dma);
#endif /* HAS_DMA */
return 0;
}
@@ -248,15 +296,19 @@ static int mxcmci_start_cmd(struct mxcmci_host *host, struct mmc_command *cmd,
}
if (mxcmci_use_dma(host))
- writel(INT_READ_OP_EN | INT_WRITE_OP_DONE_EN |
- INT_END_CMD_RES_EN,
- host->base + MMC_REG_INT_CNTR);
+ mxcmci_set_int_cntr(host,
+ INT_READ_OP_EN | INT_WRITE_OP_DONE_EN |
+ INT_END_CMD_RES_EN);
else
- writel(INT_END_CMD_RES_EN, host->base + MMC_REG_INT_CNTR);
+ mxcmci_set_int_cntr(host, INT_END_CMD_RES_EN);
writew(cmd->opcode, host->base + MMC_REG_CMD);
- writel(cmd->arg, host->base + MMC_REG_ARG);
+ mxcmci_write_arg(host, cmd->arg);
writew(cmdat, host->base + MMC_REG_CMD_DAT_CONT);
+ if (cpu_is_mx21()) {
+ /* i.MX21 requires clock start after submitting command */
+ mxcmci_start_clock(host);
+ }
return 0;
}
@@ -264,7 +316,7 @@ static int mxcmci_start_cmd(struct mxcmci_host *host, struct mmc_command *cmd,
static void mxcmci_finish_request(struct mxcmci_host *host,
struct mmc_request *req)
{
- writel(0, host->base + MMC_REG_INT_CNTR);
+ mxcmci_set_int_cntr(host, 0);
host->req = NULL;
host->cmd = NULL;
@@ -369,19 +421,29 @@ static int mxcmci_poll_status(struct mxcmci_host *host, u32 mask)
static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes)
{
unsigned int stat;
- u32 *buf = _buf;
-
- while (bytes > 3) {
- stat = mxcmci_poll_status(host,
+ u16 *buf16 = _buf;
+ u32 *buf32 = _buf;
+ int count = 0;
+ int fifo_size = host->cmdat & CMD_DAT_CONT_BUS_WIDTH_4 ? 64 : 16;
+ int buffer_width = cpu_is_mx21() ? 2 : 4;
+
+ while (bytes >= buffer_width) {
+ if (count % fifo_size == 0) {
+ stat = mxcmci_poll_status(host,
STATUS_BUF_READ_RDY | STATUS_READ_OP_DONE);
- if (stat)
- return stat;
- *buf++ = readl(host->base + MMC_REG_BUFFER_ACCESS);
- bytes -= 4;
+ if (stat)
+ return stat;
+ }
+ if (buffer_width == 2)
+ *buf16++ = (u16)readl(
+ host->base + MMC_REG_BUFFER_ACCESS);
+ else
+ *buf32++ = readl(host->base + MMC_REG_BUFFER_ACCESS);
+ bytes -= buffer_width;
+ count += buffer_width;
}
if (bytes) {
- u8 *b = (u8 *)buf;
u32 tmp;
stat = mxcmci_poll_status(host,
@@ -389,7 +451,10 @@ static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes)
if (stat)
return stat;
tmp = readl(host->base + MMC_REG_BUFFER_ACCESS);
- memcpy(b, &tmp, bytes);
+ if (buffer_width == 2)
+ memcpy((u8 *)buf16, &tmp, bytes);
+ else
+ memcpy((u8 *)buf32, &tmp, bytes);
}
return 0;
@@ -398,33 +463,41 @@ static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes)
static int mxcmci_push(struct mxcmci_host *host, void *_buf, int bytes)
{
unsigned int stat;
- u32 *buf = _buf;
-
- while (bytes > 3) {
- stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
- if (stat)
- return stat;
- writel(*buf++, host->base + MMC_REG_BUFFER_ACCESS);
- bytes -= 4;
+ u16 *buf16 = _buf;
+ u32 *buf32 = _buf;
+ int count = 0;
+ int fifo_size = host->cmdat & CMD_DAT_CONT_BUS_WIDTH_4 ? 64 : 16;
+ int buffer_width = cpu_is_mx21() ? 2 : 4;
+
+ while (bytes >= buffer_width) {
+ if (count % fifo_size == 0) {
+ stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
+ if (stat)
+ return stat;
+ }
+ if (buffer_width == 2)
+ writel(*buf16++, host->base + MMC_REG_BUFFER_ACCESS);
+ else
+ writel(*buf32++, host->base + MMC_REG_BUFFER_ACCESS);
+ bytes -= buffer_width;
+ count += buffer_width;
}
if (bytes) {
- u8 *b = (u8 *)buf;
u32 tmp;
stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
if (stat)
return stat;
- memcpy(&tmp, b, bytes);
+ if (buffer_width == 2)
+ memcpy(&tmp, (u8 *)buf16, bytes);
+ else
+ memcpy(&tmp, (u8 *)buf32, bytes);
writel(tmp, host->base + MMC_REG_BUFFER_ACCESS);
}
- stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
- if (stat)
- return stat;
-
- return 0;
+ return mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY);
}
static int mxcmci_transfer_data(struct mxcmci_host *host)
@@ -511,13 +584,20 @@ static void mxcmci_cmd_done(struct mxcmci_host *host, unsigned int stat)
return;
}
+ if (!host->data)
+ return;
+
+#ifdef HAS_DMA
/* For the DMA case the DMA engine handles the data transfer
* automatically. For non DMA we have to do it ourselves.
* Don't do it in interrupt context though.
*/
- if (!mxcmci_use_dma(host) && host->data)
+ if (mxcmci_use_dma(host)) {
+ if (cpu_is_mx21() && host->dma_dir == DMA_TO_DEVICE)
+ imx_dma_enable(host->dma);
+ } else
+#endif
schedule_work(&host->datawork);
-
}
static irqreturn_t mxcmci_irq(int irq, void *devid)
@@ -527,6 +607,7 @@ static irqreturn_t mxcmci_irq(int irq, void *devid)
stat = readl(host->base + MMC_REG_STATUS);
writel(stat, host->base + MMC_REG_STATUS);
+ mxcmci_ack_int(host, stat);
dev_dbg(mmc_dev(host->mmc), "%s: 0x%08x\n", __func__, stat);
@@ -637,9 +718,9 @@ static void mxcmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
if (ios->clock) {
mxcmci_set_clk_rate(host, ios->clock);
- writew(STR_STP_CLK_START_CLK, host->base + MMC_REG_STR_STP_CLK);
+ mxcmci_start_clock(host);
} else {
- writew(STR_STP_CLK_STOP_CLK, host->base + MMC_REG_STR_STP_CLK);
+ mxcmci_stop_clock(host);
}
host->clock = ios->clock;
@@ -751,7 +832,7 @@ static int mxcmci_probe(struct platform_device *pdev)
/* recommended in data sheet */
writew(0x2db4, host->base + MMC_REG_READ_TO);
- writel(0, host->base + MMC_REG_INT_CNTR);
+ mxcmci_set_int_cntr(host, 0);
#ifdef HAS_DMA
host->dma = imx_dma_request_by_prio(DRIVER_NAME, DMA_PRIO_LOW);
@@ -768,7 +849,9 @@ static int mxcmci_probe(struct platform_device *pdev)
}
ret = imx_dma_config_channel(host->dma,
- IMX_DMA_MEMSIZE_32 | IMX_DMA_TYPE_FIFO,
+ (cpu_is_mx21() ?
+ IMX_DMA_MEMSIZE_16 : IMX_DMA_MEMSIZE_32)
+ | IMX_DMA_TYPE_FIFO,
IMX_DMA_MEMSIZE_32 | IMX_DMA_TYPE_LINEAR,
r->start, 0);
if (ret) {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH V7] mxc : Add i.MX21 support to mxcmmc driver
2010-02-13 15:36 [PATCH V7] mxc : Add i.MX21 support to mxcmmc driver Martin Fuzzey
@ 2010-08-27 19:14 ` Chris Ball
2010-08-30 15:07 ` Martin Fuzzey
0 siblings, 1 reply; 3+ messages in thread
From: Chris Ball @ 2010-08-27 19:14 UTC (permalink / raw)
To: Martin Fuzzey; +Cc: Sascha Hauer, linux-mmc, Pierre Ossman
Hi Martin,
On Sat, Feb 13, 2010 at 04:36:32PM +0100, Martin Fuzzey wrote:
> Even though the i.MX21 SDHC module has the same revision number as the i.MX27
> one there are a few differences!!
> Some interrupt enables are inverted.
> FIFO is only 16 bits wide.
> The argument is written to 2x16bit registers (vs 1x32).
> Interrupts must be acknowledged via the INT_CNTR register.
> Card clock must be enabled for each request.
> For writes DMA must be enabled on command response not before.
>
> Signed-off-by: Martin Fuzzey <mfuzzey@gmail.com>
>
> ---
> Changes from V6 (April 2009):
> Minor stylistic changes suggested by Robby Cai:
> factorize enables in mxcmci_set_int_cntr()
> remove redundant local variable in mxcmci_push() and mxcmci_pull()
> Rebased to 2.6.33-rc8
Looks like this wasn't merged. Are you interested in resubmitting it?
--
Chris Ball <cjb@laptop.org> <http://printf.net/>
One Laptop Per Child
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH V7] mxc : Add i.MX21 support to mxcmmc driver
2010-08-27 19:14 ` Chris Ball
@ 2010-08-30 15:07 ` Martin Fuzzey
0 siblings, 0 replies; 3+ messages in thread
From: Martin Fuzzey @ 2010-08-30 15:07 UTC (permalink / raw)
To: Chris Ball; +Cc: Sascha Hauer, linux-mmc, Pierre Ossman
Chris Ball wrote:
> Hi Martin,
>
> On Sat, Feb 13, 2010 at 04:36:32PM +0100, Martin Fuzzey wrote:
>
>> Even though the i.MX21 SDHC module has the same revision number as the i.MX27
>> one there are a few differences!!
>>
> Looks like this wasn't merged. Are you interested in resubmitting it?
>
>
Ok, I'll post a rebased version soon (next couple of days)
Regards,
Martin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-08-30 15:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-13 15:36 [PATCH V7] mxc : Add i.MX21 support to mxcmmc driver Martin Fuzzey
2010-08-27 19:14 ` Chris Ball
2010-08-30 15:07 ` Martin Fuzzey
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).