clk-pll-a10.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright (C) 2015 Altera Corporation. All rights reserved
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include <linux/clk-provider.h>
  17. #include <linux/io.h>
  18. #include <linux/of.h>
  19. #include <linux/of_address.h>
  20. #include "clk.h"
  21. /* Clock Manager offsets */
  22. #define CLK_MGR_PLL_CLK_SRC_SHIFT 8
  23. #define CLK_MGR_PLL_CLK_SRC_MASK 0x3
  24. /* Clock bypass bits */
  25. #define SOCFPGA_PLL_BG_PWRDWN 0
  26. #define SOCFPGA_PLL_PWR_DOWN 1
  27. #define SOCFPGA_PLL_EXT_ENA 2
  28. #define SOCFPGA_PLL_DIVF_MASK 0x00001FFF
  29. #define SOCFPGA_PLL_DIVF_SHIFT 0
  30. #define SOCFPGA_PLL_DIVQ_MASK 0x003F0000
  31. #define SOCFPGA_PLL_DIVQ_SHIFT 16
  32. #define SOCFGPA_MAX_PARENTS 5
  33. #define SOCFPGA_MAIN_PLL_CLK "main_pll"
  34. #define SOCFPGA_PERIP_PLL_CLK "periph_pll"
  35. #define to_socfpga_clk(p) container_of(p, struct socfpga_pll, hw.hw)
  36. void __iomem *clk_mgr_a10_base_addr;
  37. static unsigned long clk_pll_recalc_rate(struct clk_hw *hwclk,
  38. unsigned long parent_rate)
  39. {
  40. struct socfpga_pll *socfpgaclk = to_socfpga_clk(hwclk);
  41. unsigned long divf, divq, reg;
  42. unsigned long long vco_freq;
  43. /* read VCO1 reg for numerator and denominator */
  44. reg = readl(socfpgaclk->hw.reg + 0x4);
  45. divf = (reg & SOCFPGA_PLL_DIVF_MASK) >> SOCFPGA_PLL_DIVF_SHIFT;
  46. divq = (reg & SOCFPGA_PLL_DIVQ_MASK) >> SOCFPGA_PLL_DIVQ_SHIFT;
  47. vco_freq = (unsigned long long)parent_rate * (divf + 1);
  48. do_div(vco_freq, (1 + divq));
  49. return (unsigned long)vco_freq;
  50. }
  51. static u8 clk_pll_get_parent(struct clk_hw *hwclk)
  52. {
  53. struct socfpga_pll *socfpgaclk = to_socfpga_clk(hwclk);
  54. u32 pll_src;
  55. pll_src = readl(socfpgaclk->hw.reg);
  56. return (pll_src >> CLK_MGR_PLL_CLK_SRC_SHIFT) &
  57. CLK_MGR_PLL_CLK_SRC_MASK;
  58. }
  59. static struct clk_ops clk_pll_ops = {
  60. .recalc_rate = clk_pll_recalc_rate,
  61. .get_parent = clk_pll_get_parent,
  62. };
  63. static struct __init clk * __socfpga_pll_init(struct device_node *node,
  64. const struct clk_ops *ops)
  65. {
  66. u32 reg;
  67. struct clk *clk;
  68. struct socfpga_pll *pll_clk;
  69. const char *clk_name = node->name;
  70. const char *parent_name[SOCFGPA_MAX_PARENTS];
  71. struct clk_init_data init;
  72. struct device_node *clkmgr_np;
  73. int rc;
  74. int i = 0;
  75. of_property_read_u32(node, "reg", &reg);
  76. pll_clk = kzalloc(sizeof(*pll_clk), GFP_KERNEL);
  77. if (WARN_ON(!pll_clk))
  78. return NULL;
  79. clkmgr_np = of_find_compatible_node(NULL, NULL, "altr,clk-mgr");
  80. clk_mgr_a10_base_addr = of_iomap(clkmgr_np, 0);
  81. BUG_ON(!clk_mgr_a10_base_addr);
  82. pll_clk->hw.reg = clk_mgr_a10_base_addr + reg;
  83. of_property_read_string(node, "clock-output-names", &clk_name);
  84. init.name = clk_name;
  85. init.ops = ops;
  86. init.flags = 0;
  87. while (i < SOCFGPA_MAX_PARENTS && (parent_name[i] =
  88. of_clk_get_parent_name(node, i)) != NULL)
  89. i++;
  90. init.num_parents = i;
  91. init.parent_names = parent_name;
  92. pll_clk->hw.hw.init = &init;
  93. pll_clk->hw.bit_idx = SOCFPGA_PLL_EXT_ENA;
  94. clk_pll_ops.enable = clk_gate_ops.enable;
  95. clk_pll_ops.disable = clk_gate_ops.disable;
  96. clk = clk_register(NULL, &pll_clk->hw.hw);
  97. if (WARN_ON(IS_ERR(clk))) {
  98. kfree(pll_clk);
  99. return NULL;
  100. }
  101. rc = of_clk_add_provider(node, of_clk_src_simple_get, clk);
  102. return clk;
  103. }
  104. void __init socfpga_a10_pll_init(struct device_node *node)
  105. {
  106. __socfpga_pll_init(node, &clk_pll_ops);
  107. }