2 * arch/s390/oprofile/init.c
5 * Copyright (C) 2003 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Thomas Spatzier (tspat@de.ibm.com)
7 * Author(s): Mahesh Salgaonkar (mahesh@linux.vnet.ibm.com)
8 * Author(s): Heinz Graalfs (graalfs@linux.vnet.ibm.com)
10 * @remark Copyright 2002-2011 OProfile authors
13 #include <linux/oprofile.h>
14 #include <linux/init.h>
15 #include <linux/errno.h>
16 #include <linux/oprofile.h>
17 #include <linux/errno.h>
20 #include "../../../drivers/oprofile/oprof.h"
22 extern void s390_backtrace(struct pt_regs
* const regs
, unsigned int depth
);
26 #include "hwsampler.h"
28 #define DEFAULT_INTERVAL 4096
30 #define DEFAULT_SDBT_BLOCKS 1
31 #define DEFAULT_SDB_BLOCKS 511
33 static unsigned long oprofile_hw_interval
= DEFAULT_INTERVAL
;
34 static unsigned long oprofile_min_interval
;
35 static unsigned long oprofile_max_interval
;
37 static unsigned long oprofile_sdbt_blocks
= DEFAULT_SDBT_BLOCKS
;
38 static unsigned long oprofile_sdb_blocks
= DEFAULT_SDB_BLOCKS
;
40 static int hwsampler_file
;
41 static int hwsampler_running
; /* start_mutex must be held to change */
43 static struct oprofile_operations timer_ops
;
45 static int oprofile_hwsampler_start(void)
49 hwsampler_running
= hwsampler_file
;
51 if (!hwsampler_running
)
52 return timer_ops
.start();
54 retval
= hwsampler_allocate(oprofile_sdbt_blocks
, oprofile_sdb_blocks
);
58 retval
= hwsampler_start_all(oprofile_hw_interval
);
60 hwsampler_deallocate();
65 static void oprofile_hwsampler_stop(void)
67 if (!hwsampler_running
) {
73 hwsampler_deallocate();
77 static ssize_t
hwsampler_read(struct file
*file
, char __user
*buf
,
78 size_t count
, loff_t
*offset
)
80 return oprofilefs_ulong_to_user(hwsampler_file
, buf
, count
, offset
);
83 static ssize_t
hwsampler_write(struct file
*file
, char const __user
*buf
,
84 size_t count
, loff_t
*offset
)
92 retval
= oprofilefs_ulong_from_user(&val
, buf
, count
);
98 * save to do without locking as we set
99 * hwsampler_running in start() when start_mutex is
104 hwsampler_file
= val
;
109 static const struct file_operations hwsampler_fops
= {
110 .read
= hwsampler_read
,
111 .write
= hwsampler_write
,
114 static int oprofile_create_hwsampling_files(struct super_block
*sb
,
117 struct dentry
*hw_dir
;
119 /* reinitialize default values */
122 hw_dir
= oprofilefs_mkdir(sb
, root
, "hwsampling");
126 oprofilefs_create_file(sb
, hw_dir
, "hwsampler", &hwsampler_fops
);
127 oprofilefs_create_ulong(sb
, hw_dir
, "hw_interval",
128 &oprofile_hw_interval
);
129 oprofilefs_create_ro_ulong(sb
, hw_dir
, "hw_min_interval",
130 &oprofile_min_interval
);
131 oprofilefs_create_ro_ulong(sb
, hw_dir
, "hw_max_interval",
132 &oprofile_max_interval
);
133 oprofilefs_create_ulong(sb
, hw_dir
, "hw_sdbt_blocks",
134 &oprofile_sdbt_blocks
);
139 static int oprofile_hwsampler_init(struct oprofile_operations
*ops
)
141 if (hwsampler_setup())
145 * create hwsampler files only if hwsampler_setup() succeeds.
147 oprofile_min_interval
= hwsampler_query_min_interval();
148 if (oprofile_min_interval
< 0) {
149 oprofile_min_interval
= 0;
152 oprofile_max_interval
= hwsampler_query_max_interval();
153 if (oprofile_max_interval
< 0) {
154 oprofile_max_interval
= 0;
158 if (oprofile_timer_init(ops
))
161 printk(KERN_INFO
"oprofile: using hardware sampling\n");
163 memcpy(&timer_ops
, ops
, sizeof(timer_ops
));
165 ops
->start
= oprofile_hwsampler_start
;
166 ops
->stop
= oprofile_hwsampler_stop
;
167 ops
->create_files
= oprofile_create_hwsampling_files
;
172 static void oprofile_hwsampler_exit(void)
174 oprofile_timer_exit();
175 hwsampler_shutdown();
178 #endif /* CONFIG_64BIT */
180 int __init
oprofile_arch_init(struct oprofile_operations
*ops
)
182 ops
->backtrace
= s390_backtrace
;
185 return oprofile_hwsampler_init(ops
);
191 void oprofile_arch_exit(void)
194 oprofile_hwsampler_exit();