1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright(C) 2015 Linaro Limited. All rights reserved.
7 #ifndef _CORESIGHT_TMC_H
8 #define _CORESIGHT_TMC_H
10 #include <linux/dma-mapping.h>
11 #include <linux/miscdevice.h>
21 #define TMC_MODE 0x028
22 #define TMC_LBUFLEVEL 0x02c
23 #define TMC_CBUFLEVEL 0x030
24 #define TMC_BUFWM 0x034
25 #define TMC_RRPHI 0x038
26 #define TMC_RWPHI 0x03c
27 #define TMC_AXICTL 0x110
28 #define TMC_DBALO 0x118
29 #define TMC_DBAHI 0x11c
30 #define TMC_FFSR 0x300
31 #define TMC_FFCR 0x304
32 #define TMC_PSCR 0x308
33 #define TMC_ITMISCOP0 0xee0
34 #define TMC_ITTRFLIN 0xee8
35 #define TMC_ITATBDATA0 0xeec
36 #define TMC_ITATBCTR2 0xef0
37 #define TMC_ITATBCTR1 0xef4
38 #define TMC_ITATBCTR0 0xef8
40 /* register description */
42 #define TMC_CTL_CAPT_EN BIT(0)
44 #define TMC_STS_TMCREADY_BIT 2
45 #define TMC_STS_FULL BIT(0)
46 #define TMC_STS_TRIGGERED BIT(1)
50 * TMC AXICTL format for SoC-400
51 * Bits [0-1] : ProtCtrlBit0-1
52 * Bits [2-5] : CacheCtrlBits 0-3 (AXCACHE)
54 * Bit 7 : ScatterGatherMode
55 * Bits [8-11] : WrBurstLen
56 * Bits [12-31] : Reserved.
57 * TMC AXICTL format for SoC-600, as above except:
58 * Bits [2-5] : AXI WCACHE
59 * Bits [16-19] : AXI RCACHE
60 * Bits [20-31] : Reserved
62 #define TMC_AXICTL_CLEAR_MASK 0xfbf
63 #define TMC_AXICTL_ARCACHE_MASK (0xf << 16)
65 #define TMC_AXICTL_PROT_CTL_B0 BIT(0)
66 #define TMC_AXICTL_PROT_CTL_B1 BIT(1)
67 #define TMC_AXICTL_SCT_GAT_MODE BIT(7)
68 #define TMC_AXICTL_WR_BURST_16 0xF00
69 /* Write-back Read and Write-allocate */
70 #define TMC_AXICTL_AXCACHE_OS (0xf << 2)
71 #define TMC_AXICTL_ARCACHE_OS (0xf << 16)
73 /* TMC_FFCR - 0x304 */
74 #define TMC_FFCR_FLUSHMAN_BIT 6
75 #define TMC_FFCR_EN_FMT BIT(0)
76 #define TMC_FFCR_EN_TI BIT(1)
77 #define TMC_FFCR_FON_FLIN BIT(4)
78 #define TMC_FFCR_FON_TRIG_EVT BIT(5)
79 #define TMC_FFCR_TRIGON_TRIGIN BIT(8)
80 #define TMC_FFCR_STOP_ON_FLUSH BIT(12)
83 #define TMC_DEVID_NOSCAT BIT(24)
85 #define TMC_DEVID_AXIAW_VALID BIT(16)
86 #define TMC_DEVID_AXIAW_SHIFT 17
87 #define TMC_DEVID_AXIAW_MASK 0x7f
89 enum tmc_config_type {
96 TMC_MODE_CIRCULAR_BUFFER,
97 TMC_MODE_SOFTWARE_FIFO,
98 TMC_MODE_HARDWARE_FIFO,
101 enum tmc_mem_intf_width {
102 TMC_MEM_INTF_WIDTH_32BITS = 1,
103 TMC_MEM_INTF_WIDTH_64BITS = 2,
104 TMC_MEM_INTF_WIDTH_128BITS = 4,
105 TMC_MEM_INTF_WIDTH_256BITS = 8,
108 /* TMC ETR Capability bit definitions */
109 #define TMC_ETR_SG (0x1U << 0)
110 /* ETR has separate read/write cache encodings */
111 #define TMC_ETR_AXI_ARCACHE (0x1U << 1)
113 * TMC_ETR_SAVE_RESTORE - Values of RRP/RWP/STS.Full are
114 * retained when TMC leaves Disabled state, allowing us to continue
115 * the tracing from a point where we stopped. This also implies that
116 * the RRP/RWP/STS.Full should always be programmed to the correct
117 * value. Unfortunately this is not advertised by the hardware,
118 * so we have to rely on PID of the IP to detect the functionality.
120 #define TMC_ETR_SAVE_RESTORE (0x1U << 2)
122 /* Coresight SoC-600 TMC-ETR unadvertised capabilities */
123 #define CORESIGHT_SOC_600_ETR_CAPS \
124 (TMC_ETR_SAVE_RESTORE | TMC_ETR_AXI_ARCACHE)
127 ETR_MODE_FLAT, /* Uses contiguous flat buffer */
128 ETR_MODE_ETR_SG, /* Uses in-built TMC ETR SG mechanism */
129 ETR_MODE_CATU, /* Use SG mechanism in CATU */
132 struct etr_buf_operations;
135 * struct etr_buf - Details of the buffer used by ETR
136 * @mode : Mode of the ETR buffer, contiguous, Scatter Gather etc.
137 * @full : Trace data overflow
138 * @size : Size of the buffer.
139 * @hwaddr : Address to be programmed in the TMC:DBA{LO,HI}
140 * @offset : Offset of the trace data in the buffer for consumption.
141 * @len : Available trace data @buf (may round up to the beginning).
142 * @ops : ETR buffer operations for the mode.
143 * @private : Backend specific information for the buf
150 unsigned long offset;
152 const struct etr_buf_operations *ops;
157 * struct tmc_drvdata - specifics associated to an TMC component
158 * @base: memory mapped base address for this component.
159 * @dev: the device entity associated to this component.
160 * @csdev: component vitals needed by the framework.
161 * @miscdev: specifics to handle "/dev/xyz.tmc" entry.
162 * @spinlock: only one at a time pls.
163 * @buf: Snapshot of the trace data for ETF/ETB.
164 * @etr_buf: details of buffer used in TMC-ETR
165 * @len: size of the available trace for ETF/ETB.
166 * @size: trace buffer size for this TMC (common for all modes).
167 * @mode: how this TMC is being used.
168 * @config_type: TMC variant, must be of type @tmc_config_type.
169 * @memwidth: width of the memory interface databus, in bytes.
170 * @trigger_cntr: amount of words to store after a trigger.
171 * @etr_caps: Bitmask of capabilities of the TMC ETR, inferred from the
172 * device configuration register (DEVID)
173 * @perf_data: PERF buffer for ETR.
174 * @sysfs_data: SYSFS buffer for ETR.
179 struct coresight_device *csdev;
180 struct miscdevice miscdev;
184 char *buf; /* TMC ETB */
185 struct etr_buf *etr_buf; /* TMC ETR */
190 enum tmc_config_type config_type;
191 enum tmc_mem_intf_width memwidth;
194 struct etr_buf *sysfs_buf;
198 struct etr_buf_operations {
199 int (*alloc)(struct tmc_drvdata *drvdata, struct etr_buf *etr_buf,
200 int node, void **pages);
201 void (*sync)(struct etr_buf *etr_buf, u64 rrp, u64 rwp);
202 ssize_t (*get_data)(struct etr_buf *etr_buf, u64 offset, size_t len,
204 void (*free)(struct etr_buf *etr_buf);
208 * struct tmc_pages - Collection of pages used for SG.
209 * @nr_pages: Number of pages in the list.
210 * @daddrs: Array of DMA'able page address.
211 * @pages: Array pages for the buffer.
220 * struct tmc_sg_table - Generic SG table for TMC
221 * @dev: Device for DMA allocations
222 * @table_vaddr: Contiguous Virtual address for PageTable
223 * @data_vaddr: Contiguous Virtual address for Data Buffer
224 * @table_daddr: DMA address of the PageTable base
225 * @node: Node for Page allocations
226 * @table_pages: List of pages & dma address for Table
227 * @data_pages: List of pages & dma address for Data
229 struct tmc_sg_table {
233 dma_addr_t table_daddr;
235 struct tmc_pages table_pages;
236 struct tmc_pages data_pages;
239 /* Generic functions */
240 void tmc_wait_for_tmcready(struct tmc_drvdata *drvdata);
241 void tmc_flush_and_stop(struct tmc_drvdata *drvdata);
242 void tmc_enable_hw(struct tmc_drvdata *drvdata);
243 void tmc_disable_hw(struct tmc_drvdata *drvdata);
245 /* ETB/ETF functions */
246 int tmc_read_prepare_etb(struct tmc_drvdata *drvdata);
247 int tmc_read_unprepare_etb(struct tmc_drvdata *drvdata);
248 extern const struct coresight_ops tmc_etb_cs_ops;
249 extern const struct coresight_ops tmc_etf_cs_ops;
251 ssize_t tmc_etb_get_sysfs_trace(struct tmc_drvdata *drvdata,
252 loff_t pos, size_t len, char **bufpp);
254 int tmc_read_prepare_etr(struct tmc_drvdata *drvdata);
255 int tmc_read_unprepare_etr(struct tmc_drvdata *drvdata);
256 extern const struct coresight_ops tmc_etr_cs_ops;
257 ssize_t tmc_etr_get_sysfs_trace(struct tmc_drvdata *drvdata,
258 loff_t pos, size_t len, char **bufpp);
261 #define TMC_REG_PAIR(name, lo_off, hi_off) \
263 tmc_read_##name(struct tmc_drvdata *drvdata) \
265 return coresight_read_reg_pair(drvdata->base, lo_off, hi_off); \
268 tmc_write_##name(struct tmc_drvdata *drvdata, u64 val) \
270 coresight_write_reg_pair(drvdata->base, val, lo_off, hi_off); \
273 TMC_REG_PAIR(rrp, TMC_RRP, TMC_RRPHI)
274 TMC_REG_PAIR(rwp, TMC_RWP, TMC_RWPHI)
275 TMC_REG_PAIR(dba, TMC_DBALO, TMC_DBAHI)
277 /* Initialise the caps from unadvertised static capabilities of the device */
278 static inline void tmc_etr_init_caps(struct tmc_drvdata *drvdata, u32 dev_caps)
280 WARN_ON(drvdata->etr_caps);
281 drvdata->etr_caps = dev_caps;
284 static inline void tmc_etr_set_cap(struct tmc_drvdata *drvdata, u32 cap)
286 drvdata->etr_caps |= cap;
289 static inline bool tmc_etr_has_cap(struct tmc_drvdata *drvdata, u32 cap)
291 return !!(drvdata->etr_caps & cap);
294 struct tmc_sg_table *tmc_alloc_sg_table(struct device *dev,
299 void tmc_free_sg_table(struct tmc_sg_table *sg_table);
300 void tmc_sg_table_sync_table(struct tmc_sg_table *sg_table);
301 void tmc_sg_table_sync_data_range(struct tmc_sg_table *table,
302 u64 offset, u64 size);
303 ssize_t tmc_sg_table_get_data(struct tmc_sg_table *sg_table,
304 u64 offset, size_t len, char **bufpp);
305 static inline unsigned long
306 tmc_sg_table_buf_size(struct tmc_sg_table *sg_table)
308 return sg_table->data_pages.nr_pages << PAGE_SHIFT;
311 struct coresight_device *tmc_etr_get_catu_device(struct tmc_drvdata *drvdata);