2 * linux/arch/arm/mach-aaec2000/aaed2000.c
4 * Support for the Agilent AAED-2000 Development Platform.
6 * Copyright (c) 2005 Nicolas Bellido Y Ortega
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/device.h>
17 #include <linux/major.h>
18 #include <linux/interrupt.h>
20 #include <asm/setup.h>
21 #include <asm/memory.h>
22 #include <asm/mach-types.h>
23 #include <asm/hardware.h>
26 #include <asm/mach/arch.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/irq.h>
32 static void __init aaed2000_init_irq(void)
37 static void __init aaed2000_map_io(void)
42 MACHINE_START(AAED2000, "Agilent AAED-2000 Development Platform")
43 /* Maintainer: Nicolas Bellido Y Ortega */
44 .phys_ram = 0xf0000000,
46 .io_pg_offst = ((VIO_BASE) >> 18) & 0xfffc,
47 .map_io = aaed2000_map_io,
48 .init_irq = aaed2000_init_irq,
49 .timer = &aaec2000_timer,