blob: f8bdd5183e2fe732cb317e557b3ee2ef5a039a1f [file] [log] [blame]
Kevin Hilmanccd5ca72011-03-21 14:08:55 -07001/*
2 * OMAP Voltage Controller (VC) interface
3 *
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
10#include <linux/kernel.h>
11#include <linux/delay.h>
12#include <linux/init.h>
13
14#include <plat/cpu.h>
15
16#include "voltage.h"
17#include "vc.h"
18#include "prm-regbits-34xx.h"
19#include "prm-regbits-44xx.h"
20#include "prm44xx.h"
21
Kevin Hilman8abc0b52011-06-02 17:28:13 -070022/**
23 * struct omap_vc_channel_cfg - describe the cfg_channel bitfield
24 * @sa: bit for slave address
25 * @rav: bit for voltage configuration register
26 * @rac: bit for command configuration register
27 * @racen: enable bit for RAC
28 * @cmd: bit for command value set selection
29 *
30 * Channel configuration bits, common for OMAP3+
Kevin Hilman24d31942011-03-29 15:57:16 -070031 * OMAP3 register: PRM_VC_CH_CONF
32 * OMAP4 register: PRM_VC_CFG_CHANNEL
Kevin Hilman8abc0b52011-06-02 17:28:13 -070033 * OMAP5 register: PRM_VC_SMPS_<voltdm>_CONFIG
Kevin Hilman24d31942011-03-29 15:57:16 -070034 */
Kevin Hilman8abc0b52011-06-02 17:28:13 -070035struct omap_vc_channel_cfg {
36 u8 sa;
37 u8 rav;
38 u8 rac;
39 u8 racen;
40 u8 cmd;
41};
42
43static struct omap_vc_channel_cfg vc_default_channel_cfg = {
44 .sa = BIT(0),
45 .rav = BIT(1),
46 .rac = BIT(2),
47 .racen = BIT(3),
48 .cmd = BIT(4),
49};
50
51/*
52 * On OMAP3+, all VC channels have the above default bitfield
53 * configuration, except the OMAP4 MPU channel. This appears
54 * to be a freak accident as every other VC channel has the
55 * default configuration, thus creating a mutant channel config.
56 */
57static struct omap_vc_channel_cfg vc_mutant_channel_cfg = {
58 .sa = BIT(0),
59 .rav = BIT(2),
60 .rac = BIT(3),
61 .racen = BIT(4),
62 .cmd = BIT(1),
63};
64
65static struct omap_vc_channel_cfg *vc_cfg_bits;
66#define CFG_CHANNEL_MASK 0x1f
Kevin Hilman24d31942011-03-29 15:57:16 -070067
68/**
69 * omap_vc_config_channel - configure VC channel to PMIC mappings
70 * @voltdm: pointer to voltagdomain defining the desired VC channel
71 *
72 * Configures the VC channel to PMIC mappings for the following
73 * PMIC settings
74 * - i2c slave address (SA)
75 * - voltage configuration address (RAV)
76 * - command configuration address (RAC) and enable bit (RACEN)
77 * - command values for ON, ONLP, RET and OFF (CMD)
78 *
79 * This function currently only allows flexible configuration of the
80 * non-default channel. Starting with OMAP4, there are more than 2
81 * channels, with one defined as the default (on OMAP4, it's MPU.)
82 * Only the non-default channel can be configured.
83 */
84static int omap_vc_config_channel(struct voltagedomain *voltdm)
85{
86 struct omap_vc_channel *vc = voltdm->vc;
87
88 /*
89 * For default channel, the only configurable bit is RACEN.
90 * All others must stay at zero (see function comment above.)
91 */
92 if (vc->flags & OMAP_VC_CHANNEL_DEFAULT)
Kevin Hilman8abc0b52011-06-02 17:28:13 -070093 vc->cfg_channel &= vc_cfg_bits->racen;
Kevin Hilman24d31942011-03-29 15:57:16 -070094
95 voltdm->rmw(CFG_CHANNEL_MASK << vc->cfg_channel_sa_shift,
96 vc->cfg_channel << vc->cfg_channel_sa_shift,
97 vc->common->cfg_channel_reg);
98
99 return 0;
100}
101
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700102/* Voltage scale and accessory APIs */
103int omap_vc_pre_scale(struct voltagedomain *voltdm,
104 unsigned long target_volt,
105 u8 *target_vsel, u8 *current_vsel)
106{
Kevin Hilmand84adcf2011-03-22 16:14:57 -0700107 struct omap_vc_channel *vc = voltdm->vc;
Kevin Hilman76ea7422011-04-05 15:15:31 -0700108 u32 vc_cmdval;
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700109
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700110 /* Check if sufficient pmic info is available for this vdd */
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700111 if (!voltdm->pmic) {
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700112 pr_err("%s: Insufficient pmic info to scale the vdd_%s\n",
113 __func__, voltdm->name);
114 return -EINVAL;
115 }
116
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700117 if (!voltdm->pmic->uv_to_vsel) {
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700118 pr_err("%s: PMIC function to convert voltage in uV to"
119 "vsel not registered. Hence unable to scale voltage"
120 "for vdd_%s\n", __func__, voltdm->name);
121 return -ENODATA;
122 }
123
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700124 if (!voltdm->read || !voltdm->write) {
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700125 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
126 __func__, voltdm->name);
127 return -EINVAL;
128 }
129
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700130 *target_vsel = voltdm->pmic->uv_to_vsel(target_volt);
Kevin Hilmand7b0de22011-07-18 15:31:00 -0700131 *current_vsel = voltdm->pmic->uv_to_vsel(vdd->curr_volt);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700132
133 /* Setting the ON voltage to the new target voltage */
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700134 vc_cmdval = voltdm->read(vc->cmdval_reg);
Kevin Hilmand84adcf2011-03-22 16:14:57 -0700135 vc_cmdval &= ~vc->common->cmd_on_mask;
136 vc_cmdval |= (*target_vsel << vc->common->cmd_on_shift);
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700137 voltdm->write(vc_cmdval, vc->cmdval_reg);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700138
Kevin Hilman76ea7422011-04-05 15:15:31 -0700139 omap_vp_update_errorgain(voltdm, target_volt);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700140
141 return 0;
142}
143
144void omap_vc_post_scale(struct voltagedomain *voltdm,
145 unsigned long target_volt,
146 u8 target_vsel, u8 current_vsel)
147{
148 struct omap_vdd_info *vdd = voltdm->vdd;
149 u32 smps_steps = 0, smps_delay = 0;
150
151 smps_steps = abs(target_vsel - current_vsel);
152 /* SMPS slew rate / step size. 2us added as buffer. */
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700153 smps_delay = ((smps_steps * voltdm->pmic->step_size) /
154 voltdm->pmic->slew_rate) + 2;
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700155 udelay(smps_delay);
156
157 vdd->curr_volt = target_volt;
158}
159
Kevin Hilmand84adcf2011-03-22 16:14:57 -0700160/* vc_bypass_scale - VC bypass method of voltage scaling */
161int omap_vc_bypass_scale(struct voltagedomain *voltdm,
162 unsigned long target_volt)
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700163{
Kevin Hilmand84adcf2011-03-22 16:14:57 -0700164 struct omap_vc_channel *vc = voltdm->vc;
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700165 u32 loop_cnt = 0, retries_cnt = 0;
166 u32 vc_valid, vc_bypass_val_reg, vc_bypass_value;
167 u8 target_vsel, current_vsel;
168 int ret;
169
170 ret = omap_vc_pre_scale(voltdm, target_volt, &target_vsel, &current_vsel);
171 if (ret)
172 return ret;
173
Kevin Hilmand84adcf2011-03-22 16:14:57 -0700174 vc_valid = vc->common->valid;
175 vc_bypass_val_reg = vc->common->bypass_val_reg;
176 vc_bypass_value = (target_vsel << vc->common->data_shift) |
Kevin Hilman78614e02011-03-29 14:24:47 -0700177 (vc->volt_reg_addr << vc->common->regaddr_shift) |
178 (vc->i2c_slave_addr << vc->common->slaveaddr_shift);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700179
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700180 voltdm->write(vc_bypass_value, vc_bypass_val_reg);
181 voltdm->write(vc_bypass_value | vc_valid, vc_bypass_val_reg);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700182
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700183 vc_bypass_value = voltdm->read(vc_bypass_val_reg);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700184 /*
185 * Loop till the bypass command is acknowledged from the SMPS.
186 * NOTE: This is legacy code. The loop count and retry count needs
187 * to be revisited.
188 */
189 while (!(vc_bypass_value & vc_valid)) {
190 loop_cnt++;
191
192 if (retries_cnt > 10) {
193 pr_warning("%s: Retry count exceeded\n", __func__);
194 return -ETIMEDOUT;
195 }
196
197 if (loop_cnt > 50) {
198 retries_cnt++;
199 loop_cnt = 0;
200 udelay(10);
201 }
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700202 vc_bypass_value = voltdm->read(vc_bypass_val_reg);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700203 }
204
205 omap_vc_post_scale(voltdm, target_volt, target_vsel, current_vsel);
206 return 0;
207}
208
209static void __init omap3_vfsm_init(struct voltagedomain *voltdm)
210{
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700211 /*
212 * Voltage Manager FSM parameters init
213 * XXX This data should be passed in from the board file
214 */
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700215 voltdm->write(OMAP3_CLKSETUP, OMAP3_PRM_CLKSETUP_OFFSET);
216 voltdm->write(OMAP3_VOLTOFFSET, OMAP3_PRM_VOLTOFFSET_OFFSET);
217 voltdm->write(OMAP3_VOLTSETUP2, OMAP3_PRM_VOLTSETUP2_OFFSET);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700218}
219
220static void __init omap3_vc_init_channel(struct voltagedomain *voltdm)
221{
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700222 static bool is_initialized;
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700223
224 if (is_initialized)
225 return;
226
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700227 omap3_vfsm_init(voltdm);
228
229 is_initialized = true;
230}
231
232
233/* OMAP4 specific voltage init functions */
234static void __init omap4_vc_init_channel(struct voltagedomain *voltdm)
235{
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700236 static bool is_initialized;
237 u32 vc_val;
238
239 if (is_initialized)
240 return;
241
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700242 /* XXX These are magic numbers and do not belong! */
243 vc_val = (0x60 << OMAP4430_SCLL_SHIFT | 0x26 << OMAP4430_SCLH_SHIFT);
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700244 voltdm->write(vc_val, OMAP4_PRM_VC_CFG_I2C_CLK_OFFSET);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700245
246 is_initialized = true;
247}
248
Kevin Hilmanf5395482011-03-30 16:36:30 -0700249/**
250 * omap_vc_i2c_init - initialize I2C interface to PMIC
251 * @voltdm: voltage domain containing VC data
252 *
253 * Use PMIC supplied seetings for I2C high-speed mode and
254 * master code (if set) and program the VC I2C configuration
255 * register.
256 *
257 * The VC I2C configuration is common to all VC channels,
258 * so this function only configures I2C for the first VC
259 * channel registers. All other VC channels will use the
260 * same configuration.
261 */
262static void __init omap_vc_i2c_init(struct voltagedomain *voltdm)
263{
264 struct omap_vc_channel *vc = voltdm->vc;
265 static bool initialized;
266 static bool i2c_high_speed;
267 u8 mcode;
268
269 if (initialized) {
270 if (voltdm->pmic->i2c_high_speed != i2c_high_speed)
271 pr_warn("%s: I2C config for all channels must match.",
272 __func__);
273 return;
274 }
275
276 i2c_high_speed = voltdm->pmic->i2c_high_speed;
277 if (i2c_high_speed)
278 voltdm->rmw(vc->common->i2c_cfg_hsen_mask,
279 vc->common->i2c_cfg_hsen_mask,
280 vc->common->i2c_cfg_reg);
281
282 mcode = voltdm->pmic->i2c_mcode;
283 if (mcode)
284 voltdm->rmw(vc->common->i2c_mcode_mask,
285 mcode << __ffs(vc->common->i2c_mcode_mask),
286 vc->common->i2c_cfg_reg);
287
288 initialized = true;
289}
290
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700291void __init omap_vc_init_channel(struct voltagedomain *voltdm)
292{
Kevin Hilmand84adcf2011-03-22 16:14:57 -0700293 struct omap_vc_channel *vc = voltdm->vc;
Kevin Hilman08d1c9a2011-03-29 15:14:38 -0700294 u8 on_vsel, onlp_vsel, ret_vsel, off_vsel;
295 u32 val;
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700296
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700297 if (!voltdm->pmic || !voltdm->pmic->uv_to_vsel) {
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700298 pr_err("%s: PMIC info requried to configure vc for"
299 "vdd_%s not populated.Hence cannot initialize vc\n",
300 __func__, voltdm->name);
301 return;
302 }
303
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700304 if (!voltdm->read || !voltdm->write) {
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700305 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
306 __func__, voltdm->name);
307 return;
308 }
309
Kevin Hilman24d31942011-03-29 15:57:16 -0700310 vc->cfg_channel = 0;
Kevin Hilman8abc0b52011-06-02 17:28:13 -0700311 if (vc->flags & OMAP_VC_CHANNEL_CFG_MUTANT)
312 vc_cfg_bits = &vc_mutant_channel_cfg;
313 else
314 vc_cfg_bits = &vc_default_channel_cfg;
Kevin Hilman24d31942011-03-29 15:57:16 -0700315
Kevin Hilmanba112a42011-03-29 14:02:36 -0700316 /* get PMIC/board specific settings */
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700317 vc->i2c_slave_addr = voltdm->pmic->i2c_slave_addr;
318 vc->volt_reg_addr = voltdm->pmic->volt_reg_addr;
319 vc->cmd_reg_addr = voltdm->pmic->cmd_reg_addr;
320 vc->setup_time = voltdm->pmic->volt_setup_time;
Kevin Hilmanba112a42011-03-29 14:02:36 -0700321
322 /* Configure the i2c slave address for this VC */
323 voltdm->rmw(vc->smps_sa_mask,
324 vc->i2c_slave_addr << __ffs(vc->smps_sa_mask),
325 vc->common->smps_sa_reg);
Kevin Hilman8abc0b52011-06-02 17:28:13 -0700326 vc->cfg_channel |= vc_cfg_bits->sa;
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700327
Kevin Hilmane4e021c2011-06-09 11:01:55 -0700328 /*
329 * Configure the PMIC register addresses.
330 */
331 voltdm->rmw(vc->smps_volra_mask,
332 vc->volt_reg_addr << __ffs(vc->smps_volra_mask),
333 vc->common->smps_volra_reg);
Kevin Hilman8abc0b52011-06-02 17:28:13 -0700334 vc->cfg_channel |= vc_cfg_bits->rav;
Kevin Hilman24d31942011-03-29 15:57:16 -0700335
336 if (vc->cmd_reg_addr) {
Kevin Hilmane4e021c2011-06-09 11:01:55 -0700337 voltdm->rmw(vc->smps_cmdra_mask,
338 vc->cmd_reg_addr << __ffs(vc->smps_cmdra_mask),
339 vc->common->smps_cmdra_reg);
Kevin Hilman8abc0b52011-06-02 17:28:13 -0700340 vc->cfg_channel |= vc_cfg_bits->rac | vc_cfg_bits->racen;
Kevin Hilman24d31942011-03-29 15:57:16 -0700341 }
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700342
Kevin Hilman08d1c9a2011-03-29 15:14:38 -0700343 /* Set up the on, inactive, retention and off voltage */
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700344 on_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->on_volt);
345 onlp_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->onlp_volt);
346 ret_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->ret_volt);
347 off_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->off_volt);
Kevin Hilman08d1c9a2011-03-29 15:14:38 -0700348 val = ((on_vsel << vc->common->cmd_on_shift) |
349 (onlp_vsel << vc->common->cmd_onlp_shift) |
350 (ret_vsel << vc->common->cmd_ret_shift) |
351 (off_vsel << vc->common->cmd_off_shift));
352 voltdm->write(val, vc->cmdval_reg);
Kevin Hilman8abc0b52011-06-02 17:28:13 -0700353 vc->cfg_channel |= vc_cfg_bits->cmd;
Kevin Hilman24d31942011-03-29 15:57:16 -0700354
355 /* Channel configuration */
356 omap_vc_config_channel(voltdm);
Kevin Hilman08d1c9a2011-03-29 15:14:38 -0700357
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700358 /* Configure the setup times */
Kevin Hilman5892bb12011-03-29 14:36:04 -0700359 voltdm->rmw(voltdm->vfsm->voltsetup_mask,
360 vc->setup_time << __ffs(voltdm->vfsm->voltsetup_mask),
361 voltdm->vfsm->voltsetup_reg);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700362
Kevin Hilmanf5395482011-03-30 16:36:30 -0700363 omap_vc_i2c_init(voltdm);
364
Kevin Hilmanccd5ca72011-03-21 14:08:55 -0700365 if (cpu_is_omap34xx())
366 omap3_vc_init_channel(voltdm);
367 else if (cpu_is_omap44xx())
368 omap4_vc_init_channel(voltdm);
369}
370