blob: 8f5e01527b1be37373eeaaf34c79f61d22458057 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * arch/arm/mach-ixp4xx/ixdp425-setup.c
4 *
Krzysztof Hałasa9bf4d672009-11-16 15:24:41 +01005 * IXDP425/IXCDP1100 board-setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Copyright (C) 2003-2005 MontaVista Software, Inc.
8 *
9 * Author: Deepak Saxena <dsaxena@plexity.net>
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/device.h>
15#include <linux/serial.h>
16#include <linux/tty.h>
17#include <linux/serial_8250.h>
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +010018#include <linux/i2c-gpio.h>
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010019#include <linux/io.h>
20#include <linux/mtd/mtd.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020021#include <linux/mtd/rawnand.h>
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010022#include <linux/mtd/partitions.h>
Russell King8029db12008-09-06 12:11:37 +010023#include <linux/delay.h>
Linus Walleij8040dd02013-09-10 11:19:55 +020024#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/types.h>
26#include <asm/setup.h>
27#include <asm/memory.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/mach-types.h>
30#include <asm/irq.h>
31#include <asm/mach/arch.h>
32#include <asm/mach/flash.h>
33
Krzysztof Hałasa9bf4d672009-11-16 15:24:41 +010034#define IXDP425_SDA_PIN 7
35#define IXDP425_SCL_PIN 6
36
37/* NAND Flash pins */
38#define IXDP425_NAND_NCE_PIN 12
39
40#define IXDP425_NAND_CMD_BYTE 0x01
41#define IXDP425_NAND_ADDR_BYTE 0x02
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static struct flash_platform_data ixdp425_flash_data = {
44 .map_name = "cfi_probe",
45 .width = 2,
46};
47
48static struct resource ixdp425_flash_resource = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 .flags = IORESOURCE_MEM,
50};
51
52static struct platform_device ixdp425_flash = {
53 .name = "IXP4XX-Flash",
54 .id = 0,
55 .dev = {
56 .platform_data = &ixdp425_flash_data,
57 },
58 .num_resources = 1,
59 .resource = &ixdp425_flash_resource,
60};
61
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010062#if defined(CONFIG_MTD_NAND_PLATFORM) || \
63 defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
64
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010065static struct mtd_partition ixdp425_partitions[] = {
66 {
67 .name = "ixp400 NAND FS 0",
68 .offset = 0,
69 .size = SZ_8M
70 }, {
71 .name = "ixp400 NAND FS 1",
72 .offset = MTDPART_OFS_APPEND,
73 .size = MTDPART_SIZ_FULL
74 },
75};
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010076
77static void
78ixdp425_flash_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
79{
Boris BREZILLONc993e092015-12-01 12:02:58 +010080 struct nand_chip *this = mtd_to_nand(mtd);
Boris BREZILLONd9dccc62015-12-10 09:00:40 +010081 int offset = (int)nand_get_controller_data(this);
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010082
83 if (ctrl & NAND_CTRL_CHANGE) {
84 if (ctrl & NAND_NCE) {
Linus Walleij8040dd02013-09-10 11:19:55 +020085 gpio_set_value(IXDP425_NAND_NCE_PIN, 0);
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010086 udelay(5);
87 } else
Linus Walleij8040dd02013-09-10 11:19:55 +020088 gpio_set_value(IXDP425_NAND_NCE_PIN, 1);
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010089
90 offset = (ctrl & NAND_CLE) ? IXDP425_NAND_CMD_BYTE : 0;
91 offset |= (ctrl & NAND_ALE) ? IXDP425_NAND_ADDR_BYTE : 0;
Boris BREZILLONd9dccc62015-12-10 09:00:40 +010092 nand_set_controller_data(this, (void *)offset);
Vladimir Barinov4ad48b42007-05-16 20:39:02 +010093 }
94
95 if (cmd != NAND_CMD_NONE)
96 writeb(cmd, this->IO_ADDR_W + offset);
97}
98
99static struct platform_nand_data ixdp425_flash_nand_data = {
100 .chip = {
Marek Vasutef077172010-08-12 02:14:54 +0100101 .nr_chips = 1,
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100102 .chip_delay = 30,
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100103 .partitions = ixdp425_partitions,
104 .nr_partitions = ARRAY_SIZE(ixdp425_partitions),
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100105 },
106 .ctrl = {
107 .cmd_ctrl = ixdp425_flash_nand_cmd_ctrl
108 }
109};
110
111static struct resource ixdp425_flash_nand_resource = {
112 .flags = IORESOURCE_MEM,
113};
114
115static struct platform_device ixdp425_flash_nand = {
116 .name = "gen_nand",
117 .id = -1,
118 .dev = {
119 .platform_data = &ixdp425_flash_nand_data,
120 },
121 .num_resources = 1,
122 .resource = &ixdp425_flash_nand_resource,
123};
124#endif /* CONFIG_MTD_NAND_PLATFORM */
125
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100126static struct i2c_gpio_platform_data ixdp425_i2c_gpio_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .sda_pin = IXDP425_SDA_PIN,
128 .scl_pin = IXDP425_SCL_PIN,
129};
130
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100131static struct platform_device ixdp425_i2c_gpio = {
132 .name = "i2c-gpio",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .id = 0,
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100134 .dev = {
135 .platform_data = &ixdp425_i2c_gpio_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
139static struct resource ixdp425_uart_resources[] = {
140 {
141 .start = IXP4XX_UART1_BASE_PHYS,
142 .end = IXP4XX_UART1_BASE_PHYS + 0x0fff,
143 .flags = IORESOURCE_MEM
144 },
145 {
146 .start = IXP4XX_UART2_BASE_PHYS,
147 .end = IXP4XX_UART2_BASE_PHYS + 0x0fff,
148 .flags = IORESOURCE_MEM
149 }
150};
151
152static struct plat_serial8250_port ixdp425_uart_data[] = {
153 {
154 .mapbase = IXP4XX_UART1_BASE_PHYS,
155 .membase = (char *)IXP4XX_UART1_BASE_VIRT + REG_OFFSET,
156 .irq = IRQ_IXP4XX_UART1,
Deepak Saxena8c741ed2005-08-03 19:58:21 +0100157 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .iotype = UPIO_MEM,
159 .regshift = 2,
160 .uartclk = IXP4XX_UART_XTAL,
161 },
162 {
163 .mapbase = IXP4XX_UART2_BASE_PHYS,
164 .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET,
Jeff Hansena35d6c92005-12-01 15:50:35 +0000165 .irq = IRQ_IXP4XX_UART2,
Deepak Saxena8c741ed2005-08-03 19:58:21 +0100166 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .iotype = UPIO_MEM,
168 .regshift = 2,
169 .uartclk = IXP4XX_UART_XTAL,
Stefan Sorensenbcaafbe2005-07-06 23:06:04 +0100170 },
171 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172};
173
174static struct platform_device ixdp425_uart = {
175 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +0100176 .id = PLAT8250_DEV_PLATFORM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 .dev.platform_data = ixdp425_uart_data,
178 .num_resources = 2,
179 .resource = ixdp425_uart_resources
180};
181
Rod Whitby78225912008-01-31 12:44:03 +0100182/* Built-in 10/100 Ethernet MAC interfaces */
183static struct eth_plat_info ixdp425_plat_eth[] = {
184 {
185 .phy = 0,
186 .rxq = 3,
187 .txreadyq = 20,
188 }, {
189 .phy = 1,
190 .rxq = 4,
191 .txreadyq = 21,
192 }
193};
194
195static struct platform_device ixdp425_eth[] = {
196 {
197 .name = "ixp4xx_eth",
198 .id = IXP4XX_ETH_NPEB,
199 .dev.platform_data = ixdp425_plat_eth,
200 }, {
201 .name = "ixp4xx_eth",
202 .id = IXP4XX_ETH_NPEC,
203 .dev.platform_data = ixdp425_plat_eth + 1,
204 }
205};
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207static struct platform_device *ixdp425_devices[] __initdata = {
Michael-Luke Jones5a4a2382008-01-27 18:14:46 +0100208 &ixdp425_i2c_gpio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 &ixdp425_flash,
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100210#if defined(CONFIG_MTD_NAND_PLATFORM) || \
211 defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
212 &ixdp425_flash_nand,
213#endif
Rod Whitby78225912008-01-31 12:44:03 +0100214 &ixdp425_uart,
215 &ixdp425_eth[0],
216 &ixdp425_eth[1],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219static void __init ixdp425_init(void)
220{
221 ixp4xx_sys_init();
222
Deepak Saxena54e269e2006-01-05 20:59:29 +0000223 ixdp425_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
224 ixdp425_flash_resource.end =
225 IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100227#if defined(CONFIG_MTD_NAND_PLATFORM) || \
228 defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
229 ixdp425_flash_nand_resource.start = IXP4XX_EXP_BUS_BASE(3),
230 ixdp425_flash_nand_resource.end = IXP4XX_EXP_BUS_BASE(3) + 0x10 - 1;
231
Linus Walleij8040dd02013-09-10 11:19:55 +0200232 gpio_request(IXDP425_NAND_NCE_PIN, "NAND NCE pin");
233 gpio_direction_output(IXDP425_NAND_NCE_PIN, 0);
Vladimir Barinov4ad48b42007-05-16 20:39:02 +0100234
235 /* Configure expansion bus for NAND Flash */
236 *IXP4XX_EXP_CS3 = IXP4XX_EXP_BUS_CS_EN |
237 IXP4XX_EXP_BUS_STROBE_T(1) | /* extend by 1 clock */
238 IXP4XX_EXP_BUS_CYCLES(0) | /* Intel cycles */
239 IXP4XX_EXP_BUS_SIZE(0) | /* 512bytes addr space*/
240 IXP4XX_EXP_BUS_WR_EN |
241 IXP4XX_EXP_BUS_BYTE_EN; /* 8 bit data bus */
242#endif
243
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100244 if (cpu_is_ixp43x()) {
245 ixdp425_uart.num_resources = 1;
246 ixdp425_uart_data[1].flags = 0;
247 }
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 platform_add_devices(ixdp425_devices, ARRAY_SIZE(ixdp425_devices));
250}
251
Deepak Saxenab38708f2005-09-28 18:07:01 -0700252#ifdef CONFIG_ARCH_IXDP425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253MACHINE_START(IXDP425, "Intel IXDP425 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100254 /* Maintainer: MontaVista Software, Inc. */
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100255 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600256 .init_early = ixp4xx_init_early,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100257 .init_irq = ixp4xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700258 .init_time = ixp4xx_timer_init,
Nicolas Pitree022c722011-07-05 22:38:13 -0400259 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100260 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400261#if defined(CONFIG_PCI)
262 .dma_zone_size = SZ_64M,
263#endif
Russell Kingd1b860f2011-11-05 12:10:55 +0000264 .restart = ixp4xx_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265MACHINE_END
Deepak Saxenae0a20082005-09-18 21:11:56 +0100266#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Deepak Saxenae0a20082005-09-18 21:11:56 +0100268#ifdef CONFIG_MACH_IXDP465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269MACHINE_START(IXDP465, "Intel IXDP465 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100270 /* Maintainer: MontaVista Software, Inc. */
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100271 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600272 .init_early = ixp4xx_init_early,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100273 .init_irq = ixp4xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700274 .init_time = ixp4xx_timer_init,
Nicolas Pitree022c722011-07-05 22:38:13 -0400275 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100276 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400277#if defined(CONFIG_PCI)
278 .dma_zone_size = SZ_64M,
279#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280MACHINE_END
Deepak Saxenae0a20082005-09-18 21:11:56 +0100281#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Deepak Saxenae0a20082005-09-18 21:11:56 +0100283#ifdef CONFIG_ARCH_PRPMC1100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284MACHINE_START(IXCDP1100, "Intel IXCDP1100 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100285 /* Maintainer: MontaVista Software, Inc. */
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100286 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600287 .init_early = ixp4xx_init_early,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100288 .init_irq = ixp4xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700289 .init_time = ixp4xx_timer_init,
Nicolas Pitree022c722011-07-05 22:38:13 -0400290 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100291 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400292#if defined(CONFIG_PCI)
293 .dma_zone_size = SZ_64M,
294#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295MACHINE_END
Deepak Saxenae0a20082005-09-18 21:11:56 +0100296#endif
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100297
298#ifdef CONFIG_MACH_KIXRP435
299MACHINE_START(KIXRP435, "Intel KIXRP435 Reference Platform")
300 /* Maintainer: MontaVista Software, Inc. */
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100301 .map_io = ixp4xx_map_io,
Rob Herringf4495882012-03-06 15:01:53 -0600302 .init_early = ixp4xx_init_early,
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100303 .init_irq = ixp4xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700304 .init_time = ixp4xx_timer_init,
Nicolas Pitree022c722011-07-05 22:38:13 -0400305 .atag_offset = 0x100,
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100306 .init_machine = ixdp425_init,
Nicolas Pitre7553ee72011-07-05 22:28:09 -0400307#if defined(CONFIG_PCI)
308 .dma_zone_size = SZ_64M,
309#endif
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100310MACHINE_END
311#endif