2011-03-11 05:17:45 +00:00
|
|
|
/*
|
|
|
|
* OMAP4 Voltage Controller (VC) data
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007, 2010 Texas Instruments, Inc.
|
|
|
|
* Rajendra Nayak <rnayak@ti.com>
|
|
|
|
* Lesly A M <x0080970@ti.com>
|
|
|
|
* Thara Gopinath <thara@ti.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008, 2011 Nokia Corporation
|
|
|
|
* Kalle Jokiniemi
|
|
|
|
* Paul Walmsley
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
2011-11-10 21:45:17 +00:00
|
|
|
#include "common.h"
|
2011-03-11 05:17:45 +00:00
|
|
|
|
|
|
|
#include "prm44xx.h"
|
|
|
|
#include "prm-regbits-44xx.h"
|
|
|
|
#include "voltage.h"
|
|
|
|
|
|
|
|
#include "vc.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* VC data common to 44xx chips
|
|
|
|
* XXX This stuff presumably belongs in the vc3xxx.c or vc.c file.
|
|
|
|
*/
|
2011-03-22 23:14:57 +00:00
|
|
|
static const struct omap_vc_common omap4_vc_common = {
|
2011-03-11 05:17:45 +00:00
|
|
|
.bypass_val_reg = OMAP4_PRM_VC_VAL_BYPASS_OFFSET,
|
|
|
|
.data_shift = OMAP4430_DATA_SHIFT,
|
|
|
|
.slaveaddr_shift = OMAP4430_SLAVEADDR_SHIFT,
|
|
|
|
.regaddr_shift = OMAP4430_REGADDR_SHIFT,
|
|
|
|
.valid = OMAP4430_VALID_MASK,
|
|
|
|
.cmd_on_shift = OMAP4430_ON_SHIFT,
|
|
|
|
.cmd_on_mask = OMAP4430_ON_MASK,
|
|
|
|
.cmd_onlp_shift = OMAP4430_ONLP_SHIFT,
|
|
|
|
.cmd_ret_shift = OMAP4430_RET_SHIFT,
|
|
|
|
.cmd_off_shift = OMAP4430_OFF_SHIFT,
|
2011-03-30 23:36:30 +00:00
|
|
|
.i2c_cfg_reg = OMAP4_PRM_VC_CFG_I2C_MODE_OFFSET,
|
|
|
|
.i2c_cfg_hsen_mask = OMAP4430_HSMODEEN_MASK,
|
|
|
|
.i2c_mcode_mask = OMAP4430_HSMCODE_MASK,
|
2011-03-11 05:17:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* VC instance data for each controllable voltage line */
|
2011-03-22 23:14:57 +00:00
|
|
|
struct omap_vc_channel omap4_vc_mpu = {
|
2011-06-03 00:28:13 +00:00
|
|
|
.flags = OMAP_VC_CHANNEL_DEFAULT | OMAP_VC_CHANNEL_CFG_MUTANT,
|
2011-03-22 23:14:57 +00:00
|
|
|
.common = &omap4_vc_common,
|
2011-07-20 23:35:46 +00:00
|
|
|
.smps_sa_reg = OMAP4_PRM_VC_SMPS_SA_OFFSET,
|
|
|
|
.smps_volra_reg = OMAP4_PRM_VC_VAL_SMPS_RA_VOL_OFFSET,
|
|
|
|
.smps_cmdra_reg = OMAP4_PRM_VC_VAL_SMPS_RA_CMD_OFFSET,
|
|
|
|
.cfg_channel_reg = OMAP4_PRM_VC_CFG_CHANNEL_OFFSET,
|
2011-03-11 05:17:45 +00:00
|
|
|
.cmdval_reg = OMAP4_PRM_VC_VAL_CMD_VDD_MPU_L_OFFSET,
|
|
|
|
.smps_sa_mask = OMAP4430_SA_VDD_MPU_L_PRM_VC_SMPS_SA_MASK,
|
|
|
|
.smps_volra_mask = OMAP4430_VOLRA_VDD_MPU_L_MASK,
|
2011-06-09 18:01:55 +00:00
|
|
|
.smps_cmdra_mask = OMAP4430_CMDRA_VDD_MPU_L_MASK,
|
OMAP3+: VC: abstract out channel configuration
VC channel configuration is programmed based on settings coming from
the PMIC configuration.
Currently, the VC channel to PMIC mapping is a simple one-to-one
mapping. Whenever a VC channel parameter is configured (i2c slave
addres, PMIC register address, on/ret/off command), the corresponding
bits are enabled in the VC channel configuration register.
If necessary, the programmability of channel configuration settings
could be extended to board/PMIC files, however, because this patch
changes the channel configuration to be programmed based on existing
values from the PMIC settings, it may not be required.
Also note that starting with OMAP4, where there are more than 2
channels, one channel is identified as the "default" channel. When
any of the bits in the channel config for the other channels are zero,
it means to use the default channel. The OMAP4 TRM (at least through
NDA version Q) is wrong in describing which is the default channel.
The default channel on OMAP4 is MPU, not CORE as decribed in the TRM.
Signed-off-by: Kevin Hilman <khilman@ti.com>
2011-03-29 22:57:16 +00:00
|
|
|
.cfg_channel_sa_shift = OMAP4430_SA_VDD_MPU_L_SHIFT,
|
2011-03-11 05:17:45 +00:00
|
|
|
};
|
|
|
|
|
2011-03-22 23:14:57 +00:00
|
|
|
struct omap_vc_channel omap4_vc_iva = {
|
|
|
|
.common = &omap4_vc_common,
|
2011-07-20 23:35:46 +00:00
|
|
|
.smps_sa_reg = OMAP4_PRM_VC_SMPS_SA_OFFSET,
|
|
|
|
.smps_volra_reg = OMAP4_PRM_VC_VAL_SMPS_RA_VOL_OFFSET,
|
|
|
|
.smps_cmdra_reg = OMAP4_PRM_VC_VAL_SMPS_RA_CMD_OFFSET,
|
|
|
|
.cfg_channel_reg = OMAP4_PRM_VC_CFG_CHANNEL_OFFSET,
|
2011-03-11 05:17:45 +00:00
|
|
|
.cmdval_reg = OMAP4_PRM_VC_VAL_CMD_VDD_IVA_L_OFFSET,
|
|
|
|
.smps_sa_mask = OMAP4430_SA_VDD_IVA_L_PRM_VC_SMPS_SA_MASK,
|
|
|
|
.smps_volra_mask = OMAP4430_VOLRA_VDD_IVA_L_MASK,
|
2011-06-09 18:01:55 +00:00
|
|
|
.smps_cmdra_mask = OMAP4430_CMDRA_VDD_IVA_L_MASK,
|
OMAP3+: VC: abstract out channel configuration
VC channel configuration is programmed based on settings coming from
the PMIC configuration.
Currently, the VC channel to PMIC mapping is a simple one-to-one
mapping. Whenever a VC channel parameter is configured (i2c slave
addres, PMIC register address, on/ret/off command), the corresponding
bits are enabled in the VC channel configuration register.
If necessary, the programmability of channel configuration settings
could be extended to board/PMIC files, however, because this patch
changes the channel configuration to be programmed based on existing
values from the PMIC settings, it may not be required.
Also note that starting with OMAP4, where there are more than 2
channels, one channel is identified as the "default" channel. When
any of the bits in the channel config for the other channels are zero,
it means to use the default channel. The OMAP4 TRM (at least through
NDA version Q) is wrong in describing which is the default channel.
The default channel on OMAP4 is MPU, not CORE as decribed in the TRM.
Signed-off-by: Kevin Hilman <khilman@ti.com>
2011-03-29 22:57:16 +00:00
|
|
|
.cfg_channel_sa_shift = OMAP4430_SA_VDD_IVA_L_SHIFT,
|
2011-03-11 05:17:45 +00:00
|
|
|
};
|
|
|
|
|
2011-03-22 23:14:57 +00:00
|
|
|
struct omap_vc_channel omap4_vc_core = {
|
|
|
|
.common = &omap4_vc_common,
|
2011-07-20 23:35:46 +00:00
|
|
|
.smps_sa_reg = OMAP4_PRM_VC_SMPS_SA_OFFSET,
|
|
|
|
.smps_volra_reg = OMAP4_PRM_VC_VAL_SMPS_RA_VOL_OFFSET,
|
|
|
|
.smps_cmdra_reg = OMAP4_PRM_VC_VAL_SMPS_RA_CMD_OFFSET,
|
|
|
|
.cfg_channel_reg = OMAP4_PRM_VC_CFG_CHANNEL_OFFSET,
|
2011-03-11 05:17:45 +00:00
|
|
|
.cmdval_reg = OMAP4_PRM_VC_VAL_CMD_VDD_CORE_L_OFFSET,
|
|
|
|
.smps_sa_mask = OMAP4430_SA_VDD_CORE_L_0_6_MASK,
|
|
|
|
.smps_volra_mask = OMAP4430_VOLRA_VDD_CORE_L_MASK,
|
2011-06-09 18:01:55 +00:00
|
|
|
.smps_cmdra_mask = OMAP4430_CMDRA_VDD_CORE_L_MASK,
|
OMAP3+: VC: abstract out channel configuration
VC channel configuration is programmed based on settings coming from
the PMIC configuration.
Currently, the VC channel to PMIC mapping is a simple one-to-one
mapping. Whenever a VC channel parameter is configured (i2c slave
addres, PMIC register address, on/ret/off command), the corresponding
bits are enabled in the VC channel configuration register.
If necessary, the programmability of channel configuration settings
could be extended to board/PMIC files, however, because this patch
changes the channel configuration to be programmed based on existing
values from the PMIC settings, it may not be required.
Also note that starting with OMAP4, where there are more than 2
channels, one channel is identified as the "default" channel. When
any of the bits in the channel config for the other channels are zero,
it means to use the default channel. The OMAP4 TRM (at least through
NDA version Q) is wrong in describing which is the default channel.
The default channel on OMAP4 is MPU, not CORE as decribed in the TRM.
Signed-off-by: Kevin Hilman <khilman@ti.com>
2011-03-29 22:57:16 +00:00
|
|
|
.cfg_channel_sa_shift = OMAP4430_SA_VDD_CORE_L_SHIFT,
|
2011-03-11 05:17:45 +00:00
|
|
|
};
|
|
|
|
|
2012-09-25 16:33:35 +00:00
|
|
|
/*
|
|
|
|
* Voltage levels for different operating modes: on, sleep, retention and off
|
|
|
|
*/
|
|
|
|
#define OMAP4_ON_VOLTAGE_UV 1375000
|
|
|
|
#define OMAP4_ONLP_VOLTAGE_UV 1375000
|
|
|
|
#define OMAP4_RET_VOLTAGE_UV 837500
|
|
|
|
#define OMAP4_OFF_VOLTAGE_UV 0
|
|
|
|
|
|
|
|
struct omap_vc_param omap4_mpu_vc_data = {
|
|
|
|
.on = OMAP4_ON_VOLTAGE_UV,
|
|
|
|
.onlp = OMAP4_ONLP_VOLTAGE_UV,
|
|
|
|
.ret = OMAP4_RET_VOLTAGE_UV,
|
|
|
|
.off = OMAP4_OFF_VOLTAGE_UV,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct omap_vc_param omap4_iva_vc_data = {
|
|
|
|
.on = OMAP4_ON_VOLTAGE_UV,
|
|
|
|
.onlp = OMAP4_ONLP_VOLTAGE_UV,
|
|
|
|
.ret = OMAP4_RET_VOLTAGE_UV,
|
|
|
|
.off = OMAP4_OFF_VOLTAGE_UV,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct omap_vc_param omap4_core_vc_data = {
|
|
|
|
.on = OMAP4_ON_VOLTAGE_UV,
|
|
|
|
.onlp = OMAP4_ONLP_VOLTAGE_UV,
|
|
|
|
.ret = OMAP4_RET_VOLTAGE_UV,
|
|
|
|
.off = OMAP4_OFF_VOLTAGE_UV,
|
|
|
|
};
|