blob: 22f33ff2d77ab286374e230c0855c33514063475 [file] [log] [blame]
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +05301/*
2 * POWERNV cpufreq driver for the IBM POWER processors
3 *
4 * (C) Copyright IBM 2014
5 *
6 * Author: Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>
7 *
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)
11 * any later version.
12 *
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.
17 *
18 */
19
20#define pr_fmt(fmt) "powernv-cpufreq: " fmt
21
22#include <linux/kernel.h>
23#include <linux/sysfs.h>
24#include <linux/cpumask.h>
25#include <linux/module.h>
26#include <linux/cpufreq.h>
27#include <linux/smp.h>
28#include <linux/of.h>
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +020029#include <linux/reboot.h>
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053030#include <linux/slab.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053031
32#include <asm/cputhreads.h>
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +053033#include <asm/firmware.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053034#include <asm/reg.h>
Srivatsa S. Bhatf3cae352014-04-16 11:35:38 +053035#include <asm/smp.h> /* Required for cpu_sibling_mask() in UP configs */
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +053036#include <asm/opal.h>
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053037
38#define POWERNV_MAX_PSTATES 256
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +053039#define PMSR_PSAFE_ENABLE (1UL << 30)
40#define PMSR_SPR_EM_DISABLE (1UL << 31)
41#define PMSR_MAX(x) ((x >> 32) & 0xFF)
42#define PMSR_LP(x) ((x >> 48) & 0xFF)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053043
44static struct cpufreq_frequency_table powernv_freqs[POWERNV_MAX_PSTATES+1];
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +053045static bool rebooting, throttled, occ_reset;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053046
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053047static struct chip {
48 unsigned int id;
49 bool throttled;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +053050 cpumask_t mask;
51 struct work_struct throttle;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +053052} *chips;
53
54static int nr_chips;
55
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +053056/*
57 * Note: The set of pstates consists of contiguous integers, the
58 * smallest of which is indicated by powernv_pstate_info.min, the
59 * largest of which is indicated by powernv_pstate_info.max.
60 *
61 * The nominal pstate is the highest non-turbo pstate in this
62 * platform. This is indicated by powernv_pstate_info.nominal.
63 */
64static struct powernv_pstate_info {
65 int min;
66 int max;
67 int nominal;
68 int nr_pstates;
69} powernv_pstate_info;
70
71/*
72 * Initialize the freq table based on data obtained
73 * from the firmware passed via device-tree
74 */
75static int init_powernv_pstates(void)
76{
77 struct device_node *power_mgt;
78 int i, pstate_min, pstate_max, pstate_nominal, nr_pstates = 0;
79 const __be32 *pstate_ids, *pstate_freqs;
80 u32 len_ids, len_freqs;
81
82 power_mgt = of_find_node_by_path("/ibm,opal/power-mgt");
83 if (!power_mgt) {
84 pr_warn("power-mgt node not found\n");
85 return -ENODEV;
86 }
87
88 if (of_property_read_u32(power_mgt, "ibm,pstate-min", &pstate_min)) {
89 pr_warn("ibm,pstate-min node not found\n");
90 return -ENODEV;
91 }
92
93 if (of_property_read_u32(power_mgt, "ibm,pstate-max", &pstate_max)) {
94 pr_warn("ibm,pstate-max node not found\n");
95 return -ENODEV;
96 }
97
98 if (of_property_read_u32(power_mgt, "ibm,pstate-nominal",
99 &pstate_nominal)) {
100 pr_warn("ibm,pstate-nominal not found\n");
101 return -ENODEV;
102 }
103 pr_info("cpufreq pstate min %d nominal %d max %d\n", pstate_min,
104 pstate_nominal, pstate_max);
105
106 pstate_ids = of_get_property(power_mgt, "ibm,pstate-ids", &len_ids);
107 if (!pstate_ids) {
108 pr_warn("ibm,pstate-ids not found\n");
109 return -ENODEV;
110 }
111
112 pstate_freqs = of_get_property(power_mgt, "ibm,pstate-frequencies-mhz",
113 &len_freqs);
114 if (!pstate_freqs) {
115 pr_warn("ibm,pstate-frequencies-mhz not found\n");
116 return -ENODEV;
117 }
118
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530119 if (len_ids != len_freqs) {
120 pr_warn("Entries in ibm,pstate-ids and "
121 "ibm,pstate-frequencies-mhz does not match\n");
122 }
123
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530124 nr_pstates = min(len_ids, len_freqs) / sizeof(u32);
125 if (!nr_pstates) {
126 pr_warn("No PStates found\n");
127 return -ENODEV;
128 }
129
130 pr_debug("NR PStates %d\n", nr_pstates);
131 for (i = 0; i < nr_pstates; i++) {
132 u32 id = be32_to_cpu(pstate_ids[i]);
133 u32 freq = be32_to_cpu(pstate_freqs[i]);
134
135 pr_debug("PState id %d freq %d MHz\n", id, freq);
136 powernv_freqs[i].frequency = freq * 1000; /* kHz */
Gautham R. Shenoy0692c692014-04-01 12:43:27 +0530137 powernv_freqs[i].driver_data = id;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530138 }
139 /* End of list marker entry */
140 powernv_freqs[i].frequency = CPUFREQ_TABLE_END;
141
142 powernv_pstate_info.min = pstate_min;
143 powernv_pstate_info.max = pstate_max;
144 powernv_pstate_info.nominal = pstate_nominal;
145 powernv_pstate_info.nr_pstates = nr_pstates;
146
147 return 0;
148}
149
150/* Returns the CPU frequency corresponding to the pstate_id. */
151static unsigned int pstate_id_to_freq(int pstate_id)
152{
153 int i;
154
155 i = powernv_pstate_info.max - pstate_id;
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530156 if (i >= powernv_pstate_info.nr_pstates || i < 0) {
157 pr_warn("PState id %d outside of PState table, "
158 "reporting nominal id %d instead\n",
159 pstate_id, powernv_pstate_info.nominal);
160 i = powernv_pstate_info.max - powernv_pstate_info.nominal;
161 }
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530162
163 return powernv_freqs[i].frequency;
164}
165
166/*
167 * cpuinfo_nominal_freq_show - Show the nominal CPU frequency as indicated by
168 * the firmware
169 */
170static ssize_t cpuinfo_nominal_freq_show(struct cpufreq_policy *policy,
171 char *buf)
172{
173 return sprintf(buf, "%u\n",
174 pstate_id_to_freq(powernv_pstate_info.nominal));
175}
176
177struct freq_attr cpufreq_freq_attr_cpuinfo_nominal_freq =
178 __ATTR_RO(cpuinfo_nominal_freq);
179
180static struct freq_attr *powernv_cpu_freq_attr[] = {
181 &cpufreq_freq_attr_scaling_available_freqs,
182 &cpufreq_freq_attr_cpuinfo_nominal_freq,
183 NULL,
184};
185
186/* Helper routines */
187
188/* Access helpers to power mgt SPR */
189
190static inline unsigned long get_pmspr(unsigned long sprn)
191{
192 switch (sprn) {
193 case SPRN_PMCR:
194 return mfspr(SPRN_PMCR);
195
196 case SPRN_PMICR:
197 return mfspr(SPRN_PMICR);
198
199 case SPRN_PMSR:
200 return mfspr(SPRN_PMSR);
201 }
202 BUG();
203}
204
205static inline void set_pmspr(unsigned long sprn, unsigned long val)
206{
207 switch (sprn) {
208 case SPRN_PMCR:
209 mtspr(SPRN_PMCR, val);
210 return;
211
212 case SPRN_PMICR:
213 mtspr(SPRN_PMICR, val);
214 return;
215 }
216 BUG();
217}
218
219/*
220 * Use objects of this type to query/update
221 * pstates on a remote CPU via smp_call_function.
222 */
223struct powernv_smp_call_data {
224 unsigned int freq;
225 int pstate_id;
226};
227
228/*
229 * powernv_read_cpu_freq: Reads the current frequency on this CPU.
230 *
231 * Called via smp_call_function.
232 *
233 * Note: The caller of the smp_call_function should pass an argument of
234 * the type 'struct powernv_smp_call_data *' along with this function.
235 *
236 * The current frequency on this CPU will be returned via
237 * ((struct powernv_smp_call_data *)arg)->freq;
238 */
239static void powernv_read_cpu_freq(void *arg)
240{
241 unsigned long pmspr_val;
242 s8 local_pstate_id;
243 struct powernv_smp_call_data *freq_data = arg;
244
245 pmspr_val = get_pmspr(SPRN_PMSR);
246
247 /*
248 * The local pstate id corresponds bits 48..55 in the PMSR.
249 * Note: Watch out for the sign!
250 */
251 local_pstate_id = (pmspr_val >> 48) & 0xFF;
252 freq_data->pstate_id = local_pstate_id;
253 freq_data->freq = pstate_id_to_freq(freq_data->pstate_id);
254
255 pr_debug("cpu %d pmsr %016lX pstate_id %d frequency %d kHz\n",
256 raw_smp_processor_id(), pmspr_val, freq_data->pstate_id,
257 freq_data->freq);
258}
259
260/*
261 * powernv_cpufreq_get: Returns the CPU frequency as reported by the
262 * firmware for CPU 'cpu'. This value is reported through the sysfs
263 * file cpuinfo_cur_freq.
264 */
Brian Norris60d1ea42014-05-11 00:51:20 -0700265static unsigned int powernv_cpufreq_get(unsigned int cpu)
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530266{
267 struct powernv_smp_call_data freq_data;
268
269 smp_call_function_any(cpu_sibling_mask(cpu), powernv_read_cpu_freq,
270 &freq_data, 1);
271
272 return freq_data.freq;
273}
274
275/*
276 * set_pstate: Sets the pstate on this CPU.
277 *
278 * This is called via an smp_call_function.
279 *
280 * The caller must ensure that freq_data is of the type
281 * (struct powernv_smp_call_data *) and the pstate_id which needs to be set
282 * on this CPU should be present in freq_data->pstate_id.
283 */
284static void set_pstate(void *freq_data)
285{
286 unsigned long val;
287 unsigned long pstate_ul =
288 ((struct powernv_smp_call_data *) freq_data)->pstate_id;
289
290 val = get_pmspr(SPRN_PMCR);
291 val = val & 0x0000FFFFFFFFFFFFULL;
292
293 pstate_ul = pstate_ul & 0xFF;
294
295 /* Set both global(bits 56..63) and local(bits 48..55) PStates */
296 val = val | (pstate_ul << 56) | (pstate_ul << 48);
297
298 pr_debug("Setting cpu %d pmcr to %016lX\n",
299 raw_smp_processor_id(), val);
300 set_pmspr(SPRN_PMCR, val);
301}
302
303/*
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200304 * get_nominal_index: Returns the index corresponding to the nominal
305 * pstate in the cpufreq table
306 */
307static inline unsigned int get_nominal_index(void)
308{
309 return powernv_pstate_info.max - powernv_pstate_info.nominal;
310}
311
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530312static void powernv_cpufreq_throttle_check(void *data)
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530313{
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530314 unsigned int cpu = smp_processor_id();
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530315 unsigned long pmsr;
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530316 int pmsr_pmax, pmsr_lp, i;
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530317
318 pmsr = get_pmspr(SPRN_PMSR);
319
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530320 for (i = 0; i < nr_chips; i++)
321 if (chips[i].id == cpu_to_chip_id(cpu))
322 break;
323
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530324 /* Check for Pmax Capping */
325 pmsr_pmax = (s8)PMSR_MAX(pmsr);
326 if (pmsr_pmax != powernv_pstate_info.max) {
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530327 if (chips[i].throttled)
328 goto next;
329 chips[i].throttled = true;
330 pr_info("CPU %d on Chip %u has Pmax reduced to %d\n", cpu,
331 chips[i].id, pmsr_pmax);
332 } else if (chips[i].throttled) {
333 chips[i].throttled = false;
334 pr_info("CPU %d on Chip %u has Pmax restored to %d\n", cpu,
335 chips[i].id, pmsr_pmax);
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530336 }
337
338 /*
339 * Check for Psafe by reading LocalPstate
340 * or check if Psafe_mode_active is set in PMSR.
341 */
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530342next:
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530343 pmsr_lp = (s8)PMSR_LP(pmsr);
344 if ((pmsr_lp < powernv_pstate_info.min) ||
345 (pmsr & PMSR_PSAFE_ENABLE)) {
346 throttled = true;
347 pr_info("Pstate set to safe frequency\n");
348 }
349
350 /* Check if SPR_EM_DISABLE is set in PMSR */
351 if (pmsr & PMSR_SPR_EM_DISABLE) {
352 throttled = true;
353 pr_info("Frequency Control disabled from OS\n");
354 }
355
356 if (throttled) {
357 pr_info("PMSR = %16lx\n", pmsr);
358 pr_crit("CPU Frequency could be throttled\n");
359 }
360}
361
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200362/*
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530363 * powernv_cpufreq_target_index: Sets the frequency corresponding to
364 * the cpufreq table entry indexed by new_index on the cpus in the
365 * mask policy->cpus
366 */
367static int powernv_cpufreq_target_index(struct cpufreq_policy *policy,
368 unsigned int new_index)
369{
370 struct powernv_smp_call_data freq_data;
371
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200372 if (unlikely(rebooting) && new_index != get_nominal_index())
373 return 0;
374
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530375 if (!throttled)
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530376 powernv_cpufreq_throttle_check(NULL);
Shilpasri G Bhat09a972d2015-04-01 15:16:34 +0530377
Gautham R. Shenoy0692c692014-04-01 12:43:27 +0530378 freq_data.pstate_id = powernv_freqs[new_index].driver_data;
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530379
380 /*
381 * Use smp_call_function to send IPI and execute the
382 * mtspr on target CPU. We could do that without IPI
383 * if current CPU is within policy->cpus (core)
384 */
385 smp_call_function_any(policy->cpus, set_pstate, &freq_data, 1);
386
387 return 0;
388}
389
390static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy)
391{
392 int base, i;
393
394 base = cpu_first_thread_sibling(policy->cpu);
395
396 for (i = 0; i < threads_per_core; i++)
397 cpumask_set_cpu(base + i, policy->cpus);
398
399 return cpufreq_table_validate_and_show(policy, powernv_freqs);
400}
401
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200402static int powernv_cpufreq_reboot_notifier(struct notifier_block *nb,
403 unsigned long action, void *unused)
404{
405 int cpu;
406 struct cpufreq_policy cpu_policy;
407
408 rebooting = true;
409 for_each_online_cpu(cpu) {
410 cpufreq_get_policy(&cpu_policy, cpu);
411 powernv_cpufreq_target_index(&cpu_policy, get_nominal_index());
412 }
413
414 return NOTIFY_DONE;
415}
416
417static struct notifier_block powernv_cpufreq_reboot_nb = {
418 .notifier_call = powernv_cpufreq_reboot_notifier,
419};
420
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530421void powernv_cpufreq_work_fn(struct work_struct *work)
422{
423 struct chip *chip = container_of(work, struct chip, throttle);
424
425 smp_call_function_any(&chip->mask,
426 powernv_cpufreq_throttle_check, NULL, 0);
427}
428
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530429static char throttle_reason[][30] = {
430 "No throttling",
431 "Power Cap",
432 "Processor Over Temperature",
433 "Power Supply Failure",
434 "Over Current",
435 "OCC Reset"
436 };
437
438static int powernv_cpufreq_occ_msg(struct notifier_block *nb,
439 unsigned long msg_type, void *_msg)
440{
441 struct opal_msg *msg = _msg;
442 struct opal_occ_msg omsg;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530443 int i;
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530444
445 if (msg_type != OPAL_MSG_OCC)
446 return 0;
447
448 omsg.type = be64_to_cpu(msg->params[0]);
449
450 switch (omsg.type) {
451 case OCC_RESET:
452 occ_reset = true;
453 /*
454 * powernv_cpufreq_throttle_check() is called in
455 * target() callback which can detect the throttle state
456 * for governors like ondemand.
457 * But static governors will not call target() often thus
458 * report throttling here.
459 */
460 if (!throttled) {
461 throttled = true;
462 pr_crit("CPU Frequency is throttled\n");
463 }
464 pr_info("OCC: Reset\n");
465 break;
466 case OCC_LOAD:
467 pr_info("OCC: Loaded\n");
468 break;
469 case OCC_THROTTLE:
470 omsg.chip = be64_to_cpu(msg->params[1]);
471 omsg.throttle_status = be64_to_cpu(msg->params[2]);
472
473 if (occ_reset) {
474 occ_reset = false;
475 throttled = false;
476 pr_info("OCC: Active\n");
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530477
478 for (i = 0; i < nr_chips; i++)
479 schedule_work(&chips[i].throttle);
480
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530481 return 0;
482 }
483
484 if (omsg.throttle_status &&
485 omsg.throttle_status <= OCC_MAX_THROTTLE_STATUS)
486 pr_info("OCC: Chip %u Pmax reduced due to %s\n",
487 (unsigned int)omsg.chip,
488 throttle_reason[omsg.throttle_status]);
489 else if (!omsg.throttle_status)
490 pr_info("OCC: Chip %u %s\n", (unsigned int)omsg.chip,
491 throttle_reason[omsg.throttle_status]);
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530492 else
493 return 0;
494
495 for (i = 0; i < nr_chips; i++)
496 if (chips[i].id == omsg.chip)
497 schedule_work(&chips[i].throttle);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530498 }
499 return 0;
500}
501
502static struct notifier_block powernv_cpufreq_opal_nb = {
503 .notifier_call = powernv_cpufreq_occ_msg,
504 .next = NULL,
505 .priority = 0,
506};
507
Preeti U Murthyb1203392014-09-29 15:47:53 +0200508static void powernv_cpufreq_stop_cpu(struct cpufreq_policy *policy)
509{
510 struct powernv_smp_call_data freq_data;
511
512 freq_data.pstate_id = powernv_pstate_info.min;
513 smp_call_function_single(policy->cpu, set_pstate, &freq_data, 1);
514}
515
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530516static struct cpufreq_driver powernv_cpufreq_driver = {
517 .name = "powernv-cpufreq",
518 .flags = CPUFREQ_CONST_LOOPS,
519 .init = powernv_cpufreq_cpu_init,
520 .verify = cpufreq_generic_frequency_table_verify,
521 .target_index = powernv_cpufreq_target_index,
522 .get = powernv_cpufreq_get,
Preeti U Murthyb1203392014-09-29 15:47:53 +0200523 .stop_cpu = powernv_cpufreq_stop_cpu,
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530524 .attr = powernv_cpu_freq_attr,
525};
526
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530527static int init_chip_info(void)
528{
529 unsigned int chip[256];
530 unsigned int cpu, i;
531 unsigned int prev_chip_id = UINT_MAX;
532
533 for_each_possible_cpu(cpu) {
534 unsigned int id = cpu_to_chip_id(cpu);
535
536 if (prev_chip_id != id) {
537 prev_chip_id = id;
538 chip[nr_chips++] = id;
539 }
540 }
541
542 chips = kmalloc_array(nr_chips, sizeof(struct chip), GFP_KERNEL);
543 if (!chips)
544 return -ENOMEM;
545
546 for (i = 0; i < nr_chips; i++) {
547 chips[i].id = chip[i];
548 chips[i].throttled = false;
Shilpasri G Bhat735366f2015-07-16 13:34:21 +0530549 cpumask_copy(&chips[i].mask, cpumask_of_node(chip[i]));
550 INIT_WORK(&chips[i].throttle, powernv_cpufreq_work_fn);
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530551 }
552
553 return 0;
554}
555
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530556static int __init powernv_cpufreq_init(void)
557{
558 int rc = 0;
559
Vaidyanathan Srinivasan6174bac2014-08-03 14:54:05 +0530560 /* Don't probe on pseries (guest) platforms */
561 if (!firmware_has_feature(FW_FEATURE_OPALv3))
562 return -ENODEV;
563
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530564 /* Discover pstates from device tree and init */
565 rc = init_powernv_pstates();
566 if (rc) {
567 pr_info("powernv-cpufreq disabled. System does not support PState control\n");
568 return rc;
569 }
570
Shilpasri G Bhat053819e2015-07-16 13:34:18 +0530571 /* Populate chip info */
572 rc = init_chip_info();
573 if (rc)
574 return rc;
575
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200576 register_reboot_notifier(&powernv_cpufreq_reboot_nb);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530577 opal_message_notifier_register(OPAL_MSG_OCC, &powernv_cpufreq_opal_nb);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530578 return cpufreq_register_driver(&powernv_cpufreq_driver);
579}
580module_init(powernv_cpufreq_init);
581
582static void __exit powernv_cpufreq_exit(void)
583{
Shilpasri G Bhatcf30af762014-09-29 15:49:11 +0200584 unregister_reboot_notifier(&powernv_cpufreq_reboot_nb);
Shilpasri G Bhatcb166fa2015-07-16 13:34:20 +0530585 opal_message_notifier_unregister(OPAL_MSG_OCC,
586 &powernv_cpufreq_opal_nb);
Vaidyanathan Srinivasanb3d627a2014-04-01 12:43:26 +0530587 cpufreq_unregister_driver(&powernv_cpufreq_driver);
588}
589module_exit(powernv_cpufreq_exit);
590
591MODULE_LICENSE("GPL");
592MODULE_AUTHOR("Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>");