Linux Audio

Check our new training course

Loading...
v6.2
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright(C) 2015 Linaro Limited. All rights reserved.
   4 * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
   5 */
   6
   7#include <linux/pid_namespace.h>
   8#include <linux/pm_runtime.h>
   9#include <linux/sysfs.h>
  10#include "coresight-etm.h"
  11#include "coresight-priv.h"
  12
  13static ssize_t nr_addr_cmp_show(struct device *dev,
  14				struct device_attribute *attr, char *buf)
  15{
  16	unsigned long val;
  17	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  18
  19	val = drvdata->nr_addr_cmp;
  20	return sprintf(buf, "%#lx\n", val);
  21}
  22static DEVICE_ATTR_RO(nr_addr_cmp);
  23
  24static ssize_t nr_cntr_show(struct device *dev,
  25			    struct device_attribute *attr, char *buf)
  26{	unsigned long val;
  27	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  28
  29	val = drvdata->nr_cntr;
  30	return sprintf(buf, "%#lx\n", val);
  31}
  32static DEVICE_ATTR_RO(nr_cntr);
  33
  34static ssize_t nr_ctxid_cmp_show(struct device *dev,
  35				 struct device_attribute *attr, char *buf)
  36{
  37	unsigned long val;
  38	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  39
  40	val = drvdata->nr_ctxid_cmp;
  41	return sprintf(buf, "%#lx\n", val);
  42}
  43static DEVICE_ATTR_RO(nr_ctxid_cmp);
  44
  45static ssize_t etmsr_show(struct device *dev,
  46			  struct device_attribute *attr, char *buf)
  47{
  48	unsigned long flags, val;
  49	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  50
  51	pm_runtime_get_sync(dev->parent);
  52	spin_lock_irqsave(&drvdata->spinlock, flags);
  53	CS_UNLOCK(drvdata->base);
  54
  55	val = etm_readl(drvdata, ETMSR);
  56
  57	CS_LOCK(drvdata->base);
  58	spin_unlock_irqrestore(&drvdata->spinlock, flags);
  59	pm_runtime_put(dev->parent);
  60
  61	return sprintf(buf, "%#lx\n", val);
  62}
  63static DEVICE_ATTR_RO(etmsr);
  64
  65static ssize_t reset_store(struct device *dev,
  66			   struct device_attribute *attr,
  67			   const char *buf, size_t size)
  68{
  69	int i, ret;
  70	unsigned long val;
  71	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  72	struct etm_config *config = &drvdata->config;
  73
  74	ret = kstrtoul(buf, 16, &val);
  75	if (ret)
  76		return ret;
  77
  78	if (val) {
  79		spin_lock(&drvdata->spinlock);
  80		memset(config, 0, sizeof(struct etm_config));
  81		config->mode = ETM_MODE_EXCLUDE;
  82		config->trigger_event = ETM_DEFAULT_EVENT_VAL;
  83		for (i = 0; i < drvdata->nr_addr_cmp; i++) {
  84			config->addr_type[i] = ETM_ADDR_TYPE_NONE;
  85		}
  86
  87		etm_set_default(config);
 
  88		spin_unlock(&drvdata->spinlock);
  89	}
  90
  91	return size;
  92}
  93static DEVICE_ATTR_WO(reset);
  94
  95static ssize_t mode_show(struct device *dev,
  96			 struct device_attribute *attr, char *buf)
  97{
  98	unsigned long val;
  99	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 100	struct etm_config *config = &drvdata->config;
 101
 102	val = config->mode;
 103	return sprintf(buf, "%#lx\n", val);
 104}
 105
 106static ssize_t mode_store(struct device *dev,
 107			  struct device_attribute *attr,
 108			  const char *buf, size_t size)
 109{
 110	int ret;
 111	unsigned long val;
 112	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 113	struct etm_config *config = &drvdata->config;
 114
 115	ret = kstrtoul(buf, 16, &val);
 116	if (ret)
 117		return ret;
 118
 119	spin_lock(&drvdata->spinlock);
 120	config->mode = val & ETM_MODE_ALL;
 121
 122	if (config->mode & ETM_MODE_EXCLUDE)
 123		config->enable_ctrl1 |= ETMTECR1_INC_EXC;
 124	else
 125		config->enable_ctrl1 &= ~ETMTECR1_INC_EXC;
 126
 127	if (config->mode & ETM_MODE_CYCACC)
 128		config->ctrl |= ETMCR_CYC_ACC;
 129	else
 130		config->ctrl &= ~ETMCR_CYC_ACC;
 131
 132	if (config->mode & ETM_MODE_STALL) {
 133		if (!(drvdata->etmccr & ETMCCR_FIFOFULL)) {
 134			dev_warn(dev, "stall mode not supported\n");
 135			ret = -EINVAL;
 136			goto err_unlock;
 137		}
 138		config->ctrl |= ETMCR_STALL_MODE;
 139	} else
 140		config->ctrl &= ~ETMCR_STALL_MODE;
 141
 142	if (config->mode & ETM_MODE_TIMESTAMP) {
 143		if (!(drvdata->etmccer & ETMCCER_TIMESTAMP)) {
 144			dev_warn(dev, "timestamp not supported\n");
 145			ret = -EINVAL;
 146			goto err_unlock;
 147		}
 148		config->ctrl |= ETMCR_TIMESTAMP_EN;
 149	} else
 150		config->ctrl &= ~ETMCR_TIMESTAMP_EN;
 151
 152	if (config->mode & ETM_MODE_CTXID)
 153		config->ctrl |= ETMCR_CTXID_SIZE;
 154	else
 155		config->ctrl &= ~ETMCR_CTXID_SIZE;
 156
 157	if (config->mode & ETM_MODE_BBROAD)
 158		config->ctrl |= ETMCR_BRANCH_BROADCAST;
 159	else
 160		config->ctrl &= ~ETMCR_BRANCH_BROADCAST;
 161
 162	if (config->mode & ETM_MODE_RET_STACK)
 163		config->ctrl |= ETMCR_RETURN_STACK;
 164	else
 165		config->ctrl &= ~ETMCR_RETURN_STACK;
 166
 167	if (config->mode & (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER))
 168		etm_config_trace_mode(config);
 169
 170	spin_unlock(&drvdata->spinlock);
 171
 172	return size;
 173
 174err_unlock:
 175	spin_unlock(&drvdata->spinlock);
 176	return ret;
 177}
 178static DEVICE_ATTR_RW(mode);
 179
 180static ssize_t trigger_event_show(struct device *dev,
 181				  struct device_attribute *attr, char *buf)
 182{
 183	unsigned long val;
 184	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 185	struct etm_config *config = &drvdata->config;
 186
 187	val = config->trigger_event;
 188	return sprintf(buf, "%#lx\n", val);
 189}
 190
 191static ssize_t trigger_event_store(struct device *dev,
 192				   struct device_attribute *attr,
 193				   const char *buf, size_t size)
 194{
 195	int ret;
 196	unsigned long val;
 197	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 198	struct etm_config *config = &drvdata->config;
 199
 200	ret = kstrtoul(buf, 16, &val);
 201	if (ret)
 202		return ret;
 203
 204	config->trigger_event = val & ETM_EVENT_MASK;
 205
 206	return size;
 207}
 208static DEVICE_ATTR_RW(trigger_event);
 209
 210static ssize_t enable_event_show(struct device *dev,
 211				 struct device_attribute *attr, char *buf)
 212{
 213	unsigned long val;
 214	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 215	struct etm_config *config = &drvdata->config;
 216
 217	val = config->enable_event;
 218	return sprintf(buf, "%#lx\n", val);
 219}
 220
 221static ssize_t enable_event_store(struct device *dev,
 222				  struct device_attribute *attr,
 223				  const char *buf, size_t size)
 224{
 225	int ret;
 226	unsigned long val;
 227	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 228	struct etm_config *config = &drvdata->config;
 229
 230	ret = kstrtoul(buf, 16, &val);
 231	if (ret)
 232		return ret;
 233
 234	config->enable_event = val & ETM_EVENT_MASK;
 235
 236	return size;
 237}
 238static DEVICE_ATTR_RW(enable_event);
 239
 240static ssize_t fifofull_level_show(struct device *dev,
 241				   struct device_attribute *attr, char *buf)
 242{
 243	unsigned long val;
 244	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 245	struct etm_config *config = &drvdata->config;
 246
 247	val = config->fifofull_level;
 248	return sprintf(buf, "%#lx\n", val);
 249}
 250
 251static ssize_t fifofull_level_store(struct device *dev,
 252				    struct device_attribute *attr,
 253				    const char *buf, size_t size)
 254{
 255	int ret;
 256	unsigned long val;
 257	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 258	struct etm_config *config = &drvdata->config;
 259
 260	ret = kstrtoul(buf, 16, &val);
 261	if (ret)
 262		return ret;
 263
 264	config->fifofull_level = val;
 265
 266	return size;
 267}
 268static DEVICE_ATTR_RW(fifofull_level);
 269
 270static ssize_t addr_idx_show(struct device *dev,
 271			     struct device_attribute *attr, char *buf)
 272{
 273	unsigned long val;
 274	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 275	struct etm_config *config = &drvdata->config;
 276
 277	val = config->addr_idx;
 278	return sprintf(buf, "%#lx\n", val);
 279}
 280
 281static ssize_t addr_idx_store(struct device *dev,
 282			      struct device_attribute *attr,
 283			      const char *buf, size_t size)
 284{
 285	int ret;
 286	unsigned long val;
 287	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 288	struct etm_config *config = &drvdata->config;
 289
 290	ret = kstrtoul(buf, 16, &val);
 291	if (ret)
 292		return ret;
 293
 294	if (val >= drvdata->nr_addr_cmp)
 295		return -EINVAL;
 296
 297	/*
 298	 * Use spinlock to ensure index doesn't change while it gets
 299	 * dereferenced multiple times within a spinlock block elsewhere.
 300	 */
 301	spin_lock(&drvdata->spinlock);
 302	config->addr_idx = val;
 303	spin_unlock(&drvdata->spinlock);
 304
 305	return size;
 306}
 307static DEVICE_ATTR_RW(addr_idx);
 308
 309static ssize_t addr_single_show(struct device *dev,
 310				struct device_attribute *attr, char *buf)
 311{
 312	u8 idx;
 313	unsigned long val;
 314	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 315	struct etm_config *config = &drvdata->config;
 316
 317	spin_lock(&drvdata->spinlock);
 318	idx = config->addr_idx;
 319	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 320	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
 321		spin_unlock(&drvdata->spinlock);
 322		return -EINVAL;
 323	}
 324
 325	val = config->addr_val[idx];
 326	spin_unlock(&drvdata->spinlock);
 327
 328	return sprintf(buf, "%#lx\n", val);
 329}
 330
 331static ssize_t addr_single_store(struct device *dev,
 332				 struct device_attribute *attr,
 333				 const char *buf, size_t size)
 334{
 335	u8 idx;
 336	int ret;
 337	unsigned long val;
 338	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 339	struct etm_config *config = &drvdata->config;
 340
 341	ret = kstrtoul(buf, 16, &val);
 342	if (ret)
 343		return ret;
 344
 345	spin_lock(&drvdata->spinlock);
 346	idx = config->addr_idx;
 347	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 348	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
 349		spin_unlock(&drvdata->spinlock);
 350		return -EINVAL;
 351	}
 352
 353	config->addr_val[idx] = val;
 354	config->addr_type[idx] = ETM_ADDR_TYPE_SINGLE;
 355	spin_unlock(&drvdata->spinlock);
 356
 357	return size;
 358}
 359static DEVICE_ATTR_RW(addr_single);
 360
 361static ssize_t addr_range_show(struct device *dev,
 362			       struct device_attribute *attr, char *buf)
 363{
 364	u8 idx;
 365	unsigned long val1, val2;
 366	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 367	struct etm_config *config = &drvdata->config;
 368
 369	spin_lock(&drvdata->spinlock);
 370	idx = config->addr_idx;
 371	if (idx % 2 != 0) {
 372		spin_unlock(&drvdata->spinlock);
 373		return -EPERM;
 374	}
 375	if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
 376	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
 377	      (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
 378	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
 379		spin_unlock(&drvdata->spinlock);
 380		return -EPERM;
 381	}
 382
 383	val1 = config->addr_val[idx];
 384	val2 = config->addr_val[idx + 1];
 385	spin_unlock(&drvdata->spinlock);
 386
 387	return sprintf(buf, "%#lx %#lx\n", val1, val2);
 388}
 389
 390static ssize_t addr_range_store(struct device *dev,
 391			      struct device_attribute *attr,
 392			      const char *buf, size_t size)
 393{
 394	u8 idx;
 395	unsigned long val1, val2;
 396	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 397	struct etm_config *config = &drvdata->config;
 398
 399	if (sscanf(buf, "%lx %lx", &val1, &val2) != 2)
 400		return -EINVAL;
 401	/* Lower address comparator cannot have a higher address value */
 402	if (val1 > val2)
 403		return -EINVAL;
 404
 405	spin_lock(&drvdata->spinlock);
 406	idx = config->addr_idx;
 407	if (idx % 2 != 0) {
 408		spin_unlock(&drvdata->spinlock);
 409		return -EPERM;
 410	}
 411	if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
 412	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
 413	      (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
 414	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
 415		spin_unlock(&drvdata->spinlock);
 416		return -EPERM;
 417	}
 418
 419	config->addr_val[idx] = val1;
 420	config->addr_type[idx] = ETM_ADDR_TYPE_RANGE;
 421	config->addr_val[idx + 1] = val2;
 422	config->addr_type[idx + 1] = ETM_ADDR_TYPE_RANGE;
 423	config->enable_ctrl1 |= (1 << (idx/2));
 424	spin_unlock(&drvdata->spinlock);
 425
 426	return size;
 427}
 428static DEVICE_ATTR_RW(addr_range);
 429
 430static ssize_t addr_start_show(struct device *dev,
 431			       struct device_attribute *attr, char *buf)
 432{
 433	u8 idx;
 434	unsigned long val;
 435	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 436	struct etm_config *config = &drvdata->config;
 437
 438	spin_lock(&drvdata->spinlock);
 439	idx = config->addr_idx;
 440	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 441	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
 442		spin_unlock(&drvdata->spinlock);
 443		return -EPERM;
 444	}
 445
 446	val = config->addr_val[idx];
 447	spin_unlock(&drvdata->spinlock);
 448
 449	return sprintf(buf, "%#lx\n", val);
 450}
 451
 452static ssize_t addr_start_store(struct device *dev,
 453				struct device_attribute *attr,
 454				const char *buf, size_t size)
 455{
 456	u8 idx;
 457	int ret;
 458	unsigned long val;
 459	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 460	struct etm_config *config = &drvdata->config;
 461
 462	ret = kstrtoul(buf, 16, &val);
 463	if (ret)
 464		return ret;
 465
 466	spin_lock(&drvdata->spinlock);
 467	idx = config->addr_idx;
 468	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 469	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
 470		spin_unlock(&drvdata->spinlock);
 471		return -EPERM;
 472	}
 473
 474	config->addr_val[idx] = val;
 475	config->addr_type[idx] = ETM_ADDR_TYPE_START;
 476	config->startstop_ctrl |= (1 << idx);
 477	config->enable_ctrl1 |= ETMTECR1_START_STOP;
 478	spin_unlock(&drvdata->spinlock);
 479
 480	return size;
 481}
 482static DEVICE_ATTR_RW(addr_start);
 483
 484static ssize_t addr_stop_show(struct device *dev,
 485			      struct device_attribute *attr, char *buf)
 486{
 487	u8 idx;
 488	unsigned long val;
 489	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 490	struct etm_config *config = &drvdata->config;
 491
 492	spin_lock(&drvdata->spinlock);
 493	idx = config->addr_idx;
 494	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 495	      config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
 496		spin_unlock(&drvdata->spinlock);
 497		return -EPERM;
 498	}
 499
 500	val = config->addr_val[idx];
 501	spin_unlock(&drvdata->spinlock);
 502
 503	return sprintf(buf, "%#lx\n", val);
 504}
 505
 506static ssize_t addr_stop_store(struct device *dev,
 507			       struct device_attribute *attr,
 508			       const char *buf, size_t size)
 509{
 510	u8 idx;
 511	int ret;
 512	unsigned long val;
 513	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 514	struct etm_config *config = &drvdata->config;
 515
 516	ret = kstrtoul(buf, 16, &val);
 517	if (ret)
 518		return ret;
 519
 520	spin_lock(&drvdata->spinlock);
 521	idx = config->addr_idx;
 522	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 523	      config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
 524		spin_unlock(&drvdata->spinlock);
 525		return -EPERM;
 526	}
 527
 528	config->addr_val[idx] = val;
 529	config->addr_type[idx] = ETM_ADDR_TYPE_STOP;
 530	config->startstop_ctrl |= (1 << (idx + 16));
 531	config->enable_ctrl1 |= ETMTECR1_START_STOP;
 532	spin_unlock(&drvdata->spinlock);
 533
 534	return size;
 535}
 536static DEVICE_ATTR_RW(addr_stop);
 537
 538static ssize_t addr_acctype_show(struct device *dev,
 539				 struct device_attribute *attr, char *buf)
 540{
 541	unsigned long val;
 542	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 543	struct etm_config *config = &drvdata->config;
 544
 545	spin_lock(&drvdata->spinlock);
 546	val = config->addr_acctype[config->addr_idx];
 547	spin_unlock(&drvdata->spinlock);
 548
 549	return sprintf(buf, "%#lx\n", val);
 550}
 551
 552static ssize_t addr_acctype_store(struct device *dev,
 553				  struct device_attribute *attr,
 554				  const char *buf, size_t size)
 555{
 556	int ret;
 557	unsigned long val;
 558	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 559	struct etm_config *config = &drvdata->config;
 560
 561	ret = kstrtoul(buf, 16, &val);
 562	if (ret)
 563		return ret;
 564
 565	spin_lock(&drvdata->spinlock);
 566	config->addr_acctype[config->addr_idx] = val;
 567	spin_unlock(&drvdata->spinlock);
 568
 569	return size;
 570}
 571static DEVICE_ATTR_RW(addr_acctype);
 572
 573static ssize_t cntr_idx_show(struct device *dev,
 574			     struct device_attribute *attr, char *buf)
 575{
 576	unsigned long val;
 577	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 578	struct etm_config *config = &drvdata->config;
 579
 580	val = config->cntr_idx;
 581	return sprintf(buf, "%#lx\n", val);
 582}
 583
 584static ssize_t cntr_idx_store(struct device *dev,
 585			      struct device_attribute *attr,
 586			      const char *buf, size_t size)
 587{
 588	int ret;
 589	unsigned long val;
 590	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 591	struct etm_config *config = &drvdata->config;
 592
 593	ret = kstrtoul(buf, 16, &val);
 594	if (ret)
 595		return ret;
 596
 597	if (val >= drvdata->nr_cntr)
 598		return -EINVAL;
 599	/*
 600	 * Use spinlock to ensure index doesn't change while it gets
 601	 * dereferenced multiple times within a spinlock block elsewhere.
 602	 */
 603	spin_lock(&drvdata->spinlock);
 604	config->cntr_idx = val;
 605	spin_unlock(&drvdata->spinlock);
 606
 607	return size;
 608}
 609static DEVICE_ATTR_RW(cntr_idx);
 610
 611static ssize_t cntr_rld_val_show(struct device *dev,
 612				 struct device_attribute *attr, char *buf)
 613{
 614	unsigned long val;
 615	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 616	struct etm_config *config = &drvdata->config;
 617
 618	spin_lock(&drvdata->spinlock);
 619	val = config->cntr_rld_val[config->cntr_idx];
 620	spin_unlock(&drvdata->spinlock);
 621
 622	return sprintf(buf, "%#lx\n", val);
 623}
 624
 625static ssize_t cntr_rld_val_store(struct device *dev,
 626				  struct device_attribute *attr,
 627				  const char *buf, size_t size)
 628{
 629	int ret;
 630	unsigned long val;
 631	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 632	struct etm_config *config = &drvdata->config;
 633
 634	ret = kstrtoul(buf, 16, &val);
 635	if (ret)
 636		return ret;
 637
 638	spin_lock(&drvdata->spinlock);
 639	config->cntr_rld_val[config->cntr_idx] = val;
 640	spin_unlock(&drvdata->spinlock);
 641
 642	return size;
 643}
 644static DEVICE_ATTR_RW(cntr_rld_val);
 645
 646static ssize_t cntr_event_show(struct device *dev,
 647			       struct device_attribute *attr, char *buf)
 648{
 649	unsigned long val;
 650	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 651	struct etm_config *config = &drvdata->config;
 652
 653	spin_lock(&drvdata->spinlock);
 654	val = config->cntr_event[config->cntr_idx];
 655	spin_unlock(&drvdata->spinlock);
 656
 657	return sprintf(buf, "%#lx\n", val);
 658}
 659
 660static ssize_t cntr_event_store(struct device *dev,
 661				struct device_attribute *attr,
 662				const char *buf, size_t size)
 663{
 664	int ret;
 665	unsigned long val;
 666	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 667	struct etm_config *config = &drvdata->config;
 668
 669	ret = kstrtoul(buf, 16, &val);
 670	if (ret)
 671		return ret;
 672
 673	spin_lock(&drvdata->spinlock);
 674	config->cntr_event[config->cntr_idx] = val & ETM_EVENT_MASK;
 675	spin_unlock(&drvdata->spinlock);
 676
 677	return size;
 678}
 679static DEVICE_ATTR_RW(cntr_event);
 680
 681static ssize_t cntr_rld_event_show(struct device *dev,
 682				   struct device_attribute *attr, char *buf)
 683{
 684	unsigned long val;
 685	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 686	struct etm_config *config = &drvdata->config;
 687
 688	spin_lock(&drvdata->spinlock);
 689	val = config->cntr_rld_event[config->cntr_idx];
 690	spin_unlock(&drvdata->spinlock);
 691
 692	return sprintf(buf, "%#lx\n", val);
 693}
 694
 695static ssize_t cntr_rld_event_store(struct device *dev,
 696				    struct device_attribute *attr,
 697				    const char *buf, size_t size)
 698{
 699	int ret;
 700	unsigned long val;
 701	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 702	struct etm_config *config = &drvdata->config;
 703
 704	ret = kstrtoul(buf, 16, &val);
 705	if (ret)
 706		return ret;
 707
 708	spin_lock(&drvdata->spinlock);
 709	config->cntr_rld_event[config->cntr_idx] = val & ETM_EVENT_MASK;
 710	spin_unlock(&drvdata->spinlock);
 711
 712	return size;
 713}
 714static DEVICE_ATTR_RW(cntr_rld_event);
 715
 716static ssize_t cntr_val_show(struct device *dev,
 717			     struct device_attribute *attr, char *buf)
 718{
 719	int i, ret = 0;
 720	u32 val;
 721	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 722	struct etm_config *config = &drvdata->config;
 723
 724	if (!local_read(&drvdata->mode)) {
 725		spin_lock(&drvdata->spinlock);
 726		for (i = 0; i < drvdata->nr_cntr; i++)
 727			ret += sprintf(buf, "counter %d: %x\n",
 728				       i, config->cntr_val[i]);
 729		spin_unlock(&drvdata->spinlock);
 730		return ret;
 731	}
 732
 733	for (i = 0; i < drvdata->nr_cntr; i++) {
 734		val = etm_readl(drvdata, ETMCNTVRn(i));
 735		ret += sprintf(buf, "counter %d: %x\n", i, val);
 736	}
 737
 738	return ret;
 739}
 740
 741static ssize_t cntr_val_store(struct device *dev,
 742			      struct device_attribute *attr,
 743			      const char *buf, size_t size)
 744{
 745	int ret;
 746	unsigned long val;
 747	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 748	struct etm_config *config = &drvdata->config;
 749
 750	ret = kstrtoul(buf, 16, &val);
 751	if (ret)
 752		return ret;
 753
 754	spin_lock(&drvdata->spinlock);
 755	config->cntr_val[config->cntr_idx] = val;
 756	spin_unlock(&drvdata->spinlock);
 757
 758	return size;
 759}
 760static DEVICE_ATTR_RW(cntr_val);
 761
 762static ssize_t seq_12_event_show(struct device *dev,
 763				 struct device_attribute *attr, char *buf)
 764{
 765	unsigned long val;
 766	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 767	struct etm_config *config = &drvdata->config;
 768
 769	val = config->seq_12_event;
 770	return sprintf(buf, "%#lx\n", val);
 771}
 772
 773static ssize_t seq_12_event_store(struct device *dev,
 774				  struct device_attribute *attr,
 775				  const char *buf, size_t size)
 776{
 777	int ret;
 778	unsigned long val;
 779	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 780	struct etm_config *config = &drvdata->config;
 781
 782	ret = kstrtoul(buf, 16, &val);
 783	if (ret)
 784		return ret;
 785
 786	config->seq_12_event = val & ETM_EVENT_MASK;
 787	return size;
 788}
 789static DEVICE_ATTR_RW(seq_12_event);
 790
 791static ssize_t seq_21_event_show(struct device *dev,
 792				 struct device_attribute *attr, char *buf)
 793{
 794	unsigned long val;
 795	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 796	struct etm_config *config = &drvdata->config;
 797
 798	val = config->seq_21_event;
 799	return sprintf(buf, "%#lx\n", val);
 800}
 801
 802static ssize_t seq_21_event_store(struct device *dev,
 803				  struct device_attribute *attr,
 804				  const char *buf, size_t size)
 805{
 806	int ret;
 807	unsigned long val;
 808	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 809	struct etm_config *config = &drvdata->config;
 810
 811	ret = kstrtoul(buf, 16, &val);
 812	if (ret)
 813		return ret;
 814
 815	config->seq_21_event = val & ETM_EVENT_MASK;
 816	return size;
 817}
 818static DEVICE_ATTR_RW(seq_21_event);
 819
 820static ssize_t seq_23_event_show(struct device *dev,
 821				 struct device_attribute *attr, char *buf)
 822{
 823	unsigned long val;
 824	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 825	struct etm_config *config = &drvdata->config;
 826
 827	val = config->seq_23_event;
 828	return sprintf(buf, "%#lx\n", val);
 829}
 830
 831static ssize_t seq_23_event_store(struct device *dev,
 832				  struct device_attribute *attr,
 833				  const char *buf, size_t size)
 834{
 835	int ret;
 836	unsigned long val;
 837	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 838	struct etm_config *config = &drvdata->config;
 839
 840	ret = kstrtoul(buf, 16, &val);
 841	if (ret)
 842		return ret;
 843
 844	config->seq_23_event = val & ETM_EVENT_MASK;
 845	return size;
 846}
 847static DEVICE_ATTR_RW(seq_23_event);
 848
 849static ssize_t seq_31_event_show(struct device *dev,
 850				 struct device_attribute *attr, char *buf)
 851{
 852	unsigned long val;
 853	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 854	struct etm_config *config = &drvdata->config;
 855
 856	val = config->seq_31_event;
 857	return sprintf(buf, "%#lx\n", val);
 858}
 859
 860static ssize_t seq_31_event_store(struct device *dev,
 861				  struct device_attribute *attr,
 862				  const char *buf, size_t size)
 863{
 864	int ret;
 865	unsigned long val;
 866	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 867	struct etm_config *config = &drvdata->config;
 868
 869	ret = kstrtoul(buf, 16, &val);
 870	if (ret)
 871		return ret;
 872
 873	config->seq_31_event = val & ETM_EVENT_MASK;
 874	return size;
 875}
 876static DEVICE_ATTR_RW(seq_31_event);
 877
 878static ssize_t seq_32_event_show(struct device *dev,
 879				 struct device_attribute *attr, char *buf)
 880{
 881	unsigned long val;
 882	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 883	struct etm_config *config = &drvdata->config;
 884
 885	val = config->seq_32_event;
 886	return sprintf(buf, "%#lx\n", val);
 887}
 888
 889static ssize_t seq_32_event_store(struct device *dev,
 890				  struct device_attribute *attr,
 891				  const char *buf, size_t size)
 892{
 893	int ret;
 894	unsigned long val;
 895	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 896	struct etm_config *config = &drvdata->config;
 897
 898	ret = kstrtoul(buf, 16, &val);
 899	if (ret)
 900		return ret;
 901
 902	config->seq_32_event = val & ETM_EVENT_MASK;
 903	return size;
 904}
 905static DEVICE_ATTR_RW(seq_32_event);
 906
 907static ssize_t seq_13_event_show(struct device *dev,
 908				 struct device_attribute *attr, char *buf)
 909{
 910	unsigned long val;
 911	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 912	struct etm_config *config = &drvdata->config;
 913
 914	val = config->seq_13_event;
 915	return sprintf(buf, "%#lx\n", val);
 916}
 917
 918static ssize_t seq_13_event_store(struct device *dev,
 919				  struct device_attribute *attr,
 920				  const char *buf, size_t size)
 921{
 922	int ret;
 923	unsigned long val;
 924	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 925	struct etm_config *config = &drvdata->config;
 926
 927	ret = kstrtoul(buf, 16, &val);
 928	if (ret)
 929		return ret;
 930
 931	config->seq_13_event = val & ETM_EVENT_MASK;
 932	return size;
 933}
 934static DEVICE_ATTR_RW(seq_13_event);
 935
 936static ssize_t seq_curr_state_show(struct device *dev,
 937				   struct device_attribute *attr, char *buf)
 938{
 939	unsigned long val, flags;
 940	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 941	struct etm_config *config = &drvdata->config;
 942
 943	if (!local_read(&drvdata->mode)) {
 944		val = config->seq_curr_state;
 945		goto out;
 946	}
 947
 948	pm_runtime_get_sync(dev->parent);
 949	spin_lock_irqsave(&drvdata->spinlock, flags);
 950
 951	CS_UNLOCK(drvdata->base);
 952	val = (etm_readl(drvdata, ETMSQR) & ETM_SQR_MASK);
 953	CS_LOCK(drvdata->base);
 954
 955	spin_unlock_irqrestore(&drvdata->spinlock, flags);
 956	pm_runtime_put(dev->parent);
 957out:
 958	return sprintf(buf, "%#lx\n", val);
 959}
 960
 961static ssize_t seq_curr_state_store(struct device *dev,
 962				    struct device_attribute *attr,
 963				    const char *buf, size_t size)
 964{
 965	int ret;
 966	unsigned long val;
 967	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 968	struct etm_config *config = &drvdata->config;
 969
 970	ret = kstrtoul(buf, 16, &val);
 971	if (ret)
 972		return ret;
 973
 974	if (val > ETM_SEQ_STATE_MAX_VAL)
 975		return -EINVAL;
 976
 977	config->seq_curr_state = val;
 978
 979	return size;
 980}
 981static DEVICE_ATTR_RW(seq_curr_state);
 982
 983static ssize_t ctxid_idx_show(struct device *dev,
 984			      struct device_attribute *attr, char *buf)
 985{
 986	unsigned long val;
 987	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 988	struct etm_config *config = &drvdata->config;
 989
 990	val = config->ctxid_idx;
 991	return sprintf(buf, "%#lx\n", val);
 992}
 993
 994static ssize_t ctxid_idx_store(struct device *dev,
 995				struct device_attribute *attr,
 996				const char *buf, size_t size)
 997{
 998	int ret;
 999	unsigned long val;
1000	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1001	struct etm_config *config = &drvdata->config;
1002
1003	ret = kstrtoul(buf, 16, &val);
1004	if (ret)
1005		return ret;
1006
1007	if (val >= drvdata->nr_ctxid_cmp)
1008		return -EINVAL;
1009
1010	/*
1011	 * Use spinlock to ensure index doesn't change while it gets
1012	 * dereferenced multiple times within a spinlock block elsewhere.
1013	 */
1014	spin_lock(&drvdata->spinlock);
1015	config->ctxid_idx = val;
1016	spin_unlock(&drvdata->spinlock);
1017
1018	return size;
1019}
1020static DEVICE_ATTR_RW(ctxid_idx);
1021
1022static ssize_t ctxid_pid_show(struct device *dev,
1023			      struct device_attribute *attr, char *buf)
1024{
1025	unsigned long val;
1026	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1027	struct etm_config *config = &drvdata->config;
1028
1029	/*
1030	 * Don't use contextID tracing if coming from a PID namespace.  See
1031	 * comment in ctxid_pid_store().
1032	 */
1033	if (task_active_pid_ns(current) != &init_pid_ns)
1034		return -EINVAL;
1035
1036	spin_lock(&drvdata->spinlock);
1037	val = config->ctxid_pid[config->ctxid_idx];
1038	spin_unlock(&drvdata->spinlock);
1039
1040	return sprintf(buf, "%#lx\n", val);
1041}
1042
1043static ssize_t ctxid_pid_store(struct device *dev,
1044			       struct device_attribute *attr,
1045			       const char *buf, size_t size)
1046{
1047	int ret;
1048	unsigned long pid;
1049	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1050	struct etm_config *config = &drvdata->config;
1051
1052	/*
1053	 * When contextID tracing is enabled the tracers will insert the
1054	 * value found in the contextID register in the trace stream.  But if
1055	 * a process is in a namespace the PID of that process as seen from the
1056	 * namespace won't be what the kernel sees, something that makes the
1057	 * feature confusing and can potentially leak kernel only information.
1058	 * As such refuse to use the feature if @current is not in the initial
1059	 * PID namespace.
1060	 */
1061	if (task_active_pid_ns(current) != &init_pid_ns)
1062		return -EINVAL;
1063
1064	ret = kstrtoul(buf, 16, &pid);
1065	if (ret)
1066		return ret;
1067
1068	spin_lock(&drvdata->spinlock);
1069	config->ctxid_pid[config->ctxid_idx] = pid;
1070	spin_unlock(&drvdata->spinlock);
1071
1072	return size;
1073}
1074static DEVICE_ATTR_RW(ctxid_pid);
1075
1076static ssize_t ctxid_mask_show(struct device *dev,
1077			       struct device_attribute *attr, char *buf)
1078{
1079	unsigned long val;
1080	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1081	struct etm_config *config = &drvdata->config;
1082
1083	/*
1084	 * Don't use contextID tracing if coming from a PID namespace.  See
1085	 * comment in ctxid_pid_store().
1086	 */
1087	if (task_active_pid_ns(current) != &init_pid_ns)
1088		return -EINVAL;
1089
1090	val = config->ctxid_mask;
1091	return sprintf(buf, "%#lx\n", val);
1092}
1093
1094static ssize_t ctxid_mask_store(struct device *dev,
1095				struct device_attribute *attr,
1096				const char *buf, size_t size)
1097{
1098	int ret;
1099	unsigned long val;
1100	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1101	struct etm_config *config = &drvdata->config;
1102
1103	/*
1104	 * Don't use contextID tracing if coming from a PID namespace.  See
1105	 * comment in ctxid_pid_store().
1106	 */
1107	if (task_active_pid_ns(current) != &init_pid_ns)
1108		return -EINVAL;
1109
1110	ret = kstrtoul(buf, 16, &val);
1111	if (ret)
1112		return ret;
1113
1114	config->ctxid_mask = val;
1115	return size;
1116}
1117static DEVICE_ATTR_RW(ctxid_mask);
1118
1119static ssize_t sync_freq_show(struct device *dev,
1120			      struct device_attribute *attr, char *buf)
1121{
1122	unsigned long val;
1123	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1124	struct etm_config *config = &drvdata->config;
1125
1126	val = config->sync_freq;
1127	return sprintf(buf, "%#lx\n", val);
1128}
1129
1130static ssize_t sync_freq_store(struct device *dev,
1131			       struct device_attribute *attr,
1132			       const char *buf, size_t size)
1133{
1134	int ret;
1135	unsigned long val;
1136	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1137	struct etm_config *config = &drvdata->config;
1138
1139	ret = kstrtoul(buf, 16, &val);
1140	if (ret)
1141		return ret;
1142
1143	config->sync_freq = val & ETM_SYNC_MASK;
1144	return size;
1145}
1146static DEVICE_ATTR_RW(sync_freq);
1147
1148static ssize_t timestamp_event_show(struct device *dev,
1149				    struct device_attribute *attr, char *buf)
1150{
1151	unsigned long val;
1152	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1153	struct etm_config *config = &drvdata->config;
1154
1155	val = config->timestamp_event;
1156	return sprintf(buf, "%#lx\n", val);
1157}
1158
1159static ssize_t timestamp_event_store(struct device *dev,
1160				     struct device_attribute *attr,
1161				     const char *buf, size_t size)
1162{
1163	int ret;
1164	unsigned long val;
1165	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1166	struct etm_config *config = &drvdata->config;
1167
1168	ret = kstrtoul(buf, 16, &val);
1169	if (ret)
1170		return ret;
1171
1172	config->timestamp_event = val & ETM_EVENT_MASK;
1173	return size;
1174}
1175static DEVICE_ATTR_RW(timestamp_event);
1176
1177static ssize_t cpu_show(struct device *dev,
1178			struct device_attribute *attr, char *buf)
1179{
1180	int val;
1181	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1182
1183	val = drvdata->cpu;
1184	return scnprintf(buf, PAGE_SIZE, "%d\n", val);
1185
1186}
1187static DEVICE_ATTR_RO(cpu);
1188
1189static ssize_t traceid_show(struct device *dev,
1190			    struct device_attribute *attr, char *buf)
1191{
1192	unsigned long val;
1193	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1194
1195	val = etm_get_trace_id(drvdata);
1196
1197	return sprintf(buf, "%#lx\n", val);
1198}
1199
1200static ssize_t traceid_store(struct device *dev,
1201			     struct device_attribute *attr,
1202			     const char *buf, size_t size)
1203{
1204	int ret;
1205	unsigned long val;
1206	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1207
1208	ret = kstrtoul(buf, 16, &val);
1209	if (ret)
1210		return ret;
1211
1212	drvdata->traceid = val & ETM_TRACEID_MASK;
1213	return size;
1214}
1215static DEVICE_ATTR_RW(traceid);
1216
1217static struct attribute *coresight_etm_attrs[] = {
1218	&dev_attr_nr_addr_cmp.attr,
1219	&dev_attr_nr_cntr.attr,
1220	&dev_attr_nr_ctxid_cmp.attr,
1221	&dev_attr_etmsr.attr,
1222	&dev_attr_reset.attr,
1223	&dev_attr_mode.attr,
1224	&dev_attr_trigger_event.attr,
1225	&dev_attr_enable_event.attr,
1226	&dev_attr_fifofull_level.attr,
1227	&dev_attr_addr_idx.attr,
1228	&dev_attr_addr_single.attr,
1229	&dev_attr_addr_range.attr,
1230	&dev_attr_addr_start.attr,
1231	&dev_attr_addr_stop.attr,
1232	&dev_attr_addr_acctype.attr,
1233	&dev_attr_cntr_idx.attr,
1234	&dev_attr_cntr_rld_val.attr,
1235	&dev_attr_cntr_event.attr,
1236	&dev_attr_cntr_rld_event.attr,
1237	&dev_attr_cntr_val.attr,
1238	&dev_attr_seq_12_event.attr,
1239	&dev_attr_seq_21_event.attr,
1240	&dev_attr_seq_23_event.attr,
1241	&dev_attr_seq_31_event.attr,
1242	&dev_attr_seq_32_event.attr,
1243	&dev_attr_seq_13_event.attr,
1244	&dev_attr_seq_curr_state.attr,
1245	&dev_attr_ctxid_idx.attr,
1246	&dev_attr_ctxid_pid.attr,
1247	&dev_attr_ctxid_mask.attr,
1248	&dev_attr_sync_freq.attr,
1249	&dev_attr_timestamp_event.attr,
1250	&dev_attr_traceid.attr,
1251	&dev_attr_cpu.attr,
1252	NULL,
1253};
1254
1255static struct attribute *coresight_etm_mgmt_attrs[] = {
1256	coresight_simple_reg32(etmccr, ETMCCR),
1257	coresight_simple_reg32(etmccer, ETMCCER),
1258	coresight_simple_reg32(etmscr, ETMSCR),
1259	coresight_simple_reg32(etmidr, ETMIDR),
1260	coresight_simple_reg32(etmcr, ETMCR),
1261	coresight_simple_reg32(etmtraceidr, ETMTRACEIDR),
1262	coresight_simple_reg32(etmteevr, ETMTEEVR),
1263	coresight_simple_reg32(etmtssvr, ETMTSSCR),
1264	coresight_simple_reg32(etmtecr1, ETMTECR1),
1265	coresight_simple_reg32(etmtecr2, ETMTECR2),
1266	NULL,
1267};
1268
1269static const struct attribute_group coresight_etm_group = {
1270	.attrs = coresight_etm_attrs,
1271};
1272
1273static const struct attribute_group coresight_etm_mgmt_group = {
1274	.attrs = coresight_etm_mgmt_attrs,
1275	.name = "mgmt",
1276};
1277
1278const struct attribute_group *coresight_etm_groups[] = {
1279	&coresight_etm_group,
1280	&coresight_etm_mgmt_group,
1281	NULL,
1282};
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright(C) 2015 Linaro Limited. All rights reserved.
   4 * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
   5 */
   6
   7#include <linux/pid_namespace.h>
   8#include <linux/pm_runtime.h>
   9#include <linux/sysfs.h>
  10#include "coresight-etm.h"
  11#include "coresight-priv.h"
  12
  13static ssize_t nr_addr_cmp_show(struct device *dev,
  14				struct device_attribute *attr, char *buf)
  15{
  16	unsigned long val;
  17	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  18
  19	val = drvdata->nr_addr_cmp;
  20	return sprintf(buf, "%#lx\n", val);
  21}
  22static DEVICE_ATTR_RO(nr_addr_cmp);
  23
  24static ssize_t nr_cntr_show(struct device *dev,
  25			    struct device_attribute *attr, char *buf)
  26{	unsigned long val;
  27	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  28
  29	val = drvdata->nr_cntr;
  30	return sprintf(buf, "%#lx\n", val);
  31}
  32static DEVICE_ATTR_RO(nr_cntr);
  33
  34static ssize_t nr_ctxid_cmp_show(struct device *dev,
  35				 struct device_attribute *attr, char *buf)
  36{
  37	unsigned long val;
  38	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  39
  40	val = drvdata->nr_ctxid_cmp;
  41	return sprintf(buf, "%#lx\n", val);
  42}
  43static DEVICE_ATTR_RO(nr_ctxid_cmp);
  44
  45static ssize_t etmsr_show(struct device *dev,
  46			  struct device_attribute *attr, char *buf)
  47{
  48	unsigned long flags, val;
  49	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  50
  51	pm_runtime_get_sync(dev->parent);
  52	spin_lock_irqsave(&drvdata->spinlock, flags);
  53	CS_UNLOCK(drvdata->base);
  54
  55	val = etm_readl(drvdata, ETMSR);
  56
  57	CS_LOCK(drvdata->base);
  58	spin_unlock_irqrestore(&drvdata->spinlock, flags);
  59	pm_runtime_put(dev->parent);
  60
  61	return sprintf(buf, "%#lx\n", val);
  62}
  63static DEVICE_ATTR_RO(etmsr);
  64
  65static ssize_t reset_store(struct device *dev,
  66			   struct device_attribute *attr,
  67			   const char *buf, size_t size)
  68{
  69	int i, ret;
  70	unsigned long val;
  71	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
  72	struct etm_config *config = &drvdata->config;
  73
  74	ret = kstrtoul(buf, 16, &val);
  75	if (ret)
  76		return ret;
  77
  78	if (val) {
  79		spin_lock(&drvdata->spinlock);
  80		memset(config, 0, sizeof(struct etm_config));
  81		config->mode = ETM_MODE_EXCLUDE;
  82		config->trigger_event = ETM_DEFAULT_EVENT_VAL;
  83		for (i = 0; i < drvdata->nr_addr_cmp; i++) {
  84			config->addr_type[i] = ETM_ADDR_TYPE_NONE;
  85		}
  86
  87		etm_set_default(config);
  88		etm_release_trace_id(drvdata);
  89		spin_unlock(&drvdata->spinlock);
  90	}
  91
  92	return size;
  93}
  94static DEVICE_ATTR_WO(reset);
  95
  96static ssize_t mode_show(struct device *dev,
  97			 struct device_attribute *attr, char *buf)
  98{
  99	unsigned long val;
 100	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 101	struct etm_config *config = &drvdata->config;
 102
 103	val = config->mode;
 104	return sprintf(buf, "%#lx\n", val);
 105}
 106
 107static ssize_t mode_store(struct device *dev,
 108			  struct device_attribute *attr,
 109			  const char *buf, size_t size)
 110{
 111	int ret;
 112	unsigned long val;
 113	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 114	struct etm_config *config = &drvdata->config;
 115
 116	ret = kstrtoul(buf, 16, &val);
 117	if (ret)
 118		return ret;
 119
 120	spin_lock(&drvdata->spinlock);
 121	config->mode = val & ETM_MODE_ALL;
 122
 123	if (config->mode & ETM_MODE_EXCLUDE)
 124		config->enable_ctrl1 |= ETMTECR1_INC_EXC;
 125	else
 126		config->enable_ctrl1 &= ~ETMTECR1_INC_EXC;
 127
 128	if (config->mode & ETM_MODE_CYCACC)
 129		config->ctrl |= ETMCR_CYC_ACC;
 130	else
 131		config->ctrl &= ~ETMCR_CYC_ACC;
 132
 133	if (config->mode & ETM_MODE_STALL) {
 134		if (!(drvdata->etmccr & ETMCCR_FIFOFULL)) {
 135			dev_warn(dev, "stall mode not supported\n");
 136			ret = -EINVAL;
 137			goto err_unlock;
 138		}
 139		config->ctrl |= ETMCR_STALL_MODE;
 140	} else
 141		config->ctrl &= ~ETMCR_STALL_MODE;
 142
 143	if (config->mode & ETM_MODE_TIMESTAMP) {
 144		if (!(drvdata->etmccer & ETMCCER_TIMESTAMP)) {
 145			dev_warn(dev, "timestamp not supported\n");
 146			ret = -EINVAL;
 147			goto err_unlock;
 148		}
 149		config->ctrl |= ETMCR_TIMESTAMP_EN;
 150	} else
 151		config->ctrl &= ~ETMCR_TIMESTAMP_EN;
 152
 153	if (config->mode & ETM_MODE_CTXID)
 154		config->ctrl |= ETMCR_CTXID_SIZE;
 155	else
 156		config->ctrl &= ~ETMCR_CTXID_SIZE;
 157
 158	if (config->mode & ETM_MODE_BBROAD)
 159		config->ctrl |= ETMCR_BRANCH_BROADCAST;
 160	else
 161		config->ctrl &= ~ETMCR_BRANCH_BROADCAST;
 162
 163	if (config->mode & ETM_MODE_RET_STACK)
 164		config->ctrl |= ETMCR_RETURN_STACK;
 165	else
 166		config->ctrl &= ~ETMCR_RETURN_STACK;
 167
 168	if (config->mode & (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER))
 169		etm_config_trace_mode(config);
 170
 171	spin_unlock(&drvdata->spinlock);
 172
 173	return size;
 174
 175err_unlock:
 176	spin_unlock(&drvdata->spinlock);
 177	return ret;
 178}
 179static DEVICE_ATTR_RW(mode);
 180
 181static ssize_t trigger_event_show(struct device *dev,
 182				  struct device_attribute *attr, char *buf)
 183{
 184	unsigned long val;
 185	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 186	struct etm_config *config = &drvdata->config;
 187
 188	val = config->trigger_event;
 189	return sprintf(buf, "%#lx\n", val);
 190}
 191
 192static ssize_t trigger_event_store(struct device *dev,
 193				   struct device_attribute *attr,
 194				   const char *buf, size_t size)
 195{
 196	int ret;
 197	unsigned long val;
 198	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 199	struct etm_config *config = &drvdata->config;
 200
 201	ret = kstrtoul(buf, 16, &val);
 202	if (ret)
 203		return ret;
 204
 205	config->trigger_event = val & ETM_EVENT_MASK;
 206
 207	return size;
 208}
 209static DEVICE_ATTR_RW(trigger_event);
 210
 211static ssize_t enable_event_show(struct device *dev,
 212				 struct device_attribute *attr, char *buf)
 213{
 214	unsigned long val;
 215	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 216	struct etm_config *config = &drvdata->config;
 217
 218	val = config->enable_event;
 219	return sprintf(buf, "%#lx\n", val);
 220}
 221
 222static ssize_t enable_event_store(struct device *dev,
 223				  struct device_attribute *attr,
 224				  const char *buf, size_t size)
 225{
 226	int ret;
 227	unsigned long val;
 228	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 229	struct etm_config *config = &drvdata->config;
 230
 231	ret = kstrtoul(buf, 16, &val);
 232	if (ret)
 233		return ret;
 234
 235	config->enable_event = val & ETM_EVENT_MASK;
 236
 237	return size;
 238}
 239static DEVICE_ATTR_RW(enable_event);
 240
 241static ssize_t fifofull_level_show(struct device *dev,
 242				   struct device_attribute *attr, char *buf)
 243{
 244	unsigned long val;
 245	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 246	struct etm_config *config = &drvdata->config;
 247
 248	val = config->fifofull_level;
 249	return sprintf(buf, "%#lx\n", val);
 250}
 251
 252static ssize_t fifofull_level_store(struct device *dev,
 253				    struct device_attribute *attr,
 254				    const char *buf, size_t size)
 255{
 256	int ret;
 257	unsigned long val;
 258	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 259	struct etm_config *config = &drvdata->config;
 260
 261	ret = kstrtoul(buf, 16, &val);
 262	if (ret)
 263		return ret;
 264
 265	config->fifofull_level = val;
 266
 267	return size;
 268}
 269static DEVICE_ATTR_RW(fifofull_level);
 270
 271static ssize_t addr_idx_show(struct device *dev,
 272			     struct device_attribute *attr, char *buf)
 273{
 274	unsigned long val;
 275	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 276	struct etm_config *config = &drvdata->config;
 277
 278	val = config->addr_idx;
 279	return sprintf(buf, "%#lx\n", val);
 280}
 281
 282static ssize_t addr_idx_store(struct device *dev,
 283			      struct device_attribute *attr,
 284			      const char *buf, size_t size)
 285{
 286	int ret;
 287	unsigned long val;
 288	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 289	struct etm_config *config = &drvdata->config;
 290
 291	ret = kstrtoul(buf, 16, &val);
 292	if (ret)
 293		return ret;
 294
 295	if (val >= drvdata->nr_addr_cmp)
 296		return -EINVAL;
 297
 298	/*
 299	 * Use spinlock to ensure index doesn't change while it gets
 300	 * dereferenced multiple times within a spinlock block elsewhere.
 301	 */
 302	spin_lock(&drvdata->spinlock);
 303	config->addr_idx = val;
 304	spin_unlock(&drvdata->spinlock);
 305
 306	return size;
 307}
 308static DEVICE_ATTR_RW(addr_idx);
 309
 310static ssize_t addr_single_show(struct device *dev,
 311				struct device_attribute *attr, char *buf)
 312{
 313	u8 idx;
 314	unsigned long val;
 315	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 316	struct etm_config *config = &drvdata->config;
 317
 318	spin_lock(&drvdata->spinlock);
 319	idx = config->addr_idx;
 320	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 321	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
 322		spin_unlock(&drvdata->spinlock);
 323		return -EINVAL;
 324	}
 325
 326	val = config->addr_val[idx];
 327	spin_unlock(&drvdata->spinlock);
 328
 329	return sprintf(buf, "%#lx\n", val);
 330}
 331
 332static ssize_t addr_single_store(struct device *dev,
 333				 struct device_attribute *attr,
 334				 const char *buf, size_t size)
 335{
 336	u8 idx;
 337	int ret;
 338	unsigned long val;
 339	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 340	struct etm_config *config = &drvdata->config;
 341
 342	ret = kstrtoul(buf, 16, &val);
 343	if (ret)
 344		return ret;
 345
 346	spin_lock(&drvdata->spinlock);
 347	idx = config->addr_idx;
 348	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 349	      config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
 350		spin_unlock(&drvdata->spinlock);
 351		return -EINVAL;
 352	}
 353
 354	config->addr_val[idx] = val;
 355	config->addr_type[idx] = ETM_ADDR_TYPE_SINGLE;
 356	spin_unlock(&drvdata->spinlock);
 357
 358	return size;
 359}
 360static DEVICE_ATTR_RW(addr_single);
 361
 362static ssize_t addr_range_show(struct device *dev,
 363			       struct device_attribute *attr, char *buf)
 364{
 365	u8 idx;
 366	unsigned long val1, val2;
 367	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 368	struct etm_config *config = &drvdata->config;
 369
 370	spin_lock(&drvdata->spinlock);
 371	idx = config->addr_idx;
 372	if (idx % 2 != 0) {
 373		spin_unlock(&drvdata->spinlock);
 374		return -EPERM;
 375	}
 376	if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
 377	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
 378	      (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
 379	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
 380		spin_unlock(&drvdata->spinlock);
 381		return -EPERM;
 382	}
 383
 384	val1 = config->addr_val[idx];
 385	val2 = config->addr_val[idx + 1];
 386	spin_unlock(&drvdata->spinlock);
 387
 388	return sprintf(buf, "%#lx %#lx\n", val1, val2);
 389}
 390
 391static ssize_t addr_range_store(struct device *dev,
 392			      struct device_attribute *attr,
 393			      const char *buf, size_t size)
 394{
 395	u8 idx;
 396	unsigned long val1, val2;
 397	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 398	struct etm_config *config = &drvdata->config;
 399
 400	if (sscanf(buf, "%lx %lx", &val1, &val2) != 2)
 401		return -EINVAL;
 402	/* Lower address comparator cannot have a higher address value */
 403	if (val1 > val2)
 404		return -EINVAL;
 405
 406	spin_lock(&drvdata->spinlock);
 407	idx = config->addr_idx;
 408	if (idx % 2 != 0) {
 409		spin_unlock(&drvdata->spinlock);
 410		return -EPERM;
 411	}
 412	if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
 413	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
 414	      (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
 415	       config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
 416		spin_unlock(&drvdata->spinlock);
 417		return -EPERM;
 418	}
 419
 420	config->addr_val[idx] = val1;
 421	config->addr_type[idx] = ETM_ADDR_TYPE_RANGE;
 422	config->addr_val[idx + 1] = val2;
 423	config->addr_type[idx + 1] = ETM_ADDR_TYPE_RANGE;
 424	config->enable_ctrl1 |= (1 << (idx/2));
 425	spin_unlock(&drvdata->spinlock);
 426
 427	return size;
 428}
 429static DEVICE_ATTR_RW(addr_range);
 430
 431static ssize_t addr_start_show(struct device *dev,
 432			       struct device_attribute *attr, char *buf)
 433{
 434	u8 idx;
 435	unsigned long val;
 436	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 437	struct etm_config *config = &drvdata->config;
 438
 439	spin_lock(&drvdata->spinlock);
 440	idx = config->addr_idx;
 441	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 442	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
 443		spin_unlock(&drvdata->spinlock);
 444		return -EPERM;
 445	}
 446
 447	val = config->addr_val[idx];
 448	spin_unlock(&drvdata->spinlock);
 449
 450	return sprintf(buf, "%#lx\n", val);
 451}
 452
 453static ssize_t addr_start_store(struct device *dev,
 454				struct device_attribute *attr,
 455				const char *buf, size_t size)
 456{
 457	u8 idx;
 458	int ret;
 459	unsigned long val;
 460	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 461	struct etm_config *config = &drvdata->config;
 462
 463	ret = kstrtoul(buf, 16, &val);
 464	if (ret)
 465		return ret;
 466
 467	spin_lock(&drvdata->spinlock);
 468	idx = config->addr_idx;
 469	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 470	      config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
 471		spin_unlock(&drvdata->spinlock);
 472		return -EPERM;
 473	}
 474
 475	config->addr_val[idx] = val;
 476	config->addr_type[idx] = ETM_ADDR_TYPE_START;
 477	config->startstop_ctrl |= (1 << idx);
 478	config->enable_ctrl1 |= ETMTECR1_START_STOP;
 479	spin_unlock(&drvdata->spinlock);
 480
 481	return size;
 482}
 483static DEVICE_ATTR_RW(addr_start);
 484
 485static ssize_t addr_stop_show(struct device *dev,
 486			      struct device_attribute *attr, char *buf)
 487{
 488	u8 idx;
 489	unsigned long val;
 490	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 491	struct etm_config *config = &drvdata->config;
 492
 493	spin_lock(&drvdata->spinlock);
 494	idx = config->addr_idx;
 495	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 496	      config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
 497		spin_unlock(&drvdata->spinlock);
 498		return -EPERM;
 499	}
 500
 501	val = config->addr_val[idx];
 502	spin_unlock(&drvdata->spinlock);
 503
 504	return sprintf(buf, "%#lx\n", val);
 505}
 506
 507static ssize_t addr_stop_store(struct device *dev,
 508			       struct device_attribute *attr,
 509			       const char *buf, size_t size)
 510{
 511	u8 idx;
 512	int ret;
 513	unsigned long val;
 514	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 515	struct etm_config *config = &drvdata->config;
 516
 517	ret = kstrtoul(buf, 16, &val);
 518	if (ret)
 519		return ret;
 520
 521	spin_lock(&drvdata->spinlock);
 522	idx = config->addr_idx;
 523	if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
 524	      config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
 525		spin_unlock(&drvdata->spinlock);
 526		return -EPERM;
 527	}
 528
 529	config->addr_val[idx] = val;
 530	config->addr_type[idx] = ETM_ADDR_TYPE_STOP;
 531	config->startstop_ctrl |= (1 << (idx + 16));
 532	config->enable_ctrl1 |= ETMTECR1_START_STOP;
 533	spin_unlock(&drvdata->spinlock);
 534
 535	return size;
 536}
 537static DEVICE_ATTR_RW(addr_stop);
 538
 539static ssize_t addr_acctype_show(struct device *dev,
 540				 struct device_attribute *attr, char *buf)
 541{
 542	unsigned long val;
 543	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 544	struct etm_config *config = &drvdata->config;
 545
 546	spin_lock(&drvdata->spinlock);
 547	val = config->addr_acctype[config->addr_idx];
 548	spin_unlock(&drvdata->spinlock);
 549
 550	return sprintf(buf, "%#lx\n", val);
 551}
 552
 553static ssize_t addr_acctype_store(struct device *dev,
 554				  struct device_attribute *attr,
 555				  const char *buf, size_t size)
 556{
 557	int ret;
 558	unsigned long val;
 559	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 560	struct etm_config *config = &drvdata->config;
 561
 562	ret = kstrtoul(buf, 16, &val);
 563	if (ret)
 564		return ret;
 565
 566	spin_lock(&drvdata->spinlock);
 567	config->addr_acctype[config->addr_idx] = val;
 568	spin_unlock(&drvdata->spinlock);
 569
 570	return size;
 571}
 572static DEVICE_ATTR_RW(addr_acctype);
 573
 574static ssize_t cntr_idx_show(struct device *dev,
 575			     struct device_attribute *attr, char *buf)
 576{
 577	unsigned long val;
 578	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 579	struct etm_config *config = &drvdata->config;
 580
 581	val = config->cntr_idx;
 582	return sprintf(buf, "%#lx\n", val);
 583}
 584
 585static ssize_t cntr_idx_store(struct device *dev,
 586			      struct device_attribute *attr,
 587			      const char *buf, size_t size)
 588{
 589	int ret;
 590	unsigned long val;
 591	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 592	struct etm_config *config = &drvdata->config;
 593
 594	ret = kstrtoul(buf, 16, &val);
 595	if (ret)
 596		return ret;
 597
 598	if (val >= drvdata->nr_cntr)
 599		return -EINVAL;
 600	/*
 601	 * Use spinlock to ensure index doesn't change while it gets
 602	 * dereferenced multiple times within a spinlock block elsewhere.
 603	 */
 604	spin_lock(&drvdata->spinlock);
 605	config->cntr_idx = val;
 606	spin_unlock(&drvdata->spinlock);
 607
 608	return size;
 609}
 610static DEVICE_ATTR_RW(cntr_idx);
 611
 612static ssize_t cntr_rld_val_show(struct device *dev,
 613				 struct device_attribute *attr, char *buf)
 614{
 615	unsigned long val;
 616	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 617	struct etm_config *config = &drvdata->config;
 618
 619	spin_lock(&drvdata->spinlock);
 620	val = config->cntr_rld_val[config->cntr_idx];
 621	spin_unlock(&drvdata->spinlock);
 622
 623	return sprintf(buf, "%#lx\n", val);
 624}
 625
 626static ssize_t cntr_rld_val_store(struct device *dev,
 627				  struct device_attribute *attr,
 628				  const char *buf, size_t size)
 629{
 630	int ret;
 631	unsigned long val;
 632	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 633	struct etm_config *config = &drvdata->config;
 634
 635	ret = kstrtoul(buf, 16, &val);
 636	if (ret)
 637		return ret;
 638
 639	spin_lock(&drvdata->spinlock);
 640	config->cntr_rld_val[config->cntr_idx] = val;
 641	spin_unlock(&drvdata->spinlock);
 642
 643	return size;
 644}
 645static DEVICE_ATTR_RW(cntr_rld_val);
 646
 647static ssize_t cntr_event_show(struct device *dev,
 648			       struct device_attribute *attr, char *buf)
 649{
 650	unsigned long val;
 651	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 652	struct etm_config *config = &drvdata->config;
 653
 654	spin_lock(&drvdata->spinlock);
 655	val = config->cntr_event[config->cntr_idx];
 656	spin_unlock(&drvdata->spinlock);
 657
 658	return sprintf(buf, "%#lx\n", val);
 659}
 660
 661static ssize_t cntr_event_store(struct device *dev,
 662				struct device_attribute *attr,
 663				const char *buf, size_t size)
 664{
 665	int ret;
 666	unsigned long val;
 667	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 668	struct etm_config *config = &drvdata->config;
 669
 670	ret = kstrtoul(buf, 16, &val);
 671	if (ret)
 672		return ret;
 673
 674	spin_lock(&drvdata->spinlock);
 675	config->cntr_event[config->cntr_idx] = val & ETM_EVENT_MASK;
 676	spin_unlock(&drvdata->spinlock);
 677
 678	return size;
 679}
 680static DEVICE_ATTR_RW(cntr_event);
 681
 682static ssize_t cntr_rld_event_show(struct device *dev,
 683				   struct device_attribute *attr, char *buf)
 684{
 685	unsigned long val;
 686	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 687	struct etm_config *config = &drvdata->config;
 688
 689	spin_lock(&drvdata->spinlock);
 690	val = config->cntr_rld_event[config->cntr_idx];
 691	spin_unlock(&drvdata->spinlock);
 692
 693	return sprintf(buf, "%#lx\n", val);
 694}
 695
 696static ssize_t cntr_rld_event_store(struct device *dev,
 697				    struct device_attribute *attr,
 698				    const char *buf, size_t size)
 699{
 700	int ret;
 701	unsigned long val;
 702	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 703	struct etm_config *config = &drvdata->config;
 704
 705	ret = kstrtoul(buf, 16, &val);
 706	if (ret)
 707		return ret;
 708
 709	spin_lock(&drvdata->spinlock);
 710	config->cntr_rld_event[config->cntr_idx] = val & ETM_EVENT_MASK;
 711	spin_unlock(&drvdata->spinlock);
 712
 713	return size;
 714}
 715static DEVICE_ATTR_RW(cntr_rld_event);
 716
 717static ssize_t cntr_val_show(struct device *dev,
 718			     struct device_attribute *attr, char *buf)
 719{
 720	int i, ret = 0;
 721	u32 val;
 722	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 723	struct etm_config *config = &drvdata->config;
 724
 725	if (!coresight_get_mode(drvdata->csdev)) {
 726		spin_lock(&drvdata->spinlock);
 727		for (i = 0; i < drvdata->nr_cntr; i++)
 728			ret += sprintf(buf, "counter %d: %x\n",
 729				       i, config->cntr_val[i]);
 730		spin_unlock(&drvdata->spinlock);
 731		return ret;
 732	}
 733
 734	for (i = 0; i < drvdata->nr_cntr; i++) {
 735		val = etm_readl(drvdata, ETMCNTVRn(i));
 736		ret += sprintf(buf, "counter %d: %x\n", i, val);
 737	}
 738
 739	return ret;
 740}
 741
 742static ssize_t cntr_val_store(struct device *dev,
 743			      struct device_attribute *attr,
 744			      const char *buf, size_t size)
 745{
 746	int ret;
 747	unsigned long val;
 748	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 749	struct etm_config *config = &drvdata->config;
 750
 751	ret = kstrtoul(buf, 16, &val);
 752	if (ret)
 753		return ret;
 754
 755	spin_lock(&drvdata->spinlock);
 756	config->cntr_val[config->cntr_idx] = val;
 757	spin_unlock(&drvdata->spinlock);
 758
 759	return size;
 760}
 761static DEVICE_ATTR_RW(cntr_val);
 762
 763static ssize_t seq_12_event_show(struct device *dev,
 764				 struct device_attribute *attr, char *buf)
 765{
 766	unsigned long val;
 767	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 768	struct etm_config *config = &drvdata->config;
 769
 770	val = config->seq_12_event;
 771	return sprintf(buf, "%#lx\n", val);
 772}
 773
 774static ssize_t seq_12_event_store(struct device *dev,
 775				  struct device_attribute *attr,
 776				  const char *buf, size_t size)
 777{
 778	int ret;
 779	unsigned long val;
 780	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 781	struct etm_config *config = &drvdata->config;
 782
 783	ret = kstrtoul(buf, 16, &val);
 784	if (ret)
 785		return ret;
 786
 787	config->seq_12_event = val & ETM_EVENT_MASK;
 788	return size;
 789}
 790static DEVICE_ATTR_RW(seq_12_event);
 791
 792static ssize_t seq_21_event_show(struct device *dev,
 793				 struct device_attribute *attr, char *buf)
 794{
 795	unsigned long val;
 796	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 797	struct etm_config *config = &drvdata->config;
 798
 799	val = config->seq_21_event;
 800	return sprintf(buf, "%#lx\n", val);
 801}
 802
 803static ssize_t seq_21_event_store(struct device *dev,
 804				  struct device_attribute *attr,
 805				  const char *buf, size_t size)
 806{
 807	int ret;
 808	unsigned long val;
 809	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 810	struct etm_config *config = &drvdata->config;
 811
 812	ret = kstrtoul(buf, 16, &val);
 813	if (ret)
 814		return ret;
 815
 816	config->seq_21_event = val & ETM_EVENT_MASK;
 817	return size;
 818}
 819static DEVICE_ATTR_RW(seq_21_event);
 820
 821static ssize_t seq_23_event_show(struct device *dev,
 822				 struct device_attribute *attr, char *buf)
 823{
 824	unsigned long val;
 825	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 826	struct etm_config *config = &drvdata->config;
 827
 828	val = config->seq_23_event;
 829	return sprintf(buf, "%#lx\n", val);
 830}
 831
 832static ssize_t seq_23_event_store(struct device *dev,
 833				  struct device_attribute *attr,
 834				  const char *buf, size_t size)
 835{
 836	int ret;
 837	unsigned long val;
 838	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 839	struct etm_config *config = &drvdata->config;
 840
 841	ret = kstrtoul(buf, 16, &val);
 842	if (ret)
 843		return ret;
 844
 845	config->seq_23_event = val & ETM_EVENT_MASK;
 846	return size;
 847}
 848static DEVICE_ATTR_RW(seq_23_event);
 849
 850static ssize_t seq_31_event_show(struct device *dev,
 851				 struct device_attribute *attr, char *buf)
 852{
 853	unsigned long val;
 854	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 855	struct etm_config *config = &drvdata->config;
 856
 857	val = config->seq_31_event;
 858	return sprintf(buf, "%#lx\n", val);
 859}
 860
 861static ssize_t seq_31_event_store(struct device *dev,
 862				  struct device_attribute *attr,
 863				  const char *buf, size_t size)
 864{
 865	int ret;
 866	unsigned long val;
 867	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 868	struct etm_config *config = &drvdata->config;
 869
 870	ret = kstrtoul(buf, 16, &val);
 871	if (ret)
 872		return ret;
 873
 874	config->seq_31_event = val & ETM_EVENT_MASK;
 875	return size;
 876}
 877static DEVICE_ATTR_RW(seq_31_event);
 878
 879static ssize_t seq_32_event_show(struct device *dev,
 880				 struct device_attribute *attr, char *buf)
 881{
 882	unsigned long val;
 883	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 884	struct etm_config *config = &drvdata->config;
 885
 886	val = config->seq_32_event;
 887	return sprintf(buf, "%#lx\n", val);
 888}
 889
 890static ssize_t seq_32_event_store(struct device *dev,
 891				  struct device_attribute *attr,
 892				  const char *buf, size_t size)
 893{
 894	int ret;
 895	unsigned long val;
 896	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 897	struct etm_config *config = &drvdata->config;
 898
 899	ret = kstrtoul(buf, 16, &val);
 900	if (ret)
 901		return ret;
 902
 903	config->seq_32_event = val & ETM_EVENT_MASK;
 904	return size;
 905}
 906static DEVICE_ATTR_RW(seq_32_event);
 907
 908static ssize_t seq_13_event_show(struct device *dev,
 909				 struct device_attribute *attr, char *buf)
 910{
 911	unsigned long val;
 912	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 913	struct etm_config *config = &drvdata->config;
 914
 915	val = config->seq_13_event;
 916	return sprintf(buf, "%#lx\n", val);
 917}
 918
 919static ssize_t seq_13_event_store(struct device *dev,
 920				  struct device_attribute *attr,
 921				  const char *buf, size_t size)
 922{
 923	int ret;
 924	unsigned long val;
 925	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 926	struct etm_config *config = &drvdata->config;
 927
 928	ret = kstrtoul(buf, 16, &val);
 929	if (ret)
 930		return ret;
 931
 932	config->seq_13_event = val & ETM_EVENT_MASK;
 933	return size;
 934}
 935static DEVICE_ATTR_RW(seq_13_event);
 936
 937static ssize_t seq_curr_state_show(struct device *dev,
 938				   struct device_attribute *attr, char *buf)
 939{
 940	unsigned long val, flags;
 941	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 942	struct etm_config *config = &drvdata->config;
 943
 944	if (!coresight_get_mode(drvdata->csdev)) {
 945		val = config->seq_curr_state;
 946		goto out;
 947	}
 948
 949	pm_runtime_get_sync(dev->parent);
 950	spin_lock_irqsave(&drvdata->spinlock, flags);
 951
 952	CS_UNLOCK(drvdata->base);
 953	val = (etm_readl(drvdata, ETMSQR) & ETM_SQR_MASK);
 954	CS_LOCK(drvdata->base);
 955
 956	spin_unlock_irqrestore(&drvdata->spinlock, flags);
 957	pm_runtime_put(dev->parent);
 958out:
 959	return sprintf(buf, "%#lx\n", val);
 960}
 961
 962static ssize_t seq_curr_state_store(struct device *dev,
 963				    struct device_attribute *attr,
 964				    const char *buf, size_t size)
 965{
 966	int ret;
 967	unsigned long val;
 968	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 969	struct etm_config *config = &drvdata->config;
 970
 971	ret = kstrtoul(buf, 16, &val);
 972	if (ret)
 973		return ret;
 974
 975	if (val > ETM_SEQ_STATE_MAX_VAL)
 976		return -EINVAL;
 977
 978	config->seq_curr_state = val;
 979
 980	return size;
 981}
 982static DEVICE_ATTR_RW(seq_curr_state);
 983
 984static ssize_t ctxid_idx_show(struct device *dev,
 985			      struct device_attribute *attr, char *buf)
 986{
 987	unsigned long val;
 988	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
 989	struct etm_config *config = &drvdata->config;
 990
 991	val = config->ctxid_idx;
 992	return sprintf(buf, "%#lx\n", val);
 993}
 994
 995static ssize_t ctxid_idx_store(struct device *dev,
 996				struct device_attribute *attr,
 997				const char *buf, size_t size)
 998{
 999	int ret;
1000	unsigned long val;
1001	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1002	struct etm_config *config = &drvdata->config;
1003
1004	ret = kstrtoul(buf, 16, &val);
1005	if (ret)
1006		return ret;
1007
1008	if (val >= drvdata->nr_ctxid_cmp)
1009		return -EINVAL;
1010
1011	/*
1012	 * Use spinlock to ensure index doesn't change while it gets
1013	 * dereferenced multiple times within a spinlock block elsewhere.
1014	 */
1015	spin_lock(&drvdata->spinlock);
1016	config->ctxid_idx = val;
1017	spin_unlock(&drvdata->spinlock);
1018
1019	return size;
1020}
1021static DEVICE_ATTR_RW(ctxid_idx);
1022
1023static ssize_t ctxid_pid_show(struct device *dev,
1024			      struct device_attribute *attr, char *buf)
1025{
1026	unsigned long val;
1027	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1028	struct etm_config *config = &drvdata->config;
1029
1030	/*
1031	 * Don't use contextID tracing if coming from a PID namespace.  See
1032	 * comment in ctxid_pid_store().
1033	 */
1034	if (task_active_pid_ns(current) != &init_pid_ns)
1035		return -EINVAL;
1036
1037	spin_lock(&drvdata->spinlock);
1038	val = config->ctxid_pid[config->ctxid_idx];
1039	spin_unlock(&drvdata->spinlock);
1040
1041	return sprintf(buf, "%#lx\n", val);
1042}
1043
1044static ssize_t ctxid_pid_store(struct device *dev,
1045			       struct device_attribute *attr,
1046			       const char *buf, size_t size)
1047{
1048	int ret;
1049	unsigned long pid;
1050	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1051	struct etm_config *config = &drvdata->config;
1052
1053	/*
1054	 * When contextID tracing is enabled the tracers will insert the
1055	 * value found in the contextID register in the trace stream.  But if
1056	 * a process is in a namespace the PID of that process as seen from the
1057	 * namespace won't be what the kernel sees, something that makes the
1058	 * feature confusing and can potentially leak kernel only information.
1059	 * As such refuse to use the feature if @current is not in the initial
1060	 * PID namespace.
1061	 */
1062	if (task_active_pid_ns(current) != &init_pid_ns)
1063		return -EINVAL;
1064
1065	ret = kstrtoul(buf, 16, &pid);
1066	if (ret)
1067		return ret;
1068
1069	spin_lock(&drvdata->spinlock);
1070	config->ctxid_pid[config->ctxid_idx] = pid;
1071	spin_unlock(&drvdata->spinlock);
1072
1073	return size;
1074}
1075static DEVICE_ATTR_RW(ctxid_pid);
1076
1077static ssize_t ctxid_mask_show(struct device *dev,
1078			       struct device_attribute *attr, char *buf)
1079{
1080	unsigned long val;
1081	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1082	struct etm_config *config = &drvdata->config;
1083
1084	/*
1085	 * Don't use contextID tracing if coming from a PID namespace.  See
1086	 * comment in ctxid_pid_store().
1087	 */
1088	if (task_active_pid_ns(current) != &init_pid_ns)
1089		return -EINVAL;
1090
1091	val = config->ctxid_mask;
1092	return sprintf(buf, "%#lx\n", val);
1093}
1094
1095static ssize_t ctxid_mask_store(struct device *dev,
1096				struct device_attribute *attr,
1097				const char *buf, size_t size)
1098{
1099	int ret;
1100	unsigned long val;
1101	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1102	struct etm_config *config = &drvdata->config;
1103
1104	/*
1105	 * Don't use contextID tracing if coming from a PID namespace.  See
1106	 * comment in ctxid_pid_store().
1107	 */
1108	if (task_active_pid_ns(current) != &init_pid_ns)
1109		return -EINVAL;
1110
1111	ret = kstrtoul(buf, 16, &val);
1112	if (ret)
1113		return ret;
1114
1115	config->ctxid_mask = val;
1116	return size;
1117}
1118static DEVICE_ATTR_RW(ctxid_mask);
1119
1120static ssize_t sync_freq_show(struct device *dev,
1121			      struct device_attribute *attr, char *buf)
1122{
1123	unsigned long val;
1124	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1125	struct etm_config *config = &drvdata->config;
1126
1127	val = config->sync_freq;
1128	return sprintf(buf, "%#lx\n", val);
1129}
1130
1131static ssize_t sync_freq_store(struct device *dev,
1132			       struct device_attribute *attr,
1133			       const char *buf, size_t size)
1134{
1135	int ret;
1136	unsigned long val;
1137	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1138	struct etm_config *config = &drvdata->config;
1139
1140	ret = kstrtoul(buf, 16, &val);
1141	if (ret)
1142		return ret;
1143
1144	config->sync_freq = val & ETM_SYNC_MASK;
1145	return size;
1146}
1147static DEVICE_ATTR_RW(sync_freq);
1148
1149static ssize_t timestamp_event_show(struct device *dev,
1150				    struct device_attribute *attr, char *buf)
1151{
1152	unsigned long val;
1153	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1154	struct etm_config *config = &drvdata->config;
1155
1156	val = config->timestamp_event;
1157	return sprintf(buf, "%#lx\n", val);
1158}
1159
1160static ssize_t timestamp_event_store(struct device *dev,
1161				     struct device_attribute *attr,
1162				     const char *buf, size_t size)
1163{
1164	int ret;
1165	unsigned long val;
1166	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1167	struct etm_config *config = &drvdata->config;
1168
1169	ret = kstrtoul(buf, 16, &val);
1170	if (ret)
1171		return ret;
1172
1173	config->timestamp_event = val & ETM_EVENT_MASK;
1174	return size;
1175}
1176static DEVICE_ATTR_RW(timestamp_event);
1177
1178static ssize_t cpu_show(struct device *dev,
1179			struct device_attribute *attr, char *buf)
1180{
1181	int val;
1182	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1183
1184	val = drvdata->cpu;
1185	return scnprintf(buf, PAGE_SIZE, "%d\n", val);
1186
1187}
1188static DEVICE_ATTR_RO(cpu);
1189
1190static ssize_t traceid_show(struct device *dev,
1191			    struct device_attribute *attr, char *buf)
1192{
1193	int trace_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
1194	struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
1195
1196	trace_id = etm_read_alloc_trace_id(drvdata);
1197	if (trace_id < 0)
1198		return trace_id;
1199
1200	return sysfs_emit(buf, "%#x\n", trace_id);
 
1201}
1202static DEVICE_ATTR_RO(traceid);
1203
1204static struct attribute *coresight_etm_attrs[] = {
1205	&dev_attr_nr_addr_cmp.attr,
1206	&dev_attr_nr_cntr.attr,
1207	&dev_attr_nr_ctxid_cmp.attr,
1208	&dev_attr_etmsr.attr,
1209	&dev_attr_reset.attr,
1210	&dev_attr_mode.attr,
1211	&dev_attr_trigger_event.attr,
1212	&dev_attr_enable_event.attr,
1213	&dev_attr_fifofull_level.attr,
1214	&dev_attr_addr_idx.attr,
1215	&dev_attr_addr_single.attr,
1216	&dev_attr_addr_range.attr,
1217	&dev_attr_addr_start.attr,
1218	&dev_attr_addr_stop.attr,
1219	&dev_attr_addr_acctype.attr,
1220	&dev_attr_cntr_idx.attr,
1221	&dev_attr_cntr_rld_val.attr,
1222	&dev_attr_cntr_event.attr,
1223	&dev_attr_cntr_rld_event.attr,
1224	&dev_attr_cntr_val.attr,
1225	&dev_attr_seq_12_event.attr,
1226	&dev_attr_seq_21_event.attr,
1227	&dev_attr_seq_23_event.attr,
1228	&dev_attr_seq_31_event.attr,
1229	&dev_attr_seq_32_event.attr,
1230	&dev_attr_seq_13_event.attr,
1231	&dev_attr_seq_curr_state.attr,
1232	&dev_attr_ctxid_idx.attr,
1233	&dev_attr_ctxid_pid.attr,
1234	&dev_attr_ctxid_mask.attr,
1235	&dev_attr_sync_freq.attr,
1236	&dev_attr_timestamp_event.attr,
1237	&dev_attr_traceid.attr,
1238	&dev_attr_cpu.attr,
1239	NULL,
1240};
1241
1242static struct attribute *coresight_etm_mgmt_attrs[] = {
1243	coresight_simple_reg32(etmccr, ETMCCR),
1244	coresight_simple_reg32(etmccer, ETMCCER),
1245	coresight_simple_reg32(etmscr, ETMSCR),
1246	coresight_simple_reg32(etmidr, ETMIDR),
1247	coresight_simple_reg32(etmcr, ETMCR),
1248	coresight_simple_reg32(etmtraceidr, ETMTRACEIDR),
1249	coresight_simple_reg32(etmteevr, ETMTEEVR),
1250	coresight_simple_reg32(etmtssvr, ETMTSSCR),
1251	coresight_simple_reg32(etmtecr1, ETMTECR1),
1252	coresight_simple_reg32(etmtecr2, ETMTECR2),
1253	NULL,
1254};
1255
1256static const struct attribute_group coresight_etm_group = {
1257	.attrs = coresight_etm_attrs,
1258};
1259
1260static const struct attribute_group coresight_etm_mgmt_group = {
1261	.attrs = coresight_etm_mgmt_attrs,
1262	.name = "mgmt",
1263};
1264
1265const struct attribute_group *coresight_etm_groups[] = {
1266	&coresight_etm_group,
1267	&coresight_etm_mgmt_group,
1268	NULL,
1269};