2 * pmi backend for the cbe_cpufreq driver
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005-2007
6 * Author: Christian Krafft <krafft@de.ibm.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/kernel.h>
24 #include <linux/types.h>
25 #include <linux/timer.h>
26 #include <linux/module.h>
27 #include <linux/of_platform.h>
29 #include <asm/processor.h>
32 #include <asm/cell-regs.h>
38 #include "ppc_cbe_cpufreq.h"
40 static u8 pmi_slow_mode_limit
[MAX_CBE
];
42 bool cbe_cpufreq_has_pmi
= false;
43 EXPORT_SYMBOL_GPL(cbe_cpufreq_has_pmi
);
46 * hardware specific functions
49 int cbe_cpufreq_set_pmode_pmi(int cpu
, unsigned int pmode
)
52 pmi_message_t pmi_msg
;
56 pmi_msg
.type
= PMI_TYPE_FREQ_CHANGE
;
57 pmi_msg
.data1
= cbe_cpu_to_node(cpu
);
58 pmi_msg
.data2
= pmode
;
63 pmi_send_message(pmi_msg
);
66 time
= jiffies
- time
;
67 time
= jiffies_to_msecs(time
);
68 pr_debug("had to wait %lu ms for a transition using " \
72 pr_debug("PMI returned slow mode %d\n", ret
);
76 EXPORT_SYMBOL_GPL(cbe_cpufreq_set_pmode_pmi
);
79 static void cbe_cpufreq_handle_pmi(pmi_message_t pmi_msg
)
83 BUG_ON(pmi_msg
.type
!= PMI_TYPE_FREQ_CHANGE
);
86 slow_mode
= pmi_msg
.data2
;
88 pmi_slow_mode_limit
[node
] = slow_mode
;
90 pr_debug("cbe_handle_pmi: node: %d max_freq: %d\n", node
, slow_mode
);
93 static int pmi_notifier(struct notifier_block
*nb
,
94 unsigned long event
, void *data
)
96 struct cpufreq_policy
*policy
= data
;
97 struct cpufreq_frequency_table
*cbe_freqs
;
100 /* Should this really be called for CPUFREQ_ADJUST, CPUFREQ_INCOMPATIBLE
101 * and CPUFREQ_NOTIFY policy events?)
103 if (event
== CPUFREQ_START
)
106 cbe_freqs
= cpufreq_frequency_get_table(policy
->cpu
);
107 node
= cbe_cpu_to_node(policy
->cpu
);
109 pr_debug("got notified, event=%lu, node=%u\n", event
, node
);
111 if (pmi_slow_mode_limit
[node
] != 0) {
112 pr_debug("limiting node %d to slow mode %d\n",
113 node
, pmi_slow_mode_limit
[node
]);
115 cpufreq_verify_within_limits(policy
, 0,
117 cbe_freqs
[pmi_slow_mode_limit
[node
]].frequency
);
123 static struct notifier_block pmi_notifier_block
= {
124 .notifier_call
= pmi_notifier
,
127 static struct pmi_handler cbe_pmi_handler
= {
128 .type
= PMI_TYPE_FREQ_CHANGE
,
129 .handle_pmi_message
= cbe_cpufreq_handle_pmi
,
134 static int __init
cbe_cpufreq_pmi_init(void)
136 cbe_cpufreq_has_pmi
= pmi_register_handler(&cbe_pmi_handler
) == 0;
138 if (!cbe_cpufreq_has_pmi
)
141 cpufreq_register_notifier(&pmi_notifier_block
, CPUFREQ_POLICY_NOTIFIER
);
146 static void __exit
cbe_cpufreq_pmi_exit(void)
148 cpufreq_unregister_notifier(&pmi_notifier_block
, CPUFREQ_POLICY_NOTIFIER
);
149 pmi_unregister_handler(&cbe_pmi_handler
);
152 module_init(cbe_cpufreq_pmi_init
);
153 module_exit(cbe_cpufreq_pmi_exit
);
155 MODULE_LICENSE("GPL");
156 MODULE_AUTHOR("Christian Krafft <krafft@de.ibm.com>");