update to 2.6.9-rc1
[linux-flexiantxendom0-3.2.10.git] / arch / arm / mach-iop3xx / arch.c
1 /*
2  * linux/arch/arm/mach-iop3xx/arch.c
3  *
4  * Author: Nicolas Pitre <nico@cam.org>
5  * Copyright (C) 2001 MontaVista Software, Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  */
12 #include <linux/config.h>
13 #include <linux/init.h>
14 #include <linux/major.h>
15 #include <linux/fs.h>
16
17 #include <asm/setup.h>
18 #include <asm/system.h>
19 #include <asm/memory.h>
20 #include <asm/hardware.h>
21 #include <asm/mach-types.h>
22 #include <asm/mach/arch.h>
23
24 #ifdef CONFIG_ARCH_IQ80321
25 extern void iq80321_map_io(void);
26 extern void iop321_init_irq(void);
27 extern void iop321_init_time(void);
28 #endif
29
30 #ifdef CONFIG_ARCH_IQ80321
31 static void __init
32 fixup_iop321(struct machine_desc *desc, struct tag *tags,
33               char **cmdline, struct meminfo *mi)
34 {
35 }
36 #endif
37
38 #if defined(CONFIG_ARCH_IQ80321)
39 MACHINE_START(IQ80321, "Intel IQ80321")
40         MAINTAINER("Intel Corporation")
41         BOOT_MEM(PHYS_OFFSET, IQ80321_UART1, 0xfe800000)
42         FIXUP(fixup_iop321)
43         MAPIO(iq80321_map_io)
44         INITIRQ(iop321_init_irq)
45         INITTIME(iop321_init_time)
46 MACHINE_END
47
48 #else
49 #error No machine descriptor defined for this IOP3xx implementation
50 #endif