Linux Audio

Check our new training course

Loading...
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
  4 */
  5
  6#ifndef _CORESIGHT_PRIV_H
  7#define _CORESIGHT_PRIV_H
  8
  9#include <linux/amba/bus.h>
 10#include <linux/bitops.h>
 11#include <linux/io.h>
 12#include <linux/coresight.h>
 13#include <linux/pm_runtime.h>
 14
 15extern struct mutex coresight_mutex;
 16extern const struct device_type coresight_dev_type[];
 17
 18/*
 19 * Coresight management registers (0xf00-0xfcc)
 20 * 0xfa0 - 0xfa4: Management	registers in PFTv1.0
 21 *		  Trace		registers in PFTv1.1
 22 */
 23#define CORESIGHT_ITCTRL	0xf00
 24#define CORESIGHT_CLAIMSET	0xfa0
 25#define CORESIGHT_CLAIMCLR	0xfa4
 26#define CORESIGHT_LAR		0xfb0
 27#define CORESIGHT_LSR		0xfb4
 28#define CORESIGHT_DEVARCH	0xfbc
 29#define CORESIGHT_AUTHSTATUS	0xfb8
 30#define CORESIGHT_DEVID		0xfc8
 31#define CORESIGHT_DEVTYPE	0xfcc
 32
 33
 34/*
 35 * Coresight device CLAIM protocol.
 36 * See PSCI - ARM DEN 0022D, Section: 6.8.1 Debug and Trace save and restore.
 37 */
 38#define CORESIGHT_CLAIM_SELF_HOSTED	BIT(1)
 39
 40#define TIMEOUT_US		100
 41#define BMVAL(val, lsb, msb)	((val & GENMASK(msb, lsb)) >> lsb)
 42
 43#define ETM_MODE_EXCL_KERN	BIT(30)
 44#define ETM_MODE_EXCL_USER	BIT(31)
 45struct cs_pair_attribute {
 46	struct device_attribute attr;
 47	u32 lo_off;
 48	u32 hi_off;
 49};
 50
 51struct cs_off_attribute {
 52	struct device_attribute attr;
 53	u32 off;
 54};
 55
 56extern ssize_t coresight_simple_show32(struct device *_dev,
 57				     struct device_attribute *attr, char *buf);
 58extern ssize_t coresight_simple_show_pair(struct device *_dev,
 59				     struct device_attribute *attr, char *buf);
 60
 61#define coresight_simple_reg32(name, offset)				\
 62	(&((struct cs_off_attribute[]) {				\
 63	   {								\
 64		__ATTR(name, 0444, coresight_simple_show32, NULL),	\
 65		offset							\
 66	   }								\
 67	})[0].attr.attr)
 68
 69#define coresight_simple_reg64(name, lo_off, hi_off)			\
 70	(&((struct cs_pair_attribute[]) {				\
 71	   {								\
 72		__ATTR(name, 0444, coresight_simple_show_pair, NULL),	\
 73		lo_off, hi_off						\
 74	   }								\
 75	})[0].attr.attr)
 
 
 
 
 
 76
 77extern const u32 coresight_barrier_pkt[4];
 78#define CORESIGHT_BARRIER_PKT_SIZE (sizeof(coresight_barrier_pkt))
 79
 80enum etm_addr_type {
 81	ETM_ADDR_TYPE_NONE,
 82	ETM_ADDR_TYPE_SINGLE,
 83	ETM_ADDR_TYPE_RANGE,
 84	ETM_ADDR_TYPE_START,
 85	ETM_ADDR_TYPE_STOP,
 86};
 87
 
 
 
 
 
 
 88/**
 89 * struct cs_buffer - keep track of a recording session' specifics
 90 * @cur:	index of the current buffer
 91 * @nr_pages:	max number of pages granted to us
 92 * @pid:	PID this cs_buffer belongs to
 93 * @offset:	offset within the current buffer
 94 * @data_size:	how much we collected in this run
 95 * @snapshot:	is this run in snapshot mode
 96 * @data_pages:	a handle the ring buffer
 97 */
 98struct cs_buffers {
 99	unsigned int		cur;
100	unsigned int		nr_pages;
101	pid_t			pid;
102	unsigned long		offset;
103	local_t			data_size;
104	bool			snapshot;
105	void			**data_pages;
106};
107
108static inline void coresight_insert_barrier_packet(void *buf)
109{
110	if (buf)
111		memcpy(buf, coresight_barrier_pkt, CORESIGHT_BARRIER_PKT_SIZE);
112}
113
 
114static inline void CS_LOCK(void __iomem *addr)
115{
116	do {
117		/* Wait for things to settle */
118		mb();
119		writel_relaxed(0x0, addr + CORESIGHT_LAR);
120	} while (0);
121}
122
123static inline void CS_UNLOCK(void __iomem *addr)
124{
125	do {
126		writel_relaxed(CORESIGHT_UNLOCK, addr + CORESIGHT_LAR);
127		/* Make sure everyone has seen this */
128		mb();
129	} while (0);
130}
131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132void coresight_disable_path(struct list_head *path);
133int coresight_enable_path(struct list_head *path, enum cs_mode mode,
134			  void *sink_data);
135struct coresight_device *coresight_get_sink(struct list_head *path);
 
136struct coresight_device *coresight_get_sink_by_id(u32 id);
137struct coresight_device *
138coresight_find_default_sink(struct coresight_device *csdev);
139struct list_head *coresight_build_path(struct coresight_device *csdev,
140				       struct coresight_device *sink);
141void coresight_release_path(struct list_head *path);
142int coresight_add_sysfs_link(struct coresight_sysfs_link *info);
143void coresight_remove_sysfs_link(struct coresight_sysfs_link *info);
144int coresight_create_conns_sysfs_group(struct coresight_device *csdev);
145void coresight_remove_conns_sysfs_group(struct coresight_device *csdev);
146int coresight_make_links(struct coresight_device *orig,
147			 struct coresight_connection *conn,
148			 struct coresight_device *target);
149void coresight_remove_links(struct coresight_device *orig,
150			    struct coresight_connection *conn);
151u32 coresight_get_sink_id(struct coresight_device *csdev);
152
153#if IS_ENABLED(CONFIG_CORESIGHT_SOURCE_ETM3X)
154extern int etm_readl_cp14(u32 off, unsigned int *val);
155extern int etm_writel_cp14(u32 off, u32 val);
156#else
157static inline int etm_readl_cp14(u32 off, unsigned int *val) { return 0; }
158static inline int etm_writel_cp14(u32 off, u32 val) { return 0; }
159#endif
160
161struct cti_assoc_op {
162	void (*add)(struct coresight_device *csdev);
163	void (*remove)(struct coresight_device *csdev);
164};
165
166extern void coresight_set_cti_ops(const struct cti_assoc_op *cti_op);
167extern void coresight_remove_cti_ops(void);
 
 
 
168
169/*
170 * Macros and inline functions to handle CoreSight UCI data and driver
171 * private data in AMBA ID table entries, and extract data values.
172 */
173
174/* coresight AMBA ID, no UCI, no driver data: id table entry */
175#define CS_AMBA_ID(pid)			\
176	{				\
177		.id	= pid,		\
178		.mask	= 0x000fffff,	\
179	}
180
181/* coresight AMBA ID, UCI with driver data only: id table entry. */
182#define CS_AMBA_ID_DATA(pid, dval)				\
183	{							\
184		.id	= pid,					\
185		.mask	= 0x000fffff,				\
186		.data	=  (void *)&(struct amba_cs_uci_id)	\
187			{				\
188				.data = (void *)dval,	\
189			}				\
190	}
191
192/* coresight AMBA ID, full UCI structure: id table entry. */
193#define __CS_AMBA_UCI_ID(pid, m, uci_ptr)	\
194	{					\
195		.id	= pid,			\
196		.mask	= m,			\
197		.data	= (void *)uci_ptr	\
198	}
199#define CS_AMBA_UCI_ID(pid, uci)	__CS_AMBA_UCI_ID(pid, 0x000fffff, uci)
200/*
201 * PIDR2[JEDEC], BIT(3) must be 1 (Read As One) to indicate that rest of the
202 * PIDR1, PIDR2 DES_* fields follow JEDEC encoding for the designer. Use that
203 * as a match value for blanket matching all devices in the given CoreSight
204 * device type and architecture.
205 */
206#define PIDR2_JEDEC			BIT(3)
207#define PID_PIDR2_JEDEC			(PIDR2_JEDEC << 16)
208/*
209 * Match all PIDs in a given CoreSight device type and architecture, defined
210 * by the uci.
211 */
212#define CS_AMBA_MATCH_ALL_UCI(uci)					\
213	__CS_AMBA_UCI_ID(PID_PIDR2_JEDEC, PID_PIDR2_JEDEC, uci)
214
215/* extract the data value from a UCI structure given amba_id pointer. */
216static inline void *coresight_get_uci_data(const struct amba_id *id)
217{
218	struct amba_cs_uci_id *uci_id = id->data;
219
220	if (!uci_id)
221		return NULL;
222
223	return uci_id->data;
224}
225
226static inline void *coresight_get_uci_data_from_amba(const struct amba_id *table, u32 pid)
227{
228	while (table->mask) {
229		if ((pid & table->mask) == table->id)
230			return coresight_get_uci_data(table);
231		table++;
232	};
233	return NULL;
234}
235
236void coresight_release_platform_data(struct coresight_device *csdev,
237				     struct device *dev,
238				     struct coresight_platform_data *pdata);
239struct coresight_device *
240coresight_find_csdev_by_fwnode(struct fwnode_handle *r_fwnode);
241void coresight_add_helper(struct coresight_device *csdev,
242			  struct coresight_device *helper);
243
244void coresight_set_percpu_sink(int cpu, struct coresight_device *csdev);
245struct coresight_device *coresight_get_percpu_sink(int cpu);
246void coresight_disable_source(struct coresight_device *csdev, void *data);
247
248#endif
v5.9
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
  4 */
  5
  6#ifndef _CORESIGHT_PRIV_H
  7#define _CORESIGHT_PRIV_H
  8
  9#include <linux/amba/bus.h>
 10#include <linux/bitops.h>
 11#include <linux/io.h>
 12#include <linux/coresight.h>
 13#include <linux/pm_runtime.h>
 14
 
 
 
 15/*
 16 * Coresight management registers (0xf00-0xfcc)
 17 * 0xfa0 - 0xfa4: Management	registers in PFTv1.0
 18 *		  Trace		registers in PFTv1.1
 19 */
 20#define CORESIGHT_ITCTRL	0xf00
 21#define CORESIGHT_CLAIMSET	0xfa0
 22#define CORESIGHT_CLAIMCLR	0xfa4
 23#define CORESIGHT_LAR		0xfb0
 24#define CORESIGHT_LSR		0xfb4
 25#define CORESIGHT_DEVARCH	0xfbc
 26#define CORESIGHT_AUTHSTATUS	0xfb8
 27#define CORESIGHT_DEVID		0xfc8
 28#define CORESIGHT_DEVTYPE	0xfcc
 29
 30
 31/*
 32 * Coresight device CLAIM protocol.
 33 * See PSCI - ARM DEN 0022D, Section: 6.8.1 Debug and Trace save and restore.
 34 */
 35#define CORESIGHT_CLAIM_SELF_HOSTED	BIT(1)
 36
 37#define TIMEOUT_US		100
 38#define BMVAL(val, lsb, msb)	((val & GENMASK(msb, lsb)) >> lsb)
 39
 40#define ETM_MODE_EXCL_KERN	BIT(30)
 41#define ETM_MODE_EXCL_USER	BIT(31)
 
 
 
 
 
 
 
 
 
 
 42
 43typedef u32 (*coresight_read_fn)(const struct device *, u32 offset);
 44#define __coresight_simple_func(type, func, name, lo_off, hi_off)	\
 45static ssize_t name##_show(struct device *_dev,				\
 46			   struct device_attribute *attr, char *buf)	\
 47{									\
 48	type *drvdata = dev_get_drvdata(_dev->parent);			\
 49	coresight_read_fn fn = func;					\
 50	u64 val;							\
 51	pm_runtime_get_sync(_dev->parent);				\
 52	if (fn)								\
 53		val = (u64)fn(_dev->parent, lo_off);			\
 54	else								\
 55		val = coresight_read_reg_pair(drvdata->base,		\
 56						 lo_off, hi_off);	\
 57	pm_runtime_put_sync(_dev->parent);				\
 58	return scnprintf(buf, PAGE_SIZE, "0x%llx\n", val);		\
 59}									\
 60static DEVICE_ATTR_RO(name)
 61
 62#define coresight_simple_func(type, func, name, offset)			\
 63	__coresight_simple_func(type, func, name, offset, -1)
 64#define coresight_simple_reg32(type, name, offset)			\
 65	__coresight_simple_func(type, NULL, name, offset, -1)
 66#define coresight_simple_reg64(type, name, lo_off, hi_off)		\
 67	__coresight_simple_func(type, NULL, name, lo_off, hi_off)
 68
 69extern const u32 barrier_pkt[4];
 70#define CORESIGHT_BARRIER_PKT_SIZE (sizeof(barrier_pkt))
 71
 72enum etm_addr_type {
 73	ETM_ADDR_TYPE_NONE,
 74	ETM_ADDR_TYPE_SINGLE,
 75	ETM_ADDR_TYPE_RANGE,
 76	ETM_ADDR_TYPE_START,
 77	ETM_ADDR_TYPE_STOP,
 78};
 79
 80enum cs_mode {
 81	CS_MODE_DISABLED,
 82	CS_MODE_SYSFS,
 83	CS_MODE_PERF,
 84};
 85
 86/**
 87 * struct cs_buffer - keep track of a recording session' specifics
 88 * @cur:	index of the current buffer
 89 * @nr_pages:	max number of pages granted to us
 
 90 * @offset:	offset within the current buffer
 91 * @data_size:	how much we collected in this run
 92 * @snapshot:	is this run in snapshot mode
 93 * @data_pages:	a handle the ring buffer
 94 */
 95struct cs_buffers {
 96	unsigned int		cur;
 97	unsigned int		nr_pages;
 
 98	unsigned long		offset;
 99	local_t			data_size;
100	bool			snapshot;
101	void			**data_pages;
102};
103
104static inline void coresight_insert_barrier_packet(void *buf)
105{
106	if (buf)
107		memcpy(buf, barrier_pkt, CORESIGHT_BARRIER_PKT_SIZE);
108}
109
110
111static inline void CS_LOCK(void __iomem *addr)
112{
113	do {
114		/* Wait for things to settle */
115		mb();
116		writel_relaxed(0x0, addr + CORESIGHT_LAR);
117	} while (0);
118}
119
120static inline void CS_UNLOCK(void __iomem *addr)
121{
122	do {
123		writel_relaxed(CORESIGHT_UNLOCK, addr + CORESIGHT_LAR);
124		/* Make sure everyone has seen this */
125		mb();
126	} while (0);
127}
128
129static inline u64
130coresight_read_reg_pair(void __iomem *addr, s32 lo_offset, s32 hi_offset)
131{
132	u64 val;
133
134	val = readl_relaxed(addr + lo_offset);
135	val |= (hi_offset < 0) ? 0 :
136	       (u64)readl_relaxed(addr + hi_offset) << 32;
137	return val;
138}
139
140static inline void coresight_write_reg_pair(void __iomem *addr, u64 val,
141						 s32 lo_offset, s32 hi_offset)
142{
143	writel_relaxed((u32)val, addr + lo_offset);
144	if (hi_offset >= 0)
145		writel_relaxed((u32)(val >> 32), addr + hi_offset);
146}
147
148void coresight_disable_path(struct list_head *path);
149int coresight_enable_path(struct list_head *path, u32 mode, void *sink_data);
 
150struct coresight_device *coresight_get_sink(struct list_head *path);
151struct coresight_device *coresight_get_enabled_sink(bool reset);
152struct coresight_device *coresight_get_sink_by_id(u32 id);
153struct coresight_device *
154coresight_find_default_sink(struct coresight_device *csdev);
155struct list_head *coresight_build_path(struct coresight_device *csdev,
156				       struct coresight_device *sink);
157void coresight_release_path(struct list_head *path);
158int coresight_add_sysfs_link(struct coresight_sysfs_link *info);
159void coresight_remove_sysfs_link(struct coresight_sysfs_link *info);
160int coresight_create_conns_sysfs_group(struct coresight_device *csdev);
161void coresight_remove_conns_sysfs_group(struct coresight_device *csdev);
162int coresight_make_links(struct coresight_device *orig,
163			 struct coresight_connection *conn,
164			 struct coresight_device *target);
165void coresight_remove_links(struct coresight_device *orig,
166			    struct coresight_connection *conn);
 
167
168#ifdef CONFIG_CORESIGHT_SOURCE_ETM3X
169extern int etm_readl_cp14(u32 off, unsigned int *val);
170extern int etm_writel_cp14(u32 off, u32 val);
171#else
172static inline int etm_readl_cp14(u32 off, unsigned int *val) { return 0; }
173static inline int etm_writel_cp14(u32 off, u32 val) { return 0; }
174#endif
175
176#ifdef CONFIG_CORESIGHT_CTI
177extern void cti_add_assoc_to_csdev(struct coresight_device *csdev);
178extern void cti_remove_assoc_from_csdev(struct coresight_device *csdev);
 
179
180#else
181static inline void cti_add_assoc_to_csdev(struct coresight_device *csdev) {}
182static inline void
183cti_remove_assoc_from_csdev(struct coresight_device *csdev) {}
184#endif
185
186/*
187 * Macros and inline functions to handle CoreSight UCI data and driver
188 * private data in AMBA ID table entries, and extract data values.
189 */
190
191/* coresight AMBA ID, no UCI, no driver data: id table entry */
192#define CS_AMBA_ID(pid)			\
193	{				\
194		.id	= pid,		\
195		.mask	= 0x000fffff,	\
196	}
197
198/* coresight AMBA ID, UCI with driver data only: id table entry. */
199#define CS_AMBA_ID_DATA(pid, dval)				\
200	{							\
201		.id	= pid,					\
202		.mask	= 0x000fffff,				\
203		.data	=  (void *)&(struct amba_cs_uci_id)	\
204			{				\
205				.data = (void *)dval,	\
206			}				\
207	}
208
209/* coresight AMBA ID, full UCI structure: id table entry. */
210#define CS_AMBA_UCI_ID(pid, uci_ptr)		\
211	{					\
212		.id	= pid,			\
213		.mask	= 0x000fffff,		\
214		.data	= (void *)uci_ptr	\
215	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
217/* extract the data value from a UCI structure given amba_id pointer. */
218static inline void *coresight_get_uci_data(const struct amba_id *id)
219{
220	struct amba_cs_uci_id *uci_id = id->data;
221
222	if (!uci_id)
223		return NULL;
224
225	return uci_id->data;
226}
227
 
 
 
 
 
 
 
 
 
 
228void coresight_release_platform_data(struct coresight_device *csdev,
 
229				     struct coresight_platform_data *pdata);
230struct coresight_device *
231coresight_find_csdev_by_fwnode(struct fwnode_handle *r_fwnode);
232void coresight_set_assoc_ectdev_mutex(struct coresight_device *csdev,
233				      struct coresight_device *ect_csdev);
 
 
 
 
234
235#endif