accel/amdxdna: use modern PM helpers
[drm/drm-misc.git] / kernel / trace / trace_irqsoff.c
blobfce064e205706f50e3b64f345b53c0f23bb226ee
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * trace irqs off critical timings
5 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
6 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
8 * From code in the latency_tracer, that is:
10 * Copyright (C) 2004-2006 Ingo Molnar
11 * Copyright (C) 2004 Nadia Yvette Chambers
13 #include <linux/kallsyms.h>
14 #include <linux/uaccess.h>
15 #include <linux/module.h>
16 #include <linux/ftrace.h>
17 #include <linux/kprobes.h>
19 #include "trace.h"
21 #include <trace/events/preemptirq.h>
23 #if defined(CONFIG_IRQSOFF_TRACER) || defined(CONFIG_PREEMPT_TRACER)
24 static struct trace_array *irqsoff_trace __read_mostly;
25 static int tracer_enabled __read_mostly;
27 static DEFINE_PER_CPU(int, tracing_cpu);
29 static DEFINE_RAW_SPINLOCK(max_trace_lock);
31 enum {
32 TRACER_IRQS_OFF = (1 << 1),
33 TRACER_PREEMPT_OFF = (1 << 2),
36 static int trace_type __read_mostly;
38 static int save_flags;
40 static void stop_irqsoff_tracer(struct trace_array *tr, int graph);
41 static int start_irqsoff_tracer(struct trace_array *tr, int graph);
43 #ifdef CONFIG_PREEMPT_TRACER
44 static inline int
45 preempt_trace(int pc)
47 return ((trace_type & TRACER_PREEMPT_OFF) && pc);
49 #else
50 # define preempt_trace(pc) (0)
51 #endif
53 #ifdef CONFIG_IRQSOFF_TRACER
54 static inline int
55 irq_trace(void)
57 return ((trace_type & TRACER_IRQS_OFF) &&
58 irqs_disabled());
60 #else
61 # define irq_trace() (0)
62 #endif
64 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
65 static int irqsoff_display_graph(struct trace_array *tr, int set);
66 # define is_graph(tr) ((tr)->trace_flags & TRACE_ITER_DISPLAY_GRAPH)
67 #else
68 static inline int irqsoff_display_graph(struct trace_array *tr, int set)
70 return -EINVAL;
72 # define is_graph(tr) false
73 #endif
76 * Sequence count - we record it when starting a measurement and
77 * skip the latency if the sequence has changed - some other section
78 * did a maximum and could disturb our measurement with serial console
79 * printouts, etc. Truly coinciding maximum latencies should be rare
80 * and what happens together happens separately as well, so this doesn't
81 * decrease the validity of the maximum found:
83 static __cacheline_aligned_in_smp unsigned long max_sequence;
85 #ifdef CONFIG_FUNCTION_TRACER
87 * Prologue for the preempt and irqs off function tracers.
89 * Returns 1 if it is OK to continue, and data->disabled is
90 * incremented.
91 * 0 if the trace is to be ignored, and data->disabled
92 * is kept the same.
94 * Note, this function is also used outside this ifdef but
95 * inside the #ifdef of the function graph tracer below.
96 * This is OK, since the function graph tracer is
97 * dependent on the function tracer.
99 static int func_prolog_dec(struct trace_array *tr,
100 struct trace_array_cpu **data,
101 unsigned long *flags)
103 long disabled;
104 int cpu;
107 * Does not matter if we preempt. We test the flags
108 * afterward, to see if irqs are disabled or not.
109 * If we preempt and get a false positive, the flags
110 * test will fail.
112 cpu = raw_smp_processor_id();
113 if (likely(!per_cpu(tracing_cpu, cpu)))
114 return 0;
116 local_save_flags(*flags);
118 * Slight chance to get a false positive on tracing_cpu,
119 * although I'm starting to think there isn't a chance.
120 * Leave this for now just to be paranoid.
122 if (!irqs_disabled_flags(*flags) && !preempt_count())
123 return 0;
125 *data = per_cpu_ptr(tr->array_buffer.data, cpu);
126 disabled = atomic_inc_return(&(*data)->disabled);
128 if (likely(disabled == 1))
129 return 1;
131 atomic_dec(&(*data)->disabled);
133 return 0;
137 * irqsoff uses its own tracer function to keep the overhead down:
139 static void
140 irqsoff_tracer_call(unsigned long ip, unsigned long parent_ip,
141 struct ftrace_ops *op, struct ftrace_regs *fregs)
143 struct trace_array *tr = irqsoff_trace;
144 struct trace_array_cpu *data;
145 unsigned long flags;
146 unsigned int trace_ctx;
148 if (!func_prolog_dec(tr, &data, &flags))
149 return;
151 trace_ctx = tracing_gen_ctx_flags(flags);
153 trace_function(tr, ip, parent_ip, trace_ctx);
155 atomic_dec(&data->disabled);
157 #endif /* CONFIG_FUNCTION_TRACER */
159 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
160 static int irqsoff_display_graph(struct trace_array *tr, int set)
162 int cpu;
164 if (!(is_graph(tr) ^ set))
165 return 0;
167 stop_irqsoff_tracer(irqsoff_trace, !set);
169 for_each_possible_cpu(cpu)
170 per_cpu(tracing_cpu, cpu) = 0;
172 tr->max_latency = 0;
173 tracing_reset_online_cpus(&irqsoff_trace->array_buffer);
175 return start_irqsoff_tracer(irqsoff_trace, set);
178 static int irqsoff_graph_entry(struct ftrace_graph_ent *trace,
179 struct fgraph_ops *gops)
181 struct trace_array *tr = irqsoff_trace;
182 struct trace_array_cpu *data;
183 unsigned long flags;
184 unsigned int trace_ctx;
185 int ret;
187 if (ftrace_graph_ignore_func(gops, trace))
188 return 0;
190 * Do not trace a function if it's filtered by set_graph_notrace.
191 * Make the index of ret stack negative to indicate that it should
192 * ignore further functions. But it needs its own ret stack entry
193 * to recover the original index in order to continue tracing after
194 * returning from the function.
196 if (ftrace_graph_notrace_addr(trace->func))
197 return 1;
199 if (!func_prolog_dec(tr, &data, &flags))
200 return 0;
202 trace_ctx = tracing_gen_ctx_flags(flags);
203 ret = __trace_graph_entry(tr, trace, trace_ctx);
204 atomic_dec(&data->disabled);
206 return ret;
209 static void irqsoff_graph_return(struct ftrace_graph_ret *trace,
210 struct fgraph_ops *gops)
212 struct trace_array *tr = irqsoff_trace;
213 struct trace_array_cpu *data;
214 unsigned long flags;
215 unsigned int trace_ctx;
217 ftrace_graph_addr_finish(gops, trace);
219 if (!func_prolog_dec(tr, &data, &flags))
220 return;
222 trace_ctx = tracing_gen_ctx_flags(flags);
223 __trace_graph_return(tr, trace, trace_ctx);
224 atomic_dec(&data->disabled);
227 static struct fgraph_ops fgraph_ops = {
228 .entryfunc = &irqsoff_graph_entry,
229 .retfunc = &irqsoff_graph_return,
232 static void irqsoff_trace_open(struct trace_iterator *iter)
234 if (is_graph(iter->tr))
235 graph_trace_open(iter);
236 else
237 iter->private = NULL;
240 static void irqsoff_trace_close(struct trace_iterator *iter)
242 if (iter->private)
243 graph_trace_close(iter);
246 #define GRAPH_TRACER_FLAGS (TRACE_GRAPH_PRINT_CPU | \
247 TRACE_GRAPH_PRINT_PROC | \
248 TRACE_GRAPH_PRINT_REL_TIME | \
249 TRACE_GRAPH_PRINT_DURATION)
251 static enum print_line_t irqsoff_print_line(struct trace_iterator *iter)
254 * In graph mode call the graph tracer output function,
255 * otherwise go with the TRACE_FN event handler
257 if (is_graph(iter->tr))
258 return print_graph_function_flags(iter, GRAPH_TRACER_FLAGS);
260 return TRACE_TYPE_UNHANDLED;
263 static void irqsoff_print_header(struct seq_file *s)
265 struct trace_array *tr = irqsoff_trace;
267 if (is_graph(tr))
268 print_graph_headers_flags(s, GRAPH_TRACER_FLAGS);
269 else
270 trace_default_header(s);
273 static void
274 __trace_function(struct trace_array *tr,
275 unsigned long ip, unsigned long parent_ip,
276 unsigned int trace_ctx)
278 if (is_graph(tr))
279 trace_graph_function(tr, ip, parent_ip, trace_ctx);
280 else
281 trace_function(tr, ip, parent_ip, trace_ctx);
284 #else
285 #define __trace_function trace_function
287 static enum print_line_t irqsoff_print_line(struct trace_iterator *iter)
289 return TRACE_TYPE_UNHANDLED;
292 static void irqsoff_trace_open(struct trace_iterator *iter) { }
293 static void irqsoff_trace_close(struct trace_iterator *iter) { }
295 #ifdef CONFIG_FUNCTION_TRACER
296 static void irqsoff_print_header(struct seq_file *s)
298 trace_default_header(s);
300 #else
301 static void irqsoff_print_header(struct seq_file *s)
303 trace_latency_header(s);
305 #endif /* CONFIG_FUNCTION_TRACER */
306 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
309 * Should this new latency be reported/recorded?
311 static bool report_latency(struct trace_array *tr, u64 delta)
313 if (tracing_thresh) {
314 if (delta < tracing_thresh)
315 return false;
316 } else {
317 if (delta <= tr->max_latency)
318 return false;
320 return true;
323 static void
324 check_critical_timing(struct trace_array *tr,
325 struct trace_array_cpu *data,
326 unsigned long parent_ip,
327 int cpu)
329 u64 T0, T1, delta;
330 unsigned long flags;
331 unsigned int trace_ctx;
333 T0 = data->preempt_timestamp;
334 T1 = ftrace_now(cpu);
335 delta = T1-T0;
337 trace_ctx = tracing_gen_ctx();
339 if (!report_latency(tr, delta))
340 goto out;
342 raw_spin_lock_irqsave(&max_trace_lock, flags);
344 /* check if we are still the max latency */
345 if (!report_latency(tr, delta))
346 goto out_unlock;
348 __trace_function(tr, CALLER_ADDR0, parent_ip, trace_ctx);
349 /* Skip 5 functions to get to the irq/preempt enable function */
350 __trace_stack(tr, trace_ctx, 5);
352 if (data->critical_sequence != max_sequence)
353 goto out_unlock;
355 data->critical_end = parent_ip;
357 if (likely(!is_tracing_stopped())) {
358 tr->max_latency = delta;
359 update_max_tr_single(tr, current, cpu);
362 max_sequence++;
364 out_unlock:
365 raw_spin_unlock_irqrestore(&max_trace_lock, flags);
367 out:
368 data->critical_sequence = max_sequence;
369 data->preempt_timestamp = ftrace_now(cpu);
370 __trace_function(tr, CALLER_ADDR0, parent_ip, trace_ctx);
373 static nokprobe_inline void
374 start_critical_timing(unsigned long ip, unsigned long parent_ip)
376 int cpu;
377 struct trace_array *tr = irqsoff_trace;
378 struct trace_array_cpu *data;
380 if (!tracer_enabled || !tracing_is_enabled())
381 return;
383 cpu = raw_smp_processor_id();
385 if (per_cpu(tracing_cpu, cpu))
386 return;
388 data = per_cpu_ptr(tr->array_buffer.data, cpu);
390 if (unlikely(!data) || atomic_read(&data->disabled))
391 return;
393 atomic_inc(&data->disabled);
395 data->critical_sequence = max_sequence;
396 data->preempt_timestamp = ftrace_now(cpu);
397 data->critical_start = parent_ip ? : ip;
399 __trace_function(tr, ip, parent_ip, tracing_gen_ctx());
401 per_cpu(tracing_cpu, cpu) = 1;
403 atomic_dec(&data->disabled);
406 static nokprobe_inline void
407 stop_critical_timing(unsigned long ip, unsigned long parent_ip)
409 int cpu;
410 struct trace_array *tr = irqsoff_trace;
411 struct trace_array_cpu *data;
412 unsigned int trace_ctx;
414 cpu = raw_smp_processor_id();
415 /* Always clear the tracing cpu on stopping the trace */
416 if (unlikely(per_cpu(tracing_cpu, cpu)))
417 per_cpu(tracing_cpu, cpu) = 0;
418 else
419 return;
421 if (!tracer_enabled || !tracing_is_enabled())
422 return;
424 data = per_cpu_ptr(tr->array_buffer.data, cpu);
426 if (unlikely(!data) ||
427 !data->critical_start || atomic_read(&data->disabled))
428 return;
430 atomic_inc(&data->disabled);
432 trace_ctx = tracing_gen_ctx();
433 __trace_function(tr, ip, parent_ip, trace_ctx);
434 check_critical_timing(tr, data, parent_ip ? : ip, cpu);
435 data->critical_start = 0;
436 atomic_dec(&data->disabled);
439 /* start and stop critical timings used to for stoppage (in idle) */
440 void start_critical_timings(void)
442 if (preempt_trace(preempt_count()) || irq_trace())
443 start_critical_timing(CALLER_ADDR0, CALLER_ADDR1);
445 EXPORT_SYMBOL_GPL(start_critical_timings);
446 NOKPROBE_SYMBOL(start_critical_timings);
448 void stop_critical_timings(void)
450 if (preempt_trace(preempt_count()) || irq_trace())
451 stop_critical_timing(CALLER_ADDR0, CALLER_ADDR1);
453 EXPORT_SYMBOL_GPL(stop_critical_timings);
454 NOKPROBE_SYMBOL(stop_critical_timings);
456 #ifdef CONFIG_FUNCTION_TRACER
457 static bool function_enabled;
459 static int register_irqsoff_function(struct trace_array *tr, int graph, int set)
461 int ret;
463 /* 'set' is set if TRACE_ITER_FUNCTION is about to be set */
464 if (function_enabled || (!set && !(tr->trace_flags & TRACE_ITER_FUNCTION)))
465 return 0;
467 if (graph)
468 ret = register_ftrace_graph(&fgraph_ops);
469 else
470 ret = register_ftrace_function(tr->ops);
472 if (!ret)
473 function_enabled = true;
475 return ret;
478 static void unregister_irqsoff_function(struct trace_array *tr, int graph)
480 if (!function_enabled)
481 return;
483 if (graph)
484 unregister_ftrace_graph(&fgraph_ops);
485 else
486 unregister_ftrace_function(tr->ops);
488 function_enabled = false;
491 static int irqsoff_function_set(struct trace_array *tr, u32 mask, int set)
493 if (!(mask & TRACE_ITER_FUNCTION))
494 return 0;
496 if (set)
497 register_irqsoff_function(tr, is_graph(tr), 1);
498 else
499 unregister_irqsoff_function(tr, is_graph(tr));
500 return 1;
502 #else
503 static int register_irqsoff_function(struct trace_array *tr, int graph, int set)
505 return 0;
507 static void unregister_irqsoff_function(struct trace_array *tr, int graph) { }
508 static inline int irqsoff_function_set(struct trace_array *tr, u32 mask, int set)
510 return 0;
512 #endif /* CONFIG_FUNCTION_TRACER */
514 static int irqsoff_flag_changed(struct trace_array *tr, u32 mask, int set)
516 struct tracer *tracer = tr->current_trace;
518 if (irqsoff_function_set(tr, mask, set))
519 return 0;
521 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
522 if (mask & TRACE_ITER_DISPLAY_GRAPH)
523 return irqsoff_display_graph(tr, set);
524 #endif
526 return trace_keep_overwrite(tracer, mask, set);
529 static int start_irqsoff_tracer(struct trace_array *tr, int graph)
531 int ret;
533 ret = register_irqsoff_function(tr, graph, 0);
535 if (!ret && tracing_is_enabled())
536 tracer_enabled = 1;
537 else
538 tracer_enabled = 0;
540 return ret;
543 static void stop_irqsoff_tracer(struct trace_array *tr, int graph)
545 tracer_enabled = 0;
547 unregister_irqsoff_function(tr, graph);
550 static bool irqsoff_busy;
552 static int __irqsoff_tracer_init(struct trace_array *tr)
554 if (irqsoff_busy)
555 return -EBUSY;
557 save_flags = tr->trace_flags;
559 /* non overwrite screws up the latency tracers */
560 set_tracer_flag(tr, TRACE_ITER_OVERWRITE, 1);
561 set_tracer_flag(tr, TRACE_ITER_LATENCY_FMT, 1);
562 /* without pause, we will produce garbage if another latency occurs */
563 set_tracer_flag(tr, TRACE_ITER_PAUSE_ON_TRACE, 1);
565 tr->max_latency = 0;
566 irqsoff_trace = tr;
567 /* make sure that the tracer is visible */
568 smp_wmb();
570 ftrace_init_array_ops(tr, irqsoff_tracer_call);
572 /* Only toplevel instance supports graph tracing */
573 if (start_irqsoff_tracer(tr, (tr->flags & TRACE_ARRAY_FL_GLOBAL &&
574 is_graph(tr))))
575 printk(KERN_ERR "failed to start irqsoff tracer\n");
577 irqsoff_busy = true;
578 return 0;
581 static void __irqsoff_tracer_reset(struct trace_array *tr)
583 int lat_flag = save_flags & TRACE_ITER_LATENCY_FMT;
584 int overwrite_flag = save_flags & TRACE_ITER_OVERWRITE;
585 int pause_flag = save_flags & TRACE_ITER_PAUSE_ON_TRACE;
587 stop_irqsoff_tracer(tr, is_graph(tr));
589 set_tracer_flag(tr, TRACE_ITER_LATENCY_FMT, lat_flag);
590 set_tracer_flag(tr, TRACE_ITER_OVERWRITE, overwrite_flag);
591 set_tracer_flag(tr, TRACE_ITER_PAUSE_ON_TRACE, pause_flag);
592 ftrace_reset_array_ops(tr);
594 irqsoff_busy = false;
597 static void irqsoff_tracer_start(struct trace_array *tr)
599 tracer_enabled = 1;
602 static void irqsoff_tracer_stop(struct trace_array *tr)
604 tracer_enabled = 0;
607 #ifdef CONFIG_IRQSOFF_TRACER
609 * We are only interested in hardirq on/off events:
611 void tracer_hardirqs_on(unsigned long a0, unsigned long a1)
613 if (!preempt_trace(preempt_count()) && irq_trace())
614 stop_critical_timing(a0, a1);
616 NOKPROBE_SYMBOL(tracer_hardirqs_on);
618 void tracer_hardirqs_off(unsigned long a0, unsigned long a1)
620 if (!preempt_trace(preempt_count()) && irq_trace())
621 start_critical_timing(a0, a1);
623 NOKPROBE_SYMBOL(tracer_hardirqs_off);
625 static int irqsoff_tracer_init(struct trace_array *tr)
627 trace_type = TRACER_IRQS_OFF;
629 return __irqsoff_tracer_init(tr);
632 static void irqsoff_tracer_reset(struct trace_array *tr)
634 __irqsoff_tracer_reset(tr);
637 static struct tracer irqsoff_tracer __read_mostly =
639 .name = "irqsoff",
640 .init = irqsoff_tracer_init,
641 .reset = irqsoff_tracer_reset,
642 .start = irqsoff_tracer_start,
643 .stop = irqsoff_tracer_stop,
644 .print_max = true,
645 .print_header = irqsoff_print_header,
646 .print_line = irqsoff_print_line,
647 .flag_changed = irqsoff_flag_changed,
648 #ifdef CONFIG_FTRACE_SELFTEST
649 .selftest = trace_selftest_startup_irqsoff,
650 #endif
651 .open = irqsoff_trace_open,
652 .close = irqsoff_trace_close,
653 .allow_instances = true,
654 .use_max_tr = true,
656 #endif /* CONFIG_IRQSOFF_TRACER */
658 #ifdef CONFIG_PREEMPT_TRACER
659 void tracer_preempt_on(unsigned long a0, unsigned long a1)
661 if (preempt_trace(preempt_count()) && !irq_trace())
662 stop_critical_timing(a0, a1);
665 void tracer_preempt_off(unsigned long a0, unsigned long a1)
667 if (preempt_trace(preempt_count()) && !irq_trace())
668 start_critical_timing(a0, a1);
671 static int preemptoff_tracer_init(struct trace_array *tr)
673 trace_type = TRACER_PREEMPT_OFF;
675 return __irqsoff_tracer_init(tr);
678 static void preemptoff_tracer_reset(struct trace_array *tr)
680 __irqsoff_tracer_reset(tr);
683 static struct tracer preemptoff_tracer __read_mostly =
685 .name = "preemptoff",
686 .init = preemptoff_tracer_init,
687 .reset = preemptoff_tracer_reset,
688 .start = irqsoff_tracer_start,
689 .stop = irqsoff_tracer_stop,
690 .print_max = true,
691 .print_header = irqsoff_print_header,
692 .print_line = irqsoff_print_line,
693 .flag_changed = irqsoff_flag_changed,
694 #ifdef CONFIG_FTRACE_SELFTEST
695 .selftest = trace_selftest_startup_preemptoff,
696 #endif
697 .open = irqsoff_trace_open,
698 .close = irqsoff_trace_close,
699 .allow_instances = true,
700 .use_max_tr = true,
702 #endif /* CONFIG_PREEMPT_TRACER */
704 #if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
706 static int preemptirqsoff_tracer_init(struct trace_array *tr)
708 trace_type = TRACER_IRQS_OFF | TRACER_PREEMPT_OFF;
710 return __irqsoff_tracer_init(tr);
713 static void preemptirqsoff_tracer_reset(struct trace_array *tr)
715 __irqsoff_tracer_reset(tr);
718 static struct tracer preemptirqsoff_tracer __read_mostly =
720 .name = "preemptirqsoff",
721 .init = preemptirqsoff_tracer_init,
722 .reset = preemptirqsoff_tracer_reset,
723 .start = irqsoff_tracer_start,
724 .stop = irqsoff_tracer_stop,
725 .print_max = true,
726 .print_header = irqsoff_print_header,
727 .print_line = irqsoff_print_line,
728 .flag_changed = irqsoff_flag_changed,
729 #ifdef CONFIG_FTRACE_SELFTEST
730 .selftest = trace_selftest_startup_preemptirqsoff,
731 #endif
732 .open = irqsoff_trace_open,
733 .close = irqsoff_trace_close,
734 .allow_instances = true,
735 .use_max_tr = true,
737 #endif
739 __init static int init_irqsoff_tracer(void)
741 #ifdef CONFIG_IRQSOFF_TRACER
742 register_tracer(&irqsoff_tracer);
743 #endif
744 #ifdef CONFIG_PREEMPT_TRACER
745 register_tracer(&preemptoff_tracer);
746 #endif
747 #if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
748 register_tracer(&preemptirqsoff_tracer);
749 #endif
751 return 0;
753 core_initcall(init_irqsoff_tracer);
754 #endif /* IRQSOFF_TRACER || PREEMPTOFF_TRACER */