ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.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_IQ80310
25 extern void iq80310_map_io(void);
26 extern void iq80310_init_irq(void);
27 #endif
28
29 #ifdef CONFIG_ARCH_IQ80321
30 extern void iq80321_map_io(void);
31 extern void iop321_init_irq(void);
32 #endif
33
34 #ifdef CONFIG_ARCH_IQ80310
35 static void __init
36 fixup_iq80310(struct machine_desc *desc, struct tag *tags,
37               char **cmdline, struct meminfo *mi)
38 {
39         system_rev = (*(volatile unsigned int*)0xfe830000) & 0x0f;
40
41         if (system_rev)
42                 system_rev = 0xF;
43 }
44 #endif
45
46 #ifdef CONFIG_ARCH_IQ80321
47 static void __init
48 fixup_iop321(struct machine_desc *desc, struct param_struct *params,
49               char **cmdline, struct meminfo *mi)
50 {
51 }
52 #endif
53
54 #ifdef CONFIG_ARCH_IQ80310
55 MACHINE_START(IQ80310, "Cyclone IQ80310")
56         MAINTAINER("MontaVista Software Inc.")
57         BOOT_MEM(0xa0000000, 0xfe000000, 0xfe000000)
58         FIXUP(fixup_iq80310)
59         MAPIO(iq80310_map_io)
60         INITIRQ(iq80310_init_irq)
61 MACHINE_END
62
63 #elif defined(CONFIG_ARCH_IQ80321)
64 MACHINE_START(IQ80321, "Intel IQ80321")
65         MAINTAINER("MontaVista Software, Inc.")
66         BOOT_MEM(PHYS_OFFSET, IQ80321_UART1, 0xfe800000)
67         FIXUP(fixup_iop321)
68         MAPIO(iq80321_map_io)
69         INITIRQ(iop321_init_irq)
70 MACHINE_END
71
72 #else
73 #error No machine descriptor defined for this IOP310 implementation
74 #endif