2 * @file nmi_timer_int.c
4 * @remark Copyright 2011 Advanced Micro Devices, Inc.
6 * @author Robert Richter <robert.richter@amd.com>
9 #include <linux/init.h>
10 #include <linux/smp.h>
11 #include <linux/errno.h>
12 #include <linux/oprofile.h>
13 #include <linux/perf_event.h>
15 #ifdef CONFIG_OPROFILE_NMI_TIMER
17 static DEFINE_PER_CPU(struct perf_event
*, nmi_timer_events
);
18 static int ctr_running
;
20 static struct perf_event_attr nmi_timer_attr
= {
21 .type
= PERF_TYPE_HARDWARE
,
22 .config
= PERF_COUNT_HW_CPU_CYCLES
,
23 .size
= sizeof(struct perf_event_attr
),
28 static void nmi_timer_callback(struct perf_event
*event
,
29 struct perf_sample_data
*data
,
32 event
->hw
.interrupts
= 0; /* don't throttle interrupts */
33 oprofile_add_sample(regs
, 0);
36 static int nmi_timer_start_cpu(int cpu
)
38 struct perf_event
*event
= per_cpu(nmi_timer_events
, cpu
);
41 event
= perf_event_create_kernel_counter(&nmi_timer_attr
, cpu
, NULL
,
42 nmi_timer_callback
, NULL
);
44 return PTR_ERR(event
);
45 per_cpu(nmi_timer_events
, cpu
) = event
;
48 if (event
&& ctr_running
)
49 perf_event_enable(event
);
54 static void nmi_timer_stop_cpu(int cpu
)
56 struct perf_event
*event
= per_cpu(nmi_timer_events
, cpu
);
58 if (event
&& ctr_running
)
59 perf_event_disable(event
);
62 static int nmi_timer_cpu_notifier(struct notifier_block
*b
, unsigned long action
,
65 int cpu
= (unsigned long)data
;
69 nmi_timer_start_cpu(cpu
);
71 case CPU_DOWN_PREPARE
:
72 nmi_timer_stop_cpu(cpu
);
78 static struct notifier_block nmi_timer_cpu_nb
= {
79 .notifier_call
= nmi_timer_cpu_notifier
82 static int nmi_timer_start(void)
88 for_each_online_cpu(cpu
)
89 nmi_timer_start_cpu(cpu
);
95 static void nmi_timer_stop(void)
100 for_each_online_cpu(cpu
)
101 nmi_timer_stop_cpu(cpu
);
106 static void nmi_timer_shutdown(void)
108 struct perf_event
*event
;
112 unregister_cpu_notifier(&nmi_timer_cpu_nb
);
113 for_each_possible_cpu(cpu
) {
114 event
= per_cpu(nmi_timer_events
, cpu
);
117 perf_event_disable(event
);
118 per_cpu(nmi_timer_events
, cpu
) = NULL
;
119 perf_event_release_kernel(event
);
125 static int nmi_timer_setup(void)
130 /* clock cycles per tick: */
131 period
= (u64
)cpu_khz
* 1000;
133 nmi_timer_attr
.sample_period
= period
;
136 err
= register_cpu_notifier(&nmi_timer_cpu_nb
);
139 /* can't attach events to offline cpus: */
140 for_each_online_cpu(cpu
) {
141 err
= nmi_timer_start_cpu(cpu
);
146 nmi_timer_shutdown();
152 int __init
op_nmi_timer_init(struct oprofile_operations
*ops
)
156 err
= nmi_timer_setup();
159 nmi_timer_shutdown(); /* only check, don't alloc */
161 ops
->create_files
= NULL
;
162 ops
->setup
= nmi_timer_setup
;
163 ops
->shutdown
= nmi_timer_shutdown
;
164 ops
->start
= nmi_timer_start
;
165 ops
->stop
= nmi_timer_stop
;
166 ops
->cpu_type
= "timer";
168 printk(KERN_INFO
"oprofile: using NMI timer interrupt.\n");