base.c 11.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright 2013 Red Hat Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: Ben Skeggs
 */

25
#include <core/client.h>
26
#include <core/option.h>
27 28 29
#include <nvif/unpack.h>
#include <nvif/class.h>
#include <nvif/ioctl.h>
30

31
#include <subdev/clk.h>
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

#include "priv.h"

#define QUAD_MASK 0x0f
#define QUAD_FREE 0x01

static struct nouveau_perfsig *
nouveau_perfsig_find_(struct nouveau_perfdom *dom, const char *name, u32 size)
{
	char path[64];
	int i;

	if (name[0] != '/') {
		for (i = 0; i < dom->signal_nr; i++) {
			if ( dom->signal[i].name &&
			    !strncmp(name, dom->signal[i].name, size))
				return &dom->signal[i];
		}
	} else {
		for (i = 0; i < dom->signal_nr; i++) {
			snprintf(path, sizeof(path), "/%s/%02x", dom->name, i);
			if (!strncmp(name, path, size))
				return &dom->signal[i];
		}
	}

	return NULL;
}

struct nouveau_perfsig *
62
nouveau_perfsig_find(struct nouveau_pm *ppm, const char *name, u32 size,
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
		     struct nouveau_perfdom **pdom)
{
	struct nouveau_perfdom *dom = *pdom;
	struct nouveau_perfsig *sig;

	if (dom == NULL) {
		list_for_each_entry(dom, &ppm->domains, head) {
			sig = nouveau_perfsig_find_(dom, name, size);
			if (sig) {
				*pdom = dom;
				return sig;
			}
		}

		return NULL;
	}

	return nouveau_perfsig_find_(dom, name, size);
}

struct nouveau_perfctr *
84
nouveau_perfsig_wrap(struct nouveau_pm *ppm, const char *name,
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
		     struct nouveau_perfdom **pdom)
{
	struct nouveau_perfsig *sig;
	struct nouveau_perfctr *ctr;

	sig = nouveau_perfsig_find(ppm, name, strlen(name), pdom);
	if (!sig)
		return NULL;

	ctr = kzalloc(sizeof(*ctr), GFP_KERNEL);
	if (ctr) {
		ctr->signal[0] = sig;
		ctr->logic_op = 0xaaaa;
	}

	return ctr;
}

/*******************************************************************************
 * Perfmon object classes
 ******************************************************************************/
static int
107
nouveau_perfctr_query(struct nouveau_object *object, void *data, u32 size)
108
{
109 110 111
	union {
		struct nvif_perfctr_query_v0 v0;
	} *args = data;
112
	struct nouveau_device *device = nv_device(object);
113
	struct nouveau_pm *ppm = (void *)object->engine;
114 115 116 117 118
	struct nouveau_perfdom *dom = NULL, *chk;
	const bool all = nouveau_boolopt(device->cfgopt, "NvPmShowAll", false);
	const bool raw = nouveau_boolopt(device->cfgopt, "NvPmUnnamed", all);
	const char *name;
	int tmp = 0, di, si;
119 120 121 122 123 124 125 126 127 128
	int ret;

	nv_ioctl(object, "perfctr query size %d\n", size);
	if (nvif_unpack(args->v0, 0, 0, false)) {
		nv_ioctl(object, "perfctr query vers %d iter %08x\n",
			 args->v0.version, args->v0.iter);
		di = (args->v0.iter & 0xff000000) >> 24;
		si = (args->v0.iter & 0x00ffffff) - 1;
	} else
		return ret;
129 130 131 132 133 134 135 136 137 138 139 140 141

	list_for_each_entry(chk, &ppm->domains, head) {
		if (tmp++ == di) {
			dom = chk;
			break;
		}
	}

	if (dom == NULL || si >= (int)dom->signal_nr)
		return -EINVAL;

	if (si >= 0) {
		if (raw || !(name = dom->signal[si].name)) {
142 143 144 145
			snprintf(args->v0.name, sizeof(args->v0.name),
				 "/%s/%02x", dom->name, si);
		} else {
			strncpy(args->v0.name, name, sizeof(args->v0.name));
146 147 148 149 150 151
		}
	}

	do {
		while (++si < dom->signal_nr) {
			if (all || dom->signal[si].name) {
152
				args->v0.iter = (di << 24) | ++si;
153 154 155 156 157 158 159 160
				return 0;
			}
		}
		si = -1;
		di = di + 1;
		dom = list_entry(dom->head.next, typeof(*dom), head);
	} while (&dom->head != &ppm->domains);

161
	args->v0.iter = 0xffffffff;
162 163 164 165
	return 0;
}

static int
166
nouveau_perfctr_sample(struct nouveau_object *object, void *data, u32 size)
167
{
168 169 170
	union {
		struct nvif_perfctr_sample none;
	} *args = data;
171
	struct nouveau_pm *ppm = (void *)object->engine;
172 173
	struct nouveau_perfctr *ctr, *tmp;
	struct nouveau_perfdom *dom;
174
	int ret;
175

176 177 178 179 180
	nv_ioctl(object, "perfctr sample size %d\n", size);
	if (nvif_unvers(args->none)) {
		nv_ioctl(object, "perfctr sample\n");
	} else
		return ret;
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
	ppm->sequence++;

	list_for_each_entry(dom, &ppm->domains, head) {
		/* sample previous batch of counters */
		if (dom->quad != QUAD_MASK) {
			dom->func->next(ppm, dom);
			tmp = NULL;
			while (!list_empty(&dom->list)) {
				ctr = list_first_entry(&dom->list,
							typeof(*ctr), head);
				if (ctr->slot < 0) break;
				if ( tmp && tmp == ctr) break;
				if (!tmp) tmp = ctr;
				dom->func->read(ppm, dom, ctr);
				ctr->slot  = -1;
				list_move_tail(&ctr->head, &dom->list);
			}
		}

		dom->quad = QUAD_MASK;

		/* setup next batch of counters for sampling */
		list_for_each_entry(ctr, &dom->list, head) {
			ctr->slot = ffs(dom->quad) - 1;
			if (ctr->slot < 0)
				break;
			dom->quad &= ~(QUAD_FREE << ctr->slot);
			dom->func->init(ppm, dom, ctr);
		}

		if (dom->quad != QUAD_MASK)
			dom->func->next(ppm, dom);
	}

	return 0;
}

static int
219
nouveau_perfctr_read(struct nouveau_object *object, void *data, u32 size)
220
{
221 222 223
	union {
		struct nvif_perfctr_read_v0 v0;
	} *args = data;
224
	struct nouveau_perfctr *ctr = (void *)object;
225 226 227 228 229 230 231
	int ret;

	nv_ioctl(object, "perfctr read size %d\n", size);
	if (nvif_unpack(args->v0, 0, 0, false)) {
		nv_ioctl(object, "perfctr read vers %d\n", args->v0.version);
	} else
		return ret;
232 233 234 235

	if (!ctr->clk)
		return -EAGAIN;

236 237
	args->v0.clk = ctr->clk;
	args->v0.ctr = ctr->ctr;
238 239 240
	return 0;
}

241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
static int
nouveau_perfctr_mthd(struct nouveau_object *object, u32 mthd,
		     void *data, u32 size)
{
	switch (mthd) {
	case NVIF_PERFCTR_V0_QUERY:
		return nouveau_perfctr_query(object, data, size);
	case NVIF_PERFCTR_V0_SAMPLE:
		return nouveau_perfctr_sample(object, data, size);
	case NVIF_PERFCTR_V0_READ:
		return nouveau_perfctr_read(object, data, size);
	default:
		break;
	}
	return -EINVAL;
}

258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
static void
nouveau_perfctr_dtor(struct nouveau_object *object)
{
	struct nouveau_perfctr *ctr = (void *)object;
	if (ctr->head.next)
		list_del(&ctr->head);
	nouveau_object_destroy(&ctr->base);
}

static int
nouveau_perfctr_ctor(struct nouveau_object *parent,
		     struct nouveau_object *engine,
		     struct nouveau_oclass *oclass, void *data, u32 size,
		     struct nouveau_object **pobject)
{
273 274 275
	union {
		struct nvif_perfctr_v0 v0;
	} *args = data;
276
	struct nouveau_pm *ppm = (void *)engine;
277 278 279 280 281
	struct nouveau_perfdom *dom = NULL;
	struct nouveau_perfsig *sig[4] = {};
	struct nouveau_perfctr *ctr;
	int ret, i;

282 283 284 285 286 287
	nv_ioctl(parent, "create perfctr size %d\n", size);
	if (nvif_unpack(args->v0, 0, 0, false)) {
		nv_ioctl(parent, "create perfctr vers %d logic_op %04x\n",
			 args->v0.version, args->v0.logic_op);
	} else
		return ret;
288

289 290 291 292 293
	for (i = 0; i < ARRAY_SIZE(args->v0.name) && args->v0.name[i][0]; i++) {
		sig[i] = nouveau_perfsig_find(ppm, args->v0.name[i],
					      strnlen(args->v0.name[i],
					      sizeof(args->v0.name[i])),
					      &dom);
294 295 296 297 298 299 300 301 302 303
		if (!sig[i])
			return -EINVAL;
	}

	ret = nouveau_object_create(parent, engine, oclass, 0, &ctr);
	*pobject = nv_object(ctr);
	if (ret)
		return ret;

	ctr->slot = -1;
304
	ctr->logic_op = args->v0.logic_op;
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
	ctr->signal[0] = sig[0];
	ctr->signal[1] = sig[1];
	ctr->signal[2] = sig[2];
	ctr->signal[3] = sig[3];
	if (dom)
		list_add_tail(&ctr->head, &dom->list);
	return 0;
}

static struct nouveau_ofuncs
nouveau_perfctr_ofuncs = {
	.ctor = nouveau_perfctr_ctor,
	.dtor = nouveau_perfctr_dtor,
	.init = nouveau_object_init,
	.fini = nouveau_object_fini,
320
	.mthd = nouveau_perfctr_mthd,
321 322 323
};

struct nouveau_oclass
324
nouveau_pm_sclass[] = {
325
	{ .handle = NVIF_IOCTL_NEW_V0_PERFCTR,
326 327 328 329 330 331 332 333 334 335 336
	  .ofuncs = &nouveau_perfctr_ofuncs,
	},
	{},
};

/*******************************************************************************
 * PPM context
 ******************************************************************************/
static void
nouveau_perfctx_dtor(struct nouveau_object *object)
{
337
	struct nouveau_pm *ppm = (void *)object->engine;
338
	mutex_lock(&nv_subdev(ppm)->mutex);
339
	nouveau_engctx_destroy(&ppm->context->base);
340 341 342 343 344 345 346 347 348 349
	ppm->context = NULL;
	mutex_unlock(&nv_subdev(ppm)->mutex);
}

static int
nouveau_perfctx_ctor(struct nouveau_object *parent,
		     struct nouveau_object *engine,
		     struct nouveau_oclass *oclass, void *data, u32 size,
		     struct nouveau_object **pobject)
{
350
	struct nouveau_pm *ppm = (void *)engine;
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
	struct nouveau_perfctx *ctx;
	int ret;

	ret = nouveau_engctx_create(parent, engine, oclass, NULL,
				    0, 0, 0, &ctx);
	*pobject = nv_object(ctx);
	if (ret)
		return ret;

	mutex_lock(&nv_subdev(ppm)->mutex);
	if (ppm->context == NULL)
		ppm->context = ctx;
	mutex_unlock(&nv_subdev(ppm)->mutex);

	if (ctx != ppm->context)
		return -EBUSY;

	return 0;
}

struct nouveau_oclass
372 373
nouveau_pm_cclass = {
	.handle = NV_ENGCTX(PM, 0x00),
374 375 376 377 378 379 380 381 382 383 384 385
	.ofuncs = &(struct nouveau_ofuncs) {
		.ctor = nouveau_perfctx_ctor,
		.dtor = nouveau_perfctx_dtor,
		.init = _nouveau_engctx_init,
		.fini = _nouveau_engctx_fini,
	},
};

/*******************************************************************************
 * PPM engine/subdev functions
 ******************************************************************************/
int
386
nouveau_perfdom_new(struct nouveau_pm *ppm, const char *name, u32 mask,
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
		    u32 base, u32 size_unit, u32 size_domain,
		    const struct nouveau_specdom *spec)
{
	const struct nouveau_specdom *sdom;
	const struct nouveau_specsig *ssig;
	struct nouveau_perfdom *dom;
	int i;

	for (i = 0; i == 0 || mask; i++) {
		u32 addr = base + (i * size_unit);
		if (i && !(mask & (1 << i)))
			continue;

		sdom = spec;
		while (sdom->signal_nr) {
			dom = kzalloc(sizeof(*dom) + sdom->signal_nr *
				      sizeof(*dom->signal), GFP_KERNEL);
			if (!dom)
				return -ENOMEM;

			if (mask) {
				snprintf(dom->name, sizeof(dom->name),
					 "%s/%02x/%02x", name, i,
					 (int)(sdom - spec));
			} else {
				snprintf(dom->name, sizeof(dom->name),
					 "%s/%02x", name, (int)(sdom - spec));
			}

			list_add_tail(&dom->head, &ppm->domains);
			INIT_LIST_HEAD(&dom->list);
			dom->func = sdom->func;
			dom->addr = addr;
			dom->quad = QUAD_MASK;
			dom->signal_nr = sdom->signal_nr;

			ssig = (sdom++)->signal;
			while (ssig->name) {
				dom->signal[ssig->signal].name = ssig->name;
				ssig++;
			}

			addr += size_domain;
		}

		mask &= ~(1 << i);
	}

	return 0;
}

int
439
_nouveau_pm_fini(struct nouveau_object *object, bool suspend)
440
{
441
	struct nouveau_pm *ppm = (void *)object;
442 443 444 445
	return nouveau_engine_fini(&ppm->base, suspend);
}

int
446
_nouveau_pm_init(struct nouveau_object *object)
447
{
448
	struct nouveau_pm *ppm = (void *)object;
449 450 451 452
	return nouveau_engine_init(&ppm->base);
}

void
453
_nouveau_pm_dtor(struct nouveau_object *object)
454
{
455
	struct nouveau_pm *ppm = (void *)object;
456 457 458 459 460 461 462 463 464 465 466
	struct nouveau_perfdom *dom, *tmp;

	list_for_each_entry_safe(dom, tmp, &ppm->domains, head) {
		list_del(&dom->head);
		kfree(dom);
	}

	nouveau_engine_destroy(&ppm->base);
}

int
467
nouveau_pm_create_(struct nouveau_object *parent,
468 469 470 471
			struct nouveau_object *engine,
			struct nouveau_oclass *oclass,
			int length, void **pobject)
{
472
	struct nouveau_pm *ppm;
473 474 475
	int ret;

	ret = nouveau_engine_create_(parent, engine, oclass, true, "PPM",
476
				     "pm", length, pobject);
477 478 479 480 481 482 483
	ppm = *pobject;
	if (ret)
		return ret;

	INIT_LIST_HEAD(&ppm->domains);
	return 0;
}