blob: c83f51d6e359f9ec4bc7c3eee01e5fd0279348ee [file] [log] [blame]
Thomas Gleixner0793a612008-12-04 20:12:29 +01001/*
2 * Performance counters:
3 *
4 * Copyright(C) 2008, Thomas Gleixner <tglx@linutronix.de>
5 * Copyright(C) 2008, Red Hat, Inc., Ingo Molnar
6 *
7 * Data type definitions, declarations, prototypes.
8 *
9 * Started by: Thomas Gleixner and Ingo Molnar
10 *
11 * For licencing details see kernel-base/COPYING
12 */
13#ifndef _LINUX_PERF_COUNTER_H
14#define _LINUX_PERF_COUNTER_H
15
16#include <asm/atomic.h>
Paul Mackerrasd859e292009-01-17 18:10:22 +110017#include <asm/ioctl.h>
Ingo Molnare44aef52008-12-25 09:02:11 +010018
19#ifdef CONFIG_PERF_COUNTERS
20# include <asm/perf_counter.h>
21#endif
Thomas Gleixner0793a612008-12-04 20:12:29 +010022
23#include <linux/list.h>
24#include <linux/mutex.h>
25#include <linux/rculist.h>
26#include <linux/rcupdate.h>
27#include <linux/spinlock.h>
28
29struct task_struct;
30
31/*
Ingo Molnar9f66a382008-12-10 12:33:23 +010032 * User-space ABI bits:
33 */
34
35/*
36 * Generalized performance counter event types, used by the hw_event.type
37 * parameter of the sys_perf_counter_open() syscall:
Thomas Gleixner0793a612008-12-04 20:12:29 +010038 */
39enum hw_event_types {
Thomas Gleixner0793a612008-12-04 20:12:29 +010040 /*
Ingo Molnar9f66a382008-12-10 12:33:23 +010041 * Common hardware events, generalized by the kernel:
Thomas Gleixner0793a612008-12-04 20:12:29 +010042 */
Ingo Molnarf650a672008-12-23 12:17:29 +010043 PERF_COUNT_CPU_CYCLES = 0,
Ingo Molnar9f66a382008-12-10 12:33:23 +010044 PERF_COUNT_INSTRUCTIONS = 1,
45 PERF_COUNT_CACHE_REFERENCES = 2,
46 PERF_COUNT_CACHE_MISSES = 3,
47 PERF_COUNT_BRANCH_INSTRUCTIONS = 4,
48 PERF_COUNT_BRANCH_MISSES = 5,
Ingo Molnarf650a672008-12-23 12:17:29 +010049 PERF_COUNT_BUS_CYCLES = 6,
Ingo Molnar9f66a382008-12-10 12:33:23 +010050
Ingo Molnarf650a672008-12-23 12:17:29 +010051 PERF_HW_EVENTS_MAX = 7,
Ingo Molnar6c594c22008-12-14 12:34:15 +010052
Ingo Molnar9f66a382008-12-10 12:33:23 +010053 /*
54 * Special "software" counters provided by the kernel, even if
55 * the hardware does not support performance counters. These
56 * counters measure various physical and sw events of the
57 * kernel (and allow the profiling of them as well):
58 */
59 PERF_COUNT_CPU_CLOCK = -1,
60 PERF_COUNT_TASK_CLOCK = -2,
Ingo Molnar5d6a27d2008-12-14 12:28:33 +010061 PERF_COUNT_PAGE_FAULTS = -3,
62 PERF_COUNT_CONTEXT_SWITCHES = -4,
Ingo Molnar6c594c22008-12-14 12:34:15 +010063 PERF_COUNT_CPU_MIGRATIONS = -5,
64
65 PERF_SW_EVENTS_MIN = -6,
Thomas Gleixner0793a612008-12-04 20:12:29 +010066};
67
68/*
69 * IRQ-notification data record type:
70 */
Ingo Molnar9f66a382008-12-10 12:33:23 +010071enum perf_counter_record_type {
72 PERF_RECORD_SIMPLE = 0,
73 PERF_RECORD_IRQ = 1,
74 PERF_RECORD_GROUP = 2,
Thomas Gleixner0793a612008-12-04 20:12:29 +010075};
76
Ingo Molnar9f66a382008-12-10 12:33:23 +010077/*
78 * Hardware event to monitor via a performance monitoring counter:
79 */
80struct perf_counter_hw_event {
Ingo Molnar01b28382008-12-11 13:45:51 +010081 s64 type;
Ingo Molnar9f66a382008-12-10 12:33:23 +010082
83 u64 irq_period;
84 u32 record_type;
85
Paul Mackerras0475f9e2009-02-11 14:35:35 +110086 u32 disabled : 1, /* off by default */
87 nmi : 1, /* NMI sampling */
88 raw : 1, /* raw event type */
89 inherit : 1, /* children inherit it */
90 pinned : 1, /* must always be on PMU */
91 exclusive : 1, /* only group on PMU */
92 exclude_user : 1, /* don't count user */
93 exclude_kernel : 1, /* ditto kernel */
94 exclude_hv : 1, /* ditto hypervisor */
Paul Mackerras3b6f9e52009-01-14 21:00:30 +110095
Paul Mackerras0475f9e2009-02-11 14:35:35 +110096 __reserved_1 : 23;
Ingo Molnar9f66a382008-12-10 12:33:23 +010097
98 u64 __reserved_2;
Thomas Gleixnereab656a2008-12-08 19:26:59 +010099};
100
Ingo Molnar9f66a382008-12-10 12:33:23 +0100101/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100102 * Ioctls that can be done on a perf counter fd:
103 */
104#define PERF_COUNTER_IOC_ENABLE _IO('$', 0)
105#define PERF_COUNTER_IOC_DISABLE _IO('$', 1)
106
107/*
Ingo Molnar9f66a382008-12-10 12:33:23 +0100108 * Kernel-internal data types:
109 */
110
Thomas Gleixner0793a612008-12-04 20:12:29 +0100111/**
Ingo Molnar9f66a382008-12-10 12:33:23 +0100112 * struct hw_perf_counter - performance counter hardware details:
Thomas Gleixner0793a612008-12-04 20:12:29 +0100113 */
114struct hw_perf_counter {
Ingo Molnaree060942008-12-13 09:00:03 +0100115#ifdef CONFIG_PERF_COUNTERS
Ingo Molnar9f66a382008-12-10 12:33:23 +0100116 u64 config;
117 unsigned long config_base;
118 unsigned long counter_base;
119 int nmi;
120 unsigned int idx;
Ingo Molnaree060942008-12-13 09:00:03 +0100121 atomic64_t prev_count;
Ingo Molnar9f66a382008-12-10 12:33:23 +0100122 u64 irq_period;
Ingo Molnaree060942008-12-13 09:00:03 +0100123 atomic64_t period_left;
124#endif
Thomas Gleixner0793a612008-12-04 20:12:29 +0100125};
126
127/*
128 * Hardcoded buffer length limit for now, for IRQ-fed events:
129 */
Ingo Molnar9f66a382008-12-10 12:33:23 +0100130#define PERF_DATA_BUFLEN 2048
Thomas Gleixner0793a612008-12-04 20:12:29 +0100131
132/**
133 * struct perf_data - performance counter IRQ data sampling ...
134 */
135struct perf_data {
Ingo Molnar9f66a382008-12-10 12:33:23 +0100136 int len;
137 int rd_idx;
138 int overrun;
139 u8 data[PERF_DATA_BUFLEN];
Thomas Gleixner0793a612008-12-04 20:12:29 +0100140};
141
Ingo Molnar621a01e2008-12-11 12:46:46 +0100142struct perf_counter;
143
144/**
145 * struct hw_perf_counter_ops - performance counter hw ops
146 */
147struct hw_perf_counter_ops {
Ingo Molnar95cdd2e2008-12-21 13:50:42 +0100148 int (*enable) (struct perf_counter *counter);
Ingo Molnar76715812008-12-17 14:20:28 +0100149 void (*disable) (struct perf_counter *counter);
150 void (*read) (struct perf_counter *counter);
Ingo Molnar621a01e2008-12-11 12:46:46 +0100151};
152
Thomas Gleixner0793a612008-12-04 20:12:29 +0100153/**
Ingo Molnar6a930702008-12-11 15:17:03 +0100154 * enum perf_counter_active_state - the states of a counter
155 */
156enum perf_counter_active_state {
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100157 PERF_COUNTER_STATE_ERROR = -2,
Ingo Molnar6a930702008-12-11 15:17:03 +0100158 PERF_COUNTER_STATE_OFF = -1,
159 PERF_COUNTER_STATE_INACTIVE = 0,
160 PERF_COUNTER_STATE_ACTIVE = 1,
161};
162
Ingo Molnar9b51f662008-12-12 13:49:45 +0100163struct file;
164
Ingo Molnar6a930702008-12-11 15:17:03 +0100165/**
Thomas Gleixner0793a612008-12-04 20:12:29 +0100166 * struct perf_counter - performance counter kernel representation:
167 */
168struct perf_counter {
Ingo Molnaree060942008-12-13 09:00:03 +0100169#ifdef CONFIG_PERF_COUNTERS
Ingo Molnar04289bb2008-12-11 08:38:42 +0100170 struct list_head list_entry;
171 struct list_head sibling_list;
172 struct perf_counter *group_leader;
Ingo Molnar5c92d122008-12-11 13:21:10 +0100173 const struct hw_perf_counter_ops *hw_ops;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100174
Ingo Molnar6a930702008-12-11 15:17:03 +0100175 enum perf_counter_active_state state;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100176 atomic64_t count;
Ingo Molnaree060942008-12-13 09:00:03 +0100177
Ingo Molnar9f66a382008-12-10 12:33:23 +0100178 struct perf_counter_hw_event hw_event;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100179 struct hw_perf_counter hw;
180
181 struct perf_counter_context *ctx;
182 struct task_struct *task;
Ingo Molnar9b51f662008-12-12 13:49:45 +0100183 struct file *filp;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100184
Ingo Molnar9b51f662008-12-12 13:49:45 +0100185 struct perf_counter *parent;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100186 struct list_head child_list;
187
Thomas Gleixner0793a612008-12-04 20:12:29 +0100188 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100189 * Protect attach/detach and child_list:
Thomas Gleixner0793a612008-12-04 20:12:29 +0100190 */
191 struct mutex mutex;
192
193 int oncpu;
194 int cpu;
195
Thomas Gleixner0793a612008-12-04 20:12:29 +0100196 /* read() / irq related data */
197 wait_queue_head_t waitq;
198 /* optional: for NMIs */
199 int wakeup_pending;
200 struct perf_data *irqdata;
201 struct perf_data *usrdata;
202 struct perf_data data[2];
Ingo Molnaree060942008-12-13 09:00:03 +0100203#endif
Thomas Gleixner0793a612008-12-04 20:12:29 +0100204};
205
206/**
207 * struct perf_counter_context - counter context structure
208 *
209 * Used as a container for task counters and CPU counters as well:
210 */
211struct perf_counter_context {
212#ifdef CONFIG_PERF_COUNTERS
213 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100214 * Protect the states of the counters in the list,
215 * nr_active, and the list:
Thomas Gleixner0793a612008-12-04 20:12:29 +0100216 */
217 spinlock_t lock;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100218 /*
219 * Protect the list of counters. Locking either mutex or lock
220 * is sufficient to ensure the list doesn't change; to change
221 * the list you need to lock both the mutex and the spinlock.
222 */
223 struct mutex mutex;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100224
225 struct list_head counter_list;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100226 int nr_counters;
227 int nr_active;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100228 int is_active;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100229 struct task_struct *task;
230#endif
231};
232
233/**
234 * struct perf_counter_cpu_context - per cpu counter context structure
235 */
236struct perf_cpu_context {
237 struct perf_counter_context ctx;
238 struct perf_counter_context *task_ctx;
239 int active_oncpu;
240 int max_pertask;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100241 int exclusive;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100242};
243
244/*
245 * Set by architecture code:
246 */
247extern int perf_max_counters;
248
249#ifdef CONFIG_PERF_COUNTERS
Ingo Molnar5c92d122008-12-11 13:21:10 +0100250extern const struct hw_perf_counter_ops *
Ingo Molnar621a01e2008-12-11 12:46:46 +0100251hw_perf_counter_init(struct perf_counter *counter);
252
Thomas Gleixner0793a612008-12-04 20:12:29 +0100253extern void perf_counter_task_sched_in(struct task_struct *task, int cpu);
254extern void perf_counter_task_sched_out(struct task_struct *task, int cpu);
255extern void perf_counter_task_tick(struct task_struct *task, int cpu);
Ingo Molnar9b51f662008-12-12 13:49:45 +0100256extern void perf_counter_init_task(struct task_struct *child);
257extern void perf_counter_exit_task(struct task_struct *child);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100258extern void perf_counter_notify(struct pt_regs *regs);
259extern void perf_counter_print_debug(void);
Mike Galbraith1b023a92009-01-23 10:13:01 +0100260extern void perf_counter_unthrottle(void);
Ingo Molnar01b28382008-12-11 13:45:51 +0100261extern u64 hw_perf_save_disable(void);
262extern void hw_perf_restore(u64 ctrl);
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +0100263extern int perf_counter_task_disable(void);
264extern int perf_counter_task_enable(void);
Paul Mackerras3cbed422009-01-09 16:43:42 +1100265extern int hw_perf_group_sched_in(struct perf_counter *group_leader,
266 struct perf_cpu_context *cpuctx,
267 struct perf_counter_context *ctx, int cpu);
Ingo Molnar5c92d122008-12-11 13:21:10 +0100268
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100269/*
270 * Return 1 for a software counter, 0 for a hardware counter
271 */
272static inline int is_software_counter(struct perf_counter *counter)
273{
274 return !counter->hw_event.raw && counter->hw_event.type < 0;
275}
276
Thomas Gleixner0793a612008-12-04 20:12:29 +0100277#else
278static inline void
279perf_counter_task_sched_in(struct task_struct *task, int cpu) { }
280static inline void
281perf_counter_task_sched_out(struct task_struct *task, int cpu) { }
282static inline void
283perf_counter_task_tick(struct task_struct *task, int cpu) { }
Ingo Molnar9b51f662008-12-12 13:49:45 +0100284static inline void perf_counter_init_task(struct task_struct *child) { }
285static inline void perf_counter_exit_task(struct task_struct *child) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100286static inline void perf_counter_notify(struct pt_regs *regs) { }
287static inline void perf_counter_print_debug(void) { }
Mike Galbraith1b023a92009-01-23 10:13:01 +0100288static inline void perf_counter_unthrottle(void) { }
Ingo Molnar01b28382008-12-11 13:45:51 +0100289static inline void hw_perf_restore(u64 ctrl) { }
290static inline u64 hw_perf_save_disable(void) { return 0; }
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +0100291static inline int perf_counter_task_disable(void) { return -EINVAL; }
292static inline int perf_counter_task_enable(void) { return -EINVAL; }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100293#endif
294
295#endif /* _LINUX_PERF_COUNTER_H */