| #ifndef __MACH_FEATURES_H |
| #define __MACH_FEATURES_H |
| /*Todo - Update this file according to pxa182x specifications*/ |
| #include <asm/arch/cpu.h> |
| |
| static inline int has_feat_legacy_apmu_core_status(void) |
| { |
| return 0; |
| } |
| |
| static inline int has_feat_d1p_hipwr(void) |
| { |
| return 0; |
| } |
| |
| static inline int has_feat_debugreg_in_d1p(void) |
| { |
| return 0; |
| } |
| |
| /* A new feature to enable MCK4/AXI clock gating */ |
| static inline int has_feat_mck4_axi_clock_gate(void) |
| { |
| return 0; |
| } |
| |
| /* default peri_clk = div_value *4, for Zx, peri_clk = div_value *2 */ |
| static inline int has_feat_periclk_mult2(void) |
| { |
| return 0; |
| } |
| |
| static inline int has_feat_ssc(void) |
| { |
| return 0; |
| } |
| |
| static inline int has_feat_gnss(void) |
| { |
| return 0; |
| } |
| |
| static inline int has_feat_ccic2(void) |
| { |
| return 0; |
| } |
| |
| static inline int has_feat_timer2(void) |
| { |
| return 0; |
| } |
| #endif |