blob: 90268a51f1faf258615997d3468aed932f2a15e5 [file] [log] [blame]
Juergen Beisert80eedae2008-07-05 10:03:00 +02001/*
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/map.h>
24#include <linux/mtd/partitions.h>
25#include <linux/mtd/physmap.h>
Vladimir Barinovc9812142009-04-29 04:00:50 +040026#include <linux/i2c.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/common.h>
28#include <mach/hardware.h>
Juergen Beisert80eedae2008-07-05 10:03:00 +020029#include <asm/mach-types.h>
30#include <asm/mach/arch.h>
31#include <asm/mach/time.h>
32#include <asm/mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/gpio.h>
34#include <mach/imx-uart.h>
Holger Schurigccfe30a2009-01-29 10:07:50 +010035#include <mach/iomux.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010036#include <mach/board-mx27ads.h>
Vladimir Barinov8d4fd252009-04-29 04:00:49 +040037#include <mach/mxc_nand.h>
Vladimir Barinovc9812142009-04-29 04:00:50 +040038#include <mach/i2c.h>
Vladimir Barinov11cda132009-04-29 04:00:51 +040039#include <mach/imxfb.h>
Juergen Beisert80eedae2008-07-05 10:03:00 +020040
Sascha Hauer7e905342008-09-09 10:19:41 +020041#include "devices.h"
42
Vladimir Barinovc1a6f122009-04-29 04:00:48 +040043static unsigned int mx27ads_pins[] = {
44 /* UART0 */
45 PE12_PF_UART1_TXD,
46 PE13_PF_UART1_RXD,
47 PE14_PF_UART1_CTS,
48 PE15_PF_UART1_RTS,
49 /* UART1 */
50 PE3_PF_UART2_CTS,
51 PE4_PF_UART2_RTS,
52 PE6_PF_UART2_TXD,
53 PE7_PF_UART2_RXD,
54 /* UART2 */
55 PE8_PF_UART3_TXD,
56 PE9_PF_UART3_RXD,
57 PE10_PF_UART3_CTS,
58 PE11_PF_UART3_RTS,
59 /* UART3 */
60 PB26_AF_UART4_RTS,
61 PB28_AF_UART4_TXD,
62 PB29_AF_UART4_CTS,
63 PB31_AF_UART4_RXD,
64 /* UART4 */
65 PB18_AF_UART5_TXD,
66 PB19_AF_UART5_RXD,
67 PB20_AF_UART5_CTS,
68 PB21_AF_UART5_RTS,
69 /* UART5 */
70 PB10_AF_UART6_TXD,
71 PB12_AF_UART6_CTS,
72 PB11_AF_UART6_RXD,
73 PB13_AF_UART6_RTS,
74 /* FEC */
75 PD0_AIN_FEC_TXD0,
76 PD1_AIN_FEC_TXD1,
77 PD2_AIN_FEC_TXD2,
78 PD3_AIN_FEC_TXD3,
79 PD4_AOUT_FEC_RX_ER,
80 PD5_AOUT_FEC_RXD1,
81 PD6_AOUT_FEC_RXD2,
82 PD7_AOUT_FEC_RXD3,
83 PD8_AF_FEC_MDIO,
84 PD9_AIN_FEC_MDC,
85 PD10_AOUT_FEC_CRS,
86 PD11_AOUT_FEC_TX_CLK,
87 PD12_AOUT_FEC_RXD0,
88 PD13_AOUT_FEC_RX_DV,
89 PD14_AOUT_FEC_RX_CLK,
90 PD15_AOUT_FEC_COL,
91 PD16_AIN_FEC_TX_ER,
92 PF23_AIN_FEC_TX_EN,
Vladimir Barinovc9812142009-04-29 04:00:50 +040093 /* I2C2 */
94 PC5_PF_I2C2_SDA,
95 PC6_PF_I2C2_SCL,
Vladimir Barinov11cda132009-04-29 04:00:51 +040096 /* FB */
97 PA5_PF_LSCLK,
98 PA6_PF_LD0,
99 PA7_PF_LD1,
100 PA8_PF_LD2,
101 PA9_PF_LD3,
102 PA10_PF_LD4,
103 PA11_PF_LD5,
104 PA12_PF_LD6,
105 PA13_PF_LD7,
106 PA14_PF_LD8,
107 PA15_PF_LD9,
108 PA16_PF_LD10,
109 PA17_PF_LD11,
110 PA18_PF_LD12,
111 PA19_PF_LD13,
112 PA20_PF_LD14,
113 PA21_PF_LD15,
114 PA22_PF_LD16,
115 PA23_PF_LD17,
116 PA24_PF_REV,
117 PA25_PF_CLS,
118 PA26_PF_PS,
119 PA27_PF_SPL_SPR,
120 PA28_PF_HSYNC,
121 PA29_PF_VSYNC,
122 PA30_PF_CONTRAST,
123 PA31_PF_OE_ACD,
Vladimir Barinov9366d8f2009-04-29 04:00:52 +0400124 /* OWIRE */
125 PE16_AF_OWIRE,
Vladimir Barinovc1a6f122009-04-29 04:00:48 +0400126};
127
Vladimir Barinov8d4fd252009-04-29 04:00:49 +0400128static struct mxc_nand_platform_data mx27ads_nand_board_info = {
129 .width = 1,
130 .hw_ecc = 1,
131};
132
Juergen Beisert80eedae2008-07-05 10:03:00 +0200133/* ADS's NOR flash */
134static struct physmap_flash_data mx27ads_flash_data = {
135 .width = 2,
136};
137
138static struct resource mx27ads_flash_resource = {
139 .start = 0xc0000000,
140 .end = 0xc0000000 + 0x02000000 - 1,
141 .flags = IORESOURCE_MEM,
142
143};
144
145static struct platform_device mx27ads_nor_mtd_device = {
146 .name = "physmap-flash",
147 .id = 0,
148 .dev = {
149 .platform_data = &mx27ads_flash_data,
150 },
151 .num_resources = 1,
152 .resource = &mx27ads_flash_resource,
153};
154
Vladimir Barinovc9812142009-04-29 04:00:50 +0400155static struct imxi2c_platform_data mx27ads_i2c_data = {
156 .bitrate = 100000,
157};
158
159static struct i2c_board_info mx27ads_i2c_devices[] = {
160};
161
Vladimir Barinov11cda132009-04-29 04:00:51 +0400162void lcd_power(int on)
163{
164 if (on)
165 __raw_writew(PBC_BCTRL1_LCDON, PBC_BCTRL1_SET_REG);
166 else
167 __raw_writew(PBC_BCTRL1_LCDON, PBC_BCTRL1_CLEAR_REG);
168}
169
170static struct imx_fb_platform_data mx27ads_fb_data = {
171 .pixclock = 188679,
172 .xres = 240,
173 .yres = 320,
174
175 .bpp = 16,
176 .hsync_len = 1,
177 .left_margin = 9,
178 .right_margin = 16,
179
180 .vsync_len = 1,
181 .upper_margin = 7,
182 .lower_margin = 9,
183 .fixed_screen_cpu = 0,
184
185 /*
186 * - HSYNC active high
187 * - VSYNC active high
188 * - clk notenabled while idle
189 * - clock inverted
190 * - data not inverted
191 * - data enable low active
192 * - enable sharp mode
193 */
194 .pcr = 0xFB008BC0,
195 .pwmr = 0x00A903FF,
196 .lscr1 = 0x00120300,
197 .dmacr = 0x00020010,
198
199 .lcd_power = lcd_power,
200};
201
Juergen Beisert80eedae2008-07-05 10:03:00 +0200202static struct platform_device *platform_devices[] __initdata = {
203 &mx27ads_nor_mtd_device,
Sascha Hauer879fea12009-01-26 17:26:02 +0100204 &mxc_fec_device,
Vladimir Barinov9366d8f2009-04-29 04:00:52 +0400205 &mxc_w1_master_device,
Juergen Beisert80eedae2008-07-05 10:03:00 +0200206};
207
Juergen Beisert80eedae2008-07-05 10:03:00 +0200208static struct imxuart_platform_data uart_pdata[] = {
209 {
Juergen Beisert80eedae2008-07-05 10:03:00 +0200210 .flags = IMXUART_HAVE_RTSCTS,
211 }, {
Juergen Beisert80eedae2008-07-05 10:03:00 +0200212 .flags = IMXUART_HAVE_RTSCTS,
213 }, {
Juergen Beisert80eedae2008-07-05 10:03:00 +0200214 .flags = IMXUART_HAVE_RTSCTS,
215 }, {
Juergen Beisert80eedae2008-07-05 10:03:00 +0200216 .flags = IMXUART_HAVE_RTSCTS,
217 }, {
Juergen Beisert80eedae2008-07-05 10:03:00 +0200218 .flags = IMXUART_HAVE_RTSCTS,
219 }, {
Juergen Beisert80eedae2008-07-05 10:03:00 +0200220 .flags = IMXUART_HAVE_RTSCTS,
221 },
222};
223
224static void __init mx27ads_board_init(void)
225{
Vladimir Barinovc1a6f122009-04-29 04:00:48 +0400226 mxc_gpio_setup_multiple_pins(mx27ads_pins, ARRAY_SIZE(mx27ads_pins),
227 "mx27ads");
Juergen Beisert80eedae2008-07-05 10:03:00 +0200228
Sascha Hauer7e905342008-09-09 10:19:41 +0200229 mxc_register_device(&mxc_uart_device0, &uart_pdata[0]);
230 mxc_register_device(&mxc_uart_device1, &uart_pdata[1]);
231 mxc_register_device(&mxc_uart_device2, &uart_pdata[2]);
232 mxc_register_device(&mxc_uart_device3, &uart_pdata[3]);
233 mxc_register_device(&mxc_uart_device4, &uart_pdata[4]);
234 mxc_register_device(&mxc_uart_device5, &uart_pdata[5]);
Vladimir Barinov8d4fd252009-04-29 04:00:49 +0400235 mxc_register_device(&mxc_nand_device, &mx27ads_nand_board_info);
Juergen Beisert80eedae2008-07-05 10:03:00 +0200236
Vladimir Barinovc9812142009-04-29 04:00:50 +0400237 /* only the i2c master 1 is used on this CPU card */
238 i2c_register_board_info(1, mx27ads_i2c_devices,
239 ARRAY_SIZE(mx27ads_i2c_devices));
240 mxc_register_device(&mxc_i2c_device1, &mx27ads_i2c_data);
Vladimir Barinov11cda132009-04-29 04:00:51 +0400241 mxc_register_device(&mxc_fb_device, &mx27ads_fb_data);
Vladimir Barinovc9812142009-04-29 04:00:50 +0400242
Juergen Beisert80eedae2008-07-05 10:03:00 +0200243 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
244}
245
246static void __init mx27ads_timer_init(void)
247{
248 unsigned long fref = 26000000;
249
250 if ((__raw_readw(PBC_VERSION_REG) & CKIH_27MHZ_BIT_SET) == 0)
251 fref = 27000000;
252
Sascha Hauer30c730f2009-02-16 14:36:49 +0100253 mx27_clocks_init(fref);
Juergen Beisert80eedae2008-07-05 10:03:00 +0200254}
255
Holger Schurig058b7a62009-01-26 16:34:51 +0100256static struct sys_timer mx27ads_timer = {
Juergen Beisert80eedae2008-07-05 10:03:00 +0200257 .init = mx27ads_timer_init,
258};
259
260static struct map_desc mx27ads_io_desc[] __initdata = {
261 {
262 .virtual = PBC_BASE_ADDRESS,
263 .pfn = __phys_to_pfn(CS4_BASE_ADDR),
264 .length = SZ_1M,
265 .type = MT_DEVICE,
266 },
267};
268
Holger Schurig058b7a62009-01-26 16:34:51 +0100269static void __init mx27ads_map_io(void)
Juergen Beisert80eedae2008-07-05 10:03:00 +0200270{
Sascha Hauercd4a05f2009-04-02 22:32:10 +0200271 mx27_map_io();
Juergen Beisert80eedae2008-07-05 10:03:00 +0200272 iotable_init(mx27ads_io_desc, ARRAY_SIZE(mx27ads_io_desc));
273}
274
275MACHINE_START(MX27ADS, "Freescale i.MX27ADS")
276 /* maintainer: Freescale Semiconductor, Inc. */
277 .phys_io = AIPI_BASE_ADDR,
278 .io_pg_offst = ((AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc,
279 .boot_params = PHYS_OFFSET + 0x100,
280 .map_io = mx27ads_map_io,
281 .init_irq = mxc_init_irq,
282 .init_machine = mx27ads_board_init,
283 .timer = &mx27ads_timer,
284MACHINE_END
285