1 // SPDX-License-Identifier: GPL-2.0
3 * @file nmi_timer_int.c
5 * @remark Copyright 2011 Advanced Micro Devices, Inc.
7 * @author Robert Richter <robert.richter@amd.com>
10 #include <linux/init.h>
11 #include <linux/smp.h>
12 #include <linux/errno.h>
13 #include <linux/oprofile.h>
14 #include <linux/perf_event.h>
16 #ifdef CONFIG_OPROFILE_NMI_TIMER
18 static DEFINE_PER_CPU(struct perf_event
*, nmi_timer_events
);
19 static int ctr_running
;
21 static struct perf_event_attr nmi_timer_attr
= {
22 .type
= PERF_TYPE_HARDWARE
,
23 .config
= PERF_COUNT_HW_CPU_CYCLES
,
24 .size
= sizeof(struct perf_event_attr
),
29 static void nmi_timer_callback(struct perf_event
*event
,
30 struct perf_sample_data
*data
,
33 event
->hw
.interrupts
= 0; /* don't throttle interrupts */
34 oprofile_add_sample(regs
, 0);
37 static int nmi_timer_start_cpu(int cpu
)
39 struct perf_event
*event
= per_cpu(nmi_timer_events
, cpu
);
42 event
= perf_event_create_kernel_counter(&nmi_timer_attr
, cpu
, NULL
,
43 nmi_timer_callback
, NULL
);
45 return PTR_ERR(event
);
46 per_cpu(nmi_timer_events
, cpu
) = event
;
49 if (event
&& ctr_running
)
50 perf_event_enable(event
);
55 static void nmi_timer_stop_cpu(int cpu
)
57 struct perf_event
*event
= per_cpu(nmi_timer_events
, cpu
);
59 if (event
&& ctr_running
)
60 perf_event_disable(event
);
63 static int nmi_timer_cpu_online(unsigned int cpu
)
65 nmi_timer_start_cpu(cpu
);
68 static int nmi_timer_cpu_predown(unsigned int cpu
)
70 nmi_timer_stop_cpu(cpu
);
74 static int nmi_timer_start(void)
80 for_each_online_cpu(cpu
)
81 nmi_timer_start_cpu(cpu
);
87 static void nmi_timer_stop(void)
92 for_each_online_cpu(cpu
)
93 nmi_timer_stop_cpu(cpu
);
98 static enum cpuhp_state hp_online
;
100 static void nmi_timer_shutdown(void)
102 struct perf_event
*event
;
105 cpuhp_remove_state(hp_online
);
106 for_each_possible_cpu(cpu
) {
107 event
= per_cpu(nmi_timer_events
, cpu
);
110 perf_event_disable(event
);
111 per_cpu(nmi_timer_events
, cpu
) = NULL
;
112 perf_event_release_kernel(event
);
116 static int nmi_timer_setup(void)
121 /* clock cycles per tick: */
122 period
= (u64
)cpu_khz
* 1000;
124 nmi_timer_attr
.sample_period
= period
;
126 err
= cpuhp_setup_state(CPUHP_AP_ONLINE_DYN
, "oprofile/nmi:online",
127 nmi_timer_cpu_online
, nmi_timer_cpu_predown
);
129 nmi_timer_shutdown();
136 int __init
op_nmi_timer_init(struct oprofile_operations
*ops
)
140 err
= nmi_timer_setup();
143 nmi_timer_shutdown(); /* only check, don't alloc */
145 ops
->create_files
= NULL
;
146 ops
->setup
= nmi_timer_setup
;
147 ops
->shutdown
= nmi_timer_shutdown
;
148 ops
->start
= nmi_timer_start
;
149 ops
->stop
= nmi_timer_stop
;
150 ops
->cpu_type
= "timer";
152 printk(KERN_INFO
"oprofile: using NMI timer interrupt.\n");