]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/bus/arm-ccn.c
bus: arm-ccn: Add missing event attribute exclusions for host/guest
[mirror_ubuntu-artful-kernel.git] / drivers / bus / arm-ccn.c
CommitLineData
a33b0daa
PM
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * Copyright (C) 2014 ARM Limited
12 */
13
14#include <linux/ctype.h>
15#include <linux/hrtimer.h>
16#include <linux/idr.h>
17#include <linux/interrupt.h>
18#include <linux/io.h>
19#include <linux/module.h>
20#include <linux/perf_event.h>
21#include <linux/platform_device.h>
22#include <linux/slab.h>
23
24#define CCN_NUM_XP_PORTS 2
25#define CCN_NUM_VCS 4
26#define CCN_NUM_REGIONS 256
27#define CCN_REGION_SIZE 0x10000
28
29#define CCN_ALL_OLY_ID 0xff00
30#define CCN_ALL_OLY_ID__OLY_ID__SHIFT 0
31#define CCN_ALL_OLY_ID__OLY_ID__MASK 0x1f
32#define CCN_ALL_OLY_ID__NODE_ID__SHIFT 8
33#define CCN_ALL_OLY_ID__NODE_ID__MASK 0x3f
34
35#define CCN_MN_ERRINT_STATUS 0x0008
36#define CCN_MN_ERRINT_STATUS__INTREQ__DESSERT 0x11
37#define CCN_MN_ERRINT_STATUS__ALL_ERRORS__ENABLE 0x02
38#define CCN_MN_ERRINT_STATUS__ALL_ERRORS__DISABLED 0x20
39#define CCN_MN_ERRINT_STATUS__ALL_ERRORS__DISABLE 0x22
40#define CCN_MN_ERRINT_STATUS__CORRECTED_ERRORS_ENABLE 0x04
41#define CCN_MN_ERRINT_STATUS__CORRECTED_ERRORS_DISABLED 0x40
42#define CCN_MN_ERRINT_STATUS__CORRECTED_ERRORS_DISABLE 0x44
43#define CCN_MN_ERRINT_STATUS__PMU_EVENTS__ENABLE 0x08
44#define CCN_MN_ERRINT_STATUS__PMU_EVENTS__DISABLED 0x80
45#define CCN_MN_ERRINT_STATUS__PMU_EVENTS__DISABLE 0x88
46#define CCN_MN_OLY_COMP_LIST_63_0 0x01e0
47#define CCN_MN_ERR_SIG_VAL_63_0 0x0300
48#define CCN_MN_ERR_SIG_VAL_63_0__DT (1 << 1)
49
50#define CCN_DT_ACTIVE_DSM 0x0000
51#define CCN_DT_ACTIVE_DSM__DSM_ID__SHIFT(n) ((n) * 8)
52#define CCN_DT_ACTIVE_DSM__DSM_ID__MASK 0xff
53#define CCN_DT_CTL 0x0028
54#define CCN_DT_CTL__DT_EN (1 << 0)
55#define CCN_DT_PMEVCNT(n) (0x0100 + (n) * 0x8)
56#define CCN_DT_PMCCNTR 0x0140
57#define CCN_DT_PMCCNTRSR 0x0190
58#define CCN_DT_PMOVSR 0x0198
59#define CCN_DT_PMOVSR_CLR 0x01a0
fa637bf0 60#define CCN_DT_PMOVSR_CLR__MASK 0x1f
a33b0daa
PM
61#define CCN_DT_PMCR 0x01a8
62#define CCN_DT_PMCR__OVFL_INTR_EN (1 << 6)
63#define CCN_DT_PMCR__PMU_EN (1 << 0)
64#define CCN_DT_PMSR 0x01b0
65#define CCN_DT_PMSR_REQ 0x01b8
66#define CCN_DT_PMSR_CLR 0x01c0
67
68#define CCN_HNF_PMU_EVENT_SEL 0x0600
69#define CCN_HNF_PMU_EVENT_SEL__ID__SHIFT(n) ((n) * 4)
70#define CCN_HNF_PMU_EVENT_SEL__ID__MASK 0xf
71
72#define CCN_XP_DT_CONFIG 0x0300
73#define CCN_XP_DT_CONFIG__DT_CFG__SHIFT(n) ((n) * 4)
74#define CCN_XP_DT_CONFIG__DT_CFG__MASK 0xf
75#define CCN_XP_DT_CONFIG__DT_CFG__PASS_THROUGH 0x0
76#define CCN_XP_DT_CONFIG__DT_CFG__WATCHPOINT_0_OR_1 0x1
77#define CCN_XP_DT_CONFIG__DT_CFG__WATCHPOINT(n) (0x2 + (n))
78#define CCN_XP_DT_CONFIG__DT_CFG__XP_PMU_EVENT(n) (0x4 + (n))
79#define CCN_XP_DT_CONFIG__DT_CFG__DEVICE_PMU_EVENT(d, n) (0x8 + (d) * 4 + (n))
80#define CCN_XP_DT_INTERFACE_SEL 0x0308
81#define CCN_XP_DT_INTERFACE_SEL__DT_IO_SEL__SHIFT(n) (0 + (n) * 8)
82#define CCN_XP_DT_INTERFACE_SEL__DT_IO_SEL__MASK 0x1
83#define CCN_XP_DT_INTERFACE_SEL__DT_DEV_SEL__SHIFT(n) (1 + (n) * 8)
84#define CCN_XP_DT_INTERFACE_SEL__DT_DEV_SEL__MASK 0x1
85#define CCN_XP_DT_INTERFACE_SEL__DT_VC_SEL__SHIFT(n) (2 + (n) * 8)
86#define CCN_XP_DT_INTERFACE_SEL__DT_VC_SEL__MASK 0x3
87#define CCN_XP_DT_CMP_VAL_L(n) (0x0310 + (n) * 0x40)
88#define CCN_XP_DT_CMP_VAL_H(n) (0x0318 + (n) * 0x40)
89#define CCN_XP_DT_CMP_MASK_L(n) (0x0320 + (n) * 0x40)
90#define CCN_XP_DT_CMP_MASK_H(n) (0x0328 + (n) * 0x40)
91#define CCN_XP_DT_CONTROL 0x0370
92#define CCN_XP_DT_CONTROL__DT_ENABLE (1 << 0)
93#define CCN_XP_DT_CONTROL__WP_ARM_SEL__SHIFT(n) (12 + (n) * 4)
94#define CCN_XP_DT_CONTROL__WP_ARM_SEL__MASK 0xf
95#define CCN_XP_DT_CONTROL__WP_ARM_SEL__ALWAYS 0xf
96#define CCN_XP_PMU_EVENT_SEL 0x0600
97#define CCN_XP_PMU_EVENT_SEL__ID__SHIFT(n) ((n) * 7)
98#define CCN_XP_PMU_EVENT_SEL__ID__MASK 0x3f
99
100#define CCN_SBAS_PMU_EVENT_SEL 0x0600
101#define CCN_SBAS_PMU_EVENT_SEL__ID__SHIFT(n) ((n) * 4)
102#define CCN_SBAS_PMU_EVENT_SEL__ID__MASK 0xf
103
104#define CCN_RNI_PMU_EVENT_SEL 0x0600
105#define CCN_RNI_PMU_EVENT_SEL__ID__SHIFT(n) ((n) * 4)
106#define CCN_RNI_PMU_EVENT_SEL__ID__MASK 0xf
107
108#define CCN_TYPE_MN 0x01
109#define CCN_TYPE_DT 0x02
110#define CCN_TYPE_HNF 0x04
111#define CCN_TYPE_HNI 0x05
112#define CCN_TYPE_XP 0x08
113#define CCN_TYPE_SBSX 0x0c
114#define CCN_TYPE_SBAS 0x10
115#define CCN_TYPE_RNI_1P 0x14
116#define CCN_TYPE_RNI_2P 0x15
117#define CCN_TYPE_RNI_3P 0x16
118#define CCN_TYPE_RND_1P 0x18 /* RN-D = RN-I + DVM */
119#define CCN_TYPE_RND_2P 0x19
120#define CCN_TYPE_RND_3P 0x1a
121#define CCN_TYPE_CYCLES 0xff /* Pseudotype */
122
123#define CCN_EVENT_WATCHPOINT 0xfe /* Pseudoevent */
124
125#define CCN_NUM_PMU_EVENTS 4
126#define CCN_NUM_XP_WATCHPOINTS 2 /* See DT.dbg_id.num_watchpoints */
127#define CCN_NUM_PMU_EVENT_COUNTERS 8 /* See DT.dbg_id.num_pmucntr */
128#define CCN_IDX_PMU_CYCLE_COUNTER CCN_NUM_PMU_EVENT_COUNTERS
129
130#define CCN_NUM_PREDEFINED_MASKS 4
131#define CCN_IDX_MASK_ANY (CCN_NUM_PMU_EVENT_COUNTERS + 0)
132#define CCN_IDX_MASK_EXACT (CCN_NUM_PMU_EVENT_COUNTERS + 1)
133#define CCN_IDX_MASK_ORDER (CCN_NUM_PMU_EVENT_COUNTERS + 2)
134#define CCN_IDX_MASK_OPCODE (CCN_NUM_PMU_EVENT_COUNTERS + 3)
135
136struct arm_ccn_component {
137 void __iomem *base;
138 u32 type;
139
140 DECLARE_BITMAP(pmu_events_mask, CCN_NUM_PMU_EVENTS);
141 union {
142 struct {
143 DECLARE_BITMAP(dt_cmp_mask, CCN_NUM_XP_WATCHPOINTS);
144 } xp;
145 };
146};
147
148#define pmu_to_arm_ccn(_pmu) container_of(container_of(_pmu, \
149 struct arm_ccn_dt, pmu), struct arm_ccn, dt)
150
151struct arm_ccn_dt {
152 int id;
153 void __iomem *base;
154
155 spinlock_t config_lock;
156
157 DECLARE_BITMAP(pmu_counters_mask, CCN_NUM_PMU_EVENT_COUNTERS + 1);
158 struct {
159 struct arm_ccn_component *source;
160 struct perf_event *event;
161 } pmu_counters[CCN_NUM_PMU_EVENT_COUNTERS + 1];
162
163 struct {
164 u64 l, h;
165 } cmp_mask[CCN_NUM_PMU_EVENT_COUNTERS + CCN_NUM_PREDEFINED_MASKS];
166
167 struct hrtimer hrtimer;
168
ffa41524 169 cpumask_t cpu;
fdc15a36 170 struct list_head entry;
ffa41524 171
a33b0daa
PM
172 struct pmu pmu;
173};
174
175struct arm_ccn {
176 struct device *dev;
177 void __iomem *base;
ffa41524
PM
178 unsigned int irq;
179
a33b0daa
PM
180 unsigned sbas_present:1;
181 unsigned sbsx_present:1;
182
183 int num_nodes;
184 struct arm_ccn_component *node;
185
186 int num_xps;
187 struct arm_ccn_component *xp;
188
189 struct arm_ccn_dt dt;
4e486cba 190 int mn_id;
a33b0daa
PM
191};
192
fdc15a36
SAS
193static DEFINE_MUTEX(arm_ccn_mutex);
194static LIST_HEAD(arm_ccn_list);
a33b0daa
PM
195
196static int arm_ccn_node_to_xp(int node)
197{
198 return node / CCN_NUM_XP_PORTS;
199}
200
201static int arm_ccn_node_to_xp_port(int node)
202{
203 return node % CCN_NUM_XP_PORTS;
204}
205
206
207/*
208 * Bit shifts and masks in these defines must be kept in sync with
209 * arm_ccn_pmu_config_set() and CCN_FORMAT_ATTRs below!
210 */
211#define CCN_CONFIG_NODE(_config) (((_config) >> 0) & 0xff)
212#define CCN_CONFIG_XP(_config) (((_config) >> 0) & 0xff)
213#define CCN_CONFIG_TYPE(_config) (((_config) >> 8) & 0xff)
214#define CCN_CONFIG_EVENT(_config) (((_config) >> 16) & 0xff)
215#define CCN_CONFIG_PORT(_config) (((_config) >> 24) & 0x3)
90d11e26 216#define CCN_CONFIG_BUS(_config) (((_config) >> 24) & 0x3)
a33b0daa
PM
217#define CCN_CONFIG_VC(_config) (((_config) >> 26) & 0x7)
218#define CCN_CONFIG_DIR(_config) (((_config) >> 29) & 0x1)
219#define CCN_CONFIG_MASK(_config) (((_config) >> 30) & 0xf)
220
221static void arm_ccn_pmu_config_set(u64 *config, u32 node_xp, u32 type, u32 port)
222{
a18f8e97 223 *config &= ~((0xff << 0) | (0xff << 8) | (0x3 << 24));
a33b0daa
PM
224 *config |= (node_xp << 0) | (type << 8) | (port << 24);
225}
226
227static ssize_t arm_ccn_pmu_format_show(struct device *dev,
228 struct device_attribute *attr, char *buf)
229{
230 struct dev_ext_attribute *ea = container_of(attr,
231 struct dev_ext_attribute, attr);
232
233 return snprintf(buf, PAGE_SIZE, "%s\n", (char *)ea->var);
234}
235
236#define CCN_FORMAT_ATTR(_name, _config) \
237 struct dev_ext_attribute arm_ccn_pmu_format_attr_##_name = \
238 { __ATTR(_name, S_IRUGO, arm_ccn_pmu_format_show, \
239 NULL), _config }
240
241static CCN_FORMAT_ATTR(node, "config:0-7");
242static CCN_FORMAT_ATTR(xp, "config:0-7");
243static CCN_FORMAT_ATTR(type, "config:8-15");
244static CCN_FORMAT_ATTR(event, "config:16-23");
245static CCN_FORMAT_ATTR(port, "config:24-25");
90d11e26 246static CCN_FORMAT_ATTR(bus, "config:24-25");
a33b0daa
PM
247static CCN_FORMAT_ATTR(vc, "config:26-28");
248static CCN_FORMAT_ATTR(dir, "config:29-29");
249static CCN_FORMAT_ATTR(mask, "config:30-33");
250static CCN_FORMAT_ATTR(cmp_l, "config1:0-62");
251static CCN_FORMAT_ATTR(cmp_h, "config2:0-59");
252
253static struct attribute *arm_ccn_pmu_format_attrs[] = {
254 &arm_ccn_pmu_format_attr_node.attr.attr,
255 &arm_ccn_pmu_format_attr_xp.attr.attr,
256 &arm_ccn_pmu_format_attr_type.attr.attr,
257 &arm_ccn_pmu_format_attr_event.attr.attr,
258 &arm_ccn_pmu_format_attr_port.attr.attr,
90d11e26 259 &arm_ccn_pmu_format_attr_bus.attr.attr,
a33b0daa
PM
260 &arm_ccn_pmu_format_attr_vc.attr.attr,
261 &arm_ccn_pmu_format_attr_dir.attr.attr,
262 &arm_ccn_pmu_format_attr_mask.attr.attr,
263 &arm_ccn_pmu_format_attr_cmp_l.attr.attr,
264 &arm_ccn_pmu_format_attr_cmp_h.attr.attr,
265 NULL
266};
267
268static struct attribute_group arm_ccn_pmu_format_attr_group = {
269 .name = "format",
270 .attrs = arm_ccn_pmu_format_attrs,
271};
272
273
274struct arm_ccn_pmu_event {
275 struct device_attribute attr;
276 u32 type;
277 u32 event;
278 int num_ports;
279 int num_vcs;
280 const char *def;
281 int mask;
282};
283
284#define CCN_EVENT_ATTR(_name) \
285 __ATTR(_name, S_IRUGO, arm_ccn_pmu_event_show, NULL)
286
287/*
288 * Events defined in TRM for MN, HN-I and SBSX are actually watchpoints set on
289 * their ports in XP they are connected to. For the sake of usability they are
290 * explicitly defined here (and translated into a relevant watchpoint in
291 * arm_ccn_pmu_event_init()) so the user can easily request them without deep
292 * knowledge of the flit format.
293 */
294
295#define CCN_EVENT_MN(_name, _def, _mask) { .attr = CCN_EVENT_ATTR(mn_##_name), \
296 .type = CCN_TYPE_MN, .event = CCN_EVENT_WATCHPOINT, \
297 .num_ports = CCN_NUM_XP_PORTS, .num_vcs = CCN_NUM_VCS, \
298 .def = _def, .mask = _mask, }
299
300#define CCN_EVENT_HNI(_name, _def, _mask) { \
301 .attr = CCN_EVENT_ATTR(hni_##_name), .type = CCN_TYPE_HNI, \
302 .event = CCN_EVENT_WATCHPOINT, .num_ports = CCN_NUM_XP_PORTS, \
303 .num_vcs = CCN_NUM_VCS, .def = _def, .mask = _mask, }
304
305#define CCN_EVENT_SBSX(_name, _def, _mask) { \
306 .attr = CCN_EVENT_ATTR(sbsx_##_name), .type = CCN_TYPE_SBSX, \
307 .event = CCN_EVENT_WATCHPOINT, .num_ports = CCN_NUM_XP_PORTS, \
308 .num_vcs = CCN_NUM_VCS, .def = _def, .mask = _mask, }
309
310#define CCN_EVENT_HNF(_name, _event) { .attr = CCN_EVENT_ATTR(hnf_##_name), \
311 .type = CCN_TYPE_HNF, .event = _event, }
312
313#define CCN_EVENT_XP(_name, _event) { .attr = CCN_EVENT_ATTR(xp_##_name), \
314 .type = CCN_TYPE_XP, .event = _event, \
315 .num_ports = CCN_NUM_XP_PORTS, .num_vcs = CCN_NUM_VCS, }
316
317/*
318 * RN-I & RN-D (RN-D = RN-I + DVM) nodes have different type ID depending
319 * on configuration. One of them is picked to represent the whole group,
320 * as they all share the same event types.
321 */
322#define CCN_EVENT_RNI(_name, _event) { .attr = CCN_EVENT_ATTR(rni_##_name), \
323 .type = CCN_TYPE_RNI_3P, .event = _event, }
324
325#define CCN_EVENT_SBAS(_name, _event) { .attr = CCN_EVENT_ATTR(sbas_##_name), \
326 .type = CCN_TYPE_SBAS, .event = _event, }
327
328#define CCN_EVENT_CYCLES(_name) { .attr = CCN_EVENT_ATTR(_name), \
329 .type = CCN_TYPE_CYCLES }
330
331
332static ssize_t arm_ccn_pmu_event_show(struct device *dev,
333 struct device_attribute *attr, char *buf)
334{
4e486cba 335 struct arm_ccn *ccn = pmu_to_arm_ccn(dev_get_drvdata(dev));
a33b0daa
PM
336 struct arm_ccn_pmu_event *event = container_of(attr,
337 struct arm_ccn_pmu_event, attr);
338 ssize_t res;
339
340 res = snprintf(buf, PAGE_SIZE, "type=0x%x", event->type);
341 if (event->event)
342 res += snprintf(buf + res, PAGE_SIZE - res, ",event=0x%x",
343 event->event);
344 if (event->def)
345 res += snprintf(buf + res, PAGE_SIZE - res, ",%s",
346 event->def);
347 if (event->mask)
348 res += snprintf(buf + res, PAGE_SIZE - res, ",mask=0x%x",
349 event->mask);
8f06c51f
PM
350
351 /* Arguments required by an event */
352 switch (event->type) {
353 case CCN_TYPE_CYCLES:
354 break;
355 case CCN_TYPE_XP:
356 res += snprintf(buf + res, PAGE_SIZE - res,
90d11e26 357 ",xp=?,vc=?");
8f06c51f
PM
358 if (event->event == CCN_EVENT_WATCHPOINT)
359 res += snprintf(buf + res, PAGE_SIZE - res,
90d11e26
PM
360 ",port=?,dir=?,cmp_l=?,cmp_h=?,mask=?");
361 else
362 res += snprintf(buf + res, PAGE_SIZE - res,
363 ",bus=?");
364
8f06c51f 365 break;
4e486cba
PM
366 case CCN_TYPE_MN:
367 res += snprintf(buf + res, PAGE_SIZE - res, ",node=%d", ccn->mn_id);
368 break;
8f06c51f
PM
369 default:
370 res += snprintf(buf + res, PAGE_SIZE - res, ",node=?");
371 break;
372 }
373
a33b0daa
PM
374 res += snprintf(buf + res, PAGE_SIZE - res, "\n");
375
376 return res;
377}
378
379static umode_t arm_ccn_pmu_events_is_visible(struct kobject *kobj,
380 struct attribute *attr, int index)
381{
382 struct device *dev = kobj_to_dev(kobj);
383 struct arm_ccn *ccn = pmu_to_arm_ccn(dev_get_drvdata(dev));
384 struct device_attribute *dev_attr = container_of(attr,
385 struct device_attribute, attr);
386 struct arm_ccn_pmu_event *event = container_of(dev_attr,
387 struct arm_ccn_pmu_event, attr);
388
389 if (event->type == CCN_TYPE_SBAS && !ccn->sbas_present)
390 return 0;
391 if (event->type == CCN_TYPE_SBSX && !ccn->sbsx_present)
392 return 0;
393
394 return attr->mode;
395}
396
397static struct arm_ccn_pmu_event arm_ccn_pmu_events[] = {
4e486cba
PM
398 CCN_EVENT_MN(eobarrier, "dir=1,vc=0,cmp_h=0x1c00", CCN_IDX_MASK_OPCODE),
399 CCN_EVENT_MN(ecbarrier, "dir=1,vc=0,cmp_h=0x1e00", CCN_IDX_MASK_OPCODE),
400 CCN_EVENT_MN(dvmop, "dir=1,vc=0,cmp_h=0x2800", CCN_IDX_MASK_OPCODE),
a33b0daa
PM
401 CCN_EVENT_HNI(txdatflits, "dir=1,vc=3", CCN_IDX_MASK_ANY),
402 CCN_EVENT_HNI(rxdatflits, "dir=0,vc=3", CCN_IDX_MASK_ANY),
403 CCN_EVENT_HNI(txreqflits, "dir=1,vc=0", CCN_IDX_MASK_ANY),
404 CCN_EVENT_HNI(rxreqflits, "dir=0,vc=0", CCN_IDX_MASK_ANY),
405 CCN_EVENT_HNI(rxreqflits_order, "dir=0,vc=0,cmp_h=0x8000",
406 CCN_IDX_MASK_ORDER),
407 CCN_EVENT_SBSX(txdatflits, "dir=1,vc=3", CCN_IDX_MASK_ANY),
408 CCN_EVENT_SBSX(rxdatflits, "dir=0,vc=3", CCN_IDX_MASK_ANY),
409 CCN_EVENT_SBSX(txreqflits, "dir=1,vc=0", CCN_IDX_MASK_ANY),
410 CCN_EVENT_SBSX(rxreqflits, "dir=0,vc=0", CCN_IDX_MASK_ANY),
411 CCN_EVENT_SBSX(rxreqflits_order, "dir=0,vc=0,cmp_h=0x8000",
412 CCN_IDX_MASK_ORDER),
413 CCN_EVENT_HNF(cache_miss, 0x1),
414 CCN_EVENT_HNF(l3_sf_cache_access, 0x02),
415 CCN_EVENT_HNF(cache_fill, 0x3),
416 CCN_EVENT_HNF(pocq_retry, 0x4),
417 CCN_EVENT_HNF(pocq_reqs_recvd, 0x5),
418 CCN_EVENT_HNF(sf_hit, 0x6),
419 CCN_EVENT_HNF(sf_evictions, 0x7),
420 CCN_EVENT_HNF(snoops_sent, 0x8),
421 CCN_EVENT_HNF(snoops_broadcast, 0x9),
422 CCN_EVENT_HNF(l3_eviction, 0xa),
423 CCN_EVENT_HNF(l3_fill_invalid_way, 0xb),
424 CCN_EVENT_HNF(mc_retries, 0xc),
425 CCN_EVENT_HNF(mc_reqs, 0xd),
426 CCN_EVENT_HNF(qos_hh_retry, 0xe),
427 CCN_EVENT_RNI(rdata_beats_p0, 0x1),
428 CCN_EVENT_RNI(rdata_beats_p1, 0x2),
429 CCN_EVENT_RNI(rdata_beats_p2, 0x3),
430 CCN_EVENT_RNI(rxdat_flits, 0x4),
431 CCN_EVENT_RNI(txdat_flits, 0x5),
432 CCN_EVENT_RNI(txreq_flits, 0x6),
433 CCN_EVENT_RNI(txreq_flits_retried, 0x7),
434 CCN_EVENT_RNI(rrt_full, 0x8),
435 CCN_EVENT_RNI(wrt_full, 0x9),
436 CCN_EVENT_RNI(txreq_flits_replayed, 0xa),
437 CCN_EVENT_XP(upload_starvation, 0x1),
438 CCN_EVENT_XP(download_starvation, 0x2),
439 CCN_EVENT_XP(respin, 0x3),
440 CCN_EVENT_XP(valid_flit, 0x4),
441 CCN_EVENT_XP(watchpoint, CCN_EVENT_WATCHPOINT),
442 CCN_EVENT_SBAS(rdata_beats_p0, 0x1),
443 CCN_EVENT_SBAS(rxdat_flits, 0x4),
444 CCN_EVENT_SBAS(txdat_flits, 0x5),
445 CCN_EVENT_SBAS(txreq_flits, 0x6),
446 CCN_EVENT_SBAS(txreq_flits_retried, 0x7),
447 CCN_EVENT_SBAS(rrt_full, 0x8),
448 CCN_EVENT_SBAS(wrt_full, 0x9),
449 CCN_EVENT_SBAS(txreq_flits_replayed, 0xa),
450 CCN_EVENT_CYCLES(cycles),
451};
452
453/* Populated in arm_ccn_init() */
454static struct attribute
455 *arm_ccn_pmu_events_attrs[ARRAY_SIZE(arm_ccn_pmu_events) + 1];
456
457static struct attribute_group arm_ccn_pmu_events_attr_group = {
458 .name = "events",
459 .is_visible = arm_ccn_pmu_events_is_visible,
460 .attrs = arm_ccn_pmu_events_attrs,
461};
462
463
464static u64 *arm_ccn_pmu_get_cmp_mask(struct arm_ccn *ccn, const char *name)
465{
466 unsigned long i;
467
468 if (WARN_ON(!name || !name[0] || !isxdigit(name[0]) || !name[1]))
469 return NULL;
470 i = isdigit(name[0]) ? name[0] - '0' : 0xa + tolower(name[0]) - 'a';
471
472 switch (name[1]) {
473 case 'l':
474 return &ccn->dt.cmp_mask[i].l;
475 case 'h':
476 return &ccn->dt.cmp_mask[i].h;
477 default:
478 return NULL;
479 }
480}
481
482static ssize_t arm_ccn_pmu_cmp_mask_show(struct device *dev,
483 struct device_attribute *attr, char *buf)
484{
485 struct arm_ccn *ccn = pmu_to_arm_ccn(dev_get_drvdata(dev));
486 u64 *mask = arm_ccn_pmu_get_cmp_mask(ccn, attr->attr.name);
487
488 return mask ? snprintf(buf, PAGE_SIZE, "0x%016llx\n", *mask) : -EINVAL;
489}
490
491static ssize_t arm_ccn_pmu_cmp_mask_store(struct device *dev,
492 struct device_attribute *attr, const char *buf, size_t count)
493{
494 struct arm_ccn *ccn = pmu_to_arm_ccn(dev_get_drvdata(dev));
495 u64 *mask = arm_ccn_pmu_get_cmp_mask(ccn, attr->attr.name);
496 int err = -EINVAL;
497
498 if (mask)
499 err = kstrtoull(buf, 0, mask);
500
501 return err ? err : count;
502}
503
504#define CCN_CMP_MASK_ATTR(_name) \
505 struct device_attribute arm_ccn_pmu_cmp_mask_attr_##_name = \
506 __ATTR(_name, S_IRUGO | S_IWUSR, \
507 arm_ccn_pmu_cmp_mask_show, arm_ccn_pmu_cmp_mask_store)
508
509#define CCN_CMP_MASK_ATTR_RO(_name) \
510 struct device_attribute arm_ccn_pmu_cmp_mask_attr_##_name = \
511 __ATTR(_name, S_IRUGO, arm_ccn_pmu_cmp_mask_show, NULL)
512
513static CCN_CMP_MASK_ATTR(0l);
514static CCN_CMP_MASK_ATTR(0h);
515static CCN_CMP_MASK_ATTR(1l);
516static CCN_CMP_MASK_ATTR(1h);
517static CCN_CMP_MASK_ATTR(2l);
518static CCN_CMP_MASK_ATTR(2h);
519static CCN_CMP_MASK_ATTR(3l);
520static CCN_CMP_MASK_ATTR(3h);
521static CCN_CMP_MASK_ATTR(4l);
522static CCN_CMP_MASK_ATTR(4h);
523static CCN_CMP_MASK_ATTR(5l);
524static CCN_CMP_MASK_ATTR(5h);
525static CCN_CMP_MASK_ATTR(6l);
526static CCN_CMP_MASK_ATTR(6h);
527static CCN_CMP_MASK_ATTR(7l);
528static CCN_CMP_MASK_ATTR(7h);
529static CCN_CMP_MASK_ATTR_RO(8l);
530static CCN_CMP_MASK_ATTR_RO(8h);
531static CCN_CMP_MASK_ATTR_RO(9l);
532static CCN_CMP_MASK_ATTR_RO(9h);
533static CCN_CMP_MASK_ATTR_RO(al);
534static CCN_CMP_MASK_ATTR_RO(ah);
535static CCN_CMP_MASK_ATTR_RO(bl);
536static CCN_CMP_MASK_ATTR_RO(bh);
537
538static struct attribute *arm_ccn_pmu_cmp_mask_attrs[] = {
539 &arm_ccn_pmu_cmp_mask_attr_0l.attr, &arm_ccn_pmu_cmp_mask_attr_0h.attr,
540 &arm_ccn_pmu_cmp_mask_attr_1l.attr, &arm_ccn_pmu_cmp_mask_attr_1h.attr,
541 &arm_ccn_pmu_cmp_mask_attr_2l.attr, &arm_ccn_pmu_cmp_mask_attr_2h.attr,
542 &arm_ccn_pmu_cmp_mask_attr_3l.attr, &arm_ccn_pmu_cmp_mask_attr_3h.attr,
543 &arm_ccn_pmu_cmp_mask_attr_4l.attr, &arm_ccn_pmu_cmp_mask_attr_4h.attr,
544 &arm_ccn_pmu_cmp_mask_attr_5l.attr, &arm_ccn_pmu_cmp_mask_attr_5h.attr,
545 &arm_ccn_pmu_cmp_mask_attr_6l.attr, &arm_ccn_pmu_cmp_mask_attr_6h.attr,
546 &arm_ccn_pmu_cmp_mask_attr_7l.attr, &arm_ccn_pmu_cmp_mask_attr_7h.attr,
547 &arm_ccn_pmu_cmp_mask_attr_8l.attr, &arm_ccn_pmu_cmp_mask_attr_8h.attr,
548 &arm_ccn_pmu_cmp_mask_attr_9l.attr, &arm_ccn_pmu_cmp_mask_attr_9h.attr,
549 &arm_ccn_pmu_cmp_mask_attr_al.attr, &arm_ccn_pmu_cmp_mask_attr_ah.attr,
550 &arm_ccn_pmu_cmp_mask_attr_bl.attr, &arm_ccn_pmu_cmp_mask_attr_bh.attr,
551 NULL
552};
553
554static struct attribute_group arm_ccn_pmu_cmp_mask_attr_group = {
555 .name = "cmp_mask",
556 .attrs = arm_ccn_pmu_cmp_mask_attrs,
557};
558
ffa41524
PM
559static ssize_t arm_ccn_pmu_cpumask_show(struct device *dev,
560 struct device_attribute *attr, char *buf)
561{
562 struct arm_ccn *ccn = pmu_to_arm_ccn(dev_get_drvdata(dev));
563
564 return cpumap_print_to_pagebuf(true, buf, &ccn->dt.cpu);
565}
566
567static struct device_attribute arm_ccn_pmu_cpumask_attr =
568 __ATTR(cpumask, S_IRUGO, arm_ccn_pmu_cpumask_show, NULL);
569
570static struct attribute *arm_ccn_pmu_cpumask_attrs[] = {
571 &arm_ccn_pmu_cpumask_attr.attr,
572 NULL,
573};
574
575static struct attribute_group arm_ccn_pmu_cpumask_attr_group = {
576 .attrs = arm_ccn_pmu_cpumask_attrs,
577};
a33b0daa
PM
578
579/*
580 * Default poll period is 10ms, which is way over the top anyway,
581 * as in the worst case scenario (an event every cycle), with 1GHz
582 * clocked bus, the smallest, 32 bit counter will overflow in
583 * more than 4s.
584 */
585static unsigned int arm_ccn_pmu_poll_period_us = 10000;
586module_param_named(pmu_poll_period_us, arm_ccn_pmu_poll_period_us, uint,
587 S_IRUGO | S_IWUSR);
588
589static ktime_t arm_ccn_pmu_timer_period(void)
590{
591 return ns_to_ktime((u64)arm_ccn_pmu_poll_period_us * 1000);
592}
593
594
595static const struct attribute_group *arm_ccn_pmu_attr_groups[] = {
596 &arm_ccn_pmu_events_attr_group,
597 &arm_ccn_pmu_format_attr_group,
598 &arm_ccn_pmu_cmp_mask_attr_group,
ffa41524 599 &arm_ccn_pmu_cpumask_attr_group,
a33b0daa
PM
600 NULL
601};
602
603
604static int arm_ccn_pmu_alloc_bit(unsigned long *bitmap, unsigned long size)
605{
606 int bit;
607
608 do {
609 bit = find_first_zero_bit(bitmap, size);
610 if (bit >= size)
611 return -EAGAIN;
612 } while (test_and_set_bit(bit, bitmap));
613
614 return bit;
615}
616
617/* All RN-I and RN-D nodes have identical PMUs */
618static int arm_ccn_pmu_type_eq(u32 a, u32 b)
619{
620 if (a == b)
621 return 1;
622
623 switch (a) {
624 case CCN_TYPE_RNI_1P:
625 case CCN_TYPE_RNI_2P:
626 case CCN_TYPE_RNI_3P:
627 case CCN_TYPE_RND_1P:
628 case CCN_TYPE_RND_2P:
629 case CCN_TYPE_RND_3P:
630 switch (b) {
631 case CCN_TYPE_RNI_1P:
632 case CCN_TYPE_RNI_2P:
633 case CCN_TYPE_RNI_3P:
634 case CCN_TYPE_RND_1P:
635 case CCN_TYPE_RND_2P:
636 case CCN_TYPE_RND_3P:
637 return 1;
638 }
639 break;
640 }
641
642 return 0;
643}
644
57006d3e
PM
645static int arm_ccn_pmu_event_alloc(struct perf_event *event)
646{
647 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
648 struct hw_perf_event *hw = &event->hw;
649 u32 node_xp, type, event_id;
650 struct arm_ccn_component *source;
651 int bit;
652
653 node_xp = CCN_CONFIG_NODE(event->attr.config);
654 type = CCN_CONFIG_TYPE(event->attr.config);
655 event_id = CCN_CONFIG_EVENT(event->attr.config);
656
657 /* Allocate the cycle counter */
658 if (type == CCN_TYPE_CYCLES) {
659 if (test_and_set_bit(CCN_IDX_PMU_CYCLE_COUNTER,
660 ccn->dt.pmu_counters_mask))
661 return -EAGAIN;
662
663 hw->idx = CCN_IDX_PMU_CYCLE_COUNTER;
664 ccn->dt.pmu_counters[CCN_IDX_PMU_CYCLE_COUNTER].event = event;
665
666 return 0;
667 }
668
669 /* Allocate an event counter */
670 hw->idx = arm_ccn_pmu_alloc_bit(ccn->dt.pmu_counters_mask,
671 CCN_NUM_PMU_EVENT_COUNTERS);
672 if (hw->idx < 0) {
673 dev_dbg(ccn->dev, "No more counters available!\n");
674 return -EAGAIN;
675 }
676
677 if (type == CCN_TYPE_XP)
678 source = &ccn->xp[node_xp];
679 else
680 source = &ccn->node[node_xp];
681 ccn->dt.pmu_counters[hw->idx].source = source;
682
683 /* Allocate an event source or a watchpoint */
684 if (type == CCN_TYPE_XP && event_id == CCN_EVENT_WATCHPOINT)
685 bit = arm_ccn_pmu_alloc_bit(source->xp.dt_cmp_mask,
686 CCN_NUM_XP_WATCHPOINTS);
687 else
688 bit = arm_ccn_pmu_alloc_bit(source->pmu_events_mask,
689 CCN_NUM_PMU_EVENTS);
690 if (bit < 0) {
691 dev_dbg(ccn->dev, "No more event sources/watchpoints on node/XP %d!\n",
692 node_xp);
693 clear_bit(hw->idx, ccn->dt.pmu_counters_mask);
694 return -EAGAIN;
695 }
696 hw->config_base = bit;
697
698 ccn->dt.pmu_counters[hw->idx].event = event;
699
700 return 0;
701}
702
703static void arm_ccn_pmu_event_release(struct perf_event *event)
8fb22264
PM
704{
705 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
706 struct hw_perf_event *hw = &event->hw;
707
708 if (hw->idx == CCN_IDX_PMU_CYCLE_COUNTER) {
709 clear_bit(CCN_IDX_PMU_CYCLE_COUNTER, ccn->dt.pmu_counters_mask);
710 } else {
711 struct arm_ccn_component *source =
712 ccn->dt.pmu_counters[hw->idx].source;
713
714 if (CCN_CONFIG_TYPE(event->attr.config) == CCN_TYPE_XP &&
715 CCN_CONFIG_EVENT(event->attr.config) ==
716 CCN_EVENT_WATCHPOINT)
717 clear_bit(hw->config_base, source->xp.dt_cmp_mask);
718 else
719 clear_bit(hw->config_base, source->pmu_events_mask);
720 clear_bit(hw->idx, ccn->dt.pmu_counters_mask);
721 }
722
723 ccn->dt.pmu_counters[hw->idx].source = NULL;
724 ccn->dt.pmu_counters[hw->idx].event = NULL;
725}
726
a33b0daa
PM
727static int arm_ccn_pmu_event_init(struct perf_event *event)
728{
729 struct arm_ccn *ccn;
730 struct hw_perf_event *hw = &event->hw;
731 u32 node_xp, type, event_id;
57006d3e 732 int valid;
a33b0daa 733 int i;
9ce1aa86 734 struct perf_event *sibling;
a33b0daa
PM
735
736 if (event->attr.type != event->pmu->type)
737 return -ENOENT;
738
739 ccn = pmu_to_arm_ccn(event->pmu);
740
741 if (hw->sample_period) {
742 dev_warn(ccn->dev, "Sampling not supported!\n");
743 return -EOPNOTSUPP;
744 }
745
746 if (has_branch_stack(event) || event->attr.exclude_user ||
747 event->attr.exclude_kernel || event->attr.exclude_hv ||
3249bce4
PM
748 event->attr.exclude_idle || event->attr.exclude_host ||
749 event->attr.exclude_guest) {
a33b0daa 750 dev_warn(ccn->dev, "Can't exclude execution levels!\n");
3249bce4 751 return -EINVAL;
a33b0daa
PM
752 }
753
754 if (event->cpu < 0) {
755 dev_warn(ccn->dev, "Can't provide per-task data!\n");
756 return -EOPNOTSUPP;
757 }
ffa41524
PM
758 /*
759 * Many perf core operations (eg. events rotation) operate on a
760 * single CPU context. This is obvious for CPU PMUs, where one
761 * expects the same sets of events being observed on all CPUs,
762 * but can lead to issues for off-core PMUs, like CCN, where each
763 * event could be theoretically assigned to a different CPU. To
764 * mitigate this, we enforce CPU assignment to one, selected
765 * processor (the one described in the "cpumask" attribute).
766 */
767 event->cpu = cpumask_first(&ccn->dt.cpu);
a33b0daa
PM
768
769 node_xp = CCN_CONFIG_NODE(event->attr.config);
770 type = CCN_CONFIG_TYPE(event->attr.config);
771 event_id = CCN_CONFIG_EVENT(event->attr.config);
772
773 /* Validate node/xp vs topology */
774 switch (type) {
4e486cba
PM
775 case CCN_TYPE_MN:
776 if (node_xp != ccn->mn_id) {
777 dev_warn(ccn->dev, "Invalid MN ID %d!\n", node_xp);
778 return -EINVAL;
779 }
780 break;
a33b0daa
PM
781 case CCN_TYPE_XP:
782 if (node_xp >= ccn->num_xps) {
783 dev_warn(ccn->dev, "Invalid XP ID %d!\n", node_xp);
784 return -EINVAL;
785 }
786 break;
787 case CCN_TYPE_CYCLES:
788 break;
789 default:
790 if (node_xp >= ccn->num_nodes) {
791 dev_warn(ccn->dev, "Invalid node ID %d!\n", node_xp);
792 return -EINVAL;
793 }
794 if (!arm_ccn_pmu_type_eq(type, ccn->node[node_xp].type)) {
795 dev_warn(ccn->dev, "Invalid type 0x%x for node %d!\n",
796 type, node_xp);
797 return -EINVAL;
798 }
799 break;
800 }
801
802 /* Validate event ID vs available for the type */
803 for (i = 0, valid = 0; i < ARRAY_SIZE(arm_ccn_pmu_events) && !valid;
804 i++) {
805 struct arm_ccn_pmu_event *e = &arm_ccn_pmu_events[i];
806 u32 port = CCN_CONFIG_PORT(event->attr.config);
807 u32 vc = CCN_CONFIG_VC(event->attr.config);
808
809 if (!arm_ccn_pmu_type_eq(type, e->type))
810 continue;
811 if (event_id != e->event)
812 continue;
813 if (e->num_ports && port >= e->num_ports) {
814 dev_warn(ccn->dev, "Invalid port %d for node/XP %d!\n",
815 port, node_xp);
816 return -EINVAL;
817 }
818 if (e->num_vcs && vc >= e->num_vcs) {
819 dev_warn(ccn->dev, "Invalid vc %d for node/XP %d!\n",
bf87bb12 820 vc, node_xp);
a33b0daa
PM
821 return -EINVAL;
822 }
823 valid = 1;
824 }
825 if (!valid) {
826 dev_warn(ccn->dev, "Invalid event 0x%x for node/XP %d!\n",
827 event_id, node_xp);
828 return -EINVAL;
829 }
830
831 /* Watchpoint-based event for a node is actually set on XP */
832 if (event_id == CCN_EVENT_WATCHPOINT && type != CCN_TYPE_XP) {
833 u32 port;
834
835 type = CCN_TYPE_XP;
836 port = arm_ccn_node_to_xp_port(node_xp);
837 node_xp = arm_ccn_node_to_xp(node_xp);
838
839 arm_ccn_pmu_config_set(&event->attr.config,
840 node_xp, type, port);
841 }
842
9ce1aa86
PM
843 /*
844 * We must NOT create groups containing mixed PMUs, although software
845 * events are acceptable (for example to create a CCN group
846 * periodically read when a hrtimer aka cpu-clock leader triggers).
847 */
848 if (event->group_leader->pmu != event->pmu &&
849 !is_software_event(event->group_leader))
850 return -EINVAL;
851
852 list_for_each_entry(sibling, &event->group_leader->sibling_list,
853 group_entry)
854 if (sibling->pmu != event->pmu &&
855 !is_software_event(sibling))
856 return -EINVAL;
857
a33b0daa
PM
858 return 0;
859}
860
a33b0daa
PM
861static u64 arm_ccn_pmu_read_counter(struct arm_ccn *ccn, int idx)
862{
863 u64 res;
864
865 if (idx == CCN_IDX_PMU_CYCLE_COUNTER) {
866#ifdef readq
867 res = readq(ccn->dt.base + CCN_DT_PMCCNTR);
868#else
869 /* 40 bit counter, can do snapshot and read in two parts */
870 writel(0x1, ccn->dt.base + CCN_DT_PMSR_REQ);
871 while (!(readl(ccn->dt.base + CCN_DT_PMSR) & 0x1))
872 ;
873 writel(0x1, ccn->dt.base + CCN_DT_PMSR_CLR);
874 res = readl(ccn->dt.base + CCN_DT_PMCCNTRSR + 4) & 0xff;
875 res <<= 32;
876 res |= readl(ccn->dt.base + CCN_DT_PMCCNTRSR);
877#endif
878 } else {
879 res = readl(ccn->dt.base + CCN_DT_PMEVCNT(idx));
880 }
881
882 return res;
883}
884
885static void arm_ccn_pmu_event_update(struct perf_event *event)
886{
887 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
888 struct hw_perf_event *hw = &event->hw;
889 u64 prev_count, new_count, mask;
890
891 do {
892 prev_count = local64_read(&hw->prev_count);
893 new_count = arm_ccn_pmu_read_counter(ccn, hw->idx);
894 } while (local64_xchg(&hw->prev_count, new_count) != prev_count);
895
896 mask = (1LLU << (hw->idx == CCN_IDX_PMU_CYCLE_COUNTER ? 40 : 32)) - 1;
897
898 local64_add((new_count - prev_count) & mask, &event->count);
899}
900
901static void arm_ccn_pmu_xp_dt_config(struct perf_event *event, int enable)
902{
903 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
904 struct hw_perf_event *hw = &event->hw;
905 struct arm_ccn_component *xp;
906 u32 val, dt_cfg;
907
b7c1beb2
PM
908 /* Nothing to do for cycle counter */
909 if (hw->idx == CCN_IDX_PMU_CYCLE_COUNTER)
910 return;
911
a33b0daa
PM
912 if (CCN_CONFIG_TYPE(event->attr.config) == CCN_TYPE_XP)
913 xp = &ccn->xp[CCN_CONFIG_XP(event->attr.config)];
914 else
915 xp = &ccn->xp[arm_ccn_node_to_xp(
916 CCN_CONFIG_NODE(event->attr.config))];
917
918 if (enable)
919 dt_cfg = hw->event_base;
920 else
921 dt_cfg = CCN_XP_DT_CONFIG__DT_CFG__PASS_THROUGH;
922
923 spin_lock(&ccn->dt.config_lock);
924
925 val = readl(xp->base + CCN_XP_DT_CONFIG);
926 val &= ~(CCN_XP_DT_CONFIG__DT_CFG__MASK <<
927 CCN_XP_DT_CONFIG__DT_CFG__SHIFT(hw->idx));
928 val |= dt_cfg << CCN_XP_DT_CONFIG__DT_CFG__SHIFT(hw->idx);
929 writel(val, xp->base + CCN_XP_DT_CONFIG);
930
931 spin_unlock(&ccn->dt.config_lock);
932}
933
934static void arm_ccn_pmu_event_start(struct perf_event *event, int flags)
935{
936 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
937 struct hw_perf_event *hw = &event->hw;
938
939 local64_set(&event->hw.prev_count,
940 arm_ccn_pmu_read_counter(ccn, hw->idx));
941 hw->state = 0;
942
ffa41524
PM
943 /*
944 * Pin the timer, so that the overflows are handled by the chosen
945 * event->cpu (this is the same one as presented in "cpumask"
946 * attribute).
947 */
948 if (!ccn->irq)
e532ffea
PM
949 hrtimer_start(&ccn->dt.hrtimer, arm_ccn_pmu_timer_period(),
950 HRTIMER_MODE_REL_PINNED);
a33b0daa
PM
951
952 /* Set the DT bus input, engaging the counter */
953 arm_ccn_pmu_xp_dt_config(event, 1);
954}
955
956static void arm_ccn_pmu_event_stop(struct perf_event *event, int flags)
957{
958 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
959 struct hw_perf_event *hw = &event->hw;
960 u64 timeout;
961
962 /* Disable counting, setting the DT bus to pass-through mode */
963 arm_ccn_pmu_xp_dt_config(event, 0);
964
ffa41524 965 if (!ccn->irq)
a33b0daa
PM
966 hrtimer_cancel(&ccn->dt.hrtimer);
967
968 /* Let the DT bus drain */
969 timeout = arm_ccn_pmu_read_counter(ccn, CCN_IDX_PMU_CYCLE_COUNTER) +
970 ccn->num_xps;
971 while (arm_ccn_pmu_read_counter(ccn, CCN_IDX_PMU_CYCLE_COUNTER) <
972 timeout)
973 cpu_relax();
974
975 if (flags & PERF_EF_UPDATE)
976 arm_ccn_pmu_event_update(event);
977
978 hw->state |= PERF_HES_STOPPED;
979}
980
981static void arm_ccn_pmu_xp_watchpoint_config(struct perf_event *event)
982{
983 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
984 struct hw_perf_event *hw = &event->hw;
985 struct arm_ccn_component *source =
986 ccn->dt.pmu_counters[hw->idx].source;
987 unsigned long wp = hw->config_base;
988 u32 val;
989 u64 cmp_l = event->attr.config1;
990 u64 cmp_h = event->attr.config2;
991 u64 mask_l = ccn->dt.cmp_mask[CCN_CONFIG_MASK(event->attr.config)].l;
992 u64 mask_h = ccn->dt.cmp_mask[CCN_CONFIG_MASK(event->attr.config)].h;
993
994 hw->event_base = CCN_XP_DT_CONFIG__DT_CFG__WATCHPOINT(wp);
995
996 /* Direction (RX/TX), device (port) & virtual channel */
997 val = readl(source->base + CCN_XP_DT_INTERFACE_SEL);
998 val &= ~(CCN_XP_DT_INTERFACE_SEL__DT_IO_SEL__MASK <<
999 CCN_XP_DT_INTERFACE_SEL__DT_IO_SEL__SHIFT(wp));
1000 val |= CCN_CONFIG_DIR(event->attr.config) <<
1001 CCN_XP_DT_INTERFACE_SEL__DT_IO_SEL__SHIFT(wp);
1002 val &= ~(CCN_XP_DT_INTERFACE_SEL__DT_DEV_SEL__MASK <<
1003 CCN_XP_DT_INTERFACE_SEL__DT_DEV_SEL__SHIFT(wp));
1004 val |= CCN_CONFIG_PORT(event->attr.config) <<
1005 CCN_XP_DT_INTERFACE_SEL__DT_DEV_SEL__SHIFT(wp);
1006 val &= ~(CCN_XP_DT_INTERFACE_SEL__DT_VC_SEL__MASK <<
1007 CCN_XP_DT_INTERFACE_SEL__DT_VC_SEL__SHIFT(wp));
1008 val |= CCN_CONFIG_VC(event->attr.config) <<
1009 CCN_XP_DT_INTERFACE_SEL__DT_VC_SEL__SHIFT(wp);
1010 writel(val, source->base + CCN_XP_DT_INTERFACE_SEL);
1011
1012 /* Comparison values */
1013 writel(cmp_l & 0xffffffff, source->base + CCN_XP_DT_CMP_VAL_L(wp));
b928466b 1014 writel((cmp_l >> 32) & 0x7fffffff,
a33b0daa
PM
1015 source->base + CCN_XP_DT_CMP_VAL_L(wp) + 4);
1016 writel(cmp_h & 0xffffffff, source->base + CCN_XP_DT_CMP_VAL_H(wp));
1017 writel((cmp_h >> 32) & 0x0fffffff,
1018 source->base + CCN_XP_DT_CMP_VAL_H(wp) + 4);
1019
1020 /* Mask */
1021 writel(mask_l & 0xffffffff, source->base + CCN_XP_DT_CMP_MASK_L(wp));
b928466b 1022 writel((mask_l >> 32) & 0x7fffffff,
a33b0daa
PM
1023 source->base + CCN_XP_DT_CMP_MASK_L(wp) + 4);
1024 writel(mask_h & 0xffffffff, source->base + CCN_XP_DT_CMP_MASK_H(wp));
1025 writel((mask_h >> 32) & 0x0fffffff,
1026 source->base + CCN_XP_DT_CMP_MASK_H(wp) + 4);
1027}
1028
1029static void arm_ccn_pmu_xp_event_config(struct perf_event *event)
1030{
1031 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
1032 struct hw_perf_event *hw = &event->hw;
1033 struct arm_ccn_component *source =
1034 ccn->dt.pmu_counters[hw->idx].source;
1035 u32 val, id;
1036
1037 hw->event_base = CCN_XP_DT_CONFIG__DT_CFG__XP_PMU_EVENT(hw->config_base);
1038
1039 id = (CCN_CONFIG_VC(event->attr.config) << 4) |
90d11e26 1040 (CCN_CONFIG_BUS(event->attr.config) << 3) |
a33b0daa
PM
1041 (CCN_CONFIG_EVENT(event->attr.config) << 0);
1042
1043 val = readl(source->base + CCN_XP_PMU_EVENT_SEL);
1044 val &= ~(CCN_XP_PMU_EVENT_SEL__ID__MASK <<
1045 CCN_XP_PMU_EVENT_SEL__ID__SHIFT(hw->config_base));
1046 val |= id << CCN_XP_PMU_EVENT_SEL__ID__SHIFT(hw->config_base);
1047 writel(val, source->base + CCN_XP_PMU_EVENT_SEL);
1048}
1049
1050static void arm_ccn_pmu_node_event_config(struct perf_event *event)
1051{
1052 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
1053 struct hw_perf_event *hw = &event->hw;
1054 struct arm_ccn_component *source =
1055 ccn->dt.pmu_counters[hw->idx].source;
1056 u32 type = CCN_CONFIG_TYPE(event->attr.config);
1057 u32 val, port;
1058
1059 port = arm_ccn_node_to_xp_port(CCN_CONFIG_NODE(event->attr.config));
1060 hw->event_base = CCN_XP_DT_CONFIG__DT_CFG__DEVICE_PMU_EVENT(port,
1061 hw->config_base);
1062
1063 /* These *_event_sel regs should be identical, but let's make sure... */
1064 BUILD_BUG_ON(CCN_HNF_PMU_EVENT_SEL != CCN_SBAS_PMU_EVENT_SEL);
1065 BUILD_BUG_ON(CCN_SBAS_PMU_EVENT_SEL != CCN_RNI_PMU_EVENT_SEL);
1066 BUILD_BUG_ON(CCN_HNF_PMU_EVENT_SEL__ID__SHIFT(1) !=
1067 CCN_SBAS_PMU_EVENT_SEL__ID__SHIFT(1));
1068 BUILD_BUG_ON(CCN_SBAS_PMU_EVENT_SEL__ID__SHIFT(1) !=
1069 CCN_RNI_PMU_EVENT_SEL__ID__SHIFT(1));
1070 BUILD_BUG_ON(CCN_HNF_PMU_EVENT_SEL__ID__MASK !=
1071 CCN_SBAS_PMU_EVENT_SEL__ID__MASK);
1072 BUILD_BUG_ON(CCN_SBAS_PMU_EVENT_SEL__ID__MASK !=
1073 CCN_RNI_PMU_EVENT_SEL__ID__MASK);
1074 if (WARN_ON(type != CCN_TYPE_HNF && type != CCN_TYPE_SBAS &&
1075 !arm_ccn_pmu_type_eq(type, CCN_TYPE_RNI_3P)))
1076 return;
1077
1078 /* Set the event id for the pre-allocated counter */
1079 val = readl(source->base + CCN_HNF_PMU_EVENT_SEL);
1080 val &= ~(CCN_HNF_PMU_EVENT_SEL__ID__MASK <<
1081 CCN_HNF_PMU_EVENT_SEL__ID__SHIFT(hw->config_base));
1082 val |= CCN_CONFIG_EVENT(event->attr.config) <<
1083 CCN_HNF_PMU_EVENT_SEL__ID__SHIFT(hw->config_base);
1084 writel(val, source->base + CCN_HNF_PMU_EVENT_SEL);
1085}
1086
1087static void arm_ccn_pmu_event_config(struct perf_event *event)
1088{
1089 struct arm_ccn *ccn = pmu_to_arm_ccn(event->pmu);
1090 struct hw_perf_event *hw = &event->hw;
1091 u32 xp, offset, val;
1092
1093 /* Cycle counter requires no setup */
1094 if (hw->idx == CCN_IDX_PMU_CYCLE_COUNTER)
1095 return;
1096
1097 if (CCN_CONFIG_TYPE(event->attr.config) == CCN_TYPE_XP)
1098 xp = CCN_CONFIG_XP(event->attr.config);
1099 else
1100 xp = arm_ccn_node_to_xp(CCN_CONFIG_NODE(event->attr.config));
1101
1102 spin_lock(&ccn->dt.config_lock);
1103
1104 /* Set the DT bus "distance" register */
1105 offset = (hw->idx / 4) * 4;
1106 val = readl(ccn->dt.base + CCN_DT_ACTIVE_DSM + offset);
1107 val &= ~(CCN_DT_ACTIVE_DSM__DSM_ID__MASK <<
1108 CCN_DT_ACTIVE_DSM__DSM_ID__SHIFT(hw->idx % 4));
1109 val |= xp << CCN_DT_ACTIVE_DSM__DSM_ID__SHIFT(hw->idx % 4);
1110 writel(val, ccn->dt.base + CCN_DT_ACTIVE_DSM + offset);
1111
1112 if (CCN_CONFIG_TYPE(event->attr.config) == CCN_TYPE_XP) {
1113 if (CCN_CONFIG_EVENT(event->attr.config) ==
1114 CCN_EVENT_WATCHPOINT)
1115 arm_ccn_pmu_xp_watchpoint_config(event);
1116 else
1117 arm_ccn_pmu_xp_event_config(event);
1118 } else {
1119 arm_ccn_pmu_node_event_config(event);
1120 }
1121
1122 spin_unlock(&ccn->dt.config_lock);
1123}
1124
1125static int arm_ccn_pmu_event_add(struct perf_event *event, int flags)
1126{
57006d3e 1127 int err;
a33b0daa
PM
1128 struct hw_perf_event *hw = &event->hw;
1129
57006d3e
PM
1130 err = arm_ccn_pmu_event_alloc(event);
1131 if (err)
1132 return err;
1133
a33b0daa
PM
1134 arm_ccn_pmu_event_config(event);
1135
1136 hw->state = PERF_HES_STOPPED;
1137
1138 if (flags & PERF_EF_START)
1139 arm_ccn_pmu_event_start(event, PERF_EF_UPDATE);
1140
1141 return 0;
1142}
1143
1144static void arm_ccn_pmu_event_del(struct perf_event *event, int flags)
1145{
1146 arm_ccn_pmu_event_stop(event, PERF_EF_UPDATE);
57006d3e
PM
1147
1148 arm_ccn_pmu_event_release(event);
a33b0daa
PM
1149}
1150
1151static void arm_ccn_pmu_event_read(struct perf_event *event)
1152{
1153 arm_ccn_pmu_event_update(event);
1154}
1155
1156static irqreturn_t arm_ccn_pmu_overflow_handler(struct arm_ccn_dt *dt)
1157{
1158 u32 pmovsr = readl(dt->base + CCN_DT_PMOVSR);
1159 int idx;
1160
1161 if (!pmovsr)
1162 return IRQ_NONE;
1163
1164 writel(pmovsr, dt->base + CCN_DT_PMOVSR_CLR);
1165
1166 BUILD_BUG_ON(CCN_IDX_PMU_CYCLE_COUNTER != CCN_NUM_PMU_EVENT_COUNTERS);
1167
1168 for (idx = 0; idx < CCN_NUM_PMU_EVENT_COUNTERS + 1; idx++) {
1169 struct perf_event *event = dt->pmu_counters[idx].event;
1170 int overflowed = pmovsr & BIT(idx);
1171
fa637bf0
PM
1172 WARN_ON_ONCE(overflowed && !event &&
1173 idx != CCN_IDX_PMU_CYCLE_COUNTER);
a33b0daa
PM
1174
1175 if (!event || !overflowed)
1176 continue;
1177
1178 arm_ccn_pmu_event_update(event);
1179 }
1180
1181 return IRQ_HANDLED;
1182}
1183
1184static enum hrtimer_restart arm_ccn_pmu_timer_handler(struct hrtimer *hrtimer)
1185{
1186 struct arm_ccn_dt *dt = container_of(hrtimer, struct arm_ccn_dt,
1187 hrtimer);
1188 unsigned long flags;
1189
1190 local_irq_save(flags);
1191 arm_ccn_pmu_overflow_handler(dt);
1192 local_irq_restore(flags);
1193
1194 hrtimer_forward_now(hrtimer, arm_ccn_pmu_timer_period());
1195 return HRTIMER_RESTART;
1196}
1197
1198
fdc15a36 1199static int arm_ccn_pmu_offline_cpu(unsigned int cpu)
ffa41524 1200{
fdc15a36 1201 struct arm_ccn_dt *dt;
ffa41524
PM
1202 unsigned int target;
1203
fdc15a36
SAS
1204 mutex_lock(&arm_ccn_mutex);
1205 list_for_each_entry(dt, &arm_ccn_list, entry) {
1206 struct arm_ccn *ccn = container_of(dt, struct arm_ccn, dt);
1207
ffa41524 1208 if (!cpumask_test_and_clear_cpu(cpu, &dt->cpu))
fdc15a36 1209 continue;
ffa41524 1210 target = cpumask_any_but(cpu_online_mask, cpu);
b20519fd 1211 if (target >= nr_cpu_ids)
fdc15a36 1212 continue;
ffa41524
PM
1213 perf_pmu_migrate_context(&dt->pmu, cpu, target);
1214 cpumask_set_cpu(target, &dt->cpu);
a0bcbe96 1215 if (ccn->irq)
5420f9fd 1216 WARN_ON(irq_set_affinity_hint(ccn->irq, &dt->cpu) != 0);
ffa41524 1217 }
fdc15a36
SAS
1218 mutex_unlock(&arm_ccn_mutex);
1219 return 0;
ffa41524
PM
1220}
1221
1222
a33b0daa
PM
1223static DEFINE_IDA(arm_ccn_pmu_ida);
1224
1225static int arm_ccn_pmu_init(struct arm_ccn *ccn)
1226{
1227 int i;
1228 char *name;
ffa41524 1229 int err;
a33b0daa
PM
1230
1231 /* Initialize DT subsystem */
1232 ccn->dt.base = ccn->base + CCN_REGION_SIZE;
1233 spin_lock_init(&ccn->dt.config_lock);
fa637bf0 1234 writel(CCN_DT_PMOVSR_CLR__MASK, ccn->dt.base + CCN_DT_PMOVSR_CLR);
a33b0daa
PM
1235 writel(CCN_DT_CTL__DT_EN, ccn->dt.base + CCN_DT_CTL);
1236 writel(CCN_DT_PMCR__OVFL_INTR_EN | CCN_DT_PMCR__PMU_EN,
1237 ccn->dt.base + CCN_DT_PMCR);
1238 writel(0x1, ccn->dt.base + CCN_DT_PMSR_CLR);
1239 for (i = 0; i < ccn->num_xps; i++) {
1240 writel(0, ccn->xp[i].base + CCN_XP_DT_CONFIG);
1241 writel((CCN_XP_DT_CONTROL__WP_ARM_SEL__ALWAYS <<
1242 CCN_XP_DT_CONTROL__WP_ARM_SEL__SHIFT(0)) |
1243 (CCN_XP_DT_CONTROL__WP_ARM_SEL__ALWAYS <<
1244 CCN_XP_DT_CONTROL__WP_ARM_SEL__SHIFT(1)) |
1245 CCN_XP_DT_CONTROL__DT_ENABLE,
1246 ccn->xp[i].base + CCN_XP_DT_CONTROL);
1247 }
1248 ccn->dt.cmp_mask[CCN_IDX_MASK_ANY].l = ~0;
1249 ccn->dt.cmp_mask[CCN_IDX_MASK_ANY].h = ~0;
1250 ccn->dt.cmp_mask[CCN_IDX_MASK_EXACT].l = 0;
1251 ccn->dt.cmp_mask[CCN_IDX_MASK_EXACT].h = 0;
1252 ccn->dt.cmp_mask[CCN_IDX_MASK_ORDER].l = ~0;
1253 ccn->dt.cmp_mask[CCN_IDX_MASK_ORDER].h = ~(0x1 << 15);
1254 ccn->dt.cmp_mask[CCN_IDX_MASK_OPCODE].l = ~0;
1255 ccn->dt.cmp_mask[CCN_IDX_MASK_OPCODE].h = ~(0x1f << 9);
1256
1257 /* Get a convenient /sys/event_source/devices/ name */
1258 ccn->dt.id = ida_simple_get(&arm_ccn_pmu_ida, 0, 0, GFP_KERNEL);
1259 if (ccn->dt.id == 0) {
1260 name = "ccn";
1261 } else {
1262 int len = snprintf(NULL, 0, "ccn_%d", ccn->dt.id);
1263
1264 name = devm_kzalloc(ccn->dev, len + 1, GFP_KERNEL);
1265 snprintf(name, len + 1, "ccn_%d", ccn->dt.id);
1266 }
1267
1268 /* Perf driver registration */
1269 ccn->dt.pmu = (struct pmu) {
1270 .attr_groups = arm_ccn_pmu_attr_groups,
1271 .task_ctx_nr = perf_invalid_context,
1272 .event_init = arm_ccn_pmu_event_init,
1273 .add = arm_ccn_pmu_event_add,
1274 .del = arm_ccn_pmu_event_del,
1275 .start = arm_ccn_pmu_event_start,
1276 .stop = arm_ccn_pmu_event_stop,
1277 .read = arm_ccn_pmu_event_read,
1278 };
1279
1280 /* No overflow interrupt? Have to use a timer instead. */
ffa41524 1281 if (!ccn->irq) {
a33b0daa
PM
1282 dev_info(ccn->dev, "No access to interrupts, using timer.\n");
1283 hrtimer_init(&ccn->dt.hrtimer, CLOCK_MONOTONIC,
1284 HRTIMER_MODE_REL);
1285 ccn->dt.hrtimer.function = arm_ccn_pmu_timer_handler;
1286 }
1287
ffa41524
PM
1288 /* Pick one CPU which we will use to collect data from CCN... */
1289 cpumask_set_cpu(smp_processor_id(), &ccn->dt.cpu);
1290
ffa41524
PM
1291 /* Also make sure that the overflow interrupt is handled by this CPU */
1292 if (ccn->irq) {
5420f9fd 1293 err = irq_set_affinity_hint(ccn->irq, &ccn->dt.cpu);
ffa41524
PM
1294 if (err) {
1295 dev_err(ccn->dev, "Failed to set interrupt affinity!\n");
1296 goto error_set_affinity;
1297 }
1298 }
1299
1300 err = perf_pmu_register(&ccn->dt.pmu, name, -1);
1301 if (err)
1302 goto error_pmu_register;
1303
fdc15a36
SAS
1304 mutex_lock(&arm_ccn_mutex);
1305 list_add(&ccn->dt.entry, &arm_ccn_list);
1306 mutex_unlock(&arm_ccn_mutex);
ffa41524
PM
1307 return 0;
1308
1309error_pmu_register:
1310error_set_affinity:
ffa41524
PM
1311 ida_simple_remove(&arm_ccn_pmu_ida, ccn->dt.id);
1312 for (i = 0; i < ccn->num_xps; i++)
1313 writel(0, ccn->xp[i].base + CCN_XP_DT_CONTROL);
1314 writel(0, ccn->dt.base + CCN_DT_PMCR);
1315 return err;
a33b0daa
PM
1316}
1317
1318static void arm_ccn_pmu_cleanup(struct arm_ccn *ccn)
1319{
1320 int i;
1321
fdc15a36
SAS
1322 mutex_lock(&arm_ccn_mutex);
1323 list_del(&ccn->dt.entry);
1324 mutex_unlock(&arm_ccn_mutex);
1325
5420f9fd
SP
1326 if (ccn->irq)
1327 irq_set_affinity_hint(ccn->irq, NULL);
a33b0daa
PM
1328 for (i = 0; i < ccn->num_xps; i++)
1329 writel(0, ccn->xp[i].base + CCN_XP_DT_CONTROL);
1330 writel(0, ccn->dt.base + CCN_DT_PMCR);
1331 perf_pmu_unregister(&ccn->dt.pmu);
1332 ida_simple_remove(&arm_ccn_pmu_ida, ccn->dt.id);
1333}
1334
a33b0daa
PM
1335static int arm_ccn_for_each_valid_region(struct arm_ccn *ccn,
1336 int (*callback)(struct arm_ccn *ccn, int region,
1337 void __iomem *base, u32 type, u32 id))
1338{
1339 int region;
1340
1341 for (region = 0; region < CCN_NUM_REGIONS; region++) {
1342 u32 val, type, id;
1343 void __iomem *base;
1344 int err;
1345
1346 val = readl(ccn->base + CCN_MN_OLY_COMP_LIST_63_0 +
1347 4 * (region / 32));
1348 if (!(val & (1 << (region % 32))))
1349 continue;
1350
1351 base = ccn->base + region * CCN_REGION_SIZE;
1352 val = readl(base + CCN_ALL_OLY_ID);
1353 type = (val >> CCN_ALL_OLY_ID__OLY_ID__SHIFT) &
1354 CCN_ALL_OLY_ID__OLY_ID__MASK;
1355 id = (val >> CCN_ALL_OLY_ID__NODE_ID__SHIFT) &
1356 CCN_ALL_OLY_ID__NODE_ID__MASK;
1357
1358 err = callback(ccn, region, base, type, id);
1359 if (err)
1360 return err;
1361 }
1362
1363 return 0;
1364}
1365
1366static int arm_ccn_get_nodes_num(struct arm_ccn *ccn, int region,
1367 void __iomem *base, u32 type, u32 id)
1368{
1369
1370 if (type == CCN_TYPE_XP && id >= ccn->num_xps)
1371 ccn->num_xps = id + 1;
1372 else if (id >= ccn->num_nodes)
1373 ccn->num_nodes = id + 1;
1374
1375 return 0;
1376}
1377
1378static int arm_ccn_init_nodes(struct arm_ccn *ccn, int region,
1379 void __iomem *base, u32 type, u32 id)
1380{
1381 struct arm_ccn_component *component;
1382
1383 dev_dbg(ccn->dev, "Region %d: id=%u, type=0x%02x\n", region, id, type);
1384
1385 switch (type) {
1386 case CCN_TYPE_MN:
4e486cba
PM
1387 ccn->mn_id = id;
1388 return 0;
a33b0daa
PM
1389 case CCN_TYPE_DT:
1390 return 0;
1391 case CCN_TYPE_XP:
1392 component = &ccn->xp[id];
1393 break;
1394 case CCN_TYPE_SBSX:
1395 ccn->sbsx_present = 1;
1396 component = &ccn->node[id];
1397 break;
1398 case CCN_TYPE_SBAS:
1399 ccn->sbas_present = 1;
1400 /* Fall-through */
1401 default:
1402 component = &ccn->node[id];
1403 break;
1404 }
1405
1406 component->base = base;
1407 component->type = type;
1408
1409 return 0;
1410}
1411
1412
1413static irqreturn_t arm_ccn_error_handler(struct arm_ccn *ccn,
1414 const u32 *err_sig_val)
1415{
1416 /* This should be really handled by firmware... */
1417 dev_err(ccn->dev, "Error reported in %08x%08x%08x%08x%08x%08x.\n",
1418 err_sig_val[5], err_sig_val[4], err_sig_val[3],
1419 err_sig_val[2], err_sig_val[1], err_sig_val[0]);
1420 dev_err(ccn->dev, "Disabling interrupt generation for all errors.\n");
1421 writel(CCN_MN_ERRINT_STATUS__ALL_ERRORS__DISABLE,
1422 ccn->base + CCN_MN_ERRINT_STATUS);
1423
1424 return IRQ_HANDLED;
1425}
1426
1427
1428static irqreturn_t arm_ccn_irq_handler(int irq, void *dev_id)
1429{
1430 irqreturn_t res = IRQ_NONE;
1431 struct arm_ccn *ccn = dev_id;
1432 u32 err_sig_val[6];
1433 u32 err_or;
1434 int i;
1435
1436 /* PMU overflow is a special case */
1437 err_or = err_sig_val[0] = readl(ccn->base + CCN_MN_ERR_SIG_VAL_63_0);
1438 if (err_or & CCN_MN_ERR_SIG_VAL_63_0__DT) {
1439 err_or &= ~CCN_MN_ERR_SIG_VAL_63_0__DT;
1440 res = arm_ccn_pmu_overflow_handler(&ccn->dt);
1441 }
1442
1443 /* Have to read all err_sig_vals to clear them */
1444 for (i = 1; i < ARRAY_SIZE(err_sig_val); i++) {
1445 err_sig_val[i] = readl(ccn->base +
1446 CCN_MN_ERR_SIG_VAL_63_0 + i * 4);
1447 err_or |= err_sig_val[i];
1448 }
1449 if (err_or)
1450 res |= arm_ccn_error_handler(ccn, err_sig_val);
1451
1452 if (res != IRQ_NONE)
1453 writel(CCN_MN_ERRINT_STATUS__INTREQ__DESSERT,
1454 ccn->base + CCN_MN_ERRINT_STATUS);
1455
1456 return res;
1457}
1458
1459
1460static int arm_ccn_probe(struct platform_device *pdev)
1461{
1462 struct arm_ccn *ccn;
1463 struct resource *res;
ffa41524 1464 unsigned int irq;
a33b0daa
PM
1465 int err;
1466
1467 ccn = devm_kzalloc(&pdev->dev, sizeof(*ccn), GFP_KERNEL);
1468 if (!ccn)
1469 return -ENOMEM;
1470 ccn->dev = &pdev->dev;
1471 platform_set_drvdata(pdev, ccn);
1472
1473 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1474 if (!res)
1475 return -EINVAL;
1476
1477 if (!devm_request_mem_region(ccn->dev, res->start,
1478 resource_size(res), pdev->name))
1479 return -EBUSY;
1480
1481 ccn->base = devm_ioremap(ccn->dev, res->start,
1482 resource_size(res));
1483 if (!ccn->base)
1484 return -EFAULT;
1485
1486 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1487 if (!res)
1488 return -EINVAL;
ffa41524 1489 irq = res->start;
a33b0daa
PM
1490
1491 /* Check if we can use the interrupt */
1492 writel(CCN_MN_ERRINT_STATUS__PMU_EVENTS__DISABLE,
1493 ccn->base + CCN_MN_ERRINT_STATUS);
1494 if (readl(ccn->base + CCN_MN_ERRINT_STATUS) &
1495 CCN_MN_ERRINT_STATUS__PMU_EVENTS__DISABLED) {
1496 /* Can set 'disable' bits, so can acknowledge interrupts */
1497 writel(CCN_MN_ERRINT_STATUS__PMU_EVENTS__ENABLE,
1498 ccn->base + CCN_MN_ERRINT_STATUS);
ffa41524
PM
1499 err = devm_request_irq(ccn->dev, irq, arm_ccn_irq_handler, 0,
1500 dev_name(ccn->dev), ccn);
a33b0daa
PM
1501 if (err)
1502 return err;
1503
ffa41524 1504 ccn->irq = irq;
a33b0daa
PM
1505 }
1506
1507
1508 /* Build topology */
1509
1510 err = arm_ccn_for_each_valid_region(ccn, arm_ccn_get_nodes_num);
1511 if (err)
1512 return err;
1513
1514 ccn->node = devm_kzalloc(ccn->dev, sizeof(*ccn->node) * ccn->num_nodes,
1515 GFP_KERNEL);
1516 ccn->xp = devm_kzalloc(ccn->dev, sizeof(*ccn->node) * ccn->num_xps,
1517 GFP_KERNEL);
1518 if (!ccn->node || !ccn->xp)
1519 return -ENOMEM;
1520
1521 err = arm_ccn_for_each_valid_region(ccn, arm_ccn_init_nodes);
1522 if (err)
1523 return err;
1524
1525 return arm_ccn_pmu_init(ccn);
1526}
1527
1528static int arm_ccn_remove(struct platform_device *pdev)
1529{
1530 struct arm_ccn *ccn = platform_get_drvdata(pdev);
1531
1532 arm_ccn_pmu_cleanup(ccn);
1533
1534 return 0;
1535}
1536
1537static const struct of_device_id arm_ccn_match[] = {
1538 { .compatible = "arm,ccn-504", },
1539 {},
1540};
1541
1542static struct platform_driver arm_ccn_driver = {
1543 .driver = {
1544 .name = "arm-ccn",
1545 .of_match_table = arm_ccn_match,
1546 },
1547 .probe = arm_ccn_probe,
1548 .remove = arm_ccn_remove,
1549};
1550
1551static int __init arm_ccn_init(void)
1552{
fdc15a36
SAS
1553 int i, ret;
1554
1555 ret = cpuhp_setup_state_nocalls(CPUHP_AP_PERF_ARM_CCN_ONLINE,
1556 "AP_PERF_ARM_CCN_ONLINE", NULL,
1557 arm_ccn_pmu_offline_cpu);
1558 if (ret)
1559 return ret;
a33b0daa
PM
1560
1561 for (i = 0; i < ARRAY_SIZE(arm_ccn_pmu_events); i++)
1562 arm_ccn_pmu_events_attrs[i] = &arm_ccn_pmu_events[i].attr.attr;
1563
1564 return platform_driver_register(&arm_ccn_driver);
1565}
1566
1567static void __exit arm_ccn_exit(void)
1568{
fdc15a36 1569 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_ARM_CCN_ONLINE);
a33b0daa
PM
1570 platform_driver_unregister(&arm_ccn_driver);
1571}
1572
1573module_init(arm_ccn_init);
1574module_exit(arm_ccn_exit);
1575
1576MODULE_AUTHOR("Pawel Moll <pawel.moll@arm.com>");
1577MODULE_LICENSE("GPL");