Linux Audio

Check our new training course

Loading...
v5.14.15
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
 
 
 
 
 
 
 
  4 */
  5
  6#ifndef _LINUX_CORESIGHT_H
  7#define _LINUX_CORESIGHT_H
  8
  9#include <linux/device.h>
 10#include <linux/io.h>
 11#include <linux/perf_event.h>
 12#include <linux/sched.h>
 13
 14/* Peripheral id registers (0xFD0-0xFEC) */
 15#define CORESIGHT_PERIPHIDR4	0xfd0
 16#define CORESIGHT_PERIPHIDR5	0xfd4
 17#define CORESIGHT_PERIPHIDR6	0xfd8
 18#define CORESIGHT_PERIPHIDR7	0xfdC
 19#define CORESIGHT_PERIPHIDR0	0xfe0
 20#define CORESIGHT_PERIPHIDR1	0xfe4
 21#define CORESIGHT_PERIPHIDR2	0xfe8
 22#define CORESIGHT_PERIPHIDR3	0xfeC
 23/* Component id registers (0xFF0-0xFFC) */
 24#define CORESIGHT_COMPIDR0	0xff0
 25#define CORESIGHT_COMPIDR1	0xff4
 26#define CORESIGHT_COMPIDR2	0xff8
 27#define CORESIGHT_COMPIDR3	0xffC
 28
 29#define ETM_ARCH_V3_3		0x23
 30#define ETM_ARCH_V3_5		0x25
 31#define PFT_ARCH_V1_0		0x30
 32#define PFT_ARCH_V1_1		0x31
 33
 34#define CORESIGHT_UNLOCK	0xc5acce55
 35
 36extern struct bus_type coresight_bustype;
 37
 38enum coresight_dev_type {
 39	CORESIGHT_DEV_TYPE_NONE,
 40	CORESIGHT_DEV_TYPE_SINK,
 41	CORESIGHT_DEV_TYPE_LINK,
 42	CORESIGHT_DEV_TYPE_LINKSINK,
 43	CORESIGHT_DEV_TYPE_SOURCE,
 44	CORESIGHT_DEV_TYPE_HELPER,
 45	CORESIGHT_DEV_TYPE_ECT,
 46};
 47
 48enum coresight_dev_subtype_sink {
 49	CORESIGHT_DEV_SUBTYPE_SINK_NONE,
 50	CORESIGHT_DEV_SUBTYPE_SINK_PORT,
 51	CORESIGHT_DEV_SUBTYPE_SINK_BUFFER,
 52	CORESIGHT_DEV_SUBTYPE_SINK_SYSMEM,
 53	CORESIGHT_DEV_SUBTYPE_SINK_PERCPU_SYSMEM,
 54};
 55
 56enum coresight_dev_subtype_link {
 57	CORESIGHT_DEV_SUBTYPE_LINK_NONE,
 58	CORESIGHT_DEV_SUBTYPE_LINK_MERG,
 59	CORESIGHT_DEV_SUBTYPE_LINK_SPLIT,
 60	CORESIGHT_DEV_SUBTYPE_LINK_FIFO,
 61};
 62
 63enum coresight_dev_subtype_source {
 64	CORESIGHT_DEV_SUBTYPE_SOURCE_NONE,
 65	CORESIGHT_DEV_SUBTYPE_SOURCE_PROC,
 66	CORESIGHT_DEV_SUBTYPE_SOURCE_BUS,
 67	CORESIGHT_DEV_SUBTYPE_SOURCE_SOFTWARE,
 68};
 69
 70enum coresight_dev_subtype_helper {
 71	CORESIGHT_DEV_SUBTYPE_HELPER_NONE,
 72	CORESIGHT_DEV_SUBTYPE_HELPER_CATU,
 73};
 74
 75/* Embedded Cross Trigger (ECT) sub-types */
 76enum coresight_dev_subtype_ect {
 77	CORESIGHT_DEV_SUBTYPE_ECT_NONE,
 78	CORESIGHT_DEV_SUBTYPE_ECT_CTI,
 79};
 80
 81/**
 82 * union coresight_dev_subtype - further characterisation of a type
 83 * @sink_subtype:	type of sink this component is, as defined
 84 *			by @coresight_dev_subtype_sink.
 85 * @link_subtype:	type of link this component is, as defined
 86 *			by @coresight_dev_subtype_link.
 87 * @source_subtype:	type of source this component is, as defined
 88 *			by @coresight_dev_subtype_source.
 89 * @helper_subtype:	type of helper this component is, as defined
 90 *			by @coresight_dev_subtype_helper.
 91 * @ect_subtype:        type of cross trigger this component is, as
 92 *			defined by @coresight_dev_subtype_ect
 93 */
 94union coresight_dev_subtype {
 95	/* We have some devices which acts as LINK and SINK */
 96	struct {
 97		enum coresight_dev_subtype_sink sink_subtype;
 98		enum coresight_dev_subtype_link link_subtype;
 99	};
100	enum coresight_dev_subtype_source source_subtype;
101	enum coresight_dev_subtype_helper helper_subtype;
102	enum coresight_dev_subtype_ect ect_subtype;
103};
104
105/**
106 * struct coresight_platform_data - data harvested from the firmware
107 * specification.
108 *
109 * @nr_inport:	Number of elements for the input connections.
110 * @nr_outport:	Number of elements for the output connections.
111 * @conns:	Sparse array of nr_outport connections from this component.
 
 
 
 
112 */
113struct coresight_platform_data {
 
 
114	int nr_inport;
 
 
 
115	int nr_outport;
116	struct coresight_connection *conns;
117};
118
119/**
120 * struct csdev_access - Abstraction of a CoreSight device access.
121 *
122 * @io_mem	: True if the device has memory mapped I/O
123 * @base	: When io_mem == true, base address of the component
124 * @read	: Read from the given "offset" of the given instance.
125 * @write	: Write "val" to the given "offset".
126 */
127struct csdev_access {
128	bool io_mem;
129	union {
130		void __iomem *base;
131		struct {
132			u64 (*read)(u32 offset, bool relaxed, bool _64bit);
133			void (*write)(u64 val, u32 offset, bool relaxed,
134				      bool _64bit);
135		};
136	};
137};
138
139#define CSDEV_ACCESS_IOMEM(_addr)		\
140	((struct csdev_access)	{		\
141		.io_mem		= true,		\
142		.base		= (_addr),	\
143	})
144
145/**
146 * struct coresight_desc - description of a component required from drivers
147 * @type:	as defined by @coresight_dev_type.
148 * @subtype:	as defined by @coresight_dev_subtype.
149 * @ops:	generic operations for this component, as defined
150 *		by @coresight_ops.
151 * @pdata:	platform data collected from DT.
152 * @dev:	The device entity associated to this component.
153 * @groups:	operations specific to this component. These will end up
154 *		in the component's sysfs sub-directory.
155 * @name:	name for the coresight device, also shown under sysfs.
156 * @access:	Describe access to the device
157 */
158struct coresight_desc {
159	enum coresight_dev_type type;
160	union coresight_dev_subtype subtype;
161	const struct coresight_ops *ops;
162	struct coresight_platform_data *pdata;
163	struct device *dev;
164	const struct attribute_group **groups;
165	const char *name;
166	struct csdev_access access;
167};
168
169/**
170 * struct coresight_connection - representation of a single connection
171 * @outport:	a connection's output port number.
 
172 * @child_port:	remote component's port number @output is connected to.
173 * @chid_fwnode: remote component's fwnode handle.
174 * @child_dev:	a @coresight_device representation of the component
175		connected to @outport.
176 * @link: Representation of the connection as a sysfs link.
177 */
178struct coresight_connection {
179	int outport;
 
180	int child_port;
181	struct fwnode_handle *child_fwnode;
182	struct coresight_device *child_dev;
183	struct coresight_sysfs_link *link;
184};
185
186/**
187 * struct coresight_sysfs_link - representation of a connection in sysfs.
188 * @orig:		Originating (master) coresight device for the link.
189 * @orig_name:		Name to use for the link orig->target.
190 * @target:		Target (slave) coresight device for the link.
191 * @target_name:	Name to use for the link target->orig.
192 */
193struct coresight_sysfs_link {
194	struct coresight_device *orig;
195	const char *orig_name;
196	struct coresight_device *target;
197	const char *target_name;
198};
199
200/**
201 * struct coresight_device - representation of a device as used by the framework
202 * @pdata:	Platform data with device connections associated to this device.
 
 
203 * @type:	as defined by @coresight_dev_type.
204 * @subtype:	as defined by @coresight_dev_subtype.
205 * @ops:	generic operations for this component, as defined
206 *		by @coresight_ops.
207 * @access:	Device i/o access abstraction for this device.
208 * @dev:	The device entity associated to this component.
209 * @refcnt:	keep track of what is in use.
210 * @orphan:	true if the component has connections that haven't been linked.
211 * @enable:	'true' if component is currently part of an active path.
212 * @activated:	'true' only if a _sink_ has been activated.  A sink can be
213 *		activated but not yet enabled.  Enabling for a _sink_
214 *		happens when a source has been selected and a path is enabled
215 *		from source to that sink.
216 * @ea:		Device attribute for sink representation under PMU directory.
217 * @def_sink:	cached reference to default sink found for this device.
218 * @ect_dev:	Associated cross trigger device. Not part of the trace data
219 *		path or connections.
220 * @nr_links:   number of sysfs links created to other components from this
221 *		device. These will appear in the "connections" group.
222 * @has_conns_grp: Have added a "connections" group for sysfs links.
223 */
224struct coresight_device {
225	struct coresight_platform_data *pdata;
 
 
226	enum coresight_dev_type type;
227	union coresight_dev_subtype subtype;
228	const struct coresight_ops *ops;
229	struct csdev_access access;
230	struct device dev;
231	atomic_t *refcnt;
232	bool orphan;
233	bool enable;	/* true only if configured as part of a path */
234	/* sink specific fields */
235	bool activated;	/* true only if a sink is part of a path */
236	struct dev_ext_attribute *ea;
237	struct coresight_device *def_sink;
238	/* cross trigger handling */
239	struct coresight_device *ect_dev;
240	/* sysfs links between components */
241	int nr_links;
242	bool has_conns_grp;
243	bool ect_enabled; /* true only if associated ect device is enabled */
244};
245
246/*
247 * coresight_dev_list - Mapping for devices to "name" index for device
248 * names.
249 *
250 * @nr_idx:		Number of entries already allocated.
251 * @pfx:		Prefix pattern for device name.
252 * @fwnode_list:	Array of fwnode_handles associated with each allocated
253 *			index, upto nr_idx entries.
254 */
255struct coresight_dev_list {
256	int			nr_idx;
257	const char		*pfx;
258	struct fwnode_handle	**fwnode_list;
259};
260
261#define DEFINE_CORESIGHT_DEVLIST(var, dev_pfx)				\
262static struct coresight_dev_list (var) = {				\
263						.pfx = dev_pfx,		\
264						.nr_idx = 0,		\
265						.fwnode_list = NULL,	\
266}
267
268#define to_coresight_device(d) container_of(d, struct coresight_device, dev)
269
270#define source_ops(csdev)	csdev->ops->source_ops
271#define sink_ops(csdev)		csdev->ops->sink_ops
272#define link_ops(csdev)		csdev->ops->link_ops
273#define helper_ops(csdev)	csdev->ops->helper_ops
274#define ect_ops(csdev)		csdev->ops->ect_ops
275
276/**
277 * struct coresight_ops_sink - basic operations for a sink
278 * Operations available for sinks
279 * @enable:		enables the sink.
280 * @disable:		disables the sink.
281 * @alloc_buffer:	initialises perf's ring buffer for trace collection.
282 * @free_buffer:	release memory allocated in @get_config.
 
 
283 * @update_buffer:	update buffer pointers after a trace session.
284 */
285struct coresight_ops_sink {
286	int (*enable)(struct coresight_device *csdev, u32 mode, void *data);
287	int (*disable)(struct coresight_device *csdev);
288	void *(*alloc_buffer)(struct coresight_device *csdev,
289			      struct perf_event *event, void **pages,
290			      int nr_pages, bool overwrite);
291	void (*free_buffer)(void *config);
292	unsigned long (*update_buffer)(struct coresight_device *csdev,
 
 
 
 
 
 
293			      struct perf_output_handle *handle,
294			      void *sink_config);
295};
296
297/**
298 * struct coresight_ops_link - basic operations for a link
299 * Operations available for links.
300 * @enable:	enables flow between iport and oport.
301 * @disable:	disables flow between iport and oport.
302 */
303struct coresight_ops_link {
304	int (*enable)(struct coresight_device *csdev, int iport, int oport);
305	void (*disable)(struct coresight_device *csdev, int iport, int oport);
306};
307
308/**
309 * struct coresight_ops_source - basic operations for a source
310 * Operations available for sources.
311 * @cpu_id:	returns the value of the CPU number this component
312 *		is associated to.
313 * @trace_id:	returns the value of the component's trace ID as known
314 *		to the HW.
315 * @enable:	enables tracing for a source.
316 * @disable:	disables tracing for a source.
317 */
318struct coresight_ops_source {
319	int (*cpu_id)(struct coresight_device *csdev);
320	int (*trace_id)(struct coresight_device *csdev);
321	int (*enable)(struct coresight_device *csdev,
322		      struct perf_event *event,  u32 mode);
323	void (*disable)(struct coresight_device *csdev,
324			struct perf_event *event);
325};
326
327/**
328 * struct coresight_ops_helper - Operations for a helper device.
329 *
330 * All operations could pass in a device specific data, which could
331 * help the helper device to determine what to do.
332 *
333 * @enable	: Enable the device
334 * @disable	: Disable the device
335 */
336struct coresight_ops_helper {
337	int (*enable)(struct coresight_device *csdev, void *data);
338	int (*disable)(struct coresight_device *csdev, void *data);
339};
340
341/**
342 * struct coresight_ops_ect - Ops for an embedded cross trigger device
343 *
344 * @enable	: Enable the device
345 * @disable	: Disable the device
346 */
347struct coresight_ops_ect {
348	int (*enable)(struct coresight_device *csdev);
349	int (*disable)(struct coresight_device *csdev);
350};
351
352struct coresight_ops {
353	const struct coresight_ops_sink *sink_ops;
354	const struct coresight_ops_link *link_ops;
355	const struct coresight_ops_source *source_ops;
356	const struct coresight_ops_helper *helper_ops;
357	const struct coresight_ops_ect *ect_ops;
358};
359
360#if IS_ENABLED(CONFIG_CORESIGHT)
361
362static inline u32 csdev_access_relaxed_read32(struct csdev_access *csa,
363					      u32 offset)
364{
365	if (likely(csa->io_mem))
366		return readl_relaxed(csa->base + offset);
367
368	return csa->read(offset, true, false);
369}
370
371static inline u32 csdev_access_read32(struct csdev_access *csa, u32 offset)
372{
373	if (likely(csa->io_mem))
374		return readl(csa->base + offset);
375
376	return csa->read(offset, false, false);
377}
378
379static inline void csdev_access_relaxed_write32(struct csdev_access *csa,
380						u32 val, u32 offset)
381{
382	if (likely(csa->io_mem))
383		writel_relaxed(val, csa->base + offset);
384	else
385		csa->write(val, offset, true, false);
386}
387
388static inline void csdev_access_write32(struct csdev_access *csa, u32 val, u32 offset)
389{
390	if (likely(csa->io_mem))
391		writel(val, csa->base + offset);
392	else
393		csa->write(val, offset, false, false);
394}
395
396#ifdef CONFIG_64BIT
397
398static inline u64 csdev_access_relaxed_read64(struct csdev_access *csa,
399					      u32 offset)
400{
401	if (likely(csa->io_mem))
402		return readq_relaxed(csa->base + offset);
403
404	return csa->read(offset, true, true);
405}
406
407static inline u64 csdev_access_read64(struct csdev_access *csa, u32 offset)
408{
409	if (likely(csa->io_mem))
410		return readq(csa->base + offset);
411
412	return csa->read(offset, false, true);
413}
414
415static inline void csdev_access_relaxed_write64(struct csdev_access *csa,
416						u64 val, u32 offset)
417{
418	if (likely(csa->io_mem))
419		writeq_relaxed(val, csa->base + offset);
420	else
421		csa->write(val, offset, true, true);
422}
423
424static inline void csdev_access_write64(struct csdev_access *csa, u64 val, u32 offset)
425{
426	if (likely(csa->io_mem))
427		writeq(val, csa->base + offset);
428	else
429		csa->write(val, offset, false, true);
430}
431
432#else	/* !CONFIG_64BIT */
433
434static inline u64 csdev_access_relaxed_read64(struct csdev_access *csa,
435					      u32 offset)
436{
437	WARN_ON(1);
438	return 0;
439}
440
441static inline u64 csdev_access_read64(struct csdev_access *csa, u32 offset)
442{
443	WARN_ON(1);
444	return 0;
445}
446
447static inline void csdev_access_relaxed_write64(struct csdev_access *csa,
448						u64 val, u32 offset)
449{
450	WARN_ON(1);
451}
452
453static inline void csdev_access_write64(struct csdev_access *csa, u64 val, u32 offset)
454{
455	WARN_ON(1);
456}
457#endif	/* CONFIG_64BIT */
458
459static inline bool coresight_is_percpu_source(struct coresight_device *csdev)
460{
461	return csdev && (csdev->type == CORESIGHT_DEV_TYPE_SOURCE) &&
462	       (csdev->subtype.source_subtype == CORESIGHT_DEV_SUBTYPE_SOURCE_PROC);
463}
464
465static inline bool coresight_is_percpu_sink(struct coresight_device *csdev)
466{
467	return csdev && (csdev->type == CORESIGHT_DEV_TYPE_SINK) &&
468	       (csdev->subtype.sink_subtype == CORESIGHT_DEV_SUBTYPE_SINK_PERCPU_SYSMEM);
469}
470
471extern struct coresight_device *
472coresight_register(struct coresight_desc *desc);
473extern void coresight_unregister(struct coresight_device *csdev);
474extern int coresight_enable(struct coresight_device *csdev);
475extern void coresight_disable(struct coresight_device *csdev);
476extern int coresight_timeout(struct csdev_access *csa, u32 offset,
477			     int position, int value);
478
479extern int coresight_claim_device(struct coresight_device *csdev);
480extern int coresight_claim_device_unlocked(struct coresight_device *csdev);
481
482extern void coresight_disclaim_device(struct coresight_device *csdev);
483extern void coresight_disclaim_device_unlocked(struct coresight_device *csdev);
484extern char *coresight_alloc_device_name(struct coresight_dev_list *devs,
485					 struct device *dev);
486
487extern bool coresight_loses_context_with_cpu(struct device *dev);
488
489u32 coresight_relaxed_read32(struct coresight_device *csdev, u32 offset);
490u32 coresight_read32(struct coresight_device *csdev, u32 offset);
491void coresight_write32(struct coresight_device *csdev, u32 val, u32 offset);
492void coresight_relaxed_write32(struct coresight_device *csdev,
493			       u32 val, u32 offset);
494u64 coresight_relaxed_read64(struct coresight_device *csdev, u32 offset);
495u64 coresight_read64(struct coresight_device *csdev, u32 offset);
496void coresight_relaxed_write64(struct coresight_device *csdev,
497			       u64 val, u32 offset);
498void coresight_write64(struct coresight_device *csdev, u64 val, u32 offset);
499
500#else
501static inline struct coresight_device *
502coresight_register(struct coresight_desc *desc) { return NULL; }
503static inline void coresight_unregister(struct coresight_device *csdev) {}
504static inline int
505coresight_enable(struct coresight_device *csdev) { return -ENOSYS; }
506static inline void coresight_disable(struct coresight_device *csdev) {}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
508static inline int coresight_timeout(struct csdev_access *csa, u32 offset,
509				    int position, int value)
510{
511	return 1;
512}
513
514static inline int coresight_claim_device_unlocked(struct coresight_device *csdev)
515{
516	return -EINVAL;
517}
518
519static inline int coresight_claim_device(struct coresight_device *csdev)
520{
521	return -EINVAL;
522}
523
524static inline void coresight_disclaim_device(struct coresight_device *csdev) {}
525static inline void coresight_disclaim_device_unlocked(struct coresight_device *csdev) {}
526
527static inline bool coresight_loses_context_with_cpu(struct device *dev)
528{
529	return false;
530}
531
532static inline u32 coresight_relaxed_read32(struct coresight_device *csdev, u32 offset)
533{
534	WARN_ON_ONCE(1);
535	return 0;
536}
537
538static inline u32 coresight_read32(struct coresight_device *csdev, u32 offset)
539{
540	WARN_ON_ONCE(1);
541	return 0;
542}
543
544static inline void coresight_write32(struct coresight_device *csdev, u32 val, u32 offset)
545{
546}
547
548static inline void coresight_relaxed_write32(struct coresight_device *csdev,
549					     u32 val, u32 offset)
550{
551}
552
553static inline u64 coresight_relaxed_read64(struct coresight_device *csdev,
554					   u32 offset)
555{
556	WARN_ON_ONCE(1);
557	return 0;
558}
559
560static inline u64 coresight_read64(struct coresight_device *csdev, u32 offset)
561{
562	WARN_ON_ONCE(1);
563	return 0;
564}
565
566static inline void coresight_relaxed_write64(struct coresight_device *csdev,
567					     u64 val, u32 offset)
568{
569}
570
571static inline void coresight_write64(struct coresight_device *csdev, u64 val, u32 offset)
572{
573}
 
 
 
 
574
575#endif		/* IS_ENABLED(CONFIG_CORESIGHT) */
576
577extern int coresight_get_cpu(struct device *dev);
578
579struct coresight_platform_data *coresight_get_platform_data(struct device *dev);
580
581#endif		/* _LINUX_COREISGHT_H */
v4.6
  1/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
  2 *
  3 * This program is free software; you can redistribute it and/or modify
  4 * it under the terms of the GNU General Public License version 2 and
  5 * only version 2 as published by the Free Software Foundation.
  6 *
  7 * This program is distributed in the hope that it will be useful,
  8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 10 * GNU General Public License for more details.
 11 */
 12
 13#ifndef _LINUX_CORESIGHT_H
 14#define _LINUX_CORESIGHT_H
 15
 16#include <linux/device.h>
 
 17#include <linux/perf_event.h>
 18#include <linux/sched.h>
 19
 20/* Peripheral id registers (0xFD0-0xFEC) */
 21#define CORESIGHT_PERIPHIDR4	0xfd0
 22#define CORESIGHT_PERIPHIDR5	0xfd4
 23#define CORESIGHT_PERIPHIDR6	0xfd8
 24#define CORESIGHT_PERIPHIDR7	0xfdC
 25#define CORESIGHT_PERIPHIDR0	0xfe0
 26#define CORESIGHT_PERIPHIDR1	0xfe4
 27#define CORESIGHT_PERIPHIDR2	0xfe8
 28#define CORESIGHT_PERIPHIDR3	0xfeC
 29/* Component id registers (0xFF0-0xFFC) */
 30#define CORESIGHT_COMPIDR0	0xff0
 31#define CORESIGHT_COMPIDR1	0xff4
 32#define CORESIGHT_COMPIDR2	0xff8
 33#define CORESIGHT_COMPIDR3	0xffC
 34
 35#define ETM_ARCH_V3_3		0x23
 36#define ETM_ARCH_V3_5		0x25
 37#define PFT_ARCH_V1_0		0x30
 38#define PFT_ARCH_V1_1		0x31
 39
 40#define CORESIGHT_UNLOCK	0xc5acce55
 41
 42extern struct bus_type coresight_bustype;
 43
 44enum coresight_dev_type {
 45	CORESIGHT_DEV_TYPE_NONE,
 46	CORESIGHT_DEV_TYPE_SINK,
 47	CORESIGHT_DEV_TYPE_LINK,
 48	CORESIGHT_DEV_TYPE_LINKSINK,
 49	CORESIGHT_DEV_TYPE_SOURCE,
 
 
 50};
 51
 52enum coresight_dev_subtype_sink {
 53	CORESIGHT_DEV_SUBTYPE_SINK_NONE,
 54	CORESIGHT_DEV_SUBTYPE_SINK_PORT,
 55	CORESIGHT_DEV_SUBTYPE_SINK_BUFFER,
 
 
 56};
 57
 58enum coresight_dev_subtype_link {
 59	CORESIGHT_DEV_SUBTYPE_LINK_NONE,
 60	CORESIGHT_DEV_SUBTYPE_LINK_MERG,
 61	CORESIGHT_DEV_SUBTYPE_LINK_SPLIT,
 62	CORESIGHT_DEV_SUBTYPE_LINK_FIFO,
 63};
 64
 65enum coresight_dev_subtype_source {
 66	CORESIGHT_DEV_SUBTYPE_SOURCE_NONE,
 67	CORESIGHT_DEV_SUBTYPE_SOURCE_PROC,
 68	CORESIGHT_DEV_SUBTYPE_SOURCE_BUS,
 69	CORESIGHT_DEV_SUBTYPE_SOURCE_SOFTWARE,
 70};
 71
 
 
 
 
 
 
 
 
 
 
 
 72/**
 73 * struct coresight_dev_subtype - further characterisation of a type
 74 * @sink_subtype:	type of sink this component is, as defined
 75			by @coresight_dev_subtype_sink.
 76 * @link_subtype:	type of link this component is, as defined
 77			by @coresight_dev_subtype_link.
 78 * @source_subtype:	type of source this component is, as defined
 79			by @coresight_dev_subtype_source.
 
 
 
 
 80 */
 81struct coresight_dev_subtype {
 82	enum coresight_dev_subtype_sink sink_subtype;
 83	enum coresight_dev_subtype_link link_subtype;
 
 
 
 84	enum coresight_dev_subtype_source source_subtype;
 
 
 85};
 86
 87/**
 88 * struct coresight_platform_data - data harvested from the DT specification
 89 * @cpu:	the CPU a source belongs to. Only applicable for ETM/PTMs.
 90 * @name:	name of the component as shown under sysfs.
 91 * @nr_inport:	number of input ports for this component.
 92 * @outports:	list of remote endpoint port number.
 93 * @child_names:name of all child components connected to this device.
 94 * @child_ports:child component port number the current component is
 95		connected  to.
 96 * @nr_outport:	number of output ports for this component.
 97 * @clk:	The clock this component is associated to.
 98 */
 99struct coresight_platform_data {
100	int cpu;
101	const char *name;
102	int nr_inport;
103	int *outports;
104	const char **child_names;
105	int *child_ports;
106	int nr_outport;
107	struct clk *clk;
108};
109
110/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111 * struct coresight_desc - description of a component required from drivers
112 * @type:	as defined by @coresight_dev_type.
113 * @subtype:	as defined by @coresight_dev_subtype.
114 * @ops:	generic operations for this component, as defined
115		by @coresight_ops.
116 * @pdata:	platform data collected from DT.
117 * @dev:	The device entity associated to this component.
118 * @groups:	operations specific to this component. These will end up
119		in the component's sysfs sub-directory.
 
 
120 */
121struct coresight_desc {
122	enum coresight_dev_type type;
123	struct coresight_dev_subtype subtype;
124	const struct coresight_ops *ops;
125	struct coresight_platform_data *pdata;
126	struct device *dev;
127	const struct attribute_group **groups;
 
 
128};
129
130/**
131 * struct coresight_connection - representation of a single connection
132 * @outport:	a connection's output port number.
133 * @chid_name:	remote component's name.
134 * @child_port:	remote component's port number @output is connected to.
 
135 * @child_dev:	a @coresight_device representation of the component
136		connected to @outport.
 
137 */
138struct coresight_connection {
139	int outport;
140	const char *child_name;
141	int child_port;
 
142	struct coresight_device *child_dev;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143};
144
145/**
146 * struct coresight_device - representation of a device as used by the framework
147 * @conns:	array of coresight_connections associated to this component.
148 * @nr_inport:	number of input port associated to this component.
149 * @nr_outport:	number of output port associated to this component.
150 * @type:	as defined by @coresight_dev_type.
151 * @subtype:	as defined by @coresight_dev_subtype.
152 * @ops:	generic operations for this component, as defined
153		by @coresight_ops.
 
154 * @dev:	The device entity associated to this component.
155 * @refcnt:	keep track of what is in use.
156 * @orphan:	true if the component has connections that haven't been linked.
157 * @enable:	'true' if component is currently part of an active path.
158 * @activated:	'true' only if a _sink_ has been activated.  A sink can be
159		activated but not yet enabled.  Enabling for a _sink_
160		happens when a source has been selected for that it.
 
 
 
 
 
 
 
 
161 */
162struct coresight_device {
163	struct coresight_connection *conns;
164	int nr_inport;
165	int nr_outport;
166	enum coresight_dev_type type;
167	struct coresight_dev_subtype subtype;
168	const struct coresight_ops *ops;
 
169	struct device dev;
170	atomic_t *refcnt;
171	bool orphan;
172	bool enable;	/* true only if configured as part of a path */
 
173	bool activated;	/* true only if a sink is part of a path */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174};
175
 
 
 
 
 
 
 
176#define to_coresight_device(d) container_of(d, struct coresight_device, dev)
177
178#define source_ops(csdev)	csdev->ops->source_ops
179#define sink_ops(csdev)		csdev->ops->sink_ops
180#define link_ops(csdev)		csdev->ops->link_ops
 
 
181
182/**
183 * struct coresight_ops_sink - basic operations for a sink
184 * Operations available for sinks
185 * @enable:		enables the sink.
186 * @disable:		disables the sink.
187 * @alloc_buffer:	initialises perf's ring buffer for trace collection.
188 * @free_buffer:	release memory allocated in @get_config.
189 * @set_buffer:		initialises buffer mechanic before a trace session.
190 * @reset_buffer:	finalises buffer mechanic after a trace session.
191 * @update_buffer:	update buffer pointers after a trace session.
192 */
193struct coresight_ops_sink {
194	int (*enable)(struct coresight_device *csdev, u32 mode);
195	void (*disable)(struct coresight_device *csdev);
196	void *(*alloc_buffer)(struct coresight_device *csdev, int cpu,
197			      void **pages, int nr_pages, bool overwrite);
 
198	void (*free_buffer)(void *config);
199	int (*set_buffer)(struct coresight_device *csdev,
200			  struct perf_output_handle *handle,
201			  void *sink_config);
202	unsigned long (*reset_buffer)(struct coresight_device *csdev,
203				      struct perf_output_handle *handle,
204				      void *sink_config, bool *lost);
205	void (*update_buffer)(struct coresight_device *csdev,
206			      struct perf_output_handle *handle,
207			      void *sink_config);
208};
209
210/**
211 * struct coresight_ops_link - basic operations for a link
212 * Operations available for links.
213 * @enable:	enables flow between iport and oport.
214 * @disable:	disables flow between iport and oport.
215 */
216struct coresight_ops_link {
217	int (*enable)(struct coresight_device *csdev, int iport, int oport);
218	void (*disable)(struct coresight_device *csdev, int iport, int oport);
219};
220
221/**
222 * struct coresight_ops_source - basic operations for a source
223 * Operations available for sources.
224 * @cpu_id:	returns the value of the CPU number this component
225 *		is associated to.
226 * @trace_id:	returns the value of the component's trace ID as known
227 *		to the HW.
228 * @enable:	enables tracing for a source.
229 * @disable:	disables tracing for a source.
230 */
231struct coresight_ops_source {
232	int (*cpu_id)(struct coresight_device *csdev);
233	int (*trace_id)(struct coresight_device *csdev);
234	int (*enable)(struct coresight_device *csdev,
235		      struct perf_event_attr *attr,  u32 mode);
236	void (*disable)(struct coresight_device *csdev);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237};
238
239struct coresight_ops {
240	const struct coresight_ops_sink *sink_ops;
241	const struct coresight_ops_link *link_ops;
242	const struct coresight_ops_source *source_ops;
 
 
243};
244
245#ifdef CONFIG_CORESIGHT
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246extern struct coresight_device *
247coresight_register(struct coresight_desc *desc);
248extern void coresight_unregister(struct coresight_device *csdev);
249extern int coresight_enable(struct coresight_device *csdev);
250extern void coresight_disable(struct coresight_device *csdev);
251extern int coresight_timeout(void __iomem *addr, u32 offset,
252			     int position, int value);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253#else
254static inline struct coresight_device *
255coresight_register(struct coresight_desc *desc) { return NULL; }
256static inline void coresight_unregister(struct coresight_device *csdev) {}
257static inline int
258coresight_enable(struct coresight_device *csdev) { return -ENOSYS; }
259static inline void coresight_disable(struct coresight_device *csdev) {}
260static inline int coresight_timeout(void __iomem *addr, u32 offset,
261				     int position, int value) { return 1; }
262#endif
263
264#ifdef CONFIG_OF
265extern struct coresight_platform_data *of_get_coresight_platform_data(
266				struct device *dev, struct device_node *node);
267#else
268static inline struct coresight_platform_data *of_get_coresight_platform_data(
269	struct device *dev, struct device_node *node) { return NULL; }
270#endif
271
272#ifdef CONFIG_PID_NS
273static inline unsigned long
274coresight_vpid_to_pid(unsigned long vpid)
275{
276	struct task_struct *task = NULL;
277	unsigned long pid = 0;
278
279	rcu_read_lock();
280	task = find_task_by_vpid(vpid);
281	if (task)
282		pid = task_pid_nr(task);
283	rcu_read_unlock();
284
285	return pid;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286}
287#else
288static inline unsigned long
289coresight_vpid_to_pid(unsigned long vpid) { return vpid; }
290#endif
291
292#endif