blob: 5d2977232898f0c19ab949f7852dd7f11a1d616b [file] [log] [blame]
Matt Wagantalle9b715a2012-01-04 18:16:14 -08001/*
2 * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#ifndef __ARCH_ARM_MACH_MSM_ACPUCLOCK_KRAIT_H
15#define __ARCH_ARM_MACH_MSM_ACPUCLOCK_KRAIT_H
16
17#define STBY_KHZ 1
Matt Wagantall600ea502012-06-08 18:49:53 -070018#define L2(x) (x)
Matt Wagantalle9b715a2012-01-04 18:16:14 -080019#define BW_MBPS(_bw) \
20 { \
21 .vectors = (struct msm_bus_vectors[]){ \
22 {\
23 .src = MSM_BUS_MASTER_AMPSS_M0, \
24 .dst = MSM_BUS_SLAVE_EBI_CH0, \
25 .ib = (_bw) * 1000000UL, \
26 }, \
27 { \
28 .src = MSM_BUS_MASTER_AMPSS_M1, \
29 .dst = MSM_BUS_SLAVE_EBI_CH0, \
30 .ib = (_bw) * 1000000UL, \
31 }, \
32 }, \
33 .num_paths = 2, \
34 }
35
36/**
37 * src_id - Clock source IDs.
38 */
39enum src_id {
40 PLL_0 = 0,
41 HFPLL,
42 QSB,
Matt Wagantall06e4a1f2012-06-07 18:38:13 -070043 PLL_8,
Matt Wagantalle9b715a2012-01-04 18:16:14 -080044};
45
46/**
47 * enum pvs - IDs to distinguish between CPU frequency tables.
48 */
49enum pvs {
50 PVS_SLOW = 0,
51 PVS_NOMINAL,
52 PVS_FAST,
Matt Wagantallf5cc3892012-06-07 19:47:02 -070053 PVS_FASTER,
Matt Wagantalle9b715a2012-01-04 18:16:14 -080054 PVS_UNKNOWN,
55 NUM_PVS
56};
57
58/**
59 * enum scalables - IDs of frequency scalable hardware blocks.
60 */
61enum scalables {
62 CPU0 = 0,
63 CPU1,
64 CPU2,
65 CPU3,
66 L2,
67};
68
69
70/**
71 * enum hfpll_vdd_level - IDs of HFPLL voltage levels.
72 */
73enum hfpll_vdd_levels {
74 HFPLL_VDD_NONE,
75 HFPLL_VDD_LOW,
76 HFPLL_VDD_NOM,
Matt Wagantall87465f52012-07-23 22:03:06 -070077 HFPLL_VDD_HIGH,
Matt Wagantalle9b715a2012-01-04 18:16:14 -080078 NUM_HFPLL_VDD
79};
80
81/**
82 * enum vregs - IDs of voltage regulators.
83 */
84enum vregs {
85 VREG_CORE,
86 VREG_MEM,
87 VREG_DIG,
88 VREG_HFPLL_A,
89 VREG_HFPLL_B,
90 NUM_VREG
91};
92
93/**
94 * struct vreg - Voltage regulator data.
95 * @name: Name of requlator.
96 * @max_vdd: Limit the maximum-settable voltage.
Matt Wagantalle9b715a2012-01-04 18:16:14 -080097 * @reg: Regulator handle.
Matt Wagantall75473eb2012-05-31 15:23:22 -070098 * @rpm_reg: RPM Regulator handle.
Matt Wagantalle9b715a2012-01-04 18:16:14 -080099 * @cur_vdd: Last-set voltage in uV.
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700100 * @cur_ua: Last-set current in uA.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800101 */
102struct vreg {
Matt Wagantall75473eb2012-05-31 15:23:22 -0700103 const char *name;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800104 const int max_vdd;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800105 struct regulator *reg;
Matt Wagantall75473eb2012-05-31 15:23:22 -0700106 struct rpm_regulator *rpm_reg;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800107 int cur_vdd;
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700108 int cur_ua;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800109};
110
111/**
112 * struct core_speed - Clock tree and configuration parameters.
113 * @khz: Clock rate in KHz.
114 * @src: Clock source ID.
115 * @pri_src_sel: Input to select on the primary MUX.
116 * @sec_src_sel: Input to select on the secondary MUX.
117 * @pll_l_val: HFPLL "L" value to be applied when an HFPLL source is selected.
118 */
119struct core_speed {
Matt Wagantall9c8cb6e2012-07-13 19:39:15 -0700120 unsigned long khz;
121 int src;
122 u32 pri_src_sel;
123 u32 sec_src_sel;
124 u32 pll_l_val;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800125};
126
127/**
128 * struct l2_level - L2 clock rate and associated voltage and b/w requirements.
129 * @speed: L2 clock configuration.
130 * @vdd_dig: vdd_dig voltage in uV.
131 * @vdd_mem: vdd_mem voltage in uV.
132 * @bw_level: Bandwidth performance level number.
133 */
134struct l2_level {
135 const struct core_speed speed;
136 const int vdd_dig;
137 const int vdd_mem;
138 const unsigned int bw_level;
139};
140
141/**
142 * struct acpu_level - CPU clock rate and L2 rate and voltage requirements.
143 * @use_for_scaling: Flag indicating whether or not the level should be used.
144 * @speed: CPU clock configuration.
145 * @l2_level: L2 configuration to use.
146 * @vdd_core: CPU core voltage in uV.
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700147 * @ua_core: CPU core current consumption in uA.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800148 */
149struct acpu_level {
150 const int use_for_scaling;
151 const struct core_speed speed;
Matt Wagantall600ea502012-06-08 18:49:53 -0700152 const unsigned int l2_level;
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700153 int vdd_core;
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700154 int ua_core;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800155};
156
157/**
158 * struct hfpll_data - Descriptive data of HFPLL hardware.
159 * @mode_offset: Mode register offset from base address.
160 * @l_offset: "L" value register offset from base address.
161 * @m_offset: "M" value register offset from base address.
162 * @n_offset: "N" value register offset from base address.
163 * @config_offset: Configuration register offset from base address.
164 * @config_val: Value to initialize the @config_offset register to.
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700165 * @has_user_reg: Indicates the presence of an addition config register.
166 * @user_offset: User register offset from base address, if applicable.
167 * @user_val: Value to initialize the @user_offset register to.
168 * @user_vco_mask: Bit in the @user_offset to enable high-frequency VCO mode.
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700169 * @has_droop_ctl: Indicates the presence of a voltage droop controller.
170 * @droop_offset: Droop controller register offset from base address.
171 * @droop_val: Value to initialize the @config_offset register to.
172 * @low_vdd_l_max: Maximum "L" value supported at HFPLL_VDD_LOW.
Matt Wagantall87465f52012-07-23 22:03:06 -0700173 * @nom_vdd_l_max: Maximum "L" value supported at HFPLL_VDD_NOM.
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700174 * @low_vco_l_max: Maximum "L" value supported in low-frequency VCO mode.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700175 * @vdd: voltage requirements for each VDD level for the L2 PLL.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800176 */
177struct hfpll_data {
178 const u32 mode_offset;
179 const u32 l_offset;
180 const u32 m_offset;
181 const u32 n_offset;
182 const u32 config_offset;
183 const u32 config_val;
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700184 const bool has_user_reg;
185 const u32 user_offset;
186 const u32 user_val;
187 const u32 user_vco_mask;
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700188 const bool has_droop_ctl;
189 const u32 droop_offset;
190 const u32 droop_val;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800191 const u32 low_vdd_l_max;
Matt Wagantall87465f52012-07-23 22:03:06 -0700192 const u32 nom_vdd_l_max;
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700193 const u32 low_vco_l_max;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800194 const int vdd[NUM_HFPLL_VDD];
195};
196
197/**
198 * struct scalable - Register locations and state associated with a scalable HW.
199 * @hfpll_phys_base: Physical base address of HFPLL register.
200 * @hfpll_base: Virtual base address of HFPLL registers.
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700201 * @aux_clk_sel_phys: Physical address of auxiliary MUX.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800202 * @aux_clk_sel: Auxiliary mux input to select at boot.
203 * @l2cpmr_iaddr: Indirect address of the CPMR MUX/divider CP15 register.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800204 * @cur_speed: Pointer to currently-set speed.
205 * @l2_vote: L2 performance level vote associate with the current CPU speed.
206 * @vreg: Array of voltage regulators needed by the scalable.
Matt Wagantall754ee272012-06-18 13:40:26 -0700207 * @initialized: Flag set to true when per_cpu_init() has been called.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800208 */
209struct scalable {
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700210 const phys_addr_t hfpll_phys_base;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800211 void __iomem *hfpll_base;
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700212 const phys_addr_t aux_clk_sel_phys;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800213 const u32 aux_clk_sel;
214 const u32 l2cpmr_iaddr;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800215 const struct core_speed *cur_speed;
Matt Wagantall600ea502012-06-08 18:49:53 -0700216 unsigned int l2_vote;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800217 struct vreg vreg[NUM_VREG];
Matt Wagantall754ee272012-06-18 13:40:26 -0700218 bool initialized;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800219};
220
221/**
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700222 * struct pvs_table - CPU performance level table and size.
223 * @table: CPU performance level table
224 * @size: sizeof(@table)
Matt Wagantall9515bc22012-07-19 18:13:40 -0700225 * @boost_uv: Voltage boost amount
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700226 */
227struct pvs_table {
228 struct acpu_level *table;
229 size_t size;
Matt Wagantall9515bc22012-07-19 18:13:40 -0700230 int boost_uv;
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700231};
232
233/**
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800234 * struct acpuclk_krait_params - SoC specific driver parameters.
235 * @scalable: Array of scalables.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700236 * @scalable_size: Size of @scalable.
237 * @hfpll_data: HFPLL configuration data.
238 * @pvs_tables: CPU frequency tables.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800239 * @l2_freq_tbl: L2 frequency table.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700240 * @l2_freq_tbl_size: Size of @l2_freq_tbl.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800241 * @qfprom_phys_base: Physical base address of QFPROM.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700242 * @bus_scale: MSM bus driver parameters.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800243 */
244struct acpuclk_krait_params {
245 struct scalable *scalable;
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700246 size_t scalable_size;
247 struct hfpll_data *hfpll_data;
248 struct pvs_table *pvs_tables;
249 struct l2_level *l2_freq_tbl;
250 size_t l2_freq_tbl_size;
251 phys_addr_t qfprom_phys_base;
252 struct msm_bus_scale_pdata *bus_scale;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800253};
254
255/**
256 * acpuclk_krait_init - Initialize the Krait CPU clock driver give SoC params.
257 */
258extern int acpuclk_krait_init(struct device *dev,
259 const struct acpuclk_krait_params *params);
260
261#endif