clock.h 336 B

123456789101112131415
  1. #ifndef PLAT_CLOCK_H
  2. #define PLAT_CLOCK_H
  3. #include <asm/hardware/icst.h>
  4. struct clk_ops {
  5. long (*round)(struct clk *, unsigned long);
  6. int (*set)(struct clk *, unsigned long);
  7. void (*setvco)(struct clk *, struct icst_vco);
  8. };
  9. int icst_clk_set(struct clk *, unsigned long);
  10. long icst_clk_round(struct clk *, unsigned long);
  11. #endif