Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[pandora-kernel.git] / arch / arm / mach-imx / mach-mx27_3ds.c
1 /*
2  * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved.
3  *
4  * Author: Fabio Estevam <fabio.estevam@freescale.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 /*
18  * This machine is known as:
19  *  - i.MX27 3-Stack Development System
20  *  - i.MX27 Platform Development Kit (i.MX27 PDK)
21  */
22
23 #include <linux/platform_device.h>
24 #include <linux/gpio.h>
25 #include <linux/irq.h>
26 #include <linux/usb/otg.h>
27 #include <linux/usb/ulpi.h>
28 #include <linux/delay.h>
29 #include <linux/mfd/mc13783.h>
30 #include <linux/spi/spi.h>
31 #include <linux/regulator/machine.h>
32
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 #include <asm/mach/time.h>
36 #include <mach/hardware.h>
37 #include <mach/common.h>
38 #include <mach/iomux-mx27.h>
39 #include <mach/ulpi.h>
40
41 #include "devices-imx27.h"
42
43 #define SD1_EN_GPIO (GPIO_PORTB + 25)
44 #define OTG_PHY_RESET_GPIO (GPIO_PORTB + 23)
45 #define SPI2_SS0 (GPIO_PORTD + 21)
46
47 static const int mx27pdk_pins[] __initconst = {
48         /* UART1 */
49         PE12_PF_UART1_TXD,
50         PE13_PF_UART1_RXD,
51         PE14_PF_UART1_CTS,
52         PE15_PF_UART1_RTS,
53         /* FEC */
54         PD0_AIN_FEC_TXD0,
55         PD1_AIN_FEC_TXD1,
56         PD2_AIN_FEC_TXD2,
57         PD3_AIN_FEC_TXD3,
58         PD4_AOUT_FEC_RX_ER,
59         PD5_AOUT_FEC_RXD1,
60         PD6_AOUT_FEC_RXD2,
61         PD7_AOUT_FEC_RXD3,
62         PD8_AF_FEC_MDIO,
63         PD9_AIN_FEC_MDC,
64         PD10_AOUT_FEC_CRS,
65         PD11_AOUT_FEC_TX_CLK,
66         PD12_AOUT_FEC_RXD0,
67         PD13_AOUT_FEC_RX_DV,
68         PD14_AOUT_FEC_RX_CLK,
69         PD15_AOUT_FEC_COL,
70         PD16_AIN_FEC_TX_ER,
71         PF23_AIN_FEC_TX_EN,
72         /* SDHC1 */
73         PE18_PF_SD1_D0,
74         PE19_PF_SD1_D1,
75         PE20_PF_SD1_D2,
76         PE21_PF_SD1_D3,
77         PE22_PF_SD1_CMD,
78         PE23_PF_SD1_CLK,
79         SD1_EN_GPIO | GPIO_GPIO | GPIO_OUT,
80         /* OTG */
81         OTG_PHY_RESET_GPIO | GPIO_GPIO | GPIO_OUT,
82         PC7_PF_USBOTG_DATA5,
83         PC8_PF_USBOTG_DATA6,
84         PC9_PF_USBOTG_DATA0,
85         PC10_PF_USBOTG_DATA2,
86         PC11_PF_USBOTG_DATA1,
87         PC12_PF_USBOTG_DATA4,
88         PC13_PF_USBOTG_DATA3,
89         PE0_PF_USBOTG_NXT,
90         PE1_PF_USBOTG_STP,
91         PE2_PF_USBOTG_DIR,
92         PE24_PF_USBOTG_CLK,
93         PE25_PF_USBOTG_DATA7,
94         /* CSPI2 */
95         PD22_PF_CSPI2_SCLK,
96         PD23_PF_CSPI2_MISO,
97         PD24_PF_CSPI2_MOSI,
98 };
99
100 static const struct imxuart_platform_data uart_pdata __initconst = {
101         .flags = IMXUART_HAVE_RTSCTS,
102 };
103
104 /*
105  * Matrix keyboard
106  */
107
108 static const uint32_t mx27_3ds_keymap[] = {
109         KEY(0, 0, KEY_UP),
110         KEY(0, 1, KEY_DOWN),
111         KEY(1, 0, KEY_RIGHT),
112         KEY(1, 1, KEY_LEFT),
113         KEY(1, 2, KEY_ENTER),
114         KEY(2, 0, KEY_F6),
115         KEY(2, 1, KEY_F8),
116         KEY(2, 2, KEY_F9),
117         KEY(2, 3, KEY_F10),
118 };
119
120 static const struct matrix_keymap_data mx27_3ds_keymap_data __initconst = {
121         .keymap         = mx27_3ds_keymap,
122         .keymap_size    = ARRAY_SIZE(mx27_3ds_keymap),
123 };
124
125 static int mx27_3ds_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
126                                 void *data)
127 {
128         return request_irq(IRQ_GPIOB(26), detect_irq, IRQF_TRIGGER_FALLING |
129                         IRQF_TRIGGER_RISING, "sdhc1-card-detect", data);
130 }
131
132 static void mx27_3ds_sdhc1_exit(struct device *dev, void *data)
133 {
134         free_irq(IRQ_GPIOB(26), data);
135 }
136
137 static const struct imxmmc_platform_data sdhc1_pdata __initconst = {
138         .init = mx27_3ds_sdhc1_init,
139         .exit = mx27_3ds_sdhc1_exit,
140 };
141
142 static void mx27_3ds_sdhc1_enable_level_translator(void)
143 {
144         /* Turn on TXB0108 OE pin */
145         gpio_request(SD1_EN_GPIO, "sd1_enable");
146         gpio_direction_output(SD1_EN_GPIO, 1);
147 }
148
149
150 static int otg_phy_init(void)
151 {
152         gpio_request(OTG_PHY_RESET_GPIO, "usb-otg-reset");
153         gpio_direction_output(OTG_PHY_RESET_GPIO, 0);
154         mdelay(1);
155         gpio_set_value(OTG_PHY_RESET_GPIO, 1);
156         return 0;
157 }
158
159 #if defined(CONFIG_USB_ULPI)
160
161 static struct mxc_usbh_platform_data otg_pdata __initdata = {
162         .portsc = MXC_EHCI_MODE_ULPI,
163         .flags  = MXC_EHCI_INTERFACE_DIFF_UNI,
164 };
165 #endif
166
167 static const struct fsl_usb2_platform_data otg_device_pdata __initconst = {
168         .operating_mode = FSL_USB2_DR_DEVICE,
169         .phy_mode       = FSL_USB2_PHY_ULPI,
170 };
171
172 static int otg_mode_host;
173
174 static int __init mx27_3ds_otg_mode(char *options)
175 {
176         if (!strcmp(options, "host"))
177                 otg_mode_host = 1;
178         else if (!strcmp(options, "device"))
179                 otg_mode_host = 0;
180         else
181                 pr_info("otg_mode neither \"host\" nor \"device\". "
182                         "Defaulting to device\n");
183         return 0;
184 }
185 __setup("otg_mode=", mx27_3ds_otg_mode);
186
187 /* Regulators */
188 static struct regulator_consumer_supply vmmc1_consumers[] = {
189         REGULATOR_SUPPLY("lcd_2v8", NULL),
190 };
191
192 static struct regulator_init_data vmmc1_init = {
193         .constraints = {
194                 .min_uV = 2800000,
195                 .max_uV = 2800000,
196                 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
197         },
198         .num_consumer_supplies = ARRAY_SIZE(vmmc1_consumers),
199         .consumer_supplies = vmmc1_consumers,
200 };
201
202 static struct regulator_consumer_supply vgen_consumers[] = {
203         REGULATOR_SUPPLY("vdd_lcdio", NULL),
204 };
205
206 static struct regulator_init_data vgen_init = {
207         .constraints = {
208                 .min_uV = 1800000,
209                 .max_uV = 1800000,
210                 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
211         },
212         .num_consumer_supplies = ARRAY_SIZE(vgen_consumers),
213         .consumer_supplies = vgen_consumers,
214 };
215
216 static struct mc13783_regulator_init_data mx27_3ds_regulators[] = {
217         {
218                 .id = MC13783_REGU_VMMC1,
219                 .init_data = &vmmc1_init,
220         }, {
221                 .id = MC13783_REGU_VGEN,
222                 .init_data = &vgen_init,
223         },
224 };
225
226 /* MC13783 */
227 static struct mc13783_platform_data mc13783_pdata __initdata = {
228         .regulators = mx27_3ds_regulators,
229         .num_regulators = ARRAY_SIZE(mx27_3ds_regulators),
230         .flags  = MC13783_USE_REGULATOR,
231 };
232
233 /* SPI */
234 static int spi2_internal_chipselect[] = {SPI2_SS0};
235
236 static const struct spi_imx_master spi2_pdata __initconst = {
237         .chipselect     = spi2_internal_chipselect,
238         .num_chipselect = ARRAY_SIZE(spi2_internal_chipselect),
239 };
240
241 static struct spi_board_info mx27_3ds_spi_devs[] __initdata = {
242         {
243                 .modalias       = "mc13783",
244                 .max_speed_hz   = 1000000,
245                 .bus_num        = 1,
246                 .chip_select    = 0, /* SS0 */
247                 .platform_data  = &mc13783_pdata,
248                 .irq = IRQ_GPIOC(14),
249                 .mode = SPI_CS_HIGH,
250         },
251 };
252
253
254 static void __init mx27pdk_init(void)
255 {
256         mxc_gpio_setup_multiple_pins(mx27pdk_pins, ARRAY_SIZE(mx27pdk_pins),
257                 "mx27pdk");
258         mx27_3ds_sdhc1_enable_level_translator();
259         imx27_add_imx_uart0(&uart_pdata);
260         imx27_add_fec(NULL);
261         imx27_add_imx_keypad(&mx27_3ds_keymap_data);
262         imx27_add_mxc_mmc(0, &sdhc1_pdata);
263         imx27_add_imx2_wdt(NULL);
264         otg_phy_init();
265 #if defined(CONFIG_USB_ULPI)
266         if (otg_mode_host) {
267                 otg_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
268                                 ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
269
270                 imx27_add_mxc_ehci_otg(&otg_pdata);
271         }
272 #endif
273         if (!otg_mode_host)
274                 imx27_add_fsl_usb2_udc(&otg_device_pdata);
275
276         imx27_add_spi_imx1(&spi2_pdata);
277         spi_register_board_info(mx27_3ds_spi_devs,
278                                                 ARRAY_SIZE(mx27_3ds_spi_devs));
279 }
280
281 static void __init mx27pdk_timer_init(void)
282 {
283         mx27_clocks_init(26000000);
284 }
285
286 static struct sys_timer mx27pdk_timer = {
287         .init   = mx27pdk_timer_init,
288 };
289
290 MACHINE_START(MX27_3DS, "Freescale MX27PDK")
291         /* maintainer: Freescale Semiconductor, Inc. */
292         .boot_params    = MX27_PHYS_OFFSET + 0x100,
293         .map_io         = mx27_map_io,
294         .init_irq       = mx27_init_irq,
295         .init_machine   = mx27pdk_init,
296         .timer          = &mx27pdk_timer,
297 MACHINE_END