xref: /openbmc/linux/arch/x86/events/msr.c (revision be709d48)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/perf_event.h>
3 #include <linux/nospec.h>
4 #include <asm/intel-family.h>
5 
6 enum perf_msr_id {
7 	PERF_MSR_TSC			= 0,
8 	PERF_MSR_APERF			= 1,
9 	PERF_MSR_MPERF			= 2,
10 	PERF_MSR_PPERF			= 3,
11 	PERF_MSR_SMI			= 4,
12 	PERF_MSR_PTSC			= 5,
13 	PERF_MSR_IRPERF			= 6,
14 	PERF_MSR_THERM			= 7,
15 	PERF_MSR_THERM_SNAP		= 8,
16 	PERF_MSR_THERM_UNIT		= 9,
17 	PERF_MSR_EVENT_MAX,
18 };
19 
20 static bool test_aperfmperf(int idx)
21 {
22 	return boot_cpu_has(X86_FEATURE_APERFMPERF);
23 }
24 
25 static bool test_ptsc(int idx)
26 {
27 	return boot_cpu_has(X86_FEATURE_PTSC);
28 }
29 
30 static bool test_irperf(int idx)
31 {
32 	return boot_cpu_has(X86_FEATURE_IRPERF);
33 }
34 
35 static bool test_therm_status(int idx)
36 {
37 	return boot_cpu_has(X86_FEATURE_DTHERM);
38 }
39 
40 static bool test_intel(int idx)
41 {
42 	if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL ||
43 	    boot_cpu_data.x86 != 6)
44 		return false;
45 
46 	switch (boot_cpu_data.x86_model) {
47 	case INTEL_FAM6_NEHALEM:
48 	case INTEL_FAM6_NEHALEM_G:
49 	case INTEL_FAM6_NEHALEM_EP:
50 	case INTEL_FAM6_NEHALEM_EX:
51 
52 	case INTEL_FAM6_WESTMERE:
53 	case INTEL_FAM6_WESTMERE_EP:
54 	case INTEL_FAM6_WESTMERE_EX:
55 
56 	case INTEL_FAM6_SANDYBRIDGE:
57 	case INTEL_FAM6_SANDYBRIDGE_X:
58 
59 	case INTEL_FAM6_IVYBRIDGE:
60 	case INTEL_FAM6_IVYBRIDGE_X:
61 
62 	case INTEL_FAM6_HASWELL_CORE:
63 	case INTEL_FAM6_HASWELL_X:
64 	case INTEL_FAM6_HASWELL_ULT:
65 	case INTEL_FAM6_HASWELL_GT3E:
66 
67 	case INTEL_FAM6_BROADWELL_CORE:
68 	case INTEL_FAM6_BROADWELL_XEON_D:
69 	case INTEL_FAM6_BROADWELL_GT3E:
70 	case INTEL_FAM6_BROADWELL_X:
71 
72 	case INTEL_FAM6_ATOM_SILVERMONT:
73 	case INTEL_FAM6_ATOM_SILVERMONT_X:
74 	case INTEL_FAM6_ATOM_AIRMONT:
75 
76 	case INTEL_FAM6_ATOM_GOLDMONT:
77 	case INTEL_FAM6_ATOM_GOLDMONT_X:
78 
79 	case INTEL_FAM6_ATOM_GOLDMONT_PLUS:
80 
81 	case INTEL_FAM6_XEON_PHI_KNL:
82 	case INTEL_FAM6_XEON_PHI_KNM:
83 		if (idx == PERF_MSR_SMI)
84 			return true;
85 		break;
86 
87 	case INTEL_FAM6_SKYLAKE_MOBILE:
88 	case INTEL_FAM6_SKYLAKE_DESKTOP:
89 	case INTEL_FAM6_SKYLAKE_X:
90 	case INTEL_FAM6_KABYLAKE_MOBILE:
91 	case INTEL_FAM6_KABYLAKE_DESKTOP:
92 		if (idx == PERF_MSR_SMI || idx == PERF_MSR_PPERF)
93 			return true;
94 		break;
95 	}
96 
97 	return false;
98 }
99 
100 struct perf_msr {
101 	u64	msr;
102 	struct	perf_pmu_events_attr *attr;
103 	bool	(*test)(int idx);
104 };
105 
106 PMU_EVENT_ATTR_STRING(tsc,				evattr_tsc,		"event=0x00"	);
107 PMU_EVENT_ATTR_STRING(aperf,				evattr_aperf,		"event=0x01"	);
108 PMU_EVENT_ATTR_STRING(mperf,				evattr_mperf,		"event=0x02"	);
109 PMU_EVENT_ATTR_STRING(pperf,				evattr_pperf,		"event=0x03"	);
110 PMU_EVENT_ATTR_STRING(smi,				evattr_smi,		"event=0x04"	);
111 PMU_EVENT_ATTR_STRING(ptsc,				evattr_ptsc,		"event=0x05"	);
112 PMU_EVENT_ATTR_STRING(irperf,				evattr_irperf,		"event=0x06"	);
113 PMU_EVENT_ATTR_STRING(cpu_thermal_margin,		evattr_therm,		"event=0x07"	);
114 PMU_EVENT_ATTR_STRING(cpu_thermal_margin.snapshot,	evattr_therm_snap,	"1"		);
115 PMU_EVENT_ATTR_STRING(cpu_thermal_margin.unit,		evattr_therm_unit,	"C"		);
116 
117 static struct perf_msr msr[] = {
118 	[PERF_MSR_TSC]		= { 0,				&evattr_tsc,		NULL,			},
119 	[PERF_MSR_APERF]	= { MSR_IA32_APERF,		&evattr_aperf,		test_aperfmperf,	},
120 	[PERF_MSR_MPERF]	= { MSR_IA32_MPERF,		&evattr_mperf,		test_aperfmperf,	},
121 	[PERF_MSR_PPERF]	= { MSR_PPERF,			&evattr_pperf,		test_intel,		},
122 	[PERF_MSR_SMI]		= { MSR_SMI_COUNT,		&evattr_smi,		test_intel,		},
123 	[PERF_MSR_PTSC]		= { MSR_F15H_PTSC,		&evattr_ptsc,		test_ptsc,		},
124 	[PERF_MSR_IRPERF]	= { MSR_F17H_IRPERF,		&evattr_irperf,		test_irperf,		},
125 	[PERF_MSR_THERM]	= { MSR_IA32_THERM_STATUS,	&evattr_therm,		test_therm_status,	},
126 	[PERF_MSR_THERM_SNAP]	= { MSR_IA32_THERM_STATUS,	&evattr_therm_snap,	test_therm_status,	},
127 	[PERF_MSR_THERM_UNIT]	= { MSR_IA32_THERM_STATUS,	&evattr_therm_unit,	test_therm_status,	},
128 };
129 
130 static struct attribute *events_attrs[PERF_MSR_EVENT_MAX + 1] = {
131 	NULL,
132 };
133 
134 static struct attribute_group events_attr_group = {
135 	.name = "events",
136 	.attrs = events_attrs,
137 };
138 
139 PMU_FORMAT_ATTR(event, "config:0-63");
140 static struct attribute *format_attrs[] = {
141 	&format_attr_event.attr,
142 	NULL,
143 };
144 static struct attribute_group format_attr_group = {
145 	.name = "format",
146 	.attrs = format_attrs,
147 };
148 
149 static const struct attribute_group *attr_groups[] = {
150 	&events_attr_group,
151 	&format_attr_group,
152 	NULL,
153 };
154 
155 static int msr_event_init(struct perf_event *event)
156 {
157 	u64 cfg = event->attr.config;
158 
159 	if (event->attr.type != event->pmu->type)
160 		return -ENOENT;
161 
162 	/* unsupported modes and filters */
163 	if (event->attr.sample_period) /* no sampling */
164 		return -EINVAL;
165 
166 	if (cfg >= PERF_MSR_EVENT_MAX)
167 		return -EINVAL;
168 
169 	cfg = array_index_nospec((unsigned long)cfg, PERF_MSR_EVENT_MAX);
170 
171 	if (!msr[cfg].attr)
172 		return -EINVAL;
173 
174 	event->hw.idx		= -1;
175 	event->hw.event_base	= msr[cfg].msr;
176 	event->hw.config	= cfg;
177 
178 	return 0;
179 }
180 
181 static inline u64 msr_read_counter(struct perf_event *event)
182 {
183 	u64 now;
184 
185 	if (event->hw.event_base)
186 		rdmsrl(event->hw.event_base, now);
187 	else
188 		now = rdtsc_ordered();
189 
190 	return now;
191 }
192 
193 static void msr_event_update(struct perf_event *event)
194 {
195 	u64 prev, now;
196 	s64 delta;
197 
198 	/* Careful, an NMI might modify the previous event value: */
199 again:
200 	prev = local64_read(&event->hw.prev_count);
201 	now = msr_read_counter(event);
202 
203 	if (local64_cmpxchg(&event->hw.prev_count, prev, now) != prev)
204 		goto again;
205 
206 	delta = now - prev;
207 	if (unlikely(event->hw.event_base == MSR_SMI_COUNT)) {
208 		delta = sign_extend64(delta, 31);
209 		local64_add(delta, &event->count);
210 	} else if (unlikely(event->hw.event_base == MSR_IA32_THERM_STATUS)) {
211 		/* If valid, extract digital readout, otherwise set to -1: */
212 		now = now & (1ULL << 31) ? (now >> 16) & 0x3f :  -1;
213 		local64_set(&event->count, now);
214 	} else {
215 		local64_add(delta, &event->count);
216 	}
217 }
218 
219 static void msr_event_start(struct perf_event *event, int flags)
220 {
221 	u64 now = msr_read_counter(event);
222 
223 	local64_set(&event->hw.prev_count, now);
224 }
225 
226 static void msr_event_stop(struct perf_event *event, int flags)
227 {
228 	msr_event_update(event);
229 }
230 
231 static void msr_event_del(struct perf_event *event, int flags)
232 {
233 	msr_event_stop(event, PERF_EF_UPDATE);
234 }
235 
236 static int msr_event_add(struct perf_event *event, int flags)
237 {
238 	if (flags & PERF_EF_START)
239 		msr_event_start(event, flags);
240 
241 	return 0;
242 }
243 
244 static struct pmu pmu_msr = {
245 	.task_ctx_nr	= perf_sw_context,
246 	.attr_groups	= attr_groups,
247 	.event_init	= msr_event_init,
248 	.add		= msr_event_add,
249 	.del		= msr_event_del,
250 	.start		= msr_event_start,
251 	.stop		= msr_event_stop,
252 	.read		= msr_event_update,
253 	.capabilities	= PERF_PMU_CAP_NO_INTERRUPT | PERF_PMU_CAP_NO_EXCLUDE,
254 };
255 
256 static int __init msr_init(void)
257 {
258 	int i, j = 0;
259 
260 	if (!boot_cpu_has(X86_FEATURE_TSC)) {
261 		pr_cont("no MSR PMU driver.\n");
262 		return 0;
263 	}
264 
265 	/* Probe the MSRs. */
266 	for (i = PERF_MSR_TSC + 1; i < PERF_MSR_EVENT_MAX; i++) {
267 		u64 val;
268 
269 		/* Virt sucks; you cannot tell if a R/O MSR is present :/ */
270 		if (!msr[i].test(i) || rdmsrl_safe(msr[i].msr, &val))
271 			msr[i].attr = NULL;
272 	}
273 
274 	/* List remaining MSRs in the sysfs attrs. */
275 	for (i = 0; i < PERF_MSR_EVENT_MAX; i++) {
276 		if (msr[i].attr)
277 			events_attrs[j++] = &msr[i].attr->attr.attr;
278 	}
279 	events_attrs[j] = NULL;
280 
281 	perf_pmu_register(&pmu_msr, "msr", -1);
282 
283 	return 0;
284 }
285 device_initcall(msr_init);
286