From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaehoon Chung Date: Mon, 09 Apr 2012 16:57:29 +0900 Subject: [U-Boot] [PATCH v3 0/3] mmc: support sdhci instead of s5p_mmc Message-ID: <4F829669.4020007@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This patchset is supported the sdhci controller for Samsung-SoC. In mmc driver, already implemented the generic sdhci. There is no reason that didn't use sdhci.c. So, use the sdhci instead of s5p_mmc. Changelog-v3: - Add the quirks for broken R1b response. - Add the timeout to prevent infinite loop. Changelog-v2: - removed the s5p_mmc.c - based-on u-boot-samsung repository. Jaehoon Chung (3): mmc: sdhci: add the quirk for broken R1b response mmc: use sdhci.c intead of s5p_mmc.c ARM: SAMSUNG: support sdhci controller arch/arm/include/asm/arch-exynos/mmc.h | 93 +++--- arch/arm/include/asm/arch-s5pc1xx/mmc.h | 93 +++--- drivers/mmc/Makefile | 2 +- drivers/mmc/s5p_mmc.c | 490 ------------------------------- drivers/mmc/s5p_sdhci.c | 98 ++++++ drivers/mmc/sdhci.c | 24 ++ include/configs/origen.h | 3 +- include/configs/s5p_goni.h | 3 +- include/configs/s5pc210_universal.h | 3 +- include/configs/smdk5250.h | 3 +- include/configs/smdkv310.h | 3 +- include/configs/trats.h | 3 +- include/sdhci.h | 7 + 13 files changed, 236 insertions(+), 589 deletions(-) delete mode 100644 drivers/mmc/s5p_mmc.c create mode 100644 drivers/mmc/s5p_sdhci.c