blob: a05e37b731be8e90b126269ebd1631a39a5e9685 [file] [log] [blame]
Sascha Hauerce8ffef2008-07-05 10:02:52 +02001/*
2 * Copyright (C) 2008 Sascha Hauer, Pengutronix
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#include <linux/types.h>
20#include <linux/init.h>
21
22#include <linux/platform_device.h>
23#include <linux/mtd/physmap.h>
Sascha Hauer3dad21a2008-11-23 17:32:49 +010024#include <linux/mtd/plat-ram.h>
Sascha Hauerce8ffef2008-07-05 10:02:52 +020025#include <linux/memory.h>
Guennadi Liakhovetskiba54b952008-11-11 15:12:00 +010026#include <linux/gpio.h>
27#include <linux/smc911x.h>
28#include <linux/interrupt.h>
Sascha Hauer79206752009-01-28 17:10:32 +010029#include <linux/i2c.h>
30#include <linux/i2c/at24.h>
Sascha Hauerce8ffef2008-07-05 10:02:52 +020031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/hardware.h>
Sascha Hauerce8ffef2008-07-05 10:02:52 +020033#include <asm/mach-types.h>
34#include <asm/mach/arch.h>
35#include <asm/mach/time.h>
36#include <asm/mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010037#include <mach/common.h>
38#include <mach/imx-uart.h>
39#include <mach/iomux-mx3.h>
40#include <mach/board-pcm037.h>
Sascha Hauer3287abb2008-11-23 17:34:04 +010041#include <mach/mxc_nand.h>
Sascha Hauer79206752009-01-28 17:10:32 +010042#ifdef CONFIG_I2C_IMX
43#include <mach/i2c.h>
44#endif
Sascha Hauerce8ffef2008-07-05 10:02:52 +020045
Sascha Hauer5cf09422008-09-09 10:19:41 +020046#include "devices.h"
47
Sascha Hauerce8ffef2008-07-05 10:02:52 +020048static struct physmap_flash_data pcm037_flash_data = {
49 .width = 2,
50};
51
52static struct resource pcm037_flash_resource = {
53 .start = 0xa0000000,
54 .end = 0xa1ffffff,
55 .flags = IORESOURCE_MEM,
56};
57
58static struct platform_device pcm037_flash = {
59 .name = "physmap-flash",
60 .id = 0,
61 .dev = {
62 .platform_data = &pcm037_flash_data,
63 },
64 .resource = &pcm037_flash_resource,
65 .num_resources = 1,
66};
67
68static struct imxuart_platform_data uart_pdata = {
Sascha Hauera9b06232008-09-02 10:19:29 +020069 .flags = IMXUART_HAVE_RTSCTS,
Sascha Hauerce8ffef2008-07-05 10:02:52 +020070};
71
Guennadi Liakhovetskiba54b952008-11-11 15:12:00 +010072static struct resource smc911x_resources[] = {
73 [0] = {
74 .start = CS1_BASE_ADDR + 0x300,
75 .end = CS1_BASE_ADDR + 0x300 + SZ_64K - 1,
76 .flags = IORESOURCE_MEM,
77 },
78 [1] = {
79 .start = IOMUX_TO_IRQ(MX31_PIN_GPIO3_1),
80 .end = IOMUX_TO_IRQ(MX31_PIN_GPIO3_1),
81 .flags = IORESOURCE_IRQ,
82 },
83};
84
85static struct smc911x_platdata smc911x_info = {
86 .flags = SMC911X_USE_32BIT,
87 .irq_flags = IRQF_SHARED | IRQF_TRIGGER_LOW,
88};
89
90static struct platform_device pcm037_eth = {
91 .name = "smc911x",
92 .id = -1,
93 .num_resources = ARRAY_SIZE(smc911x_resources),
94 .resource = smc911x_resources,
95 .dev = {
96 .platform_data = &smc911x_info,
97 },
98};
99
Sascha Hauer3dad21a2008-11-23 17:32:49 +0100100static struct platdata_mtd_ram pcm038_sram_data = {
101 .bankwidth = 2,
102};
103
104static struct resource pcm038_sram_resource = {
105 .start = CS4_BASE_ADDR,
106 .end = CS4_BASE_ADDR + 512 * 1024 - 1,
107 .flags = IORESOURCE_MEM,
108};
109
110static struct platform_device pcm037_sram_device = {
111 .name = "mtd-ram",
112 .id = 0,
113 .dev = {
114 .platform_data = &pcm038_sram_data,
115 },
116 .num_resources = 1,
117 .resource = &pcm038_sram_resource,
118};
119
Sascha Hauer3287abb2008-11-23 17:34:04 +0100120static struct mxc_nand_platform_data pcm037_nand_board_info = {
121 .width = 1,
122 .hw_ecc = 1,
123};
124
Sascha Hauer79206752009-01-28 17:10:32 +0100125#ifdef CONFIG_I2C_IMX
126static int i2c_1_pins[] = {
127 MX31_PIN_CSPI2_MOSI__SCL,
128 MX31_PIN_CSPI2_MISO__SDA,
129};
130
131static int pcm037_i2c_1_init(struct device *dev)
132{
133 return mxc_iomux_setup_multiple_pins(i2c_1_pins, ARRAY_SIZE(i2c_1_pins),
134 "i2c-1");
135}
136
137static void pcm037_i2c_1_exit(struct device *dev)
138{
139 mxc_iomux_release_multiple_pins(i2c_1_pins, ARRAY_SIZE(i2c_1_pins));
140}
141
142static struct imxi2c_platform_data pcm037_i2c_1_data = {
143 .bitrate = 100000,
144 .init = pcm037_i2c_1_init,
145 .exit = pcm037_i2c_1_exit,
146};
147
148static struct at24_platform_data board_eeprom = {
149 .byte_len = 4096,
150 .page_size = 32,
151 .flags = AT24_FLAG_ADDR16,
152};
153
154static struct i2c_board_info pcm037_i2c_devices[] = {
155 {
156 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
157 .platform_data = &board_eeprom,
158 }, {
159 I2C_BOARD_INFO("rtc-pcf8563", 0x51),
160 .type = "pcf8563",
161 }
162};
163#endif
164
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200165static struct platform_device *devices[] __initdata = {
166 &pcm037_flash,
Guennadi Liakhovetskiba54b952008-11-11 15:12:00 +0100167 &pcm037_eth,
Sascha Hauer3dad21a2008-11-23 17:32:49 +0100168 &pcm037_sram_device,
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200169};
170
Valentin Longchampbab389c2009-01-28 15:13:54 +0100171static int uart0_pins[] = {
172 MX31_PIN_CTS1__CTS1,
173 MX31_PIN_RTS1__RTS1,
174 MX31_PIN_TXD1__TXD1,
175 MX31_PIN_RXD1__RXD1
176};
177
178static int uart2_pins[] = {
179 MX31_PIN_CSPI3_MOSI__RXD3,
180 MX31_PIN_CSPI3_MISO__TXD3
181};
182
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200183/*
184 * Board specific initialization.
185 */
186static void __init mxc_board_init(void)
187{
188 platform_add_devices(devices, ARRAY_SIZE(devices));
189
Valentin Longchampbab389c2009-01-28 15:13:54 +0100190 mxc_iomux_setup_multiple_pins(uart0_pins, ARRAY_SIZE(uart0_pins), "uart-0");
Sascha Hauer5cf09422008-09-09 10:19:41 +0200191 mxc_register_device(&mxc_uart_device0, &uart_pdata);
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200192
Valentin Longchampbab389c2009-01-28 15:13:54 +0100193 mxc_iomux_setup_multiple_pins(uart2_pins, ARRAY_SIZE(uart2_pins), "uart-2");
Sascha Hauer5cf09422008-09-09 10:19:41 +0200194 mxc_register_device(&mxc_uart_device2, &uart_pdata);
Sascha Hauerd517cab2008-12-01 14:15:40 -0800195
Valentin Longchampbab389c2009-01-28 15:13:54 +0100196 mxc_iomux_setup_pin(MX31_PIN_BATT_LINE__OWIRE, "batt-0wire");
Sascha Hauerd517cab2008-12-01 14:15:40 -0800197 mxc_register_device(&mxc_w1_master_device, NULL);
Guennadi Liakhovetskiba54b952008-11-11 15:12:00 +0100198
199 /* SMSC9215 IRQ pin */
Valentin Longchampbab389c2009-01-28 15:13:54 +0100200 if (!mxc_iomux_setup_pin(IOMUX_MODE(MX31_PIN_GPIO3_1, IOMUX_CONFIG_GPIO),
201 "pcm037-eth"))
Guennadi Liakhovetskiba54b952008-11-11 15:12:00 +0100202 gpio_direction_input(MX31_PIN_GPIO3_1);
Sascha Hauer3287abb2008-11-23 17:34:04 +0100203
Sascha Hauer79206752009-01-28 17:10:32 +0100204#ifdef CONFIG_I2C_IMX
205 i2c_register_board_info(1, pcm037_i2c_devices,
206 ARRAY_SIZE(pcm037_i2c_devices));
207
208 mxc_register_device(&mxc_i2c_device1, &pcm037_i2c_1_data);
209#endif
Sascha Hauer3287abb2008-11-23 17:34:04 +0100210 mxc_register_device(&mxc_nand_device, &pcm037_nand_board_info);
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200211}
212
213/*
214 * This structure defines static mappings for the pcm037 board.
215 */
216static struct map_desc pcm037_io_desc[] __initdata = {
217 {
218 .virtual = AIPS1_BASE_ADDR_VIRT,
219 .pfn = __phys_to_pfn(AIPS1_BASE_ADDR),
220 .length = AIPS1_SIZE,
Sascha Hauer6c1249e2008-09-18 15:48:23 +0200221 .type = MT_DEVICE_NONSHARED
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200222 }, {
223 .virtual = AIPS2_BASE_ADDR_VIRT,
224 .pfn = __phys_to_pfn(AIPS2_BASE_ADDR),
225 .length = AIPS2_SIZE,
Sascha Hauer6c1249e2008-09-18 15:48:23 +0200226 .type = MT_DEVICE_NONSHARED
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200227 },
228};
229
230/*
231 * Set up static virtual mappings.
232 */
233void __init pcm037_map_io(void)
234{
235 mxc_map_io();
236 iotable_init(pcm037_io_desc, ARRAY_SIZE(pcm037_io_desc));
237}
238
239static void __init pcm037_timer_init(void)
240{
Sascha Hauer30c730f2009-02-16 14:36:49 +0100241 mx31_clocks_init(26000000);
Sascha Hauerce8ffef2008-07-05 10:02:52 +0200242}
243
244struct sys_timer pcm037_timer = {
245 .init = pcm037_timer_init,
246};
247
248MACHINE_START(PCM037, "Phytec Phycore pcm037")
249 /* Maintainer: Pengutronix */
250 .phys_io = AIPS1_BASE_ADDR,
251 .io_pg_offst = ((AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
252 .boot_params = PHYS_OFFSET + 0x100,
253 .map_io = pcm037_map_io,
254 .init_irq = mxc_init_irq,
255 .init_machine = mxc_board_init,
256 .timer = &pcm037_timer,
257MACHINE_END
258