blob: dfd4156da7d5b1fe1b597d4ea9a44e598cdeeac7 [file] [log] [blame]
Juergen Beisert7e5e9f52008-07-05 10:03:00 +02001/*
2 * Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix
3 * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 * MA 02110-1301, USA.
18 */
19
20#include <linux/platform_device.h>
21#include <linux/mtd/physmap.h>
Sascha Hauer3620c0d2008-11-23 17:31:46 +010022#include <linux/mtd/plat-ram.h>
Juergen Beisert7e5e9f52008-07-05 10:03:00 +020023#include <asm/mach/arch.h>
24#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/common.h>
26#include <mach/hardware.h>
27#include <mach/iomux-mx1-mx2.h>
Juergen Beisert7e5e9f52008-07-05 10:03:00 +020028#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/imx-uart.h>
30#include <mach/board-pcm038.h>
Sascha Hauer01f71a32008-09-09 11:30:58 +020031#include <mach/mxc_nand.h>
Juergen Beisert7e5e9f52008-07-05 10:03:00 +020032
Sascha Hauer7e905342008-09-09 10:19:41 +020033#include "devices.h"
34
Juergen Beisert7e5e9f52008-07-05 10:03:00 +020035/*
Sascha Hauer3620c0d2008-11-23 17:31:46 +010036 * Phytec's PCM038 comes with 2MiB battery buffered SRAM,
37 * 16 bit width
38 */
39
40static struct platdata_mtd_ram pcm038_sram_data = {
41 .bankwidth = 2,
42};
43
44static struct resource pcm038_sram_resource = {
45 .start = CS1_BASE_ADDR,
46 .end = CS1_BASE_ADDR + 512 * 1024 - 1,
47 .flags = IORESOURCE_MEM,
48};
49
50static struct platform_device pcm038_sram_mtd_device = {
51 .name = "mtd-ram",
52 .id = 0,
53 .dev = {
54 .platform_data = &pcm038_sram_data,
55 },
56 .num_resources = 1,
57 .resource = &pcm038_sram_resource,
58};
59
60/*
Juergen Beisert7e5e9f52008-07-05 10:03:00 +020061 * Phytec's phyCORE-i.MX27 comes with 32MiB flash,
62 * 16 bit width
63 */
64static struct physmap_flash_data pcm038_flash_data = {
65 .width = 2,
66};
67
68static struct resource pcm038_flash_resource = {
69 .start = 0xc0000000,
70 .end = 0xc1ffffff,
71 .flags = IORESOURCE_MEM,
72};
73
74static struct platform_device pcm038_nor_mtd_device = {
75 .name = "physmap-flash",
76 .id = 0,
77 .dev = {
78 .platform_data = &pcm038_flash_data,
79 },
80 .num_resources = 1,
81 .resource = &pcm038_flash_resource,
82};
83
84static int mxc_uart0_pins[] = {
85 PE12_PF_UART1_TXD,
86 PE13_PF_UART1_RXD,
87 PE14_PF_UART1_CTS,
88 PE15_PF_UART1_RTS
89};
90
91static int uart_mxc_port0_init(struct platform_device *pdev)
92{
93 return mxc_gpio_setup_multiple_pins(mxc_uart0_pins,
Sascha Hauer7bd18222008-11-04 16:48:46 +010094 ARRAY_SIZE(mxc_uart0_pins), "UART0");
Juergen Beisert7e5e9f52008-07-05 10:03:00 +020095}
96
97static int uart_mxc_port0_exit(struct platform_device *pdev)
98{
Sascha Hauer7bd18222008-11-04 16:48:46 +010099 mxc_gpio_release_multiple_pins(mxc_uart0_pins,
100 ARRAY_SIZE(mxc_uart0_pins));
101 return 0;
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200102}
103
104static int mxc_uart1_pins[] = {
105 PE3_PF_UART2_CTS,
106 PE4_PF_UART2_RTS,
107 PE6_PF_UART2_TXD,
108 PE7_PF_UART2_RXD
109};
110
111static int uart_mxc_port1_init(struct platform_device *pdev)
112{
113 return mxc_gpio_setup_multiple_pins(mxc_uart1_pins,
Sascha Hauer7bd18222008-11-04 16:48:46 +0100114 ARRAY_SIZE(mxc_uart1_pins), "UART1");
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200115}
116
117static int uart_mxc_port1_exit(struct platform_device *pdev)
118{
Sascha Hauer7bd18222008-11-04 16:48:46 +0100119 mxc_gpio_release_multiple_pins(mxc_uart1_pins,
120 ARRAY_SIZE(mxc_uart1_pins));
121 return 0;
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200122}
123
124static int mxc_uart2_pins[] = { PE10_PF_UART3_CTS,
125 PE9_PF_UART3_RXD,
126 PE10_PF_UART3_CTS,
127 PE9_PF_UART3_RXD };
128
129static int uart_mxc_port2_init(struct platform_device *pdev)
130{
131 return mxc_gpio_setup_multiple_pins(mxc_uart2_pins,
Sascha Hauer7bd18222008-11-04 16:48:46 +0100132 ARRAY_SIZE(mxc_uart2_pins), "UART2");
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200133}
134
135static int uart_mxc_port2_exit(struct platform_device *pdev)
136{
Sascha Hauer7bd18222008-11-04 16:48:46 +0100137 mxc_gpio_release_multiple_pins(mxc_uart2_pins,
138 ARRAY_SIZE(mxc_uart2_pins));
139 return 0;
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200140}
141
142static struct imxuart_platform_data uart_pdata[] = {
143 {
144 .init = uart_mxc_port0_init,
145 .exit = uart_mxc_port0_exit,
146 .flags = IMXUART_HAVE_RTSCTS,
147 }, {
148 .init = uart_mxc_port1_init,
149 .exit = uart_mxc_port1_exit,
150 .flags = IMXUART_HAVE_RTSCTS,
151 }, {
152 .init = uart_mxc_port2_init,
153 .exit = uart_mxc_port2_exit,
154 .flags = IMXUART_HAVE_RTSCTS,
155 },
156};
157
158static int mxc_fec_pins[] = {
159 PD0_AIN_FEC_TXD0,
160 PD1_AIN_FEC_TXD1,
161 PD2_AIN_FEC_TXD2,
162 PD3_AIN_FEC_TXD3,
163 PD4_AOUT_FEC_RX_ER,
164 PD5_AOUT_FEC_RXD1,
165 PD6_AOUT_FEC_RXD2,
166 PD7_AOUT_FEC_RXD3,
167 PD8_AF_FEC_MDIO,
168 PD9_AIN_FEC_MDC,
169 PD10_AOUT_FEC_CRS,
170 PD11_AOUT_FEC_TX_CLK,
171 PD12_AOUT_FEC_RXD0,
172 PD13_AOUT_FEC_RX_DV,
173 PD14_AOUT_FEC_CLR,
174 PD15_AOUT_FEC_COL,
175 PD16_AIN_FEC_TX_ER,
176 PF23_AIN_FEC_TX_EN
177};
178
179static void gpio_fec_active(void)
180{
181 mxc_gpio_setup_multiple_pins(mxc_fec_pins,
Sascha Hauer7bd18222008-11-04 16:48:46 +0100182 ARRAY_SIZE(mxc_fec_pins), "FEC");
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200183}
184
185static void gpio_fec_inactive(void)
186{
Sascha Hauer7bd18222008-11-04 16:48:46 +0100187 mxc_gpio_release_multiple_pins(mxc_fec_pins,
188 ARRAY_SIZE(mxc_fec_pins));
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200189}
190
Sascha Hauer01f71a32008-09-09 11:30:58 +0200191static struct mxc_nand_platform_data pcm038_nand_board_info = {
192 .width = 1,
193 .hw_ecc = 1,
194};
195
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200196static struct platform_device *platform_devices[] __initdata = {
197 &pcm038_nor_mtd_device,
Sascha Hauerd40a0992008-12-01 14:15:40 -0800198 &mxc_w1_master_device,
Sascha Hauer3620c0d2008-11-23 17:31:46 +0100199 &pcm038_sram_mtd_device,
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200200};
201
Sascha Hauer3620c0d2008-11-23 17:31:46 +0100202/* On pcm038 there's a sram attached to CS1, we enable the chipselect here and
203 * setup other stuffs to access the sram. */
204static void __init pcm038_init_sram(void)
205{
206 __raw_writel(0x0000d843, CSCR_U(1));
207 __raw_writel(0x22252521, CSCR_L(1));
208 __raw_writel(0x22220a00, CSCR_A(1));
209}
210
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200211static void __init pcm038_init(void)
212{
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200213 gpio_fec_active();
Sascha Hauer3620c0d2008-11-23 17:31:46 +0100214 pcm038_init_sram();
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200215
Sascha Hauer7e905342008-09-09 10:19:41 +0200216 mxc_register_device(&mxc_uart_device0, &uart_pdata[0]);
217 mxc_register_device(&mxc_uart_device1, &uart_pdata[1]);
218 mxc_register_device(&mxc_uart_device2, &uart_pdata[2]);
Sascha Hauer01f71a32008-09-09 11:30:58 +0200219
Sascha Hauerd40a0992008-12-01 14:15:40 -0800220 mxc_gpio_mode(PE16_AF_RTCK); /* OWIRE */
Sascha Hauer01f71a32008-09-09 11:30:58 +0200221 mxc_register_device(&mxc_nand_device, &pcm038_nand_board_info);
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200222
223 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
Juergen Beisertff6552e2008-07-05 10:03:01 +0200224
225#ifdef CONFIG_MACH_PCM970_BASEBOARD
226 pcm970_baseboard_init();
227#endif
Juergen Beisert7e5e9f52008-07-05 10:03:00 +0200228}
229
230static void __init pcm038_timer_init(void)
231{
232 mxc_clocks_init(26000000);
233 mxc_timer_init("gpt_clk.0");
234}
235
236struct sys_timer pcm038_timer = {
237 .init = pcm038_timer_init,
238};
239
240MACHINE_START(PCM038, "phyCORE-i.MX27")
241 .phys_io = AIPI_BASE_ADDR,
242 .io_pg_offst = ((AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc,
243 .boot_params = PHYS_OFFSET + 0x100,
244 .map_io = mxc_map_io,
245 .init_irq = mxc_init_irq,
246 .init_machine = pcm038_init,
247 .timer = &pcm038_timer,
248MACHINE_END