clkt2xxx_virt_prcm_set.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*
  2. * OMAP2xxx DVFS virtual clock functions
  3. *
  4. * Copyright (C) 2005-2008, 2012 Texas Instruments, Inc.
  5. * Copyright (C) 2004-2010 Nokia Corporation
  6. *
  7. * Contacts:
  8. * Richard Woodruff <r-woodruff2@ti.com>
  9. * Paul Walmsley
  10. *
  11. * Based on earlier work by Tuukka Tikkanen, Tony Lindgren,
  12. * Gordon McNutt and RidgeRun, Inc.
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License version 2 as
  16. * published by the Free Software Foundation.
  17. *
  18. * XXX Some of this code should be replaceable by the upcoming OPP layer
  19. * code. However, some notion of "rate set" is probably still necessary
  20. * for OMAP2xxx at least. Rate sets should be generalized so they can be
  21. * used for any OMAP chip, not just OMAP2xxx. In particular, Richard Woodruff
  22. * has in the past expressed a preference to use rate sets for OPP changes,
  23. * rather than dynamically recalculating the clock tree, so if someone wants
  24. * this badly enough to write the code to handle it, we should support it
  25. * as an option.
  26. */
  27. #undef DEBUG
  28. #include <linux/kernel.h>
  29. #include <linux/errno.h>
  30. #include <linux/clk.h>
  31. #include <linux/io.h>
  32. #include <linux/cpufreq.h>
  33. #include <linux/slab.h>
  34. #include "soc.h"
  35. #include "clock.h"
  36. #include "clock2xxx.h"
  37. #include "opp2xxx.h"
  38. #include "cm2xxx.h"
  39. #include "cm-regbits-24xx.h"
  40. #include "sdrc.h"
  41. #include "sram.h"
  42. const struct prcm_config *curr_prcm_set;
  43. const struct prcm_config *rate_table;
  44. /*
  45. * sys_ck_rate: the rate of the external high-frequency clock
  46. * oscillator on the board. Set by the SoC-specific clock init code.
  47. * Once set during a boot, will not change.
  48. */
  49. static unsigned long sys_ck_rate;
  50. /**
  51. * omap2_table_mpu_recalc - just return the MPU speed
  52. * @clk: virt_prcm_set struct clk
  53. *
  54. * Set virt_prcm_set's rate to the mpu_speed field of the current PRCM set.
  55. */
  56. unsigned long omap2_table_mpu_recalc(struct clk_hw *clk,
  57. unsigned long parent_rate)
  58. {
  59. return curr_prcm_set->mpu_speed;
  60. }
  61. /*
  62. * Look for a rate equal or less than the target rate given a configuration set.
  63. *
  64. * What's not entirely clear is "which" field represents the key field.
  65. * Some might argue L3-DDR, others ARM, others IVA. This code is simple and
  66. * just uses the ARM rates.
  67. */
  68. long omap2_round_to_table_rate(struct clk_hw *hw, unsigned long rate,
  69. unsigned long *parent_rate)
  70. {
  71. const struct prcm_config *ptr;
  72. long highest_rate;
  73. highest_rate = -EINVAL;
  74. for (ptr = rate_table; ptr->mpu_speed; ptr++) {
  75. if (!(ptr->flags & cpu_mask))
  76. continue;
  77. if (ptr->xtal_speed != sys_ck_rate)
  78. continue;
  79. highest_rate = ptr->mpu_speed;
  80. /* Can check only after xtal frequency check */
  81. if (ptr->mpu_speed <= rate)
  82. break;
  83. }
  84. return highest_rate;
  85. }
  86. /* Sets basic clocks based on the specified rate */
  87. int omap2_select_table_rate(struct clk_hw *hw, unsigned long rate,
  88. unsigned long parent_rate)
  89. {
  90. u32 cur_rate, done_rate, bypass = 0;
  91. const struct prcm_config *prcm;
  92. unsigned long found_speed = 0;
  93. unsigned long flags;
  94. for (prcm = rate_table; prcm->mpu_speed; prcm++) {
  95. if (!(prcm->flags & cpu_mask))
  96. continue;
  97. if (prcm->xtal_speed != sys_ck_rate)
  98. continue;
  99. if (prcm->mpu_speed <= rate) {
  100. found_speed = prcm->mpu_speed;
  101. break;
  102. }
  103. }
  104. if (!found_speed) {
  105. printk(KERN_INFO "Could not set MPU rate to %luMHz\n",
  106. rate / 1000000);
  107. return -EINVAL;
  108. }
  109. curr_prcm_set = prcm;
  110. cur_rate = omap2xxx_clk_get_core_rate();
  111. if (prcm->dpll_speed == cur_rate / 2) {
  112. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1);
  113. } else if (prcm->dpll_speed == cur_rate * 2) {
  114. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  115. } else if (prcm->dpll_speed != cur_rate) {
  116. local_irq_save(flags);
  117. if (prcm->dpll_speed == prcm->xtal_speed)
  118. bypass = 1;
  119. if ((prcm->cm_clksel2_pll & OMAP24XX_CORE_CLK_SRC_MASK) ==
  120. CORE_CLK_SRC_DPLL_X2)
  121. done_rate = CORE_CLK_SRC_DPLL_X2;
  122. else
  123. done_rate = CORE_CLK_SRC_DPLL;
  124. omap2xxx_cm_set_mod_dividers(prcm->cm_clksel_mpu,
  125. prcm->cm_clksel_dsp,
  126. prcm->cm_clksel_gfx,
  127. prcm->cm_clksel1_core,
  128. prcm->cm_clksel_mdm);
  129. /* x2 to enter omap2xxx_sdrc_init_params() */
  130. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  131. omap2_set_prcm(prcm->cm_clksel1_pll, prcm->base_sdrc_rfr,
  132. bypass);
  133. omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
  134. omap2xxx_sdrc_reprogram(done_rate, 0);
  135. local_irq_restore(flags);
  136. }
  137. return 0;
  138. }
  139. /**
  140. * omap2xxx_clkt_vps_check_bootloader_rate - determine which of the rate
  141. * table sets matches the current CORE DPLL hardware rate
  142. *
  143. * Check the MPU rate set by bootloader. Sets the 'curr_prcm_set'
  144. * global to point to the active rate set when found; otherwise, sets
  145. * it to NULL. No return value;
  146. */
  147. void omap2xxx_clkt_vps_check_bootloader_rates(void)
  148. {
  149. const struct prcm_config *prcm = NULL;
  150. unsigned long rate;
  151. rate = omap2xxx_clk_get_core_rate();
  152. for (prcm = rate_table; prcm->mpu_speed; prcm++) {
  153. if (!(prcm->flags & cpu_mask))
  154. continue;
  155. if (prcm->xtal_speed != sys_ck_rate)
  156. continue;
  157. if (prcm->dpll_speed <= rate)
  158. break;
  159. }
  160. curr_prcm_set = prcm;
  161. }
  162. /**
  163. * omap2xxx_clkt_vps_late_init - store a copy of the sys_ck rate
  164. *
  165. * Store a copy of the sys_ck rate for later use by the OMAP2xxx DVFS
  166. * code. (The sys_ck rate does not -- or rather, must not -- change
  167. * during kernel runtime.) Must be called after we have a valid
  168. * sys_ck rate, but before the virt_prcm_set clock rate is
  169. * recalculated. No return value.
  170. */
  171. void omap2xxx_clkt_vps_late_init(void)
  172. {
  173. struct clk *c;
  174. c = clk_get(NULL, "sys_ck");
  175. if (IS_ERR(c)) {
  176. WARN(1, "could not locate sys_ck\n");
  177. } else {
  178. sys_ck_rate = clk_get_rate(c);
  179. clk_put(c);
  180. }
  181. }
  182. #ifdef CONFIG_OF
  183. #include <linux/clk-provider.h>
  184. #include <linux/clkdev.h>
  185. static const struct clk_ops virt_prcm_set_ops = {
  186. .recalc_rate = &omap2_table_mpu_recalc,
  187. .set_rate = &omap2_select_table_rate,
  188. .round_rate = &omap2_round_to_table_rate,
  189. };
  190. /**
  191. * omap2xxx_clkt_vps_init - initialize virt_prcm_set clock
  192. *
  193. * Does a manual init for the virtual prcm DVFS clock for OMAP2. This
  194. * function is called only from omap2 DT clock init, as the virtual
  195. * node is not modelled in the DT clock data.
  196. */
  197. void omap2xxx_clkt_vps_init(void)
  198. {
  199. struct clk_init_data init = { NULL };
  200. struct clk_hw_omap *hw = NULL;
  201. struct clk *clk;
  202. const char *parent_name = "mpu_ck";
  203. omap2xxx_clkt_vps_late_init();
  204. omap2xxx_clkt_vps_check_bootloader_rates();
  205. hw = kzalloc(sizeof(*hw), GFP_KERNEL);
  206. if (!hw)
  207. goto cleanup;
  208. init.name = "virt_prcm_set";
  209. init.ops = &virt_prcm_set_ops;
  210. init.parent_names = &parent_name;
  211. init.num_parents = 1;
  212. hw->hw.init = &init;
  213. clk = clk_register(NULL, &hw->hw);
  214. clkdev_create(clk, "cpufreq_ck", NULL);
  215. return;
  216. cleanup:
  217. kfree(hw);
  218. }
  219. #endif