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