blob: a226e2540ebdb169ee993e64f3b164926b55fa52 [file] [log] [blame]
Eric Benarda961bf32009-07-16 16:26:34 +02001/*
Eric Bénardd2195d52010-05-27 10:58:56 +02002 * Copyright (C) 2009-2010 Eric Benard - eric@eukrea.com
Eric Benarda961bf32009-07-16 16:26:34 +02003 *
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>
Eric Bénardfc04ad02010-05-19 18:45:57 +020027#include <linux/backlight.h>
28#include <video/platform_lcd.h>
Eric Bénard5203b992010-05-19 18:46:07 +020029#include <linux/input/matrix_keypad.h>
Eric Benarda961bf32009-07-16 16:26:34 +020030
31#include <asm/mach/arch.h>
32
33#include <mach/common.h>
Uwe Kleine-Könige835d882010-02-16 11:07:49 +010034#include <mach/iomux-mx27.h>
Eric Benarda961bf32009-07-16 16:26:34 +020035#include <mach/hardware.h>
36#include <mach/mmc.h>
Eric Bénard62d725b2010-05-20 09:22:28 +020037#include <mach/spi.h>
Eric Bénardd2195d52010-05-27 10:58:56 +020038#include <mach/audmux.h>
Eric Benarda961bf32009-07-16 16:26:34 +020039
Uwe Kleine-König7536cf92010-06-22 09:00:22 +020040#include "devices-imx27.h"
Eric Benarda961bf32009-07-16 16:26:34 +020041#include "devices.h"
42
Uwe Kleine-König6c80ee52010-09-28 21:53:31 +020043static const int eukrea_mbimx27_pins[] __initconst = {
Eric Benarda961bf32009-07-16 16:26:34 +020044 /* 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 */
Eric Bénard2d66c782010-05-19 18:45:59 +020055#if !defined(MACH_EUKREA_CPUIMX27_USEUART4)
Eric Benarda961bf32009-07-16 16:26:34 +020056 PB26_AF_UART4_RTS,
57 PB28_AF_UART4_TXD,
58 PB29_AF_UART4_CTS,
59 PB31_AF_UART4_RXD,
Eric Bénard2d66c782010-05-19 18:45:59 +020060#endif
Eric Benarda961bf32009-07-16 16:26:34 +020061 /* 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 */
Eric Benarda961bf32009-07-16 16:26:34 +020093 PD29_PF_CSPI1_SCLK,
94 PD30_PF_CSPI1_MISO,
95 PD31_PF_CSPI1_MOSI,
Eric Bénardd2195d52010-05-27 10:58:56 +020096 /* SSI4 */
Eric Bénarde8c74862010-06-20 21:22:54 +020097#if defined(CONFIG_SND_SOC_EUKREA_TLV320) \
98 || defined(CONFIG_SND_SOC_EUKREA_TLV320_MODULE)
Eric Bénardd2195d52010-05-27 10:58:56 +020099 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
Eric Benarda961bf32009-07-16 16:26:34 +0200104};
105
Eric Bénard5203b992010-05-19 18:46:07 +0200106static 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
113static struct matrix_keymap_data eukrea_mbimx27_keymap_data = {
114 .keymap = eukrea_mbimx27_keymap,
115 .keymap_size = ARRAY_SIZE(eukrea_mbimx27_keymap),
116};
117
Eric Benarda961bf32009-07-16 16:26:34 +0200118static 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 },
Eric Benarda961bf32009-07-16 16:26:34 +0200131};
132
133static struct gpio_led_platform_data gpio_led_info = {
134 .leds = gpio_leds,
135 .num_leds = ARRAY_SIZE(gpio_leds),
136};
137
138static struct platform_device leds_gpio = {
139 .name = "leds-gpio",
140 .id = -1,
141 .dev = {
142 .platform_data = &gpio_led_info,
143 },
144};
145
146static struct imx_fb_videomode eukrea_mbimx27_modes[] = {
147 {
148 .mode = {
Eric Bénard4eaad662010-05-19 18:45:56 +0200149 .name = "CMO-QVGA",
Eric Benarda961bf32009-07-16 16:26:34 +0200150 .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,
Eric Bénarda4652422010-05-19 18:45:58 +0200163 }, {
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,
Eric Benarda961bf32009-07-16 16:26:34 +0200195 },
196};
197
Uwe Kleine-Königad851bf2010-11-04 17:07:48 +0100198static const struct imx_fb_platform_data eukrea_mbimx27_fb_data __initconst = {
Eric Benarda961bf32009-07-16 16:26:34 +0200199 .mode = eukrea_mbimx27_modes,
200 .num_modes = ARRAY_SIZE(eukrea_mbimx27_modes),
201
202 .pwmr = 0x00A903FF,
203 .lscr1 = 0x00120300,
204 .dmacr = 0x00040060,
205};
206
Eric Bénardfc04ad02010-05-19 18:45:57 +0200207static 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
215static 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
222static 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
230static 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
239static struct plat_lcd_data eukrea_mbimx27_lcd_power_data = {
240 .set_power = eukrea_mbimx27_lcd_power_set,
241};
242
243static struct platform_device eukrea_mbimx27_lcd_powerdev = {
244 .name = "platform-lcd",
245 .dev.platform_data = &eukrea_mbimx27_lcd_power_data,
246};
247
Uwe Kleine-Königd5dac4a2010-06-23 09:36:01 +0200248static const struct imxuart_platform_data uart_pdata __initconst = {
249 .flags = IMXUART_HAVE_RTSCTS,
Eric Benarda961bf32009-07-16 16:26:34 +0200250};
251
Eric Bénard62d725b2010-05-20 09:22:28 +0200252#if defined(CONFIG_TOUCHSCREEN_ADS7846) \
Eric Benarda961bf32009-07-16 16:26:34 +0200253 || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
254
255#define ADS7846_PENDOWN (GPIO_PORTD | 25)
256
257static 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 }
Eric Benarda961bf32009-07-16 16:26:34 +0200263 gpio_direction_input(ADS7846_PENDOWN);
264}
265
266static int ads7846_get_pendown_state(void)
267{
268 return !gpio_get_value(ADS7846_PENDOWN);
269}
270
271static struct ads7846_platform_data ads7846_config __initdata = {
272 .get_pendown_state = ads7846_get_pendown_state,
273 .keep_vref_on = 1,
274};
Eric Bénard62d725b2010-05-20 09:22:28 +0200275#endif
Eric Benarda961bf32009-07-16 16:26:34 +0200276
Eric Bénard62d725b2010-05-20 09:22:28 +0200277#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
Eric Benarda961bf32009-07-16 16:26:34 +0200278static 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
290static int eukrea_mbimx27_spi_cs[] = {GPIO_PORTD | 28};
291
Uwe Kleine-König7536cf92010-06-22 09:00:22 +0200292static const struct spi_imx_master eukrea_mbimx27_spi0_data __initconst = {
Eric Benarda961bf32009-07-16 16:26:34 +0200293 .chipselect = eukrea_mbimx27_spi_cs,
294 .num_chipselect = ARRAY_SIZE(eukrea_mbimx27_spi_cs),
295};
296#endif
297
Eric Bénard5055d1e2010-07-19 09:45:17 +0200298static struct i2c_board_info eukrea_mbimx27_i2c_devices[] = {
299 {
300 I2C_BOARD_INFO("tlv320aic23", 0x1a),
301 },
302};
303
Eric Benarda961bf32009-07-16 16:26:34 +0200304static struct platform_device *platform_devices[] __initdata = {
305 &leds_gpio,
306};
307
Eric Bénarde76a17c2010-05-19 18:46:05 +0200308static struct imxmmc_platform_data sdhc_pdata = {
309 .dat3_card_detect = 1,
310};
311
Uwe Kleine-König4697bb92010-08-25 17:37:45 +0200312static const
313struct imx_ssi_platform_data eukrea_mbimx27_ssi_pdata __initconst = {
Eric Bénardd2195d52010-05-27 10:58:56 +0200314 .flags = IMX_SSI_DMA | IMX_SSI_USE_I2S_SLAVE,
315};
316
Eric Benarda961bf32009-07-16 16:26:34 +0200317/*
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 */
323void __init eukrea_mbimx27_baseboard_init(void)
324{
325 mxc_gpio_setup_multiple_pins(eukrea_mbimx27_pins,
326 ARRAY_SIZE(eukrea_mbimx27_pins), "MBIMX27");
327
Eric Bénarde8c74862010-06-20 21:22:54 +0200328#if defined(CONFIG_SND_SOC_EUKREA_TLV320) \
329 || defined(CONFIG_SND_SOC_EUKREA_TLV320_MODULE)
Eric Bénardd2195d52010-05-27 10:58:56 +0200330 /* 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
Uwe Kleine-Königd5dac4a2010-06-23 09:36:01 +0200347 imx27_add_imx_uart1(&uart_pdata);
348 imx27_add_imx_uart2(&uart_pdata);
Eric Bénard2d66c782010-05-19 18:45:59 +0200349#if !defined(MACH_EUKREA_CPUIMX27_USEUART4)
Uwe Kleine-König2dcf78c2010-06-30 12:16:24 +0200350 imx27_add_imx_uart3(&uart_pdata);
Eric Bénard2d66c782010-05-19 18:45:59 +0200351#endif
Eric Benarda961bf32009-07-16 16:26:34 +0200352
Uwe Kleine-Königad851bf2010-11-04 17:07:48 +0100353 imx27_add_imx_fb(&eukrea_mbimx27_fb_data);
Eric Bénarde76a17c2010-05-19 18:46:05 +0200354 mxc_register_device(&mxc_sdhc_device0, &sdhc_pdata);
Eric Benarda961bf32009-07-16 16:26:34 +0200355
Eric Bénardd2195d52010-05-27 10:58:56 +0200356 i2c_register_board_info(0, eukrea_mbimx27_i2c_devices,
357 ARRAY_SIZE(eukrea_mbimx27_i2c_devices));
358
Uwe Kleine-König4697bb92010-08-25 17:37:45 +0200359 imx27_add_imx_ssi(0, &eukrea_mbimx27_ssi_pdata);
Eric Bénardd2195d52010-05-27 10:58:56 +0200360
Eric Bénard62d725b2010-05-20 09:22:28 +0200361#if defined(CONFIG_TOUCHSCREEN_ADS7846) \
Eric Benarda961bf32009-07-16 16:26:34 +0200362 || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
Eric Bénard62d725b2010-05-20 09:22:28 +0200363 /* ADS7846 Touchscreen controller init */
Eric Benarda961bf32009-07-16 16:26:34 +0200364 mxc_gpio_mode(GPIO_PORTD | 25 | GPIO_GPIO | GPIO_IN);
Eric Bénard62d725b2010-05-20 09:22:28 +0200365 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);
Uwe Kleine-König7536cf92010-06-22 09:00:22 +0200371 imx27_add_spi_imx0(&eukrea_mbimx27_spi0_data);
Eric Benarda961bf32009-07-16 16:26:34 +0200372 spi_register_board_info(eukrea_mbimx27_spi_board_info,
373 ARRAY_SIZE(eukrea_mbimx27_spi_board_info));
Eric Benarda961bf32009-07-16 16:26:34 +0200374#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);
Eric Bénardfc04ad02010-05-19 18:45:57 +0200381 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);
Eric Benarda961bf32009-07-16 16:26:34 +0200387
Eric Bénard5203b992010-05-19 18:46:07 +0200388 mxc_register_device(&imx_kpp_device, &eukrea_mbimx27_keymap_data);
389
Eric Benarda961bf32009-07-16 16:26:34 +0200390 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
391}