u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v4] SMDK5250: Enable VBus for USB 2.0 controller
@ 2013-01-08  9:37 Vivek Gautam
  2013-01-08 12:21 ` Minkyu Kang
  0 siblings, 1 reply; 2+ messages in thread
From: Vivek Gautam @ 2013-01-08  9:37 UTC (permalink / raw)
  To: u-boot

This patch enables Vbus required for USB 2.0 controller.

Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com>
---

Changes from v3:
	- Rebased on top of u-boot-samsung/master.

Changes from v2:
	- Rebased on top of u-boot-usb/next
	- Enclosed the function definition for board_usb_vbus_init()
	  inside "CONFIG_USB_EHCI_EXYNOS"

Changes from v1:
	- Using the old school method of setting up gpio instead
	  of using the pinmux method, since the required gpio line
	  here is board specific.

 board/samsung/smdk5250/smdk5250.c |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/board/samsung/smdk5250/smdk5250.c b/board/samsung/smdk5250/smdk5250.c
index 73c3ec0..d80f75d 100644
--- a/board/samsung/smdk5250/smdk5250.c
+++ b/board/samsung/smdk5250/smdk5250.c
@@ -35,12 +35,31 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
+#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
+
 int board_init(void)
 {
 	gd->bd->bi_boot_params = (PHYS_SDRAM_1 + 0x100UL);
 #ifdef CONFIG_EXYNOS_SPI
 	spi_init();
 #endif
+#ifdef CONFIG_USB_EHCI_EXYNOS
+	board_usb_vbus_init();
+#endif
 	return 0;
 }
 
-- 
1.7.6.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH v4] SMDK5250: Enable VBus for USB 2.0 controller
  2013-01-08  9:37 [U-Boot] [PATCH v4] SMDK5250: Enable VBus for USB 2.0 controller Vivek Gautam
@ 2013-01-08 12:21 ` Minkyu Kang
  0 siblings, 0 replies; 2+ messages in thread
From: Minkyu Kang @ 2013-01-08 12:21 UTC (permalink / raw)
  To: u-boot

On 08/01/13 18:37, Vivek Gautam wrote:
> This patch enables Vbus required for USB 2.0 controller.
> 
> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
> Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com>
> ---
> 
> Changes from v3:
> 	- Rebased on top of u-boot-samsung/master.
> 
> Changes from v2:
> 	- Rebased on top of u-boot-usb/next
> 	- Enclosed the function definition for board_usb_vbus_init()
> 	  inside "CONFIG_USB_EHCI_EXYNOS"
> 
> Changes from v1:
> 	- Using the old school method of setting up gpio instead
> 	  of using the pinmux method, since the required gpio line
> 	  here is board specific.
> 
>  board/samsung/smdk5250/smdk5250.c |   19 +++++++++++++++++++
>  1 files changed, 19 insertions(+), 0 deletions(-)
> 

applied to u-boot-samsung.

Thanks,
Minkyu Kang.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-01-08 12:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-08  9:37 [U-Boot] [PATCH v4] SMDK5250: Enable VBus for USB 2.0 controller Vivek Gautam
2013-01-08 12:21 ` Minkyu Kang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).