fixed-factor.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * TI Fixed Factor Clock
  3. *
  4. * Copyright (C) 2013 Texas Instruments, Inc.
  5. *
  6. * Tero Kristo <t-kristo@ti.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  13. * kind, whether express or implied; without even the implied warranty
  14. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #include <linux/clk-provider.h>
  18. #include <linux/slab.h>
  19. #include <linux/err.h>
  20. #include <linux/of.h>
  21. #include <linux/of_address.h>
  22. #include <linux/clk/ti.h>
  23. #undef pr_fmt
  24. #define pr_fmt(fmt) "%s: " fmt, __func__
  25. /**
  26. * of_ti_fixed_factor_clk_setup - Setup function for TI fixed factor clock
  27. * @node: device node for this clock
  28. *
  29. * Sets up a simple fixed factor clock based on device tree info.
  30. */
  31. static void __init of_ti_fixed_factor_clk_setup(struct device_node *node)
  32. {
  33. struct clk *clk;
  34. const char *clk_name = node->name;
  35. const char *parent_name;
  36. u32 div, mult;
  37. u32 flags = 0;
  38. if (of_property_read_u32(node, "ti,clock-div", &div)) {
  39. pr_err("%s must have a clock-div property\n", node->name);
  40. return;
  41. }
  42. if (of_property_read_u32(node, "ti,clock-mult", &mult)) {
  43. pr_err("%s must have a clock-mult property\n", node->name);
  44. return;
  45. }
  46. if (of_property_read_bool(node, "ti,set-rate-parent"))
  47. flags |= CLK_SET_RATE_PARENT;
  48. parent_name = of_clk_get_parent_name(node, 0);
  49. clk = clk_register_fixed_factor(NULL, clk_name, parent_name, flags,
  50. mult, div);
  51. if (!IS_ERR(clk)) {
  52. of_clk_add_provider(node, of_clk_src_simple_get, clk);
  53. of_ti_clk_autoidle_setup(node);
  54. }
  55. }
  56. CLK_OF_DECLARE(ti_fixed_factor_clk, "ti,fixed-factor-clock",
  57. of_ti_fixed_factor_clk_setup);