mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
SMDK5250: Enable UART and MMC for Exynos5250 Rev 1.0
This patch sets UART3 and MMC channle 0 for Exynos5250 Rev 1.0 Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
fd8ef01452
commit
41222c2ada
2 changed files with 4 additions and 4 deletions
|
@ -131,13 +131,13 @@ int board_mmc_init(bd_t *bis)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
err = exynos_pinmux_config(PERIPH_ID_SDMMC2, PINMUX_FLAG_NONE);
|
err = exynos_pinmux_config(PERIPH_ID_SDMMC0, PINMUX_FLAG_8BIT_MODE);
|
||||||
if (err) {
|
if (err) {
|
||||||
debug("SDMMC2 not configured\n");
|
debug("SDMMC0 not configured\n");
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = s5p_mmc_init(2, 4);
|
err = s5p_mmc_init(0, 8);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
|
|
||||||
/* select serial console configuration */
|
/* select serial console configuration */
|
||||||
#define CONFIG_SERIAL_MULTI
|
#define CONFIG_SERIAL_MULTI
|
||||||
#define CONFIG_SERIAL1 /* use SERIAL 1 */
|
#define CONFIG_SERIAL3 /* use SERIAL 3 */
|
||||||
#define CONFIG_BAUDRATE 115200
|
#define CONFIG_BAUDRATE 115200
|
||||||
#define EXYNOS5_DEFAULT_UART_OFFSET 0x010000
|
#define EXYNOS5_DEFAULT_UART_OFFSET 0x010000
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue