ARM: mx3: dynamically allocate mxc-ehci devices
[deliverable/linux.git] / arch / arm / mach-mx3 / mach-cpuimx35.c
1 /*
2 * Copyright (C) 2010 Eric Benard - eric@eukrea.com
3 * Copyright (C) 2009 Sascha Hauer, Pengutronix
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20 #include <linux/types.h>
21 #include <linux/init.h>
22
23 #include <linux/platform_device.h>
24 #include <linux/mtd/physmap.h>
25 #include <linux/memory.h>
26 #include <linux/gpio.h>
27 #include <linux/interrupt.h>
28 #include <linux/delay.h>
29 #include <linux/i2c.h>
30 #include <linux/i2c/tsc2007.h>
31 #include <linux/usb/otg.h>
32 #include <linux/usb/ulpi.h>
33 #include <linux/i2c-gpio.h>
34
35 #include <asm/mach-types.h>
36 #include <asm/mach/arch.h>
37 #include <asm/mach/time.h>
38 #include <asm/mach/map.h>
39
40 #include <mach/eukrea-baseboards.h>
41 #include <mach/hardware.h>
42 #include <mach/common.h>
43 #include <mach/iomux-mx35.h>
44 #include <mach/mxc_nand.h>
45
46 #include "devices-imx35.h"
47 #include "devices.h"
48
49 static const struct imxuart_platform_data uart_pdata __initconst = {
50 .flags = IMXUART_HAVE_RTSCTS,
51 };
52
53 static const struct imxi2c_platform_data
54 eukrea_cpuimx35_i2c0_data __initconst = {
55 .bitrate = 100000,
56 };
57
58 static struct tsc2007_platform_data tsc2007_info = {
59 .model = 2007,
60 .x_plate_ohms = 180,
61 };
62
63 #define TSC2007_IRQGPIO (2 * 32 + 2)
64 static struct i2c_board_info eukrea_cpuimx35_i2c_devices[] = {
65 {
66 I2C_BOARD_INFO("pcf8563", 0x51),
67 }, {
68 I2C_BOARD_INFO("tsc2007", 0x48),
69 .type = "tsc2007",
70 .platform_data = &tsc2007_info,
71 .irq = gpio_to_irq(TSC2007_IRQGPIO),
72 },
73 };
74
75 static struct platform_device *devices[] __initdata = {
76 &imx_wdt_device0,
77 };
78
79 static struct pad_desc eukrea_cpuimx35_pads[] = {
80 /* UART1 */
81 MX35_PAD_CTS1__UART1_CTS,
82 MX35_PAD_RTS1__UART1_RTS,
83 MX35_PAD_TXD1__UART1_TXD_MUX,
84 MX35_PAD_RXD1__UART1_RXD_MUX,
85 /* FEC */
86 MX35_PAD_FEC_TX_CLK__FEC_TX_CLK,
87 MX35_PAD_FEC_RX_CLK__FEC_RX_CLK,
88 MX35_PAD_FEC_RX_DV__FEC_RX_DV,
89 MX35_PAD_FEC_COL__FEC_COL,
90 MX35_PAD_FEC_RDATA0__FEC_RDATA_0,
91 MX35_PAD_FEC_TDATA0__FEC_TDATA_0,
92 MX35_PAD_FEC_TX_EN__FEC_TX_EN,
93 MX35_PAD_FEC_MDC__FEC_MDC,
94 MX35_PAD_FEC_MDIO__FEC_MDIO,
95 MX35_PAD_FEC_TX_ERR__FEC_TX_ERR,
96 MX35_PAD_FEC_RX_ERR__FEC_RX_ERR,
97 MX35_PAD_FEC_CRS__FEC_CRS,
98 MX35_PAD_FEC_RDATA1__FEC_RDATA_1,
99 MX35_PAD_FEC_TDATA1__FEC_TDATA_1,
100 MX35_PAD_FEC_RDATA2__FEC_RDATA_2,
101 MX35_PAD_FEC_TDATA2__FEC_TDATA_2,
102 MX35_PAD_FEC_RDATA3__FEC_RDATA_3,
103 MX35_PAD_FEC_TDATA3__FEC_TDATA_3,
104 /* I2C1 */
105 MX35_PAD_I2C1_CLK__I2C1_SCL,
106 MX35_PAD_I2C1_DAT__I2C1_SDA,
107 /* TSC2007 IRQ */
108 MX35_PAD_ATA_DA2__GPIO3_2,
109 };
110
111 static const struct mxc_nand_platform_data
112 eukrea_cpuimx35_nand_board_info __initconst = {
113 .width = 1,
114 .hw_ecc = 1,
115 .flash_bbt = 1,
116 };
117
118 static const struct mxc_usbh_platform_data otg_pdata __initconst = {
119 .portsc = MXC_EHCI_MODE_UTMI,
120 .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
121 };
122
123 static const struct mxc_usbh_platform_data usbh1_pdata __initconst = {
124 .portsc = MXC_EHCI_MODE_SERIAL,
125 .flags = MXC_EHCI_INTERFACE_SINGLE_UNI | MXC_EHCI_INTERNAL_PHY |
126 MXC_EHCI_IPPUE_DOWN,
127 };
128
129 static const struct fsl_usb2_platform_data otg_device_pdata __initconst = {
130 .operating_mode = FSL_USB2_DR_DEVICE,
131 .phy_mode = FSL_USB2_PHY_UTMI,
132 .workaround = FLS_USB2_WORKAROUND_ENGCM09152,
133 };
134
135 static int otg_mode_host;
136
137 static int __init eukrea_cpuimx35_otg_mode(char *options)
138 {
139 if (!strcmp(options, "host"))
140 otg_mode_host = 1;
141 else if (!strcmp(options, "device"))
142 otg_mode_host = 0;
143 else
144 pr_info("otg_mode neither \"host\" nor \"device\". "
145 "Defaulting to device\n");
146 return 0;
147 }
148 __setup("otg_mode=", eukrea_cpuimx35_otg_mode);
149
150 /*
151 * Board specific initialization.
152 */
153 static void __init mxc_board_init(void)
154 {
155 mxc_iomux_v3_setup_multiple_pads(eukrea_cpuimx35_pads,
156 ARRAY_SIZE(eukrea_cpuimx35_pads));
157
158 imx35_add_fec(NULL);
159 platform_add_devices(devices, ARRAY_SIZE(devices));
160
161 imx35_add_imx_uart0(&uart_pdata);
162 imx35_add_mxc_nand(&eukrea_cpuimx35_nand_board_info);
163
164 i2c_register_board_info(0, eukrea_cpuimx35_i2c_devices,
165 ARRAY_SIZE(eukrea_cpuimx35_i2c_devices));
166 imx35_add_imx_i2c0(&eukrea_cpuimx35_i2c0_data);
167
168 if (otg_mode_host)
169 imx35_add_mxc_ehci_otg(&otg_pdata);
170 else
171 imx35_add_fsl_usb2_udc(&otg_device_pdata);
172
173 imx35_add_mxc_ehci_hs(&usbh1_pdata);
174
175 #ifdef CONFIG_MACH_EUKREA_MBIMXSD35_BASEBOARD
176 eukrea_mbimxsd35_baseboard_init();
177 #endif
178 }
179
180 static void __init eukrea_cpuimx35_timer_init(void)
181 {
182 mx35_clocks_init();
183 }
184
185 struct sys_timer eukrea_cpuimx35_timer = {
186 .init = eukrea_cpuimx35_timer_init,
187 };
188
189 MACHINE_START(EUKREA_CPUIMX35, "Eukrea CPUIMX35")
190 /* Maintainer: Eukrea Electromatique */
191 .boot_params = MX3x_PHYS_OFFSET + 0x100,
192 .map_io = mx35_map_io,
193 .init_irq = mx35_init_irq,
194 .init_machine = mxc_board_init,
195 .timer = &eukrea_cpuimx35_timer,
196 MACHINE_END
This page took 0.035948 seconds and 5 git commands to generate.