#ifndef __PFORM_CFG_H__ #define __PFORM_CFG_H__ #include #include #include #if defined(CONFIG_MIPS_SANGAM) #include #include #include #endif #if defined(CONFIG_MIPS_APEX) #include #include #include #endif #if defined(CONFIG_MIPS_TITAN) #include #include #include #endif #if defined(CONFIG_MIPS_PUMAS) #include #include #include #endif #if defined(CONFIG_MIPS_YAMUNA) #include #include #include #include #include #endif #if defined(CONFIG_MIPS_AVALANCHE_INTC) #include #endif #if defined(CONFIG_MIPS_AVALANCHE_PCI) #include #endif #if defined(CONFIG_MIPS_AVALANCHE_QUICK_IIC) #include #endif #include /*! TODO(boto): move this define to the global configuration file! */ #undef CONFIG_MIPS_AVALANCHE_COLORED_LED #if defined(CONFIG_MIPS_AVALANCHE_LED) /*! NOTE(boto): fixed the header paths */ //#include //#include //#include #include #include #include #endif #if defined(CONFIG_MIPS_AVALANCHE_COLORED_LED) #include #endif #if defined(CONFIG_DMA_NONCOHERENT) #ifdef CONFIG_K0_COHERENCY_ALGO_WT_WA #define MIPS_4KC #else #define MIPS_4KEC #endif #endif #if !defined(CONFIG_CPU_LITTLE_ENDIAN) #define PAL_NATIVE_ENDIAN_BIG #endif #if !defined(CONFIG_DMA_NONCOHERENT) && !defined(CONFIG_MIPS_UNCACHED) #error "Error in MIPS cache configuration. PAL SYS cache APIs will not work." #endif #endif /* __PFORM_CFG_H__ */