216b4188ab034d96debd09876e7241dbb61bd945
[linux-flexiantxendom0-3.2.10.git] / arch / arm / mach-arc / arch.c
1 /*
2  *  linux/arch/arm/mach-arc/arch.c
3  *
4  *  Copyright (C) 1998-2001 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  *  Architecture specific fixups.
11  */
12 #include <linux/config.h>
13 #include <linux/tty.h>
14 #include <linux/init.h>
15
16 #include <asm/mach-types.h>
17 #include <asm/hardware.h>
18 #include <asm/page.h>
19 #include <asm/setup.h>
20
21 #include <asm/mach/map.h>
22 #include <asm/mach/arch.h>
23
24 extern void arc_init_irq(void);
25
26 #ifdef CONFIG_ARCH_ARC
27 MACHINE_START(ARCHIMEDES, "Acorn-Archimedes")
28         MAINTAINER("Dave Gilbert")
29         BOOT_PARAMS(0x0207c000)
30         INITIRQ(arc_init_irq)
31 MACHINE_END
32 #endif
33 #ifdef CONFIG_ARCH_A5K
34 MACHINE_START(A5K, "Acorn-A5000")
35         MAINTAINER("Russell King")
36         BOOT_PARAMS(0x0207c000)
37         INITIRQ(arc_init_irq)
38 MACHINE_END
39 #endif
40