Thomas Gleixner | de6cc65 | 2019-05-27 08:55:02 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 PA Semi, Inc |
| 4 | * |
| 5 | * Authors: Egor Martovetsky <egor@pasemi.com> |
| 6 | * Olof Johansson <olof@lixom.net> |
| 7 | * |
| 8 | * Maintained by: Olof Johansson <olof@lixom.net> |
| 9 | * |
| 10 | * Based on arch/powerpc/platforms/cell/cbe_cpufreq.c: |
| 11 | * (C) Copyright IBM Deutschland Entwicklung GmbH 2005 |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <linux/cpufreq.h> |
| 15 | #include <linux/timer.h> |
Paul Gortmaker | 7dfe293 | 2011-05-27 13:23:32 -0400 | [diff] [blame] | 16 | #include <linux/module.h> |
Rob Herring | 5af5073 | 2013-09-17 14:28:33 -0500 | [diff] [blame] | 17 | #include <linux/of_address.h> |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 18 | |
| 19 | #include <asm/hw_irq.h> |
| 20 | #include <asm/io.h> |
| 21 | #include <asm/prom.h> |
Olof Johansson | 2abb701 | 2007-05-04 14:39:21 +1000 | [diff] [blame] | 22 | #include <asm/time.h> |
Olof Johansson | 8b32bc0 | 2007-11-07 09:26:06 -0600 | [diff] [blame] | 23 | #include <asm/smp.h> |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 24 | |
Lee Jones | 4a27aa9 | 2020-07-15 09:26:26 +0100 | [diff] [blame] | 25 | #include <platforms/pasemi/pasemi.h> |
| 26 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 27 | #define SDCASR_REG 0x0100 |
| 28 | #define SDCASR_REG_STRIDE 0x1000 |
| 29 | #define SDCPWR_CFGA0_REG 0x0100 |
| 30 | #define SDCPWR_PWST0_REG 0x0000 |
| 31 | #define SDCPWR_GIZTIME_REG 0x0440 |
| 32 | |
| 33 | /* SDCPWR_GIZTIME_REG fields */ |
| 34 | #define SDCPWR_GIZTIME_GR 0x80000000 |
| 35 | #define SDCPWR_GIZTIME_LONGLOCK 0x000000ff |
| 36 | |
| 37 | /* Offset of ASR registers from SDC base */ |
| 38 | #define SDCASR_OFFSET 0x120000 |
| 39 | |
| 40 | static void __iomem *sdcpwr_mapbase; |
| 41 | static void __iomem *sdcasr_mapbase; |
| 42 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 43 | /* Current astate, is used when waking up from power savings on |
| 44 | * one core, in case the other core has switched states during |
| 45 | * the idle time. |
| 46 | */ |
| 47 | static int current_astate; |
| 48 | |
| 49 | /* We support 5(A0-A4) power states excluding turbo(A5-A6) modes */ |
| 50 | static struct cpufreq_frequency_table pas_freqs[] = { |
Viresh Kumar | 7f4b046 | 2014-03-28 19:11:47 +0530 | [diff] [blame] | 51 | {0, 0, 0}, |
| 52 | {0, 1, 0}, |
| 53 | {0, 2, 0}, |
| 54 | {0, 3, 0}, |
| 55 | {0, 4, 0}, |
| 56 | {0, 0, CPUFREQ_TABLE_END}, |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 57 | }; |
| 58 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 59 | /* |
| 60 | * hardware specific functions |
| 61 | */ |
| 62 | |
| 63 | static int get_astate_freq(int astate) |
| 64 | { |
| 65 | u32 ret; |
| 66 | ret = in_le32(sdcpwr_mapbase + SDCPWR_CFGA0_REG + (astate * 0x10)); |
| 67 | |
| 68 | return ret & 0x3f; |
| 69 | } |
| 70 | |
| 71 | static int get_cur_astate(int cpu) |
| 72 | { |
| 73 | u32 ret; |
| 74 | |
| 75 | ret = in_le32(sdcpwr_mapbase + SDCPWR_PWST0_REG); |
| 76 | ret = (ret >> (cpu * 4)) & 0x7; |
| 77 | |
| 78 | return ret; |
| 79 | } |
| 80 | |
| 81 | static int get_gizmo_latency(void) |
| 82 | { |
| 83 | u32 giztime, ret; |
| 84 | |
| 85 | giztime = in_le32(sdcpwr_mapbase + SDCPWR_GIZTIME_REG); |
| 86 | |
| 87 | /* just provide the upper bound */ |
| 88 | if (giztime & SDCPWR_GIZTIME_GR) |
| 89 | ret = (giztime & SDCPWR_GIZTIME_LONGLOCK) * 128000; |
| 90 | else |
| 91 | ret = (giztime & SDCPWR_GIZTIME_LONGLOCK) * 1000; |
| 92 | |
| 93 | return ret; |
| 94 | } |
| 95 | |
| 96 | static void set_astate(int cpu, unsigned int astate) |
| 97 | { |
Ingo Molnar | ac3f645 | 2009-01-06 14:06:28 +0000 | [diff] [blame] | 98 | unsigned long flags; |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 99 | |
| 100 | /* Return if called before init has run */ |
| 101 | if (unlikely(!sdcasr_mapbase)) |
| 102 | return; |
| 103 | |
| 104 | local_irq_save(flags); |
| 105 | |
| 106 | out_le32(sdcasr_mapbase + SDCASR_REG + SDCASR_REG_STRIDE*cpu, astate); |
| 107 | |
| 108 | local_irq_restore(flags); |
| 109 | } |
| 110 | |
Olof Johansson | 8b32bc0 | 2007-11-07 09:26:06 -0600 | [diff] [blame] | 111 | int check_astate(void) |
| 112 | { |
| 113 | return get_cur_astate(hard_smp_processor_id()); |
| 114 | } |
| 115 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 116 | void restore_astate(int cpu) |
| 117 | { |
| 118 | set_astate(cpu, current_astate); |
| 119 | } |
| 120 | |
| 121 | /* |
| 122 | * cpufreq functions |
| 123 | */ |
| 124 | |
| 125 | static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy) |
| 126 | { |
Stratos Karafotis | 041526f | 2014-04-25 23:15:38 +0300 | [diff] [blame] | 127 | struct cpufreq_frequency_table *pos; |
Stephen Rothwell | 12d371a | 2007-04-29 16:29:08 +1000 | [diff] [blame] | 128 | const u32 *max_freqp; |
| 129 | u32 max_freq; |
Dominik Brodowski | ffd81dc | 2018-01-30 06:42:37 +0100 | [diff] [blame] | 130 | int cur_astate, idx; |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 131 | struct resource res; |
| 132 | struct device_node *cpu, *dn; |
| 133 | int err = -ENODEV; |
| 134 | |
| 135 | cpu = of_get_cpu_node(policy->cpu, NULL); |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 136 | if (!cpu) |
| 137 | goto out; |
| 138 | |
Wen Yang | e0a1244 | 2019-07-17 11:55:04 +0800 | [diff] [blame] | 139 | max_freqp = of_get_property(cpu, "clock-frequency", NULL); |
| 140 | of_node_put(cpu); |
| 141 | if (!max_freqp) { |
| 142 | err = -EINVAL; |
| 143 | goto out; |
| 144 | } |
| 145 | |
| 146 | /* we need the freq in kHz */ |
| 147 | max_freq = *max_freqp / 1000; |
| 148 | |
Olof Johansson | 0d08a84 | 2007-11-04 20:57:45 -0600 | [diff] [blame] | 149 | dn = of_find_compatible_node(NULL, NULL, "1682m-sdc"); |
| 150 | if (!dn) |
| 151 | dn = of_find_compatible_node(NULL, NULL, |
| 152 | "pasemi,pwrficient-sdc"); |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 153 | if (!dn) |
| 154 | goto out; |
| 155 | err = of_address_to_resource(dn, 0, &res); |
| 156 | of_node_put(dn); |
| 157 | if (err) |
| 158 | goto out; |
| 159 | sdcasr_mapbase = ioremap(res.start + SDCASR_OFFSET, 0x2000); |
| 160 | if (!sdcasr_mapbase) { |
| 161 | err = -EINVAL; |
| 162 | goto out; |
| 163 | } |
| 164 | |
Olof Johansson | 0d08a84 | 2007-11-04 20:57:45 -0600 | [diff] [blame] | 165 | dn = of_find_compatible_node(NULL, NULL, "1682m-gizmo"); |
| 166 | if (!dn) |
| 167 | dn = of_find_compatible_node(NULL, NULL, |
| 168 | "pasemi,pwrficient-gizmo"); |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 169 | if (!dn) { |
| 170 | err = -ENODEV; |
| 171 | goto out_unmap_sdcasr; |
| 172 | } |
| 173 | err = of_address_to_resource(dn, 0, &res); |
| 174 | of_node_put(dn); |
| 175 | if (err) |
| 176 | goto out_unmap_sdcasr; |
| 177 | sdcpwr_mapbase = ioremap(res.start, 0x1000); |
| 178 | if (!sdcpwr_mapbase) { |
| 179 | err = -EINVAL; |
| 180 | goto out_unmap_sdcasr; |
| 181 | } |
| 182 | |
| 183 | pr_debug("init cpufreq on CPU %d\n", policy->cpu); |
Stephen Rothwell | 12d371a | 2007-04-29 16:29:08 +1000 | [diff] [blame] | 184 | pr_debug("max clock-frequency is at %u kHz\n", max_freq); |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 185 | pr_debug("initializing frequency table\n"); |
| 186 | |
| 187 | /* initialize frequency table */ |
Dominik Brodowski | ffd81dc | 2018-01-30 06:42:37 +0100 | [diff] [blame] | 188 | cpufreq_for_each_entry_idx(pos, pas_freqs, idx) { |
Stratos Karafotis | 041526f | 2014-04-25 23:15:38 +0300 | [diff] [blame] | 189 | pos->frequency = get_astate_freq(pos->driver_data) * 100000; |
Dominik Brodowski | ffd81dc | 2018-01-30 06:42:37 +0100 | [diff] [blame] | 190 | pr_debug("%d: %d\n", idx, pos->frequency); |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 191 | } |
| 192 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 193 | cur_astate = get_cur_astate(policy->cpu); |
| 194 | pr_debug("current astate is at %d\n",cur_astate); |
| 195 | |
| 196 | policy->cur = pas_freqs[cur_astate].frequency; |
Olof Johansson | 2abb701 | 2007-05-04 14:39:21 +1000 | [diff] [blame] | 197 | ppc_proc_freq = policy->cur * 1000ul; |
| 198 | |
Viresh Kumar | c4dcc8a | 2019-07-16 09:36:08 +0530 | [diff] [blame] | 199 | cpufreq_generic_init(policy, pas_freqs, get_gizmo_latency()); |
| 200 | return 0; |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 201 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 202 | out_unmap_sdcasr: |
| 203 | iounmap(sdcasr_mapbase); |
| 204 | out: |
| 205 | return err; |
| 206 | } |
| 207 | |
| 208 | static int pas_cpufreq_cpu_exit(struct cpufreq_policy *policy) |
| 209 | { |
Steven Rostedt | 72640d8 | 2013-01-21 17:23:26 +0000 | [diff] [blame] | 210 | /* |
| 211 | * We don't support CPU hotplug. Don't unmap after the system |
| 212 | * has already made it to a running state. |
| 213 | */ |
Thomas Gleixner | d04e31a | 2017-05-16 20:42:40 +0200 | [diff] [blame] | 214 | if (system_state >= SYSTEM_RUNNING) |
Steven Rostedt | 72640d8 | 2013-01-21 17:23:26 +0000 | [diff] [blame] | 215 | return 0; |
| 216 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 217 | if (sdcasr_mapbase) |
| 218 | iounmap(sdcasr_mapbase); |
| 219 | if (sdcpwr_mapbase) |
| 220 | iounmap(sdcpwr_mapbase); |
| 221 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 222 | return 0; |
| 223 | } |
| 224 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 225 | static int pas_cpufreq_target(struct cpufreq_policy *policy, |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 226 | unsigned int pas_astate_new) |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 227 | { |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 228 | int i; |
| 229 | |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 230 | pr_debug("setting frequency for cpu %d to %d kHz, 1/%d of max frequency\n", |
| 231 | policy->cpu, |
| 232 | pas_freqs[pas_astate_new].frequency, |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 233 | pas_freqs[pas_astate_new].driver_data); |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 234 | |
| 235 | current_astate = pas_astate_new; |
| 236 | |
| 237 | for_each_online_cpu(i) |
| 238 | set_astate(i, pas_astate_new); |
| 239 | |
Viresh Kumar | d4019f0 | 2013-08-14 19:38:24 +0530 | [diff] [blame] | 240 | ppc_proc_freq = pas_freqs[pas_astate_new].frequency * 1000ul; |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static struct cpufreq_driver pas_cpufreq_driver = { |
| 245 | .name = "pas-cpufreq", |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 246 | .flags = CPUFREQ_CONST_LOOPS, |
| 247 | .init = pas_cpufreq_cpu_init, |
| 248 | .exit = pas_cpufreq_cpu_exit, |
Viresh Kumar | 5717431 | 2013-10-03 20:28:15 +0530 | [diff] [blame] | 249 | .verify = cpufreq_generic_frequency_table_verify, |
Viresh Kumar | 9c0ebcf | 2013-10-25 19:45:48 +0530 | [diff] [blame] | 250 | .target_index = pas_cpufreq_target, |
Viresh Kumar | 5717431 | 2013-10-03 20:28:15 +0530 | [diff] [blame] | 251 | .attr = cpufreq_generic_attr, |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | /* |
| 255 | * module init and destoy |
| 256 | */ |
| 257 | |
| 258 | static int __init pas_cpufreq_init(void) |
| 259 | { |
Grant Likely | 71a157e | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 260 | if (!of_machine_is_compatible("PA6T-1682M") && |
| 261 | !of_machine_is_compatible("pasemi,pwrficient")) |
Olof Johansson | 2e0c337 | 2007-04-27 15:46:01 +1000 | [diff] [blame] | 262 | return -ENODEV; |
| 263 | |
| 264 | return cpufreq_register_driver(&pas_cpufreq_driver); |
| 265 | } |
| 266 | |
| 267 | static void __exit pas_cpufreq_exit(void) |
| 268 | { |
| 269 | cpufreq_unregister_driver(&pas_cpufreq_driver); |
| 270 | } |
| 271 | |
| 272 | module_init(pas_cpufreq_init); |
| 273 | module_exit(pas_cpufreq_exit); |
| 274 | |
| 275 | MODULE_LICENSE("GPL"); |
| 276 | MODULE_AUTHOR("Egor Martovetsky <egor@pasemi.com>, Olof Johansson <olof@lixom.net>"); |