blob: ef3fb1b9201f0331d333dc991af47c84597292a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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.
5 *
Gerald Schaefer524dbcd2009-06-16 10:30:36 +02006 * Copyright IBM Corp. 2003, 2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Gerald Schaefer5b5dd212006-06-29 15:08:35 +02008 * Author: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Gerald Schaefere7534b02008-12-25 13:39:41 +010011#define KMSG_COMPONENT "appldata"
12#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Ingo Molnar3605df492017-02-03 11:03:12 +010015#include <linux/sched/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/interrupt.h>
20#include <linux/proc_fs.h>
Heiko Carstens2dcea572006-09-29 01:58:41 -070021#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/swap.h>
23#include <linux/pagemap.h>
24#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/notifier.h>
26#include <linux/cpu.h>
Gerald Schaeferf26d5832005-06-04 15:43:33 -070027#include <linux/workqueue.h>
Gerald Schaefer524dbcd2009-06-16 10:30:36 +020028#include <linux/suspend.h>
29#include <linux/platform_device.h>
Gerald Schaefer1f38d612006-09-20 15:59:26 +020030#include <asm/appldata.h>
Martin Schwidefsky27f6b412012-07-20 11:15:08 +020031#include <asm/vtimer.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080032#include <linux/uaccess.h>
Gerald Schaefer1f38d612006-09-20 15:59:26 +020033#include <asm/io.h>
34#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include "appldata.h"
37
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define APPLDATA_CPU_INTERVAL 10000 /* default (CPU) time for
40 sampling interval in
41 milliseconds */
42
43#define TOD_MICRO 0x01000 /* nr. of TOD clock units
44 for 1 microsecond */
Gerald Schaefer524dbcd2009-06-16 10:30:36 +020045
46static struct platform_device *appldata_pdev;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * /proc entries (sysctl)
50 */
51static const char appldata_proc_name[APPLDATA_PROC_NAME_LENGTH] = "appldata";
Joe Perches302bfe22013-10-22 15:29:46 -070052static int appldata_timer_handler(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 void __user *buffer, size_t *lenp, loff_t *ppos);
Joe Perches302bfe22013-10-22 15:29:46 -070054static int appldata_interval_handler(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 void __user *buffer,
56 size_t *lenp, loff_t *ppos);
57
58static struct ctl_table_header *appldata_sysctl_header;
59static struct ctl_table appldata_table[] = {
60 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .procname = "timer",
62 .mode = S_IRUGO | S_IWUSR,
Eric W. Biederman6d456112009-11-16 03:11:48 -080063 .proc_handler = appldata_timer_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 },
65 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 .procname = "interval",
67 .mode = S_IRUGO | S_IWUSR,
Eric W. Biederman6d456112009-11-16 03:11:48 -080068 .proc_handler = appldata_interval_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 },
Heiko Carstens37e3a6a2007-11-20 11:13:34 +010070 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73static struct ctl_table appldata_dir_table[] = {
74 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .procname = appldata_proc_name,
76 .maxlen = 0,
77 .mode = S_IRUGO | S_IXUGO,
78 .child = appldata_table,
79 },
Heiko Carstens37e3a6a2007-11-20 11:13:34 +010080 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83/*
84 * Timer
85 */
Martin Schwidefsky27f6b412012-07-20 11:15:08 +020086static struct vtimer_list appldata_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static DEFINE_SPINLOCK(appldata_timer_lock);
89static int appldata_interval = APPLDATA_CPU_INTERVAL;
90static int appldata_timer_active;
Gerald Schaefer524dbcd2009-06-16 10:30:36 +020091static int appldata_timer_suspended = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
Gerald Schaeferf26d5832005-06-04 15:43:33 -070094 * Work queue
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 */
Gerald Schaeferf26d5832005-06-04 15:43:33 -070096static struct workqueue_struct *appldata_wq;
David Howells6d5aefb2006-12-05 19:36:26 +000097static void appldata_work_fn(struct work_struct *work);
98static DECLARE_WORK(appldata_work, appldata_work_fn);
Gerald Schaeferf26d5832005-06-04 15:43:33 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
102 * Ops list
103 */
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200104static DEFINE_MUTEX(appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static LIST_HEAD(appldata_ops_list);
106
107
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700108/*************************** timer, work, DIAG *******************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * appldata_timer_function()
111 *
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700112 * schedule work and reschedule timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200114static void appldata_timer_function(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200116 queue_work(appldata_wq, (struct work_struct *) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119/*
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700120 * appldata_work_fn()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
122 * call data gathering function for each (active) module
123 */
David Howells6d5aefb2006-12-05 19:36:26 +0000124static void appldata_work_fn(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 struct list_head *lh;
127 struct appldata_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200129 mutex_lock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 list_for_each(lh, &appldata_ops_list) {
131 ops = list_entry(lh, struct appldata_ops, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (ops->active == 1) {
133 ops->callback(ops->data);
134 }
135 }
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200136 mutex_unlock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139/*
140 * appldata_diag()
141 *
142 * prepare parameter list, issue DIAG 0xDC
143 */
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200144int appldata_diag(char record_nr, u16 function, unsigned long buffer,
145 u16 length, char *mod_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200147 struct appldata_product_id id = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .prod_nr = {0xD3, 0xC9, 0xD5, 0xE4,
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200149 0xE7, 0xD2, 0xD9}, /* "LINUXKR" */
150 .prod_fn = 0xD5D3, /* "NL" */
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200151 .version_nr = 0xF2F6, /* "26" */
152 .release_nr = 0xF0F1, /* "01" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 };
154
Gerald Schaefer925afbd2006-09-28 16:55:23 +0200155 id.record_nr = record_nr;
156 id.mod_lvl = (mod_lvl[0]) << 8 | mod_lvl[1];
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200157 return appldata_asm(&id, function, (void *) buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700159/************************ timer, work, DIAG <END> ****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161
162/****************************** /proc stuff **********************************/
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define APPLDATA_ADD_TIMER 0
165#define APPLDATA_DEL_TIMER 1
166#define APPLDATA_MOD_TIMER 2
167
168/*
169 * __appldata_vtimer_setup()
170 *
171 * Add, delete or modify virtual timers on all online cpus.
172 * The caller needs to get the appldata_timer_lock spinlock.
173 */
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200174static void __appldata_vtimer_setup(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200176 u64 timer_interval = (u64) appldata_interval * 1000 * TOD_MICRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 switch (cmd) {
179 case APPLDATA_ADD_TIMER:
180 if (appldata_timer_active)
181 break;
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200182 appldata_timer.expires = timer_interval;
183 add_virt_timer_periodic(&appldata_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 appldata_timer_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 break;
186 case APPLDATA_DEL_TIMER:
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200187 del_virt_timer(&appldata_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!appldata_timer_active)
189 break;
190 appldata_timer_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 break;
192 case APPLDATA_MOD_TIMER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (!appldata_timer_active)
194 break;
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200195 mod_virt_timer_periodic(&appldata_timer, timer_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197}
198
199/*
200 * appldata_timer_handler()
201 *
202 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
203 */
204static int
Joe Perches302bfe22013-10-22 15:29:46 -0700205appldata_timer_handler(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 void __user *buffer, size_t *lenp, loff_t *ppos)
207{
Heiko Carstens57f47ba2013-10-14 14:08:35 +0200208 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 char buf[2];
210
211 if (!*lenp || *ppos) {
212 *lenp = 0;
213 return 0;
214 }
215 if (!write) {
Chen Gangd5b4c2f2013-05-27 17:55:13 +0800216 strncpy(buf, appldata_timer_active ? "1\n" : "0\n",
217 ARRAY_SIZE(buf));
218 len = strnlen(buf, ARRAY_SIZE(buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (len > *lenp)
220 len = *lenp;
221 if (copy_to_user(buffer, buf, len))
222 return -EFAULT;
223 goto out;
224 }
225 len = *lenp;
226 if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len))
227 return -EFAULT;
228 spin_lock(&appldata_timer_lock);
229 if (buf[0] == '1')
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);
234out:
235 *lenp = len;
236 *ppos += len;
237 return 0;
238}
239
240/*
241 * appldata_interval_handler()
242 *
243 * Set (CPU) timer interval for collection of data (in milliseconds), show
244 * current timer interval.
245 */
246static int
Joe Perches302bfe22013-10-22 15:29:46 -0700247appldata_interval_handler(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 void __user *buffer, size_t *lenp, loff_t *ppos)
249{
Heiko Carstens57f47ba2013-10-14 14:08:35 +0200250 unsigned int len;
251 int interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 char buf[16];
253
254 if (!*lenp || *ppos) {
255 *lenp = 0;
256 return 0;
257 }
258 if (!write) {
259 len = sprintf(buf, "%i\n", appldata_interval);
260 if (len > *lenp)
261 len = *lenp;
262 if (copy_to_user(buffer, buf, len))
263 return -EFAULT;
264 goto out;
265 }
266 len = *lenp;
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200267 if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return -EFAULT;
Gerald Schaefer95425f12006-10-27 12:39:13 +0200269 interval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 sscanf(buf, "%i", &interval);
Gerald Schaeferd3ae9422008-07-14 09:59:34 +0200271 if (interval <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 spin_lock(&appldata_timer_lock);
275 appldata_interval = interval;
276 __appldata_vtimer_setup(APPLDATA_MOD_TIMER);
277 spin_unlock(&appldata_timer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278out:
279 *lenp = len;
280 *ppos += len;
281 return 0;
282}
283
284/*
285 * appldata_generic_handler()
286 *
287 * Generic start/stop monitoring and DIAG, show status of
288 * monitoring (0 = not in process, 1 = in process)
289 */
290static int
Joe Perches302bfe22013-10-22 15:29:46 -0700291appldata_generic_handler(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 void __user *buffer, size_t *lenp, loff_t *ppos)
293{
294 struct appldata_ops *ops = NULL, *tmp_ops;
Heiko Carstens57f47ba2013-10-14 14:08:35 +0200295 unsigned int len;
296 int rc, found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 char buf[2];
298 struct list_head *lh;
299
300 found = 0;
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200301 mutex_lock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 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) {
305 found = 1;
306 }
307 }
308 if (!found) {
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200309 mutex_unlock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -ENODEV;
311 }
312 ops = ctl->data;
313 if (!try_module_get(ops->owner)) { // protect this function
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200314 mutex_unlock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return -ENODEV;
316 }
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200317 mutex_unlock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (!*lenp || *ppos) {
320 *lenp = 0;
321 module_put(ops->owner);
322 return 0;
323 }
324 if (!write) {
Chen Gangd5b4c2f2013-05-27 17:55:13 +0800325 strncpy(buf, ops->active ? "1\n" : "0\n", ARRAY_SIZE(buf));
326 len = strnlen(buf, ARRAY_SIZE(buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (len > *lenp)
328 len = *lenp;
329 if (copy_to_user(buffer, buf, len)) {
330 module_put(ops->owner);
331 return -EFAULT;
332 }
333 goto out;
334 }
335 len = *lenp;
336 if (copy_from_user(buf, buffer,
337 len > sizeof(buf) ? sizeof(buf) : len)) {
338 module_put(ops->owner);
339 return -EFAULT;
340 }
341
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200342 mutex_lock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if ((buf[0] == '1') && (ops->active == 0)) {
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700344 // protect work queue callback
345 if (!try_module_get(ops->owner)) {
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200346 mutex_unlock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 module_put(ops->owner);
348 return -ENODEV;
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 ops->callback(ops->data); // init record
351 rc = appldata_diag(ops->record_nr,
352 APPLDATA_START_INTERVAL_REC,
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200353 (unsigned long) ops->data, ops->size,
354 ops->mod_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (rc != 0) {
Gerald Schaefere7534b02008-12-25 13:39:41 +0100356 pr_err("Starting the data collection for %s "
357 "failed with rc=%d\n", ops->name, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 module_put(ops->owner);
Gerald Schaeferd3ae9422008-07-14 09:59:34 +0200359 } else
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200360 ops->active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 } else if ((buf[0] == '0') && (ops->active == 1)) {
362 ops->active = 0;
363 rc = appldata_diag(ops->record_nr, APPLDATA_STOP_REC,
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200364 (unsigned long) ops->data, ops->size,
365 ops->mod_lvl);
Gerald Schaeferd3ae9422008-07-14 09:59:34 +0200366 if (rc != 0)
Gerald Schaefere7534b02008-12-25 13:39:41 +0100367 pr_err("Stopping the data collection for %s "
368 "failed with rc=%d\n", ops->name, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 module_put(ops->owner);
370 }
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200371 mutex_unlock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372out:
373 *lenp = len;
374 *ppos += len;
375 module_put(ops->owner);
376 return 0;
377}
378
379/*************************** /proc stuff <END> *******************************/
380
381
382/************************* module-ops management *****************************/
383/*
384 * appldata_register_ops()
385 *
386 * update ops list, register /proc/sys entries
387 */
388int appldata_register_ops(struct appldata_ops *ops)
389{
Roel Kluin13f8b7c2008-10-28 11:10:18 +0100390 if (ops->size > APPLDATA_MAX_REC_SIZE)
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100391 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100393 ops->ctl_table = kzalloc(4 * sizeof(struct ctl_table), GFP_KERNEL);
394 if (!ops->ctl_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200397 mutex_lock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 list_add(&ops->list, &appldata_ops_list);
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200399 mutex_unlock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 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];
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 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;
410
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800411 ops->sysctl_header = register_sysctl_table(ops->ctl_table);
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100412 if (!ops->sysctl_header)
413 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 0;
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100415out:
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200416 mutex_lock(&appldata_ops_mutex);
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100417 list_del(&ops->list);
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200418 mutex_unlock(&appldata_ops_mutex);
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100419 kfree(ops->ctl_table);
420 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423/*
424 * appldata_unregister_ops()
425 *
426 * update ops list, unregister /proc entries, stop DIAG if necessary
427 */
428void appldata_unregister_ops(struct appldata_ops *ops)
429{
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200430 mutex_lock(&appldata_ops_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 list_del(&ops->list);
Gerald Schaeferb1ad1712009-04-23 13:58:07 +0200432 mutex_unlock(&appldata_ops_mutex);
Al Viro330d57f2005-11-04 10:18:40 +0000433 unregister_sysctl_table(ops->sysctl_header);
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100434 kfree(ops->ctl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436/********************** module-ops management <END> **************************/
437
438
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200439/**************************** suspend / resume *******************************/
440static int appldata_freeze(struct device *dev)
441{
442 struct appldata_ops *ops;
443 int rc;
444 struct list_head *lh;
445
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200446 spin_lock(&appldata_timer_lock);
447 if (appldata_timer_active) {
448 __appldata_vtimer_setup(APPLDATA_DEL_TIMER);
449 appldata_timer_suspended = 1;
450 }
451 spin_unlock(&appldata_timer_lock);
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200452
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,
459 ops->mod_lvl);
460 if (rc != 0)
461 pr_err("Stopping the data collection for %s "
462 "failed with rc=%d\n", ops->name, rc);
463 }
464 }
465 mutex_unlock(&appldata_ops_mutex);
466 return 0;
467}
468
469static int appldata_restore(struct device *dev)
470{
471 struct appldata_ops *ops;
472 int rc;
473 struct list_head *lh;
474
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200475 spin_lock(&appldata_timer_lock);
476 if (appldata_timer_suspended) {
477 __appldata_vtimer_setup(APPLDATA_ADD_TIMER);
478 appldata_timer_suspended = 0;
479 }
480 spin_unlock(&appldata_timer_lock);
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200481
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,
490 ops->mod_lvl);
491 if (rc != 0) {
492 pr_err("Starting the data collection for %s "
493 "failed with rc=%d\n", ops->name, rc);
494 }
495 }
496 }
497 mutex_unlock(&appldata_ops_mutex);
498 return 0;
499}
500
501static int appldata_thaw(struct device *dev)
502{
503 return appldata_restore(dev);
504}
505
Alexey Dobriyan47145212009-12-14 18:00:08 -0800506static const struct dev_pm_ops appldata_pm_ops = {
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200507 .freeze = appldata_freeze,
508 .thaw = appldata_thaw,
509 .restore = appldata_restore,
510};
511
512static struct platform_driver appldata_pdrv = {
513 .driver = {
514 .name = "appldata",
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200515 .pm = &appldata_pm_ops,
516 },
517};
518/************************* suspend / resume <END> ****************************/
519
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/******************************* init / exit *********************************/
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/*
524 * appldata_init()
525 *
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700526 * init timer, register /proc entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
528static int __init appldata_init(void)
529{
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200530 int rc;
531
Gerald Schaeferb7c5b1a2014-01-28 18:40:12 +0100532 init_virt_timer(&appldata_timer);
Martin Schwidefsky27f6b412012-07-20 11:15:08 +0200533 appldata_timer.function = appldata_timer_function;
534 appldata_timer.data = (unsigned long) &appldata_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200536 rc = platform_driver_register(&appldata_pdrv);
537 if (rc)
538 return rc;
539
540 appldata_pdev = platform_device_register_simple("appldata", -1, NULL,
541 0);
542 if (IS_ERR(appldata_pdev)) {
543 rc = PTR_ERR(appldata_pdev);
544 goto out_driver;
545 }
Bhaktipriya Shridhare68f1d42016-08-31 01:57:20 +0530546 appldata_wq = alloc_ordered_workqueue("appldata", 0);
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200547 if (!appldata_wq) {
548 rc = -ENOMEM;
549 goto out_device;
550 }
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700551
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800552 appldata_sysctl_header = register_sysctl_table(appldata_dir_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return 0;
Gerald Schaefer524dbcd2009-06-16 10:30:36 +0200554
555out_device:
556 platform_device_unregister(appldata_pdev);
557out_driver:
558 platform_driver_unregister(&appldata_pdrv);
559 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Satyam Sharma076fc802007-10-12 16:11:32 +0200562__initcall(appldata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564/**************************** init / exit <END> ******************************/
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566EXPORT_SYMBOL_GPL(appldata_register_ops);
567EXPORT_SYMBOL_GPL(appldata_unregister_ops);
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200568EXPORT_SYMBOL_GPL(appldata_diag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Gerald Schaefer0c3252d2008-07-14 09:57:27 +0200570#ifdef CONFIG_SWAP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571EXPORT_SYMBOL_GPL(si_swapinfo);
Gerald Schaefer0c3252d2008-07-14 09:57:27 +0200572#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573EXPORT_SYMBOL_GPL(nr_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574EXPORT_SYMBOL_GPL(nr_running);
575EXPORT_SYMBOL_GPL(nr_iowait);