From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaehoon Chung Date: Mon, 19 Feb 2018 23:47:28 +0900 Subject: [U-Boot] [GIT PULL] Please pull u-boot-mmc master In-Reply-To: <7af177d8-27d2-d43c-e583-d62ef0b2747f@samsung.com> References: <7af177d8-27d2-d43c-e583-d62ef0b2747f@samsung.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de Dear Tom, On 2018년 02월 19일 20:27, Jaehoon Chung wrote: > Dear Tom, > > Could you pull these patches to u-boot/master? > If there is a problem, let me know, plz. Discard this PR. I found the Build error from travis-ci. After reverting some patches, will resend the PR. Best Regards, Jaehoon Chung > > The following changes since commit 02b0895c215e252cff50d9edf53a972d2bbbfd30: > > Merge git://git.denx.de/u-boot-sh (2018-02-17 16:06:59 -0500) > > are available in the Git repository at: > > git://git.denx.de/u-boot-mmc.git master > > for you to fetch changes up to dfca07d60e8d1977fff5531291d0a39b8384d0a9: > > mmc: uniphier-sd: Add Renesas SDR104/HS200 tuning support (2018-02-19 20:19:20 +0900) > > ---------------------------------------------------------------- > Alex Kiernan (1): > mmc: Fix uninitialised priv member > > Jean-Jacques Hiblot (15): > mmc: omap_hsmmc: cleanup clock configuration > mmc: omap_hsmmc: set MMC mode in the UHSMS bit field > mmc: omap_hsmmc: Add tuning support > mmc: omap_hsmmc: Workaround for errata id i802 > mmc: omap_hsmmc: Reduce the max timeout for reset controller fsm > mmc: omap_hsmmc: allow the simple HS modes to use the default pinctrl > mmc: omap_hsmmc: update mmc->clock with the actual bus speed > mmc: omap_hsmmc: implement send_init_stream callback > mmc: omap_hsmmc: add signal voltage selection support > ARM: dts: dra7: Add supported MMC/SD modes in MMC dt nodes > dts: am57xx-beagle-x15: disable UHS and HS200 support > dts: am57xx-idk: disable HS200 support > configs: dra7xx_evm/dra7xx_hs_evm: Enable MMC HS200 and SD UHS support > mmc: Fix bug in sd_set_card_speed() > mmc: fix bug in mmc_startup_v4() > > Kishon Vijay Abraham I (11): > mmc: omap_hsmmc: cleanup omap_hsmmc_set_ios > mmc: omap_hsmmc: add support to set default io voltage > mmc: omap_hsmmc: Enable DDR mode support > mmc: omap_hsmmc: use mmc_of_parse to populate mmc_config > ARM: OMAP5/DRA7: Enable iodelay recalibration to be done from uboot > mmc: omap_hsmmc: Add support to set IODELAY values > mmc: omap_hsmmc: Add support to get pinctrl values and max frequency for different hw revisions > mmc: omap_hsmmc: allow mmc clock to be gated > ARM: OMAP5: set mmc clock frequency to 192MHz > ARM: dts: DRA7: use new dra7-specific compatible string > ARM: DRA7x/AM57x: Add MMC/SD fixups for rev1.0 and rev 1.1 > > Marek Vasut (10): > mmc: uniphier-sd: Add compatible strings for RCar Gen2 > mmc: uniphier-sd: Use mmc_of_parse() > mmc: uniphier-sd: Add Renesas RCar quirks > mmc: uniphier-sd: Handle Renesas div-by-1 > mmc: uniphier-sd: Handle DMA completion flag differences > mmc: uniphier-sd: Handle bus width 0 > mmc: uniphier-sd: Always check controller version > mmc: uniphier-sd: Properly handle pin voltage configuration > mmc: uniphier-sd: Export registers and IO accessors > mmc: uniphier-sd: Add Renesas SDR104/HS200 tuning support > > Masahiro Yamada (1): > mmc: use pr_* log functions > > arch/arm/dts/am57xx-beagle-x15.dts | 6 + > arch/arm/dts/am57xx-idk-common.dtsi | 2 + > arch/arm/dts/dra7.dtsi | 22 +- > arch/arm/include/asm/arch-omap5/clock.h | 2 +- > arch/arm/include/asm/arch-omap5/dra7xx_iodelay.h | 3 + > arch/arm/include/asm/arch-omap5/sys_proto.h | 7 + > arch/arm/include/asm/omap_mmc.h | 59 +- > arch/arm/mach-omap2/omap5/dra7xx_iodelay.c | 30 + > arch/arm/mach-omap2/omap5/hw_data.c | 10 +- > board/ti/am57xx/board.c | 30 + > board/ti/dra7xx/evm.c | 29 + > configs/dra7xx_evm_defconfig | 3 + > configs/dra7xx_hs_evm_defconfig | 3 + > drivers/mmc/Kconfig | 9 + > drivers/mmc/Makefile | 1 + > drivers/mmc/mmc.c | 71 +- > drivers/mmc/omap_hsmmc.c | 954 +++++++++++++++++++++-- > drivers/mmc/uniphier-sd-rcar.c | 288 +++++++ > drivers/mmc/uniphier-sd.c | 274 +++---- > drivers/mmc/uniphier-sd.h | 155 ++++ > include/configs/am57xx_evm.h | 2 - > include/configs/dra7xx_evm.h | 2 - > include/mmc.h | 1 + > 23 files changed, 1697 insertions(+), 266 deletions(-) > create mode 100644 drivers/mmc/uniphier-sd-rcar.c > create mode 100644 drivers/mmc/uniphier-sd.h >