clk-mmc-phase.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*
  2. * Copyright 2014 Google, Inc
  3. * Author: Alexandru M Stan <amstan@chromium.org>
  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. #include <linux/slab.h>
  16. #include <linux/clk.h>
  17. #include <linux/clk-provider.h>
  18. #include <linux/io.h>
  19. #include <linux/kernel.h>
  20. #include "clk.h"
  21. struct rockchip_mmc_clock {
  22. struct clk_hw hw;
  23. void __iomem *reg;
  24. int id;
  25. int shift;
  26. };
  27. #define to_mmc_clock(_hw) container_of(_hw, struct rockchip_mmc_clock, hw)
  28. #define RK3288_MMC_CLKGEN_DIV 2
  29. static unsigned long rockchip_mmc_recalc(struct clk_hw *hw,
  30. unsigned long parent_rate)
  31. {
  32. return parent_rate / RK3288_MMC_CLKGEN_DIV;
  33. }
  34. #define ROCKCHIP_MMC_DELAY_SEL BIT(10)
  35. #define ROCKCHIP_MMC_DEGREE_MASK 0x3
  36. #define ROCKCHIP_MMC_DELAYNUM_OFFSET 2
  37. #define ROCKCHIP_MMC_DELAYNUM_MASK (0xff << ROCKCHIP_MMC_DELAYNUM_OFFSET)
  38. #define PSECS_PER_SEC 1000000000000LL
  39. /*
  40. * Each fine delay is between 44ps-77ps. Assume each fine delay is 60ps to
  41. * simplify calculations. So 45degs could be anywhere between 33deg and 57.8deg.
  42. */
  43. #define ROCKCHIP_MMC_DELAY_ELEMENT_PSEC 60
  44. static int rockchip_mmc_get_phase(struct clk_hw *hw)
  45. {
  46. struct rockchip_mmc_clock *mmc_clock = to_mmc_clock(hw);
  47. unsigned long rate = clk_get_rate(hw->clk);
  48. u32 raw_value;
  49. u16 degrees;
  50. u32 delay_num = 0;
  51. raw_value = readl(mmc_clock->reg) >> (mmc_clock->shift);
  52. degrees = (raw_value & ROCKCHIP_MMC_DEGREE_MASK) * 90;
  53. if (raw_value & ROCKCHIP_MMC_DELAY_SEL) {
  54. /* degrees/delaynum * 10000 */
  55. unsigned long factor = (ROCKCHIP_MMC_DELAY_ELEMENT_PSEC / 10) *
  56. 36 * (rate / 1000000);
  57. delay_num = (raw_value & ROCKCHIP_MMC_DELAYNUM_MASK);
  58. delay_num >>= ROCKCHIP_MMC_DELAYNUM_OFFSET;
  59. degrees += DIV_ROUND_CLOSEST(delay_num * factor, 10000);
  60. }
  61. return degrees % 360;
  62. }
  63. static int rockchip_mmc_set_phase(struct clk_hw *hw, int degrees)
  64. {
  65. struct rockchip_mmc_clock *mmc_clock = to_mmc_clock(hw);
  66. unsigned long rate = clk_get_rate(hw->clk);
  67. u8 nineties, remainder;
  68. u8 delay_num;
  69. u32 raw_value;
  70. u32 delay;
  71. nineties = degrees / 90;
  72. remainder = (degrees % 90);
  73. /*
  74. * Due to the inexact nature of the "fine" delay, we might
  75. * actually go non-monotonic. We don't go _too_ monotonic
  76. * though, so we should be OK. Here are options of how we may
  77. * work:
  78. *
  79. * Ideally we end up with:
  80. * 1.0, 2.0, ..., 69.0, 70.0, ..., 89.0, 90.0
  81. *
  82. * On one extreme (if delay is actually 44ps):
  83. * .73, 1.5, ..., 50.6, 51.3, ..., 65.3, 90.0
  84. * The other (if delay is actually 77ps):
  85. * 1.3, 2.6, ..., 88.6. 89.8, ..., 114.0, 90
  86. *
  87. * It's possible we might make a delay that is up to 25
  88. * degrees off from what we think we're making. That's OK
  89. * though because we should be REALLY far from any bad range.
  90. */
  91. /*
  92. * Convert to delay; do a little extra work to make sure we
  93. * don't overflow 32-bit / 64-bit numbers.
  94. */
  95. delay = 10000000; /* PSECS_PER_SEC / 10000 / 10 */
  96. delay *= remainder;
  97. delay = DIV_ROUND_CLOSEST(delay,
  98. (rate / 1000) * 36 *
  99. (ROCKCHIP_MMC_DELAY_ELEMENT_PSEC / 10));
  100. delay_num = (u8) min_t(u32, delay, 255);
  101. raw_value = delay_num ? ROCKCHIP_MMC_DELAY_SEL : 0;
  102. raw_value |= delay_num << ROCKCHIP_MMC_DELAYNUM_OFFSET;
  103. raw_value |= nineties;
  104. writel(HIWORD_UPDATE(raw_value, 0x07ff, mmc_clock->shift),
  105. mmc_clock->reg);
  106. pr_debug("%s->set_phase(%d) delay_nums=%u reg[0x%p]=0x%03x actual_degrees=%d\n",
  107. clk_hw_get_name(hw), degrees, delay_num,
  108. mmc_clock->reg, raw_value>>(mmc_clock->shift),
  109. rockchip_mmc_get_phase(hw)
  110. );
  111. return 0;
  112. }
  113. static const struct clk_ops rockchip_mmc_clk_ops = {
  114. .recalc_rate = rockchip_mmc_recalc,
  115. .get_phase = rockchip_mmc_get_phase,
  116. .set_phase = rockchip_mmc_set_phase,
  117. };
  118. struct clk *rockchip_clk_register_mmc(const char *name,
  119. const char *const *parent_names, u8 num_parents,
  120. void __iomem *reg, int shift)
  121. {
  122. struct clk_init_data init;
  123. struct rockchip_mmc_clock *mmc_clock;
  124. struct clk *clk;
  125. mmc_clock = kmalloc(sizeof(*mmc_clock), GFP_KERNEL);
  126. if (!mmc_clock)
  127. return ERR_PTR(-ENOMEM);
  128. init.name = name;
  129. init.flags = 0;
  130. init.num_parents = num_parents;
  131. init.parent_names = parent_names;
  132. init.ops = &rockchip_mmc_clk_ops;
  133. mmc_clock->hw.init = &init;
  134. mmc_clock->reg = reg;
  135. mmc_clock->shift = shift;
  136. clk = clk_register(NULL, &mmc_clock->hw);
  137. if (IS_ERR(clk))
  138. kfree(mmc_clock);
  139. return clk;
  140. }