0001
0002
0003 #include <linux/compiler.h>
0004 #include <linux/types.h>
0005
0006 extern int pxa25x_clocks_init(void __iomem *regs);
0007 extern int pxa27x_clocks_init(void __iomem *regs);
0008 extern int pxa3xx_clocks_init(void __iomem *regs, void __iomem *oscc_reg);
0009
0010 #ifdef CONFIG_PXA3xx
0011 extern unsigned pxa3xx_get_clk_frequency_khz(int);
0012 extern void pxa3xx_clk_update_accr(u32 disable, u32 enable, u32 xclkcfg, u32 mask);
0013 #else
0014 #define pxa3xx_get_clk_frequency_khz(x) (0)
0015 #define pxa3xx_clk_update_accr(disable, enable, xclkcfg, mask) do { } while (0)
0016 #endif