* [PATCH 0/3] mmc: omap_hsmmc: sdio irq am335x.
@ 2012-11-19 21:42 Andreas Fenkart
2012-11-19 21:42 ` [PATCH 1/3] mmc: omap_hsmmc: NULL pointer upon DTO after CC Andreas Fenkart
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Andreas Fenkart @ 2012-11-19 21:42 UTC (permalink / raw)
To: linux-mmc; +Cc: david.vrabel, daniel, Andreas Fenkart
Here 2 patches enabling sdio irq on beaglebone and one bug fix.
Signed-off-by: Andreas Fenkart <andreas.fenkart@streamunlimited.com>
--
arch/arm/boot/dts/am335x-sue-s800.dtsi | 1 +
drivers/mmc/host/omap_hsmmc.c | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------
include/linux/platform_data/mmc-omap.h | 1 +
3 files changed, 97 insertions(+), 14 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] mmc: omap_hsmmc: NULL pointer upon DTO after CC.
2012-11-19 21:42 [PATCH 0/3] mmc: omap_hsmmc: sdio irq am335x Andreas Fenkart
@ 2012-11-19 21:42 ` Andreas Fenkart
2012-11-20 7:36 ` Venkatraman S
2012-11-19 21:42 ` [PATCH 2/3] mmc: omap_hsmmc: Enable the use of SDIO card interrupts Andreas Fenkart
2012-11-19 21:42 ` [PATCH 3/3] MMC: omap_hsmmc: add DT property for ti-swakeup-not-implemented Andreas Fenkart
2 siblings, 1 reply; 5+ messages in thread
From: Andreas Fenkart @ 2012-11-19 21:42 UTC (permalink / raw)
To: linux-mmc; +Cc: david.vrabel, daniel, Andreas Fenkart
Signed-off-by: Andreas Fenkart <andreas.fenkart@streamunlimited.com>
---
drivers/mmc/host/omap_hsmmc.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index 21ca331..13ef4a0 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -991,9 +991,12 @@ static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
static void hsmmc_command_incomplete(struct omap_hsmmc_host *host, int err)
{
omap_hsmmc_reset_controller_fsm(host, SRC);
- host->cmd->error = err;
+
+ if (host->cmd)
+ host->cmd->error = err;
if (host->data) {
+ host->data->error = err;
omap_hsmmc_reset_controller_fsm(host, SRD);
omap_hsmmc_dma_cleanup(host, err);
}
@@ -1022,7 +1025,7 @@ static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
}
}
- if (end_cmd || ((status & CC) && host->cmd))
+ if ((end_cmd || (status & CC)) && host->cmd)
omap_hsmmc_cmd_done(host, host->cmd);
if ((end_trans || (status & TC)) && host->mrq)
omap_hsmmc_xfer_done(host, data);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/3] mmc: omap_hsmmc: Enable the use of SDIO card interrupts.
2012-11-19 21:42 [PATCH 0/3] mmc: omap_hsmmc: sdio irq am335x Andreas Fenkart
2012-11-19 21:42 ` [PATCH 1/3] mmc: omap_hsmmc: NULL pointer upon DTO after CC Andreas Fenkart
@ 2012-11-19 21:42 ` Andreas Fenkart
2012-11-19 21:42 ` [PATCH 3/3] MMC: omap_hsmmc: add DT property for ti-swakeup-not-implemented Andreas Fenkart
2 siblings, 0 replies; 5+ messages in thread
From: Andreas Fenkart @ 2012-11-19 21:42 UTC (permalink / raw)
To: linux-mmc; +Cc: david.vrabel, daniel, Andreas Fenkart
FCLK must be enabled while SDIO interrupts are enabled or the MMC
module won't wake-up (even though ENAWAKEUP in SYSCONFIG and IWE in
HTCL have been set). Enabling the MMC module to wake-up would require
configuring the MMC module (and the mmci_dat[1] GPIO when the CORE
power domain is OFF) as wake-up sources in the PRCM.
The writes to STAT and ISE when starting a command are unnecessary and
have been removed.
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Signed-off-by: Andreas Fenkart <andreas.fenkart@streamunlimited.com>
---
drivers/mmc/host/omap_hsmmc.c | 99 ++++++++++++++++++++++++++++----
include/linux/platform_data/mmc-omap.h | 1 +
2 files changed, 88 insertions(+), 12 deletions(-)
diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index 13ef4a0..90f4b32 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -106,7 +106,10 @@ static void apply_clk_hack(void)
#define INT_EN_MASK 0x307F0033
#define BWR_ENABLE (1 << 4)
#define BRR_ENABLE (1 << 5)
+#define CIRQ_ENABLE (1 << 8)
#define DTO_ENABLE (1 << 20)
+#define CTPL (1 << 11)
+#define CLKEXTFREE (1 << 16)
#define INIT_STREAM (1 << 1)
#define DP_SELECT (1 << 21)
#define DDIR (1 << 4)
@@ -115,10 +118,12 @@ static void apply_clk_hack(void)
#define BCE (1 << 1)
#define FOUR_BIT (1 << 1)
#define DDR (1 << 19)
+#define IWE (1 << 24)
#define DW8 (1 << 5)
#define CC 0x1
#define TC 0x02
#define OD 0x1
+#define CIRQ (1 << 8)
#define ERR (1 << 15)
#define CMD_TIMEOUT (1 << 16)
#define DATA_TIMEOUT (1 << 20)
@@ -196,6 +201,7 @@ struct omap_hsmmc_host {
int reqs_blocked;
int use_reg;
int req_in_progress;
+ bool sdio_int;
struct omap_hsmmc_next next_data;
struct omap_mmc_platform_data *pdata;
@@ -472,27 +478,45 @@ static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
struct mmc_command *cmd)
{
- unsigned int irq_mask;
+ u32 irq_mask = INT_EN_MASK;
+ unsigned long flags;
if (host->use_dma)
- irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
- else
- irq_mask = INT_EN_MASK;
+ irq_mask &= ~(BRR_ENABLE | BWR_ENABLE);
/* Disable timeout for erases */
if (cmd->opcode == MMC_ERASE)
irq_mask &= ~DTO_ENABLE;
+ spin_lock_irqsave(&host->irq_lock, flags);
+
OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
+
+ /* latch pending CIRQ, but don't signal */
+ if (host->sdio_int)
+ irq_mask |= CIRQ_ENABLE;
+
OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
+
+ spin_unlock_irqrestore(&host->irq_lock, flags);
}
static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
{
- OMAP_HSMMC_WRITE(host->base, ISE, 0);
- OMAP_HSMMC_WRITE(host->base, IE, 0);
+ u32 irq_mask = 0;
+ unsigned long flags;
+
+ spin_lock_irqsave(&host->irq_lock, flags);
+
+ if (host->sdio_int)
+ irq_mask |= CIRQ_ENABLE;
+
+ OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
+ OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
+
+ spin_unlock_irqrestore(&host->irq_lock, flags);
}
/* Calculate divisor for the given clock frequency */
@@ -615,7 +639,7 @@ static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
}
OMAP_HSMMC_WRITE(host->base, HCTL,
- OMAP_HSMMC_READ(host->base, HCTL) | hctl);
+ OMAP_HSMMC_READ(host->base, HCTL) | hctl | IWE);
OMAP_HSMMC_WRITE(host->base, CAPA,
OMAP_HSMMC_READ(host->base, CAPA) | capa);
@@ -1040,8 +1064,13 @@ static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
int status;
status = OMAP_HSMMC_READ(host->base, STAT);
- while (status & INT_EN_MASK && host->req_in_progress) {
- omap_hsmmc_do_irq(host, status);
+ while (status & (INT_EN_MASK | CIRQ)) {
+
+ if (host->req_in_progress)
+ omap_hsmmc_do_irq(host, status);
+
+ if (status & CIRQ)
+ mmc_signal_sdio_irq(host->mmc);
/* Flush posted write */
OMAP_HSMMC_WRITE(host->base, STAT, status);
@@ -1557,6 +1586,50 @@ static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
mmc_slot(host).init_card(card);
}
+static void omap_hsmmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
+{
+ struct omap_hsmmc_host *host = mmc_priv(mmc);
+ struct omap_mmc_platform_data *pdata = host->pdata;
+ u32 con, irq_mask;
+ unsigned long flags;
+
+ spin_lock_irqsave(&host->irq_lock, flags);
+
+ con = OMAP_HSMMC_READ(host->base, CON);
+ irq_mask = OMAP_HSMMC_READ(host->base, ISE);
+ if (enable) {
+ irq_mask |= CIRQ_ENABLE;
+ con |= CTPL;
+ host->sdio_int = true;
+ } else {
+ irq_mask &= ~CIRQ_ENABLE;
+ con &= ~CTPL;
+ host->sdio_int = false;
+ }
+ OMAP_HSMMC_WRITE(host->base, CON, con);
+ OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
+ OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
+ OMAP_HSMMC_READ(host->base, IE); /* flush posted write */
+
+ spin_unlock_irqrestore(&host->irq_lock, flags);
+
+ if (pdata->controller_flags & OMAP_HSMMC_SWAKEUP_NOT_IMPLEMENTED) {
+ /* FCLK must be enabled as wake-up does not work. Take care to
+ * disable FCLK after all the register accesses as they might
+ * not complete if FCLK is off.
+ *
+ * FIXME: if the MMC module (and the mmci_dat[1] GPIO when the
+ * CORE power domain is OFF) are configured as a wake-up
+ * sources in the PRCM, then FCLK could be switched off. This
+ * might add too much latency.
+ */
+ if (enable)
+ pm_runtime_get(host->dev);
+ else
+ pm_runtime_put_noidle(host->dev);
+ }
+}
+
static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
{
u32 hctl, capa, value;
@@ -1571,7 +1644,7 @@ static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
}
value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
- OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
+ OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl | IWE);
value = OMAP_HSMMC_READ(host->base, CAPA);
OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
@@ -1609,7 +1682,7 @@ static const struct mmc_host_ops omap_hsmmc_ops = {
.get_cd = omap_hsmmc_get_cd,
.get_ro = omap_hsmmc_get_ro,
.init_card = omap_hsmmc_init_card,
- /* NYET -- enable_sdio_irq */
+ .enable_sdio_irq = omap_hsmmc_enable_sdio_irq,
};
#ifdef CONFIG_DEBUG_FS
@@ -1802,6 +1875,7 @@ static int __devinit omap_hsmmc_probe(struct platform_device *pdev)
host->dma_ch = -1;
host->irq = irq;
host->slot_id = 0;
+ host->sdio_int = false;
host->mapbase = res->start + pdata->reg_offset;
host->base = ioremap(host->mapbase, SZ_4K);
host->power_mode = MMC_POWER_OFF;
@@ -1879,7 +1953,8 @@ static int __devinit omap_hsmmc_probe(struct platform_device *pdev)
mmc->max_seg_size = mmc->max_req_size;
mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
- MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
+ MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE |
+ MMC_CAP_SDIO_IRQ;
mmc->caps |= mmc_slot(host).caps;
if (mmc->caps & MMC_CAP_8_BIT_DATA)
diff --git a/include/linux/platform_data/mmc-omap.h b/include/linux/platform_data/mmc-omap.h
index 2bf6ea8..65b24cd 100644
--- a/include/linux/platform_data/mmc-omap.h
+++ b/include/linux/platform_data/mmc-omap.h
@@ -28,6 +28,7 @@
*/
#define OMAP_HSMMC_SUPPORTS_DUAL_VOLT BIT(0)
#define OMAP_HSMMC_BROKEN_MULTIBLOCK_READ BIT(1)
+#define OMAP_HSMMC_SWAKEUP_NOT_IMPLEMENTED BIT(2)
struct mmc_card;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] MMC: omap_hsmmc: add DT property for ti-swakeup-not-implemented.
2012-11-19 21:42 [PATCH 0/3] mmc: omap_hsmmc: sdio irq am335x Andreas Fenkart
2012-11-19 21:42 ` [PATCH 1/3] mmc: omap_hsmmc: NULL pointer upon DTO after CC Andreas Fenkart
2012-11-19 21:42 ` [PATCH 2/3] mmc: omap_hsmmc: Enable the use of SDIO card interrupts Andreas Fenkart
@ 2012-11-19 21:42 ` Andreas Fenkart
2 siblings, 0 replies; 5+ messages in thread
From: Andreas Fenkart @ 2012-11-19 21:42 UTC (permalink / raw)
To: linux-mmc; +Cc: david.vrabel, daniel, Andreas Fenkart
Signed-off-by: Andreas Fenkart <andreas.fenkart@streamunlimited.com>
---
arch/arm/boot/dts/am335x-sue-s800.dtsi | 1 +
drivers/mmc/host/omap_hsmmc.c | 3 +++
2 files changed, 4 insertions(+)
diff --git a/arch/arm/boot/dts/am335x-sue-s800.dtsi b/arch/arm/boot/dts/am335x-sue-s800.dtsi
index 06304cc..7a446fe 100644
--- a/arch/arm/boot/dts/am335x-sue-s800.dtsi
+++ b/arch/arm/boot/dts/am335x-sue-s800.dtsi
@@ -158,6 +158,7 @@
pinctrl-names = "default";
pinctrl-0 = <&mmc1_pins>;
ti,non-removable;
+ ti,swakeup-not-implemented;
bus-width = <4>;
vmmc-supply = <&ldo2_reg>;
vmmc_aux-supply = <&vmmc>;
diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index 90f4b32..290d5da 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -1783,6 +1783,9 @@ static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
if (of_find_property(np, "ti,dual-volt", NULL))
pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
+ if (of_find_property(np, "ti,swakeup-not-implemented", NULL))
+ pdata->controller_flags |= OMAP_HSMMC_SWAKEUP_NOT_IMPLEMENTED;
+
/* This driver only supports 1 slot */
pdata->nr_slots = 1;
pdata->slots[0].switch_pin = of_get_named_gpio(np, "cd-gpios", 0);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/3] mmc: omap_hsmmc: NULL pointer upon DTO after CC.
2012-11-19 21:42 ` [PATCH 1/3] mmc: omap_hsmmc: NULL pointer upon DTO after CC Andreas Fenkart
@ 2012-11-20 7:36 ` Venkatraman S
0 siblings, 0 replies; 5+ messages in thread
From: Venkatraman S @ 2012-11-20 7:36 UTC (permalink / raw)
To: Andreas Fenkart; +Cc: linux-mmc, david.vrabel, daniel
On Tuesday 20 November 2012 03:12 AM, Andreas Fenkart wrote:
> Signed-off-by: Andreas Fenkart <andreas.fenkart@streamunlimited.com>
> ---
> drivers/mmc/host/omap_hsmmc.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
> index 21ca331..13ef4a0 100644
> --- a/drivers/mmc/host/omap_hsmmc.c
> +++ b/drivers/mmc/host/omap_hsmmc.c
> @@ -991,9 +991,12 @@ static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
> static void hsmmc_command_incomplete(struct omap_hsmmc_host *host, int err)
> {
> omap_hsmmc_reset_controller_fsm(host, SRC);
> - host->cmd->error = err;
> +
> + if (host->cmd)
> + host->cmd->error = err;
>
> if (host->data) {
> + host->data->error = err;
> omap_hsmmc_reset_controller_fsm(host, SRD);
> omap_hsmmc_dma_cleanup(host, err);
> }
> @@ -1022,7 +1025,7 @@ static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
> }
> }
>
> - if (end_cmd || ((status & CC) && host->cmd))
> + if ((end_cmd || (status & CC)) && host->cmd)
> omap_hsmmc_cmd_done(host, host->cmd);
> if ((end_trans || (status & TC)) && host->mrq)
> omap_hsmmc_xfer_done(host, data);
Hi Andreas,
Thanks for this, but it's been fixed already with Balaji's patches
which I reposted a few hours ago.
Can you please check if it fixes your issues ?
~V
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-11-20 7:37 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-19 21:42 [PATCH 0/3] mmc: omap_hsmmc: sdio irq am335x Andreas Fenkart
2012-11-19 21:42 ` [PATCH 1/3] mmc: omap_hsmmc: NULL pointer upon DTO after CC Andreas Fenkart
2012-11-20 7:36 ` Venkatraman S
2012-11-19 21:42 ` [PATCH 2/3] mmc: omap_hsmmc: Enable the use of SDIO card interrupts Andreas Fenkart
2012-11-19 21:42 ` [PATCH 3/3] MMC: omap_hsmmc: add DT property for ti-swakeup-not-implemented Andreas Fenkart
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).