2 /* This is the single file included by all MPC8xx build options.
3 * Since there are many different boards and no standard configuration,
4 * we have a unique include file for each. Rather than change every
5 * file that has to include MPC8xx configuration, they all include
6 * this one and the configuration switching is done here.
8 #ifndef __CONFIG_8xx_DEFS
9 #define __CONFIG_8xx_DEFS
22 #include <asm/rpxlite.h>
26 #include <asm/bseip.h>
29 #ifdef CONFIG_RPXCLASSIC
30 #include <asm/rpxclassic.h>
33 /* I need this to get pt_regs.......
35 #include <asm/ptrace.h>
37 /* Currently, all 8xx boards that support a processor to PCI/ISA bridge
38 * use the same memory map.
41 #if defined(CONFIG_PCI) && defined(PCI_ISA_IO_ADDR)
42 #define _IO_BASE PCI_ISA_IO_ADDR
43 #define _ISA_MEM_BASE PCI_ISA_MEM_ADDR
44 #define PCI_DRAM_OFFSET 0x80000000
47 #define _ISA_MEM_BASE 0
48 #define PCI_DRAM_OFFSET 0
52 #define _ISA_MEM_BASE 0
53 #define PCI_DRAM_OFFSET 0
56 extern unsigned long isa_io_base
;
57 extern unsigned long isa_mem_base
;
58 extern unsigned long pci_dram_offset
;
60 /* The "residual" data board information structure the boot loader
63 extern unsigned char __res
[];
65 extern int request_8xxirq(unsigned int irq
,
66 void (*handler
)(int, void *, struct pt_regs
*),
70 #endif /* CONFIG_8xx */