Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Apr 14-17, 2025
Register
Loading...
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * amd-pstate.c - AMD Processor P-state Frequency Driver
   4 *
   5 * Copyright (C) 2021 Advanced Micro Devices, Inc. All Rights Reserved.
   6 *
   7 * Author: Huang Rui <ray.huang@amd.com>
   8 *
   9 * AMD P-State introduces a new CPU performance scaling design for AMD
  10 * processors using the ACPI Collaborative Performance and Power Control (CPPC)
  11 * feature which works with the AMD SMU firmware providing a finer grained
  12 * frequency control range. It is to replace the legacy ACPI P-States control,
  13 * allows a flexible, low-latency interface for the Linux kernel to directly
  14 * communicate the performance hints to hardware.
  15 *
  16 * AMD P-State is supported on recent AMD Zen base CPU series include some of
  17 * Zen2 and Zen3 processors. _CPC needs to be present in the ACPI tables of AMD
  18 * P-State supported system. And there are two types of hardware implementations
  19 * for AMD P-State: 1) Full MSR Solution and 2) Shared Memory Solution.
  20 * X86_FEATURE_CPPC CPU feature flag is used to distinguish the different types.
  21 */
  22
  23#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  24
  25#include <linux/kernel.h>
  26#include <linux/module.h>
  27#include <linux/init.h>
  28#include <linux/smp.h>
  29#include <linux/sched.h>
  30#include <linux/cpufreq.h>
  31#include <linux/compiler.h>
  32#include <linux/dmi.h>
  33#include <linux/slab.h>
  34#include <linux/acpi.h>
  35#include <linux/io.h>
  36#include <linux/delay.h>
  37#include <linux/uaccess.h>
  38#include <linux/static_call.h>
  39#include <linux/topology.h>
  40
  41#include <acpi/processor.h>
  42#include <acpi/cppc_acpi.h>
  43
  44#include <asm/msr.h>
  45#include <asm/processor.h>
  46#include <asm/cpufeature.h>
  47#include <asm/cpu_device_id.h>
  48
  49#include "amd-pstate.h"
  50#include "amd-pstate-trace.h"
  51
  52#define AMD_PSTATE_TRANSITION_LATENCY	20000
  53#define AMD_PSTATE_TRANSITION_DELAY	1000
  54#define AMD_PSTATE_FAST_CPPC_TRANSITION_DELAY 600
  55
  56#define AMD_CPPC_EPP_PERFORMANCE		0x00
  57#define AMD_CPPC_EPP_BALANCE_PERFORMANCE	0x80
  58#define AMD_CPPC_EPP_BALANCE_POWERSAVE		0xBF
  59#define AMD_CPPC_EPP_POWERSAVE			0xFF
  60
  61static const char * const amd_pstate_mode_string[] = {
  62	[AMD_PSTATE_UNDEFINED]   = "undefined",
  63	[AMD_PSTATE_DISABLE]     = "disable",
  64	[AMD_PSTATE_PASSIVE]     = "passive",
  65	[AMD_PSTATE_ACTIVE]      = "active",
  66	[AMD_PSTATE_GUIDED]      = "guided",
  67	NULL,
  68};
  69
  70const char *amd_pstate_get_mode_string(enum amd_pstate_mode mode)
  71{
  72	if (mode < 0 || mode >= AMD_PSTATE_MAX)
  73		return NULL;
  74	return amd_pstate_mode_string[mode];
  75}
  76EXPORT_SYMBOL_GPL(amd_pstate_get_mode_string);
  77
  78struct quirk_entry {
  79	u32 nominal_freq;
  80	u32 lowest_freq;
  81};
  82
  83static struct cpufreq_driver *current_pstate_driver;
  84static struct cpufreq_driver amd_pstate_driver;
  85static struct cpufreq_driver amd_pstate_epp_driver;
  86static int cppc_state = AMD_PSTATE_UNDEFINED;
  87static bool cppc_enabled;
  88static bool amd_pstate_prefcore = true;
  89static struct quirk_entry *quirks;
  90
  91/*
  92 * AMD Energy Preference Performance (EPP)
  93 * The EPP is used in the CCLK DPM controller to drive
  94 * the frequency that a core is going to operate during
  95 * short periods of activity. EPP values will be utilized for
  96 * different OS profiles (balanced, performance, power savings)
  97 * display strings corresponding to EPP index in the
  98 * energy_perf_strings[]
  99 *	index		String
 100 *-------------------------------------
 101 *	0		default
 102 *	1		performance
 103 *	2		balance_performance
 104 *	3		balance_power
 105 *	4		power
 106 */
 107enum energy_perf_value_index {
 108	EPP_INDEX_DEFAULT = 0,
 109	EPP_INDEX_PERFORMANCE,
 110	EPP_INDEX_BALANCE_PERFORMANCE,
 111	EPP_INDEX_BALANCE_POWERSAVE,
 112	EPP_INDEX_POWERSAVE,
 113};
 114
 115static const char * const energy_perf_strings[] = {
 116	[EPP_INDEX_DEFAULT] = "default",
 117	[EPP_INDEX_PERFORMANCE] = "performance",
 118	[EPP_INDEX_BALANCE_PERFORMANCE] = "balance_performance",
 119	[EPP_INDEX_BALANCE_POWERSAVE] = "balance_power",
 120	[EPP_INDEX_POWERSAVE] = "power",
 121	NULL
 122};
 123
 124static unsigned int epp_values[] = {
 125	[EPP_INDEX_DEFAULT] = 0,
 126	[EPP_INDEX_PERFORMANCE] = AMD_CPPC_EPP_PERFORMANCE,
 127	[EPP_INDEX_BALANCE_PERFORMANCE] = AMD_CPPC_EPP_BALANCE_PERFORMANCE,
 128	[EPP_INDEX_BALANCE_POWERSAVE] = AMD_CPPC_EPP_BALANCE_POWERSAVE,
 129	[EPP_INDEX_POWERSAVE] = AMD_CPPC_EPP_POWERSAVE,
 130 };
 131
 132typedef int (*cppc_mode_transition_fn)(int);
 133
 134static struct quirk_entry quirk_amd_7k62 = {
 135	.nominal_freq = 2600,
 136	.lowest_freq = 550,
 137};
 138
 139static int __init dmi_matched_7k62_bios_bug(const struct dmi_system_id *dmi)
 140{
 141	/**
 142	 * match the broken bios for family 17h processor support CPPC V2
 143	 * broken BIOS lack of nominal_freq and lowest_freq capabilities
 144	 * definition in ACPI tables
 145	 */
 146	if (cpu_feature_enabled(X86_FEATURE_ZEN2)) {
 147		quirks = dmi->driver_data;
 148		pr_info("Overriding nominal and lowest frequencies for %s\n", dmi->ident);
 149		return 1;
 150	}
 151
 152	return 0;
 153}
 154
 155static const struct dmi_system_id amd_pstate_quirks_table[] __initconst = {
 156	{
 157		.callback = dmi_matched_7k62_bios_bug,
 158		.ident = "AMD EPYC 7K62",
 159		.matches = {
 160			DMI_MATCH(DMI_BIOS_VERSION, "5.14"),
 161			DMI_MATCH(DMI_BIOS_RELEASE, "12/12/2019"),
 162		},
 163		.driver_data = &quirk_amd_7k62,
 164	},
 165	{}
 166};
 167MODULE_DEVICE_TABLE(dmi, amd_pstate_quirks_table);
 168
 169static inline int get_mode_idx_from_str(const char *str, size_t size)
 170{
 171	int i;
 172
 173	for (i=0; i < AMD_PSTATE_MAX; i++) {
 174		if (!strncmp(str, amd_pstate_mode_string[i], size))
 175			return i;
 176	}
 177	return -EINVAL;
 178}
 179
 180static DEFINE_MUTEX(amd_pstate_limits_lock);
 181static DEFINE_MUTEX(amd_pstate_driver_lock);
 182
 183static s16 amd_pstate_get_epp(struct amd_cpudata *cpudata, u64 cppc_req_cached)
 184{
 185	u64 epp;
 186	int ret;
 187
 188	if (cpu_feature_enabled(X86_FEATURE_CPPC)) {
 189		if (!cppc_req_cached) {
 190			epp = rdmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ,
 191					&cppc_req_cached);
 192			if (epp)
 193				return epp;
 194		}
 195		epp = (cppc_req_cached >> 24) & 0xFF;
 196	} else {
 197		ret = cppc_get_epp_perf(cpudata->cpu, &epp);
 198		if (ret < 0) {
 199			pr_debug("Could not retrieve energy perf value (%d)\n", ret);
 200			return -EIO;
 201		}
 202	}
 203
 204	return (s16)(epp & 0xff);
 205}
 206
 207static int amd_pstate_get_energy_pref_index(struct amd_cpudata *cpudata)
 208{
 209	s16 epp;
 210	int index = -EINVAL;
 211
 212	epp = amd_pstate_get_epp(cpudata, 0);
 213	if (epp < 0)
 214		return epp;
 215
 216	switch (epp) {
 217	case AMD_CPPC_EPP_PERFORMANCE:
 218		index = EPP_INDEX_PERFORMANCE;
 219		break;
 220	case AMD_CPPC_EPP_BALANCE_PERFORMANCE:
 221		index = EPP_INDEX_BALANCE_PERFORMANCE;
 222		break;
 223	case AMD_CPPC_EPP_BALANCE_POWERSAVE:
 224		index = EPP_INDEX_BALANCE_POWERSAVE;
 225		break;
 226	case AMD_CPPC_EPP_POWERSAVE:
 227		index = EPP_INDEX_POWERSAVE;
 228		break;
 229	default:
 230		break;
 231	}
 232
 233	return index;
 234}
 235
 236static void msr_update_perf(struct amd_cpudata *cpudata, u32 min_perf,
 237			       u32 des_perf, u32 max_perf, bool fast_switch)
 238{
 239	if (fast_switch)
 240		wrmsrl(MSR_AMD_CPPC_REQ, READ_ONCE(cpudata->cppc_req_cached));
 241	else
 242		wrmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ,
 243			      READ_ONCE(cpudata->cppc_req_cached));
 244}
 245
 246DEFINE_STATIC_CALL(amd_pstate_update_perf, msr_update_perf);
 247
 248static inline void amd_pstate_update_perf(struct amd_cpudata *cpudata,
 249					  u32 min_perf, u32 des_perf,
 250					  u32 max_perf, bool fast_switch)
 251{
 252	static_call(amd_pstate_update_perf)(cpudata, min_perf, des_perf,
 253					    max_perf, fast_switch);
 254}
 255
 256static int amd_pstate_set_epp(struct amd_cpudata *cpudata, u32 epp)
 257{
 258	int ret;
 259	struct cppc_perf_ctrls perf_ctrls;
 260
 261	if (cpu_feature_enabled(X86_FEATURE_CPPC)) {
 262		u64 value = READ_ONCE(cpudata->cppc_req_cached);
 263
 264		value &= ~GENMASK_ULL(31, 24);
 265		value |= (u64)epp << 24;
 266		WRITE_ONCE(cpudata->cppc_req_cached, value);
 267
 268		ret = wrmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ, value);
 269		if (!ret)
 270			cpudata->epp_cached = epp;
 271	} else {
 272		amd_pstate_update_perf(cpudata, cpudata->min_limit_perf, 0U,
 273					     cpudata->max_limit_perf, false);
 274
 275		perf_ctrls.energy_perf = epp;
 276		ret = cppc_set_epp_perf(cpudata->cpu, &perf_ctrls, 1);
 277		if (ret) {
 278			pr_debug("failed to set energy perf value (%d)\n", ret);
 279			return ret;
 280		}
 281		cpudata->epp_cached = epp;
 282	}
 283
 284	return ret;
 285}
 286
 287static int amd_pstate_set_energy_pref_index(struct amd_cpudata *cpudata,
 288		int pref_index)
 289{
 290	int epp = -EINVAL;
 291	int ret;
 292
 293	if (!pref_index)
 294		epp = cpudata->epp_default;
 295
 296	if (epp == -EINVAL)
 297		epp = epp_values[pref_index];
 298
 299	if (epp > 0 && cpudata->policy == CPUFREQ_POLICY_PERFORMANCE) {
 300		pr_debug("EPP cannot be set under performance policy\n");
 301		return -EBUSY;
 302	}
 303
 304	ret = amd_pstate_set_epp(cpudata, epp);
 305
 306	return ret;
 307}
 308
 309static inline int msr_cppc_enable(bool enable)
 310{
 311	int ret, cpu;
 312	unsigned long logical_proc_id_mask = 0;
 313
 314       /*
 315        * MSR_AMD_CPPC_ENABLE is write-once, once set it cannot be cleared.
 316        */
 317	if (!enable)
 318		return 0;
 319
 320	if (enable == cppc_enabled)
 321		return 0;
 322
 323	for_each_present_cpu(cpu) {
 324		unsigned long logical_id = topology_logical_package_id(cpu);
 325
 326		if (test_bit(logical_id, &logical_proc_id_mask))
 327			continue;
 328
 329		set_bit(logical_id, &logical_proc_id_mask);
 330
 331		ret = wrmsrl_safe_on_cpu(cpu, MSR_AMD_CPPC_ENABLE,
 332				enable);
 333		if (ret)
 334			return ret;
 335	}
 336
 337	cppc_enabled = enable;
 338	return 0;
 339}
 340
 341static int shmem_cppc_enable(bool enable)
 342{
 343	int cpu, ret = 0;
 344	struct cppc_perf_ctrls perf_ctrls;
 345
 346	if (enable == cppc_enabled)
 347		return 0;
 348
 349	for_each_present_cpu(cpu) {
 350		ret = cppc_set_enable(cpu, enable);
 351		if (ret)
 352			return ret;
 353
 354		/* Enable autonomous mode for EPP */
 355		if (cppc_state == AMD_PSTATE_ACTIVE) {
 356			/* Set desired perf as zero to allow EPP firmware control */
 357			perf_ctrls.desired_perf = 0;
 358			ret = cppc_set_perf(cpu, &perf_ctrls);
 359			if (ret)
 360				return ret;
 361		}
 362	}
 363
 364	cppc_enabled = enable;
 365	return ret;
 366}
 367
 368DEFINE_STATIC_CALL(amd_pstate_cppc_enable, msr_cppc_enable);
 369
 370static inline int amd_pstate_cppc_enable(bool enable)
 371{
 372	return static_call(amd_pstate_cppc_enable)(enable);
 373}
 374
 375static int msr_init_perf(struct amd_cpudata *cpudata)
 376{
 377	u64 cap1, numerator;
 378
 379	int ret = rdmsrl_safe_on_cpu(cpudata->cpu, MSR_AMD_CPPC_CAP1,
 380				     &cap1);
 381	if (ret)
 382		return ret;
 383
 384	ret = amd_get_boost_ratio_numerator(cpudata->cpu, &numerator);
 385	if (ret)
 386		return ret;
 387
 388	WRITE_ONCE(cpudata->highest_perf, numerator);
 389	WRITE_ONCE(cpudata->max_limit_perf, numerator);
 390	WRITE_ONCE(cpudata->nominal_perf, AMD_CPPC_NOMINAL_PERF(cap1));
 391	WRITE_ONCE(cpudata->lowest_nonlinear_perf, AMD_CPPC_LOWNONLIN_PERF(cap1));
 392	WRITE_ONCE(cpudata->lowest_perf, AMD_CPPC_LOWEST_PERF(cap1));
 393	WRITE_ONCE(cpudata->prefcore_ranking, AMD_CPPC_HIGHEST_PERF(cap1));
 394	WRITE_ONCE(cpudata->min_limit_perf, AMD_CPPC_LOWEST_PERF(cap1));
 395	return 0;
 396}
 397
 398static int shmem_init_perf(struct amd_cpudata *cpudata)
 399{
 400	struct cppc_perf_caps cppc_perf;
 401	u64 numerator;
 402
 403	int ret = cppc_get_perf_caps(cpudata->cpu, &cppc_perf);
 404	if (ret)
 405		return ret;
 406
 407	ret = amd_get_boost_ratio_numerator(cpudata->cpu, &numerator);
 408	if (ret)
 409		return ret;
 410
 411	WRITE_ONCE(cpudata->highest_perf, numerator);
 412	WRITE_ONCE(cpudata->max_limit_perf, numerator);
 413	WRITE_ONCE(cpudata->nominal_perf, cppc_perf.nominal_perf);
 414	WRITE_ONCE(cpudata->lowest_nonlinear_perf,
 415		   cppc_perf.lowest_nonlinear_perf);
 416	WRITE_ONCE(cpudata->lowest_perf, cppc_perf.lowest_perf);
 417	WRITE_ONCE(cpudata->prefcore_ranking, cppc_perf.highest_perf);
 418	WRITE_ONCE(cpudata->min_limit_perf, cppc_perf.lowest_perf);
 419
 420	if (cppc_state == AMD_PSTATE_ACTIVE)
 421		return 0;
 422
 423	ret = cppc_get_auto_sel_caps(cpudata->cpu, &cppc_perf);
 424	if (ret) {
 425		pr_warn("failed to get auto_sel, ret: %d\n", ret);
 426		return 0;
 427	}
 428
 429	ret = cppc_set_auto_sel(cpudata->cpu,
 430			(cppc_state == AMD_PSTATE_PASSIVE) ? 0 : 1);
 431
 432	if (ret)
 433		pr_warn("failed to set auto_sel, ret: %d\n", ret);
 434
 435	return ret;
 436}
 437
 438DEFINE_STATIC_CALL(amd_pstate_init_perf, msr_init_perf);
 439
 440static inline int amd_pstate_init_perf(struct amd_cpudata *cpudata)
 441{
 442	return static_call(amd_pstate_init_perf)(cpudata);
 443}
 444
 445static void shmem_update_perf(struct amd_cpudata *cpudata,
 446			     u32 min_perf, u32 des_perf,
 447			     u32 max_perf, bool fast_switch)
 448{
 449	struct cppc_perf_ctrls perf_ctrls;
 450
 451	perf_ctrls.max_perf = max_perf;
 452	perf_ctrls.min_perf = min_perf;
 453	perf_ctrls.desired_perf = des_perf;
 454
 455	cppc_set_perf(cpudata->cpu, &perf_ctrls);
 456}
 457
 458static inline bool amd_pstate_sample(struct amd_cpudata *cpudata)
 459{
 460	u64 aperf, mperf, tsc;
 461	unsigned long flags;
 462
 463	local_irq_save(flags);
 464	rdmsrl(MSR_IA32_APERF, aperf);
 465	rdmsrl(MSR_IA32_MPERF, mperf);
 466	tsc = rdtsc();
 467
 468	if (cpudata->prev.mperf == mperf || cpudata->prev.tsc == tsc) {
 469		local_irq_restore(flags);
 470		return false;
 471	}
 472
 473	local_irq_restore(flags);
 474
 475	cpudata->cur.aperf = aperf;
 476	cpudata->cur.mperf = mperf;
 477	cpudata->cur.tsc =  tsc;
 478	cpudata->cur.aperf -= cpudata->prev.aperf;
 479	cpudata->cur.mperf -= cpudata->prev.mperf;
 480	cpudata->cur.tsc -= cpudata->prev.tsc;
 481
 482	cpudata->prev.aperf = aperf;
 483	cpudata->prev.mperf = mperf;
 484	cpudata->prev.tsc = tsc;
 485
 486	cpudata->freq = div64_u64((cpudata->cur.aperf * cpu_khz), cpudata->cur.mperf);
 487
 488	return true;
 489}
 490
 491static void amd_pstate_update(struct amd_cpudata *cpudata, u32 min_perf,
 492			      u32 des_perf, u32 max_perf, bool fast_switch, int gov_flags)
 493{
 494	unsigned long max_freq;
 495	struct cpufreq_policy *policy = cpufreq_cpu_get(cpudata->cpu);
 496	u64 prev = READ_ONCE(cpudata->cppc_req_cached);
 497	u32 nominal_perf = READ_ONCE(cpudata->nominal_perf);
 498	u64 value = prev;
 499
 500	min_perf = clamp_t(unsigned long, min_perf, cpudata->min_limit_perf,
 501			cpudata->max_limit_perf);
 502	max_perf = clamp_t(unsigned long, max_perf, cpudata->min_limit_perf,
 503			cpudata->max_limit_perf);
 504	des_perf = clamp_t(unsigned long, des_perf, min_perf, max_perf);
 505
 506	max_freq = READ_ONCE(cpudata->max_limit_freq);
 507	policy->cur = div_u64(des_perf * max_freq, max_perf);
 508
 509	if ((cppc_state == AMD_PSTATE_GUIDED) && (gov_flags & CPUFREQ_GOV_DYNAMIC_SWITCHING)) {
 510		min_perf = des_perf;
 511		des_perf = 0;
 512	}
 513
 514	value &= ~AMD_CPPC_MIN_PERF(~0L);
 515	value |= AMD_CPPC_MIN_PERF(min_perf);
 516
 517	value &= ~AMD_CPPC_DES_PERF(~0L);
 518	value |= AMD_CPPC_DES_PERF(des_perf);
 519
 520	/* limit the max perf when core performance boost feature is disabled */
 521	if (!cpudata->boost_supported)
 522		max_perf = min_t(unsigned long, nominal_perf, max_perf);
 523
 524	value &= ~AMD_CPPC_MAX_PERF(~0L);
 525	value |= AMD_CPPC_MAX_PERF(max_perf);
 526
 527	if (trace_amd_pstate_perf_enabled() && amd_pstate_sample(cpudata)) {
 528		trace_amd_pstate_perf(min_perf, des_perf, max_perf, cpudata->freq,
 529			cpudata->cur.mperf, cpudata->cur.aperf, cpudata->cur.tsc,
 530				cpudata->cpu, (value != prev), fast_switch);
 531	}
 532
 533	if (value == prev)
 534		goto cpufreq_policy_put;
 535
 536	WRITE_ONCE(cpudata->cppc_req_cached, value);
 537
 538	amd_pstate_update_perf(cpudata, min_perf, des_perf,
 539			       max_perf, fast_switch);
 540
 541cpufreq_policy_put:
 542	cpufreq_cpu_put(policy);
 543}
 544
 545static int amd_pstate_verify(struct cpufreq_policy_data *policy_data)
 546{
 547	/*
 548	 * Initialize lower frequency limit (i.e.policy->min) with
 549	 * lowest_nonlinear_frequency which is the most energy efficient
 550	 * frequency. Override the initial value set by cpufreq core and
 551	 * amd-pstate qos_requests.
 552	 */
 553	if (policy_data->min == FREQ_QOS_MIN_DEFAULT_VALUE) {
 554		struct cpufreq_policy *policy = cpufreq_cpu_get(policy_data->cpu);
 555		struct amd_cpudata *cpudata;
 556
 557		if (!policy)
 558			return -EINVAL;
 559
 560		cpudata = policy->driver_data;
 561		policy_data->min = cpudata->lowest_nonlinear_freq;
 562		cpufreq_cpu_put(policy);
 563	}
 564
 565	cpufreq_verify_within_cpu_limits(policy_data);
 566	pr_debug("policy_max =%d, policy_min=%d\n", policy_data->max, policy_data->min);
 567
 568	return 0;
 569}
 570
 571static int amd_pstate_update_min_max_limit(struct cpufreq_policy *policy)
 572{
 573	u32 max_limit_perf, min_limit_perf, lowest_perf, max_perf, max_freq;
 574	struct amd_cpudata *cpudata = policy->driver_data;
 575
 576	max_perf = READ_ONCE(cpudata->highest_perf);
 577	max_freq = READ_ONCE(cpudata->max_freq);
 578	max_limit_perf = div_u64(policy->max * max_perf, max_freq);
 579	min_limit_perf = div_u64(policy->min * max_perf, max_freq);
 580
 581	lowest_perf = READ_ONCE(cpudata->lowest_perf);
 582	if (min_limit_perf < lowest_perf)
 583		min_limit_perf = lowest_perf;
 584
 585	if (max_limit_perf < min_limit_perf)
 586		max_limit_perf = min_limit_perf;
 587
 588	WRITE_ONCE(cpudata->max_limit_perf, max_limit_perf);
 589	WRITE_ONCE(cpudata->min_limit_perf, min_limit_perf);
 590	WRITE_ONCE(cpudata->max_limit_freq, policy->max);
 591	WRITE_ONCE(cpudata->min_limit_freq, policy->min);
 592
 593	return 0;
 594}
 595
 596static int amd_pstate_update_freq(struct cpufreq_policy *policy,
 597				  unsigned int target_freq, bool fast_switch)
 598{
 599	struct cpufreq_freqs freqs;
 600	struct amd_cpudata *cpudata = policy->driver_data;
 601	unsigned long max_perf, min_perf, des_perf, cap_perf;
 602
 603	if (!cpudata->max_freq)
 604		return -ENODEV;
 605
 606	if (policy->min != cpudata->min_limit_freq || policy->max != cpudata->max_limit_freq)
 607		amd_pstate_update_min_max_limit(policy);
 608
 609	cap_perf = READ_ONCE(cpudata->highest_perf);
 610	min_perf = READ_ONCE(cpudata->lowest_perf);
 611	max_perf = cap_perf;
 612
 613	freqs.old = policy->cur;
 614	freqs.new = target_freq;
 615
 616	des_perf = DIV_ROUND_CLOSEST(target_freq * cap_perf,
 617				     cpudata->max_freq);
 618
 619	WARN_ON(fast_switch && !policy->fast_switch_enabled);
 620	/*
 621	 * If fast_switch is desired, then there aren't any registered
 622	 * transition notifiers. See comment for
 623	 * cpufreq_enable_fast_switch().
 624	 */
 625	if (!fast_switch)
 626		cpufreq_freq_transition_begin(policy, &freqs);
 627
 628	amd_pstate_update(cpudata, min_perf, des_perf,
 629			max_perf, fast_switch, policy->governor->flags);
 630
 631	if (!fast_switch)
 632		cpufreq_freq_transition_end(policy, &freqs, false);
 633
 634	return 0;
 635}
 636
 637static int amd_pstate_target(struct cpufreq_policy *policy,
 638			     unsigned int target_freq,
 639			     unsigned int relation)
 640{
 641	return amd_pstate_update_freq(policy, target_freq, false);
 642}
 643
 644static unsigned int amd_pstate_fast_switch(struct cpufreq_policy *policy,
 645				  unsigned int target_freq)
 646{
 647	if (!amd_pstate_update_freq(policy, target_freq, true))
 648		return target_freq;
 649	return policy->cur;
 650}
 651
 652static void amd_pstate_adjust_perf(unsigned int cpu,
 653				   unsigned long _min_perf,
 654				   unsigned long target_perf,
 655				   unsigned long capacity)
 656{
 657	unsigned long max_perf, min_perf, des_perf,
 658		      cap_perf, lowest_nonlinear_perf;
 659	struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
 660	struct amd_cpudata *cpudata;
 661
 662	if (!policy)
 663		return;
 664
 665	cpudata = policy->driver_data;
 666
 667	if (policy->min != cpudata->min_limit_freq || policy->max != cpudata->max_limit_freq)
 668		amd_pstate_update_min_max_limit(policy);
 669
 670
 671	cap_perf = READ_ONCE(cpudata->highest_perf);
 672	lowest_nonlinear_perf = READ_ONCE(cpudata->lowest_nonlinear_perf);
 673
 674	des_perf = cap_perf;
 675	if (target_perf < capacity)
 676		des_perf = DIV_ROUND_UP(cap_perf * target_perf, capacity);
 677
 678	min_perf = READ_ONCE(cpudata->lowest_perf);
 679	if (_min_perf < capacity)
 680		min_perf = DIV_ROUND_UP(cap_perf * _min_perf, capacity);
 681
 682	if (min_perf < lowest_nonlinear_perf)
 683		min_perf = lowest_nonlinear_perf;
 684
 685	max_perf = cap_perf;
 686	if (max_perf < min_perf)
 687		max_perf = min_perf;
 688
 689	des_perf = clamp_t(unsigned long, des_perf, min_perf, max_perf);
 690
 691	amd_pstate_update(cpudata, min_perf, des_perf, max_perf, true,
 692			policy->governor->flags);
 693	cpufreq_cpu_put(policy);
 694}
 695
 696static int amd_pstate_cpu_boost_update(struct cpufreq_policy *policy, bool on)
 697{
 698	struct amd_cpudata *cpudata = policy->driver_data;
 699	u32 nominal_freq, max_freq;
 700	int ret = 0;
 701
 702	nominal_freq = READ_ONCE(cpudata->nominal_freq);
 703	max_freq = READ_ONCE(cpudata->max_freq);
 704
 705	if (on)
 706		policy->cpuinfo.max_freq = max_freq;
 707	else if (policy->cpuinfo.max_freq > nominal_freq * 1000)
 708		policy->cpuinfo.max_freq = nominal_freq * 1000;
 709
 710	policy->max = policy->cpuinfo.max_freq;
 711
 712	if (cppc_state == AMD_PSTATE_PASSIVE) {
 713		ret = freq_qos_update_request(&cpudata->req[1], policy->cpuinfo.max_freq);
 714		if (ret < 0)
 715			pr_debug("Failed to update freq constraint: CPU%d\n", cpudata->cpu);
 716	}
 717
 718	return ret < 0 ? ret : 0;
 719}
 720
 721static int amd_pstate_set_boost(struct cpufreq_policy *policy, int state)
 722{
 723	struct amd_cpudata *cpudata = policy->driver_data;
 724	int ret;
 725
 726	if (!cpudata->boost_supported) {
 727		pr_err("Boost mode is not supported by this processor or SBIOS\n");
 728		return -EOPNOTSUPP;
 729	}
 730	guard(mutex)(&amd_pstate_driver_lock);
 731
 732	ret = amd_pstate_cpu_boost_update(policy, state);
 733	WRITE_ONCE(cpudata->boost_state, !ret ? state : false);
 734	policy->boost_enabled = !ret ? state : false;
 735	refresh_frequency_limits(policy);
 736
 737	return ret;
 738}
 739
 740static int amd_pstate_init_boost_support(struct amd_cpudata *cpudata)
 741{
 742	u64 boost_val;
 743	int ret = -1;
 744
 745	/*
 746	 * If platform has no CPB support or disable it, initialize current driver
 747	 * boost_enabled state to be false, it is not an error for cpufreq core to handle.
 748	 */
 749	if (!cpu_feature_enabled(X86_FEATURE_CPB)) {
 750		pr_debug_once("Boost CPB capabilities not present in the processor\n");
 751		ret = 0;
 752		goto exit_err;
 753	}
 754
 755	/* at least one CPU supports CPB, even if others fail later on to set up */
 756	current_pstate_driver->boost_enabled = true;
 757
 758	ret = rdmsrl_on_cpu(cpudata->cpu, MSR_K7_HWCR, &boost_val);
 759	if (ret) {
 760		pr_err_once("failed to read initial CPU boost state!\n");
 761		ret = -EIO;
 762		goto exit_err;
 763	}
 764
 765	if (!(boost_val & MSR_K7_HWCR_CPB_DIS))
 766		cpudata->boost_supported = true;
 767
 768	return 0;
 769
 770exit_err:
 771	cpudata->boost_supported = false;
 772	return ret;
 773}
 774
 775static void amd_perf_ctl_reset(unsigned int cpu)
 776{
 777	wrmsrl_on_cpu(cpu, MSR_AMD_PERF_CTL, 0);
 778}
 779
 780/*
 781 * Set amd-pstate preferred core enable can't be done directly from cpufreq callbacks
 782 * due to locking, so queue the work for later.
 783 */
 784static void amd_pstste_sched_prefcore_workfn(struct work_struct *work)
 785{
 786	sched_set_itmt_support();
 787}
 788static DECLARE_WORK(sched_prefcore_work, amd_pstste_sched_prefcore_workfn);
 789
 790#define CPPC_MAX_PERF	U8_MAX
 791
 792static void amd_pstate_init_prefcore(struct amd_cpudata *cpudata)
 793{
 794	/* user disabled or not detected */
 795	if (!amd_pstate_prefcore)
 796		return;
 797
 798	cpudata->hw_prefcore = true;
 799
 800	/*
 801	 * The priorities can be set regardless of whether or not
 802	 * sched_set_itmt_support(true) has been called and it is valid to
 803	 * update them at any time after it has been called.
 804	 */
 805	sched_set_itmt_core_prio((int)READ_ONCE(cpudata->prefcore_ranking), cpudata->cpu);
 806
 807	schedule_work(&sched_prefcore_work);
 808}
 809
 810static void amd_pstate_update_limits(unsigned int cpu)
 811{
 812	struct cpufreq_policy *policy = NULL;
 813	struct amd_cpudata *cpudata;
 814	u32 prev_high = 0, cur_high = 0;
 815	int ret;
 816	bool highest_perf_changed = false;
 817
 818	if (!amd_pstate_prefcore)
 819		return;
 820
 821	policy = cpufreq_cpu_get(cpu);
 822	if (!policy)
 823		return;
 824
 825	cpudata = policy->driver_data;
 826
 827	guard(mutex)(&amd_pstate_driver_lock);
 828
 829	ret = amd_get_highest_perf(cpu, &cur_high);
 830	if (ret) {
 831		cpufreq_cpu_put(policy);
 832		return;
 833	}
 834
 835	prev_high = READ_ONCE(cpudata->prefcore_ranking);
 836	highest_perf_changed = (prev_high != cur_high);
 837	if (highest_perf_changed) {
 838		WRITE_ONCE(cpudata->prefcore_ranking, cur_high);
 839
 840		if (cur_high < CPPC_MAX_PERF)
 841			sched_set_itmt_core_prio((int)cur_high, cpu);
 842	}
 843	cpufreq_cpu_put(policy);
 844
 845	if (!highest_perf_changed)
 846		cpufreq_update_policy(cpu);
 847
 848}
 849
 850/*
 851 * Get pstate transition delay time from ACPI tables that firmware set
 852 * instead of using hardcode value directly.
 853 */
 854static u32 amd_pstate_get_transition_delay_us(unsigned int cpu)
 855{
 856	u32 transition_delay_ns;
 857
 858	transition_delay_ns = cppc_get_transition_latency(cpu);
 859	if (transition_delay_ns == CPUFREQ_ETERNAL) {
 860		if (cpu_feature_enabled(X86_FEATURE_AMD_FAST_CPPC))
 861			return AMD_PSTATE_FAST_CPPC_TRANSITION_DELAY;
 862		else
 863			return AMD_PSTATE_TRANSITION_DELAY;
 864	}
 865
 866	return transition_delay_ns / NSEC_PER_USEC;
 867}
 868
 869/*
 870 * Get pstate transition latency value from ACPI tables that firmware
 871 * set instead of using hardcode value directly.
 872 */
 873static u32 amd_pstate_get_transition_latency(unsigned int cpu)
 874{
 875	u32 transition_latency;
 876
 877	transition_latency = cppc_get_transition_latency(cpu);
 878	if (transition_latency  == CPUFREQ_ETERNAL)
 879		return AMD_PSTATE_TRANSITION_LATENCY;
 880
 881	return transition_latency;
 882}
 883
 884/*
 885 * amd_pstate_init_freq: Initialize the max_freq, min_freq,
 886 *                       nominal_freq and lowest_nonlinear_freq for
 887 *                       the @cpudata object.
 888 *
 889 *  Requires: highest_perf, lowest_perf, nominal_perf and
 890 *            lowest_nonlinear_perf members of @cpudata to be
 891 *            initialized.
 892 *
 893 *  Returns 0 on success, non-zero value on failure.
 894 */
 895static int amd_pstate_init_freq(struct amd_cpudata *cpudata)
 896{
 897	int ret;
 898	u32 min_freq, max_freq;
 899	u32 nominal_perf, nominal_freq;
 900	u32 lowest_nonlinear_perf, lowest_nonlinear_freq;
 901	u32 boost_ratio, lowest_nonlinear_ratio;
 902	struct cppc_perf_caps cppc_perf;
 903
 904	ret = cppc_get_perf_caps(cpudata->cpu, &cppc_perf);
 905	if (ret)
 906		return ret;
 907
 908	if (quirks && quirks->lowest_freq)
 909		min_freq = quirks->lowest_freq * 1000;
 910	else
 911		min_freq = cppc_perf.lowest_freq * 1000;
 912
 913	if (quirks && quirks->nominal_freq)
 914		nominal_freq = quirks->nominal_freq ;
 915	else
 916		nominal_freq = cppc_perf.nominal_freq;
 917
 918	nominal_perf = READ_ONCE(cpudata->nominal_perf);
 919
 920	boost_ratio = div_u64(cpudata->highest_perf << SCHED_CAPACITY_SHIFT, nominal_perf);
 921	max_freq = (nominal_freq * boost_ratio >> SCHED_CAPACITY_SHIFT) * 1000;
 922
 923	lowest_nonlinear_perf = READ_ONCE(cpudata->lowest_nonlinear_perf);
 924	lowest_nonlinear_ratio = div_u64(lowest_nonlinear_perf << SCHED_CAPACITY_SHIFT,
 925					 nominal_perf);
 926	lowest_nonlinear_freq = (nominal_freq * lowest_nonlinear_ratio >> SCHED_CAPACITY_SHIFT) * 1000;
 927
 928	WRITE_ONCE(cpudata->min_freq, min_freq);
 929	WRITE_ONCE(cpudata->lowest_nonlinear_freq, lowest_nonlinear_freq);
 930	WRITE_ONCE(cpudata->nominal_freq, nominal_freq);
 931	WRITE_ONCE(cpudata->max_freq, max_freq);
 932
 933	/**
 934	 * Below values need to be initialized correctly, otherwise driver will fail to load
 935	 * max_freq is calculated according to (nominal_freq * highest_perf)/nominal_perf
 936	 * lowest_nonlinear_freq is a value between [min_freq, nominal_freq]
 937	 * Check _CPC in ACPI table objects if any values are incorrect
 938	 */
 939	if (min_freq <= 0 || max_freq <= 0 || nominal_freq <= 0 || min_freq > max_freq) {
 940		pr_err("min_freq(%d) or max_freq(%d) or nominal_freq(%d) value is incorrect\n",
 941			min_freq, max_freq, nominal_freq * 1000);
 942		return -EINVAL;
 943	}
 944
 945	if (lowest_nonlinear_freq <= min_freq || lowest_nonlinear_freq > nominal_freq * 1000) {
 946		pr_err("lowest_nonlinear_freq(%d) value is out of range [min_freq(%d), nominal_freq(%d)]\n",
 947			lowest_nonlinear_freq, min_freq, nominal_freq * 1000);
 948		return -EINVAL;
 949	}
 950
 951	return 0;
 952}
 953
 954static int amd_pstate_cpu_init(struct cpufreq_policy *policy)
 955{
 956	int min_freq, max_freq, ret;
 957	struct device *dev;
 958	struct amd_cpudata *cpudata;
 959
 960	/*
 961	 * Resetting PERF_CTL_MSR will put the CPU in P0 frequency,
 962	 * which is ideal for initialization process.
 963	 */
 964	amd_perf_ctl_reset(policy->cpu);
 965	dev = get_cpu_device(policy->cpu);
 966	if (!dev)
 967		return -ENODEV;
 968
 969	cpudata = kzalloc(sizeof(*cpudata), GFP_KERNEL);
 970	if (!cpudata)
 971		return -ENOMEM;
 972
 973	cpudata->cpu = policy->cpu;
 974
 975	ret = amd_pstate_init_perf(cpudata);
 976	if (ret)
 977		goto free_cpudata1;
 978
 979	amd_pstate_init_prefcore(cpudata);
 980
 981	ret = amd_pstate_init_freq(cpudata);
 982	if (ret)
 983		goto free_cpudata1;
 984
 985	ret = amd_pstate_init_boost_support(cpudata);
 986	if (ret)
 987		goto free_cpudata1;
 988
 989	min_freq = READ_ONCE(cpudata->min_freq);
 990	max_freq = READ_ONCE(cpudata->max_freq);
 991
 992	policy->cpuinfo.transition_latency = amd_pstate_get_transition_latency(policy->cpu);
 993	policy->transition_delay_us = amd_pstate_get_transition_delay_us(policy->cpu);
 994
 995	policy->min = min_freq;
 996	policy->max = max_freq;
 997
 998	policy->cpuinfo.min_freq = min_freq;
 999	policy->cpuinfo.max_freq = max_freq;
1000
1001	policy->boost_enabled = READ_ONCE(cpudata->boost_supported);
1002
1003	/* It will be updated by governor */
1004	policy->cur = policy->cpuinfo.min_freq;
1005
1006	if (cpu_feature_enabled(X86_FEATURE_CPPC))
1007		policy->fast_switch_possible = true;
1008
1009	ret = freq_qos_add_request(&policy->constraints, &cpudata->req[0],
1010				   FREQ_QOS_MIN, FREQ_QOS_MIN_DEFAULT_VALUE);
1011	if (ret < 0) {
1012		dev_err(dev, "Failed to add min-freq constraint (%d)\n", ret);
1013		goto free_cpudata1;
1014	}
1015
1016	ret = freq_qos_add_request(&policy->constraints, &cpudata->req[1],
1017				   FREQ_QOS_MAX, policy->cpuinfo.max_freq);
1018	if (ret < 0) {
1019		dev_err(dev, "Failed to add max-freq constraint (%d)\n", ret);
1020		goto free_cpudata2;
1021	}
1022
1023	cpudata->max_limit_freq = max_freq;
1024	cpudata->min_limit_freq = min_freq;
1025
1026	policy->driver_data = cpudata;
1027
1028	if (!current_pstate_driver->adjust_perf)
1029		current_pstate_driver->adjust_perf = amd_pstate_adjust_perf;
1030
1031	return 0;
1032
1033free_cpudata2:
1034	freq_qos_remove_request(&cpudata->req[0]);
1035free_cpudata1:
1036	kfree(cpudata);
1037	return ret;
1038}
1039
1040static void amd_pstate_cpu_exit(struct cpufreq_policy *policy)
1041{
1042	struct amd_cpudata *cpudata = policy->driver_data;
1043
1044	freq_qos_remove_request(&cpudata->req[1]);
1045	freq_qos_remove_request(&cpudata->req[0]);
1046	policy->fast_switch_possible = false;
1047	kfree(cpudata);
1048}
1049
1050static int amd_pstate_cpu_resume(struct cpufreq_policy *policy)
1051{
1052	int ret;
1053
1054	ret = amd_pstate_cppc_enable(true);
1055	if (ret)
1056		pr_err("failed to enable amd-pstate during resume, return %d\n", ret);
1057
1058	return ret;
1059}
1060
1061static int amd_pstate_cpu_suspend(struct cpufreq_policy *policy)
1062{
1063	int ret;
1064
1065	ret = amd_pstate_cppc_enable(false);
1066	if (ret)
1067		pr_err("failed to disable amd-pstate during suspend, return %d\n", ret);
1068
1069	return ret;
1070}
1071
1072/* Sysfs attributes */
1073
1074/*
1075 * This frequency is to indicate the maximum hardware frequency.
1076 * If boost is not active but supported, the frequency will be larger than the
1077 * one in cpuinfo.
1078 */
1079static ssize_t show_amd_pstate_max_freq(struct cpufreq_policy *policy,
1080					char *buf)
1081{
1082	int max_freq;
1083	struct amd_cpudata *cpudata = policy->driver_data;
1084
1085	max_freq = READ_ONCE(cpudata->max_freq);
1086	if (max_freq < 0)
1087		return max_freq;
1088
1089	return sysfs_emit(buf, "%u\n", max_freq);
1090}
1091
1092static ssize_t show_amd_pstate_lowest_nonlinear_freq(struct cpufreq_policy *policy,
1093						     char *buf)
1094{
1095	int freq;
1096	struct amd_cpudata *cpudata = policy->driver_data;
1097
1098	freq = READ_ONCE(cpudata->lowest_nonlinear_freq);
1099	if (freq < 0)
1100		return freq;
1101
1102	return sysfs_emit(buf, "%u\n", freq);
1103}
1104
1105/*
1106 * In some of ASICs, the highest_perf is not the one in the _CPC table, so we
1107 * need to expose it to sysfs.
1108 */
1109static ssize_t show_amd_pstate_highest_perf(struct cpufreq_policy *policy,
1110					    char *buf)
1111{
1112	u32 perf;
1113	struct amd_cpudata *cpudata = policy->driver_data;
1114
1115	perf = READ_ONCE(cpudata->highest_perf);
1116
1117	return sysfs_emit(buf, "%u\n", perf);
1118}
1119
1120static ssize_t show_amd_pstate_prefcore_ranking(struct cpufreq_policy *policy,
1121						char *buf)
1122{
1123	u32 perf;
1124	struct amd_cpudata *cpudata = policy->driver_data;
1125
1126	perf = READ_ONCE(cpudata->prefcore_ranking);
1127
1128	return sysfs_emit(buf, "%u\n", perf);
1129}
1130
1131static ssize_t show_amd_pstate_hw_prefcore(struct cpufreq_policy *policy,
1132					   char *buf)
1133{
1134	bool hw_prefcore;
1135	struct amd_cpudata *cpudata = policy->driver_data;
1136
1137	hw_prefcore = READ_ONCE(cpudata->hw_prefcore);
1138
1139	return sysfs_emit(buf, "%s\n", str_enabled_disabled(hw_prefcore));
1140}
1141
1142static ssize_t show_energy_performance_available_preferences(
1143				struct cpufreq_policy *policy, char *buf)
1144{
1145	int i = 0;
1146	int offset = 0;
1147	struct amd_cpudata *cpudata = policy->driver_data;
1148
1149	if (cpudata->policy == CPUFREQ_POLICY_PERFORMANCE)
1150		return sysfs_emit_at(buf, offset, "%s\n",
1151				energy_perf_strings[EPP_INDEX_PERFORMANCE]);
1152
1153	while (energy_perf_strings[i] != NULL)
1154		offset += sysfs_emit_at(buf, offset, "%s ", energy_perf_strings[i++]);
1155
1156	offset += sysfs_emit_at(buf, offset, "\n");
1157
1158	return offset;
1159}
1160
1161static ssize_t store_energy_performance_preference(
1162		struct cpufreq_policy *policy, const char *buf, size_t count)
1163{
1164	struct amd_cpudata *cpudata = policy->driver_data;
1165	char str_preference[21];
1166	ssize_t ret;
1167
1168	ret = sscanf(buf, "%20s", str_preference);
1169	if (ret != 1)
1170		return -EINVAL;
1171
1172	ret = match_string(energy_perf_strings, -1, str_preference);
1173	if (ret < 0)
1174		return -EINVAL;
1175
1176	guard(mutex)(&amd_pstate_limits_lock);
1177
1178	ret = amd_pstate_set_energy_pref_index(cpudata, ret);
1179
1180	return ret ? ret : count;
1181}
1182
1183static ssize_t show_energy_performance_preference(
1184				struct cpufreq_policy *policy, char *buf)
1185{
1186	struct amd_cpudata *cpudata = policy->driver_data;
1187	int preference;
1188
1189	preference = amd_pstate_get_energy_pref_index(cpudata);
1190	if (preference < 0)
1191		return preference;
1192
1193	return sysfs_emit(buf, "%s\n", energy_perf_strings[preference]);
1194}
1195
1196static void amd_pstate_driver_cleanup(void)
1197{
1198	amd_pstate_cppc_enable(false);
1199	cppc_state = AMD_PSTATE_DISABLE;
1200	current_pstate_driver = NULL;
1201}
1202
1203static int amd_pstate_set_driver(int mode_idx)
1204{
1205	if (mode_idx >= AMD_PSTATE_DISABLE && mode_idx < AMD_PSTATE_MAX) {
1206		cppc_state = mode_idx;
1207		if (cppc_state == AMD_PSTATE_DISABLE)
1208			pr_info("driver is explicitly disabled\n");
1209
1210		if (cppc_state == AMD_PSTATE_ACTIVE)
1211			current_pstate_driver = &amd_pstate_epp_driver;
1212
1213		if (cppc_state == AMD_PSTATE_PASSIVE || cppc_state == AMD_PSTATE_GUIDED)
1214			current_pstate_driver = &amd_pstate_driver;
1215
1216		return 0;
1217	}
1218
1219	return -EINVAL;
1220}
1221
1222static int amd_pstate_register_driver(int mode)
1223{
1224	int ret;
1225
1226	ret = amd_pstate_set_driver(mode);
1227	if (ret)
1228		return ret;
1229
1230	cppc_state = mode;
1231
1232	ret = amd_pstate_cppc_enable(true);
1233	if (ret) {
1234		pr_err("failed to enable cppc during amd-pstate driver registration, return %d\n",
1235		       ret);
1236		amd_pstate_driver_cleanup();
1237		return ret;
1238	}
1239
1240	ret = cpufreq_register_driver(current_pstate_driver);
1241	if (ret) {
1242		amd_pstate_driver_cleanup();
1243		return ret;
1244	}
1245
1246	return 0;
1247}
1248
1249static int amd_pstate_unregister_driver(int dummy)
1250{
1251	cpufreq_unregister_driver(current_pstate_driver);
1252	amd_pstate_driver_cleanup();
1253	return 0;
1254}
1255
1256static int amd_pstate_change_mode_without_dvr_change(int mode)
1257{
1258	int cpu = 0;
1259
1260	cppc_state = mode;
1261
1262	if (cpu_feature_enabled(X86_FEATURE_CPPC) || cppc_state == AMD_PSTATE_ACTIVE)
1263		return 0;
1264
1265	for_each_present_cpu(cpu) {
1266		cppc_set_auto_sel(cpu, (cppc_state == AMD_PSTATE_PASSIVE) ? 0 : 1);
1267	}
1268
1269	return 0;
1270}
1271
1272static int amd_pstate_change_driver_mode(int mode)
1273{
1274	int ret;
1275
1276	ret = amd_pstate_unregister_driver(0);
1277	if (ret)
1278		return ret;
1279
1280	ret = amd_pstate_register_driver(mode);
1281	if (ret)
1282		return ret;
1283
1284	return 0;
1285}
1286
1287static cppc_mode_transition_fn mode_state_machine[AMD_PSTATE_MAX][AMD_PSTATE_MAX] = {
1288	[AMD_PSTATE_DISABLE]         = {
1289		[AMD_PSTATE_DISABLE]     = NULL,
1290		[AMD_PSTATE_PASSIVE]     = amd_pstate_register_driver,
1291		[AMD_PSTATE_ACTIVE]      = amd_pstate_register_driver,
1292		[AMD_PSTATE_GUIDED]      = amd_pstate_register_driver,
1293	},
1294	[AMD_PSTATE_PASSIVE]         = {
1295		[AMD_PSTATE_DISABLE]     = amd_pstate_unregister_driver,
1296		[AMD_PSTATE_PASSIVE]     = NULL,
1297		[AMD_PSTATE_ACTIVE]      = amd_pstate_change_driver_mode,
1298		[AMD_PSTATE_GUIDED]      = amd_pstate_change_mode_without_dvr_change,
1299	},
1300	[AMD_PSTATE_ACTIVE]          = {
1301		[AMD_PSTATE_DISABLE]     = amd_pstate_unregister_driver,
1302		[AMD_PSTATE_PASSIVE]     = amd_pstate_change_driver_mode,
1303		[AMD_PSTATE_ACTIVE]      = NULL,
1304		[AMD_PSTATE_GUIDED]      = amd_pstate_change_driver_mode,
1305	},
1306	[AMD_PSTATE_GUIDED]          = {
1307		[AMD_PSTATE_DISABLE]     = amd_pstate_unregister_driver,
1308		[AMD_PSTATE_PASSIVE]     = amd_pstate_change_mode_without_dvr_change,
1309		[AMD_PSTATE_ACTIVE]      = amd_pstate_change_driver_mode,
1310		[AMD_PSTATE_GUIDED]      = NULL,
1311	},
1312};
1313
1314static ssize_t amd_pstate_show_status(char *buf)
1315{
1316	if (!current_pstate_driver)
1317		return sysfs_emit(buf, "disable\n");
1318
1319	return sysfs_emit(buf, "%s\n", amd_pstate_mode_string[cppc_state]);
1320}
1321
1322int amd_pstate_update_status(const char *buf, size_t size)
1323{
1324	int mode_idx;
1325
1326	if (size > strlen("passive") || size < strlen("active"))
1327		return -EINVAL;
1328
1329	mode_idx = get_mode_idx_from_str(buf, size);
1330
1331	if (mode_idx < 0 || mode_idx >= AMD_PSTATE_MAX)
1332		return -EINVAL;
1333
1334	if (mode_state_machine[cppc_state][mode_idx])
1335		return mode_state_machine[cppc_state][mode_idx](mode_idx);
1336
1337	return 0;
1338}
1339EXPORT_SYMBOL_GPL(amd_pstate_update_status);
1340
1341static ssize_t status_show(struct device *dev,
1342			   struct device_attribute *attr, char *buf)
1343{
1344
1345	guard(mutex)(&amd_pstate_driver_lock);
1346
1347	return amd_pstate_show_status(buf);
1348}
1349
1350static ssize_t status_store(struct device *a, struct device_attribute *b,
1351			    const char *buf, size_t count)
1352{
1353	char *p = memchr(buf, '\n', count);
1354	int ret;
1355
1356	guard(mutex)(&amd_pstate_driver_lock);
1357	ret = amd_pstate_update_status(buf, p ? p - buf : count);
1358
1359	return ret < 0 ? ret : count;
1360}
1361
1362static ssize_t prefcore_show(struct device *dev,
1363			     struct device_attribute *attr, char *buf)
1364{
1365	return sysfs_emit(buf, "%s\n", str_enabled_disabled(amd_pstate_prefcore));
1366}
1367
1368cpufreq_freq_attr_ro(amd_pstate_max_freq);
1369cpufreq_freq_attr_ro(amd_pstate_lowest_nonlinear_freq);
1370
1371cpufreq_freq_attr_ro(amd_pstate_highest_perf);
1372cpufreq_freq_attr_ro(amd_pstate_prefcore_ranking);
1373cpufreq_freq_attr_ro(amd_pstate_hw_prefcore);
1374cpufreq_freq_attr_rw(energy_performance_preference);
1375cpufreq_freq_attr_ro(energy_performance_available_preferences);
1376static DEVICE_ATTR_RW(status);
1377static DEVICE_ATTR_RO(prefcore);
1378
1379static struct freq_attr *amd_pstate_attr[] = {
1380	&amd_pstate_max_freq,
1381	&amd_pstate_lowest_nonlinear_freq,
1382	&amd_pstate_highest_perf,
1383	&amd_pstate_prefcore_ranking,
1384	&amd_pstate_hw_prefcore,
1385	NULL,
1386};
1387
1388static struct freq_attr *amd_pstate_epp_attr[] = {
1389	&amd_pstate_max_freq,
1390	&amd_pstate_lowest_nonlinear_freq,
1391	&amd_pstate_highest_perf,
1392	&amd_pstate_prefcore_ranking,
1393	&amd_pstate_hw_prefcore,
1394	&energy_performance_preference,
1395	&energy_performance_available_preferences,
1396	NULL,
1397};
1398
1399static struct attribute *pstate_global_attributes[] = {
1400	&dev_attr_status.attr,
1401	&dev_attr_prefcore.attr,
1402	NULL
1403};
1404
1405static const struct attribute_group amd_pstate_global_attr_group = {
1406	.name = "amd_pstate",
1407	.attrs = pstate_global_attributes,
1408};
1409
1410static bool amd_pstate_acpi_pm_profile_server(void)
1411{
1412	switch (acpi_gbl_FADT.preferred_profile) {
1413	case PM_ENTERPRISE_SERVER:
1414	case PM_SOHO_SERVER:
1415	case PM_PERFORMANCE_SERVER:
1416		return true;
1417	}
1418	return false;
1419}
1420
1421static bool amd_pstate_acpi_pm_profile_undefined(void)
1422{
1423	if (acpi_gbl_FADT.preferred_profile == PM_UNSPECIFIED)
1424		return true;
1425	if (acpi_gbl_FADT.preferred_profile >= NR_PM_PROFILES)
1426		return true;
1427	return false;
1428}
1429
1430static int amd_pstate_epp_cpu_init(struct cpufreq_policy *policy)
1431{
1432	int min_freq, max_freq, ret;
1433	struct amd_cpudata *cpudata;
1434	struct device *dev;
1435	u64 value;
1436
1437	/*
1438	 * Resetting PERF_CTL_MSR will put the CPU in P0 frequency,
1439	 * which is ideal for initialization process.
1440	 */
1441	amd_perf_ctl_reset(policy->cpu);
1442	dev = get_cpu_device(policy->cpu);
1443	if (!dev)
1444		return -ENODEV;
1445
1446	cpudata = kzalloc(sizeof(*cpudata), GFP_KERNEL);
1447	if (!cpudata)
1448		return -ENOMEM;
1449
1450	cpudata->cpu = policy->cpu;
1451	cpudata->epp_policy = 0;
1452
1453	ret = amd_pstate_init_perf(cpudata);
1454	if (ret)
1455		goto free_cpudata1;
1456
1457	amd_pstate_init_prefcore(cpudata);
1458
1459	ret = amd_pstate_init_freq(cpudata);
1460	if (ret)
1461		goto free_cpudata1;
1462
1463	ret = amd_pstate_init_boost_support(cpudata);
1464	if (ret)
1465		goto free_cpudata1;
1466
1467	min_freq = READ_ONCE(cpudata->min_freq);
1468	max_freq = READ_ONCE(cpudata->max_freq);
1469
1470	policy->cpuinfo.min_freq = min_freq;
1471	policy->cpuinfo.max_freq = max_freq;
1472	/* It will be updated by governor */
1473	policy->cur = policy->cpuinfo.min_freq;
1474
1475	policy->driver_data = cpudata;
1476
1477	cpudata->epp_cached = cpudata->epp_default = amd_pstate_get_epp(cpudata, 0);
1478
1479	policy->min = policy->cpuinfo.min_freq;
1480	policy->max = policy->cpuinfo.max_freq;
1481
1482	policy->boost_enabled = READ_ONCE(cpudata->boost_supported);
1483
1484	/*
1485	 * Set the policy to provide a valid fallback value in case
1486	 * the default cpufreq governor is neither powersave nor performance.
1487	 */
1488	if (amd_pstate_acpi_pm_profile_server() ||
1489	    amd_pstate_acpi_pm_profile_undefined())
1490		policy->policy = CPUFREQ_POLICY_PERFORMANCE;
1491	else
1492		policy->policy = CPUFREQ_POLICY_POWERSAVE;
1493
1494	if (cpu_feature_enabled(X86_FEATURE_CPPC)) {
1495		ret = rdmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_REQ, &value);
1496		if (ret)
1497			return ret;
1498		WRITE_ONCE(cpudata->cppc_req_cached, value);
1499
1500		ret = rdmsrl_on_cpu(cpudata->cpu, MSR_AMD_CPPC_CAP1, &value);
1501		if (ret)
1502			return ret;
1503		WRITE_ONCE(cpudata->cppc_cap1_cached, value);
1504	}
1505
1506	current_pstate_driver->adjust_perf = NULL;
1507
1508	return 0;
1509
1510free_cpudata1:
1511	kfree(cpudata);
1512	return ret;
1513}
1514
1515static void amd_pstate_epp_cpu_exit(struct cpufreq_policy *policy)
1516{
1517	struct amd_cpudata *cpudata = policy->driver_data;
1518
1519	if (cpudata) {
1520		kfree(cpudata);
1521		policy->driver_data = NULL;
1522	}
1523
1524	pr_debug("CPU %d exiting\n", policy->cpu);
1525}
1526
1527static int amd_pstate_epp_update_limit(struct cpufreq_policy *policy)
1528{
1529	struct amd_cpudata *cpudata = policy->driver_data;
1530	u32 max_perf, min_perf;
1531	u64 value;
1532	s16 epp;
1533
1534	max_perf = READ_ONCE(cpudata->highest_perf);
1535	min_perf = READ_ONCE(cpudata->lowest_perf);
1536	amd_pstate_update_min_max_limit(policy);
1537
1538	max_perf = clamp_t(unsigned long, max_perf, cpudata->min_limit_perf,
1539			cpudata->max_limit_perf);
1540	min_perf = clamp_t(unsigned long, min_perf, cpudata->min_limit_perf,
1541			cpudata->max_limit_perf);
1542	value = READ_ONCE(cpudata->cppc_req_cached);
1543
1544	if (cpudata->policy == CPUFREQ_POLICY_PERFORMANCE)
1545		min_perf = min(cpudata->nominal_perf, max_perf);
1546
1547	/* Initial min/max values for CPPC Performance Controls Register */
1548	value &= ~AMD_CPPC_MIN_PERF(~0L);
1549	value |= AMD_CPPC_MIN_PERF(min_perf);
1550
1551	value &= ~AMD_CPPC_MAX_PERF(~0L);
1552	value |= AMD_CPPC_MAX_PERF(max_perf);
1553
1554	/* CPPC EPP feature require to set zero to the desire perf bit */
1555	value &= ~AMD_CPPC_DES_PERF(~0L);
1556	value |= AMD_CPPC_DES_PERF(0);
1557
1558	cpudata->epp_policy = cpudata->policy;
1559
1560	/* Get BIOS pre-defined epp value */
1561	epp = amd_pstate_get_epp(cpudata, value);
1562	if (epp < 0) {
1563		/**
1564		 * This return value can only be negative for shared_memory
1565		 * systems where EPP register read/write not supported.
1566		 */
1567		return epp;
1568	}
1569
1570	if (cpudata->policy == CPUFREQ_POLICY_PERFORMANCE)
1571		epp = 0;
1572
1573	WRITE_ONCE(cpudata->cppc_req_cached, value);
1574	return amd_pstate_set_epp(cpudata, epp);
1575}
1576
1577static int amd_pstate_epp_set_policy(struct cpufreq_policy *policy)
1578{
1579	struct amd_cpudata *cpudata = policy->driver_data;
1580	int ret;
1581
1582	if (!policy->cpuinfo.max_freq)
1583		return -ENODEV;
1584
1585	pr_debug("set_policy: cpuinfo.max %u policy->max %u\n",
1586				policy->cpuinfo.max_freq, policy->max);
1587
1588	cpudata->policy = policy->policy;
1589
1590	ret = amd_pstate_epp_update_limit(policy);
1591	if (ret)
1592		return ret;
1593
1594	/*
1595	 * policy->cur is never updated with the amd_pstate_epp driver, but it
1596	 * is used as a stale frequency value. So, keep it within limits.
1597	 */
1598	policy->cur = policy->min;
1599
1600	return 0;
1601}
1602
1603static void amd_pstate_epp_reenable(struct amd_cpudata *cpudata)
1604{
1605	u64 max_perf;
1606	int ret;
1607
1608	ret = amd_pstate_cppc_enable(true);
1609	if (ret)
1610		pr_err("failed to enable amd pstate during resume, return %d\n", ret);
1611
1612	max_perf = READ_ONCE(cpudata->highest_perf);
1613
1614	amd_pstate_update_perf(cpudata, 0, 0, max_perf, false);
1615	amd_pstate_set_epp(cpudata, cpudata->epp_cached);
1616}
1617
1618static int amd_pstate_epp_cpu_online(struct cpufreq_policy *policy)
1619{
1620	struct amd_cpudata *cpudata = policy->driver_data;
1621
1622	pr_debug("AMD CPU Core %d going online\n", cpudata->cpu);
1623
1624	amd_pstate_epp_reenable(cpudata);
1625	cpudata->suspended = false;
1626
1627	return 0;
1628}
1629
1630static int amd_pstate_epp_cpu_offline(struct cpufreq_policy *policy)
1631{
1632	struct amd_cpudata *cpudata = policy->driver_data;
1633	int min_perf;
1634
1635	if (cpudata->suspended)
1636		return 0;
1637
1638	min_perf = READ_ONCE(cpudata->lowest_perf);
1639
1640	guard(mutex)(&amd_pstate_limits_lock);
1641
1642	amd_pstate_update_perf(cpudata, min_perf, 0, min_perf, false);
1643	amd_pstate_set_epp(cpudata, AMD_CPPC_EPP_BALANCE_POWERSAVE);
1644
1645	return 0;
1646}
1647
1648static int amd_pstate_epp_suspend(struct cpufreq_policy *policy)
1649{
1650	struct amd_cpudata *cpudata = policy->driver_data;
1651	int ret;
1652
1653	/* avoid suspending when EPP is not enabled */
1654	if (cppc_state != AMD_PSTATE_ACTIVE)
1655		return 0;
1656
1657	/* set this flag to avoid setting core offline*/
1658	cpudata->suspended = true;
1659
1660	/* disable CPPC in lowlevel firmware */
1661	ret = amd_pstate_cppc_enable(false);
1662	if (ret)
1663		pr_err("failed to suspend, return %d\n", ret);
1664
1665	return 0;
1666}
1667
1668static int amd_pstate_epp_resume(struct cpufreq_policy *policy)
1669{
1670	struct amd_cpudata *cpudata = policy->driver_data;
1671
1672	if (cpudata->suspended) {
1673		guard(mutex)(&amd_pstate_limits_lock);
1674
1675		/* enable amd pstate from suspend state*/
1676		amd_pstate_epp_reenable(cpudata);
1677
1678		cpudata->suspended = false;
1679	}
1680
1681	return 0;
1682}
1683
1684static struct cpufreq_driver amd_pstate_driver = {
1685	.flags		= CPUFREQ_CONST_LOOPS | CPUFREQ_NEED_UPDATE_LIMITS,
1686	.verify		= amd_pstate_verify,
1687	.target		= amd_pstate_target,
1688	.fast_switch    = amd_pstate_fast_switch,
1689	.init		= amd_pstate_cpu_init,
1690	.exit		= amd_pstate_cpu_exit,
1691	.suspend	= amd_pstate_cpu_suspend,
1692	.resume		= amd_pstate_cpu_resume,
1693	.set_boost	= amd_pstate_set_boost,
1694	.update_limits	= amd_pstate_update_limits,
1695	.name		= "amd-pstate",
1696	.attr		= amd_pstate_attr,
1697};
1698
1699static struct cpufreq_driver amd_pstate_epp_driver = {
1700	.flags		= CPUFREQ_CONST_LOOPS,
1701	.verify		= amd_pstate_verify,
1702	.setpolicy	= amd_pstate_epp_set_policy,
1703	.init		= amd_pstate_epp_cpu_init,
1704	.exit		= amd_pstate_epp_cpu_exit,
1705	.offline	= amd_pstate_epp_cpu_offline,
1706	.online		= amd_pstate_epp_cpu_online,
1707	.suspend	= amd_pstate_epp_suspend,
1708	.resume		= amd_pstate_epp_resume,
1709	.update_limits	= amd_pstate_update_limits,
1710	.set_boost	= amd_pstate_set_boost,
1711	.name		= "amd-pstate-epp",
1712	.attr		= amd_pstate_epp_attr,
1713};
1714
1715/*
1716 * CPPC function is not supported for family ID 17H with model_ID ranging from 0x10 to 0x2F.
1717 * show the debug message that helps to check if the CPU has CPPC support for loading issue.
1718 */
1719static bool amd_cppc_supported(void)
1720{
1721	struct cpuinfo_x86 *c = &cpu_data(0);
1722	bool warn = false;
1723
1724	if ((boot_cpu_data.x86 == 0x17) && (boot_cpu_data.x86_model < 0x30)) {
1725		pr_debug_once("CPPC feature is not supported by the processor\n");
1726		return false;
1727	}
1728
1729	/*
1730	 * If the CPPC feature is disabled in the BIOS for processors
1731	 * that support MSR-based CPPC, the AMD Pstate driver may not
1732	 * function correctly.
1733	 *
1734	 * For such processors, check the CPPC flag and display a
1735	 * warning message if the platform supports CPPC.
1736	 *
1737	 * Note: The code check below will not abort the driver
1738	 * registration process because of the code is added for
1739	 * debugging purposes. Besides, it may still be possible for
1740	 * the driver to work using the shared-memory mechanism.
1741	 */
1742	if (!cpu_feature_enabled(X86_FEATURE_CPPC)) {
1743		if (cpu_feature_enabled(X86_FEATURE_ZEN2)) {
1744			switch (c->x86_model) {
1745			case 0x60 ... 0x6F:
1746			case 0x80 ... 0xAF:
1747				warn = true;
1748				break;
1749			}
1750		} else if (cpu_feature_enabled(X86_FEATURE_ZEN3) ||
1751			   cpu_feature_enabled(X86_FEATURE_ZEN4)) {
1752			switch (c->x86_model) {
1753			case 0x10 ... 0x1F:
1754			case 0x40 ... 0xAF:
1755				warn = true;
1756				break;
1757			}
1758		} else if (cpu_feature_enabled(X86_FEATURE_ZEN5)) {
1759			warn = true;
1760		}
1761	}
1762
1763	if (warn)
1764		pr_warn_once("The CPPC feature is supported but currently disabled by the BIOS.\n"
1765					"Please enable it if your BIOS has the CPPC option.\n");
1766	return true;
1767}
1768
1769static int __init amd_pstate_init(void)
1770{
1771	struct device *dev_root;
1772	int ret;
1773
1774	if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
1775		return -ENODEV;
1776
1777	/* show debug message only if CPPC is not supported */
1778	if (!amd_cppc_supported())
1779		return -EOPNOTSUPP;
1780
1781	/* show warning message when BIOS broken or ACPI disabled */
1782	if (!acpi_cpc_valid()) {
1783		pr_warn_once("the _CPC object is not present in SBIOS or ACPI disabled\n");
1784		return -ENODEV;
1785	}
1786
1787	/* don't keep reloading if cpufreq_driver exists */
1788	if (cpufreq_get_current_driver())
1789		return -EEXIST;
1790
1791	quirks = NULL;
1792
1793	/* check if this machine need CPPC quirks */
1794	dmi_check_system(amd_pstate_quirks_table);
1795
1796	/*
1797	* determine the driver mode from the command line or kernel config.
1798	* If no command line input is provided, cppc_state will be AMD_PSTATE_UNDEFINED.
1799	* command line options will override the kernel config settings.
1800	*/
1801
1802	if (cppc_state == AMD_PSTATE_UNDEFINED) {
1803		/* Disable on the following configs by default:
1804		 * 1. Undefined platforms
1805		 * 2. Server platforms with CPUs older than Family 0x1A.
1806		 */
1807		if (amd_pstate_acpi_pm_profile_undefined() ||
1808		    (amd_pstate_acpi_pm_profile_server() && boot_cpu_data.x86 < 0x1A)) {
1809			pr_info("driver load is disabled, boot with specific mode to enable this\n");
1810			return -ENODEV;
1811		}
1812		/* get driver mode from kernel config option [1:4] */
1813		cppc_state = CONFIG_X86_AMD_PSTATE_DEFAULT_MODE;
1814	}
1815
1816	if (cppc_state == AMD_PSTATE_DISABLE) {
1817		pr_info("driver load is disabled, boot with specific mode to enable this\n");
1818		return -ENODEV;
1819	}
1820
1821	/* capability check */
1822	if (cpu_feature_enabled(X86_FEATURE_CPPC)) {
1823		pr_debug("AMD CPPC MSR based functionality is supported\n");
1824	} else {
1825		pr_debug("AMD CPPC shared memory based functionality is supported\n");
1826		static_call_update(amd_pstate_cppc_enable, shmem_cppc_enable);
1827		static_call_update(amd_pstate_init_perf, shmem_init_perf);
1828		static_call_update(amd_pstate_update_perf, shmem_update_perf);
1829	}
1830
1831	if (amd_pstate_prefcore) {
1832		ret = amd_detect_prefcore(&amd_pstate_prefcore);
1833		if (ret)
1834			return ret;
1835	}
1836
1837	ret = amd_pstate_register_driver(cppc_state);
1838	if (ret) {
1839		pr_err("failed to register with return %d\n", ret);
1840		return ret;
1841	}
1842
1843	dev_root = bus_get_dev_root(&cpu_subsys);
1844	if (dev_root) {
1845		ret = sysfs_create_group(&dev_root->kobj, &amd_pstate_global_attr_group);
1846		put_device(dev_root);
1847		if (ret) {
1848			pr_err("sysfs attribute export failed with error %d.\n", ret);
1849			goto global_attr_free;
1850		}
1851	}
1852
1853	return ret;
1854
1855global_attr_free:
1856	cpufreq_unregister_driver(current_pstate_driver);
1857	amd_pstate_cppc_enable(false);
1858	return ret;
1859}
1860device_initcall(amd_pstate_init);
1861
1862static int __init amd_pstate_param(char *str)
1863{
1864	size_t size;
1865	int mode_idx;
1866
1867	if (!str)
1868		return -EINVAL;
1869
1870	size = strlen(str);
1871	mode_idx = get_mode_idx_from_str(str, size);
1872
1873	return amd_pstate_set_driver(mode_idx);
1874}
1875
1876static int __init amd_prefcore_param(char *str)
1877{
1878	if (!strcmp(str, "disable"))
1879		amd_pstate_prefcore = false;
1880
1881	return 0;
1882}
1883
1884early_param("amd_pstate", amd_pstate_param);
1885early_param("amd_prefcore", amd_prefcore_param);
1886
1887MODULE_AUTHOR("Huang Rui <ray.huang@amd.com>");
1888MODULE_DESCRIPTION("AMD Processor P-state Frequency Driver");