Commit 79f7ae7c authored by Seungwon Jeon's avatar Seungwon Jeon Committed by Chris Ball

mmc: clarify DDR timing mode between SD-UHS and eMMC

This change distinguishes DDR timing mode of current
mixed usage to clarify device type.
Signed-off-by: default avatarSeungwon Jeon <tgih.jun@samsung.com>
Acked-by: default avatarJaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
Signed-off-by: default avatarChris Ball <chris@printf.net>
parent a798c10f
...@@ -135,6 +135,9 @@ static int mmc_ios_show(struct seq_file *s, void *data) ...@@ -135,6 +135,9 @@ static int mmc_ios_show(struct seq_file *s, void *data)
case MMC_TIMING_UHS_DDR50: case MMC_TIMING_UHS_DDR50:
str = "sd uhs DDR50"; str = "sd uhs DDR50";
break; break;
case MMC_TIMING_MMC_DDR52:
str = "mmc DDR52";
break;
case MMC_TIMING_MMC_HS200: case MMC_TIMING_MMC_HS200:
str = "mmc high-speed SDR200"; str = "mmc high-speed SDR200";
break; break;
......
...@@ -1264,7 +1264,7 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr, ...@@ -1264,7 +1264,7 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr,
goto err; goto err;
} }
mmc_card_set_ddr_mode(card); mmc_card_set_ddr_mode(card);
mmc_set_timing(card->host, MMC_TIMING_UHS_DDR50); mmc_set_timing(card->host, MMC_TIMING_MMC_DDR52);
mmc_set_bus_width(card->host, bus_width); mmc_set_bus_width(card->host, bus_width);
} }
} }
......
...@@ -58,7 +58,8 @@ struct mmc_ios { ...@@ -58,7 +58,8 @@ struct mmc_ios {
#define MMC_TIMING_UHS_SDR50 5 #define MMC_TIMING_UHS_SDR50 5
#define MMC_TIMING_UHS_SDR104 6 #define MMC_TIMING_UHS_SDR104 6
#define MMC_TIMING_UHS_DDR50 7 #define MMC_TIMING_UHS_DDR50 7
#define MMC_TIMING_MMC_HS200 8 #define MMC_TIMING_MMC_DDR52 8
#define MMC_TIMING_MMC_HS200 9
#define MMC_SDR_MODE 0 #define MMC_SDR_MODE 0
#define MMC_1_2V_DDR_MODE 1 #define MMC_1_2V_DDR_MODE 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment