[PATCH 1/1] mmc: vub300: Staticize vub300_init_card

2013-06-25 Thread Sachin Kamat
'vub300_init_card' is used only in this file. Make it static. Signed-off-by: Sachin Kamat --- drivers/mmc/host/vub300.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c index cb9f361..e9028ad 100644 --- a/drivers/mmc/hos

[PATCH 1/1] mmc: sdhci-bcm2835: Staticize bcm2835_sdhci_get_min_clock

2013-06-25 Thread Sachin Kamat
'bcm2835_sdhci_get_min_clock' is used only in this file. Make it static. Signed-off-by: Sachin Kamat --- drivers/mmc/host/sdhci-bcm2835.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-bcm2835.c b/drivers/mmc/host/sdhci-bcm2835.c index 0584a1c..36fa

RE: [PATCH 5/5] mmc: omap_hsmmc: Add reg-offset to bindings documentation

2013-06-25 Thread Hebbar, Gururaja
On Wed, Jun 26, 2013 at 06:55:01, Fernandes, Joel wrote: > From: Joel A Fernandes > > A new reg-offset property was added to account for register offsets > in some omap-hsmmc's. Document the new property. > Small nitpick I usually get feedback that any driver DT changes and the associated Bind

RE: [PATCH] mmc: dw_mmc: remove the MMC_CAP_8_BIT_DATA in dw_mmc_caps[]

2013-06-25 Thread Seungwon Jeon
On Monday, June 17, 2013, Jaehoon Chung wrote: > This capability didn't need to set in dw_mmc_caps[]. > In dw-mmc.c, this capability could be set with bus_width value. You're right. It can be set from dw_mci_of_get_bus_wd. But I have another idea. exynos_dwmmc_caps is host own capability. As we kno

RE: [PATCH] RFC: mmc: dw_mmc: Always go to STATE_DATA_BUSY from STATE_DATA_ERROR

2013-06-25 Thread Seungwon Jeon
Hi Jaehoon, Do you have the same result? Could you share the result? Thanks, Seungwon Jeon On Tuesday, June 25 2013, Bing Zhao wrote: > > I think the proposal on the table is to take Seungwon's patches > > instead of mine. Assuming they solve your problems, I'm OK with that. > > I think he was r

[PATCH 0/2] EDMA config and comments

2013-06-25 Thread Joel A Fernandes
From: Joel A Fernandes Minor patches remaining after EDMA series has been merged: First patch adds the TI_EDMA option which people can forget to add and can result in failure without any informative errors of why DMA is not working. Second patch adds comments to the EDMA code for the calculatio

[PATCH 2/2] DMA: EDMA: Add comments for A-sync case calculations

2013-06-25 Thread Joel A Fernandes
From: Joel A Fernandes A-sync case in EDMA driver is tricky and not so obvious. Document the reasons for the calculations and the scenarious they are used. Signed-off-by: Joel A Fernandes --- drivers/dma/edma.c | 22 ++ 1 file changed, 22 insertions(+) diff --git a/drive

[PATCH 1/2] ARM: configs: Enable TI_EDMA in omap2plus_defconfig

2013-06-25 Thread Joel A Fernandes
From: Joel A Fernandes Build EDMA in my default to avoid fewer people stepping on their toes with broken DMA on drivers needing EDMA. Signed-off-by: Joel A Fernandes --- arch/arm/configs/omap2plus_defconfig |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/omap2plus_defco

[PATCH 2/5] ARM: dts: add AM33XX MMC support

2013-06-25 Thread Joel A Fernandes
From: Matt Porter Adds AM33XX MMC support for am335x-bone, am335x-evm, and am335x-evmsk. Signed-off-by: Matt Porter Acked-by: Tony Lindgren --- arch/arm/boot/dts/am335x-bone.dts |7 +++ arch/arm/boot/dts/am335x-evm.dts |7 +++ arch/arm/boot/dts/am335x-evmsk.dts |7 +

[PATCH 3/5] ARM: dts: am33xx: Add interrupts and memory resources for MMC

2013-06-25 Thread Joel A Fernandes
From: Joel A Fernandes HWMOD irq entries for MMC were removed. We provide the same from DT for MMC. This fixes issue where memory resource could not be found during probe. Also, added the reg-offset property to account for the offset from start. Signed-off-by: Joel A Fernandes --- arch/arm/bo

[PATCH 5/5] mmc: omap_hsmmc: Add reg-offset to bindings documentation

2013-06-25 Thread Joel A Fernandes
From: Joel A Fernandes A new reg-offset property was added to account for register offsets in some omap-hsmmc's. Document the new property. Signed-off-by: Joel A Fernandes --- .../devicetree/bindings/mmc/ti-omap-hsmmc.txt |3 +++ 1 file changed, 3 insertions(+) diff --git a/Documenta

[PATCH 4/5] mmc: omap_hsmmc: add generic DMA request support to the DT binding

2013-06-25 Thread Joel A Fernandes
From: Matt Porter The binding definition is based on the generic DMA request binding. Signed-off-by: Matt Porter Acked-by: Tony Lindgren Acked-by: Arnd Bergmann --- .../devicetree/bindings/mmc/ti-omap-hsmmc.txt | 26 +++- 1 file changed, 25 insertions(+), 1 deletion(-)

[PATCH 1/5] MMC: omap_hsmmc: Add reg_offset to DT bindings

2013-06-25 Thread Joel A Fernandes
From: Joel A Fernandes Some omap_hsmmc's need to start from a particular offset but otherwise are same and can be reused. Let the DT tell us about the HW difference, check for the reg-offset property and use the same in the driver. Signed-off-by: Joel A Fernandes --- drivers/mmc/host/omap_hsmm

[PATCH 0/5] AM33xx: MMC resources from DT without HWMOD data

2013-06-25 Thread Joel A Fernandes
From: Joel A Fernandes This series is fixes to get MMC working on AM33XX without HWMOD data. On removal of HWMOD data, interrupt and register properties need to be provided for the driver to function correctly. Also instead of specifying offset in match->data, I've added bindings for the same an

Re: [PATCH 4/4] mmc: sdhci-s3c: remove the duplicated calling sequence

2013-06-25 Thread Heiko Stübner
Am Dienstag, 25. Juni 2013, 03:20:59 schrieb Jaehoon Chung: > Didn't need to call the sdhci_s3c_notify_change in > setup_card_detect_gpio(). > > Signed-off-by: Jaehoon Chung > Signed-off-by: Kyungmin Park with the issue below addressed: Acked-by: Heiko Stuebner and on a s3c2416 Tested-by: H

Re: [PATCH 3/4] mmc: sdhci-s3c: revert "fix missing clock for gpio card-detect"

2013-06-25 Thread Heiko Stübner
Am Dienstag, 25. Juni 2013, 03:20:58 schrieb Jaehoon Chung: > Fixed the warning message.(clk_disable/enable didn't pair) > > [2.11] [ cut here ] > [2.11] WARNING: at drivers/clk/clk.c:780 clk_disable+0x18/0x24() > [2.11] Modules linked in: > [2.1

Re: [PATCH v12 00/11] DMA Engine support for AM33XX

2013-06-25 Thread Santosh Shilimkar
On Tuesday 25 June 2013 10:16 AM, Sekhar Nori wrote: > On 6/25/2013 12:24 PM, Tony Lindgren wrote: >> * Benoit Cousson [130624 07:42]: >>> Hi Tony, >>> >>> On 06/24/2013 12:19 PM, Tony Lindgren wrote: Hi, For merging this series, I suggest the following sets: * Joel A Fern

Re: [PATCH v12 00/11] DMA Engine support for AM33XX

2013-06-25 Thread Sekhar Nori
On 6/25/2013 12:24 PM, Tony Lindgren wrote: > * Benoit Cousson [130624 07:42]: >> Hi Tony, >> >> On 06/24/2013 12:19 PM, Tony Lindgren wrote: >>> Hi, >>> >>> For merging this series, I suggest the following sets: >>> >>> * Joel A Fernandes [130620 14:13]: Joel A Fernandes (3): ed

[PATCH v2 2/4] mmc: atmel-mci: prepare clk before calling enable

2013-06-25 Thread Boris BREZILLON
Replace clk_enable/disable with clk_prepare_enable/disable_unprepare to avoid common clk framework warnings. Signed-off-by: Boris BREZILLON --- drivers/mmc/host/atmel-mci.c | 27 ++- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/drivers/mmc/host/atmel-m