blob: 83358ebad762ae86341bc431c58c4b72baf8b4c6 [file] [log] [blame]
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001/* Copyright (c) 2014, 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#include <linux/kernel.h>
14#include <linux/moduleparam.h>
15#include <linux/init.h>
16#include <linux/types.h>
17#include <linux/device.h>
18#include <linux/io.h>
19#include <linux/err.h>
20#include <linux/fs.h>
21#include <linux/slab.h>
22#include <linux/delay.h>
23#include <linux/smp.h>
24#include <linux/sysfs.h>
25#include <linux/stat.h>
26#include <linux/clk.h>
27#include <linux/cpu.h>
28#include <linux/coresight.h>
Mathieu Poirierfc208ab2016-04-05 11:53:45 -060029#include <linux/coresight-pmu.h>
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060030#include <linux/pm_wakeup.h>
31#include <linux/amba/bus.h>
32#include <linux/seq_file.h>
33#include <linux/uaccess.h>
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -060034#include <linux/perf_event.h>
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060035#include <linux/pm_runtime.h>
36#include <asm/sections.h>
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -060037#include <asm/local.h>
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060038
39#include "coresight-etm4x.h"
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -060040#include "coresight-etm-perf.h"
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060041
42static int boot_enable;
43module_param_named(boot_enable, boot_enable, int, S_IRUGO);
44
45/* The number of ETMv4 currently registered */
46static int etm4_count;
47static struct etmv4_drvdata *etmdrvdata[NR_CPUS];
Mathieu Poirier2703d742016-08-25 15:19:17 -060048static void etm4_set_default_config(struct etmv4_config *config);
49static int etm4_set_event_filters(struct etmv4_drvdata *drvdata,
50 struct perf_event *event);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060051
Sebastian Andrzej Siewior58eb4572016-07-13 17:16:55 +000052static enum cpuhp_state hp_online;
53
Mathieu Poirier66bbbb72016-04-05 11:53:46 -060054static void etm4_os_unlock(struct etmv4_drvdata *drvdata)
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060055{
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060056 /* Writing any value to ETMOSLAR unlocks the trace registers */
57 writel_relaxed(0x0, drvdata->base + TRCOSLAR);
Mathieu Poirier66bbbb72016-04-05 11:53:46 -060058 drvdata->os_unlock = true;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060059 isb();
60}
61
62static bool etm4_arch_supported(u8 arch)
63{
64 switch (arch) {
65 case ETM_ARCH_V4:
66 break;
67 default:
68 return false;
69 }
70 return true;
71}
72
Mathieu Poirier52210c82016-02-02 14:14:01 -070073static int etm4_cpu_id(struct coresight_device *csdev)
74{
75 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
76
77 return drvdata->cpu;
78}
79
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060080static int etm4_trace_id(struct coresight_device *csdev)
81{
82 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060083
Sudeep Hollab1149ad2016-08-25 15:18:53 -060084 return drvdata->trcid;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060085}
86
87static void etm4_enable_hw(void *info)
88{
89 int i;
90 struct etmv4_drvdata *drvdata = info;
Mathieu Poirier54ff8922016-04-05 11:53:44 -060091 struct etmv4_config *config = &drvdata->config;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -060092
93 CS_UNLOCK(drvdata->base);
94
95 etm4_os_unlock(drvdata);
96
97 /* Disable the trace unit before programming trace registers */
98 writel_relaxed(0, drvdata->base + TRCPRGCTLR);
99
100 /* wait for TRCSTATR.IDLE to go up */
101 if (coresight_timeout(drvdata->base, TRCSTATR, TRCSTATR_IDLE_BIT, 1))
102 dev_err(drvdata->dev,
Suzuki K Poulose67337e82016-08-25 15:19:00 -0600103 "timeout while waiting for Idle Trace Status\n");
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600104
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600105 writel_relaxed(config->pe_sel, drvdata->base + TRCPROCSELR);
106 writel_relaxed(config->cfg, drvdata->base + TRCCONFIGR);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600107 /* nothing specific implemented */
108 writel_relaxed(0x0, drvdata->base + TRCAUXCTLR);
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600109 writel_relaxed(config->eventctrl0, drvdata->base + TRCEVENTCTL0R);
110 writel_relaxed(config->eventctrl1, drvdata->base + TRCEVENTCTL1R);
111 writel_relaxed(config->stall_ctrl, drvdata->base + TRCSTALLCTLR);
112 writel_relaxed(config->ts_ctrl, drvdata->base + TRCTSCTLR);
113 writel_relaxed(config->syncfreq, drvdata->base + TRCSYNCPR);
114 writel_relaxed(config->ccctlr, drvdata->base + TRCCCCTLR);
115 writel_relaxed(config->bb_ctrl, drvdata->base + TRCBBCTLR);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600116 writel_relaxed(drvdata->trcid, drvdata->base + TRCTRACEIDR);
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600117 writel_relaxed(config->vinst_ctrl, drvdata->base + TRCVICTLR);
118 writel_relaxed(config->viiectlr, drvdata->base + TRCVIIECTLR);
119 writel_relaxed(config->vissctlr,
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600120 drvdata->base + TRCVISSCTLR);
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600121 writel_relaxed(config->vipcssctlr,
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600122 drvdata->base + TRCVIPCSSCTLR);
123 for (i = 0; i < drvdata->nrseqstate - 1; i++)
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600124 writel_relaxed(config->seq_ctrl[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600125 drvdata->base + TRCSEQEVRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600126 writel_relaxed(config->seq_rst, drvdata->base + TRCSEQRSTEVR);
127 writel_relaxed(config->seq_state, drvdata->base + TRCSEQSTR);
128 writel_relaxed(config->ext_inp, drvdata->base + TRCEXTINSELR);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600129 for (i = 0; i < drvdata->nr_cntr; i++) {
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600130 writel_relaxed(config->cntrldvr[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600131 drvdata->base + TRCCNTRLDVRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600132 writel_relaxed(config->cntr_ctrl[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600133 drvdata->base + TRCCNTCTLRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600134 writel_relaxed(config->cntr_val[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600135 drvdata->base + TRCCNTVRn(i));
136 }
Chunyan Zhang497b5952015-10-07 09:26:38 -0600137
138 /* Resource selector pair 0 is always implemented and reserved */
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600139 for (i = 0; i < drvdata->nr_resource * 2; i++)
140 writel_relaxed(config->res_ctrl[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600141 drvdata->base + TRCRSCTLRn(i));
142
143 for (i = 0; i < drvdata->nr_ss_cmp; i++) {
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600144 writel_relaxed(config->ss_ctrl[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600145 drvdata->base + TRCSSCCRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600146 writel_relaxed(config->ss_status[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600147 drvdata->base + TRCSSCSRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600148 writel_relaxed(config->ss_pe_cmp[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600149 drvdata->base + TRCSSPCICRn(i));
150 }
151 for (i = 0; i < drvdata->nr_addr_cmp; i++) {
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600152 writeq_relaxed(config->addr_val[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600153 drvdata->base + TRCACVRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600154 writeq_relaxed(config->addr_acc[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600155 drvdata->base + TRCACATRn(i));
156 }
157 for (i = 0; i < drvdata->numcidc; i++)
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600158 writeq_relaxed(config->ctxid_pid[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600159 drvdata->base + TRCCIDCVRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600160 writel_relaxed(config->ctxid_mask0, drvdata->base + TRCCIDCCTLR0);
161 writel_relaxed(config->ctxid_mask1, drvdata->base + TRCCIDCCTLR1);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600162
163 for (i = 0; i < drvdata->numvmidc; i++)
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600164 writeq_relaxed(config->vmid_val[i],
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600165 drvdata->base + TRCVMIDCVRn(i));
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600166 writel_relaxed(config->vmid_mask0, drvdata->base + TRCVMIDCCTLR0);
167 writel_relaxed(config->vmid_mask1, drvdata->base + TRCVMIDCCTLR1);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600168
Sudeep Holla46a3d5c2016-08-25 15:19:08 -0600169 /*
170 * Request to keep the trace unit powered and also
171 * emulation of powerdown
172 */
173 writel_relaxed(readl_relaxed(drvdata->base + TRCPDCR) | TRCPDCR_PU,
174 drvdata->base + TRCPDCR);
175
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600176 /* Enable the trace unit */
177 writel_relaxed(1, drvdata->base + TRCPRGCTLR);
178
179 /* wait for TRCSTATR.IDLE to go back down to '0' */
180 if (coresight_timeout(drvdata->base, TRCSTATR, TRCSTATR_IDLE_BIT, 0))
181 dev_err(drvdata->dev,
Suzuki K Poulose67337e82016-08-25 15:19:00 -0600182 "timeout while waiting for Idle Trace Status\n");
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600183
184 CS_LOCK(drvdata->base);
185
186 dev_dbg(drvdata->dev, "cpu: %d enable smp call done\n", drvdata->cpu);
187}
188
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600189static int etm4_parse_event_config(struct etmv4_drvdata *drvdata,
Mathieu Poirier68905d72016-08-25 15:19:10 -0600190 struct perf_event *event)
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600191{
Mathieu Poirier2703d742016-08-25 15:19:17 -0600192 int ret = 0;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600193 struct etmv4_config *config = &drvdata->config;
Mathieu Poirier68905d72016-08-25 15:19:10 -0600194 struct perf_event_attr *attr = &event->attr;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600195
Mathieu Poirier2703d742016-08-25 15:19:17 -0600196 if (!attr) {
197 ret = -EINVAL;
198 goto out;
199 }
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600200
201 /* Clear configuration from previous run */
202 memset(config, 0, sizeof(struct etmv4_config));
203
204 if (attr->exclude_kernel)
205 config->mode = ETM_MODE_EXCL_KERN;
206
207 if (attr->exclude_user)
208 config->mode = ETM_MODE_EXCL_USER;
209
210 /* Always start from the default config */
Mathieu Poirier2703d742016-08-25 15:19:17 -0600211 etm4_set_default_config(config);
212
213 /* Configure filters specified on the perf cmd line, if any. */
214 ret = etm4_set_event_filters(drvdata, event);
215 if (ret)
216 goto out;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600217
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600218 /* Go from generic option to ETMv4 specifics */
219 if (attr->config & BIT(ETM_OPT_CYCACC))
220 config->cfg |= ETMv4_MODE_CYCACC;
221 if (attr->config & BIT(ETM_OPT_TS))
222 config->cfg |= ETMv4_MODE_TIMESTAMP;
223
Mathieu Poirier2703d742016-08-25 15:19:17 -0600224out:
225 return ret;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600226}
227
228static int etm4_enable_perf(struct coresight_device *csdev,
Mathieu Poirier68905d72016-08-25 15:19:10 -0600229 struct perf_event *event)
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600230{
Mathieu Poirier2703d742016-08-25 15:19:17 -0600231 int ret = 0;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600232 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
233
Mathieu Poirier2703d742016-08-25 15:19:17 -0600234 if (WARN_ON_ONCE(drvdata->cpu != smp_processor_id())) {
235 ret = -EINVAL;
236 goto out;
237 }
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600238
239 /* Configure the tracer based on the session's specifics */
Mathieu Poirier2703d742016-08-25 15:19:17 -0600240 ret = etm4_parse_event_config(drvdata, event);
241 if (ret)
242 goto out;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600243 /* And enable it */
244 etm4_enable_hw(drvdata);
245
Mathieu Poirier2703d742016-08-25 15:19:17 -0600246out:
247 return ret;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600248}
249
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600250static int etm4_enable_sysfs(struct coresight_device *csdev)
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600251{
252 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
253 int ret;
254
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600255 spin_lock(&drvdata->spinlock);
256
257 /*
258 * Executing etm4_enable_hw on the cpu whose ETM is being enabled
259 * ensures that register writes occur when cpu is powered.
260 */
261 ret = smp_call_function_single(drvdata->cpu,
262 etm4_enable_hw, drvdata, 1);
263 if (ret)
264 goto err;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600265
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600266 drvdata->sticky_enable = true;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600267 spin_unlock(&drvdata->spinlock);
268
269 dev_info(drvdata->dev, "ETM tracing enabled\n");
270 return 0;
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600271
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600272err:
273 spin_unlock(&drvdata->spinlock);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600274 return ret;
275}
276
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600277static int etm4_enable(struct coresight_device *csdev,
Mathieu Poirier68905d72016-08-25 15:19:10 -0600278 struct perf_event *event, u32 mode)
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600279{
280 int ret;
281 u32 val;
282 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
283
284 val = local_cmpxchg(&drvdata->mode, CS_MODE_DISABLED, mode);
285
286 /* Someone is already using the tracer */
287 if (val)
288 return -EBUSY;
289
290 switch (mode) {
291 case CS_MODE_SYSFS:
292 ret = etm4_enable_sysfs(csdev);
293 break;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600294 case CS_MODE_PERF:
Mathieu Poirier68905d72016-08-25 15:19:10 -0600295 ret = etm4_enable_perf(csdev, event);
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600296 break;
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600297 default:
298 ret = -EINVAL;
299 }
300
301 /* The tracer didn't start */
302 if (ret)
303 local_set(&drvdata->mode, CS_MODE_DISABLED);
304
305 return ret;
306}
307
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600308static void etm4_disable_hw(void *info)
309{
310 u32 control;
311 struct etmv4_drvdata *drvdata = info;
312
313 CS_UNLOCK(drvdata->base);
314
Sudeep Holla46a3d5c2016-08-25 15:19:08 -0600315 /* power can be removed from the trace unit now */
316 control = readl_relaxed(drvdata->base + TRCPDCR);
317 control &= ~TRCPDCR_PU;
318 writel_relaxed(control, drvdata->base + TRCPDCR);
319
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600320 control = readl_relaxed(drvdata->base + TRCPRGCTLR);
321
322 /* EN, bit[0] Trace unit enable bit */
323 control &= ~0x1;
324
325 /* make sure everything completes before disabling */
326 mb();
327 isb();
328 writel_relaxed(control, drvdata->base + TRCPRGCTLR);
329
330 CS_LOCK(drvdata->base);
331
332 dev_dbg(drvdata->dev, "cpu: %d disable smp call done\n", drvdata->cpu);
333}
334
Mathieu Poirier68905d72016-08-25 15:19:10 -0600335static int etm4_disable_perf(struct coresight_device *csdev,
336 struct perf_event *event)
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600337{
Mathieu Poiriere97b1c62016-08-25 15:19:18 -0600338 u32 control;
339 struct etm_filters *filters = event->hw.addr_filters;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600340 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
341
342 if (WARN_ON_ONCE(drvdata->cpu != smp_processor_id()))
343 return -EINVAL;
344
345 etm4_disable_hw(drvdata);
Mathieu Poiriere97b1c62016-08-25 15:19:18 -0600346
347 /*
348 * Check if the start/stop logic was active when the unit was stopped.
349 * That way we can re-enable the start/stop logic when the process is
350 * scheduled again. Configuration of the start/stop logic happens in
351 * function etm4_set_event_filters().
352 */
353 control = readl_relaxed(drvdata->base + TRCVICTLR);
354 /* TRCVICTLR::SSSTATUS, bit[9] */
355 filters->ssstatus = (control & BIT(9));
356
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600357 return 0;
358}
359
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600360static void etm4_disable_sysfs(struct coresight_device *csdev)
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600361{
362 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
363
364 /*
365 * Taking hotplug lock here protects from clocks getting disabled
366 * with tracing being left on (crash scenario) if user disable occurs
367 * after cpu online mask indicates the cpu is offline but before the
368 * DYING hotplug callback is serviced by the ETM driver.
369 */
370 get_online_cpus();
371 spin_lock(&drvdata->spinlock);
372
373 /*
374 * Executing etm4_disable_hw on the cpu whose ETM is being disabled
375 * ensures that register writes occur when cpu is powered.
376 */
377 smp_call_function_single(drvdata->cpu, etm4_disable_hw, drvdata, 1);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600378
379 spin_unlock(&drvdata->spinlock);
380 put_online_cpus();
381
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600382 dev_info(drvdata->dev, "ETM tracing disabled\n");
383}
384
Mathieu Poirier68905d72016-08-25 15:19:10 -0600385static void etm4_disable(struct coresight_device *csdev,
386 struct perf_event *event)
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600387{
388 u32 mode;
389 struct etmv4_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
390
391 /*
392 * For as long as the tracer isn't disabled another entity can't
393 * change its status. As such we can read the status here without
394 * fearing it will change under us.
395 */
396 mode = local_read(&drvdata->mode);
397
398 switch (mode) {
399 case CS_MODE_DISABLED:
400 break;
401 case CS_MODE_SYSFS:
402 etm4_disable_sysfs(csdev);
403 break;
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600404 case CS_MODE_PERF:
Mathieu Poirier68905d72016-08-25 15:19:10 -0600405 etm4_disable_perf(csdev, event);
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -0600406 break;
Mathieu Poirierc38a9ec2016-04-05 11:53:47 -0600407 }
408
409 if (mode)
410 local_set(&drvdata->mode, CS_MODE_DISABLED);
411}
412
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600413static const struct coresight_ops_source etm4_source_ops = {
Mathieu Poirier52210c82016-02-02 14:14:01 -0700414 .cpu_id = etm4_cpu_id,
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600415 .trace_id = etm4_trace_id,
416 .enable = etm4_enable,
417 .disable = etm4_disable,
418};
419
420static const struct coresight_ops etm4_cs_ops = {
421 .source_ops = &etm4_source_ops,
422};
423
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600424static void etm4_init_arch_data(void *info)
425{
426 u32 etmidr0;
427 u32 etmidr1;
428 u32 etmidr2;
429 u32 etmidr3;
430 u32 etmidr4;
431 u32 etmidr5;
432 struct etmv4_drvdata *drvdata = info;
433
Mathieu Poirier66bbbb72016-04-05 11:53:46 -0600434 /* Make sure all registers are accessible */
435 etm4_os_unlock(drvdata);
436
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600437 CS_UNLOCK(drvdata->base);
438
439 /* find all capabilities of the tracing unit */
440 etmidr0 = readl_relaxed(drvdata->base + TRCIDR0);
441
442 /* INSTP0, bits[2:1] P0 tracing support field */
443 if (BMVAL(etmidr0, 1, 1) && BMVAL(etmidr0, 2, 2))
444 drvdata->instrp0 = true;
445 else
446 drvdata->instrp0 = false;
447
448 /* TRCBB, bit[5] Branch broadcast tracing support bit */
449 if (BMVAL(etmidr0, 5, 5))
450 drvdata->trcbb = true;
451 else
452 drvdata->trcbb = false;
453
454 /* TRCCOND, bit[6] Conditional instruction tracing support bit */
455 if (BMVAL(etmidr0, 6, 6))
456 drvdata->trccond = true;
457 else
458 drvdata->trccond = false;
459
460 /* TRCCCI, bit[7] Cycle counting instruction bit */
461 if (BMVAL(etmidr0, 7, 7))
462 drvdata->trccci = true;
463 else
464 drvdata->trccci = false;
465
466 /* RETSTACK, bit[9] Return stack bit */
467 if (BMVAL(etmidr0, 9, 9))
468 drvdata->retstack = true;
469 else
470 drvdata->retstack = false;
471
472 /* NUMEVENT, bits[11:10] Number of events field */
473 drvdata->nr_event = BMVAL(etmidr0, 10, 11);
474 /* QSUPP, bits[16:15] Q element support field */
475 drvdata->q_support = BMVAL(etmidr0, 15, 16);
476 /* TSSIZE, bits[28:24] Global timestamp size field */
477 drvdata->ts_size = BMVAL(etmidr0, 24, 28);
478
479 /* base architecture of trace unit */
480 etmidr1 = readl_relaxed(drvdata->base + TRCIDR1);
481 /*
482 * TRCARCHMIN, bits[7:4] architecture the minor version number
483 * TRCARCHMAJ, bits[11:8] architecture major versin number
484 */
485 drvdata->arch = BMVAL(etmidr1, 4, 11);
486
487 /* maximum size of resources */
488 etmidr2 = readl_relaxed(drvdata->base + TRCIDR2);
489 /* CIDSIZE, bits[9:5] Indicates the Context ID size */
490 drvdata->ctxid_size = BMVAL(etmidr2, 5, 9);
491 /* VMIDSIZE, bits[14:10] Indicates the VMID size */
492 drvdata->vmid_size = BMVAL(etmidr2, 10, 14);
493 /* CCSIZE, bits[28:25] size of the cycle counter in bits minus 12 */
494 drvdata->ccsize = BMVAL(etmidr2, 25, 28);
495
496 etmidr3 = readl_relaxed(drvdata->base + TRCIDR3);
497 /* CCITMIN, bits[11:0] minimum threshold value that can be programmed */
498 drvdata->ccitmin = BMVAL(etmidr3, 0, 11);
499 /* EXLEVEL_S, bits[19:16] Secure state instruction tracing */
500 drvdata->s_ex_level = BMVAL(etmidr3, 16, 19);
501 /* EXLEVEL_NS, bits[23:20] Non-secure state instruction tracing */
502 drvdata->ns_ex_level = BMVAL(etmidr3, 20, 23);
503
504 /*
505 * TRCERR, bit[24] whether a trace unit can trace a
506 * system error exception.
507 */
508 if (BMVAL(etmidr3, 24, 24))
509 drvdata->trc_error = true;
510 else
511 drvdata->trc_error = false;
512
513 /* SYNCPR, bit[25] implementation has a fixed synchronization period? */
514 if (BMVAL(etmidr3, 25, 25))
515 drvdata->syncpr = true;
516 else
517 drvdata->syncpr = false;
518
519 /* STALLCTL, bit[26] is stall control implemented? */
520 if (BMVAL(etmidr3, 26, 26))
521 drvdata->stallctl = true;
522 else
523 drvdata->stallctl = false;
524
525 /* SYSSTALL, bit[27] implementation can support stall control? */
526 if (BMVAL(etmidr3, 27, 27))
527 drvdata->sysstall = true;
528 else
529 drvdata->sysstall = false;
530
531 /* NUMPROC, bits[30:28] the number of PEs available for tracing */
532 drvdata->nr_pe = BMVAL(etmidr3, 28, 30);
533
534 /* NOOVERFLOW, bit[31] is trace overflow prevention supported */
535 if (BMVAL(etmidr3, 31, 31))
536 drvdata->nooverflow = true;
537 else
538 drvdata->nooverflow = false;
539
540 /* number of resources trace unit supports */
541 etmidr4 = readl_relaxed(drvdata->base + TRCIDR4);
542 /* NUMACPAIRS, bits[0:3] number of addr comparator pairs for tracing */
543 drvdata->nr_addr_cmp = BMVAL(etmidr4, 0, 3);
544 /* NUMPC, bits[15:12] number of PE comparator inputs for tracing */
545 drvdata->nr_pe_cmp = BMVAL(etmidr4, 12, 15);
Chunyan Zhang497b5952015-10-07 09:26:38 -0600546 /*
547 * NUMRSPAIR, bits[19:16]
548 * The number of resource pairs conveyed by the HW starts at 0, i.e a
549 * value of 0x0 indicate 1 resource pair, 0x1 indicate two and so on.
550 * As such add 1 to the value of NUMRSPAIR for a better representation.
551 */
552 drvdata->nr_resource = BMVAL(etmidr4, 16, 19) + 1;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600553 /*
554 * NUMSSCC, bits[23:20] the number of single-shot
555 * comparator control for tracing
556 */
557 drvdata->nr_ss_cmp = BMVAL(etmidr4, 20, 23);
558 /* NUMCIDC, bits[27:24] number of Context ID comparators for tracing */
559 drvdata->numcidc = BMVAL(etmidr4, 24, 27);
560 /* NUMVMIDC, bits[31:28] number of VMID comparators for tracing */
561 drvdata->numvmidc = BMVAL(etmidr4, 28, 31);
562
563 etmidr5 = readl_relaxed(drvdata->base + TRCIDR5);
564 /* NUMEXTIN, bits[8:0] number of external inputs implemented */
565 drvdata->nr_ext_inp = BMVAL(etmidr5, 0, 8);
566 /* TRACEIDSIZE, bits[21:16] indicates the trace ID width */
567 drvdata->trcid_size = BMVAL(etmidr5, 16, 21);
568 /* ATBTRIG, bit[22] implementation can support ATB triggers? */
569 if (BMVAL(etmidr5, 22, 22))
570 drvdata->atbtrig = true;
571 else
572 drvdata->atbtrig = false;
573 /*
574 * LPOVERRIDE, bit[23] implementation supports
575 * low-power state override
576 */
577 if (BMVAL(etmidr5, 23, 23))
578 drvdata->lpoverride = true;
579 else
580 drvdata->lpoverride = false;
581 /* NUMSEQSTATE, bits[27:25] number of sequencer states implemented */
582 drvdata->nrseqstate = BMVAL(etmidr5, 25, 27);
583 /* NUMCNTR, bits[30:28] number of counters available for tracing */
584 drvdata->nr_cntr = BMVAL(etmidr5, 28, 30);
585 CS_LOCK(drvdata->base);
586}
587
Mathieu Poirier2a5695a2016-08-25 15:19:13 -0600588static void etm4_set_default_config(struct etmv4_config *config)
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600589{
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600590 /* disable all events tracing */
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600591 config->eventctrl0 = 0x0;
592 config->eventctrl1 = 0x0;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600593
594 /* disable stalling */
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600595 config->stall_ctrl = 0x0;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600596
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600597 /* enable trace synchronization every 4096 bytes, if available */
598 config->syncfreq = 0xC;
599
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600600 /* disable timestamp event */
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600601 config->ts_ctrl = 0x0;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600602
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600603 /* TRCVICTLR::EVENT = 0x01, select the always on logic */
604 config->vinst_ctrl |= BIT(0);
Mathieu Poirier2a5695a2016-08-25 15:19:13 -0600605}
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600606
Mathieu Poirierf0d30cc2016-08-25 15:19:16 -0600607static u64 etm4_get_access_type(struct etmv4_config *config)
Mathieu Poirier2a5695a2016-08-25 15:19:13 -0600608{
Mathieu Poirier6cccf662016-08-25 15:19:15 -0600609 u64 access_type = 0;
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600610
Mathieu Poirierf0d30cc2016-08-25 15:19:16 -0600611 /*
612 * EXLEVEL_NS, bits[15:12]
613 * The Exception levels are:
614 * Bit[12] Exception level 0 - Application
615 * Bit[13] Exception level 1 - OS
616 * Bit[14] Exception level 2 - Hypervisor
617 * Bit[15] Never implemented
618 *
619 * Always stay away from hypervisor mode.
620 */
Mathieu Poirier5edd9442016-08-25 15:19:14 -0600621 access_type = ETM_EXLEVEL_NS_HYP;
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600622
Mathieu Poirierf0d30cc2016-08-25 15:19:16 -0600623 if (config->mode & ETM_MODE_EXCL_KERN)
624 access_type |= ETM_EXLEVEL_NS_OS;
625
626 if (config->mode & ETM_MODE_EXCL_USER)
627 access_type |= ETM_EXLEVEL_NS_APP;
628
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600629 /*
Mathieu Poirier5edd9442016-08-25 15:19:14 -0600630 * EXLEVEL_S, bits[11:8], don't trace anything happening
631 * in secure state.
632 */
633 access_type |= (ETM_EXLEVEL_S_APP |
634 ETM_EXLEVEL_S_OS |
635 ETM_EXLEVEL_S_HYP);
636
Mathieu Poirierf0d30cc2016-08-25 15:19:16 -0600637 return access_type;
638}
639
640static void etm4_set_comparator_filter(struct etmv4_config *config,
641 u64 start, u64 stop, int comparator)
642{
643 u64 access_type = etm4_get_access_type(config);
644
Mathieu Poirier5edd9442016-08-25 15:19:14 -0600645 /* First half of default address comparator */
Mathieu Poirier6cccf662016-08-25 15:19:15 -0600646 config->addr_val[comparator] = start;
647 config->addr_acc[comparator] = access_type;
648 config->addr_type[comparator] = ETM_ADDR_TYPE_RANGE;
Mathieu Poirier5edd9442016-08-25 15:19:14 -0600649
650 /* Second half of default address comparator */
Mathieu Poirier6cccf662016-08-25 15:19:15 -0600651 config->addr_val[comparator + 1] = stop;
652 config->addr_acc[comparator + 1] = access_type;
653 config->addr_type[comparator + 1] = ETM_ADDR_TYPE_RANGE;
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600654
655 /*
Mathieu Poirier6cccf662016-08-25 15:19:15 -0600656 * Configure the ViewInst function to include this address range
657 * comparator.
658 *
659 * @comparator is divided by two since it is the index in the
660 * etmv4_config::addr_val array but register TRCVIIECTLR deals with
661 * address range comparator _pairs_.
662 *
663 * Therefore:
664 * index 0 -> compatator pair 0
665 * index 2 -> comparator pair 1
666 * index 4 -> comparator pair 2
667 * ...
668 * index 14 -> comparator pair 7
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600669 */
Mathieu Poirier6cccf662016-08-25 15:19:15 -0600670 config->viiectlr |= BIT(comparator / 2);
671}
672
Mathieu Poiriere97b1c62016-08-25 15:19:18 -0600673static void etm4_set_start_stop_filter(struct etmv4_config *config,
674 u64 address, int comparator,
675 enum etm_addr_type type)
676{
677 int shift;
678 u64 access_type = etm4_get_access_type(config);
679
680 /* Configure the comparator */
681 config->addr_val[comparator] = address;
682 config->addr_acc[comparator] = access_type;
683 config->addr_type[comparator] = type;
684
685 /*
686 * Configure ViewInst Start-Stop control register.
687 * Addresses configured to start tracing go from bit 0 to n-1,
688 * while those configured to stop tracing from 16 to 16 + n-1.
689 */
690 shift = (type == ETM_ADDR_TYPE_START ? 0 : 16);
691 config->vissctlr |= BIT(shift + comparator);
692}
693
Mathieu Poirier6cccf662016-08-25 15:19:15 -0600694static void etm4_set_default_filter(struct etmv4_config *config)
695{
696 u64 start, stop;
697
698 /*
699 * Configure address range comparator '0' to encompass all
700 * possible addresses.
701 */
702 start = 0x0;
703 stop = ~0x0;
704
705 etm4_set_comparator_filter(config, start, stop,
706 ETM_DEFAULT_ADDR_COMP);
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600707
Mathieu Poirier5edd9442016-08-25 15:19:14 -0600708 /*
709 * TRCVICTLR::SSSTATUS == 1, the start-stop logic is
710 * in the started state
711 */
712 config->vinst_ctrl |= BIT(9);
713
714 /* No start-stop filtering for ViewInst */
Mathieu Poirier54ff8922016-04-05 11:53:44 -0600715 config->vissctlr = 0x0;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600716}
717
Mathieu Poirier2a5695a2016-08-25 15:19:13 -0600718static void etm4_set_default(struct etmv4_config *config)
719{
720 if (WARN_ON_ONCE(!config))
721 return;
722
723 /*
724 * Make default initialisation trace everything
725 *
726 * Select the "always true" resource selector on the
727 * "Enablign Event" line and configure address range comparator
728 * '0' to trace all the possible address range. From there
729 * configure the "include/exclude" engine to include address
730 * range comparator '0'.
731 */
732 etm4_set_default_config(config);
733 etm4_set_default_filter(config);
734}
735
Mathieu Poirier2703d742016-08-25 15:19:17 -0600736static int etm4_get_next_comparator(struct etmv4_drvdata *drvdata, u32 type)
737{
738 int nr_comparator, index = 0;
739 struct etmv4_config *config = &drvdata->config;
740
741 /*
742 * nr_addr_cmp holds the number of comparator _pair_, so time 2
743 * for the total number of comparators.
744 */
745 nr_comparator = drvdata->nr_addr_cmp * 2;
746
747 /* Go through the tally of comparators looking for a free one. */
748 while (index < nr_comparator) {
749 switch (type) {
750 case ETM_ADDR_TYPE_RANGE:
751 if (config->addr_type[index] == ETM_ADDR_TYPE_NONE &&
752 config->addr_type[index + 1] == ETM_ADDR_TYPE_NONE)
753 return index;
754
755 /* Address range comparators go in pairs */
756 index += 2;
757 break;
Mathieu Poiriere97b1c62016-08-25 15:19:18 -0600758 case ETM_ADDR_TYPE_START:
759 case ETM_ADDR_TYPE_STOP:
760 if (config->addr_type[index] == ETM_ADDR_TYPE_NONE)
761 return index;
762
763 /* Start/stop address can have odd indexes */
764 index += 1;
765 break;
Mathieu Poirier2703d742016-08-25 15:19:17 -0600766 default:
767 return -EINVAL;
768 }
769 }
770
771 /* If we are here all the comparators have been used. */
772 return -ENOSPC;
773}
774
775static int etm4_set_event_filters(struct etmv4_drvdata *drvdata,
776 struct perf_event *event)
777{
778 int i, comparator, ret = 0;
Mathieu Poiriere97b1c62016-08-25 15:19:18 -0600779 u64 address;
Mathieu Poirier2703d742016-08-25 15:19:17 -0600780 struct etmv4_config *config = &drvdata->config;
781 struct etm_filters *filters = event->hw.addr_filters;
782
783 if (!filters)
784 goto default_filter;
785
786 /* Sync events with what Perf got */
787 perf_event_addr_filters_sync(event);
788
789 /*
790 * If there are no filters to deal with simply go ahead with
791 * the default filter, i.e the entire address range.
792 */
793 if (!filters->nr_filters)
794 goto default_filter;
795
796 for (i = 0; i < filters->nr_filters; i++) {
797 struct etm_filter *filter = &filters->etm_filter[i];
798 enum etm_addr_type type = filter->type;
799
800 /* See if a comparator is free. */
801 comparator = etm4_get_next_comparator(drvdata, type);
802 if (comparator < 0) {
803 ret = comparator;
804 goto out;
805 }
806
807 switch (type) {
808 case ETM_ADDR_TYPE_RANGE:
809 etm4_set_comparator_filter(config,
810 filter->start_addr,
811 filter->stop_addr,
812 comparator);
813 /*
814 * TRCVICTLR::SSSTATUS == 1, the start-stop logic is
815 * in the started state
816 */
817 config->vinst_ctrl |= BIT(9);
818
819 /* No start-stop filtering for ViewInst */
820 config->vissctlr = 0x0;
821 break;
Mathieu Poiriere97b1c62016-08-25 15:19:18 -0600822 case ETM_ADDR_TYPE_START:
823 case ETM_ADDR_TYPE_STOP:
824 /* Get the right start or stop address */
825 address = (type == ETM_ADDR_TYPE_START ?
826 filter->start_addr :
827 filter->stop_addr);
828
829 /* Configure comparator */
830 etm4_set_start_stop_filter(config, address,
831 comparator, type);
832
833 /*
834 * If filters::ssstatus == 1, trace acquisition was
835 * started but the process was yanked away before the
836 * the stop address was hit. As such the start/stop
837 * logic needs to be re-started so that tracing can
838 * resume where it left.
839 *
840 * The start/stop logic status when a process is
841 * scheduled out is checked in function
842 * etm4_disable_perf().
843 */
844 if (filters->ssstatus)
845 config->vinst_ctrl |= BIT(9);
846
847 /* No include/exclude filtering for ViewInst */
848 config->viiectlr = 0x0;
849 break;
Mathieu Poirier2703d742016-08-25 15:19:17 -0600850 default:
851 ret = -EINVAL;
852 goto out;
853 }
854 }
855
856 goto out;
857
858
859default_filter:
860 etm4_set_default_filter(config);
861
862out:
863 return ret;
864}
865
Mathieu Poirier4f6fce52016-04-05 11:53:48 -0600866void etm4_config_trace_mode(struct etmv4_config *config)
867{
868 u32 addr_acc, mode;
869
870 mode = config->mode;
871 mode &= (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER);
872
873 /* excluding kernel AND user space doesn't make sense */
874 WARN_ON_ONCE(mode == (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER));
875
876 /* nothing to do if neither flags are set */
877 if (!(mode & ETM_MODE_EXCL_KERN) && !(mode & ETM_MODE_EXCL_USER))
878 return;
879
880 addr_acc = config->addr_acc[ETM_DEFAULT_ADDR_COMP];
881 /* clear default config */
882 addr_acc &= ~(ETM_EXLEVEL_NS_APP | ETM_EXLEVEL_NS_OS);
883
884 /*
885 * EXLEVEL_NS, bits[15:12]
886 * The Exception levels are:
887 * Bit[12] Exception level 0 - Application
888 * Bit[13] Exception level 1 - OS
889 * Bit[14] Exception level 2 - Hypervisor
890 * Bit[15] Never implemented
891 */
892 if (mode & ETM_MODE_EXCL_KERN)
893 addr_acc |= ETM_EXLEVEL_NS_OS;
894 else
895 addr_acc |= ETM_EXLEVEL_NS_APP;
896
897 config->addr_acc[ETM_DEFAULT_ADDR_COMP] = addr_acc;
898 config->addr_acc[ETM_DEFAULT_ADDR_COMP + 1] = addr_acc;
899}
900
Sebastian Andrzej Siewior58eb4572016-07-13 17:16:55 +0000901static int etm4_online_cpu(unsigned int cpu)
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600902{
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600903 if (!etmdrvdata[cpu])
Sebastian Andrzej Siewior58eb4572016-07-13 17:16:55 +0000904 return 0;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600905
Sebastian Andrzej Siewior58eb4572016-07-13 17:16:55 +0000906 if (etmdrvdata[cpu]->boot_enable && !etmdrvdata[cpu]->sticky_enable)
907 coresight_enable(etmdrvdata[cpu]->csdev);
908 return 0;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600909}
910
Sebastian Andrzej Siewior58eb4572016-07-13 17:16:55 +0000911static int etm4_starting_cpu(unsigned int cpu)
912{
913 if (!etmdrvdata[cpu])
914 return 0;
915
916 spin_lock(&etmdrvdata[cpu]->spinlock);
917 if (!etmdrvdata[cpu]->os_unlock) {
918 etm4_os_unlock(etmdrvdata[cpu]);
919 etmdrvdata[cpu]->os_unlock = true;
920 }
921
922 if (local_read(&etmdrvdata[cpu]->mode))
923 etm4_enable_hw(etmdrvdata[cpu]);
924 spin_unlock(&etmdrvdata[cpu]->spinlock);
925 return 0;
926}
927
928static int etm4_dying_cpu(unsigned int cpu)
929{
930 if (!etmdrvdata[cpu])
931 return 0;
932
933 spin_lock(&etmdrvdata[cpu]->spinlock);
934 if (local_read(&etmdrvdata[cpu]->mode))
935 etm4_disable_hw(etmdrvdata[cpu]);
936 spin_unlock(&etmdrvdata[cpu]->spinlock);
937 return 0;
938}
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600939
Mathieu Poirierfc208ab2016-04-05 11:53:45 -0600940static void etm4_init_trace_id(struct etmv4_drvdata *drvdata)
941{
942 drvdata->trcid = coresight_get_trace_id(drvdata->cpu);
943}
944
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600945static int etm4_probe(struct amba_device *adev, const struct amba_id *id)
946{
947 int ret;
948 void __iomem *base;
949 struct device *dev = &adev->dev;
950 struct coresight_platform_data *pdata = NULL;
951 struct etmv4_drvdata *drvdata;
952 struct resource *res = &adev->res;
Suzuki K Poulose94862952016-08-25 15:19:05 -0600953 struct coresight_desc desc = { 0 };
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600954 struct device_node *np = adev->dev.of_node;
955
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600956 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
957 if (!drvdata)
958 return -ENOMEM;
959
960 if (np) {
961 pdata = of_get_coresight_platform_data(dev, np);
962 if (IS_ERR(pdata))
963 return PTR_ERR(pdata);
964 adev->dev.platform_data = pdata;
965 }
966
967 drvdata->dev = &adev->dev;
968 dev_set_drvdata(dev, drvdata);
969
970 /* Validity for the resource is already checked by the AMBA core */
971 base = devm_ioremap_resource(dev, res);
972 if (IS_ERR(base))
973 return PTR_ERR(base);
974
975 drvdata->base = base;
976
977 spin_lock_init(&drvdata->spinlock);
978
979 drvdata->cpu = pdata ? pdata->cpu : 0;
980
981 get_online_cpus();
982 etmdrvdata[drvdata->cpu] = drvdata;
983
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600984 if (smp_call_function_single(drvdata->cpu,
985 etm4_init_arch_data, drvdata, 1))
986 dev_err(dev, "ETM arch init failed\n");
987
Sebastian Andrzej Siewior58eb4572016-07-13 17:16:55 +0000988 if (!etm4_count++) {
989 cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CORESIGHT4_STARTING,
990 "AP_ARM_CORESIGHT4_STARTING",
991 etm4_starting_cpu, etm4_dying_cpu);
992 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
993 "AP_ARM_CORESIGHT4_ONLINE",
994 etm4_online_cpu, NULL);
995 if (ret < 0)
996 goto err_arch_supported;
997 hp_online = ret;
998 }
Pratik Patel2e1cdfe2015-05-13 10:34:09 -0600999
1000 put_online_cpus();
1001
1002 if (etm4_arch_supported(drvdata->arch) == false) {
1003 ret = -EINVAL;
1004 goto err_arch_supported;
1005 }
Mathieu Poirierfc208ab2016-04-05 11:53:45 -06001006
1007 etm4_init_trace_id(drvdata);
1008 etm4_set_default(&drvdata->config);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001009
Suzuki K Poulose94862952016-08-25 15:19:05 -06001010 desc.type = CORESIGHT_DEV_TYPE_SOURCE;
1011 desc.subtype.source_subtype = CORESIGHT_DEV_SUBTYPE_SOURCE_PROC;
1012 desc.ops = &etm4_cs_ops;
1013 desc.pdata = pdata;
1014 desc.dev = dev;
1015 desc.groups = coresight_etmv4_groups;
1016 drvdata->csdev = coresight_register(&desc);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001017 if (IS_ERR(drvdata->csdev)) {
1018 ret = PTR_ERR(drvdata->csdev);
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -06001019 goto err_arch_supported;
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001020 }
1021
Mathieu Poirier37fbbdb2016-04-05 11:53:49 -06001022 ret = etm_perf_symlink(drvdata->csdev, true);
1023 if (ret) {
1024 coresight_unregister(drvdata->csdev);
1025 goto err_arch_supported;
1026 }
1027
1028 pm_runtime_put(&adev->dev);
shiwanglai1a938312018-02-07 16:47:02 +08001029 dev_info(dev, "CPU%d: %s initialized\n",
1030 drvdata->cpu, (char *)id->data);
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001031
1032 if (boot_enable) {
1033 coresight_enable(drvdata->csdev);
1034 drvdata->boot_enable = true;
1035 }
1036
1037 return 0;
1038
1039err_arch_supported:
Sebastian Andrzej Siewior58eb4572016-07-13 17:16:55 +00001040 if (--etm4_count == 0) {
1041 cpuhp_remove_state_nocalls(CPUHP_AP_ARM_CORESIGHT4_STARTING);
1042 if (hp_online)
1043 cpuhp_remove_state_nocalls(hp_online);
1044 }
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001045 return ret;
1046}
1047
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001048static struct amba_id etm4_ids[] = {
shiwanglai1a938312018-02-07 16:47:02 +08001049 {
Suzuki K Poulose78247e22016-08-25 15:18:58 -06001050 .id = 0x000bb95d,
1051 .mask = 0x000fffff,
shiwanglai1a938312018-02-07 16:47:02 +08001052 .data = "Cortex-A53 ETM v4.0",
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001053 },
shiwanglai1a938312018-02-07 16:47:02 +08001054 {
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001055 .id = 0x000bb95e,
1056 .mask = 0x000fffff,
shiwanglai1a938312018-02-07 16:47:02 +08001057 .data = "Cortex-A57 ETM v4.0",
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001058 },
shiwanglai1a938312018-02-07 16:47:02 +08001059 {
Li Pengcheng960e3092016-05-03 11:33:42 -06001060 .id = 0x000bb95a,
1061 .mask = 0x000fffff,
shiwanglai1a938312018-02-07 16:47:02 +08001062 .data = "Cortex-A72 ETM v4.0",
1063 },
1064 {
1065 .id = 0x000bb959,
1066 .mask = 0x000fffff,
1067 .data = "Cortex-A73 ETM v4.0",
Li Pengcheng960e3092016-05-03 11:33:42 -06001068 },
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001069 { 0, 0},
1070};
1071
1072static struct amba_driver etm4x_driver = {
1073 .drv = {
1074 .name = "coresight-etm4x",
Mathieu Poirierb15f0fb2016-02-02 14:14:00 -07001075 .suppress_bind_attrs = true,
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001076 },
1077 .probe = etm4_probe,
Pratik Patel2e1cdfe2015-05-13 10:34:09 -06001078 .id_table = etm4_ids,
1079};
Paul Gortmaker941943c2016-02-17 17:52:03 -07001080builtin_amba_driver(etm4x_driver);