blob: 0453ba26cdbd99bda32553eea810fb03832b6171 [file] [log] [blame]
Ingo Molnare7bc62b2008-12-04 20:13:45 +01001
2Performance Counters for Linux
3------------------------------
4
5Performance counters are special hardware registers available on most modern
6CPUs. These registers count the number of certain types of hw events: such
7as instructions executed, cachemisses suffered, or branches mis-predicted -
8without slowing down the kernel or applications. These registers can also
9trigger interrupts when a threshold number of events have passed - and can
10thus be used to profile the code that runs on that CPU.
11
12The Linux Performance Counter subsystem provides an abstraction of these
Ingo Molnar447557a2008-12-11 20:40:18 +010013hardware capabilities. It provides per task and per CPU counters, counter
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110014groups, and it provides event capabilities on top of those. It
15provides "virtual" 64-bit counters, regardless of the width of the
16underlying hardware counters.
Ingo Molnare7bc62b2008-12-04 20:13:45 +010017
18Performance counters are accessed via special file descriptors.
19There's one file descriptor per virtual counter used.
20
Ramkumar Ramachandrab68eebd2014-03-18 15:10:04 -040021The special file descriptor is opened via the sys_perf_event_open()
Ingo Molnare7bc62b2008-12-04 20:13:45 +010022system call:
23
Tim Blechmann0b413e42009-12-27 14:43:06 +010024 int sys_perf_event_open(struct perf_event_attr *hw_event_uptr,
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110025 pid_t pid, int cpu, int group_fd,
26 unsigned long flags);
Ingo Molnare7bc62b2008-12-04 20:13:45 +010027
28The syscall returns the new fd. The fd can be used via the normal
29VFS system calls: read() can be used to read the counter, fcntl()
30can be used to set the blocking mode, etc.
31
32Multiple counters can be kept open at a time, and the counters
33can be poll()ed.
34
Tim Blechmann0b413e42009-12-27 14:43:06 +010035When creating a new counter fd, 'perf_event_attr' is:
Ingo Molnare7bc62b2008-12-04 20:13:45 +010036
Tim Blechmann0b413e42009-12-27 14:43:06 +010037struct perf_event_attr {
Peter Zijlstrae5791a82009-05-01 12:23:19 +020038 /*
39 * The MSB of the config word signifies if the rest contains cpu
40 * specific (raw) counter configuration data, if unset, the next
41 * 7 bits are an event type and the rest of the bits are the event
42 * identifier.
43 */
44 __u64 config;
Ingo Molnar447557a2008-12-11 20:40:18 +010045
Peter Zijlstrae5791a82009-05-01 12:23:19 +020046 __u64 irq_period;
47 __u32 record_type;
48 __u32 read_format;
Ingo Molnar447557a2008-12-11 20:40:18 +010049
Peter Zijlstrae5791a82009-05-01 12:23:19 +020050 __u64 disabled : 1, /* off by default */
Peter Zijlstrae5791a82009-05-01 12:23:19 +020051 inherit : 1, /* children inherit it */
52 pinned : 1, /* must always be on PMU */
53 exclusive : 1, /* only group on PMU */
54 exclude_user : 1, /* don't count user */
55 exclude_kernel : 1, /* ditto kernel */
56 exclude_hv : 1, /* ditto hypervisor */
57 exclude_idle : 1, /* don't count when idle */
58 mmap : 1, /* include mmap data */
59 munmap : 1, /* include munmap data */
60 comm : 1, /* include comm data */
Ingo Molnar447557a2008-12-11 20:40:18 +010061
Peter Zijlstrae5791a82009-05-01 12:23:19 +020062 __reserved_1 : 52;
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110063
Peter Zijlstrae5791a82009-05-01 12:23:19 +020064 __u32 extra_config_len;
65 __u32 wakeup_events; /* wakeup every n events */
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110066
Peter Zijlstrae5791a82009-05-01 12:23:19 +020067 __u64 __reserved_2;
68 __u64 __reserved_3;
Ingo Molnar447557a2008-12-11 20:40:18 +010069};
70
Peter Zijlstrae5791a82009-05-01 12:23:19 +020071The 'config' field specifies what the counter should count. It
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110072is divided into 3 bit-fields:
73
Peter Zijlstrae5791a82009-05-01 12:23:19 +020074raw_type: 1 bit (most significant bit) 0x8000_0000_0000_0000
75type: 7 bits (next most significant) 0x7f00_0000_0000_0000
76event_id: 56 bits (least significant) 0x00ff_ffff_ffff_ffff
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110077
78If 'raw_type' is 1, then the counter will count a hardware event
79specified by the remaining 63 bits of event_config. The encoding is
80machine-specific.
81
82If 'raw_type' is 0, then the 'type' field says what kind of counter
83this is, with the following encoding:
84
Ramkumar Ramachandrab68eebd2014-03-18 15:10:04 -040085enum perf_type_id {
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110086 PERF_TYPE_HARDWARE = 0,
87 PERF_TYPE_SOFTWARE = 1,
88 PERF_TYPE_TRACEPOINT = 2,
89};
90
91A counter of PERF_TYPE_HARDWARE will count the hardware event
92specified by 'event_id':
93
Ingo Molnar447557a2008-12-11 20:40:18 +010094/*
Paul Mackerrasf66c6b22009-03-23 10:29:36 +110095 * Generalized performance counter event types, used by the hw_event.event_id
Ingo Molnarcdd6c482009-09-21 12:02:48 +020096 * parameter of the sys_perf_event_open() syscall:
Ingo Molnar447557a2008-12-11 20:40:18 +010097 */
Ramkumar Ramachandrab68eebd2014-03-18 15:10:04 -040098enum perf_hw_id {
Ingo Molnar447557a2008-12-11 20:40:18 +010099 /*
100 * Common hardware events, generalized by the kernel:
101 */
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200102 PERF_COUNT_HW_CPU_CYCLES = 0,
103 PERF_COUNT_HW_INSTRUCTIONS = 1,
Kirill Smelkov0895cf02010-01-13 13:22:18 -0200104 PERF_COUNT_HW_CACHE_REFERENCES = 2,
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200105 PERF_COUNT_HW_CACHE_MISSES = 3,
106 PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4,
Kirill Smelkov0895cf02010-01-13 13:22:18 -0200107 PERF_COUNT_HW_BRANCH_MISSES = 5,
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200108 PERF_COUNT_HW_BUS_CYCLES = 6,
Ingo Molnar447557a2008-12-11 20:40:18 +0100109};
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100110
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100111These are standardized types of events that work relatively uniformly
112on all CPUs that implement Performance Counters support under Linux,
113although there may be variations (e.g., different CPUs might count
114cache references and misses at different levels of the cache hierarchy).
115If a CPU is not able to count the selected event, then the system call
116will return -EINVAL.
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100117
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100118More hw_event_types are supported as well, but they are CPU-specific
119and accessed as raw events. For example, to count "External bus
120cycles while bus lock signal asserted" events on Intel Core CPUs, pass
121in a 0x4064 event_id value and set hw_event.raw_type to 1.
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100122
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100123A counter of type PERF_TYPE_SOFTWARE will count one of the available
124software events, selected by 'event_id':
125
126/*
127 * Special "software" counters provided by the kernel, even if the hardware
128 * does not support performance counters. These counters measure various
129 * physical and sw events of the kernel (and allow the profiling of them as
130 * well):
131 */
Ramkumar Ramachandrab68eebd2014-03-18 15:10:04 -0400132enum perf_sw_ids {
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200133 PERF_COUNT_SW_CPU_CLOCK = 0,
Kirill Smelkov0895cf02010-01-13 13:22:18 -0200134 PERF_COUNT_SW_TASK_CLOCK = 1,
135 PERF_COUNT_SW_PAGE_FAULTS = 2,
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +0200136 PERF_COUNT_SW_CONTEXT_SWITCHES = 3,
137 PERF_COUNT_SW_CPU_MIGRATIONS = 4,
138 PERF_COUNT_SW_PAGE_FAULTS_MIN = 5,
139 PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6,
Anton Blanchardf7d79862009-10-18 01:09:29 +0000140 PERF_COUNT_SW_ALIGNMENT_FAULTS = 7,
141 PERF_COUNT_SW_EMULATION_FAULTS = 8,
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100142};
143
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200144Counters of the type PERF_TYPE_TRACEPOINT are available when the ftrace event
145tracer is available, and event_id values can be obtained from
146/debug/tracing/events/*/*/id
147
148
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100149Counters come in two flavours: counting counters and sampling
150counters. A "counting" counter is one that is used for counting the
151number of events that occur, and is characterised by having
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200152irq_period = 0.
153
154
155A read() on a counter returns the current value of the counter and possible
156additional values as specified by 'read_format', each value is a u64 (8 bytes)
157in size.
158
159/*
160 * Bits that can be set in hw_event.read_format to request that
161 * reads on the counter should return the indicated quantities,
162 * in increasing order of bit value, after the counter value.
163 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200164enum perf_event_read_format {
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200165 PERF_FORMAT_TOTAL_TIME_ENABLED = 1,
166 PERF_FORMAT_TOTAL_TIME_RUNNING = 2,
167};
168
169Using these additional values one can establish the overcommit ratio for a
170particular counter allowing one to take the round-robin scheduling effect
171into account.
172
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100173
174A "sampling" counter is one that is set up to generate an interrupt
175every N events, where N is given by 'irq_period'. A sampling counter
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200176has irq_period > 0. The record_type controls what data is recorded on each
177interrupt:
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100178
Ingo Molnar447557a2008-12-11 20:40:18 +0100179/*
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200180 * Bits that can be set in hw_event.record_type to request information
181 * in the overflow packets.
Ingo Molnar447557a2008-12-11 20:40:18 +0100182 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200183enum perf_event_record_format {
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200184 PERF_RECORD_IP = 1U << 0,
185 PERF_RECORD_TID = 1U << 1,
186 PERF_RECORD_TIME = 1U << 2,
187 PERF_RECORD_ADDR = 1U << 3,
188 PERF_RECORD_GROUP = 1U << 4,
189 PERF_RECORD_CALLCHAIN = 1U << 5,
Ingo Molnar447557a2008-12-11 20:40:18 +0100190};
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100191
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200192Such (and other) events will be recorded in a ring-buffer, which is
193available to user-space using mmap() (see below).
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100194
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100195The 'disabled' bit specifies whether the counter starts out disabled
196or enabled. If it is initially disabled, it can be enabled by ioctl
197or prctl (see below).
Ingo Molnar447557a2008-12-11 20:40:18 +0100198
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100199The 'inherit' bit, if set, specifies that this counter should count
200events on descendant tasks as well as the task specified. This only
201applies to new descendents, not to any existing descendents at the
202time the counter is created (nor to any new descendents of existing
203descendents).
204
205The 'pinned' bit, if set, specifies that the counter should always be
206on the CPU if at all possible. It only applies to hardware counters
207and only to group leaders. If a pinned counter cannot be put onto the
208CPU (e.g. because there are not enough hardware counters or because of
209a conflict with some other event), then the counter goes into an
210'error' state, where reads return end-of-file (i.e. read() returns 0)
211until the counter is subsequently enabled or disabled.
212
213The 'exclusive' bit, if set, specifies that when this counter's group
214is on the CPU, it should be the only group using the CPU's counters.
215In future, this will allow sophisticated monitoring programs to supply
216extra configuration information via 'extra_config_len' to exploit
217advanced features of the CPU's Performance Monitor Unit (PMU) that are
218not otherwise accessible and that might disrupt other hardware
219counters.
220
221The 'exclude_user', 'exclude_kernel' and 'exclude_hv' bits provide a
222way to request that counting of events be restricted to times when the
223CPU is in user, kernel and/or hypervisor mode.
224
Andrew Murray23e232b2019-01-10 13:53:23 +0000225Furthermore the 'exclude_host' and 'exclude_guest' bits provide a way
226to request counting of events restricted to guest and host contexts when
227using Linux as the hypervisor.
228
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200229The 'mmap' and 'munmap' bits allow recording of PROT_EXEC mmap/munmap
230operations, these can be used to relate userspace IP addresses to actual
231code, even after the mapping (or even the whole process) is gone,
232these events are recorded in the ring-buffer (see below).
233
234The 'comm' bit allows tracking of process comm data on process creation.
235This too is recorded in the ring-buffer (see below).
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100236
Ramkumar Ramachandrab68eebd2014-03-18 15:10:04 -0400237The 'pid' parameter to the sys_perf_event_open() system call allows the
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100238counter to be specific to a task:
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100239
240 pid == 0: if the pid parameter is zero, the counter is attached to the
241 current task.
242
243 pid > 0: the counter is attached to a specific task (if the current task
244 has sufficient privilege to do so)
245
246 pid < 0: all tasks are counted (per cpu counters)
247
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100248The 'cpu' parameter allows a counter to be made specific to a CPU:
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100249
250 cpu >= 0: the counter is restricted to a specific CPU
251 cpu == -1: the counter counts on all CPUs
252
Ingo Molnar447557a2008-12-11 20:40:18 +0100253(Note: the combination of 'pid == -1' and 'cpu == -1' is not valid.)
Ingo Molnare7bc62b2008-12-04 20:13:45 +0100254
255A 'pid > 0' and 'cpu == -1' counter is a per task counter that counts
256events of that task and 'follows' that task to whatever CPU the task
257gets schedule to. Per task counters can be created by any user, for
258their own tasks.
259
260A 'pid == -1' and 'cpu == x' counter is a per CPU counter that counts
261all events on CPU-x. Per CPU counters need CAP_SYS_ADMIN privilege.
262
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100263The 'flags' parameter is currently unused and must be zero.
264
265The 'group_fd' parameter allows counter "groups" to be set up. A
266counter group has one counter which is the group "leader". The leader
Ramkumar Ramachandrab68eebd2014-03-18 15:10:04 -0400267is created first, with group_fd = -1 in the sys_perf_event_open call
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100268that creates it. The rest of the group members are created
269subsequently, with group_fd giving the fd of the group leader.
270(A single counter on its own is created with group_fd = -1 and is
271considered to be a group with only 1 member.)
272
273A counter group is scheduled onto the CPU as a unit, that is, it will
274only be put onto the CPU if all of the counters in the group can be
275put onto the CPU. This means that the values of the member counters
276can be meaningfully compared, added, divided (to get ratios), etc.,
277with each other, since they have counted events for the same set of
278executed instructions.
279
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200280
281Like stated, asynchronous events, like counter overflow or PROT_EXEC mmap
282tracking are logged into a ring-buffer. This ring-buffer is created and
283accessed through mmap().
284
285The mmap size should be 1+2^n pages, where the first page is a meta-data page
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200286(struct perf_event_mmap_page) that contains various bits of information such
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200287as where the ring-buffer head is.
288
289/*
290 * Structure of the page that can be mapped via mmap
291 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200292struct perf_event_mmap_page {
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200293 __u32 version; /* version number of this structure */
294 __u32 compat_version; /* lowest version this is compat with */
295
296 /*
297 * Bits needed to read the hw counters in user-space.
298 *
299 * u32 seq;
300 * s64 count;
301 *
302 * do {
303 * seq = pc->lock;
304 *
305 * barrier()
306 * if (pc->index) {
307 * count = pmc_read(pc->index - 1);
308 * count += pc->offset;
309 * } else
310 * goto regular_read;
311 *
312 * barrier();
313 * } while (pc->lock != seq);
314 *
315 * NOTE: for obvious reason this only works on self-monitoring
316 * processes.
317 */
318 __u32 lock; /* seqlock for synchronization */
319 __u32 index; /* hardware counter identifier */
320 __s64 offset; /* add to hardware counter value */
321
322 /*
323 * Control data for the mmap() data buffer.
324 *
325 * User-space reading this value should issue an rmb(), on SMP capable
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200326 * platforms, after reading this value -- see perf_event_wakeup().
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200327 */
328 __u32 data_head; /* head in the data section */
329};
330
331NOTE: the hw-counter userspace bits are arch specific and are currently only
332 implemented on powerpc.
333
334The following 2^n pages are the ring-buffer which contains events of the form:
335
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200336#define PERF_RECORD_MISC_KERNEL (1 << 0)
337#define PERF_RECORD_MISC_USER (1 << 1)
338#define PERF_RECORD_MISC_OVERFLOW (1 << 2)
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200339
340struct perf_event_header {
341 __u32 type;
342 __u16 misc;
343 __u16 size;
344};
345
346enum perf_event_type {
347
348 /*
349 * The MMAP events record the PROT_EXEC mappings so that we can
350 * correlate userspace IPs to code. They have the following structure:
351 *
352 * struct {
353 * struct perf_event_header header;
354 *
355 * u32 pid, tid;
356 * u64 addr;
357 * u64 len;
358 * u64 pgoff;
359 * char filename[];
360 * };
361 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200362 PERF_RECORD_MMAP = 1,
363 PERF_RECORD_MUNMAP = 2,
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200364
365 /*
366 * struct {
367 * struct perf_event_header header;
368 *
369 * u32 pid, tid;
370 * char comm[];
371 * };
372 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200373 PERF_RECORD_COMM = 3,
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200374
375 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200376 * When header.misc & PERF_RECORD_MISC_OVERFLOW the event_type field
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200377 * will be PERF_RECORD_*
378 *
379 * struct {
380 * struct perf_event_header header;
381 *
382 * { u64 ip; } && PERF_RECORD_IP
383 * { u32 pid, tid; } && PERF_RECORD_TID
384 * { u64 time; } && PERF_RECORD_TIME
385 * { u64 addr; } && PERF_RECORD_ADDR
386 *
387 * { u64 nr;
388 * { u64 event, val; } cnt[nr]; } && PERF_RECORD_GROUP
389 *
390 * { u16 nr,
391 * hv,
392 * kernel,
393 * user;
394 * u64 ips[nr]; } && PERF_RECORD_CALLCHAIN
395 * };
396 */
397};
398
399NOTE: PERF_RECORD_CALLCHAIN is arch specific and currently only implemented
400 on x86.
401
402Notification of new events is possible through poll()/select()/epoll() and
403fcntl() managing signals.
404
405Normally a notification is generated for every page filled, however one can
Tim Blechmann0b413e42009-12-27 14:43:06 +0100406additionally set perf_event_attr.wakeup_events to generate one every
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200407so many counter overflow events.
408
409Future work will include a splice() interface to the ring-buffer.
410
411
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100412Counters can be enabled and disabled in two ways: via ioctl and via
413prctl. When a counter is disabled, it doesn't count or generate
414events but does continue to exist and maintain its count value.
415
Namhyung Kima59e64a2012-05-31 14:51:45 +0900416An individual counter can be enabled with
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100417
Namhyung Kima59e64a2012-05-31 14:51:45 +0900418 ioctl(fd, PERF_EVENT_IOC_ENABLE, 0);
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100419
420or disabled with
421
Namhyung Kima59e64a2012-05-31 14:51:45 +0900422 ioctl(fd, PERF_EVENT_IOC_DISABLE, 0);
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100423
Namhyung Kima59e64a2012-05-31 14:51:45 +0900424For a counter group, pass PERF_IOC_FLAG_GROUP as the third argument.
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100425Enabling or disabling the leader of a group enables or disables the
426whole group; that is, while the group leader is disabled, none of the
427counters in the group will count. Enabling or disabling a member of a
428group other than the leader only affects that counter - disabling an
429non-leader stops that counter from counting but doesn't affect any
430other counter.
431
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200432Additionally, non-inherited overflow counters can use
433
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200434 ioctl(fd, PERF_EVENT_IOC_REFRESH, nr);
Peter Zijlstrae5791a82009-05-01 12:23:19 +0200435
436to enable a counter for 'nr' events, after which it gets disabled again.
437
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100438A process can enable or disable all the counter groups that are
439attached to it, using prctl:
440
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200441 prctl(PR_TASK_PERF_EVENTS_ENABLE);
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100442
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200443 prctl(PR_TASK_PERF_EVENTS_DISABLE);
Paul Mackerrasf66c6b22009-03-23 10:29:36 +1100444
445This applies to all counters on the current process, whether created
446by this process or by another, and doesn't affect any counters that
447this process has created on other processes. It only enables or
448disables the group leaders, not any other members in the groups.
Ingo Molnar447557a2008-12-11 20:40:18 +0100449
Mike Frysinger018df722009-06-12 13:17:43 -0400450
451Arch requirements
452-----------------
453
454If your architecture does not have hardware performance metrics, you can
455still use the generic software counters based on hrtimers for sampling.
456
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200457So to start with, in order to add HAVE_PERF_EVENTS to your Kconfig, you
Mike Frysinger018df722009-06-12 13:17:43 -0400458will need at least this:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200459 - asm/perf_event.h - a basic stub will suffice at first
Mike Frysinger018df722009-06-12 13:17:43 -0400460 - support for atomic64 types (and associated helper functions)
Mike Frysinger018df722009-06-12 13:17:43 -0400461
462If your architecture does have hardware capabilities, you can override the
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200463weak stub hw_perf_event_init() to register hardware counters.
Peter Zijlstra906010b2009-09-21 16:08:49 +0200464
465Architectures that have d-cache aliassing issues, such as Sparc and ARM,
466should select PERF_USE_VMALLOC in order to avoid these for perf mmap().