1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2007 PA Semi, Inc
5 * Authors: Egor Martovetsky <egor@pasemi.com>
6 * Olof Johansson <olof@lixom.net>
8 * Maintained by: Olof Johansson <olof@lixom.net>
10 * Based on arch/powerpc/platforms/cell/cbe_cpufreq.c:
11 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
14 #include <linux/cpufreq.h>
15 #include <linux/timer.h>
16 #include <linux/module.h>
17 #include <linux/of_address.h>
19 #include <asm/hw_irq.h>
25 #include <platforms/pasemi/pasemi.h>
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
33 /* SDCPWR_GIZTIME_REG fields */
34 #define SDCPWR_GIZTIME_GR 0x80000000
35 #define SDCPWR_GIZTIME_LONGLOCK 0x000000ff
37 /* Offset of ASR registers from SDC base */
38 #define SDCASR_OFFSET 0x120000
40 static void __iomem
*sdcpwr_mapbase
;
41 static void __iomem
*sdcasr_mapbase
;
43 /* Current astate, is used when waking up from power savings on
44 * one core, in case the other core has switched states during
47 static int current_astate
;
49 /* We support 5(A0-A4) power states excluding turbo(A5-A6) modes */
50 static struct cpufreq_frequency_table pas_freqs
[] = {
56 {0, 0, CPUFREQ_TABLE_END
},
60 * hardware specific functions
63 static int get_astate_freq(int astate
)
66 ret
= in_le32(sdcpwr_mapbase
+ SDCPWR_CFGA0_REG
+ (astate
* 0x10));
71 static int get_cur_astate(int cpu
)
75 ret
= in_le32(sdcpwr_mapbase
+ SDCPWR_PWST0_REG
);
76 ret
= (ret
>> (cpu
* 4)) & 0x7;
81 static int get_gizmo_latency(void)
85 giztime
= in_le32(sdcpwr_mapbase
+ SDCPWR_GIZTIME_REG
);
87 /* just provide the upper bound */
88 if (giztime
& SDCPWR_GIZTIME_GR
)
89 ret
= (giztime
& SDCPWR_GIZTIME_LONGLOCK
) * 128000;
91 ret
= (giztime
& SDCPWR_GIZTIME_LONGLOCK
) * 1000;
96 static void set_astate(int cpu
, unsigned int astate
)
100 /* Return if called before init has run */
101 if (unlikely(!sdcasr_mapbase
))
104 local_irq_save(flags
);
106 out_le32(sdcasr_mapbase
+ SDCASR_REG
+ SDCASR_REG_STRIDE
*cpu
, astate
);
108 local_irq_restore(flags
);
111 int check_astate(void)
113 return get_cur_astate(hard_smp_processor_id());
116 void restore_astate(int cpu
)
118 set_astate(cpu
, current_astate
);
125 static int pas_cpufreq_cpu_init(struct cpufreq_policy
*policy
)
127 struct cpufreq_frequency_table
*pos
;
128 const u32
*max_freqp
;
132 struct device_node
*cpu
, *dn
;
135 cpu
= of_get_cpu_node(policy
->cpu
, NULL
);
139 max_freqp
= of_get_property(cpu
, "clock-frequency", NULL
);
146 /* we need the freq in kHz */
147 max_freq
= *max_freqp
/ 1000;
149 dn
= of_find_compatible_node(NULL
, NULL
, "1682m-sdc");
151 dn
= of_find_compatible_node(NULL
, NULL
,
152 "pasemi,pwrficient-sdc");
155 err
= of_address_to_resource(dn
, 0, &res
);
159 sdcasr_mapbase
= ioremap(res
.start
+ SDCASR_OFFSET
, 0x2000);
160 if (!sdcasr_mapbase
) {
165 dn
= of_find_compatible_node(NULL
, NULL
, "1682m-gizmo");
167 dn
= of_find_compatible_node(NULL
, NULL
,
168 "pasemi,pwrficient-gizmo");
171 goto out_unmap_sdcasr
;
173 err
= of_address_to_resource(dn
, 0, &res
);
176 goto out_unmap_sdcasr
;
177 sdcpwr_mapbase
= ioremap(res
.start
, 0x1000);
178 if (!sdcpwr_mapbase
) {
180 goto out_unmap_sdcasr
;
183 pr_debug("init cpufreq on CPU %d\n", policy
->cpu
);
184 pr_debug("max clock-frequency is at %u kHz\n", max_freq
);
185 pr_debug("initializing frequency table\n");
187 /* initialize frequency table */
188 cpufreq_for_each_entry_idx(pos
, pas_freqs
, idx
) {
189 pos
->frequency
= get_astate_freq(pos
->driver_data
) * 100000;
190 pr_debug("%d: %d\n", idx
, pos
->frequency
);
193 cur_astate
= get_cur_astate(policy
->cpu
);
194 pr_debug("current astate is at %d\n",cur_astate
);
196 policy
->cur
= pas_freqs
[cur_astate
].frequency
;
197 ppc_proc_freq
= policy
->cur
* 1000ul;
199 cpufreq_generic_init(policy
, pas_freqs
, get_gizmo_latency());
203 iounmap(sdcasr_mapbase
);
208 static int pas_cpufreq_cpu_exit(struct cpufreq_policy
*policy
)
211 * We don't support CPU hotplug. Don't unmap after the system
212 * has already made it to a running state.
214 if (system_state
>= SYSTEM_RUNNING
)
218 iounmap(sdcasr_mapbase
);
220 iounmap(sdcpwr_mapbase
);
225 static int pas_cpufreq_target(struct cpufreq_policy
*policy
,
226 unsigned int pas_astate_new
)
230 pr_debug("setting frequency for cpu %d to %d kHz, 1/%d of max frequency\n",
232 pas_freqs
[pas_astate_new
].frequency
,
233 pas_freqs
[pas_astate_new
].driver_data
);
235 current_astate
= pas_astate_new
;
237 for_each_online_cpu(i
)
238 set_astate(i
, pas_astate_new
);
240 ppc_proc_freq
= pas_freqs
[pas_astate_new
].frequency
* 1000ul;
244 static struct cpufreq_driver pas_cpufreq_driver
= {
245 .name
= "pas-cpufreq",
246 .flags
= CPUFREQ_CONST_LOOPS
,
247 .init
= pas_cpufreq_cpu_init
,
248 .exit
= pas_cpufreq_cpu_exit
,
249 .verify
= cpufreq_generic_frequency_table_verify
,
250 .target_index
= pas_cpufreq_target
,
251 .attr
= cpufreq_generic_attr
,
255 * module init and destoy
258 static int __init
pas_cpufreq_init(void)
260 if (!of_machine_is_compatible("PA6T-1682M") &&
261 !of_machine_is_compatible("pasemi,pwrficient"))
264 return cpufreq_register_driver(&pas_cpufreq_driver
);
267 static void __exit
pas_cpufreq_exit(void)
269 cpufreq_unregister_driver(&pas_cpufreq_driver
);
272 module_init(pas_cpufreq_init
);
273 module_exit(pas_cpufreq_exit
);
275 MODULE_LICENSE("GPL");
276 MODULE_AUTHOR("Egor Martovetsky <egor@pasemi.com>, Olof Johansson <olof@lixom.net>");