mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 22:52:18 +00:00
SMDK5250: Initialise I2C using FDT
This patch initialises I2C using FDT. Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com> Acked-by: Simon Glass <sjg@chromium.org> Acked-by: Heiko Schocher <hs@denx.de> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
a9d2ae7014
commit
a0f816b6bb
1 changed files with 1 additions and 19 deletions
|
@ -243,24 +243,6 @@ static int board_uart_init(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_SYS_I2C_INIT_BOARD
|
|
||||||
static int board_i2c_init(void)
|
|
||||||
{
|
|
||||||
int i, err;
|
|
||||||
|
|
||||||
for (i = 0; i < CONFIG_MAX_I2C_NUM; i++) {
|
|
||||||
err = exynos_pinmux_config((PERIPH_ID_I2C0 + i),
|
|
||||||
PINMUX_FLAG_NONE);
|
|
||||||
if (err) {
|
|
||||||
debug("I2C%d not configured\n", (PERIPH_ID_I2C0 + i));
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_BOARD_EARLY_INIT_F
|
#ifdef CONFIG_BOARD_EARLY_INIT_F
|
||||||
int board_early_init_f(void)
|
int board_early_init_f(void)
|
||||||
{
|
{
|
||||||
|
@ -271,7 +253,7 @@ int board_early_init_f(void)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
#ifdef CONFIG_SYS_I2C_INIT_BOARD
|
#ifdef CONFIG_SYS_I2C_INIT_BOARD
|
||||||
err = board_i2c_init();
|
board_i2c_init(gd->fdt_blob);
|
||||||
#endif
|
#endif
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue