aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/mpc8260.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-ppc/mpc8260.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/asm-ppc/mpc8260.h')
-rw-r--r--include/asm-ppc/mpc8260.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/include/asm-ppc/mpc8260.h b/include/asm-ppc/mpc8260.h
new file mode 100644
index 000000000000..d820894e5991
--- /dev/null
+++ b/include/asm-ppc/mpc8260.h
@@ -0,0 +1,79 @@
1/*
2 * Since there are many different boards and no standard configuration,
3 * we have a unique include file for each. Rather than change every
4 * file that has to include MPC8260 configuration, they all include
5 * this one and the configuration switching is done here.
6 */
7#ifdef __KERNEL__
8#ifndef __ASM_PPC_MPC8260_H__
9#define __ASM_PPC_MPC8260_H__
10
11#include <linux/config.h>
12
13#ifdef CONFIG_8260
14
15#ifdef CONFIG_EST8260
16#include <platforms/est8260.h>
17#endif
18
19#ifdef CONFIG_SBC82xx
20#include <platforms/sbc82xx.h>
21#endif
22
23#ifdef CONFIG_SBS8260
24#include <platforms/sbs8260.h>
25#endif
26
27#ifdef CONFIG_RPX8260
28#include <platforms/rpx8260.h>
29#endif
30
31#ifdef CONFIG_WILLOW
32#include <platforms/willow.h>
33#endif
34
35#ifdef CONFIG_TQM8260
36#include <platforms/tqm8260.h>
37#endif
38
39#if defined(CONFIG_PQ2ADS) || defined (CONFIG_PQ2FADS)
40#include <platforms/pq2ads.h>
41#endif
42
43#ifdef CONFIG_PCI_8260
44#include <syslib/m8260_pci.h>
45#endif
46
47/* Make sure the memory translation stuff is there if PCI not used.
48 */
49#ifndef _IO_BASE
50#define _IO_BASE 0
51#endif
52
53#ifndef _ISA_MEM_BASE
54#define _ISA_MEM_BASE 0
55#endif
56
57#ifndef PCI_DRAM_OFFSET
58#define PCI_DRAM_OFFSET 0
59#endif
60
61/* Map 256MB I/O region
62 */
63#ifndef IO_PHYS_ADDR
64#define IO_PHYS_ADDR 0xe0000000
65#endif
66#ifndef IO_VIRT_ADDR
67#define IO_VIRT_ADDR IO_PHYS_ADDR
68#endif
69
70#ifndef __ASSEMBLY__
71/* The "residual" data board information structure the boot loader
72 * hands to us.
73 */
74extern unsigned char __res[];
75#endif
76
77#endif /* CONFIG_8260 */
78#endif /* !__ASM_PPC_MPC8260_H__ */
79#endif /* __KERNEL__ */