mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-03 19:51:53 +02:00
rk3288-board: remove pinctrl call for debug uart
This failed and caused a boot failure on c201, and afaik the pins should be setup by the new pinctrl driver. Signed-off-by: Urja Rannikko <urjaman@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
parent
63402831e0
commit
59ef021b99
@ -321,7 +321,6 @@ int board_early_init_f(void)
|
|||||||
{
|
{
|
||||||
const uintptr_t GRF_SOC_CON0 = 0xff770244;
|
const uintptr_t GRF_SOC_CON0 = 0xff770244;
|
||||||
const uintptr_t GRF_SOC_CON2 = 0xff77024c;
|
const uintptr_t GRF_SOC_CON2 = 0xff77024c;
|
||||||
struct udevice *pinctrl;
|
|
||||||
struct udevice *dev;
|
struct udevice *dev;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
@ -335,18 +334,7 @@ int board_early_init_f(void)
|
|||||||
debug("CLK init failed: %d\n", ret);
|
debug("CLK init failed: %d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
|
|
||||||
if (ret) {
|
|
||||||
debug("%s: Cannot find pinctrl device\n", __func__);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Enable debug UART */
|
|
||||||
ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_UART_DBG);
|
|
||||||
if (ret) {
|
|
||||||
debug("%s: Failed to set up console UART\n", __func__);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
rk_setreg(GRF_SOC_CON2, 1 << 0);
|
rk_setreg(GRF_SOC_CON2, 1 << 0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user