[U-Boot] [PATCH] Please pull u-boot-mmc

Hi Tom,
Here is the mmc updates. There are patches relevant to DM and pending patches. Could you pull these patch to u-boot/master?
Best Regards Jaehoon Chung
The following changes since commit e1efe43c710bec8d951c25f163cc8b0c5eb92294:
powerpc/86xx: Increase boot map size to 256 MiB (2016-08-03 18:02:29 -0700)
are available in the git repository at:
git://git.denx.de/u-boot-mmc.git master
for you to fetch changes up to 89f69e51734f5d704ef84503d24907bfde2f5577:
mmc: sdhci: fix the compiler warning when disable CONFIG_MMC_SDMA (2016-08-05 20:48:01 +0900)
---------------------------------------------------------------- Jaehoon Chung (10): mmc: sdhci: set to INT_DATA_END when there are data mmc: s5p_sdhci: unset the SDHCI_QUIRK_BROKEN_R1B mmc: dw_mmc: remove the duplicated header file mmc: fsl_esdhc: remove the duplicated header file mmc: use the generic error number mmc: sdhci: revert "mmc: sdhci: Claer high speed if not supported" mmc: sdhci: remove the unused argument for sdhci_setup_cfg mmc: sdhci: remove the unnecessary arguments for sdhci_setup_cfg mmc: dw_mmc: fix the wrong Mask bit boundary for fifo_count bit mmc: sdhci: fix the compiler warning when disable CONFIG_MMC_SDMA
Masahiro Yamada (1): mmc: sdhci: clean up timeout detection
Xu Ziyuan (3): mmc: display mmc list information like mmc_legacy type mmc: dw_mmc: transfer proper bytes to FIFO mmc: dw_mmc: fix data starvation by host timeout under FIFO mode
drivers/mmc/arm_pl180_mmci.c | 2 +- drivers/mmc/bfin_sdh.c | 10 ++++---- drivers/mmc/davinci_mmc.c | 11 +++++---- drivers/mmc/dw_mmc.c | 12 +++++---- drivers/mmc/exynos_dw_mmc.c | 2 +- drivers/mmc/fsl_esdhc.c | 14 +++++------ drivers/mmc/ftsdc010_mci.c | 10 ++++---- drivers/mmc/gen_atmel_mci.c | 10 ++++---- drivers/mmc/mmc-uclass.c | 2 +- drivers/mmc/mmc.c | 18 +++++++------- drivers/mmc/mmc_spi.c | 11 +++++---- drivers/mmc/msm_sdhci.c | 4 +-- drivers/mmc/mvebu_mmc.c | 9 ++++--- drivers/mmc/mxcmmc.c | 6 ++--- drivers/mmc/mxsmmc.c | 18 +++++++------- drivers/mmc/omap_hsmmc.c | 18 +++++++------- drivers/mmc/rockchip_sdhci.c | 8 ++---- drivers/mmc/s3c_sdi.c | 4 +-- drivers/mmc/s5p_sdhci.c | 2 +- drivers/mmc/sdhci.c | 58 ++++++++++++++++++++++---------------------- drivers/mmc/sh_mmcif.c | 8 +++--- drivers/mmc/sh_sdhi.c | 6 ++--- drivers/mmc/sunxi_mmc.c | 6 ++--- drivers/mmc/tegra_mmc.c | 7 +++--- drivers/mmc/uniphier-sd.c | 2 +- drivers/mmc/zynq_sdhci.c | 6 ++--- include/dwmmc.h | 2 +- include/mmc.h | 6 ----- include/sdhci.h | 13 +++------- 29 files changed, 135 insertions(+), 150 deletions(-)

We no longer need to set 'caps' as it's not passed to sdhci_setup_cfg anymore.
Fixes: 14bed52d276a ("mmc: sdhci: remove the unnecessary arguments for sdhci_setup_cfg") Signed-off-by: Tom Rini trini@konsulko.com --- drivers/mmc/zynq_sdhci.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/drivers/mmc/zynq_sdhci.c b/drivers/mmc/zynq_sdhci.c index bf542192cec3..3815b9432927 100644 --- a/drivers/mmc/zynq_sdhci.c +++ b/drivers/mmc/zynq_sdhci.c @@ -27,7 +27,6 @@ static int arasan_sdhci_probe(struct udevice *dev) struct arasan_sdhci_plat *plat = dev_get_platdata(dev); struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); struct sdhci_host *host = dev_get_priv(dev); - u32 caps; int ret;
host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD | @@ -39,7 +38,6 @@ static int arasan_sdhci_probe(struct udevice *dev)
host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
- caps = sdhci_readl(host, SDHCI_CAPABILITIES); ret = sdhci_setup_cfg(&plat->cfg, host, CONFIG_ZYNQ_SDHCI_MAX_FREQ, CONFIG_ZYNQ_SDHCI_MIN_FREQ); host->mmc = &plat->mmc;

On Fri, Aug 05, 2016 at 05:43:03PM -0400, Tom Rini wrote:
We no longer need to set 'caps' as it's not passed to sdhci_setup_cfg anymore.
Fixes: 14bed52d276a ("mmc: sdhci: remove the unnecessary arguments for sdhci_setup_cfg") Signed-off-by: Tom Rini trini@konsulko.com
Applied to u-boot/master, thanks!

On Fri, Aug 05, 2016 at 09:00:17PM +0900, Jaehoon Chung wrote:
Hi Tom,
Here is the mmc updates. There are patches relevant to DM and pending patches. Could you pull these patch to u-boot/master?
Best Regards Jaehoon Chung
The following changes since commit e1efe43c710bec8d951c25f163cc8b0c5eb92294:
powerpc/86xx: Increase boot map size to 256 MiB (2016-08-03 18:02:29 -0700)
are available in the git repository at:
git://git.denx.de/u-boot-mmc.git master
for you to fetch changes up to 89f69e51734f5d704ef84503d24907bfde2f5577:
mmc: sdhci: fix the compiler warning when disable CONFIG_MMC_SDMA (2016-08-05 20:48:01 +0900)
Applied to u-boot/master, thanks!
participants (2)
-
Jaehoon Chung
-
Tom Rini