http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / kernel / linux / arch / arm / mach-sa1100 / sherman.c
1 /*
2  * linux/arch/arm/mach-sa1100/sherman.c
3  */
4
5 #include <linux/init.h>
6 #include <linux/kernel.h>
7 #include <linux/tty.h>
8
9 #include <asm/hardware.h>
10 #include <asm/setup.h>
11
12 #include <asm/mach/arch.h>
13 #include <asm/mach/map.h>
14 #include <asm/mach/serial_sa1100.h>
15
16 #include "generic.h"
17
18 static void __init sherman_map_io(void)
19 {
20         sa1100_map_io();
21
22         sa1100_register_uart(0, 3);
23         sa1100_register_uart(1, 1);
24 }
25
26 MACHINE_START(SHERMAN, "Blazie Engineering Sherman")
27         BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
28         MAPIO(sherman_map_io)
29         INITIRQ(sa1100_init_irq)
30         INITTIME(sa1100_init_time)
31 MACHINE_END