2 * Base infrastructure for Linux-z/VM Monitor Stream, Stage 1.
3 * Exports appldata_register_ops() and appldata_unregister_ops() for the
4 * data gathering modules.
6 * Copyright IBM Corp. 2003, 2009
8 * Author: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11 #define KMSG_COMPONENT "appldata"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/module.h>
15 #include <linux/sched/stat.h>
16 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/errno.h>
19 #include <linux/interrupt.h>
20 #include <linux/proc_fs.h>
22 #include <linux/swap.h>
23 #include <linux/pagemap.h>
24 #include <linux/sysctl.h>
25 #include <linux/notifier.h>
26 #include <linux/cpu.h>
27 #include <linux/workqueue.h>
28 #include <linux/suspend.h>
29 #include <linux/platform_device.h>
30 #include <asm/appldata.h>
31 #include <asm/vtimer.h>
32 #include <linux/uaccess.h>
39 #define APPLDATA_CPU_INTERVAL 10000 /* default (CPU) time for
43 #define TOD_MICRO 0x01000 /* nr. of TOD clock units
46 static struct platform_device
*appldata_pdev
;
49 * /proc entries (sysctl)
51 static const char appldata_proc_name
[APPLDATA_PROC_NAME_LENGTH
] = "appldata";
52 static int appldata_timer_handler(struct ctl_table
*ctl
, int write
,
53 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
54 static int appldata_interval_handler(struct ctl_table
*ctl
, int write
,
56 size_t *lenp
, loff_t
*ppos
);
58 static struct ctl_table_header
*appldata_sysctl_header
;
59 static struct ctl_table appldata_table
[] = {
62 .mode
= S_IRUGO
| S_IWUSR
,
63 .proc_handler
= appldata_timer_handler
,
66 .procname
= "interval",
67 .mode
= S_IRUGO
| S_IWUSR
,
68 .proc_handler
= appldata_interval_handler
,
73 static struct ctl_table appldata_dir_table
[] = {
75 .procname
= appldata_proc_name
,
77 .mode
= S_IRUGO
| S_IXUGO
,
78 .child
= appldata_table
,
86 static struct vtimer_list appldata_timer
;
88 static DEFINE_SPINLOCK(appldata_timer_lock
);
89 static int appldata_interval
= APPLDATA_CPU_INTERVAL
;
90 static int appldata_timer_active
;
91 static int appldata_timer_suspended
= 0;
96 static struct workqueue_struct
*appldata_wq
;
97 static void appldata_work_fn(struct work_struct
*work
);
98 static DECLARE_WORK(appldata_work
, appldata_work_fn
);
104 static DEFINE_MUTEX(appldata_ops_mutex
);
105 static LIST_HEAD(appldata_ops_list
);
108 /*************************** timer, work, DIAG *******************************/
110 * appldata_timer_function()
112 * schedule work and reschedule timer
114 static void appldata_timer_function(unsigned long data
)
116 queue_work(appldata_wq
, (struct work_struct
*) data
);
122 * call data gathering function for each (active) module
124 static void appldata_work_fn(struct work_struct
*work
)
126 struct list_head
*lh
;
127 struct appldata_ops
*ops
;
129 mutex_lock(&appldata_ops_mutex
);
130 list_for_each(lh
, &appldata_ops_list
) {
131 ops
= list_entry(lh
, struct appldata_ops
, list
);
132 if (ops
->active
== 1) {
133 ops
->callback(ops
->data
);
136 mutex_unlock(&appldata_ops_mutex
);
142 * prepare parameter list, issue DIAG 0xDC
144 int appldata_diag(char record_nr
, u16 function
, unsigned long buffer
,
145 u16 length
, char *mod_lvl
)
147 struct appldata_product_id id
= {
148 .prod_nr
= {0xD3, 0xC9, 0xD5, 0xE4,
149 0xE7, 0xD2, 0xD9}, /* "LINUXKR" */
150 .prod_fn
= 0xD5D3, /* "NL" */
151 .version_nr
= 0xF2F6, /* "26" */
152 .release_nr
= 0xF0F1, /* "01" */
155 id
.record_nr
= record_nr
;
156 id
.mod_lvl
= (mod_lvl
[0]) << 8 | mod_lvl
[1];
157 return appldata_asm(&id
, function
, (void *) buffer
, length
);
159 /************************ timer, work, DIAG <END> ****************************/
162 /****************************** /proc stuff **********************************/
164 #define APPLDATA_ADD_TIMER 0
165 #define APPLDATA_DEL_TIMER 1
166 #define APPLDATA_MOD_TIMER 2
169 * __appldata_vtimer_setup()
171 * Add, delete or modify virtual timers on all online cpus.
172 * The caller needs to get the appldata_timer_lock spinlock.
174 static void __appldata_vtimer_setup(int cmd
)
176 u64 timer_interval
= (u64
) appldata_interval
* 1000 * TOD_MICRO
;
179 case APPLDATA_ADD_TIMER
:
180 if (appldata_timer_active
)
182 appldata_timer
.expires
= timer_interval
;
183 add_virt_timer_periodic(&appldata_timer
);
184 appldata_timer_active
= 1;
186 case APPLDATA_DEL_TIMER
:
187 del_virt_timer(&appldata_timer
);
188 if (!appldata_timer_active
)
190 appldata_timer_active
= 0;
192 case APPLDATA_MOD_TIMER
:
193 if (!appldata_timer_active
)
195 mod_virt_timer_periodic(&appldata_timer
, timer_interval
);
200 * appldata_timer_handler()
202 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
205 appldata_timer_handler(struct ctl_table
*ctl
, int write
,
206 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
211 if (!*lenp
|| *ppos
) {
216 strncpy(buf
, appldata_timer_active
? "1\n" : "0\n",
218 len
= strnlen(buf
, ARRAY_SIZE(buf
));
221 if (copy_to_user(buffer
, buf
, len
))
226 if (copy_from_user(buf
, buffer
, len
> sizeof(buf
) ? sizeof(buf
) : len
))
228 spin_lock(&appldata_timer_lock
);
230 __appldata_vtimer_setup(APPLDATA_ADD_TIMER
);
231 else if (buf
[0] == '0')
232 __appldata_vtimer_setup(APPLDATA_DEL_TIMER
);
233 spin_unlock(&appldata_timer_lock
);
241 * appldata_interval_handler()
243 * Set (CPU) timer interval for collection of data (in milliseconds), show
244 * current timer interval.
247 appldata_interval_handler(struct ctl_table
*ctl
, int write
,
248 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
254 if (!*lenp
|| *ppos
) {
259 len
= sprintf(buf
, "%i\n", appldata_interval
);
262 if (copy_to_user(buffer
, buf
, len
))
267 if (copy_from_user(buf
, buffer
, len
> sizeof(buf
) ? sizeof(buf
) : len
))
270 sscanf(buf
, "%i", &interval
);
274 spin_lock(&appldata_timer_lock
);
275 appldata_interval
= interval
;
276 __appldata_vtimer_setup(APPLDATA_MOD_TIMER
);
277 spin_unlock(&appldata_timer_lock
);
285 * appldata_generic_handler()
287 * Generic start/stop monitoring and DIAG, show status of
288 * monitoring (0 = not in process, 1 = in process)
291 appldata_generic_handler(struct ctl_table
*ctl
, int write
,
292 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
294 struct appldata_ops
*ops
= NULL
, *tmp_ops
;
298 struct list_head
*lh
;
301 mutex_lock(&appldata_ops_mutex
);
302 list_for_each(lh
, &appldata_ops_list
) {
303 tmp_ops
= list_entry(lh
, struct appldata_ops
, list
);
304 if (&tmp_ops
->ctl_table
[2] == ctl
) {
309 mutex_unlock(&appldata_ops_mutex
);
313 if (!try_module_get(ops
->owner
)) { // protect this function
314 mutex_unlock(&appldata_ops_mutex
);
317 mutex_unlock(&appldata_ops_mutex
);
319 if (!*lenp
|| *ppos
) {
321 module_put(ops
->owner
);
325 strncpy(buf
, ops
->active
? "1\n" : "0\n", ARRAY_SIZE(buf
));
326 len
= strnlen(buf
, ARRAY_SIZE(buf
));
329 if (copy_to_user(buffer
, buf
, len
)) {
330 module_put(ops
->owner
);
336 if (copy_from_user(buf
, buffer
,
337 len
> sizeof(buf
) ? sizeof(buf
) : len
)) {
338 module_put(ops
->owner
);
342 mutex_lock(&appldata_ops_mutex
);
343 if ((buf
[0] == '1') && (ops
->active
== 0)) {
344 // protect work queue callback
345 if (!try_module_get(ops
->owner
)) {
346 mutex_unlock(&appldata_ops_mutex
);
347 module_put(ops
->owner
);
350 ops
->callback(ops
->data
); // init record
351 rc
= appldata_diag(ops
->record_nr
,
352 APPLDATA_START_INTERVAL_REC
,
353 (unsigned long) ops
->data
, ops
->size
,
356 pr_err("Starting the data collection for %s "
357 "failed with rc=%d\n", ops
->name
, rc
);
358 module_put(ops
->owner
);
361 } else if ((buf
[0] == '0') && (ops
->active
== 1)) {
363 rc
= appldata_diag(ops
->record_nr
, APPLDATA_STOP_REC
,
364 (unsigned long) ops
->data
, ops
->size
,
367 pr_err("Stopping the data collection for %s "
368 "failed with rc=%d\n", ops
->name
, rc
);
369 module_put(ops
->owner
);
371 mutex_unlock(&appldata_ops_mutex
);
375 module_put(ops
->owner
);
379 /*************************** /proc stuff <END> *******************************/
382 /************************* module-ops management *****************************/
384 * appldata_register_ops()
386 * update ops list, register /proc/sys entries
388 int appldata_register_ops(struct appldata_ops
*ops
)
390 if (ops
->size
> APPLDATA_MAX_REC_SIZE
)
393 ops
->ctl_table
= kzalloc(4 * sizeof(struct ctl_table
), GFP_KERNEL
);
397 mutex_lock(&appldata_ops_mutex
);
398 list_add(&ops
->list
, &appldata_ops_list
);
399 mutex_unlock(&appldata_ops_mutex
);
401 ops
->ctl_table
[0].procname
= appldata_proc_name
;
402 ops
->ctl_table
[0].maxlen
= 0;
403 ops
->ctl_table
[0].mode
= S_IRUGO
| S_IXUGO
;
404 ops
->ctl_table
[0].child
= &ops
->ctl_table
[2];
406 ops
->ctl_table
[2].procname
= ops
->name
;
407 ops
->ctl_table
[2].mode
= S_IRUGO
| S_IWUSR
;
408 ops
->ctl_table
[2].proc_handler
= appldata_generic_handler
;
409 ops
->ctl_table
[2].data
= ops
;
411 ops
->sysctl_header
= register_sysctl_table(ops
->ctl_table
);
412 if (!ops
->sysctl_header
)
416 mutex_lock(&appldata_ops_mutex
);
417 list_del(&ops
->list
);
418 mutex_unlock(&appldata_ops_mutex
);
419 kfree(ops
->ctl_table
);
424 * appldata_unregister_ops()
426 * update ops list, unregister /proc entries, stop DIAG if necessary
428 void appldata_unregister_ops(struct appldata_ops
*ops
)
430 mutex_lock(&appldata_ops_mutex
);
431 list_del(&ops
->list
);
432 mutex_unlock(&appldata_ops_mutex
);
433 unregister_sysctl_table(ops
->sysctl_header
);
434 kfree(ops
->ctl_table
);
436 /********************** module-ops management <END> **************************/
439 /**************************** suspend / resume *******************************/
440 static int appldata_freeze(struct device
*dev
)
442 struct appldata_ops
*ops
;
444 struct list_head
*lh
;
446 spin_lock(&appldata_timer_lock
);
447 if (appldata_timer_active
) {
448 __appldata_vtimer_setup(APPLDATA_DEL_TIMER
);
449 appldata_timer_suspended
= 1;
451 spin_unlock(&appldata_timer_lock
);
453 mutex_lock(&appldata_ops_mutex
);
454 list_for_each(lh
, &appldata_ops_list
) {
455 ops
= list_entry(lh
, struct appldata_ops
, list
);
456 if (ops
->active
== 1) {
457 rc
= appldata_diag(ops
->record_nr
, APPLDATA_STOP_REC
,
458 (unsigned long) ops
->data
, ops
->size
,
461 pr_err("Stopping the data collection for %s "
462 "failed with rc=%d\n", ops
->name
, rc
);
465 mutex_unlock(&appldata_ops_mutex
);
469 static int appldata_restore(struct device
*dev
)
471 struct appldata_ops
*ops
;
473 struct list_head
*lh
;
475 spin_lock(&appldata_timer_lock
);
476 if (appldata_timer_suspended
) {
477 __appldata_vtimer_setup(APPLDATA_ADD_TIMER
);
478 appldata_timer_suspended
= 0;
480 spin_unlock(&appldata_timer_lock
);
482 mutex_lock(&appldata_ops_mutex
);
483 list_for_each(lh
, &appldata_ops_list
) {
484 ops
= list_entry(lh
, struct appldata_ops
, list
);
485 if (ops
->active
== 1) {
486 ops
->callback(ops
->data
); // init record
487 rc
= appldata_diag(ops
->record_nr
,
488 APPLDATA_START_INTERVAL_REC
,
489 (unsigned long) ops
->data
, ops
->size
,
492 pr_err("Starting the data collection for %s "
493 "failed with rc=%d\n", ops
->name
, rc
);
497 mutex_unlock(&appldata_ops_mutex
);
501 static int appldata_thaw(struct device
*dev
)
503 return appldata_restore(dev
);
506 static const struct dev_pm_ops appldata_pm_ops
= {
507 .freeze
= appldata_freeze
,
508 .thaw
= appldata_thaw
,
509 .restore
= appldata_restore
,
512 static struct platform_driver appldata_pdrv
= {
515 .pm
= &appldata_pm_ops
,
518 /************************* suspend / resume <END> ****************************/
521 /******************************* init / exit *********************************/
526 * init timer, register /proc entries
528 static int __init
appldata_init(void)
532 init_virt_timer(&appldata_timer
);
533 appldata_timer
.function
= appldata_timer_function
;
534 appldata_timer
.data
= (unsigned long) &appldata_work
;
536 rc
= platform_driver_register(&appldata_pdrv
);
540 appldata_pdev
= platform_device_register_simple("appldata", -1, NULL
,
542 if (IS_ERR(appldata_pdev
)) {
543 rc
= PTR_ERR(appldata_pdev
);
546 appldata_wq
= alloc_ordered_workqueue("appldata", 0);
552 appldata_sysctl_header
= register_sysctl_table(appldata_dir_table
);
556 platform_device_unregister(appldata_pdev
);
558 platform_driver_unregister(&appldata_pdrv
);
562 __initcall(appldata_init
);
564 /**************************** init / exit <END> ******************************/
566 EXPORT_SYMBOL_GPL(appldata_register_ops
);
567 EXPORT_SYMBOL_GPL(appldata_unregister_ops
);
568 EXPORT_SYMBOL_GPL(appldata_diag
);
571 EXPORT_SYMBOL_GPL(si_swapinfo
);
573 EXPORT_SYMBOL_GPL(nr_threads
);
574 EXPORT_SYMBOL_GPL(nr_running
);
575 EXPORT_SYMBOL_GPL(nr_iowait
);