blob: c58abb4cca3a254b028bec292a888099e8e7c7b0 [file] [log] [blame]
Thomas Gleixnerde6cc652019-05-27 08:55:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Christian Krafft36ca4ba2006-10-24 18:39:45 +02002/*
3 * cpufreq driver for the cell processor
4 *
Christian Krafft74889e42007-07-20 21:39:22 +02005 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005-2007
Christian Krafft36ca4ba2006-10-24 18:39:45 +02006 *
7 * Author: Christian Krafft <krafft@de.ibm.com>
Christian Krafft36ca4ba2006-10-24 18:39:45 +02008 */
9
10#include <linux/cpufreq.h>
Paul Gortmaker7dfe2932011-05-27 13:23:32 -040011#include <linux/module.h>
Jon Loeligerd8caf742007-11-13 11:10:58 -060012#include <linux/of_platform.h>
13
Olof Johansson4bd4aa12007-04-28 12:49:03 +100014#include <asm/machdep.h>
Christian Krafft74889e42007-07-20 21:39:22 +020015#include <asm/prom.h>
Benjamin Herrenschmidteef686a02007-10-04 15:40:42 +100016#include <asm/cell-regs.h>
Viresh Kumar6eb1c372013-03-25 11:20:23 +053017
18#include "ppc_cbe_cpufreq.h"
Christian Krafft36ca4ba2006-10-24 18:39:45 +020019
Christian Krafft36ca4ba2006-10-24 18:39:45 +020020/* the CBE supports an 8 step frequency scaling */
21static struct cpufreq_frequency_table cbe_freqs[] = {
Viresh Kumar7f4b0462014-03-28 19:11:47 +053022 {0, 1, 0},
23 {0, 2, 0},
24 {0, 3, 0},
25 {0, 4, 0},
26 {0, 5, 0},
27 {0, 6, 0},
28 {0, 8, 0},
29 {0, 10, 0},
30 {0, 0, CPUFREQ_TABLE_END},
Christian Krafft36ca4ba2006-10-24 18:39:45 +020031};
32
Christian Krafft36ca4ba2006-10-24 18:39:45 +020033/*
34 * hardware specific functions
35 */
36
Christian Krafft74889e42007-07-20 21:39:22 +020037static int set_pmode(unsigned int cpu, unsigned int slow_mode)
Christian Krafft813f9072007-07-20 21:39:18 +020038{
Christian Krafft1e21fd52007-07-20 21:39:21 +020039 int rc;
Christian Krafft1e21fd52007-07-20 21:39:21 +020040
Christian Krafft74889e42007-07-20 21:39:22 +020041 if (cbe_cpufreq_has_pmi)
42 rc = cbe_cpufreq_set_pmode_pmi(cpu, slow_mode);
43 else
44 rc = cbe_cpufreq_set_pmode(cpu, slow_mode);
45
46 pr_debug("register contains slow mode %d\n", cbe_cpufreq_get_pmode(cpu));
Christian Krafft1e21fd52007-07-20 21:39:21 +020047
48 return rc;
Christian Krafft50500632007-04-23 21:35:42 +020049}
50
Christian Krafft36ca4ba2006-10-24 18:39:45 +020051/*
52 * cpufreq functions
53 */
54
Olof Johansson4bd4aa12007-04-28 12:49:03 +100055static int cbe_cpufreq_cpu_init(struct cpufreq_policy *policy)
Christian Krafft36ca4ba2006-10-24 18:39:45 +020056{
Stratos Karafotis041526f2014-04-25 23:15:38 +030057 struct cpufreq_frequency_table *pos;
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +100058 const u32 *max_freqp;
59 u32 max_freq;
Stratos Karafotis041526f2014-04-25 23:15:38 +030060 int cur_pmode;
Christian Krafft36ca4ba2006-10-24 18:39:45 +020061 struct device_node *cpu;
62
63 cpu = of_get_cpu_node(policy->cpu, NULL);
64
Olof Johansson4bd4aa12007-04-28 12:49:03 +100065 if (!cpu)
Christian Krafft36ca4ba2006-10-24 18:39:45 +020066 return -ENODEV;
67
68 pr_debug("init cpufreq on CPU %d\n", policy->cpu);
69
Jean-Christophe DUBOIS64bafa92007-07-20 21:39:23 +020070 /*
71 * Let's check we can actually get to the CELL regs
72 */
73 if (!cbe_get_cpu_pmd_regs(policy->cpu) ||
74 !cbe_get_cpu_mic_tm_regs(policy->cpu)) {
75 pr_info("invalid CBE regs pointers for cpufreq\n");
Wen Yang23329802019-04-01 09:37:54 +080076 of_node_put(cpu);
Jean-Christophe DUBOIS64bafa92007-07-20 21:39:23 +020077 return -EINVAL;
78 }
79
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +100080 max_freqp = of_get_property(cpu, "clock-frequency", NULL);
Christian Krafft36ca4ba2006-10-24 18:39:45 +020081
Christian Krafft1e21fd52007-07-20 21:39:21 +020082 of_node_put(cpu);
83
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +100084 if (!max_freqp)
Christian Krafft36ca4ba2006-10-24 18:39:45 +020085 return -EINVAL;
86
Olof Johansson4bd4aa12007-04-28 12:49:03 +100087 /* we need the freq in kHz */
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +100088 max_freq = *max_freqp / 1000;
Christian Krafft36ca4ba2006-10-24 18:39:45 +020089
Stephen Rothwell9c1a2ba2007-04-03 22:50:59 +100090 pr_debug("max clock-frequency is at %u kHz\n", max_freq);
Christian Krafft36ca4ba2006-10-24 18:39:45 +020091 pr_debug("initializing frequency table\n");
92
Olof Johansson4bd4aa12007-04-28 12:49:03 +100093 /* initialize frequency table */
Stratos Karafotis041526f2014-04-25 23:15:38 +030094 cpufreq_for_each_entry(pos, cbe_freqs) {
95 pos->frequency = max_freq / pos->driver_data;
96 pr_debug("%d: %d\n", (int)(pos - cbe_freqs), pos->frequency);
Christian Krafft36ca4ba2006-10-24 18:39:45 +020097 }
98
Christian Krafft1e21fd52007-07-20 21:39:21 +020099 /* if DEBUG is enabled set_pmode() measures the latency
100 * of a transition */
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200101 policy->cpuinfo.transition_latency = 25000;
102
Christian Krafft74889e42007-07-20 21:39:22 +0200103 cur_pmode = cbe_cpufreq_get_pmode(policy->cpu);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200104 pr_debug("current pmode is at %d\n",cur_pmode);
105
106 policy->cur = cbe_freqs[cur_pmode].frequency;
107
108#ifdef CONFIG_SMP
Anton Blanchardcc1ba8e2010-04-26 15:32:41 +0000109 cpumask_copy(policy->cpus, cpu_sibling_mask(policy->cpu));
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200110#endif
111
Viresh Kumar20dfdb92018-02-26 10:38:59 +0530112 policy->freq_table = cbe_freqs;
Viresh Kumarafe96902019-07-05 15:49:48 +0530113 cbe_cpufreq_pmi_policy_init(policy);
114 return 0;
115}
116
117static int cbe_cpufreq_cpu_exit(struct cpufreq_policy *policy)
118{
119 cbe_cpufreq_pmi_policy_exit(policy);
Viresh Kumar20dfdb92018-02-26 10:38:59 +0530120 return 0;
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200121}
122
Christian Krafft1e21fd52007-07-20 21:39:21 +0200123static int cbe_cpufreq_target(struct cpufreq_policy *policy,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530124 unsigned int cbe_pmode_new)
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200125{
Christian Krafft1e21fd52007-07-20 21:39:21 +0200126 pr_debug("setting frequency for cpu %d to %d kHz, " \
127 "1/%d of max frequency\n",
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200128 policy->cpu,
129 cbe_freqs[cbe_pmode_new].frequency,
Viresh Kumar50701582013-03-30 16:25:15 +0530130 cbe_freqs[cbe_pmode_new].driver_data);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200131
Viresh Kumard4019f02013-08-14 19:38:24 +0530132 return set_pmode(policy->cpu, cbe_pmode_new);
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200133}
134
135static struct cpufreq_driver cbe_cpufreq_driver = {
Viresh Kumarc3bc3d62013-10-03 20:28:19 +0530136 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530137 .target_index = cbe_cpufreq_target,
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200138 .init = cbe_cpufreq_cpu_init,
Viresh Kumarafe96902019-07-05 15:49:48 +0530139 .exit = cbe_cpufreq_cpu_exit,
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200140 .name = "cbe-cpufreq",
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200141 .flags = CPUFREQ_CONST_LOOPS,
142};
143
144/*
145 * module init and destoy
146 */
147
148static int __init cbe_cpufreq_init(void)
149{
Viresh Kumarafe96902019-07-05 15:49:48 +0530150 int ret;
151
Olof Johansson4bd4aa12007-04-28 12:49:03 +1000152 if (!machine_is(cell))
153 return -ENODEV;
Christian Krafft50500632007-04-23 21:35:42 +0200154
Viresh Kumarafe96902019-07-05 15:49:48 +0530155 cbe_cpufreq_pmi_init();
156
157 ret = cpufreq_register_driver(&cbe_cpufreq_driver);
158 if (ret)
159 cbe_cpufreq_pmi_exit();
160
161 return ret;
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200162}
163
164static void __exit cbe_cpufreq_exit(void)
165{
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200166 cpufreq_unregister_driver(&cbe_cpufreq_driver);
Viresh Kumarafe96902019-07-05 15:49:48 +0530167 cbe_cpufreq_pmi_exit();
Christian Krafft36ca4ba2006-10-24 18:39:45 +0200168}
169
170module_init(cbe_cpufreq_init);
171module_exit(cbe_cpufreq_exit);
172
173MODULE_LICENSE("GPL");
174MODULE_AUTHOR("Christian Krafft <krafft@de.ibm.com>");