coresight-tmc-etf.c 15.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6
/*
 * Copyright(C) 2016 Linaro Limited. All rights reserved.
 * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
 */

7
#include <linux/atomic.h>
8
#include <linux/circ_buf.h>
9
#include <linux/coresight.h>
10
#include <linux/perf_event.h>
11
#include <linux/slab.h>
12 13
#include "coresight-priv.h"
#include "coresight-tmc.h"
14 15 16 17
#include "coresight-etm-perf.h"

static int tmc_set_etf_buffer(struct coresight_device *csdev,
			      struct perf_output_handle *handle);
18

19
static void __tmc_etb_enable_hw(struct tmc_drvdata *drvdata)
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
{
	CS_UNLOCK(drvdata->base);

	/* Wait for TMCSReady bit to be set */
	tmc_wait_for_tmcready(drvdata);

	writel_relaxed(TMC_MODE_CIRCULAR_BUFFER, drvdata->base + TMC_MODE);
	writel_relaxed(TMC_FFCR_EN_FMT | TMC_FFCR_EN_TI |
		       TMC_FFCR_FON_FLIN | TMC_FFCR_FON_TRIG_EVT |
		       TMC_FFCR_TRIGON_TRIGIN,
		       drvdata->base + TMC_FFCR);

	writel_relaxed(drvdata->trigger_cntr, drvdata->base + TMC_TRG);
	tmc_enable_hw(drvdata);

	CS_LOCK(drvdata->base);
}

38 39
static int tmc_etb_enable_hw(struct tmc_drvdata *drvdata)
{
40 41 42 43 44
	int rc = coresight_claim_device(drvdata->base);

	if (rc)
		return rc;

45 46 47 48
	__tmc_etb_enable_hw(drvdata);
	return 0;
}

49 50 51
static void tmc_etb_dump_hw(struct tmc_drvdata *drvdata)
{
	char *bufp;
52
	u32 read_data, lost;
53

54 55
	/* Check if the buffer wrapped around. */
	lost = readl_relaxed(drvdata->base + TMC_STS) & TMC_STS_FULL;
56
	bufp = drvdata->buf;
57
	drvdata->len = 0;
58
	while (1) {
59 60 61 62 63 64
		read_data = readl_relaxed(drvdata->base + TMC_RRD);
		if (read_data == 0xFFFFFFFF)
			break;
		memcpy(bufp, &read_data, 4);
		bufp += 4;
		drvdata->len += 4;
65
	}
66

67 68 69
	if (lost)
		coresight_insert_barrier_packet(drvdata->buf);
	return;
70 71
}

72
static void __tmc_etb_disable_hw(struct tmc_drvdata *drvdata)
73 74 75 76
{
	CS_UNLOCK(drvdata->base);

	tmc_flush_and_stop(drvdata);
77 78 79 80
	/*
	 * When operating in sysFS mode the content of the buffer needs to be
	 * read before the TMC is disabled.
	 */
81
	if (drvdata->mode == CS_MODE_SYSFS)
82
		tmc_etb_dump_hw(drvdata);
83 84 85 86 87
	tmc_disable_hw(drvdata);

	CS_LOCK(drvdata->base);
}

88 89 90
static void tmc_etb_disable_hw(struct tmc_drvdata *drvdata)
{
	__tmc_etb_disable_hw(drvdata);
91
	coresight_disclaim_device(drvdata->base);
92 93
}

94
static void __tmc_etf_enable_hw(struct tmc_drvdata *drvdata)
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
{
	CS_UNLOCK(drvdata->base);

	/* Wait for TMCSReady bit to be set */
	tmc_wait_for_tmcready(drvdata);

	writel_relaxed(TMC_MODE_HARDWARE_FIFO, drvdata->base + TMC_MODE);
	writel_relaxed(TMC_FFCR_EN_FMT | TMC_FFCR_EN_TI,
		       drvdata->base + TMC_FFCR);
	writel_relaxed(0x0, drvdata->base + TMC_BUFWM);
	tmc_enable_hw(drvdata);

	CS_LOCK(drvdata->base);
}

110 111
static int tmc_etf_enable_hw(struct tmc_drvdata *drvdata)
{
112 113 114 115 116
	int rc = coresight_claim_device(drvdata->base);

	if (rc)
		return rc;

117 118 119 120
	__tmc_etf_enable_hw(drvdata);
	return 0;
}

121 122 123 124 125 126
static void tmc_etf_disable_hw(struct tmc_drvdata *drvdata)
{
	CS_UNLOCK(drvdata->base);

	tmc_flush_and_stop(drvdata);
	tmc_disable_hw(drvdata);
127
	coresight_disclaim_device_unlocked(drvdata->base);
128 129 130
	CS_LOCK(drvdata->base);
}

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
/*
 * Return the available trace data in the buffer from @pos, with
 * a maximum limit of @len, updating the @bufpp on where to
 * find it.
 */
ssize_t tmc_etb_get_sysfs_trace(struct tmc_drvdata *drvdata,
				loff_t pos, size_t len, char **bufpp)
{
	ssize_t actual = len;

	/* Adjust the len to available size @pos */
	if (pos + actual > drvdata->len)
		actual = drvdata->len - pos;
	if (actual > 0)
		*bufpp = drvdata->buf + pos;
	return actual;
}

149
static int tmc_enable_etf_sink_sysfs(struct coresight_device *csdev)
150
{
151 152 153
	int ret = 0;
	bool used = false;
	char *buf = NULL;
154 155 156
	unsigned long flags;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);

157 158 159 160
	/*
	 * If we don't have a buffer release the lock and allocate memory.
	 * Otherwise keep the lock and move along.
	 */
161
	spin_lock_irqsave(&drvdata->spinlock, flags);
162
	if (!drvdata->buf) {
163
		spin_unlock_irqrestore(&drvdata->spinlock, flags);
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178

		/* Allocating the memory here while outside of the spinlock */
		buf = kzalloc(drvdata->size, GFP_KERNEL);
		if (!buf)
			return -ENOMEM;

		/* Let's try again */
		spin_lock_irqsave(&drvdata->spinlock, flags);
	}

	if (drvdata->reading) {
		ret = -EBUSY;
		goto out;
	}

179 180 181 182 183
	/*
	 * In sysFS mode we can have multiple writers per sink.  Since this
	 * sink is already enabled no memory is needed and the HW need not be
	 * touched.
	 */
184 185
	if (drvdata->mode == CS_MODE_SYSFS) {
		atomic_inc(csdev->refcnt);
186
		goto out;
187
	}
188

189 190 191 192 193 194 195 196 197 198 199 200 201 202
	/*
	 * If drvdata::buf isn't NULL, memory was allocated for a previous
	 * trace run but wasn't read.  If so simply zero-out the memory.
	 * Otherwise use the memory allocated above.
	 *
	 * The memory is freed when users read the buffer using the
	 * /dev/xyz.{etf|etb} interface.  See tmc_read_unprepare_etf() for
	 * details.
	 */
	if (drvdata->buf) {
		memset(drvdata->buf, 0, drvdata->size);
	} else {
		used = true;
		drvdata->buf = buf;
203 204
	}

205
	ret = tmc_etb_enable_hw(drvdata);
206
	if (!ret) {
207
		drvdata->mode = CS_MODE_SYSFS;
208 209
		atomic_inc(csdev->refcnt);
	} else {
210 211
		/* Free up the buffer if we failed to enable */
		used = false;
212
	}
213
out:
214 215
	spin_unlock_irqrestore(&drvdata->spinlock, flags);

216
	/* Free memory outside the spinlock if need be */
217
	if (!used)
218 219 220
		kfree(buf);

	return ret;
221 222
}

223
static int tmc_enable_etf_sink_perf(struct coresight_device *csdev, void *data)
224 225 226 227
{
	int ret = 0;
	unsigned long flags;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
228
	struct perf_output_handle *handle = data;
229 230

	spin_lock_irqsave(&drvdata->spinlock, flags);
231
	do {
232
		ret = -EINVAL;
233 234 235 236 237 238 239 240 241
		if (drvdata->reading)
			break;
		/*
		 * In Perf mode there can be only one writer per sink.  There
		 * is also no need to continue if the ETB/ETF is already
		 * operated from sysFS.
		 */
		if (drvdata->mode != CS_MODE_DISABLED)
			break;
242

243 244 245 246
		ret = tmc_set_etf_buffer(csdev, handle);
		if (ret)
			break;
		ret  = tmc_etb_enable_hw(drvdata);
247
		if (!ret) {
248
			drvdata->mode = CS_MODE_PERF;
249 250
			atomic_inc(csdev->refcnt);
		}
251
	} while (0);
252 253 254 255 256
	spin_unlock_irqrestore(&drvdata->spinlock, flags);

	return ret;
}

257 258
static int tmc_enable_etf_sink(struct coresight_device *csdev,
			       u32 mode, void *data)
259
{
260 261 262
	int ret;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);

263 264
	switch (mode) {
	case CS_MODE_SYSFS:
265 266
		ret = tmc_enable_etf_sink_sysfs(csdev);
		break;
267
	case CS_MODE_PERF:
268
		ret = tmc_enable_etf_sink_perf(csdev, data);
269 270 271 272 273
		break;
	/* We shouldn't be here */
	default:
		ret = -EINVAL;
		break;
274 275
	}

276 277 278
	if (ret)
		return ret;

279
	dev_dbg(drvdata->dev, "TMC-ETB/ETF enabled\n");
280
	return 0;
281 282
}

283
static int tmc_disable_etf_sink(struct coresight_device *csdev)
284 285 286 287 288
{
	unsigned long flags;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);

	spin_lock_irqsave(&drvdata->spinlock, flags);
289

290 291
	if (drvdata->reading) {
		spin_unlock_irqrestore(&drvdata->spinlock, flags);
292
		return -EBUSY;
293 294
	}

295 296 297 298 299
	if (atomic_dec_return(csdev->refcnt)) {
		spin_unlock_irqrestore(&drvdata->spinlock, flags);
		return -EBUSY;
	}

300 301 302 303
	/* Complain if we (somehow) got out of sync */
	WARN_ON_ONCE(drvdata->mode == CS_MODE_DISABLED);
	tmc_etb_disable_hw(drvdata);
	drvdata->mode = CS_MODE_DISABLED;
304

305 306
	spin_unlock_irqrestore(&drvdata->spinlock, flags);

307
	dev_dbg(drvdata->dev, "TMC-ETB/ETF disabled\n");
308
	return 0;
309 310 311 312 313
}

static int tmc_enable_etf_link(struct coresight_device *csdev,
			       int inport, int outport)
{
314
	int ret;
315 316 317 318 319 320 321 322 323
	unsigned long flags;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);

	spin_lock_irqsave(&drvdata->spinlock, flags);
	if (drvdata->reading) {
		spin_unlock_irqrestore(&drvdata->spinlock, flags);
		return -EBUSY;
	}

324 325 326
	ret = tmc_etf_enable_hw(drvdata);
	if (!ret)
		drvdata->mode = CS_MODE_SYSFS;
327 328
	spin_unlock_irqrestore(&drvdata->spinlock, flags);

329 330 331
	if (!ret)
		dev_dbg(drvdata->dev, "TMC-ETF enabled\n");
	return ret;
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
}

static void tmc_disable_etf_link(struct coresight_device *csdev,
				 int inport, int outport)
{
	unsigned long flags;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);

	spin_lock_irqsave(&drvdata->spinlock, flags);
	if (drvdata->reading) {
		spin_unlock_irqrestore(&drvdata->spinlock, flags);
		return;
	}

	tmc_etf_disable_hw(drvdata);
347
	drvdata->mode = CS_MODE_DISABLED;
348 349
	spin_unlock_irqrestore(&drvdata->spinlock, flags);

350
	dev_dbg(drvdata->dev, "TMC-ETF disabled\n");
351 352
}

353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
static void *tmc_alloc_etf_buffer(struct coresight_device *csdev, int cpu,
				  void **pages, int nr_pages, bool overwrite)
{
	int node;
	struct cs_buffers *buf;

	if (cpu == -1)
		cpu = smp_processor_id();
	node = cpu_to_node(cpu);

	/* Allocate memory structure for interaction with Perf */
	buf = kzalloc_node(sizeof(struct cs_buffers), GFP_KERNEL, node);
	if (!buf)
		return NULL;

	buf->snapshot = overwrite;
	buf->nr_pages = nr_pages;
	buf->data_pages = pages;

	return buf;
}

static void tmc_free_etf_buffer(void *config)
{
	struct cs_buffers *buf = config;

	kfree(buf);
}

static int tmc_set_etf_buffer(struct coresight_device *csdev,
383
			      struct perf_output_handle *handle)
384 385 386
{
	int ret = 0;
	unsigned long head;
387 388 389 390
	struct cs_buffers *buf = etm_perf_sink_config(handle);

	if (!buf)
		return -EINVAL;
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405

	/* wrap head around to the amount of space we have */
	head = handle->head & ((buf->nr_pages << PAGE_SHIFT) - 1);

	/* find the page to write to */
	buf->cur = head / PAGE_SIZE;

	/* and offset within that page */
	buf->offset = head % PAGE_SIZE;

	local_set(&buf->data_size, 0);

	return ret;
}

406
static unsigned long tmc_update_etf_buffer(struct coresight_device *csdev,
407 408 409
				  struct perf_output_handle *handle,
				  void *sink_config)
{
410
	bool lost = false;
411
	int i, cur;
412
	const u32 *barrier;
413
	u32 *buf_ptr;
414
	u64 read_ptr, write_ptr;
415 416
	u32 status;
	unsigned long offset, to_read;
417 418 419 420
	struct cs_buffers *buf = sink_config;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);

	if (!buf)
421
		return 0;
422 423

	/* This shouldn't happen */
424
	if (WARN_ON_ONCE(drvdata->mode != CS_MODE_PERF))
425
		return 0;
426 427 428 429 430

	CS_UNLOCK(drvdata->base);

	tmc_flush_and_stop(drvdata);

431 432
	read_ptr = tmc_read_rrp(drvdata);
	write_ptr = tmc_read_rwp(drvdata);
433 434 435 436 437 438 439

	/*
	 * Get a hold of the status register and see if a wrap around
	 * has occurred.  If so adjust things accordingly.
	 */
	status = readl_relaxed(drvdata->base + TMC_STS);
	if (status & TMC_STS_FULL) {
440
		lost = true;
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
		to_read = drvdata->size;
	} else {
		to_read = CIRC_CNT(write_ptr, read_ptr, drvdata->size);
	}

	/*
	 * The TMC RAM buffer may be bigger than the space available in the
	 * perf ring buffer (handle->size).  If so advance the RRP so that we
	 * get the latest trace data.
	 */
	if (to_read > handle->size) {
		u32 mask = 0;

		/*
		 * The value written to RRP must be byte-address aligned to
		 * the width of the trace memory databus _and_ to a frame
		 * boundary (16 byte), whichever is the biggest. For example,
		 * for 32-bit, 64-bit and 128-bit wide trace memory, the four
		 * LSBs must be 0s. For 256-bit wide trace memory, the five
		 * LSBs must be 0s.
		 */
		switch (drvdata->memwidth) {
		case TMC_MEM_INTF_WIDTH_32BITS:
		case TMC_MEM_INTF_WIDTH_64BITS:
		case TMC_MEM_INTF_WIDTH_128BITS:
466
			mask = GENMASK(31, 4);
467 468
			break;
		case TMC_MEM_INTF_WIDTH_256BITS:
469
			mask = GENMASK(31, 5);
470 471 472 473 474 475 476 477 478 479 480 481 482 483
			break;
		}

		/*
		 * Make sure the new size is aligned in accordance with the
		 * requirement explained above.
		 */
		to_read = handle->size & mask;
		/* Move the RAM read pointer up */
		read_ptr = (write_ptr + drvdata->size) - to_read;
		/* Make sure we are still within our limits */
		if (read_ptr > (drvdata->size - 1))
			read_ptr -= drvdata->size;
		/* Tell the HW */
484
		tmc_write_rrp(drvdata, read_ptr);
485
		lost = true;
486 487
	}

488 489 490
	if (lost)
		perf_aux_output_flag(handle, PERF_AUX_FLAG_TRUNCATED);

491 492
	cur = buf->cur;
	offset = buf->offset;
493
	barrier = barrier_pkt;
494 495 496 497 498 499

	/* for every byte to read */
	for (i = 0; i < to_read; i += 4) {
		buf_ptr = buf->data_pages[cur] + offset;
		*buf_ptr = readl_relaxed(drvdata->base + TMC_RRD);

500 501 502 503 504
		if (lost && *barrier) {
			*buf_ptr = *barrier;
			barrier++;
		}

505 506 507 508 509 510 511 512 513
		offset += 4;
		if (offset >= PAGE_SIZE) {
			offset = 0;
			cur++;
			/* wrap around at the end of the buffer */
			cur &= buf->nr_pages - 1;
		}
	}

514 515 516 517 518
	/* In snapshot mode we have to update the head */
	if (buf->snapshot) {
		handle->head = (cur * PAGE_SIZE) + offset;
		to_read = buf->nr_pages << PAGE_SHIFT;
	}
519
	CS_LOCK(drvdata->base);
520 521

	return to_read;
522 523
}

524 525 526
static const struct coresight_ops_sink tmc_etf_sink_ops = {
	.enable		= tmc_enable_etf_sink,
	.disable	= tmc_disable_etf_sink,
527 528 529
	.alloc_buffer	= tmc_alloc_etf_buffer,
	.free_buffer	= tmc_free_etf_buffer,
	.update_buffer	= tmc_update_etf_buffer,
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
};

static const struct coresight_ops_link tmc_etf_link_ops = {
	.enable		= tmc_enable_etf_link,
	.disable	= tmc_disable_etf_link,
};

const struct coresight_ops tmc_etb_cs_ops = {
	.sink_ops	= &tmc_etf_sink_ops,
};

const struct coresight_ops tmc_etf_cs_ops = {
	.sink_ops	= &tmc_etf_sink_ops,
	.link_ops	= &tmc_etf_link_ops,
};
545 546 547 548 549 550 551 552 553 554 555 556 557 558

int tmc_read_prepare_etb(struct tmc_drvdata *drvdata)
{
	enum tmc_mode mode;
	int ret = 0;
	unsigned long flags;

	/* config types are set a boot time and never change */
	if (WARN_ON_ONCE(drvdata->config_type != TMC_CONFIG_TYPE_ETB &&
			 drvdata->config_type != TMC_CONFIG_TYPE_ETF))
		return -EINVAL;

	spin_lock_irqsave(&drvdata->spinlock, flags);

559 560 561 562 563
	if (drvdata->reading) {
		ret = -EBUSY;
		goto out;
	}

564 565 566 567 568 569 570
	/* There is no point in reading a TMC in HW FIFO mode */
	mode = readl_relaxed(drvdata->base + TMC_MODE);
	if (mode != TMC_MODE_CIRCULAR_BUFFER) {
		ret = -EINVAL;
		goto out;
	}

571
	/* Don't interfere if operated from Perf */
572
	if (drvdata->mode == CS_MODE_PERF) {
573 574 575 576
		ret = -EINVAL;
		goto out;
	}

577 578 579 580 581 582
	/* If drvdata::buf is NULL the trace data has been read already */
	if (drvdata->buf == NULL) {
		ret = -EINVAL;
		goto out;
	}

583
	/* Disable the TMC if need be */
584
	if (drvdata->mode == CS_MODE_SYSFS)
585
		__tmc_etb_disable_hw(drvdata);
586 587 588 589 590 591 592 593 594 595

	drvdata->reading = true;
out:
	spin_unlock_irqrestore(&drvdata->spinlock, flags);

	return ret;
}

int tmc_read_unprepare_etb(struct tmc_drvdata *drvdata)
{
596
	char *buf = NULL;
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
	enum tmc_mode mode;
	unsigned long flags;

	/* config types are set a boot time and never change */
	if (WARN_ON_ONCE(drvdata->config_type != TMC_CONFIG_TYPE_ETB &&
			 drvdata->config_type != TMC_CONFIG_TYPE_ETF))
		return -EINVAL;

	spin_lock_irqsave(&drvdata->spinlock, flags);

	/* There is no point in reading a TMC in HW FIFO mode */
	mode = readl_relaxed(drvdata->base + TMC_MODE);
	if (mode != TMC_MODE_CIRCULAR_BUFFER) {
		spin_unlock_irqrestore(&drvdata->spinlock, flags);
		return -EINVAL;
	}

	/* Re-enable the TMC if need be */
615
	if (drvdata->mode == CS_MODE_SYSFS) {
616 617 618 619 620 621 622 623 624
		/*
		 * The trace run will continue with the same allocated trace
		 * buffer. As such zero-out the buffer so that we don't end
		 * up with stale data.
		 *
		 * Since the tracer is still enabled drvdata::buf
		 * can't be NULL.
		 */
		memset(drvdata->buf, 0, drvdata->size);
625
		__tmc_etb_enable_hw(drvdata);
626 627 628 629 630 631 632 633
	} else {
		/*
		 * The ETB/ETF is not tracing and the buffer was just read.
		 * As such prepare to free the trace buffer.
		 */
		buf = drvdata->buf;
		drvdata->buf = NULL;
	}
634 635 636 637

	drvdata->reading = false;
	spin_unlock_irqrestore(&drvdata->spinlock, flags);

638 639 640 641 642 643
	/*
	 * Free allocated memory outside of the spinlock.  There is no need
	 * to assert the validity of 'buf' since calling kfree(NULL) is safe.
	 */
	kfree(buf);

644 645
	return 0;
}