1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * processor_throttling.c - Throttling submodule of the ACPI processor driver
9 * - Added processor hotplug support
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/slab.h>
15 #include <linux/init.h>
16 #include <linux/sched.h>
17 #include <linux/cpufreq.h>
18 #include <linux/acpi.h>
19 #include <acpi/processor.h>
21 #include <linux/uaccess.h>
23 #define PREFIX "ACPI: "
26 * 0 -> acpi processor driver doesn't ignore _TPC values
27 * 1 -> acpi processor driver ignores _TPC values
29 static int ignore_tpc;
30 module_param(ignore_tpc, int, 0644);
31 MODULE_PARM_DESC(ignore_tpc, "Disable broken BIOS _TPC throttling support");
33 struct throttling_tstate {
34 unsigned int cpu; /* cpu nr */
35 int target_state; /* target T-state */
38 struct acpi_processor_throttling_arg {
39 struct acpi_processor *pr;
44 #define THROTTLING_PRECHANGE (1)
45 #define THROTTLING_POSTCHANGE (2)
47 static int acpi_processor_get_throttling(struct acpi_processor *pr);
48 static int __acpi_processor_set_throttling(struct acpi_processor *pr,
49 int state, bool force, bool direct);
51 static int acpi_processor_update_tsd_coord(void)
53 int count, count_target;
56 cpumask_var_t covered_cpus;
57 struct acpi_processor *pr, *match_pr;
58 struct acpi_tsd_package *pdomain, *match_pdomain;
59 struct acpi_processor_throttling *pthrottling, *match_pthrottling;
61 if (!zalloc_cpumask_var(&covered_cpus, GFP_KERNEL))
65 * Now that we have _TSD data from all CPUs, lets setup T-state
66 * coordination between all CPUs.
68 for_each_possible_cpu(i) {
69 pr = per_cpu(processors, i);
73 /* Basic validity check for domain info */
74 pthrottling = &(pr->throttling);
77 * If tsd package for one cpu is invalid, the coordination
78 * among all CPUs is thought as invalid.
81 if (!pthrottling->tsd_valid_flag) {
89 for_each_possible_cpu(i) {
90 pr = per_cpu(processors, i);
94 if (cpumask_test_cpu(i, covered_cpus))
96 pthrottling = &pr->throttling;
98 pdomain = &(pthrottling->domain_info);
99 cpumask_set_cpu(i, pthrottling->shared_cpu_map);
100 cpumask_set_cpu(i, covered_cpus);
102 * If the number of processor in the TSD domain is 1, it is
103 * unnecessary to parse the coordination for this CPU.
105 if (pdomain->num_processors <= 1)
108 /* Validate the Domain info */
109 count_target = pdomain->num_processors;
112 for_each_possible_cpu(j) {
116 match_pr = per_cpu(processors, j);
120 match_pthrottling = &(match_pr->throttling);
121 match_pdomain = &(match_pthrottling->domain_info);
122 if (match_pdomain->domain != pdomain->domain)
125 /* Here i and j are in the same domain.
126 * If two TSD packages have the same domain, they
127 * should have the same num_porcessors and
128 * coordination type. Otherwise it will be regarded
131 if (match_pdomain->num_processors != count_target) {
136 if (pdomain->coord_type != match_pdomain->coord_type) {
141 cpumask_set_cpu(j, covered_cpus);
142 cpumask_set_cpu(j, pthrottling->shared_cpu_map);
145 for_each_possible_cpu(j) {
149 match_pr = per_cpu(processors, j);
153 match_pthrottling = &(match_pr->throttling);
154 match_pdomain = &(match_pthrottling->domain_info);
155 if (match_pdomain->domain != pdomain->domain)
159 * If some CPUS have the same domain, they
160 * will have the same shared_cpu_map.
162 cpumask_copy(match_pthrottling->shared_cpu_map,
163 pthrottling->shared_cpu_map);
168 free_cpumask_var(covered_cpus);
170 for_each_possible_cpu(i) {
171 pr = per_cpu(processors, i);
176 * Assume no coordination on any error parsing domain info.
177 * The coordination type will be forced as SW_ALL.
180 pthrottling = &(pr->throttling);
181 cpumask_clear(pthrottling->shared_cpu_map);
182 cpumask_set_cpu(i, pthrottling->shared_cpu_map);
183 pthrottling->shared_type = DOMAIN_COORD_TYPE_SW_ALL;
191 * Update the T-state coordination after the _TSD
192 * data for all cpus is obtained.
194 void acpi_processor_throttling_init(void)
196 if (acpi_processor_update_tsd_coord())
197 pr_debug("Assume no T-state coordination\n");
200 static int acpi_processor_throttling_notifier(unsigned long event, void *data)
202 struct throttling_tstate *p_tstate = data;
203 struct acpi_processor *pr;
206 struct acpi_processor_limit *p_limit;
207 struct acpi_processor_throttling *p_throttling;
210 pr = per_cpu(processors, cpu);
212 pr_debug("Invalid pr pointer\n");
215 if (!pr->flags.throttling) {
216 acpi_handle_debug(pr->handle,
217 "Throttling control unsupported on CPU %d\n",
221 target_state = p_tstate->target_state;
222 p_throttling = &(pr->throttling);
224 case THROTTLING_PRECHANGE:
226 * Prechange event is used to choose one proper t-state,
227 * which meets the limits of thermal, user and _TPC.
229 p_limit = &pr->limit;
230 if (p_limit->thermal.tx > target_state)
231 target_state = p_limit->thermal.tx;
232 if (p_limit->user.tx > target_state)
233 target_state = p_limit->user.tx;
234 if (pr->throttling_platform_limit > target_state)
235 target_state = pr->throttling_platform_limit;
236 if (target_state >= p_throttling->state_count) {
238 "Exceed the limit of T-state \n");
239 target_state = p_throttling->state_count - 1;
241 p_tstate->target_state = target_state;
242 acpi_handle_debug(pr->handle,
243 "PreChange Event: target T-state of CPU %d is T%d\n",
246 case THROTTLING_POSTCHANGE:
248 * Postchange event is only used to update the
249 * T-state flag of acpi_processor_throttling.
251 p_throttling->state = target_state;
252 acpi_handle_debug(pr->handle,
253 "PostChange Event: CPU %d is switched to T%d\n",
258 "Unsupported Throttling notifier event\n");
266 * _TPC - Throttling Present Capabilities
268 static int acpi_processor_get_platform_limit(struct acpi_processor *pr)
270 acpi_status status = 0;
271 unsigned long long tpc = 0;
279 status = acpi_evaluate_integer(pr->handle, "_TPC", NULL, &tpc);
280 if (ACPI_FAILURE(status)) {
281 if (status != AE_NOT_FOUND)
282 acpi_evaluation_failure_warn(pr->handle, "_TPC", status);
288 pr->throttling_platform_limit = (int)tpc;
292 int acpi_processor_tstate_has_changed(struct acpi_processor *pr)
295 int throttling_limit;
297 struct acpi_processor_limit *limit;
303 result = acpi_processor_get_platform_limit(pr);
305 /* Throttling Limit is unsupported */
309 throttling_limit = pr->throttling_platform_limit;
310 if (throttling_limit >= pr->throttling.state_count) {
311 /* Uncorrect Throttling Limit */
315 current_state = pr->throttling.state;
316 if (current_state > throttling_limit) {
318 * The current state can meet the requirement of
319 * _TPC limit. But it is reasonable that OSPM changes
320 * t-states from high to low for better performance.
321 * Of course the limit condition of thermal
322 * and user should be considered.
325 target_state = throttling_limit;
326 if (limit->thermal.tx > target_state)
327 target_state = limit->thermal.tx;
328 if (limit->user.tx > target_state)
329 target_state = limit->user.tx;
330 } else if (current_state == throttling_limit) {
332 * Unnecessary to change the throttling state
337 * If the current state is lower than the limit of _TPC, it
338 * will be forced to switch to the throttling state defined
339 * by throttling_platfor_limit.
340 * Because the previous state meets with the limit condition
341 * of thermal and user, it is unnecessary to check it again.
343 target_state = throttling_limit;
345 return acpi_processor_set_throttling(pr, target_state, false);
349 * This function is used to reevaluate whether the T-state is valid
350 * after one CPU is onlined/offlined.
351 * It is noted that it won't reevaluate the following properties for
354 * 2. the number of supported T-state
357 void acpi_processor_reevaluate_tstate(struct acpi_processor *pr,
363 /* When one CPU is offline, the T-state throttling
364 * will be invalidated.
366 pr->flags.throttling = 0;
369 /* the following is to recheck whether the T-state is valid for
372 if (!pr->throttling.state_count) {
373 /* If the number of T-state is invalid, it is
376 pr->flags.throttling = 0;
379 pr->flags.throttling = 1;
381 /* Disable throttling (if enabled). We'll let subsequent
382 * policy (e.g.thermal) decide to lower performance if it
383 * so chooses, but for now we'll crank up the speed.
386 result = acpi_processor_get_throttling(pr);
390 if (pr->throttling.state) {
391 result = acpi_processor_set_throttling(pr, 0, false);
398 pr->flags.throttling = 0;
401 * _PTC - Processor Throttling Control (and status) register location
403 static int acpi_processor_get_throttling_control(struct acpi_processor *pr)
406 acpi_status status = 0;
407 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
408 union acpi_object *ptc = NULL;
409 union acpi_object obj;
410 struct acpi_processor_throttling *throttling;
412 status = acpi_evaluate_object(pr->handle, "_PTC", NULL, &buffer);
413 if (ACPI_FAILURE(status)) {
414 if (status != AE_NOT_FOUND)
415 acpi_evaluation_failure_warn(pr->handle, "_PTC", status);
420 ptc = (union acpi_object *)buffer.pointer;
421 if (!ptc || (ptc->type != ACPI_TYPE_PACKAGE)
422 || (ptc->package.count != 2)) {
423 printk(KERN_ERR PREFIX "Invalid _PTC data\n");
432 obj = ptc->package.elements[0];
434 if ((obj.type != ACPI_TYPE_BUFFER)
435 || (obj.buffer.length < sizeof(struct acpi_ptc_register))
436 || (obj.buffer.pointer == NULL)) {
437 printk(KERN_ERR PREFIX
438 "Invalid _PTC data (control_register)\n");
442 memcpy(&pr->throttling.control_register, obj.buffer.pointer,
443 sizeof(struct acpi_ptc_register));
449 obj = ptc->package.elements[1];
451 if ((obj.type != ACPI_TYPE_BUFFER)
452 || (obj.buffer.length < sizeof(struct acpi_ptc_register))
453 || (obj.buffer.pointer == NULL)) {
454 printk(KERN_ERR PREFIX "Invalid _PTC data (status_register)\n");
459 memcpy(&pr->throttling.status_register, obj.buffer.pointer,
460 sizeof(struct acpi_ptc_register));
462 throttling = &pr->throttling;
464 if ((throttling->control_register.bit_width +
465 throttling->control_register.bit_offset) > 32) {
466 printk(KERN_ERR PREFIX "Invalid _PTC control register\n");
471 if ((throttling->status_register.bit_width +
472 throttling->status_register.bit_offset) > 32) {
473 printk(KERN_ERR PREFIX "Invalid _PTC status register\n");
479 kfree(buffer.pointer);
485 * _TSS - Throttling Supported States
487 static int acpi_processor_get_throttling_states(struct acpi_processor *pr)
490 acpi_status status = AE_OK;
491 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
492 struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" };
493 struct acpi_buffer state = { 0, NULL };
494 union acpi_object *tss = NULL;
497 status = acpi_evaluate_object(pr->handle, "_TSS", NULL, &buffer);
498 if (ACPI_FAILURE(status)) {
499 if (status != AE_NOT_FOUND)
500 acpi_evaluation_failure_warn(pr->handle, "_TSS", status);
505 tss = buffer.pointer;
506 if (!tss || (tss->type != ACPI_TYPE_PACKAGE)) {
507 printk(KERN_ERR PREFIX "Invalid _TSS data\n");
512 acpi_handle_debug(pr->handle, "Found %d throttling states\n",
515 pr->throttling.state_count = tss->package.count;
516 pr->throttling.states_tss =
517 kmalloc_array(tss->package.count,
518 sizeof(struct acpi_processor_tx_tss),
520 if (!pr->throttling.states_tss) {
525 for (i = 0; i < pr->throttling.state_count; i++) {
527 struct acpi_processor_tx_tss *tx =
528 (struct acpi_processor_tx_tss *)&(pr->throttling.
531 state.length = sizeof(struct acpi_processor_tx_tss);
534 acpi_handle_debug(pr->handle, "Extracting state %d\n", i);
536 status = acpi_extract_package(&(tss->package.elements[i]),
538 if (ACPI_FAILURE(status)) {
539 acpi_handle_warn(pr->handle, "Invalid _TSS data: %s\n",
540 acpi_format_exception(status));
542 kfree(pr->throttling.states_tss);
546 if (!tx->freqpercentage) {
547 printk(KERN_ERR PREFIX
548 "Invalid _TSS data: freq is zero\n");
550 kfree(pr->throttling.states_tss);
556 kfree(buffer.pointer);
562 * _TSD - T-State Dependencies
564 static int acpi_processor_get_tsd(struct acpi_processor *pr)
567 acpi_status status = AE_OK;
568 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
569 struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" };
570 struct acpi_buffer state = { 0, NULL };
571 union acpi_object *tsd = NULL;
572 struct acpi_tsd_package *pdomain;
573 struct acpi_processor_throttling *pthrottling;
575 pthrottling = &pr->throttling;
576 pthrottling->tsd_valid_flag = 0;
578 status = acpi_evaluate_object(pr->handle, "_TSD", NULL, &buffer);
579 if (ACPI_FAILURE(status)) {
580 if (status != AE_NOT_FOUND)
581 acpi_evaluation_failure_warn(pr->handle, "_TSD", status);
586 tsd = buffer.pointer;
587 if (!tsd || (tsd->type != ACPI_TYPE_PACKAGE)) {
588 printk(KERN_ERR PREFIX "Invalid _TSD data\n");
593 if (tsd->package.count != 1) {
594 printk(KERN_ERR PREFIX "Invalid _TSD data\n");
599 pdomain = &(pr->throttling.domain_info);
601 state.length = sizeof(struct acpi_tsd_package);
602 state.pointer = pdomain;
604 status = acpi_extract_package(&(tsd->package.elements[0]),
606 if (ACPI_FAILURE(status)) {
607 printk(KERN_ERR PREFIX "Invalid _TSD data\n");
612 if (pdomain->num_entries != ACPI_TSD_REV0_ENTRIES) {
613 printk(KERN_ERR PREFIX "Unknown _TSD:num_entries\n");
618 if (pdomain->revision != ACPI_TSD_REV0_REVISION) {
619 printk(KERN_ERR PREFIX "Unknown _TSD:revision\n");
624 pthrottling = &pr->throttling;
625 pthrottling->tsd_valid_flag = 1;
626 pthrottling->shared_type = pdomain->coord_type;
627 cpumask_set_cpu(pr->id, pthrottling->shared_cpu_map);
629 * If the coordination type is not defined in ACPI spec,
630 * the tsd_valid_flag will be clear and coordination type
631 * will be forecd as DOMAIN_COORD_TYPE_SW_ALL.
633 if (pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ALL &&
634 pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ANY &&
635 pdomain->coord_type != DOMAIN_COORD_TYPE_HW_ALL) {
636 pthrottling->tsd_valid_flag = 0;
637 pthrottling->shared_type = DOMAIN_COORD_TYPE_SW_ALL;
641 kfree(buffer.pointer);
645 /* --------------------------------------------------------------------------
647 -------------------------------------------------------------------------- */
648 static int acpi_processor_get_throttling_fadt(struct acpi_processor *pr)
658 if (!pr->flags.throttling)
662 * We don't care about error returns - we just try to mark
663 * these reserved so that nobody else is confused into thinking
664 * that this region might be unused..
666 * (In particular, allocating the IO range for Cardbus)
668 request_region(pr->throttling.address, 6, "ACPI CPU throttle");
670 pr->throttling.state = 0;
672 duty_mask = pr->throttling.state_count - 1;
674 duty_mask <<= pr->throttling.duty_offset;
678 value = inl(pr->throttling.address);
681 * Compute the current throttling state when throttling is enabled
685 duty_value = value & duty_mask;
686 duty_value >>= pr->throttling.duty_offset;
689 state = pr->throttling.state_count - duty_value;
692 pr->throttling.state = state;
696 acpi_handle_debug(pr->handle,
697 "Throttling state is T%d (%d%% throttling applied)\n",
698 state, pr->throttling.states[state].performance);
704 static int acpi_throttling_rdmsr(u64 *value)
706 u64 msr_high, msr_low;
710 if ((this_cpu_read(cpu_info.x86_vendor) != X86_VENDOR_INTEL) ||
711 !this_cpu_has(X86_FEATURE_ACPI)) {
712 printk(KERN_ERR PREFIX
713 "HARDWARE addr space,NOT supported yet\n");
717 rdmsr_safe(MSR_IA32_THERM_CONTROL,
718 (u32 *)&msr_low, (u32 *) &msr_high);
719 msr = (msr_high << 32) | msr_low;
726 static int acpi_throttling_wrmsr(u64 value)
731 if ((this_cpu_read(cpu_info.x86_vendor) != X86_VENDOR_INTEL) ||
732 !this_cpu_has(X86_FEATURE_ACPI)) {
733 printk(KERN_ERR PREFIX
734 "HARDWARE addr space,NOT supported yet\n");
737 wrmsr_safe(MSR_IA32_THERM_CONTROL,
738 msr & 0xffffffff, msr >> 32);
744 static int acpi_throttling_rdmsr(u64 *value)
746 printk(KERN_ERR PREFIX
747 "HARDWARE addr space,NOT supported yet\n");
751 static int acpi_throttling_wrmsr(u64 value)
753 printk(KERN_ERR PREFIX
754 "HARDWARE addr space,NOT supported yet\n");
759 static int acpi_read_throttling_status(struct acpi_processor *pr,
762 u32 bit_width, bit_offset;
765 struct acpi_processor_throttling *throttling;
768 throttling = &pr->throttling;
769 switch (throttling->status_register.space_id) {
770 case ACPI_ADR_SPACE_SYSTEM_IO:
771 bit_width = throttling->status_register.bit_width;
772 bit_offset = throttling->status_register.bit_offset;
774 acpi_os_read_port((acpi_io_address) throttling->status_register.
776 (u32) (bit_width + bit_offset));
777 ptc_mask = (1 << bit_width) - 1;
778 *value = (u64) ((ptc_value >> bit_offset) & ptc_mask);
781 case ACPI_ADR_SPACE_FIXED_HARDWARE:
782 ret = acpi_throttling_rdmsr(value);
785 printk(KERN_ERR PREFIX "Unknown addr space %d\n",
786 (u32) (throttling->status_register.space_id));
791 static int acpi_write_throttling_state(struct acpi_processor *pr,
794 u32 bit_width, bit_offset;
797 struct acpi_processor_throttling *throttling;
800 throttling = &pr->throttling;
801 switch (throttling->control_register.space_id) {
802 case ACPI_ADR_SPACE_SYSTEM_IO:
803 bit_width = throttling->control_register.bit_width;
804 bit_offset = throttling->control_register.bit_offset;
805 ptc_mask = (1 << bit_width) - 1;
806 ptc_value = value & ptc_mask;
808 acpi_os_write_port((acpi_io_address) throttling->
809 control_register.address,
810 (u32) (ptc_value << bit_offset),
811 (u32) (bit_width + bit_offset));
814 case ACPI_ADR_SPACE_FIXED_HARDWARE:
815 ret = acpi_throttling_wrmsr(value);
818 printk(KERN_ERR PREFIX "Unknown addr space %d\n",
819 (u32) (throttling->control_register.space_id));
824 static int acpi_get_throttling_state(struct acpi_processor *pr,
829 for (i = 0; i < pr->throttling.state_count; i++) {
830 struct acpi_processor_tx_tss *tx =
831 (struct acpi_processor_tx_tss *)&(pr->throttling.
833 if (tx->control == value)
839 static int acpi_get_throttling_value(struct acpi_processor *pr,
840 int state, u64 *value)
844 if (state >= 0 && state <= pr->throttling.state_count) {
845 struct acpi_processor_tx_tss *tx =
846 (struct acpi_processor_tx_tss *)&(pr->throttling.
848 *value = tx->control;
854 static int acpi_processor_get_throttling_ptc(struct acpi_processor *pr)
863 if (!pr->flags.throttling)
866 pr->throttling.state = 0;
869 ret = acpi_read_throttling_status(pr, &value);
871 state = acpi_get_throttling_state(pr, value);
873 acpi_handle_debug(pr->handle,
874 "Invalid throttling state, reset\n");
876 ret = __acpi_processor_set_throttling(pr, state, true,
881 pr->throttling.state = state;
887 static long __acpi_processor_get_throttling(void *data)
889 struct acpi_processor *pr = data;
891 return pr->throttling.acpi_processor_get_throttling(pr);
894 static int acpi_processor_get_throttling(struct acpi_processor *pr)
899 if (!pr->flags.throttling)
903 * This is either called from the CPU hotplug callback of
904 * processor_driver or via the ACPI probe function. In the latter
905 * case the CPU is not guaranteed to be online. Both call sites are
906 * protected against CPU hotplug.
908 if (!cpu_online(pr->id))
911 return call_on_cpu(pr->id, __acpi_processor_get_throttling, pr, false);
914 static int acpi_processor_get_fadt_info(struct acpi_processor *pr)
918 if (!pr->throttling.address) {
919 acpi_handle_debug(pr->handle, "No throttling register\n");
921 } else if (!pr->throttling.duty_width) {
922 acpi_handle_debug(pr->handle, "No throttling states\n");
925 /* TBD: Support duty_cycle values that span bit 4. */
926 else if ((pr->throttling.duty_offset + pr->throttling.duty_width) > 4) {
927 printk(KERN_WARNING PREFIX "duty_cycle spans bit 4\n");
931 pr->throttling.state_count = 1 << acpi_gbl_FADT.duty_width;
934 * Compute state values. Note that throttling displays a linear power
935 * performance relationship (at 50% performance the CPU will consume
936 * 50% power). Values are in 1/10th of a percent to preserve accuracy.
939 step = (1000 / pr->throttling.state_count);
941 for (i = 0; i < pr->throttling.state_count; i++) {
942 pr->throttling.states[i].performance = 1000 - step * i;
943 pr->throttling.states[i].power = 1000 - step * i;
948 static int acpi_processor_set_throttling_fadt(struct acpi_processor *pr,
949 int state, bool force)
958 if ((state < 0) || (state > (pr->throttling.state_count - 1)))
961 if (!pr->flags.throttling)
964 if (!force && (state == pr->throttling.state))
967 if (state < pr->throttling_platform_limit)
970 * Calculate the duty_value and duty_mask.
973 duty_value = pr->throttling.state_count - state;
975 duty_value <<= pr->throttling.duty_offset;
977 /* Used to clear all duty_value bits */
978 duty_mask = pr->throttling.state_count - 1;
980 duty_mask <<= acpi_gbl_FADT.duty_offset;
981 duty_mask = ~duty_mask;
987 * Disable throttling by writing a 0 to bit 4. Note that we must
988 * turn it off before you can change the duty_value.
990 value = inl(pr->throttling.address);
993 outl(value, pr->throttling.address);
997 * Write the new duty_value and then enable throttling. Note
998 * that a state value of 0 leaves throttling disabled.
1002 value |= duty_value;
1003 outl(value, pr->throttling.address);
1005 value |= 0x00000010;
1006 outl(value, pr->throttling.address);
1009 pr->throttling.state = state;
1013 acpi_handle_debug(pr->handle,
1014 "Throttling state set to T%d (%d%%)\n", state,
1015 (pr->throttling.states[state].performance ? pr->
1016 throttling.states[state].performance / 10 : 0));
1021 static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr,
1022 int state, bool force)
1030 if ((state < 0) || (state > (pr->throttling.state_count - 1)))
1033 if (!pr->flags.throttling)
1036 if (!force && (state == pr->throttling.state))
1039 if (state < pr->throttling_platform_limit)
1043 ret = acpi_get_throttling_value(pr, state, &value);
1045 acpi_write_throttling_state(pr, value);
1046 pr->throttling.state = state;
1052 static long acpi_processor_throttling_fn(void *data)
1054 struct acpi_processor_throttling_arg *arg = data;
1055 struct acpi_processor *pr = arg->pr;
1057 return pr->throttling.acpi_processor_set_throttling(pr,
1058 arg->target_state, arg->force);
1061 static int __acpi_processor_set_throttling(struct acpi_processor *pr,
1062 int state, bool force, bool direct)
1066 struct acpi_processor *match_pr;
1067 struct acpi_processor_throttling *p_throttling;
1068 struct acpi_processor_throttling_arg arg;
1069 struct throttling_tstate t_state;
1074 if (!pr->flags.throttling)
1077 if ((state < 0) || (state > (pr->throttling.state_count - 1)))
1080 if (cpu_is_offline(pr->id)) {
1082 * the cpu pointed by pr->id is offline. Unnecessary to change
1083 * the throttling state any more.
1088 t_state.target_state = state;
1089 p_throttling = &(pr->throttling);
1092 * The throttling notifier will be called for every
1093 * affected cpu in order to get one proper T-state.
1094 * The notifier event is THROTTLING_PRECHANGE.
1096 for_each_cpu_and(i, cpu_online_mask, p_throttling->shared_cpu_map) {
1098 acpi_processor_throttling_notifier(THROTTLING_PRECHANGE,
1102 * The function of acpi_processor_set_throttling will be called
1103 * to switch T-state. If the coordination type is SW_ALL or HW_ALL,
1104 * it is necessary to call it for every affected cpu. Otherwise
1105 * it can be called only for the cpu pointed by pr.
1107 if (p_throttling->shared_type == DOMAIN_COORD_TYPE_SW_ANY) {
1109 arg.target_state = state;
1111 ret = call_on_cpu(pr->id, acpi_processor_throttling_fn, &arg,
1115 * When the T-state coordination is SW_ALL or HW_ALL,
1116 * it is necessary to set T-state for every affected
1119 for_each_cpu_and(i, cpu_online_mask,
1120 p_throttling->shared_cpu_map) {
1121 match_pr = per_cpu(processors, i);
1123 * If the pointer is invalid, we will report the
1124 * error message and continue.
1127 acpi_handle_debug(pr->handle,
1128 "Invalid Pointer for CPU %d\n", i);
1132 * If the throttling control is unsupported on CPU i,
1133 * we will report the error message and continue.
1135 if (!match_pr->flags.throttling) {
1136 acpi_handle_debug(pr->handle,
1137 "Throttling Control unsupported on CPU %d\n", i);
1142 arg.target_state = state;
1144 ret = call_on_cpu(pr->id, acpi_processor_throttling_fn,
1149 * After the set_throttling is called, the
1150 * throttling notifier is called for every
1151 * affected cpu to update the T-states.
1152 * The notifier event is THROTTLING_POSTCHANGE
1154 for_each_cpu_and(i, cpu_online_mask, p_throttling->shared_cpu_map) {
1156 acpi_processor_throttling_notifier(THROTTLING_POSTCHANGE,
1163 int acpi_processor_set_throttling(struct acpi_processor *pr, int state,
1166 return __acpi_processor_set_throttling(pr, state, force, false);
1169 int acpi_processor_get_throttling_info(struct acpi_processor *pr)
1172 struct acpi_processor_throttling *pthrottling;
1174 acpi_handle_debug(pr->handle,
1175 "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n",
1176 pr->throttling.address,
1177 pr->throttling.duty_offset,
1178 pr->throttling.duty_width);
1181 * Evaluate _PTC, _TSS and _TPC
1182 * They must all be present or none of them can be used.
1184 if (acpi_processor_get_throttling_control(pr) ||
1185 acpi_processor_get_throttling_states(pr) ||
1186 acpi_processor_get_platform_limit(pr)) {
1187 pr->throttling.acpi_processor_get_throttling =
1188 &acpi_processor_get_throttling_fadt;
1189 pr->throttling.acpi_processor_set_throttling =
1190 &acpi_processor_set_throttling_fadt;
1191 if (acpi_processor_get_fadt_info(pr))
1194 pr->throttling.acpi_processor_get_throttling =
1195 &acpi_processor_get_throttling_ptc;
1196 pr->throttling.acpi_processor_set_throttling =
1197 &acpi_processor_set_throttling_ptc;
1201 * If TSD package for one CPU can't be parsed successfully, it means
1202 * that this CPU will have no coordination with other CPUs.
1204 if (acpi_processor_get_tsd(pr)) {
1205 pthrottling = &pr->throttling;
1206 pthrottling->tsd_valid_flag = 0;
1207 cpumask_set_cpu(pr->id, pthrottling->shared_cpu_map);
1208 pthrottling->shared_type = DOMAIN_COORD_TYPE_SW_ALL;
1212 * PIIX4 Errata: We don't support throttling on the original PIIX4.
1213 * This shouldn't be an issue as few (if any) mobile systems ever
1216 if (errata.piix4.throttle) {
1217 acpi_handle_debug(pr->handle,
1218 "Throttling not supported on PIIX4 A- or B-step\n");
1222 acpi_handle_debug(pr->handle, "Found %d throttling states\n",
1223 pr->throttling.state_count);
1225 pr->flags.throttling = 1;
1228 * Disable throttling (if enabled). We'll let subsequent policy (e.g.
1229 * thermal) decide to lower performance if it so chooses, but for now
1230 * we'll crank up the speed.
1233 result = acpi_processor_get_throttling(pr);
1237 if (pr->throttling.state) {
1238 acpi_handle_debug(pr->handle,
1239 "Disabling throttling (was T%d)\n",
1240 pr->throttling.state);
1241 result = acpi_processor_set_throttling(pr, 0, false);
1248 pr->flags.throttling = 0;