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