http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / kernel / linux / arch / arm / mach-sa1100 / lart.c
1 /*
2  * linux/arch/arm/mach-sa1100/lart.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 #include <asm/mach-types.h>
12
13 #include <asm/mach/arch.h>
14 #include <asm/mach/map.h>
15 #include <asm/mach/serial_sa1100.h>
16
17 #include "generic.h"
18
19
20 static struct map_desc lart_io_desc[] __initdata = {
21  /* virtual     physical    length      type */
22   { 0xe8000000, 0x00000000, 0x00400000, MT_DEVICE }, /* main flash memory */
23   { 0xec000000, 0x08000000, 0x00400000, MT_DEVICE }  /* main flash, alternative location */
24 };
25
26 static void __init lart_map_io(void)
27 {
28         sa1100_map_io();
29         iotable_init(lart_io_desc, ARRAY_SIZE(lart_io_desc));
30
31         sa1100_register_uart(0, 3);
32         sa1100_register_uart(1, 1);
33         sa1100_register_uart(2, 2);
34
35         GAFR |= (GPIO_UART_TXD | GPIO_UART_RXD);
36         GPDR |= GPIO_UART_TXD;
37         GPDR &= ~GPIO_UART_RXD;
38         PPAR |= PPAR_UPR;
39 }
40
41 MACHINE_START(LART, "LART")
42         BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
43         BOOT_PARAMS(0xc0000100)
44         MAPIO(lart_map_io)
45         INITIRQ(sa1100_init_irq)
46         INITTIME(sa1100_init_time)
47 MACHINE_END