2 * OMAP Voltage Management Routines
4 * Author: Thara Gopinath <thara@ti.com>
6 * Copyright (C) 2009 Texas Instruments, Inc.
7 * Thara Gopinath <thara@ti.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #ifndef __ARCH_ARM_MACH_OMAP2_VOLTAGE_H
15 #define __ARCH_ARM_MACH_OMAP2_VOLTAGE_H
17 #include <linux/err.h>
19 #include <linux/platform_data/voltage-omap.h>
27 #define VOLTSCALE_VPFORCEUPDATE 1
28 #define VOLTSCALE_VCBYPASS 2
31 * OMAP3 GENERIC setup times. Revisit to see if these needs to be
32 * passed from board or PMIC file
34 #define OMAP3_CLKSETUP 0xff
35 #define OMAP3_VOLTOFFSET 0xff
36 #define OMAP3_VOLTSETUP2 0xff
39 * struct omap_vfsm_instance - per-voltage manager FSM register/bitfield
41 * @voltsetup_mask: SETUP_TIME* bitmask in the PRM_VOLTSETUP* register
42 * @voltsetup_reg: register offset of PRM_VOLTSETUP from PRM base
43 * @voltsetup_off_reg: register offset of PRM_VOLTSETUP_OFF from PRM base
45 * XXX What about VOLTOFFSET/VOLTCTRL?
47 struct omap_vfsm_instance
{
54 * struct voltagedomain - omap voltage domain global structure.
55 * @name: Name of the voltage domain which can be used as a unique identifier.
56 * @scalable: Whether or not this voltage domain is scalable
57 * @node: list_head linking all voltage domains
58 * @pwrdm_list: list_head linking all powerdomains in this voltagedomain
59 * @vc: pointer to VC channel associated with this voltagedomain
60 * @vp: pointer to VP associated with this voltagedomain
61 * @read: read a VC/VP register
62 * @write: write a VC/VP register
63 * @read: read-modify-write a VC/VP register
64 * @sys_clk: system clock name/frequency, used for various timing calculations
65 * @scale: function used to scale the voltage of the voltagedomain
66 * @nominal_volt: current nominal voltage for this voltage domain
67 * @volt_data: voltage table having the distinct voltages supported
68 * by the domain and other associated per voltage data.
70 struct voltagedomain
{
73 struct list_head node
;
74 struct list_head pwrdm_list
;
75 struct omap_vc_channel
*vc
;
76 const struct omap_vfsm_instance
*vfsm
;
77 struct omap_vp_instance
*vp
;
78 struct omap_voltdm_pmic
*pmic
;
79 struct omap_vp_param
*vp_param
;
80 struct omap_vc_param
*vc_param
;
82 /* VC/VP register access functions: SoC specific */
83 u32 (*read
) (u8 offset
);
84 void (*write
) (u32 val
, u8 offset
);
85 u32 (*rmw
)(u32 mask
, u32 bits
, u8 offset
);
92 int (*scale
) (struct voltagedomain
*voltdm
,
93 unsigned long target_volt
);
96 struct omap_volt_data
*volt_data
;
99 /* Min and max voltages from OMAP perspective */
100 #define OMAP3430_VP1_VLIMITTO_VDDMIN 850000
101 #define OMAP3430_VP1_VLIMITTO_VDDMAX 1425000
102 #define OMAP3430_VP2_VLIMITTO_VDDMIN 900000
103 #define OMAP3430_VP2_VLIMITTO_VDDMAX 1150000
105 #define OMAP3630_VP1_VLIMITTO_VDDMIN 900000
106 #define OMAP3630_VP1_VLIMITTO_VDDMAX 1350000
107 #define OMAP3630_VP2_VLIMITTO_VDDMIN 900000
108 #define OMAP3630_VP2_VLIMITTO_VDDMAX 1200000
110 #define OMAP4_VP_MPU_VLIMITTO_VDDMIN 830000
111 #define OMAP4_VP_MPU_VLIMITTO_VDDMAX 1410000
112 #define OMAP4_VP_IVA_VLIMITTO_VDDMIN 830000
113 #define OMAP4_VP_IVA_VLIMITTO_VDDMAX 1260000
114 #define OMAP4_VP_CORE_VLIMITTO_VDDMIN 830000
115 #define OMAP4_VP_CORE_VLIMITTO_VDDMAX 1200000
118 * struct omap_voltdm_pmic - PMIC specific data required by voltage driver.
119 * @slew_rate: PMIC slew rate (in uv/us)
120 * @step_size: PMIC voltage step size (in uv)
121 * @i2c_slave_addr: I2C slave address of PMIC
122 * @volt_reg_addr: voltage configuration register address
123 * @cmd_reg_addr: command (on, on-LP, ret, off) configuration register address
124 * @i2c_high_speed: whether VC uses I2C high-speed mode to PMIC
125 * @i2c_mcode: master code value for I2C high-speed preamble transmission
126 * @vsel_to_uv: PMIC API to convert vsel value to actual voltage in uV.
127 * @uv_to_vsel: PMIC API to convert voltage in uV to vsel value.
129 struct omap_voltdm_pmic
{
144 unsigned long (*vsel_to_uv
) (const u8 vsel
);
145 u8 (*uv_to_vsel
) (unsigned long uV
);
148 struct omap_vp_param
{
153 struct omap_vc_param
{
160 void omap_voltage_get_volttable(struct voltagedomain
*voltdm
,
161 struct omap_volt_data
**volt_data
);
162 struct omap_volt_data
*omap_voltage_get_voltdata(struct voltagedomain
*voltdm
,
164 int omap_voltage_register_pmic(struct voltagedomain
*voltdm
,
165 struct omap_voltdm_pmic
*pmic
);
166 void omap_change_voltscale_method(struct voltagedomain
*voltdm
,
167 int voltscale_method
);
168 int omap_voltage_late_init(void);
170 extern void omap2xxx_voltagedomains_init(void);
171 extern void omap3xxx_voltagedomains_init(void);
172 extern void am33xx_voltagedomains_init(void);
173 extern void omap44xx_voltagedomains_init(void);
175 struct voltagedomain
*voltdm_lookup(const char *name
);
176 void voltdm_init(struct voltagedomain
**voltdm_list
);
177 int voltdm_add_pwrdm(struct voltagedomain
*voltdm
, struct powerdomain
*pwrdm
);
178 int voltdm_for_each(int (*fn
)(struct voltagedomain
*voltdm
, void *user
),
180 int voltdm_for_each_pwrdm(struct voltagedomain
*voltdm
,
181 int (*fn
)(struct voltagedomain
*voltdm
,
182 struct powerdomain
*pwrdm
));
183 int voltdm_scale(struct voltagedomain
*voltdm
, unsigned long target_volt
);
184 void voltdm_reset(struct voltagedomain
*voltdm
);
185 unsigned long voltdm_get_voltage(struct voltagedomain
*voltdm
);