public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC] x86, perf: Add an aperfmperf driver
@ 2015-04-28 21:25 Andy Lutomirski
  2015-04-28 22:29 ` Brown, Len
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Andy Lutomirski @ 2015-04-28 21:25 UTC (permalink / raw)
  To: Len Brown, Peter Zijlstra, linux-kernel@vger.kernel.org
  Cc: Paul Mackerras, Ingo Molnar, Arnaldo Carvalho de Melo,
	Andy Lutomirski

Signed-off-by: Andy Lutomirski <luto@kernel.org>
---

This driver seems a little bit silly, but I can imagine it being useful.  For
example, I think that turbostat could do some of its work without being
root if we had a driver like this.

Thoughts?  Would it make sense at all?  Did I wire it up right?  This is
the only PMU driver I've ever written, and it could have any number of
issues.

 arch/x86/kernel/cpu/Makefile                |   2 +
 arch/x86/kernel/cpu/perf_event_aperfmperf.c | 119 ++++++++++++++++++++++++++++
 2 files changed, 121 insertions(+)
 create mode 100644 arch/x86/kernel/cpu/perf_event_aperfmperf.c

diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile
index 80091ae54c2b..fadc822efc90 100644
--- a/arch/x86/kernel/cpu/Makefile
+++ b/arch/x86/kernel/cpu/Makefile
@@ -45,6 +45,8 @@ obj-$(CONFIG_PERF_EVENTS_INTEL_UNCORE)	+= perf_event_intel_uncore.o \
 					   perf_event_intel_uncore_snb.o \
 					   perf_event_intel_uncore_snbep.o \
 					   perf_event_intel_uncore_nhmex.o
+obj-$(CONFIG_CPU_SUP_INTEL)		+= perf_event_aperf_mperf.o
+obj-$(CONFIG_CPU_SUP_AMD)		+= perf_event_aperf_mperf.o
 endif
 
 
diff --git a/arch/x86/kernel/cpu/perf_event_aperfmperf.c b/arch/x86/kernel/cpu/perf_event_aperfmperf.c
new file mode 100644
index 000000000000..6e6d113bd9ce
--- /dev/null
+++ b/arch/x86/kernel/cpu/perf_event_aperfmperf.c
@@ -0,0 +1,119 @@
+#include <linux/perf_event.h>
+
+#define APERFMPERF_EVENT_APERF 0
+#define APERFMPERF_EVENT_MPERF 1
+
+PMU_EVENT_ATTR_STRING(aperf, evattr_aperf, "event=0x00");
+PMU_EVENT_ATTR_STRING(mperf, evattr_mperf, "event=0x01");
+static struct attribute *events_attrs[] = {
+	&evattr_aperf.attr.attr,
+	&evattr_mperf.attr.attr,
+	NULL,
+};
+static struct attribute_group events_attr_group = {
+	.name = "events",
+	.attrs = events_attrs,
+};
+
+PMU_FORMAT_ATTR(event, "config:0-63");
+static struct attribute *format_attrs[] = {
+	&format_attr_event.attr,
+	NULL,
+};
+static struct attribute_group format_attr_group = {
+	.name = "format",
+	.attrs = format_attrs,
+};
+
+static const struct attribute_group *attr_groups[] = {
+	&events_attr_group,
+	&format_attr_group,
+	NULL,
+};
+
+static int aperfmperf_event_init(struct perf_event *event)
+{
+	if (event->attr.type != event->pmu->type)
+		return -ENOENT;
+
+	if (event->attr.config != APERFMPERF_EVENT_APERF &&
+	    event->attr.config != APERFMPERF_EVENT_MPERF)
+		return -ENOENT;
+
+	if (event->attr.config1 != 0)
+		return -ENOENT;
+
+	/* no sampling */
+	if (event->hw.sample_period)
+		return -EINVAL;
+
+	/* unsupported modes and filters */
+	if (event->attr.exclude_user   ||
+	    event->attr.exclude_kernel ||
+	    event->attr.exclude_hv     ||
+	    event->attr.exclude_idle   ||
+	    event->attr.exclude_host   ||
+	    event->attr.exclude_guest  ||
+	    event->attr.freq           ||
+	    event->attr.sample_period) /* no sampling */
+		return -EINVAL;
+
+	event->hw.idx = -1;
+	event->hw.event_base = (event->attr.config == APERFMPERF_EVENT_APERF ?
+				MSR_IA32_APERF : MSR_IA32_MPERF);
+
+	return 0;
+}
+
+static void aperfmperf_event_update(struct perf_event *event)
+{
+	u64 prev;
+	u64 now;
+
+	rdmsrl(event->hw.event_base, now);
+	prev = local64_xchg(&event->hw.prev_count, now);
+	local64_add(now - prev, &event->count);
+}
+
+static void aperfmperf_event_start(struct perf_event *event, int flags)
+{
+	u64 now;
+
+	rdmsrl(event->hw.event_base, now);
+	local64_set(&event->hw.prev_count, now);
+}
+
+static void aperfmperf_event_stop_or_del(struct perf_event *event, int flags)
+{
+	aperfmperf_event_update(event);
+}
+
+static int aperfmperf_event_add(struct perf_event *event, int flags)
+{
+	if (flags & PERF_EF_START)
+		aperfmperf_event_start(event, flags);
+
+	return 0;
+}
+
+static struct pmu pmu_aperfmperf = {
+        .task_ctx_nr    = perf_invalid_context,
+	.attr_groups	= attr_groups,
+        .event_init     = aperfmperf_event_init,
+        .add            = aperfmperf_event_add,
+        .del            = aperfmperf_event_stop_or_del,
+        .start          = aperfmperf_event_start,
+        .stop           = aperfmperf_event_stop_or_del,
+        .read           = aperfmperf_event_update,
+};
+
+static int __init aperfmperf_init(void)
+{
+	if (!boot_cpu_has(X86_FEATURE_APERFMPERF))
+		return -ENODEV;
+
+	perf_pmu_register(&pmu_aperfmperf, "aperfmperf", -1);
+
+	return 0;
+}
+device_initcall(aperfmperf_init);
-- 
2.3.0


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2015-05-11  9:48 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-28 21:25 [RFC] x86, perf: Add an aperfmperf driver Andy Lutomirski
2015-04-28 22:29 ` Brown, Len
2015-04-28 22:43   ` Andy Lutomirski
2015-04-29  9:13     ` Peter Zijlstra
2015-04-29  9:09 ` Peter Zijlstra
2015-04-29 18:50   ` Andy Lutomirski
2015-04-30  1:17     ` Andy Lutomirski
2015-04-30  8:51       ` Peter Zijlstra
2015-04-30 22:09         ` Andy Lutomirski
2015-04-29  9:14 ` Peter Zijlstra
2015-05-11  9:48 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox