board: evb-rk3399: enable usb 2.0 host vbus power on board_init

rk3399 using one gpio control signal for two usb 2.0 host port,
it's better to enable the power in board file instead of in usb driver.

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Acked-by: Simon Glass <sjg@chromium.org>
master
Kever Yang 8 years ago committed by Simon Glass
parent 35627683f8
commit 05c6e30c57
  1. 15
      board/rockchip/evb_rk3399/evb-rk3399.c

@ -7,12 +7,13 @@
#include <dm.h>
#include <dm/pinctrl.h>
#include <asm/arch/periph.h>
#include <power/regulator.h>
DECLARE_GLOBAL_DATA_PTR;
int board_init(void)
{
struct udevice *pinctrl;
struct udevice *pinctrl, *regulator;
int ret;
/*
@ -38,6 +39,18 @@ int board_init(void)
goto out;
}
ret = regulator_get_by_platname("vcc5v0_host", &regulator);
if (ret) {
debug("%s vcc5v0_host init fail! ret %d\n", __func__, ret);
goto out;
}
ret = regulator_set_enable(regulator, true);
if (ret) {
debug("%s vcc5v0-host-en set fail!\n", __func__);
goto out;
}
out:
return 0;
}

Loading…
Cancel
Save