Merge git://git.infradead.org/battery-2.6
[pandora-kernel.git] / arch / arm / mach-mx2 / mx21ads.c
1 /*
2  *  Copyright (C) 2000 Deep Blue Solutions Ltd
3  *  Copyright (C) 2002 Shane Nay (shane@minirl.com)
4  *  Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <linux/platform_device.h>
22 #include <linux/mtd/mtd.h>
23 #include <linux/mtd/physmap.h>
24 #include <linux/gpio.h>
25 #include <mach/common.h>
26 #include <mach/hardware.h>
27 #include <asm/mach-types.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/time.h>
30 #include <asm/mach/map.h>
31 #include <mach/imx-uart.h>
32 #include <mach/imxfb.h>
33 #include <mach/iomux.h>
34 #include <mach/mxc_nand.h>
35 #include <mach/mmc.h>
36 #include <mach/board-mx21ads.h>
37
38 #include "devices.h"
39
40 static unsigned int mx21ads_pins[] = {
41
42         /* CS8900A */
43         (GPIO_PORTE | GPIO_GPIO | GPIO_IN | 11),
44
45         /* UART1 */
46         PE12_PF_UART1_TXD,
47         PE13_PF_UART1_RXD,
48         PE14_PF_UART1_CTS,
49         PE15_PF_UART1_RTS,
50
51         /* UART3 (IrDA) - only TXD and RXD */
52         PE8_PF_UART3_TXD,
53         PE9_PF_UART3_RXD,
54
55         /* UART4 */
56         PB26_AF_UART4_RTS,
57         PB28_AF_UART4_TXD,
58         PB29_AF_UART4_CTS,
59         PB31_AF_UART4_RXD,
60
61         /* LCDC */
62         PA5_PF_LSCLK,
63         PA6_PF_LD0,
64         PA7_PF_LD1,
65         PA8_PF_LD2,
66         PA9_PF_LD3,
67         PA10_PF_LD4,
68         PA11_PF_LD5,
69         PA12_PF_LD6,
70         PA13_PF_LD7,
71         PA14_PF_LD8,
72         PA15_PF_LD9,
73         PA16_PF_LD10,
74         PA17_PF_LD11,
75         PA18_PF_LD12,
76         PA19_PF_LD13,
77         PA20_PF_LD14,
78         PA21_PF_LD15,
79         PA22_PF_LD16,
80         PA24_PF_REV,     /* Sharp panel dedicated signal */
81         PA25_PF_CLS,     /* Sharp panel dedicated signal */
82         PA26_PF_PS,      /* Sharp panel dedicated signal */
83         PA27_PF_SPL_SPR, /* Sharp panel dedicated signal */
84         PA28_PF_HSYNC,
85         PA29_PF_VSYNC,
86         PA30_PF_CONTRAST,
87         PA31_PF_OE_ACD,
88
89         /* MMC/SDHC */
90         PE18_PF_SD1_D0,
91         PE19_PF_SD1_D1,
92         PE20_PF_SD1_D2,
93         PE21_PF_SD1_D3,
94         PE22_PF_SD1_CMD,
95         PE23_PF_SD1_CLK,
96
97         /* NFC */
98         PF0_PF_NRFB,
99         PF1_PF_NFCE,
100         PF2_PF_NFWP,
101         PF3_PF_NFCLE,
102         PF4_PF_NFALE,
103         PF5_PF_NFRE,
104         PF6_PF_NFWE,
105         PF7_PF_NFIO0,
106         PF8_PF_NFIO1,
107         PF9_PF_NFIO2,
108         PF10_PF_NFIO3,
109         PF11_PF_NFIO4,
110         PF12_PF_NFIO5,
111         PF13_PF_NFIO6,
112         PF14_PF_NFIO7,
113 };
114
115 /* ADS's NOR flash: 2x AM29BDS128HE9VKI on 32-bit bus */
116 static struct physmap_flash_data mx21ads_flash_data = {
117         .width = 4,
118 };
119
120 static struct resource mx21ads_flash_resource = {
121         .start = CS0_BASE_ADDR,
122         .end = CS0_BASE_ADDR + 0x02000000 - 1,
123         .flags = IORESOURCE_MEM,
124 };
125
126 static struct platform_device mx21ads_nor_mtd_device = {
127         .name = "physmap-flash",
128         .id = 0,
129         .dev = {
130                 .platform_data = &mx21ads_flash_data,
131         },
132         .num_resources = 1,
133         .resource = &mx21ads_flash_resource,
134 };
135
136 static struct imxuart_platform_data uart_pdata = {
137         .flags = IMXUART_HAVE_RTSCTS,
138 };
139
140 static struct imxuart_platform_data uart_norts_pdata = {
141 };
142
143
144 static int mx21ads_fb_init(struct platform_device *pdev)
145 {
146         u16 tmp;
147
148         tmp = __raw_readw(MX21ADS_IO_REG);
149         tmp |= MX21ADS_IO_LCDON;
150         __raw_writew(tmp, MX21ADS_IO_REG);
151         return 0;
152 }
153
154 static void mx21ads_fb_exit(struct platform_device *pdev)
155 {
156         u16 tmp;
157
158         tmp = __raw_readw(MX21ADS_IO_REG);
159         tmp &= ~MX21ADS_IO_LCDON;
160         __raw_writew(tmp, MX21ADS_IO_REG);
161 }
162
163 /*
164  * Connected is a portrait Sharp-QVGA display
165  * of type: LQ035Q7DB02
166  */
167 static struct imx_fb_platform_data mx21ads_fb_data = {
168         .pixclock       = 188679, /* in ps */
169         .xres           = 240,
170         .yres           = 320,
171
172         .bpp            = 16,
173         .hsync_len      = 2,
174         .left_margin    = 6,
175         .right_margin   = 16,
176
177         .vsync_len      = 1,
178         .upper_margin   = 8,
179         .lower_margin   = 10,
180         .fixed_screen_cpu = 0,
181
182         .pcr            = 0xFB108BC7,
183         .pwmr           = 0x00A901ff,
184         .lscr1          = 0x00120300,
185         .dmacr          = 0x00020008,
186
187         .init = mx21ads_fb_init,
188         .exit = mx21ads_fb_exit,
189 };
190
191 static int mx21ads_sdhc_get_ro(struct device *dev)
192 {
193         return (__raw_readw(MX21ADS_IO_REG) & MX21ADS_IO_SD_WP) ? 1 : 0;
194 }
195
196 static int mx21ads_sdhc_init(struct device *dev, irq_handler_t detect_irq,
197         void *data)
198 {
199         int ret;
200
201         ret = request_irq(IRQ_GPIOD(25), detect_irq,
202                 IRQF_TRIGGER_FALLING, "mmc-detect", data);
203         if (ret)
204                 goto out;
205         return 0;
206 out:
207         return ret;
208 }
209
210 static void mx21ads_sdhc_exit(struct device *dev, void *data)
211 {
212         free_irq(IRQ_GPIOD(25), data);
213 }
214
215 static struct imxmmc_platform_data mx21ads_sdhc_pdata = {
216         .ocr_avail = MMC_VDD_29_30 | MMC_VDD_30_31, /* 3.0V */
217         .get_ro = mx21ads_sdhc_get_ro,
218         .init = mx21ads_sdhc_init,
219         .exit = mx21ads_sdhc_exit,
220 };
221
222 static struct mxc_nand_platform_data mx21ads_nand_board_info = {
223         .width = 1,
224         .hw_ecc = 1,
225 };
226
227 static struct map_desc mx21ads_io_desc[] __initdata = {
228         /*
229          * Memory-mapped I/O on MX21ADS Base board:
230          *   - CS8900A Ethernet controller
231          *   - ST16C2552CJ UART
232          *   - CPU and Base board version
233          *   - Base board I/O register
234          */
235         {
236                 .virtual = MX21ADS_MMIO_BASE_ADDR,
237                 .pfn = __phys_to_pfn(CS1_BASE_ADDR),
238                 .length = MX21ADS_MMIO_SIZE,
239                 .type = MT_DEVICE,
240         },
241 };
242
243 static void __init mx21ads_map_io(void)
244 {
245         mx21_map_io();
246         iotable_init(mx21ads_io_desc, ARRAY_SIZE(mx21ads_io_desc));
247 }
248
249 static struct platform_device *platform_devices[] __initdata = {
250         &mx21ads_nor_mtd_device,
251 };
252
253 static void __init mx21ads_board_init(void)
254 {
255         mxc_gpio_setup_multiple_pins(mx21ads_pins, ARRAY_SIZE(mx21ads_pins),
256                         "mx21ads");
257
258         mxc_register_device(&mxc_uart_device0, &uart_pdata);
259         mxc_register_device(&mxc_uart_device2, &uart_norts_pdata);
260         mxc_register_device(&mxc_uart_device3, &uart_pdata);
261         mxc_register_device(&mxc_fb_device, &mx21ads_fb_data);
262         mxc_register_device(&mxc_sdhc_device0, &mx21ads_sdhc_pdata);
263         mxc_register_device(&mxc_nand_device, &mx21ads_nand_board_info);
264
265         platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
266 }
267
268 static void __init mx21ads_timer_init(void)
269 {
270         mx21_clocks_init(32768, 26000000);
271 }
272
273 static struct sys_timer mx21ads_timer = {
274         .init   = mx21ads_timer_init,
275 };
276
277 MACHINE_START(MX21ADS, "Freescale i.MX21ADS")
278         /* maintainer: Freescale Semiconductor, Inc. */
279         .phys_io        = AIPI_BASE_ADDR,
280         .io_pg_offst    = ((AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc,
281         .boot_params    = PHYS_OFFSET + 0x100,
282         .map_io         = mx21ads_map_io,
283         .init_irq       = mxc_init_irq,
284         .init_machine   = mx21ads_board_init,
285         .timer          = &mx21ads_timer,
286 MACHINE_END