All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] DA830: Add pinmux for USB0_DRVVBUS
@ 2009-11-12 15:39 Ajay Kumar Gupta
  2009-11-12 15:39 ` [U-Boot] [PATCH 2/3] DA8xx: Add MUSB host support Ajay Kumar Gupta
  2009-11-12 15:47 ` [U-Boot] [PATCH 1/3] DA830: Add pinmux for USB0_DRVVBUS Tom
  0 siblings, 2 replies; 12+ messages in thread
From: Ajay Kumar Gupta @ 2009-11-12 15:39 UTC (permalink / raw)
  To: u-boot

USB0_DRVVBUS pinmux configuration is required for USB functinality
in uboot.

Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
Signed-off-by: Swaminathan S <swami.iyer@ti.com>
---
This patch set is created against Nick Thompson's latest patch set
(v5) on DA8xx support and another patch from him on Davinci pinmux.
[Davinci: add a pin multiplexer configuration API]

 board/davinci/da830evm/da830evm.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/board/davinci/da830evm/da830evm.c b/board/davinci/da830evm/da830evm.c
index bb8cc3c..7cf6013 100644
--- a/board/davinci/da830evm/da830evm.c
+++ b/board/davinci/da830evm/da830evm.c
@@ -65,6 +65,11 @@ const struct pinmux_config i2c_pins[] = {
 	{ pinmux[9], 2, 4 }
 };
 
+/* USB0_DRVVBUS pin muxer settings */
+const struct pinmux_config usb_pins[] = {
+	{ pinmux[9], 1, 1 }
+};
+
 int board_init(void)
 {
 #ifndef CONFIG_USE_IRQ
@@ -118,6 +123,9 @@ int board_init(void)
 	if (davinci_configure_pin_mux(i2c_pins, ARRAY_SIZE(i2c_pins)) != 0)
 		return 1;
 
+	if (davinci_configure_pin_mux(usb_pins, ARRAY_SIZE(usb_pins)) != 0)
+		return 1;
+
 	/* enable the console UART */
 	writel((DAVINCI_UART_PWREMU_MGMT_FREE | DAVINCI_UART_PWREMU_MGMT_URRST |
 		DAVINCI_UART_PWREMU_MGMT_UTRST),
-- 
1.6.2.4

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

end of thread, other threads:[~2009-11-13  4:19 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-12 15:39 [U-Boot] [PATCH 1/3] DA830: Add pinmux for USB0_DRVVBUS Ajay Kumar Gupta
2009-11-12 15:39 ` [U-Boot] [PATCH 2/3] DA8xx: Add MUSB host support Ajay Kumar Gupta
2009-11-12 15:39   ` [U-Boot] [PATCH 3/3] DA830: Add usb config Ajay Kumar Gupta
2009-11-12 16:55     ` Nick Thompson
2009-11-13  3:25       ` Gupta, Ajay Kumar
2009-11-12 16:26   ` [U-Boot] [PATCH 2/3] DA8xx: Add MUSB host support Nick Thompson
2009-11-12 16:41     ` Paulraj, Sandeep
2009-11-12 15:47 ` [U-Boot] [PATCH 1/3] DA830: Add pinmux for USB0_DRVVBUS Tom
2009-11-12 15:58   ` Paulraj, Sandeep
2009-11-12 16:10     ` Tom
2009-11-12 16:29       ` Paulraj, Sandeep
2009-11-13  4:19         ` Gupta, Ajay Kumar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.