hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/**
 * @file init.c
 *
 * @remark Copyright 2002 OProfile authors
 * @remark Read the file COPYING
 *
 * @author John Levon <levon@movementarian.org>
 */
 
#include <linux/kernel.h>
#include <linux/oprofile.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/param.h>    /* for HZ */
 
#ifdef CONFIG_SPARC64
#include <linux/notifier.h>
#include <linux/rcupdate.h>
#include <linux/kdebug.h>
#include <asm/nmi.h>
 
static int profile_timer_exceptions_notify(struct notifier_block *self,
                      unsigned long val, void *data)
{
   struct die_args *args = data;
   int ret = NOTIFY_DONE;
 
   switch (val) {
   case DIE_NMI:
       oprofile_add_sample(args->regs, 0);
       ret = NOTIFY_STOP;
       break;
   default:
       break;
   }
   return ret;
}
 
static struct notifier_block profile_timer_exceptions_nb = {
   .notifier_call    = profile_timer_exceptions_notify,
};
 
static int timer_start(void)
{
   if (register_die_notifier(&profile_timer_exceptions_nb))
       return 1;
   nmi_adjust_hz(HZ);
   return 0;
}
 
 
static void timer_stop(void)
{
   nmi_adjust_hz(1);
   unregister_die_notifier(&profile_timer_exceptions_nb);
   synchronize_rcu();  /* Allow already-started NMIs to complete. */
}
 
static int op_nmi_timer_init(struct oprofile_operations *ops)
{
   if (atomic_read(&nmi_active) <= 0)
       return -ENODEV;
 
   ops->start = timer_start;
   ops->stop = timer_stop;
   ops->cpu_type = "timer";
   printk(KERN_INFO "oprofile: Using perfctr NMI timer interrupt.\n");
   return 0;
}
#endif
 
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
   int ret = -ENODEV;
 
#ifdef CONFIG_SPARC64
   ret = op_nmi_timer_init(ops);
   if (!ret)
       return ret;
#endif
 
   return ret;
}
 
void oprofile_arch_exit(void)
{
}