Merge branch 'imx/for-2.6.36' of git://git.pengutronix.de/git/ukl/linux-2.6 into...
[linux-drm-fsl-dcu.git] / arch / arm / mach-mx25 / eukrea_mbimxsd-baseboard.c
1 /*
2  * Copyright (C) 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/leds.h>
24 #include <linux/platform_device.h>
25 #include <linux/gpio_keys.h>
26 #include <linux/input.h>
27 #include <video/platform_lcd.h>
28
29 #include <mach/board-eukrea_cpuimx25.h>
30 #include <mach/hardware.h>
31 #include <mach/iomux-mx25.h>
32 #include <mach/common.h>
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 #include <mach/mx25.h>
36 #include <mach/imx-uart.h>
37 #include <mach/imxfb.h>
38 #include <mach/ssi.h>
39 #include <mach/audmux.h>
40
41 #include "devices-imx25.h"
42 #include "devices.h"
43
44 static struct pad_desc eukrea_mbimxsd_pads[] = {
45         /* LCD */
46         MX25_PAD_LD0__LD0,
47         MX25_PAD_LD1__LD1,
48         MX25_PAD_LD2__LD2,
49         MX25_PAD_LD3__LD3,
50         MX25_PAD_LD4__LD4,
51         MX25_PAD_LD5__LD5,
52         MX25_PAD_LD6__LD6,
53         MX25_PAD_LD7__LD7,
54         MX25_PAD_LD8__LD8,
55         MX25_PAD_LD9__LD9,
56         MX25_PAD_LD10__LD10,
57         MX25_PAD_LD11__LD11,
58         MX25_PAD_LD12__LD12,
59         MX25_PAD_LD13__LD13,
60         MX25_PAD_LD14__LD14,
61         MX25_PAD_LD15__LD15,
62         MX25_PAD_GPIO_E__LD16,
63         MX25_PAD_GPIO_F__LD17,
64         MX25_PAD_HSYNC__HSYNC,
65         MX25_PAD_VSYNC__VSYNC,
66         MX25_PAD_LSCLK__LSCLK,
67         MX25_PAD_OE_ACD__OE_ACD,
68         MX25_PAD_CONTRAST__CONTRAST,
69         /* LCD_PWR */
70         MX25_PAD_PWM__GPIO_1_26,
71         /* LED */
72         MX25_PAD_POWER_FAIL__GPIO_3_19,
73         /* SWITCH */
74         MX25_PAD_VSTBY_ACK__GPIO_3_18,
75         /* UART2 */
76         MX25_PAD_UART2_RTS__UART2_RTS,
77         MX25_PAD_UART2_CTS__UART2_CTS,
78         MX25_PAD_UART2_TXD__UART2_TXD,
79         MX25_PAD_UART2_RXD__UART2_RXD,
80         /* SD1 */
81         MX25_PAD_SD1_CMD__SD1_CMD,
82         MX25_PAD_SD1_CLK__SD1_CLK,
83         MX25_PAD_SD1_DATA0__SD1_DATA0,
84         MX25_PAD_SD1_DATA1__SD1_DATA1,
85         MX25_PAD_SD1_DATA2__SD1_DATA2,
86         MX25_PAD_SD1_DATA3__SD1_DATA3,
87         /* SD1 CD */
88         MX25_PAD_DE_B__GPIO_2_20,
89         /* I2S */
90         MX25_PAD_KPP_COL3__AUD5_TXFS,
91         MX25_PAD_KPP_COL2__AUD5_TXC,
92         MX25_PAD_KPP_COL1__AUD5_RXD,
93         MX25_PAD_KPP_COL0__AUD5_TXD,
94 };
95
96 #define GPIO_LED1       83
97 #define GPIO_SWITCH1    82
98 #define GPIO_SD1CD      52
99 #define GPIO_LCDPWR     26
100
101 static struct imx_fb_videomode eukrea_mximxsd_modes[] = {
102         {
103                 .mode   = {
104                         .name           = "CMO-QVGA",
105                         .refresh        = 60,
106                         .xres           = 320,
107                         .yres           = 240,
108                         .pixclock       = KHZ2PICOS(6500),
109                         .left_margin    = 30,
110                         .right_margin   = 38,
111                         .upper_margin   = 20,
112                         .lower_margin   = 3,
113                         .hsync_len      = 15,
114                         .vsync_len      = 4,
115                 },
116                 .bpp    = 16,
117                 .pcr    = 0xCAD08B80,
118         },
119 };
120
121 static struct imx_fb_platform_data eukrea_mximxsd_fb_pdata = {
122         .mode           = eukrea_mximxsd_modes,
123         .num_modes      = ARRAY_SIZE(eukrea_mximxsd_modes),
124         .pwmr           = 0x00A903FF,
125         .lscr1          = 0x00120300,
126         .dmacr          = 0x00040060,
127 };
128
129 static void eukrea_mbimxsd_lcd_power_set(struct plat_lcd_data *pd,
130                                    unsigned int power)
131 {
132         if (power)
133                 gpio_direction_output(GPIO_LCDPWR, 1);
134         else
135                 gpio_direction_output(GPIO_LCDPWR, 0);
136 }
137
138 static struct plat_lcd_data eukrea_mbimxsd_lcd_power_data = {
139         .set_power              = eukrea_mbimxsd_lcd_power_set,
140 };
141
142 static struct platform_device eukrea_mbimxsd_lcd_powerdev = {
143         .name                   = "platform-lcd",
144         .dev.platform_data      = &eukrea_mbimxsd_lcd_power_data,
145 };
146
147 static struct gpio_led eukrea_mbimxsd_leds[] = {
148         {
149                 .name                   = "led1",
150                 .default_trigger        = "heartbeat",
151                 .active_low             = 1,
152                 .gpio                   = GPIO_LED1,
153         },
154 };
155
156 static struct gpio_led_platform_data eukrea_mbimxsd_led_info = {
157         .leds           = eukrea_mbimxsd_leds,
158         .num_leds       = ARRAY_SIZE(eukrea_mbimxsd_leds),
159 };
160
161 static struct platform_device eukrea_mbimxsd_leds_gpio = {
162         .name   = "leds-gpio",
163         .id     = -1,
164         .dev    = {
165                 .platform_data  = &eukrea_mbimxsd_led_info,
166         },
167 };
168
169 static struct gpio_keys_button eukrea_mbimxsd_gpio_buttons[] = {
170         {
171                 .gpio           = GPIO_SWITCH1,
172                 .code           = BTN_0,
173                 .desc           = "BP1",
174                 .active_low     = 1,
175                 .wakeup         = 1,
176         },
177 };
178
179 static struct gpio_keys_platform_data eukrea_mbimxsd_button_data = {
180         .buttons        = eukrea_mbimxsd_gpio_buttons,
181         .nbuttons       = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons),
182 };
183
184 static struct platform_device eukrea_mbimxsd_button_device = {
185         .name           = "gpio-keys",
186         .id             = -1,
187         .num_resources  = 0,
188         .dev            = {
189                 .platform_data  = &eukrea_mbimxsd_button_data,
190         }
191 };
192
193 static struct platform_device *platform_devices[] __initdata = {
194         &eukrea_mbimxsd_leds_gpio,
195         &eukrea_mbimxsd_button_device,
196         &eukrea_mbimxsd_lcd_powerdev,
197 };
198
199 static const struct imxuart_platform_data uart_pdata __initconst = {
200         .flags = IMXUART_HAVE_RTSCTS,
201 };
202
203 static struct i2c_board_info eukrea_mbimxsd_i2c_devices[] = {
204         {
205                 I2C_BOARD_INFO("tlv320aic23", 0x1a),
206         },
207 };
208
209 struct imx_ssi_platform_data eukrea_mbimxsd_ssi_pdata = {
210         .flags = IMX_SSI_SYN | IMX_SSI_NET | IMX_SSI_USE_I2S_SLAVE,
211 };
212
213 /*
214  * system init for baseboard usage. Will be called by cpuimx25 init.
215  *
216  * Add platform devices present on this baseboard and init
217  * them from CPU side as far as required to use them later on
218  */
219 void __init eukrea_mbimxsd_baseboard_init(void)
220 {
221         if (mxc_iomux_v3_setup_multiple_pads(eukrea_mbimxsd_pads,
222                         ARRAY_SIZE(eukrea_mbimxsd_pads)))
223                 printk(KERN_ERR "error setting mbimxsd pads !\n");
224
225 #if defined(CONFIG_SND_SOC_EUKREA_TLV320)
226         /* SSI unit master I2S codec connected to SSI_AUD5*/
227         mxc_audmux_v2_configure_port(0,
228                         MXC_AUDMUX_V2_PTCR_SYN |
229                         MXC_AUDMUX_V2_PTCR_TFSDIR |
230                         MXC_AUDMUX_V2_PTCR_TFSEL(4) |
231                         MXC_AUDMUX_V2_PTCR_TCLKDIR |
232                         MXC_AUDMUX_V2_PTCR_TCSEL(4),
233                         MXC_AUDMUX_V2_PDCR_RXDSEL(4)
234         );
235         mxc_audmux_v2_configure_port(4,
236                         MXC_AUDMUX_V2_PTCR_SYN,
237                         MXC_AUDMUX_V2_PDCR_RXDSEL(0)
238         );
239 #endif
240
241         imx25_add_imx_uart1(&uart_pdata);
242         mxc_register_device(&mx25_fb_device, &eukrea_mximxsd_fb_pdata);
243         mxc_register_device(&imx_ssi_device0, &eukrea_mbimxsd_ssi_pdata);
244
245         gpio_request(GPIO_LED1, "LED1");
246         gpio_direction_output(GPIO_LED1, 1);
247         gpio_free(GPIO_LED1);
248
249         gpio_request(GPIO_SWITCH1, "SWITCH1");
250         gpio_direction_input(GPIO_SWITCH1);
251         gpio_free(GPIO_SWITCH1);
252
253         gpio_request(GPIO_LCDPWR, "LCDPWR");
254         gpio_direction_output(GPIO_LCDPWR, 1);
255         gpio_free(GPIO_SWITCH1);
256
257         i2c_register_board_info(0, eukrea_mbimxsd_i2c_devices,
258                                 ARRAY_SIZE(eukrea_mbimxsd_i2c_devices));
259
260         platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
261 }