[PATCH] ppc64: Remove unused code
[linux-2.6/verdex.git] / arch / arm / mach-sa1100 / lart.c
blobed6744d480aff0f04e2b1bd6a1f742b1e01d3b23
1 /*
2 * linux/arch/arm/mach-sa1100/lart.c
3 */
5 #include <linux/init.h>
6 #include <linux/kernel.h>
7 #include <linux/tty.h>
9 #include <asm/hardware.h>
10 #include <asm/setup.h>
11 #include <asm/mach-types.h>
13 #include <asm/mach/arch.h>
14 #include <asm/mach/map.h>
15 #include <asm/mach/serial_sa1100.h>
16 #include <asm/arch/mcp.h>
18 #include "generic.h"
21 #warning "include/asm/arch-sa1100/ide.h needs fixing for lart"
23 static struct mcp_plat_data lart_mcp_data = {
24 .mccr0 = MCCR0_ADM,
25 .sclk_rate = 11981000,
28 static void __init lart_init(void)
30 sa11x0_set_mcp_data(&lart_mcp_data);
33 static struct map_desc lart_io_desc[] __initdata = {
34 /* virtual physical length type */
35 { 0xe8000000, 0x00000000, 0x00400000, MT_DEVICE }, /* main flash memory */
36 { 0xec000000, 0x08000000, 0x00400000, MT_DEVICE } /* main flash, alternative location */
39 static void __init lart_map_io(void)
41 sa1100_map_io();
42 iotable_init(lart_io_desc, ARRAY_SIZE(lart_io_desc));
44 sa1100_register_uart(0, 3);
45 sa1100_register_uart(1, 1);
46 sa1100_register_uart(2, 2);
48 GAFR |= (GPIO_UART_TXD | GPIO_UART_RXD);
49 GPDR |= GPIO_UART_TXD;
50 GPDR &= ~GPIO_UART_RXD;
51 PPAR |= PPAR_UPR;
54 MACHINE_START(LART, "LART")
55 .phys_ram = 0xc0000000,
56 .phys_io = 0x80000000,
57 .io_pg_offst = ((0xf8000000) >> 18) & 0xfffc,
58 .boot_params = 0xc0000100,
59 .map_io = lart_map_io,
60 .init_irq = sa1100_init_irq,
61 .init_machine = lart_init,
62 .timer = &sa1100_timer,
63 MACHINE_END