2 * linux/arch/arm/mach-sa1100/lart.c
5 #include <linux/init.h>
6 #include <linux/kernel.h>
9 #include <mach/hardware.h>
10 #include <asm/setup.h>
11 #include <asm/mach-types.h>
14 #include <asm/mach/arch.h>
15 #include <asm/mach/map.h>
16 #include <asm/mach/serial_sa1100.h>
22 #warning "include/asm/arch-sa1100/ide.h needs fixing for lart"
24 static struct mcp_plat_data lart_mcp_data
= {
26 .sclk_rate
= 11981000,
29 static void __init
lart_init(void)
31 sa11x0_set_mcp_data(&lart_mcp_data
);
34 static struct map_desc lart_io_desc
[] __initdata
= {
35 { /* main flash memory */
36 .virtual = 0xe8000000,
37 .pfn
= __phys_to_pfn(0x00000000),
40 }, { /* main flash, alternative location */
41 .virtual = 0xec000000,
42 .pfn
= __phys_to_pfn(0x08000000),
48 static void __init
lart_map_io(void)
51 iotable_init(lart_io_desc
, ARRAY_SIZE(lart_io_desc
));
53 sa1100_register_uart(0, 3);
54 sa1100_register_uart(1, 1);
55 sa1100_register_uart(2, 2);
57 GAFR
|= (GPIO_UART_TXD
| GPIO_UART_RXD
);
58 GPDR
|= GPIO_UART_TXD
;
59 GPDR
&= ~GPIO_UART_RXD
;
63 MACHINE_START(LART
, "LART")
64 .phys_io
= 0x80000000,
65 .io_pg_offst
= ((0xf8000000) >> 18) & 0xfffc,
66 .boot_params
= 0xc0000100,
67 .map_io
= lart_map_io
,
68 .init_irq
= sa1100_init_irq
,
69 .init_machine
= lart_init
,
70 .timer
= &sa1100_timer
,