2 * arch/arm/mach-ixp4xx/nslu2-setup.c
6 * based ixdp425-setup.c:
7 * Copyright (C) 2003-2004 MontaVista Software, Inc.
9 * Author: Mark Rakes <mrakes at mac.com>
10 * Author: Rod Whitby <rod@whitby.id.au>
11 * Maintainers: http://www.nslu2-linux.org/
13 * Fixed missing init_time in MACHINE_START kas11 10/22/04
14 * Changed to conform to new style __init ixdp425 kas11 10/22/04
17 #include <linux/kernel.h>
18 #include <linux/serial.h>
19 #include <linux/serial_8250.h>
20 #include <linux/leds.h>
22 #include <asm/mach-types.h>
23 #include <asm/mach/arch.h>
24 #include <asm/mach/flash.h>
25 #include <asm/mach/time.h>
27 static struct flash_platform_data nslu2_flash_data
= {
28 .map_name
= "cfi_probe",
32 static struct resource nslu2_flash_resource
= {
33 .flags
= IORESOURCE_MEM
,
36 static struct platform_device nslu2_flash
= {
37 .name
= "IXP4XX-Flash",
39 .dev
.platform_data
= &nslu2_flash_data
,
41 .resource
= &nslu2_flash_resource
,
44 static struct ixp4xx_i2c_pins nslu2_i2c_gpio_pins
= {
45 .sda_pin
= NSLU2_SDA_PIN
,
46 .scl_pin
= NSLU2_SCL_PIN
,
49 #ifdef CONFIG_LEDS_IXP4XX
50 static struct resource nslu2_led_resources
[] = {
52 .name
= "ready", /* green led */
53 .start
= NSLU2_LED_GRN_GPIO
,
54 .end
= NSLU2_LED_GRN_GPIO
,
55 .flags
= IXP4XX_GPIO_HIGH
,
58 .name
= "status", /* red led */
59 .start
= NSLU2_LED_RED_GPIO
,
60 .end
= NSLU2_LED_RED_GPIO
,
61 .flags
= IXP4XX_GPIO_HIGH
,
65 .start
= NSLU2_LED_DISK1_GPIO
,
66 .end
= NSLU2_LED_DISK1_GPIO
,
67 .flags
= IXP4XX_GPIO_LOW
,
71 .start
= NSLU2_LED_DISK2_GPIO
,
72 .end
= NSLU2_LED_DISK2_GPIO
,
73 .flags
= IXP4XX_GPIO_LOW
,
77 static struct platform_device nslu2_leds
= {
78 .name
= "IXP4XX-GPIO-LED",
80 .num_resources
= ARRAY_SIZE(nslu2_led_resources
),
81 .resource
= nslu2_led_resources
,
85 static struct platform_device nslu2_i2c_controller
= {
88 .dev
.platform_data
= &nslu2_i2c_gpio_pins
,
92 static struct platform_device nslu2_beeper
= {
93 .name
= "ixp4xx-beeper",
94 .id
= NSLU2_GPIO_BUZZ
,
98 static struct resource nslu2_uart_resources
[] = {
100 .start
= IXP4XX_UART1_BASE_PHYS
,
101 .end
= IXP4XX_UART1_BASE_PHYS
+ 0x0fff,
102 .flags
= IORESOURCE_MEM
,
105 .start
= IXP4XX_UART2_BASE_PHYS
,
106 .end
= IXP4XX_UART2_BASE_PHYS
+ 0x0fff,
107 .flags
= IORESOURCE_MEM
,
111 static struct plat_serial8250_port nslu2_uart_data
[] = {
113 .mapbase
= IXP4XX_UART1_BASE_PHYS
,
114 .membase
= (char *)IXP4XX_UART1_BASE_VIRT
+ REG_OFFSET
,
115 .irq
= IRQ_IXP4XX_UART1
,
116 .flags
= UPF_BOOT_AUTOCONF
,
119 .uartclk
= IXP4XX_UART_XTAL
,
122 .mapbase
= IXP4XX_UART2_BASE_PHYS
,
123 .membase
= (char *)IXP4XX_UART2_BASE_VIRT
+ REG_OFFSET
,
124 .irq
= IRQ_IXP4XX_UART2
,
125 .flags
= UPF_BOOT_AUTOCONF
,
128 .uartclk
= IXP4XX_UART_XTAL
,
133 static struct platform_device nslu2_uart
= {
134 .name
= "serial8250",
135 .id
= PLAT8250_DEV_PLATFORM
,
136 .dev
.platform_data
= nslu2_uart_data
,
138 .resource
= nslu2_uart_resources
,
141 static struct platform_device
*nslu2_devices
[] __initdata
= {
142 &nslu2_i2c_controller
,
145 #ifdef CONFIG_LEDS_IXP4XX
150 static void nslu2_power_off(void)
152 /* This causes the box to drop the power and go dead. */
154 /* enable the pwr cntl gpio */
155 gpio_line_config(NSLU2_PO_GPIO
, IXP4XX_GPIO_OUT
);
158 gpio_line_set(NSLU2_PO_GPIO
, IXP4XX_GPIO_HIGH
);
161 static void __init
nslu2_timer_init(void)
163 /* The xtal on this machine is non-standard. */
164 ixp4xx_timer_freq
= NSLU2_FREQ
;
166 /* Call standard timer_init function. */
170 static struct sys_timer nslu2_timer
= {
171 .init
= nslu2_timer_init
,
174 static void __init
nslu2_init(void)
178 nslu2_flash_resource
.start
= IXP4XX_EXP_BUS_BASE(0);
179 nslu2_flash_resource
.end
=
180 IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size
- 1;
182 pm_power_off
= nslu2_power_off
;
185 * This is only useful on a modified machine, but it is valuable
186 * to have it first in order to see debug messages, and so that
187 * it does *not* get removed if platform_add_devices fails!
189 (void)platform_device_register(&nslu2_uart
);
191 platform_add_devices(nslu2_devices
, ARRAY_SIZE(nslu2_devices
));
194 MACHINE_START(NSLU2
, "Linksys NSLU2")
195 /* Maintainer: www.nslu2-linux.org */
196 .phys_io
= IXP4XX_PERIPHERAL_BASE_PHYS
,
197 .io_pg_offst
= ((IXP4XX_PERIPHERAL_BASE_VIRT
) >> 18) & 0xFFFC,
198 .boot_params
= 0x00000100,
199 .map_io
= ixp4xx_map_io
,
200 .init_irq
= ixp4xx_init_irq
,
201 .timer
= &nslu2_timer
,
202 .init_machine
= nslu2_init
,