coresight-etm4x-sysfs.c 55.8 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
/*
 * Copyright(C) 2015 Linaro Limited. All rights reserved.
 * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <linux/pm_runtime.h>
#include <linux/sysfs.h>
#include "coresight-etm4x.h"

static int etm4_set_mode_exclude(struct etmv4_drvdata *drvdata, bool exclude)
{
24 25 26 27
	u8 idx;
	struct etmv4_config *config = &drvdata->config;

	idx = config->addr_idx;
28 29 30 31 32

	/*
	 * TRCACATRn.TYPE bit[1:0]: type of comparison
	 * the trace unit performs
	 */
33
	if (BMVAL(config->addr_acc[idx], 0, 1) == ETM_INSTR_ADDR) {
34 35 36 37 38 39 40 41
		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.
		 */
42 43
		if (config->addr_type[idx] != ETM_ADDR_TYPE_RANGE ||
		    config->addr_type[idx + 1] != ETM_ADDR_TYPE_RANGE)
44 45 46 47 48 49 50
			return -EINVAL;

		if (exclude == true) {
			/*
			 * Set exclude bit and unset the include bit
			 * corresponding to comparator pair
			 */
51 52
			config->viiectlr |= BIT(idx / 2 + 16);
			config->viiectlr &= ~BIT(idx / 2);
53 54 55 56 57
		} else {
			/*
			 * Set include bit and unset exclude bit
			 * corresponding to comparator pair
			 */
58 59
			config->viiectlr |= BIT(idx / 2);
			config->viiectlr &= ~BIT(idx / 2 + 16);
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
		}
	}
	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);
180
	struct etmv4_config *config = &drvdata->config;
181 182 183 184 185 186

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

	spin_lock(&drvdata->spinlock);
	if (val)
187
		config->mode = 0x0;
188 189

	/* Disable data tracing: do not trace load and store data transfers */
190 191
	config->mode &= ~(ETM_MODE_LOAD | ETM_MODE_STORE);
	config->cfg &= ~(BIT(1) | BIT(2));
192 193

	/* Disable data value and data address tracing */
194
	config->mode &= ~(ETM_MODE_DATA_TRACE_ADDR |
195
			   ETM_MODE_DATA_TRACE_VAL);
196
	config->cfg &= ~(BIT(16) | BIT(17));
197 198

	/* Disable all events tracing */
199 200
	config->eventctrl0 = 0x0;
	config->eventctrl1 = 0x0;
201 202

	/* Disable timestamp event */
203
	config->ts_ctrl = 0x0;
204 205

	/* Disable stalling */
206
	config->stall_ctrl = 0x0;
207 208 209

	/* Reset trace synchronization period  to 2^8 = 256 bytes*/
	if (drvdata->syncpr == false)
210
		config->syncfreq = 0x8;
211 212 213 214 215 216

	/*
	 * Enable ViewInst to trace everything with start-stop logic in
	 * started state. ARM recommends start-stop logic is set before
	 * each trace run.
	 */
217
	config->vinst_ctrl |= BIT(0);
218
	if (drvdata->nr_addr_cmp == true) {
219
		config->mode |= ETM_MODE_VIEWINST_STARTSTOP;
220
		/* SSSTATUS, bit[9] */
221
		config->vinst_ctrl |= BIT(9);
222 223 224
	}

	/* No address range filtering for ViewInst */
225
	config->viiectlr = 0x0;
226 227

	/* No start-stop filtering for ViewInst */
228
	config->vissctlr = 0x0;
229 230 231

	/* Disable seq events */
	for (i = 0; i < drvdata->nrseqstate-1; i++)
232 233 234
		config->seq_ctrl[i] = 0x0;
	config->seq_rst = 0x0;
	config->seq_state = 0x0;
235 236

	/* Disable external input events */
237
	config->ext_inp = 0x0;
238

239
	config->cntr_idx = 0x0;
240
	for (i = 0; i < drvdata->nr_cntr; i++) {
241 242 243
		config->cntrldvr[i] = 0x0;
		config->cntr_ctrl[i] = 0x0;
		config->cntr_val[i] = 0x0;
244 245
	}

246
	config->res_idx = 0x0;
247
	for (i = 0; i < drvdata->nr_resource; i++)
248
		config->res_ctrl[i] = 0x0;
249 250

	for (i = 0; i < drvdata->nr_ss_cmp; i++) {
251 252
		config->ss_ctrl[i] = 0x0;
		config->ss_pe_cmp[i] = 0x0;
253 254
	}

255
	config->addr_idx = 0x0;
256
	for (i = 0; i < drvdata->nr_addr_cmp * 2; i++) {
257 258 259
		config->addr_val[i] = 0x0;
		config->addr_acc[i] = 0x0;
		config->addr_type[i] = ETM_ADDR_TYPE_NONE;
260 261
	}

262
	config->ctxid_idx = 0x0;
263
	for (i = 0; i < drvdata->numcidc; i++) {
264 265
		config->ctxid_pid[i] = 0x0;
		config->ctxid_vpid[i] = 0x0;
266 267
	}

268 269
	config->ctxid_mask0 = 0x0;
	config->ctxid_mask1 = 0x0;
270

271
	config->vmid_idx = 0x0;
272
	for (i = 0; i < drvdata->numvmidc; i++)
273 274 275
		config->vmid_val[i] = 0x0;
	config->vmid_mask0 = 0x0;
	config->vmid_mask1 = 0x0;
276 277

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

279
	spin_unlock(&drvdata->spinlock);
280

281 282 283 284 285 286 287 288 289 290
	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);
291
	struct etmv4_config *config = &drvdata->config;
292

293
	val = config->mode;
294 295 296 297 298 299 300 301 302
	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);
303
	struct etmv4_config *config = &drvdata->config;
304 305 306 307 308

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

	spin_lock(&drvdata->spinlock);
309
	config->mode = val & ETMv4_MODE_ALL;
310

311
	if (config->mode & ETM_MODE_EXCLUDE)
312 313 314 315 316 317
		etm4_set_mode_exclude(drvdata, true);
	else
		etm4_set_mode_exclude(drvdata, false);

	if (drvdata->instrp0 == true) {
		/* start by clearing instruction P0 field */
318 319
		config->cfg  &= ~(BIT(1) | BIT(2));
		if (config->mode & ETM_MODE_LOAD)
320
			/* 0b01 Trace load instructions as P0 instructions */
321 322
			config->cfg  |= BIT(1);
		if (config->mode & ETM_MODE_STORE)
323
			/* 0b10 Trace store instructions as P0 instructions */
324 325
			config->cfg  |= BIT(2);
		if (config->mode & ETM_MODE_LOAD_STORE)
326 327 328 329
			/*
			 * 0b11 Trace load and store instructions
			 * as P0 instructions
			 */
330
			config->cfg  |= BIT(1) | BIT(2);
331 332 333
	}

	/* bit[3], Branch broadcast mode */
334 335
	if ((config->mode & ETM_MODE_BB) && (drvdata->trcbb == true))
		config->cfg |= BIT(3);
336
	else
337
		config->cfg &= ~BIT(3);
338 339

	/* bit[4], Cycle counting instruction trace bit */
340
	if ((config->mode & ETMv4_MODE_CYCACC) &&
341
		(drvdata->trccci == true))
342
		config->cfg |= BIT(4);
343
	else
344
		config->cfg &= ~BIT(4);
345 346

	/* bit[6], Context ID tracing bit */
347 348
	if ((config->mode & ETMv4_MODE_CTXID) && (drvdata->ctxid_size))
		config->cfg |= BIT(6);
349
	else
350
		config->cfg &= ~BIT(6);
351

352 353
	if ((config->mode & ETM_MODE_VMID) && (drvdata->vmid_size))
		config->cfg |= BIT(7);
354
	else
355
		config->cfg &= ~BIT(7);
356 357

	/* bits[10:8], Conditional instruction tracing bit */
358
	mode = ETM_MODE_COND(config->mode);
359
	if (drvdata->trccond == true) {
360 361
		config->cfg &= ~(BIT(8) | BIT(9) | BIT(10));
		config->cfg |= mode << 8;
362 363 364
	}

	/* bit[11], Global timestamp tracing bit */
365 366
	if ((config->mode & ETMv4_MODE_TIMESTAMP) && (drvdata->ts_size))
		config->cfg |= BIT(11);
367
	else
368
		config->cfg &= ~BIT(11);
369 370

	/* bit[12], Return stack enable bit */
371 372 373
	if ((config->mode & ETM_MODE_RETURNSTACK) &&
					(drvdata->retstack == true))
		config->cfg |= BIT(12);
374
	else
375
		config->cfg &= ~BIT(12);
376 377

	/* bits[14:13], Q element enable field */
378
	mode = ETM_MODE_QELEM(config->mode);
379
	/* start by clearing QE bits */
380
	config->cfg &= ~(BIT(13) | BIT(14));
381 382
	/* if supported, Q elements with instruction counts are enabled */
	if ((mode & BIT(0)) && (drvdata->q_support & BIT(0)))
383
		config->cfg |= BIT(13);
384 385 386 387 388
	/*
	 * if supported, Q elements with and without instruction
	 * counts are enabled
	 */
	if ((mode & BIT(1)) && (drvdata->q_support & BIT(1)))
389
		config->cfg |= BIT(14);
390 391

	/* bit[11], AMBA Trace Bus (ATB) trigger enable bit */
392
	if ((config->mode & ETM_MODE_ATB_TRIGGER) &&
393
	    (drvdata->atbtrig == true))
394
		config->eventctrl1 |= BIT(11);
395
	else
396
		config->eventctrl1 &= ~BIT(11);
397 398

	/* bit[12], Low-power state behavior override bit */
399
	if ((config->mode & ETM_MODE_LPOVERRIDE) &&
400
	    (drvdata->lpoverride == true))
401
		config->eventctrl1 |= BIT(12);
402
	else
403
		config->eventctrl1 &= ~BIT(12);
404 405

	/* bit[8], Instruction stall bit */
406 407
	if (config->mode & ETM_MODE_ISTALL_EN)
		config->stall_ctrl |= BIT(8);
408
	else
409
		config->stall_ctrl &= ~BIT(8);
410 411

	/* bit[10], Prioritize instruction trace bit */
412 413
	if (config->mode & ETM_MODE_INSTPRIO)
		config->stall_ctrl |= BIT(10);
414
	else
415
		config->stall_ctrl &= ~BIT(10);
416 417

	/* bit[13], Trace overflow prevention bit */
418
	if ((config->mode & ETM_MODE_NOOVERFLOW) &&
419
		(drvdata->nooverflow == true))
420
		config->stall_ctrl |= BIT(13);
421
	else
422
		config->stall_ctrl &= ~BIT(13);
423 424

	/* bit[9] Start/stop logic control bit */
425 426
	if (config->mode & ETM_MODE_VIEWINST_STARTSTOP)
		config->vinst_ctrl |= BIT(9);
427
	else
428
		config->vinst_ctrl &= ~BIT(9);
429 430

	/* bit[10], Whether a trace unit must trace a Reset exception */
431 432
	if (config->mode & ETM_MODE_TRACE_RESET)
		config->vinst_ctrl |= BIT(10);
433
	else
434
		config->vinst_ctrl &= ~BIT(10);
435 436

	/* bit[11], Whether a trace unit must trace a system error exception */
437
	if ((config->mode & ETM_MODE_TRACE_ERR) &&
438
		(drvdata->trc_error == true))
439
		config->vinst_ctrl |= BIT(11);
440
	else
441
		config->vinst_ctrl &= ~BIT(11);
442 443

	spin_unlock(&drvdata->spinlock);
444

445 446 447 448 449 450 451 452 453 454
	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);
455
	struct etmv4_config *config = &drvdata->config;
456

457
	val = config->pe_sel;
458 459 460 461 462 463 464 465 466
	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);
467
	struct etmv4_config *config = &drvdata->config;
468 469 470 471 472 473 474 475 476 477

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

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

478
	config->pe_sel = val;
479 480 481 482 483 484 485 486 487 488 489
	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);
490
	struct etmv4_config *config = &drvdata->config;
491

492
	val = config->eventctrl0;
493 494 495 496 497 498 499 500 501
	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);
502
	struct etmv4_config *config = &drvdata->config;
503 504 505 506 507 508 509 510

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

	spin_lock(&drvdata->spinlock);
	switch (drvdata->nr_event) {
	case 0x0:
		/* EVENT0, bits[7:0] */
511
		config->eventctrl0 = val & 0xFF;
512 513 514
		break;
	case 0x1:
		 /* EVENT1, bits[15:8] */
515
		config->eventctrl0 = val & 0xFFFF;
516 517 518
		break;
	case 0x2:
		/* EVENT2, bits[23:16] */
519
		config->eventctrl0 = val & 0xFFFFFF;
520 521 522
		break;
	case 0x3:
		/* EVENT3, bits[31:24] */
523
		config->eventctrl0 = val;
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
		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);
539
	struct etmv4_config *config = &drvdata->config;
540

541
	val = BMVAL(config->eventctrl1, 0, 3);
542 543 544 545 546 547 548 549 550
	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);
551
	struct etmv4_config *config = &drvdata->config;
552 553 554 555 556 557

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

	spin_lock(&drvdata->spinlock);
	/* start by clearing all instruction event enable bits */
558
	config->eventctrl1 &= ~(BIT(0) | BIT(1) | BIT(2) | BIT(3));
559 560 561
	switch (drvdata->nr_event) {
	case 0x0:
		/* generate Event element for event 1 */
562
		config->eventctrl1 |= val & BIT(1);
563 564 565
		break;
	case 0x1:
		/* generate Event element for event 1 and 2 */
566
		config->eventctrl1 |= val & (BIT(0) | BIT(1));
567 568 569
		break;
	case 0x2:
		/* generate Event element for event 1, 2 and 3 */
570
		config->eventctrl1 |= val & (BIT(0) | BIT(1) | BIT(2));
571 572 573
		break;
	case 0x3:
		/* generate Event element for all 4 events */
574
		config->eventctrl1 |= val & 0xF;
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
		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);
590
	struct etmv4_config *config = &drvdata->config;
591

592
	val = config->ts_ctrl;
593 594 595 596 597 598 599 600 601
	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);
602
	struct etmv4_config *config = &drvdata->config;
603 604 605 606 607 608

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

609
	config->ts_ctrl = val & ETMv4_EVENT_MASK;
610 611 612 613 614 615 616 617 618 619
	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);
620
	struct etmv4_config *config = &drvdata->config;
621

622
	val = config->syncfreq;
623 624 625 626 627 628 629 630 631
	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);
632
	struct etmv4_config *config = &drvdata->config;
633 634 635 636 637 638

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

639
	config->syncfreq = val & ETMv4_SYNC_MASK;
640 641 642 643 644 645 646 647 648 649
	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);
650
	struct etmv4_config *config = &drvdata->config;
651

652
	val = config->ccctlr;
653 654 655 656 657 658 659 660 661
	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);
662
	struct etmv4_config *config = &drvdata->config;
663 664 665 666 667 668

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

669
	config->ccctlr = val & ETM_CYC_THRESHOLD_MASK;
670 671 672 673 674 675 676 677 678 679
	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);
680
	struct etmv4_config *config = &drvdata->config;
681

682
	val = config->bb_ctrl;
683 684 685 686 687 688 689 690 691
	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);
692
	struct etmv4_config *config = &drvdata->config;
693 694 695 696 697 698 699 700 701 702 703 704 705 706

	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;

707
	config->bb_ctrl = val;
708 709 710 711 712 713 714 715 716 717
	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);
718
	struct etmv4_config *config = &drvdata->config;
719

720
	val = config->vinst_ctrl & ETMv4_EVENT_MASK;
721 722 723 724 725 726 727 728 729
	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);
730
	struct etmv4_config *config = &drvdata->config;
731 732 733 734 735 736

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

	spin_lock(&drvdata->spinlock);
	val &= ETMv4_EVENT_MASK;
737 738
	config->vinst_ctrl &= ~ETMv4_EVENT_MASK;
	config->vinst_ctrl |= val;
739 740 741 742 743 744 745 746 747 748 749
	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);
750
	struct etmv4_config *config = &drvdata->config;
751

752
	val = BMVAL(config->vinst_ctrl, 16, 19);
753 754 755 756 757 758 759 760 761
	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);
762
	struct etmv4_config *config = &drvdata->config;
763 764 765 766 767 768

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

	spin_lock(&drvdata->spinlock);
	/* clear all EXLEVEL_S bits (bit[18] is never implemented) */
769
	config->vinst_ctrl &= ~(BIT(16) | BIT(17) | BIT(19));
770 771
	/* enable instruction tracing for corresponding exception level */
	val &= drvdata->s_ex_level;
772
	config->vinst_ctrl |= (val << 16);
773 774 775 776 777 778 779 780 781 782 783
	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);
784
	struct etmv4_config *config = &drvdata->config;
785 786

	/* EXLEVEL_NS, bits[23:20] */
787
	val = BMVAL(config->vinst_ctrl, 20, 23);
788 789 790 791 792 793 794 795 796
	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);
797
	struct etmv4_config *config = &drvdata->config;
798 799 800 801 802 803

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

	spin_lock(&drvdata->spinlock);
	/* clear EXLEVEL_NS bits (bit[23] is never implemented */
804
	config->vinst_ctrl &= ~(BIT(20) | BIT(21) | BIT(22));
805 806
	/* enable instruction tracing for corresponding exception level */
	val &= drvdata->ns_ex_level;
807
	config->vinst_ctrl |= (val << 20);
808 809 810 811 812 813 814 815 816 817 818
	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);
819
	struct etmv4_config *config = &drvdata->config;
820

821
	val = config->addr_idx;
822 823 824 825 826 827 828 829 830
	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);
831
	struct etmv4_config *config = &drvdata->config;
832 833 834 835 836 837 838 839 840 841 842

	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);
843
	config->addr_idx = val;
844 845 846 847 848 849 850 851 852 853 854 855
	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);
856
	struct etmv4_config *config = &drvdata->config;
857 858

	spin_lock(&drvdata->spinlock);
859 860
	idx = config->addr_idx;
	val = BMVAL(config->addr_acc[idx], 0, 1);
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
	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);
877
	struct etmv4_config *config = &drvdata->config;
878 879 880 881 882 883 884

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

	spin_lock(&drvdata->spinlock);
885
	idx = config->addr_idx;
886 887
	if (!strcmp(str, "instr"))
		/* TYPE, bits[1:0] */
888
		config->addr_acc[idx] &= ~(BIT(0) | BIT(1));
889 890 891 892 893 894 895 896 897 898 899 900 901

	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);
902
	struct etmv4_config *config = &drvdata->config;
903

904
	idx = config->addr_idx;
905
	spin_lock(&drvdata->spinlock);
906 907
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
908 909 910
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}
911
	val = (unsigned long)config->addr_val[idx];
912 913 914 915 916 917 918 919 920 921 922
	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);
923
	struct etmv4_config *config = &drvdata->config;
924 925 926 927 928

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

	spin_lock(&drvdata->spinlock);
929 930 931
	idx = config->addr_idx;
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
932 933 934 935
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

936 937
	config->addr_val[idx] = (u64)val;
	config->addr_type[idx] = ETM_ADDR_TYPE_SINGLE;
938 939 940 941 942 943 944 945 946 947 948 949
	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);
950
	struct etmv4_config *config = &drvdata->config;
951 952

	spin_lock(&drvdata->spinlock);
953
	idx = config->addr_idx;
954 955 956 957
	if (idx % 2 != 0) {
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}
958 959 960 961
	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))) {
962 963 964 965
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

966 967
	val1 = (unsigned long)config->addr_val[idx];
	val2 = (unsigned long)config->addr_val[idx + 1];
968 969 970 971 972 973 974 975 976 977 978
	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);
979
	struct etmv4_config *config = &drvdata->config;
980 981 982 983 984 985 986 987

	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);
988
	idx = config->addr_idx;
989 990 991 992 993
	if (idx % 2 != 0) {
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

994 995 996 997
	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))) {
998 999 1000 1001
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1002 1003 1004 1005
	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;
1006 1007 1008 1009
	/*
	 * Program include or exclude control bits for vinst or vdata
	 * whenever we change addr comparators to ETM_ADDR_TYPE_RANGE
	 */
1010
	if (config->mode & ETM_MODE_EXCLUDE)
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
		etm4_set_mode_exclude(drvdata, true);
	else
		etm4_set_mode_exclude(drvdata, false);

	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);
1027
	struct etmv4_config *config = &drvdata->config;
1028 1029

	spin_lock(&drvdata->spinlock);
1030
	idx = config->addr_idx;
1031

1032 1033
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
1034 1035 1036 1037
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1038
	val = (unsigned long)config->addr_val[idx];
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
	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);
1050
	struct etmv4_config *config = &drvdata->config;
1051 1052 1053 1054 1055

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

	spin_lock(&drvdata->spinlock);
1056
	idx = config->addr_idx;
1057 1058 1059 1060
	if (!drvdata->nr_addr_cmp) {
		spin_unlock(&drvdata->spinlock);
		return -EINVAL;
	}
1061 1062
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
1063 1064 1065 1066
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1067 1068 1069
	config->addr_val[idx] = (u64)val;
	config->addr_type[idx] = ETM_ADDR_TYPE_START;
	config->vissctlr |= BIT(idx);
1070
	/* SSSTATUS, bit[9] - turn on start/stop logic */
1071
	config->vinst_ctrl |= BIT(9);
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
	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);
1084
	struct etmv4_config *config = &drvdata->config;
1085 1086

	spin_lock(&drvdata->spinlock);
1087
	idx = config->addr_idx;
1088

1089 1090
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	      config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
1091 1092 1093 1094
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1095
	val = (unsigned long)config->addr_val[idx];
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
	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);
1107
	struct etmv4_config *config = &drvdata->config;
1108 1109 1110 1111 1112

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

	spin_lock(&drvdata->spinlock);
1113
	idx = config->addr_idx;
1114 1115 1116 1117
	if (!drvdata->nr_addr_cmp) {
		spin_unlock(&drvdata->spinlock);
		return -EINVAL;
	}
1118 1119
	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
	       config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
1120 1121 1122 1123
		spin_unlock(&drvdata->spinlock);
		return -EPERM;
	}

1124 1125 1126
	config->addr_val[idx] = (u64)val;
	config->addr_type[idx] = ETM_ADDR_TYPE_STOP;
	config->vissctlr |= BIT(idx + 16);
1127
	/* SSSTATUS, bit[9] - turn on start/stop logic */
1128
	config->vinst_ctrl |= BIT(9);
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
	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);
1141
	struct etmv4_config *config = &drvdata->config;
1142 1143

	spin_lock(&drvdata->spinlock);
1144
	idx = config->addr_idx;
1145
	/* CONTEXTTYPE, bits[3:2] */
1146
	val = BMVAL(config->addr_acc[idx], 2, 3);
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
	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);
1161
	struct etmv4_config *config = &drvdata->config;
1162 1163 1164 1165 1166 1167 1168

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

	spin_lock(&drvdata->spinlock);
1169
	idx = config->addr_idx;
1170 1171
	if (!strcmp(str, "none"))
		/* start by clearing context type bits */
1172
		config->addr_acc[idx] &= ~(BIT(2) | BIT(3));
1173 1174 1175
	else if (!strcmp(str, "ctxid")) {
		/* 0b01 The trace unit performs a Context ID */
		if (drvdata->numcidc) {
1176 1177
			config->addr_acc[idx] |= BIT(2);
			config->addr_acc[idx] &= ~BIT(3);
1178 1179 1180 1181
		}
	} else if (!strcmp(str, "vmid")) {
		/* 0b10 The trace unit performs a VMID */
		if (drvdata->numvmidc) {
1182 1183
			config->addr_acc[idx] &= ~BIT(2);
			config->addr_acc[idx] |= BIT(3);
1184 1185 1186 1187 1188 1189 1190
		}
	} else if (!strcmp(str, "all")) {
		/*
		 * 0b11 The trace unit performs a Context ID
		 * comparison and a VMID
		 */
		if (drvdata->numcidc)
1191
			config->addr_acc[idx] |= BIT(2);
1192
		if (drvdata->numvmidc)
1193
			config->addr_acc[idx] |= BIT(3);
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
	}
	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);
1207
	struct etmv4_config *config = &drvdata->config;
1208 1209

	spin_lock(&drvdata->spinlock);
1210
	idx = config->addr_idx;
1211
	/* context ID comparator bits[6:4] */
1212
	val = BMVAL(config->addr_acc[idx], 4, 6);
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
	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);
1224
	struct etmv4_config *config = &drvdata->config;
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234

	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);
1235
	idx = config->addr_idx;
1236
	/* clear context ID comparator bits[6:4] */
1237 1238
	config->addr_acc[idx] &= ~(BIT(4) | BIT(5) | BIT(6));
	config->addr_acc[idx] |= (val << 4);
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
	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);
1250
	struct etmv4_config *config = &drvdata->config;
1251

1252
	val = config->seq_idx;
1253 1254 1255 1256 1257 1258 1259 1260 1261
	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);
1262
	struct etmv4_config *config = &drvdata->config;
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273

	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);
1274
	config->seq_idx = val;
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
	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);
1286
	struct etmv4_config *config = &drvdata->config;
1287

1288
	val = config->seq_state;
1289 1290 1291 1292 1293 1294 1295 1296 1297
	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);
1298
	struct etmv4_config *config = &drvdata->config;
1299 1300 1301 1302 1303 1304

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

1305
	config->seq_state = val;
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
	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);
1317
	struct etmv4_config *config = &drvdata->config;
1318 1319

	spin_lock(&drvdata->spinlock);
1320 1321
	idx = config->seq_idx;
	val = config->seq_ctrl[idx];
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
	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);
1333
	struct etmv4_config *config = &drvdata->config;
1334 1335 1336 1337 1338

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

	spin_lock(&drvdata->spinlock);
1339
	idx = config->seq_idx;
1340
	/* RST, bits[7:0] */
1341
	config->seq_ctrl[idx] = val & 0xFF;
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
	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);
1353
	struct etmv4_config *config = &drvdata->config;
1354

1355
	val = config->seq_rst;
1356 1357 1358 1359 1360 1361 1362 1363 1364
	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);
1365
	struct etmv4_config *config = &drvdata->config;
1366 1367 1368 1369 1370 1371

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

1372
	config->seq_rst = val & ETMv4_EVENT_MASK;
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
	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);
1383
	struct etmv4_config *config = &drvdata->config;
1384

1385
	val = config->cntr_idx;
1386 1387 1388 1389 1390 1391 1392 1393 1394
	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);
1395
	struct etmv4_config *config = &drvdata->config;
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406

	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);
1407
	config->cntr_idx = val;
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
	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);
1420
	struct etmv4_config *config = &drvdata->config;
1421 1422

	spin_lock(&drvdata->spinlock);
1423 1424
	idx = config->cntr_idx;
	val = config->cntrldvr[idx];
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
	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);
1436
	struct etmv4_config *config = &drvdata->config;
1437 1438 1439 1440 1441 1442 1443

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

	spin_lock(&drvdata->spinlock);
1444 1445
	idx = config->cntr_idx;
	config->cntrldvr[idx] = val;
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
	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);
1458
	struct etmv4_config *config = &drvdata->config;
1459 1460

	spin_lock(&drvdata->spinlock);
1461 1462
	idx = config->cntr_idx;
	val = config->cntr_val[idx];
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
	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);
1474
	struct etmv4_config *config = &drvdata->config;
1475 1476 1477 1478 1479 1480 1481

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

	spin_lock(&drvdata->spinlock);
1482 1483
	idx = config->cntr_idx;
	config->cntr_val[idx] = val;
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
	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);
1496
	struct etmv4_config *config = &drvdata->config;
1497 1498

	spin_lock(&drvdata->spinlock);
1499 1500
	idx = config->cntr_idx;
	val = config->cntr_ctrl[idx];
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
	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);
1512
	struct etmv4_config *config = &drvdata->config;
1513 1514 1515 1516 1517

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

	spin_lock(&drvdata->spinlock);
1518 1519
	idx = config->cntr_idx;
	config->cntr_ctrl[idx] = val;
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530
	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);
1531
	struct etmv4_config *config = &drvdata->config;
1532

1533
	val = config->res_idx;
1534 1535 1536 1537 1538 1539 1540 1541 1542
	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);
1543
	struct etmv4_config *config = &drvdata->config;
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555

	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);
1556
	config->res_idx = val;
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
	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);
1569
	struct etmv4_config *config = &drvdata->config;
1570 1571

	spin_lock(&drvdata->spinlock);
1572 1573
	idx = config->res_idx;
	val = config->res_ctrl[idx];
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584
	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);
1585
	struct etmv4_config *config = &drvdata->config;
1586 1587 1588 1589 1590

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

	spin_lock(&drvdata->spinlock);
1591
	idx = config->res_idx;
1592 1593 1594 1595
	/* For odd idx pair inversal bit is RES0 */
	if (idx % 2 != 0)
		/* PAIRINV, bit[21] */
		val &= ~BIT(21);
1596
	config->res_ctrl[idx] = val;
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
	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);
1608
	struct etmv4_config *config = &drvdata->config;
1609

1610
	val = config->ctxid_idx;
1611 1612 1613 1614 1615 1616 1617 1618 1619
	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);
1620
	struct etmv4_config *config = &drvdata->config;
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631

	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);
1632
	config->ctxid_idx = val;
1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
	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);
1645
	struct etmv4_config *config = &drvdata->config;
1646 1647

	spin_lock(&drvdata->spinlock);
1648 1649
	idx = config->ctxid_idx;
	val = (unsigned long)config->ctxid_vpid[idx];
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
	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;
	unsigned long vpid, pid;
	struct etmv4_drvdata *drvdata = dev_get_drvdata(dev->parent);
1661
	struct etmv4_config *config = &drvdata->config;
1662 1663 1664 1665 1666 1667 1668 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;
	if (kstrtoul(buf, 16, &vpid))
		return -EINVAL;

	pid = coresight_vpid_to_pid(vpid);

	spin_lock(&drvdata->spinlock);
1676 1677 1678
	idx = config->ctxid_idx;
	config->ctxid_pid[idx] = (u64)pid;
	config->ctxid_vpid[idx] = (u64)vpid;
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
	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);
1690
	struct etmv4_config *config = &drvdata->config;
1691 1692

	spin_lock(&drvdata->spinlock);
1693 1694
	val1 = config->ctxid_mask0;
	val2 = config->ctxid_mask1;
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
	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);
1706
	struct etmv4_config *config = &drvdata->config;
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725

	/*
	 * 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] */
1726
		config->ctxid_mask0 = val1 & 0xFF;
1727 1728 1729
		break;
	case 0x2:
		/* COMP1, bits[15:8] */
1730
		config->ctxid_mask0 = val1 & 0xFFFF;
1731 1732 1733
		break;
	case 0x3:
		/* COMP2, bits[23:16] */
1734
		config->ctxid_mask0 = val1 & 0xFFFFFF;
1735 1736 1737
		break;
	case 0x4:
		 /* COMP3, bits[31:24] */
1738
		config->ctxid_mask0 = val1;
1739 1740 1741
		break;
	case 0x5:
		/* COMP4, bits[7:0] */
1742 1743
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2 & 0xFF;
1744 1745 1746
		break;
	case 0x6:
		/* COMP5, bits[15:8] */
1747 1748
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2 & 0xFFFF;
1749 1750 1751
		break;
	case 0x7:
		/* COMP6, bits[23:16] */
1752 1753
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2 & 0xFFFFFF;
1754 1755 1756
		break;
	case 0x8:
		/* COMP7, bits[31:24] */
1757 1758
		config->ctxid_mask0 = val1;
		config->ctxid_mask1 = val2;
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768
		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.
	 */
1769
	mask = config->ctxid_mask0;
1770 1771 1772 1773 1774 1775 1776 1777 1778
	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)
1779
				config->ctxid_pid[i] &= ~(0xFF << (j * 8));
1780 1781 1782 1783 1784
			maskbyte >>= 1;
		}
		/* Select the next ctxid comparator mask value */
		if (i == 3)
			/* ctxid comparators[4-7] */
1785
			mask = config->ctxid_mask1;
1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800
		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);
1801
	struct etmv4_config *config = &drvdata->config;
1802

1803
	val = config->vmid_idx;
1804 1805 1806 1807 1808 1809 1810 1811 1812
	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);
1813
	struct etmv4_config *config = &drvdata->config;
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824

	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);
1825
	config->vmid_idx = val;
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
	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);
1837
	struct etmv4_config *config = &drvdata->config;
1838

1839
	val = (unsigned long)config->vmid_val[config->vmid_idx];
1840 1841 1842 1843 1844 1845 1846 1847 1848
	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);
1849
	struct etmv4_config *config = &drvdata->config;
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860

	/*
	 * 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);
1861
	config->vmid_val[config->vmid_idx] = (u64)val;
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871
	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);
1872
	struct etmv4_config *config = &drvdata->config;
1873 1874

	spin_lock(&drvdata->spinlock);
1875 1876
	val1 = config->vmid_mask0;
	val2 = config->vmid_mask1;
1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887
	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);
1888 1889
	struct etmv4_config *config = &drvdata->config;

1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
	/*
	 * 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] */
1908
		config->vmid_mask0 = val1 & 0xFF;
1909 1910 1911
		break;
	case 0x2:
		/* COMP1, bits[15:8] */
1912
		config->vmid_mask0 = val1 & 0xFFFF;
1913 1914 1915
		break;
	case 0x3:
		/* COMP2, bits[23:16] */
1916
		config->vmid_mask0 = val1 & 0xFFFFFF;
1917 1918 1919
		break;
	case 0x4:
		/* COMP3, bits[31:24] */
1920
		config->vmid_mask0 = val1;
1921 1922 1923
		break;
	case 0x5:
		/* COMP4, bits[7:0] */
1924 1925
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2 & 0xFF;
1926 1927 1928
		break;
	case 0x6:
		/* COMP5, bits[15:8] */
1929 1930
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2 & 0xFFFF;
1931 1932 1933
		break;
	case 0x7:
		/* COMP6, bits[23:16] */
1934 1935
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2 & 0xFFFFFF;
1936 1937 1938
		break;
	case 0x8:
		/* COMP7, bits[31:24] */
1939 1940
		config->vmid_mask0 = val1;
		config->vmid_mask1 = val2;
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951
		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.
	 */
1952
	mask = config->vmid_mask0;
1953 1954 1955 1956 1957 1958 1959 1960 1961
	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)
1962
				config->vmid_val[i] &= ~(0xFF << (j * 8));
1963 1964 1965 1966 1967
			maskbyte >>= 1;
		}
		/* Select the next vmid comparator mask value */
		if (i == 3)
			/* vmid comparators[4-7] */
1968
			mask = config->vmid_mask1;
1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 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
		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,
};

#define coresight_simple_func(name, offset)				\
static ssize_t name##_show(struct device *_dev,				\
			   struct device_attribute *attr, char *buf)	\
{									\
	struct etmv4_drvdata *drvdata = dev_get_drvdata(_dev->parent);	\
	return scnprintf(buf, PAGE_SIZE, "0x%x\n",			\
			 readl_relaxed(drvdata->base + offset));	\
}									\
DEVICE_ATTR_RO(name)

coresight_simple_func(trcoslsr, TRCOSLSR);
coresight_simple_func(trcpdcr, TRCPDCR);
coresight_simple_func(trcpdsr, TRCPDSR);
coresight_simple_func(trclsr, TRCLSR);
2053 2054
coresight_simple_func(trcconfig, TRCCONFIGR);
coresight_simple_func(trctraceid, TRCTRACEIDR);
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
coresight_simple_func(trcauthstatus, TRCAUTHSTATUS);
coresight_simple_func(trcdevid, TRCDEVID);
coresight_simple_func(trcdevtype, TRCDEVTYPE);
coresight_simple_func(trcpidr0, TRCPIDR0);
coresight_simple_func(trcpidr1, TRCPIDR1);
coresight_simple_func(trcpidr2, TRCPIDR2);
coresight_simple_func(trcpidr3, TRCPIDR3);

static struct attribute *coresight_etmv4_mgmt_attrs[] = {
	&dev_attr_trcoslsr.attr,
	&dev_attr_trcpdcr.attr,
	&dev_attr_trcpdsr.attr,
	&dev_attr_trclsr.attr,
2068 2069
	&dev_attr_trcconfig.attr,
	&dev_attr_trctraceid.attr,
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130
	&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,
};

coresight_simple_func(trcidr0, TRCIDR0);
coresight_simple_func(trcidr1, TRCIDR1);
coresight_simple_func(trcidr2, TRCIDR2);
coresight_simple_func(trcidr3, TRCIDR3);
coresight_simple_func(trcidr4, TRCIDR4);
coresight_simple_func(trcidr5, TRCIDR5);
/* trcidr[6,7] are reserved */
coresight_simple_func(trcidr8, TRCIDR8);
coresight_simple_func(trcidr9, TRCIDR9);
coresight_simple_func(trcidr10, TRCIDR10);
coresight_simple_func(trcidr11, TRCIDR11);
coresight_simple_func(trcidr12, TRCIDR12);
coresight_simple_func(trcidr13, TRCIDR13);

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,
};