blob: e41b35b16afd7ce6ac8b1124d10a7a6d3d9ade37 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* us3_cpufreq.c: UltraSPARC-III cpu frequency support
3 *
4 * Copyright (C) 2003 David S. Miller (davem@redhat.com)
5 *
6 * Many thanks to Dominik Brodowski for fixing up the cpufreq
7 * infrastructure in order to make this driver easier to implement.
8 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/sched.h>
13#include <linux/smp.h>
14#include <linux/cpufreq.h>
15#include <linux/threads.h>
16#include <linux/slab.h>
17#include <linux/init.h>
18
19#include <asm/head.h>
20#include <asm/timer.h>
21
22static struct cpufreq_driver *cpufreq_us3_driver;
23
24struct us3_freq_percpu_info {
25 struct cpufreq_frequency_table table[4];
26};
27
28/* Indexed by cpu number. */
29static struct us3_freq_percpu_info *us3_freq_table;
30
31/* UltraSPARC-III has three dividers: 1, 2, and 32. These are controlled
32 * in the Safari config register.
33 */
34#define SAFARI_CFG_DIV_1 0x0000000000000000UL
35#define SAFARI_CFG_DIV_2 0x0000000040000000UL
36#define SAFARI_CFG_DIV_32 0x0000000080000000UL
37#define SAFARI_CFG_DIV_MASK 0x00000000C0000000UL
38
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020039static void read_safari_cfg(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020041 unsigned long ret, *val = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 __asm__ __volatile__("ldxa [%%g0] %1, %0"
44 : "=&r" (ret)
45 : "i" (ASI_SAFARI_CONFIG));
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020046 *val = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020049static void update_safari_cfg(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020051 unsigned long reg, *new_bits = arg;
52
53 read_safari_cfg(&reg);
54 reg &= ~SAFARI_CFG_DIV_MASK;
55 reg |= *new_bits;
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 __asm__ __volatile__("stxa %0, [%%g0] %1\n\t"
58 "membar #Sync"
59 : /* no outputs */
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020060 : "r" (reg), "i" (ASI_SAFARI_CONFIG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 : "memory");
62}
63
64static unsigned long get_current_freq(unsigned int cpu, unsigned long safari_cfg)
65{
David S. Miller2cab2242005-08-18 14:35:38 -070066 unsigned long clock_tick = sparc64_get_clock_tick(cpu) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 unsigned long ret;
68
69 switch (safari_cfg & SAFARI_CFG_DIV_MASK) {
70 case SAFARI_CFG_DIV_1:
71 ret = clock_tick / 1;
72 break;
73 case SAFARI_CFG_DIV_2:
74 ret = clock_tick / 2;
75 break;
76 case SAFARI_CFG_DIV_32:
77 ret = clock_tick / 32;
78 break;
79 default:
80 BUG();
Joe Perches6cb79b32011-06-03 14:45:23 +000081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 return ret;
84}
85
David S. Miller2cab2242005-08-18 14:35:38 -070086static unsigned int us3_freq_get(unsigned int cpu)
87{
David S. Miller2cab2242005-08-18 14:35:38 -070088 unsigned long reg;
David S. Miller2cab2242005-08-18 14:35:38 -070089
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020090 if (smp_call_function_single(cpu, read_safari_cfg, &reg, 1))
91 return 0;
92 return get_current_freq(cpu, reg);
David S. Miller2cab2242005-08-18 14:35:38 -070093}
94
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053095static int us3_freq_target(struct cpufreq_policy *policy, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +053097 unsigned int cpu = policy->cpu;
Thomas Gleixner9fe24c42017-04-12 22:07:37 +020098 unsigned long new_bits, new_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
David S. Miller2cab2242005-08-18 14:35:38 -0700100 new_freq = sparc64_get_clock_tick(cpu) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 switch (index) {
102 case 0:
103 new_bits = SAFARI_CFG_DIV_1;
104 new_freq /= 1;
105 break;
106 case 1:
107 new_bits = SAFARI_CFG_DIV_2;
108 new_freq /= 2;
109 break;
110 case 2:
111 new_bits = SAFARI_CFG_DIV_32;
112 new_freq /= 32;
113 break;
114
115 default:
116 BUG();
Joe Perches6cb79b32011-06-03 14:45:23 +0000117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Thomas Gleixner9fe24c42017-04-12 22:07:37 +0200119 return smp_call_function_single(cpu, update_safari_cfg, &new_bits, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static int __init us3_freq_cpu_init(struct cpufreq_policy *policy)
123{
124 unsigned int cpu = policy->cpu;
David S. Miller2cab2242005-08-18 14:35:38 -0700125 unsigned long clock_tick = sparc64_get_clock_tick(cpu) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct cpufreq_frequency_table *table =
127 &us3_freq_table[cpu].table[0];
128
Viresh Kumar50701582013-03-30 16:25:15 +0530129 table[0].driver_data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 table[0].frequency = clock_tick / 1;
Viresh Kumar50701582013-03-30 16:25:15 +0530131 table[1].driver_data = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 table[1].frequency = clock_tick / 2;
Viresh Kumar50701582013-03-30 16:25:15 +0530133 table[2].driver_data = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 table[2].frequency = clock_tick / 32;
Viresh Kumar50701582013-03-30 16:25:15 +0530135 table[3].driver_data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 table[3].frequency = CPUFREQ_TABLE_END;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 policy->cpuinfo.transition_latency = 0;
139 policy->cur = clock_tick;
Viresh Kumar31f4b7a2018-02-26 10:39:07 +0530140 policy->freq_table = table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Viresh Kumar31f4b7a2018-02-26 10:39:07 +0530142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145static int us3_freq_cpu_exit(struct cpufreq_policy *policy)
146{
Viresh Kumare0b31652014-03-10 14:53:33 +0530147 if (cpufreq_us3_driver)
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530148 us3_freq_target(policy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 return 0;
151}
152
153static int __init us3_freq_init(void)
154{
155 unsigned long manuf, impl, ver;
156 int ret;
157
David S. Millerd82ace72006-02-09 02:52:44 -0800158 if (tlb_type != cheetah && tlb_type != cheetah_plus)
159 return -ENODEV;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 __asm__("rdpr %%ver, %0" : "=r" (ver));
162 manuf = ((ver >> 48) & 0xffff);
163 impl = ((ver >> 32) & 0xffff);
164
165 if (manuf == CHEETAH_MANUF &&
David S. Millerd2212bc2005-09-27 22:50:06 -0700166 (impl == CHEETAH_IMPL ||
167 impl == CHEETAH_PLUS_IMPL ||
168 impl == JAGUAR_IMPL ||
169 impl == PANTHER_IMPL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct cpufreq_driver *driver;
171
172 ret = -ENOMEM;
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530173 driver = kzalloc(sizeof(*driver), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (!driver)
175 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530177 us3_freq_table = kzalloc((NR_CPUS * sizeof(*us3_freq_table)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 GFP_KERNEL);
179 if (!us3_freq_table)
180 goto err_out;
181
David S. Miller2cab2242005-08-18 14:35:38 -0700182 driver->init = us3_freq_cpu_init;
Viresh Kumar7a1874a2013-10-03 20:28:26 +0530183 driver->verify = cpufreq_generic_frequency_table_verify;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530184 driver->target_index = us3_freq_target;
David S. Miller2cab2242005-08-18 14:35:38 -0700185 driver->get = us3_freq_get;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 driver->exit = us3_freq_cpu_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 strcpy(driver->name, "UltraSPARC-III");
188
189 cpufreq_us3_driver = driver;
190 ret = cpufreq_register_driver(driver);
191 if (ret)
192 goto err_out;
193
194 return 0;
195
196err_out:
197 if (driver) {
198 kfree(driver);
199 cpufreq_us3_driver = NULL;
200 }
Jesper Juhlb2325fe2005-11-07 01:01:35 -0800201 kfree(us3_freq_table);
202 us3_freq_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return ret;
204 }
205
206 return -ENODEV;
207}
208
209static void __exit us3_freq_exit(void)
210{
211 if (cpufreq_us3_driver) {
212 cpufreq_unregister_driver(cpufreq_us3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 kfree(cpufreq_us3_driver);
214 cpufreq_us3_driver = NULL;
215 kfree(us3_freq_table);
216 us3_freq_table = NULL;
217 }
218}
219
220MODULE_AUTHOR("David S. Miller <davem@redhat.com>");
221MODULE_DESCRIPTION("cpufreq driver for UltraSPARC-III");
222MODULE_LICENSE("GPL");
223
224module_init(us3_freq_init);
225module_exit(us3_freq_exit);