2 * arch/arm/mach-ixp4xx/fsg-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: Rod Whitby <rod@whitby.id.au>
14 * Maintainers: http://www.nslu2-linux.org/
18 #include <linux/if_ether.h>
19 #include <linux/irq.h>
20 #include <linux/serial.h>
21 #include <linux/serial_8250.h>
22 #include <linux/leds.h>
23 #include <linux/reboot.h>
24 #include <linux/i2c.h>
25 #include <linux/i2c-gpio.h>
28 #include <asm/mach-types.h>
29 #include <asm/mach/arch.h>
30 #include <asm/mach/flash.h>
33 static struct flash_platform_data fsg_flash_data
= {
34 .map_name
= "cfi_probe",
38 static struct resource fsg_flash_resource
= {
39 .flags
= IORESOURCE_MEM
,
42 static struct platform_device fsg_flash
= {
43 .name
= "IXP4XX-Flash",
46 .platform_data
= &fsg_flash_data
,
49 .resource
= &fsg_flash_resource
,
52 static struct i2c_gpio_platform_data fsg_i2c_gpio_data
= {
53 .sda_pin
= FSG_SDA_PIN
,
54 .scl_pin
= FSG_SCL_PIN
,
57 static struct platform_device fsg_i2c_gpio
= {
61 .platform_data
= &fsg_i2c_gpio_data
,
65 static struct i2c_board_info __initdata fsg_i2c_board_info
[] = {
67 I2C_BOARD_INFO("isl1208", 0x6f),
71 static struct resource fsg_uart_resources
[] = {
73 .start
= IXP4XX_UART1_BASE_PHYS
,
74 .end
= IXP4XX_UART1_BASE_PHYS
+ 0x0fff,
75 .flags
= IORESOURCE_MEM
,
78 .start
= IXP4XX_UART2_BASE_PHYS
,
79 .end
= IXP4XX_UART2_BASE_PHYS
+ 0x0fff,
80 .flags
= IORESOURCE_MEM
,
84 static struct plat_serial8250_port fsg_uart_data
[] = {
86 .mapbase
= IXP4XX_UART1_BASE_PHYS
,
87 .membase
= (char *)IXP4XX_UART1_BASE_VIRT
+ REG_OFFSET
,
88 .irq
= IRQ_IXP4XX_UART1
,
89 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
,
92 .uartclk
= IXP4XX_UART_XTAL
,
95 .mapbase
= IXP4XX_UART2_BASE_PHYS
,
96 .membase
= (char *)IXP4XX_UART2_BASE_VIRT
+ REG_OFFSET
,
97 .irq
= IRQ_IXP4XX_UART2
,
98 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
,
101 .uartclk
= IXP4XX_UART_XTAL
,
106 static struct platform_device fsg_uart
= {
107 .name
= "serial8250",
108 .id
= PLAT8250_DEV_PLATFORM
,
110 .platform_data
= fsg_uart_data
,
112 .num_resources
= ARRAY_SIZE(fsg_uart_resources
),
113 .resource
= fsg_uart_resources
,
116 static struct platform_device fsg_leds
= {
121 /* Built-in 10/100 Ethernet MAC interfaces */
122 static struct eth_plat_info fsg_plat_eth
[] = {
134 static struct platform_device fsg_eth
[] = {
136 .name
= "ixp4xx_eth",
137 .id
= IXP4XX_ETH_NPEB
,
139 .platform_data
= fsg_plat_eth
,
142 .name
= "ixp4xx_eth",
143 .id
= IXP4XX_ETH_NPEC
,
145 .platform_data
= fsg_plat_eth
+ 1,
150 static struct platform_device
*fsg_devices
[] __initdata
= {
158 static irqreturn_t
fsg_power_handler(int irq
, void *dev_id
)
160 /* Signal init to do the ctrlaltdel action, this will bypass init if
161 * it hasn't started and do a kernel_restart.
168 static irqreturn_t
fsg_reset_handler(int irq
, void *dev_id
)
170 /* This is the paper-clip reset which does an emergency reboot. */
171 printk(KERN_INFO
"Restarting system.\n");
172 machine_restart(NULL
);
174 /* This should never be reached. */
178 static void __init
fsg_init(void)
184 fsg_flash_resource
.start
= IXP4XX_EXP_BUS_BASE(0);
185 fsg_flash_resource
.end
=
186 IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size
- 1;
188 *IXP4XX_EXP_CS0
|= IXP4XX_FLASH_WRITABLE
;
189 *IXP4XX_EXP_CS1
= *IXP4XX_EXP_CS0
;
191 /* Configure CS2 for operation, 8bit and writable */
192 *IXP4XX_EXP_CS2
= 0xbfff0002;
194 i2c_register_board_info(0, fsg_i2c_board_info
,
195 ARRAY_SIZE(fsg_i2c_board_info
));
197 /* This is only useful on a modified machine, but it is valuable
198 * to have it first in order to see debug messages, and so that
199 * it does *not* get removed if platform_add_devices fails!
201 (void)platform_device_register(&fsg_uart
);
203 platform_add_devices(fsg_devices
, ARRAY_SIZE(fsg_devices
));
205 if (request_irq(gpio_to_irq(FSG_RB_GPIO
), &fsg_reset_handler
,
206 IRQF_DISABLED
| IRQF_TRIGGER_LOW
,
207 "FSG reset button", NULL
) < 0) {
209 printk(KERN_DEBUG
"Reset Button IRQ %d not available\n",
210 gpio_to_irq(FSG_RB_GPIO
));
213 if (request_irq(gpio_to_irq(FSG_SB_GPIO
), &fsg_power_handler
,
214 IRQF_DISABLED
| IRQF_TRIGGER_LOW
,
215 "FSG power button", NULL
) < 0) {
217 printk(KERN_DEBUG
"Power Button IRQ %d not available\n",
218 gpio_to_irq(FSG_SB_GPIO
));
222 * Map in a portion of the flash and read the MAC addresses.
223 * Since it is stored in BE in the flash itself, we need to
224 * byteswap it if we're in LE mode.
226 f
= ioremap(IXP4XX_EXP_BUS_BASE(0), 0x400000);
230 for (i
= 0; i
< 6; i
++) {
231 fsg_plat_eth
[0].hwaddr
[i
] = readb(f
+ 0x3C0422 + i
);
232 fsg_plat_eth
[1].hwaddr
[i
] = readb(f
+ 0x3C043B + i
);
237 Endian-swapped reads from unaligned addresses are
238 required to extract the two MACs from the big-endian
239 Redboot config area in flash.
242 fsg_plat_eth
[0].hwaddr
[0] = readb(f
+ 0x3C0421);
243 fsg_plat_eth
[0].hwaddr
[1] = readb(f
+ 0x3C0420);
244 fsg_plat_eth
[0].hwaddr
[2] = readb(f
+ 0x3C0427);
245 fsg_plat_eth
[0].hwaddr
[3] = readb(f
+ 0x3C0426);
246 fsg_plat_eth
[0].hwaddr
[4] = readb(f
+ 0x3C0425);
247 fsg_plat_eth
[0].hwaddr
[5] = readb(f
+ 0x3C0424);
249 fsg_plat_eth
[1].hwaddr
[0] = readb(f
+ 0x3C0439);
250 fsg_plat_eth
[1].hwaddr
[1] = readb(f
+ 0x3C043F);
251 fsg_plat_eth
[1].hwaddr
[2] = readb(f
+ 0x3C043E);
252 fsg_plat_eth
[1].hwaddr
[3] = readb(f
+ 0x3C043D);
253 fsg_plat_eth
[1].hwaddr
[4] = readb(f
+ 0x3C043C);
254 fsg_plat_eth
[1].hwaddr
[5] = readb(f
+ 0x3C0443);
258 printk(KERN_INFO
"FSG: Using MAC address %pM for port 0\n",
259 fsg_plat_eth
[0].hwaddr
);
260 printk(KERN_INFO
"FSG: Using MAC address %pM for port 1\n",
261 fsg_plat_eth
[1].hwaddr
);
265 MACHINE_START(FSG
, "Freecom FSG-3")
266 /* Maintainer: www.nslu2-linux.org */
267 .phys_io
= IXP4XX_PERIPHERAL_BASE_PHYS
,
268 .io_pg_offst
= ((IXP4XX_PERIPHERAL_BASE_VIRT
) >> 18) & 0xfffc,
269 .map_io
= ixp4xx_map_io
,
270 .init_irq
= ixp4xx_init_irq
,
271 .timer
= &ixp4xx_timer
,
272 .boot_params
= 0x0100,
273 .init_machine
= fsg_init
,