blob: ae1fa099d5fa4c965a8f089d8708d1b00b466224 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-ixp4xx/ixdp425-setup.c
3 *
4 * IXDP425/IXCDP1100 board-setup
5 *
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>
17
18#include <asm/types.h>
19#include <asm/setup.h>
20#include <asm/memory.h>
21#include <asm/hardware.h>
22#include <asm/mach-types.h>
23#include <asm/irq.h>
24#include <asm/mach/arch.h>
25#include <asm/mach/flash.h>
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static struct flash_platform_data ixdp425_flash_data = {
28 .map_name = "cfi_probe",
29 .width = 2,
30};
31
32static struct resource ixdp425_flash_resource = {
33 .start = IXDP425_FLASH_BASE,
Deepak Saxena1c9cf6f2005-08-26 18:34:11 -070034 .end = IXDP425_FLASH_BASE + IXDP425_FLASH_SIZE - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 .flags = IORESOURCE_MEM,
36};
37
38static struct platform_device ixdp425_flash = {
39 .name = "IXP4XX-Flash",
40 .id = 0,
41 .dev = {
42 .platform_data = &ixdp425_flash_data,
43 },
44 .num_resources = 1,
45 .resource = &ixdp425_flash_resource,
46};
47
48static struct ixp4xx_i2c_pins ixdp425_i2c_gpio_pins = {
49 .sda_pin = IXDP425_SDA_PIN,
50 .scl_pin = IXDP425_SCL_PIN,
51};
52
53static struct platform_device ixdp425_i2c_controller = {
54 .name = "IXP4XX-I2C",
55 .id = 0,
56 .dev = {
57 .platform_data = &ixdp425_i2c_gpio_pins,
58 },
59 .num_resources = 0
60};
61
62static struct resource ixdp425_uart_resources[] = {
63 {
64 .start = IXP4XX_UART1_BASE_PHYS,
65 .end = IXP4XX_UART1_BASE_PHYS + 0x0fff,
66 .flags = IORESOURCE_MEM
67 },
68 {
69 .start = IXP4XX_UART2_BASE_PHYS,
70 .end = IXP4XX_UART2_BASE_PHYS + 0x0fff,
71 .flags = IORESOURCE_MEM
72 }
73};
74
75static struct plat_serial8250_port ixdp425_uart_data[] = {
76 {
77 .mapbase = IXP4XX_UART1_BASE_PHYS,
78 .membase = (char *)IXP4XX_UART1_BASE_VIRT + REG_OFFSET,
79 .irq = IRQ_IXP4XX_UART1,
Deepak Saxena8c741ed2005-08-03 19:58:21 +010080 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 .iotype = UPIO_MEM,
82 .regshift = 2,
83 .uartclk = IXP4XX_UART_XTAL,
84 },
85 {
86 .mapbase = IXP4XX_UART2_BASE_PHYS,
87 .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET,
88 .irq = IRQ_IXP4XX_UART1,
Deepak Saxena8c741ed2005-08-03 19:58:21 +010089 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .iotype = UPIO_MEM,
91 .regshift = 2,
92 .uartclk = IXP4XX_UART_XTAL,
Stefan Sorensenbcaafbe2005-07-06 23:06:04 +010093 },
94 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
97static struct platform_device ixdp425_uart = {
98 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +010099 .id = PLAT8250_DEV_PLATFORM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .dev.platform_data = ixdp425_uart_data,
101 .num_resources = 2,
102 .resource = ixdp425_uart_resources
103};
104
105static struct platform_device *ixdp425_devices[] __initdata = {
106 &ixdp425_i2c_controller,
107 &ixdp425_flash,
108 &ixdp425_uart
109};
110
111
112static void __init ixdp425_init(void)
113{
114 ixp4xx_sys_init();
115
116 /*
117 * IXP465 has 32MB window
118 */
119 if (machine_is_ixdp465()) {
120 ixdp425_flash_resource.end += IXDP425_FLASH_SIZE;
121 }
122
123 platform_add_devices(ixdp425_devices, ARRAY_SIZE(ixdp425_devices));
124}
125
126MACHINE_START(IXDP425, "Intel IXDP425 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100127 /* Maintainer: MontaVista Software, Inc. */
128 .phys_ram = PHYS_OFFSET,
129 .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
130 .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100131 .map_io = ixp4xx_map_io,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100132 .init_irq = ixp4xx_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .timer = &ixp4xx_timer,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100134 .boot_params = 0x0100,
135 .init_machine = ixdp425_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136MACHINE_END
137
138MACHINE_START(IXDP465, "Intel IXDP465 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100139 /* Maintainer: MontaVista Software, Inc. */
140 .phys_ram = PHYS_OFFSET,
141 .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
142 .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100143 .map_io = ixp4xx_map_io,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100144 .init_irq = ixp4xx_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .timer = &ixp4xx_timer,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100146 .boot_params = 0x0100,
147 .init_machine = ixdp425_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148MACHINE_END
149
150MACHINE_START(IXCDP1100, "Intel IXCDP1100 Development Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100151 /* Maintainer: MontaVista Software, Inc. */
152 .phys_ram = PHYS_OFFSET,
153 .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
154 .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100155 .map_io = ixp4xx_map_io,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100156 .init_irq = ixp4xx_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 .timer = &ixp4xx_timer,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100158 .boot_params = 0x0100,
159 .init_machine = ixdp425_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160MACHINE_END
161
162/*
163 * Avila is functionally equivalent to IXDP425 except that it adds
164 * a CF IDE slot hanging off the expansion bus. When we have a
165 * driver for IXP4xx CF IDE with driver model support we'll move
166 * Avila to it's own setup file.
167 */
168#ifdef CONFIG_ARCH_AVILA
169MACHINE_START(AVILA, "Gateworks Avila Network Platform")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100170 /* Maintainer: Deepak Saxena <dsaxena@plexity.net> */
171 .phys_ram = PHYS_OFFSET,
172 .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
173 .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
Deepak Saxenae605ecd2005-08-29 22:46:29 +0100174 .map_io = ixp4xx_map_io,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100175 .init_irq = ixp4xx_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .timer = &ixp4xx_timer,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100177 .boot_params = 0x0100,
178 .init_machine = ixdp425_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179MACHINE_END
180#endif
181