Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1340225

[PATCH v8 1/7] powerpc/powernv: Data structure and macros definition

From Madhavan Srinivasan <maddy@linux.vnet.ibm.com>
Newsgroups linux.kernel
Subject [PATCH v8 1/7] powerpc/powernv: Data structure and macros definition
Date 2016-02-23 05:00 +0100
Message-ID <r5ciL-7X0-7@gated-at.bofh.it> (permalink)
References <r5c95-7TE-29@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Create new header file "nest-pmu.h" to add the data structures
and macros needed for the nest pmu support.

Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Anton Blanchard <anton@samba.org>
Cc: Daniel Axtens <dja@axtens.net>
Cc: Stephane Eranian <eranian@google.com>
Cc: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Signed-off-by: Madhavan Srinivasan <maddy@linux.vnet.ibm.com>
---
 arch/powerpc/include/asm/nest-pmu.h | 55 +++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
 create mode 100644 arch/powerpc/include/asm/nest-pmu.h

diff --git a/arch/powerpc/include/asm/nest-pmu.h b/arch/powerpc/include/asm/nest-pmu.h
new file mode 100644
index 000000000000..13c21817e3cc
--- /dev/null
+++ b/arch/powerpc/include/asm/nest-pmu.h
@@ -0,0 +1,55 @@
+/*
+ * Nest Performance Monitor counter support.
+ *
+ * Copyright (C) 2016 Madhavan Srinivasan, IBM Corporation.
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ * by the Free Software Foundation.
+ */
+
+#include <linux/perf_event.h>
+#include <linux/slab.h>
+#include <linux/of.h>
+#include <linux/io.h>
+#include <asm/opal.h>
+
+#define NEST_MAX_CHIPS			32
+#define NEST_MAX_PMUS			32
+#define NEST_MAX_PMU_NAME_LEN		256
+#define NEST_MAX_EVENTS_SUPPORTED	64
+#define NEST_ENGINE_START		1
+#define NEST_ENGINE_STOP		0
+#define NEST_MODE_PRODUCTION		1
+#define NEST_MAX_PAGES			16
+
+/*
+ * Structure to hold per chip specific memory address
+ * information for nest pmus. Nest Counter data are exported
+ * in per-chip reserved memory region by the PORE Engine.
+ */
+struct perchip_nest_info {
+	u32 chip_id;
+	u64 pbase;
+	u64 vbase[NEST_MAX_PAGES];
+	u32 size;
+};
+
+/*
+ * Place holder for nest pmu events and values.
+ */
+struct nest_ima_events {
+	char *ev_name;
+	char *ev_value;
+};
+
+/*
+ * Device tree parser code detects nest pmu support and
+ * registers new nest pmus. This structure will
+ * hold the pmu functions and attrs for each nest pmu and
+ * will be referenced at the time of pmu registration.
+ */
+struct nest_pmu {
+	struct pmu pmu;
+	const struct attribute_group *attr_groups[4];
+};
-- 
1.9.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v8 0/7] powerpc/powernv: Nest Instrumentation support Madhavan Srinivasan <maddy@linux.vnet.ibm.com> - 2016-02-23 05:00 +0100
  [PATCH v8 4/7] powerpc/powernv: detect supported nest units and its events Madhavan Srinivasan <maddy@linux.vnet.ibm.com> - 2016-02-23 05:00 +0100
  [PATCH v8 2/7] powerpc/powernv: Add OPAL support for Nest PMU Madhavan Srinivasan <maddy@linux.vnet.ibm.com> - 2016-02-23 05:00 +0100
  [PATCH v8 1/7] powerpc/powernv: Data structure and macros definition Madhavan Srinivasan <maddy@linux.vnet.ibm.com> - 2016-02-23 05:00 +0100
  [PATCH v8 5/7] powerpc/perf: Add event attribute and group to nest pmu Madhavan Srinivasan <maddy@linux.vnet.ibm.com> - 2016-02-23 05:00 +0100
  [PATCH v8 3/7] powerpc/powernv: autoload nest unit driver module Madhavan Srinivasan <maddy@linux.vnet.ibm.com> - 2016-02-23 05:00 +0100

csiph-web