summaryrefslogtreecommitdiff
path: root/perfmon/perfmon_sysfs.c
blob: b13c12581175027aff3d1c4ce4a189314524fa19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
/*
 * perfmon_sysfs.c: perfmon2 sysfs interface
 *
 * This file implements the perfmon2 interface which
 * provides access to the hardware performance counters
 * of the host processor.
 *
 * The initial version of perfmon.c was written by
 * Ganesh Venkitachalam, IBM Corp.
 *
 * Then it was modified for perfmon-1.x by Stephane Eranian and
 * David Mosberger, Hewlett Packard Co.
 *
 * Version Perfmon-2.x is a complete rewrite of perfmon-1.x
 * by Stephane Eranian, Hewlett Packard Co.
 *
 * Copyright (c) 1999-2006 Hewlett-Packard Development Company, L.P.
 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
 *                David Mosberger-Tang <davidm@hpl.hp.com>
 *
 * More information about perfmon available at:
 * 	http://perfmon2.sf.net
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 * 02111-1307 USA
 */
#include <linux/kernel.h>
#include <linux/module.h> /* for EXPORT_SYMBOL */
#include <linux/perfmon_kern.h>
#include "perfmon_priv.h"

struct pfm_attribute {
	struct attribute attr;
	ssize_t (*show)(void *, struct pfm_attribute *attr, char *);
	ssize_t (*store)(void *, const char *, size_t);
};
#define to_attr(n) container_of(n, struct pfm_attribute, attr);


#define PFM_RO_ATTR(_name, _show) \
	struct kobj_attribute attr_##_name = __ATTR(_name, 0444, _show, NULL)

#define PFM_RW_ATTR(_name, _show, _store) 			\
	struct kobj_attribute attr_##_name = __ATTR(_name, 0644, _show, _store)

#define PFM_ROS_ATTR(_name, _show) \
	struct pfm_attribute attr_##_name = __ATTR(_name, 0444, _show, NULL)

#define is_attr_name(a, n) (!strcmp((a)->attr.name, n))
int pfm_sysfs_add_pmu(struct pfm_pmu_config *pmu);

static struct kobject *pfm_kernel_kobj;
static struct kobject *pfm_pmu_kobj;


static ssize_t pfm_regs_attr_show(struct kobject *kobj,
		struct attribute *attr, char *buf)
{
#define to_reg(n) container_of(n, struct pfm_regmap_desc, kobj)
	struct pfm_regmap_desc *reg = to_reg(kobj);
	struct pfm_attribute *attribute = to_attr(attr);
	return attribute->show ? attribute->show(reg, attribute, buf) : -EIO;
}

static struct sysfs_ops pfm_regs_sysfs_ops = {
	.show  = pfm_regs_attr_show
};

static struct kobj_type pfm_regs_ktype = {
	.sysfs_ops = &pfm_regs_sysfs_ops,
};

static ssize_t pfm_controls_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf)
{

	if (is_attr_name(attr, "version"))
		return snprintf(buf, PAGE_SIZE, "%u.%u\n",  PFM_VERSION_MAJ, PFM_VERSION_MIN);

	if (is_attr_name(attr, "task_sessions_count"))
		return pfm_sysfs_res_show(buf, PAGE_SIZE, 0);

	if (is_attr_name(attr, "debug"))
		return snprintf(buf, PAGE_SIZE, "%d\n", pfm_controls.debug);

	if (is_attr_name(attr, "task_group"))
		return snprintf(buf, PAGE_SIZE, "%d\n", pfm_controls.task_group);

	if (is_attr_name(attr, "arg_mem_max"))
		return snprintf(buf, PAGE_SIZE, "%zu\n", pfm_controls.arg_mem_max);

	return 0;
}

static ssize_t pfm_controls_store(struct kobject *kobj, struct kobj_attribute *attr,
			 	  const char *buf, size_t count)
{
	size_t d;

	if (sscanf(buf, "%zu", &d) != 1)
		goto skip;

	if (is_attr_name(attr, "debug"))
		pfm_controls.debug = d;

	if (is_attr_name(attr, "task_group"))
		pfm_controls.task_group = d;

	if (is_attr_name(attr, "arg_mem_max")) {
		/*
		 * we impose a page as the minimum.
		 *
		 * This limit may be smaller than the stack buffer
		 * available and that is fine.
		 */
		if (d >= PAGE_SIZE)
			pfm_controls.arg_mem_max = d;
	}

skip:
	return count;
}

/*
 * /sys/kernel/perfmon attributes
 */
static PFM_RO_ATTR(version, pfm_controls_show);
static PFM_RO_ATTR(task_sessions_count, pfm_controls_show);
static PFM_RW_ATTR(debug, pfm_controls_show, pfm_controls_store);
static PFM_RW_ATTR(task_group, pfm_controls_show, pfm_controls_store);
static PFM_RW_ATTR(arg_mem_max, pfm_controls_show, pfm_controls_store);

static struct attribute *pfm_kernel_attrs[] = {
	&attr_version.attr,
	&attr_task_sessions_count.attr,
	&attr_debug.attr,
	&attr_task_group.attr,
	&attr_arg_mem_max.attr,
	NULL
};

static struct attribute_group pfm_kernel_attr_group = {
	.attrs = pfm_kernel_attrs,
};

/*
 * per-reg attributes
 */
static ssize_t pfm_reg_show(void *data, struct pfm_attribute *attr, char *buf)
{
	struct pfm_regmap_desc *reg = data;
	int w;

	reg = data;

	if (is_attr_name(attr, "name"))
		return snprintf(buf, PAGE_SIZE, "%s\n", reg->desc);

	if (is_attr_name(attr, "dfl_val"))
		return snprintf(buf, PAGE_SIZE, "0x%llx\n",
				(unsigned long long)reg->dfl_val);

	if (is_attr_name(attr, "width")) {
		w = (reg->type & PFM_REG_C64) ?
		    pfm_pmu_conf->counter_width : 64;
		return snprintf(buf, PAGE_SIZE, "%d\n", w);
	}

	if (is_attr_name(attr, "rsvd_msk"))
		return snprintf(buf, PAGE_SIZE, "0x%llx\n",
				(unsigned long long)reg->rsvd_msk);

	if (is_attr_name(attr, "addr"))
		return snprintf(buf, PAGE_SIZE, "0x%lx\n", reg->hw_addr);

	return 0;
}

static PFM_ROS_ATTR(name, pfm_reg_show);
static PFM_ROS_ATTR(dfl_val, pfm_reg_show);
static PFM_ROS_ATTR(rsvd_msk, pfm_reg_show);
static PFM_ROS_ATTR(width, pfm_reg_show);
static PFM_ROS_ATTR(addr, pfm_reg_show);

static struct attribute *pfm_reg_attrs[] = {
	&attr_name.attr,
	&attr_dfl_val.attr,
	&attr_rsvd_msk.attr,
	&attr_width.attr,
	&attr_addr.attr,
	NULL
};

static struct attribute_group pfm_reg_attr_group = {
	.attrs = pfm_reg_attrs,
};

static ssize_t pfm_pmu_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf)
{
	if (is_attr_name(attr, "model"))
		return snprintf(buf, PAGE_SIZE, "%s\n", pfm_pmu_conf->pmu_name);
	return 0;
}

static PFM_RO_ATTR(model, pfm_pmu_show);

static struct attribute *pfm_pmu_desc_attrs[] = {
	&attr_model.attr,
	NULL
};

static struct attribute_group pfm_pmu_desc_attr_group = {
	.attrs = pfm_pmu_desc_attrs,
};

static int pfm_sysfs_add_pmu_regs(struct pfm_pmu_config *pmu)
{
	struct pfm_regmap_desc *reg;
	unsigned int i, k;
	int ret;

	reg = pmu->pmc_desc;
	for (i = 0; i < pmu->num_pmc_entries; i++, reg++) {

		if (!(reg->type & PFM_REG_I))
			continue;

		ret = kobject_init_and_add(&reg->kobj, &pfm_regs_ktype,
					   pfm_pmu_kobj, "pmc%u", i);
		if (ret)
			goto undo_pmcs;

		ret = sysfs_create_group(&reg->kobj, &pfm_reg_attr_group);
		if (ret) {
			kobject_del(&reg->kobj);
			goto undo_pmcs;
		}
	}

	reg = pmu->pmd_desc;
	for (i = 0; i < pmu->num_pmd_entries; i++, reg++) {

		if (!(reg->type & PFM_REG_I))
			continue;

		ret = kobject_init_and_add(&reg->kobj, &pfm_regs_ktype,
					   pfm_pmu_kobj, "pmd%u", i);
		if (ret)
			goto undo_pmds;

		ret = sysfs_create_group(&reg->kobj, &pfm_reg_attr_group);
		if (ret) {
			kobject_del(&reg->kobj);
			goto undo_pmds;
		}
	}
	return 0;
undo_pmds:
	reg = pmu->pmd_desc;
	for (k = 0; k < i; k++, reg++) {
		if (!(reg->type & PFM_REG_I))
			continue;
		sysfs_remove_group(&reg->kobj, &pfm_reg_attr_group);
		kobject_del(&reg->kobj);
	}
	i = pmu->num_pmc_entries;
	/* fall through */
undo_pmcs:
	reg = pmu->pmc_desc;
	for (k = 0; k < i; k++, reg++) {
		if (!(reg->type & PFM_REG_I))
			continue;
		sysfs_remove_group(&reg->kobj, &pfm_reg_attr_group);
		kobject_del(&reg->kobj);
	}
	return ret;
}

/*
 * when a PMU description module is inserted, we create
 * a pmu_desc subdir in sysfs and we populate it with
 * PMU specific information, such as register mappings
 */
int pfm_sysfs_add_pmu(struct pfm_pmu_config *pmu)
{
	int ret;

	pfm_pmu_kobj = kobject_create_and_add("pmu_desc", pfm_kernel_kobj);
	if (!pfm_pmu_kobj)
		return -ENOMEM;

	ret = sysfs_create_group(pfm_pmu_kobj, &pfm_pmu_desc_attr_group);
	if (ret) {
		/* will release pfm_pmu_kobj */
		kobject_put(pfm_pmu_kobj);
		return ret;
	}

	ret = pfm_sysfs_add_pmu_regs(pmu);
	if (ret) {
		sysfs_remove_group(pfm_pmu_kobj, &pfm_pmu_desc_attr_group);
		/* will release pfm_pmu_kobj */
		kobject_put(pfm_pmu_kobj);
	} else
		kobject_uevent(pfm_pmu_kobj, KOBJ_ADD);

	return ret;
}

int __init pfm_init_sysfs(void)
{
	int ret;

	/*
 	 * dynamic allocation happens on pfm_kernel_kobj,
 	 * but a release callback is attached
 	 */
	pfm_kernel_kobj = kobject_create_and_add("perfmon", kernel_kobj);
	if (!pfm_kernel_kobj) {
		PFM_ERR("cannot add kernel object");
		return -ENOMEM;
	}

	ret = sysfs_create_group(pfm_kernel_kobj, &pfm_kernel_attr_group);
	if (ret) {
		kobject_put(pfm_kernel_kobj);
		return ret;
	}

	if (pfm_pmu_conf)
		pfm_sysfs_add_pmu(pfm_pmu_conf);

	return 0;
}