Merge tag 'timer' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[deliverable/linux.git] / arch / arm / mach-omap2 / voltage.h
CommitLineData
2f34ce81
TG
1/*
2 * OMAP Voltage Management Routines
3 *
4 * Author: Thara Gopinath <thara@ti.com>
5 *
6 * Copyright (C) 2009 Texas Instruments, Inc.
7 * Thara Gopinath <thara@ti.com>
8 *
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.
12 */
13
14#ifndef __ARCH_ARM_MACH_OMAP2_VOLTAGE_H
15#define __ARCH_ARM_MACH_OMAP2_VOLTAGE_H
16
faacebc5
SS
17#include <linux/err.h>
18
c0718df4
PW
19#include "vc.h"
20#include "vp.h"
21
e69c22b1
KH
22struct powerdomain;
23
c0718df4 24/* XXX document */
2f34ce81
TG
25#define VOLTSCALE_VPFORCEUPDATE 1
26#define VOLTSCALE_VCBYPASS 2
27
28/*
29 * OMAP3 GENERIC setup times. Revisit to see if these needs to be
30 * passed from board or PMIC file
31 */
32#define OMAP3_CLKSETUP 0xff
33#define OMAP3_VOLTOFFSET 0xff
34#define OMAP3_VOLTSETUP2 0xff
35
c0718df4 36/**
5892bb1f 37 * struct omap_vfsm_instance - per-voltage manager FSM register/bitfield
c0718df4
PW
38 * data
39 * @voltsetup_mask: SETUP_TIME* bitmask in the PRM_VOLTSETUP* register
40 * @voltsetup_reg: register offset of PRM_VOLTSETUP from PRM base
c0718df4
PW
41 *
42 * XXX What about VOLTOFFSET/VOLTCTRL?
c0718df4 43 */
5892bb1f 44struct omap_vfsm_instance {
c0718df4
PW
45 u32 voltsetup_mask;
46 u8 voltsetup_reg;
c0718df4 47};
bd38107b 48
2f34ce81
TG
49/**
50 * struct voltagedomain - omap voltage domain global structure.
81a60482 51 * @name: Name of the voltage domain which can be used as a unique identifier.
37efca7e 52 * @scalable: Whether or not this voltage domain is scalable
81a60482 53 * @node: list_head linking all voltage domains
e69c22b1 54 * @pwrdm_list: list_head linking all powerdomains in this voltagedomain
d84adcf4 55 * @vc: pointer to VC channel associated with this voltagedomain
b7ea803e 56 * @vp: pointer to VP associated with this voltagedomain
4bcc475e
KH
57 * @read: read a VC/VP register
58 * @write: write a VC/VP register
59 * @read: read-modify-write a VC/VP register
0e2f3d9c 60 * @sys_clk: system clock name/frequency, used for various timing calculations
0f01565a 61 * @scale: function used to scale the voltage of the voltagedomain
7590f608 62 * @nominal_volt: current nominal voltage for this voltage domain
e3277880
KH
63 * @volt_data: voltage table having the distinct voltages supported
64 * by the domain and other associated per voltage data.
2f34ce81
TG
65 */
66struct voltagedomain {
67 char *name;
37efca7e 68 bool scalable;
81a60482 69 struct list_head node;
e69c22b1 70 struct list_head pwrdm_list;
d84adcf4 71 struct omap_vc_channel *vc;
5892bb1f 72 const struct omap_vfsm_instance *vfsm;
b7ea803e 73 struct omap_vp_instance *vp;
ce8ebe0d 74 struct omap_voltdm_pmic *pmic;
d84adcf4 75
4bcc475e
KH
76 /* VC/VP register access functions: SoC specific */
77 u32 (*read) (u8 offset);
78 void (*write) (u32 val, u8 offset);
79 u32 (*rmw)(u32 mask, u32 bits, u8 offset);
80
0e2f3d9c
KH
81 union {
82 const char *name;
83 u32 rate;
84 } sys_clk;
85
0f01565a
KH
86 int (*scale) (struct voltagedomain *voltdm,
87 unsigned long target_volt);
88
e3277880
KH
89 u32 nominal_volt;
90 struct omap_volt_data *volt_data;
2f34ce81
TG
91};
92
2f34ce81
TG
93/**
94 * struct omap_volt_data - Omap voltage specific data.
95 * @voltage_nominal: The possible voltage value in uV
96 * @sr_efuse_offs: The offset of the efuse register(from system
97 * control module base address) from where to read
98 * the n-target value for the smartreflex module.
99 * @sr_errminlimit: Error min limit value for smartreflex. This value
100 * differs at differnet opp and thus is linked
101 * with voltage.
102 * @vp_errorgain: Error gain value for the voltage processor. This
103 * field also differs according to the voltage/opp.
104 */
105struct omap_volt_data {
106 u32 volt_nominal;
107 u32 sr_efuse_offs;
108 u8 sr_errminlimit;
109 u8 vp_errgain;
110};
111
112/**
ce8ebe0d 113 * struct omap_voltdm_pmic - PMIC specific data required by voltage driver.
2f34ce81
TG
114 * @slew_rate: PMIC slew rate (in uv/us)
115 * @step_size: PMIC voltage step size (in uv)
ba112a4e 116 * @i2c_slave_addr: I2C slave address of PMIC
e74e4405
KH
117 * @volt_reg_addr: voltage configuration register address
118 * @cmd_reg_addr: command (on, on-LP, ret, off) configuration register address
f5395480
KH
119 * @i2c_high_speed: whether VC uses I2C high-speed mode to PMIC
120 * @i2c_mcode: master code value for I2C high-speed preamble transmission
e4e021c5
KH
121 * @vsel_to_uv: PMIC API to convert vsel value to actual voltage in uV.
122 * @uv_to_vsel: PMIC API to convert voltage in uV to vsel value.
2f34ce81 123 */
ce8ebe0d 124struct omap_voltdm_pmic {
2f34ce81
TG
125 int slew_rate;
126 int step_size;
127 u32 on_volt;
128 u32 onlp_volt;
129 u32 ret_volt;
130 u32 off_volt;
131 u16 volt_setup_time;
ba112a4e 132 u16 i2c_slave_addr;
e4e021c5
KH
133 u16 volt_reg_addr;
134 u16 cmd_reg_addr;
2f34ce81
TG
135 u8 vp_erroroffset;
136 u8 vp_vstepmin;
137 u8 vp_vstepmax;
138 u8 vp_vddmin;
139 u8 vp_vddmax;
140 u8 vp_timeout_us;
f5395480
KH
141 bool i2c_high_speed;
142 u8 i2c_mcode;
2f34ce81
TG
143 unsigned long (*vsel_to_uv) (const u8 vsel);
144 u8 (*uv_to_vsel) (unsigned long uV);
145};
146
2f34ce81
TG
147void omap_voltage_get_volttable(struct voltagedomain *voltdm,
148 struct omap_volt_data **volt_data);
149struct omap_volt_data *omap_voltage_get_voltdata(struct voltagedomain *voltdm,
150 unsigned long volt);
2f34ce81 151int omap_voltage_register_pmic(struct voltagedomain *voltdm,
ce8ebe0d 152 struct omap_voltdm_pmic *pmic);
2f34ce81
TG
153void omap_change_voltscale_method(struct voltagedomain *voltdm,
154 int voltscale_method);
155int omap_voltage_late_init(void);
2f34ce81 156
aae030fa 157extern void omap2xxx_voltagedomains_init(void);
81a60482 158extern void omap3xxx_voltagedomains_init(void);
ce3fc89a 159extern void am33xx_voltagedomains_init(void);
81a60482
KH
160extern void omap44xx_voltagedomains_init(void);
161
162struct voltagedomain *voltdm_lookup(const char *name);
163void voltdm_init(struct voltagedomain **voltdm_list);
048a7034 164int voltdm_add_pwrdm(struct voltagedomain *voltdm, struct powerdomain *pwrdm);
e69c22b1
KH
165int voltdm_for_each(int (*fn)(struct voltagedomain *voltdm, void *user),
166 void *user);
167int voltdm_for_each_pwrdm(struct voltagedomain *voltdm,
168 int (*fn)(struct voltagedomain *voltdm,
169 struct powerdomain *pwrdm));
5e5651be
KH
170int voltdm_scale(struct voltagedomain *voltdm, unsigned long target_volt);
171void voltdm_reset(struct voltagedomain *voltdm);
d5c12828 172unsigned long voltdm_get_voltage(struct voltagedomain *voltdm);
2f34ce81 173#endif
This page took 0.168664 seconds and 5 git commands to generate.