Linux Audio

Check our new training course

Loading...
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
   4 */
   5
   6#include <linux/build_bug.h>
   7#include <linux/kernel.h>
   8#include <linux/init.h>
   9#include <linux/types.h>
  10#include <linux/device.h>
  11#include <linux/io.h>
  12#include <linux/err.h>
  13#include <linux/export.h>
  14#include <linux/slab.h>
  15#include <linux/stringhash.h>
  16#include <linux/mutex.h>
  17#include <linux/clk.h>
  18#include <linux/coresight.h>
  19#include <linux/property.h>
  20#include <linux/delay.h>
  21#include <linux/pm_runtime.h>
  22
  23#include "coresight-etm-perf.h"
  24#include "coresight-priv.h"
  25#include "coresight-syscfg.h"
  26
  27/*
  28 * Mutex used to lock all sysfs enable and disable actions and loading and
  29 * unloading devices by the Coresight core.
  30 */
  31DEFINE_MUTEX(coresight_mutex);
  32static DEFINE_PER_CPU(struct coresight_device *, csdev_sink);
  33
  34/**
  35 * struct coresight_node - elements of a path, from source to sink
  36 * @csdev:	Address of an element.
  37 * @link:	hook to the list.
  38 */
  39struct coresight_node {
  40	struct coresight_device *csdev;
  41	struct list_head link;
  42};
  43
  44/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  45 * When losing synchronisation a new barrier packet needs to be inserted at the
  46 * beginning of the data collected in a buffer.  That way the decoder knows that
  47 * it needs to look for another sync sequence.
  48 */
  49const u32 coresight_barrier_pkt[4] = {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff};
  50EXPORT_SYMBOL_GPL(coresight_barrier_pkt);
  51
  52static const struct cti_assoc_op *cti_assoc_ops;
  53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  54void coresight_set_cti_ops(const struct cti_assoc_op *cti_op)
  55{
  56	cti_assoc_ops = cti_op;
  57}
  58EXPORT_SYMBOL_GPL(coresight_set_cti_ops);
  59
  60void coresight_remove_cti_ops(void)
  61{
  62	cti_assoc_ops = NULL;
  63}
  64EXPORT_SYMBOL_GPL(coresight_remove_cti_ops);
  65
  66void coresight_set_percpu_sink(int cpu, struct coresight_device *csdev)
  67{
  68	per_cpu(csdev_sink, cpu) = csdev;
  69}
  70EXPORT_SYMBOL_GPL(coresight_set_percpu_sink);
  71
  72struct coresight_device *coresight_get_percpu_sink(int cpu)
  73{
  74	return per_cpu(csdev_sink, cpu);
  75}
  76EXPORT_SYMBOL_GPL(coresight_get_percpu_sink);
  77
  78static struct coresight_connection *
  79coresight_find_out_connection(struct coresight_device *src_dev,
  80			      struct coresight_device *dest_dev)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  81{
  82	int i;
  83	struct coresight_connection *conn;
  84
  85	for (i = 0; i < src_dev->pdata->nr_outconns; i++) {
  86		conn = src_dev->pdata->out_conns[i];
  87		if (conn->dest_dev == dest_dev)
  88			return conn;
  89	}
  90
  91	dev_err(&src_dev->dev,
  92		"couldn't find output connection, src_dev: %s, dest_dev: %s\n",
  93		dev_name(&src_dev->dev), dev_name(&dest_dev->dev));
  94
  95	return ERR_PTR(-ENODEV);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  96}
  97
  98static inline u32 coresight_read_claim_tags(struct coresight_device *csdev)
  99{
 100	return csdev_access_relaxed_read32(&csdev->access, CORESIGHT_CLAIMCLR);
 101}
 102
 103static inline bool coresight_is_claimed_self_hosted(struct coresight_device *csdev)
 104{
 105	return coresight_read_claim_tags(csdev) == CORESIGHT_CLAIM_SELF_HOSTED;
 106}
 107
 108static inline bool coresight_is_claimed_any(struct coresight_device *csdev)
 109{
 110	return coresight_read_claim_tags(csdev) != 0;
 111}
 112
 113static inline void coresight_set_claim_tags(struct coresight_device *csdev)
 114{
 115	csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED,
 116				     CORESIGHT_CLAIMSET);
 117	isb();
 118}
 119
 120static inline void coresight_clear_claim_tags(struct coresight_device *csdev)
 121{
 122	csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED,
 123				     CORESIGHT_CLAIMCLR);
 124	isb();
 125}
 126
 127/*
 128 * coresight_claim_device_unlocked : Claim the device for self-hosted usage
 129 * to prevent an external tool from touching this device. As per PSCI
 130 * standards, section "Preserving the execution context" => "Debug and Trace
 131 * save and Restore", DBGCLAIM[1] is reserved for Self-hosted debug/trace and
 132 * DBGCLAIM[0] is reserved for external tools.
 133 *
 134 * Called with CS_UNLOCKed for the component.
 135 * Returns : 0 on success
 136 */
 137int coresight_claim_device_unlocked(struct coresight_device *csdev)
 138{
 139	if (WARN_ON(!csdev))
 140		return -EINVAL;
 141
 142	if (coresight_is_claimed_any(csdev))
 143		return -EBUSY;
 144
 145	coresight_set_claim_tags(csdev);
 146	if (coresight_is_claimed_self_hosted(csdev))
 147		return 0;
 148	/* There was a race setting the tags, clean up and fail */
 149	coresight_clear_claim_tags(csdev);
 150	return -EBUSY;
 151}
 152EXPORT_SYMBOL_GPL(coresight_claim_device_unlocked);
 153
 154int coresight_claim_device(struct coresight_device *csdev)
 155{
 156	int rc;
 157
 158	if (WARN_ON(!csdev))
 159		return -EINVAL;
 160
 161	CS_UNLOCK(csdev->access.base);
 162	rc = coresight_claim_device_unlocked(csdev);
 163	CS_LOCK(csdev->access.base);
 164
 165	return rc;
 166}
 167EXPORT_SYMBOL_GPL(coresight_claim_device);
 168
 169/*
 170 * coresight_disclaim_device_unlocked : Clear the claim tags for the device.
 171 * Called with CS_UNLOCKed for the component.
 172 */
 173void coresight_disclaim_device_unlocked(struct coresight_device *csdev)
 174{
 175
 176	if (WARN_ON(!csdev))
 177		return;
 178
 179	if (coresight_is_claimed_self_hosted(csdev))
 180		coresight_clear_claim_tags(csdev);
 181	else
 182		/*
 183		 * The external agent may have not honoured our claim
 184		 * and has manipulated it. Or something else has seriously
 185		 * gone wrong in our driver.
 186		 */
 187		WARN_ON_ONCE(1);
 188}
 189EXPORT_SYMBOL_GPL(coresight_disclaim_device_unlocked);
 190
 191void coresight_disclaim_device(struct coresight_device *csdev)
 192{
 193	if (WARN_ON(!csdev))
 194		return;
 195
 196	CS_UNLOCK(csdev->access.base);
 197	coresight_disclaim_device_unlocked(csdev);
 198	CS_LOCK(csdev->access.base);
 199}
 200EXPORT_SYMBOL_GPL(coresight_disclaim_device);
 201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 202/*
 203 * Add a helper as an output device. This function takes the @coresight_mutex
 204 * because it's assumed that it's called from the helper device, outside of the
 205 * core code where the mutex would already be held. Don't add new calls to this
 206 * from inside the core code, instead try to add the new helper to the DT and
 207 * ACPI where it will be picked up and linked automatically.
 208 */
 209void coresight_add_helper(struct coresight_device *csdev,
 210			  struct coresight_device *helper)
 211{
 212	int i;
 213	struct coresight_connection conn = {};
 214	struct coresight_connection *new_conn;
 215
 216	mutex_lock(&coresight_mutex);
 217	conn.dest_fwnode = fwnode_handle_get(dev_fwnode(&helper->dev));
 218	conn.dest_dev = helper;
 219	conn.dest_port = conn.src_port = -1;
 220	conn.src_dev = csdev;
 221
 222	/*
 223	 * Check for duplicates because this is called every time a helper
 224	 * device is re-loaded. Existing connections will get re-linked
 225	 * automatically.
 226	 */
 227	for (i = 0; i < csdev->pdata->nr_outconns; ++i)
 228		if (csdev->pdata->out_conns[i]->dest_fwnode == conn.dest_fwnode)
 229			goto unlock;
 230
 231	new_conn = coresight_add_out_conn(csdev->dev.parent, csdev->pdata,
 232					  &conn);
 233	if (!IS_ERR(new_conn))
 234		coresight_add_in_conn(new_conn);
 235
 236unlock:
 237	mutex_unlock(&coresight_mutex);
 238}
 239EXPORT_SYMBOL_GPL(coresight_add_helper);
 240
 241static int coresight_enable_sink(struct coresight_device *csdev,
 242				 enum cs_mode mode, void *data)
 243{
 244	return sink_ops(csdev)->enable(csdev, mode, data);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 245}
 246
 247static void coresight_disable_sink(struct coresight_device *csdev)
 248{
 249	sink_ops(csdev)->disable(csdev);
 
 
 
 
 
 
 
 
 
 250}
 251
 252static int coresight_enable_link(struct coresight_device *csdev,
 253				 struct coresight_device *parent,
 254				 struct coresight_device *child)
 255{
 
 256	int link_subtype;
 257	struct coresight_connection *inconn, *outconn;
 258
 259	if (!parent || !child)
 260		return -EINVAL;
 261
 262	inconn = coresight_find_out_connection(parent, csdev);
 263	outconn = coresight_find_out_connection(csdev, child);
 264	link_subtype = csdev->subtype.link_subtype;
 265
 266	if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_MERG && IS_ERR(inconn))
 267		return PTR_ERR(inconn);
 268	if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_SPLIT && IS_ERR(outconn))
 269		return PTR_ERR(outconn);
 
 
 
 
 
 
 
 
 
 270
 271	return link_ops(csdev)->enable(csdev, inconn, outconn);
 
 
 
 272}
 273
 274static void coresight_disable_link(struct coresight_device *csdev,
 275				   struct coresight_device *parent,
 276				   struct coresight_device *child)
 277{
 278	struct coresight_connection *inconn, *outconn;
 
 
 279
 280	if (!parent || !child)
 281		return;
 282
 283	inconn = coresight_find_out_connection(parent, csdev);
 284	outconn = coresight_find_out_connection(csdev, child);
 
 285
 286	link_ops(csdev)->disable(csdev, inconn, outconn);
 287}
 
 
 
 
 
 288
 289static bool coresight_is_helper(struct coresight_device *csdev)
 290{
 291	return csdev->type == CORESIGHT_DEV_TYPE_HELPER;
 292}
 293
 294static int coresight_enable_helper(struct coresight_device *csdev,
 295				   enum cs_mode mode, void *data)
 296{
 297	return helper_ops(csdev)->enable(csdev, mode, data);
 298}
 299
 300static void coresight_disable_helper(struct coresight_device *csdev)
 301{
 302	helper_ops(csdev)->disable(csdev, NULL);
 303}
 304
 305static void coresight_disable_helpers(struct coresight_device *csdev)
 306{
 307	int i;
 308	struct coresight_device *helper;
 
 
 
 
 
 309
 310	for (i = 0; i < csdev->pdata->nr_outconns; ++i) {
 311		helper = csdev->pdata->out_conns[i]->dest_dev;
 312		if (helper && coresight_is_helper(helper))
 313			coresight_disable_helper(helper);
 
 
 
 
 
 
 
 
 314	}
 
 
 
 
 315}
 316
 317/*
 318 * Helper function to call source_ops(csdev)->disable and also disable the
 319 * helpers.
 
 
 320 *
 321 * There is an imbalance between coresight_enable_path() and
 322 * coresight_disable_path(). Enabling also enables the source's helpers as part
 323 * of the path, but disabling always skips the first item in the path (which is
 324 * the source), so sources and their helpers don't get disabled as part of that
 325 * function and we need the extra step here.
 326 */
 327void coresight_disable_source(struct coresight_device *csdev, void *data)
 328{
 329	source_ops(csdev)->disable(csdev, data);
 330	coresight_disable_helpers(csdev);
 
 
 
 
 
 331}
 332EXPORT_SYMBOL_GPL(coresight_disable_source);
 333
 334/*
 335 * coresight_disable_path_from : Disable components in the given path beyond
 336 * @nd in the list. If @nd is NULL, all the components, except the SOURCE are
 337 * disabled.
 338 */
 339static void coresight_disable_path_from(struct list_head *path,
 340					struct coresight_node *nd)
 341{
 342	u32 type;
 343	struct coresight_device *csdev, *parent, *child;
 344
 345	if (!nd)
 346		nd = list_first_entry(path, struct coresight_node, link);
 347
 348	list_for_each_entry_continue(nd, path, link) {
 349		csdev = nd->csdev;
 350		type = csdev->type;
 351
 352		/*
 353		 * ETF devices are tricky... They can be a link or a sink,
 354		 * depending on how they are configured.  If an ETF has been
 355		 * selected as a sink it will be configured as a sink, otherwise
 356		 * go ahead with the link configuration.
 357		 */
 358		if (type == CORESIGHT_DEV_TYPE_LINKSINK)
 359			type = (csdev == coresight_get_sink(path)) ?
 360						CORESIGHT_DEV_TYPE_SINK :
 361						CORESIGHT_DEV_TYPE_LINK;
 362
 363		switch (type) {
 364		case CORESIGHT_DEV_TYPE_SINK:
 365			coresight_disable_sink(csdev);
 366			break;
 367		case CORESIGHT_DEV_TYPE_SOURCE:
 368			/*
 369			 * We skip the first node in the path assuming that it
 370			 * is the source. So we don't expect a source device in
 371			 * the middle of a path.
 372			 */
 373			WARN_ON(1);
 374			break;
 375		case CORESIGHT_DEV_TYPE_LINK:
 376			parent = list_prev_entry(nd, link)->csdev;
 377			child = list_next_entry(nd, link)->csdev;
 378			coresight_disable_link(csdev, parent, child);
 379			break;
 380		default:
 381			break;
 382		}
 383
 384		/* Disable all helpers adjacent along the path last */
 385		coresight_disable_helpers(csdev);
 386	}
 387}
 388
 389void coresight_disable_path(struct list_head *path)
 390{
 391	coresight_disable_path_from(path, NULL);
 392}
 393EXPORT_SYMBOL_GPL(coresight_disable_path);
 394
 395static int coresight_enable_helpers(struct coresight_device *csdev,
 396				    enum cs_mode mode, void *data)
 397{
 398	int i, ret = 0;
 399	struct coresight_device *helper;
 400
 401	for (i = 0; i < csdev->pdata->nr_outconns; ++i) {
 402		helper = csdev->pdata->out_conns[i]->dest_dev;
 403		if (!helper || !coresight_is_helper(helper))
 404			continue;
 405
 406		ret = coresight_enable_helper(helper, mode, data);
 407		if (ret)
 408			return ret;
 409	}
 410
 411	return 0;
 412}
 413
 414int coresight_enable_path(struct list_head *path, enum cs_mode mode,
 415			  void *sink_data)
 416{
 417	int ret = 0;
 418	u32 type;
 419	struct coresight_node *nd;
 420	struct coresight_device *csdev, *parent, *child;
 421
 422	list_for_each_entry_reverse(nd, path, link) {
 423		csdev = nd->csdev;
 424		type = csdev->type;
 425
 426		/* Enable all helpers adjacent to the path first */
 427		ret = coresight_enable_helpers(csdev, mode, sink_data);
 428		if (ret)
 429			goto err;
 430		/*
 431		 * ETF devices are tricky... They can be a link or a sink,
 432		 * depending on how they are configured.  If an ETF has been
 433		 * selected as a sink it will be configured as a sink, otherwise
 434		 * go ahead with the link configuration.
 435		 */
 436		if (type == CORESIGHT_DEV_TYPE_LINKSINK)
 437			type = (csdev == coresight_get_sink(path)) ?
 438						CORESIGHT_DEV_TYPE_SINK :
 439						CORESIGHT_DEV_TYPE_LINK;
 440
 441		switch (type) {
 442		case CORESIGHT_DEV_TYPE_SINK:
 443			ret = coresight_enable_sink(csdev, mode, sink_data);
 444			/*
 445			 * Sink is the first component turned on. If we
 446			 * failed to enable the sink, there are no components
 447			 * that need disabling. Disabling the path here
 448			 * would mean we could disrupt an existing session.
 449			 */
 450			if (ret)
 451				goto out;
 452			break;
 453		case CORESIGHT_DEV_TYPE_SOURCE:
 454			/* sources are enabled from either sysFS or Perf */
 455			break;
 456		case CORESIGHT_DEV_TYPE_LINK:
 457			parent = list_prev_entry(nd, link)->csdev;
 458			child = list_next_entry(nd, link)->csdev;
 459			ret = coresight_enable_link(csdev, parent, child);
 460			if (ret)
 461				goto err;
 462			break;
 463		default:
 464			goto err;
 465		}
 466	}
 467
 468out:
 469	return ret;
 470err:
 471	coresight_disable_path_from(path, nd);
 472	goto out;
 473}
 474
 475struct coresight_device *coresight_get_sink(struct list_head *path)
 476{
 477	struct coresight_device *csdev;
 478
 479	if (!path)
 480		return NULL;
 481
 482	csdev = list_last_entry(path, struct coresight_node, link)->csdev;
 483	if (csdev->type != CORESIGHT_DEV_TYPE_SINK &&
 484	    csdev->type != CORESIGHT_DEV_TYPE_LINKSINK)
 485		return NULL;
 486
 487	return csdev;
 488}
 489
 490u32 coresight_get_sink_id(struct coresight_device *csdev)
 
 491{
 492	if (!csdev->ea)
 493		return 0;
 
 
 
 
 
 494
 495	/*
 496	 * See function etm_perf_add_symlink_sink() to know where
 497	 * this comes from.
 498	 */
 499	return (u32) (unsigned long) csdev->ea->var;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 500}
 501
 502static int coresight_sink_by_id(struct device *dev, const void *data)
 503{
 504	struct coresight_device *csdev = to_coresight_device(dev);
 
 505
 506	if (csdev->type == CORESIGHT_DEV_TYPE_SINK ||
 507	    csdev->type == CORESIGHT_DEV_TYPE_LINKSINK) {
 508		if (coresight_get_sink_id(csdev) == *(u32 *)data)
 
 
 
 
 
 
 
 
 
 509			return 1;
 510	}
 511
 512	return 0;
 513}
 514
 515/**
 516 * coresight_get_sink_by_id - returns the sink that matches the id
 517 * @id: Id of the sink to match
 518 *
 519 * The name of a sink is unique, whether it is found on the AMBA bus or
 520 * otherwise.  As such the hash of that name can easily be used to identify
 521 * a sink.
 522 */
 523struct coresight_device *coresight_get_sink_by_id(u32 id)
 524{
 525	struct device *dev = NULL;
 526
 527	dev = bus_find_device(&coresight_bustype, NULL, &id,
 528			      coresight_sink_by_id);
 529
 530	return dev ? to_coresight_device(dev) : NULL;
 531}
 532
 533/**
 534 * coresight_get_ref- Helper function to increase reference count to module
 535 * and device.
 536 *
 537 * @csdev: The coresight device to get a reference on.
 538 *
 539 * Return true in successful case and power up the device.
 540 * Return false when failed to get reference of module.
 541 */
 542static inline bool coresight_get_ref(struct coresight_device *csdev)
 543{
 544	struct device *dev = csdev->dev.parent;
 545
 546	/* Make sure the driver can't be removed */
 547	if (!try_module_get(dev->driver->owner))
 548		return false;
 549	/* Make sure the device can't go away */
 550	get_device(dev);
 551	pm_runtime_get_sync(dev);
 552	return true;
 553}
 554
 555/**
 556 * coresight_put_ref- Helper function to decrease reference count to module
 557 * and device. Power off the device.
 558 *
 559 * @csdev: The coresight device to decrement a reference from.
 560 */
 561static inline void coresight_put_ref(struct coresight_device *csdev)
 562{
 563	struct device *dev = csdev->dev.parent;
 564
 565	pm_runtime_put(dev);
 566	put_device(dev);
 567	module_put(dev->driver->owner);
 568}
 569
 570/*
 571 * coresight_grab_device - Power up this device and any of the helper
 572 * devices connected to it for trace operation. Since the helper devices
 573 * don't appear on the trace path, they should be handled along with the
 574 * master device.
 575 */
 576static int coresight_grab_device(struct coresight_device *csdev)
 577{
 578	int i;
 579
 580	for (i = 0; i < csdev->pdata->nr_outconns; i++) {
 581		struct coresight_device *child;
 582
 583		child = csdev->pdata->out_conns[i]->dest_dev;
 584		if (child && coresight_is_helper(child))
 585			if (!coresight_get_ref(child))
 586				goto err;
 587	}
 588	if (coresight_get_ref(csdev))
 589		return 0;
 590err:
 591	for (i--; i >= 0; i--) {
 592		struct coresight_device *child;
 593
 594		child = csdev->pdata->out_conns[i]->dest_dev;
 595		if (child && coresight_is_helper(child))
 596			coresight_put_ref(child);
 597	}
 598	return -ENODEV;
 599}
 600
 601/*
 602 * coresight_drop_device - Release this device and any of the helper
 603 * devices connected to it.
 604 */
 605static void coresight_drop_device(struct coresight_device *csdev)
 606{
 607	int i;
 608
 609	coresight_put_ref(csdev);
 610	for (i = 0; i < csdev->pdata->nr_outconns; i++) {
 611		struct coresight_device *child;
 612
 613		child = csdev->pdata->out_conns[i]->dest_dev;
 614		if (child && coresight_is_helper(child))
 615			coresight_put_ref(child);
 616	}
 617}
 618
 619/**
 620 * _coresight_build_path - recursively build a path from a @csdev to a sink.
 621 * @csdev:	The device to start from.
 622 * @sink:	The final sink we want in this path.
 623 * @path:	The list to add devices to.
 624 *
 625 * The tree of Coresight device is traversed until @sink is found.
 626 * From there the sink is added to the list along with all the devices that led
 627 * to that point - the end result is a list from source to sink. In that list
 628 * the source is the first device and the sink the last one.
 
 629 */
 630static int _coresight_build_path(struct coresight_device *csdev,
 631				 struct coresight_device *sink,
 632				 struct list_head *path)
 633{
 634	int i, ret;
 635	bool found = false;
 636	struct coresight_node *node;
 637
 638	/* The sink has been found.  Enqueue the element */
 639	if (csdev == sink)
 640		goto out;
 641
 642	if (coresight_is_percpu_source(csdev) && coresight_is_percpu_sink(sink) &&
 643	    sink == per_cpu(csdev_sink, source_ops(csdev)->cpu_id(csdev))) {
 644		if (_coresight_build_path(sink, sink, path) == 0) {
 645			found = true;
 646			goto out;
 647		}
 648	}
 649
 650	/* Not a sink - recursively explore each port found on this element */
 651	for (i = 0; i < csdev->pdata->nr_outconns; i++) {
 652		struct coresight_device *child_dev;
 653
 654		child_dev = csdev->pdata->out_conns[i]->dest_dev;
 655		if (child_dev &&
 656		    _coresight_build_path(child_dev, sink, path) == 0) {
 657			found = true;
 658			break;
 659		}
 660	}
 661
 662	if (!found)
 663		return -ENODEV;
 664
 665out:
 666	/*
 667	 * A path from this element to a sink has been found.  The elements
 668	 * leading to the sink are already enqueued, all that is left to do
 669	 * is tell the PM runtime core we need this element and add a node
 670	 * for it.
 671	 */
 672	ret = coresight_grab_device(csdev);
 673	if (ret)
 674		return ret;
 675
 676	node = kzalloc(sizeof(struct coresight_node), GFP_KERNEL);
 677	if (!node)
 678		return -ENOMEM;
 679
 680	node->csdev = csdev;
 681	list_add(&node->link, path);
 682
 683	return 0;
 684}
 685
 686struct list_head *coresight_build_path(struct coresight_device *source,
 687				       struct coresight_device *sink)
 688{
 689	struct list_head *path;
 690	int rc;
 691
 692	if (!sink)
 693		return ERR_PTR(-EINVAL);
 694
 695	path = kzalloc(sizeof(struct list_head), GFP_KERNEL);
 696	if (!path)
 697		return ERR_PTR(-ENOMEM);
 698
 699	INIT_LIST_HEAD(path);
 700
 701	rc = _coresight_build_path(source, sink, path);
 702	if (rc) {
 703		kfree(path);
 704		return ERR_PTR(rc);
 705	}
 706
 707	return path;
 708}
 709
 710/**
 711 * coresight_release_path - release a previously built path.
 712 * @path:	the path to release.
 713 *
 714 * Go through all the elements of a path and 1) removed it from the list and
 715 * 2) free the memory allocated for each node.
 716 */
 717void coresight_release_path(struct list_head *path)
 718{
 719	struct coresight_device *csdev;
 720	struct coresight_node *nd, *next;
 721
 722	list_for_each_entry_safe(nd, next, path, link) {
 723		csdev = nd->csdev;
 724
 725		coresight_drop_device(csdev);
 726		list_del(&nd->link);
 727		kfree(nd);
 728	}
 729
 730	kfree(path);
 731}
 732
 733/* return true if the device is a suitable type for a default sink */
 734static inline bool coresight_is_def_sink_type(struct coresight_device *csdev)
 735{
 736	/* sink & correct subtype */
 737	if (((csdev->type == CORESIGHT_DEV_TYPE_SINK) ||
 738	     (csdev->type == CORESIGHT_DEV_TYPE_LINKSINK)) &&
 739	    (csdev->subtype.sink_subtype >= CORESIGHT_DEV_SUBTYPE_SINK_BUFFER))
 740		return true;
 741	return false;
 742}
 743
 744/**
 745 * coresight_select_best_sink - return the best sink for use as default from
 746 * the two provided.
 747 *
 748 * @sink:	current best sink.
 749 * @depth:      search depth where current sink was found.
 750 * @new_sink:	new sink for comparison with current sink.
 751 * @new_depth:  search depth where new sink was found.
 752 *
 753 * Sinks prioritised according to coresight_dev_subtype_sink, with only
 754 * subtypes CORESIGHT_DEV_SUBTYPE_SINK_BUFFER or higher being used.
 755 *
 756 * Where two sinks of equal priority are found, the sink closest to the
 757 * source is used (smallest search depth).
 758 *
 759 * return @new_sink & update @depth if better than @sink, else return @sink.
 760 */
 761static struct coresight_device *
 762coresight_select_best_sink(struct coresight_device *sink, int *depth,
 763			   struct coresight_device *new_sink, int new_depth)
 764{
 765	bool update = false;
 766
 767	if (!sink) {
 768		/* first found at this level */
 769		update = true;
 770	} else if (new_sink->subtype.sink_subtype >
 771		   sink->subtype.sink_subtype) {
 772		/* found better sink */
 773		update = true;
 774	} else if ((new_sink->subtype.sink_subtype ==
 775		    sink->subtype.sink_subtype) &&
 776		   (*depth > new_depth)) {
 777		/* found same but closer sink */
 778		update = true;
 779	}
 780
 781	if (update)
 782		*depth = new_depth;
 783	return update ? new_sink : sink;
 784}
 785
 786/**
 787 * coresight_find_sink - recursive function to walk trace connections from
 788 * source to find a suitable default sink.
 789 *
 790 * @csdev: source / current device to check.
 791 * @depth: [in] search depth of calling dev, [out] depth of found sink.
 792 *
 793 * This will walk the connection path from a source (ETM) till a suitable
 794 * sink is encountered and return that sink to the original caller.
 795 *
 796 * If current device is a plain sink return that & depth, otherwise recursively
 797 * call child connections looking for a sink. Select best possible using
 798 * coresight_select_best_sink.
 799 *
 800 * return best sink found, or NULL if not found at this node or child nodes.
 801 */
 802static struct coresight_device *
 803coresight_find_sink(struct coresight_device *csdev, int *depth)
 804{
 805	int i, curr_depth = *depth + 1, found_depth = 0;
 806	struct coresight_device *found_sink = NULL;
 807
 808	if (coresight_is_def_sink_type(csdev)) {
 809		found_depth = curr_depth;
 810		found_sink = csdev;
 811		if (csdev->type == CORESIGHT_DEV_TYPE_SINK)
 812			goto return_def_sink;
 813		/* look past LINKSINK for something better */
 814	}
 815
 816	/*
 817	 * Not a sink we want - or possible child sink may be better.
 818	 * recursively explore each port found on this element.
 819	 */
 820	for (i = 0; i < csdev->pdata->nr_outconns; i++) {
 821		struct coresight_device *child_dev, *sink = NULL;
 822		int child_depth = curr_depth;
 823
 824		child_dev = csdev->pdata->out_conns[i]->dest_dev;
 825		if (child_dev)
 826			sink = coresight_find_sink(child_dev, &child_depth);
 827
 828		if (sink)
 829			found_sink = coresight_select_best_sink(found_sink,
 830								&found_depth,
 831								sink,
 832								child_depth);
 833	}
 834
 835return_def_sink:
 836	/* return found sink and depth */
 837	if (found_sink)
 838		*depth = found_depth;
 839	return found_sink;
 840}
 841
 842/**
 843 * coresight_find_default_sink: Find a sink suitable for use as a
 844 * default sink.
 845 *
 846 * @csdev: starting source to find a connected sink.
 847 *
 848 * Walks connections graph looking for a suitable sink to enable for the
 849 * supplied source. Uses CoreSight device subtypes and distance from source
 850 * to select the best sink.
 851 *
 852 * If a sink is found, then the default sink for this device is set and
 853 * will be automatically used in future.
 854 *
 855 * Used in cases where the CoreSight user (perf / sysfs) has not selected a
 856 * sink.
 857 */
 858struct coresight_device *
 859coresight_find_default_sink(struct coresight_device *csdev)
 860{
 861	int depth = 0;
 862
 863	/* look for a default sink if we have not found for this device */
 864	if (!csdev->def_sink) {
 865		if (coresight_is_percpu_source(csdev))
 866			csdev->def_sink = per_cpu(csdev_sink, source_ops(csdev)->cpu_id(csdev));
 867		if (!csdev->def_sink)
 868			csdev->def_sink = coresight_find_sink(csdev, &depth);
 869	}
 870	return csdev->def_sink;
 871}
 872
 873static int coresight_remove_sink_ref(struct device *dev, void *data)
 874{
 875	struct coresight_device *sink = data;
 876	struct coresight_device *source = to_coresight_device(dev);
 877
 878	if (source->def_sink == sink)
 879		source->def_sink = NULL;
 880	return 0;
 881}
 882
 883/**
 884 * coresight_clear_default_sink: Remove all default sink references to the
 885 * supplied sink.
 886 *
 887 * If supplied device is a sink, then check all the bus devices and clear
 888 * out all the references to this sink from the coresight_device def_sink
 889 * parameter.
 890 *
 891 * @csdev: coresight sink - remove references to this from all sources.
 892 */
 893static void coresight_clear_default_sink(struct coresight_device *csdev)
 894{
 895	if ((csdev->type == CORESIGHT_DEV_TYPE_SINK) ||
 896	    (csdev->type == CORESIGHT_DEV_TYPE_LINKSINK)) {
 897		bus_for_each_dev(&coresight_bustype, NULL, csdev,
 898				 coresight_remove_sink_ref);
 899	}
 900}
 901
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 902static void coresight_device_release(struct device *dev)
 903{
 904	struct coresight_device *csdev = to_coresight_device(dev);
 905
 906	fwnode_handle_put(csdev->dev.fwnode);
 907	free_percpu(csdev->perf_sink_id_map.cpu_map);
 908	kfree(csdev);
 909}
 910
 911static int coresight_orphan_match(struct device *dev, void *data)
 912{
 913	int i, ret = 0;
 914	bool still_orphan = false;
 915	struct coresight_device *dst_csdev = data;
 916	struct coresight_device *src_csdev = to_coresight_device(dev);
 917	struct coresight_connection *conn;
 918	bool fixup_self = (src_csdev == dst_csdev);
 
 
 
 
 
 
 919
 920	/* Move on to another component if no connection is orphan */
 921	if (!src_csdev->orphan)
 922		return 0;
 923	/*
 924	 * Circle through all the connections of that component.  If we find
 925	 * an orphan connection whose name matches @dst_csdev, link it.
 926	 */
 927	for (i = 0; i < src_csdev->pdata->nr_outconns; i++) {
 928		conn = src_csdev->pdata->out_conns[i];
 929
 930		/* Skip the port if it's already connected. */
 931		if (conn->dest_dev)
 932			continue;
 933
 934		/*
 935		 * If we are at the "new" device, which triggered this search,
 936		 * we must find the remote device from the fwnode in the
 937		 * connection.
 938		 */
 939		if (fixup_self)
 940			dst_csdev = coresight_find_csdev_by_fwnode(
 941				conn->dest_fwnode);
 942
 943		/* Does it match this newly added device? */
 944		if (dst_csdev && conn->dest_fwnode == dst_csdev->dev.fwnode) {
 945			ret = coresight_make_links(src_csdev, conn, dst_csdev);
 946			if (ret)
 947				return ret;
 948
 949			/*
 950			 * Install the device connection. This also indicates that
 951			 * the links are operational on both ends.
 952			 */
 953			conn->dest_dev = dst_csdev;
 954			conn->src_dev = src_csdev;
 955
 956			ret = coresight_add_in_conn(conn);
 957			if (ret)
 958				return ret;
 959		} else {
 960			/* This component still has an orphan */
 961			still_orphan = true;
 962		}
 963	}
 964
 965	src_csdev->orphan = still_orphan;
 966
 967	/*
 968	 * Returning '0' in case we didn't encounter any error,
 969	 * ensures that all known component on the bus will be checked.
 970	 */
 971	return 0;
 972}
 973
 974static int coresight_fixup_orphan_conns(struct coresight_device *csdev)
 975{
 976	return bus_for_each_dev(&coresight_bustype, NULL,
 977			 csdev, coresight_orphan_match);
 978}
 979
 980/* coresight_remove_conns - Remove other device's references to this device */
 981static void coresight_remove_conns(struct coresight_device *csdev)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 982{
 983	int i, j;
 
 984	struct coresight_connection *conn;
 985
 
 
 
 
 
 
 
 986	/*
 987	 * Remove the input connection references from the destination device
 988	 * for each output connection.
 989	 */
 990	for (i = 0; i < csdev->pdata->nr_outconns; i++) {
 991		conn = csdev->pdata->out_conns[i];
 992		if (!conn->dest_dev)
 
 993			continue;
 994
 995		for (j = 0; j < conn->dest_dev->pdata->nr_inconns; ++j)
 996			if (conn->dest_dev->pdata->in_conns[j] == conn) {
 997				conn->dest_dev->pdata->in_conns[j] = NULL;
 998				break;
 999			}
 
 
 
 
 
 
 
 
1000	}
1001
1002	/*
1003	 * For all input connections, remove references to this device.
1004	 * Connection objects are shared so modifying this device's input
1005	 * connections affects the other device's output connection.
1006	 */
1007	for (i = 0; i < csdev->pdata->nr_inconns; ++i) {
1008		conn = csdev->pdata->in_conns[i];
1009		/* Input conns array is sparse */
1010		if (!conn)
1011			continue;
1012
1013		conn->src_dev->orphan = true;
1014		coresight_remove_links(conn->src_dev, conn);
1015		conn->dest_dev = NULL;
1016	}
 
 
 
 
 
 
 
 
 
 
 
1017}
1018
1019/**
1020 * coresight_timeout - loop until a bit has changed to a specific register
1021 *			state.
1022 * @csa: coresight device access for the device
1023 * @offset: Offset of the register from the base of the device.
1024 * @position: the position of the bit of interest.
1025 * @value: the value the bit should have.
1026 *
1027 * Return: 0 as soon as the bit has taken the desired state or -EAGAIN if
1028 * TIMEOUT_US has elapsed, which ever happens first.
1029 */
1030int coresight_timeout(struct csdev_access *csa, u32 offset,
1031		      int position, int value)
1032{
1033	int i;
1034	u32 val;
1035
1036	for (i = TIMEOUT_US; i > 0; i--) {
1037		val = csdev_access_read32(csa, offset);
1038		/* waiting on the bit to go from 0 to 1 */
1039		if (value) {
1040			if (val & BIT(position))
1041				return 0;
1042		/* waiting on the bit to go from 1 to 0 */
1043		} else {
1044			if (!(val & BIT(position)))
1045				return 0;
1046		}
1047
1048		/*
1049		 * Delay is arbitrary - the specification doesn't say how long
1050		 * we are expected to wait.  Extra check required to make sure
1051		 * we don't wait needlessly on the last iteration.
1052		 */
1053		if (i - 1)
1054			udelay(1);
1055	}
1056
1057	return -EAGAIN;
1058}
1059EXPORT_SYMBOL_GPL(coresight_timeout);
1060
1061u32 coresight_relaxed_read32(struct coresight_device *csdev, u32 offset)
1062{
1063	return csdev_access_relaxed_read32(&csdev->access, offset);
1064}
1065
1066u32 coresight_read32(struct coresight_device *csdev, u32 offset)
1067{
1068	return csdev_access_read32(&csdev->access, offset);
1069}
1070
1071void coresight_relaxed_write32(struct coresight_device *csdev,
1072			       u32 val, u32 offset)
1073{
1074	csdev_access_relaxed_write32(&csdev->access, val, offset);
1075}
1076
1077void coresight_write32(struct coresight_device *csdev, u32 val, u32 offset)
1078{
1079	csdev_access_write32(&csdev->access, val, offset);
1080}
1081
1082u64 coresight_relaxed_read64(struct coresight_device *csdev, u32 offset)
1083{
1084	return csdev_access_relaxed_read64(&csdev->access, offset);
1085}
1086
1087u64 coresight_read64(struct coresight_device *csdev, u32 offset)
1088{
1089	return csdev_access_read64(&csdev->access, offset);
1090}
1091
1092void coresight_relaxed_write64(struct coresight_device *csdev,
1093			       u64 val, u32 offset)
1094{
1095	csdev_access_relaxed_write64(&csdev->access, val, offset);
1096}
1097
1098void coresight_write64(struct coresight_device *csdev, u64 val, u32 offset)
1099{
1100	csdev_access_write64(&csdev->access, val, offset);
1101}
1102
1103/*
1104 * coresight_release_platform_data: Release references to the devices connected
1105 * to the output port of this device.
1106 */
1107void coresight_release_platform_data(struct coresight_device *csdev,
1108				     struct device *dev,
1109				     struct coresight_platform_data *pdata)
1110{
1111	int i;
1112	struct coresight_connection **conns = pdata->out_conns;
1113
1114	for (i = 0; i < pdata->nr_outconns; i++) {
1115		/* If we have made the links, remove them now */
1116		if (csdev && conns[i]->dest_dev)
1117			coresight_remove_links(csdev, conns[i]);
1118		/*
1119		 * Drop the refcount and clear the handle as this device
1120		 * is going away
1121		 */
1122		fwnode_handle_put(conns[i]->dest_fwnode);
1123		conns[i]->dest_fwnode = NULL;
1124		devm_kfree(dev, conns[i]);
1125	}
1126	devm_kfree(dev, pdata->out_conns);
1127	devm_kfree(dev, pdata->in_conns);
1128	devm_kfree(dev, pdata);
1129	if (csdev)
1130		coresight_remove_conns_sysfs_group(csdev);
1131}
1132
1133struct coresight_device *coresight_register(struct coresight_desc *desc)
1134{
1135	int ret;
 
 
 
1136	struct coresight_device *csdev;
1137	bool registered = false;
1138
1139	csdev = kzalloc(sizeof(*csdev), GFP_KERNEL);
1140	if (!csdev) {
1141		ret = -ENOMEM;
1142		goto err_out;
1143	}
1144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1145	csdev->pdata = desc->pdata;
1146
1147	csdev->type = desc->type;
1148	csdev->subtype = desc->subtype;
1149	csdev->ops = desc->ops;
1150	csdev->access = desc->access;
1151	csdev->orphan = true;
1152
1153	csdev->dev.type = &coresight_dev_type[desc->type];
1154	csdev->dev.groups = desc->groups;
1155	csdev->dev.parent = desc->dev;
1156	csdev->dev.release = coresight_device_release;
1157	csdev->dev.bus = &coresight_bustype;
1158	/*
1159	 * Hold the reference to our parent device. This will be
1160	 * dropped only in coresight_device_release().
1161	 */
1162	csdev->dev.fwnode = fwnode_handle_get(dev_fwnode(desc->dev));
1163	dev_set_name(&csdev->dev, "%s", desc->name);
1164
1165	if (csdev->type == CORESIGHT_DEV_TYPE_SINK ||
1166	    csdev->type == CORESIGHT_DEV_TYPE_LINKSINK) {
1167		spin_lock_init(&csdev->perf_sink_id_map.lock);
1168		csdev->perf_sink_id_map.cpu_map = alloc_percpu(atomic_t);
1169		if (!csdev->perf_sink_id_map.cpu_map) {
1170			kfree(csdev);
1171			ret = -ENOMEM;
1172			goto err_out;
1173		}
1174	}
1175	/*
1176	 * Make sure the device registration and the connection fixup
1177	 * are synchronised, so that we don't see uninitialised devices
1178	 * on the coresight bus while trying to resolve the connections.
1179	 */
1180	mutex_lock(&coresight_mutex);
1181
1182	ret = device_register(&csdev->dev);
1183	if (ret) {
1184		put_device(&csdev->dev);
1185		/*
1186		 * All resources are free'd explicitly via
1187		 * coresight_device_release(), triggered from put_device().
1188		 */
1189		goto out_unlock;
1190	}
1191
1192	if (csdev->type == CORESIGHT_DEV_TYPE_SINK ||
1193	    csdev->type == CORESIGHT_DEV_TYPE_LINKSINK) {
1194		ret = etm_perf_add_symlink_sink(csdev);
1195
1196		if (ret) {
1197			device_unregister(&csdev->dev);
1198			/*
1199			 * As with the above, all resources are free'd
1200			 * explicitly via coresight_device_release() triggered
1201			 * from put_device(), which is in turn called from
1202			 * function device_unregister().
1203			 */
1204			goto out_unlock;
1205		}
1206	}
1207	/* Device is now registered */
1208	registered = true;
1209
1210	ret = coresight_create_conns_sysfs_group(csdev);
1211	if (!ret)
 
 
1212		ret = coresight_fixup_orphan_conns(csdev);
1213
1214out_unlock:
1215	mutex_unlock(&coresight_mutex);
1216	/* Success */
1217	if (!ret) {
1218		if (cti_assoc_ops && cti_assoc_ops->add)
1219			cti_assoc_ops->add(csdev);
1220		return csdev;
1221	}
1222
1223	/* Unregister the device if needed */
1224	if (registered) {
1225		coresight_unregister(csdev);
1226		return ERR_PTR(ret);
1227	}
1228
1229err_out:
1230	/* Cleanup the connection information */
1231	coresight_release_platform_data(NULL, desc->dev, desc->pdata);
1232	return ERR_PTR(ret);
1233}
1234EXPORT_SYMBOL_GPL(coresight_register);
1235
1236void coresight_unregister(struct coresight_device *csdev)
1237{
1238	etm_perf_del_symlink_sink(csdev);
1239	/* Remove references of that device in the topology */
1240	if (cti_assoc_ops && cti_assoc_ops->remove)
1241		cti_assoc_ops->remove(csdev);
1242	coresight_remove_conns(csdev);
1243	coresight_clear_default_sink(csdev);
1244	coresight_release_platform_data(csdev, csdev->dev.parent, csdev->pdata);
1245	device_unregister(&csdev->dev);
1246}
1247EXPORT_SYMBOL_GPL(coresight_unregister);
1248
1249
1250/*
1251 * coresight_search_device_idx - Search the fwnode handle of a device
1252 * in the given dev_idx list. Must be called with the coresight_mutex held.
1253 *
1254 * Returns the index of the entry, when found. Otherwise, -ENOENT.
1255 */
1256static inline int coresight_search_device_idx(struct coresight_dev_list *dict,
1257					      struct fwnode_handle *fwnode)
1258{
1259	int i;
1260
1261	for (i = 0; i < dict->nr_idx; i++)
1262		if (dict->fwnode_list[i] == fwnode)
1263			return i;
1264	return -ENOENT;
1265}
1266
1267static bool coresight_compare_type(enum coresight_dev_type type_a,
1268				   union coresight_dev_subtype subtype_a,
1269				   enum coresight_dev_type type_b,
1270				   union coresight_dev_subtype subtype_b)
1271{
1272	if (type_a != type_b)
1273		return false;
1274
1275	switch (type_a) {
1276	case CORESIGHT_DEV_TYPE_SINK:
1277		return subtype_a.sink_subtype == subtype_b.sink_subtype;
1278	case CORESIGHT_DEV_TYPE_LINK:
1279		return subtype_a.link_subtype == subtype_b.link_subtype;
1280	case CORESIGHT_DEV_TYPE_LINKSINK:
1281		return subtype_a.link_subtype == subtype_b.link_subtype &&
1282		       subtype_a.sink_subtype == subtype_b.sink_subtype;
1283	case CORESIGHT_DEV_TYPE_SOURCE:
1284		return subtype_a.source_subtype == subtype_b.source_subtype;
1285	case CORESIGHT_DEV_TYPE_HELPER:
1286		return subtype_a.helper_subtype == subtype_b.helper_subtype;
1287	default:
1288		return false;
1289	}
1290}
1291
1292struct coresight_device *
1293coresight_find_input_type(struct coresight_platform_data *pdata,
1294			  enum coresight_dev_type type,
1295			  union coresight_dev_subtype subtype)
1296{
1297	int i;
1298	struct coresight_connection *conn;
1299
1300	for (i = 0; i < pdata->nr_inconns; ++i) {
1301		conn = pdata->in_conns[i];
1302		if (conn &&
1303		    coresight_compare_type(type, subtype, conn->src_dev->type,
1304					   conn->src_dev->subtype))
1305			return conn->src_dev;
1306	}
1307	return NULL;
1308}
1309EXPORT_SYMBOL_GPL(coresight_find_input_type);
1310
1311struct coresight_device *
1312coresight_find_output_type(struct coresight_platform_data *pdata,
1313			   enum coresight_dev_type type,
1314			   union coresight_dev_subtype subtype)
1315{
1316	int i;
1317	struct coresight_connection *conn;
1318
1319	for (i = 0; i < pdata->nr_outconns; ++i) {
1320		conn = pdata->out_conns[i];
1321		if (conn->dest_dev &&
1322		    coresight_compare_type(type, subtype, conn->dest_dev->type,
1323					   conn->dest_dev->subtype))
1324			return conn->dest_dev;
1325	}
1326	return NULL;
1327}
1328EXPORT_SYMBOL_GPL(coresight_find_output_type);
1329
1330bool coresight_loses_context_with_cpu(struct device *dev)
1331{
1332	return fwnode_property_present(dev_fwnode(dev),
1333				       "arm,coresight-loses-context-with-cpu");
1334}
1335EXPORT_SYMBOL_GPL(coresight_loses_context_with_cpu);
1336
1337/*
1338 * coresight_alloc_device_name - Get an index for a given device in the
1339 * device index list specific to a driver. An index is allocated for a
1340 * device and is tracked with the fwnode_handle to prevent allocating
1341 * duplicate indices for the same device (e.g, if we defer probing of
1342 * a device due to dependencies), in case the index is requested again.
1343 */
1344char *coresight_alloc_device_name(struct coresight_dev_list *dict,
1345				  struct device *dev)
1346{
1347	int idx;
1348	char *name = NULL;
1349	struct fwnode_handle **list;
1350
1351	mutex_lock(&coresight_mutex);
1352
1353	idx = coresight_search_device_idx(dict, dev_fwnode(dev));
1354	if (idx < 0) {
1355		/* Make space for the new entry */
1356		idx = dict->nr_idx;
1357		list = krealloc_array(dict->fwnode_list,
1358				      idx + 1, sizeof(*dict->fwnode_list),
1359				      GFP_KERNEL);
1360		if (ZERO_OR_NULL_PTR(list)) {
1361			idx = -ENOMEM;
1362			goto done;
1363		}
1364
1365		list[idx] = dev_fwnode(dev);
1366		dict->fwnode_list = list;
1367		dict->nr_idx = idx + 1;
1368	}
1369
1370	name = devm_kasprintf(dev, GFP_KERNEL, "%s%d", dict->pfx, idx);
1371done:
1372	mutex_unlock(&coresight_mutex);
1373	return name;
1374}
1375EXPORT_SYMBOL_GPL(coresight_alloc_device_name);
1376
1377const struct bus_type coresight_bustype = {
1378	.name	= "coresight",
1379};
1380
1381static int __init coresight_init(void)
1382{
1383	int ret;
1384
1385	ret = bus_register(&coresight_bustype);
1386	if (ret)
1387		return ret;
1388
1389	ret = etm_perf_init();
1390	if (ret)
1391		goto exit_bus_unregister;
1392
1393	/* initialise the coresight syscfg API */
1394	ret = cscfg_init();
1395	if (!ret)
1396		return 0;
1397
1398	etm_perf_exit();
1399exit_bus_unregister:
1400	bus_unregister(&coresight_bustype);
1401	return ret;
1402}
1403
1404static void __exit coresight_exit(void)
1405{
1406	cscfg_exit();
1407	etm_perf_exit();
1408	bus_unregister(&coresight_bustype);
1409}
1410
1411module_init(coresight_init);
1412module_exit(coresight_exit);
1413
1414int coresight_init_driver(const char *drv, struct amba_driver *amba_drv,
1415			  struct platform_driver *pdev_drv)
1416{
1417	int ret;
1418
1419	ret = amba_driver_register(amba_drv);
1420	if (ret) {
1421		pr_err("%s: error registering AMBA driver\n", drv);
1422		return ret;
1423	}
1424
1425	ret = platform_driver_register(pdev_drv);
1426	if (!ret)
1427		return 0;
1428
1429	pr_err("%s: error registering platform driver\n", drv);
1430	amba_driver_unregister(amba_drv);
1431	return ret;
1432}
1433EXPORT_SYMBOL_GPL(coresight_init_driver);
1434
1435void coresight_remove_driver(struct amba_driver *amba_drv,
1436			     struct platform_driver *pdev_drv)
1437{
1438	amba_driver_unregister(amba_drv);
1439	platform_driver_unregister(pdev_drv);
1440}
1441EXPORT_SYMBOL_GPL(coresight_remove_driver);
1442
1443MODULE_LICENSE("GPL v2");
1444MODULE_AUTHOR("Pratik Patel <pratikp@codeaurora.org>");
1445MODULE_AUTHOR("Mathieu Poirier <mathieu.poirier@linaro.org>");
1446MODULE_DESCRIPTION("Arm CoreSight tracer driver");
v6.2
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
   4 */
   5
 
   6#include <linux/kernel.h>
   7#include <linux/init.h>
   8#include <linux/types.h>
   9#include <linux/device.h>
  10#include <linux/io.h>
  11#include <linux/err.h>
  12#include <linux/export.h>
  13#include <linux/slab.h>
  14#include <linux/stringhash.h>
  15#include <linux/mutex.h>
  16#include <linux/clk.h>
  17#include <linux/coresight.h>
  18#include <linux/of_platform.h>
  19#include <linux/delay.h>
  20#include <linux/pm_runtime.h>
  21
  22#include "coresight-etm-perf.h"
  23#include "coresight-priv.h"
  24#include "coresight-syscfg.h"
  25
  26static DEFINE_MUTEX(coresight_mutex);
 
 
 
 
  27static DEFINE_PER_CPU(struct coresight_device *, csdev_sink);
  28
  29/**
  30 * struct coresight_node - elements of a path, from source to sink
  31 * @csdev:	Address of an element.
  32 * @link:	hook to the list.
  33 */
  34struct coresight_node {
  35	struct coresight_device *csdev;
  36	struct list_head link;
  37};
  38
  39/*
  40 * When operating Coresight drivers from the sysFS interface, only a single
  41 * path can exist from a tracer (associated to a CPU) to a sink.
  42 */
  43static DEFINE_PER_CPU(struct list_head *, tracer_path);
  44
  45/*
  46 * As of this writing only a single STM can be found in CS topologies.  Since
  47 * there is no way to know if we'll ever see more and what kind of
  48 * configuration they will enact, for the time being only define a single path
  49 * for STM.
  50 */
  51static struct list_head *stm_path;
  52
  53/*
  54 * When losing synchronisation a new barrier packet needs to be inserted at the
  55 * beginning of the data collected in a buffer.  That way the decoder knows that
  56 * it needs to look for another sync sequence.
  57 */
  58const u32 coresight_barrier_pkt[4] = {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff};
  59EXPORT_SYMBOL_GPL(coresight_barrier_pkt);
  60
  61static const struct cti_assoc_op *cti_assoc_ops;
  62
  63ssize_t coresight_simple_show_pair(struct device *_dev,
  64			      struct device_attribute *attr, char *buf)
  65{
  66	struct coresight_device *csdev = container_of(_dev, struct coresight_device, dev);
  67	struct cs_pair_attribute *cs_attr = container_of(attr, struct cs_pair_attribute, attr);
  68	u64 val;
  69
  70	pm_runtime_get_sync(_dev->parent);
  71	val = csdev_access_relaxed_read_pair(&csdev->access, cs_attr->lo_off, cs_attr->hi_off);
  72	pm_runtime_put_sync(_dev->parent);
  73	return sysfs_emit(buf, "0x%llx\n", val);
  74}
  75EXPORT_SYMBOL_GPL(coresight_simple_show_pair);
  76
  77ssize_t coresight_simple_show32(struct device *_dev,
  78			      struct device_attribute *attr, char *buf)
  79{
  80	struct coresight_device *csdev = container_of(_dev, struct coresight_device, dev);
  81	struct cs_off_attribute *cs_attr = container_of(attr, struct cs_off_attribute, attr);
  82	u64 val;
  83
  84	pm_runtime_get_sync(_dev->parent);
  85	val = csdev_access_relaxed_read32(&csdev->access, cs_attr->off);
  86	pm_runtime_put_sync(_dev->parent);
  87	return sysfs_emit(buf, "0x%llx\n", val);
  88}
  89EXPORT_SYMBOL_GPL(coresight_simple_show32);
  90
  91void coresight_set_cti_ops(const struct cti_assoc_op *cti_op)
  92{
  93	cti_assoc_ops = cti_op;
  94}
  95EXPORT_SYMBOL_GPL(coresight_set_cti_ops);
  96
  97void coresight_remove_cti_ops(void)
  98{
  99	cti_assoc_ops = NULL;
 100}
 101EXPORT_SYMBOL_GPL(coresight_remove_cti_ops);
 102
 103void coresight_set_percpu_sink(int cpu, struct coresight_device *csdev)
 104{
 105	per_cpu(csdev_sink, cpu) = csdev;
 106}
 107EXPORT_SYMBOL_GPL(coresight_set_percpu_sink);
 108
 109struct coresight_device *coresight_get_percpu_sink(int cpu)
 110{
 111	return per_cpu(csdev_sink, cpu);
 112}
 113EXPORT_SYMBOL_GPL(coresight_get_percpu_sink);
 114
 115static int coresight_id_match(struct device *dev, void *data)
 116{
 117	int trace_id, i_trace_id;
 118	struct coresight_device *csdev, *i_csdev;
 119
 120	csdev = data;
 121	i_csdev = to_coresight_device(dev);
 122
 123	/*
 124	 * No need to care about oneself and components that are not
 125	 * sources or not enabled
 126	 */
 127	if (i_csdev == csdev || !i_csdev->enable ||
 128	    i_csdev->type != CORESIGHT_DEV_TYPE_SOURCE)
 129		return 0;
 130
 131	/* Get the source ID for both components */
 132	trace_id = source_ops(csdev)->trace_id(csdev);
 133	i_trace_id = source_ops(i_csdev)->trace_id(i_csdev);
 134
 135	/* All you need is one */
 136	if (trace_id == i_trace_id)
 137		return 1;
 138
 139	return 0;
 140}
 141
 142static int coresight_source_is_unique(struct coresight_device *csdev)
 143{
 144	int trace_id = source_ops(csdev)->trace_id(csdev);
 145
 146	/* this shouldn't happen */
 147	if (trace_id < 0)
 148		return 0;
 149
 150	return !bus_for_each_dev(&coresight_bustype, NULL,
 151				 csdev, coresight_id_match);
 152}
 153
 154static int coresight_find_link_inport(struct coresight_device *csdev,
 155				      struct coresight_device *parent)
 156{
 157	int i;
 158	struct coresight_connection *conn;
 159
 160	for (i = 0; i < parent->pdata->nr_outport; i++) {
 161		conn = &parent->pdata->conns[i];
 162		if (conn->child_dev == csdev)
 163			return conn->child_port;
 164	}
 165
 166	dev_err(&csdev->dev, "couldn't find inport, parent: %s, child: %s\n",
 167		dev_name(&parent->dev), dev_name(&csdev->dev));
 
 168
 169	return -ENODEV;
 170}
 171
 172static int coresight_find_link_outport(struct coresight_device *csdev,
 173				       struct coresight_device *child)
 174{
 175	int i;
 176	struct coresight_connection *conn;
 177
 178	for (i = 0; i < csdev->pdata->nr_outport; i++) {
 179		conn = &csdev->pdata->conns[i];
 180		if (conn->child_dev == child)
 181			return conn->outport;
 182	}
 183
 184	dev_err(&csdev->dev, "couldn't find outport, parent: %s, child: %s\n",
 185		dev_name(&csdev->dev), dev_name(&child->dev));
 186
 187	return -ENODEV;
 188}
 189
 190static inline u32 coresight_read_claim_tags(struct coresight_device *csdev)
 191{
 192	return csdev_access_relaxed_read32(&csdev->access, CORESIGHT_CLAIMCLR);
 193}
 194
 195static inline bool coresight_is_claimed_self_hosted(struct coresight_device *csdev)
 196{
 197	return coresight_read_claim_tags(csdev) == CORESIGHT_CLAIM_SELF_HOSTED;
 198}
 199
 200static inline bool coresight_is_claimed_any(struct coresight_device *csdev)
 201{
 202	return coresight_read_claim_tags(csdev) != 0;
 203}
 204
 205static inline void coresight_set_claim_tags(struct coresight_device *csdev)
 206{
 207	csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED,
 208				     CORESIGHT_CLAIMSET);
 209	isb();
 210}
 211
 212static inline void coresight_clear_claim_tags(struct coresight_device *csdev)
 213{
 214	csdev_access_relaxed_write32(&csdev->access, CORESIGHT_CLAIM_SELF_HOSTED,
 215				     CORESIGHT_CLAIMCLR);
 216	isb();
 217}
 218
 219/*
 220 * coresight_claim_device_unlocked : Claim the device for self-hosted usage
 221 * to prevent an external tool from touching this device. As per PSCI
 222 * standards, section "Preserving the execution context" => "Debug and Trace
 223 * save and Restore", DBGCLAIM[1] is reserved for Self-hosted debug/trace and
 224 * DBGCLAIM[0] is reserved for external tools.
 225 *
 226 * Called with CS_UNLOCKed for the component.
 227 * Returns : 0 on success
 228 */
 229int coresight_claim_device_unlocked(struct coresight_device *csdev)
 230{
 231	if (WARN_ON(!csdev))
 232		return -EINVAL;
 233
 234	if (coresight_is_claimed_any(csdev))
 235		return -EBUSY;
 236
 237	coresight_set_claim_tags(csdev);
 238	if (coresight_is_claimed_self_hosted(csdev))
 239		return 0;
 240	/* There was a race setting the tags, clean up and fail */
 241	coresight_clear_claim_tags(csdev);
 242	return -EBUSY;
 243}
 244EXPORT_SYMBOL_GPL(coresight_claim_device_unlocked);
 245
 246int coresight_claim_device(struct coresight_device *csdev)
 247{
 248	int rc;
 249
 250	if (WARN_ON(!csdev))
 251		return -EINVAL;
 252
 253	CS_UNLOCK(csdev->access.base);
 254	rc = coresight_claim_device_unlocked(csdev);
 255	CS_LOCK(csdev->access.base);
 256
 257	return rc;
 258}
 259EXPORT_SYMBOL_GPL(coresight_claim_device);
 260
 261/*
 262 * coresight_disclaim_device_unlocked : Clear the claim tags for the device.
 263 * Called with CS_UNLOCKed for the component.
 264 */
 265void coresight_disclaim_device_unlocked(struct coresight_device *csdev)
 266{
 267
 268	if (WARN_ON(!csdev))
 269		return;
 270
 271	if (coresight_is_claimed_self_hosted(csdev))
 272		coresight_clear_claim_tags(csdev);
 273	else
 274		/*
 275		 * The external agent may have not honoured our claim
 276		 * and has manipulated it. Or something else has seriously
 277		 * gone wrong in our driver.
 278		 */
 279		WARN_ON_ONCE(1);
 280}
 281EXPORT_SYMBOL_GPL(coresight_disclaim_device_unlocked);
 282
 283void coresight_disclaim_device(struct coresight_device *csdev)
 284{
 285	if (WARN_ON(!csdev))
 286		return;
 287
 288	CS_UNLOCK(csdev->access.base);
 289	coresight_disclaim_device_unlocked(csdev);
 290	CS_LOCK(csdev->access.base);
 291}
 292EXPORT_SYMBOL_GPL(coresight_disclaim_device);
 293
 294/* enable or disable an associated CTI device of the supplied CS device */
 295static int
 296coresight_control_assoc_ectdev(struct coresight_device *csdev, bool enable)
 297{
 298	int ect_ret = 0;
 299	struct coresight_device *ect_csdev = csdev->ect_dev;
 300	struct module *mod;
 301
 302	if (!ect_csdev)
 303		return 0;
 304	if ((!ect_ops(ect_csdev)->enable) || (!ect_ops(ect_csdev)->disable))
 305		return 0;
 306
 307	mod = ect_csdev->dev.parent->driver->owner;
 308	if (enable) {
 309		if (try_module_get(mod)) {
 310			ect_ret = ect_ops(ect_csdev)->enable(ect_csdev);
 311			if (ect_ret) {
 312				module_put(mod);
 313			} else {
 314				get_device(ect_csdev->dev.parent);
 315				csdev->ect_enabled = true;
 316			}
 317		} else
 318			ect_ret = -ENODEV;
 319	} else {
 320		if (csdev->ect_enabled) {
 321			ect_ret = ect_ops(ect_csdev)->disable(ect_csdev);
 322			put_device(ect_csdev->dev.parent);
 323			module_put(mod);
 324			csdev->ect_enabled = false;
 325		}
 326	}
 327
 328	/* output warning if ECT enable is preventing trace operation */
 329	if (ect_ret)
 330		dev_info(&csdev->dev, "Associated ECT device (%s) %s failed\n",
 331			 dev_name(&ect_csdev->dev),
 332			 enable ? "enable" : "disable");
 333	return ect_ret;
 334}
 335
 336/*
 337 * Set the associated ect / cti device while holding the coresight_mutex
 338 * to avoid a race with coresight_enable that may try to use this value.
 
 
 
 339 */
 340void coresight_set_assoc_ectdev_mutex(struct coresight_device *csdev,
 341				      struct coresight_device *ect_csdev)
 342{
 
 
 
 
 343	mutex_lock(&coresight_mutex);
 344	csdev->ect_dev = ect_csdev;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 345	mutex_unlock(&coresight_mutex);
 346}
 347EXPORT_SYMBOL_GPL(coresight_set_assoc_ectdev_mutex);
 348
 349static int coresight_enable_sink(struct coresight_device *csdev,
 350				 u32 mode, void *data)
 351{
 352	int ret;
 353
 354	/*
 355	 * We need to make sure the "new" session is compatible with the
 356	 * existing "mode" of operation.
 357	 */
 358	if (!sink_ops(csdev)->enable)
 359		return -EINVAL;
 360
 361	ret = coresight_control_assoc_ectdev(csdev, true);
 362	if (ret)
 363		return ret;
 364	ret = sink_ops(csdev)->enable(csdev, mode, data);
 365	if (ret) {
 366		coresight_control_assoc_ectdev(csdev, false);
 367		return ret;
 368	}
 369	csdev->enable = true;
 370
 371	return 0;
 372}
 373
 374static void coresight_disable_sink(struct coresight_device *csdev)
 375{
 376	int ret;
 377
 378	if (!sink_ops(csdev)->disable)
 379		return;
 380
 381	ret = sink_ops(csdev)->disable(csdev);
 382	if (ret)
 383		return;
 384	coresight_control_assoc_ectdev(csdev, false);
 385	csdev->enable = false;
 386}
 387
 388static int coresight_enable_link(struct coresight_device *csdev,
 389				 struct coresight_device *parent,
 390				 struct coresight_device *child)
 391{
 392	int ret = 0;
 393	int link_subtype;
 394	int inport, outport;
 395
 396	if (!parent || !child)
 397		return -EINVAL;
 398
 399	inport = coresight_find_link_inport(csdev, parent);
 400	outport = coresight_find_link_outport(csdev, child);
 401	link_subtype = csdev->subtype.link_subtype;
 402
 403	if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_MERG && inport < 0)
 404		return inport;
 405	if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_SPLIT && outport < 0)
 406		return outport;
 407
 408	if (link_ops(csdev)->enable) {
 409		ret = coresight_control_assoc_ectdev(csdev, true);
 410		if (!ret) {
 411			ret = link_ops(csdev)->enable(csdev, inport, outport);
 412			if (ret)
 413				coresight_control_assoc_ectdev(csdev, false);
 414		}
 415	}
 416
 417	if (!ret)
 418		csdev->enable = true;
 419
 420	return ret;
 421}
 422
 423static void coresight_disable_link(struct coresight_device *csdev,
 424				   struct coresight_device *parent,
 425				   struct coresight_device *child)
 426{
 427	int i, nr_conns;
 428	int link_subtype;
 429	int inport, outport;
 430
 431	if (!parent || !child)
 432		return;
 433
 434	inport = coresight_find_link_inport(csdev, parent);
 435	outport = coresight_find_link_outport(csdev, child);
 436	link_subtype = csdev->subtype.link_subtype;
 437
 438	if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_MERG) {
 439		nr_conns = csdev->pdata->nr_inport;
 440	} else if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_SPLIT) {
 441		nr_conns = csdev->pdata->nr_outport;
 442	} else {
 443		nr_conns = 1;
 444	}
 445
 446	if (link_ops(csdev)->disable) {
 447		link_ops(csdev)->disable(csdev, inport, outport);
 448		coresight_control_assoc_ectdev(csdev, false);
 449	}
 450
 451	for (i = 0; i < nr_conns; i++)
 452		if (atomic_read(&csdev->refcnt[i]) != 0)
 453			return;
 
 
 454
 455	csdev->enable = false;
 
 
 456}
 457
 458static int coresight_enable_source(struct coresight_device *csdev, u32 mode)
 459{
 460	int ret;
 461
 462	if (!coresight_source_is_unique(csdev)) {
 463		dev_warn(&csdev->dev, "traceID %d not unique\n",
 464			 source_ops(csdev)->trace_id(csdev));
 465		return -EINVAL;
 466	}
 467
 468	if (!csdev->enable) {
 469		if (source_ops(csdev)->enable) {
 470			ret = coresight_control_assoc_ectdev(csdev, true);
 471			if (ret)
 472				return ret;
 473			ret = source_ops(csdev)->enable(csdev, NULL, mode);
 474			if (ret) {
 475				coresight_control_assoc_ectdev(csdev, false);
 476				return ret;
 477			}
 478		}
 479		csdev->enable = true;
 480	}
 481
 482	atomic_inc(csdev->refcnt);
 483
 484	return 0;
 485}
 486
 487/**
 488 *  coresight_disable_source - Drop the reference count by 1 and disable
 489 *  the device if there are no users left.
 490 *
 491 *  @csdev: The coresight device to disable
 492 *
 493 *  Returns true if the device has been disabled.
 
 
 
 
 494 */
 495static bool coresight_disable_source(struct coresight_device *csdev)
 496{
 497	if (atomic_dec_return(csdev->refcnt) == 0) {
 498		if (source_ops(csdev)->disable)
 499			source_ops(csdev)->disable(csdev, NULL);
 500		coresight_control_assoc_ectdev(csdev, false);
 501		csdev->enable = false;
 502	}
 503	return !csdev->enable;
 504}
 
 505
 506/*
 507 * coresight_disable_path_from : Disable components in the given path beyond
 508 * @nd in the list. If @nd is NULL, all the components, except the SOURCE are
 509 * disabled.
 510 */
 511static void coresight_disable_path_from(struct list_head *path,
 512					struct coresight_node *nd)
 513{
 514	u32 type;
 515	struct coresight_device *csdev, *parent, *child;
 516
 517	if (!nd)
 518		nd = list_first_entry(path, struct coresight_node, link);
 519
 520	list_for_each_entry_continue(nd, path, link) {
 521		csdev = nd->csdev;
 522		type = csdev->type;
 523
 524		/*
 525		 * ETF devices are tricky... They can be a link or a sink,
 526		 * depending on how they are configured.  If an ETF has been
 527		 * "activated" it will be configured as a sink, otherwise
 528		 * go ahead with the link configuration.
 529		 */
 530		if (type == CORESIGHT_DEV_TYPE_LINKSINK)
 531			type = (csdev == coresight_get_sink(path)) ?
 532						CORESIGHT_DEV_TYPE_SINK :
 533						CORESIGHT_DEV_TYPE_LINK;
 534
 535		switch (type) {
 536		case CORESIGHT_DEV_TYPE_SINK:
 537			coresight_disable_sink(csdev);
 538			break;
 539		case CORESIGHT_DEV_TYPE_SOURCE:
 540			/*
 541			 * We skip the first node in the path assuming that it
 542			 * is the source. So we don't expect a source device in
 543			 * the middle of a path.
 544			 */
 545			WARN_ON(1);
 546			break;
 547		case CORESIGHT_DEV_TYPE_LINK:
 548			parent = list_prev_entry(nd, link)->csdev;
 549			child = list_next_entry(nd, link)->csdev;
 550			coresight_disable_link(csdev, parent, child);
 551			break;
 552		default:
 553			break;
 554		}
 
 
 
 555	}
 556}
 557
 558void coresight_disable_path(struct list_head *path)
 559{
 560	coresight_disable_path_from(path, NULL);
 561}
 562EXPORT_SYMBOL_GPL(coresight_disable_path);
 563
 564int coresight_enable_path(struct list_head *path, u32 mode, void *sink_data)
 
 565{
 
 
 566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 567	int ret = 0;
 568	u32 type;
 569	struct coresight_node *nd;
 570	struct coresight_device *csdev, *parent, *child;
 571
 572	list_for_each_entry_reverse(nd, path, link) {
 573		csdev = nd->csdev;
 574		type = csdev->type;
 575
 
 
 
 
 576		/*
 577		 * ETF devices are tricky... They can be a link or a sink,
 578		 * depending on how they are configured.  If an ETF has been
 579		 * "activated" it will be configured as a sink, otherwise
 580		 * go ahead with the link configuration.
 581		 */
 582		if (type == CORESIGHT_DEV_TYPE_LINKSINK)
 583			type = (csdev == coresight_get_sink(path)) ?
 584						CORESIGHT_DEV_TYPE_SINK :
 585						CORESIGHT_DEV_TYPE_LINK;
 586
 587		switch (type) {
 588		case CORESIGHT_DEV_TYPE_SINK:
 589			ret = coresight_enable_sink(csdev, mode, sink_data);
 590			/*
 591			 * Sink is the first component turned on. If we
 592			 * failed to enable the sink, there are no components
 593			 * that need disabling. Disabling the path here
 594			 * would mean we could disrupt an existing session.
 595			 */
 596			if (ret)
 597				goto out;
 598			break;
 599		case CORESIGHT_DEV_TYPE_SOURCE:
 600			/* sources are enabled from either sysFS or Perf */
 601			break;
 602		case CORESIGHT_DEV_TYPE_LINK:
 603			parent = list_prev_entry(nd, link)->csdev;
 604			child = list_next_entry(nd, link)->csdev;
 605			ret = coresight_enable_link(csdev, parent, child);
 606			if (ret)
 607				goto err;
 608			break;
 609		default:
 610			goto err;
 611		}
 612	}
 613
 614out:
 615	return ret;
 616err:
 617	coresight_disable_path_from(path, nd);
 618	goto out;
 619}
 620
 621struct coresight_device *coresight_get_sink(struct list_head *path)
 622{
 623	struct coresight_device *csdev;
 624
 625	if (!path)
 626		return NULL;
 627
 628	csdev = list_last_entry(path, struct coresight_node, link)->csdev;
 629	if (csdev->type != CORESIGHT_DEV_TYPE_SINK &&
 630	    csdev->type != CORESIGHT_DEV_TYPE_LINKSINK)
 631		return NULL;
 632
 633	return csdev;
 634}
 635
 636static struct coresight_device *
 637coresight_find_enabled_sink(struct coresight_device *csdev)
 638{
 639	int i;
 640	struct coresight_device *sink = NULL;
 641
 642	if ((csdev->type == CORESIGHT_DEV_TYPE_SINK ||
 643	     csdev->type == CORESIGHT_DEV_TYPE_LINKSINK) &&
 644	     csdev->activated)
 645		return csdev;
 646
 647	/*
 648	 * Recursively explore each port found on this element.
 
 649	 */
 650	for (i = 0; i < csdev->pdata->nr_outport; i++) {
 651		struct coresight_device *child_dev;
 652
 653		child_dev = csdev->pdata->conns[i].child_dev;
 654		if (child_dev)
 655			sink = coresight_find_enabled_sink(child_dev);
 656		if (sink)
 657			return sink;
 658	}
 659
 660	return NULL;
 661}
 662
 663/**
 664 * coresight_get_enabled_sink - returns the first enabled sink using
 665 * connection based search starting from the source reference
 666 *
 667 * @source: Coresight source device reference
 668 */
 669struct coresight_device *
 670coresight_get_enabled_sink(struct coresight_device *source)
 671{
 672	if (!source)
 673		return NULL;
 674
 675	return coresight_find_enabled_sink(source);
 676}
 677
 678static int coresight_sink_by_id(struct device *dev, const void *data)
 679{
 680	struct coresight_device *csdev = to_coresight_device(dev);
 681	unsigned long hash;
 682
 683	if (csdev->type == CORESIGHT_DEV_TYPE_SINK ||
 684	     csdev->type == CORESIGHT_DEV_TYPE_LINKSINK) {
 685
 686		if (!csdev->ea)
 687			return 0;
 688		/*
 689		 * See function etm_perf_add_symlink_sink() to know where
 690		 * this comes from.
 691		 */
 692		hash = (unsigned long)csdev->ea->var;
 693
 694		if ((u32)hash == *(u32 *)data)
 695			return 1;
 696	}
 697
 698	return 0;
 699}
 700
 701/**
 702 * coresight_get_sink_by_id - returns the sink that matches the id
 703 * @id: Id of the sink to match
 704 *
 705 * The name of a sink is unique, whether it is found on the AMBA bus or
 706 * otherwise.  As such the hash of that name can easily be used to identify
 707 * a sink.
 708 */
 709struct coresight_device *coresight_get_sink_by_id(u32 id)
 710{
 711	struct device *dev = NULL;
 712
 713	dev = bus_find_device(&coresight_bustype, NULL, &id,
 714			      coresight_sink_by_id);
 715
 716	return dev ? to_coresight_device(dev) : NULL;
 717}
 718
 719/**
 720 * coresight_get_ref- Helper function to increase reference count to module
 721 * and device.
 722 *
 723 * @csdev: The coresight device to get a reference on.
 724 *
 725 * Return true in successful case and power up the device.
 726 * Return false when failed to get reference of module.
 727 */
 728static inline bool coresight_get_ref(struct coresight_device *csdev)
 729{
 730	struct device *dev = csdev->dev.parent;
 731
 732	/* Make sure the driver can't be removed */
 733	if (!try_module_get(dev->driver->owner))
 734		return false;
 735	/* Make sure the device can't go away */
 736	get_device(dev);
 737	pm_runtime_get_sync(dev);
 738	return true;
 739}
 740
 741/**
 742 * coresight_put_ref- Helper function to decrease reference count to module
 743 * and device. Power off the device.
 744 *
 745 * @csdev: The coresight device to decrement a reference from.
 746 */
 747static inline void coresight_put_ref(struct coresight_device *csdev)
 748{
 749	struct device *dev = csdev->dev.parent;
 750
 751	pm_runtime_put(dev);
 752	put_device(dev);
 753	module_put(dev->driver->owner);
 754}
 755
 756/*
 757 * coresight_grab_device - Power up this device and any of the helper
 758 * devices connected to it for trace operation. Since the helper devices
 759 * don't appear on the trace path, they should be handled along with the
 760 * master device.
 761 */
 762static int coresight_grab_device(struct coresight_device *csdev)
 763{
 764	int i;
 765
 766	for (i = 0; i < csdev->pdata->nr_outport; i++) {
 767		struct coresight_device *child;
 768
 769		child  = csdev->pdata->conns[i].child_dev;
 770		if (child && child->type == CORESIGHT_DEV_TYPE_HELPER)
 771			if (!coresight_get_ref(child))
 772				goto err;
 773	}
 774	if (coresight_get_ref(csdev))
 775		return 0;
 776err:
 777	for (i--; i >= 0; i--) {
 778		struct coresight_device *child;
 779
 780		child  = csdev->pdata->conns[i].child_dev;
 781		if (child && child->type == CORESIGHT_DEV_TYPE_HELPER)
 782			coresight_put_ref(child);
 783	}
 784	return -ENODEV;
 785}
 786
 787/*
 788 * coresight_drop_device - Release this device and any of the helper
 789 * devices connected to it.
 790 */
 791static void coresight_drop_device(struct coresight_device *csdev)
 792{
 793	int i;
 794
 795	coresight_put_ref(csdev);
 796	for (i = 0; i < csdev->pdata->nr_outport; i++) {
 797		struct coresight_device *child;
 798
 799		child  = csdev->pdata->conns[i].child_dev;
 800		if (child && child->type == CORESIGHT_DEV_TYPE_HELPER)
 801			coresight_put_ref(child);
 802	}
 803}
 804
 805/**
 806 * _coresight_build_path - recursively build a path from a @csdev to a sink.
 807 * @csdev:	The device to start from.
 808 * @sink:	The final sink we want in this path.
 809 * @path:	The list to add devices to.
 810 *
 811 * The tree of Coresight device is traversed until an activated sink is
 812 * found.  From there the sink is added to the list along with all the
 813 * devices that led to that point - the end result is a list from source
 814 * to sink. In that list the source is the first device and the sink the
 815 * last one.
 816 */
 817static int _coresight_build_path(struct coresight_device *csdev,
 818				 struct coresight_device *sink,
 819				 struct list_head *path)
 820{
 821	int i, ret;
 822	bool found = false;
 823	struct coresight_node *node;
 824
 825	/* An activated sink has been found.  Enqueue the element */
 826	if (csdev == sink)
 827		goto out;
 828
 829	if (coresight_is_percpu_source(csdev) && coresight_is_percpu_sink(sink) &&
 830	    sink == per_cpu(csdev_sink, source_ops(csdev)->cpu_id(csdev))) {
 831		if (_coresight_build_path(sink, sink, path) == 0) {
 832			found = true;
 833			goto out;
 834		}
 835	}
 836
 837	/* Not a sink - recursively explore each port found on this element */
 838	for (i = 0; i < csdev->pdata->nr_outport; i++) {
 839		struct coresight_device *child_dev;
 840
 841		child_dev = csdev->pdata->conns[i].child_dev;
 842		if (child_dev &&
 843		    _coresight_build_path(child_dev, sink, path) == 0) {
 844			found = true;
 845			break;
 846		}
 847	}
 848
 849	if (!found)
 850		return -ENODEV;
 851
 852out:
 853	/*
 854	 * A path from this element to a sink has been found.  The elements
 855	 * leading to the sink are already enqueued, all that is left to do
 856	 * is tell the PM runtime core we need this element and add a node
 857	 * for it.
 858	 */
 859	ret = coresight_grab_device(csdev);
 860	if (ret)
 861		return ret;
 862
 863	node = kzalloc(sizeof(struct coresight_node), GFP_KERNEL);
 864	if (!node)
 865		return -ENOMEM;
 866
 867	node->csdev = csdev;
 868	list_add(&node->link, path);
 869
 870	return 0;
 871}
 872
 873struct list_head *coresight_build_path(struct coresight_device *source,
 874				       struct coresight_device *sink)
 875{
 876	struct list_head *path;
 877	int rc;
 878
 879	if (!sink)
 880		return ERR_PTR(-EINVAL);
 881
 882	path = kzalloc(sizeof(struct list_head), GFP_KERNEL);
 883	if (!path)
 884		return ERR_PTR(-ENOMEM);
 885
 886	INIT_LIST_HEAD(path);
 887
 888	rc = _coresight_build_path(source, sink, path);
 889	if (rc) {
 890		kfree(path);
 891		return ERR_PTR(rc);
 892	}
 893
 894	return path;
 895}
 896
 897/**
 898 * coresight_release_path - release a previously built path.
 899 * @path:	the path to release.
 900 *
 901 * Go through all the elements of a path and 1) removed it from the list and
 902 * 2) free the memory allocated for each node.
 903 */
 904void coresight_release_path(struct list_head *path)
 905{
 906	struct coresight_device *csdev;
 907	struct coresight_node *nd, *next;
 908
 909	list_for_each_entry_safe(nd, next, path, link) {
 910		csdev = nd->csdev;
 911
 912		coresight_drop_device(csdev);
 913		list_del(&nd->link);
 914		kfree(nd);
 915	}
 916
 917	kfree(path);
 918}
 919
 920/* return true if the device is a suitable type for a default sink */
 921static inline bool coresight_is_def_sink_type(struct coresight_device *csdev)
 922{
 923	/* sink & correct subtype */
 924	if (((csdev->type == CORESIGHT_DEV_TYPE_SINK) ||
 925	     (csdev->type == CORESIGHT_DEV_TYPE_LINKSINK)) &&
 926	    (csdev->subtype.sink_subtype >= CORESIGHT_DEV_SUBTYPE_SINK_BUFFER))
 927		return true;
 928	return false;
 929}
 930
 931/**
 932 * coresight_select_best_sink - return the best sink for use as default from
 933 * the two provided.
 934 *
 935 * @sink:	current best sink.
 936 * @depth:      search depth where current sink was found.
 937 * @new_sink:	new sink for comparison with current sink.
 938 * @new_depth:  search depth where new sink was found.
 939 *
 940 * Sinks prioritised according to coresight_dev_subtype_sink, with only
 941 * subtypes CORESIGHT_DEV_SUBTYPE_SINK_BUFFER or higher being used.
 942 *
 943 * Where two sinks of equal priority are found, the sink closest to the
 944 * source is used (smallest search depth).
 945 *
 946 * return @new_sink & update @depth if better than @sink, else return @sink.
 947 */
 948static struct coresight_device *
 949coresight_select_best_sink(struct coresight_device *sink, int *depth,
 950			   struct coresight_device *new_sink, int new_depth)
 951{
 952	bool update = false;
 953
 954	if (!sink) {
 955		/* first found at this level */
 956		update = true;
 957	} else if (new_sink->subtype.sink_subtype >
 958		   sink->subtype.sink_subtype) {
 959		/* found better sink */
 960		update = true;
 961	} else if ((new_sink->subtype.sink_subtype ==
 962		    sink->subtype.sink_subtype) &&
 963		   (*depth > new_depth)) {
 964		/* found same but closer sink */
 965		update = true;
 966	}
 967
 968	if (update)
 969		*depth = new_depth;
 970	return update ? new_sink : sink;
 971}
 972
 973/**
 974 * coresight_find_sink - recursive function to walk trace connections from
 975 * source to find a suitable default sink.
 976 *
 977 * @csdev: source / current device to check.
 978 * @depth: [in] search depth of calling dev, [out] depth of found sink.
 979 *
 980 * This will walk the connection path from a source (ETM) till a suitable
 981 * sink is encountered and return that sink to the original caller.
 982 *
 983 * If current device is a plain sink return that & depth, otherwise recursively
 984 * call child connections looking for a sink. Select best possible using
 985 * coresight_select_best_sink.
 986 *
 987 * return best sink found, or NULL if not found at this node or child nodes.
 988 */
 989static struct coresight_device *
 990coresight_find_sink(struct coresight_device *csdev, int *depth)
 991{
 992	int i, curr_depth = *depth + 1, found_depth = 0;
 993	struct coresight_device *found_sink = NULL;
 994
 995	if (coresight_is_def_sink_type(csdev)) {
 996		found_depth = curr_depth;
 997		found_sink = csdev;
 998		if (csdev->type == CORESIGHT_DEV_TYPE_SINK)
 999			goto return_def_sink;
1000		/* look past LINKSINK for something better */
1001	}
1002
1003	/*
1004	 * Not a sink we want - or possible child sink may be better.
1005	 * recursively explore each port found on this element.
1006	 */
1007	for (i = 0; i < csdev->pdata->nr_outport; i++) {
1008		struct coresight_device *child_dev, *sink = NULL;
1009		int child_depth = curr_depth;
1010
1011		child_dev = csdev->pdata->conns[i].child_dev;
1012		if (child_dev)
1013			sink = coresight_find_sink(child_dev, &child_depth);
1014
1015		if (sink)
1016			found_sink = coresight_select_best_sink(found_sink,
1017								&found_depth,
1018								sink,
1019								child_depth);
1020	}
1021
1022return_def_sink:
1023	/* return found sink and depth */
1024	if (found_sink)
1025		*depth = found_depth;
1026	return found_sink;
1027}
1028
1029/**
1030 * coresight_find_default_sink: Find a sink suitable for use as a
1031 * default sink.
1032 *
1033 * @csdev: starting source to find a connected sink.
1034 *
1035 * Walks connections graph looking for a suitable sink to enable for the
1036 * supplied source. Uses CoreSight device subtypes and distance from source
1037 * to select the best sink.
1038 *
1039 * If a sink is found, then the default sink for this device is set and
1040 * will be automatically used in future.
1041 *
1042 * Used in cases where the CoreSight user (perf / sysfs) has not selected a
1043 * sink.
1044 */
1045struct coresight_device *
1046coresight_find_default_sink(struct coresight_device *csdev)
1047{
1048	int depth = 0;
1049
1050	/* look for a default sink if we have not found for this device */
1051	if (!csdev->def_sink) {
1052		if (coresight_is_percpu_source(csdev))
1053			csdev->def_sink = per_cpu(csdev_sink, source_ops(csdev)->cpu_id(csdev));
1054		if (!csdev->def_sink)
1055			csdev->def_sink = coresight_find_sink(csdev, &depth);
1056	}
1057	return csdev->def_sink;
1058}
1059
1060static int coresight_remove_sink_ref(struct device *dev, void *data)
1061{
1062	struct coresight_device *sink = data;
1063	struct coresight_device *source = to_coresight_device(dev);
1064
1065	if (source->def_sink == sink)
1066		source->def_sink = NULL;
1067	return 0;
1068}
1069
1070/**
1071 * coresight_clear_default_sink: Remove all default sink references to the
1072 * supplied sink.
1073 *
1074 * If supplied device is a sink, then check all the bus devices and clear
1075 * out all the references to this sink from the coresight_device def_sink
1076 * parameter.
1077 *
1078 * @csdev: coresight sink - remove references to this from all sources.
1079 */
1080static void coresight_clear_default_sink(struct coresight_device *csdev)
1081{
1082	if ((csdev->type == CORESIGHT_DEV_TYPE_SINK) ||
1083	    (csdev->type == CORESIGHT_DEV_TYPE_LINKSINK)) {
1084		bus_for_each_dev(&coresight_bustype, NULL, csdev,
1085				 coresight_remove_sink_ref);
1086	}
1087}
1088
1089/** coresight_validate_source - make sure a source has the right credentials
1090 *  @csdev:	the device structure for a source.
1091 *  @function:	the function this was called from.
1092 *
1093 * Assumes the coresight_mutex is held.
1094 */
1095static int coresight_validate_source(struct coresight_device *csdev,
1096				     const char *function)
1097{
1098	u32 type, subtype;
1099
1100	type = csdev->type;
1101	subtype = csdev->subtype.source_subtype;
1102
1103	if (type != CORESIGHT_DEV_TYPE_SOURCE) {
1104		dev_err(&csdev->dev, "wrong device type in %s\n", function);
1105		return -EINVAL;
1106	}
1107
1108	if (subtype != CORESIGHT_DEV_SUBTYPE_SOURCE_PROC &&
1109	    subtype != CORESIGHT_DEV_SUBTYPE_SOURCE_SOFTWARE) {
1110		dev_err(&csdev->dev, "wrong device subtype in %s\n", function);
1111		return -EINVAL;
1112	}
1113
1114	return 0;
1115}
1116
1117int coresight_enable(struct coresight_device *csdev)
1118{
1119	int cpu, ret = 0;
1120	struct coresight_device *sink;
1121	struct list_head *path;
1122	enum coresight_dev_subtype_source subtype;
1123
1124	subtype = csdev->subtype.source_subtype;
1125
1126	mutex_lock(&coresight_mutex);
1127
1128	ret = coresight_validate_source(csdev, __func__);
1129	if (ret)
1130		goto out;
1131
1132	if (csdev->enable) {
1133		/*
1134		 * There could be multiple applications driving the software
1135		 * source. So keep the refcount for each such user when the
1136		 * source is already enabled.
1137		 */
1138		if (subtype == CORESIGHT_DEV_SUBTYPE_SOURCE_SOFTWARE)
1139			atomic_inc(csdev->refcnt);
1140		goto out;
1141	}
1142
1143	sink = coresight_get_enabled_sink(csdev);
1144	if (!sink) {
1145		ret = -EINVAL;
1146		goto out;
1147	}
1148
1149	path = coresight_build_path(csdev, sink);
1150	if (IS_ERR(path)) {
1151		pr_err("building path(s) failed\n");
1152		ret = PTR_ERR(path);
1153		goto out;
1154	}
1155
1156	ret = coresight_enable_path(path, CS_MODE_SYSFS, NULL);
1157	if (ret)
1158		goto err_path;
1159
1160	ret = coresight_enable_source(csdev, CS_MODE_SYSFS);
1161	if (ret)
1162		goto err_source;
1163
1164	switch (subtype) {
1165	case CORESIGHT_DEV_SUBTYPE_SOURCE_PROC:
1166		/*
1167		 * When working from sysFS it is important to keep track
1168		 * of the paths that were created so that they can be
1169		 * undone in 'coresight_disable()'.  Since there can only
1170		 * be a single session per tracer (when working from sysFS)
1171		 * a per-cpu variable will do just fine.
1172		 */
1173		cpu = source_ops(csdev)->cpu_id(csdev);
1174		per_cpu(tracer_path, cpu) = path;
1175		break;
1176	case CORESIGHT_DEV_SUBTYPE_SOURCE_SOFTWARE:
1177		stm_path = path;
1178		break;
1179	default:
1180		/* We can't be here */
1181		break;
1182	}
1183
1184out:
1185	mutex_unlock(&coresight_mutex);
1186	return ret;
1187
1188err_source:
1189	coresight_disable_path(path);
1190
1191err_path:
1192	coresight_release_path(path);
1193	goto out;
1194}
1195EXPORT_SYMBOL_GPL(coresight_enable);
1196
1197void coresight_disable(struct coresight_device *csdev)
1198{
1199	int cpu, ret;
1200	struct list_head *path = NULL;
1201
1202	mutex_lock(&coresight_mutex);
1203
1204	ret = coresight_validate_source(csdev, __func__);
1205	if (ret)
1206		goto out;
1207
1208	if (!csdev->enable || !coresight_disable_source(csdev))
1209		goto out;
1210
1211	switch (csdev->subtype.source_subtype) {
1212	case CORESIGHT_DEV_SUBTYPE_SOURCE_PROC:
1213		cpu = source_ops(csdev)->cpu_id(csdev);
1214		path = per_cpu(tracer_path, cpu);
1215		per_cpu(tracer_path, cpu) = NULL;
1216		break;
1217	case CORESIGHT_DEV_SUBTYPE_SOURCE_SOFTWARE:
1218		path = stm_path;
1219		stm_path = NULL;
1220		break;
1221	default:
1222		/* We can't be here */
1223		break;
1224	}
1225
1226	coresight_disable_path(path);
1227	coresight_release_path(path);
1228
1229out:
1230	mutex_unlock(&coresight_mutex);
1231}
1232EXPORT_SYMBOL_GPL(coresight_disable);
1233
1234static ssize_t enable_sink_show(struct device *dev,
1235				struct device_attribute *attr, char *buf)
1236{
1237	struct coresight_device *csdev = to_coresight_device(dev);
1238
1239	return scnprintf(buf, PAGE_SIZE, "%u\n", csdev->activated);
1240}
1241
1242static ssize_t enable_sink_store(struct device *dev,
1243				 struct device_attribute *attr,
1244				 const char *buf, size_t size)
1245{
1246	int ret;
1247	unsigned long val;
1248	struct coresight_device *csdev = to_coresight_device(dev);
1249
1250	ret = kstrtoul(buf, 10, &val);
1251	if (ret)
1252		return ret;
1253
1254	if (val)
1255		csdev->activated = true;
1256	else
1257		csdev->activated = false;
1258
1259	return size;
1260
1261}
1262static DEVICE_ATTR_RW(enable_sink);
1263
1264static ssize_t enable_source_show(struct device *dev,
1265				  struct device_attribute *attr, char *buf)
1266{
1267	struct coresight_device *csdev = to_coresight_device(dev);
1268
1269	return scnprintf(buf, PAGE_SIZE, "%u\n", csdev->enable);
1270}
1271
1272static ssize_t enable_source_store(struct device *dev,
1273				   struct device_attribute *attr,
1274				   const char *buf, size_t size)
1275{
1276	int ret = 0;
1277	unsigned long val;
1278	struct coresight_device *csdev = to_coresight_device(dev);
1279
1280	ret = kstrtoul(buf, 10, &val);
1281	if (ret)
1282		return ret;
1283
1284	if (val) {
1285		ret = coresight_enable(csdev);
1286		if (ret)
1287			return ret;
1288	} else {
1289		coresight_disable(csdev);
1290	}
1291
1292	return size;
1293}
1294static DEVICE_ATTR_RW(enable_source);
1295
1296static struct attribute *coresight_sink_attrs[] = {
1297	&dev_attr_enable_sink.attr,
1298	NULL,
1299};
1300ATTRIBUTE_GROUPS(coresight_sink);
1301
1302static struct attribute *coresight_source_attrs[] = {
1303	&dev_attr_enable_source.attr,
1304	NULL,
1305};
1306ATTRIBUTE_GROUPS(coresight_source);
1307
1308static struct device_type coresight_dev_type[] = {
1309	{
1310		.name = "sink",
1311		.groups = coresight_sink_groups,
1312	},
1313	{
1314		.name = "link",
1315	},
1316	{
1317		.name = "linksink",
1318		.groups = coresight_sink_groups,
1319	},
1320	{
1321		.name = "source",
1322		.groups = coresight_source_groups,
1323	},
1324	{
1325		.name = "helper",
1326	},
1327	{
1328		.name = "ect",
1329	},
1330};
1331
1332static void coresight_device_release(struct device *dev)
1333{
1334	struct coresight_device *csdev = to_coresight_device(dev);
1335
1336	fwnode_handle_put(csdev->dev.fwnode);
1337	kfree(csdev->refcnt);
1338	kfree(csdev);
1339}
1340
1341static int coresight_orphan_match(struct device *dev, void *data)
1342{
1343	int i, ret = 0;
1344	bool still_orphan = false;
1345	struct coresight_device *csdev, *i_csdev;
 
1346	struct coresight_connection *conn;
1347
1348	csdev = data;
1349	i_csdev = to_coresight_device(dev);
1350
1351	/* No need to check oneself */
1352	if (csdev == i_csdev)
1353		return 0;
1354
1355	/* Move on to another component if no connection is orphan */
1356	if (!i_csdev->orphan)
1357		return 0;
1358	/*
1359	 * Circle throuch all the connection of that component.  If we find
1360	 * an orphan connection whose name matches @csdev, link it.
1361	 */
1362	for (i = 0; i < i_csdev->pdata->nr_outport; i++) {
1363		conn = &i_csdev->pdata->conns[i];
1364
1365		/* Skip the port if FW doesn't describe it */
1366		if (!conn->child_fwnode)
1367			continue;
1368		/* We have found at least one orphan connection */
1369		if (conn->child_dev == NULL) {
1370			/* Does it match this newly added device? */
1371			if (conn->child_fwnode == csdev->dev.fwnode) {
1372				ret = coresight_make_links(i_csdev,
1373							   conn, csdev);
1374				if (ret)
1375					return ret;
1376			} else {
1377				/* This component still has an orphan */
1378				still_orphan = true;
1379			}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1380		}
1381	}
1382
1383	i_csdev->orphan = still_orphan;
1384
1385	/*
1386	 * Returning '0' in case we didn't encounter any error,
1387	 * ensures that all known component on the bus will be checked.
1388	 */
1389	return 0;
1390}
1391
1392static int coresight_fixup_orphan_conns(struct coresight_device *csdev)
1393{
1394	return bus_for_each_dev(&coresight_bustype, NULL,
1395			 csdev, coresight_orphan_match);
1396}
1397
1398
1399static int coresight_fixup_device_conns(struct coresight_device *csdev)
1400{
1401	int i, ret = 0;
1402
1403	for (i = 0; i < csdev->pdata->nr_outport; i++) {
1404		struct coresight_connection *conn = &csdev->pdata->conns[i];
1405
1406		if (!conn->child_fwnode)
1407			continue;
1408		conn->child_dev =
1409			coresight_find_csdev_by_fwnode(conn->child_fwnode);
1410		if (conn->child_dev && conn->child_dev->has_conns_grp) {
1411			ret = coresight_make_links(csdev, conn,
1412						   conn->child_dev);
1413			if (ret)
1414				break;
1415		} else {
1416			csdev->orphan = true;
1417		}
1418	}
1419
1420	return ret;
1421}
1422
1423static int coresight_remove_match(struct device *dev, void *data)
1424{
1425	int i;
1426	struct coresight_device *csdev, *iterator;
1427	struct coresight_connection *conn;
1428
1429	csdev = data;
1430	iterator = to_coresight_device(dev);
1431
1432	/* No need to check oneself */
1433	if (csdev == iterator)
1434		return 0;
1435
1436	/*
1437	 * Circle throuch all the connection of that component.  If we find
1438	 * a connection whose name matches @csdev, remove it.
1439	 */
1440	for (i = 0; i < iterator->pdata->nr_outport; i++) {
1441		conn = &iterator->pdata->conns[i];
1442
1443		if (conn->child_dev == NULL || conn->child_fwnode == NULL)
1444			continue;
1445
1446		if (csdev->dev.fwnode == conn->child_fwnode) {
1447			iterator->orphan = true;
1448			coresight_remove_links(iterator, conn);
1449			/*
1450			 * Drop the reference to the handle for the remote
1451			 * device acquired in parsing the connections from
1452			 * platform data.
1453			 */
1454			fwnode_handle_put(conn->child_fwnode);
1455			conn->child_fwnode = NULL;
1456			/* No need to continue */
1457			break;
1458		}
1459	}
1460
1461	/*
1462	 * Returning '0' ensures that all known component on the
1463	 * bus will be checked.
 
1464	 */
1465	return 0;
1466}
 
 
 
1467
1468/*
1469 * coresight_remove_conns - Remove references to this given devices
1470 * from the connections of other devices.
1471 */
1472static void coresight_remove_conns(struct coresight_device *csdev)
1473{
1474	/*
1475	 * Another device will point to this device only if there is
1476	 * an output port connected to this one. i.e, if the device
1477	 * doesn't have at least one input port, there is no point
1478	 * in searching all the devices.
1479	 */
1480	if (csdev->pdata->nr_inport)
1481		bus_for_each_dev(&coresight_bustype, NULL,
1482				 csdev, coresight_remove_match);
1483}
1484
1485/**
1486 * coresight_timeout - loop until a bit has changed to a specific register
1487 *			state.
1488 * @csa: coresight device access for the device
1489 * @offset: Offset of the register from the base of the device.
1490 * @position: the position of the bit of interest.
1491 * @value: the value the bit should have.
1492 *
1493 * Return: 0 as soon as the bit has taken the desired state or -EAGAIN if
1494 * TIMEOUT_US has elapsed, which ever happens first.
1495 */
1496int coresight_timeout(struct csdev_access *csa, u32 offset,
1497		      int position, int value)
1498{
1499	int i;
1500	u32 val;
1501
1502	for (i = TIMEOUT_US; i > 0; i--) {
1503		val = csdev_access_read32(csa, offset);
1504		/* waiting on the bit to go from 0 to 1 */
1505		if (value) {
1506			if (val & BIT(position))
1507				return 0;
1508		/* waiting on the bit to go from 1 to 0 */
1509		} else {
1510			if (!(val & BIT(position)))
1511				return 0;
1512		}
1513
1514		/*
1515		 * Delay is arbitrary - the specification doesn't say how long
1516		 * we are expected to wait.  Extra check required to make sure
1517		 * we don't wait needlessly on the last iteration.
1518		 */
1519		if (i - 1)
1520			udelay(1);
1521	}
1522
1523	return -EAGAIN;
1524}
1525EXPORT_SYMBOL_GPL(coresight_timeout);
1526
1527u32 coresight_relaxed_read32(struct coresight_device *csdev, u32 offset)
1528{
1529	return csdev_access_relaxed_read32(&csdev->access, offset);
1530}
1531
1532u32 coresight_read32(struct coresight_device *csdev, u32 offset)
1533{
1534	return csdev_access_read32(&csdev->access, offset);
1535}
1536
1537void coresight_relaxed_write32(struct coresight_device *csdev,
1538			       u32 val, u32 offset)
1539{
1540	csdev_access_relaxed_write32(&csdev->access, val, offset);
1541}
1542
1543void coresight_write32(struct coresight_device *csdev, u32 val, u32 offset)
1544{
1545	csdev_access_write32(&csdev->access, val, offset);
1546}
1547
1548u64 coresight_relaxed_read64(struct coresight_device *csdev, u32 offset)
1549{
1550	return csdev_access_relaxed_read64(&csdev->access, offset);
1551}
1552
1553u64 coresight_read64(struct coresight_device *csdev, u32 offset)
1554{
1555	return csdev_access_read64(&csdev->access, offset);
1556}
1557
1558void coresight_relaxed_write64(struct coresight_device *csdev,
1559			       u64 val, u32 offset)
1560{
1561	csdev_access_relaxed_write64(&csdev->access, val, offset);
1562}
1563
1564void coresight_write64(struct coresight_device *csdev, u64 val, u32 offset)
1565{
1566	csdev_access_write64(&csdev->access, val, offset);
1567}
1568
1569/*
1570 * coresight_release_platform_data: Release references to the devices connected
1571 * to the output port of this device.
1572 */
1573void coresight_release_platform_data(struct coresight_device *csdev,
 
1574				     struct coresight_platform_data *pdata)
1575{
1576	int i;
1577	struct coresight_connection *conns = pdata->conns;
1578
1579	for (i = 0; i < pdata->nr_outport; i++) {
1580		/* If we have made the links, remove them now */
1581		if (csdev && conns[i].child_dev)
1582			coresight_remove_links(csdev, &conns[i]);
1583		/*
1584		 * Drop the refcount and clear the handle as this device
1585		 * is going away
1586		 */
1587		if (conns[i].child_fwnode) {
1588			fwnode_handle_put(conns[i].child_fwnode);
1589			pdata->conns[i].child_fwnode = NULL;
1590		}
1591	}
 
 
1592	if (csdev)
1593		coresight_remove_conns_sysfs_group(csdev);
1594}
1595
1596struct coresight_device *coresight_register(struct coresight_desc *desc)
1597{
1598	int ret;
1599	int link_subtype;
1600	int nr_refcnts = 1;
1601	atomic_t *refcnts = NULL;
1602	struct coresight_device *csdev;
1603	bool registered = false;
1604
1605	csdev = kzalloc(sizeof(*csdev), GFP_KERNEL);
1606	if (!csdev) {
1607		ret = -ENOMEM;
1608		goto err_out;
1609	}
1610
1611	if (desc->type == CORESIGHT_DEV_TYPE_LINK ||
1612	    desc->type == CORESIGHT_DEV_TYPE_LINKSINK) {
1613		link_subtype = desc->subtype.link_subtype;
1614
1615		if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_MERG)
1616			nr_refcnts = desc->pdata->nr_inport;
1617		else if (link_subtype == CORESIGHT_DEV_SUBTYPE_LINK_SPLIT)
1618			nr_refcnts = desc->pdata->nr_outport;
1619	}
1620
1621	refcnts = kcalloc(nr_refcnts, sizeof(*refcnts), GFP_KERNEL);
1622	if (!refcnts) {
1623		ret = -ENOMEM;
1624		kfree(csdev);
1625		goto err_out;
1626	}
1627
1628	csdev->refcnt = refcnts;
1629
1630	csdev->pdata = desc->pdata;
1631
1632	csdev->type = desc->type;
1633	csdev->subtype = desc->subtype;
1634	csdev->ops = desc->ops;
1635	csdev->access = desc->access;
1636	csdev->orphan = false;
1637
1638	csdev->dev.type = &coresight_dev_type[desc->type];
1639	csdev->dev.groups = desc->groups;
1640	csdev->dev.parent = desc->dev;
1641	csdev->dev.release = coresight_device_release;
1642	csdev->dev.bus = &coresight_bustype;
1643	/*
1644	 * Hold the reference to our parent device. This will be
1645	 * dropped only in coresight_device_release().
1646	 */
1647	csdev->dev.fwnode = fwnode_handle_get(dev_fwnode(desc->dev));
1648	dev_set_name(&csdev->dev, "%s", desc->name);
1649
 
 
 
 
 
 
 
 
 
 
1650	/*
1651	 * Make sure the device registration and the connection fixup
1652	 * are synchronised, so that we don't see uninitialised devices
1653	 * on the coresight bus while trying to resolve the connections.
1654	 */
1655	mutex_lock(&coresight_mutex);
1656
1657	ret = device_register(&csdev->dev);
1658	if (ret) {
1659		put_device(&csdev->dev);
1660		/*
1661		 * All resources are free'd explicitly via
1662		 * coresight_device_release(), triggered from put_device().
1663		 */
1664		goto out_unlock;
1665	}
1666
1667	if (csdev->type == CORESIGHT_DEV_TYPE_SINK ||
1668	    csdev->type == CORESIGHT_DEV_TYPE_LINKSINK) {
1669		ret = etm_perf_add_symlink_sink(csdev);
1670
1671		if (ret) {
1672			device_unregister(&csdev->dev);
1673			/*
1674			 * As with the above, all resources are free'd
1675			 * explicitly via coresight_device_release() triggered
1676			 * from put_device(), which is in turn called from
1677			 * function device_unregister().
1678			 */
1679			goto out_unlock;
1680		}
1681	}
1682	/* Device is now registered */
1683	registered = true;
1684
1685	ret = coresight_create_conns_sysfs_group(csdev);
1686	if (!ret)
1687		ret = coresight_fixup_device_conns(csdev);
1688	if (!ret)
1689		ret = coresight_fixup_orphan_conns(csdev);
1690
1691out_unlock:
1692	mutex_unlock(&coresight_mutex);
1693	/* Success */
1694	if (!ret) {
1695		if (cti_assoc_ops && cti_assoc_ops->add)
1696			cti_assoc_ops->add(csdev);
1697		return csdev;
1698	}
1699
1700	/* Unregister the device if needed */
1701	if (registered) {
1702		coresight_unregister(csdev);
1703		return ERR_PTR(ret);
1704	}
1705
1706err_out:
1707	/* Cleanup the connection information */
1708	coresight_release_platform_data(NULL, desc->pdata);
1709	return ERR_PTR(ret);
1710}
1711EXPORT_SYMBOL_GPL(coresight_register);
1712
1713void coresight_unregister(struct coresight_device *csdev)
1714{
1715	etm_perf_del_symlink_sink(csdev);
1716	/* Remove references of that device in the topology */
1717	if (cti_assoc_ops && cti_assoc_ops->remove)
1718		cti_assoc_ops->remove(csdev);
1719	coresight_remove_conns(csdev);
1720	coresight_clear_default_sink(csdev);
1721	coresight_release_platform_data(csdev, csdev->pdata);
1722	device_unregister(&csdev->dev);
1723}
1724EXPORT_SYMBOL_GPL(coresight_unregister);
1725
1726
1727/*
1728 * coresight_search_device_idx - Search the fwnode handle of a device
1729 * in the given dev_idx list. Must be called with the coresight_mutex held.
1730 *
1731 * Returns the index of the entry, when found. Otherwise, -ENOENT.
1732 */
1733static inline int coresight_search_device_idx(struct coresight_dev_list *dict,
1734					      struct fwnode_handle *fwnode)
1735{
1736	int i;
1737
1738	for (i = 0; i < dict->nr_idx; i++)
1739		if (dict->fwnode_list[i] == fwnode)
1740			return i;
1741	return -ENOENT;
1742}
1743
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1744bool coresight_loses_context_with_cpu(struct device *dev)
1745{
1746	return fwnode_property_present(dev_fwnode(dev),
1747				       "arm,coresight-loses-context-with-cpu");
1748}
1749EXPORT_SYMBOL_GPL(coresight_loses_context_with_cpu);
1750
1751/*
1752 * coresight_alloc_device_name - Get an index for a given device in the
1753 * device index list specific to a driver. An index is allocated for a
1754 * device and is tracked with the fwnode_handle to prevent allocating
1755 * duplicate indices for the same device (e.g, if we defer probing of
1756 * a device due to dependencies), in case the index is requested again.
1757 */
1758char *coresight_alloc_device_name(struct coresight_dev_list *dict,
1759				  struct device *dev)
1760{
1761	int idx;
1762	char *name = NULL;
1763	struct fwnode_handle **list;
1764
1765	mutex_lock(&coresight_mutex);
1766
1767	idx = coresight_search_device_idx(dict, dev_fwnode(dev));
1768	if (idx < 0) {
1769		/* Make space for the new entry */
1770		idx = dict->nr_idx;
1771		list = krealloc_array(dict->fwnode_list,
1772				      idx + 1, sizeof(*dict->fwnode_list),
1773				      GFP_KERNEL);
1774		if (ZERO_OR_NULL_PTR(list)) {
1775			idx = -ENOMEM;
1776			goto done;
1777		}
1778
1779		list[idx] = dev_fwnode(dev);
1780		dict->fwnode_list = list;
1781		dict->nr_idx = idx + 1;
1782	}
1783
1784	name = devm_kasprintf(dev, GFP_KERNEL, "%s%d", dict->pfx, idx);
1785done:
1786	mutex_unlock(&coresight_mutex);
1787	return name;
1788}
1789EXPORT_SYMBOL_GPL(coresight_alloc_device_name);
1790
1791struct bus_type coresight_bustype = {
1792	.name	= "coresight",
1793};
1794
1795static int __init coresight_init(void)
1796{
1797	int ret;
1798
1799	ret = bus_register(&coresight_bustype);
1800	if (ret)
1801		return ret;
1802
1803	ret = etm_perf_init();
1804	if (ret)
1805		goto exit_bus_unregister;
1806
1807	/* initialise the coresight syscfg API */
1808	ret = cscfg_init();
1809	if (!ret)
1810		return 0;
1811
1812	etm_perf_exit();
1813exit_bus_unregister:
1814	bus_unregister(&coresight_bustype);
1815	return ret;
1816}
1817
1818static void __exit coresight_exit(void)
1819{
1820	cscfg_exit();
1821	etm_perf_exit();
1822	bus_unregister(&coresight_bustype);
1823}
1824
1825module_init(coresight_init);
1826module_exit(coresight_exit);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1827
1828MODULE_LICENSE("GPL v2");
1829MODULE_AUTHOR("Pratik Patel <pratikp@codeaurora.org>");
1830MODULE_AUTHOR("Mathieu Poirier <mathieu.poirier@linaro.org>");
1831MODULE_DESCRIPTION("Arm CoreSight tracer driver");