Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * OMAP2xxx DVFS virtual clock functions |
| 3 | * |
| 4 | * Copyright (C) 2005-2008 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 | |
| 29 | #include <linux/kernel.h> |
| 30 | #include <linux/errno.h> |
| 31 | #include <linux/clk.h> |
| 32 | #include <linux/io.h> |
| 33 | #include <linux/cpufreq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 35 | |
| 36 | #include <plat/clock.h> |
Tony Lindgren | 622297f | 2012-10-02 14:19:52 -0700 | [diff] [blame^] | 37 | |
| 38 | #include "../plat-omap/sram.h" |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 39 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 40 | #include "soc.h" |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 41 | #include "clock.h" |
| 42 | #include "clock2xxx.h" |
| 43 | #include "opp2xxx.h" |
Paul Walmsley | 59fb659 | 2010-12-21 15:30:55 -0700 | [diff] [blame] | 44 | #include "cm2xxx_3xxx.h" |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 45 | #include "cm-regbits-24xx.h" |
Paul Walmsley | 3e6ece1 | 2012-10-17 00:46:45 +0000 | [diff] [blame] | 46 | #include "sdrc.h" |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 47 | |
| 48 | const struct prcm_config *curr_prcm_set; |
| 49 | const struct prcm_config *rate_table; |
| 50 | |
| 51 | /** |
| 52 | * omap2_table_mpu_recalc - just return the MPU speed |
| 53 | * @clk: virt_prcm_set struct clk |
| 54 | * |
| 55 | * Set virt_prcm_set's rate to the mpu_speed field of the current PRCM set. |
| 56 | */ |
| 57 | unsigned long omap2_table_mpu_recalc(struct clk *clk) |
| 58 | { |
| 59 | return curr_prcm_set->mpu_speed; |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Look for a rate equal or less than the target rate given a configuration set. |
| 64 | * |
| 65 | * What's not entirely clear is "which" field represents the key field. |
| 66 | * Some might argue L3-DDR, others ARM, others IVA. This code is simple and |
| 67 | * just uses the ARM rates. |
| 68 | */ |
| 69 | long omap2_round_to_table_rate(struct clk *clk, unsigned long rate) |
| 70 | { |
| 71 | const struct prcm_config *ptr; |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 72 | long highest_rate, sys_clk_rate; |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 73 | |
| 74 | highest_rate = -EINVAL; |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 75 | sys_clk_rate = __clk_get_rate(sclk); |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 76 | |
| 77 | for (ptr = rate_table; ptr->mpu_speed; ptr++) { |
| 78 | if (!(ptr->flags & cpu_mask)) |
| 79 | continue; |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 80 | if (ptr->xtal_speed != sys_clk_rate) |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 81 | continue; |
| 82 | |
| 83 | highest_rate = ptr->mpu_speed; |
| 84 | |
| 85 | /* Can check only after xtal frequency check */ |
| 86 | if (ptr->mpu_speed <= rate) |
| 87 | break; |
| 88 | } |
| 89 | return highest_rate; |
| 90 | } |
| 91 | |
| 92 | /* Sets basic clocks based on the specified rate */ |
| 93 | int omap2_select_table_rate(struct clk *clk, unsigned long rate) |
| 94 | { |
| 95 | u32 cur_rate, done_rate, bypass = 0, tmp; |
| 96 | const struct prcm_config *prcm; |
| 97 | unsigned long found_speed = 0; |
| 98 | unsigned long flags; |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 99 | long sys_clk_rate; |
| 100 | |
| 101 | sys_clk_rate = __clk_get_rate(sclk); |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 102 | |
| 103 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { |
| 104 | if (!(prcm->flags & cpu_mask)) |
| 105 | continue; |
| 106 | |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 107 | if (prcm->xtal_speed != sys_clk_rate) |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 108 | continue; |
| 109 | |
| 110 | if (prcm->mpu_speed <= rate) { |
| 111 | found_speed = prcm->mpu_speed; |
| 112 | break; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | if (!found_speed) { |
| 117 | printk(KERN_INFO "Could not set MPU rate to %luMHz\n", |
| 118 | rate / 1000000); |
| 119 | return -EINVAL; |
| 120 | } |
| 121 | |
| 122 | curr_prcm_set = prcm; |
| 123 | cur_rate = omap2xxx_clk_get_core_rate(dclk); |
| 124 | |
| 125 | if (prcm->dpll_speed == cur_rate / 2) { |
| 126 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1); |
| 127 | } else if (prcm->dpll_speed == cur_rate * 2) { |
| 128 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1); |
| 129 | } else if (prcm->dpll_speed != cur_rate) { |
| 130 | local_irq_save(flags); |
| 131 | |
| 132 | if (prcm->dpll_speed == prcm->xtal_speed) |
| 133 | bypass = 1; |
| 134 | |
| 135 | if ((prcm->cm_clksel2_pll & OMAP24XX_CORE_CLK_SRC_MASK) == |
| 136 | CORE_CLK_SRC_DPLL_X2) |
| 137 | done_rate = CORE_CLK_SRC_DPLL_X2; |
| 138 | else |
| 139 | done_rate = CORE_CLK_SRC_DPLL; |
| 140 | |
| 141 | /* MPU divider */ |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 142 | omap2_cm_write_mod_reg(prcm->cm_clksel_mpu, MPU_MOD, CM_CLKSEL); |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 143 | |
| 144 | /* dsp + iva1 div(2420), iva2.1(2430) */ |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 145 | omap2_cm_write_mod_reg(prcm->cm_clksel_dsp, |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 146 | OMAP24XX_DSP_MOD, CM_CLKSEL); |
| 147 | |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 148 | omap2_cm_write_mod_reg(prcm->cm_clksel_gfx, GFX_MOD, CM_CLKSEL); |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 149 | |
| 150 | /* Major subsystem dividers */ |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 151 | tmp = omap2_cm_read_mod_reg(CORE_MOD, CM_CLKSEL1) & OMAP24XX_CLKSEL_DSS2_MASK; |
| 152 | omap2_cm_write_mod_reg(prcm->cm_clksel1_core | tmp, CORE_MOD, |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 153 | CM_CLKSEL1); |
| 154 | |
| 155 | if (cpu_is_omap2430()) |
Paul Walmsley | c4d7e58 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 156 | omap2_cm_write_mod_reg(prcm->cm_clksel_mdm, |
Paul Walmsley | 734f69a | 2010-01-26 20:13:06 -0700 | [diff] [blame] | 157 | OMAP2430_MDM_MOD, CM_CLKSEL); |
| 158 | |
| 159 | /* x2 to enter omap2xxx_sdrc_init_params() */ |
| 160 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1); |
| 161 | |
| 162 | omap2_set_prcm(prcm->cm_clksel1_pll, prcm->base_sdrc_rfr, |
| 163 | bypass); |
| 164 | |
| 165 | omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked()); |
| 166 | omap2xxx_sdrc_reprogram(done_rate, 0); |
| 167 | |
| 168 | local_irq_restore(flags); |
| 169 | } |
| 170 | |
| 171 | return 0; |
| 172 | } |