Merge branch 'perf/core' into perf/timer, before applying new changes
[deliverable/linux.git] / include / linux / perf_event.h
CommitLineData
0793a61d 1/*
57c0c15b 2 * Performance events:
0793a61d 3 *
a308444c 4 * Copyright (C) 2008-2009, Thomas Gleixner <tglx@linutronix.de>
e7e7ee2e
IM
5 * Copyright (C) 2008-2011, Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2011, Red Hat, Inc., Peter Zijlstra
0793a61d 7 *
57c0c15b 8 * Data type definitions, declarations, prototypes.
0793a61d 9 *
a308444c 10 * Started by: Thomas Gleixner and Ingo Molnar
0793a61d 11 *
57c0c15b 12 * For licencing details see kernel-base/COPYING
0793a61d 13 */
cdd6c482
IM
14#ifndef _LINUX_PERF_EVENT_H
15#define _LINUX_PERF_EVENT_H
0793a61d 16
607ca46e 17#include <uapi/linux/perf_event.h>
0793a61d 18
9f66a381 19/*
f3dfd265 20 * Kernel-internal data types and definitions:
9f66a381
IM
21 */
22
cdd6c482
IM
23#ifdef CONFIG_PERF_EVENTS
24# include <asm/perf_event.h>
7be79236 25# include <asm/local64.h>
f3dfd265
PM
26#endif
27
39447b38 28struct perf_guest_info_callbacks {
e7e7ee2e
IM
29 int (*is_in_guest)(void);
30 int (*is_user_mode)(void);
31 unsigned long (*get_guest_ip)(void);
39447b38
ZY
32};
33
2ff6cfd7
AB
34#ifdef CONFIG_HAVE_HW_BREAKPOINT
35#include <asm/hw_breakpoint.h>
36#endif
37
f3dfd265
PM
38#include <linux/list.h>
39#include <linux/mutex.h>
40#include <linux/rculist.h>
41#include <linux/rcupdate.h>
42#include <linux/spinlock.h>
d6d020e9 43#include <linux/hrtimer.h>
3c446b3d 44#include <linux/fs.h>
709e50cf 45#include <linux/pid_namespace.h>
906010b2 46#include <linux/workqueue.h>
5331d7b8 47#include <linux/ftrace.h>
85cfabbc 48#include <linux/cpu.h>
e360adbe 49#include <linux/irq_work.h>
c5905afb 50#include <linux/static_key.h>
851cf6e7 51#include <linux/jump_label_ratelimit.h>
60063497 52#include <linux/atomic.h>
641cc938 53#include <linux/sysfs.h>
4018994f 54#include <linux/perf_regs.h>
fadfe7be 55#include <linux/workqueue.h>
39bed6cb 56#include <linux/cgroup.h>
fa588151 57#include <asm/local.h>
f3dfd265 58
f9188e02
PZ
59struct perf_callchain_entry {
60 __u64 nr;
61 __u64 ip[PERF_MAX_STACK_DEPTH];
62};
63
3a43ce68
FW
64struct perf_raw_record {
65 u32 size;
66 void *data;
f413cdb8
FW
67};
68
bce38cd5
SE
69/*
70 * branch stack layout:
71 * nr: number of taken branches stored in entries[]
72 *
73 * Note that nr can vary from sample to sample
74 * branches (to, from) are stored from most recent
75 * to least recent, i.e., entries[0] contains the most
76 * recent branch.
77 */
caff2bef
PZ
78struct perf_branch_stack {
79 __u64 nr;
80 struct perf_branch_entry entries[0];
81};
82
f3dfd265
PM
83struct task_struct;
84
efc9f05d
SE
85/*
86 * extra PMU register associated with an event
87 */
88struct hw_perf_event_extra {
89 u64 config; /* register value */
90 unsigned int reg; /* register address or index */
91 int alloc; /* extra register already allocated */
92 int idx; /* index in shared_regs->regs[] */
93};
94
43b45780
AH
95struct event_constraint;
96
0793a61d 97/**
cdd6c482 98 * struct hw_perf_event - performance event hardware details:
0793a61d 99 */
cdd6c482
IM
100struct hw_perf_event {
101#ifdef CONFIG_PERF_EVENTS
d6d020e9
PZ
102 union {
103 struct { /* hardware */
a308444c 104 u64 config;
447a194b 105 u64 last_tag;
a308444c 106 unsigned long config_base;
cdd6c482 107 unsigned long event_base;
c48b6053 108 int event_base_rdpmc;
a308444c 109 int idx;
447a194b 110 int last_cpu;
9fac2cf3 111 int flags;
bce38cd5 112
efc9f05d 113 struct hw_perf_event_extra extra_reg;
bce38cd5 114 struct hw_perf_event_extra branch_reg;
43b45780
AH
115
116 struct event_constraint *constraint;
d6d020e9 117 };
721a669b 118 struct { /* software */
a308444c 119 struct hrtimer hrtimer;
d6d020e9 120 };
f22c1bb6 121 struct { /* tracepoint */
f22c1bb6
ON
122 /* for tp_event->class */
123 struct list_head tp_list;
124 };
4afbb24c
MF
125 struct { /* intel_cqm */
126 int cqm_state;
127 int cqm_rmid;
128 struct list_head cqm_events_entry;
129 struct list_head cqm_groups_entry;
130 struct list_head cqm_group_entry;
131 };
24f1e32c 132#ifdef CONFIG_HAVE_HW_BREAKPOINT
45a73372 133 struct { /* breakpoint */
d580ff86
PZ
134 /*
135 * Crufty hack to avoid the chicken and egg
136 * problem hw_breakpoint has with context
137 * creation and event initalization.
138 */
f22c1bb6
ON
139 struct arch_hw_breakpoint info;
140 struct list_head bp_list;
45a73372 141 };
24f1e32c 142#endif
d6d020e9 143 };
50f16a8b 144 struct task_struct *target;
a4eaf7f1 145 int state;
e7850595 146 local64_t prev_count;
b23f3325 147 u64 sample_period;
9e350de3 148 u64 last_period;
e7850595 149 local64_t period_left;
e050e3f0 150 u64 interrupts_seq;
60db5e09 151 u64 interrupts;
6a24ed6c 152
abd50713
PZ
153 u64 freq_time_stamp;
154 u64 freq_count_stamp;
ee06094f 155#endif
0793a61d
TG
156};
157
a4eaf7f1
PZ
158/*
159 * hw_perf_event::state flags
160 */
161#define PERF_HES_STOPPED 0x01 /* the counter is stopped */
162#define PERF_HES_UPTODATE 0x02 /* event->count up-to-date */
163#define PERF_HES_ARCH 0x04
164
cdd6c482 165struct perf_event;
621a01ea 166
8d2cacbb
PZ
167/*
168 * Common implementation detail of pmu::{start,commit,cancel}_txn
169 */
170#define PERF_EVENT_TXN 0x1
6bde9b6c 171
53b25335
VW
172/**
173 * pmu::capabilities flags
174 */
175#define PERF_PMU_CAP_NO_INTERRUPT 0x01
176
621a01ea 177/**
4aeb0b42 178 * struct pmu - generic performance monitoring unit
621a01ea 179 */
4aeb0b42 180struct pmu {
b0a873eb
PZ
181 struct list_head entry;
182
c464c76e 183 struct module *module;
abe43400 184 struct device *dev;
0c9d42ed 185 const struct attribute_group **attr_groups;
03d8e80b 186 const char *name;
2e80a82a
PZ
187 int type;
188
53b25335
VW
189 /*
190 * various common per-pmu feature flags
191 */
192 int capabilities;
193
108b02cf
PZ
194 int * __percpu pmu_disable_count;
195 struct perf_cpu_context * __percpu pmu_cpu_context;
8dc85d54 196 int task_ctx_nr;
62b85639 197 int hrtimer_interval_ms;
6bde9b6c
LM
198
199 /*
a4eaf7f1
PZ
200 * Fully disable/enable this PMU, can be used to protect from the PMI
201 * as well as for lazy/batch writing of the MSRs.
6bde9b6c 202 */
ad5133b7
PZ
203 void (*pmu_enable) (struct pmu *pmu); /* optional */
204 void (*pmu_disable) (struct pmu *pmu); /* optional */
6bde9b6c 205
8d2cacbb 206 /*
a4eaf7f1 207 * Try and initialize the event for this PMU.
24cd7f54 208 * Should return -ENOENT when the @event doesn't match this PMU.
8d2cacbb 209 */
b0a873eb
PZ
210 int (*event_init) (struct perf_event *event);
211
1e0fb9ec
AL
212 /*
213 * Notification that the event was mapped or unmapped. Called
214 * in the context of the mapping task.
215 */
216 void (*event_mapped) (struct perf_event *event); /*optional*/
217 void (*event_unmapped) (struct perf_event *event); /*optional*/
218
a4eaf7f1
PZ
219#define PERF_EF_START 0x01 /* start the counter when adding */
220#define PERF_EF_RELOAD 0x02 /* reload the counter when starting */
221#define PERF_EF_UPDATE 0x04 /* update the counter when stopping */
222
8d2cacbb 223 /*
a4eaf7f1
PZ
224 * Adds/Removes a counter to/from the PMU, can be done inside
225 * a transaction, see the ->*_txn() methods.
226 */
227 int (*add) (struct perf_event *event, int flags);
228 void (*del) (struct perf_event *event, int flags);
229
230 /*
231 * Starts/Stops a counter present on the PMU. The PMI handler
232 * should stop the counter when perf_event_overflow() returns
233 * !0. ->start() will be used to continue.
234 */
235 void (*start) (struct perf_event *event, int flags);
236 void (*stop) (struct perf_event *event, int flags);
237
238 /*
239 * Updates the counter value of the event.
240 */
cdd6c482 241 void (*read) (struct perf_event *event);
6bde9b6c
LM
242
243 /*
24cd7f54
PZ
244 * Group events scheduling is treated as a transaction, add
245 * group events as a whole and perform one schedulability test.
246 * If the test fails, roll back the whole group
a4eaf7f1
PZ
247 *
248 * Start the transaction, after this ->add() doesn't need to
24cd7f54 249 * do schedulability tests.
8d2cacbb 250 */
e7e7ee2e 251 void (*start_txn) (struct pmu *pmu); /* optional */
8d2cacbb 252 /*
a4eaf7f1 253 * If ->start_txn() disabled the ->add() schedulability test
8d2cacbb
PZ
254 * then ->commit_txn() is required to perform one. On success
255 * the transaction is closed. On error the transaction is kept
256 * open until ->cancel_txn() is called.
257 */
e7e7ee2e 258 int (*commit_txn) (struct pmu *pmu); /* optional */
8d2cacbb 259 /*
a4eaf7f1 260 * Will cancel the transaction, assumes ->del() is called
25985edc 261 * for each successful ->add() during the transaction.
8d2cacbb 262 */
e7e7ee2e 263 void (*cancel_txn) (struct pmu *pmu); /* optional */
35edc2a5
PZ
264
265 /*
266 * Will return the value for perf_event_mmap_page::index for this event,
267 * if no implementation is provided it will default to: event->hw.idx + 1.
268 */
269 int (*event_idx) (struct perf_event *event); /*optional */
d010b332 270
ba532500
YZ
271 /*
272 * context-switches callback
273 */
274 void (*sched_task) (struct perf_event_context *ctx,
275 bool sched_in);
4af57ef2
YZ
276 /*
277 * PMU specific data size
278 */
279 size_t task_ctx_size;
ba532500 280
eacd3ecc
MF
281
282 /*
283 * Return the count value for a counter.
284 */
285 u64 (*count) (struct perf_event *event); /*optional*/
621a01ea
IM
286};
287
6a930700 288/**
cdd6c482 289 * enum perf_event_active_state - the states of a event
6a930700 290 */
cdd6c482 291enum perf_event_active_state {
179033b3 292 PERF_EVENT_STATE_EXIT = -3,
57c0c15b 293 PERF_EVENT_STATE_ERROR = -2,
cdd6c482
IM
294 PERF_EVENT_STATE_OFF = -1,
295 PERF_EVENT_STATE_INACTIVE = 0,
57c0c15b 296 PERF_EVENT_STATE_ACTIVE = 1,
6a930700
IM
297};
298
9b51f66d 299struct file;
453f19ee
PZ
300struct perf_sample_data;
301
a8b0ca17 302typedef void (*perf_overflow_handler_t)(struct perf_event *,
b326e956
FW
303 struct perf_sample_data *,
304 struct pt_regs *regs);
305
d6f962b5 306enum perf_group_flag {
e7e7ee2e 307 PERF_GROUP_SOFTWARE = 0x1,
d6f962b5
FW
308};
309
e7e7ee2e
IM
310#define SWEVENT_HLIST_BITS 8
311#define SWEVENT_HLIST_SIZE (1 << SWEVENT_HLIST_BITS)
76e1d904
FW
312
313struct swevent_hlist {
e7e7ee2e
IM
314 struct hlist_head heads[SWEVENT_HLIST_SIZE];
315 struct rcu_head rcu_head;
76e1d904
FW
316};
317
8a49542c
PZ
318#define PERF_ATTACH_CONTEXT 0x01
319#define PERF_ATTACH_GROUP 0x02
d580ff86 320#define PERF_ATTACH_TASK 0x04
4af57ef2 321#define PERF_ATTACH_TASK_DATA 0x08
8a49542c 322
877c6856 323struct perf_cgroup;
76369139
FW
324struct ring_buffer;
325
0793a61d 326/**
cdd6c482 327 * struct perf_event - performance event kernel representation:
0793a61d 328 */
cdd6c482
IM
329struct perf_event {
330#ifdef CONFIG_PERF_EVENTS
9886167d
PZ
331 /*
332 * entry onto perf_event_context::event_list;
333 * modifications require ctx->lock
334 * RCU safe iterations.
335 */
592903cd 336 struct list_head event_entry;
9886167d
PZ
337
338 /*
339 * XXX: group_entry and sibling_list should be mutually exclusive;
340 * either you're a sibling on a group, or you're the group leader.
341 * Rework the code to always use the same list element.
342 *
343 * Locked for modification by both ctx->mutex and ctx->lock; holding
344 * either sufficies for read.
345 */
346 struct list_head group_entry;
04289bb9 347 struct list_head sibling_list;
9886167d
PZ
348
349 /*
350 * We need storage to track the entries in perf_pmu_migrate_context; we
351 * cannot use the event_entry because of RCU and we want to keep the
352 * group in tact which avoids us using the other two entries.
353 */
354 struct list_head migrate_entry;
355
f3ae75de
SE
356 struct hlist_node hlist_entry;
357 struct list_head active_entry;
0127c3ea 358 int nr_siblings;
d6f962b5 359 int group_flags;
cdd6c482 360 struct perf_event *group_leader;
a4eaf7f1 361 struct pmu *pmu;
04289bb9 362
cdd6c482 363 enum perf_event_active_state state;
8a49542c 364 unsigned int attach_state;
e7850595 365 local64_t count;
a6e6dea6 366 atomic64_t child_count;
ee06094f 367
53cfbf59 368 /*
cdd6c482 369 * These are the total time in nanoseconds that the event
53cfbf59 370 * has been enabled (i.e. eligible to run, and the task has
cdd6c482 371 * been scheduled in, if this is a per-task event)
53cfbf59
PM
372 * and running (scheduled onto the CPU), respectively.
373 *
374 * They are computed from tstamp_enabled, tstamp_running and
cdd6c482 375 * tstamp_stopped when the event is in INACTIVE or ACTIVE state.
53cfbf59
PM
376 */
377 u64 total_time_enabled;
378 u64 total_time_running;
379
380 /*
381 * These are timestamps used for computing total_time_enabled
cdd6c482 382 * and total_time_running when the event is in INACTIVE or
53cfbf59
PM
383 * ACTIVE state, measured in nanoseconds from an arbitrary point
384 * in time.
cdd6c482
IM
385 * tstamp_enabled: the notional time when the event was enabled
386 * tstamp_running: the notional time when the event was scheduled on
53cfbf59 387 * tstamp_stopped: in INACTIVE state, the notional time when the
cdd6c482 388 * event was scheduled off.
53cfbf59
PM
389 */
390 u64 tstamp_enabled;
391 u64 tstamp_running;
392 u64 tstamp_stopped;
393
eed01528
SE
394 /*
395 * timestamp shadows the actual context timing but it can
396 * be safely used in NMI interrupt context. It reflects the
397 * context time as it was when the event was last scheduled in.
398 *
399 * ctx_time already accounts for ctx->timestamp. Therefore to
400 * compute ctx_time for a sample, simply add perf_clock().
401 */
402 u64 shadow_ctx_time;
403
24f1e32c 404 struct perf_event_attr attr;
c320c7b7 405 u16 header_size;
6844c09d 406 u16 id_header_size;
c320c7b7 407 u16 read_size;
cdd6c482 408 struct hw_perf_event hw;
0793a61d 409
cdd6c482 410 struct perf_event_context *ctx;
a6fa941d 411 atomic_long_t refcount;
0793a61d 412
53cfbf59
PM
413 /*
414 * These accumulate total time (in nanoseconds) that children
cdd6c482 415 * events have been enabled and running, respectively.
53cfbf59
PM
416 */
417 atomic64_t child_total_time_enabled;
418 atomic64_t child_total_time_running;
419
0793a61d 420 /*
d859e29f 421 * Protect attach/detach and child_list:
0793a61d 422 */
fccc714b
PZ
423 struct mutex child_mutex;
424 struct list_head child_list;
cdd6c482 425 struct perf_event *parent;
0793a61d
TG
426
427 int oncpu;
428 int cpu;
429
082ff5a2
PZ
430 struct list_head owner_entry;
431 struct task_struct *owner;
432
7b732a75
PZ
433 /* mmap bits */
434 struct mutex mmap_mutex;
435 atomic_t mmap_count;
26cb63ad 436
76369139 437 struct ring_buffer *rb;
10c6db11 438 struct list_head rb_entry;
b69cf536
PZ
439 unsigned long rcu_batches;
440 int rcu_pending;
37d81828 441
7b732a75 442 /* poll related */
0793a61d 443 wait_queue_head_t waitq;
3c446b3d 444 struct fasync_struct *fasync;
79f14641
PZ
445
446 /* delayed work for NMIs and such */
447 int pending_wakeup;
4c9e2542 448 int pending_kill;
79f14641 449 int pending_disable;
e360adbe 450 struct irq_work pending;
592903cd 451
79f14641
PZ
452 atomic_t event_limit;
453
cdd6c482 454 void (*destroy)(struct perf_event *);
592903cd 455 struct rcu_head rcu_head;
709e50cf
PZ
456
457 struct pid_namespace *ns;
8e5799b1 458 u64 id;
6fb2915d 459
b326e956 460 perf_overflow_handler_t overflow_handler;
4dc0da86 461 void *overflow_handler_context;
453f19ee 462
07b139c8 463#ifdef CONFIG_EVENT_TRACING
1c024eca 464 struct ftrace_event_call *tp_event;
6fb2915d 465 struct event_filter *filter;
ced39002
JO
466#ifdef CONFIG_FUNCTION_TRACER
467 struct ftrace_ops ftrace_ops;
468#endif
ee06094f 469#endif
6fb2915d 470
e5d1367f
SE
471#ifdef CONFIG_CGROUP_PERF
472 struct perf_cgroup *cgrp; /* cgroup event is attach to */
473 int cgrp_defer_enabled;
474#endif
475
6fb2915d 476#endif /* CONFIG_PERF_EVENTS */
0793a61d
TG
477};
478
479/**
cdd6c482 480 * struct perf_event_context - event context structure
0793a61d 481 *
cdd6c482 482 * Used as a container for task events and CPU events as well:
0793a61d 483 */
cdd6c482 484struct perf_event_context {
108b02cf 485 struct pmu *pmu;
0793a61d 486 /*
cdd6c482 487 * Protect the states of the events in the list,
d859e29f 488 * nr_active, and the list:
0793a61d 489 */
e625cce1 490 raw_spinlock_t lock;
d859e29f 491 /*
cdd6c482 492 * Protect the list of events. Locking either mutex or lock
d859e29f
PM
493 * is sufficient to ensure the list doesn't change; to change
494 * the list you need to lock both the mutex and the spinlock.
495 */
a308444c 496 struct mutex mutex;
04289bb9 497
2fde4f94 498 struct list_head active_ctx_list;
889ff015
FW
499 struct list_head pinned_groups;
500 struct list_head flexible_groups;
a308444c 501 struct list_head event_list;
cdd6c482 502 int nr_events;
a308444c
IM
503 int nr_active;
504 int is_active;
bfbd3381 505 int nr_stat;
0f5a2601 506 int nr_freq;
dddd3379 507 int rotate_disable;
a308444c
IM
508 atomic_t refcount;
509 struct task_struct *task;
53cfbf59
PM
510
511 /*
4af4998b 512 * Context clock, runs when context enabled.
53cfbf59 513 */
a308444c
IM
514 u64 time;
515 u64 timestamp;
564c2b21
PM
516
517 /*
518 * These fields let us detect when two contexts have both
519 * been cloned (inherited) from a common ancestor.
520 */
cdd6c482 521 struct perf_event_context *parent_ctx;
a308444c
IM
522 u64 parent_gen;
523 u64 generation;
524 int pin_count;
d010b332 525 int nr_cgroups; /* cgroup evts */
4af57ef2 526 void *task_ctx_data; /* pmu specific data */
28009ce4 527 struct rcu_head rcu_head;
fadfe7be
JO
528
529 struct delayed_work orphans_remove;
530 bool orphans_remove_sched;
0793a61d
TG
531};
532
7ae07ea3
FW
533/*
534 * Number of contexts where an event can trigger:
e7e7ee2e 535 * task, softirq, hardirq, nmi.
7ae07ea3
FW
536 */
537#define PERF_NR_CONTEXTS 4
538
0793a61d 539/**
cdd6c482 540 * struct perf_event_cpu_context - per cpu event context structure
0793a61d
TG
541 */
542struct perf_cpu_context {
cdd6c482
IM
543 struct perf_event_context ctx;
544 struct perf_event_context *task_ctx;
0793a61d 545 int active_oncpu;
3b6f9e5c 546 int exclusive;
9e630205
SE
547 struct hrtimer hrtimer;
548 ktime_t hrtimer_interval;
3f1f3320 549 struct pmu *unique_pmu;
e5d1367f 550 struct perf_cgroup *cgrp;
0793a61d
TG
551};
552
5622f295 553struct perf_output_handle {
57c0c15b 554 struct perf_event *event;
76369139 555 struct ring_buffer *rb;
6d1acfd5 556 unsigned long wakeup;
5d967a8b
PZ
557 unsigned long size;
558 void *addr;
559 int page;
5622f295
MM
560};
561
39bed6cb
MF
562#ifdef CONFIG_CGROUP_PERF
563
564/*
565 * perf_cgroup_info keeps track of time_enabled for a cgroup.
566 * This is a per-cpu dynamically allocated data structure.
567 */
568struct perf_cgroup_info {
569 u64 time;
570 u64 timestamp;
571};
572
573struct perf_cgroup {
574 struct cgroup_subsys_state css;
575 struct perf_cgroup_info __percpu *info;
576};
577
578/*
579 * Must ensure cgroup is pinned (css_get) before calling
580 * this function. In other words, we cannot call this function
581 * if there is no cgroup event for the current CPU context.
582 */
583static inline struct perf_cgroup *
584perf_cgroup_from_task(struct task_struct *task)
585{
586 return container_of(task_css(task, perf_event_cgrp_id),
587 struct perf_cgroup, css);
588}
589#endif /* CONFIG_CGROUP_PERF */
590
cdd6c482 591#ifdef CONFIG_PERF_EVENTS
829b42dd 592
03d8e80b 593extern int perf_pmu_register(struct pmu *pmu, const char *name, int type);
b0a873eb 594extern void perf_pmu_unregister(struct pmu *pmu);
621a01ea 595
3bf101ba 596extern int perf_num_counters(void);
84c79910 597extern const char *perf_pmu_name(void);
ab0cce56
JO
598extern void __perf_event_task_sched_in(struct task_struct *prev,
599 struct task_struct *task);
600extern void __perf_event_task_sched_out(struct task_struct *prev,
601 struct task_struct *next);
cdd6c482
IM
602extern int perf_event_init_task(struct task_struct *child);
603extern void perf_event_exit_task(struct task_struct *child);
604extern void perf_event_free_task(struct task_struct *task);
4e231c79 605extern void perf_event_delayed_put(struct task_struct *task);
cdd6c482 606extern void perf_event_print_debug(void);
33696fc0
PZ
607extern void perf_pmu_disable(struct pmu *pmu);
608extern void perf_pmu_enable(struct pmu *pmu);
ba532500
YZ
609extern void perf_sched_cb_dec(struct pmu *pmu);
610extern void perf_sched_cb_inc(struct pmu *pmu);
cdd6c482
IM
611extern int perf_event_task_disable(void);
612extern int perf_event_task_enable(void);
26ca5c11 613extern int perf_event_refresh(struct perf_event *event, int refresh);
cdd6c482 614extern void perf_event_update_userpage(struct perf_event *event);
fb0459d7
AV
615extern int perf_event_release_kernel(struct perf_event *event);
616extern struct perf_event *
617perf_event_create_kernel_counter(struct perf_event_attr *attr,
618 int cpu,
38a81da2 619 struct task_struct *task,
4dc0da86
AK
620 perf_overflow_handler_t callback,
621 void *context);
0cda4c02
YZ
622extern void perf_pmu_migrate_context(struct pmu *pmu,
623 int src_cpu, int dst_cpu);
59ed446f
PZ
624extern u64 perf_event_read_value(struct perf_event *event,
625 u64 *enabled, u64 *running);
5c92d124 626
d010b332 627
df1a132b 628struct perf_sample_data {
2565711f
PZ
629 /*
630 * Fields set by perf_sample_data_init(), group so as to
631 * minimize the cachelines touched.
632 */
633 u64 addr;
634 struct perf_raw_record *raw;
635 struct perf_branch_stack *br_stack;
636 u64 period;
637 u64 weight;
638 u64 txn;
639 union perf_mem_data_src data_src;
5622f295 640
2565711f
PZ
641 /*
642 * The other fields, optionally {set,used} by
643 * perf_{prepare,output}_sample().
644 */
645 u64 type;
5622f295
MM
646 u64 ip;
647 struct {
648 u32 pid;
649 u32 tid;
650 } tid_entry;
651 u64 time;
5622f295
MM
652 u64 id;
653 u64 stream_id;
654 struct {
655 u32 cpu;
656 u32 reserved;
657 } cpu_entry;
5622f295 658 struct perf_callchain_entry *callchain;
88a7c26a
AL
659
660 /*
661 * regs_user may point to task_pt_regs or to regs_user_copy, depending
662 * on arch details.
663 */
60e2364e 664 struct perf_regs regs_user;
88a7c26a
AL
665 struct pt_regs regs_user_copy;
666
60e2364e 667 struct perf_regs regs_intr;
c5ebcedb 668 u64 stack_user_size;
2565711f 669} ____cacheline_aligned;
df1a132b 670
770eee1f
SE
671/* default value for data source */
672#define PERF_MEM_NA (PERF_MEM_S(OP, NA) |\
673 PERF_MEM_S(LVL, NA) |\
674 PERF_MEM_S(SNOOP, NA) |\
675 PERF_MEM_S(LOCK, NA) |\
676 PERF_MEM_S(TLB, NA))
677
fd0d000b
RR
678static inline void perf_sample_data_init(struct perf_sample_data *data,
679 u64 addr, u64 period)
dc1d628a 680{
fd0d000b 681 /* remaining struct members initialized in perf_prepare_sample() */
dc1d628a
PZ
682 data->addr = addr;
683 data->raw = NULL;
bce38cd5 684 data->br_stack = NULL;
4018994f 685 data->period = period;
c3feedf2 686 data->weight = 0;
770eee1f 687 data->data_src.val = PERF_MEM_NA;
fdfbbd07 688 data->txn = 0;
dc1d628a
PZ
689}
690
5622f295
MM
691extern void perf_output_sample(struct perf_output_handle *handle,
692 struct perf_event_header *header,
693 struct perf_sample_data *data,
cdd6c482 694 struct perf_event *event);
5622f295
MM
695extern void perf_prepare_sample(struct perf_event_header *header,
696 struct perf_sample_data *data,
cdd6c482 697 struct perf_event *event,
5622f295
MM
698 struct pt_regs *regs);
699
a8b0ca17 700extern int perf_event_overflow(struct perf_event *event,
5622f295
MM
701 struct perf_sample_data *data,
702 struct pt_regs *regs);
df1a132b 703
6c7e550f
FBH
704static inline bool is_sampling_event(struct perf_event *event)
705{
706 return event->attr.sample_period != 0;
707}
708
3b6f9e5c 709/*
cdd6c482 710 * Return 1 for a software event, 0 for a hardware event
3b6f9e5c 711 */
cdd6c482 712static inline int is_software_event(struct perf_event *event)
3b6f9e5c 713{
89a1e187 714 return event->pmu->task_ctx_nr == perf_sw_context;
3b6f9e5c
PM
715}
716
c5905afb 717extern struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
f29ac756 718
86038c5e 719extern void ___perf_sw_event(u32, u64, struct pt_regs *, u64);
a8b0ca17 720extern void __perf_sw_event(u32, u64, struct pt_regs *, u64);
f29ac756 721
b0f82b81 722#ifndef perf_arch_fetch_caller_regs
e7e7ee2e 723static inline void perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip) { }
b0f82b81 724#endif
5331d7b8
FW
725
726/*
727 * Take a snapshot of the regs. Skip ip and frame pointer to
728 * the nth caller. We only need a few of the regs:
729 * - ip for PERF_SAMPLE_IP
730 * - cs for user_mode() tests
731 * - bp for callchains
732 * - eflags, for future purposes, just in case
733 */
b0f82b81 734static inline void perf_fetch_caller_regs(struct pt_regs *regs)
5331d7b8 735{
5331d7b8
FW
736 memset(regs, 0, sizeof(*regs));
737
b0f82b81 738 perf_arch_fetch_caller_regs(regs, CALLER_ADDR0);
5331d7b8
FW
739}
740
7e54a5a0 741static __always_inline void
a8b0ca17 742perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
e49a5bd3 743{
86038c5e
PZI
744 if (static_key_false(&perf_swevent_enabled[event_id]))
745 __perf_sw_event(event_id, nr, regs, addr);
746}
747
748DECLARE_PER_CPU(struct pt_regs, __perf_regs[4]);
7e54a5a0 749
86038c5e
PZI
750/*
751 * 'Special' version for the scheduler, it hard assumes no recursion,
752 * which is guaranteed by us not actually scheduling inside other swevents
753 * because those disable preemption.
754 */
755static __always_inline void
756perf_sw_event_sched(u32 event_id, u64 nr, u64 addr)
757{
c5905afb 758 if (static_key_false(&perf_swevent_enabled[event_id])) {
86038c5e
PZI
759 struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]);
760
761 perf_fetch_caller_regs(regs);
762 ___perf_sw_event(event_id, nr, regs, addr);
e49a5bd3
FW
763 }
764}
765
c5905afb 766extern struct static_key_deferred perf_sched_events;
ee6dcfa4 767
ab0cce56 768static inline void perf_event_task_sched_in(struct task_struct *prev,
a8d757ef 769 struct task_struct *task)
ab0cce56
JO
770{
771 if (static_key_false(&perf_sched_events.key))
772 __perf_event_task_sched_in(prev, task);
773}
774
775static inline void perf_event_task_sched_out(struct task_struct *prev,
776 struct task_struct *next)
ee6dcfa4 777{
86038c5e 778 perf_sw_event_sched(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 0);
ee6dcfa4 779
c5905afb 780 if (static_key_false(&perf_sched_events.key))
ab0cce56 781 __perf_event_task_sched_out(prev, next);
ee6dcfa4
PZ
782}
783
eacd3ecc
MF
784static inline u64 __perf_event_count(struct perf_event *event)
785{
786 return local64_read(&event->count) + atomic64_read(&event->child_count);
787}
788
3af9e859 789extern void perf_event_mmap(struct vm_area_struct *vma);
39447b38 790extern struct perf_guest_info_callbacks *perf_guest_cbs;
dcf46b94
ZY
791extern int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
792extern int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
39447b38 793
e041e328 794extern void perf_event_exec(void);
82b89778 795extern void perf_event_comm(struct task_struct *tsk, bool exec);
cdd6c482 796extern void perf_event_fork(struct task_struct *tsk);
8d1b2d93 797
56962b44
FW
798/* Callchains */
799DECLARE_PER_CPU(struct perf_callchain_entry, perf_callchain_entry);
800
e7e7ee2e
IM
801extern void perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs);
802extern void perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs);
394ee076 803
e7e7ee2e 804static inline void perf_callchain_store(struct perf_callchain_entry *entry, u64 ip)
70791ce9
FW
805{
806 if (entry->nr < PERF_MAX_STACK_DEPTH)
807 entry->ip[entry->nr++] = ip;
808}
394ee076 809
cdd6c482
IM
810extern int sysctl_perf_event_paranoid;
811extern int sysctl_perf_event_mlock;
812extern int sysctl_perf_event_sample_rate;
14c63f17
DH
813extern int sysctl_perf_cpu_time_max_percent;
814
815extern void perf_sample_event_took(u64 sample_len_ns);
1ccd1549 816
163ec435
PZ
817extern int perf_proc_update_handler(struct ctl_table *table, int write,
818 void __user *buffer, size_t *lenp,
819 loff_t *ppos);
14c63f17
DH
820extern int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
821 void __user *buffer, size_t *lenp,
822 loff_t *ppos);
823
163ec435 824
320ebf09
PZ
825static inline bool perf_paranoid_tracepoint_raw(void)
826{
827 return sysctl_perf_event_paranoid > -1;
828}
829
830static inline bool perf_paranoid_cpu(void)
831{
832 return sysctl_perf_event_paranoid > 0;
833}
834
835static inline bool perf_paranoid_kernel(void)
836{
837 return sysctl_perf_event_paranoid > 1;
838}
839
cdd6c482 840extern void perf_event_init(void);
1c024eca
PZ
841extern void perf_tp_event(u64 addr, u64 count, void *record,
842 int entry_size, struct pt_regs *regs,
e6dab5ff
AV
843 struct hlist_head *head, int rctx,
844 struct task_struct *task);
24f1e32c 845extern void perf_bp_event(struct perf_event *event, void *data);
0d905bca 846
9d23a90a 847#ifndef perf_misc_flags
e7e7ee2e
IM
848# define perf_misc_flags(regs) \
849 (user_mode(regs) ? PERF_RECORD_MISC_USER : PERF_RECORD_MISC_KERNEL)
850# define perf_instruction_pointer(regs) instruction_pointer(regs)
9d23a90a
PM
851#endif
852
bce38cd5
SE
853static inline bool has_branch_stack(struct perf_event *event)
854{
855 return event->attr.sample_type & PERF_SAMPLE_BRANCH_STACK;
a46a2300
YZ
856}
857
858static inline bool needs_branch_stack(struct perf_event *event)
859{
860 return event->attr.branch_sample_type != 0;
bce38cd5
SE
861}
862
5622f295 863extern int perf_output_begin(struct perf_output_handle *handle,
a7ac67ea 864 struct perf_event *event, unsigned int size);
5622f295 865extern void perf_output_end(struct perf_output_handle *handle);
91d7753a 866extern unsigned int perf_output_copy(struct perf_output_handle *handle,
5622f295 867 const void *buf, unsigned int len);
5685e0ff
JO
868extern unsigned int perf_output_skip(struct perf_output_handle *handle,
869 unsigned int len);
4ed7c92d
PZ
870extern int perf_swevent_get_recursion_context(void);
871extern void perf_swevent_put_recursion_context(int rctx);
ab573844 872extern u64 perf_swevent_set_period(struct perf_event *event);
44234adc
FW
873extern void perf_event_enable(struct perf_event *event);
874extern void perf_event_disable(struct perf_event *event);
500ad2d8 875extern int __perf_event_disable(void *info);
e9d2b064 876extern void perf_event_task_tick(void);
e041e328 877#else /* !CONFIG_PERF_EVENTS: */
0793a61d 878static inline void
ab0cce56
JO
879perf_event_task_sched_in(struct task_struct *prev,
880 struct task_struct *task) { }
881static inline void
882perf_event_task_sched_out(struct task_struct *prev,
883 struct task_struct *next) { }
cdd6c482
IM
884static inline int perf_event_init_task(struct task_struct *child) { return 0; }
885static inline void perf_event_exit_task(struct task_struct *child) { }
886static inline void perf_event_free_task(struct task_struct *task) { }
4e231c79 887static inline void perf_event_delayed_put(struct task_struct *task) { }
57c0c15b 888static inline void perf_event_print_debug(void) { }
57c0c15b
IM
889static inline int perf_event_task_disable(void) { return -EINVAL; }
890static inline int perf_event_task_enable(void) { return -EINVAL; }
26ca5c11
AK
891static inline int perf_event_refresh(struct perf_event *event, int refresh)
892{
893 return -EINVAL;
894}
15dbf27c 895
925d519a 896static inline void
a8b0ca17 897perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) { }
24f1e32c 898static inline void
86038c5e
PZI
899perf_sw_event_sched(u32 event_id, u64 nr, u64 addr) { }
900static inline void
184f412c 901perf_bp_event(struct perf_event *event, void *data) { }
0a4a9391 902
39447b38 903static inline int perf_register_guest_info_callbacks
e7e7ee2e 904(struct perf_guest_info_callbacks *callbacks) { return 0; }
39447b38 905static inline int perf_unregister_guest_info_callbacks
e7e7ee2e 906(struct perf_guest_info_callbacks *callbacks) { return 0; }
39447b38 907
57c0c15b 908static inline void perf_event_mmap(struct vm_area_struct *vma) { }
e041e328 909static inline void perf_event_exec(void) { }
82b89778 910static inline void perf_event_comm(struct task_struct *tsk, bool exec) { }
cdd6c482
IM
911static inline void perf_event_fork(struct task_struct *tsk) { }
912static inline void perf_event_init(void) { }
184f412c 913static inline int perf_swevent_get_recursion_context(void) { return -1; }
4ed7c92d 914static inline void perf_swevent_put_recursion_context(int rctx) { }
ab573844 915static inline u64 perf_swevent_set_period(struct perf_event *event) { return 0; }
44234adc
FW
916static inline void perf_event_enable(struct perf_event *event) { }
917static inline void perf_event_disable(struct perf_event *event) { }
500ad2d8 918static inline int __perf_event_disable(void *info) { return -1; }
e9d2b064 919static inline void perf_event_task_tick(void) { }
0793a61d
TG
920#endif
921
026249ef
FW
922#if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_NO_HZ_FULL)
923extern bool perf_event_can_stop_tick(void);
924#else
925static inline bool perf_event_can_stop_tick(void) { return true; }
926#endif
927
6c4d3bc9
DR
928#if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_INTEL)
929extern void perf_restore_debug_store(void);
930#else
1d9d8639 931static inline void perf_restore_debug_store(void) { }
0793a61d
TG
932#endif
933
e7e7ee2e 934#define perf_output_put(handle, x) perf_output_copy((handle), &(x), sizeof(x))
5622f295 935
3f6da390 936/*
0a0fca9d 937 * This has to have a higher priority than migration_notifier in sched/core.c.
3f6da390 938 */
e7e7ee2e
IM
939#define perf_cpu_notifier(fn) \
940do { \
0db0628d 941 static struct notifier_block fn##_nb = \
e7e7ee2e 942 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
c13d38e4 943 unsigned long cpu = smp_processor_id(); \
6760bca9 944 unsigned long flags; \
f0bdb5e0
SB
945 \
946 cpu_notifier_register_begin(); \
e7e7ee2e 947 fn(&fn##_nb, (unsigned long)CPU_UP_PREPARE, \
c13d38e4 948 (void *)(unsigned long)cpu); \
6760bca9 949 local_irq_save(flags); \
e7e7ee2e 950 fn(&fn##_nb, (unsigned long)CPU_STARTING, \
c13d38e4 951 (void *)(unsigned long)cpu); \
6760bca9 952 local_irq_restore(flags); \
e7e7ee2e 953 fn(&fn##_nb, (unsigned long)CPU_ONLINE, \
c13d38e4 954 (void *)(unsigned long)cpu); \
f0bdb5e0
SB
955 __register_cpu_notifier(&fn##_nb); \
956 cpu_notifier_register_done(); \
3f6da390
PZ
957} while (0)
958
f0bdb5e0
SB
959/*
960 * Bare-bones version of perf_cpu_notifier(), which doesn't invoke the
961 * callback for already online CPUs.
962 */
963#define __perf_cpu_notifier(fn) \
964do { \
965 static struct notifier_block fn##_nb = \
966 { .notifier_call = fn, .priority = CPU_PRI_PERF }; \
967 \
968 __register_cpu_notifier(&fn##_nb); \
969} while (0)
641cc938 970
2663960c
SB
971struct perf_pmu_events_attr {
972 struct device_attribute attr;
973 u64 id;
3a54aaa0 974 const char *event_str;
2663960c
SB
975};
976
fd979c01
CS
977ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
978 char *page);
979
2663960c
SB
980#define PMU_EVENT_ATTR(_name, _var, _id, _show) \
981static struct perf_pmu_events_attr _var = { \
982 .attr = __ATTR(_name, 0444, _show, NULL), \
983 .id = _id, \
984};
985
f0405b81
CS
986#define PMU_EVENT_ATTR_STRING(_name, _var, _str) \
987static struct perf_pmu_events_attr _var = { \
988 .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \
989 .id = 0, \
990 .event_str = _str, \
991};
992
641cc938
JO
993#define PMU_FORMAT_ATTR(_name, _format) \
994static ssize_t \
995_name##_show(struct device *dev, \
996 struct device_attribute *attr, \
997 char *page) \
998{ \
999 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
1000 return sprintf(page, _format "\n"); \
1001} \
1002 \
1003static struct device_attribute format_attr_##_name = __ATTR_RO(_name)
1004
cdd6c482 1005#endif /* _LINUX_PERF_EVENT_H */
This page took 0.416583 seconds and 5 git commands to generate.