blob: 4db95b324cdc96fe30227a5d605b8ade7c6b775b [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
Matt Wagantall600ea502012-06-08 18:49:53 -070017#define L2(x) (x)
Matt Wagantalle9b715a2012-01-04 18:16:14 -080018#define BW_MBPS(_bw) \
19 { \
20 .vectors = (struct msm_bus_vectors[]){ \
21 {\
22 .src = MSM_BUS_MASTER_AMPSS_M0, \
23 .dst = MSM_BUS_SLAVE_EBI_CH0, \
Rajeev Kulkarnic9162002012-11-22 00:42:58 -080024 .ib = (_bw) * 1000000ULL, \
Matt Wagantalle9b715a2012-01-04 18:16:14 -080025 }, \
26 { \
27 .src = MSM_BUS_MASTER_AMPSS_M1, \
28 .dst = MSM_BUS_SLAVE_EBI_CH0, \
Rajeev Kulkarnic9162002012-11-22 00:42:58 -080029 .ib = (_bw) * 1000000ULL, \
Matt Wagantalle9b715a2012-01-04 18:16:14 -080030 }, \
31 }, \
32 .num_paths = 2, \
33 }
34
35/**
36 * src_id - Clock source IDs.
37 */
38enum src_id {
39 PLL_0 = 0,
40 HFPLL,
Matt Wagantall06e4a1f2012-06-07 18:38:13 -070041 PLL_8,
Vikram Mulukutla5a623db2012-10-19 08:53:19 -070042 NUM_SRC_ID,
Matt Wagantalle9b715a2012-01-04 18:16:14 -080043};
44
45/**
46 * enum pvs - IDs to distinguish between CPU frequency tables.
47 */
48enum pvs {
49 PVS_SLOW = 0,
Patrick Daly02db5a82012-08-24 14:22:06 -070050 PVS_NOMINAL = 1,
51 PVS_FAST = 3,
52 PVS_FASTER = 4,
53 NUM_PVS = 7
Matt Wagantalle9b715a2012-01-04 18:16:14 -080054};
55
56/**
Patrick Daly02db5a82012-08-24 14:22:06 -070057 * The maximum number of speed bins.
58 */
59#define NUM_SPEED_BINS (16)
60
61/**
Matt Wagantalle9b715a2012-01-04 18:16:14 -080062 * enum scalables - IDs of frequency scalable hardware blocks.
63 */
64enum scalables {
65 CPU0 = 0,
66 CPU1,
67 CPU2,
68 CPU3,
69 L2,
70};
71
72
73/**
74 * enum hfpll_vdd_level - IDs of HFPLL voltage levels.
75 */
76enum hfpll_vdd_levels {
77 HFPLL_VDD_NONE,
78 HFPLL_VDD_LOW,
79 HFPLL_VDD_NOM,
Matt Wagantall87465f52012-07-23 22:03:06 -070080 HFPLL_VDD_HIGH,
Matt Wagantalle9b715a2012-01-04 18:16:14 -080081 NUM_HFPLL_VDD
82};
83
84/**
85 * enum vregs - IDs of voltage regulators.
86 */
87enum vregs {
88 VREG_CORE,
89 VREG_MEM,
90 VREG_DIG,
91 VREG_HFPLL_A,
92 VREG_HFPLL_B,
93 NUM_VREG
94};
95
96/**
97 * struct vreg - Voltage regulator data.
98 * @name: Name of requlator.
99 * @max_vdd: Limit the maximum-settable voltage.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800100 * @reg: Regulator handle.
Matt Wagantall75473eb2012-05-31 15:23:22 -0700101 * @rpm_reg: RPM Regulator handle.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800102 * @cur_vdd: Last-set voltage in uV.
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700103 * @cur_ua: Last-set current in uA.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800104 */
105struct vreg {
Matt Wagantall75473eb2012-05-31 15:23:22 -0700106 const char *name;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800107 const int max_vdd;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800108 struct regulator *reg;
Matt Wagantall75473eb2012-05-31 15:23:22 -0700109 struct rpm_regulator *rpm_reg;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800110 int cur_vdd;
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700111 int cur_ua;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800112};
113
114/**
115 * struct core_speed - Clock tree and configuration parameters.
116 * @khz: Clock rate in KHz.
117 * @src: Clock source ID.
118 * @pri_src_sel: Input to select on the primary MUX.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800119 * @pll_l_val: HFPLL "L" value to be applied when an HFPLL source is selected.
120 */
121struct core_speed {
Matt Wagantall9c8cb6e2012-07-13 19:39:15 -0700122 unsigned long khz;
123 int src;
124 u32 pri_src_sel;
Matt Wagantall9c8cb6e2012-07-13 19:39:15 -0700125 u32 pll_l_val;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800126};
127
128/**
129 * struct l2_level - L2 clock rate and associated voltage and b/w requirements.
130 * @speed: L2 clock configuration.
131 * @vdd_dig: vdd_dig voltage in uV.
132 * @vdd_mem: vdd_mem voltage in uV.
133 * @bw_level: Bandwidth performance level number.
134 */
135struct l2_level {
136 const struct core_speed speed;
137 const int vdd_dig;
138 const int vdd_mem;
139 const unsigned int bw_level;
140};
141
142/**
143 * struct acpu_level - CPU clock rate and L2 rate and voltage requirements.
144 * @use_for_scaling: Flag indicating whether or not the level should be used.
145 * @speed: CPU clock configuration.
146 * @l2_level: L2 configuration to use.
147 * @vdd_core: CPU core voltage in uV.
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700148 * @ua_core: CPU core current consumption in uA.
Stephen Boydc13b6792012-09-14 11:25:34 -0700149 * @avsdscr_setting: AVS DSCR configuration.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800150 */
151struct acpu_level {
152 const int use_for_scaling;
153 const struct core_speed speed;
Matt Wagantall600ea502012-06-08 18:49:53 -0700154 const unsigned int l2_level;
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700155 int vdd_core;
Matt Wagantall6d9c4162012-07-16 18:58:16 -0700156 int ua_core;
Stephen Boydc13b6792012-09-14 11:25:34 -0700157 unsigned int avsdscr_setting;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800158};
159
160/**
161 * struct hfpll_data - Descriptive data of HFPLL hardware.
162 * @mode_offset: Mode register offset from base address.
163 * @l_offset: "L" value register offset from base address.
164 * @m_offset: "M" value register offset from base address.
165 * @n_offset: "N" value register offset from base address.
166 * @config_offset: Configuration register offset from base address.
167 * @config_val: Value to initialize the @config_offset register to.
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700168 * @has_user_reg: Indicates the presence of an addition config register.
169 * @user_offset: User register offset from base address, if applicable.
170 * @user_val: Value to initialize the @user_offset register to.
171 * @user_vco_mask: Bit in the @user_offset to enable high-frequency VCO mode.
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700172 * @has_droop_ctl: Indicates the presence of a voltage droop controller.
173 * @droop_offset: Droop controller register offset from base address.
174 * @droop_val: Value to initialize the @config_offset register to.
175 * @low_vdd_l_max: Maximum "L" value supported at HFPLL_VDD_LOW.
Matt Wagantall87465f52012-07-23 22:03:06 -0700176 * @nom_vdd_l_max: Maximum "L" value supported at HFPLL_VDD_NOM.
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700177 * @low_vco_l_max: Maximum "L" value supported in low-frequency VCO mode.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700178 * @vdd: voltage requirements for each VDD level for the L2 PLL.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800179 */
180struct hfpll_data {
181 const u32 mode_offset;
182 const u32 l_offset;
183 const u32 m_offset;
184 const u32 n_offset;
185 const u32 config_offset;
186 const u32 config_val;
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700187 const bool has_user_reg;
188 const u32 user_offset;
189 const u32 user_val;
190 const u32 user_vco_mask;
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700191 const bool has_droop_ctl;
192 const u32 droop_offset;
193 const u32 droop_val;
Patrick Daly02db5a82012-08-24 14:22:06 -0700194 u32 low_vdd_l_max;
195 u32 nom_vdd_l_max;
Matt Wagantalla77b7f32012-07-18 16:32:01 -0700196 const u32 low_vco_l_max;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800197 const int vdd[NUM_HFPLL_VDD];
198};
199
200/**
201 * struct scalable - Register locations and state associated with a scalable HW.
202 * @hfpll_phys_base: Physical base address of HFPLL register.
203 * @hfpll_base: Virtual base address of HFPLL registers.
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700204 * @aux_clk_sel_phys: Physical address of auxiliary MUX.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800205 * @aux_clk_sel: Auxiliary mux input to select at boot.
Matt Wagantalla133dbf2012-09-27 19:56:57 -0700206 * @sec_clk_sel: Secondary mux input to select at boot.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800207 * @l2cpmr_iaddr: Indirect address of the CPMR MUX/divider CP15 register.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800208 * @cur_speed: Pointer to currently-set speed.
209 * @l2_vote: L2 performance level vote associate with the current CPU speed.
210 * @vreg: Array of voltage regulators needed by the scalable.
Matt Wagantall754ee272012-06-18 13:40:26 -0700211 * @initialized: Flag set to true when per_cpu_init() has been called.
Stephen Boydc13b6792012-09-14 11:25:34 -0700212 * @avs_enabled: True if avs is enabled for the scalabale. False otherwise.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800213 */
214struct scalable {
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700215 const phys_addr_t hfpll_phys_base;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800216 void __iomem *hfpll_base;
Matt Wagantall06e4a1f2012-06-07 18:38:13 -0700217 const phys_addr_t aux_clk_sel_phys;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800218 const u32 aux_clk_sel;
Matt Wagantalla133dbf2012-09-27 19:56:57 -0700219 const u32 sec_clk_sel;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800220 const u32 l2cpmr_iaddr;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800221 const struct core_speed *cur_speed;
Matt Wagantall600ea502012-06-08 18:49:53 -0700222 unsigned int l2_vote;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800223 struct vreg vreg[NUM_VREG];
Matt Wagantall754ee272012-06-18 13:40:26 -0700224 bool initialized;
Stephen Boydc13b6792012-09-14 11:25:34 -0700225 bool avs_enabled;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800226};
227
228/**
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700229 * struct pvs_table - CPU performance level table and size.
230 * @table: CPU performance level table
231 * @size: sizeof(@table)
Matt Wagantall9515bc22012-07-19 18:13:40 -0700232 * @boost_uv: Voltage boost amount
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700233 */
234struct pvs_table {
235 struct acpu_level *table;
236 size_t size;
Matt Wagantall9515bc22012-07-19 18:13:40 -0700237 int boost_uv;
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700238};
239
240/**
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800241 * struct acpuclk_krait_params - SoC specific driver parameters.
242 * @scalable: Array of scalables.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700243 * @scalable_size: Size of @scalable.
244 * @hfpll_data: HFPLL configuration data.
Patrick Daly02db5a82012-08-24 14:22:06 -0700245 * @pvs_tables: 2D array of CPU frequency tables.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800246 * @l2_freq_tbl: L2 frequency table.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700247 * @l2_freq_tbl_size: Size of @l2_freq_tbl.
Matt Wagantall519e94f2012-09-17 17:51:06 -0700248 * @pte_efuse_phys: Physical address of PTE EFUSE.
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700249 * @bus_scale: MSM bus driver parameters.
Matt Wagantallb7c231b2012-07-24 18:40:17 -0700250 * @stby_khz: KHz value corresponding to an always-on clock source.
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800251 */
252struct acpuclk_krait_params {
253 struct scalable *scalable;
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700254 size_t scalable_size;
255 struct hfpll_data *hfpll_data;
Patrick Daly02db5a82012-08-24 14:22:06 -0700256 struct pvs_table (*pvs_tables)[NUM_PVS];
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700257 struct l2_level *l2_freq_tbl;
258 size_t l2_freq_tbl_size;
Matt Wagantall519e94f2012-09-17 17:51:06 -0700259 phys_addr_t pte_efuse_phys;
Matt Wagantall1f3762d2012-06-08 19:08:48 -0700260 struct msm_bus_scale_pdata *bus_scale;
Matt Wagantallb7c231b2012-07-24 18:40:17 -0700261 unsigned long stby_khz;
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800262};
263
264/**
Patrick Daly65213ed2012-08-28 13:36:31 -0700265 * struct acpuclk_platform_data - PMIC configuration data.
266 * @uses_pm8917: Boolean indicates presence of pm8917.
267 */
268struct acpuclk_platform_data {
269 bool uses_pm8917;
270};
271
272/**
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800273 * acpuclk_krait_init - Initialize the Krait CPU clock driver give SoC params.
274 */
275extern int acpuclk_krait_init(struct device *dev,
276 const struct acpuclk_krait_params *params);
Matt Wagantalle9b715a2012-01-04 18:16:14 -0800277#endif