1 /* This is the single file included by all MPC8260 build options. 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 __CONFIG_8260_DEFS 9 #define __CONFIG_8260_DEFS 10 11 #include <linux/config.h> 12 13 #ifdef CONFIG_8260 14 15 #ifdef CONFIG_RPX6 16 #include <platforms/rpx8260.h> 17 #endif 18 19 #ifdef CONFIG_EST8260 20 #include <platforms/est8260.h> 21 #endif 22 23 #ifdef CONFIG_PQ2ADS 24 #include <platforms/pq2ads.h> 25 #endif 26 27 /* I don't yet have the ISA or PCI stuff done....no 8260 with 28 * such thing..... 29 */ 30 #define _IO_BASE 0 31 #define _ISA_MEM_BASE 0 32 #define PCI_DRAM_OFFSET 0 33 34 #ifndef __ASSEMBLY__ 35 /* The "residual" data board information structure the boot loader 36 * hands to us. 37 */ 38 extern unsigned char __res[]; 39 #endif /* __ASSEMBLY__ */ 40 41 #define request_8xxirq request_irq 42 43 #endif /* CONFIG_8260 */ 44 #endif /* !__CONFIG_8260_DEFS */ 45 #endif /* __KERNEL__ */ 46