blob: 99b0a6e30b2952395161a017ce4e25a0f2952067 [file] [log] [blame]
Daniel Mack1bc34f72009-05-20 19:54:34 +02001/*
2 * LILLY-1131 development board support
3 *
4 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
5 *
6 * based on code for other MX31 boards,
7 *
8 * Copyright 2005-2007 Freescale Semiconductor
9 * Copyright (c) 2009 Alberto Panizzo <maramaopercheseimorto@gmail.com>
10 * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
27#include <linux/kernel.h>
28#include <linux/types.h>
29#include <linux/init.h>
Daniel Mackd0b1eab2009-05-20 19:54:36 +020030#include <linux/gpio.h>
Daniel Mackb9923872009-05-20 19:54:37 +020031#include <linux/platform_device.h>
Daniel Mack1bc34f72009-05-20 19:54:34 +020032
33#include <asm/mach-types.h>
34#include <asm/mach/arch.h>
35#include <asm/mach/map.h>
36
37#include <mach/hardware.h>
38#include <mach/common.h>
39#include <mach/imx-uart.h>
40#include <mach/iomux-mx3.h>
41#include <mach/board-mx31lilly.h>
Daniel Mackd0b1eab2009-05-20 19:54:36 +020042#include <mach/mmc.h>
Daniel Mackb9923872009-05-20 19:54:37 +020043#include <mach/mx3fb.h>
44#include <mach/ipu.h>
Daniel Mack1bc34f72009-05-20 19:54:34 +020045
46#include "devices.h"
47
48/*
49 * This file contains board-specific initialization routines for the
50 * LILLY-1131 development board. If you design an own baseboard for the
51 * module, use this file as base for support code.
52 */
53
54static unsigned int lilly_db_board_pins[] __initdata = {
55 MX31_PIN_CTS1__CTS1,
56 MX31_PIN_RTS1__RTS1,
57 MX31_PIN_TXD1__TXD1,
58 MX31_PIN_RXD1__RXD1,
Daniel Mackd0b1eab2009-05-20 19:54:36 +020059 MX31_PIN_SD1_DATA3__SD1_DATA3,
60 MX31_PIN_SD1_DATA2__SD1_DATA2,
61 MX31_PIN_SD1_DATA1__SD1_DATA1,
62 MX31_PIN_SD1_DATA0__SD1_DATA0,
63 MX31_PIN_SD1_CLK__SD1_CLK,
64 MX31_PIN_SD1_CMD__SD1_CMD,
Daniel Mackb9923872009-05-20 19:54:37 +020065 MX31_PIN_LD0__LD0,
66 MX31_PIN_LD1__LD1,
67 MX31_PIN_LD2__LD2,
68 MX31_PIN_LD3__LD3,
69 MX31_PIN_LD4__LD4,
70 MX31_PIN_LD5__LD5,
71 MX31_PIN_LD6__LD6,
72 MX31_PIN_LD7__LD7,
73 MX31_PIN_LD8__LD8,
74 MX31_PIN_LD9__LD9,
75 MX31_PIN_LD10__LD10,
76 MX31_PIN_LD11__LD11,
77 MX31_PIN_LD12__LD12,
78 MX31_PIN_LD13__LD13,
79 MX31_PIN_LD14__LD14,
80 MX31_PIN_LD15__LD15,
81 MX31_PIN_LD16__LD16,
82 MX31_PIN_LD17__LD17,
83 MX31_PIN_VSYNC3__VSYNC3,
84 MX31_PIN_HSYNC__HSYNC,
85 MX31_PIN_FPSHIFT__FPSHIFT,
86 MX31_PIN_DRDY0__DRDY0,
87 MX31_PIN_CONTRAST__CONTRAST,
Daniel Mack1bc34f72009-05-20 19:54:34 +020088};
89
90/* UART */
91static struct imxuart_platform_data uart_pdata __initdata = {
92 .flags = IMXUART_HAVE_RTSCTS,
93};
94
Daniel Mackd0b1eab2009-05-20 19:54:36 +020095/* MMC support */
96
97static int mxc_mmc1_get_ro(struct device *dev)
98{
99 return gpio_get_value(IOMUX_TO_GPIO(MX31_PIN_LCS0));
100}
101
102static int gpio_det, gpio_wp;
103
104static int mxc_mmc1_init(struct device *dev,
105 irq_handler_t detect_irq, void *data)
106{
107 int ret;
108
109 gpio_det = IOMUX_TO_GPIO(MX31_PIN_GPIO1_1);
110 gpio_wp = IOMUX_TO_GPIO(MX31_PIN_LCS0);
111
112 ret = gpio_request(gpio_det, "MMC detect");
113 if (ret)
114 return ret;
115
116 ret = gpio_request(gpio_wp, "MMC w/p");
117 if (ret)
118 goto exit_free_det;
119
120 gpio_direction_input(gpio_det);
121 gpio_direction_input(gpio_wp);
122
123 ret = request_irq(IOMUX_TO_IRQ(MX31_PIN_GPIO1_1), detect_irq,
124 IRQF_DISABLED | IRQF_TRIGGER_FALLING,
125 "MMC detect", data);
126 if (ret)
127 goto exit_free_wp;
128
129 return 0;
130
131exit_free_wp:
132 gpio_free(gpio_wp);
133
134exit_free_det:
135 gpio_free(gpio_det);
136
137 return ret;
138}
139
140static void mxc_mmc1_exit(struct device *dev, void *data)
141{
142 gpio_free(gpio_det);
143 gpio_free(gpio_wp);
144 free_irq(IOMUX_TO_IRQ(MX31_PIN_GPIO1_1), data);
145}
146
147static struct imxmmc_platform_data mmc_pdata = {
148 .get_ro = mxc_mmc1_get_ro,
149 .init = mxc_mmc1_init,
150 .exit = mxc_mmc1_exit,
151};
152
Daniel Mackb9923872009-05-20 19:54:37 +0200153/* Framebuffer support */
154static struct ipu_platform_data ipu_data __initdata = {
155 .irq_base = MXC_IPU_IRQ_START,
156};
157
158static const struct fb_videomode fb_modedb = {
159 /* 640x480 TFT panel (IPS-056T) */
160 .name = "CRT-VGA",
161 .refresh = 64,
162 .xres = 640,
163 .yres = 480,
164 .pixclock = 30000,
165 .left_margin = 200,
166 .right_margin = 2,
167 .upper_margin = 2,
168 .lower_margin = 2,
169 .hsync_len = 3,
170 .vsync_len = 1,
171 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_OE_ACT_HIGH,
172 .vmode = FB_VMODE_NONINTERLACED,
173 .flag = 0,
174};
175
176static struct mx3fb_platform_data fb_pdata __initdata = {
177 .dma_dev = &mx3_ipu.dev,
178 .name = "CRT-VGA",
179 .mode = &fb_modedb,
180 .num_modes = 1,
181};
182
183#define LCD_VCC_EN_GPIO (7)
184
185static void __init mx31lilly_init_fb(void)
186{
187 if (gpio_request(LCD_VCC_EN_GPIO, "LCD enable") != 0) {
188 printk(KERN_WARNING "unable to request LCD_VCC_EN pin.\n");
189 return;
190 }
191
192 mxc_register_device(&mx3_ipu, &ipu_data);
193 mxc_register_device(&mx3_fb, &fb_pdata);
194 gpio_direction_output(LCD_VCC_EN_GPIO, 1);
195}
196
Daniel Mack1bc34f72009-05-20 19:54:34 +0200197void __init mx31lilly_db_init(void)
198{
199 mxc_iomux_setup_multiple_pins(lilly_db_board_pins,
200 ARRAY_SIZE(lilly_db_board_pins),
201 "development board pins");
202 mxc_register_device(&mxc_uart_device0, &uart_pdata);
Daniel Mackd0b1eab2009-05-20 19:54:36 +0200203 mxc_register_device(&mxcsdhc_device0, &mmc_pdata);
Daniel Mackb9923872009-05-20 19:54:37 +0200204 mx31lilly_init_fb();
Daniel Mack1bc34f72009-05-20 19:54:34 +0200205}
206