Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Google, Inc. |
| 3 | * Copyright (c) 2007-2012, Linux Foundation. All rights reserved. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 and |
| 7 | * only version 2 as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/errno.h> |
| 19 | #include <linux/string.h> |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/clk.h> |
| 22 | #include <linux/cpufreq.h> |
| 23 | #include <linux/mutex.h> |
| 24 | #include <linux/io.h> |
| 25 | #include <linux/sort.h> |
| 26 | #include <linux/regulator/consumer.h> |
| 27 | #include <linux/smp.h> |
| 28 | |
| 29 | #include <mach/board.h> |
| 30 | #include <mach/msm_iomap.h> |
| 31 | #include <mach/clk-provider.h> |
| 32 | |
| 33 | #include <asm/cpu.h> |
| 34 | |
| 35 | #include "acpuclock.h" |
| 36 | #include "acpuclock-8625q.h" |
| 37 | |
| 38 | #define A11S_CLK_CNTL_ADDR (MSM_CSR_BASE + 0x100) |
| 39 | #define A11S_CLK_SEL_ADDR (MSM_CSR_BASE + 0x104) |
| 40 | |
| 41 | #define PLL4_L_VAL_ADDR (MSM_CLK_CTL_BASE + 0x378) |
| 42 | #define PLL4_M_VAL_ADDR (MSM_CLK_CTL_BASE + 0x37C) |
| 43 | #define PLL4_N_VAL_ADDR (MSM_CLK_CTL_BASE + 0x380) |
| 44 | |
| 45 | #define POWER_COLLAPSE_KHZ 19200 |
| 46 | |
| 47 | /* Max CPU frequency allowed by hardware while in standby waiting for an irq. */ |
| 48 | #define MAX_WAIT_FOR_IRQ_KHZ 128000 |
| 49 | |
| 50 | /** |
| 51 | * enum - For acpuclock PLL IDs |
| 52 | */ |
| 53 | enum { |
| 54 | ACPU_PLL_0 = 0, |
| 55 | ACPU_PLL_1, |
| 56 | ACPU_PLL_2, |
| 57 | ACPU_PLL_3, |
| 58 | ACPU_PLL_4, |
| 59 | ACPU_PLL_TCXO, |
| 60 | ACPU_PLL_END, |
| 61 | }; |
| 62 | |
| 63 | struct acpu_clk_src { |
| 64 | struct clk *clk; |
| 65 | const char *name; |
| 66 | }; |
| 67 | |
| 68 | struct pll_config { |
| 69 | unsigned int l; |
| 70 | unsigned int m; |
| 71 | unsigned int n; |
| 72 | }; |
| 73 | |
| 74 | static struct acpu_clk_src pll_clk[ACPU_PLL_END] = { |
| 75 | [ACPU_PLL_0] = { .name = "pll0_clk" }, |
| 76 | [ACPU_PLL_1] = { .name = "pll1_clk" }, |
| 77 | [ACPU_PLL_2] = { .name = "pll2_clk" }, |
| 78 | [ACPU_PLL_4] = { .name = "pll4_clk" }, |
| 79 | }; |
| 80 | |
| 81 | static struct pll_config pll4_cfg_tbl[] = { |
| 82 | [0] = { 36, 1, 2 }, /* 700.8 MHz */ |
| 83 | [1] = { 52, 1, 2 }, /* 1008 MHz */ |
| 84 | [2] = { 63, 0, 1 }, /* 1209.6 MHz */ |
| 85 | [3] = { 73, 0, 1 }, /* 1401.6 MHz */ |
| 86 | }; |
| 87 | |
| 88 | struct clock_state { |
| 89 | struct clkctl_acpu_speed *current_speed; |
| 90 | struct mutex lock; |
| 91 | uint32_t max_speed_delta_khz; |
| 92 | struct clk *ebi1_clk; |
| 93 | struct regulator *vreg_cpu; |
| 94 | }; |
| 95 | |
| 96 | struct clkctl_acpu_speed { |
| 97 | unsigned int use_for_scaling; |
| 98 | unsigned int a11clk_khz; |
| 99 | int pll; |
| 100 | unsigned int a11clk_src_sel; |
| 101 | unsigned int a11clk_src_div; |
| 102 | unsigned int ahbclk_khz; |
| 103 | unsigned int ahbclk_div; |
| 104 | int vdd; |
| 105 | unsigned int axiclk_khz; |
| 106 | struct pll_config *pll_rate; |
| 107 | unsigned long lpj; |
| 108 | }; |
| 109 | |
| 110 | static struct clock_state drv_state = { 0 }; |
| 111 | |
| 112 | /* PVS MAX Voltage in uV as per frequencies*/ |
| 113 | |
| 114 | # define MAX_14GHZ_VOLTAGE 1350000 |
| 115 | # define MAX_12GHZ_VOLTAGE 1275000 |
| 116 | # define MAX_1GHZ_VOLTAGE 1175000 |
| 117 | # define MAX_NOMINAL_VOLTAGE 1150000 |
| 118 | |
| 119 | /* PVS deltas as per formula*/ |
| 120 | # define DELTA_LEVEL_1_UV 0 |
| 121 | # define DELTA_LEVEL_2_UV 75000 |
| 122 | # define DELTA_LEVEL_3_UV 150000 |
| 123 | |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 124 | /* |
| 125 | * The default initialization is according to the requirements of |
| 126 | * SKUD_prime. If the target is quad core, we reinitialize this table using |
| 127 | * the reinitalize_freq_table() function. |
| 128 | */ |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 129 | static struct clkctl_acpu_speed acpu_freq_tbl_cmn[] = { |
| 130 | { 0, 19200, ACPU_PLL_TCXO, 0, 0, 2400, 3, 0, 30720 }, |
| 131 | { 1, 245760, ACPU_PLL_1, 1, 0, 30720, 3, MAX_NOMINAL_VOLTAGE, 61440 }, |
| 132 | { 1, 320000, ACPU_PLL_0, 4, 2, 40000, 3, MAX_NOMINAL_VOLTAGE, 122880 }, |
| 133 | { 1, 480000, ACPU_PLL_0, 4, 1, 60000, 3, MAX_NOMINAL_VOLTAGE, 122880 }, |
| 134 | { 0, 600000, ACPU_PLL_2, 2, 1, 75000, 3, 0, 160000 }, |
| 135 | { 1, 700800, ACPU_PLL_4, 6, 0, 87500, 3, MAX_NOMINAL_VOLTAGE, 160000, |
| 136 | &pll4_cfg_tbl[0]}, |
| 137 | { 1, 1008000, ACPU_PLL_4, 6, 0, 126000, 3, MAX_1GHZ_VOLTAGE, 200000, |
| 138 | &pll4_cfg_tbl[1]}, |
| 139 | }; |
| 140 | |
| 141 | static struct clkctl_acpu_speed acpu_freq_tbl_1209[] = { |
| 142 | { 1, 1209600, ACPU_PLL_4, 6, 0, 151200, 3, MAX_12GHZ_VOLTAGE, 200000, |
| 143 | &pll4_cfg_tbl[2]}, |
| 144 | }; |
| 145 | |
| 146 | static struct clkctl_acpu_speed acpu_freq_tbl_1401[] = { |
| 147 | { 1, 1401600, ACPU_PLL_4, 6, 0, 175000, 3, MAX_14GHZ_VOLTAGE, 200000, |
| 148 | &pll4_cfg_tbl[3]}, |
| 149 | }; |
| 150 | |
| 151 | /* Entry corresponding to CDMA build*/ |
| 152 | static struct clkctl_acpu_speed acpu_freq_tbl_196608[] = { |
| 153 | { 1, 196608, ACPU_PLL_1, 1, 0, 65536, 2, MAX_NOMINAL_VOLTAGE, 98304 }, |
| 154 | }; |
| 155 | |
| 156 | static struct clkctl_acpu_speed acpu_freq_tbl_null[] = { |
| 157 | { 0 }, |
| 158 | }; |
| 159 | |
| 160 | static struct clkctl_acpu_speed acpu_freq_tbl[ARRAY_SIZE(acpu_freq_tbl_cmn) |
| 161 | + ARRAY_SIZE(acpu_freq_tbl_1209) |
| 162 | + ARRAY_SIZE(acpu_freq_tbl_1401) |
| 163 | + ARRAY_SIZE(acpu_freq_tbl_null)]; |
| 164 | |
| 165 | /* Switch to this when reprogramming PLL4 */ |
| 166 | static struct clkctl_acpu_speed *backup_s; |
| 167 | |
| 168 | #ifdef CONFIG_CPU_FREQ_MSM |
| 169 | static struct cpufreq_frequency_table freq_table[NR_CPUS][20]; |
| 170 | |
| 171 | static void __devinit cpufreq_table_init(void) |
| 172 | { |
| 173 | int cpu; |
| 174 | for_each_possible_cpu(cpu) { |
| 175 | unsigned int i, freq_cnt = 0; |
| 176 | |
| 177 | /* Construct the freq_table table from acpu_freq_tbl since |
| 178 | * the freq_table values need to match frequencies specified |
| 179 | * in acpu_freq_tbl and acpu_freq_tbl needs to be fixed up |
| 180 | * during init. |
| 181 | */ |
| 182 | for (i = 0; acpu_freq_tbl[i].a11clk_khz != 0 |
| 183 | && freq_cnt < ARRAY_SIZE(*freq_table)-1; i++) { |
| 184 | if (acpu_freq_tbl[i].use_for_scaling) { |
| 185 | freq_table[cpu][freq_cnt].index = freq_cnt; |
| 186 | freq_table[cpu][freq_cnt].frequency |
| 187 | = acpu_freq_tbl[i].a11clk_khz; |
| 188 | freq_cnt++; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | /* freq_table not big enough to store all usable freqs. */ |
| 193 | BUG_ON(acpu_freq_tbl[i].a11clk_khz != 0); |
| 194 | |
| 195 | freq_table[cpu][freq_cnt].index = freq_cnt; |
| 196 | freq_table[cpu][freq_cnt].frequency = CPUFREQ_TABLE_END; |
| 197 | /* Register table with CPUFreq. */ |
| 198 | cpufreq_frequency_table_get_attr(freq_table[cpu], cpu); |
| 199 | pr_info("CPU%d: %d scaling frequencies supported.\n", |
| 200 | cpu, freq_cnt); |
| 201 | } |
| 202 | } |
| 203 | #else |
| 204 | static void __devinit cpufreq_table_init(void) { } |
| 205 | #endif |
| 206 | |
| 207 | static void update_jiffies(int cpu, unsigned long loops) |
| 208 | { |
| 209 | #ifdef CONFIG_SMP |
| 210 | for_each_possible_cpu(cpu) { |
| 211 | per_cpu(cpu_data, cpu).loops_per_jiffy = |
| 212 | loops; |
| 213 | } |
| 214 | #endif |
| 215 | /* Adjust the global one */ |
| 216 | loops_per_jiffy = loops; |
| 217 | } |
| 218 | |
| 219 | /* Assumes PLL4 is off and the acpuclock isn't sourced from PLL4 */ |
| 220 | static void acpuclk_config_pll4(struct pll_config *pll) |
| 221 | { |
| 222 | /* |
| 223 | * Make sure write to disable PLL_4 has completed |
| 224 | * before reconfiguring that PLL. |
| 225 | */ |
| 226 | mb(); |
| 227 | writel_relaxed(pll->l, PLL4_L_VAL_ADDR); |
| 228 | writel_relaxed(pll->m, PLL4_M_VAL_ADDR); |
| 229 | writel_relaxed(pll->n, PLL4_N_VAL_ADDR); |
| 230 | /* Make sure PLL is programmed before returning. */ |
| 231 | mb(); |
| 232 | } |
| 233 | |
| 234 | /* Set proper dividers for the given clock speed. */ |
| 235 | static void acpuclk_set_div(const struct clkctl_acpu_speed *hunt_s) |
| 236 | { |
| 237 | uint32_t reg_clkctl, reg_clksel, clk_div, src_sel; |
| 238 | |
| 239 | reg_clksel = readl_relaxed(A11S_CLK_SEL_ADDR); |
| 240 | |
| 241 | /* AHB_CLK_DIV */ |
| 242 | clk_div = (reg_clksel >> 1) & 0x03; |
| 243 | /* CLK_SEL_SRC1NO */ |
| 244 | src_sel = reg_clksel & 1; |
| 245 | |
| 246 | /* |
| 247 | * If the new clock divider is higher than the previous, then |
| 248 | * program the divider before switching the clock |
| 249 | */ |
| 250 | if (hunt_s->ahbclk_div > clk_div) { |
| 251 | reg_clksel &= ~(0x3 << 1); |
| 252 | reg_clksel |= (hunt_s->ahbclk_div << 1); |
| 253 | writel_relaxed(reg_clksel, A11S_CLK_SEL_ADDR); |
| 254 | } |
| 255 | |
| 256 | /* Program clock source and divider */ |
| 257 | reg_clkctl = readl_relaxed(A11S_CLK_CNTL_ADDR); |
| 258 | reg_clkctl &= ~(0xFF << (8 * src_sel)); |
| 259 | reg_clkctl |= hunt_s->a11clk_src_sel << (4 + 8 * src_sel); |
| 260 | reg_clkctl |= hunt_s->a11clk_src_div << (0 + 8 * src_sel); |
| 261 | writel_relaxed(reg_clkctl, A11S_CLK_CNTL_ADDR); |
| 262 | |
| 263 | /* Program clock source selection */ |
| 264 | reg_clksel ^= 1; |
| 265 | writel_relaxed(reg_clksel, A11S_CLK_SEL_ADDR); |
| 266 | |
| 267 | /* Wait for the clock switch to complete */ |
| 268 | mb(); |
| 269 | udelay(50); |
| 270 | |
| 271 | /* |
| 272 | * If the new clock divider is lower than the previous, then |
| 273 | * program the divider after switching the clock |
| 274 | */ |
| 275 | if (hunt_s->ahbclk_div < clk_div) { |
| 276 | reg_clksel &= ~(0x3 << 1); |
| 277 | reg_clksel |= (hunt_s->ahbclk_div << 1); |
| 278 | writel_relaxed(reg_clksel, A11S_CLK_SEL_ADDR); |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | static int acpuclk_set_vdd_level(int vdd) |
| 283 | { |
| 284 | int rc; |
| 285 | |
| 286 | rc = regulator_set_voltage(drv_state.vreg_cpu, vdd, vdd); |
| 287 | if (rc) { |
| 288 | pr_err("failed to set vdd=%d uV\n", vdd); |
| 289 | return rc; |
| 290 | } |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | static int acpuclk_8625q_set_rate(int cpu, unsigned long rate, |
| 296 | enum setrate_reason reason) |
| 297 | { |
| 298 | uint32_t reg_clkctl; |
| 299 | struct clkctl_acpu_speed *cur_s, *tgt_s, *strt_s; |
| 300 | int res, rc = 0; |
| 301 | unsigned int plls_enabled = 0, pll; |
| 302 | int delta; |
| 303 | |
| 304 | |
| 305 | if (reason == SETRATE_CPUFREQ) |
| 306 | mutex_lock(&drv_state.lock); |
| 307 | |
| 308 | strt_s = cur_s = drv_state.current_speed; |
| 309 | |
| 310 | WARN_ONCE(cur_s == NULL, "%s: not initialized\n", __func__); |
| 311 | if (cur_s == NULL) { |
| 312 | rc = -ENOENT; |
| 313 | goto out; |
| 314 | } |
| 315 | |
| 316 | cur_s->vdd = regulator_get_voltage(drv_state.vreg_cpu); |
| 317 | if (cur_s->vdd <= 0) |
| 318 | goto out; |
| 319 | |
| 320 | pr_debug("current freq=%dKhz vdd=%duV\n", |
| 321 | cur_s->a11clk_khz, cur_s->vdd); |
| 322 | |
| 323 | if (rate == cur_s->a11clk_khz) |
| 324 | goto out; |
| 325 | |
| 326 | for (tgt_s = acpu_freq_tbl; tgt_s->a11clk_khz != 0; tgt_s++) { |
| 327 | if (tgt_s->a11clk_khz == rate) |
| 328 | break; |
| 329 | } |
| 330 | |
| 331 | if (tgt_s->a11clk_khz == 0) { |
| 332 | rc = -EINVAL; |
| 333 | goto out; |
| 334 | } |
| 335 | |
| 336 | /* Choose the highest speed at or below 'rate' with same PLL. */ |
| 337 | if (reason != SETRATE_CPUFREQ |
| 338 | && tgt_s->a11clk_khz < cur_s->a11clk_khz) { |
| 339 | while (tgt_s->pll != ACPU_PLL_TCXO && |
| 340 | tgt_s->pll != cur_s->pll) { |
| 341 | pr_debug("Intermediate frequency changes: %u\n", |
| 342 | tgt_s->a11clk_khz); |
| 343 | tgt_s--; |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | if (strt_s->pll != ACPU_PLL_TCXO) |
| 348 | plls_enabled |= 1 << strt_s->pll; |
| 349 | |
| 350 | /* Need to do this when coming out of power collapse since some modem |
| 351 | * firmwares reset the VDD when the application processor enters power |
| 352 | * collapse. |
| 353 | */ |
| 354 | if (reason == SETRATE_CPUFREQ || reason == SETRATE_PC) { |
| 355 | /* Increase VDD if needed. */ |
| 356 | if (tgt_s->vdd > cur_s->vdd) { |
| 357 | rc = acpuclk_set_vdd_level(tgt_s->vdd); |
| 358 | if (rc < 0) { |
| 359 | pr_err("Unable to switch ACPU vdd (%d)\n", rc); |
| 360 | goto out; |
| 361 | } |
| 362 | pr_debug("Increased Vdd to %duV\n", tgt_s->vdd); |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | /* Set wait states for CPU inbetween frequency changes */ |
| 367 | reg_clkctl = readl_relaxed(A11S_CLK_CNTL_ADDR); |
| 368 | reg_clkctl |= (100 << 16); /* set WT_ST_CNT */ |
| 369 | writel_relaxed(reg_clkctl, A11S_CLK_CNTL_ADDR); |
| 370 | |
| 371 | pr_debug("Switching from ACPU rate %u KHz -> %u KHz\n", |
| 372 | strt_s->a11clk_khz, tgt_s->a11clk_khz); |
| 373 | |
| 374 | delta = abs((int)(strt_s->a11clk_khz - tgt_s->a11clk_khz)); |
| 375 | |
| 376 | if (tgt_s->pll == ACPU_PLL_4) { |
| 377 | if (strt_s->pll == ACPU_PLL_4 || |
| 378 | delta > drv_state.max_speed_delta_khz) { |
| 379 | /* |
| 380 | * Enable the backup PLL if required |
| 381 | * and switch to it. |
| 382 | */ |
| 383 | clk_enable(pll_clk[backup_s->pll].clk); |
| 384 | acpuclk_set_div(backup_s); |
| 385 | update_jiffies(cpu, backup_s->lpj); |
| 386 | } |
| 387 | /* Make sure PLL4 is off before reprogramming */ |
| 388 | if ((plls_enabled & (1 << tgt_s->pll))) { |
| 389 | clk_disable(pll_clk[tgt_s->pll].clk); |
| 390 | plls_enabled &= ~(1 << tgt_s->pll); |
| 391 | } |
| 392 | acpuclk_config_pll4(tgt_s->pll_rate); |
| 393 | pll_clk[tgt_s->pll].clk->rate = tgt_s->a11clk_khz*1000; |
| 394 | |
| 395 | } else if (strt_s->pll == ACPU_PLL_4) { |
| 396 | if (delta > drv_state.max_speed_delta_khz) { |
| 397 | /* |
| 398 | * Enable the bcackup PLL if required |
| 399 | * and switch to it. |
| 400 | */ |
| 401 | clk_enable(pll_clk[backup_s->pll].clk); |
| 402 | acpuclk_set_div(backup_s); |
| 403 | update_jiffies(cpu, backup_s->lpj); |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | if ((tgt_s->pll != ACPU_PLL_TCXO) && |
| 408 | !(plls_enabled & (1 << tgt_s->pll))) { |
| 409 | rc = clk_enable(pll_clk[tgt_s->pll].clk); |
| 410 | if (rc < 0) { |
| 411 | pr_err("PLL%d enable failed (%d)\n", |
| 412 | tgt_s->pll, rc); |
| 413 | goto out; |
| 414 | } |
| 415 | plls_enabled |= 1 << tgt_s->pll; |
| 416 | } |
| 417 | acpuclk_set_div(tgt_s); |
| 418 | drv_state.current_speed = tgt_s; |
| 419 | pr_debug("The new clock speed is %u\n", tgt_s->a11clk_khz); |
| 420 | /* Re-adjust lpj for the new clock speed. */ |
| 421 | update_jiffies(cpu, tgt_s->lpj); |
| 422 | |
| 423 | /* Disable the backup PLL */ |
| 424 | if ((delta > drv_state.max_speed_delta_khz) |
| 425 | || (strt_s->pll == ACPU_PLL_4 && |
| 426 | tgt_s->pll == ACPU_PLL_4)) |
| 427 | clk_disable(pll_clk[backup_s->pll].clk); |
| 428 | |
| 429 | /* Nothing else to do for SWFI. */ |
| 430 | if (reason == SETRATE_SWFI) |
| 431 | goto out; |
| 432 | |
| 433 | /* Change the AXI bus frequency if we can. */ |
| 434 | if (reason != SETRATE_PC && |
| 435 | strt_s->axiclk_khz != tgt_s->axiclk_khz) { |
| 436 | res = clk_set_rate(drv_state.ebi1_clk, |
| 437 | tgt_s->axiclk_khz * 1000); |
| 438 | pr_debug("AXI bus set freq %d\n", |
| 439 | tgt_s->axiclk_khz * 1000); |
| 440 | if (res < 0) |
| 441 | pr_warning("Setting AXI min rate failed (%d)\n", res); |
| 442 | } |
| 443 | |
| 444 | /* Disable PLLs we are not using anymore. */ |
| 445 | if (tgt_s->pll != ACPU_PLL_TCXO) |
| 446 | plls_enabled &= ~(1 << tgt_s->pll); |
| 447 | for (pll = ACPU_PLL_0; pll < ACPU_PLL_END; pll++) |
| 448 | if (plls_enabled & (1 << pll)) |
| 449 | clk_disable(pll_clk[pll].clk); |
| 450 | |
| 451 | /* Nothing else to do for power collapse. */ |
| 452 | if (reason == SETRATE_PC) |
| 453 | goto out; |
| 454 | |
| 455 | /* Drop VDD level if we can. */ |
| 456 | if (tgt_s->vdd < strt_s->vdd) { |
| 457 | res = acpuclk_set_vdd_level(tgt_s->vdd); |
| 458 | if (res < 0) |
| 459 | pr_warning("Unable to drop ACPU vdd (%d)\n", res); |
| 460 | pr_debug("Decreased Vdd to %duV\n", tgt_s->vdd); |
| 461 | } |
| 462 | |
| 463 | pr_debug("ACPU speed change complete\n"); |
| 464 | out: |
| 465 | if (reason == SETRATE_CPUFREQ) |
| 466 | mutex_unlock(&drv_state.lock); |
| 467 | |
| 468 | return rc; |
| 469 | } |
| 470 | |
| 471 | static int __devinit acpuclk_hw_init(void) |
| 472 | { |
| 473 | struct clkctl_acpu_speed *speed; |
| 474 | uint32_t div, sel, reg_clksel; |
| 475 | int res; |
| 476 | |
| 477 | /* |
| 478 | * Prepare all the PLLs because we enable/disable them |
| 479 | * from atomic context and can't always ensure they're |
| 480 | * all prepared in non-atomic context. Same goes for |
| 481 | * ebi1_acpu_clk. |
| 482 | */ |
| 483 | BUG_ON(clk_prepare(pll_clk[ACPU_PLL_0].clk)); |
| 484 | BUG_ON(clk_prepare(pll_clk[ACPU_PLL_1].clk)); |
| 485 | BUG_ON(clk_prepare(pll_clk[ACPU_PLL_2].clk)); |
| 486 | BUG_ON(clk_prepare(pll_clk[ACPU_PLL_4].clk)); |
| 487 | BUG_ON(clk_prepare(drv_state.ebi1_clk)); |
| 488 | |
| 489 | /* |
| 490 | * Determine the rate of ACPU clock |
| 491 | */ |
| 492 | |
| 493 | if (!(readl_relaxed(A11S_CLK_SEL_ADDR) & 0x01)) { /* CLK_SEL_SRC1N0 */ |
| 494 | /* CLK_SRC0_SEL */ |
| 495 | sel = (readl_relaxed(A11S_CLK_CNTL_ADDR) >> 12) & 0x7; |
| 496 | /* CLK_SRC0_DIV */ |
| 497 | div = (readl_relaxed(A11S_CLK_CNTL_ADDR) >> 8) & 0x0f; |
| 498 | } else { |
| 499 | /* CLK_SRC1_SEL */ |
| 500 | sel = (readl_relaxed(A11S_CLK_CNTL_ADDR) >> 4) & 0x07; |
| 501 | /* CLK_SRC1_DIV */ |
| 502 | div = readl_relaxed(A11S_CLK_CNTL_ADDR) & 0x0f; |
| 503 | } |
| 504 | |
| 505 | for (speed = acpu_freq_tbl; speed->a11clk_khz != 0; speed++) { |
| 506 | if (speed->a11clk_src_sel == sel |
| 507 | && (speed->a11clk_src_div == div)) |
| 508 | break; |
| 509 | } |
| 510 | if (speed->a11clk_khz == 0) { |
| 511 | pr_err("Error - ACPU clock reports invalid speed\n"); |
| 512 | return -EINVAL; |
| 513 | } |
| 514 | |
| 515 | drv_state.current_speed = speed; |
| 516 | if (speed->pll != ACPU_PLL_TCXO) { |
| 517 | if (clk_enable(pll_clk[speed->pll].clk)) { |
| 518 | pr_warning("Failed to vote for boot PLL\n"); |
| 519 | return -ENODEV; |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | reg_clksel = readl_relaxed(A11S_CLK_SEL_ADDR); |
| 524 | reg_clksel &= ~(0x3 << 14); |
| 525 | reg_clksel |= (0x1 << 14); |
| 526 | writel_relaxed(reg_clksel, A11S_CLK_SEL_ADDR); |
| 527 | |
| 528 | res = clk_set_rate(drv_state.ebi1_clk, speed->axiclk_khz * 1000); |
| 529 | if (res < 0) { |
| 530 | pr_warning("Setting AXI min rate failed (%d)\n", res); |
| 531 | return -ENODEV; |
| 532 | } |
| 533 | res = clk_enable(drv_state.ebi1_clk); |
| 534 | if (res < 0) { |
| 535 | pr_warning("Enabling AXI clock failed (%d)\n", res); |
| 536 | return -ENODEV; |
| 537 | } |
| 538 | |
| 539 | drv_state.vreg_cpu = regulator_get(NULL, "vddx_cx"); |
| 540 | if (IS_ERR(drv_state.vreg_cpu)) { |
| 541 | res = PTR_ERR(drv_state.vreg_cpu); |
| 542 | pr_err("could not get regulator: %d\n", res); |
| 543 | } |
| 544 | |
| 545 | pr_info("ACPU running at %d KHz\n", speed->a11clk_khz); |
| 546 | return 0; |
| 547 | } |
| 548 | |
| 549 | static unsigned long acpuclk_8625q_get_rate(int cpu) |
| 550 | { |
| 551 | WARN_ONCE(drv_state.current_speed == NULL, |
| 552 | "%s: not initialized\n", __func__); |
| 553 | if (drv_state.current_speed) |
| 554 | return drv_state.current_speed->a11clk_khz; |
| 555 | else |
| 556 | return 0; |
| 557 | } |
| 558 | |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 559 | static int reinitialize_freq_table(bool target_select) |
| 560 | { |
| 561 | /* |
| 562 | * target_flag is set only if it is a Quad core chip, |
| 563 | * In that case, we modify the initialization |
| 564 | * of the table according to the specific requirement |
| 565 | * for this target. Otherwise the default initialized table is |
| 566 | * used for SKUD_prime. |
| 567 | */ |
| 568 | if (target_select) { |
| 569 | struct clkctl_acpu_speed *tbl; |
| 570 | for (tbl = acpu_freq_tbl; tbl->a11clk_khz; tbl++) { |
| 571 | |
| 572 | if (tbl->a11clk_khz >= 1008000) { |
| 573 | tbl->axiclk_khz = 300000; |
| 574 | if (tbl->a11clk_khz == 1209600) |
| 575 | tbl->vdd = 0; |
| 576 | } else { |
| 577 | if (tbl->a11clk_khz != 600000 |
| 578 | && tbl->a11clk_khz != 19200) |
| 579 | tbl->vdd = 1050000; |
Utsab Bose | a619e09 | 2012-12-11 22:17:12 +0530 | [diff] [blame] | 580 | if (tbl->a11clk_khz == 700800) |
| 581 | tbl->axiclk_khz = 245000; |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 582 | } |
| 583 | } |
| 584 | |
| 585 | } |
| 586 | return 0; |
| 587 | } |
| 588 | |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 589 | #define MHZ 1000000 |
| 590 | |
Utsab Bose | 4051d25 | 2012-11-30 13:32:50 +0530 | [diff] [blame] | 591 | static void __devinit select_freq_plan(unsigned int pvs_voltage, |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 592 | bool target_sel) |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 593 | { |
| 594 | unsigned long pll_mhz[ACPU_PLL_END]; |
| 595 | int i; |
| 596 | int size; |
| 597 | int delta[3] = {DELTA_LEVEL_1_UV, DELTA_LEVEL_2_UV, DELTA_LEVEL_3_UV}; |
| 598 | struct clkctl_acpu_speed *tbl; |
| 599 | |
| 600 | /* Get PLL clocks */ |
| 601 | for (i = 0; i < ACPU_PLL_END; i++) { |
| 602 | if (pll_clk[i].name) { |
| 603 | pll_clk[i].clk = clk_get_sys("acpu", pll_clk[i].name); |
| 604 | if (IS_ERR(pll_clk[i].clk)) { |
| 605 | pll_mhz[i] = 0; |
| 606 | continue; |
| 607 | } |
| 608 | /* Get PLL's Rate */ |
| 609 | pll_mhz[i] = clk_get_rate(pll_clk[i].clk)/MHZ; |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | memcpy(acpu_freq_tbl, acpu_freq_tbl_cmn, sizeof(acpu_freq_tbl_cmn)); |
| 614 | size = ARRAY_SIZE(acpu_freq_tbl_cmn); |
| 615 | |
| 616 | i = 0; /* needed if we have a 1Ghz part */ |
| 617 | /* select if it is a 1.2Ghz part */ |
| 618 | if (pll_mhz[ACPU_PLL_4] == 1209) { |
| 619 | memcpy(acpu_freq_tbl + size, acpu_freq_tbl_1209, |
| 620 | sizeof(acpu_freq_tbl_1209)); |
| 621 | size += sizeof(acpu_freq_tbl_1209); |
| 622 | i = 1; /* set the delta index */ |
| 623 | } |
| 624 | /* select if it is a 1.4Ghz part */ |
| 625 | if (pll_mhz[ACPU_PLL_4] == 1401) { |
| 626 | memcpy(acpu_freq_tbl + size, acpu_freq_tbl_1209, |
| 627 | sizeof(acpu_freq_tbl_1209)); |
| 628 | size += ARRAY_SIZE(acpu_freq_tbl_1209); |
| 629 | memcpy(acpu_freq_tbl + size, acpu_freq_tbl_1401, |
| 630 | sizeof(acpu_freq_tbl_1401)); |
| 631 | size += ARRAY_SIZE(acpu_freq_tbl_1401); |
| 632 | i = 2; /* set the delta index */ |
| 633 | } |
| 634 | |
| 635 | memcpy(acpu_freq_tbl + size, acpu_freq_tbl_null, |
| 636 | sizeof(acpu_freq_tbl_null)); |
| 637 | size += sizeof(acpu_freq_tbl_null); |
| 638 | |
| 639 | /* Alter the freq value in freq_tbl if it is a CDMA build*/ |
| 640 | if (pll_mhz[ACPU_PLL_1] == 196) { |
| 641 | |
| 642 | for (tbl = acpu_freq_tbl; tbl->a11clk_khz; tbl++) { |
| 643 | if (tbl->a11clk_khz == 245760 && |
| 644 | tbl->pll == ACPU_PLL_1) { |
| 645 | pr_debug("Upgrading pll1 freq to 196 Mhz\n"); |
| 646 | memcpy(tbl, acpu_freq_tbl_196608, |
| 647 | sizeof(acpu_freq_tbl_196608)); |
| 648 | break; |
| 649 | } |
| 650 | } |
| 651 | } |
| 652 | |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 653 | reinitialize_freq_table(target_sel); |
| 654 | |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 655 | /* |
| 656 | *PVS Voltage calculation formula |
| 657 | *1.4 Ghz device |
| 658 | *1.4 Ghz: Max(PVS_voltage,1.35V) |
| 659 | *1.2 Ghz: Max(PVS_volatge - 75mV,1.275V) |
| 660 | *1.0 Ghz: Max(PVS_voltage - 150mV, 1.175V) |
| 661 | *1.2 Ghz device |
| 662 | *1.2 Ghz: Max(PVS_voltage,1.275V) |
| 663 | *1.0 Ghz: Max(PVS_volatge - 75mV,1.175V) |
| 664 | *Nominal Mode: 1.15V |
| 665 | */ |
| 666 | for (tbl = acpu_freq_tbl; tbl->a11clk_khz; tbl++) { |
| 667 | if (tbl->a11clk_khz >= 1008000) { |
| 668 | /* |
| 669 | * Change voltage as per PVS formula, |
| 670 | * i is initialized above with 2 or 1 |
| 671 | * depending upon whether it is a 1.4Ghz |
| 672 | * or 1.2Ghz, so, we get the proper value |
| 673 | * from delta[i] which is to be deducted |
| 674 | * from PVS voltage. |
| 675 | */ |
| 676 | |
| 677 | tbl->vdd = max((int)(pvs_voltage - delta[i]), tbl->vdd); |
| 678 | i--; |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 679 | } |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | |
Utsab Bose | 4051d25 | 2012-11-30 13:32:50 +0530 | [diff] [blame] | 683 | /* find the backup PLL entry from the table */ |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 684 | for (tbl = acpu_freq_tbl; tbl->a11clk_khz; tbl++) { |
| 685 | if (tbl->pll == ACPU_PLL_2 && |
| 686 | tbl->a11clk_src_div == 1) { |
| 687 | backup_s = tbl; |
| 688 | break; |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | BUG_ON(!backup_s); |
| 693 | |
| 694 | } |
| 695 | |
| 696 | /* |
| 697 | * Hardware requires the CPU to be dropped to less than MAX_WAIT_FOR_IRQ_KHZ |
| 698 | * before entering a wait for irq low-power mode. Find a suitable rate. |
| 699 | */ |
| 700 | static unsigned long __devinit find_wait_for_irq_khz(void) |
| 701 | { |
| 702 | unsigned long found_khz = 0; |
| 703 | int i; |
| 704 | |
| 705 | for (i = 0; acpu_freq_tbl[i].a11clk_khz && |
| 706 | acpu_freq_tbl[i].a11clk_khz <= MAX_WAIT_FOR_IRQ_KHZ; i++) |
| 707 | found_khz = acpu_freq_tbl[i].a11clk_khz; |
| 708 | |
| 709 | return found_khz; |
| 710 | } |
| 711 | |
| 712 | static void __devinit lpj_init(void) |
| 713 | { |
| 714 | int i = 0, cpu; |
| 715 | const struct clkctl_acpu_speed *base_clk = drv_state.current_speed; |
| 716 | unsigned long loops; |
| 717 | |
| 718 | for_each_possible_cpu(cpu) { |
| 719 | #ifdef CONFIG_SMP |
| 720 | loops = per_cpu(cpu_data, cpu).loops_per_jiffy; |
| 721 | #else |
| 722 | loops = loops_per_jiffy; |
| 723 | #endif |
| 724 | for (i = 0; acpu_freq_tbl[i].a11clk_khz; i++) { |
| 725 | acpu_freq_tbl[i].lpj = cpufreq_scale( |
| 726 | loops, |
| 727 | base_clk->a11clk_khz, |
| 728 | acpu_freq_tbl[i].a11clk_khz); |
| 729 | } |
| 730 | |
| 731 | } |
| 732 | |
| 733 | } |
| 734 | |
| 735 | static struct acpuclk_data acpuclk_8625q_data = { |
| 736 | .set_rate = acpuclk_8625q_set_rate, |
| 737 | .get_rate = acpuclk_8625q_get_rate, |
| 738 | .power_collapse_khz = POWER_COLLAPSE_KHZ, |
| 739 | .switch_time_us = 50, |
| 740 | }; |
| 741 | |
| 742 | static void __devinit print_acpu_freq_tbl(void) |
| 743 | { |
| 744 | struct clkctl_acpu_speed *t; |
| 745 | int i; |
| 746 | |
| 747 | pr_info("Id CPU-KHz PLL DIV AHB-KHz ADIV AXI-KHz Vdd\n"); |
| 748 | |
| 749 | t = &acpu_freq_tbl[0]; |
| 750 | for (i = 0; t->a11clk_khz != 0; i++) { |
| 751 | pr_info("%2d %7d %3d %3d %7d %4d %7d %3d\n", |
| 752 | i, t->a11clk_khz, t->pll, t->a11clk_src_div + 1, |
| 753 | t->ahbclk_khz, t->ahbclk_div + 1, t->axiclk_khz, |
| 754 | t->vdd); |
| 755 | t++; |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | static int __devinit acpuclk_8625q_probe(struct platform_device *pdev) |
| 760 | { |
| 761 | const struct acpuclk_pdata_8625q *pdata = pdev->dev.platform_data; |
| 762 | unsigned int pvs_voltage = pdata->pvs_voltage_uv; |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 763 | bool target_sel = pdata->flag; |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 764 | |
| 765 | drv_state.max_speed_delta_khz = pdata->acpu_clk_data-> |
| 766 | max_speed_delta_khz; |
| 767 | |
| 768 | drv_state.ebi1_clk = clk_get(NULL, "ebi1_acpu_clk"); |
| 769 | BUG_ON(IS_ERR(drv_state.ebi1_clk)); |
| 770 | |
| 771 | mutex_init(&drv_state.lock); |
Utsab Bose | 2e7a90a | 2012-12-10 20:22:27 +0530 | [diff] [blame] | 772 | select_freq_plan(pvs_voltage, target_sel); |
Trilok Soni | d1fe37f | 2012-11-08 15:00:36 +0530 | [diff] [blame] | 773 | acpuclk_8625q_data.wait_for_irq_khz = find_wait_for_irq_khz(); |
| 774 | |
| 775 | if (acpuclk_hw_init() < 0) |
| 776 | pr_err("acpuclk_hw_init not successful.\n"); |
| 777 | |
| 778 | print_acpu_freq_tbl(); |
| 779 | lpj_init(); |
| 780 | acpuclk_register(&acpuclk_8625q_data); |
| 781 | |
| 782 | cpufreq_table_init(); |
| 783 | |
| 784 | return 0; |
| 785 | } |
| 786 | |
| 787 | static struct platform_driver acpuclk_8625q_driver = { |
| 788 | .probe = acpuclk_8625q_probe, |
| 789 | .driver = { |
| 790 | .name = "acpuclock-8625q", |
| 791 | .owner = THIS_MODULE, |
| 792 | }, |
| 793 | }; |
| 794 | |
| 795 | static int __init acpuclk_8625q_init(void) |
| 796 | { |
| 797 | |
| 798 | return platform_driver_register(&acpuclk_8625q_driver); |
| 799 | } |
| 800 | postcore_initcall(acpuclk_8625q_init); |