ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / arm / mach-adifcc / arch.c
1 /*
2  *  linux/arch/arm/mach-adifcc/arch.c
3  *
4  *  Copyright (C) 2001 MontaVista Software, Inc.
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 #include <linux/config.h>
11 #include <linux/init.h>
12 #include <linux/major.h>
13 #include <linux/fs.h>
14
15 #include <asm/setup.h>
16 #include <asm/memory.h>
17 #include <asm/hardware.h>
18 #include <asm/mach-types.h>
19 #include <asm/mach/arch.h>
20
21 extern void adifcc_map_io(void);
22 extern void adifcc_init_irq(void);
23
24 #ifdef CONFIG_ARCH_ADI_EVB
25 MACHINE_START(ADI_EVB, "ADI 80200FCC Evaluation Board")
26         MAINTAINER("MontaVista Software Inc.")
27         BOOT_MEM(0xc0000000, 0x00400000, 0xff400000)
28         MAPIO(adifcc_map_io)
29         INITIRQ(adifcc_init_irq)
30 MACHINE_END
31 #endif
32