2 * arch/arm/mach-ixp4xx/nslu2-setup.c
6 * Copyright (C) 2008 Rod Whitby <rod@whitby.id.au>
8 * based on ixdp425-setup.c:
9 * Copyright (C) 2003-2004 MontaVista Software, Inc.
10 * based on nslu2-power.c:
11 * Copyright (C) 2005 Tower Technologies
13 * Author: Mark Rakes <mrakes at mac.com>
14 * Author: Rod Whitby <rod@whitby.id.au>
15 * Author: Alessandro Zummo <a.zummo@towertech.it>
16 * Maintainers: http://www.nslu2-linux.org/
19 #include <linux/gpio.h>
20 #include <linux/if_ether.h>
21 #include <linux/irq.h>
22 #include <linux/serial.h>
23 #include <linux/serial_8250.h>
24 #include <linux/leds.h>
25 #include <linux/reboot.h>
26 #include <linux/i2c.h>
27 #include <linux/i2c-gpio.h>
29 #include <asm/mach-types.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/flash.h>
32 #include <asm/mach/time.h>
34 #define NSLU2_SDA_PIN 7
35 #define NSLU2_SCL_PIN 6
38 #define NSLU2_FREQ 66000000
41 #define NSLU2_PB_GPIO 5 /* power button */
42 #define NSLU2_PO_GPIO 8 /* power off */
43 #define NSLU2_RB_GPIO 12 /* reset button */
46 #define NSLU2_GPIO_BUZZ 4
49 #define NSLU2_LED_RED_GPIO 0
50 #define NSLU2_LED_GRN_GPIO 1
51 #define NSLU2_LED_DISK1_GPIO 3
52 #define NSLU2_LED_DISK2_GPIO 2
54 static struct flash_platform_data nslu2_flash_data
= {
55 .map_name
= "cfi_probe",
59 static struct resource nslu2_flash_resource
= {
60 .flags
= IORESOURCE_MEM
,
63 static struct platform_device nslu2_flash
= {
64 .name
= "IXP4XX-Flash",
66 .dev
.platform_data
= &nslu2_flash_data
,
68 .resource
= &nslu2_flash_resource
,
71 static struct i2c_gpio_platform_data nslu2_i2c_gpio_data
= {
72 .sda_pin
= NSLU2_SDA_PIN
,
73 .scl_pin
= NSLU2_SCL_PIN
,
76 static struct i2c_board_info __initdata nslu2_i2c_board_info
[] = {
78 I2C_BOARD_INFO("x1205", 0x6f),
82 static struct gpio_led nslu2_led_pins
[] = {
84 .name
= "nslu2:green:ready",
85 .gpio
= NSLU2_LED_GRN_GPIO
,
88 .name
= "nslu2:red:status",
89 .gpio
= NSLU2_LED_RED_GPIO
,
92 .name
= "nslu2:green:disk-1",
93 .gpio
= NSLU2_LED_DISK1_GPIO
,
97 .name
= "nslu2:green:disk-2",
98 .gpio
= NSLU2_LED_DISK2_GPIO
,
103 static struct gpio_led_platform_data nslu2_led_data
= {
104 .num_leds
= ARRAY_SIZE(nslu2_led_pins
),
105 .leds
= nslu2_led_pins
,
108 static struct platform_device nslu2_leds
= {
111 .dev
.platform_data
= &nslu2_led_data
,
114 static struct platform_device nslu2_i2c_gpio
= {
118 .platform_data
= &nslu2_i2c_gpio_data
,
122 static struct platform_device nslu2_beeper
= {
123 .name
= "ixp4xx-beeper",
124 .id
= NSLU2_GPIO_BUZZ
,
128 static struct resource nslu2_uart_resources
[] = {
130 .start
= IXP4XX_UART1_BASE_PHYS
,
131 .end
= IXP4XX_UART1_BASE_PHYS
+ 0x0fff,
132 .flags
= IORESOURCE_MEM
,
135 .start
= IXP4XX_UART2_BASE_PHYS
,
136 .end
= IXP4XX_UART2_BASE_PHYS
+ 0x0fff,
137 .flags
= IORESOURCE_MEM
,
141 static struct plat_serial8250_port nslu2_uart_data
[] = {
143 .mapbase
= IXP4XX_UART1_BASE_PHYS
,
144 .membase
= (char *)IXP4XX_UART1_BASE_VIRT
+ REG_OFFSET
,
145 .irq
= IRQ_IXP4XX_UART1
,
146 .flags
= UPF_BOOT_AUTOCONF
,
149 .uartclk
= IXP4XX_UART_XTAL
,
152 .mapbase
= IXP4XX_UART2_BASE_PHYS
,
153 .membase
= (char *)IXP4XX_UART2_BASE_VIRT
+ REG_OFFSET
,
154 .irq
= IRQ_IXP4XX_UART2
,
155 .flags
= UPF_BOOT_AUTOCONF
,
158 .uartclk
= IXP4XX_UART_XTAL
,
163 static struct platform_device nslu2_uart
= {
164 .name
= "serial8250",
165 .id
= PLAT8250_DEV_PLATFORM
,
166 .dev
.platform_data
= nslu2_uart_data
,
168 .resource
= nslu2_uart_resources
,
171 /* Built-in 10/100 Ethernet MAC interfaces */
172 static struct eth_plat_info nslu2_plat_eth
[] = {
180 static struct platform_device nslu2_eth
[] = {
182 .name
= "ixp4xx_eth",
183 .id
= IXP4XX_ETH_NPEB
,
184 .dev
.platform_data
= nslu2_plat_eth
,
188 static struct platform_device
*nslu2_devices
[] __initdata
= {
196 static void nslu2_power_off(void)
198 /* This causes the box to drop the power and go dead. */
200 /* enable the pwr cntl gpio */
201 gpio_line_config(NSLU2_PO_GPIO
, IXP4XX_GPIO_OUT
);
204 gpio_line_set(NSLU2_PO_GPIO
, IXP4XX_GPIO_HIGH
);
207 static irqreturn_t
nslu2_power_handler(int irq
, void *dev_id
)
209 /* Signal init to do the ctrlaltdel action, this will bypass init if
210 * it hasn't started and do a kernel_restart.
217 static irqreturn_t
nslu2_reset_handler(int irq
, void *dev_id
)
219 /* This is the paper-clip reset, it shuts the machine down directly.
226 static void __init
nslu2_timer_init(void)
228 /* The xtal on this machine is non-standard. */
229 ixp4xx_timer_freq
= NSLU2_FREQ
;
231 /* Call standard timer_init function. */
235 static void __init
nslu2_init(void)
242 nslu2_flash_resource
.start
= IXP4XX_EXP_BUS_BASE(0);
243 nslu2_flash_resource
.end
=
244 IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size
- 1;
246 i2c_register_board_info(0, nslu2_i2c_board_info
,
247 ARRAY_SIZE(nslu2_i2c_board_info
));
250 * This is only useful on a modified machine, but it is valuable
251 * to have it first in order to see debug messages, and so that
252 * it does *not* get removed if platform_add_devices fails!
254 (void)platform_device_register(&nslu2_uart
);
256 platform_add_devices(nslu2_devices
, ARRAY_SIZE(nslu2_devices
));
258 pm_power_off
= nslu2_power_off
;
260 if (request_irq(gpio_to_irq(NSLU2_RB_GPIO
), &nslu2_reset_handler
,
261 IRQF_DISABLED
| IRQF_TRIGGER_LOW
,
262 "NSLU2 reset button", NULL
) < 0) {
264 printk(KERN_DEBUG
"Reset Button IRQ %d not available\n",
265 gpio_to_irq(NSLU2_RB_GPIO
));
268 if (request_irq(gpio_to_irq(NSLU2_PB_GPIO
), &nslu2_power_handler
,
269 IRQF_DISABLED
| IRQF_TRIGGER_HIGH
,
270 "NSLU2 power button", NULL
) < 0) {
272 printk(KERN_DEBUG
"Power Button IRQ %d not available\n",
273 gpio_to_irq(NSLU2_PB_GPIO
));
277 * Map in a portion of the flash and read the MAC address.
278 * Since it is stored in BE in the flash itself, we need to
279 * byteswap it if we're in LE mode.
281 f
= ioremap(IXP4XX_EXP_BUS_BASE(0), 0x40000);
283 for (i
= 0; i
< 6; i
++)
285 nslu2_plat_eth
[0].hwaddr
[i
] = readb(f
+ 0x3FFB0 + i
);
287 nslu2_plat_eth
[0].hwaddr
[i
] = readb(f
+ 0x3FFB0 + (i
^3));
291 printk(KERN_INFO
"NSLU2: Using MAC address %pM for port 0\n",
292 nslu2_plat_eth
[0].hwaddr
);
296 MACHINE_START(NSLU2
, "Linksys NSLU2")
297 /* Maintainer: www.nslu2-linux.org */
298 .atag_offset
= 0x100,
299 .map_io
= ixp4xx_map_io
,
300 .init_early
= ixp4xx_init_early
,
301 .init_irq
= ixp4xx_init_irq
,
302 .init_time
= nslu2_timer_init
,
303 .init_machine
= nslu2_init
,
304 #if defined(CONFIG_PCI)
305 .dma_zone_size
= SZ_64M
,
307 .restart
= ixp4xx_restart
,