Re: [PATCH 1/1] ARM: dove: DT support for sdhci-dove

2012-07-30 Thread Andrew Lunn
+++ b/Documentation/devicetree/bindings/mmc/sdhci-dove.txt @@ -0,0 +1,12 @@ +* Marvell sdhci-dove controller + +Required properties: +- compatible: Should be "marvell,dove-sdhci". + +Example: + +sdio0: sdio@92000 { + compatible = "marvell,dove-sdhci"; + reg = <0x92000 0x100>; + in

[PATCH] mmc: sdhci: fix the clock APIs for pxav2 and pxav3 driver

2012-07-30 Thread Chao Xie
From: Chao Xie Signed-off-by: Chao Xie --- drivers/mmc/host/sdhci-pxav2.c |6 +++--- drivers/mmc/host/sdhci-pxav3.c |8 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/mmc/host/sdhci-pxav2.c b/drivers/mmc/host/sdhci-pxav2.c index dbb75bf..4d10159 100644 -

[PATCH RESEND v3] mmc: core: Remove bounce buffer in mmc_send_cxd_data()

2012-07-30 Thread Kyungsik Lee
It is expected that Extended CSD register(the size of this register is larger than CID/CSD) will be referenced more frequently as more fields have been added to Extended CSD and it seems that it is not a good option to double the memory used. This patch is intended to avoid the use of bounce buffe

Re: [PATCH RESEND v2] mmc: core: Remove bounce buffer in mmc_send_cxd_data()

2012-07-30 Thread kyungsik.lee
On 2012-07-30 오후 10:16, S, Venkatraman wrote: On Mon, Jul 30, 2012 at 7:34 AM, Kyungsik Lee wrote: It is expected that Extended CSD register(the size of this register is larger than CID/CSD) will be referenced more frequently as more fields have been added to Extended CSD and it seems that it i

[PATCH] [trivial] mmc: host: Fix typo in mmc/hosts

2012-07-30 Thread Masanari Iida
Correct spelling in printk and comments in mmc/hosts. Signed-off-by: Masanari Iida --- drivers/mmc/core/sdio.c| 2 +- drivers/mmc/host/at91_mci.c| 2 +- drivers/mmc/host/atmel-mci.c | 2 +- drivers/mmc/host/omap_hsmmc.c | 2 +- drivers/mmc/host/sdhci-esdhc-imx.c |

[PATCH 1/1] ARM: dove: DT support for sdhci-dove

2012-07-30 Thread Sebastian Hesselbarth
This patch adds device tree support and binding documentiation for sdhci-dove. Signed-off-by: Sebastian Hesselbarth Cc: Grant Likely Cc: Rob Herring Cc: Rob Landley Cc: Chris Ball Cc: Anton Vorontsov Cc: Manuel Lauss Cc: David Brown Cc: devicetree-disc...@lists.ozlabs.org Cc: linux-...@vge

Re: [PATCH RESEND v2] mmc: core: Remove bounce buffer in mmc_send_cxd_data()

2012-07-30 Thread S, Venkatraman
On Mon, Jul 30, 2012 at 7:34 AM, Kyungsik Lee wrote: > It is expected that Extended CSD register(the size of this register > is larger than CID/CSD) will be referenced more frequently as more > fields have been added to Extended CSD and it seems that it is not > a good option to double the memory

Re: [PATCH v11] mmc: support BKOPS feature for eMMC

2012-07-30 Thread Jaehoon Chung
On 07/29/2012 11:33 AM, Minchan Kim wrote: > On Tue, Jul 24, 2012 at 10:56 AM, Jaehoon Chung > wrote: >> Enable eMMC background operations (BKOPS) feature. >> >> If URGENT_BKOPS is set after a response, note that BKOPS >> are required. Immediately run BKOPS if required. >> read/write operations s

[PATCH] drivers: mmc: bfin_sdh: fix build error

2012-07-30 Thread Bob Liu
From: Sonic Zhang Descriptor array structure has been moved into blackfin dma.h head file. This patch fix below error: drivers/mmc/host/bfin_sdh.c:52:8: error: redefinition of 'struct dma_desc_array' make[4]: *** [drivers/mmc/host/bfin_sdh.o] Error 1 Signed-off-by: Sonic Zhang Signed-off-by: B