clk-periph.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright 2011-2012 Calxeda, Inc.
  3. * Copyright (C) 2012-2013 Altera Corporation <www.altera.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * Based from clk-highbank.c
  16. *
  17. */
  18. #include <linux/clk.h>
  19. #include <linux/clkdev.h>
  20. #include <linux/clk-provider.h>
  21. #include <linux/io.h>
  22. #include <linux/of.h>
  23. #include "clk.h"
  24. #define to_socfpga_periph_clk(p) container_of(p, struct socfpga_periph_clk, hw.hw)
  25. static unsigned long clk_periclk_recalc_rate(struct clk_hw *hwclk,
  26. unsigned long parent_rate)
  27. {
  28. struct socfpga_periph_clk *socfpgaclk = to_socfpga_periph_clk(hwclk);
  29. u32 div, val;
  30. if (socfpgaclk->fixed_div) {
  31. div = socfpgaclk->fixed_div;
  32. } else {
  33. if (socfpgaclk->div_reg) {
  34. val = readl(socfpgaclk->div_reg) >> socfpgaclk->shift;
  35. val &= div_mask(socfpgaclk->width);
  36. parent_rate /= (val + 1);
  37. }
  38. div = ((readl(socfpgaclk->hw.reg) & 0x1ff) + 1);
  39. }
  40. return parent_rate / div;
  41. }
  42. static const struct clk_ops periclk_ops = {
  43. .recalc_rate = clk_periclk_recalc_rate,
  44. };
  45. static __init void __socfpga_periph_init(struct device_node *node,
  46. const struct clk_ops *ops)
  47. {
  48. u32 reg;
  49. struct clk *clk;
  50. struct socfpga_periph_clk *periph_clk;
  51. const char *clk_name = node->name;
  52. const char *parent_name;
  53. struct clk_init_data init;
  54. int rc;
  55. u32 fixed_div;
  56. u32 div_reg[3];
  57. of_property_read_u32(node, "reg", &reg);
  58. periph_clk = kzalloc(sizeof(*periph_clk), GFP_KERNEL);
  59. if (WARN_ON(!periph_clk))
  60. return;
  61. periph_clk->hw.reg = clk_mgr_base_addr + reg;
  62. rc = of_property_read_u32_array(node, "div-reg", div_reg, 3);
  63. if (!rc) {
  64. periph_clk->div_reg = clk_mgr_base_addr + div_reg[0];
  65. periph_clk->shift = div_reg[1];
  66. periph_clk->width = div_reg[2];
  67. } else {
  68. periph_clk->div_reg = 0;
  69. }
  70. rc = of_property_read_u32(node, "fixed-divider", &fixed_div);
  71. if (rc)
  72. periph_clk->fixed_div = 0;
  73. else
  74. periph_clk->fixed_div = fixed_div;
  75. of_property_read_string(node, "clock-output-names", &clk_name);
  76. init.name = clk_name;
  77. init.ops = ops;
  78. init.flags = 0;
  79. parent_name = of_clk_get_parent_name(node, 0);
  80. init.parent_names = &parent_name;
  81. init.num_parents = 1;
  82. periph_clk->hw.hw.init = &init;
  83. clk = clk_register(NULL, &periph_clk->hw.hw);
  84. if (WARN_ON(IS_ERR(clk))) {
  85. kfree(periph_clk);
  86. return;
  87. }
  88. rc = of_clk_add_provider(node, of_clk_src_simple_get, clk);
  89. }
  90. void __init socfpga_periph_init(struct device_node *node)
  91. {
  92. __socfpga_periph_init(node, &periclk_ops);
  93. }