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>
This commit is contained in:
Kever Yang 2016-08-24 12:02:22 +08:00 committed by Simon Glass
parent 35627683f8
commit 05c6e30c57
1 changed files with 14 additions and 1 deletions

View File

@ -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;
}