]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mach-mx2/pcm038.c
[ARM] MX27: Add NAND resources
[mirror_ubuntu-artful-kernel.git] / arch / arm / mach-mx2 / pcm038.c
CommitLineData
7e5e9f54
JB
1/*
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>
3620c0dc 22#include <linux/mtd/plat-ram.h>
7e5e9f54
JB
23#include <asm/mach/arch.h>
24#include <asm/mach-types.h>
a09e64fb
RK
25#include <mach/common.h>
26#include <mach/hardware.h>
27#include <mach/iomux-mx1-mx2.h>
7e5e9f54 28#include <asm/mach/time.h>
a09e64fb
RK
29#include <mach/imx-uart.h>
30#include <mach/board-pcm038.h>
7e5e9f54 31
7e90534a
SH
32#include "devices.h"
33
3620c0dc
SH
34/*
35 * Phytec's PCM038 comes with 2MiB battery buffered SRAM,
36 * 16 bit width
37 */
38
39static struct platdata_mtd_ram pcm038_sram_data = {
40 .bankwidth = 2,
41};
42
43static struct resource pcm038_sram_resource = {
44 .start = CS1_BASE_ADDR,
45 .end = CS1_BASE_ADDR + 512 * 1024 - 1,
46 .flags = IORESOURCE_MEM,
47};
48
49static struct platform_device pcm038_sram_mtd_device = {
50 .name = "mtd-ram",
51 .id = 0,
52 .dev = {
53 .platform_data = &pcm038_sram_data,
54 },
55 .num_resources = 1,
56 .resource = &pcm038_sram_resource,
57};
58
7e5e9f54
JB
59/*
60 * Phytec's phyCORE-i.MX27 comes with 32MiB flash,
61 * 16 bit width
62 */
63static struct physmap_flash_data pcm038_flash_data = {
64 .width = 2,
65};
66
67static struct resource pcm038_flash_resource = {
68 .start = 0xc0000000,
69 .end = 0xc1ffffff,
70 .flags = IORESOURCE_MEM,
71};
72
73static struct platform_device pcm038_nor_mtd_device = {
74 .name = "physmap-flash",
75 .id = 0,
76 .dev = {
77 .platform_data = &pcm038_flash_data,
78 },
79 .num_resources = 1,
80 .resource = &pcm038_flash_resource,
81};
82
83static int mxc_uart0_pins[] = {
84 PE12_PF_UART1_TXD,
85 PE13_PF_UART1_RXD,
86 PE14_PF_UART1_CTS,
87 PE15_PF_UART1_RTS
88};
89
90static int uart_mxc_port0_init(struct platform_device *pdev)
91{
92 return mxc_gpio_setup_multiple_pins(mxc_uart0_pins,
7bd18221 93 ARRAY_SIZE(mxc_uart0_pins), "UART0");
7e5e9f54
JB
94}
95
96static int uart_mxc_port0_exit(struct platform_device *pdev)
97{
7bd18221
SH
98 mxc_gpio_release_multiple_pins(mxc_uart0_pins,
99 ARRAY_SIZE(mxc_uart0_pins));
100 return 0;
7e5e9f54
JB
101}
102
103static int mxc_uart1_pins[] = {
104 PE3_PF_UART2_CTS,
105 PE4_PF_UART2_RTS,
106 PE6_PF_UART2_TXD,
107 PE7_PF_UART2_RXD
108};
109
110static int uart_mxc_port1_init(struct platform_device *pdev)
111{
112 return mxc_gpio_setup_multiple_pins(mxc_uart1_pins,
7bd18221 113 ARRAY_SIZE(mxc_uart1_pins), "UART1");
7e5e9f54
JB
114}
115
116static int uart_mxc_port1_exit(struct platform_device *pdev)
117{
7bd18221
SH
118 mxc_gpio_release_multiple_pins(mxc_uart1_pins,
119 ARRAY_SIZE(mxc_uart1_pins));
120 return 0;
7e5e9f54
JB
121}
122
123static int mxc_uart2_pins[] = { PE10_PF_UART3_CTS,
124 PE9_PF_UART3_RXD,
125 PE10_PF_UART3_CTS,
126 PE9_PF_UART3_RXD };
127
128static int uart_mxc_port2_init(struct platform_device *pdev)
129{
130 return mxc_gpio_setup_multiple_pins(mxc_uart2_pins,
7bd18221 131 ARRAY_SIZE(mxc_uart2_pins), "UART2");
7e5e9f54
JB
132}
133
134static int uart_mxc_port2_exit(struct platform_device *pdev)
135{
7bd18221
SH
136 mxc_gpio_release_multiple_pins(mxc_uart2_pins,
137 ARRAY_SIZE(mxc_uart2_pins));
138 return 0;
7e5e9f54
JB
139}
140
141static struct imxuart_platform_data uart_pdata[] = {
142 {
143 .init = uart_mxc_port0_init,
144 .exit = uart_mxc_port0_exit,
145 .flags = IMXUART_HAVE_RTSCTS,
146 }, {
147 .init = uart_mxc_port1_init,
148 .exit = uart_mxc_port1_exit,
149 .flags = IMXUART_HAVE_RTSCTS,
150 }, {
151 .init = uart_mxc_port2_init,
152 .exit = uart_mxc_port2_exit,
153 .flags = IMXUART_HAVE_RTSCTS,
154 },
155};
156
157static int mxc_fec_pins[] = {
158 PD0_AIN_FEC_TXD0,
159 PD1_AIN_FEC_TXD1,
160 PD2_AIN_FEC_TXD2,
161 PD3_AIN_FEC_TXD3,
162 PD4_AOUT_FEC_RX_ER,
163 PD5_AOUT_FEC_RXD1,
164 PD6_AOUT_FEC_RXD2,
165 PD7_AOUT_FEC_RXD3,
166 PD8_AF_FEC_MDIO,
167 PD9_AIN_FEC_MDC,
168 PD10_AOUT_FEC_CRS,
169 PD11_AOUT_FEC_TX_CLK,
170 PD12_AOUT_FEC_RXD0,
171 PD13_AOUT_FEC_RX_DV,
172 PD14_AOUT_FEC_CLR,
173 PD15_AOUT_FEC_COL,
174 PD16_AIN_FEC_TX_ER,
175 PF23_AIN_FEC_TX_EN
176};
177
178static void gpio_fec_active(void)
179{
180 mxc_gpio_setup_multiple_pins(mxc_fec_pins,
7bd18221 181 ARRAY_SIZE(mxc_fec_pins), "FEC");
7e5e9f54
JB
182}
183
184static void gpio_fec_inactive(void)
185{
7bd18221
SH
186 mxc_gpio_release_multiple_pins(mxc_fec_pins,
187 ARRAY_SIZE(mxc_fec_pins));
7e5e9f54
JB
188}
189
190static struct platform_device *platform_devices[] __initdata = {
191 &pcm038_nor_mtd_device,
d40a0992 192 &mxc_w1_master_device,
3620c0dc 193 &pcm038_sram_mtd_device,
7e5e9f54
JB
194};
195
3620c0dc
SH
196/* On pcm038 there's a sram attached to CS1, we enable the chipselect here and
197 * setup other stuffs to access the sram. */
198static void __init pcm038_init_sram(void)
199{
200 __raw_writel(0x0000d843, CSCR_U(1));
201 __raw_writel(0x22252521, CSCR_L(1));
202 __raw_writel(0x22220a00, CSCR_A(1));
203}
204
7e5e9f54
JB
205static void __init pcm038_init(void)
206{
7e5e9f54 207 gpio_fec_active();
3620c0dc 208 pcm038_init_sram();
7e5e9f54 209
7e90534a
SH
210 mxc_register_device(&mxc_uart_device0, &uart_pdata[0]);
211 mxc_register_device(&mxc_uart_device1, &uart_pdata[1]);
212 mxc_register_device(&mxc_uart_device2, &uart_pdata[2]);
d40a0992 213 mxc_gpio_mode(PE16_AF_RTCK); /* OWIRE */
7e5e9f54
JB
214
215 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
ff6552e4
JB
216
217#ifdef CONFIG_MACH_PCM970_BASEBOARD
218 pcm970_baseboard_init();
219#endif
7e5e9f54
JB
220}
221
222static void __init pcm038_timer_init(void)
223{
224 mxc_clocks_init(26000000);
225 mxc_timer_init("gpt_clk.0");
226}
227
228struct sys_timer pcm038_timer = {
229 .init = pcm038_timer_init,
230};
231
232MACHINE_START(PCM038, "phyCORE-i.MX27")
233 .phys_io = AIPI_BASE_ADDR,
234 .io_pg_offst = ((AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc,
235 .boot_params = PHYS_OFFSET + 0x100,
236 .map_io = mxc_map_io,
237 .init_irq = mxc_init_irq,
238 .init_machine = pcm038_init,
239 .timer = &pcm038_timer,
240MACHINE_END