Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 1 | /* |
| 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 Wagantall | 600ea50 | 2012-06-08 18:49:53 -0700 | [diff] [blame] | 17 | #define L2(x) (x) |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 18 | #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, \ |
| 24 | .ib = (_bw) * 1000000UL, \ |
| 25 | }, \ |
| 26 | { \ |
| 27 | .src = MSM_BUS_MASTER_AMPSS_M1, \ |
| 28 | .dst = MSM_BUS_SLAVE_EBI_CH0, \ |
| 29 | .ib = (_bw) * 1000000UL, \ |
| 30 | }, \ |
| 31 | }, \ |
| 32 | .num_paths = 2, \ |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * src_id - Clock source IDs. |
| 37 | */ |
| 38 | enum src_id { |
| 39 | PLL_0 = 0, |
| 40 | HFPLL, |
Matt Wagantall | 06e4a1f | 2012-06-07 18:38:13 -0700 | [diff] [blame] | 41 | PLL_8, |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | /** |
| 45 | * enum pvs - IDs to distinguish between CPU frequency tables. |
| 46 | */ |
| 47 | enum pvs { |
| 48 | PVS_SLOW = 0, |
| 49 | PVS_NOMINAL, |
| 50 | PVS_FAST, |
Matt Wagantall | f5cc389 | 2012-06-07 19:47:02 -0700 | [diff] [blame] | 51 | PVS_FASTER, |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 52 | PVS_UNKNOWN, |
| 53 | NUM_PVS |
| 54 | }; |
| 55 | |
| 56 | /** |
| 57 | * enum scalables - IDs of frequency scalable hardware blocks. |
| 58 | */ |
| 59 | enum scalables { |
| 60 | CPU0 = 0, |
| 61 | CPU1, |
| 62 | CPU2, |
| 63 | CPU3, |
| 64 | L2, |
| 65 | }; |
| 66 | |
| 67 | |
| 68 | /** |
| 69 | * enum hfpll_vdd_level - IDs of HFPLL voltage levels. |
| 70 | */ |
| 71 | enum hfpll_vdd_levels { |
| 72 | HFPLL_VDD_NONE, |
| 73 | HFPLL_VDD_LOW, |
| 74 | HFPLL_VDD_NOM, |
Matt Wagantall | 87465f5 | 2012-07-23 22:03:06 -0700 | [diff] [blame] | 75 | HFPLL_VDD_HIGH, |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 76 | NUM_HFPLL_VDD |
| 77 | }; |
| 78 | |
| 79 | /** |
| 80 | * enum vregs - IDs of voltage regulators. |
| 81 | */ |
| 82 | enum vregs { |
| 83 | VREG_CORE, |
| 84 | VREG_MEM, |
| 85 | VREG_DIG, |
| 86 | VREG_HFPLL_A, |
| 87 | VREG_HFPLL_B, |
| 88 | NUM_VREG |
| 89 | }; |
| 90 | |
| 91 | /** |
| 92 | * struct vreg - Voltage regulator data. |
| 93 | * @name: Name of requlator. |
| 94 | * @max_vdd: Limit the maximum-settable voltage. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 95 | * @reg: Regulator handle. |
Matt Wagantall | 75473eb | 2012-05-31 15:23:22 -0700 | [diff] [blame] | 96 | * @rpm_reg: RPM Regulator handle. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 97 | * @cur_vdd: Last-set voltage in uV. |
Matt Wagantall | 6d9c416 | 2012-07-16 18:58:16 -0700 | [diff] [blame] | 98 | * @cur_ua: Last-set current in uA. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 99 | */ |
| 100 | struct vreg { |
Matt Wagantall | 75473eb | 2012-05-31 15:23:22 -0700 | [diff] [blame] | 101 | const char *name; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 102 | const int max_vdd; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 103 | struct regulator *reg; |
Matt Wagantall | 75473eb | 2012-05-31 15:23:22 -0700 | [diff] [blame] | 104 | struct rpm_regulator *rpm_reg; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 105 | int cur_vdd; |
Matt Wagantall | 6d9c416 | 2012-07-16 18:58:16 -0700 | [diff] [blame] | 106 | int cur_ua; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | /** |
| 110 | * struct core_speed - Clock tree and configuration parameters. |
| 111 | * @khz: Clock rate in KHz. |
| 112 | * @src: Clock source ID. |
| 113 | * @pri_src_sel: Input to select on the primary MUX. |
| 114 | * @sec_src_sel: Input to select on the secondary MUX. |
| 115 | * @pll_l_val: HFPLL "L" value to be applied when an HFPLL source is selected. |
| 116 | */ |
| 117 | struct core_speed { |
Matt Wagantall | 9c8cb6e | 2012-07-13 19:39:15 -0700 | [diff] [blame] | 118 | unsigned long khz; |
| 119 | int src; |
| 120 | u32 pri_src_sel; |
| 121 | u32 sec_src_sel; |
| 122 | u32 pll_l_val; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | /** |
| 126 | * struct l2_level - L2 clock rate and associated voltage and b/w requirements. |
| 127 | * @speed: L2 clock configuration. |
| 128 | * @vdd_dig: vdd_dig voltage in uV. |
| 129 | * @vdd_mem: vdd_mem voltage in uV. |
| 130 | * @bw_level: Bandwidth performance level number. |
| 131 | */ |
| 132 | struct l2_level { |
| 133 | const struct core_speed speed; |
| 134 | const int vdd_dig; |
| 135 | const int vdd_mem; |
| 136 | const unsigned int bw_level; |
| 137 | }; |
| 138 | |
| 139 | /** |
| 140 | * struct acpu_level - CPU clock rate and L2 rate and voltage requirements. |
| 141 | * @use_for_scaling: Flag indicating whether or not the level should be used. |
| 142 | * @speed: CPU clock configuration. |
| 143 | * @l2_level: L2 configuration to use. |
| 144 | * @vdd_core: CPU core voltage in uV. |
Matt Wagantall | 6d9c416 | 2012-07-16 18:58:16 -0700 | [diff] [blame] | 145 | * @ua_core: CPU core current consumption in uA. |
Stephen Boyd | a86214a | 2012-09-14 11:25:34 -0700 | [diff] [blame] | 146 | * @avsdscr_setting: AVS DSCR configuration. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 147 | */ |
| 148 | struct acpu_level { |
| 149 | const int use_for_scaling; |
| 150 | const struct core_speed speed; |
Matt Wagantall | 600ea50 | 2012-06-08 18:49:53 -0700 | [diff] [blame] | 151 | const unsigned int l2_level; |
Matt Wagantall | 06e4a1f | 2012-06-07 18:38:13 -0700 | [diff] [blame] | 152 | int vdd_core; |
Matt Wagantall | 6d9c416 | 2012-07-16 18:58:16 -0700 | [diff] [blame] | 153 | int ua_core; |
Stephen Boyd | a86214a | 2012-09-14 11:25:34 -0700 | [diff] [blame] | 154 | unsigned int avsdscr_setting; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 155 | }; |
| 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 Wagantall | a77b7f3 | 2012-07-18 16:32:01 -0700 | [diff] [blame] | 165 | * @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 Wagantall | 06e4a1f | 2012-06-07 18:38:13 -0700 | [diff] [blame] | 169 | * @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 Wagantall | 87465f5 | 2012-07-23 22:03:06 -0700 | [diff] [blame] | 173 | * @nom_vdd_l_max: Maximum "L" value supported at HFPLL_VDD_NOM. |
Matt Wagantall | a77b7f3 | 2012-07-18 16:32:01 -0700 | [diff] [blame] | 174 | * @low_vco_l_max: Maximum "L" value supported in low-frequency VCO mode. |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 175 | * @vdd: voltage requirements for each VDD level for the L2 PLL. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 176 | */ |
| 177 | struct 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 Wagantall | a77b7f3 | 2012-07-18 16:32:01 -0700 | [diff] [blame] | 184 | const bool has_user_reg; |
| 185 | const u32 user_offset; |
| 186 | const u32 user_val; |
| 187 | const u32 user_vco_mask; |
Matt Wagantall | 06e4a1f | 2012-06-07 18:38:13 -0700 | [diff] [blame] | 188 | const bool has_droop_ctl; |
| 189 | const u32 droop_offset; |
| 190 | const u32 droop_val; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 191 | const u32 low_vdd_l_max; |
Matt Wagantall | 87465f5 | 2012-07-23 22:03:06 -0700 | [diff] [blame] | 192 | const u32 nom_vdd_l_max; |
Matt Wagantall | a77b7f3 | 2012-07-18 16:32:01 -0700 | [diff] [blame] | 193 | const u32 low_vco_l_max; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 194 | 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 Wagantall | 06e4a1f | 2012-06-07 18:38:13 -0700 | [diff] [blame] | 201 | * @aux_clk_sel_phys: Physical address of auxiliary MUX. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 202 | * @aux_clk_sel: Auxiliary mux input to select at boot. |
| 203 | * @l2cpmr_iaddr: Indirect address of the CPMR MUX/divider CP15 register. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 204 | * @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 Wagantall | 754ee27 | 2012-06-18 13:40:26 -0700 | [diff] [blame] | 207 | * @initialized: Flag set to true when per_cpu_init() has been called. |
Stephen Boyd | a86214a | 2012-09-14 11:25:34 -0700 | [diff] [blame] | 208 | * @avs_enabled: True if avs is enabled for the scalabale. False otherwise. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 209 | */ |
| 210 | struct scalable { |
Matt Wagantall | 06e4a1f | 2012-06-07 18:38:13 -0700 | [diff] [blame] | 211 | const phys_addr_t hfpll_phys_base; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 212 | void __iomem *hfpll_base; |
Matt Wagantall | 06e4a1f | 2012-06-07 18:38:13 -0700 | [diff] [blame] | 213 | const phys_addr_t aux_clk_sel_phys; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 214 | const u32 aux_clk_sel; |
| 215 | const u32 l2cpmr_iaddr; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 216 | const struct core_speed *cur_speed; |
Matt Wagantall | 600ea50 | 2012-06-08 18:49:53 -0700 | [diff] [blame] | 217 | unsigned int l2_vote; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 218 | struct vreg vreg[NUM_VREG]; |
Matt Wagantall | 754ee27 | 2012-06-18 13:40:26 -0700 | [diff] [blame] | 219 | bool initialized; |
Stephen Boyd | a86214a | 2012-09-14 11:25:34 -0700 | [diff] [blame] | 220 | bool avs_enabled; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 221 | }; |
| 222 | |
| 223 | /** |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 224 | * struct pvs_table - CPU performance level table and size. |
| 225 | * @table: CPU performance level table |
| 226 | * @size: sizeof(@table) |
Matt Wagantall | 9515bc2 | 2012-07-19 18:13:40 -0700 | [diff] [blame] | 227 | * @boost_uv: Voltage boost amount |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 228 | */ |
| 229 | struct pvs_table { |
| 230 | struct acpu_level *table; |
| 231 | size_t size; |
Matt Wagantall | 9515bc2 | 2012-07-19 18:13:40 -0700 | [diff] [blame] | 232 | int boost_uv; |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 233 | }; |
| 234 | |
| 235 | /** |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 236 | * struct acpuclk_krait_params - SoC specific driver parameters. |
| 237 | * @scalable: Array of scalables. |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 238 | * @scalable_size: Size of @scalable. |
| 239 | * @hfpll_data: HFPLL configuration data. |
| 240 | * @pvs_tables: CPU frequency tables. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 241 | * @l2_freq_tbl: L2 frequency table. |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 242 | * @l2_freq_tbl_size: Size of @l2_freq_tbl. |
Matt Wagantall | ee2b437 | 2012-09-17 17:51:06 -0700 | [diff] [blame] | 243 | * @pte_efuse_phys: Physical address of PTE EFUSE. |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 244 | * @bus_scale: MSM bus driver parameters. |
Matt Wagantall | b7c231b | 2012-07-24 18:40:17 -0700 | [diff] [blame] | 245 | * @stby_khz: KHz value corresponding to an always-on clock source. |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 246 | */ |
| 247 | struct acpuclk_krait_params { |
| 248 | struct scalable *scalable; |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 249 | size_t scalable_size; |
| 250 | struct hfpll_data *hfpll_data; |
| 251 | struct pvs_table *pvs_tables; |
| 252 | struct l2_level *l2_freq_tbl; |
| 253 | size_t l2_freq_tbl_size; |
Matt Wagantall | ee2b437 | 2012-09-17 17:51:06 -0700 | [diff] [blame] | 254 | phys_addr_t pte_efuse_phys; |
Matt Wagantall | 1f3762d | 2012-06-08 19:08:48 -0700 | [diff] [blame] | 255 | struct msm_bus_scale_pdata *bus_scale; |
Matt Wagantall | b7c231b | 2012-07-24 18:40:17 -0700 | [diff] [blame] | 256 | unsigned long stby_khz; |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 257 | }; |
| 258 | |
| 259 | /** |
Patrick Daly | 037d491 | 2012-08-28 13:36:31 -0700 | [diff] [blame] | 260 | * struct acpuclk_platform_data - PMIC configuration data. |
| 261 | * @uses_pm8917: Boolean indicates presence of pm8917. |
| 262 | */ |
| 263 | struct acpuclk_platform_data { |
| 264 | bool uses_pm8917; |
| 265 | }; |
| 266 | |
| 267 | /** |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 268 | * acpuclk_krait_init - Initialize the Krait CPU clock driver give SoC params. |
| 269 | */ |
| 270 | extern int acpuclk_krait_init(struct device *dev, |
| 271 | const struct acpuclk_krait_params *params); |
Matt Wagantall | e9b715a | 2012-01-04 18:16:14 -0800 | [diff] [blame] | 272 | #endif |