summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/cezanne/cppc.c
blob: 79292a4153bd9db440bf1886d2a4beebaac8dad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/* SPDX-License-Identifier: GPL-2.0-only */

#include <acpi/acpi_pm.h>
#include <acpi/acpigen.h>
#include <arch/cpu.h>
#include <soc/cppc.h>
#include <soc/msr.h>

/*
 * version 2 is expected to be the typical use case.
 * For now this function 'punts' on version 3 and just
 * populates the additional fields with 'unsupported'.
 */
void cpu_init_cppc_config(struct cppc_config *config, u32 version)
{
	acpi_addr_t msr = {
		.space_id   = ACPI_ADDRESS_SPACE_FIXED,
		.bit_width  = 8,
		.bit_offset = 0,
		.access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS,
		.addrl      = 0,
		.addrh      = 0,
	};
	static const acpi_addr_t unsupported = {
		.space_id   = ACPI_ADDRESS_SPACE_MEMORY,
		.bit_width  = 0,
		.bit_offset = 0,
		.access_size = ACPI_ACCESS_SIZE_UNDEFINED,
		.addrl      = 0,
		.addrh      = 0,
	};

	config->version = version;

	/*
	 * Highest Performance:
	 */
	msr.addrl = MSR_CPPC_CAPABILITY_1;
	msr.bit_offset = SHIFT_CPPC_CAPABILITY_1_HIGHEST_PERF;
	config->regs[CPPC_HIGHEST_PERF] = msr;

	/*
	 * Lowest Nonlinear Performance -> Most Efficient Performance:
	 */
	msr.bit_offset = SHIFT_CPPC_CAPABILITY_1_LOW_NON_LIN_PERF;
	config->regs[CPPC_LOWEST_NONL_PERF] = msr;

	/*
	 * Lowest Performance:
	 */
	msr.bit_offset = SHIFT_CPPC_CAPABILITY_1_LOWEST_PERF;
	config->regs[CPPC_LOWEST_PERF] = msr;

	/*
	 * Guaranteed Performance Register:
	 */
	config->regs[CPPC_GUARANTEED_PERF] = unsupported;

	/*
	 * Nominal Performance -> Maximum Non-Turbo Ratio:
	 */
	msr.bit_offset = SHIFT_CPPC_CAPABILITY_1_NOMINAL_PERF;
	config->regs[CPPC_NOMINAL_PERF] = msr;

	/*
	 * Desired Performance Register:
	 */
	msr.addrl = MSR_CPPC_REQUEST;
	msr.bit_offset = SHIFT_CPPC_REQUEST_DES_PERF;
	config->regs[CPPC_DESIRED_PERF] = msr;

	/*
	 * Minimum Performance Register:
	 */
	msr.bit_offset = SHIFT_CPPC_REQUEST_MIN_PERF;
	config->regs[CPPC_MIN_PERF] = msr;

	/*
	 * Maximum Performance Register:
	 */
	msr.bit_offset = SHIFT_CPPC_REQUEST_MAX_PERF;
	config->regs[CPPC_MAX_PERF] = msr;

	/*
	 * Performance Reduction Tolerance Register:
	 */
	config->regs[CPPC_PERF_REDUCE_TOLERANCE] = unsupported;

	/*
	 * Time Window Register:
	 */
	config->regs[CPPC_TIME_WINDOW] = unsupported;

	/*
	 * Counter Wraparound Time:
	 */
	config->regs[CPPC_COUNTER_WRAP] = unsupported;

	/*
	 * Reference Performance Counter Register:
	 */
	msr.addrl = MSR_MAX_PERFORMANCE_FREQUENCY_CLOCK_COUNT;
	msr.bit_width = 64;
	msr.bit_offset = 0;
	config->regs[CPPC_REF_PERF_COUNTER] = msr;

	/*
	 * Delivered Performance Counter Register:
	 */
	msr.addrl = MSR_ACTUAL_PERFORMANCE_FREQUENCY_CLOCK_COUNT;
	config->regs[CPPC_DELIVERED_PERF_COUNTER] = msr;

	/*
	 * Performance Limited Register:
	 */
	msr.bit_width = 1;
	msr.addrl = MSR_CPPC_STATUS;
	msr.bit_offset = 1;
	config->regs[CPPC_PERF_LIMITED] = msr;

	/*
	 * CPPC Enable Register:
	 */
	msr.addrl = MSR_CPPC_ENABLE;
	msr.bit_offset = 0;
	config->regs[CPPC_ENABLE] = msr;

	if (version >= 2) {
		/* Autonomous Selection Enable is populated below */

		/*
		 * Autonomous Activity Window Register
		 */
		config->regs[CPPC_AUTO_ACTIVITY_WINDOW] = unsupported;

		/*
		 * Autonomous Energy Performance Preference Register
		 */
		msr.addrl = MSR_CPPC_REQUEST;
		msr.bit_width = 8;
		msr.bit_offset = SHIFT_CPPC_REQUEST_ENERGY_PERF_PREF;
		config->regs[CPPC_PERF_PREF] = msr;

		/* Reference Performance */
		config->regs[CPPC_REF_PERF] = unsupported;

		if (version >= 3) {
			/* Lowest Frequency */
			config->regs[CPPC_LOWEST_FREQ] = unsupported;
			/* Nominal Frequency */
			config->regs[CPPC_NOMINAL_FREQ] = unsupported;
		}

		/*
		 * Autonomous Selection Enable = 1
		 * This field is actually the first addition in version 2 but
		 * it's so unlike the others I'm populating it last.
		 */
		msr.space_id    = ACPI_ADDRESS_SPACE_MEMORY;
		msr.bit_width   = 32;
		msr.bit_offset  = 0;
		msr.access_size = ACPI_ACCESS_SIZE_UNDEFINED;
		msr.addrl       = 1;
		config->regs[CPPC_AUTO_SELECT] = unsupported;
	}
}


void generate_cppc_entries(unsigned int core_id)
{
	/* Generate GCPC package in first logical core */
	if (core_id == 0) {
		struct cppc_config cppc_config;
		cpu_init_cppc_config(&cppc_config, CPPC_VERSION_3);
		acpigen_write_CPPC_package(&cppc_config);
	}

	/* Write _CPC entry for each logical core */
	acpigen_write_CPPC_method();
}