MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / include / asm-ppc / ibm4xx.h
blobcae365fa55895b6813c1c0e34d4012a0550ff658
1 /*
3 * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
5 * Module name: ibm4xx.h
7 * Description:
8 * A generic include file which pulls in appropriate include files
9 * for specific board types based on configuration settings.
13 #ifdef __KERNEL__
14 #ifndef __ASM_IBM4XX_H__
15 #define __ASM_IBM4XX_H__
17 #include <linux/config.h>
18 #include <asm/types.h>
20 #ifdef CONFIG_40x
22 #if defined(CONFIG_ASH)
23 #include <platforms/4xx/ash.h>
24 #endif
26 #if defined(CONFIG_BUBINGA)
27 #include <platforms/4xx/bubinga.h>
28 #endif
30 #if defined(CONFIG_CPCI405)
31 #include <platforms/4xx/cpci405.h>
32 #endif
34 #if defined(CONFIG_EP405)
35 #include <platforms/4xx/ep405.h>
36 #endif
38 #if defined(CONFIG_OAK)
39 #include <platforms/4xx/oak.h>
40 #endif
42 #if defined(CONFIG_REDWOOD_4)
43 #include <platforms/4xx/redwood.h>
44 #endif
46 #if defined(CONFIG_REDWOOD_5)
47 #include <platforms/4xx/redwood5.h>
48 #endif
50 #if defined(CONFIG_REDWOOD_6)
51 #include <platforms/4xx/redwood6.h>
52 #endif
54 #if defined(CONFIG_SYCAMORE)
55 #include <platforms/4xx/sycamore.h>
56 #endif
58 #if defined(CONFIG_WALNUT)
59 #include <platforms/4xx/walnut.h>
60 #endif
62 #ifndef __ASSEMBLY__
64 #ifdef CONFIG_40x
66 * The "residual" board information structure the boot loader passes
67 * into the kernel.
69 extern bd_t __res;
70 #endif
72 void ppc4xx_setup_arch(void);
73 void ppc4xx_map_io(void);
74 void ppc4xx_init_IRQ(void);
75 void ppc4xx_init(unsigned long r3, unsigned long r4, unsigned long r5,
76 unsigned long r6, unsigned long r7);
77 #endif
79 #ifndef PPC4xx_MACHINE_NAME
80 #define PPC4xx_MACHINE_NAME "Unidentified 4xx class"
81 #endif
84 /* IO_BASE is for PCI I/O.
85 * ISA not supported, just here to resolve copilation.
88 #ifndef _IO_BASE
89 #define _IO_BASE 0xe8000000 /* The PCI address window */
90 #define _ISA_MEM_BASE 0
91 #define PCI_DRAM_OFFSET 0
92 #endif
94 #elif CONFIG_44x
96 #if defined(CONFIG_EBONY)
97 #include <platforms/4xx/ebony.h>
98 #endif
100 #if defined(CONFIG_OCOTEA)
101 #include <platforms/4xx/ocotea.h>
102 #endif
104 #ifndef __ASSEMBLY__
105 #ifdef CONFIG_40x
107 * The "residual" board information structure the boot loader passes
108 * into the kernel.
110 extern bd_t __res;
111 #endif
112 #endif
113 #endif /* CONFIG_40x */
115 #endif /* __ASM_IBM4XX_H__ */
116 #endif /* __KERNEL__ */