berlin2-pll.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * Copyright (c) 2014 Marvell Technology Group Ltd.
  3. *
  4. * Alexandre Belloni <alexandre.belloni@free-electrons.com>
  5. * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms and conditions of the GNU General Public License,
  9. * version 2, as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  14. * more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along with
  17. * this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <linux/clk-provider.h>
  20. #include <linux/io.h>
  21. #include <linux/kernel.h>
  22. #include <linux/of.h>
  23. #include <linux/of_address.h>
  24. #include <linux/slab.h>
  25. #include <asm/div64.h>
  26. #include "berlin2-div.h"
  27. struct berlin2_pll_map {
  28. const u8 vcodiv[16];
  29. u8 mult;
  30. u8 fbdiv_shift;
  31. u8 rfdiv_shift;
  32. u8 divsel_shift;
  33. };
  34. struct berlin2_pll {
  35. struct clk_hw hw;
  36. void __iomem *base;
  37. struct berlin2_pll_map map;
  38. };
  39. #define to_berlin2_pll(hw) container_of(hw, struct berlin2_pll, hw)
  40. #define SPLL_CTRL0 0x00
  41. #define SPLL_CTRL1 0x04
  42. #define SPLL_CTRL2 0x08
  43. #define SPLL_CTRL3 0x0c
  44. #define SPLL_CTRL4 0x10
  45. #define FBDIV_MASK 0x1ff
  46. #define RFDIV_MASK 0x1f
  47. #define DIVSEL_MASK 0xf
  48. /*
  49. * The output frequency formula for the pll is:
  50. * clkout = fbdiv / refdiv * parent / vcodiv
  51. */
  52. static unsigned long
  53. berlin2_pll_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
  54. {
  55. struct berlin2_pll *pll = to_berlin2_pll(hw);
  56. struct berlin2_pll_map *map = &pll->map;
  57. u32 val, fbdiv, rfdiv, vcodivsel, vcodiv;
  58. u64 rate = parent_rate;
  59. val = readl_relaxed(pll->base + SPLL_CTRL0);
  60. fbdiv = (val >> map->fbdiv_shift) & FBDIV_MASK;
  61. rfdiv = (val >> map->rfdiv_shift) & RFDIV_MASK;
  62. if (rfdiv == 0) {
  63. pr_warn("%s has zero rfdiv\n", __clk_get_name(hw->clk));
  64. rfdiv = 1;
  65. }
  66. val = readl_relaxed(pll->base + SPLL_CTRL1);
  67. vcodivsel = (val >> map->divsel_shift) & DIVSEL_MASK;
  68. vcodiv = map->vcodiv[vcodivsel];
  69. if (vcodiv == 0) {
  70. pr_warn("%s has zero vcodiv (index %d)\n",
  71. __clk_get_name(hw->clk), vcodivsel);
  72. vcodiv = 1;
  73. }
  74. rate *= fbdiv * map->mult;
  75. do_div(rate, rfdiv * vcodiv);
  76. return (unsigned long)rate;
  77. }
  78. static const struct clk_ops berlin2_pll_ops = {
  79. .recalc_rate = berlin2_pll_recalc_rate,
  80. };
  81. struct clk * __init
  82. berlin2_pll_register(const struct berlin2_pll_map *map,
  83. void __iomem *base, const char *name,
  84. const char *parent_name, unsigned long flags)
  85. {
  86. struct clk_init_data init;
  87. struct berlin2_pll *pll;
  88. pll = kzalloc(sizeof(*pll), GFP_KERNEL);
  89. if (!pll)
  90. return ERR_PTR(-ENOMEM);
  91. /* copy pll_map to allow __initconst */
  92. memcpy(&pll->map, map, sizeof(*map));
  93. pll->base = base;
  94. pll->hw.init = &init;
  95. init.name = name;
  96. init.ops = &berlin2_pll_ops;
  97. init.parent_names = &parent_name;
  98. init.num_parents = 1;
  99. init.flags = flags;
  100. return clk_register(NULL, &pll->hw);
  101. }