blob: 108a9d3f382da148ff3b6cf281440ab4a302d1c4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-ixp4xx/ixdp425-setup.c
3 *
Krzysztof Hałasa9bf4d672009-11-16 15:24:41 +01004 * IXDP425/IXCDP1100 board-setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright (C) 2003-2005 MontaVista Software, Inc.
7 *
8 * Author: Deepak Saxena <dsaxena@plexity.net>
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/device.h>
14#include <linux/serial.h>
15#include <linux/tty.h>
16#include <linux/serial_8250.h>
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +010017#include <linux/i2c-gpio.h>
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010018#include <linux/io.h>
19#include <linux/mtd/mtd.h>
20#include <linux/mtd/nand.h>
21#include <linux/mtd/partitions.h>
Russell King8029db12008-09-06 12:11:37 +010022#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/types.h>
24#include <asm/setup.h>
25#include <asm/memory.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/mach-types.h>
28#include <asm/irq.h>
29#include <asm/mach/arch.h>
30#include <asm/mach/flash.h>
31
Krzysztof Hałasa9bf4d672009-11-16 15:24:41 +010032#define IXDP425_SDA_PIN 7
33#define IXDP425_SCL_PIN 6
34
35/* NAND Flash pins */
36#define IXDP425_NAND_NCE_PIN 12
37
38#define IXDP425_NAND_CMD_BYTE 0x01
39#define IXDP425_NAND_ADDR_BYTE 0x02
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static struct flash_platform_data ixdp425_flash_data = {
42 .map_name = "cfi_probe",
43 .width = 2,
44};
45
46static struct resource ixdp425_flash_resource = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .flags = IORESOURCE_MEM,
48};
49
50static struct platform_device ixdp425_flash = {
51 .name = "IXP4XX-Flash",
52 .id = 0,
53 .dev = {
54 .platform_data = &ixdp425_flash_data,
55 },
56 .num_resources = 1,
57 .resource = &ixdp425_flash_resource,
58};
59
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010060#if defined(CONFIG_MTD_NAND_PLATFORM) || \
61 defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
62
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010063static struct mtd_partition ixdp425_partitions[] = {
64 {
65 .name = "ixp400 NAND FS 0",
66 .offset = 0,
67 .size = SZ_8M
68 }, {
69 .name = "ixp400 NAND FS 1",
70 .offset = MTDPART_OFS_APPEND,
71 .size = MTDPART_SIZ_FULL
72 },
73};
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010074
75static void
76ixdp425_flash_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
77{
78 struct nand_chip *this = mtd->priv;
79 int offset = (int)this->priv;
80
81 if (ctrl & NAND_CTRL_CHANGE) {
82 if (ctrl & NAND_NCE) {
83 gpio_line_set(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_LOW);
84 udelay(5);
85 } else
86 gpio_line_set(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_HIGH);
87
88 offset = (ctrl & NAND_CLE) ? IXDP425_NAND_CMD_BYTE : 0;
89 offset |= (ctrl & NAND_ALE) ? IXDP425_NAND_ADDR_BYTE : 0;
90 this->priv = (void *)offset;
91 }
92
93 if (cmd != NAND_CMD_NONE)
94 writeb(cmd, this->IO_ADDR_W + offset);
95}
96
97static struct platform_nand_data ixdp425_flash_nand_data = {
98 .chip = {
Marek Vasutef077172010-08-12 02:14:54 +010099 .nr_chips = 1,
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100100 .chip_delay = 30,
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100101 .partitions = ixdp425_partitions,
102 .nr_partitions = ARRAY_SIZE(ixdp425_partitions),
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100103 },
104 .ctrl = {
105 .cmd_ctrl = ixdp425_flash_nand_cmd_ctrl
106 }
107};
108
109static struct resource ixdp425_flash_nand_resource = {
110 .flags = IORESOURCE_MEM,
111};
112
113static struct platform_device ixdp425_flash_nand = {
114 .name = "gen_nand",
115 .id = -1,
116 .dev = {
117 .platform_data = &ixdp425_flash_nand_data,
118 },
119 .num_resources = 1,
120 .resource = &ixdp425_flash_nand_resource,
121};
122#endif /* CONFIG_MTD_NAND_PLATFORM */
123
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100124static struct i2c_gpio_platform_data ixdp425_i2c_gpio_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .sda_pin = IXDP425_SDA_PIN,
126 .scl_pin = IXDP425_SCL_PIN,
127};
128
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100129static struct platform_device ixdp425_i2c_gpio = {
130 .name = "i2c-gpio",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .id = 0,
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100132 .dev = {
133 .platform_data = &ixdp425_i2c_gpio_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137static struct resource ixdp425_uart_resources[] = {
138 {
139 .start = IXP4XX_UART1_BASE_PHYS,
140 .end = IXP4XX_UART1_BASE_PHYS + 0x0fff,
141 .flags = IORESOURCE_MEM
142 },
143 {
144 .start = IXP4XX_UART2_BASE_PHYS,
145 .end = IXP4XX_UART2_BASE_PHYS + 0x0fff,
146 .flags = IORESOURCE_MEM
147 }
148};
149
150static struct plat_serial8250_port ixdp425_uart_data[] = {
151 {
152 .mapbase = IXP4XX_UART1_BASE_PHYS,
153 .membase = (char *)IXP4XX_UART1_BASE_VIRT + REG_OFFSET,
154 .irq = IRQ_IXP4XX_UART1,
Deepak Saxena8c741ed2005-08-03 19:58:21 +0100155 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .iotype = UPIO_MEM,
157 .regshift = 2,
158 .uartclk = IXP4XX_UART_XTAL,
159 },
160 {
161 .mapbase = IXP4XX_UART2_BASE_PHYS,
162 .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET,
Jeff Hansena35d6c92005-12-01 15:50:35 +0000163 .irq = IRQ_IXP4XX_UART2,
Deepak Saxena8c741ed2005-08-03 19:58:21 +0100164 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 .iotype = UPIO_MEM,
166 .regshift = 2,
167 .uartclk = IXP4XX_UART_XTAL,
Stefan Sorensenbcaafbe2005-07-06 23:06:04 +0100168 },
169 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
172static struct platform_device ixdp425_uart = {
173 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +0100174 .id = PLAT8250_DEV_PLATFORM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 .dev.platform_data = ixdp425_uart_data,
176 .num_resources = 2,
177 .resource = ixdp425_uart_resources
178};
179
Rod Whitby78225912008-01-31 12:44:03 +0100180/* Built-in 10/100 Ethernet MAC interfaces */
181static struct eth_plat_info ixdp425_plat_eth[] = {
182 {
183 .phy = 0,
184 .rxq = 3,
185 .txreadyq = 20,
186 }, {
187 .phy = 1,
188 .rxq = 4,
189 .txreadyq = 21,
190 }
191};
192
193static struct platform_device ixdp425_eth[] = {
194 {
195 .name = "ixp4xx_eth",
196 .id = IXP4XX_ETH_NPEB,
197 .dev.platform_data = ixdp425_plat_eth,
198 }, {
199 .name = "ixp4xx_eth",
200 .id = IXP4XX_ETH_NPEC,
201 .dev.platform_data = ixdp425_plat_eth + 1,
202 }
203};
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static struct platform_device *ixdp425_devices[] __initdata = {
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100206 &ixdp425_i2c_gpio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 &ixdp425_flash,
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100208#if defined(CONFIG_MTD_NAND_PLATFORM) || \
209 defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
210 &ixdp425_flash_nand,
211#endif
Rod Whitby78225912008-01-31 12:44:03 +0100212 &ixdp425_uart,
213 &ixdp425_eth[0],
214 &ixdp425_eth[1],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static void __init ixdp425_init(void)
218{
219 ixp4xx_sys_init();
220
Deepak Saxena54e269e2006-01-05 20:59:29 +0000221 ixdp425_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
222 ixdp425_flash_resource.end =
223 IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100225#if defined(CONFIG_MTD_NAND_PLATFORM) || \
226 defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
227 ixdp425_flash_nand_resource.start = IXP4XX_EXP_BUS_BASE(3),
228 ixdp425_flash_nand_resource.end = IXP4XX_EXP_BUS_BASE(3) + 0x10 - 1;
229
230 gpio_line_config(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_OUT);
231
232 /* Configure expansion bus for NAND Flash */
233 *IXP4XX_EXP_CS3 = IXP4XX_EXP_BUS_CS_EN |
234 IXP4XX_EXP_BUS_STROBE_T(1) | /* extend by 1 clock */
235 IXP4XX_EXP_BUS_CYCLES(0) | /* Intel cycles */
236 IXP4XX_EXP_BUS_SIZE(0) | /* 512bytes addr space*/
237 IXP4XX_EXP_BUS_WR_EN |
238 IXP4XX_EXP_BUS_BYTE_EN; /* 8 bit data bus */
239#endif
240
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100241 if (cpu_is_ixp43x()) {
242 ixdp425_uart.num_resources = 1;
243 ixdp425_uart_data[1].flags = 0;
244 }
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 platform_add_devices(ixdp425_devices, ARRAY_SIZE(ixdp425_devices));
247}
248
Deepak Saxenab38708f2005-09-28 18:07:01 -0700249#ifdef CONFIG_ARCH_IXDP425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250MACHINE_START(IXDP425, "Intel IXDP425 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100251 /* Maintainer: MontaVista Software, Inc. */
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100252 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600253 .init_early = ixp4xx_init_early,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100254 .init_irq = ixp4xx_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 .timer = &ixp4xx_timer,
Nicolas Pitree022c722011-07-05 22:38:13 -0400256 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100257 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400258#if defined(CONFIG_PCI)
259 .dma_zone_size = SZ_64M,
260#endif
Russell Kingd1b860f2011-11-05 12:10:55 +0000261 .restart = ixp4xx_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262MACHINE_END
Deepak Saxenae0a20082005-09-18 21:11:56 +0100263#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Deepak Saxenae0a20082005-09-18 21:11:56 +0100265#ifdef CONFIG_MACH_IXDP465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266MACHINE_START(IXDP465, "Intel IXDP465 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100267 /* Maintainer: MontaVista Software, Inc. */
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100268 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600269 .init_early = ixp4xx_init_early,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100270 .init_irq = ixp4xx_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .timer = &ixp4xx_timer,
Nicolas Pitree022c722011-07-05 22:38:13 -0400272 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100273 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400274#if defined(CONFIG_PCI)
275 .dma_zone_size = SZ_64M,
276#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277MACHINE_END
Deepak Saxenae0a20082005-09-18 21:11:56 +0100278#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Deepak Saxenae0a20082005-09-18 21:11:56 +0100280#ifdef CONFIG_ARCH_PRPMC1100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281MACHINE_START(IXCDP1100, "Intel IXCDP1100 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100282 /* Maintainer: MontaVista Software, Inc. */
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100283 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600284 .init_early = ixp4xx_init_early,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100285 .init_irq = ixp4xx_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 .timer = &ixp4xx_timer,
Nicolas Pitree022c722011-07-05 22:38:13 -0400287 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100288 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400289#if defined(CONFIG_PCI)
290 .dma_zone_size = SZ_64M,
291#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292MACHINE_END
Deepak Saxenae0a20082005-09-18 21:11:56 +0100293#endif
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100294
295#ifdef CONFIG_MACH_KIXRP435
296MACHINE_START(KIXRP435, "Intel KIXRP435 Reference Platform")
297 /* Maintainer: MontaVista Software, Inc. */
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100298 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600299 .init_early = ixp4xx_init_early,
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100300 .init_irq = ixp4xx_init_irq,
301 .timer = &ixp4xx_timer,
Nicolas Pitree022c722011-07-05 22:38:13 -0400302 .atag_offset = 0x100,
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100303 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400304#if defined(CONFIG_PCI)
305 .dma_zone_size = SZ_64M,
306#endif
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100307MACHINE_END
308#endif