blob: c66f566a854cb6775242df8a2078ee217269e260 [file] [log] [blame]
Thomas Gleixnerde6cc652019-05-27 08:55:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Olof Johansson2e0c3372007-04-27 15:46:01 +10002/*
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 Johansson2e0c3372007-04-27 15:46:01 +100012 */
13
14#include <linux/cpufreq.h>
15#include <linux/timer.h>
Paul Gortmaker7dfe2932011-05-27 13:23:32 -040016#include <linux/module.h>
Rob Herring5af50732013-09-17 14:28:33 -050017#include <linux/of_address.h>
Olof Johansson2e0c3372007-04-27 15:46:01 +100018
19#include <asm/hw_irq.h>
20#include <asm/io.h>
21#include <asm/prom.h>
Olof Johansson2abb7012007-05-04 14:39:21 +100022#include <asm/time.h>
Olof Johansson8b32bc02007-11-07 09:26:06 -060023#include <asm/smp.h>
Olof Johansson2e0c3372007-04-27 15:46:01 +100024
25#define SDCASR_REG 0x0100
26#define SDCASR_REG_STRIDE 0x1000
27#define SDCPWR_CFGA0_REG 0x0100
28#define SDCPWR_PWST0_REG 0x0000
29#define SDCPWR_GIZTIME_REG 0x0440
30
31/* SDCPWR_GIZTIME_REG fields */
32#define SDCPWR_GIZTIME_GR 0x80000000
33#define SDCPWR_GIZTIME_LONGLOCK 0x000000ff
34
35/* Offset of ASR registers from SDC base */
36#define SDCASR_OFFSET 0x120000
37
38static void __iomem *sdcpwr_mapbase;
39static void __iomem *sdcasr_mapbase;
40
Olof Johansson2e0c3372007-04-27 15:46:01 +100041/* Current astate, is used when waking up from power savings on
42 * one core, in case the other core has switched states during
43 * the idle time.
44 */
45static int current_astate;
46
47/* We support 5(A0-A4) power states excluding turbo(A5-A6) modes */
48static struct cpufreq_frequency_table pas_freqs[] = {
Viresh Kumar7f4b0462014-03-28 19:11:47 +053049 {0, 0, 0},
50 {0, 1, 0},
51 {0, 2, 0},
52 {0, 3, 0},
53 {0, 4, 0},
54 {0, 0, CPUFREQ_TABLE_END},
Olof Johansson2e0c3372007-04-27 15:46:01 +100055};
56
Olof Johansson2e0c3372007-04-27 15:46:01 +100057/*
58 * hardware specific functions
59 */
60
61static int get_astate_freq(int astate)
62{
63 u32 ret;
64 ret = in_le32(sdcpwr_mapbase + SDCPWR_CFGA0_REG + (astate * 0x10));
65
66 return ret & 0x3f;
67}
68
69static int get_cur_astate(int cpu)
70{
71 u32 ret;
72
73 ret = in_le32(sdcpwr_mapbase + SDCPWR_PWST0_REG);
74 ret = (ret >> (cpu * 4)) & 0x7;
75
76 return ret;
77}
78
79static int get_gizmo_latency(void)
80{
81 u32 giztime, ret;
82
83 giztime = in_le32(sdcpwr_mapbase + SDCPWR_GIZTIME_REG);
84
85 /* just provide the upper bound */
86 if (giztime & SDCPWR_GIZTIME_GR)
87 ret = (giztime & SDCPWR_GIZTIME_LONGLOCK) * 128000;
88 else
89 ret = (giztime & SDCPWR_GIZTIME_LONGLOCK) * 1000;
90
91 return ret;
92}
93
94static void set_astate(int cpu, unsigned int astate)
95{
Ingo Molnarac3f6452009-01-06 14:06:28 +000096 unsigned long flags;
Olof Johansson2e0c3372007-04-27 15:46:01 +100097
98 /* Return if called before init has run */
99 if (unlikely(!sdcasr_mapbase))
100 return;
101
102 local_irq_save(flags);
103
104 out_le32(sdcasr_mapbase + SDCASR_REG + SDCASR_REG_STRIDE*cpu, astate);
105
106 local_irq_restore(flags);
107}
108
Olof Johansson8b32bc02007-11-07 09:26:06 -0600109int check_astate(void)
110{
111 return get_cur_astate(hard_smp_processor_id());
112}
113
Olof Johansson2e0c3372007-04-27 15:46:01 +1000114void restore_astate(int cpu)
115{
116 set_astate(cpu, current_astate);
117}
118
119/*
120 * cpufreq functions
121 */
122
123static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
124{
Stratos Karafotis041526f2014-04-25 23:15:38 +0300125 struct cpufreq_frequency_table *pos;
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000126 const u32 *max_freqp;
127 u32 max_freq;
Dominik Brodowskiffd81dc2018-01-30 06:42:37 +0100128 int cur_astate, idx;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000129 struct resource res;
130 struct device_node *cpu, *dn;
131 int err = -ENODEV;
132
133 cpu = of_get_cpu_node(policy->cpu, NULL);
Olof Johansson2e0c3372007-04-27 15:46:01 +1000134 if (!cpu)
135 goto out;
136
Wen Yange0a12442019-07-17 11:55:04 +0800137 max_freqp = of_get_property(cpu, "clock-frequency", NULL);
138 of_node_put(cpu);
139 if (!max_freqp) {
140 err = -EINVAL;
141 goto out;
142 }
143
144 /* we need the freq in kHz */
145 max_freq = *max_freqp / 1000;
146
Olof Johansson0d08a842007-11-04 20:57:45 -0600147 dn = of_find_compatible_node(NULL, NULL, "1682m-sdc");
148 if (!dn)
149 dn = of_find_compatible_node(NULL, NULL,
150 "pasemi,pwrficient-sdc");
Olof Johansson2e0c3372007-04-27 15:46:01 +1000151 if (!dn)
152 goto out;
153 err = of_address_to_resource(dn, 0, &res);
154 of_node_put(dn);
155 if (err)
156 goto out;
157 sdcasr_mapbase = ioremap(res.start + SDCASR_OFFSET, 0x2000);
158 if (!sdcasr_mapbase) {
159 err = -EINVAL;
160 goto out;
161 }
162
Olof Johansson0d08a842007-11-04 20:57:45 -0600163 dn = of_find_compatible_node(NULL, NULL, "1682m-gizmo");
164 if (!dn)
165 dn = of_find_compatible_node(NULL, NULL,
166 "pasemi,pwrficient-gizmo");
Olof Johansson2e0c3372007-04-27 15:46:01 +1000167 if (!dn) {
168 err = -ENODEV;
169 goto out_unmap_sdcasr;
170 }
171 err = of_address_to_resource(dn, 0, &res);
172 of_node_put(dn);
173 if (err)
174 goto out_unmap_sdcasr;
175 sdcpwr_mapbase = ioremap(res.start, 0x1000);
176 if (!sdcpwr_mapbase) {
177 err = -EINVAL;
178 goto out_unmap_sdcasr;
179 }
180
181 pr_debug("init cpufreq on CPU %d\n", policy->cpu);
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000182 pr_debug("max clock-frequency is at %u kHz\n", max_freq);
Olof Johansson2e0c3372007-04-27 15:46:01 +1000183 pr_debug("initializing frequency table\n");
184
185 /* initialize frequency table */
Dominik Brodowskiffd81dc2018-01-30 06:42:37 +0100186 cpufreq_for_each_entry_idx(pos, pas_freqs, idx) {
Stratos Karafotis041526f2014-04-25 23:15:38 +0300187 pos->frequency = get_astate_freq(pos->driver_data) * 100000;
Dominik Brodowskiffd81dc2018-01-30 06:42:37 +0100188 pr_debug("%d: %d\n", idx, pos->frequency);
Olof Johansson2e0c3372007-04-27 15:46:01 +1000189 }
190
Olof Johansson2e0c3372007-04-27 15:46:01 +1000191 cur_astate = get_cur_astate(policy->cpu);
192 pr_debug("current astate is at %d\n",cur_astate);
193
194 policy->cur = pas_freqs[cur_astate].frequency;
Olof Johansson2abb7012007-05-04 14:39:21 +1000195 ppc_proc_freq = policy->cur * 1000ul;
196
Viresh Kumarc4dcc8a2019-07-16 09:36:08 +0530197 cpufreq_generic_init(policy, pas_freqs, get_gizmo_latency());
198 return 0;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000199
Olof Johansson2e0c3372007-04-27 15:46:01 +1000200out_unmap_sdcasr:
201 iounmap(sdcasr_mapbase);
202out:
203 return err;
204}
205
206static int pas_cpufreq_cpu_exit(struct cpufreq_policy *policy)
207{
Steven Rostedt72640d82013-01-21 17:23:26 +0000208 /*
209 * We don't support CPU hotplug. Don't unmap after the system
210 * has already made it to a running state.
211 */
Thomas Gleixnerd04e31a2017-05-16 20:42:40 +0200212 if (system_state >= SYSTEM_RUNNING)
Steven Rostedt72640d82013-01-21 17:23:26 +0000213 return 0;
214
Olof Johansson2e0c3372007-04-27 15:46:01 +1000215 if (sdcasr_mapbase)
216 iounmap(sdcasr_mapbase);
217 if (sdcpwr_mapbase)
218 iounmap(sdcpwr_mapbase);
219
Olof Johansson2e0c3372007-04-27 15:46:01 +1000220 return 0;
221}
222
Olof Johansson2e0c3372007-04-27 15:46:01 +1000223static int pas_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530224 unsigned int pas_astate_new)
Olof Johansson2e0c3372007-04-27 15:46:01 +1000225{
Olof Johansson2e0c3372007-04-27 15:46:01 +1000226 int i;
227
Olof Johansson2e0c3372007-04-27 15:46:01 +1000228 pr_debug("setting frequency for cpu %d to %d kHz, 1/%d of max frequency\n",
229 policy->cpu,
230 pas_freqs[pas_astate_new].frequency,
Viresh Kumar50701582013-03-30 16:25:15 +0530231 pas_freqs[pas_astate_new].driver_data);
Olof Johansson2e0c3372007-04-27 15:46:01 +1000232
233 current_astate = pas_astate_new;
234
235 for_each_online_cpu(i)
236 set_astate(i, pas_astate_new);
237
Viresh Kumard4019f02013-08-14 19:38:24 +0530238 ppc_proc_freq = pas_freqs[pas_astate_new].frequency * 1000ul;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000239 return 0;
240}
241
242static struct cpufreq_driver pas_cpufreq_driver = {
243 .name = "pas-cpufreq",
Olof Johansson2e0c3372007-04-27 15:46:01 +1000244 .flags = CPUFREQ_CONST_LOOPS,
245 .init = pas_cpufreq_cpu_init,
246 .exit = pas_cpufreq_cpu_exit,
Viresh Kumar57174312013-10-03 20:28:15 +0530247 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530248 .target_index = pas_cpufreq_target,
Viresh Kumar57174312013-10-03 20:28:15 +0530249 .attr = cpufreq_generic_attr,
Olof Johansson2e0c3372007-04-27 15:46:01 +1000250};
251
252/*
253 * module init and destoy
254 */
255
256static int __init pas_cpufreq_init(void)
257{
Grant Likely71a157e2010-02-01 21:34:14 -0700258 if (!of_machine_is_compatible("PA6T-1682M") &&
259 !of_machine_is_compatible("pasemi,pwrficient"))
Olof Johansson2e0c3372007-04-27 15:46:01 +1000260 return -ENODEV;
261
262 return cpufreq_register_driver(&pas_cpufreq_driver);
263}
264
265static void __exit pas_cpufreq_exit(void)
266{
267 cpufreq_unregister_driver(&pas_cpufreq_driver);
268}
269
270module_init(pas_cpufreq_init);
271module_exit(pas_cpufreq_exit);
272
273MODULE_LICENSE("GPL");
274MODULE_AUTHOR("Egor Martovetsky <egor@pasemi.com>, Olof Johansson <olof@lixom.net>");