Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/cpufreq/freq_table.c |
| 3 | * |
| 4 | * Copyright (C) 2002 - 2003 Dominik Brodowski |
Dominik Brodowski | 4f74369 | 2008-05-22 08:52:05 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Viresh Kumar | db70115 | 2012-10-23 01:29:03 +0200 | [diff] [blame] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/cpufreq.h> |
Viresh Kumar | 5ff0a26 | 2013-08-06 22:53:03 +0530 | [diff] [blame] | 15 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | /********************************************************************* |
| 18 | * FREQUENCY TABLE HELPERS * |
| 19 | *********************************************************************/ |
| 20 | |
| 21 | int cpufreq_frequency_table_cpuinfo(struct cpufreq_policy *policy, |
| 22 | struct cpufreq_frequency_table *table) |
| 23 | { |
| 24 | unsigned int min_freq = ~0; |
| 25 | unsigned int max_freq = 0; |
Dave Jones | 355eb31 | 2006-05-30 17:58:41 -0400 | [diff] [blame] | 26 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Dave Jones | 97acec5 | 2009-01-18 01:56:41 -0500 | [diff] [blame] | 28 | for (i = 0; (table[i].frequency != CPUFREQ_TABLE_END); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | unsigned int freq = table[i].frequency; |
| 30 | if (freq == CPUFREQ_ENTRY_INVALID) { |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 31 | pr_debug("table entry %u is invalid, skipping\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | continue; |
| 34 | } |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 35 | pr_debug("table entry %u: %u kHz, %u driver_data\n", |
| 36 | i, freq, table[i].driver_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | if (freq < min_freq) |
| 38 | min_freq = freq; |
| 39 | if (freq > max_freq) |
| 40 | max_freq = freq; |
| 41 | } |
| 42 | |
| 43 | policy->min = policy->cpuinfo.min_freq = min_freq; |
| 44 | policy->max = policy->cpuinfo.max_freq = max_freq; |
| 45 | |
| 46 | if (policy->min == ~0) |
| 47 | return -EINVAL; |
| 48 | else |
| 49 | return 0; |
| 50 | } |
| 51 | EXPORT_SYMBOL_GPL(cpufreq_frequency_table_cpuinfo); |
| 52 | |
| 53 | |
| 54 | int cpufreq_frequency_table_verify(struct cpufreq_policy *policy, |
| 55 | struct cpufreq_frequency_table *table) |
| 56 | { |
| 57 | unsigned int next_larger = ~0; |
Dave Jones | 5557976 | 2006-05-30 17:59:48 -0400 | [diff] [blame] | 58 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | unsigned int count = 0; |
| 60 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 61 | pr_debug("request for verification of policy (%u - %u kHz) for cpu %u\n", |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 62 | policy->min, policy->max, policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 64 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 65 | policy->cpuinfo.max_freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Dave Jones | 97acec5 | 2009-01-18 01:56:41 -0500 | [diff] [blame] | 67 | for (i = 0; (table[i].frequency != CPUFREQ_TABLE_END); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | unsigned int freq = table[i].frequency; |
| 69 | if (freq == CPUFREQ_ENTRY_INVALID) |
| 70 | continue; |
| 71 | if ((freq >= policy->min) && (freq <= policy->max)) |
| 72 | count++; |
| 73 | else if ((next_larger > freq) && (freq > policy->max)) |
| 74 | next_larger = freq; |
| 75 | } |
| 76 | |
| 77 | if (!count) |
| 78 | policy->max = next_larger; |
| 79 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 80 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 81 | policy->cpuinfo.max_freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 83 | pr_debug("verification lead to (%u - %u kHz) for cpu %u\n", |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 84 | policy->min, policy->max, policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | return 0; |
| 87 | } |
| 88 | EXPORT_SYMBOL_GPL(cpufreq_frequency_table_verify); |
| 89 | |
| 90 | |
| 91 | int cpufreq_frequency_table_target(struct cpufreq_policy *policy, |
| 92 | struct cpufreq_frequency_table *table, |
| 93 | unsigned int target_freq, |
| 94 | unsigned int relation, |
| 95 | unsigned int *index) |
| 96 | { |
Dave Jones | 484944a | 2006-05-30 18:09:31 -0400 | [diff] [blame] | 97 | struct cpufreq_frequency_table optimal = { |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 98 | .driver_data = ~0, |
Dave Jones | 484944a | 2006-05-30 18:09:31 -0400 | [diff] [blame] | 99 | .frequency = 0, |
| 100 | }; |
| 101 | struct cpufreq_frequency_table suboptimal = { |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 102 | .driver_data = ~0, |
Dave Jones | 484944a | 2006-05-30 18:09:31 -0400 | [diff] [blame] | 103 | .frequency = 0, |
| 104 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | unsigned int i; |
| 106 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 107 | pr_debug("request for target %u kHz (relation: %u) for cpu %u\n", |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 108 | target_freq, relation, policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
| 110 | switch (relation) { |
| 111 | case CPUFREQ_RELATION_H: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | suboptimal.frequency = ~0; |
| 113 | break; |
| 114 | case CPUFREQ_RELATION_L: |
| 115 | optimal.frequency = ~0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | break; |
| 117 | } |
| 118 | |
Dave Jones | 97acec5 | 2009-01-18 01:56:41 -0500 | [diff] [blame] | 119 | for (i = 0; (table[i].frequency != CPUFREQ_TABLE_END); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | unsigned int freq = table[i].frequency; |
| 121 | if (freq == CPUFREQ_ENTRY_INVALID) |
| 122 | continue; |
| 123 | if ((freq < policy->min) || (freq > policy->max)) |
| 124 | continue; |
Dave Jones | 97acec5 | 2009-01-18 01:56:41 -0500 | [diff] [blame] | 125 | switch (relation) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | case CPUFREQ_RELATION_H: |
| 127 | if (freq <= target_freq) { |
| 128 | if (freq >= optimal.frequency) { |
| 129 | optimal.frequency = freq; |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 130 | optimal.driver_data = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | } else { |
| 133 | if (freq <= suboptimal.frequency) { |
| 134 | suboptimal.frequency = freq; |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 135 | suboptimal.driver_data = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | } |
| 138 | break; |
| 139 | case CPUFREQ_RELATION_L: |
| 140 | if (freq >= target_freq) { |
| 141 | if (freq <= optimal.frequency) { |
| 142 | optimal.frequency = freq; |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 143 | optimal.driver_data = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | } else { |
| 146 | if (freq >= suboptimal.frequency) { |
| 147 | suboptimal.frequency = freq; |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 148 | suboptimal.driver_data = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | break; |
| 152 | } |
| 153 | } |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 154 | if (optimal.driver_data > i) { |
| 155 | if (suboptimal.driver_data > i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | return -EINVAL; |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 157 | *index = suboptimal.driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } else |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 159 | *index = optimal.driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 161 | pr_debug("target is %u (%u kHz, %u)\n", *index, table[*index].frequency, |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 162 | table[*index].driver_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | EXPORT_SYMBOL_GPL(cpufreq_frequency_table_target); |
| 167 | |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 168 | static DEFINE_PER_CPU(struct cpufreq_frequency_table *, cpufreq_show_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | /** |
Fenghua Yu | e32d22f | 2007-11-21 14:52:15 -0800 | [diff] [blame] | 170 | * show_available_freqs - show available frequencies for the specified CPU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | */ |
Dave Jones | 97acec5 | 2009-01-18 01:56:41 -0500 | [diff] [blame] | 172 | static ssize_t show_available_freqs(struct cpufreq_policy *policy, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { |
| 174 | unsigned int i = 0; |
| 175 | unsigned int cpu = policy->cpu; |
| 176 | ssize_t count = 0; |
| 177 | struct cpufreq_frequency_table *table; |
| 178 | |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 179 | if (!per_cpu(cpufreq_show_table, cpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | return -ENODEV; |
| 181 | |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 182 | table = per_cpu(cpufreq_show_table, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Dave Jones | 97acec5 | 2009-01-18 01:56:41 -0500 | [diff] [blame] | 184 | for (i = 0; (table[i].frequency != CPUFREQ_TABLE_END); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | if (table[i].frequency == CPUFREQ_ENTRY_INVALID) |
| 186 | continue; |
| 187 | count += sprintf(&buf[count], "%d ", table[i].frequency); |
| 188 | } |
| 189 | count += sprintf(&buf[count], "\n"); |
| 190 | |
| 191 | return count; |
| 192 | |
| 193 | } |
| 194 | |
| 195 | struct freq_attr cpufreq_freq_attr_scaling_available_freqs = { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 196 | .attr = { .name = "scaling_available_frequencies", |
| 197 | .mode = 0444, |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 198 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | .show = show_available_freqs, |
| 200 | }; |
| 201 | EXPORT_SYMBOL_GPL(cpufreq_freq_attr_scaling_available_freqs); |
| 202 | |
| 203 | /* |
| 204 | * if you use these, you must assure that the frequency table is valid |
| 205 | * all the time between get_attr and put_attr! |
| 206 | */ |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 207 | void cpufreq_frequency_table_get_attr(struct cpufreq_frequency_table *table, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | unsigned int cpu) |
| 209 | { |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 210 | pr_debug("setting show_table for cpu %u to %p\n", cpu, table); |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 211 | per_cpu(cpufreq_show_table, cpu) = table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | EXPORT_SYMBOL_GPL(cpufreq_frequency_table_get_attr); |
| 214 | |
| 215 | void cpufreq_frequency_table_put_attr(unsigned int cpu) |
| 216 | { |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 217 | pr_debug("clearing show_table for cpu %u\n", cpu); |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 218 | per_cpu(cpufreq_show_table, cpu) = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | EXPORT_SYMBOL_GPL(cpufreq_frequency_table_put_attr); |
| 221 | |
Viresh Kumar | 27047a6 | 2013-09-16 18:56:03 +0530 | [diff] [blame^] | 222 | int cpufreq_table_validate_and_show(struct cpufreq_policy *policy, |
| 223 | struct cpufreq_frequency_table *table) |
| 224 | { |
| 225 | int ret = cpufreq_frequency_table_cpuinfo(policy, table); |
| 226 | |
| 227 | if (!ret) |
| 228 | cpufreq_frequency_table_get_attr(table, policy->cpu); |
| 229 | |
| 230 | return ret; |
| 231 | } |
| 232 | EXPORT_SYMBOL_GPL(cpufreq_table_validate_and_show); |
| 233 | |
Viresh Kumar | b8eed8a | 2013-01-14 13:23:03 +0000 | [diff] [blame] | 234 | void cpufreq_frequency_table_update_policy_cpu(struct cpufreq_policy *policy) |
| 235 | { |
| 236 | pr_debug("Updating show_table for new_cpu %u from last_cpu %u\n", |
| 237 | policy->cpu, policy->last_cpu); |
| 238 | per_cpu(cpufreq_show_table, policy->cpu) = per_cpu(cpufreq_show_table, |
| 239 | policy->last_cpu); |
| 240 | per_cpu(cpufreq_show_table, policy->last_cpu) = NULL; |
| 241 | } |
| 242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu) |
| 244 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 245 | return per_cpu(cpufreq_show_table, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | } |
| 247 | EXPORT_SYMBOL_GPL(cpufreq_frequency_get_table); |
| 248 | |
Dave Jones | 97acec5 | 2009-01-18 01:56:41 -0500 | [diff] [blame] | 249 | MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>"); |
| 250 | MODULE_DESCRIPTION("CPUfreq frequency table helpers"); |
| 251 | MODULE_LICENSE("GPL"); |