OMAP3+: voltage: remove unneeded debugfs interface
[pandora-kernel.git] / arch / arm / mach-omap2 / voltage.h
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
17 #include <linux/err.h>
18
19 #include "vc.h"
20 #include "vp.h"
21
22 struct powerdomain;
23
24 /* XXX document */
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
36 struct omap_vdd_info;
37
38 /**
39  * struct omap_vfsm_instance - per-voltage manager FSM register/bitfield
40  * data
41  * @voltsetup_mask: SETUP_TIME* bitmask in the PRM_VOLTSETUP* register
42  * @voltsetup_reg: register offset of PRM_VOLTSETUP from PRM base
43  *
44  * XXX What about VOLTOFFSET/VOLTCTRL?
45  */
46 struct omap_vfsm_instance {
47         u32 voltsetup_mask;
48         u8 voltsetup_reg;
49 };
50
51 /**
52  * struct voltagedomain - omap voltage domain global structure.
53  * @name: Name of the voltage domain which can be used as a unique identifier.
54  * @scalable: Whether or not this voltage domain is scalable
55  * @node: list_head linking all voltage domains
56  * @pwrdm_list: list_head linking all powerdomains in this voltagedomain
57  * @vc: pointer to VC channel associated with this voltagedomain
58  * @vp: pointer to VP associated with this voltagedomain
59  * @read: read a VC/VP register
60  * @write: write a VC/VP register
61  * @read: read-modify-write a VC/VP register
62  * @vdd: to be removed
63  */
64 struct voltagedomain {
65         char *name;
66         bool scalable;
67         struct list_head node;
68         struct list_head pwrdm_list;
69         struct omap_vc_channel *vc;
70         const struct omap_vfsm_instance *vfsm;
71         struct omap_vp_instance *vp;
72         struct omap_voltdm_pmic *pmic;
73
74         /* VC/VP register access functions: SoC specific */
75         u32 (*read) (u8 offset);
76         void (*write) (u32 val, u8 offset);
77         u32 (*rmw)(u32 mask, u32 bits, u8 offset);
78
79         struct omap_vdd_info *vdd;
80 };
81
82 /**
83  * struct omap_volt_data - Omap voltage specific data.
84  * @voltage_nominal:    The possible voltage value in uV
85  * @sr_efuse_offs:      The offset of the efuse register(from system
86  *                      control module base address) from where to read
87  *                      the n-target value for the smartreflex module.
88  * @sr_errminlimit:     Error min limit value for smartreflex. This value
89  *                      differs at differnet opp and thus is linked
90  *                      with voltage.
91  * @vp_errorgain:       Error gain value for the voltage processor. This
92  *                      field also differs according to the voltage/opp.
93  */
94 struct omap_volt_data {
95         u32     volt_nominal;
96         u32     sr_efuse_offs;
97         u8      sr_errminlimit;
98         u8      vp_errgain;
99 };
100
101 /**
102  * struct omap_voltdm_pmic - PMIC specific data required by voltage driver.
103  * @slew_rate:  PMIC slew rate (in uv/us)
104  * @step_size:  PMIC voltage step size (in uv)
105  * @i2c_slave_addr: I2C slave address of PMIC
106  * @volt_reg_addr: voltage configuration register address
107  * @cmd_reg_addr: command (on, on-LP, ret, off) configuration register address
108  * @i2c_high_speed: whether VC uses I2C high-speed mode to PMIC
109  * @i2c_mcode: master code value for I2C high-speed preamble transmission
110  * @vsel_to_uv: PMIC API to convert vsel value to actual voltage in uV.
111  * @uv_to_vsel: PMIC API to convert voltage in uV to vsel value.
112  */
113 struct omap_voltdm_pmic {
114         int slew_rate;
115         int step_size;
116         u32 on_volt;
117         u32 onlp_volt;
118         u32 ret_volt;
119         u32 off_volt;
120         u16 volt_setup_time;
121         u16 i2c_slave_addr;
122         u16 volt_reg_addr;
123         u16 cmd_reg_addr;
124         u8 vp_erroroffset;
125         u8 vp_vstepmin;
126         u8 vp_vstepmax;
127         u8 vp_vddmin;
128         u8 vp_vddmax;
129         u8 vp_timeout_us;
130         bool i2c_high_speed;
131         u8 i2c_mcode;
132         unsigned long (*vsel_to_uv) (const u8 vsel);
133         u8 (*uv_to_vsel) (unsigned long uV);
134 };
135
136 /**
137  * omap_vdd_info - Per Voltage Domain info
138  *
139  * @volt_data           : voltage table having the distinct voltages supported
140  *                        by the domain and other associated per voltage data.
141  * @vp_rt_data          : VP data derived at runtime, not predefined
142  * @curr_volt           : current voltage for this vdd.
143  * @volt_scale          : API to scale the voltage of the vdd.
144  */
145 struct omap_vdd_info {
146         struct omap_volt_data *volt_data;
147         struct omap_vp_runtime_data vp_rt_data;
148         u32 curr_volt;
149
150         int (*volt_scale) (struct voltagedomain *voltdm,
151                 unsigned long target_volt);
152 };
153
154 int omap_voltage_scale_vdd(struct voltagedomain *voltdm,
155                 unsigned long target_volt);
156 void omap_voltage_reset(struct voltagedomain *voltdm);
157 void omap_voltage_get_volttable(struct voltagedomain *voltdm,
158                 struct omap_volt_data **volt_data);
159 struct omap_volt_data *omap_voltage_get_voltdata(struct voltagedomain *voltdm,
160                 unsigned long volt);
161 unsigned long omap_voltage_get_nom_volt(struct voltagedomain *voltdm);
162 #ifdef CONFIG_PM
163 int omap_voltage_register_pmic(struct voltagedomain *voltdm,
164                                struct omap_voltdm_pmic *pmic);
165 void omap_change_voltscale_method(struct voltagedomain *voltdm,
166                 int voltscale_method);
167 int omap_voltage_late_init(void);
168 #else
169 static inline int omap_voltage_register_pmic(struct voltagedomain *voltdm,
170                                              struct omap_voltdm_pmic *pmic)
171 {
172         return -EINVAL;
173 }
174 static inline  void omap_change_voltscale_method(struct voltagedomain *voltdm,
175                 int voltscale_method) {}
176 static inline int omap_voltage_late_init(void)
177 {
178         return -EINVAL;
179 }
180 #endif
181
182 extern void omap2xxx_voltagedomains_init(void);
183 extern void omap3xxx_voltagedomains_init(void);
184 extern void omap44xx_voltagedomains_init(void);
185
186 struct voltagedomain *voltdm_lookup(const char *name);
187 void voltdm_init(struct voltagedomain **voltdm_list);
188 int voltdm_add_pwrdm(struct voltagedomain *voltdm, struct powerdomain *pwrdm);
189 int voltdm_for_each(int (*fn)(struct voltagedomain *voltdm, void *user),
190                     void *user);
191 int voltdm_for_each_pwrdm(struct voltagedomain *voltdm,
192                           int (*fn)(struct voltagedomain *voltdm,
193                                     struct powerdomain *pwrdm));
194 #endif