]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/perf_counter.h
perf counters: restructure the API
[net-next-2.6.git] / include / linux / perf_counter.h
CommitLineData
0793a61d
TG
1/*
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>
17
18#include <linux/list.h>
19#include <linux/mutex.h>
20#include <linux/rculist.h>
21#include <linux/rcupdate.h>
22#include <linux/spinlock.h>
23
24struct task_struct;
25
26/*
9f66a381
IM
27 * User-space ABI bits:
28 */
29
30/*
31 * Generalized performance counter event types, used by the hw_event.type
32 * parameter of the sys_perf_counter_open() syscall:
0793a61d
TG
33 */
34enum hw_event_types {
0793a61d 35 /*
9f66a381 36 * Common hardware events, generalized by the kernel:
0793a61d 37 */
9f66a381
IM
38 PERF_COUNT_CYCLES = 0,
39 PERF_COUNT_INSTRUCTIONS = 1,
40 PERF_COUNT_CACHE_REFERENCES = 2,
41 PERF_COUNT_CACHE_MISSES = 3,
42 PERF_COUNT_BRANCH_INSTRUCTIONS = 4,
43 PERF_COUNT_BRANCH_MISSES = 5,
44
45 /*
46 * Special "software" counters provided by the kernel, even if
47 * the hardware does not support performance counters. These
48 * counters measure various physical and sw events of the
49 * kernel (and allow the profiling of them as well):
50 */
51 PERF_COUNT_CPU_CLOCK = -1,
52 PERF_COUNT_TASK_CLOCK = -2,
53 PERF_COUNT_PAGE_FAULTS = -3,
54 PERF_COUNT_CONTEXT_SWITCHES = -4,
0793a61d
TG
55};
56
57/*
58 * IRQ-notification data record type:
59 */
9f66a381
IM
60enum perf_counter_record_type {
61 PERF_RECORD_SIMPLE = 0,
62 PERF_RECORD_IRQ = 1,
63 PERF_RECORD_GROUP = 2,
0793a61d
TG
64};
65
9f66a381
IM
66/*
67 * Hardware event to monitor via a performance monitoring counter:
68 */
69struct perf_counter_hw_event {
70 u64 type;
71
72 u64 irq_period;
73 u32 record_type;
74
75 u32 disabled : 1, /* off by default */
76 nmi : 1, /* NMI sampling */
77 raw : 1, /* raw event type */
78 __reserved_1 : 29;
79
80 u64 __reserved_2;
eab656ae
TG
81};
82
9f66a381
IM
83/*
84 * Kernel-internal data types:
85 */
86
0793a61d 87/**
9f66a381 88 * struct hw_perf_counter - performance counter hardware details:
0793a61d
TG
89 */
90struct hw_perf_counter {
9f66a381
IM
91 u64 config;
92 unsigned long config_base;
93 unsigned long counter_base;
94 int nmi;
95 unsigned int idx;
96 u64 prev_count;
97 u64 irq_period;
98 s32 next_count;
0793a61d
TG
99};
100
101/*
102 * Hardcoded buffer length limit for now, for IRQ-fed events:
103 */
9f66a381 104#define PERF_DATA_BUFLEN 2048
0793a61d
TG
105
106/**
107 * struct perf_data - performance counter IRQ data sampling ...
108 */
109struct perf_data {
9f66a381
IM
110 int len;
111 int rd_idx;
112 int overrun;
113 u8 data[PERF_DATA_BUFLEN];
0793a61d
TG
114};
115
116/**
117 * struct perf_counter - performance counter kernel representation:
118 */
119struct perf_counter {
120 struct list_head list;
121 int active;
122#if BITS_PER_LONG == 64
123 atomic64_t count;
124#else
125 atomic_t count32[2];
126#endif
9f66a381 127 struct perf_counter_hw_event hw_event;
0793a61d
TG
128 struct hw_perf_counter hw;
129
130 struct perf_counter_context *ctx;
131 struct task_struct *task;
132
133 /*
134 * Protect attach/detach:
135 */
136 struct mutex mutex;
137
138 int oncpu;
139 int cpu;
140
0793a61d
TG
141 /* read() / irq related data */
142 wait_queue_head_t waitq;
143 /* optional: for NMIs */
144 int wakeup_pending;
145 struct perf_data *irqdata;
146 struct perf_data *usrdata;
147 struct perf_data data[2];
148};
149
150/**
151 * struct perf_counter_context - counter context structure
152 *
153 * Used as a container for task counters and CPU counters as well:
154 */
155struct perf_counter_context {
156#ifdef CONFIG_PERF_COUNTERS
157 /*
158 * Protect the list of counters:
159 */
160 spinlock_t lock;
161 struct list_head counters;
162 int nr_counters;
163 int nr_active;
164 struct task_struct *task;
165#endif
166};
167
168/**
169 * struct perf_counter_cpu_context - per cpu counter context structure
170 */
171struct perf_cpu_context {
172 struct perf_counter_context ctx;
173 struct perf_counter_context *task_ctx;
174 int active_oncpu;
175 int max_pertask;
176};
177
178/*
179 * Set by architecture code:
180 */
181extern int perf_max_counters;
182
183#ifdef CONFIG_PERF_COUNTERS
184extern void perf_counter_task_sched_in(struct task_struct *task, int cpu);
185extern void perf_counter_task_sched_out(struct task_struct *task, int cpu);
186extern void perf_counter_task_tick(struct task_struct *task, int cpu);
187extern void perf_counter_init_task(struct task_struct *task);
188extern void perf_counter_notify(struct pt_regs *regs);
189extern void perf_counter_print_debug(void);
4ac13294
TG
190extern void hw_perf_restore_ctrl(u64 ctrl);
191extern u64 hw_perf_disable_all(void);
0793a61d
TG
192#else
193static inline void
194perf_counter_task_sched_in(struct task_struct *task, int cpu) { }
195static inline void
196perf_counter_task_sched_out(struct task_struct *task, int cpu) { }
197static inline void
198perf_counter_task_tick(struct task_struct *task, int cpu) { }
199static inline void perf_counter_init_task(struct task_struct *task) { }
200static inline void perf_counter_notify(struct pt_regs *regs) { }
201static inline void perf_counter_print_debug(void) { }
4ac13294
TG
202static inline void hw_perf_restore_ctrl(u64 ctrl) { }
203static inline u64 hw_perf_disable_all(void) { return 0; }
0793a61d
TG
204#endif
205
206#endif /* _LINUX_PERF_COUNTER_H */