Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. |
| 3 | * http://www.samsung.com |
| 4 | * |
| 5 | * EXYNOS - CPU frequency scaling support for EXYNOS series |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/err.h> |
| 14 | #include <linux/clk.h> |
| 15 | #include <linux/io.h> |
| 16 | #include <linux/slab.h> |
| 17 | #include <linux/regulator/consumer.h> |
| 18 | #include <linux/cpufreq.h> |
Lukasz Majewski | d568b6f | 2013-11-28 13:42:42 +0100 | [diff] [blame] | 19 | #include <linux/platform_device.h> |
Jonghwan Choi | be1f7c8 | 2014-05-17 08:19:30 +0900 | [diff] [blame] | 20 | #include <linux/of.h> |
Lukasz Majewski | e725d26 | 2015-01-23 13:14:20 +0100 | [diff] [blame] | 21 | #include <linux/cpu_cooling.h> |
| 22 | #include <linux/cpu.h> |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 23 | |
Kukjin Kim | c4aaa29 | 2012-12-28 16:29:10 -0800 | [diff] [blame] | 24 | #include "exynos-cpufreq.h" |
| 25 | |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 26 | static struct exynos_dvfs_info *exynos_info; |
Lukasz Majewski | e725d26 | 2015-01-23 13:14:20 +0100 | [diff] [blame] | 27 | static struct thermal_cooling_device *cdev; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 28 | static struct regulator *arm_regulator; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 29 | static unsigned int locking_frequency; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 30 | |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 31 | static int exynos_cpufreq_get_index(unsigned int freq) |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 32 | { |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 33 | struct cpufreq_frequency_table *freq_table = exynos_info->freq_table; |
Stratos Karafotis | 041526f | 2014-04-25 23:15:38 +0300 | [diff] [blame] | 34 | struct cpufreq_frequency_table *pos; |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 35 | |
Stratos Karafotis | 041526f | 2014-04-25 23:15:38 +0300 | [diff] [blame] | 36 | cpufreq_for_each_entry(pos, freq_table) |
| 37 | if (pos->frequency == freq) |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 38 | break; |
| 39 | |
Stratos Karafotis | 041526f | 2014-04-25 23:15:38 +0300 | [diff] [blame] | 40 | if (pos->frequency == CPUFREQ_TABLE_END) |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 41 | return -EINVAL; |
| 42 | |
Stratos Karafotis | 041526f | 2014-04-25 23:15:38 +0300 | [diff] [blame] | 43 | return pos - freq_table; |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static int exynos_cpufreq_scale(unsigned int target_freq) |
| 47 | { |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 48 | struct cpufreq_frequency_table *freq_table = exynos_info->freq_table; |
| 49 | unsigned int *volt_table = exynos_info->volt_table; |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 50 | struct cpufreq_policy *policy = cpufreq_cpu_get(0); |
| 51 | unsigned int arm_volt, safe_arm_volt = 0; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 52 | unsigned int mpll_freq_khz = exynos_info->mpll_freq_khz; |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 53 | struct device *dev = exynos_info->dev; |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 54 | unsigned int old_freq; |
Sachin Kamat | d271d07 | 2013-01-25 10:18:09 -0800 | [diff] [blame] | 55 | int index, old_index; |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 56 | int ret = 0; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 57 | |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 58 | old_freq = policy->cur; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 59 | |
Jonghwa Lee | 53df1ad | 2012-07-20 02:54:02 +0000 | [diff] [blame] | 60 | /* |
| 61 | * The policy max have been changed so that we cannot get proper |
| 62 | * old_index with cpufreq_frequency_table_target(). Thus, ignore |
LABBE Corentin | 0585123 | 2013-09-26 16:50:21 +0200 | [diff] [blame] | 63 | * policy and get the index from the raw frequency table. |
Jonghwa Lee | 53df1ad | 2012-07-20 02:54:02 +0000 | [diff] [blame] | 64 | */ |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 65 | old_index = exynos_cpufreq_get_index(old_freq); |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 66 | if (old_index < 0) { |
| 67 | ret = old_index; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 68 | goto out; |
| 69 | } |
| 70 | |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 71 | index = exynos_cpufreq_get_index(target_freq); |
| 72 | if (index < 0) { |
| 73 | ret = index; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 74 | goto out; |
| 75 | } |
| 76 | |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 77 | /* |
| 78 | * ARM clock source will be changed APLL to MPLL temporary |
| 79 | * To support this level, need to control regulator for |
| 80 | * required voltage level |
| 81 | */ |
| 82 | if (exynos_info->need_apll_change != NULL) { |
| 83 | if (exynos_info->need_apll_change(old_index, index) && |
| 84 | (freq_table[index].frequency < mpll_freq_khz) && |
| 85 | (freq_table[old_index].frequency < mpll_freq_khz)) |
| 86 | safe_arm_volt = volt_table[exynos_info->pll_safe_idx]; |
| 87 | } |
| 88 | arm_volt = volt_table[index]; |
| 89 | |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 90 | /* When the new frequency is higher than current frequency */ |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 91 | if ((target_freq > old_freq) && !safe_arm_volt) { |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 92 | /* Firstly, voltage up to increase frequency */ |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 93 | ret = regulator_set_voltage(arm_regulator, arm_volt, arm_volt); |
| 94 | if (ret) { |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 95 | dev_err(dev, "failed to set cpu voltage to %d\n", |
| 96 | arm_volt); |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 97 | return ret; |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 98 | } |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 99 | } |
| 100 | |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 101 | if (safe_arm_volt) { |
| 102 | ret = regulator_set_voltage(arm_regulator, safe_arm_volt, |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 103 | safe_arm_volt); |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 104 | if (ret) { |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 105 | dev_err(dev, "failed to set cpu voltage to %d\n", |
| 106 | safe_arm_volt); |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 107 | return ret; |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 108 | } |
| 109 | } |
Jonghwan Choi | 857d90f | 2012-12-23 15:57:39 -0800 | [diff] [blame] | 110 | |
| 111 | exynos_info->set_freq(old_index, index); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 112 | |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 113 | /* When the new frequency is lower than current frequency */ |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 114 | if ((target_freq < old_freq) || |
| 115 | ((target_freq > old_freq) && safe_arm_volt)) { |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 116 | /* down the voltage after frequency change */ |
Manish Badarkhe | 006454a | 2013-10-09 20:43:37 +0530 | [diff] [blame] | 117 | ret = regulator_set_voltage(arm_regulator, arm_volt, |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 118 | arm_volt); |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 119 | if (ret) { |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 120 | dev_err(dev, "failed to set cpu voltage to %d\n", |
| 121 | arm_volt); |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 122 | goto out; |
| 123 | } |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | out: |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 127 | cpufreq_cpu_put(policy); |
| 128 | |
| 129 | return ret; |
| 130 | } |
| 131 | |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 132 | static int exynos_target(struct cpufreq_policy *policy, unsigned int index) |
Jonghwan Choi | 0e0e425 | 2012-12-23 15:57:48 -0800 | [diff] [blame] | 133 | { |
Viresh Kumar | d248bb8 | 2014-03-04 11:00:28 +0800 | [diff] [blame] | 134 | return exynos_cpufreq_scale(exynos_info->freq_table[index].frequency); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 135 | } |
| 136 | |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 137 | static int exynos_cpufreq_cpu_init(struct cpufreq_policy *policy) |
| 138 | { |
Viresh Kumar | 652ed95 | 2014-01-09 20:38:43 +0530 | [diff] [blame] | 139 | policy->clk = exynos_info->cpu_clk; |
Viresh Kumar | d248bb8 | 2014-03-04 11:00:28 +0800 | [diff] [blame] | 140 | policy->suspend_freq = locking_frequency; |
Viresh Kumar | b249aba | 2013-10-03 20:29:13 +0530 | [diff] [blame] | 141 | return cpufreq_generic_init(policy, exynos_info->freq_table, 100000); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | static struct cpufreq_driver exynos_driver = { |
Viresh Kumar | ae6b427 | 2013-12-03 11:20:45 +0530 | [diff] [blame] | 145 | .flags = CPUFREQ_STICKY | CPUFREQ_NEED_INITIAL_FREQ_CHECK, |
Viresh Kumar | eea6181 | 2013-10-03 20:28:06 +0530 | [diff] [blame] | 146 | .verify = cpufreq_generic_frequency_table_verify, |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 147 | .target_index = exynos_target, |
Viresh Kumar | 652ed95 | 2014-01-09 20:38:43 +0530 | [diff] [blame] | 148 | .get = cpufreq_generic_get, |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 149 | .init = exynos_cpufreq_cpu_init, |
| 150 | .name = "exynos_cpufreq", |
Viresh Kumar | eea6181 | 2013-10-03 20:28:06 +0530 | [diff] [blame] | 151 | .attr = cpufreq_generic_attr, |
Lukasz Majewski | c683c2c | 2013-12-20 15:24:52 +0100 | [diff] [blame] | 152 | #ifdef CONFIG_ARM_EXYNOS_CPU_FREQ_BOOST_SW |
| 153 | .boost_supported = true, |
| 154 | #endif |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 155 | #ifdef CONFIG_PM |
Viresh Kumar | d248bb8 | 2014-03-04 11:00:28 +0800 | [diff] [blame] | 156 | .suspend = cpufreq_generic_suspend, |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 157 | #endif |
| 158 | }; |
| 159 | |
Lukasz Majewski | d568b6f | 2013-11-28 13:42:42 +0100 | [diff] [blame] | 160 | static int exynos_cpufreq_probe(struct platform_device *pdev) |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 161 | { |
Lukasz Majewski | 0fc8392 | 2015-02-05 16:45:06 +0100 | [diff] [blame] | 162 | struct device_node *cpu0; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 163 | int ret = -EINVAL; |
| 164 | |
Viresh Kumar | d5b73cd | 2013-08-06 22:53:06 +0530 | [diff] [blame] | 165 | exynos_info = kzalloc(sizeof(*exynos_info), GFP_KERNEL); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 166 | if (!exynos_info) |
| 167 | return -ENOMEM; |
| 168 | |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 169 | exynos_info->dev = &pdev->dev; |
| 170 | |
Jonghwan Choi | be1f7c8 | 2014-05-17 08:19:30 +0900 | [diff] [blame] | 171 | if (of_machine_is_compatible("samsung,exynos4210")) { |
| 172 | exynos_info->type = EXYNOS_SOC_4210; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 173 | ret = exynos4210_cpufreq_init(exynos_info); |
Jonghwan Choi | be1f7c8 | 2014-05-17 08:19:30 +0900 | [diff] [blame] | 174 | } else if (of_machine_is_compatible("samsung,exynos4212")) { |
| 175 | exynos_info->type = EXYNOS_SOC_4212; |
Jaecheol Lee | a35c505 | 2012-03-10 02:59:22 -0800 | [diff] [blame] | 176 | ret = exynos4x12_cpufreq_init(exynos_info); |
Jonghwan Choi | be1f7c8 | 2014-05-17 08:19:30 +0900 | [diff] [blame] | 177 | } else if (of_machine_is_compatible("samsung,exynos4412")) { |
| 178 | exynos_info->type = EXYNOS_SOC_4412; |
| 179 | ret = exynos4x12_cpufreq_init(exynos_info); |
| 180 | } else if (of_machine_is_compatible("samsung,exynos5250")) { |
| 181 | exynos_info->type = EXYNOS_SOC_5250; |
Jaecheol Lee | 562a6cb | 2012-03-10 03:00:02 -0800 | [diff] [blame] | 182 | ret = exynos5250_cpufreq_init(exynos_info); |
Jonghwan Choi | be1f7c8 | 2014-05-17 08:19:30 +0900 | [diff] [blame] | 183 | } else { |
| 184 | pr_err("%s: Unknown SoC type\n", __func__); |
| 185 | return -ENODEV; |
| 186 | } |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 187 | |
| 188 | if (ret) |
| 189 | goto err_vdd_arm; |
| 190 | |
| 191 | if (exynos_info->set_freq == NULL) { |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 192 | dev_err(&pdev->dev, "No set_freq function (ERR)\n"); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 193 | goto err_vdd_arm; |
| 194 | } |
| 195 | |
| 196 | arm_regulator = regulator_get(NULL, "vdd_arm"); |
| 197 | if (IS_ERR(arm_regulator)) { |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 198 | dev_err(&pdev->dev, "failed to get resource vdd_arm\n"); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 199 | goto err_vdd_arm; |
| 200 | } |
| 201 | |
Viresh Kumar | d248bb8 | 2014-03-04 11:00:28 +0800 | [diff] [blame] | 202 | /* Done here as we want to capture boot frequency */ |
Viresh Kumar | 652ed95 | 2014-01-09 20:38:43 +0530 | [diff] [blame] | 203 | locking_frequency = clk_get_rate(exynos_info->cpu_clk) / 1000; |
Jonghwan Choi | 6e45eb1 | 2013-01-18 11:09:01 -0800 | [diff] [blame] | 204 | |
Lukasz Majewski | e725d26 | 2015-01-23 13:14:20 +0100 | [diff] [blame] | 205 | ret = cpufreq_register_driver(&exynos_driver); |
| 206 | if (ret) |
| 207 | goto err_cpufreq_reg; |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 208 | |
Lukasz Majewski | 0fc8392 | 2015-02-05 16:45:06 +0100 | [diff] [blame] | 209 | cpu0 = of_get_cpu_node(0, NULL); |
| 210 | if (!cpu0) { |
| 211 | pr_err("failed to find cpu0 node\n"); |
Lukasz Majewski | e725d26 | 2015-01-23 13:14:20 +0100 | [diff] [blame] | 212 | return 0; |
| 213 | } |
| 214 | |
Lukasz Majewski | 0fc8392 | 2015-02-05 16:45:06 +0100 | [diff] [blame] | 215 | if (of_find_property(cpu0, "#cooling-cells", NULL)) { |
| 216 | cdev = of_cpufreq_cooling_register(cpu0, |
Lukasz Majewski | e725d26 | 2015-01-23 13:14:20 +0100 | [diff] [blame] | 217 | cpu_present_mask); |
| 218 | if (IS_ERR(cdev)) |
| 219 | pr_err("running cpufreq without cooling device: %ld\n", |
| 220 | PTR_ERR(cdev)); |
| 221 | } |
Lukasz Majewski | e725d26 | 2015-01-23 13:14:20 +0100 | [diff] [blame] | 222 | |
| 223 | return 0; |
| 224 | |
| 225 | err_cpufreq_reg: |
Chanwoo Choi | e5eaa44 | 2014-04-18 11:20:33 +0900 | [diff] [blame] | 226 | dev_err(&pdev->dev, "failed to register cpufreq driver\n"); |
Jonghwan Choi | 184cddd | 2012-12-23 15:51:40 -0800 | [diff] [blame] | 227 | regulator_put(arm_regulator); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 228 | err_vdd_arm: |
| 229 | kfree(exynos_info); |
Jaecheol Lee | a125a17 | 2012-01-07 20:18:35 +0900 | [diff] [blame] | 230 | return -EINVAL; |
| 231 | } |
Lukasz Majewski | d568b6f | 2013-11-28 13:42:42 +0100 | [diff] [blame] | 232 | |
| 233 | static struct platform_driver exynos_cpufreq_platdrv = { |
| 234 | .driver = { |
| 235 | .name = "exynos-cpufreq", |
Lukasz Majewski | d568b6f | 2013-11-28 13:42:42 +0100 | [diff] [blame] | 236 | }, |
| 237 | .probe = exynos_cpufreq_probe, |
| 238 | }; |
| 239 | module_platform_driver(exynos_cpufreq_platdrv); |