x86/xen: resume timer irqs early
[linux/fpc-iii.git] / arch / s390 / oprofile / init.c
blob04e1b6a8536297cc61f2bacc0187c0b6a7089573
1 /*
2 * S390 Version
3 * Copyright IBM Corp. 2002, 2011
4 * Author(s): Thomas Spatzier (tspat@de.ibm.com)
5 * Author(s): Mahesh Salgaonkar (mahesh@linux.vnet.ibm.com)
6 * Author(s): Heinz Graalfs (graalfs@linux.vnet.ibm.com)
7 * Author(s): Andreas Krebbel (krebbel@linux.vnet.ibm.com)
9 * @remark Copyright 2002-2011 OProfile authors
12 #include <linux/oprofile.h>
13 #include <linux/init.h>
14 #include <linux/errno.h>
15 #include <linux/fs.h>
16 #include <linux/module.h>
17 #include <asm/processor.h>
19 #include "../../../drivers/oprofile/oprof.h"
21 extern void s390_backtrace(struct pt_regs * const regs, unsigned int depth);
23 #ifdef CONFIG_64BIT
25 #include "hwsampler.h"
26 #include "op_counter.h"
28 #define DEFAULT_INTERVAL 4127518
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_enabled;
41 static int hwsampler_running; /* start_mutex must be held to change */
42 static int hwsampler_available;
44 static struct oprofile_operations timer_ops;
46 struct op_counter_config counter_config;
48 enum __force_cpu_type {
49 reserved = 0, /* do not force */
50 timer,
52 static int force_cpu_type;
54 static int set_cpu_type(const char *str, struct kernel_param *kp)
56 if (!strcmp(str, "timer")) {
57 force_cpu_type = timer;
58 printk(KERN_INFO "oprofile: forcing timer to be returned "
59 "as cpu type\n");
60 } else {
61 force_cpu_type = 0;
64 return 0;
66 module_param_call(cpu_type, set_cpu_type, NULL, NULL, 0);
67 MODULE_PARM_DESC(cpu_type, "Force legacy basic mode sampling"
68 "(report cpu_type \"timer\"");
70 static int oprofile_hwsampler_start(void)
72 int retval;
74 hwsampler_running = hwsampler_enabled;
76 if (!hwsampler_running)
77 return timer_ops.start();
79 retval = hwsampler_allocate(oprofile_sdbt_blocks, oprofile_sdb_blocks);
80 if (retval)
81 return retval;
83 retval = hwsampler_start_all(oprofile_hw_interval);
84 if (retval)
85 hwsampler_deallocate();
87 return retval;
90 static void oprofile_hwsampler_stop(void)
92 if (!hwsampler_running) {
93 timer_ops.stop();
94 return;
97 hwsampler_stop_all();
98 hwsampler_deallocate();
99 return;
103 * File ops used for:
104 * /dev/oprofile/0/enabled
105 * /dev/oprofile/hwsampling/hwsampler (cpu_type = timer)
108 static ssize_t hwsampler_read(struct file *file, char __user *buf,
109 size_t count, loff_t *offset)
111 return oprofilefs_ulong_to_user(hwsampler_enabled, buf, count, offset);
114 static ssize_t hwsampler_write(struct file *file, char const __user *buf,
115 size_t count, loff_t *offset)
117 unsigned long val;
118 int retval;
120 if (*offset)
121 return -EINVAL;
123 retval = oprofilefs_ulong_from_user(&val, buf, count);
124 if (retval <= 0)
125 return retval;
127 if (val != 0 && val != 1)
128 return -EINVAL;
130 if (oprofile_started)
132 * save to do without locking as we set
133 * hwsampler_running in start() when start_mutex is
134 * held
136 return -EBUSY;
138 hwsampler_enabled = val;
140 return count;
143 static const struct file_operations hwsampler_fops = {
144 .read = hwsampler_read,
145 .write = hwsampler_write,
149 * File ops used for:
150 * /dev/oprofile/0/count
151 * /dev/oprofile/hwsampling/hw_interval (cpu_type = timer)
153 * Make sure that the value is within the hardware range.
156 static ssize_t hw_interval_read(struct file *file, char __user *buf,
157 size_t count, loff_t *offset)
159 return oprofilefs_ulong_to_user(oprofile_hw_interval, buf,
160 count, offset);
163 static ssize_t hw_interval_write(struct file *file, char const __user *buf,
164 size_t count, loff_t *offset)
166 unsigned long val;
167 int retval;
169 if (*offset)
170 return -EINVAL;
171 retval = oprofilefs_ulong_from_user(&val, buf, count);
172 if (retval <= 0)
173 return retval;
174 if (val < oprofile_min_interval)
175 oprofile_hw_interval = oprofile_min_interval;
176 else if (val > oprofile_max_interval)
177 oprofile_hw_interval = oprofile_max_interval;
178 else
179 oprofile_hw_interval = val;
181 return count;
184 static const struct file_operations hw_interval_fops = {
185 .read = hw_interval_read,
186 .write = hw_interval_write,
190 * File ops used for:
191 * /dev/oprofile/0/event
192 * Only a single event with number 0 is supported with this counter.
194 * /dev/oprofile/0/unit_mask
195 * This is a dummy file needed by the user space tools.
196 * No value other than 0 is accepted or returned.
199 static ssize_t hwsampler_zero_read(struct file *file, char __user *buf,
200 size_t count, loff_t *offset)
202 return oprofilefs_ulong_to_user(0, buf, count, offset);
205 static ssize_t hwsampler_zero_write(struct file *file, char const __user *buf,
206 size_t count, loff_t *offset)
208 unsigned long val;
209 int retval;
211 if (*offset)
212 return -EINVAL;
214 retval = oprofilefs_ulong_from_user(&val, buf, count);
215 if (retval <= 0)
216 return retval;
217 if (val != 0)
218 return -EINVAL;
219 return count;
222 static const struct file_operations zero_fops = {
223 .read = hwsampler_zero_read,
224 .write = hwsampler_zero_write,
227 /* /dev/oprofile/0/kernel file ops. */
229 static ssize_t hwsampler_kernel_read(struct file *file, char __user *buf,
230 size_t count, loff_t *offset)
232 return oprofilefs_ulong_to_user(counter_config.kernel,
233 buf, count, offset);
236 static ssize_t hwsampler_kernel_write(struct file *file, char const __user *buf,
237 size_t count, loff_t *offset)
239 unsigned long val;
240 int retval;
242 if (*offset)
243 return -EINVAL;
245 retval = oprofilefs_ulong_from_user(&val, buf, count);
246 if (retval <= 0)
247 return retval;
249 if (val != 0 && val != 1)
250 return -EINVAL;
252 counter_config.kernel = val;
254 return count;
257 static const struct file_operations kernel_fops = {
258 .read = hwsampler_kernel_read,
259 .write = hwsampler_kernel_write,
262 /* /dev/oprofile/0/user file ops. */
264 static ssize_t hwsampler_user_read(struct file *file, char __user *buf,
265 size_t count, loff_t *offset)
267 return oprofilefs_ulong_to_user(counter_config.user,
268 buf, count, offset);
271 static ssize_t hwsampler_user_write(struct file *file, char const __user *buf,
272 size_t count, loff_t *offset)
274 unsigned long val;
275 int retval;
277 if (*offset)
278 return -EINVAL;
280 retval = oprofilefs_ulong_from_user(&val, buf, count);
281 if (retval <= 0)
282 return retval;
284 if (val != 0 && val != 1)
285 return -EINVAL;
287 counter_config.user = val;
289 return count;
292 static const struct file_operations user_fops = {
293 .read = hwsampler_user_read,
294 .write = hwsampler_user_write,
299 * File ops used for: /dev/oprofile/timer/enabled
300 * The value always has to be the inverted value of hwsampler_enabled. So
301 * no separate variable is created. That way we do not need locking.
304 static ssize_t timer_enabled_read(struct file *file, char __user *buf,
305 size_t count, loff_t *offset)
307 return oprofilefs_ulong_to_user(!hwsampler_enabled, buf, count, offset);
310 static ssize_t timer_enabled_write(struct file *file, char const __user *buf,
311 size_t count, loff_t *offset)
313 unsigned long val;
314 int retval;
316 if (*offset)
317 return -EINVAL;
319 retval = oprofilefs_ulong_from_user(&val, buf, count);
320 if (retval <= 0)
321 return retval;
323 if (val != 0 && val != 1)
324 return -EINVAL;
326 /* Timer cannot be disabled without having hardware sampling. */
327 if (val == 0 && !hwsampler_available)
328 return -EINVAL;
330 if (oprofile_started)
332 * save to do without locking as we set
333 * hwsampler_running in start() when start_mutex is
334 * held
336 return -EBUSY;
338 hwsampler_enabled = !val;
340 return count;
343 static const struct file_operations timer_enabled_fops = {
344 .read = timer_enabled_read,
345 .write = timer_enabled_write,
349 static int oprofile_create_hwsampling_files(struct dentry *root)
351 struct dentry *dir;
353 dir = oprofilefs_mkdir(root, "timer");
354 if (!dir)
355 return -EINVAL;
357 oprofilefs_create_file(dir, "enabled", &timer_enabled_fops);
359 if (!hwsampler_available)
360 return 0;
362 /* reinitialize default values */
363 hwsampler_enabled = 1;
364 counter_config.kernel = 1;
365 counter_config.user = 1;
367 if (!force_cpu_type) {
369 * Create the counter file system. A single virtual
370 * counter is created which can be used to
371 * enable/disable hardware sampling dynamically from
372 * user space. The user space will configure a single
373 * counter with a single event. The value of 'event'
374 * and 'unit_mask' are not evaluated by the kernel code
375 * and can only be set to 0.
378 dir = oprofilefs_mkdir(root, "0");
379 if (!dir)
380 return -EINVAL;
382 oprofilefs_create_file(dir, "enabled", &hwsampler_fops);
383 oprofilefs_create_file(dir, "event", &zero_fops);
384 oprofilefs_create_file(dir, "count", &hw_interval_fops);
385 oprofilefs_create_file(dir, "unit_mask", &zero_fops);
386 oprofilefs_create_file(dir, "kernel", &kernel_fops);
387 oprofilefs_create_file(dir, "user", &user_fops);
388 oprofilefs_create_ulong(dir, "hw_sdbt_blocks",
389 &oprofile_sdbt_blocks);
391 } else {
393 * Hardware sampling can be used but the cpu_type is
394 * forced to timer in order to deal with legacy user
395 * space tools. The /dev/oprofile/hwsampling fs is
396 * provided in that case.
398 dir = oprofilefs_mkdir(root, "hwsampling");
399 if (!dir)
400 return -EINVAL;
402 oprofilefs_create_file(dir, "hwsampler",
403 &hwsampler_fops);
404 oprofilefs_create_file(dir, "hw_interval",
405 &hw_interval_fops);
406 oprofilefs_create_ro_ulong(dir, "hw_min_interval",
407 &oprofile_min_interval);
408 oprofilefs_create_ro_ulong(dir, "hw_max_interval",
409 &oprofile_max_interval);
410 oprofilefs_create_ulong(dir, "hw_sdbt_blocks",
411 &oprofile_sdbt_blocks);
413 return 0;
416 static int oprofile_hwsampler_init(struct oprofile_operations *ops)
419 * Initialize the timer mode infrastructure as well in order
420 * to be able to switch back dynamically. oprofile_timer_init
421 * is not supposed to fail.
423 if (oprofile_timer_init(ops))
424 BUG();
426 memcpy(&timer_ops, ops, sizeof(timer_ops));
427 ops->create_files = oprofile_create_hwsampling_files;
430 * If the user space tools do not support newer cpu types,
431 * the force_cpu_type module parameter
432 * can be used to always return \"timer\" as cpu type.
434 if (force_cpu_type != timer) {
435 struct cpuid id;
437 get_cpu_id (&id);
439 switch (id.machine) {
440 case 0x2097: case 0x2098: ops->cpu_type = "s390/z10"; break;
441 case 0x2817: case 0x2818: ops->cpu_type = "s390/z196"; break;
442 case 0x2827: case 0x2828: ops->cpu_type = "s390/zEC12"; break;
443 default: return -ENODEV;
447 if (hwsampler_setup())
448 return -ENODEV;
451 * Query the range for the sampling interval from the
452 * hardware.
454 oprofile_min_interval = hwsampler_query_min_interval();
455 if (oprofile_min_interval == 0)
456 return -ENODEV;
457 oprofile_max_interval = hwsampler_query_max_interval();
458 if (oprofile_max_interval == 0)
459 return -ENODEV;
461 /* The initial value should be sane */
462 if (oprofile_hw_interval < oprofile_min_interval)
463 oprofile_hw_interval = oprofile_min_interval;
464 if (oprofile_hw_interval > oprofile_max_interval)
465 oprofile_hw_interval = oprofile_max_interval;
467 printk(KERN_INFO "oprofile: System z hardware sampling "
468 "facility found.\n");
470 ops->start = oprofile_hwsampler_start;
471 ops->stop = oprofile_hwsampler_stop;
473 return 0;
476 static void oprofile_hwsampler_exit(void)
478 hwsampler_shutdown();
481 #endif /* CONFIG_64BIT */
483 int __init oprofile_arch_init(struct oprofile_operations *ops)
485 ops->backtrace = s390_backtrace;
487 #ifdef CONFIG_64BIT
490 * -ENODEV is not reported to the caller. The module itself
491 * will use the timer mode sampling as fallback and this is
492 * always available.
494 hwsampler_available = oprofile_hwsampler_init(ops) == 0;
496 return 0;
497 #else
498 return -ENODEV;
499 #endif
502 void oprofile_arch_exit(void)
504 #ifdef CONFIG_64BIT
505 oprofile_hwsampler_exit();
506 #endif