[PATCH] mmc: sdhci-esdhc-imx: support voltage-range property

2015-03-24 Thread Marc Kleine-Budde
From: Sascha Hauer s.ha...@pengutronix.de Signed-off-by: Sascha Hauer s.ha...@pengutronix.de Signed-off-by: Marc Kleine-Budde m...@pengutronix.de --- Documentation/devicetree/bindings/mmc/fsl-imx-esdhc.txt | 4 drivers/mmc/host/sdhci-esdhc-imx.c | 6 +- 2 files

Re: [PATCH v3 0/3] mmc: mxs-mmc: add cd-inverted, non-removable and broken-cd

2013-04-12 Thread Marc Kleine-Budde
On 04/10/2013 11:13 AM, Marc Kleine-Budde wrote: Hello, this patch add support for the cd-inverted, non-removeable and broken-cd property (as defined in devicetree/bindings/mmc/mmc.txt) to the mxs-mmc driver. Tested on a custom imx28 board. This series applies to Chris Ball's cjb/mmc

[PATCH v3 1/3] mmc: mxs-mmc: add cd-inverted, non-removable and broken-cd

2013-04-10 Thread Marc Kleine-Budde
patch [PATCH 3/3] mmc: mxs-mmc: add broken-cd property Changes since v1: - add Shawn's Acked-by - fixed typo in [PATCH 2/2] mmc: mxs-mmc: add non-removeable property (tnx Chris) regards, Marc Kleine-Budde -- To unsubscribe from this list: send the line unsubscribe linux-mmc in the body of a message

[PATCH v3 1/3] mmc: mxs-mmc: add cd-inverted property

2013-04-10 Thread Marc Kleine-Budde
The card-detect GPIO is inverted on some boards. Handle such case. Acked-by: Shawn Guo shawn@linaro.org Signed-off-by: Marc Kleine-Budde m...@pengutronix.de --- drivers/mmc/host/mxs-mmc.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/host/mxs-mmc.c b

Re: [PATCH v2 2/2] mmc: mxs-mmc: add non-removable property

2013-04-10 Thread Marc Kleine-Budde
On 04/10/2013 10:19 AM, Hector Palacios wrote: On Tue 09 Apr 2013 06:34:10 PM CEST, Marc Kleine-Budde wrote: On 04/09/2013 05:21 PM, Hector Palacios wrote: On 04/09/2013 05:14 PM, Hector Palacios wrote: @@ -95,7 +97,8 @@ static int mxs_mmc_get_cd(struct mmc_host *mmc) struct

Re: [PATCH v2 2/2] mmc: mxs-mmc: add non-removable property

2013-04-09 Thread Marc Kleine-Budde
with your Signed-off-by, I'll squash your patch into mine and repost the series. Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions| Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917- | Amtsgericht

Re: [PATCH] mmc: mxs-mmc: Add broken-cd devicetree property

2013-04-06 Thread Marc Kleine-Budde
be used. - non-removable: non-removable slot (like eMMC); assume always present. But mxs-mmc set MMC_CAP_NEEDS_POLL unconditionally. http://lxr.free-electrons.com/source/drivers/mmc/host/mxs-mmc.c#L682 Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux

Re: mmc: mxs-mmc: add non-removeable property

2013-04-05 Thread Marc Kleine-Budde
is not connected and the card is removable, you should use broken-cd and base you patch on mine. Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions| Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-

[PATCH v2 1/2] mmc: mxs-mmc: add cd-inverted property

2013-04-05 Thread Marc Kleine-Budde
The card-detect GPIO is inverted on some boards. Handle such case. Acked-by: Shawn Guo shawn@linaro.org Signed-off-by: Marc Kleine-Budde m...@pengutronix.de --- drivers/mmc/host/mxs-mmc.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/host/mxs-mmc.c b

[PATCH v2 0/2] mmc: mxs-mmc: add cd-inverted and non-removeable

2013-04-05 Thread Marc Kleine-Budde
in [PATCH 2/2] mmc: mxs-mmc: add non-removeable property (tnx Chris) regards, Marc Kleine-Budde -- To unsubscribe from this list: send the line unsubscribe linux-mmc in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH v2 2/2] mmc: mxs-mmc: add non-removable property

2013-04-05 Thread Marc Kleine-Budde
Some boards have non removable cards like eMMC. Handle such case. Acked-by: Shawn Guo shawn@linaro.org Signed-off-by: Marc Kleine-Budde m...@pengutronix.de --- changes since v1: - fix removeable typo drivers/mmc/host/mxs-mmc.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions

Re: mmc: mxs-mmc: add non-removeable property

2013-04-05 Thread Marc Kleine-Budde
On 04/05/2013 02:31 PM, Alexandre Pereira da Silva wrote: On Fri, Apr 5, 2013 at 9:14 AM, Marc Kleine-Budde m...@pengutronix.de wrote: I'm not subscribed to linux-mmc and on http://news.gmane.org/gmane.linux.kernel.mmc I just see Marek's Reviewed-by. Can you point me to the discussion

Re: [PATCH 2/2] mmc: mxs-mmc: add non-removeable property

2013-04-04 Thread Marc Kleine-Budde
On 04/04/2013 04:07 PM, Chris Ball wrote: Hi, On Mon, Mar 25 2013, Marc Kleine-Budde wrote: +host-non_removeable = of_property_read_bool(np, non-removable); +if (host-non_removeable) +mmc-caps |= MMC_CAP_NONREMOVABLE; The correct spelling is non_removable, as used

Re: [PATCH 0/2] mmc: mxs-mmc: add cd-inverted and non-removeable

2013-04-03 Thread Marc Kleine-Budde
On 03/25/2013 04:02 PM, Marc Kleine-Budde wrote: Hello, this patch add support for the cd-inverted and non-removeable property (as defined in devicetree/bindings/mmc/mmc.txt) to the mxs-mmc driver. Tested on a custom imx28 board. This series applies to Chris Ball's cjb/mmc-next branch

[PATCH 0/2] mmc: mxs-mmc: add cd-inverted and non-removeable

2013-03-25 Thread Marc Kleine-Budde
Hello, this patch add support for the cd-inverted and non-removeable property (as defined in devicetree/bindings/mmc/mmc.txt) to the mxs-mmc driver. Tested on a custom imx28 board. This series applies to Chris Ball's cjb/mmc-next branch. regards, Marc Kleine-Budde -- To unsubscribe from

[PATCH 2/2] mmc: mxs-mmc: add non-removeable property

2013-03-25 Thread Marc Kleine-Budde
Some boards have non removeable cards like eMMC. Handle such case. Signed-off-by: Marc Kleine-Budde m...@pengutronix.de --- drivers/mmc/host/mxs-mmc.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/host/mxs-mmc.c b/drivers/mmc/host/mxs-mmc.c index

[PATCH 1/2] mmc: mxs-mmc: add cd-inverted property

2013-03-25 Thread Marc Kleine-Budde
The card-detect GPIO is inverted on some boards. Handle such case. Signed-off-by: Marc Kleine-Budde m...@pengutronix.de --- drivers/mmc/host/mxs-mmc.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/host/mxs-mmc.c b/drivers/mmc/host/mxs-mmc.c index 4efe302

Re: [PATCH 02/10] arm: at91: move platfarm_data to include/linux/platform_data/atmel.h

2012-11-07 Thread Marc Kleine-Budde
this will go via at91 with the patch serie than clean up the include/mach Fine with me. For preparation to switch to arm multiarch kernel Acked-by: Marc Kleine-Budde m...@pengutronix.de (for the CAN related changes) Marc -- Pengutronix e.K. | Marc Kleine-Budde

[PATCH] mmc: at91_mci: add missing linux/highmem.h include

2010-06-19 Thread Marc Kleine-Budde
: 'KM_BIO_SRC_IRQ' undeclared (first use in this function) at91_mci.c:302: warning: assignment makes pointer from integer without a cast at91_mci.c:317: error: implicit declaration of function 'flush_kernel_dcache_page' Signed-off-by: Marc Kleine-Budde m...@pengutronix.de Cc: Andrew Victor avictor

Re: [PATCH] mmc: at91_mci: add missing linux/highmem.h include

2010-06-19 Thread Marc Kleine-Budde
Marc Kleine-Budde wrote: This patch fixes the following error: at91_mci.c: In function 'at91_mci_sg_to_dma': at91_mci.c:236: error: implicit declaration of function 'kmap_atomic' at91_mci.c:236: error: 'KM_BIO_SRC_IRQ' undeclared (first use in this function) at91_mci.c:236: error: (Each