Merge branch 'msm-fix' of git://codeaurora.org/quic/kernel/davidb/linux-msm into...
[pandora-kernel.git] / arch / arm / mach-omap2 / vc.c
index 098af2f..031d116 100644 (file)
 #include "prm-regbits-44xx.h"
 #include "prm44xx.h"
 
+/**
+ * struct omap_vc_channel_cfg - describe the cfg_channel bitfield
+ * @sa: bit for slave address
+ * @rav: bit for voltage configuration register
+ * @rac: bit for command configuration register
+ * @racen: enable bit for RAC
+ * @cmd: bit for command value set selection
+ *
+ * Channel configuration bits, common for OMAP3+
+ * OMAP3 register: PRM_VC_CH_CONF
+ * OMAP4 register: PRM_VC_CFG_CHANNEL
+ * OMAP5 register: PRM_VC_SMPS_<voltdm>_CONFIG
+ */
+struct omap_vc_channel_cfg {
+       u8 sa;
+       u8 rav;
+       u8 rac;
+       u8 racen;
+       u8 cmd;
+};
+
+static struct omap_vc_channel_cfg vc_default_channel_cfg = {
+       .sa    = BIT(0),
+       .rav   = BIT(1),
+       .rac   = BIT(2),
+       .racen = BIT(3),
+       .cmd   = BIT(4),
+};
+
+/*
+ * On OMAP3+, all VC channels have the above default bitfield
+ * configuration, except the OMAP4 MPU channel.  This appears
+ * to be a freak accident as every other VC channel has the
+ * default configuration, thus creating a mutant channel config.
+ */
+static struct omap_vc_channel_cfg vc_mutant_channel_cfg = {
+       .sa    = BIT(0),
+       .rav   = BIT(2),
+       .rac   = BIT(3),
+       .racen = BIT(4),
+       .cmd   = BIT(1),
+};
+
+static struct omap_vc_channel_cfg *vc_cfg_bits;
+#define CFG_CHANNEL_MASK 0x1f
+
+/**
+ * omap_vc_config_channel - configure VC channel to PMIC mappings
+ * @voltdm: pointer to voltagdomain defining the desired VC channel
+ *
+ * Configures the VC channel to PMIC mappings for the following
+ * PMIC settings
+ * - i2c slave address (SA)
+ * - voltage configuration address (RAV)
+ * - command configuration address (RAC) and enable bit (RACEN)
+ * - command values for ON, ONLP, RET and OFF (CMD)
+ *
+ * This function currently only allows flexible configuration of the
+ * non-default channel.  Starting with OMAP4, there are more than 2
+ * channels, with one defined as the default (on OMAP4, it's MPU.)
+ * Only the non-default channel can be configured.
+ */
+static int omap_vc_config_channel(struct voltagedomain *voltdm)
+{
+       struct omap_vc_channel *vc = voltdm->vc;
+
+       /*
+        * For default channel, the only configurable bit is RACEN.
+        * All others must stay at zero (see function comment above.)
+        */
+       if (vc->flags & OMAP_VC_CHANNEL_DEFAULT)
+               vc->cfg_channel &= vc_cfg_bits->racen;
+
+       voltdm->rmw(CFG_CHANNEL_MASK << vc->cfg_channel_sa_shift,
+                   vc->cfg_channel << vc->cfg_channel_sa_shift,
+                   vc->cfg_channel_reg);
+
+       return 0;
+}
+
 /* Voltage scale and accessory APIs */
 int omap_vc_pre_scale(struct voltagedomain *voltdm,
                      unsigned long target_volt,
                      u8 *target_vsel, u8 *current_vsel)
 {
-       struct omap_vc_instance_data *vc = voltdm->vdd->vc_data;
-       struct omap_vdd_info *vdd = voltdm->vdd;
-       struct omap_volt_data *volt_data;
-       const struct omap_vc_common_data *vc_common;
-       const struct omap_vp_common_data *vp_common;
-       u32 vc_cmdval, vp_errgain_val;
-
-       vc_common = vc->vc_common;
-       vp_common = vdd->vp_data->vp_common;
+       struct omap_vc_channel *vc = voltdm->vc;
+       u32 vc_cmdval;
 
        /* Check if sufficient pmic info is available for this vdd */
-       if (!vdd->pmic_info) {
+       if (!voltdm->pmic) {
                pr_err("%s: Insufficient pmic info to scale the vdd_%s\n",
                        __func__, voltdm->name);
                return -EINVAL;
        }
 
-       if (!vdd->pmic_info->uv_to_vsel) {
+       if (!voltdm->pmic->uv_to_vsel) {
                pr_err("%s: PMIC function to convert voltage in uV to"
                        "vsel not registered. Hence unable to scale voltage"
                        "for vdd_%s\n", __func__, voltdm->name);
                return -ENODATA;
        }
 
-       if (!vdd->read_reg || !vdd->write_reg) {
+       if (!voltdm->read || !voltdm->write) {
                pr_err("%s: No read/write API for accessing vdd_%s regs\n",
                        __func__, voltdm->name);
                return -EINVAL;
        }
 
-       /* Get volt_data corresponding to target_volt */
-       volt_data = omap_voltage_get_voltdata(voltdm, target_volt);
-       if (IS_ERR(volt_data))
-               volt_data = NULL;
-
-       *target_vsel = vdd->pmic_info->uv_to_vsel(target_volt);
-       *current_vsel = vdd->read_reg(vdd->vp_data->vp_common->prm_mod, vdd->vp_data->voltage);
+       *target_vsel = voltdm->pmic->uv_to_vsel(target_volt);
+       *current_vsel = voltdm->pmic->uv_to_vsel(voltdm->nominal_volt);
 
        /* Setting the ON voltage to the new target voltage */
-       vc_cmdval = vdd->read_reg(vc->vc_common->prm_mod, vc->cmdval_reg);
-       vc_cmdval &= ~vc_common->cmd_on_mask;
-       vc_cmdval |= (*target_vsel << vc_common->cmd_on_shift);
-       vdd->write_reg(vc_cmdval, vc->vc_common->prm_mod, vc->cmdval_reg);
-
-       /* Setting vp errorgain based on the voltage */
-       if (volt_data) {
-               vp_errgain_val = vdd->read_reg(vdd->vp_data->vp_common->prm_mod,
-                                              vdd->vp_data->vpconfig);
-               vdd->vp_rt_data.vpconfig_errorgain = volt_data->vp_errgain;
-               vp_errgain_val &= ~vp_common->vpconfig_errorgain_mask;
-               vp_errgain_val |= vdd->vp_rt_data.vpconfig_errorgain <<
-                       vp_common->vpconfig_errorgain_shift;
-               vdd->write_reg(vp_errgain_val, vdd->vp_data->vp_common->prm_mod,
-                              vdd->vp_data->vpconfig);
-       }
+       vc_cmdval = voltdm->read(vc->cmdval_reg);
+       vc_cmdval &= ~vc->common->cmd_on_mask;
+       vc_cmdval |= (*target_vsel << vc->common->cmd_on_shift);
+       voltdm->write(vc_cmdval, vc->cmdval_reg);
+
+       omap_vp_update_errorgain(voltdm, target_volt);
 
        return 0;
 }
@@ -87,24 +145,20 @@ void omap_vc_post_scale(struct voltagedomain *voltdm,
                        unsigned long target_volt,
                        u8 target_vsel, u8 current_vsel)
 {
-       struct omap_vdd_info *vdd = voltdm->vdd;
        u32 smps_steps = 0, smps_delay = 0;
 
        smps_steps = abs(target_vsel - current_vsel);
        /* SMPS slew rate / step size. 2us added as buffer. */
-       smps_delay = ((smps_steps * vdd->pmic_info->step_size) /
-                       vdd->pmic_info->slew_rate) + 2;
+       smps_delay = ((smps_steps * voltdm->pmic->step_size) /
+                       voltdm->pmic->slew_rate) + 2;
        udelay(smps_delay);
-
-       vdd->curr_volt = target_volt;
 }
 
-/* vc_bypass_scale_voltage - VC bypass method of voltage scaling */
-int omap_vc_bypass_scale_voltage(struct voltagedomain *voltdm,
-                                unsigned long target_volt)
+/* vc_bypass_scale - VC bypass method of voltage scaling */
+int omap_vc_bypass_scale(struct voltagedomain *voltdm,
+                        unsigned long target_volt)
 {
-       struct omap_vc_instance_data *vc = voltdm->vdd->vc_data;
-       struct omap_vdd_info *vdd = voltdm->vdd;
+       struct omap_vc_channel *vc = voltdm->vc;
        u32 loop_cnt = 0, retries_cnt = 0;
        u32 vc_valid, vc_bypass_val_reg, vc_bypass_value;
        u8 target_vsel, current_vsel;
@@ -114,19 +168,16 @@ int omap_vc_bypass_scale_voltage(struct voltagedomain *voltdm,
        if (ret)
                return ret;
 
-       vc_valid = vc->vc_common->valid;
-       vc_bypass_val_reg = vc->vc_common->bypass_val_reg;
-       vc_bypass_value = (target_vsel << vc->vc_common->data_shift) |
-                       (vdd->pmic_info->pmic_reg <<
-                       vc->vc_common->regaddr_shift) |
-                       (vdd->pmic_info->i2c_slave_addr <<
-                       vc->vc_common->slaveaddr_shift);
+       vc_valid = vc->common->valid;
+       vc_bypass_val_reg = vc->common->bypass_val_reg;
+       vc_bypass_value = (target_vsel << vc->common->data_shift) |
+               (vc->volt_reg_addr << vc->common->regaddr_shift) |
+               (vc->i2c_slave_addr << vc->common->slaveaddr_shift);
 
-       vdd->write_reg(vc_bypass_value, vc->vc_common->prm_mod, vc_bypass_val_reg);
-       vdd->write_reg(vc_bypass_value | vc_valid, vc->vc_common->prm_mod,
-                      vc_bypass_val_reg);
+       voltdm->write(vc_bypass_value, vc_bypass_val_reg);
+       voltdm->write(vc_bypass_value | vc_valid, vc_bypass_val_reg);
 
-       vc_bypass_value = vdd->read_reg(vc->vc_common->prm_mod, vc_bypass_val_reg);
+       vc_bypass_value = voltdm->read(vc_bypass_val_reg);
        /*
         * Loop till the bypass command is acknowledged from the SMPS.
         * NOTE: This is legacy code. The loop count and retry count needs
@@ -145,8 +196,7 @@ int omap_vc_bypass_scale_voltage(struct voltagedomain *voltdm,
                        loop_cnt = 0;
                        udelay(10);
                }
-               vc_bypass_value = vdd->read_reg(vc->vc_common->prm_mod,
-                                               vc_bypass_val_reg);
+               vc_bypass_value = voltdm->read(vc_bypass_val_reg);
        }
 
        omap_vc_post_scale(voltdm, target_volt, target_vsel, current_vsel);
@@ -155,51 +205,22 @@ int omap_vc_bypass_scale_voltage(struct voltagedomain *voltdm,
 
 static void __init omap3_vfsm_init(struct voltagedomain *voltdm)
 {
-       struct omap_vc_instance_data *vc = voltdm->vdd->vc_data;
-       struct omap_vdd_info *vdd = voltdm->vdd;
-
        /*
         * Voltage Manager FSM parameters init
         * XXX This data should be passed in from the board file
         */
-       vdd->write_reg(OMAP3_CLKSETUP, vc->vc_common->prm_mod, OMAP3_PRM_CLKSETUP_OFFSET);
-       vdd->write_reg(OMAP3_VOLTOFFSET, vc->vc_common->prm_mod,
-                      OMAP3_PRM_VOLTOFFSET_OFFSET);
-       vdd->write_reg(OMAP3_VOLTSETUP2, vc->vc_common->prm_mod,
-                      OMAP3_PRM_VOLTSETUP2_OFFSET);
+       voltdm->write(OMAP3_CLKSETUP, OMAP3_PRM_CLKSETUP_OFFSET);
+       voltdm->write(OMAP3_VOLTOFFSET, OMAP3_PRM_VOLTOFFSET_OFFSET);
+       voltdm->write(OMAP3_VOLTSETUP2, OMAP3_PRM_VOLTSETUP2_OFFSET);
 }
 
 static void __init omap3_vc_init_channel(struct voltagedomain *voltdm)
 {
-       struct omap_vc_instance_data *vc = voltdm->vdd->vc_data;
-       struct omap_vdd_info *vdd = voltdm->vdd;
        static bool is_initialized;
-       u8 on_vsel, onlp_vsel, ret_vsel, off_vsel;
-       u32 vc_val;
 
        if (is_initialized)
                return;
 
-       /* Set up the on, inactive, retention and off voltage */
-       on_vsel = vdd->pmic_info->uv_to_vsel(vdd->pmic_info->on_volt);
-       onlp_vsel = vdd->pmic_info->uv_to_vsel(vdd->pmic_info->onlp_volt);
-       ret_vsel = vdd->pmic_info->uv_to_vsel(vdd->pmic_info->ret_volt);
-       off_vsel = vdd->pmic_info->uv_to_vsel(vdd->pmic_info->off_volt);
-       vc_val  = ((on_vsel << vc->vc_common->cmd_on_shift) |
-               (onlp_vsel << vc->vc_common->cmd_onlp_shift) |
-               (ret_vsel << vc->vc_common->cmd_ret_shift) |
-               (off_vsel << vc->vc_common->cmd_off_shift));
-       vdd->write_reg(vc_val, vc->vc_common->prm_mod, vc->cmdval_reg);
-
-       /*
-        * Generic VC parameters init
-        * XXX This data should be abstracted out
-        */
-       vdd->write_reg(OMAP3430_CMD1_MASK | OMAP3430_RAV1_MASK, vc->vc_common->prm_mod,
-                       OMAP3_PRM_VC_CH_CONF_OFFSET);
-       vdd->write_reg(OMAP3430_MCODE_SHIFT | OMAP3430_HSEN_MASK, vc->vc_common->prm_mod,
-                       OMAP3_PRM_VC_I2C_CFG_OFFSET);
-
        omap3_vfsm_init(voltdm);
 
        is_initialized = true;
@@ -209,73 +230,134 @@ static void __init omap3_vc_init_channel(struct voltagedomain *voltdm)
 /* OMAP4 specific voltage init functions */
 static void __init omap4_vc_init_channel(struct voltagedomain *voltdm)
 {
-       struct omap_vc_instance_data *vc = voltdm->vdd->vc_data;
-       struct omap_vdd_info *vdd = voltdm->vdd;
        static bool is_initialized;
        u32 vc_val;
 
        if (is_initialized)
                return;
 
-       /* TODO: Configure setup times and CMD_VAL values*/
-
-       /*
-        * Generic VC parameters init
-        * XXX This data should be abstracted out
-        */
-       vc_val = (OMAP4430_RAV_VDD_MPU_L_MASK | OMAP4430_CMD_VDD_MPU_L_MASK |
-                 OMAP4430_RAV_VDD_IVA_L_MASK | OMAP4430_CMD_VDD_IVA_L_MASK |
-                 OMAP4430_RAV_VDD_CORE_L_MASK | OMAP4430_CMD_VDD_CORE_L_MASK);
-       vdd->write_reg(vc_val, vc->vc_common->prm_mod, OMAP4_PRM_VC_CFG_CHANNEL_OFFSET);
-
        /* XXX These are magic numbers and do not belong! */
        vc_val = (0x60 << OMAP4430_SCLL_SHIFT | 0x26 << OMAP4430_SCLH_SHIFT);
-       vdd->write_reg(vc_val, vc->vc_common->prm_mod, OMAP4_PRM_VC_CFG_I2C_CLK_OFFSET);
+       voltdm->write(vc_val, OMAP4_PRM_VC_CFG_I2C_CLK_OFFSET);
 
        is_initialized = true;
 }
 
+/**
+ * omap_vc_i2c_init - initialize I2C interface to PMIC
+ * @voltdm: voltage domain containing VC data
+ *
+ * Use PMIC supplied seetings for I2C high-speed mode and
+ * master code (if set) and program the VC I2C configuration
+ * register.
+ *
+ * The VC I2C configuration is common to all VC channels,
+ * so this function only configures I2C for the first VC
+ * channel registers.  All other VC channels will use the
+ * same configuration.
+ */
+static void __init omap_vc_i2c_init(struct voltagedomain *voltdm)
+{
+       struct omap_vc_channel *vc = voltdm->vc;
+       static bool initialized;
+       static bool i2c_high_speed;
+       u8 mcode;
+
+       if (initialized) {
+               if (voltdm->pmic->i2c_high_speed != i2c_high_speed)
+                       pr_warn("%s: I2C config for all channels must match.",
+                               __func__);
+               return;
+       }
+
+       i2c_high_speed = voltdm->pmic->i2c_high_speed;
+       if (i2c_high_speed)
+               voltdm->rmw(vc->common->i2c_cfg_hsen_mask,
+                           vc->common->i2c_cfg_hsen_mask,
+                           vc->common->i2c_cfg_reg);
+
+       mcode = voltdm->pmic->i2c_mcode;
+       if (mcode)
+               voltdm->rmw(vc->common->i2c_mcode_mask,
+                           mcode << __ffs(vc->common->i2c_mcode_mask),
+                           vc->common->i2c_cfg_reg);
+
+       initialized = true;
+}
+
 void __init omap_vc_init_channel(struct voltagedomain *voltdm)
 {
-       struct omap_vc_instance_data *vc = voltdm->vdd->vc_data;
-       struct omap_vdd_info *vdd = voltdm->vdd;
-       u32 vc_val;
+       struct omap_vc_channel *vc = voltdm->vc;
+       u8 on_vsel, onlp_vsel, ret_vsel, off_vsel;
+       u32 val;
 
-       if (!vdd->pmic_info || !vdd->pmic_info->uv_to_vsel) {
+       if (!voltdm->pmic || !voltdm->pmic->uv_to_vsel) {
                pr_err("%s: PMIC info requried to configure vc for"
                        "vdd_%s not populated.Hence cannot initialize vc\n",
                        __func__, voltdm->name);
                return;
        }
 
-       if (!vdd->read_reg || !vdd->write_reg) {
+       if (!voltdm->read || !voltdm->write) {
                pr_err("%s: No read/write API for accessing vdd_%s regs\n",
                        __func__, voltdm->name);
                return;
        }
 
-       /* Set up the SMPS_SA(i2c slave address in VC */
-       vc_val = vdd->read_reg(vc->vc_common->prm_mod,
-                              vc->vc_common->smps_sa_reg);
-       vc_val &= ~vc->smps_sa_mask;
-       vc_val |= vdd->pmic_info->i2c_slave_addr << vc->smps_sa_shift;
-       vdd->write_reg(vc_val, vc->vc_common->prm_mod,
-                      vc->vc_common->smps_sa_reg);
-
-       /* Setup the VOLRA(pmic reg addr) in VC */
-       vc_val = vdd->read_reg(vc->vc_common->prm_mod,
-                              vc->vc_common->smps_volra_reg);
-       vc_val &= ~vc->smps_volra_mask;
-       vc_val |= vdd->pmic_info->pmic_reg << vc->smps_volra_shift;
-       vdd->write_reg(vc_val, vc->vc_common->prm_mod,
-                      vc->vc_common->smps_volra_reg);
+       vc->cfg_channel = 0;
+       if (vc->flags & OMAP_VC_CHANNEL_CFG_MUTANT)
+               vc_cfg_bits = &vc_mutant_channel_cfg;
+       else
+               vc_cfg_bits = &vc_default_channel_cfg;
+
+       /* get PMIC/board specific settings */
+       vc->i2c_slave_addr = voltdm->pmic->i2c_slave_addr;
+       vc->volt_reg_addr = voltdm->pmic->volt_reg_addr;
+       vc->cmd_reg_addr = voltdm->pmic->cmd_reg_addr;
+       vc->setup_time = voltdm->pmic->volt_setup_time;
+
+       /* Configure the i2c slave address for this VC */
+       voltdm->rmw(vc->smps_sa_mask,
+                   vc->i2c_slave_addr << __ffs(vc->smps_sa_mask),
+                   vc->smps_sa_reg);
+       vc->cfg_channel |= vc_cfg_bits->sa;
+
+       /*
+        * Configure the PMIC register addresses.
+        */
+       voltdm->rmw(vc->smps_volra_mask,
+                   vc->volt_reg_addr << __ffs(vc->smps_volra_mask),
+                   vc->smps_volra_reg);
+       vc->cfg_channel |= vc_cfg_bits->rav;
+
+       if (vc->cmd_reg_addr) {
+               voltdm->rmw(vc->smps_cmdra_mask,
+                           vc->cmd_reg_addr << __ffs(vc->smps_cmdra_mask),
+                           vc->smps_cmdra_reg);
+               vc->cfg_channel |= vc_cfg_bits->rac | vc_cfg_bits->racen;
+       }
+
+       /* Set up the on, inactive, retention and off voltage */
+       on_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->on_volt);
+       onlp_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->onlp_volt);
+       ret_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->ret_volt);
+       off_vsel = voltdm->pmic->uv_to_vsel(voltdm->pmic->off_volt);
+       val = ((on_vsel << vc->common->cmd_on_shift) |
+              (onlp_vsel << vc->common->cmd_onlp_shift) |
+              (ret_vsel << vc->common->cmd_ret_shift) |
+              (off_vsel << vc->common->cmd_off_shift));
+       voltdm->write(val, vc->cmdval_reg);
+       vc->cfg_channel |= vc_cfg_bits->cmd;
+
+       /* Channel configuration */
+       omap_vc_config_channel(voltdm);
 
        /* Configure the setup times */
-       vc_val = vdd->read_reg(vc->vc_common->prm_mod, vdd->vfsm->voltsetup_reg);
-       vc_val &= ~vdd->vfsm->voltsetup_mask;
-       vc_val |= vdd->pmic_info->volt_setup_time <<
-                       vdd->vfsm->voltsetup_shift;
-       vdd->write_reg(vc_val, vc->vc_common->prm_mod, vdd->vfsm->voltsetup_reg);
+       voltdm->rmw(voltdm->vfsm->voltsetup_mask,
+                   vc->setup_time << __ffs(voltdm->vfsm->voltsetup_mask),
+                   voltdm->vfsm->voltsetup_reg);
+
+       omap_vc_i2c_init(voltdm);
 
        if (cpu_is_omap34xx())
                omap3_vc_init_channel(voltdm);