blob: 9be6c1e69d687d72fb764559acec849c83fa5a39 [file] [log] [blame]
Eric Bénard70b17262010-10-12 16:12:36 +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>
Eric Bénard70b17262010-10-12 16:12:36 +020027#include <linux/leds.h>
28#include <linux/platform_device.h>
Eric Bénard70b17262010-10-12 16:12:36 +020029#include <linux/input.h>
30#include <linux/i2c.h>
Denis Carikli13d1dd82012-05-08 09:20:24 +020031#include <video/platform_lcd.h>
32#include <linux/backlight.h>
Eric Bénard70b17262010-10-12 16:12:36 +020033
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
Shawn Guoe3372472012-09-13 21:01:00 +080039#include "common.h"
Eric Bénard70b17262010-10-12 16:12:36 +020040#include "devices-imx51.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080041#include "hardware.h"
Shawn Guo267dd342012-09-13 13:26:00 +080042#include "iomux-mx51.h"
Eric Bénard70b17262010-10-12 16:12:36 +020043
Eric Bénard53a02d12012-05-08 09:20:27 +020044static iomux_v3_cfg_t eukrea_mbimxsd51_pads[] = {
Eric Bénard70b17262010-10-12 16:12:36 +020045 /* LED */
Sascha Haueree1ae4d2010-12-15 09:56:35 +010046 MX51_PAD_NANDF_D10__GPIO3_30,
Eric Bénard70b17262010-10-12 16:12:36 +020047 /* SWITCH */
Troy Kisky7242e242011-08-13 12:51:41 -070048 NEW_PAD_CTRL(MX51_PAD_NANDF_D9__GPIO3_31, PAD_CTL_PUS_22K_UP |
Sascha Haueree1ae4d2010-12-15 09:56:35 +010049 PAD_CTL_PKE | PAD_CTL_SRE_FAST |
50 PAD_CTL_DSE_HIGH | PAD_CTL_PUE | PAD_CTL_HYS),
Eric Bénard70b17262010-10-12 16:12:36 +020051 /* UART2 */
52 MX51_PAD_UART2_RXD__UART2_RXD,
53 MX51_PAD_UART2_TXD__UART2_TXD,
54 /* UART 3 */
55 MX51_PAD_UART3_RXD__UART3_RXD,
56 MX51_PAD_UART3_TXD__UART3_TXD,
57 MX51_PAD_KEY_COL4__UART3_RTS,
58 MX51_PAD_KEY_COL5__UART3_CTS,
59 /* SD */
60 MX51_PAD_SD1_CMD__SD1_CMD,
61 MX51_PAD_SD1_CLK__SD1_CLK,
62 MX51_PAD_SD1_DATA0__SD1_DATA0,
63 MX51_PAD_SD1_DATA1__SD1_DATA1,
64 MX51_PAD_SD1_DATA2__SD1_DATA2,
65 MX51_PAD_SD1_DATA3__SD1_DATA3,
Eric Bénardef560bf2011-02-25 14:38:31 +010066 /* SD1 CD */
Troy Kisky7242e242011-08-13 12:51:41 -070067 NEW_PAD_CTRL(MX51_PAD_GPIO1_0__SD1_CD, PAD_CTL_PUS_22K_UP |
Eric Bénardef560bf2011-02-25 14:38:31 +010068 PAD_CTL_PKE | PAD_CTL_SRE_FAST |
69 PAD_CTL_DSE_HIGH | PAD_CTL_PUE | PAD_CTL_HYS),
Eric Bénard932d67d2012-05-08 09:20:22 +020070 /* SSI */
71 MX51_PAD_AUD3_BB_TXD__AUD3_TXD,
72 MX51_PAD_AUD3_BB_RXD__AUD3_RXD,
73 MX51_PAD_AUD3_BB_CK__AUD3_TXC,
74 MX51_PAD_AUD3_BB_FS__AUD3_TXFS,
Denis Carikli13d1dd82012-05-08 09:20:24 +020075 /* LCD Backlight */
76 MX51_PAD_DI1_D1_CS__GPIO3_4,
77 /* LCD RST */
78 MX51_PAD_CSI1_D9__GPIO3_13,
Eric Bénard70b17262010-10-12 16:12:36 +020079};
80
Arnaud Patard (Rtp)96886c42010-11-26 15:20:52 +010081#define GPIO_LED1 IMX_GPIO_NR(3, 30)
82#define GPIO_SWITCH1 IMX_GPIO_NR(3, 31)
Denis Carikli13d1dd82012-05-08 09:20:24 +020083#define GPIO_LCDRST IMX_GPIO_NR(3, 13)
84#define GPIO_LCDBL IMX_GPIO_NR(3, 4)
85
86static void eukrea_mbimxsd51_lcd_power_set(struct plat_lcd_data *pd,
87 unsigned int power)
88{
89 if (power)
90 gpio_direction_output(GPIO_LCDRST, 1);
91 else
92 gpio_direction_output(GPIO_LCDRST, 0);
93}
94
95static struct plat_lcd_data eukrea_mbimxsd51_lcd_power_data = {
96 .set_power = eukrea_mbimxsd51_lcd_power_set,
97};
98
99static struct platform_device eukrea_mbimxsd51_lcd_powerdev = {
100 .name = "platform-lcd",
101 .dev.platform_data = &eukrea_mbimxsd51_lcd_power_data,
102};
103
104static void eukrea_mbimxsd51_bl_set_intensity(int intensity)
105{
106 if (intensity)
107 gpio_direction_output(GPIO_LCDBL, 1);
108 else
109 gpio_direction_output(GPIO_LCDBL, 0);
110}
111
112static struct generic_bl_info eukrea_mbimxsd51_bl_info = {
113 .name = "eukrea_mbimxsd51-bl",
114 .max_intensity = 0xff,
115 .default_intensity = 0xff,
116 .set_bl_intensity = eukrea_mbimxsd51_bl_set_intensity,
117};
118
119static struct platform_device eukrea_mbimxsd51_bl_dev = {
120 .name = "generic-bl",
121 .id = 1,
122 .dev = {
123 .platform_data = &eukrea_mbimxsd51_bl_info,
124 },
125};
Eric Bénard70b17262010-10-12 16:12:36 +0200126
Eric Bénard53a02d12012-05-08 09:20:27 +0200127static const struct gpio_led eukrea_mbimxsd51_leds[] __initconst = {
Eric Bénard70b17262010-10-12 16:12:36 +0200128 {
129 .name = "led1",
130 .default_trigger = "heartbeat",
131 .active_low = 1,
132 .gpio = GPIO_LED1,
133 },
134};
135
Uwe Kleine-König5b8d6282011-05-28 21:05:02 +0200136static const struct gpio_led_platform_data
Eric Bénard53a02d12012-05-08 09:20:27 +0200137 eukrea_mbimxsd51_led_info __initconst = {
138 .leds = eukrea_mbimxsd51_leds,
139 .num_leds = ARRAY_SIZE(eukrea_mbimxsd51_leds),
Eric Bénard70b17262010-10-12 16:12:36 +0200140};
141
Eric Bénard53a02d12012-05-08 09:20:27 +0200142static struct gpio_keys_button eukrea_mbimxsd51_gpio_buttons[] = {
Eric Bénard70b17262010-10-12 16:12:36 +0200143 {
144 .gpio = GPIO_SWITCH1,
145 .code = BTN_0,
146 .desc = "BP1",
147 .active_low = 1,
148 .wakeup = 1,
149 },
150};
151
Uwe Kleine-König53094982011-02-28 18:04:33 +0100152static const struct gpio_keys_platform_data
Eric Bénard53a02d12012-05-08 09:20:27 +0200153 eukrea_mbimxsd51_button_data __initconst = {
154 .buttons = eukrea_mbimxsd51_gpio_buttons,
155 .nbuttons = ARRAY_SIZE(eukrea_mbimxsd51_gpio_buttons),
Eric Bénard70b17262010-10-12 16:12:36 +0200156};
157
Eric Bénard70b17262010-10-12 16:12:36 +0200158static const struct imxuart_platform_data uart_pdata __initconst = {
159 .flags = IMXUART_HAVE_RTSCTS,
160};
161
Eric Bénard53a02d12012-05-08 09:20:27 +0200162static struct i2c_board_info eukrea_mbimxsd51_i2c_devices[] = {
Eric Bénard70b17262010-10-12 16:12:36 +0200163 {
164 I2C_BOARD_INFO("tlv320aic23", 0x1a),
165 },
166};
167
Eric Bénard932d67d2012-05-08 09:20:22 +0200168static const
Eric Bénard53a02d12012-05-08 09:20:27 +0200169struct imx_ssi_platform_data eukrea_mbimxsd51_ssi_pdata __initconst = {
Eric Bénard932d67d2012-05-08 09:20:22 +0200170 .flags = IMX_SSI_SYN | IMX_SSI_NET | IMX_SSI_USE_I2S_SLAVE,
171};
172
Denis Carikli13d1dd82012-05-08 09:20:24 +0200173static int screen_type;
174
175static int __init eukrea_mbimxsd51_screen_type(char *options)
176{
177 if (!strcmp(options, "dvi"))
178 screen_type = 1;
179 else if (!strcmp(options, "tft"))
180 screen_type = 0;
181
182 return 0;
183}
184__setup("screen_type=", eukrea_mbimxsd51_screen_type);
185
Eric Bénard70b17262010-10-12 16:12:36 +0200186/*
187 * system init for baseboard usage. Will be called by cpuimx51sd init.
188 *
189 * Add platform devices present on this baseboard and init
190 * them from CPU side as far as required to use them later on
191 */
192void __init eukrea_mbimxsd51_baseboard_init(void)
193{
Eric Bénard53a02d12012-05-08 09:20:27 +0200194 if (mxc_iomux_v3_setup_multiple_pads(eukrea_mbimxsd51_pads,
195 ARRAY_SIZE(eukrea_mbimxsd51_pads)))
Eric Bénard70b17262010-10-12 16:12:36 +0200196 printk(KERN_ERR "error setting mbimxsd pads !\n");
197
198 imx51_add_imx_uart(1, NULL);
199 imx51_add_imx_uart(2, &uart_pdata);
200
Uwe Kleine-König124bf942010-11-19 21:03:33 +0100201 imx51_add_sdhci_esdhc_imx(0, NULL);
Eric Bénard70b17262010-10-12 16:12:36 +0200202
Eric Bénard53a02d12012-05-08 09:20:27 +0200203 imx51_add_imx_ssi(0, &eukrea_mbimxsd51_ssi_pdata);
Eric Bénard932d67d2012-05-08 09:20:22 +0200204
Eric Bénard70b17262010-10-12 16:12:36 +0200205 gpio_request(GPIO_LED1, "LED1");
206 gpio_direction_output(GPIO_LED1, 1);
207 gpio_free(GPIO_LED1);
208
209 gpio_request(GPIO_SWITCH1, "SWITCH1");
210 gpio_direction_input(GPIO_SWITCH1);
211 gpio_free(GPIO_SWITCH1);
212
Denis Carikli13d1dd82012-05-08 09:20:24 +0200213 gpio_request(GPIO_LCDRST, "LCDRST");
214 gpio_direction_output(GPIO_LCDRST, 0);
215 gpio_request(GPIO_LCDBL, "LCDBL");
216 gpio_direction_output(GPIO_LCDBL, 0);
217 if (!screen_type) {
218 platform_device_register(&eukrea_mbimxsd51_bl_dev);
219 platform_device_register(&eukrea_mbimxsd51_lcd_powerdev);
220 } else {
221 gpio_free(GPIO_LCDRST);
222 gpio_free(GPIO_LCDBL);
223 }
224
Eric Bénard53a02d12012-05-08 09:20:27 +0200225 i2c_register_board_info(0, eukrea_mbimxsd51_i2c_devices,
226 ARRAY_SIZE(eukrea_mbimxsd51_i2c_devices));
Eric Bénard70b17262010-10-12 16:12:36 +0200227
Eric Bénard53a02d12012-05-08 09:20:27 +0200228 gpio_led_register_device(-1, &eukrea_mbimxsd51_led_info);
229 imx_add_gpio_keys(&eukrea_mbimxsd51_button_data);
Fabio Estevamda75c922012-09-22 12:27:31 -0300230 imx_add_platform_device("eukrea_tlv320", 0, NULL, 0, NULL, 0);
Eric Bénard70b17262010-10-12 16:12:36 +0200231}