clk-mmc-phase.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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 ROCKCHIP_MMC_INIT_STATE_RESET 0x1
  39. #define ROCKCHIP_MMC_INIT_STATE_SHIFT 1
  40. #define PSECS_PER_SEC 1000000000000LL
  41. /*
  42. * Each fine delay is between 44ps-77ps. Assume each fine delay is 60ps to
  43. * simplify calculations. So 45degs could be anywhere between 33deg and 57.8deg.
  44. */
  45. #define ROCKCHIP_MMC_DELAY_ELEMENT_PSEC 60
  46. static int rockchip_mmc_get_phase(struct clk_hw *hw)
  47. {
  48. struct rockchip_mmc_clock *mmc_clock = to_mmc_clock(hw);
  49. unsigned long rate = clk_get_rate(hw->clk);
  50. u32 raw_value;
  51. u16 degrees;
  52. u32 delay_num = 0;
  53. /* See the comment for rockchip_mmc_set_phase below */
  54. if (!rate) {
  55. pr_err("%s: invalid clk rate\n", __func__);
  56. return -EINVAL;
  57. }
  58. raw_value = readl(mmc_clock->reg) >> (mmc_clock->shift);
  59. degrees = (raw_value & ROCKCHIP_MMC_DEGREE_MASK) * 90;
  60. if (raw_value & ROCKCHIP_MMC_DELAY_SEL) {
  61. /* degrees/delaynum * 10000 */
  62. unsigned long factor = (ROCKCHIP_MMC_DELAY_ELEMENT_PSEC / 10) *
  63. 36 * (rate / 1000000);
  64. delay_num = (raw_value & ROCKCHIP_MMC_DELAYNUM_MASK);
  65. delay_num >>= ROCKCHIP_MMC_DELAYNUM_OFFSET;
  66. degrees += DIV_ROUND_CLOSEST(delay_num * factor, 10000);
  67. }
  68. return degrees % 360;
  69. }
  70. static int rockchip_mmc_set_phase(struct clk_hw *hw, int degrees)
  71. {
  72. struct rockchip_mmc_clock *mmc_clock = to_mmc_clock(hw);
  73. unsigned long rate = clk_get_rate(hw->clk);
  74. u8 nineties, remainder;
  75. u8 delay_num;
  76. u32 raw_value;
  77. u32 delay;
  78. /*
  79. * The below calculation is based on the output clock from
  80. * MMC host to the card, which expects the phase clock inherits
  81. * the clock rate from its parent, namely the output clock
  82. * provider of MMC host. However, things may go wrong if
  83. * (1) It is orphan.
  84. * (2) It is assigned to the wrong parent.
  85. *
  86. * This check help debug the case (1), which seems to be the
  87. * most likely problem we often face and which makes it difficult
  88. * for people to debug unstable mmc tuning results.
  89. */
  90. if (!rate) {
  91. pr_err("%s: invalid clk rate\n", __func__);
  92. return -EINVAL;
  93. }
  94. nineties = degrees / 90;
  95. remainder = (degrees % 90);
  96. /*
  97. * Due to the inexact nature of the "fine" delay, we might
  98. * actually go non-monotonic. We don't go _too_ monotonic
  99. * though, so we should be OK. Here are options of how we may
  100. * work:
  101. *
  102. * Ideally we end up with:
  103. * 1.0, 2.0, ..., 69.0, 70.0, ..., 89.0, 90.0
  104. *
  105. * On one extreme (if delay is actually 44ps):
  106. * .73, 1.5, ..., 50.6, 51.3, ..., 65.3, 90.0
  107. * The other (if delay is actually 77ps):
  108. * 1.3, 2.6, ..., 88.6. 89.8, ..., 114.0, 90
  109. *
  110. * It's possible we might make a delay that is up to 25
  111. * degrees off from what we think we're making. That's OK
  112. * though because we should be REALLY far from any bad range.
  113. */
  114. /*
  115. * Convert to delay; do a little extra work to make sure we
  116. * don't overflow 32-bit / 64-bit numbers.
  117. */
  118. delay = 10000000; /* PSECS_PER_SEC / 10000 / 10 */
  119. delay *= remainder;
  120. delay = DIV_ROUND_CLOSEST(delay,
  121. (rate / 1000) * 36 *
  122. (ROCKCHIP_MMC_DELAY_ELEMENT_PSEC / 10));
  123. delay_num = (u8) min_t(u32, delay, 255);
  124. raw_value = delay_num ? ROCKCHIP_MMC_DELAY_SEL : 0;
  125. raw_value |= delay_num << ROCKCHIP_MMC_DELAYNUM_OFFSET;
  126. raw_value |= nineties;
  127. writel(HIWORD_UPDATE(raw_value, 0x07ff, mmc_clock->shift), mmc_clock->reg);
  128. pr_debug("%s->set_phase(%d) delay_nums=%u reg[0x%p]=0x%03x actual_degrees=%d\n",
  129. clk_hw_get_name(hw), degrees, delay_num,
  130. mmc_clock->reg, raw_value>>(mmc_clock->shift),
  131. rockchip_mmc_get_phase(hw)
  132. );
  133. return 0;
  134. }
  135. static const struct clk_ops rockchip_mmc_clk_ops = {
  136. .recalc_rate = rockchip_mmc_recalc,
  137. .get_phase = rockchip_mmc_get_phase,
  138. .set_phase = rockchip_mmc_set_phase,
  139. };
  140. struct clk *rockchip_clk_register_mmc(const char *name,
  141. const char *const *parent_names, u8 num_parents,
  142. void __iomem *reg, int shift)
  143. {
  144. struct clk_init_data init;
  145. struct rockchip_mmc_clock *mmc_clock;
  146. struct clk *clk;
  147. mmc_clock = kmalloc(sizeof(*mmc_clock), GFP_KERNEL);
  148. if (!mmc_clock)
  149. return NULL;
  150. init.name = name;
  151. init.flags = 0;
  152. init.num_parents = num_parents;
  153. init.parent_names = parent_names;
  154. init.ops = &rockchip_mmc_clk_ops;
  155. mmc_clock->hw.init = &init;
  156. mmc_clock->reg = reg;
  157. mmc_clock->shift = shift;
  158. /*
  159. * Assert init_state to soft reset the CLKGEN
  160. * for mmc tuning phase and degree
  161. */
  162. if (mmc_clock->shift == ROCKCHIP_MMC_INIT_STATE_SHIFT)
  163. writel(HIWORD_UPDATE(ROCKCHIP_MMC_INIT_STATE_RESET,
  164. ROCKCHIP_MMC_INIT_STATE_RESET,
  165. mmc_clock->shift), mmc_clock->reg);
  166. clk = clk_register(NULL, &mmc_clock->hw);
  167. if (IS_ERR(clk))
  168. goto err_free;
  169. return clk;
  170. err_free:
  171. kfree(mmc_clock);
  172. return NULL;
  173. }