ccu_common.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright (c) 2016 Maxime Ripard. All rights reserved.
  3. *
  4. * This software is licensed under the terms of the GNU General Public
  5. * License version 2, as published by the Free Software Foundation, and
  6. * may be copied, distributed, and modified under those terms.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _COMMON_H_
  14. #define _COMMON_H_
  15. #include <linux/compiler.h>
  16. #include <linux/clk-provider.h>
  17. #define CCU_FEATURE_FRACTIONAL BIT(0)
  18. #define CCU_FEATURE_VARIABLE_PREDIV BIT(1)
  19. #define CCU_FEATURE_FIXED_PREDIV BIT(2)
  20. #define CCU_FEATURE_FIXED_POSTDIV BIT(3)
  21. #define CCU_FEATURE_ALL_PREDIV BIT(4)
  22. #define CCU_FEATURE_LOCK_REG BIT(5)
  23. #define CCU_FEATURE_MMC_TIMING_SWITCH BIT(6)
  24. #define CCU_FEATURE_SIGMA_DELTA_MOD BIT(7)
  25. /* MMC timing mode switch bit */
  26. #define CCU_MMC_NEW_TIMING_MODE BIT(30)
  27. struct device_node;
  28. struct ccu_common {
  29. void __iomem *base;
  30. u16 reg;
  31. u16 lock_reg;
  32. u32 prediv;
  33. unsigned long features;
  34. spinlock_t *lock;
  35. struct clk_hw hw;
  36. };
  37. static inline struct ccu_common *hw_to_ccu_common(struct clk_hw *hw)
  38. {
  39. return container_of(hw, struct ccu_common, hw);
  40. }
  41. struct sunxi_ccu_desc {
  42. struct ccu_common **ccu_clks;
  43. unsigned long num_ccu_clks;
  44. struct clk_hw_onecell_data *hw_clks;
  45. struct ccu_reset_map *resets;
  46. unsigned long num_resets;
  47. };
  48. void ccu_helper_wait_for_lock(struct ccu_common *common, u32 lock);
  49. struct ccu_pll_nb {
  50. struct notifier_block clk_nb;
  51. struct ccu_common *common;
  52. u32 enable;
  53. u32 lock;
  54. };
  55. #define to_ccu_pll_nb(_nb) container_of(_nb, struct ccu_pll_nb, clk_nb)
  56. int ccu_pll_notifier_register(struct ccu_pll_nb *pll_nb);
  57. int sunxi_ccu_probe(struct device_node *node, void __iomem *reg,
  58. const struct sunxi_ccu_desc *desc);
  59. #endif /* _COMMON_H_ */