blob: 368a603accfe87c69f7fb3df2c377993e1a7f8a7 [file] [log] [blame]
Eric Bénard21744f12010-06-10 16:07:50 +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/types.h>
23#include <linux/init.h>
24
25#include <linux/gpio.h>
26#include <linux/interrupt.h>
27#include <linux/leds.h>
28#include <linux/platform_device.h>
29#include <linux/gpio_keys.h>
30#include <linux/input.h>
31#include <video/platform_lcd.h>
32#include <linux/i2c.h>
33
34#include <asm/mach-types.h>
35#include <asm/mach/arch.h>
36#include <asm/mach/time.h>
37#include <asm/mach/map.h>
38
39#include <mach/board-eukrea_cpuimx35.h>
40#include <mach/hardware.h>
41#include <mach/common.h>
42#include <mach/imx-uart.h>
43#include <mach/iomux-mx35.h>
44#include <mach/ipu.h>
45#include <mach/mx3fb.h>
46#include <mach/audmux.h>
47#include <mach/ssi.h>
48
Uwe Kleine-König2dcf78c2010-06-30 12:16:24 +020049#include "devices-imx35.h"
Eric Bénard21744f12010-06-10 16:07:50 +020050#include "devices.h"
51
52static const struct fb_videomode fb_modedb[] = {
53 {
54 .name = "CMO_QVGA",
55 .refresh = 60,
56 .xres = 320,
57 .yres = 240,
58 .pixclock = KHZ2PICOS(6500),
59 .left_margin = 68,
60 .right_margin = 20,
61 .upper_margin = 15,
62 .lower_margin = 4,
63 .hsync_len = 30,
64 .vsync_len = 3,
65 .sync = 0,
66 .vmode = FB_VMODE_NONINTERLACED,
67 .flag = 0,
68 },
69};
70
71static struct ipu_platform_data mx3_ipu_data = {
72 .irq_base = MXC_IPU_IRQ_START,
73};
74
75static struct mx3fb_platform_data mx3fb_pdata = {
76 .dma_dev = &mx3_ipu.dev,
77 .name = "CMO_QVGA",
78 .mode = fb_modedb,
79 .num_modes = ARRAY_SIZE(fb_modedb),
80};
81
82static struct pad_desc eukrea_mbimxsd_pads[] = {
83 /* LCD */
84 MX35_PAD_LD0__IPU_DISPB_DAT_0,
85 MX35_PAD_LD1__IPU_DISPB_DAT_1,
86 MX35_PAD_LD2__IPU_DISPB_DAT_2,
87 MX35_PAD_LD3__IPU_DISPB_DAT_3,
88 MX35_PAD_LD4__IPU_DISPB_DAT_4,
89 MX35_PAD_LD5__IPU_DISPB_DAT_5,
90 MX35_PAD_LD6__IPU_DISPB_DAT_6,
91 MX35_PAD_LD7__IPU_DISPB_DAT_7,
92 MX35_PAD_LD8__IPU_DISPB_DAT_8,
93 MX35_PAD_LD9__IPU_DISPB_DAT_9,
94 MX35_PAD_LD10__IPU_DISPB_DAT_10,
95 MX35_PAD_LD11__IPU_DISPB_DAT_11,
96 MX35_PAD_LD12__IPU_DISPB_DAT_12,
97 MX35_PAD_LD13__IPU_DISPB_DAT_13,
98 MX35_PAD_LD14__IPU_DISPB_DAT_14,
99 MX35_PAD_LD15__IPU_DISPB_DAT_15,
100 MX35_PAD_LD16__IPU_DISPB_DAT_16,
101 MX35_PAD_LD17__IPU_DISPB_DAT_17,
102 MX35_PAD_D3_HSYNC__IPU_DISPB_D3_HSYNC,
103 MX35_PAD_D3_FPSHIFT__IPU_DISPB_D3_CLK,
104 MX35_PAD_D3_DRDY__IPU_DISPB_D3_DRDY,
105 MX35_PAD_D3_VSYNC__IPU_DISPB_D3_VSYNC,
106 /* Backlight */
107 MX35_PAD_CONTRAST__IPU_DISPB_CONTR,
108 /* LCD_PWR */
109 MX35_PAD_D3_CLS__GPIO1_4,
110 /* LED */
111 MX35_PAD_LD23__GPIO3_29,
112 /* SWITCH */
113 MX35_PAD_LD19__GPIO3_25,
114 /* UART2 */
115 MX35_PAD_CTS2__UART2_CTS,
116 MX35_PAD_RTS2__UART2_RTS,
117 MX35_PAD_TXD2__UART2_TXD_MUX,
118 MX35_PAD_RXD2__UART2_RXD_MUX,
119 /* I2S */
120 MX35_PAD_STXFS4__AUDMUX_AUD4_TXFS,
121 MX35_PAD_STXD4__AUDMUX_AUD4_TXD,
122 MX35_PAD_SRXD4__AUDMUX_AUD4_RXD,
123 MX35_PAD_SCK4__AUDMUX_AUD4_TXC,
124};
125
126#define GPIO_LED1 (2 * 32 + 29)
127#define GPIO_SWITCH1 (2 * 32 + 25)
128#define GPIO_LCDPWR (4)
129
130static void eukrea_mbimxsd_lcd_power_set(struct plat_lcd_data *pd,
131 unsigned int power)
132{
133 if (power)
134 gpio_direction_output(GPIO_LCDPWR, 1);
135 else
136 gpio_direction_output(GPIO_LCDPWR, 0);
137}
138
139static struct plat_lcd_data eukrea_mbimxsd_lcd_power_data = {
140 .set_power = eukrea_mbimxsd_lcd_power_set,
141};
142
143static struct platform_device eukrea_mbimxsd_lcd_powerdev = {
144 .name = "platform-lcd",
145 .dev.platform_data = &eukrea_mbimxsd_lcd_power_data,
146};
147
148static struct gpio_led eukrea_mbimxsd_leds[] = {
149 {
150 .name = "led1",
151 .default_trigger = "heartbeat",
152 .active_low = 1,
153 .gpio = GPIO_LED1,
154 },
155};
156
157static struct gpio_led_platform_data eukrea_mbimxsd_led_info = {
158 .leds = eukrea_mbimxsd_leds,
159 .num_leds = ARRAY_SIZE(eukrea_mbimxsd_leds),
160};
161
162static struct platform_device eukrea_mbimxsd_leds_gpio = {
163 .name = "leds-gpio",
164 .id = -1,
165 .dev = {
166 .platform_data = &eukrea_mbimxsd_led_info,
167 },
168};
169
170static struct gpio_keys_button eukrea_mbimxsd_gpio_buttons[] = {
171 {
172 .gpio = GPIO_SWITCH1,
173 .code = BTN_0,
174 .desc = "BP1",
175 .active_low = 1,
176 .wakeup = 1,
177 },
178};
179
180static struct gpio_keys_platform_data eukrea_mbimxsd_button_data = {
181 .buttons = eukrea_mbimxsd_gpio_buttons,
182 .nbuttons = ARRAY_SIZE(eukrea_mbimxsd_gpio_buttons),
183};
184
185static struct platform_device eukrea_mbimxsd_button_device = {
186 .name = "gpio-keys",
187 .id = -1,
188 .num_resources = 0,
189 .dev = {
190 .platform_data = &eukrea_mbimxsd_button_data,
191 }
192};
193
194static struct platform_device *platform_devices[] __initdata = {
195 &eukrea_mbimxsd_leds_gpio,
196 &eukrea_mbimxsd_button_device,
197 &eukrea_mbimxsd_lcd_powerdev,
198};
199
Uwe Kleine-König2dcf78c2010-06-30 12:16:24 +0200200static const struct imxuart_platform_data uart_pdata __initconst = {
Eric Bénard21744f12010-06-10 16:07:50 +0200201 .flags = IMXUART_HAVE_RTSCTS,
202};
203
204static struct i2c_board_info eukrea_mbimxsd_i2c_devices[] = {
205 {
206 I2C_BOARD_INFO("tlv320aic23", 0x1a),
207 },
208};
209
210struct imx_ssi_platform_data eukrea_mbimxsd_ssi_pdata = {
211 .flags = IMX_SSI_SYN | IMX_SSI_NET | IMX_SSI_USE_I2S_SLAVE,
212};
213
214/*
215 * system init for baseboard usage. Will be called by cpuimx35 init.
216 *
217 * Add platform devices present on this baseboard and init
218 * them from CPU side as far as required to use them later on
219 */
220void __init eukrea_mbimxsd_baseboard_init(void)
221{
222 if (mxc_iomux_v3_setup_multiple_pads(eukrea_mbimxsd_pads,
223 ARRAY_SIZE(eukrea_mbimxsd_pads)))
224 printk(KERN_ERR "error setting mbimxsd pads !\n");
225
226#if defined(CONFIG_SND_SOC_EUKREA_TLV320)
227 /* SSI unit master I2S codec connected to SSI_AUD4 */
228 mxc_audmux_v2_configure_port(0,
229 MXC_AUDMUX_V2_PTCR_SYN |
230 MXC_AUDMUX_V2_PTCR_TFSDIR |
231 MXC_AUDMUX_V2_PTCR_TFSEL(3) |
232 MXC_AUDMUX_V2_PTCR_TCLKDIR |
233 MXC_AUDMUX_V2_PTCR_TCSEL(3),
234 MXC_AUDMUX_V2_PDCR_RXDSEL(3)
235 );
236 mxc_audmux_v2_configure_port(3,
237 MXC_AUDMUX_V2_PTCR_SYN,
238 MXC_AUDMUX_V2_PDCR_RXDSEL(0)
239 );
240#endif
241
Uwe Kleine-König2dcf78c2010-06-30 12:16:24 +0200242 imx35_add_imx_uart1(&uart_pdata);
Eric Bénard21744f12010-06-10 16:07:50 +0200243 mxc_register_device(&mx3_ipu, &mx3_ipu_data);
244 mxc_register_device(&mx3_fb, &mx3fb_pdata);
245
246 mxc_register_device(&imx_ssi_device0, &eukrea_mbimxsd_ssi_pdata);
247
248 gpio_request(GPIO_LED1, "LED1");
249 gpio_direction_output(GPIO_LED1, 1);
250 gpio_free(GPIO_LED1);
251
252 gpio_request(GPIO_SWITCH1, "SWITCH1");
253 gpio_direction_input(GPIO_SWITCH1);
254 gpio_free(GPIO_SWITCH1);
255
256 gpio_request(GPIO_LCDPWR, "LCDPWR");
257 gpio_direction_output(GPIO_LCDPWR, 1);
258 gpio_free(GPIO_SWITCH1);
259
260 i2c_register_board_info(0, eukrea_mbimxsd_i2c_devices,
261 ARRAY_SIZE(eukrea_mbimxsd_i2c_devices));
262
263 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
264}