blob: 1c331369b15b850a7ef491da27cc155b27bbbaf0 [file] [log] [blame]
Olof Johansson2e0c3372007-04-27 15:46:01 +10001/*
2 * Copyright (C) 2007 PA Semi, Inc
3 *
4 * Authors: Egor Martovetsky <egor@pasemi.com>
5 * Olof Johansson <olof@lixom.net>
6 *
7 * Maintained by: Olof Johansson <olof@lixom.net>
8 *
9 * Based on arch/powerpc/platforms/cell/cbe_cpufreq.c:
10 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 */
27
28#include <linux/cpufreq.h>
29#include <linux/timer.h>
Paul Gortmaker7dfe2932011-05-27 13:23:32 -040030#include <linux/module.h>
Olof Johansson2e0c3372007-04-27 15:46:01 +100031
32#include <asm/hw_irq.h>
33#include <asm/io.h>
34#include <asm/prom.h>
Olof Johansson2abb7012007-05-04 14:39:21 +100035#include <asm/time.h>
Olof Johansson8b32bc02007-11-07 09:26:06 -060036#include <asm/smp.h>
Olof Johansson2e0c3372007-04-27 15:46:01 +100037
38#define SDCASR_REG 0x0100
39#define SDCASR_REG_STRIDE 0x1000
40#define SDCPWR_CFGA0_REG 0x0100
41#define SDCPWR_PWST0_REG 0x0000
42#define SDCPWR_GIZTIME_REG 0x0440
43
44/* SDCPWR_GIZTIME_REG fields */
45#define SDCPWR_GIZTIME_GR 0x80000000
46#define SDCPWR_GIZTIME_LONGLOCK 0x000000ff
47
48/* Offset of ASR registers from SDC base */
49#define SDCASR_OFFSET 0x120000
50
51static void __iomem *sdcpwr_mapbase;
52static void __iomem *sdcasr_mapbase;
53
Olof Johansson2e0c3372007-04-27 15:46:01 +100054/* Current astate, is used when waking up from power savings on
55 * one core, in case the other core has switched states during
56 * the idle time.
57 */
58static int current_astate;
59
60/* We support 5(A0-A4) power states excluding turbo(A5-A6) modes */
61static struct cpufreq_frequency_table pas_freqs[] = {
62 {0, 0},
63 {1, 0},
64 {2, 0},
65 {3, 0},
66 {4, 0},
67 {0, CPUFREQ_TABLE_END},
68};
69
Olof Johansson2e0c3372007-04-27 15:46:01 +100070/*
71 * hardware specific functions
72 */
73
74static int get_astate_freq(int astate)
75{
76 u32 ret;
77 ret = in_le32(sdcpwr_mapbase + SDCPWR_CFGA0_REG + (astate * 0x10));
78
79 return ret & 0x3f;
80}
81
82static int get_cur_astate(int cpu)
83{
84 u32 ret;
85
86 ret = in_le32(sdcpwr_mapbase + SDCPWR_PWST0_REG);
87 ret = (ret >> (cpu * 4)) & 0x7;
88
89 return ret;
90}
91
92static int get_gizmo_latency(void)
93{
94 u32 giztime, ret;
95
96 giztime = in_le32(sdcpwr_mapbase + SDCPWR_GIZTIME_REG);
97
98 /* just provide the upper bound */
99 if (giztime & SDCPWR_GIZTIME_GR)
100 ret = (giztime & SDCPWR_GIZTIME_LONGLOCK) * 128000;
101 else
102 ret = (giztime & SDCPWR_GIZTIME_LONGLOCK) * 1000;
103
104 return ret;
105}
106
107static void set_astate(int cpu, unsigned int astate)
108{
Ingo Molnarac3f6452009-01-06 14:06:28 +0000109 unsigned long flags;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000110
111 /* Return if called before init has run */
112 if (unlikely(!sdcasr_mapbase))
113 return;
114
115 local_irq_save(flags);
116
117 out_le32(sdcasr_mapbase + SDCASR_REG + SDCASR_REG_STRIDE*cpu, astate);
118
119 local_irq_restore(flags);
120}
121
Olof Johansson8b32bc02007-11-07 09:26:06 -0600122int check_astate(void)
123{
124 return get_cur_astate(hard_smp_processor_id());
125}
126
Olof Johansson2e0c3372007-04-27 15:46:01 +1000127void restore_astate(int cpu)
128{
129 set_astate(cpu, current_astate);
130}
131
132/*
133 * cpufreq functions
134 */
135
136static int pas_cpufreq_cpu_init(struct cpufreq_policy *policy)
137{
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000138 const u32 *max_freqp;
139 u32 max_freq;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000140 int i, cur_astate;
141 struct resource res;
142 struct device_node *cpu, *dn;
143 int err = -ENODEV;
144
145 cpu = of_get_cpu_node(policy->cpu, NULL);
146
147 if (!cpu)
148 goto out;
149
Olof Johansson0d08a842007-11-04 20:57:45 -0600150 dn = of_find_compatible_node(NULL, NULL, "1682m-sdc");
151 if (!dn)
152 dn = of_find_compatible_node(NULL, NULL,
153 "pasemi,pwrficient-sdc");
Olof Johansson2e0c3372007-04-27 15:46:01 +1000154 if (!dn)
155 goto out;
156 err = of_address_to_resource(dn, 0, &res);
157 of_node_put(dn);
158 if (err)
159 goto out;
160 sdcasr_mapbase = ioremap(res.start + SDCASR_OFFSET, 0x2000);
161 if (!sdcasr_mapbase) {
162 err = -EINVAL;
163 goto out;
164 }
165
Olof Johansson0d08a842007-11-04 20:57:45 -0600166 dn = of_find_compatible_node(NULL, NULL, "1682m-gizmo");
167 if (!dn)
168 dn = of_find_compatible_node(NULL, NULL,
169 "pasemi,pwrficient-gizmo");
Olof Johansson2e0c3372007-04-27 15:46:01 +1000170 if (!dn) {
171 err = -ENODEV;
172 goto out_unmap_sdcasr;
173 }
174 err = of_address_to_resource(dn, 0, &res);
175 of_node_put(dn);
176 if (err)
177 goto out_unmap_sdcasr;
178 sdcpwr_mapbase = ioremap(res.start, 0x1000);
179 if (!sdcpwr_mapbase) {
180 err = -EINVAL;
181 goto out_unmap_sdcasr;
182 }
183
184 pr_debug("init cpufreq on CPU %d\n", policy->cpu);
185
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000186 max_freqp = of_get_property(cpu, "clock-frequency", NULL);
187 if (!max_freqp) {
Olof Johansson2e0c3372007-04-27 15:46:01 +1000188 err = -EINVAL;
189 goto out_unmap_sdcpwr;
190 }
191
192 /* we need the freq in kHz */
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000193 max_freq = *max_freqp / 1000;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000194
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000195 pr_debug("max clock-frequency is at %u kHz\n", max_freq);
Olof Johansson2e0c3372007-04-27 15:46:01 +1000196 pr_debug("initializing frequency table\n");
197
198 /* initialize frequency table */
199 for (i=0; pas_freqs[i].frequency!=CPUFREQ_TABLE_END; i++) {
Viresh Kumar50701582013-03-30 16:25:15 +0530200 pas_freqs[i].frequency =
201 get_astate_freq(pas_freqs[i].driver_data) * 100000;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000202 pr_debug("%d: %d\n", i, pas_freqs[i].frequency);
203 }
204
Olof Johansson2e0c3372007-04-27 15:46:01 +1000205 cur_astate = get_cur_astate(policy->cpu);
206 pr_debug("current astate is at %d\n",cur_astate);
207
208 policy->cur = pas_freqs[cur_astate].frequency;
Olof Johansson2abb7012007-05-04 14:39:21 +1000209 ppc_proc_freq = policy->cur * 1000ul;
210
Viresh Kumare315bb72013-10-03 20:29:19 +0530211 return cpufreq_generic_init(policy, pas_freqs, get_gizmo_latency());
Olof Johansson2e0c3372007-04-27 15:46:01 +1000212
213out_unmap_sdcpwr:
214 iounmap(sdcpwr_mapbase);
215
216out_unmap_sdcasr:
217 iounmap(sdcasr_mapbase);
218out:
219 return err;
220}
221
222static int pas_cpufreq_cpu_exit(struct cpufreq_policy *policy)
223{
Steven Rostedt72640d82013-01-21 17:23:26 +0000224 /*
225 * We don't support CPU hotplug. Don't unmap after the system
226 * has already made it to a running state.
227 */
228 if (system_state != SYSTEM_BOOTING)
229 return 0;
230
Olof Johansson2e0c3372007-04-27 15:46:01 +1000231 if (sdcasr_mapbase)
232 iounmap(sdcasr_mapbase);
233 if (sdcpwr_mapbase)
234 iounmap(sdcpwr_mapbase);
235
236 cpufreq_frequency_table_put_attr(policy->cpu);
237 return 0;
238}
239
Olof Johansson2e0c3372007-04-27 15:46:01 +1000240static int pas_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530241 unsigned int pas_astate_new)
Olof Johansson2e0c3372007-04-27 15:46:01 +1000242{
Olof Johansson2e0c3372007-04-27 15:46:01 +1000243 int i;
244
Olof Johansson2e0c3372007-04-27 15:46:01 +1000245 pr_debug("setting frequency for cpu %d to %d kHz, 1/%d of max frequency\n",
246 policy->cpu,
247 pas_freqs[pas_astate_new].frequency,
Viresh Kumar50701582013-03-30 16:25:15 +0530248 pas_freqs[pas_astate_new].driver_data);
Olof Johansson2e0c3372007-04-27 15:46:01 +1000249
250 current_astate = pas_astate_new;
251
252 for_each_online_cpu(i)
253 set_astate(i, pas_astate_new);
254
Viresh Kumard4019f02013-08-14 19:38:24 +0530255 ppc_proc_freq = pas_freqs[pas_astate_new].frequency * 1000ul;
Olof Johansson2e0c3372007-04-27 15:46:01 +1000256 return 0;
257}
258
259static struct cpufreq_driver pas_cpufreq_driver = {
260 .name = "pas-cpufreq",
Olof Johansson2e0c3372007-04-27 15:46:01 +1000261 .flags = CPUFREQ_CONST_LOOPS,
262 .init = pas_cpufreq_cpu_init,
263 .exit = pas_cpufreq_cpu_exit,
Viresh Kumar57174312013-10-03 20:28:15 +0530264 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530265 .target_index = pas_cpufreq_target,
Viresh Kumar57174312013-10-03 20:28:15 +0530266 .attr = cpufreq_generic_attr,
Olof Johansson2e0c3372007-04-27 15:46:01 +1000267};
268
269/*
270 * module init and destoy
271 */
272
273static int __init pas_cpufreq_init(void)
274{
Grant Likely71a157e2010-02-01 21:34:14 -0700275 if (!of_machine_is_compatible("PA6T-1682M") &&
276 !of_machine_is_compatible("pasemi,pwrficient"))
Olof Johansson2e0c3372007-04-27 15:46:01 +1000277 return -ENODEV;
278
279 return cpufreq_register_driver(&pas_cpufreq_driver);
280}
281
282static void __exit pas_cpufreq_exit(void)
283{
284 cpufreq_unregister_driver(&pas_cpufreq_driver);
285}
286
287module_init(pas_cpufreq_init);
288module_exit(pas_cpufreq_exit);
289
290MODULE_LICENSE("GPL");
291MODULE_AUTHOR("Egor Martovetsky <egor@pasemi.com>, Olof Johansson <olof@lixom.net>");