ARM: imx: dynamically register imx-fb devices
[pandora-kernel.git] / arch / arm / mach-imx / eukrea_mbimx27-baseboard.c
1 /*
2  * Copyright (C) 2009-2010 Eric Benard - eric@eukrea.com
3  *
4  * Based on pcm970-baseboard.c which is :
5  * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
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  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  */
21
22 #include <linux/gpio.h>
23 #include <linux/irq.h>
24 #include <linux/platform_device.h>
25 #include <linux/spi/spi.h>
26 #include <linux/spi/ads7846.h>
27 #include <linux/backlight.h>
28 #include <video/platform_lcd.h>
29 #include <linux/input/matrix_keypad.h>
30
31 #include <asm/mach/arch.h>
32
33 #include <mach/common.h>
34 #include <mach/iomux-mx27.h>
35 #include <mach/hardware.h>
36 #include <mach/mmc.h>
37 #include <mach/spi.h>
38 #include <mach/audmux.h>
39
40 #include "devices-imx27.h"
41 #include "devices.h"
42
43 static const int eukrea_mbimx27_pins[] __initconst = {
44         /* UART2 */
45         PE3_PF_UART2_CTS,
46         PE4_PF_UART2_RTS,
47         PE6_PF_UART2_TXD,
48         PE7_PF_UART2_RXD,
49         /* UART3 */
50         PE8_PF_UART3_TXD,
51         PE9_PF_UART3_RXD,
52         PE10_PF_UART3_CTS,
53         PE11_PF_UART3_RTS,
54         /* UART4 */
55 #if !defined(MACH_EUKREA_CPUIMX27_USEUART4)
56         PB26_AF_UART4_RTS,
57         PB28_AF_UART4_TXD,
58         PB29_AF_UART4_CTS,
59         PB31_AF_UART4_RXD,
60 #endif
61         /* SDHC1*/
62         PE18_PF_SD1_D0,
63         PE19_PF_SD1_D1,
64         PE20_PF_SD1_D2,
65         PE21_PF_SD1_D3,
66         PE22_PF_SD1_CMD,
67         PE23_PF_SD1_CLK,
68         /* display */
69         PA5_PF_LSCLK,
70         PA6_PF_LD0,
71         PA7_PF_LD1,
72         PA8_PF_LD2,
73         PA9_PF_LD3,
74         PA10_PF_LD4,
75         PA11_PF_LD5,
76         PA12_PF_LD6,
77         PA13_PF_LD7,
78         PA14_PF_LD8,
79         PA15_PF_LD9,
80         PA16_PF_LD10,
81         PA17_PF_LD11,
82         PA18_PF_LD12,
83         PA19_PF_LD13,
84         PA20_PF_LD14,
85         PA21_PF_LD15,
86         PA22_PF_LD16,
87         PA23_PF_LD17,
88         PA28_PF_HSYNC,
89         PA29_PF_VSYNC,
90         PA30_PF_CONTRAST,
91         PA31_PF_OE_ACD,
92         /* SPI1 */
93         PD29_PF_CSPI1_SCLK,
94         PD30_PF_CSPI1_MISO,
95         PD31_PF_CSPI1_MOSI,
96         /* SSI4 */
97 #if defined(CONFIG_SND_SOC_EUKREA_TLV320) \
98         || defined(CONFIG_SND_SOC_EUKREA_TLV320_MODULE)
99         PC16_PF_SSI4_FS,
100         PC17_PF_SSI4_RXD | GPIO_PUEN,
101         PC18_PF_SSI4_TXD | GPIO_PUEN,
102         PC19_PF_SSI4_CLK,
103 #endif
104 };
105
106 static const uint32_t eukrea_mbimx27_keymap[] = {
107         KEY(0, 0, KEY_UP),
108         KEY(0, 1, KEY_DOWN),
109         KEY(1, 0, KEY_RIGHT),
110         KEY(1, 1, KEY_LEFT),
111 };
112
113 static struct matrix_keymap_data eukrea_mbimx27_keymap_data = {
114         .keymap         = eukrea_mbimx27_keymap,
115         .keymap_size    = ARRAY_SIZE(eukrea_mbimx27_keymap),
116 };
117
118 static struct gpio_led gpio_leds[] = {
119         {
120                 .name                   = "led1",
121                 .default_trigger        = "heartbeat",
122                 .active_low             = 1,
123                 .gpio                   = GPIO_PORTF | 16,
124         },
125         {
126                 .name                   = "led2",
127                 .default_trigger        = "none",
128                 .active_low             = 1,
129                 .gpio                   = GPIO_PORTF | 19,
130         },
131 };
132
133 static struct gpio_led_platform_data gpio_led_info = {
134         .leds           = gpio_leds,
135         .num_leds       = ARRAY_SIZE(gpio_leds),
136 };
137
138 static struct platform_device leds_gpio = {
139         .name   = "leds-gpio",
140         .id     = -1,
141         .dev    = {
142                 .platform_data  = &gpio_led_info,
143         },
144 };
145
146 static struct imx_fb_videomode eukrea_mbimx27_modes[] = {
147         {
148                 .mode = {
149                         .name           = "CMO-QVGA",
150                         .refresh        = 60,
151                         .xres           = 320,
152                         .yres           = 240,
153                         .pixclock       = 156000,
154                         .hsync_len      = 30,
155                         .left_margin    = 38,
156                         .right_margin   = 20,
157                         .vsync_len      = 3,
158                         .upper_margin   = 15,
159                         .lower_margin   = 4,
160                 },
161                 .pcr            = 0xFAD08B80,
162                 .bpp            = 16,
163         }, {
164                 .mode = {
165                         .name           = "DVI-VGA",
166                         .refresh        = 60,
167                         .xres           = 640,
168                         .yres           = 480,
169                         .pixclock       = 32000,
170                         .hsync_len      = 1,
171                         .left_margin    = 35,
172                         .right_margin   = 0,
173                         .vsync_len      = 1,
174                         .upper_margin   = 7,
175                         .lower_margin   = 0,
176                 },
177                 .pcr            = 0xFA208B80,
178                 .bpp            = 16,
179         }, {
180                 .mode = {
181                         .name           = "DVI-SVGA",
182                         .refresh        = 60,
183                         .xres           = 800,
184                         .yres           = 600,
185                         .pixclock       = 25000,
186                         .hsync_len      = 1,
187                         .left_margin    = 35,
188                         .right_margin   = 0,
189                         .vsync_len      = 1,
190                         .upper_margin   = 7,
191                         .lower_margin   = 0,
192                 },
193                 .pcr            = 0xFA208B80,
194                 .bpp            = 16,
195         },
196 };
197
198 static const struct imx_fb_platform_data eukrea_mbimx27_fb_data __initconst = {
199         .mode = eukrea_mbimx27_modes,
200         .num_modes = ARRAY_SIZE(eukrea_mbimx27_modes),
201
202         .pwmr           = 0x00A903FF,
203         .lscr1          = 0x00120300,
204         .dmacr          = 0x00040060,
205 };
206
207 static void eukrea_mbimx27_bl_set_intensity(int intensity)
208 {
209         if (intensity)
210                 gpio_direction_output(GPIO_PORTE | 5, 1);
211         else
212                 gpio_direction_output(GPIO_PORTE | 5, 0);
213 }
214
215 static struct generic_bl_info eukrea_mbimx27_bl_info = {
216         .name                   = "eukrea_mbimx27-bl",
217         .max_intensity          = 0xff,
218         .default_intensity      = 0xff,
219         .set_bl_intensity       = eukrea_mbimx27_bl_set_intensity,
220 };
221
222 static struct platform_device eukrea_mbimx27_bl_dev = {
223         .name                   = "generic-bl",
224         .id                     = 1,
225         .dev = {
226                 .platform_data  = &eukrea_mbimx27_bl_info,
227         },
228 };
229
230 static void eukrea_mbimx27_lcd_power_set(struct plat_lcd_data *pd,
231                                    unsigned int power)
232 {
233         if (power)
234                 gpio_direction_output(GPIO_PORTA | 25, 1);
235         else
236                 gpio_direction_output(GPIO_PORTA | 25, 0);
237 }
238
239 static struct plat_lcd_data eukrea_mbimx27_lcd_power_data = {
240         .set_power              = eukrea_mbimx27_lcd_power_set,
241 };
242
243 static struct platform_device eukrea_mbimx27_lcd_powerdev = {
244         .name                   = "platform-lcd",
245         .dev.platform_data      = &eukrea_mbimx27_lcd_power_data,
246 };
247
248 static const struct imxuart_platform_data uart_pdata __initconst = {
249         .flags = IMXUART_HAVE_RTSCTS,
250 };
251
252 #if defined(CONFIG_TOUCHSCREEN_ADS7846) \
253         || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
254
255 #define ADS7846_PENDOWN (GPIO_PORTD | 25)
256
257 static void ads7846_dev_init(void)
258 {
259         if (gpio_request(ADS7846_PENDOWN, "ADS7846 pendown") < 0) {
260                 printk(KERN_ERR "can't get ads746 pen down GPIO\n");
261                 return;
262         }
263         gpio_direction_input(ADS7846_PENDOWN);
264 }
265
266 static int ads7846_get_pendown_state(void)
267 {
268         return !gpio_get_value(ADS7846_PENDOWN);
269 }
270
271 static struct ads7846_platform_data ads7846_config __initdata = {
272         .get_pendown_state      = ads7846_get_pendown_state,
273         .keep_vref_on           = 1,
274 };
275 #endif
276
277 #if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
278 static struct spi_board_info eukrea_mbimx27_spi_board_info[] __initdata = {
279         [0] = {
280                 .modalias       = "ads7846",
281                 .bus_num        = 0,
282                 .chip_select    = 0,
283                 .max_speed_hz   = 1500000,
284                 .irq            = IRQ_GPIOD(25),
285                 .platform_data  = &ads7846_config,
286                 .mode           = SPI_MODE_2,
287         },
288 };
289
290 static int eukrea_mbimx27_spi_cs[] = {GPIO_PORTD | 28};
291
292 static const struct spi_imx_master eukrea_mbimx27_spi0_data __initconst = {
293         .chipselect     = eukrea_mbimx27_spi_cs,
294         .num_chipselect = ARRAY_SIZE(eukrea_mbimx27_spi_cs),
295 };
296 #endif
297
298 static struct i2c_board_info eukrea_mbimx27_i2c_devices[] = {
299         {
300                 I2C_BOARD_INFO("tlv320aic23", 0x1a),
301         },
302 };
303
304 static struct platform_device *platform_devices[] __initdata = {
305         &leds_gpio,
306 };
307
308 static struct imxmmc_platform_data sdhc_pdata = {
309         .dat3_card_detect = 1,
310 };
311
312 static const
313 struct imx_ssi_platform_data eukrea_mbimx27_ssi_pdata __initconst = {
314         .flags = IMX_SSI_DMA | IMX_SSI_USE_I2S_SLAVE,
315 };
316
317 /*
318  * system init for baseboard usage. Will be called by cpuimx27 init.
319  *
320  * Add platform devices present on this baseboard and init
321  * them from CPU side as far as required to use them later on
322  */
323 void __init eukrea_mbimx27_baseboard_init(void)
324 {
325         mxc_gpio_setup_multiple_pins(eukrea_mbimx27_pins,
326                 ARRAY_SIZE(eukrea_mbimx27_pins), "MBIMX27");
327
328 #if defined(CONFIG_SND_SOC_EUKREA_TLV320) \
329         || defined(CONFIG_SND_SOC_EUKREA_TLV320_MODULE)
330         /* SSI unit master I2S codec connected to SSI_PINS_4*/
331         mxc_audmux_v1_configure_port(MX27_AUDMUX_HPCR1_SSI0,
332                         MXC_AUDMUX_V1_PCR_SYN |
333                         MXC_AUDMUX_V1_PCR_TFSDIR |
334                         MXC_AUDMUX_V1_PCR_TCLKDIR |
335                         MXC_AUDMUX_V1_PCR_RFSDIR |
336                         MXC_AUDMUX_V1_PCR_RCLKDIR |
337                         MXC_AUDMUX_V1_PCR_TFCSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4) |
338                         MXC_AUDMUX_V1_PCR_RFCSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4) |
339                         MXC_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4)
340         );
341         mxc_audmux_v1_configure_port(MX27_AUDMUX_HPCR3_SSI_PINS_4,
342                         MXC_AUDMUX_V1_PCR_SYN |
343                         MXC_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_HPCR1_SSI0)
344         );
345 #endif
346
347         imx27_add_imx_uart1(&uart_pdata);
348         imx27_add_imx_uart2(&uart_pdata);
349 #if !defined(MACH_EUKREA_CPUIMX27_USEUART4)
350         imx27_add_imx_uart3(&uart_pdata);
351 #endif
352
353         imx27_add_imx_fb(&eukrea_mbimx27_fb_data);
354         mxc_register_device(&mxc_sdhc_device0, &sdhc_pdata);
355
356         i2c_register_board_info(0, eukrea_mbimx27_i2c_devices,
357                                 ARRAY_SIZE(eukrea_mbimx27_i2c_devices));
358
359         imx27_add_imx_ssi(0, &eukrea_mbimx27_ssi_pdata);
360
361 #if defined(CONFIG_TOUCHSCREEN_ADS7846) \
362         || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
363         /* ADS7846 Touchscreen controller init */
364         mxc_gpio_mode(GPIO_PORTD | 25 | GPIO_GPIO | GPIO_IN);
365         ads7846_dev_init();
366 #endif
367
368 #if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
369         /* SPI_CS0 init */
370         mxc_gpio_mode(GPIO_PORTD | 28 | GPIO_GPIO | GPIO_OUT);
371         imx27_add_spi_imx0(&eukrea_mbimx27_spi0_data);
372         spi_register_board_info(eukrea_mbimx27_spi_board_info,
373                         ARRAY_SIZE(eukrea_mbimx27_spi_board_info));
374 #endif
375
376         /* Leds configuration */
377         mxc_gpio_mode(GPIO_PORTF | 16 | GPIO_GPIO | GPIO_OUT);
378         mxc_gpio_mode(GPIO_PORTF | 19 | GPIO_GPIO | GPIO_OUT);
379         /* Backlight */
380         mxc_gpio_mode(GPIO_PORTE | 5 | GPIO_GPIO | GPIO_OUT);
381         gpio_request(GPIO_PORTE | 5, "backlight");
382         platform_device_register(&eukrea_mbimx27_bl_dev);
383         /* LCD Reset */
384         mxc_gpio_mode(GPIO_PORTA | 25 | GPIO_GPIO | GPIO_OUT);
385         gpio_request(GPIO_PORTA | 25, "lcd_enable");
386         platform_device_register(&eukrea_mbimx27_lcd_powerdev);
387
388         mxc_register_device(&imx_kpp_device, &eukrea_mbimx27_keymap_data);
389
390         platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
391 }