blob: 3b75929f83f0493ba223931434c240b4e03adce3 [file] [log] [blame]
Valentin Longchampe00f0b42009-02-16 12:47:51 +01001/*
2 * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Valentin Longchampe00f0b42009-02-16 12:47:51 +010013 */
14
Valentin Longchamp45b131a2009-04-21 10:24:56 +020015#include <linux/gpio.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010016#include <linux/init.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020017#include <linux/interrupt.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010018#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020020#include <linux/types.h>
Philippe Rétornaz66c202a2010-05-11 16:57:50 +020021#include <linux/fsl_devices.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010022
Valentin Longchampd67d1072009-11-23 19:16:37 +010023#include <linux/usb/otg.h>
24
Valentin Longchampe00f0b42009-02-16 12:47:51 +010025#include <mach/common.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010026#include <mach/iomux-mx3.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020027#include <mach/hardware.h>
Valentin Longchampd67d1072009-11-23 19:16:37 +010028#include <mach/mxc_ehci.h>
29#include <mach/ulpi.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010030
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +020031#include "devices-imx31.h"
Valentin Longchampe00f0b42009-02-16 12:47:51 +010032#include "devices.h"
33
Valentin Longchamp220bbce2009-04-17 15:20:25 +020034static unsigned int devboard_pins[] = {
35 /* UART1 */
Valentin Longchampe00f0b42009-02-16 12:47:51 +010036 MX31_PIN_CTS2__CTS2, MX31_PIN_RTS2__RTS2,
37 MX31_PIN_TXD2__TXD2, MX31_PIN_RXD2__RXD2,
Valentin Longchamp56c7a452009-04-22 10:55:50 +020038 /* SDHC2 */
39 MX31_PIN_PC_PWRON__SD2_DATA3, MX31_PIN_PC_VS1__SD2_DATA2,
40 MX31_PIN_PC_READY__SD2_DATA1, MX31_PIN_PC_WAIT_B__SD2_DATA0,
41 MX31_PIN_PC_CD2_B__SD2_CLK, MX31_PIN_PC_CD1_B__SD2_CMD,
42 MX31_PIN_ATA_DIOR__GPIO3_28, MX31_PIN_ATA_DIOW__GPIO3_29,
Valentin Longchampd67d1072009-11-23 19:16:37 +010043 /* USB H1 */
44 MX31_PIN_CSPI1_MISO__USBH1_RXDP, MX31_PIN_CSPI1_MOSI__USBH1_RXDM,
45 MX31_PIN_CSPI1_SS0__USBH1_TXDM, MX31_PIN_CSPI1_SS1__USBH1_TXDP,
46 MX31_PIN_CSPI1_SS2__USBH1_RCV, MX31_PIN_CSPI1_SCLK__USBH1_OEB,
47 MX31_PIN_CSPI1_SPI_RDY__USBH1_FS, MX31_PIN_SFS6__USBH1_SUSPEND,
48 MX31_PIN_NFRE_B__GPIO1_11, MX31_PIN_NFALE__GPIO1_12,
Valentin Longchampe335c752010-02-09 18:13:36 +010049 /* SEL */
50 MX31_PIN_DTR_DCE1__GPIO2_8, MX31_PIN_DSR_DCE1__GPIO2_9,
51 MX31_PIN_RI_DCE1__GPIO2_10, MX31_PIN_DCD_DCE1__GPIO2_11,
Valentin Longchampe00f0b42009-02-16 12:47:51 +010052};
53
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +020054static const struct imxuart_platform_data uart_pdata __initconst = {
Valentin Longchamp220bbce2009-04-17 15:20:25 +020055 .flags = IMXUART_HAVE_RTSCTS,
56};
57
Valentin Longchamp45b131a2009-04-21 10:24:56 +020058#define SDHC2_CD IOMUX_TO_GPIO(MX31_PIN_ATA_DIOR)
59#define SDHC2_WP IOMUX_TO_GPIO(MX31_PIN_ATA_DIOW)
60
61static int devboard_sdhc2_get_ro(struct device *dev)
62{
Valentin Longchamp563abb42009-08-11 17:29:21 +020063 return !gpio_get_value(SDHC2_WP);
Valentin Longchamp45b131a2009-04-21 10:24:56 +020064}
65
66static int devboard_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
67 void *data)
68{
Sascha Hauer4f163eb2009-05-06 12:55:50 +020069 int ret;
70
71 ret = gpio_request(SDHC2_CD, "sdhc-detect");
72 if (ret)
73 return ret;
74
75 gpio_direction_input(SDHC2_CD);
76
77 ret = gpio_request(SDHC2_WP, "sdhc-wp");
78 if (ret)
79 goto err_gpio_free;
80 gpio_direction_input(SDHC2_WP);
81
82 ret = request_irq(gpio_to_irq(SDHC2_CD), detect_irq,
Valentin Longchamp45b131a2009-04-21 10:24:56 +020083 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
84 "sdhc2-card-detect", data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +020085 if (ret)
86 goto err_gpio_free_2;
87
88 return 0;
89
90err_gpio_free_2:
91 gpio_free(SDHC2_WP);
92err_gpio_free:
93 gpio_free(SDHC2_CD);
94
95 return ret;
Valentin Longchamp45b131a2009-04-21 10:24:56 +020096}
97
98static void devboard_sdhc2_exit(struct device *dev, void *data)
99{
100 free_irq(gpio_to_irq(SDHC2_CD), data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200101 gpio_free(SDHC2_WP);
102 gpio_free(SDHC2_CD);
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200103}
104
Uwe Kleine-König6a697e32010-11-12 11:10:55 +0100105static const struct imxmmc_platform_data sdhc2_pdata __initconst = {
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200106 .get_ro = devboard_sdhc2_get_ro,
107 .init = devboard_sdhc2_init,
108 .exit = devboard_sdhc2_exit,
109};
110
Valentin Longchampe335c752010-02-09 18:13:36 +0100111#define SEL0 IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1)
112#define SEL1 IOMUX_TO_GPIO(MX31_PIN_DSR_DCE1)
113#define SEL2 IOMUX_TO_GPIO(MX31_PIN_RI_DCE1)
114#define SEL3 IOMUX_TO_GPIO(MX31_PIN_DCD_DCE1)
115
116static void devboard_init_sel_gpios(void)
117{
118 if (!gpio_request(SEL0, "sel0")) {
119 gpio_direction_input(SEL0);
120 gpio_export(SEL0, true);
121 }
122
123 if (!gpio_request(SEL1, "sel1")) {
124 gpio_direction_input(SEL1);
125 gpio_export(SEL1, true);
126 }
127
128 if (!gpio_request(SEL2, "sel2")) {
129 gpio_direction_input(SEL2);
130 gpio_export(SEL2, true);
131 }
132
133 if (!gpio_request(SEL3, "sel3")) {
134 gpio_direction_input(SEL3);
135 gpio_export(SEL3, true);
136 }
137}
Valentin Longchampd67d1072009-11-23 19:16:37 +0100138#define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
139 PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
140
141static int devboard_usbh1_hw_init(struct platform_device *pdev)
142{
143 mxc_iomux_set_gpr(MUX_PGP_USB_SUSPEND, true);
144
145 mxc_iomux_set_pad(MX31_PIN_CSPI1_MISO, USB_PAD_CFG);
146 mxc_iomux_set_pad(MX31_PIN_CSPI1_MOSI, USB_PAD_CFG);
147 mxc_iomux_set_pad(MX31_PIN_CSPI1_SS0, USB_PAD_CFG);
148 mxc_iomux_set_pad(MX31_PIN_CSPI1_SS1, USB_PAD_CFG);
149 mxc_iomux_set_pad(MX31_PIN_CSPI1_SS2, USB_PAD_CFG);
150 mxc_iomux_set_pad(MX31_PIN_CSPI1_SCLK, USB_PAD_CFG);
151 mxc_iomux_set_pad(MX31_PIN_CSPI1_SPI_RDY, USB_PAD_CFG);
152 mxc_iomux_set_pad(MX31_PIN_SFS6, USB_PAD_CFG);
153
154 return 0;
155}
156
157#define USBH1_VBUSEN_B IOMUX_TO_GPIO(MX31_PIN_NFRE_B)
158#define USBH1_MODE IOMUX_TO_GPIO(MX31_PIN_NFALE)
159
160static int devboard_isp1105_init(struct otg_transceiver *otg)
161{
162 int ret = gpio_request(USBH1_MODE, "usbh1-mode");
163 if (ret)
164 return ret;
165 /* single ended */
166 gpio_direction_output(USBH1_MODE, 0);
167
168 ret = gpio_request(USBH1_VBUSEN_B, "usbh1-vbusen");
169 if (ret) {
170 gpio_free(USBH1_MODE);
171 return ret;
172 }
173 gpio_direction_output(USBH1_VBUSEN_B, 1);
174
175 return 0;
176}
177
178
179static int devboard_isp1105_set_vbus(struct otg_transceiver *otg, bool on)
180{
181 if (on)
182 gpio_set_value(USBH1_VBUSEN_B, 0);
183 else
184 gpio_set_value(USBH1_VBUSEN_B, 1);
185
186 return 0;
187}
188
189static struct mxc_usbh_platform_data usbh1_pdata = {
190 .init = devboard_usbh1_hw_init,
191 .portsc = MXC_EHCI_MODE_UTMI | MXC_EHCI_SERIAL,
192 .flags = MXC_EHCI_POWER_PINS_ENABLED | MXC_EHCI_INTERFACE_SINGLE_UNI,
193};
194
195static int __init devboard_usbh1_init(void)
196{
197 struct otg_transceiver *otg;
198
199 otg = kzalloc(sizeof(*otg), GFP_KERNEL);
200 if (!otg)
201 return -ENOMEM;
202
203 otg->label = "ISP1105";
204 otg->init = devboard_isp1105_init;
205 otg->set_vbus = devboard_isp1105_set_vbus;
206
207 usbh1_pdata.otg = otg;
208
Valentin Longchamp4c211862009-12-04 16:50:29 +0100209 return mxc_register_device(&mxc_usbh1, &usbh1_pdata);
Valentin Longchampd67d1072009-11-23 19:16:37 +0100210}
211
Philippe Rétornaz66c202a2010-05-11 16:57:50 +0200212
213static struct fsl_usb2_platform_data usb_pdata = {
214 .operating_mode = FSL_USB2_DR_DEVICE,
215 .phy_mode = FSL_USB2_PHY_ULPI,
216};
217
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100218/*
219 * system init for baseboard usage. Will be called by mx31moboard init.
220 */
221void __init mx31moboard_devboard_init(void)
222{
223 printk(KERN_INFO "Initializing mx31devboard peripherals\n");
Valentin Longchamp220bbce2009-04-17 15:20:25 +0200224
225 mxc_iomux_setup_multiple_pins(devboard_pins, ARRAY_SIZE(devboard_pins),
226 "devboard");
227
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +0200228 imx31_add_imx_uart1(&uart_pdata);
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200229
Uwe Kleine-König6a697e32010-11-12 11:10:55 +0100230 imx31_add_mxc_mmc(1, &sdhc2_pdata);
Valentin Longchampd67d1072009-11-23 19:16:37 +0100231
Valentin Longchampe335c752010-02-09 18:13:36 +0100232 devboard_init_sel_gpios();
233
Philippe Rétornaz66c202a2010-05-11 16:57:50 +0200234 mxc_register_device(&mxc_otg_udc_device, &usb_pdata);
235
Valentin Longchampd67d1072009-11-23 19:16:37 +0100236 devboard_usbh1_init();
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100237}