rcar-gen3-cpg.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * R-Car Gen3 Clock Pulse Generator
  3. *
  4. * Copyright (C) 2015-2016 Glider bvba
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; version 2 of the License.
  9. */
  10. #ifndef __CLK_RENESAS_RCAR_GEN3_CPG_H__
  11. #define __CLK_RENESAS_RCAR_GEN3_CPG_H__
  12. enum rcar_gen3_clk_types {
  13. CLK_TYPE_GEN3_MAIN = CLK_TYPE_CUSTOM,
  14. CLK_TYPE_GEN3_PLL0,
  15. CLK_TYPE_GEN3_PLL1,
  16. CLK_TYPE_GEN3_PLL2,
  17. CLK_TYPE_GEN3_PLL3,
  18. CLK_TYPE_GEN3_PLL4,
  19. CLK_TYPE_GEN3_SD,
  20. CLK_TYPE_GEN3_R,
  21. CLK_TYPE_GEN3_PE,
  22. CLK_TYPE_GEN3_Z,
  23. CLK_TYPE_GEN3_Z2,
  24. };
  25. #define DEF_GEN3_SD(_name, _id, _parent, _offset) \
  26. DEF_BASE(_name, _id, CLK_TYPE_GEN3_SD, _parent, .offset = _offset)
  27. #define DEF_GEN3_PE(_name, _id, _parent_sscg, _div_sscg, _parent_clean, \
  28. _div_clean) \
  29. DEF_BASE(_name, _id, CLK_TYPE_GEN3_PE, \
  30. (_parent_sscg) << 16 | (_parent_clean), \
  31. .div = (_div_sscg) << 16 | (_div_clean))
  32. struct rcar_gen3_cpg_pll_config {
  33. u8 extal_div;
  34. u8 pll1_mult;
  35. u8 pll1_div;
  36. u8 pll3_mult;
  37. u8 pll3_div;
  38. };
  39. #define CPG_RCKCR 0x240
  40. struct clk *rcar_gen3_cpg_clk_register(struct device *dev,
  41. const struct cpg_core_clk *core, const struct cpg_mssr_info *info,
  42. struct clk **clks, void __iomem *base,
  43. struct raw_notifier_head *notifiers);
  44. int rcar_gen3_cpg_init(const struct rcar_gen3_cpg_pll_config *config,
  45. unsigned int clk_extalr, u32 mode);
  46. #endif