2 * intel_pstate.c: Native P state management for Intel processors
4 * (C) Copyright 2012 Intel Corporation
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; version 2
13 #include <linux/kernel.h>
14 #include <linux/kernel_stat.h>
15 #include <linux/module.h>
16 #include <linux/ktime.h>
17 #include <linux/hrtimer.h>
18 #include <linux/tick.h>
19 #include <linux/slab.h>
20 #include <linux/sched.h>
21 #include <linux/list.h>
22 #include <linux/cpu.h>
23 #include <linux/cpufreq.h>
24 #include <linux/sysfs.h>
25 #include <linux/types.h>
27 #include <linux/debugfs.h>
28 #include <linux/acpi.h>
29 #include <trace/events/power.h>
31 #include <asm/div64.h>
33 #include <asm/cpu_device_id.h>
35 #define BYT_RATIOS 0x66a
36 #define BYT_VIDS 0x66b
37 #define BYT_TURBO_RATIOS 0x66c
38 #define BYT_TURBO_VIDS 0x66d
42 #define int_tofp(X) ((int64_t)(X) << FRAC_BITS)
43 #define fp_toint(X) ((X) >> FRAC_BITS)
46 static inline int32_t mul_fp(int32_t x, int32_t y)
48 return ((int64_t)x * (int64_t)y) >> FRAC_BITS;
51 static inline int32_t div_fp(int32_t x, int32_t y)
53 return div_s64((int64_t)x << FRAC_BITS, (int64_t)y);
57 int32_t core_pct_busy;
91 struct timer_list timer;
93 struct pstate_data pstate;
97 ktime_t last_sample_time;
100 struct sample sample;
103 static struct cpudata **all_cpu_data;
104 struct pstate_adjust_policy {
113 struct pstate_funcs {
114 int (*get_max)(void);
115 int (*get_min)(void);
116 int (*get_turbo)(void);
117 void (*set)(struct cpudata*, int pstate);
118 void (*get_vid)(struct cpudata *);
121 struct cpu_defaults {
122 struct pstate_adjust_policy pid_policy;
123 struct pstate_funcs funcs;
126 static struct pstate_adjust_policy pid_params;
127 static struct pstate_funcs pstate_funcs;
139 static struct perf_limits limits = {
142 .max_perf = int_tofp(1),
145 .max_policy_pct = 100,
146 .max_sysfs_pct = 100,
149 static inline void pid_reset(struct _pid *pid, int setpoint, int busy,
150 int deadband, int integral) {
151 pid->setpoint = setpoint;
152 pid->deadband = deadband;
153 pid->integral = int_tofp(integral);
154 pid->last_err = int_tofp(setpoint) - int_tofp(busy);
157 static inline void pid_p_gain_set(struct _pid *pid, int percent)
159 pid->p_gain = div_fp(int_tofp(percent), int_tofp(100));
162 static inline void pid_i_gain_set(struct _pid *pid, int percent)
164 pid->i_gain = div_fp(int_tofp(percent), int_tofp(100));
167 static inline void pid_d_gain_set(struct _pid *pid, int percent)
170 pid->d_gain = div_fp(int_tofp(percent), int_tofp(100));
173 static signed int pid_calc(struct _pid *pid, int32_t busy)
176 int32_t pterm, dterm, fp_error;
177 int32_t integral_limit;
179 fp_error = int_tofp(pid->setpoint) - busy;
181 if (abs(fp_error) <= int_tofp(pid->deadband))
184 pterm = mul_fp(pid->p_gain, fp_error);
186 pid->integral += fp_error;
188 /* limit the integral term */
189 integral_limit = int_tofp(30);
190 if (pid->integral > integral_limit)
191 pid->integral = integral_limit;
192 if (pid->integral < -integral_limit)
193 pid->integral = -integral_limit;
195 dterm = mul_fp(pid->d_gain, fp_error - pid->last_err);
196 pid->last_err = fp_error;
198 result = pterm + mul_fp(pid->integral, pid->i_gain) + dterm;
199 result = result + (1 << (FRAC_BITS-1));
200 return (signed int)fp_toint(result);
203 static inline void intel_pstate_busy_pid_reset(struct cpudata *cpu)
205 pid_p_gain_set(&cpu->pid, pid_params.p_gain_pct);
206 pid_d_gain_set(&cpu->pid, pid_params.d_gain_pct);
207 pid_i_gain_set(&cpu->pid, pid_params.i_gain_pct);
216 static inline void intel_pstate_reset_all_pid(void)
219 for_each_online_cpu(cpu) {
220 if (all_cpu_data[cpu])
221 intel_pstate_busy_pid_reset(all_cpu_data[cpu]);
225 /************************** debugfs begin ************************/
226 static int pid_param_set(void *data, u64 val)
229 intel_pstate_reset_all_pid();
232 static int pid_param_get(void *data, u64 *val)
237 DEFINE_SIMPLE_ATTRIBUTE(fops_pid_param, pid_param_get,
238 pid_param_set, "%llu\n");
245 static struct pid_param pid_files[] = {
246 {"sample_rate_ms", &pid_params.sample_rate_ms},
247 {"d_gain_pct", &pid_params.d_gain_pct},
248 {"i_gain_pct", &pid_params.i_gain_pct},
249 {"deadband", &pid_params.deadband},
250 {"setpoint", &pid_params.setpoint},
251 {"p_gain_pct", &pid_params.p_gain_pct},
255 static struct dentry *debugfs_parent;
256 static void intel_pstate_debug_expose_params(void)
260 debugfs_parent = debugfs_create_dir("pstate_snb", NULL);
261 if (IS_ERR_OR_NULL(debugfs_parent))
263 while (pid_files[i].name) {
264 debugfs_create_file(pid_files[i].name, 0660,
265 debugfs_parent, pid_files[i].value,
271 /************************** debugfs end ************************/
273 /************************** sysfs begin ************************/
274 #define show_one(file_name, object) \
275 static ssize_t show_##file_name \
276 (struct kobject *kobj, struct attribute *attr, char *buf) \
278 return sprintf(buf, "%u\n", limits.object); \
281 static ssize_t store_no_turbo(struct kobject *a, struct attribute *b,
282 const char *buf, size_t count)
286 ret = sscanf(buf, "%u", &input);
289 limits.no_turbo = clamp_t(int, input, 0 , 1);
294 static ssize_t store_max_perf_pct(struct kobject *a, struct attribute *b,
295 const char *buf, size_t count)
299 ret = sscanf(buf, "%u", &input);
303 limits.max_sysfs_pct = clamp_t(int, input, 0 , 100);
304 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
305 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
309 static ssize_t store_min_perf_pct(struct kobject *a, struct attribute *b,
310 const char *buf, size_t count)
314 ret = sscanf(buf, "%u", &input);
317 limits.min_perf_pct = clamp_t(int, input, 0 , 100);
318 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
323 show_one(no_turbo, no_turbo);
324 show_one(max_perf_pct, max_perf_pct);
325 show_one(min_perf_pct, min_perf_pct);
327 define_one_global_rw(no_turbo);
328 define_one_global_rw(max_perf_pct);
329 define_one_global_rw(min_perf_pct);
331 static struct attribute *intel_pstate_attributes[] = {
338 static struct attribute_group intel_pstate_attr_group = {
339 .attrs = intel_pstate_attributes,
341 static struct kobject *intel_pstate_kobject;
343 static void intel_pstate_sysfs_expose_params(void)
347 intel_pstate_kobject = kobject_create_and_add("intel_pstate",
348 &cpu_subsys.dev_root->kobj);
349 BUG_ON(!intel_pstate_kobject);
350 rc = sysfs_create_group(intel_pstate_kobject,
351 &intel_pstate_attr_group);
355 /************************** sysfs end ************************/
356 static int byt_get_min_pstate(void)
359 rdmsrl(BYT_RATIOS, value);
360 return (value >> 8) & 0x3F;
363 static int byt_get_max_pstate(void)
366 rdmsrl(BYT_RATIOS, value);
367 return (value >> 16) & 0x3F;
370 static int byt_get_turbo_pstate(void)
373 rdmsrl(BYT_TURBO_RATIOS, value);
377 static void byt_set_pstate(struct cpudata *cpudata, int pstate)
387 vid_fp = cpudata->vid.min + mul_fp(
388 int_tofp(pstate - cpudata->pstate.min_pstate),
391 vid_fp = clamp_t(int32_t, vid_fp, cpudata->vid.min, cpudata->vid.max);
392 vid = fp_toint(vid_fp);
394 if (pstate > cpudata->pstate.max_pstate)
395 vid = cpudata->vid.turbo;
399 wrmsrl(MSR_IA32_PERF_CTL, val);
402 static void byt_get_vid(struct cpudata *cpudata)
407 rdmsrl(BYT_VIDS, value);
408 cpudata->vid.min = int_tofp((value >> 8) & 0x3f);
409 cpudata->vid.max = int_tofp((value >> 16) & 0x3f);
410 cpudata->vid.ratio = div_fp(
411 cpudata->vid.max - cpudata->vid.min,
412 int_tofp(cpudata->pstate.max_pstate -
413 cpudata->pstate.min_pstate));
415 rdmsrl(BYT_TURBO_VIDS, value);
416 cpudata->vid.turbo = value & 0x7f;
420 static int core_get_min_pstate(void)
423 rdmsrl(MSR_PLATFORM_INFO, value);
424 return (value >> 40) & 0xFF;
427 static int core_get_max_pstate(void)
430 rdmsrl(MSR_PLATFORM_INFO, value);
431 return (value >> 8) & 0xFF;
434 static int core_get_turbo_pstate(void)
438 rdmsrl(MSR_NHM_TURBO_RATIO_LIMIT, value);
439 nont = core_get_max_pstate();
440 ret = ((value) & 255);
446 static void core_set_pstate(struct cpudata *cpudata, int pstate)
454 wrmsrl_on_cpu(cpudata->cpu, MSR_IA32_PERF_CTL, val);
457 static struct cpu_defaults core_params = {
459 .sample_rate_ms = 10,
467 .get_max = core_get_max_pstate,
468 .get_min = core_get_min_pstate,
469 .get_turbo = core_get_turbo_pstate,
470 .set = core_set_pstate,
474 static struct cpu_defaults byt_params = {
476 .sample_rate_ms = 10,
484 .get_max = byt_get_max_pstate,
485 .get_min = byt_get_min_pstate,
486 .get_turbo = byt_get_turbo_pstate,
487 .set = byt_set_pstate,
488 .get_vid = byt_get_vid,
493 static void intel_pstate_get_min_max(struct cpudata *cpu, int *min, int *max)
495 int max_perf = cpu->pstate.turbo_pstate;
499 max_perf = cpu->pstate.max_pstate;
501 max_perf_adj = fp_toint(mul_fp(int_tofp(max_perf), limits.max_perf));
502 *max = clamp_t(int, max_perf_adj,
503 cpu->pstate.min_pstate, cpu->pstate.turbo_pstate);
505 min_perf = fp_toint(mul_fp(int_tofp(max_perf), limits.min_perf));
506 *min = clamp_t(int, min_perf,
507 cpu->pstate.min_pstate, max_perf);
510 static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate)
512 int max_perf, min_perf;
514 intel_pstate_get_min_max(cpu, &min_perf, &max_perf);
516 pstate = clamp_t(int, pstate, min_perf, max_perf);
518 if (pstate == cpu->pstate.current_pstate)
521 trace_cpu_frequency(pstate * 100000, cpu->cpu);
523 cpu->pstate.current_pstate = pstate;
525 pstate_funcs.set(cpu, pstate);
528 static inline void intel_pstate_pstate_increase(struct cpudata *cpu, int steps)
531 target = cpu->pstate.current_pstate + steps;
533 intel_pstate_set_pstate(cpu, target);
536 static inline void intel_pstate_pstate_decrease(struct cpudata *cpu, int steps)
539 target = cpu->pstate.current_pstate - steps;
540 intel_pstate_set_pstate(cpu, target);
543 static void intel_pstate_get_cpu_pstates(struct cpudata *cpu)
545 cpu->pstate.min_pstate = pstate_funcs.get_min();
546 cpu->pstate.max_pstate = pstate_funcs.get_max();
547 cpu->pstate.turbo_pstate = pstate_funcs.get_turbo();
549 if (pstate_funcs.get_vid)
550 pstate_funcs.get_vid(cpu);
551 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
554 static inline void intel_pstate_calc_busy(struct cpudata *cpu)
556 struct sample *sample = &cpu->sample;
560 core_pct = int_tofp(sample->aperf) * int_tofp(100);
561 core_pct = div_u64_rem(core_pct, int_tofp(sample->mperf), &rem);
563 if ((rem << 1) >= int_tofp(sample->mperf))
566 sample->freq = fp_toint(
567 mul_fp(int_tofp(cpu->pstate.max_pstate * 1000), core_pct));
569 sample->core_pct_busy = (int32_t)core_pct;
572 static inline void intel_pstate_sample(struct cpudata *cpu)
576 rdmsrl(MSR_IA32_APERF, aperf);
577 rdmsrl(MSR_IA32_MPERF, mperf);
579 aperf = aperf >> FRAC_BITS;
580 mperf = mperf >> FRAC_BITS;
582 cpu->last_sample_time = cpu->sample.time;
583 cpu->sample.time = ktime_get();
584 cpu->sample.aperf = aperf;
585 cpu->sample.mperf = mperf;
586 cpu->sample.aperf -= cpu->prev_aperf;
587 cpu->sample.mperf -= cpu->prev_mperf;
589 intel_pstate_calc_busy(cpu);
591 cpu->prev_aperf = aperf;
592 cpu->prev_mperf = mperf;
595 static inline void intel_pstate_set_sample_time(struct cpudata *cpu)
597 int sample_time, delay;
599 sample_time = pid_params.sample_rate_ms;
600 delay = msecs_to_jiffies(sample_time);
601 mod_timer_pinned(&cpu->timer, jiffies + delay);
604 static inline int32_t intel_pstate_get_scaled_busy(struct cpudata *cpu)
606 int32_t core_busy, max_pstate, current_pstate, sample_ratio;
610 core_busy = cpu->sample.core_pct_busy;
611 max_pstate = int_tofp(cpu->pstate.max_pstate);
612 current_pstate = int_tofp(cpu->pstate.current_pstate);
613 core_busy = mul_fp(core_busy, div_fp(max_pstate, current_pstate));
615 sample_time = (pid_params.sample_rate_ms * USEC_PER_MSEC);
616 duration_us = (u32) ktime_us_delta(cpu->sample.time,
617 cpu->last_sample_time);
618 if (duration_us > sample_time * 3) {
619 sample_ratio = div_fp(int_tofp(sample_time),
620 int_tofp(duration_us));
621 core_busy = mul_fp(core_busy, sample_ratio);
627 static inline void intel_pstate_adjust_busy_pstate(struct cpudata *cpu)
635 busy_scaled = intel_pstate_get_scaled_busy(cpu);
637 ctl = pid_calc(pid, busy_scaled);
642 intel_pstate_pstate_increase(cpu, steps);
644 intel_pstate_pstate_decrease(cpu, steps);
647 static void intel_pstate_timer_func(unsigned long __data)
649 struct cpudata *cpu = (struct cpudata *) __data;
650 struct sample *sample;
652 intel_pstate_sample(cpu);
654 sample = &cpu->sample;
656 intel_pstate_adjust_busy_pstate(cpu);
658 trace_pstate_sample(fp_toint(sample->core_pct_busy),
659 fp_toint(intel_pstate_get_scaled_busy(cpu)),
660 cpu->pstate.current_pstate,
665 intel_pstate_set_sample_time(cpu);
668 #define ICPU(model, policy) \
669 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_APERFMPERF,\
670 (unsigned long)&policy }
672 static const struct x86_cpu_id intel_pstate_cpu_ids[] = {
673 ICPU(0x2a, core_params),
674 ICPU(0x2d, core_params),
675 ICPU(0x37, byt_params),
676 ICPU(0x3a, core_params),
677 ICPU(0x3c, core_params),
678 ICPU(0x3d, core_params),
679 ICPU(0x3e, core_params),
680 ICPU(0x3f, core_params),
681 ICPU(0x45, core_params),
682 ICPU(0x46, core_params),
683 ICPU(0x4f, core_params),
684 ICPU(0x56, core_params),
687 MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids);
689 static int intel_pstate_init_cpu(unsigned int cpunum)
693 all_cpu_data[cpunum] = kzalloc(sizeof(struct cpudata), GFP_KERNEL);
694 if (!all_cpu_data[cpunum])
697 cpu = all_cpu_data[cpunum];
699 intel_pstate_get_cpu_pstates(cpu);
703 init_timer_deferrable(&cpu->timer);
704 cpu->timer.function = intel_pstate_timer_func;
707 cpu->timer.expires = jiffies + HZ/100;
708 intel_pstate_busy_pid_reset(cpu);
709 intel_pstate_sample(cpu);
711 add_timer_on(&cpu->timer, cpunum);
713 pr_info("Intel pstate controlling: cpu %d\n", cpunum);
718 static unsigned int intel_pstate_get(unsigned int cpu_num)
720 struct sample *sample;
723 cpu = all_cpu_data[cpu_num];
726 sample = &cpu->sample;
730 static int intel_pstate_set_policy(struct cpufreq_policy *policy)
734 cpu = all_cpu_data[policy->cpu];
736 if (!policy->cpuinfo.max_freq)
739 if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) {
740 limits.min_perf_pct = 100;
741 limits.min_perf = int_tofp(1);
742 limits.max_perf_pct = 100;
743 limits.max_perf = int_tofp(1);
747 limits.min_perf_pct = (policy->min * 100) / policy->cpuinfo.max_freq;
748 limits.min_perf_pct = clamp_t(int, limits.min_perf_pct, 0 , 100);
749 limits.min_perf = div_fp(int_tofp(limits.min_perf_pct), int_tofp(100));
751 limits.max_policy_pct = policy->max * 100 / policy->cpuinfo.max_freq;
752 limits.max_policy_pct = clamp_t(int, limits.max_policy_pct, 0 , 100);
753 limits.max_perf_pct = min(limits.max_policy_pct, limits.max_sysfs_pct);
754 limits.max_perf = div_fp(int_tofp(limits.max_perf_pct), int_tofp(100));
759 static int intel_pstate_verify_policy(struct cpufreq_policy *policy)
761 cpufreq_verify_within_cpu_limits(policy);
763 if ((policy->policy != CPUFREQ_POLICY_POWERSAVE) &&
764 (policy->policy != CPUFREQ_POLICY_PERFORMANCE))
770 static void intel_pstate_stop_cpu(struct cpufreq_policy *policy)
772 int cpu_num = policy->cpu;
773 struct cpudata *cpu = all_cpu_data[cpu_num];
775 pr_info("intel_pstate CPU %d exiting\n", cpu_num);
777 del_timer_sync(&all_cpu_data[cpu_num]->timer);
778 intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate);
779 kfree(all_cpu_data[cpu_num]);
780 all_cpu_data[cpu_num] = NULL;
783 static int intel_pstate_cpu_init(struct cpufreq_policy *policy)
788 rc = intel_pstate_init_cpu(policy->cpu);
792 cpu = all_cpu_data[policy->cpu];
794 if (!limits.no_turbo &&
795 limits.min_perf_pct == 100 && limits.max_perf_pct == 100)
796 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
798 policy->policy = CPUFREQ_POLICY_POWERSAVE;
800 policy->min = cpu->pstate.min_pstate * 100000;
801 policy->max = cpu->pstate.turbo_pstate * 100000;
803 /* cpuinfo and default policy values */
804 policy->cpuinfo.min_freq = cpu->pstate.min_pstate * 100000;
805 policy->cpuinfo.max_freq = cpu->pstate.turbo_pstate * 100000;
806 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
807 cpumask_set_cpu(policy->cpu, policy->cpus);
812 static struct cpufreq_driver intel_pstate_driver = {
813 .flags = CPUFREQ_CONST_LOOPS,
814 .verify = intel_pstate_verify_policy,
815 .setpolicy = intel_pstate_set_policy,
816 .get = intel_pstate_get,
817 .init = intel_pstate_cpu_init,
818 .stop_cpu = intel_pstate_stop_cpu,
819 .name = "intel_pstate",
822 static int __initdata no_load;
824 static int intel_pstate_msrs_not_valid(void)
826 /* Check that all the msr's we are using are valid. */
827 u64 aperf, mperf, tmp;
829 rdmsrl(MSR_IA32_APERF, aperf);
830 rdmsrl(MSR_IA32_MPERF, mperf);
832 if (!pstate_funcs.get_max() ||
833 !pstate_funcs.get_min() ||
834 !pstate_funcs.get_turbo())
837 rdmsrl(MSR_IA32_APERF, tmp);
841 rdmsrl(MSR_IA32_MPERF, tmp);
848 static void copy_pid_params(struct pstate_adjust_policy *policy)
850 pid_params.sample_rate_ms = policy->sample_rate_ms;
851 pid_params.p_gain_pct = policy->p_gain_pct;
852 pid_params.i_gain_pct = policy->i_gain_pct;
853 pid_params.d_gain_pct = policy->d_gain_pct;
854 pid_params.deadband = policy->deadband;
855 pid_params.setpoint = policy->setpoint;
858 static void copy_cpu_funcs(struct pstate_funcs *funcs)
860 pstate_funcs.get_max = funcs->get_max;
861 pstate_funcs.get_min = funcs->get_min;
862 pstate_funcs.get_turbo = funcs->get_turbo;
863 pstate_funcs.set = funcs->set;
864 pstate_funcs.get_vid = funcs->get_vid;
867 #if IS_ENABLED(CONFIG_ACPI)
868 #include <acpi/processor.h>
870 static bool intel_pstate_no_acpi_pss(void)
874 for_each_possible_cpu(i) {
876 union acpi_object *pss;
877 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
878 struct acpi_processor *pr = per_cpu(processors, i);
883 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
884 if (ACPI_FAILURE(status))
887 pss = buffer.pointer;
888 if (pss && pss->type == ACPI_TYPE_PACKAGE) {
899 struct hw_vendor_info {
901 char oem_id[ACPI_OEM_ID_SIZE];
902 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE];
905 /* Hardware vendor-specific info that has its own power management modes */
906 static struct hw_vendor_info vendor_info[] = {
907 {1, "HP ", "ProLiant"},
911 static bool intel_pstate_platform_pwr_mgmt_exists(void)
913 struct acpi_table_header hdr;
914 struct hw_vendor_info *v_info;
917 || ACPI_FAILURE(acpi_get_table_header(ACPI_SIG_FADT, 0, &hdr)))
920 for (v_info = vendor_info; v_info->valid; v_info++) {
921 if (!strncmp(hdr.oem_id, v_info->oem_id, ACPI_OEM_ID_SIZE)
922 && !strncmp(hdr.oem_table_id, v_info->oem_table_id, ACPI_OEM_TABLE_ID_SIZE)
923 && intel_pstate_no_acpi_pss())
929 #else /* CONFIG_ACPI not enabled */
930 static inline bool intel_pstate_platform_pwr_mgmt_exists(void) { return false; }
931 #endif /* CONFIG_ACPI */
933 static int __init intel_pstate_init(void)
936 const struct x86_cpu_id *id;
937 struct cpu_defaults *cpu_info;
942 id = x86_match_cpu(intel_pstate_cpu_ids);
947 * The Intel pstate driver will be ignored if the platform
948 * firmware has its own power management modes.
950 if (intel_pstate_platform_pwr_mgmt_exists())
953 cpu_info = (struct cpu_defaults *)id->driver_data;
955 copy_pid_params(&cpu_info->pid_policy);
956 copy_cpu_funcs(&cpu_info->funcs);
958 if (intel_pstate_msrs_not_valid())
961 pr_info("Intel P-state driver initializing.\n");
963 all_cpu_data = vzalloc(sizeof(void *) * num_possible_cpus());
967 rc = cpufreq_register_driver(&intel_pstate_driver);
971 intel_pstate_debug_expose_params();
972 intel_pstate_sysfs_expose_params();
977 for_each_online_cpu(cpu) {
978 if (all_cpu_data[cpu]) {
979 del_timer_sync(&all_cpu_data[cpu]->timer);
980 kfree(all_cpu_data[cpu]);
988 device_initcall(intel_pstate_init);
990 static int __init intel_pstate_setup(char *str)
995 if (!strcmp(str, "disable"))
999 early_param("intel_pstate", intel_pstate_setup);
1002 MODULE_DESCRIPTION("'intel_pstate' - P state driver Intel Core processors");
1003 MODULE_LICENSE("GPL");