Skip to content
Snippets Groups Projects
Commit 9f670540 authored by Stefano Babic's avatar Stefano Babic Committed by Tom Rini
Browse files

OMAP3: mt_ventoux: power on USB at startup


Updated revision of the board uses GPIOs to activate
the USB ports.

Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
parent 000820b5
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,8 @@ DECLARE_GLOBAL_DATA_PTR; ...@@ -45,6 +45,8 @@ DECLARE_GLOBAL_DATA_PTR;
#define BUZZER 140 #define BUZZER 140
#define SPEAKER 141 #define SPEAKER 141
#define USB1_PWR 127
#define USB2_PWR 149
#ifndef CONFIG_FPGA #ifndef CONFIG_FPGA
#error "The Teejet mt_ventoux must have CONFIG_FPGA enabled" #error "The Teejet mt_ventoux must have CONFIG_FPGA enabled"
...@@ -247,6 +249,12 @@ int board_init(void) ...@@ -247,6 +249,12 @@ int board_init(void)
gpio_direction_output(BUZZER, 0); gpio_direction_output(BUZZER, 0);
gpio_direction_output(SPEAKER, 0); gpio_direction_output(SPEAKER, 0);
/* Activate USB power */
gpio_request(USB1_PWR, "USB1_PWR");
gpio_request(USB2_PWR, "USB2_PWR");
gpio_direction_output(USB1_PWR, 1);
gpio_direction_output(USB2_PWR, 1);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment