From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peng Fan Date: Wed, 11 Mar 2020 00:56:17 +0000 Subject: Please pull mmc-2020-3-9 Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, Please pull mmc-2020-3-9 ---------------------------------- DM support for CAxxxx SoCs eMMC board for presidio-asic Add defer probe for mmc sdhci TI SoCs mmc misc update ---------------------------------- CI: https://travis-ci.org/MrVan/u-boot/builds/659943777 Thanks, Peng. The following changes since commit d16e18ca6c4d81ac142acd529b1acb55b0c96dfc: Merge branch 'master' of git://git.denx.de/u-boot-sh (2020-03-04 19:21:00 -0500) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-mmc.git tags/mmc-2020-3-9 for you to fetch changes up to 59af57f3cfaa4416e4b918c07f7360c5b80ce448: configs: j721e_evm: Add Support for eMMC boot (2020-03-09 08:33:16 +0800) ---------------------------------------------------------------- Alex Nemirovsky (1): board: presidio-asic: Add eMMC board support Arthur Li (1): mmc: ca_dw_mmc: add DesignWare based DM support for CAxxxx SoCs Faiz Abbas (11): mmc: Add a saved_clock member mmc: Add a deferred_probe() API sdhci: Add sdhci_deferred_probe() API mmc: Merge SD_LEGACY and MMC_LEGACY bus modes mmc: am654_sdhci: Update output tap delay writes mmc: am654_sdhci: Implement workaround for card detect spl: mmc: Fix spl_mmc_get_uboot_raw_sector() implementation arm: K3: sysfw-loader: Add a config_pm_pre_callback() arm: dts: k3-j721e-r5-common-proc-board: Use unique names for dummy clocks configs: am65x_evm: Add CONFIG_SUPPORT_EMMC_BOOT configs: j721e_evm: Add Support for eMMC boot Masahiro Yamada (1): mmc: make self-contained MAINTAINERS | 2 ++ arch/arm/dts/k3-am65-main.dtsi | 12 ++++++++- arch/arm/dts/k3-am654-base-board-u-boot.dtsi | 11 +++++++- arch/arm/dts/k3-j721e-main.dtsi | 15 +++++++++-- arch/arm/dts/k3-j721e-r5-common-proc-board.dts | 4 +-- arch/arm/mach-imx/imx8/image.c | 3 ++- arch/arm/mach-k3/am6_init.c | 33 ++++++++++++++++++++++- arch/arm/mach-k3/include/mach/sysfw-loader.h | 2 +- arch/arm/mach-k3/j721e_init.c | 33 ++++++++++++++++++++++- arch/arm/mach-k3/sysfw-loader.c | 6 ++++- common/spl/spl_mmc.c | 11 +++----- configs/am65x_evm_a53_defconfig | 1 + configs/am65x_evm_r5_defconfig | 1 + configs/cortina_presidio-asic-emmc_defconfig | 33 +++++++++++++++++++++++ configs/j721e_evm_a72_defconfig | 3 +++ configs/j721e_evm_r5_defconfig | 3 +++ drivers/mmc/Kconfig | 11 ++++++++ drivers/mmc/Makefile | 1 + drivers/mmc/am654_sdhci.c | 173 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------- drivers/mmc/ca_dw_mmc.c | 181 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/mmc/fsl_esdhc_imx.c | 1 - drivers/mmc/mmc-uclass.c | 15 +++++++++++ drivers/mmc/mmc.c | 20 +++++++------- drivers/mmc/omap_hsmmc.c | 1 - drivers/mmc/sdhci.c | 15 +++++++++++ drivers/mmc/zynq_sdhci.c | 1 - include/configs/am65x_evm.h | 2 -- include/mmc.h | 20 +++++++++++--- include/sdhci.h | 1 + 29 files changed, 531 insertions(+), 84 deletions(-) create mode 100644 configs/cortina_presidio-asic-emmc_defconfig create mode 100644 drivers/mmc/ca_dw_mmc.c