blob: 037fe23bc6ed0feeb76384126706a24cab82b863 [file] [log] [blame]
Thomas Gleixnerde6cc652019-05-27 08:55:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Christian Krafft74889e42007-07-20 21:39:22 +02002/*
3 * pmi backend for the cbe_cpufreq driver
4 *
5 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005-2007
6 *
7 * Author: Christian Krafft <krafft@de.ibm.com>
Christian Krafft74889e42007-07-20 21:39:22 +02008 */
9
10#include <linux/kernel.h>
11#include <linux/types.h>
12#include <linux/timer.h>
Paul Gortmakerdbbe9722016-03-27 18:08:17 -040013#include <linux/init.h>
Jon Loeligerd8caf742007-11-13 11:10:58 -060014#include <linux/of_platform.h>
Viresh Kumarafe96902019-07-05 15:49:48 +053015#include <linux/pm_qos.h>
Jon Loeligerd8caf742007-11-13 11:10:58 -060016
Christian Krafft74889e42007-07-20 21:39:22 +020017#include <asm/processor.h>
18#include <asm/prom.h>
19#include <asm/pmi.h>
Benjamin Herrenschmidteef686a02007-10-04 15:40:42 +100020#include <asm/cell-regs.h>
Christian Krafft74889e42007-07-20 21:39:22 +020021
22#ifdef DEBUG
23#include <asm/time.h>
24#endif
25
Viresh Kumar6eb1c372013-03-25 11:20:23 +053026#include "ppc_cbe_cpufreq.h"
Christian Krafft74889e42007-07-20 21:39:22 +020027
Christian Krafft74889e42007-07-20 21:39:22 +020028bool cbe_cpufreq_has_pmi = false;
29EXPORT_SYMBOL_GPL(cbe_cpufreq_has_pmi);
30
31/*
32 * hardware specific functions
33 */
34
35int cbe_cpufreq_set_pmode_pmi(int cpu, unsigned int pmode)
36{
37 int ret;
38 pmi_message_t pmi_msg;
39#ifdef DEBUG
40 long time;
41#endif
42 pmi_msg.type = PMI_TYPE_FREQ_CHANGE;
43 pmi_msg.data1 = cbe_cpu_to_node(cpu);
44 pmi_msg.data2 = pmode;
45
46#ifdef DEBUG
47 time = jiffies;
48#endif
49 pmi_send_message(pmi_msg);
50
51#ifdef DEBUG
52 time = jiffies - time;
53 time = jiffies_to_msecs(time);
54 pr_debug("had to wait %lu ms for a transition using " \
55 "PMI\n", time);
56#endif
57 ret = pmi_msg.data2;
58 pr_debug("PMI returned slow mode %d\n", ret);
59
60 return ret;
61}
62EXPORT_SYMBOL_GPL(cbe_cpufreq_set_pmode_pmi);
63
64
65static void cbe_cpufreq_handle_pmi(pmi_message_t pmi_msg)
66{
Viresh Kumarafe96902019-07-05 15:49:48 +053067 struct cpufreq_policy *policy;
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +020068 struct freq_qos_request *req;
Christian Krafft74889e42007-07-20 21:39:22 +020069 u8 node, slow_mode;
Viresh Kumarafe96902019-07-05 15:49:48 +053070 int cpu, ret;
Christian Krafft74889e42007-07-20 21:39:22 +020071
72 BUG_ON(pmi_msg.type != PMI_TYPE_FREQ_CHANGE);
73
74 node = pmi_msg.data1;
75 slow_mode = pmi_msg.data2;
76
Viresh Kumarafe96902019-07-05 15:49:48 +053077 cpu = cbe_node_to_cpu(node);
Christian Krafft74889e42007-07-20 21:39:22 +020078
79 pr_debug("cbe_handle_pmi: node: %d max_freq: %d\n", node, slow_mode);
Christian Krafft74889e42007-07-20 21:39:22 +020080
Viresh Kumarafe96902019-07-05 15:49:48 +053081 policy = cpufreq_cpu_get(cpu);
82 if (!policy) {
83 pr_warn("cpufreq policy not found cpu%d\n", cpu);
84 return;
Christian Krafft74889e42007-07-20 21:39:22 +020085 }
86
Viresh Kumarafe96902019-07-05 15:49:48 +053087 req = policy->driver_data;
Christian Krafft74889e42007-07-20 21:39:22 +020088
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +020089 ret = freq_qos_update_request(req,
Viresh Kumarafe96902019-07-05 15:49:48 +053090 policy->freq_table[slow_mode].frequency);
91 if (ret < 0)
92 pr_warn("Failed to update freq constraint: %d\n", ret);
93 else
94 pr_debug("limiting node %d to slow mode %d\n", node, slow_mode);
95
96 cpufreq_cpu_put(policy);
97}
Christian Krafft74889e42007-07-20 21:39:22 +020098
99static struct pmi_handler cbe_pmi_handler = {
100 .type = PMI_TYPE_FREQ_CHANGE,
101 .handle_pmi_message = cbe_cpufreq_handle_pmi,
102};
103
Viresh Kumarafe96902019-07-05 15:49:48 +0530104void cbe_cpufreq_pmi_policy_init(struct cpufreq_policy *policy)
Christian Krafft74889e42007-07-20 21:39:22 +0200105{
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200106 struct freq_qos_request *req;
Viresh Kumarafe96902019-07-05 15:49:48 +0530107 int ret;
Christian Krafft74889e42007-07-20 21:39:22 +0200108
109 if (!cbe_cpufreq_has_pmi)
Viresh Kumarafe96902019-07-05 15:49:48 +0530110 return;
Christian Krafft74889e42007-07-20 21:39:22 +0200111
Viresh Kumarafe96902019-07-05 15:49:48 +0530112 req = kzalloc(sizeof(*req), GFP_KERNEL);
113 if (!req)
114 return;
Christian Krafft74889e42007-07-20 21:39:22 +0200115
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200116 ret = freq_qos_add_request(&policy->constraints, req, FREQ_QOS_MAX,
117 policy->freq_table[0].frequency);
Viresh Kumarafe96902019-07-05 15:49:48 +0530118 if (ret < 0) {
119 pr_err("Failed to add freq constraint (%d)\n", ret);
120 kfree(req);
121 return;
122 }
123
124 policy->driver_data = req;
Christian Krafft74889e42007-07-20 21:39:22 +0200125}
Viresh Kumarafe96902019-07-05 15:49:48 +0530126EXPORT_SYMBOL_GPL(cbe_cpufreq_pmi_policy_init);
127
128void cbe_cpufreq_pmi_policy_exit(struct cpufreq_policy *policy)
129{
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200130 struct freq_qos_request *req = policy->driver_data;
Viresh Kumarafe96902019-07-05 15:49:48 +0530131
132 if (cbe_cpufreq_has_pmi) {
Rafael J. Wysocki3000ce32019-10-16 12:47:06 +0200133 freq_qos_remove_request(req);
Viresh Kumarafe96902019-07-05 15:49:48 +0530134 kfree(req);
135 }
136}
137EXPORT_SYMBOL_GPL(cbe_cpufreq_pmi_policy_exit);
138
139void cbe_cpufreq_pmi_init(void)
140{
141 if (!pmi_register_handler(&cbe_pmi_handler))
142 cbe_cpufreq_has_pmi = true;
143}
144EXPORT_SYMBOL_GPL(cbe_cpufreq_pmi_init);
145
146void cbe_cpufreq_pmi_exit(void)
147{
148 pmi_unregister_handler(&cbe_pmi_handler);
149 cbe_cpufreq_has_pmi = false;
150}
151EXPORT_SYMBOL_GPL(cbe_cpufreq_pmi_exit);