aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx3/mx31moboard.c
diff options
context:
space:
mode:
authorValentin Longchamp <valentin.longchamp@epfl.ch>2009-08-10 12:33:11 -0400
committerSascha Hauer <s.hauer@pengutronix.de>2009-08-14 06:40:49 -0400
commitb23f1534bb0e0dc97e46fc52bf9bde0c2226763c (patch)
treed455f4683b355544974a60ef5fb5d8247e6588c5 /arch/arm/mach-mx3/mx31moboard.c
parent89829d5fe31dc42825f2560c3c2c641709ed594e (diff)
mx31moboard: added usb xcvr reset for mx31moboard
Signed-off-by: Valentin Longchamp <valentin.longchamp@epfl.ch> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx3/mx31moboard.c')
-rw-r--r--arch/arm/mach-mx3/mx31moboard.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/mach-mx3/mx31moboard.c b/arch/arm/mach-mx3/mx31moboard.c
index b86b8a757c99..53ce60bdc823 100644
--- a/arch/arm/mach-mx3/mx31moboard.c
+++ b/arch/arm/mach-mx3/mx31moboard.c
@@ -16,6 +16,7 @@
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */ 17 */
18 18
19#include <linux/delay.h>
19#include <linux/gpio.h> 20#include <linux/gpio.h>
20#include <linux/init.h> 21#include <linux/init.h>
21#include <linux/interrupt.h> 22#include <linux/interrupt.h>
@@ -56,6 +57,8 @@ static unsigned int moboard_pins[] = {
56 MX31_PIN_SD1_DATA1__SD1_DATA1, MX31_PIN_SD1_DATA0__SD1_DATA0, 57 MX31_PIN_SD1_DATA1__SD1_DATA1, MX31_PIN_SD1_DATA0__SD1_DATA0,
57 MX31_PIN_SD1_CLK__SD1_CLK, MX31_PIN_SD1_CMD__SD1_CMD, 58 MX31_PIN_SD1_CLK__SD1_CLK, MX31_PIN_SD1_CMD__SD1_CMD,
58 MX31_PIN_ATA_CS0__GPIO3_26, MX31_PIN_ATA_CS1__GPIO3_27, 59 MX31_PIN_ATA_CS0__GPIO3_26, MX31_PIN_ATA_CS1__GPIO3_27,
60 /* USB reset */
61 MX31_PIN_GPIO1_0__GPIO1_0,
59}; 62};
60 63
61static struct physmap_flash_data mx31moboard_flash_data = { 64static struct physmap_flash_data mx31moboard_flash_data = {
@@ -143,6 +146,19 @@ static struct imxmmc_platform_data sdhc1_pdata = {
143 .exit = moboard_sdhc1_exit, 146 .exit = moboard_sdhc1_exit,
144}; 147};
145 148
149/*
150 * this pin is dedicated for all mx31moboard systems, so we do it here
151 */
152#define USB_RESET_B IOMUX_TO_GPIO(MX31_PIN_GPIO1_0)
153
154static void usb_xcvr_reset(void)
155{
156 gpio_request(USB_RESET_B, "usb-reset");
157 gpio_direction_output(USB_RESET_B, 0);
158 mdelay(1);
159 gpio_set_value(USB_RESET_B, 1);
160}
161
146static struct platform_device *devices[] __initdata = { 162static struct platform_device *devices[] __initdata = {
147 &mx31moboard_flash, 163 &mx31moboard_flash,
148}; 164};
@@ -168,6 +184,8 @@ static void __init mxc_board_init(void)
168 184
169 mxc_register_device(&mxcsdhc_device0, &sdhc1_pdata); 185 mxc_register_device(&mxcsdhc_device0, &sdhc1_pdata);
170 186
187 usb_xcvr_reset();
188
171 switch (mx31moboard_baseboard) { 189 switch (mx31moboard_baseboard) {
172 case MX31NOBOARD: 190 case MX31NOBOARD:
173 break; 191 break;