summaryrefslogtreecommitdiffstats
path: root/board/samsung/smdk5250
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2013-09-14 14:02:52 +0530
committerMarek Vasut <marex@denx.de>2013-10-20 23:42:38 +0200
commit4a271cb1b4ffdf33073c0dc8ee1e185c037275f4 (patch)
tree9e4cb7ba9e1464c094e65236b0a0e2920d89417e /board/samsung/smdk5250
parent8f999f0cbcd4802095d7f812871661a3e7f479d7 (diff)
downloadblackbird-obmc-uboot-4a271cb1b4ffdf33073c0dc8ee1e185c037275f4.tar.gz
blackbird-obmc-uboot-4a271cb1b4ffdf33073c0dc8ee1e185c037275f4.zip
exynos: usb: Switch USB VBUS GPIOs to be device tree configured
Some Exynos boards, such as the SMDK5250, control USB port power through a GPIO pin. For now this had been hardcoded in the exynos5-dt board file, but not all boards use the same pin, requiring local changes to support different boards. This patch moves the GPIO initialization into the USB host controller drivers which they belong to, and uses the samsung,vbus-gpio parameter in the device tree to configure it. Signed-off-by: Julius Werner <jwerner@chromium.org> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com> Cc: Simon Glass <sjg@chromium.org> Cc: Minkyu Kang <mk7.kang@samsung.com> Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'board/samsung/smdk5250')
-rw-r--r--board/samsung/smdk5250/exynos5-dt.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/board/samsung/smdk5250/exynos5-dt.c b/board/samsung/smdk5250/exynos5-dt.c
index bb4a82f449..6bcc883b10 100644
--- a/board/samsung/smdk5250/exynos5-dt.c
+++ b/board/samsung/smdk5250/exynos5-dt.c
@@ -61,22 +61,6 @@ struct local_info {
static struct local_info local;
-#ifdef CONFIG_USB_EHCI_EXYNOS
-int board_usb_vbus_init(void)
-{
- struct exynos5_gpio_part1 *gpio1 = (struct exynos5_gpio_part1 *)
- samsung_get_base_gpio_part1();
-
- /* Enable VBUS power switch */
- s5p_gpio_direction_output(&gpio1->x2, 6, 1);
-
- /* VBUS turn ON time */
- mdelay(3);
-
- return 0;
-}
-#endif
-
#ifdef CONFIG_SOUND_MAX98095
static void board_enable_audio_codec(void)
{
@@ -122,9 +106,6 @@ int board_init(void)
if (board_init_cros_ec_devices(gd->fdt_blob))
return -1;
-#ifdef CONFIG_USB_EHCI_EXYNOS
- board_usb_vbus_init();
-#endif
#ifdef CONFIG_SOUND_MAX98095
board_enable_audio_codec();
#endif
OpenPOWER on IntegriCloud