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

7
#include <linux/pid_namespace.h>
8 9 10
#include <linux/pm_runtime.h>
#include <linux/sysfs.h>
#include "coresight-etm4x.h"
11
#include "coresight-priv.h"
12 13 14

static int etm4_set_mode_exclude(struct etmv4_drvdata *drvdata, bool exclude)
{
15 16 17 18
	u8 idx;
	struct etmv4_config *config = &drvdata->config;

	idx = config->addr_idx;
19 20 21 22 23

	/*
	 * TRCACATRn.TYPE bit[1:0]: type of comparison
	 * the trace unit performs
	 */
24
	if (BMVAL(config->addr_acc[idx], 0, 1) == ETM_INSTR_ADDR) {
25 26 27 28 29 30 31 32
		if (idx % 2 != 0)
			return -EINVAL;

		/*
		 * We are performing instruction address comparison. Set the
		 * relevant bit of ViewInst Include/Exclude Control register
		 * for corresponding address comparator pair.
		 */
33 34
		if (config->addr_type[idx] != ETM_ADDR_TYPE_RANGE ||
		    config->addr_type[idx + 1] != ETM_ADDR_TYPE_RANGE)
35 36 37 38 39 40 41
			return -EINVAL;

		if (exclude == true) {
			/*
			 * Set exclude bit and unset the include bit
			 * corresponding to comparator pair
			 */
42 43
			config->viiectlr |= BIT(idx / 2 + 16);
			config->viiectlr &= ~BIT(idx / 2);
44 45 46 47 48
		} else {
			/*
			 * Set include bit and unset exclude bit
			 * corresponding to comparator pair
			 */
49 50
			config->viiectlr |= BIT(idx / 2);
			config->viiectlr &= ~BIT(idx / 2 + 16);
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
		}
	}
	return 0;
}

static ssize_t nr_pe_cmp_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->nr_pe_cmp;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(nr_pe_cmp);

static ssize_t nr_addr_cmp_show(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->nr_addr_cmp;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(nr_addr_cmp);

static ssize_t nr_cntr_show(struct device *dev,
			    struct device_attribute *attr,
			    char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->nr_cntr;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(nr_cntr);

static ssize_t nr_ext_inp_show(struct device *dev,
			       struct device_attribute *attr,
			       char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->nr_ext_inp;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(nr_ext_inp);

static ssize_t numcidc_show(struct device *dev,
			    struct device_attribute *attr,
			    char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->numcidc;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(numcidc);

static ssize_t numvmidc_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->numvmidc;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(numvmidc);

static ssize_t nrseqstate_show(struct device *dev,
			       struct device_attribute *attr,
			       char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->nrseqstate;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(nrseqstate);

static ssize_t nr_resource_show(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->nr_resource;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(nr_resource);

static ssize_t nr_ss_cmp_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->nr_ss_cmp;
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}
static DEVICE_ATTR_RO(nr_ss_cmp);

static ssize_t reset_store(struct device *dev,
			   struct device_attribute *attr,
			   const char *buf, size_t size)
{
	int i;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
171
	struct etmv4_config *config = &drvdata->config;
172 173 174 175 176 177

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	if (val)
178
		config->mode = 0x0;
179 180

	/* Disable data tracing: do not trace load and store data transfers */
181 182
	config->mode &= ~(ETM_MODE_LOAD | ETM_MODE_STORE);
	config->cfg &= ~(BIT(1) | BIT(2));
183 184

	/* Disable data value and data address tracing */
185
	config->mode &= ~(ETM_MODE_DATA_TRACE_ADDR |
186
			   ETM_MODE_DATA_TRACE_VAL);
187
	config->cfg &= ~(BIT(16) | BIT(17));
188 189

	/* Disable all events tracing */
190 191
	config->eventctrl0 = 0x0;
	config->eventctrl1 = 0x0;
192 193

	/* Disable timestamp event */
194
	config->ts_ctrl = 0x0;
195 196

	/* Disable stalling */
197
	config->stall_ctrl = 0x0;
198 199 200

	/* Reset trace synchronization period  to 2^8 = 256 bytes*/
	if (drvdata->syncpr == false)
201
		config->syncfreq = 0x8;
202 203 204 205 206 207

	/*
	 * Enable ViewInst to trace everything with start-stop logic in
	 * started state. ARM recommends start-stop logic is set before
	 * each trace run.
	 */
208
	config->vinst_ctrl |= BIT(0);
209
	if (drvdata->nr_addr_cmp == true) {
210
		config->mode |= ETM_MODE_VIEWINST_STARTSTOP;
211
		/* SSSTATUS, bit[9] */
212
		config->vinst_ctrl |= BIT(9);
213 214 215
	}

	/* No address range filtering for ViewInst */
216
	config->viiectlr = 0x0;
217 218

	/* No start-stop filtering for ViewInst */
219
	config->vissctlr = 0x0;
220 221 222

	/* Disable seq events */
	for (i = 0; i < drvdata->nrseqstate-1; i++)
223 224 225
		config->seq_ctrl[i] = 0x0;
	config->seq_rst = 0x0;
	config->seq_state = 0x0;
226 227

	/* Disable external input events */
228
	config->ext_inp = 0x0;
229

230
	config->cntr_idx = 0x0;
231
	for (i = 0; i < drvdata->nr_cntr; i++) {
232 233 234
		config->cntrldvr[i] = 0x0;
		config->cntr_ctrl[i] = 0x0;
		config->cntr_val[i] = 0x0;
235 236
	}

237
	config->res_idx = 0x0;
238
	for (i = 0; i < drvdata->nr_resource; i++)
239
		config->res_ctrl[i] = 0x0;
240 241

	for (i = 0; i < drvdata->nr_ss_cmp; i++) {
242 243
		config->ss_ctrl[i] = 0x0;
		config->ss_pe_cmp[i] = 0x0;
244 245
	}

246
	config->addr_idx = 0x0;
247
	for (i = 0; i < drvdata->nr_addr_cmp * 2; i++) {
248 249 250
		config->addr_val[i] = 0x0;
		config->addr_acc[i] = 0x0;
		config->addr_type[i] = ETM_ADDR_TYPE_NONE;
251 252
	}

253
	config->ctxid_idx = 0x0;
254
	for (i = 0; i < drvdata->numcidc; i++)
255
		config->ctxid_pid[i] = 0x0;
256

257 258
	config->ctxid_mask0 = 0x0;
	config->ctxid_mask1 = 0x0;
259

260
	config->vmid_idx = 0x0;
261
	for (i = 0; i < drvdata->numvmidc; i++)
262 263 264
		config->vmid_val[i] = 0x0;
	config->vmid_mask0 = 0x0;
	config->vmid_mask1 = 0x0;
265 266

	drvdata->trcid = drvdata->cpu + 1;
267

268
	spin_unlock(&drvdata->spinlock);
269

270 271 272 273 274 275 276 277 278 279
	return size;
}
static DEVICE_ATTR_WO(reset);

static ssize_t mode_show(struct device *dev,
			 struct device_attribute *attr,
			 char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
280
	struct etmv4_config *config = &drvdata->config;
281

282
	val = config->mode;
283 284 285 286 287 288 289 290 291
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t mode_store(struct device *dev,
			  struct device_attribute *attr,
			  const char *buf, size_t size)
{
	unsigned long val, mode;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
292
	struct etmv4_config *config = &drvdata->config;
293 294 295 296 297

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
298
	config->mode = val & ETMv4_MODE_ALL;
299 300
	etm4_set_mode_exclude(drvdata,
			      config->mode & ETM_MODE_EXCLUDE ? true : false);
301 302 303

	if (drvdata->instrp0 == true) {
		/* start by clearing instruction P0 field */
304 305
		config->cfg  &= ~(BIT(1) | BIT(2));
		if (config->mode & ETM_MODE_LOAD)
306
			/* 0b01 Trace load instructions as P0 instructions */
307 308
			config->cfg  |= BIT(1);
		if (config->mode & ETM_MODE_STORE)
309
			/* 0b10 Trace store instructions as P0 instructions */
310 311
			config->cfg  |= BIT(2);
		if (config->mode & ETM_MODE_LOAD_STORE)
312 313 314 315
			/*
			 * 0b11 Trace load and store instructions
			 * as P0 instructions
			 */
316
			config->cfg  |= BIT(1) | BIT(2);
317 318 319
	}

	/* bit[3], Branch broadcast mode */
320 321
	if ((config->mode & ETM_MODE_BB) && (drvdata->trcbb == true))
		config->cfg |= BIT(3);
322
	else
323
		config->cfg &= ~BIT(3);
324 325

	/* bit[4], Cycle counting instruction trace bit */
326
	if ((config->mode & ETMv4_MODE_CYCACC) &&
327
		(drvdata->trccci == true))
328
		config->cfg |= BIT(4);
329
	else
330
		config->cfg &= ~BIT(4);
331 332

	/* bit[6], Context ID tracing bit */
333 334
	if ((config->mode & ETMv4_MODE_CTXID) && (drvdata->ctxid_size))
		config->cfg |= BIT(6);
335
	else
336
		config->cfg &= ~BIT(6);
337

338 339
	if ((config->mode & ETM_MODE_VMID) && (drvdata->vmid_size))
		config->cfg |= BIT(7);
340
	else
341
		config->cfg &= ~BIT(7);
342 343

	/* bits[10:8], Conditional instruction tracing bit */
344
	mode = ETM_MODE_COND(config->mode);
345
	if (drvdata->trccond == true) {
346 347
		config->cfg &= ~(BIT(8) | BIT(9) | BIT(10));
		config->cfg |= mode << 8;
348 349 350
	}

	/* bit[11], Global timestamp tracing bit */
351 352
	if ((config->mode & ETMv4_MODE_TIMESTAMP) && (drvdata->ts_size))
		config->cfg |= BIT(11);
353
	else
354
		config->cfg &= ~BIT(11);
355 356

	/* bit[12], Return stack enable bit */
357 358 359
	if ((config->mode & ETM_MODE_RETURNSTACK) &&
					(drvdata->retstack == true))
		config->cfg |= BIT(12);
360
	else
361
		config->cfg &= ~BIT(12);
362 363

	/* bits[14:13], Q element enable field */
364
	mode = ETM_MODE_QELEM(config->mode);
365
	/* start by clearing QE bits */
366
	config->cfg &= ~(BIT(13) | BIT(14));
367 368
	/* if supported, Q elements with instruction counts are enabled */
	if ((mode & BIT(0)) && (drvdata->q_support & BIT(0)))
369
		config->cfg |= BIT(13);
370 371 372 373 374
	/*
	 * if supported, Q elements with and without instruction
	 * counts are enabled
	 */
	if ((mode & BIT(1)) && (drvdata->q_support & BIT(1)))
375
		config->cfg |= BIT(14);
376 377

	/* bit[11], AMBA Trace Bus (ATB) trigger enable bit */
378
	if ((config->mode & ETM_MODE_ATB_TRIGGER) &&
379
	    (drvdata->atbtrig == true))
380
		config->eventctrl1 |= BIT(11);
381
	else
382
		config->eventctrl1 &= ~BIT(11);
383 384

	/* bit[12], Low-power state behavior override bit */
385
	if ((config->mode & ETM_MODE_LPOVERRIDE) &&
386
	    (drvdata->lpoverride == true))
387
		config->eventctrl1 |= BIT(12);
388
	else
389
		config->eventctrl1 &= ~BIT(12);
390 391

	/* bit[8], Instruction stall bit */
392 393
	if (config->mode & ETM_MODE_ISTALL_EN)
		config->stall_ctrl |= BIT(8);
394
	else
395
		config->stall_ctrl &= ~BIT(8);
396 397

	/* bit[10], Prioritize instruction trace bit */
398 399
	if (config->mode & ETM_MODE_INSTPRIO)
		config->stall_ctrl |= BIT(10);
400
	else
401
		config->stall_ctrl &= ~BIT(10);
402 403

	/* bit[13], Trace overflow prevention bit */
404
	if ((config->mode & ETM_MODE_NOOVERFLOW) &&
405
		(drvdata->nooverflow == true))
406
		config->stall_ctrl |= BIT(13);
407
	else
408
		config->stall_ctrl &= ~BIT(13);
409 410

	/* bit[9] Start/stop logic control bit */
411 412
	if (config->mode & ETM_MODE_VIEWINST_STARTSTOP)
		config->vinst_ctrl |= BIT(9);
413
	else
414
		config->vinst_ctrl &= ~BIT(9);
415 416

	/* bit[10], Whether a trace unit must trace a Reset exception */
417 418
	if (config->mode & ETM_MODE_TRACE_RESET)
		config->vinst_ctrl |= BIT(10);
419
	else
420
		config->vinst_ctrl &= ~BIT(10);
421 422

	/* bit[11], Whether a trace unit must trace a system error exception */
423
	if ((config->mode & ETM_MODE_TRACE_ERR) &&
424
		(drvdata->trc_error == true))
425
		config->vinst_ctrl |= BIT(11);
426
	else
427
		config->vinst_ctrl &= ~BIT(11);
428

429 430 431
	if (config->mode & (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER))
		etm4_config_trace_mode(config);

432
	spin_unlock(&drvdata->spinlock);
433

434 435 436 437 438 439 440 441 442 443
	return size;
}
static DEVICE_ATTR_RW(mode);

static ssize_t pe_show(struct device *dev,
		       struct device_attribute *attr,
		       char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
444
	struct etmv4_config *config = &drvdata->config;
445

446
	val = config->pe_sel;
447 448 449 450 451 452 453 454 455
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t pe_store(struct device *dev,
			struct device_attribute *attr,
			const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
456
	struct etmv4_config *config = &drvdata->config;
457 458 459 460 461 462 463 464 465 466

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	if (val > drvdata->nr_pe) {
		spin_unlock(&drvdata->spinlock);
		return -EINVAL;
	}

467
	config->pe_sel = val;
468 469 470 471 472 473 474 475 476 477 478
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(pe);

static ssize_t event_show(struct device *dev,
			  struct device_attribute *attr,
			  char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
479
	struct etmv4_config *config = &drvdata->config;
480

481
	val = config->eventctrl0;
482 483 484 485 486 487 488 489 490
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t event_store(struct device *dev,
			   struct device_attribute *attr,
			   const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
491
	struct etmv4_config *config = &drvdata->config;
492 493 494 495 496 497 498 499

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	switch (drvdata->nr_event) {
	case 0x0:
		/* EVENT0, bits[7:0] */
500
		config->eventctrl0 = val & 0xFF;
501 502 503
		break;
	case 0x1:
		 /* EVENT1, bits[15:8] */
504
		config->eventctrl0 = val & 0xFFFF;
505 506 507
		break;
	case 0x2:
		/* EVENT2, bits[23:16] */
508
		config->eventctrl0 = val & 0xFFFFFF;
509 510 511
		break;
	case 0x3:
		/* EVENT3, bits[31:24] */
512
		config->eventctrl0 = val;
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
		break;
	default:
		break;
	}
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(event);

static ssize_t event_instren_show(struct device *dev,
				  struct device_attribute *attr,
				  char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
528
	struct etmv4_config *config = &drvdata->config;
529

530
	val = BMVAL(config->eventctrl1, 0, 3);
531 532 533 534 535 536 537 538 539
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t event_instren_store(struct device *dev,
				   struct device_attribute *attr,
				   const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
540
	struct etmv4_config *config = &drvdata->config;
541 542 543 544 545 546

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	/* start by clearing all instruction event enable bits */
547
	config->eventctrl1 &= ~(BIT(0) | BIT(1) | BIT(2) | BIT(3));
548 549 550
	switch (drvdata->nr_event) {
	case 0x0:
		/* generate Event element for event 1 */
551
		config->eventctrl1 |= val & BIT(1);
552 553 554
		break;
	case 0x1:
		/* generate Event element for event 1 and 2 */
555
		config->eventctrl1 |= val & (BIT(0) | BIT(1));
556 557 558
		break;
	case 0x2:
		/* generate Event element for event 1, 2 and 3 */
559
		config->eventctrl1 |= val & (BIT(0) | BIT(1) | BIT(2));
560 561 562
		break;
	case 0x3:
		/* generate Event element for all 4 events */
563
		config->eventctrl1 |= val & 0xF;
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
		break;
	default:
		break;
	}
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(event_instren);

static ssize_t event_ts_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
579
	struct etmv4_config *config = &drvdata->config;
580

581
	val = config->ts_ctrl;
582 583 584 585 586 587 588 589 590
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t event_ts_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
591
	struct etmv4_config *config = &drvdata->config;
592 593 594 595 596 597

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (!drvdata->ts_size)
		return -EINVAL;

598
	config->ts_ctrl = val & ETMv4_EVENT_MASK;
599 600 601 602 603 604 605 606 607 608
	return size;
}
static DEVICE_ATTR_RW(event_ts);

static ssize_t syncfreq_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
609
	struct etmv4_config *config = &drvdata->config;
610

611
	val = config->syncfreq;
612 613 614 615 616 617 618 619 620
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t syncfreq_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
621
	struct etmv4_config *config = &drvdata->config;
622 623 624 625 626 627

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (drvdata->syncpr == true)
		return -EINVAL;

628
	config->syncfreq = val & ETMv4_SYNC_MASK;
629 630 631 632 633 634 635 636 637 638
	return size;
}
static DEVICE_ATTR_RW(syncfreq);

static ssize_t cyc_threshold_show(struct device *dev,
				  struct device_attribute *attr,
				  char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
639
	struct etmv4_config *config = &drvdata->config;
640

641
	val = config->ccctlr;
642 643 644 645 646 647 648 649 650
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t cyc_threshold_store(struct device *dev,
				   struct device_attribute *attr,
				   const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
651
	struct etmv4_config *config = &drvdata->config;
652 653 654 655 656 657

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val < drvdata->ccitmin)
		return -EINVAL;

658
	config->ccctlr = val & ETM_CYC_THRESHOLD_MASK;
659 660 661 662 663 664 665 666 667 668
	return size;
}
static DEVICE_ATTR_RW(cyc_threshold);

static ssize_t bb_ctrl_show(struct device *dev,
			    struct device_attribute *attr,
			    char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
669
	struct etmv4_config *config = &drvdata->config;
670

671
	val = config->bb_ctrl;
672 673 674 675 676 677 678 679 680
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t bb_ctrl_store(struct device *dev,
			     struct device_attribute *attr,
			     const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
681
	struct etmv4_config *config = &drvdata->config;
682 683 684 685 686 687 688 689 690 691 692 693 694 695

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (drvdata->trcbb == false)
		return -EINVAL;
	if (!drvdata->nr_addr_cmp)
		return -EINVAL;
	/*
	 * Bit[7:0] selects which address range comparator is used for
	 * branch broadcast control.
	 */
	if (BMVAL(val, 0, 7) > drvdata->nr_addr_cmp)
		return -EINVAL;

696
	config->bb_ctrl = val;
697 698 699 700 701 702 703 704 705 706
	return size;
}
static DEVICE_ATTR_RW(bb_ctrl);

static ssize_t event_vinst_show(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
707
	struct etmv4_config *config = &drvdata->config;
708

709
	val = config->vinst_ctrl & ETMv4_EVENT_MASK;
710 711 712 713 714 715 716 717 718
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t event_vinst_store(struct device *dev,
				 struct device_attribute *attr,
				 const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
719
	struct etmv4_config *config = &drvdata->config;
720 721 722 723 724 725

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	val &= ETMv4_EVENT_MASK;
726 727
	config->vinst_ctrl &= ~ETMv4_EVENT_MASK;
	config->vinst_ctrl |= val;
728 729 730 731 732 733 734 735 736 737 738
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(event_vinst);

static ssize_t s_exlevel_vinst_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
739
	struct etmv4_config *config = &drvdata->config;
740

741
	val = BMVAL(config->vinst_ctrl, 16, 19);
742 743 744 745 746 747 748 749 750
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t s_exlevel_vinst_store(struct device *dev,
				     struct device_attribute *attr,
				     const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
751
	struct etmv4_config *config = &drvdata->config;
752 753 754 755 756 757

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	/* clear all EXLEVEL_S bits (bit[18] is never implemented) */
758
	config->vinst_ctrl &= ~(BIT(16) | BIT(17) | BIT(19));
759 760
	/* enable instruction tracing for corresponding exception level */
	val &= drvdata->s_ex_level;
761
	config->vinst_ctrl |= (val << 16);
762 763 764 765 766 767 768 769 770 771 772
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(s_exlevel_vinst);

static ssize_t ns_exlevel_vinst_show(struct device *dev,
				     struct device_attribute *attr,
				     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
773
	struct etmv4_config *config = &drvdata->config;
774 775

	/* EXLEVEL_NS, bits[23:20] */
776
	val = BMVAL(config->vinst_ctrl, 20, 23);
777 778 779 780 781 782 783 784 785
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t ns_exlevel_vinst_store(struct device *dev,
				      struct device_attribute *attr,
				      const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
786
	struct etmv4_config *config = &drvdata->config;
787 788 789 790 791 792

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	/* clear EXLEVEL_NS bits (bit[23] is never implemented */
793
	config->vinst_ctrl &= ~(BIT(20) | BIT(21) | BIT(22));
794 795
	/* enable instruction tracing for corresponding exception level */
	val &= drvdata->ns_ex_level;
796
	config->vinst_ctrl |= (val << 20);
797 798 799 800 801 802 803 804 805 806 807
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(ns_exlevel_vinst);

static ssize_t addr_idx_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
808
	struct etmv4_config *config = &drvdata->config;
809

810
	val = config->addr_idx;
811 812 813 814 815 816 817 818 819
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t addr_idx_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
820
	struct etmv4_config *config = &drvdata->config;
821 822 823 824 825 826 827 828 829 830 831

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val >= drvdata->nr_addr_cmp * 2)
		return -EINVAL;

	/*
	 * Use spinlock to ensure index doesn't change while it gets
	 * dereferenced multiple times within a spinlock block elsewhere.
	 */
	spin_lock(&drvdata->spinlock);
832
	config->addr_idx = val;
833 834 835 836 837 838 839 840 841 842 843 844
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_idx);

static ssize_t addr_instdatatype_show(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
{
	ssize_t len;
	u8 val, idx;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
845
	struct etmv4_config *config = &drvdata->config;
846 847

	spin_lock(&drvdata->spinlock);
848 849
	idx = config->addr_idx;
	val = BMVAL(config->addr_acc[idx], 0, 1);
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
	len = scnprintf(buf, PAGE_SIZE, "%s\n",
			val == ETM_INSTR_ADDR ? "instr" :
			(val == ETM_DATA_LOAD_ADDR ? "data_load" :
			(val == ETM_DATA_STORE_ADDR ? "data_store" :
			"data_load_store")));
	spin_unlock(&drvdata->spinlock);
	return len;
}

static ssize_t addr_instdatatype_store(struct device *dev,
				       struct device_attribute *attr,
				       const char *buf, size_t size)
{
	u8 idx;
	char str[20] = "";
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
866
	struct etmv4_config *config = &drvdata->config;
867 868 869 870 871 872 873

	if (strlen(buf) >= 20)
		return -EINVAL;
	if (sscanf(buf, "%s", str) != 1)
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
874
	idx = config->addr_idx;
875 876
	if (!strcmp(str, "instr"))
		/* TYPE, bits[1:0] */
877
		config->addr_acc[idx] &= ~(BIT(0) | BIT(1));
878 879 880 881 882 883 884 885 886 887 888 889 890

	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_instdatatype);

static ssize_t addr_single_show(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
891
	struct etmv4_config *config = &drvdata->config;
892

893
	idx = config->addr_idx;
894
	spin_lock(&drvdata->spinlock);
895 896
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
897 898 899
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}
900
	val = (unsigned long)config->addr_val[idx];
901 902 903 904 905 906 907 908 909 910 911
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t addr_single_store(struct device *dev,
				 struct device_attribute *attr,
				 const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
912
	struct etmv4_config *config = &drvdata->config;
913 914 915 916 917

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
918 919 920
	idx = config->addr_idx;
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
921 922 923 924
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

925 926
	config->addr_val[idx] = (u64)val;
	config->addr_type[idx] = ETM_ADDR_TYPE_SINGLE;
927 928 929 930 931 932 933 934 935 936 937 938
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_single);

static ssize_t addr_range_show(struct device *dev,
			       struct device_attribute *attr,
			       char *buf)
{
	u8 idx;
	unsigned long val1, val2;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
939
	struct etmv4_config *config = &drvdata->config;
940 941

	spin_lock(&drvdata->spinlock);
942
	idx = config->addr_idx;
943 944 945 946
	if (idx % 2 != 0) {
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}
947 948 949 950
	if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
	      (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
951 952 953 954
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

955 956
	val1 = (unsigned long)config->addr_val[idx];
	val2 = (unsigned long)config->addr_val[idx + 1];
957 958 959 960 961 962 963 964 965 966 967
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx %#lx\n", val1, val2);
}

static ssize_t addr_range_store(struct device *dev,
				struct device_attribute *attr,
				const char *buf, size_t size)
{
	u8 idx;
	unsigned long val1, val2;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
968
	struct etmv4_config *config = &drvdata->config;
969 970 971 972 973 974 975 976

	if (sscanf(buf, "%lx %lx", &val1, &val2) != 2)
		return -EINVAL;
	/* lower address comparator cannot have a higher address value */
	if (val1 > val2)
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
977
	idx = config->addr_idx;
978 979 980 981 982
	if (idx % 2 != 0) {
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

983 984 985 986
	if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
	      (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
987 988 989 990
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

991 992 993 994
	config->addr_val[idx] = (u64)val1;
	config->addr_type[idx] = ETM_ADDR_TYPE_RANGE;
	config->addr_val[idx + 1] = (u64)val2;
	config->addr_type[idx + 1] = ETM_ADDR_TYPE_RANGE;
995 996 997 998
	/*
	 * Program include or exclude control bits for vinst or vdata
	 * whenever we change addr comparators to ETM_ADDR_TYPE_RANGE
	 */
999 1000
	etm4_set_mode_exclude(drvdata,
			      config->mode & ETM_MODE_EXCLUDE ? true : false);
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013

	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_range);

static ssize_t addr_start_show(struct device *dev,
			       struct device_attribute *attr,
			       char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1014
	struct etmv4_config *config = &drvdata->config;
1015 1016

	spin_lock(&drvdata->spinlock);
1017
	idx = config->addr_idx;
1018

1019 1020
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
1021 1022 1023 1024
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1025
	val = (unsigned long)config->addr_val[idx];
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t addr_start_store(struct device *dev,
				struct device_attribute *attr,
				const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1037
	struct etmv4_config *config = &drvdata->config;
1038 1039 1040 1041 1042

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1043
	idx = config->addr_idx;
1044 1045 1046 1047
	if (!drvdata->nr_addr_cmp) {
		spin_unlock(&drvdata->spinlock);
		return -EINVAL;
	}
1048 1049
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
1050 1051 1052 1053
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1054 1055 1056
	config->addr_val[idx] = (u64)val;
	config->addr_type[idx] = ETM_ADDR_TYPE_START;
	config->vissctlr |= BIT(idx);
1057
	/* SSSTATUS, bit[9] - turn on start/stop logic */
1058
	config->vinst_ctrl |= BIT(9);
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_start);

static ssize_t addr_stop_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1071
	struct etmv4_config *config = &drvdata->config;
1072 1073

	spin_lock(&drvdata->spinlock);
1074
	idx = config->addr_idx;
1075

1076 1077
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
1078 1079 1080 1081
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1082
	val = (unsigned long)config->addr_val[idx];
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t addr_stop_store(struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1094
	struct etmv4_config *config = &drvdata->config;
1095 1096 1097 1098 1099

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1100
	idx = config->addr_idx;
1101 1102 1103 1104
	if (!drvdata->nr_addr_cmp) {
		spin_unlock(&drvdata->spinlock);
		return -EINVAL;
	}
1105 1106
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	       config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
1107 1108 1109 1110
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1111 1112 1113
	config->addr_val[idx] = (u64)val;
	config->addr_type[idx] = ETM_ADDR_TYPE_STOP;
	config->vissctlr |= BIT(idx + 16);
1114
	/* SSSTATUS, bit[9] - turn on start/stop logic */
1115
	config->vinst_ctrl |= BIT(9);
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_stop);

static ssize_t addr_ctxtype_show(struct device *dev,
				 struct device_attribute *attr,
				 char *buf)
{
	ssize_t len;
	u8 idx, val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1128
	struct etmv4_config *config = &drvdata->config;
1129 1130

	spin_lock(&drvdata->spinlock);
1131
	idx = config->addr_idx;
1132
	/* CONTEXTTYPE, bits[3:2] */
1133
	val = BMVAL(config->addr_acc[idx], 2, 3);
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147
	len = scnprintf(buf, PAGE_SIZE, "%s\n", val == ETM_CTX_NONE ? "none" :
			(val == ETM_CTX_CTXID ? "ctxid" :
			(val == ETM_CTX_VMID ? "vmid" : "all")));
	spin_unlock(&drvdata->spinlock);
	return len;
}

static ssize_t addr_ctxtype_store(struct device *dev,
				  struct device_attribute *attr,
				  const char *buf, size_t size)
{
	u8 idx;
	char str[10] = "";
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1148
	struct etmv4_config *config = &drvdata->config;
1149 1150 1151 1152 1153 1154 1155

	if (strlen(buf) >= 10)
		return -EINVAL;
	if (sscanf(buf, "%s", str) != 1)
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1156
	idx = config->addr_idx;
1157 1158
	if (!strcmp(str, "none"))
		/* start by clearing context type bits */
1159
		config->addr_acc[idx] &= ~(BIT(2) | BIT(3));
1160 1161 1162
	else if (!strcmp(str, "ctxid")) {
		/* 0b01 The trace unit performs a Context ID */
		if (drvdata->numcidc) {
1163 1164
			config->addr_acc[idx] |= BIT(2);
			config->addr_acc[idx] &= ~BIT(3);
1165 1166 1167 1168
		}
	} else if (!strcmp(str, "vmid")) {
		/* 0b10 The trace unit performs a VMID */
		if (drvdata->numvmidc) {
1169 1170
			config->addr_acc[idx] &= ~BIT(2);
			config->addr_acc[idx] |= BIT(3);
1171 1172 1173 1174 1175 1176 1177
		}
	} else if (!strcmp(str, "all")) {
		/*
		 * 0b11 The trace unit performs a Context ID
		 * comparison and a VMID
		 */
		if (drvdata->numcidc)
1178
			config->addr_acc[idx] |= BIT(2);
1179
		if (drvdata->numvmidc)
1180
			config->addr_acc[idx] |= BIT(3);
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
	}
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_ctxtype);

static ssize_t addr_context_show(struct device *dev,
				 struct device_attribute *attr,
				 char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1194
	struct etmv4_config *config = &drvdata->config;
1195 1196

	spin_lock(&drvdata->spinlock);
1197
	idx = config->addr_idx;
1198
	/* context ID comparator bits[6:4] */
1199
	val = BMVAL(config->addr_acc[idx], 4, 6);
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t addr_context_store(struct device *dev,
				  struct device_attribute *attr,
				  const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1211
	struct etmv4_config *config = &drvdata->config;
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if ((drvdata->numcidc <= 1) && (drvdata->numvmidc <= 1))
		return -EINVAL;
	if (val >=  (drvdata->numcidc >= drvdata->numvmidc ?
		     drvdata->numcidc : drvdata->numvmidc))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1222
	idx = config->addr_idx;
1223
	/* clear context ID comparator bits[6:4] */
1224 1225
	config->addr_acc[idx] &= ~(BIT(4) | BIT(5) | BIT(6));
	config->addr_acc[idx] |= (val << 4);
1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(addr_context);

static ssize_t seq_idx_show(struct device *dev,
			    struct device_attribute *attr,
			    char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1237
	struct etmv4_config *config = &drvdata->config;
1238

1239
	val = config->seq_idx;
1240 1241 1242 1243 1244 1245 1246 1247 1248
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t seq_idx_store(struct device *dev,
			     struct device_attribute *attr,
			     const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1249
	struct etmv4_config *config = &drvdata->config;
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val >= drvdata->nrseqstate - 1)
		return -EINVAL;

	/*
	 * Use spinlock to ensure index doesn't change while it gets
	 * dereferenced multiple times within a spinlock block elsewhere.
	 */
	spin_lock(&drvdata->spinlock);
1261
	config->seq_idx = val;
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(seq_idx);

static ssize_t seq_state_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1273
	struct etmv4_config *config = &drvdata->config;
1274

1275
	val = config->seq_state;
1276 1277 1278 1279 1280 1281 1282 1283 1284
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t seq_state_store(struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1285
	struct etmv4_config *config = &drvdata->config;
1286 1287 1288 1289 1290 1291

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val >= drvdata->nrseqstate)
		return -EINVAL;

1292
	config->seq_state = val;
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
	return size;
}
static DEVICE_ATTR_RW(seq_state);

static ssize_t seq_event_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1304
	struct etmv4_config *config = &drvdata->config;
1305 1306

	spin_lock(&drvdata->spinlock);
1307 1308
	idx = config->seq_idx;
	val = config->seq_ctrl[idx];
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t seq_event_store(struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1320
	struct etmv4_config *config = &drvdata->config;
1321 1322 1323 1324 1325

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1326
	idx = config->seq_idx;
1327
	/* RST, bits[7:0] */
1328
	config->seq_ctrl[idx] = val & 0xFF;
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(seq_event);

static ssize_t seq_reset_event_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1340
	struct etmv4_config *config = &drvdata->config;
1341

1342
	val = config->seq_rst;
1343 1344 1345 1346 1347 1348 1349 1350 1351
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t seq_reset_event_store(struct device *dev,
				     struct device_attribute *attr,
				     const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1352
	struct etmv4_config *config = &drvdata->config;
1353 1354 1355 1356 1357 1358

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (!(drvdata->nrseqstate))
		return -EINVAL;

1359
	config->seq_rst = val & ETMv4_EVENT_MASK;
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
	return size;
}
static DEVICE_ATTR_RW(seq_reset_event);

static ssize_t cntr_idx_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1370
	struct etmv4_config *config = &drvdata->config;
1371

1372
	val = config->cntr_idx;
1373 1374 1375 1376 1377 1378 1379 1380 1381
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t cntr_idx_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1382
	struct etmv4_config *config = &drvdata->config;
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val >= drvdata->nr_cntr)
		return -EINVAL;

	/*
	 * Use spinlock to ensure index doesn't change while it gets
	 * dereferenced multiple times within a spinlock block elsewhere.
	 */
	spin_lock(&drvdata->spinlock);
1394
	config->cntr_idx = val;
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(cntr_idx);

static ssize_t cntrldvr_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1407
	struct etmv4_config *config = &drvdata->config;
1408 1409

	spin_lock(&drvdata->spinlock);
1410 1411
	idx = config->cntr_idx;
	val = config->cntrldvr[idx];
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t cntrldvr_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1423
	struct etmv4_config *config = &drvdata->config;
1424 1425 1426 1427 1428 1429 1430

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val > ETM_CNTR_MAX_VAL)
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1431 1432
	idx = config->cntr_idx;
	config->cntrldvr[idx] = val;
1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(cntrldvr);

static ssize_t cntr_val_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1445
	struct etmv4_config *config = &drvdata->config;
1446 1447

	spin_lock(&drvdata->spinlock);
1448 1449
	idx = config->cntr_idx;
	val = config->cntr_val[idx];
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t cntr_val_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1461
	struct etmv4_config *config = &drvdata->config;
1462 1463 1464 1465 1466 1467 1468

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val > ETM_CNTR_MAX_VAL)
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1469 1470
	idx = config->cntr_idx;
	config->cntr_val[idx] = val;
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(cntr_val);

static ssize_t cntr_ctrl_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1483
	struct etmv4_config *config = &drvdata->config;
1484 1485

	spin_lock(&drvdata->spinlock);
1486 1487
	idx = config->cntr_idx;
	val = config->cntr_ctrl[idx];
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t cntr_ctrl_store(struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1499
	struct etmv4_config *config = &drvdata->config;
1500 1501 1502 1503 1504

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1505 1506
	idx = config->cntr_idx;
	config->cntr_ctrl[idx] = val;
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(cntr_ctrl);

static ssize_t res_idx_show(struct device *dev,
			    struct device_attribute *attr,
			    char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1518
	struct etmv4_config *config = &drvdata->config;
1519

1520
	val = config->res_idx;
1521 1522 1523 1524 1525 1526 1527 1528 1529
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t res_idx_store(struct device *dev,
			     struct device_attribute *attr,
			     const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1530
	struct etmv4_config *config = &drvdata->config;
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	/* Resource selector pair 0 is always implemented and reserved */
	if ((val == 0) || (val >= drvdata->nr_resource))
		return -EINVAL;

	/*
	 * Use spinlock to ensure index doesn't change while it gets
	 * dereferenced multiple times within a spinlock block elsewhere.
	 */
	spin_lock(&drvdata->spinlock);
1543
	config->res_idx = val;
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(res_idx);

static ssize_t res_ctrl_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1556
	struct etmv4_config *config = &drvdata->config;
1557 1558

	spin_lock(&drvdata->spinlock);
1559 1560
	idx = config->res_idx;
	val = config->res_ctrl[idx];
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t res_ctrl_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1572
	struct etmv4_config *config = &drvdata->config;
1573 1574 1575 1576 1577

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1578
	idx = config->res_idx;
1579 1580 1581 1582
	/* For odd idx pair inversal bit is RES0 */
	if (idx % 2 != 0)
		/* PAIRINV, bit[21] */
		val &= ~BIT(21);
1583
	config->res_ctrl[idx] = val;
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(res_ctrl);

static ssize_t ctxid_idx_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1595
	struct etmv4_config *config = &drvdata->config;
1596

1597
	val = config->ctxid_idx;
1598 1599 1600 1601 1602 1603 1604 1605 1606
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t ctxid_idx_store(struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1607
	struct etmv4_config *config = &drvdata->config;
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val >= drvdata->numcidc)
		return -EINVAL;

	/*
	 * Use spinlock to ensure index doesn't change while it gets
	 * dereferenced multiple times within a spinlock block elsewhere.
	 */
	spin_lock(&drvdata->spinlock);
1619
	config->ctxid_idx = val;
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(ctxid_idx);

static ssize_t ctxid_pid_show(struct device *dev,
			      struct device_attribute *attr,
			      char *buf)
{
	u8 idx;
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1632
	struct etmv4_config *config = &drvdata->config;
1633

1634 1635 1636 1637 1638 1639 1640
	/*
	 * Don't use contextID tracing if coming from a PID namespace.  See
	 * comment in ctxid_pid_store().
	 */
	if (task_active_pid_ns(current) != &init_pid_ns)
		return -EINVAL;

1641
	spin_lock(&drvdata->spinlock);
1642
	idx = config->ctxid_idx;
1643
	val = (unsigned long)config->ctxid_pid[idx];
1644 1645 1646 1647 1648 1649 1650 1651 1652
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t ctxid_pid_store(struct device *dev,
			       struct device_attribute *attr,
			       const char *buf, size_t size)
{
	u8 idx;
1653
	unsigned long pid;
1654
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1655
	struct etmv4_config *config = &drvdata->config;
1656

1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
	/*
	 * When contextID tracing is enabled the tracers will insert the
	 * value found in the contextID register in the trace stream.  But if
	 * a process is in a namespace the PID of that process as seen from the
	 * namespace won't be what the kernel sees, something that makes the
	 * feature confusing and can potentially leak kernel only information.
	 * As such refuse to use the feature if @current is not in the initial
	 * PID namespace.
	 */
	if (task_active_pid_ns(current) != &init_pid_ns)
		return -EINVAL;

1669 1670 1671 1672 1673 1674 1675
	/*
	 * only implemented when ctxid tracing is enabled, i.e. at least one
	 * ctxid comparator is implemented and ctxid is greater than 0 bits
	 * in length
	 */
	if (!drvdata->ctxid_size || !drvdata->numcidc)
		return -EINVAL;
1676
	if (kstrtoul(buf, 16, &pid))
1677 1678 1679
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1680 1681
	idx = config->ctxid_idx;
	config->ctxid_pid[idx] = (u64)pid;
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(ctxid_pid);

static ssize_t ctxid_masks_show(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	unsigned long val1, val2;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1693
	struct etmv4_config *config = &drvdata->config;
1694

1695 1696 1697 1698 1699 1700 1701
	/*
	 * Don't use contextID tracing if coming from a PID namespace.  See
	 * comment in ctxid_pid_store().
	 */
	if (task_active_pid_ns(current) != &init_pid_ns)
		return -EINVAL;

1702
	spin_lock(&drvdata->spinlock);
1703 1704
	val1 = config->ctxid_mask0;
	val2 = config->ctxid_mask1;
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx %#lx\n", val1, val2);
}

static ssize_t ctxid_masks_store(struct device *dev,
				struct device_attribute *attr,
				const char *buf, size_t size)
{
	u8 i, j, maskbyte;
	unsigned long val1, val2, mask;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1716
	struct etmv4_config *config = &drvdata->config;
1717

1718 1719 1720 1721 1722 1723 1724
	/*
	 * Don't use contextID tracing if coming from a PID namespace.  See
	 * comment in ctxid_pid_store().
	 */
	if (task_active_pid_ns(current) != &init_pid_ns)
		return -EINVAL;

1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
	/*
	 * only implemented when ctxid tracing is enabled, i.e. at least one
	 * ctxid comparator is implemented and ctxid is greater than 0 bits
	 * in length
	 */
	if (!drvdata->ctxid_size || !drvdata->numcidc)
		return -EINVAL;
	if (sscanf(buf, "%lx %lx", &val1, &val2) != 2)
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
	/*
	 * each byte[0..3] controls mask value applied to ctxid
	 * comparator[0..3]
	 */
	switch (drvdata->numcidc) {
	case 0x1:
		/* COMP0, bits[7:0] */
1743
		config->ctxid_mask0 = val1 & 0xFF;
1744 1745 1746
		break;
	case 0x2:
		/* COMP1, bits[15:8] */
1747
		config->ctxid_mask0 = val1 & 0xFFFF;
1748 1749 1750
		break;
	case 0x3:
		/* COMP2, bits[23:16] */
1751
		config->ctxid_mask0 = val1 & 0xFFFFFF;
1752 1753 1754
		break;
	case 0x4:
		 /* COMP3, bits[31:24] */
1755
		config->ctxid_mask0 = val1;
1756 1757 1758
		break;
	case 0x5:
		/* COMP4, bits[7:0] */
1759 1760
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2 & 0xFF;
1761 1762 1763
		break;
	case 0x6:
		/* COMP5, bits[15:8] */
1764 1765
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2 & 0xFFFF;
1766 1767 1768
		break;
	case 0x7:
		/* COMP6, bits[23:16] */
1769 1770
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2 & 0xFFFFFF;
1771 1772 1773
		break;
	case 0x8:
		/* COMP7, bits[31:24] */
1774 1775
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2;
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
		break;
	default:
		break;
	}
	/*
	 * If software sets a mask bit to 1, it must program relevant byte
	 * of ctxid comparator value 0x0, otherwise behavior is unpredictable.
	 * For example, if bit[3] of ctxid_mask0 is 1, we must clear bits[31:24]
	 * of ctxid comparator0 value (corresponding to byte 0) register.
	 */
1786
	mask = config->ctxid_mask0;
1787 1788 1789 1790 1791 1792 1793 1794 1795
	for (i = 0; i < drvdata->numcidc; i++) {
		/* mask value of corresponding ctxid comparator */
		maskbyte = mask & ETMv4_EVENT_MASK;
		/*
		 * each bit corresponds to a byte of respective ctxid comparator
		 * value register
		 */
		for (j = 0; j < 8; j++) {
			if (maskbyte & 1)
1796
				config->ctxid_pid[i] &= ~(0xFFUL << (j * 8));
1797 1798 1799 1800 1801
			maskbyte >>= 1;
		}
		/* Select the next ctxid comparator mask value */
		if (i == 3)
			/* ctxid comparators[4-7] */
1802
			mask = config->ctxid_mask1;
1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
		else
			mask >>= 0x8;
	}

	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(ctxid_masks);

static ssize_t vmid_idx_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1818
	struct etmv4_config *config = &drvdata->config;
1819

1820
	val = config->vmid_idx;
1821 1822 1823 1824 1825 1826 1827 1828 1829
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t vmid_idx_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1830
	struct etmv4_config *config = &drvdata->config;
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841

	if (kstrtoul(buf, 16, &val))
		return -EINVAL;
	if (val >= drvdata->numvmidc)
		return -EINVAL;

	/*
	 * Use spinlock to ensure index doesn't change while it gets
	 * dereferenced multiple times within a spinlock block elsewhere.
	 */
	spin_lock(&drvdata->spinlock);
1842
	config->vmid_idx = val;
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(vmid_idx);

static ssize_t vmid_val_show(struct device *dev,
			     struct device_attribute *attr,
			     char *buf)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1854
	struct etmv4_config *config = &drvdata->config;
1855

1856
	val = (unsigned long)config->vmid_val[config->vmid_idx];
1857 1858 1859 1860 1861 1862 1863 1864 1865
	return scnprintf(buf, PAGE_SIZE, "%#lx\n", val);
}

static ssize_t vmid_val_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t size)
{
	unsigned long val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1866
	struct etmv4_config *config = &drvdata->config;
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877

	/*
	 * only implemented when vmid tracing is enabled, i.e. at least one
	 * vmid comparator is implemented and at least 8 bit vmid size
	 */
	if (!drvdata->vmid_size || !drvdata->numvmidc)
		return -EINVAL;
	if (kstrtoul(buf, 16, &val))
		return -EINVAL;

	spin_lock(&drvdata->spinlock);
1878
	config->vmid_val[config->vmid_idx] = (u64)val;
1879 1880 1881 1882 1883 1884 1885 1886 1887 1888
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(vmid_val);

static ssize_t vmid_masks_show(struct device *dev,
			       struct device_attribute *attr, char *buf)
{
	unsigned long val1, val2;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1889
	struct etmv4_config *config = &drvdata->config;
1890 1891

	spin_lock(&drvdata->spinlock);
1892 1893
	val1 = config->vmid_mask0;
	val2 = config->vmid_mask1;
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
	spin_unlock(&drvdata->spinlock);
	return scnprintf(buf, PAGE_SIZE, "%#lx %#lx\n", val1, val2);
}

static ssize_t vmid_masks_store(struct device *dev,
				struct device_attribute *attr,
				const char *buf, size_t size)
{
	u8 i, j, maskbyte;
	unsigned long val1, val2, mask;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1905 1906
	struct etmv4_config *config = &drvdata->config;

1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924
	/*
	 * only implemented when vmid tracing is enabled, i.e. at least one
	 * vmid comparator is implemented and at least 8 bit vmid size
	 */
	if (!drvdata->vmid_size || !drvdata->numvmidc)
		return -EINVAL;
	if (sscanf(buf, "%lx %lx", &val1, &val2) != 2)
		return -EINVAL;

	spin_lock(&drvdata->spinlock);

	/*
	 * each byte[0..3] controls mask value applied to vmid
	 * comparator[0..3]
	 */
	switch (drvdata->numvmidc) {
	case 0x1:
		/* COMP0, bits[7:0] */
1925
		config->vmid_mask0 = val1 & 0xFF;
1926 1927 1928
		break;
	case 0x2:
		/* COMP1, bits[15:8] */
1929
		config->vmid_mask0 = val1 & 0xFFFF;
1930 1931 1932
		break;
	case 0x3:
		/* COMP2, bits[23:16] */
1933
		config->vmid_mask0 = val1 & 0xFFFFFF;
1934 1935 1936
		break;
	case 0x4:
		/* COMP3, bits[31:24] */
1937
		config->vmid_mask0 = val1;
1938 1939 1940
		break;
	case 0x5:
		/* COMP4, bits[7:0] */
1941 1942
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2 & 0xFF;
1943 1944 1945
		break;
	case 0x6:
		/* COMP5, bits[15:8] */
1946 1947
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2 & 0xFFFF;
1948 1949 1950
		break;
	case 0x7:
		/* COMP6, bits[23:16] */
1951 1952
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2 & 0xFFFFFF;
1953 1954 1955
		break;
	case 0x8:
		/* COMP7, bits[31:24] */
1956 1957
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2;
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
		break;
	default:
		break;
	}

	/*
	 * If software sets a mask bit to 1, it must program relevant byte
	 * of vmid comparator value 0x0, otherwise behavior is unpredictable.
	 * For example, if bit[3] of vmid_mask0 is 1, we must clear bits[31:24]
	 * of vmid comparator0 value (corresponding to byte 0) register.
	 */
1969
	mask = config->vmid_mask0;
1970 1971 1972 1973 1974 1975 1976 1977 1978
	for (i = 0; i < drvdata->numvmidc; i++) {
		/* mask value of corresponding vmid comparator */
		maskbyte = mask & ETMv4_EVENT_MASK;
		/*
		 * each bit corresponds to a byte of respective vmid comparator
		 * value register
		 */
		for (j = 0; j < 8; j++) {
			if (maskbyte & 1)
1979
				config->vmid_val[i] &= ~(0xFFUL << (j * 8));
1980 1981 1982 1983 1984
			maskbyte >>= 1;
		}
		/* Select the next vmid comparator mask value */
		if (i == 3)
			/* vmid comparators[4-7] */
1985
			mask = config->vmid_mask1;
1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055
		else
			mask >>= 0x8;
	}
	spin_unlock(&drvdata->spinlock);
	return size;
}
static DEVICE_ATTR_RW(vmid_masks);

static ssize_t cpu_show(struct device *dev,
			struct device_attribute *attr, char *buf)
{
	int val;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);

	val = drvdata->cpu;
	return scnprintf(buf, PAGE_SIZE, "%d\n", val);

}
static DEVICE_ATTR_RO(cpu);

static struct attribute *coresight_etmv4_attrs[] = {
	&dev_attr_nr_pe_cmp.attr,
	&dev_attr_nr_addr_cmp.attr,
	&dev_attr_nr_cntr.attr,
	&dev_attr_nr_ext_inp.attr,
	&dev_attr_numcidc.attr,
	&dev_attr_numvmidc.attr,
	&dev_attr_nrseqstate.attr,
	&dev_attr_nr_resource.attr,
	&dev_attr_nr_ss_cmp.attr,
	&dev_attr_reset.attr,
	&dev_attr_mode.attr,
	&dev_attr_pe.attr,
	&dev_attr_event.attr,
	&dev_attr_event_instren.attr,
	&dev_attr_event_ts.attr,
	&dev_attr_syncfreq.attr,
	&dev_attr_cyc_threshold.attr,
	&dev_attr_bb_ctrl.attr,
	&dev_attr_event_vinst.attr,
	&dev_attr_s_exlevel_vinst.attr,
	&dev_attr_ns_exlevel_vinst.attr,
	&dev_attr_addr_idx.attr,
	&dev_attr_addr_instdatatype.attr,
	&dev_attr_addr_single.attr,
	&dev_attr_addr_range.attr,
	&dev_attr_addr_start.attr,
	&dev_attr_addr_stop.attr,
	&dev_attr_addr_ctxtype.attr,
	&dev_attr_addr_context.attr,
	&dev_attr_seq_idx.attr,
	&dev_attr_seq_state.attr,
	&dev_attr_seq_event.attr,
	&dev_attr_seq_reset_event.attr,
	&dev_attr_cntr_idx.attr,
	&dev_attr_cntrldvr.attr,
	&dev_attr_cntr_val.attr,
	&dev_attr_cntr_ctrl.attr,
	&dev_attr_res_idx.attr,
	&dev_attr_res_ctrl.attr,
	&dev_attr_ctxid_idx.attr,
	&dev_attr_ctxid_pid.attr,
	&dev_attr_ctxid_masks.attr,
	&dev_attr_vmid_idx.attr,
	&dev_attr_vmid_val.attr,
	&dev_attr_vmid_masks.attr,
	&dev_attr_cpu.attr,
	NULL,
};

2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081
struct etmv4_reg {
	void __iomem *addr;
	u32 data;
};

static void do_smp_cross_read(void *data)
{
	struct etmv4_reg *reg = data;

	reg->data = readl_relaxed(reg->addr);
}

static u32 etmv4_cross_read(const struct device *dev, u32 offset)
{
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev);
	struct etmv4_reg reg;

	reg.addr = drvdata->base + offset;
	/*
	 * smp cross call ensures the CPU will be powered up before
	 * accessing the ETMv4 trace core registers
	 */
	smp_call_function_single(drvdata->cpu, do_smp_cross_read, &reg, 1);
	return reg.data;
}

2082 2083
#define coresight_etm4x_reg(name, offset)			\
	coresight_simple_reg32(struct etmv4_drvdata, name, offset)
2084 2085 2086 2087

#define coresight_etm4x_cross_read(name, offset)			\
	coresight_simple_func(struct etmv4_drvdata, etmv4_cross_read,	\
			      name, offset)
2088

2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
coresight_etm4x_reg(trcpdcr, TRCPDCR);
coresight_etm4x_reg(trcpdsr, TRCPDSR);
coresight_etm4x_reg(trclsr, TRCLSR);
coresight_etm4x_reg(trcauthstatus, TRCAUTHSTATUS);
coresight_etm4x_reg(trcdevid, TRCDEVID);
coresight_etm4x_reg(trcdevtype, TRCDEVTYPE);
coresight_etm4x_reg(trcpidr0, TRCPIDR0);
coresight_etm4x_reg(trcpidr1, TRCPIDR1);
coresight_etm4x_reg(trcpidr2, TRCPIDR2);
coresight_etm4x_reg(trcpidr3, TRCPIDR3);
2099 2100 2101
coresight_etm4x_cross_read(trcoslsr, TRCOSLSR);
coresight_etm4x_cross_read(trcconfig, TRCCONFIGR);
coresight_etm4x_cross_read(trctraceid, TRCTRACEIDR);
2102 2103 2104 2105 2106 2107

static struct attribute *coresight_etmv4_mgmt_attrs[] = {
	&dev_attr_trcoslsr.attr,
	&dev_attr_trcpdcr.attr,
	&dev_attr_trcpdsr.attr,
	&dev_attr_trclsr.attr,
2108 2109
	&dev_attr_trcconfig.attr,
	&dev_attr_trctraceid.attr,
2110 2111 2112 2113 2114 2115 2116 2117 2118 2119
	&dev_attr_trcauthstatus.attr,
	&dev_attr_trcdevid.attr,
	&dev_attr_trcdevtype.attr,
	&dev_attr_trcpidr0.attr,
	&dev_attr_trcpidr1.attr,
	&dev_attr_trcpidr2.attr,
	&dev_attr_trcpidr3.attr,
	NULL,
};

2120 2121 2122 2123 2124 2125
coresight_etm4x_cross_read(trcidr0, TRCIDR0);
coresight_etm4x_cross_read(trcidr1, TRCIDR1);
coresight_etm4x_cross_read(trcidr2, TRCIDR2);
coresight_etm4x_cross_read(trcidr3, TRCIDR3);
coresight_etm4x_cross_read(trcidr4, TRCIDR4);
coresight_etm4x_cross_read(trcidr5, TRCIDR5);
2126
/* trcidr[6,7] are reserved */
2127 2128 2129 2130 2131 2132
coresight_etm4x_cross_read(trcidr8, TRCIDR8);
coresight_etm4x_cross_read(trcidr9, TRCIDR9);
coresight_etm4x_cross_read(trcidr10, TRCIDR10);
coresight_etm4x_cross_read(trcidr11, TRCIDR11);
coresight_etm4x_cross_read(trcidr12, TRCIDR12);
coresight_etm4x_cross_read(trcidr13, TRCIDR13);
2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170

static struct attribute *coresight_etmv4_trcidr_attrs[] = {
	&dev_attr_trcidr0.attr,
	&dev_attr_trcidr1.attr,
	&dev_attr_trcidr2.attr,
	&dev_attr_trcidr3.attr,
	&dev_attr_trcidr4.attr,
	&dev_attr_trcidr5.attr,
	/* trcidr[6,7] are reserved */
	&dev_attr_trcidr8.attr,
	&dev_attr_trcidr9.attr,
	&dev_attr_trcidr10.attr,
	&dev_attr_trcidr11.attr,
	&dev_attr_trcidr12.attr,
	&dev_attr_trcidr13.attr,
	NULL,
};

static const struct attribute_group coresight_etmv4_group = {
	.attrs = coresight_etmv4_attrs,
};

static const struct attribute_group coresight_etmv4_mgmt_group = {
	.attrs = coresight_etmv4_mgmt_attrs,
	.name = "mgmt",
};

static const struct attribute_group coresight_etmv4_trcidr_group = {
	.attrs = coresight_etmv4_trcidr_attrs,
	.name = "trcidr",
};

const struct attribute_group *coresight_etmv4_groups[] = {
	&coresight_etmv4_group,
	&coresight_etmv4_mgmt_group,
	&coresight_etmv4_trcidr_group,
	NULL,
};