blob: 9aa571169bcc5ea1f9847ab8bea143ccadfc6f14 [file] [log] [blame]
Mikael Starvik21783c92005-07-27 11:44:40 -07001#include <linux/init.h>
2#include <linux/errno.h>
3#include <linux/kernel.h>
4#include <linux/proc_fs.h>
5#include <linux/types.h>
6#include <asm/ptrace.h>
7#include <asm/uaccess.h>
8
9#define SAMPLE_BUFFER_SIZE 8192
10
11static char* sample_buffer;
12static char* sample_buffer_pos;
13static int prof_running = 0;
14
15void
16cris_profile_sample(struct pt_regs* regs)
17{
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070018 if (!prof_running)
19 return;
20
21 if (user_mode(regs))
22 *(unsigned int*)sample_buffer_pos = current->pid;
23 else
24 *(unsigned int*)sample_buffer_pos = 0;
25
26 *(unsigned int*)(sample_buffer_pos + 4) = instruction_pointer(regs);
27 sample_buffer_pos += 8;
28
29 if (sample_buffer_pos == sample_buffer + SAMPLE_BUFFER_SIZE)
30 sample_buffer_pos = sample_buffer;
Mikael Starvik21783c92005-07-27 11:44:40 -070031}
32
33static ssize_t
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070034read_cris_profile(struct file *file, char __user *buf,
35 size_t count, loff_t *ppos)
Mikael Starvik21783c92005-07-27 11:44:40 -070036{
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070037 unsigned long p = *ppos;
Akinobu Mitaed62f772008-07-23 21:28:46 -070038 ssize_t ret;
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070039
Akinobu Mitaed62f772008-07-23 21:28:46 -070040 ret = simple_read_from_buffer(buf, count, ppos, sample_buffer,
41 SAMPLE_BUFFER_SIZE);
42 if (ret < 0)
43 return ret;
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070044
Akinobu Mitaed62f772008-07-23 21:28:46 -070045 memset(sample_buffer + p, 0, ret);
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070046
Akinobu Mitaed62f772008-07-23 21:28:46 -070047 return ret;
Mikael Starvik21783c92005-07-27 11:44:40 -070048}
49
50static ssize_t
51write_cris_profile(struct file *file, const char __user *buf,
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070052 size_t count, loff_t *ppos)
Mikael Starvik21783c92005-07-27 11:44:40 -070053{
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070054 sample_buffer_pos = sample_buffer;
55 memset(sample_buffer, 0, SAMPLE_BUFFER_SIZE);
Mikael Starvik21783c92005-07-27 11:44:40 -070056}
57
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -080058static const struct file_operations cris_proc_profile_operations = {
Mikael Starvik21783c92005-07-27 11:44:40 -070059 .read = read_cris_profile,
60 .write = write_cris_profile,
61};
62
63static int
64__init init_cris_profile(void)
65{
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070066 struct proc_dir_entry *entry;
67
68 sample_buffer = kmalloc(SAMPLE_BUFFER_SIZE, GFP_KERNEL);
69 if (!sample_buffer) {
70 return -ENOMEM;
71 }
72
73 sample_buffer_pos = sample_buffer;
74
Denis V. Lunevc2938192008-04-29 01:02:23 -070075 entry = proc_create("system_profile", S_IWUSR | S_IRUGO, NULL,
76 &cris_proc_profile_operations);
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070077 if (entry) {
Cyrill Gorcunov542401d2007-05-06 14:50:56 -070078 entry->size = SAMPLE_BUFFER_SIZE;
79 }
80 prof_running = 1;
81
82 return 0;
Mikael Starvik21783c92005-07-27 11:44:40 -070083}
84
85__initcall(init_cris_profile);