blob: c256635377d4365e23b4beae924fd703cce3423c [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
Paul Mackerrasf3dfd262009-02-26 22:43:46 +110016#include <linux/types.h>
17#include <linux/ioctl.h>
Paul Mackerras9aaa1312009-03-21 15:31:47 +110018#include <asm/byteorder.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010019
20/*
Ingo Molnar9f66a382008-12-10 12:33:23 +010021 * User-space ABI bits:
22 */
23
24/*
Peter Zijlstrab8e83512009-03-19 20:26:18 +010025 * hw_event.type
26 */
27enum perf_event_types {
28 PERF_TYPE_HARDWARE = 0,
29 PERF_TYPE_SOFTWARE = 1,
30 PERF_TYPE_TRACEPOINT = 2,
31
32 /*
33 * available TYPE space, raw is the max value.
34 */
35
36 PERF_TYPE_RAW = 128,
37};
38
39/*
40 * Generalized performance counter event types, used by the hw_event.event_id
Ingo Molnar9f66a382008-12-10 12:33:23 +010041 * parameter of the sys_perf_counter_open() syscall:
Thomas Gleixner0793a612008-12-04 20:12:29 +010042 */
Peter Zijlstrab8e83512009-03-19 20:26:18 +010043enum hw_event_ids {
Thomas Gleixner0793a612008-12-04 20:12:29 +010044 /*
Ingo Molnar9f66a382008-12-10 12:33:23 +010045 * Common hardware events, generalized by the kernel:
Thomas Gleixner0793a612008-12-04 20:12:29 +010046 */
Peter Zijlstrab8e83512009-03-19 20:26:18 +010047 PERF_COUNT_CPU_CYCLES = 0,
48 PERF_COUNT_INSTRUCTIONS = 1,
49 PERF_COUNT_CACHE_REFERENCES = 2,
50 PERF_COUNT_CACHE_MISSES = 3,
51 PERF_COUNT_BRANCH_INSTRUCTIONS = 4,
52 PERF_COUNT_BRANCH_MISSES = 5,
53 PERF_COUNT_BUS_CYCLES = 6,
Ingo Molnar9f66a382008-12-10 12:33:23 +010054
Peter Zijlstrab8e83512009-03-19 20:26:18 +010055 PERF_HW_EVENTS_MAX = 7,
56};
Ingo Molnar6c594c22008-12-14 12:34:15 +010057
Peter Zijlstrab8e83512009-03-19 20:26:18 +010058/*
59 * Special "software" counters provided by the kernel, even if the hardware
60 * does not support performance counters. These counters measure various
61 * physical and sw events of the kernel (and allow the profiling of them as
62 * well):
63 */
64enum sw_event_ids {
65 PERF_COUNT_CPU_CLOCK = 0,
66 PERF_COUNT_TASK_CLOCK = 1,
67 PERF_COUNT_PAGE_FAULTS = 2,
68 PERF_COUNT_CONTEXT_SWITCHES = 3,
69 PERF_COUNT_CPU_MIGRATIONS = 4,
70 PERF_COUNT_PAGE_FAULTS_MIN = 5,
71 PERF_COUNT_PAGE_FAULTS_MAJ = 6,
Ingo Molnar6c594c22008-12-14 12:34:15 +010072
Peter Zijlstrab8e83512009-03-19 20:26:18 +010073 PERF_SW_EVENTS_MAX = 7,
Thomas Gleixner0793a612008-12-04 20:12:29 +010074};
75
76/*
77 * IRQ-notification data record type:
78 */
Ingo Molnar9f66a382008-12-10 12:33:23 +010079enum perf_counter_record_type {
Peter Zijlstrab8e83512009-03-19 20:26:18 +010080 PERF_RECORD_SIMPLE = 0,
81 PERF_RECORD_IRQ = 1,
82 PERF_RECORD_GROUP = 2,
Thomas Gleixner0793a612008-12-04 20:12:29 +010083};
84
Peter Zijlstraf4a2deb42009-03-23 18:22:06 +010085#define __PERF_COUNTER_MASK(name) \
86 (((1ULL << PERF_COUNTER_##name##_BITS) - 1) << \
87 PERF_COUNTER_##name##_SHIFT)
88
89#define PERF_COUNTER_RAW_BITS 1
90#define PERF_COUNTER_RAW_SHIFT 63
91#define PERF_COUNTER_RAW_MASK __PERF_COUNTER_MASK(RAW)
92
93#define PERF_COUNTER_CONFIG_BITS 63
94#define PERF_COUNTER_CONFIG_SHIFT 0
95#define PERF_COUNTER_CONFIG_MASK __PERF_COUNTER_MASK(CONFIG)
96
97#define PERF_COUNTER_TYPE_BITS 7
98#define PERF_COUNTER_TYPE_SHIFT 56
99#define PERF_COUNTER_TYPE_MASK __PERF_COUNTER_MASK(TYPE)
100
101#define PERF_COUNTER_EVENT_BITS 56
102#define PERF_COUNTER_EVENT_SHIFT 0
103#define PERF_COUNTER_EVENT_MASK __PERF_COUNTER_MASK(EVENT)
104
Ingo Molnar9f66a382008-12-10 12:33:23 +0100105/*
106 * Hardware event to monitor via a performance monitoring counter:
107 */
108struct perf_counter_hw_event {
Peter Zijlstraf4a2deb42009-03-23 18:22:06 +0100109 /*
110 * The MSB of the config word signifies if the rest contains cpu
111 * specific (raw) counter configuration data, if unset, the next
112 * 7 bits are an event type and the rest of the bits are the event
113 * identifier.
114 */
115 __u64 config;
Ingo Molnar9f66a382008-12-10 12:33:23 +0100116
Paul Mackerrasf3dfd262009-02-26 22:43:46 +1100117 __u64 irq_period;
Paul Mackerras2743a5b2009-03-04 20:36:51 +1100118 __u64 record_type;
119 __u64 read_format;
Ingo Molnar9f66a382008-12-10 12:33:23 +0100120
Paul Mackerras2743a5b2009-03-04 20:36:51 +1100121 __u64 disabled : 1, /* off by default */
Paul Mackerras0475f9e2009-02-11 14:35:35 +1100122 nmi : 1, /* NMI sampling */
Paul Mackerras0475f9e2009-02-11 14:35:35 +1100123 inherit : 1, /* children inherit it */
124 pinned : 1, /* must always be on PMU */
125 exclusive : 1, /* only group on PMU */
126 exclude_user : 1, /* don't count user */
127 exclude_kernel : 1, /* ditto kernel */
128 exclude_hv : 1, /* ditto hypervisor */
Paul Mackerras2743a5b2009-03-04 20:36:51 +1100129 exclude_idle : 1, /* don't count when idle */
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100130
Peter Zijlstrab8e83512009-03-19 20:26:18 +0100131 __reserved_1 : 55;
Paul Mackerras2743a5b2009-03-04 20:36:51 +1100132
133 __u32 extra_config_len;
134 __u32 __reserved_4;
Ingo Molnar9f66a382008-12-10 12:33:23 +0100135
Paul Mackerrasf3dfd262009-02-26 22:43:46 +1100136 __u64 __reserved_2;
Paul Mackerras2743a5b2009-03-04 20:36:51 +1100137 __u64 __reserved_3;
Thomas Gleixnereab656a2008-12-08 19:26:59 +0100138};
139
Ingo Molnar9f66a382008-12-10 12:33:23 +0100140/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100141 * Ioctls that can be done on a perf counter fd:
142 */
143#define PERF_COUNTER_IOC_ENABLE _IO('$', 0)
144#define PERF_COUNTER_IOC_DISABLE _IO('$', 1)
145
Paul Mackerras37d81822009-03-23 18:22:08 +0100146/*
147 * Structure of the page that can be mapped via mmap
148 */
149struct perf_counter_mmap_page {
150 __u32 version; /* version number of this structure */
151 __u32 compat_version; /* lowest version this is compat with */
152 __u32 lock; /* seqlock for synchronization */
153 __u32 index; /* hardware counter identifier */
154 __s64 offset; /* add to hardware counter value */
Peter Zijlstra7b732a72009-03-23 18:22:10 +0100155
156 __u32 data_head; /* head in the data section */
Paul Mackerras37d81822009-03-23 18:22:08 +0100157};
158
Peter Zijlstra5c148192009-03-25 12:30:23 +0100159struct perf_event_header {
160 __u32 type;
161 __u32 size;
162};
163
164enum perf_event_type {
165 PERF_EVENT_IP = 0,
166 PERF_EVENT_GROUP = 1,
167};
168
Paul Mackerrasf3dfd262009-02-26 22:43:46 +1100169#ifdef __KERNEL__
Paul Mackerrasd859e292009-01-17 18:10:22 +1100170/*
Paul Mackerrasf3dfd262009-02-26 22:43:46 +1100171 * Kernel-internal data types and definitions:
Ingo Molnar9f66a382008-12-10 12:33:23 +0100172 */
173
Paul Mackerrasf3dfd262009-02-26 22:43:46 +1100174#ifdef CONFIG_PERF_COUNTERS
175# include <asm/perf_counter.h>
176#endif
177
178#include <linux/list.h>
179#include <linux/mutex.h>
180#include <linux/rculist.h>
181#include <linux/rcupdate.h>
182#include <linux/spinlock.h>
Peter Zijlstrad6d020e2009-03-13 12:21:35 +0100183#include <linux/hrtimer.h>
Paul Mackerrasf3dfd262009-02-26 22:43:46 +1100184#include <asm/atomic.h>
185
186struct task_struct;
187
Peter Zijlstraf4a2deb42009-03-23 18:22:06 +0100188static inline u64 perf_event_raw(struct perf_counter_hw_event *hw_event)
189{
190 return hw_event->config & PERF_COUNTER_RAW_MASK;
191}
192
193static inline u64 perf_event_config(struct perf_counter_hw_event *hw_event)
194{
195 return hw_event->config & PERF_COUNTER_CONFIG_MASK;
196}
197
198static inline u64 perf_event_type(struct perf_counter_hw_event *hw_event)
199{
200 return (hw_event->config & PERF_COUNTER_TYPE_MASK) >>
201 PERF_COUNTER_TYPE_SHIFT;
202}
203
204static inline u64 perf_event_id(struct perf_counter_hw_event *hw_event)
205{
206 return hw_event->config & PERF_COUNTER_EVENT_MASK;
207}
208
Thomas Gleixner0793a612008-12-04 20:12:29 +0100209/**
Ingo Molnar9f66a382008-12-10 12:33:23 +0100210 * struct hw_perf_counter - performance counter hardware details:
Thomas Gleixner0793a612008-12-04 20:12:29 +0100211 */
212struct hw_perf_counter {
Ingo Molnaree060942008-12-13 09:00:03 +0100213#ifdef CONFIG_PERF_COUNTERS
Peter Zijlstrad6d020e2009-03-13 12:21:35 +0100214 union {
215 struct { /* hardware */
216 u64 config;
217 unsigned long config_base;
218 unsigned long counter_base;
219 int nmi;
220 unsigned int idx;
221 };
222 union { /* software */
223 atomic64_t count;
224 struct hrtimer hrtimer;
225 };
226 };
Ingo Molnaree060942008-12-13 09:00:03 +0100227 atomic64_t prev_count;
Ingo Molnar9f66a382008-12-10 12:33:23 +0100228 u64 irq_period;
Ingo Molnaree060942008-12-13 09:00:03 +0100229 atomic64_t period_left;
230#endif
Thomas Gleixner0793a612008-12-04 20:12:29 +0100231};
232
Ingo Molnar621a01e2008-12-11 12:46:46 +0100233struct perf_counter;
234
235/**
236 * struct hw_perf_counter_ops - performance counter hw ops
237 */
238struct hw_perf_counter_ops {
Ingo Molnar95cdd2e2008-12-21 13:50:42 +0100239 int (*enable) (struct perf_counter *counter);
Ingo Molnar76715812008-12-17 14:20:28 +0100240 void (*disable) (struct perf_counter *counter);
241 void (*read) (struct perf_counter *counter);
Ingo Molnar621a01e2008-12-11 12:46:46 +0100242};
243
Thomas Gleixner0793a612008-12-04 20:12:29 +0100244/**
Ingo Molnar6a930702008-12-11 15:17:03 +0100245 * enum perf_counter_active_state - the states of a counter
246 */
247enum perf_counter_active_state {
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100248 PERF_COUNTER_STATE_ERROR = -2,
Ingo Molnar6a930702008-12-11 15:17:03 +0100249 PERF_COUNTER_STATE_OFF = -1,
250 PERF_COUNTER_STATE_INACTIVE = 0,
251 PERF_COUNTER_STATE_ACTIVE = 1,
252};
253
Ingo Molnar9b51f662008-12-12 13:49:45 +0100254struct file;
255
Peter Zijlstra7b732a72009-03-23 18:22:10 +0100256struct perf_mmap_data {
257 struct rcu_head rcu_head;
258 int nr_pages;
Peter Zijlstrac7138f32009-03-24 13:18:16 +0100259 atomic_t wakeup;
Peter Zijlstra7b732a72009-03-23 18:22:10 +0100260 atomic_t head;
261 struct perf_counter_mmap_page *user_page;
262 void *data_pages[0];
263};
264
Ingo Molnar6a930702008-12-11 15:17:03 +0100265/**
Thomas Gleixner0793a612008-12-04 20:12:29 +0100266 * struct perf_counter - performance counter kernel representation:
267 */
268struct perf_counter {
Ingo Molnaree060942008-12-13 09:00:03 +0100269#ifdef CONFIG_PERF_COUNTERS
Ingo Molnar04289bb2008-12-11 08:38:42 +0100270 struct list_head list_entry;
Peter Zijlstra592903c2009-03-13 12:21:36 +0100271 struct list_head event_entry;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100272 struct list_head sibling_list;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100273 int nr_siblings;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100274 struct perf_counter *group_leader;
Ingo Molnar5c92d122008-12-11 13:21:10 +0100275 const struct hw_perf_counter_ops *hw_ops;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100276
Ingo Molnar6a930702008-12-11 15:17:03 +0100277 enum perf_counter_active_state state;
Paul Mackerrasc07c99b2009-02-13 22:10:34 +1100278 enum perf_counter_active_state prev_state;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100279 atomic64_t count;
Ingo Molnaree060942008-12-13 09:00:03 +0100280
Ingo Molnar9f66a382008-12-10 12:33:23 +0100281 struct perf_counter_hw_event hw_event;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100282 struct hw_perf_counter hw;
283
284 struct perf_counter_context *ctx;
285 struct task_struct *task;
Ingo Molnar9b51f662008-12-12 13:49:45 +0100286 struct file *filp;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100287
Ingo Molnar9b51f662008-12-12 13:49:45 +0100288 struct perf_counter *parent;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100289 struct list_head child_list;
290
Thomas Gleixner0793a612008-12-04 20:12:29 +0100291 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100292 * Protect attach/detach and child_list:
Thomas Gleixner0793a612008-12-04 20:12:29 +0100293 */
294 struct mutex mutex;
295
296 int oncpu;
297 int cpu;
298
Peter Zijlstra7b732a72009-03-23 18:22:10 +0100299 /* mmap bits */
300 struct mutex mmap_mutex;
301 atomic_t mmap_count;
302 struct perf_mmap_data *data;
Paul Mackerras37d81822009-03-23 18:22:08 +0100303
Peter Zijlstra7b732a72009-03-23 18:22:10 +0100304 /* poll related */
Thomas Gleixner0793a612008-12-04 20:12:29 +0100305 wait_queue_head_t waitq;
306 /* optional: for NMIs */
307 int wakeup_pending;
Peter Zijlstra592903c2009-03-13 12:21:36 +0100308
Peter Zijlstrae077df42009-03-19 20:26:17 +0100309 void (*destroy)(struct perf_counter *);
Peter Zijlstra592903c2009-03-13 12:21:36 +0100310 struct rcu_head rcu_head;
Ingo Molnaree060942008-12-13 09:00:03 +0100311#endif
Thomas Gleixner0793a612008-12-04 20:12:29 +0100312};
313
314/**
315 * struct perf_counter_context - counter context structure
316 *
317 * Used as a container for task counters and CPU counters as well:
318 */
319struct perf_counter_context {
320#ifdef CONFIG_PERF_COUNTERS
321 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100322 * Protect the states of the counters in the list,
323 * nr_active, and the list:
Thomas Gleixner0793a612008-12-04 20:12:29 +0100324 */
325 spinlock_t lock;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100326 /*
327 * Protect the list of counters. Locking either mutex or lock
328 * is sufficient to ensure the list doesn't change; to change
329 * the list you need to lock both the mutex and the spinlock.
330 */
331 struct mutex mutex;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100332
333 struct list_head counter_list;
Peter Zijlstra592903c2009-03-13 12:21:36 +0100334 struct list_head event_list;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100335 int nr_counters;
336 int nr_active;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100337 int is_active;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100338 struct task_struct *task;
339#endif
340};
341
342/**
343 * struct perf_counter_cpu_context - per cpu counter context structure
344 */
345struct perf_cpu_context {
346 struct perf_counter_context ctx;
347 struct perf_counter_context *task_ctx;
348 int active_oncpu;
349 int max_pertask;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100350 int exclusive;
Peter Zijlstra96f6d442009-03-23 18:22:07 +0100351
352 /*
353 * Recursion avoidance:
354 *
355 * task, softirq, irq, nmi context
356 */
357 int recursion[4];
Thomas Gleixner0793a612008-12-04 20:12:29 +0100358};
359
360/*
361 * Set by architecture code:
362 */
363extern int perf_max_counters;
364
365#ifdef CONFIG_PERF_COUNTERS
Ingo Molnar5c92d122008-12-11 13:21:10 +0100366extern const struct hw_perf_counter_ops *
Ingo Molnar621a01e2008-12-11 12:46:46 +0100367hw_perf_counter_init(struct perf_counter *counter);
368
Thomas Gleixner0793a612008-12-04 20:12:29 +0100369extern void perf_counter_task_sched_in(struct task_struct *task, int cpu);
370extern void perf_counter_task_sched_out(struct task_struct *task, int cpu);
371extern void perf_counter_task_tick(struct task_struct *task, int cpu);
Ingo Molnar9b51f662008-12-12 13:49:45 +0100372extern void perf_counter_init_task(struct task_struct *child);
373extern void perf_counter_exit_task(struct task_struct *child);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100374extern void perf_counter_notify(struct pt_regs *regs);
375extern void perf_counter_print_debug(void);
Mike Galbraith1b023a92009-01-23 10:13:01 +0100376extern void perf_counter_unthrottle(void);
Ingo Molnar01b28382008-12-11 13:45:51 +0100377extern u64 hw_perf_save_disable(void);
378extern void hw_perf_restore(u64 ctrl);
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +0100379extern int perf_counter_task_disable(void);
380extern int perf_counter_task_enable(void);
Paul Mackerras3cbed422009-01-09 16:43:42 +1100381extern int hw_perf_group_sched_in(struct perf_counter *group_leader,
382 struct perf_cpu_context *cpuctx,
383 struct perf_counter_context *ctx, int cpu);
Paul Mackerras37d81822009-03-23 18:22:08 +0100384extern void perf_counter_update_userpage(struct perf_counter *counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +0100385
Peter Zijlstra0322cd62009-03-19 20:26:19 +0100386extern void perf_counter_output(struct perf_counter *counter,
387 int nmi, struct pt_regs *regs);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100388/*
389 * Return 1 for a software counter, 0 for a hardware counter
390 */
391static inline int is_software_counter(struct perf_counter *counter)
392{
Peter Zijlstraf4a2deb42009-03-23 18:22:06 +0100393 return !perf_event_raw(&counter->hw_event) &&
394 perf_event_type(&counter->hw_event) != PERF_TYPE_HARDWARE;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100395}
396
Peter Zijlstrab8e83512009-03-19 20:26:18 +0100397extern void perf_swcounter_event(u32, u64, int, struct pt_regs *);
Peter Zijlstra15dbf272009-03-13 12:21:32 +0100398
Thomas Gleixner0793a612008-12-04 20:12:29 +0100399#else
400static inline void
401perf_counter_task_sched_in(struct task_struct *task, int cpu) { }
402static inline void
403perf_counter_task_sched_out(struct task_struct *task, int cpu) { }
404static inline void
405perf_counter_task_tick(struct task_struct *task, int cpu) { }
Ingo Molnar9b51f662008-12-12 13:49:45 +0100406static inline void perf_counter_init_task(struct task_struct *child) { }
407static inline void perf_counter_exit_task(struct task_struct *child) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100408static inline void perf_counter_notify(struct pt_regs *regs) { }
409static inline void perf_counter_print_debug(void) { }
Mike Galbraith1b023a92009-01-23 10:13:01 +0100410static inline void perf_counter_unthrottle(void) { }
Peter Zijlstra15dbf272009-03-13 12:21:32 +0100411static inline void hw_perf_restore(u64 ctrl) { }
Ingo Molnar01b28382008-12-11 13:45:51 +0100412static inline u64 hw_perf_save_disable(void) { return 0; }
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +0100413static inline int perf_counter_task_disable(void) { return -EINVAL; }
414static inline int perf_counter_task_enable(void) { return -EINVAL; }
Peter Zijlstra15dbf272009-03-13 12:21:32 +0100415
Peter Zijlstrab8e83512009-03-19 20:26:18 +0100416static inline void perf_swcounter_event(u32 event, u64 nr,
Peter Zijlstra15dbf272009-03-13 12:21:32 +0100417 int nmi, struct pt_regs *regs) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100418#endif
419
Paul Mackerrasf3dfd262009-02-26 22:43:46 +1100420#endif /* __KERNEL__ */
Thomas Gleixner0793a612008-12-04 20:12:29 +0100421#endif /* _LINUX_PERF_COUNTER_H */