1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * APM X-Gene SoC PMU (Performance Monitor Unit)
5 * Copyright (c) 2016, Applied Micro Circuits Corporation
6 * Author: Hoan Tran <hotran@apm.com>
7 * Tai Nguyen <ttnguyen@apm.com>
10 #include <linux/acpi.h>
11 #include <linux/clk.h>
12 #include <linux/cpuhotplug.h>
13 #include <linux/cpumask.h>
14 #include <linux/interrupt.h>
16 #include <linux/mfd/syscon.h>
17 #include <linux/module.h>
18 #include <linux/of_address.h>
19 #include <linux/perf_event.h>
20 #include <linux/platform_device.h>
21 #include <linux/property.h>
22 #include <linux/regmap.h>
23 #include <linux/slab.h>
25 #define CSW_CSWCR 0x0000
26 #define CSW_CSWCR_DUALMCB_MASK BIT(0)
27 #define CSW_CSWCR_MCB0_ROUTING(x) (((x) & 0x0C) >> 2)
28 #define CSW_CSWCR_MCB1_ROUTING(x) (((x) & 0x30) >> 4)
29 #define MCBADDRMR 0x0000
30 #define MCBADDRMR_DUALMCU_MODE_MASK BIT(2)
32 #define PCPPMU_INTSTATUS_REG 0x000
33 #define PCPPMU_INTMASK_REG 0x004
34 #define PCPPMU_INTMASK 0x0000000F
35 #define PCPPMU_INTENMASK 0xFFFFFFFF
36 #define PCPPMU_INTCLRMASK 0xFFFFFFF0
37 #define PCPPMU_INT_MCU BIT(0)
38 #define PCPPMU_INT_MCB BIT(1)
39 #define PCPPMU_INT_L3C BIT(2)
40 #define PCPPMU_INT_IOB BIT(3)
42 #define PCPPMU_V3_INTMASK 0x00FF33FF
43 #define PCPPMU_V3_INTENMASK 0xFFFFFFFF
44 #define PCPPMU_V3_INTCLRMASK 0xFF00CC00
45 #define PCPPMU_V3_INT_MCU 0x000000FF
46 #define PCPPMU_V3_INT_MCB 0x00000300
47 #define PCPPMU_V3_INT_L3C 0x00FF0000
48 #define PCPPMU_V3_INT_IOB 0x00003000
50 #define PMU_MAX_COUNTERS 4
51 #define PMU_CNT_MAX_PERIOD 0xFFFFFFFFULL
52 #define PMU_V3_CNT_MAX_PERIOD 0xFFFFFFFFFFFFFFFFULL
53 #define PMU_OVERFLOW_MASK 0xF
54 #define PMU_PMCR_E BIT(0)
55 #define PMU_PMCR_P BIT(1)
57 #define PMU_PMEVCNTR0 0x000
58 #define PMU_PMEVCNTR1 0x004
59 #define PMU_PMEVCNTR2 0x008
60 #define PMU_PMEVCNTR3 0x00C
61 #define PMU_PMEVTYPER0 0x400
62 #define PMU_PMEVTYPER1 0x404
63 #define PMU_PMEVTYPER2 0x408
64 #define PMU_PMEVTYPER3 0x40C
65 #define PMU_PMAMR0 0xA00
66 #define PMU_PMAMR1 0xA04
67 #define PMU_PMCNTENSET 0xC00
68 #define PMU_PMCNTENCLR 0xC20
69 #define PMU_PMINTENSET 0xC40
70 #define PMU_PMINTENCLR 0xC60
71 #define PMU_PMOVSR 0xC80
72 #define PMU_PMCR 0xE04
74 /* PMU registers for V3 */
75 #define PMU_PMOVSCLR 0xC80
76 #define PMU_PMOVSSET 0xCC0
78 #define to_pmu_dev(p) container_of(p, struct xgene_pmu_dev, pmu)
79 #define GET_CNTR(ev) (ev->hw.idx)
80 #define GET_EVENTID(ev) (ev->hw.config & 0xFFULL)
81 #define GET_AGENTID(ev) (ev->hw.config_base & 0xFFFFFFFFUL)
82 #define GET_AGENT1ID(ev) ((ev->hw.config_base >> 32) & 0xFFFFFFFFUL)
90 struct xgene_pmu_dev
{
91 struct hw_pmu_info
*inf
;
92 struct xgene_pmu
*parent
;
95 DECLARE_BITMAP(cntr_assign_mask
, PMU_MAX_COUNTERS
);
97 const struct attribute_group
**attr_groups
;
98 struct perf_event
*pmu_counter_event
[PMU_MAX_COUNTERS
];
101 struct xgene_pmu_ops
{
102 void (*mask_int
)(struct xgene_pmu
*pmu
);
103 void (*unmask_int
)(struct xgene_pmu
*pmu
);
104 u64 (*read_counter
)(struct xgene_pmu_dev
*pmu
, int idx
);
105 void (*write_counter
)(struct xgene_pmu_dev
*pmu
, int idx
, u64 val
);
106 void (*write_evttype
)(struct xgene_pmu_dev
*pmu_dev
, int idx
, u32 val
);
107 void (*write_agentmsk
)(struct xgene_pmu_dev
*pmu_dev
, u32 val
);
108 void (*write_agent1msk
)(struct xgene_pmu_dev
*pmu_dev
, u32 val
);
109 void (*enable_counter
)(struct xgene_pmu_dev
*pmu_dev
, int idx
);
110 void (*disable_counter
)(struct xgene_pmu_dev
*pmu_dev
, int idx
);
111 void (*enable_counter_int
)(struct xgene_pmu_dev
*pmu_dev
, int idx
);
112 void (*disable_counter_int
)(struct xgene_pmu_dev
*pmu_dev
, int idx
);
113 void (*reset_counters
)(struct xgene_pmu_dev
*pmu_dev
);
114 void (*start_counters
)(struct xgene_pmu_dev
*pmu_dev
);
115 void (*stop_counters
)(struct xgene_pmu_dev
*pmu_dev
);
120 struct hlist_node node
;
122 void __iomem
*pcppmu_csr
;
129 const struct xgene_pmu_ops
*ops
;
130 struct list_head l3cpmus
;
131 struct list_head iobpmus
;
132 struct list_head mcbpmus
;
133 struct list_head mcpmus
;
136 struct xgene_pmu_dev_ctx
{
138 struct list_head next
;
139 struct xgene_pmu_dev
*pmu_dev
;
140 struct hw_pmu_info inf
;
143 struct xgene_pmu_data
{
148 enum xgene_pmu_version
{
154 enum xgene_pmu_dev_type
{
163 * sysfs format attributes
165 #define XGENE_PMU_FORMAT_ATTR(_name, _config) \
166 (&((struct dev_ext_attribute[]) { \
167 { .attr = __ATTR(_name, S_IRUGO, device_show_string, NULL), \
168 .var = (void *) _config, } \
171 static struct attribute
*l3c_pmu_format_attrs
[] = {
172 XGENE_PMU_FORMAT_ATTR(l3c_eventid
, "config:0-7"),
173 XGENE_PMU_FORMAT_ATTR(l3c_agentid
, "config1:0-9"),
177 static struct attribute
*iob_pmu_format_attrs
[] = {
178 XGENE_PMU_FORMAT_ATTR(iob_eventid
, "config:0-7"),
179 XGENE_PMU_FORMAT_ATTR(iob_agentid
, "config1:0-63"),
183 static struct attribute
*mcb_pmu_format_attrs
[] = {
184 XGENE_PMU_FORMAT_ATTR(mcb_eventid
, "config:0-5"),
185 XGENE_PMU_FORMAT_ATTR(mcb_agentid
, "config1:0-9"),
189 static struct attribute
*mc_pmu_format_attrs
[] = {
190 XGENE_PMU_FORMAT_ATTR(mc_eventid
, "config:0-28"),
194 static const struct attribute_group l3c_pmu_format_attr_group
= {
196 .attrs
= l3c_pmu_format_attrs
,
199 static const struct attribute_group iob_pmu_format_attr_group
= {
201 .attrs
= iob_pmu_format_attrs
,
204 static const struct attribute_group mcb_pmu_format_attr_group
= {
206 .attrs
= mcb_pmu_format_attrs
,
209 static const struct attribute_group mc_pmu_format_attr_group
= {
211 .attrs
= mc_pmu_format_attrs
,
214 static struct attribute
*l3c_pmu_v3_format_attrs
[] = {
215 XGENE_PMU_FORMAT_ATTR(l3c_eventid
, "config:0-39"),
219 static struct attribute
*iob_pmu_v3_format_attrs
[] = {
220 XGENE_PMU_FORMAT_ATTR(iob_eventid
, "config:0-47"),
224 static struct attribute
*iob_slow_pmu_v3_format_attrs
[] = {
225 XGENE_PMU_FORMAT_ATTR(iob_slow_eventid
, "config:0-16"),
229 static struct attribute
*mcb_pmu_v3_format_attrs
[] = {
230 XGENE_PMU_FORMAT_ATTR(mcb_eventid
, "config:0-35"),
234 static struct attribute
*mc_pmu_v3_format_attrs
[] = {
235 XGENE_PMU_FORMAT_ATTR(mc_eventid
, "config:0-44"),
239 static const struct attribute_group l3c_pmu_v3_format_attr_group
= {
241 .attrs
= l3c_pmu_v3_format_attrs
,
244 static const struct attribute_group iob_pmu_v3_format_attr_group
= {
246 .attrs
= iob_pmu_v3_format_attrs
,
249 static const struct attribute_group iob_slow_pmu_v3_format_attr_group
= {
251 .attrs
= iob_slow_pmu_v3_format_attrs
,
254 static const struct attribute_group mcb_pmu_v3_format_attr_group
= {
256 .attrs
= mcb_pmu_v3_format_attrs
,
259 static const struct attribute_group mc_pmu_v3_format_attr_group
= {
261 .attrs
= mc_pmu_v3_format_attrs
,
265 * sysfs event attributes
267 static ssize_t
xgene_pmu_event_show(struct device
*dev
,
268 struct device_attribute
*attr
, char *buf
)
270 struct perf_pmu_events_attr
*pmu_attr
=
271 container_of(attr
, struct perf_pmu_events_attr
, attr
);
273 return sysfs_emit(buf
, "config=0x%llx\n", pmu_attr
->id
);
276 #define XGENE_PMU_EVENT_ATTR(_name, _config) \
277 PMU_EVENT_ATTR_ID(_name, xgene_pmu_event_show, _config)
279 static struct attribute
*l3c_pmu_events_attrs
[] = {
280 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
281 XGENE_PMU_EVENT_ATTR(cycle
-count
-div
-64, 0x01),
282 XGENE_PMU_EVENT_ATTR(read
-hit
, 0x02),
283 XGENE_PMU_EVENT_ATTR(read
-miss
, 0x03),
284 XGENE_PMU_EVENT_ATTR(write
-need
-replacement
, 0x06),
285 XGENE_PMU_EVENT_ATTR(write
-not-need
-replacement
, 0x07),
286 XGENE_PMU_EVENT_ATTR(tq
-full
, 0x08),
287 XGENE_PMU_EVENT_ATTR(ackq
-full
, 0x09),
288 XGENE_PMU_EVENT_ATTR(wdb
-full
, 0x0a),
289 XGENE_PMU_EVENT_ATTR(bank
-fifo
-full
, 0x0b),
290 XGENE_PMU_EVENT_ATTR(odb
-full
, 0x0c),
291 XGENE_PMU_EVENT_ATTR(wbq
-full
, 0x0d),
292 XGENE_PMU_EVENT_ATTR(bank
-conflict
-fifo
-issue
, 0x0e),
293 XGENE_PMU_EVENT_ATTR(bank
-fifo
-issue
, 0x0f),
297 static struct attribute
*iob_pmu_events_attrs
[] = {
298 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
299 XGENE_PMU_EVENT_ATTR(cycle
-count
-div
-64, 0x01),
300 XGENE_PMU_EVENT_ATTR(axi0
-read
, 0x02),
301 XGENE_PMU_EVENT_ATTR(axi0
-read
-partial
, 0x03),
302 XGENE_PMU_EVENT_ATTR(axi1
-read
, 0x04),
303 XGENE_PMU_EVENT_ATTR(axi1
-read
-partial
, 0x05),
304 XGENE_PMU_EVENT_ATTR(csw
-read
-block
, 0x06),
305 XGENE_PMU_EVENT_ATTR(csw
-read
-partial
, 0x07),
306 XGENE_PMU_EVENT_ATTR(axi0
-write
, 0x10),
307 XGENE_PMU_EVENT_ATTR(axi0
-write
-partial
, 0x11),
308 XGENE_PMU_EVENT_ATTR(axi1
-write
, 0x13),
309 XGENE_PMU_EVENT_ATTR(axi1
-write
-partial
, 0x14),
310 XGENE_PMU_EVENT_ATTR(csw
-inbound
-dirty
, 0x16),
314 static struct attribute
*mcb_pmu_events_attrs
[] = {
315 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
316 XGENE_PMU_EVENT_ATTR(cycle
-count
-div
-64, 0x01),
317 XGENE_PMU_EVENT_ATTR(csw
-read
, 0x02),
318 XGENE_PMU_EVENT_ATTR(csw
-write
-request
, 0x03),
319 XGENE_PMU_EVENT_ATTR(mcb
-csw
-stall
, 0x04),
320 XGENE_PMU_EVENT_ATTR(cancel
-read
-gack
, 0x05),
324 static struct attribute
*mc_pmu_events_attrs
[] = {
325 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
326 XGENE_PMU_EVENT_ATTR(cycle
-count
-div
-64, 0x01),
327 XGENE_PMU_EVENT_ATTR(act
-cmd
-sent
, 0x02),
328 XGENE_PMU_EVENT_ATTR(pre
-cmd
-sent
, 0x03),
329 XGENE_PMU_EVENT_ATTR(rd
-cmd
-sent
, 0x04),
330 XGENE_PMU_EVENT_ATTR(rda
-cmd
-sent
, 0x05),
331 XGENE_PMU_EVENT_ATTR(wr
-cmd
-sent
, 0x06),
332 XGENE_PMU_EVENT_ATTR(wra
-cmd
-sent
, 0x07),
333 XGENE_PMU_EVENT_ATTR(pde
-cmd
-sent
, 0x08),
334 XGENE_PMU_EVENT_ATTR(sre
-cmd
-sent
, 0x09),
335 XGENE_PMU_EVENT_ATTR(prea
-cmd
-sent
, 0x0a),
336 XGENE_PMU_EVENT_ATTR(ref
-cmd
-sent
, 0x0b),
337 XGENE_PMU_EVENT_ATTR(rd
-rda
-cmd
-sent
, 0x0c),
338 XGENE_PMU_EVENT_ATTR(wr
-wra
-cmd
-sent
, 0x0d),
339 XGENE_PMU_EVENT_ATTR(in
-rd
-collision
, 0x0e),
340 XGENE_PMU_EVENT_ATTR(in
-wr
-collision
, 0x0f),
341 XGENE_PMU_EVENT_ATTR(collision
-queue
-not-empty
, 0x10),
342 XGENE_PMU_EVENT_ATTR(collision
-queue
-full
, 0x11),
343 XGENE_PMU_EVENT_ATTR(mcu
-request
, 0x12),
344 XGENE_PMU_EVENT_ATTR(mcu
-rd
-request
, 0x13),
345 XGENE_PMU_EVENT_ATTR(mcu
-hp
-rd
-request
, 0x14),
346 XGENE_PMU_EVENT_ATTR(mcu
-wr
-request
, 0x15),
347 XGENE_PMU_EVENT_ATTR(mcu
-rd
-proceed
-all
, 0x16),
348 XGENE_PMU_EVENT_ATTR(mcu
-rd
-proceed
-cancel
, 0x17),
349 XGENE_PMU_EVENT_ATTR(mcu
-rd
-response
, 0x18),
350 XGENE_PMU_EVENT_ATTR(mcu
-rd
-proceed
-speculative
-all
, 0x19),
351 XGENE_PMU_EVENT_ATTR(mcu
-rd
-proceed
-speculative
-cancel
, 0x1a),
352 XGENE_PMU_EVENT_ATTR(mcu
-wr
-proceed
-all
, 0x1b),
353 XGENE_PMU_EVENT_ATTR(mcu
-wr
-proceed
-cancel
, 0x1c),
357 static const struct attribute_group l3c_pmu_events_attr_group
= {
359 .attrs
= l3c_pmu_events_attrs
,
362 static const struct attribute_group iob_pmu_events_attr_group
= {
364 .attrs
= iob_pmu_events_attrs
,
367 static const struct attribute_group mcb_pmu_events_attr_group
= {
369 .attrs
= mcb_pmu_events_attrs
,
372 static const struct attribute_group mc_pmu_events_attr_group
= {
374 .attrs
= mc_pmu_events_attrs
,
377 static struct attribute
*l3c_pmu_v3_events_attrs
[] = {
378 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
379 XGENE_PMU_EVENT_ATTR(read
-hit
, 0x01),
380 XGENE_PMU_EVENT_ATTR(read
-miss
, 0x02),
381 XGENE_PMU_EVENT_ATTR(index
-flush
-eviction
, 0x03),
382 XGENE_PMU_EVENT_ATTR(write
-caused
-replacement
, 0x04),
383 XGENE_PMU_EVENT_ATTR(write
-not-caused
-replacement
, 0x05),
384 XGENE_PMU_EVENT_ATTR(clean
-eviction
, 0x06),
385 XGENE_PMU_EVENT_ATTR(dirty
-eviction
, 0x07),
386 XGENE_PMU_EVENT_ATTR(read
, 0x08),
387 XGENE_PMU_EVENT_ATTR(write
, 0x09),
388 XGENE_PMU_EVENT_ATTR(request
, 0x0a),
389 XGENE_PMU_EVENT_ATTR(tq
-bank
-conflict
-issue
-stall
, 0x0b),
390 XGENE_PMU_EVENT_ATTR(tq
-full
, 0x0c),
391 XGENE_PMU_EVENT_ATTR(ackq
-full
, 0x0d),
392 XGENE_PMU_EVENT_ATTR(wdb
-full
, 0x0e),
393 XGENE_PMU_EVENT_ATTR(odb
-full
, 0x10),
394 XGENE_PMU_EVENT_ATTR(wbq
-full
, 0x11),
395 XGENE_PMU_EVENT_ATTR(input
-req
-async
-fifo
-stall
, 0x12),
396 XGENE_PMU_EVENT_ATTR(output
-req
-async
-fifo
-stall
, 0x13),
397 XGENE_PMU_EVENT_ATTR(output
-data
-async
-fifo
-stall
, 0x14),
398 XGENE_PMU_EVENT_ATTR(total
-insertion
, 0x15),
399 XGENE_PMU_EVENT_ATTR(sip
-insertions
-r
-set
, 0x16),
400 XGENE_PMU_EVENT_ATTR(sip
-insertions
-r
-clear
, 0x17),
401 XGENE_PMU_EVENT_ATTR(dip
-insertions
-r
-set
, 0x18),
402 XGENE_PMU_EVENT_ATTR(dip
-insertions
-r
-clear
, 0x19),
403 XGENE_PMU_EVENT_ATTR(dip
-insertions
-force
-r
-set
, 0x1a),
404 XGENE_PMU_EVENT_ATTR(egression
, 0x1b),
405 XGENE_PMU_EVENT_ATTR(replacement
, 0x1c),
406 XGENE_PMU_EVENT_ATTR(old
-replacement
, 0x1d),
407 XGENE_PMU_EVENT_ATTR(young
-replacement
, 0x1e),
408 XGENE_PMU_EVENT_ATTR(r
-set
-replacement
, 0x1f),
409 XGENE_PMU_EVENT_ATTR(r
-clear
-replacement
, 0x20),
410 XGENE_PMU_EVENT_ATTR(old
-r
-replacement
, 0x21),
411 XGENE_PMU_EVENT_ATTR(old
-nr
-replacement
, 0x22),
412 XGENE_PMU_EVENT_ATTR(young
-r
-replacement
, 0x23),
413 XGENE_PMU_EVENT_ATTR(young
-nr
-replacement
, 0x24),
414 XGENE_PMU_EVENT_ATTR(bloomfilter
-clearing
, 0x25),
415 XGENE_PMU_EVENT_ATTR(generation
-flip
, 0x26),
416 XGENE_PMU_EVENT_ATTR(vcc
-droop
-detected
, 0x27),
420 static struct attribute
*iob_fast_pmu_v3_events_attrs
[] = {
421 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
422 XGENE_PMU_EVENT_ATTR(pa
-req
-buf
-alloc
-all
, 0x01),
423 XGENE_PMU_EVENT_ATTR(pa
-req
-buf
-alloc
-rd
, 0x02),
424 XGENE_PMU_EVENT_ATTR(pa
-req
-buf
-alloc
-wr
, 0x03),
425 XGENE_PMU_EVENT_ATTR(pa
-all
-cp
-req
, 0x04),
426 XGENE_PMU_EVENT_ATTR(pa
-cp
-blk
-req
, 0x05),
427 XGENE_PMU_EVENT_ATTR(pa
-cp
-ptl
-req
, 0x06),
428 XGENE_PMU_EVENT_ATTR(pa
-cp
-rd
-req
, 0x07),
429 XGENE_PMU_EVENT_ATTR(pa
-cp
-wr
-req
, 0x08),
430 XGENE_PMU_EVENT_ATTR(ba
-all
-req
, 0x09),
431 XGENE_PMU_EVENT_ATTR(ba
-rd
-req
, 0x0a),
432 XGENE_PMU_EVENT_ATTR(ba
-wr
-req
, 0x0b),
433 XGENE_PMU_EVENT_ATTR(pa
-rd
-shared
-req
-issued
, 0x10),
434 XGENE_PMU_EVENT_ATTR(pa
-rd
-exclusive
-req
-issued
, 0x11),
435 XGENE_PMU_EVENT_ATTR(pa
-wr
-invalidate
-req
-issued
-stashable
, 0x12),
436 XGENE_PMU_EVENT_ATTR(pa
-wr
-invalidate
-req
-issued
-nonstashable
, 0x13),
437 XGENE_PMU_EVENT_ATTR(pa
-wr
-back
-req
-issued
-stashable
, 0x14),
438 XGENE_PMU_EVENT_ATTR(pa
-wr
-back
-req
-issued
-nonstashable
, 0x15),
439 XGENE_PMU_EVENT_ATTR(pa
-ptl
-wr
-req
, 0x16),
440 XGENE_PMU_EVENT_ATTR(pa
-ptl
-rd
-req
, 0x17),
441 XGENE_PMU_EVENT_ATTR(pa
-wr
-back
-clean
-data
, 0x18),
442 XGENE_PMU_EVENT_ATTR(pa
-wr
-back
-cancelled
-on
-SS
, 0x1b),
443 XGENE_PMU_EVENT_ATTR(pa
-barrier
-occurrence
, 0x1c),
444 XGENE_PMU_EVENT_ATTR(pa
-barrier
-cycles
, 0x1d),
445 XGENE_PMU_EVENT_ATTR(pa
-total
-cp
-snoops
, 0x20),
446 XGENE_PMU_EVENT_ATTR(pa
-rd
-shared
-snoop
, 0x21),
447 XGENE_PMU_EVENT_ATTR(pa
-rd
-shared
-snoop
-hit
, 0x22),
448 XGENE_PMU_EVENT_ATTR(pa
-rd
-exclusive
-snoop
, 0x23),
449 XGENE_PMU_EVENT_ATTR(pa
-rd
-exclusive
-snoop
-hit
, 0x24),
450 XGENE_PMU_EVENT_ATTR(pa
-rd
-wr
-invalid
-snoop
, 0x25),
451 XGENE_PMU_EVENT_ATTR(pa
-rd
-wr
-invalid
-snoop
-hit
, 0x26),
452 XGENE_PMU_EVENT_ATTR(pa
-req
-buffer
-full
, 0x28),
453 XGENE_PMU_EVENT_ATTR(cswlf
-outbound
-req
-fifo
-full
, 0x29),
454 XGENE_PMU_EVENT_ATTR(cswlf
-inbound
-snoop
-fifo
-backpressure
, 0x2a),
455 XGENE_PMU_EVENT_ATTR(cswlf
-outbound
-lack
-fifo
-full
, 0x2b),
456 XGENE_PMU_EVENT_ATTR(cswlf
-inbound
-gack
-fifo
-backpressure
, 0x2c),
457 XGENE_PMU_EVENT_ATTR(cswlf
-outbound
-data
-fifo
-full
, 0x2d),
458 XGENE_PMU_EVENT_ATTR(cswlf
-inbound
-data
-fifo
-backpressure
, 0x2e),
459 XGENE_PMU_EVENT_ATTR(cswlf
-inbound
-req
-backpressure
, 0x2f),
463 static struct attribute
*iob_slow_pmu_v3_events_attrs
[] = {
464 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
465 XGENE_PMU_EVENT_ATTR(pa
-axi0
-rd
-req
, 0x01),
466 XGENE_PMU_EVENT_ATTR(pa
-axi0
-wr
-req
, 0x02),
467 XGENE_PMU_EVENT_ATTR(pa
-axi1
-rd
-req
, 0x03),
468 XGENE_PMU_EVENT_ATTR(pa
-axi1
-wr
-req
, 0x04),
469 XGENE_PMU_EVENT_ATTR(ba
-all
-axi
-req
, 0x07),
470 XGENE_PMU_EVENT_ATTR(ba
-axi
-rd
-req
, 0x08),
471 XGENE_PMU_EVENT_ATTR(ba
-axi
-wr
-req
, 0x09),
472 XGENE_PMU_EVENT_ATTR(ba
-free
-list
-empty
, 0x10),
476 static struct attribute
*mcb_pmu_v3_events_attrs
[] = {
477 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
478 XGENE_PMU_EVENT_ATTR(req
-receive
, 0x01),
479 XGENE_PMU_EVENT_ATTR(rd
-req
-recv
, 0x02),
480 XGENE_PMU_EVENT_ATTR(rd
-req
-recv
-2, 0x03),
481 XGENE_PMU_EVENT_ATTR(wr
-req
-recv
, 0x04),
482 XGENE_PMU_EVENT_ATTR(wr
-req
-recv
-2, 0x05),
483 XGENE_PMU_EVENT_ATTR(rd
-req
-sent
-to
-mcu
, 0x06),
484 XGENE_PMU_EVENT_ATTR(rd
-req
-sent
-to
-mcu
-2, 0x07),
485 XGENE_PMU_EVENT_ATTR(rd
-req
-sent
-to
-spec
-mcu
, 0x08),
486 XGENE_PMU_EVENT_ATTR(rd
-req
-sent
-to
-spec
-mcu
-2, 0x09),
487 XGENE_PMU_EVENT_ATTR(glbl
-ack
-recv
-for-rd
-sent
-to
-spec
-mcu
, 0x0a),
488 XGENE_PMU_EVENT_ATTR(glbl
-ack
-go
-recv
-for-rd
-sent
-to
-spec
-mcu
, 0x0b),
489 XGENE_PMU_EVENT_ATTR(glbl
-ack
-nogo
-recv
-for-rd
-sent
-to
-spec
-mcu
, 0x0c),
490 XGENE_PMU_EVENT_ATTR(glbl
-ack
-go
-recv
-any
-rd
-req
, 0x0d),
491 XGENE_PMU_EVENT_ATTR(glbl
-ack
-go
-recv
-any
-rd
-req
-2, 0x0e),
492 XGENE_PMU_EVENT_ATTR(wr
-req
-sent
-to
-mcu
, 0x0f),
493 XGENE_PMU_EVENT_ATTR(gack
-recv
, 0x10),
494 XGENE_PMU_EVENT_ATTR(rd
-gack
-recv
, 0x11),
495 XGENE_PMU_EVENT_ATTR(wr
-gack
-recv
, 0x12),
496 XGENE_PMU_EVENT_ATTR(cancel
-rd
-gack
, 0x13),
497 XGENE_PMU_EVENT_ATTR(cancel
-wr
-gack
, 0x14),
498 XGENE_PMU_EVENT_ATTR(mcb
-csw
-req
-stall
, 0x15),
499 XGENE_PMU_EVENT_ATTR(mcu
-req
-intf
-blocked
, 0x16),
500 XGENE_PMU_EVENT_ATTR(mcb
-mcu
-rd
-intf
-stall
, 0x17),
501 XGENE_PMU_EVENT_ATTR(csw
-rd
-intf
-blocked
, 0x18),
502 XGENE_PMU_EVENT_ATTR(csw
-local
-ack
-intf
-blocked
, 0x19),
503 XGENE_PMU_EVENT_ATTR(mcu
-req
-table
-full
, 0x1a),
504 XGENE_PMU_EVENT_ATTR(mcu
-stat
-table
-full
, 0x1b),
505 XGENE_PMU_EVENT_ATTR(mcu
-wr
-table
-full
, 0x1c),
506 XGENE_PMU_EVENT_ATTR(mcu
-rdreceipt
-resp
, 0x1d),
507 XGENE_PMU_EVENT_ATTR(mcu
-wrcomplete
-resp
, 0x1e),
508 XGENE_PMU_EVENT_ATTR(mcu
-retryack
-resp
, 0x1f),
509 XGENE_PMU_EVENT_ATTR(mcu
-pcrdgrant
-resp
, 0x20),
510 XGENE_PMU_EVENT_ATTR(mcu
-req
-from
-lastload
, 0x21),
511 XGENE_PMU_EVENT_ATTR(mcu
-req
-from
-bypass
, 0x22),
512 XGENE_PMU_EVENT_ATTR(volt
-droop
-detect
, 0x23),
516 static struct attribute
*mc_pmu_v3_events_attrs
[] = {
517 XGENE_PMU_EVENT_ATTR(cycle
-count
, 0x00),
518 XGENE_PMU_EVENT_ATTR(act
-sent
, 0x01),
519 XGENE_PMU_EVENT_ATTR(pre
-sent
, 0x02),
520 XGENE_PMU_EVENT_ATTR(rd
-sent
, 0x03),
521 XGENE_PMU_EVENT_ATTR(rda
-sent
, 0x04),
522 XGENE_PMU_EVENT_ATTR(wr
-sent
, 0x05),
523 XGENE_PMU_EVENT_ATTR(wra
-sent
, 0x06),
524 XGENE_PMU_EVENT_ATTR(pd
-entry
-vld
, 0x07),
525 XGENE_PMU_EVENT_ATTR(sref
-entry
-vld
, 0x08),
526 XGENE_PMU_EVENT_ATTR(prea
-sent
, 0x09),
527 XGENE_PMU_EVENT_ATTR(ref
-sent
, 0x0a),
528 XGENE_PMU_EVENT_ATTR(rd
-rda
-sent
, 0x0b),
529 XGENE_PMU_EVENT_ATTR(wr
-wra
-sent
, 0x0c),
530 XGENE_PMU_EVENT_ATTR(raw
-hazard
, 0x0d),
531 XGENE_PMU_EVENT_ATTR(war
-hazard
, 0x0e),
532 XGENE_PMU_EVENT_ATTR(waw
-hazard
, 0x0f),
533 XGENE_PMU_EVENT_ATTR(rar
-hazard
, 0x10),
534 XGENE_PMU_EVENT_ATTR(raw
-war
-waw
-hazard
, 0x11),
535 XGENE_PMU_EVENT_ATTR(hprd
-lprd
-wr
-req
-vld
, 0x12),
536 XGENE_PMU_EVENT_ATTR(lprd
-req
-vld
, 0x13),
537 XGENE_PMU_EVENT_ATTR(hprd
-req
-vld
, 0x14),
538 XGENE_PMU_EVENT_ATTR(hprd
-lprd
-req
-vld
, 0x15),
539 XGENE_PMU_EVENT_ATTR(wr
-req
-vld
, 0x16),
540 XGENE_PMU_EVENT_ATTR(partial
-wr
-req
-vld
, 0x17),
541 XGENE_PMU_EVENT_ATTR(rd
-retry
, 0x18),
542 XGENE_PMU_EVENT_ATTR(wr
-retry
, 0x19),
543 XGENE_PMU_EVENT_ATTR(retry
-gnt
, 0x1a),
544 XGENE_PMU_EVENT_ATTR(rank
-change
, 0x1b),
545 XGENE_PMU_EVENT_ATTR(dir
-change
, 0x1c),
546 XGENE_PMU_EVENT_ATTR(rank
-dir
-change
, 0x1d),
547 XGENE_PMU_EVENT_ATTR(rank
-active
, 0x1e),
548 XGENE_PMU_EVENT_ATTR(rank
-idle
, 0x1f),
549 XGENE_PMU_EVENT_ATTR(rank
-pd
, 0x20),
550 XGENE_PMU_EVENT_ATTR(rank
-sref
, 0x21),
551 XGENE_PMU_EVENT_ATTR(queue
-fill
-gt
-thresh
, 0x22),
552 XGENE_PMU_EVENT_ATTR(queue
-rds
-gt
-thresh
, 0x23),
553 XGENE_PMU_EVENT_ATTR(queue
-wrs
-gt
-thresh
, 0x24),
554 XGENE_PMU_EVENT_ATTR(phy
-updt
-complt
, 0x25),
555 XGENE_PMU_EVENT_ATTR(tz
-fail
, 0x26),
556 XGENE_PMU_EVENT_ATTR(dram
-errc
, 0x27),
557 XGENE_PMU_EVENT_ATTR(dram
-errd
, 0x28),
558 XGENE_PMU_EVENT_ATTR(rd
-enq
, 0x29),
559 XGENE_PMU_EVENT_ATTR(wr
-enq
, 0x2a),
560 XGENE_PMU_EVENT_ATTR(tmac
-limit
-reached
, 0x2b),
561 XGENE_PMU_EVENT_ATTR(tmaw
-tracker
-full
, 0x2c),
565 static const struct attribute_group l3c_pmu_v3_events_attr_group
= {
567 .attrs
= l3c_pmu_v3_events_attrs
,
570 static const struct attribute_group iob_fast_pmu_v3_events_attr_group
= {
572 .attrs
= iob_fast_pmu_v3_events_attrs
,
575 static const struct attribute_group iob_slow_pmu_v3_events_attr_group
= {
577 .attrs
= iob_slow_pmu_v3_events_attrs
,
580 static const struct attribute_group mcb_pmu_v3_events_attr_group
= {
582 .attrs
= mcb_pmu_v3_events_attrs
,
585 static const struct attribute_group mc_pmu_v3_events_attr_group
= {
587 .attrs
= mc_pmu_v3_events_attrs
,
591 * sysfs cpumask attributes
593 static ssize_t
cpumask_show(struct device
*dev
,
594 struct device_attribute
*attr
, char *buf
)
596 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(dev_get_drvdata(dev
));
598 return cpumap_print_to_pagebuf(true, buf
, &pmu_dev
->parent
->cpu
);
601 static DEVICE_ATTR_RO(cpumask
);
603 static struct attribute
*xgene_pmu_cpumask_attrs
[] = {
604 &dev_attr_cpumask
.attr
,
608 static const struct attribute_group pmu_cpumask_attr_group
= {
609 .attrs
= xgene_pmu_cpumask_attrs
,
613 * Per PMU device attribute groups of PMU v1 and v2
615 static const struct attribute_group
*l3c_pmu_attr_groups
[] = {
616 &l3c_pmu_format_attr_group
,
617 &pmu_cpumask_attr_group
,
618 &l3c_pmu_events_attr_group
,
622 static const struct attribute_group
*iob_pmu_attr_groups
[] = {
623 &iob_pmu_format_attr_group
,
624 &pmu_cpumask_attr_group
,
625 &iob_pmu_events_attr_group
,
629 static const struct attribute_group
*mcb_pmu_attr_groups
[] = {
630 &mcb_pmu_format_attr_group
,
631 &pmu_cpumask_attr_group
,
632 &mcb_pmu_events_attr_group
,
636 static const struct attribute_group
*mc_pmu_attr_groups
[] = {
637 &mc_pmu_format_attr_group
,
638 &pmu_cpumask_attr_group
,
639 &mc_pmu_events_attr_group
,
644 * Per PMU device attribute groups of PMU v3
646 static const struct attribute_group
*l3c_pmu_v3_attr_groups
[] = {
647 &l3c_pmu_v3_format_attr_group
,
648 &pmu_cpumask_attr_group
,
649 &l3c_pmu_v3_events_attr_group
,
653 static const struct attribute_group
*iob_fast_pmu_v3_attr_groups
[] = {
654 &iob_pmu_v3_format_attr_group
,
655 &pmu_cpumask_attr_group
,
656 &iob_fast_pmu_v3_events_attr_group
,
660 static const struct attribute_group
*iob_slow_pmu_v3_attr_groups
[] = {
661 &iob_slow_pmu_v3_format_attr_group
,
662 &pmu_cpumask_attr_group
,
663 &iob_slow_pmu_v3_events_attr_group
,
667 static const struct attribute_group
*mcb_pmu_v3_attr_groups
[] = {
668 &mcb_pmu_v3_format_attr_group
,
669 &pmu_cpumask_attr_group
,
670 &mcb_pmu_v3_events_attr_group
,
674 static const struct attribute_group
*mc_pmu_v3_attr_groups
[] = {
675 &mc_pmu_v3_format_attr_group
,
676 &pmu_cpumask_attr_group
,
677 &mc_pmu_v3_events_attr_group
,
681 static int get_next_avail_cntr(struct xgene_pmu_dev
*pmu_dev
)
685 cntr
= find_first_zero_bit(pmu_dev
->cntr_assign_mask
,
686 pmu_dev
->max_counters
);
687 if (cntr
== pmu_dev
->max_counters
)
689 set_bit(cntr
, pmu_dev
->cntr_assign_mask
);
694 static void clear_avail_cntr(struct xgene_pmu_dev
*pmu_dev
, int cntr
)
696 clear_bit(cntr
, pmu_dev
->cntr_assign_mask
);
699 static inline void xgene_pmu_mask_int(struct xgene_pmu
*xgene_pmu
)
701 writel(PCPPMU_INTENMASK
, xgene_pmu
->pcppmu_csr
+ PCPPMU_INTMASK_REG
);
704 static inline void xgene_pmu_v3_mask_int(struct xgene_pmu
*xgene_pmu
)
706 writel(PCPPMU_V3_INTENMASK
, xgene_pmu
->pcppmu_csr
+ PCPPMU_INTMASK_REG
);
709 static inline void xgene_pmu_unmask_int(struct xgene_pmu
*xgene_pmu
)
711 writel(PCPPMU_INTCLRMASK
, xgene_pmu
->pcppmu_csr
+ PCPPMU_INTMASK_REG
);
714 static inline void xgene_pmu_v3_unmask_int(struct xgene_pmu
*xgene_pmu
)
716 writel(PCPPMU_V3_INTCLRMASK
,
717 xgene_pmu
->pcppmu_csr
+ PCPPMU_INTMASK_REG
);
720 static inline u64
xgene_pmu_read_counter32(struct xgene_pmu_dev
*pmu_dev
,
723 return readl(pmu_dev
->inf
->csr
+ PMU_PMEVCNTR0
+ (4 * idx
));
726 static inline u64
xgene_pmu_read_counter64(struct xgene_pmu_dev
*pmu_dev
,
732 * v3 has 64-bit counter registers composed by 2 32-bit registers
733 * This can be a problem if the counter increases and carries
734 * out of bit [31] between 2 reads. The extra reads would help
735 * to prevent this issue.
738 hi
= xgene_pmu_read_counter32(pmu_dev
, 2 * idx
+ 1);
739 lo
= xgene_pmu_read_counter32(pmu_dev
, 2 * idx
);
740 } while (hi
!= xgene_pmu_read_counter32(pmu_dev
, 2 * idx
+ 1));
742 return (((u64
)hi
<< 32) | lo
);
746 xgene_pmu_write_counter32(struct xgene_pmu_dev
*pmu_dev
, int idx
, u64 val
)
748 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMEVCNTR0
+ (4 * idx
));
752 xgene_pmu_write_counter64(struct xgene_pmu_dev
*pmu_dev
, int idx
, u64 val
)
756 cnt_hi
= upper_32_bits(val
);
757 cnt_lo
= lower_32_bits(val
);
759 /* v3 has 64-bit counter registers composed by 2 32-bit registers */
760 xgene_pmu_write_counter32(pmu_dev
, 2 * idx
, cnt_lo
);
761 xgene_pmu_write_counter32(pmu_dev
, 2 * idx
+ 1, cnt_hi
);
765 xgene_pmu_write_evttype(struct xgene_pmu_dev
*pmu_dev
, int idx
, u32 val
)
767 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMEVTYPER0
+ (4 * idx
));
771 xgene_pmu_write_agentmsk(struct xgene_pmu_dev
*pmu_dev
, u32 val
)
773 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMAMR0
);
777 xgene_pmu_v3_write_agentmsk(struct xgene_pmu_dev
*pmu_dev
, u32 val
) { }
780 xgene_pmu_write_agent1msk(struct xgene_pmu_dev
*pmu_dev
, u32 val
)
782 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMAMR1
);
786 xgene_pmu_v3_write_agent1msk(struct xgene_pmu_dev
*pmu_dev
, u32 val
) { }
789 xgene_pmu_enable_counter(struct xgene_pmu_dev
*pmu_dev
, int idx
)
793 val
= readl(pmu_dev
->inf
->csr
+ PMU_PMCNTENSET
);
795 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMCNTENSET
);
799 xgene_pmu_disable_counter(struct xgene_pmu_dev
*pmu_dev
, int idx
)
803 val
= readl(pmu_dev
->inf
->csr
+ PMU_PMCNTENCLR
);
805 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMCNTENCLR
);
809 xgene_pmu_enable_counter_int(struct xgene_pmu_dev
*pmu_dev
, int idx
)
813 val
= readl(pmu_dev
->inf
->csr
+ PMU_PMINTENSET
);
815 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMINTENSET
);
819 xgene_pmu_disable_counter_int(struct xgene_pmu_dev
*pmu_dev
, int idx
)
823 val
= readl(pmu_dev
->inf
->csr
+ PMU_PMINTENCLR
);
825 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMINTENCLR
);
828 static inline void xgene_pmu_reset_counters(struct xgene_pmu_dev
*pmu_dev
)
832 val
= readl(pmu_dev
->inf
->csr
+ PMU_PMCR
);
834 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMCR
);
837 static inline void xgene_pmu_start_counters(struct xgene_pmu_dev
*pmu_dev
)
841 val
= readl(pmu_dev
->inf
->csr
+ PMU_PMCR
);
843 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMCR
);
846 static inline void xgene_pmu_stop_counters(struct xgene_pmu_dev
*pmu_dev
)
850 val
= readl(pmu_dev
->inf
->csr
+ PMU_PMCR
);
852 writel(val
, pmu_dev
->inf
->csr
+ PMU_PMCR
);
855 static void xgene_perf_pmu_enable(struct pmu
*pmu
)
857 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(pmu
);
858 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
859 bool enabled
= !bitmap_empty(pmu_dev
->cntr_assign_mask
,
860 pmu_dev
->max_counters
);
865 xgene_pmu
->ops
->start_counters(pmu_dev
);
868 static void xgene_perf_pmu_disable(struct pmu
*pmu
)
870 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(pmu
);
871 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
873 xgene_pmu
->ops
->stop_counters(pmu_dev
);
876 static int xgene_perf_event_init(struct perf_event
*event
)
878 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
879 struct hw_perf_event
*hw
= &event
->hw
;
880 struct perf_event
*sibling
;
882 /* Test the event attr type check for PMU enumeration */
883 if (event
->attr
.type
!= event
->pmu
->type
)
887 * SOC PMU counters are shared across all cores.
888 * Therefore, it does not support per-process mode.
889 * Also, it does not support event sampling mode.
891 if (is_sampling_event(event
) || event
->attach_state
& PERF_ATTACH_TASK
)
897 * Many perf core operations (eg. events rotation) operate on a
898 * single CPU context. This is obvious for CPU PMUs, where one
899 * expects the same sets of events being observed on all CPUs,
900 * but can lead to issues for off-core PMUs, where each
901 * event could be theoretically assigned to a different CPU. To
902 * mitigate this, we enforce CPU assignment to one, selected
903 * processor (the one described in the "cpumask" attribute).
905 event
->cpu
= cpumask_first(&pmu_dev
->parent
->cpu
);
907 hw
->config
= event
->attr
.config
;
909 * Each bit of the config1 field represents an agent from which the
910 * request of the event come. The event is counted only if it's caused
911 * by a request of an agent has the bit cleared.
912 * By default, the event is counted for all agents.
914 hw
->config_base
= event
->attr
.config1
;
917 * We must NOT create groups containing mixed PMUs, although software
918 * events are acceptable
920 if (event
->group_leader
->pmu
!= event
->pmu
&&
921 !is_software_event(event
->group_leader
))
924 for_each_sibling_event(sibling
, event
->group_leader
) {
925 if (sibling
->pmu
!= event
->pmu
&&
926 !is_software_event(sibling
))
933 static void xgene_perf_enable_event(struct perf_event
*event
)
935 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
936 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
938 xgene_pmu
->ops
->write_evttype(pmu_dev
, GET_CNTR(event
),
940 xgene_pmu
->ops
->write_agentmsk(pmu_dev
, ~((u32
)GET_AGENTID(event
)));
941 if (pmu_dev
->inf
->type
== PMU_TYPE_IOB
)
942 xgene_pmu
->ops
->write_agent1msk(pmu_dev
,
943 ~((u32
)GET_AGENT1ID(event
)));
945 xgene_pmu
->ops
->enable_counter(pmu_dev
, GET_CNTR(event
));
946 xgene_pmu
->ops
->enable_counter_int(pmu_dev
, GET_CNTR(event
));
949 static void xgene_perf_disable_event(struct perf_event
*event
)
951 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
952 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
954 xgene_pmu
->ops
->disable_counter(pmu_dev
, GET_CNTR(event
));
955 xgene_pmu
->ops
->disable_counter_int(pmu_dev
, GET_CNTR(event
));
958 static void xgene_perf_event_set_period(struct perf_event
*event
)
960 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
961 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
962 struct hw_perf_event
*hw
= &event
->hw
;
964 * For 32 bit counter, it has a period of 2^32. To account for the
965 * possibility of extreme interrupt latency we program for a period of
966 * half that. Hopefully, we can handle the interrupt before another 2^31
967 * events occur and the counter overtakes its previous value.
968 * For 64 bit counter, we don't expect it overflow.
970 u64 val
= 1ULL << 31;
972 local64_set(&hw
->prev_count
, val
);
973 xgene_pmu
->ops
->write_counter(pmu_dev
, hw
->idx
, val
);
976 static void xgene_perf_event_update(struct perf_event
*event
)
978 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
979 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
980 struct hw_perf_event
*hw
= &event
->hw
;
981 u64 delta
, prev_raw_count
, new_raw_count
;
984 prev_raw_count
= local64_read(&hw
->prev_count
);
985 new_raw_count
= xgene_pmu
->ops
->read_counter(pmu_dev
, GET_CNTR(event
));
987 if (local64_cmpxchg(&hw
->prev_count
, prev_raw_count
,
988 new_raw_count
) != prev_raw_count
)
991 delta
= (new_raw_count
- prev_raw_count
) & pmu_dev
->max_period
;
993 local64_add(delta
, &event
->count
);
996 static void xgene_perf_read(struct perf_event
*event
)
998 xgene_perf_event_update(event
);
1001 static void xgene_perf_start(struct perf_event
*event
, int flags
)
1003 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
1004 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
1005 struct hw_perf_event
*hw
= &event
->hw
;
1007 if (WARN_ON_ONCE(!(hw
->state
& PERF_HES_STOPPED
)))
1010 WARN_ON_ONCE(!(hw
->state
& PERF_HES_UPTODATE
));
1013 xgene_perf_event_set_period(event
);
1015 if (flags
& PERF_EF_RELOAD
) {
1016 u64 prev_raw_count
= local64_read(&hw
->prev_count
);
1018 xgene_pmu
->ops
->write_counter(pmu_dev
, GET_CNTR(event
),
1022 xgene_perf_enable_event(event
);
1023 perf_event_update_userpage(event
);
1026 static void xgene_perf_stop(struct perf_event
*event
, int flags
)
1028 struct hw_perf_event
*hw
= &event
->hw
;
1030 if (hw
->state
& PERF_HES_UPTODATE
)
1033 xgene_perf_disable_event(event
);
1034 WARN_ON_ONCE(hw
->state
& PERF_HES_STOPPED
);
1035 hw
->state
|= PERF_HES_STOPPED
;
1037 if (hw
->state
& PERF_HES_UPTODATE
)
1040 xgene_perf_read(event
);
1041 hw
->state
|= PERF_HES_UPTODATE
;
1044 static int xgene_perf_add(struct perf_event
*event
, int flags
)
1046 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
1047 struct hw_perf_event
*hw
= &event
->hw
;
1049 hw
->state
= PERF_HES_UPTODATE
| PERF_HES_STOPPED
;
1051 /* Allocate an event counter */
1052 hw
->idx
= get_next_avail_cntr(pmu_dev
);
1056 /* Update counter event pointer for Interrupt handler */
1057 pmu_dev
->pmu_counter_event
[hw
->idx
] = event
;
1059 if (flags
& PERF_EF_START
)
1060 xgene_perf_start(event
, PERF_EF_RELOAD
);
1065 static void xgene_perf_del(struct perf_event
*event
, int flags
)
1067 struct xgene_pmu_dev
*pmu_dev
= to_pmu_dev(event
->pmu
);
1068 struct hw_perf_event
*hw
= &event
->hw
;
1070 xgene_perf_stop(event
, PERF_EF_UPDATE
);
1072 /* clear the assigned counter */
1073 clear_avail_cntr(pmu_dev
, GET_CNTR(event
));
1075 perf_event_update_userpage(event
);
1076 pmu_dev
->pmu_counter_event
[hw
->idx
] = NULL
;
1079 static int xgene_init_perf(struct xgene_pmu_dev
*pmu_dev
, char *name
)
1081 struct xgene_pmu
*xgene_pmu
;
1083 if (pmu_dev
->parent
->version
== PCP_PMU_V3
)
1084 pmu_dev
->max_period
= PMU_V3_CNT_MAX_PERIOD
;
1086 pmu_dev
->max_period
= PMU_CNT_MAX_PERIOD
;
1087 /* First version PMU supports only single event counter */
1088 xgene_pmu
= pmu_dev
->parent
;
1089 if (xgene_pmu
->version
== PCP_PMU_V1
)
1090 pmu_dev
->max_counters
= 1;
1092 pmu_dev
->max_counters
= PMU_MAX_COUNTERS
;
1094 /* Perf driver registration */
1095 pmu_dev
->pmu
= (struct pmu
) {
1096 .parent
= pmu_dev
->parent
->dev
,
1097 .attr_groups
= pmu_dev
->attr_groups
,
1098 .task_ctx_nr
= perf_invalid_context
,
1099 .pmu_enable
= xgene_perf_pmu_enable
,
1100 .pmu_disable
= xgene_perf_pmu_disable
,
1101 .event_init
= xgene_perf_event_init
,
1102 .add
= xgene_perf_add
,
1103 .del
= xgene_perf_del
,
1104 .start
= xgene_perf_start
,
1105 .stop
= xgene_perf_stop
,
1106 .read
= xgene_perf_read
,
1107 .capabilities
= PERF_PMU_CAP_NO_EXCLUDE
,
1110 /* Hardware counter init */
1111 xgene_pmu
->ops
->stop_counters(pmu_dev
);
1112 xgene_pmu
->ops
->reset_counters(pmu_dev
);
1114 return perf_pmu_register(&pmu_dev
->pmu
, name
, -1);
1118 xgene_pmu_dev_add(struct xgene_pmu
*xgene_pmu
, struct xgene_pmu_dev_ctx
*ctx
)
1120 struct device
*dev
= xgene_pmu
->dev
;
1121 struct xgene_pmu_dev
*pmu
;
1123 pmu
= devm_kzalloc(dev
, sizeof(*pmu
), GFP_KERNEL
);
1126 pmu
->parent
= xgene_pmu
;
1127 pmu
->inf
= &ctx
->inf
;
1130 switch (pmu
->inf
->type
) {
1132 if (!(xgene_pmu
->l3c_active_mask
& pmu
->inf
->enable_mask
))
1134 if (xgene_pmu
->version
== PCP_PMU_V3
)
1135 pmu
->attr_groups
= l3c_pmu_v3_attr_groups
;
1137 pmu
->attr_groups
= l3c_pmu_attr_groups
;
1140 if (xgene_pmu
->version
== PCP_PMU_V3
)
1141 pmu
->attr_groups
= iob_fast_pmu_v3_attr_groups
;
1143 pmu
->attr_groups
= iob_pmu_attr_groups
;
1145 case PMU_TYPE_IOB_SLOW
:
1146 if (xgene_pmu
->version
== PCP_PMU_V3
)
1147 pmu
->attr_groups
= iob_slow_pmu_v3_attr_groups
;
1150 if (!(xgene_pmu
->mcb_active_mask
& pmu
->inf
->enable_mask
))
1152 if (xgene_pmu
->version
== PCP_PMU_V3
)
1153 pmu
->attr_groups
= mcb_pmu_v3_attr_groups
;
1155 pmu
->attr_groups
= mcb_pmu_attr_groups
;
1158 if (!(xgene_pmu
->mc_active_mask
& pmu
->inf
->enable_mask
))
1160 if (xgene_pmu
->version
== PCP_PMU_V3
)
1161 pmu
->attr_groups
= mc_pmu_v3_attr_groups
;
1163 pmu
->attr_groups
= mc_pmu_attr_groups
;
1169 if (xgene_init_perf(pmu
, ctx
->name
)) {
1170 dev_err(dev
, "%s PMU: Failed to init perf driver\n", ctx
->name
);
1174 dev_info(dev
, "%s PMU registered\n", ctx
->name
);
1179 static void _xgene_pmu_isr(int irq
, struct xgene_pmu_dev
*pmu_dev
)
1181 struct xgene_pmu
*xgene_pmu
= pmu_dev
->parent
;
1182 void __iomem
*csr
= pmu_dev
->inf
->csr
;
1186 xgene_pmu
->ops
->stop_counters(pmu_dev
);
1188 if (xgene_pmu
->version
== PCP_PMU_V3
)
1189 pmovsr
= readl(csr
+ PMU_PMOVSSET
) & PMU_OVERFLOW_MASK
;
1191 pmovsr
= readl(csr
+ PMU_PMOVSR
) & PMU_OVERFLOW_MASK
;
1196 /* Clear interrupt flag */
1197 if (xgene_pmu
->version
== PCP_PMU_V1
)
1198 writel(0x0, csr
+ PMU_PMOVSR
);
1199 else if (xgene_pmu
->version
== PCP_PMU_V2
)
1200 writel(pmovsr
, csr
+ PMU_PMOVSR
);
1202 writel(pmovsr
, csr
+ PMU_PMOVSCLR
);
1204 for (idx
= 0; idx
< PMU_MAX_COUNTERS
; idx
++) {
1205 struct perf_event
*event
= pmu_dev
->pmu_counter_event
[idx
];
1206 int overflowed
= pmovsr
& BIT(idx
);
1208 /* Ignore if we don't have an event. */
1209 if (!event
|| !overflowed
)
1211 xgene_perf_event_update(event
);
1212 xgene_perf_event_set_period(event
);
1216 xgene_pmu
->ops
->start_counters(pmu_dev
);
1219 static irqreturn_t
xgene_pmu_isr(int irq
, void *dev_id
)
1221 u32 intr_mcu
, intr_mcb
, intr_l3c
, intr_iob
;
1222 struct xgene_pmu_dev_ctx
*ctx
;
1223 struct xgene_pmu
*xgene_pmu
= dev_id
;
1226 raw_spin_lock(&xgene_pmu
->lock
);
1228 /* Get Interrupt PMU source */
1229 val
= readl(xgene_pmu
->pcppmu_csr
+ PCPPMU_INTSTATUS_REG
);
1230 if (xgene_pmu
->version
== PCP_PMU_V3
) {
1231 intr_mcu
= PCPPMU_V3_INT_MCU
;
1232 intr_mcb
= PCPPMU_V3_INT_MCB
;
1233 intr_l3c
= PCPPMU_V3_INT_L3C
;
1234 intr_iob
= PCPPMU_V3_INT_IOB
;
1236 intr_mcu
= PCPPMU_INT_MCU
;
1237 intr_mcb
= PCPPMU_INT_MCB
;
1238 intr_l3c
= PCPPMU_INT_L3C
;
1239 intr_iob
= PCPPMU_INT_IOB
;
1241 if (val
& intr_mcu
) {
1242 list_for_each_entry(ctx
, &xgene_pmu
->mcpmus
, next
) {
1243 _xgene_pmu_isr(irq
, ctx
->pmu_dev
);
1246 if (val
& intr_mcb
) {
1247 list_for_each_entry(ctx
, &xgene_pmu
->mcbpmus
, next
) {
1248 _xgene_pmu_isr(irq
, ctx
->pmu_dev
);
1251 if (val
& intr_l3c
) {
1252 list_for_each_entry(ctx
, &xgene_pmu
->l3cpmus
, next
) {
1253 _xgene_pmu_isr(irq
, ctx
->pmu_dev
);
1256 if (val
& intr_iob
) {
1257 list_for_each_entry(ctx
, &xgene_pmu
->iobpmus
, next
) {
1258 _xgene_pmu_isr(irq
, ctx
->pmu_dev
);
1262 raw_spin_unlock(&xgene_pmu
->lock
);
1267 static int acpi_pmu_probe_active_mcb_mcu_l3c(struct xgene_pmu
*xgene_pmu
,
1268 struct platform_device
*pdev
)
1270 void __iomem
*csw_csr
, *mcba_csr
, *mcbb_csr
;
1273 csw_csr
= devm_platform_ioremap_resource(pdev
, 1);
1274 if (IS_ERR(csw_csr
)) {
1275 dev_err(&pdev
->dev
, "ioremap failed for CSW CSR resource\n");
1276 return PTR_ERR(csw_csr
);
1279 mcba_csr
= devm_platform_ioremap_resource(pdev
, 2);
1280 if (IS_ERR(mcba_csr
)) {
1281 dev_err(&pdev
->dev
, "ioremap failed for MCBA CSR resource\n");
1282 return PTR_ERR(mcba_csr
);
1285 mcbb_csr
= devm_platform_ioremap_resource(pdev
, 3);
1286 if (IS_ERR(mcbb_csr
)) {
1287 dev_err(&pdev
->dev
, "ioremap failed for MCBB CSR resource\n");
1288 return PTR_ERR(mcbb_csr
);
1291 xgene_pmu
->l3c_active_mask
= 0x1;
1293 reg
= readl(csw_csr
+ CSW_CSWCR
);
1294 if (reg
& CSW_CSWCR_DUALMCB_MASK
) {
1295 /* Dual MCB active */
1296 xgene_pmu
->mcb_active_mask
= 0x3;
1297 /* Probe all active MC(s) */
1298 reg
= readl(mcbb_csr
+ CSW_CSWCR
);
1299 xgene_pmu
->mc_active_mask
=
1300 (reg
& MCBADDRMR_DUALMCU_MODE_MASK
) ? 0xF : 0x5;
1302 /* Single MCB active */
1303 xgene_pmu
->mcb_active_mask
= 0x1;
1304 /* Probe all active MC(s) */
1305 reg
= readl(mcba_csr
+ CSW_CSWCR
);
1306 xgene_pmu
->mc_active_mask
=
1307 (reg
& MCBADDRMR_DUALMCU_MODE_MASK
) ? 0x3 : 0x1;
1313 static int acpi_pmu_v3_probe_active_mcb_mcu_l3c(struct xgene_pmu
*xgene_pmu
,
1314 struct platform_device
*pdev
)
1316 void __iomem
*csw_csr
;
1321 csw_csr
= devm_platform_ioremap_resource(pdev
, 1);
1322 if (IS_ERR(csw_csr
)) {
1323 dev_err(&pdev
->dev
, "ioremap failed for CSW CSR resource\n");
1324 return PTR_ERR(csw_csr
);
1327 reg
= readl(csw_csr
+ CSW_CSWCR
);
1328 mcb0routing
= CSW_CSWCR_MCB0_ROUTING(reg
);
1329 mcb1routing
= CSW_CSWCR_MCB1_ROUTING(reg
);
1330 if (reg
& CSW_CSWCR_DUALMCB_MASK
) {
1331 /* Dual MCB active */
1332 xgene_pmu
->mcb_active_mask
= 0x3;
1333 /* Probe all active L3C(s), maximum is 8 */
1334 xgene_pmu
->l3c_active_mask
= 0xFF;
1335 /* Probe all active MC(s), maximum is 8 */
1336 if ((mcb0routing
== 0x2) && (mcb1routing
== 0x2))
1337 xgene_pmu
->mc_active_mask
= 0xFF;
1338 else if ((mcb0routing
== 0x1) && (mcb1routing
== 0x1))
1339 xgene_pmu
->mc_active_mask
= 0x33;
1341 xgene_pmu
->mc_active_mask
= 0x11;
1343 /* Single MCB active */
1344 xgene_pmu
->mcb_active_mask
= 0x1;
1345 /* Probe all active L3C(s), maximum is 4 */
1346 xgene_pmu
->l3c_active_mask
= 0x0F;
1347 /* Probe all active MC(s), maximum is 4 */
1348 if (mcb0routing
== 0x2)
1349 xgene_pmu
->mc_active_mask
= 0x0F;
1350 else if (mcb0routing
== 0x1)
1351 xgene_pmu
->mc_active_mask
= 0x03;
1353 xgene_pmu
->mc_active_mask
= 0x01;
1359 static int fdt_pmu_probe_active_mcb_mcu_l3c(struct xgene_pmu
*xgene_pmu
,
1360 struct platform_device
*pdev
)
1362 struct regmap
*csw_map
, *mcba_map
, *mcbb_map
;
1363 struct device_node
*np
= pdev
->dev
.of_node
;
1366 csw_map
= syscon_regmap_lookup_by_phandle(np
, "regmap-csw");
1367 if (IS_ERR(csw_map
)) {
1368 dev_err(&pdev
->dev
, "unable to get syscon regmap csw\n");
1369 return PTR_ERR(csw_map
);
1372 mcba_map
= syscon_regmap_lookup_by_phandle(np
, "regmap-mcba");
1373 if (IS_ERR(mcba_map
)) {
1374 dev_err(&pdev
->dev
, "unable to get syscon regmap mcba\n");
1375 return PTR_ERR(mcba_map
);
1378 mcbb_map
= syscon_regmap_lookup_by_phandle(np
, "regmap-mcbb");
1379 if (IS_ERR(mcbb_map
)) {
1380 dev_err(&pdev
->dev
, "unable to get syscon regmap mcbb\n");
1381 return PTR_ERR(mcbb_map
);
1384 xgene_pmu
->l3c_active_mask
= 0x1;
1385 if (regmap_read(csw_map
, CSW_CSWCR
, ®
))
1388 if (reg
& CSW_CSWCR_DUALMCB_MASK
) {
1389 /* Dual MCB active */
1390 xgene_pmu
->mcb_active_mask
= 0x3;
1391 /* Probe all active MC(s) */
1392 if (regmap_read(mcbb_map
, MCBADDRMR
, ®
))
1394 xgene_pmu
->mc_active_mask
=
1395 (reg
& MCBADDRMR_DUALMCU_MODE_MASK
) ? 0xF : 0x5;
1397 /* Single MCB active */
1398 xgene_pmu
->mcb_active_mask
= 0x1;
1399 /* Probe all active MC(s) */
1400 if (regmap_read(mcba_map
, MCBADDRMR
, ®
))
1402 xgene_pmu
->mc_active_mask
=
1403 (reg
& MCBADDRMR_DUALMCU_MODE_MASK
) ? 0x3 : 0x1;
1409 static int xgene_pmu_probe_active_mcb_mcu_l3c(struct xgene_pmu
*xgene_pmu
,
1410 struct platform_device
*pdev
)
1412 if (has_acpi_companion(&pdev
->dev
)) {
1413 if (xgene_pmu
->version
== PCP_PMU_V3
)
1414 return acpi_pmu_v3_probe_active_mcb_mcu_l3c(xgene_pmu
,
1417 return acpi_pmu_probe_active_mcb_mcu_l3c(xgene_pmu
,
1420 return fdt_pmu_probe_active_mcb_mcu_l3c(xgene_pmu
, pdev
);
1423 static char *xgene_pmu_dev_name(struct device
*dev
, u32 type
, int id
)
1427 return devm_kasprintf(dev
, GFP_KERNEL
, "l3c%d", id
);
1429 return devm_kasprintf(dev
, GFP_KERNEL
, "iob%d", id
);
1430 case PMU_TYPE_IOB_SLOW
:
1431 return devm_kasprintf(dev
, GFP_KERNEL
, "iob_slow%d", id
);
1433 return devm_kasprintf(dev
, GFP_KERNEL
, "mcb%d", id
);
1435 return devm_kasprintf(dev
, GFP_KERNEL
, "mc%d", id
);
1437 return devm_kasprintf(dev
, GFP_KERNEL
, "unknown");
1441 #if defined(CONFIG_ACPI)
1443 xgene_pmu_dev_ctx
*acpi_get_pmu_hw_inf(struct xgene_pmu
*xgene_pmu
,
1444 struct acpi_device
*adev
, u32 type
)
1446 struct device
*dev
= xgene_pmu
->dev
;
1447 struct list_head resource_list
;
1448 struct xgene_pmu_dev_ctx
*ctx
;
1449 const union acpi_object
*obj
;
1450 struct hw_pmu_info
*inf
;
1451 void __iomem
*dev_csr
;
1452 struct resource res
;
1453 struct resource_entry
*rentry
;
1457 ctx
= devm_kzalloc(dev
, sizeof(*ctx
), GFP_KERNEL
);
1461 INIT_LIST_HEAD(&resource_list
);
1462 rc
= acpi_dev_get_resources(adev
, &resource_list
, NULL
, NULL
);
1464 dev_err(dev
, "PMU type %d: No resources found\n", type
);
1468 list_for_each_entry(rentry
, &resource_list
, node
) {
1469 if (resource_type(rentry
->res
) == IORESOURCE_MEM
) {
1475 acpi_dev_free_resource_list(&resource_list
);
1478 dev_err(dev
, "PMU type %d: No memory resource found\n", type
);
1482 dev_csr
= devm_ioremap_resource(dev
, &res
);
1483 if (IS_ERR(dev_csr
)) {
1484 dev_err(dev
, "PMU type %d: Fail to map resource\n", type
);
1488 /* A PMU device node without enable-bit-index is always enabled */
1489 rc
= acpi_dev_get_property(adev
, "enable-bit-index",
1490 ACPI_TYPE_INTEGER
, &obj
);
1494 enable_bit
= (int) obj
->integer
.value
;
1496 ctx
->name
= xgene_pmu_dev_name(dev
, type
, enable_bit
);
1498 dev_err(dev
, "PMU type %d: Fail to get device name\n", type
);
1504 inf
->enable_mask
= 1 << enable_bit
;
1509 static const struct acpi_device_id xgene_pmu_acpi_type_match
[] = {
1510 {"APMC0D5D", PMU_TYPE_L3C
},
1511 {"APMC0D5E", PMU_TYPE_IOB
},
1512 {"APMC0D5F", PMU_TYPE_MCB
},
1513 {"APMC0D60", PMU_TYPE_MC
},
1514 {"APMC0D84", PMU_TYPE_L3C
},
1515 {"APMC0D85", PMU_TYPE_IOB
},
1516 {"APMC0D86", PMU_TYPE_IOB_SLOW
},
1517 {"APMC0D87", PMU_TYPE_MCB
},
1518 {"APMC0D88", PMU_TYPE_MC
},
1522 static const struct acpi_device_id
*xgene_pmu_acpi_match_type(
1523 const struct acpi_device_id
*ids
,
1524 struct acpi_device
*adev
)
1526 const struct acpi_device_id
*match_id
= NULL
;
1527 const struct acpi_device_id
*id
;
1529 for (id
= ids
; id
->id
[0] || id
->cls
; id
++) {
1530 if (!acpi_match_device_ids(adev
, id
))
1539 static acpi_status
acpi_pmu_dev_add(acpi_handle handle
, u32 level
,
1540 void *data
, void **return_value
)
1542 struct acpi_device
*adev
= acpi_fetch_acpi_dev(handle
);
1543 const struct acpi_device_id
*acpi_id
;
1544 struct xgene_pmu
*xgene_pmu
= data
;
1545 struct xgene_pmu_dev_ctx
*ctx
;
1547 if (!adev
|| acpi_bus_get_status(adev
) || !adev
->status
.present
)
1550 acpi_id
= xgene_pmu_acpi_match_type(xgene_pmu_acpi_type_match
, adev
);
1554 ctx
= acpi_get_pmu_hw_inf(xgene_pmu
, adev
, (u32
)acpi_id
->driver_data
);
1558 if (xgene_pmu_dev_add(xgene_pmu
, ctx
)) {
1559 /* Can't add the PMU device, skip it */
1560 devm_kfree(xgene_pmu
->dev
, ctx
);
1564 switch (ctx
->inf
.type
) {
1566 list_add(&ctx
->next
, &xgene_pmu
->l3cpmus
);
1569 list_add(&ctx
->next
, &xgene_pmu
->iobpmus
);
1571 case PMU_TYPE_IOB_SLOW
:
1572 list_add(&ctx
->next
, &xgene_pmu
->iobpmus
);
1575 list_add(&ctx
->next
, &xgene_pmu
->mcbpmus
);
1578 list_add(&ctx
->next
, &xgene_pmu
->mcpmus
);
1584 static int acpi_pmu_probe_pmu_dev(struct xgene_pmu
*xgene_pmu
,
1585 struct platform_device
*pdev
)
1587 struct device
*dev
= xgene_pmu
->dev
;
1591 handle
= ACPI_HANDLE(dev
);
1595 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
, handle
, 1,
1596 acpi_pmu_dev_add
, NULL
, xgene_pmu
, NULL
);
1597 if (ACPI_FAILURE(status
)) {
1598 dev_err(dev
, "failed to probe PMU devices\n");
1605 static int acpi_pmu_probe_pmu_dev(struct xgene_pmu
*xgene_pmu
,
1606 struct platform_device
*pdev
)
1613 xgene_pmu_dev_ctx
*fdt_get_pmu_hw_inf(struct xgene_pmu
*xgene_pmu
,
1614 struct device_node
*np
, u32 type
)
1616 struct device
*dev
= xgene_pmu
->dev
;
1617 struct xgene_pmu_dev_ctx
*ctx
;
1618 struct hw_pmu_info
*inf
;
1619 void __iomem
*dev_csr
;
1620 struct resource res
;
1623 ctx
= devm_kzalloc(dev
, sizeof(*ctx
), GFP_KERNEL
);
1627 if (of_address_to_resource(np
, 0, &res
) < 0) {
1628 dev_err(dev
, "PMU type %d: No resource address found\n", type
);
1632 dev_csr
= devm_ioremap_resource(dev
, &res
);
1633 if (IS_ERR(dev_csr
)) {
1634 dev_err(dev
, "PMU type %d: Fail to map resource\n", type
);
1638 /* A PMU device node without enable-bit-index is always enabled */
1639 if (of_property_read_u32(np
, "enable-bit-index", &enable_bit
))
1642 ctx
->name
= xgene_pmu_dev_name(dev
, type
, enable_bit
);
1644 dev_err(dev
, "PMU type %d: Fail to get device name\n", type
);
1651 inf
->enable_mask
= 1 << enable_bit
;
1656 static int fdt_pmu_probe_pmu_dev(struct xgene_pmu
*xgene_pmu
,
1657 struct platform_device
*pdev
)
1659 struct xgene_pmu_dev_ctx
*ctx
;
1660 struct device_node
*np
;
1662 for_each_child_of_node(pdev
->dev
.of_node
, np
) {
1663 if (!of_device_is_available(np
))
1666 if (of_device_is_compatible(np
, "apm,xgene-pmu-l3c"))
1667 ctx
= fdt_get_pmu_hw_inf(xgene_pmu
, np
, PMU_TYPE_L3C
);
1668 else if (of_device_is_compatible(np
, "apm,xgene-pmu-iob"))
1669 ctx
= fdt_get_pmu_hw_inf(xgene_pmu
, np
, PMU_TYPE_IOB
);
1670 else if (of_device_is_compatible(np
, "apm,xgene-pmu-mcb"))
1671 ctx
= fdt_get_pmu_hw_inf(xgene_pmu
, np
, PMU_TYPE_MCB
);
1672 else if (of_device_is_compatible(np
, "apm,xgene-pmu-mc"))
1673 ctx
= fdt_get_pmu_hw_inf(xgene_pmu
, np
, PMU_TYPE_MC
);
1680 if (xgene_pmu_dev_add(xgene_pmu
, ctx
)) {
1681 /* Can't add the PMU device, skip it */
1682 devm_kfree(xgene_pmu
->dev
, ctx
);
1686 switch (ctx
->inf
.type
) {
1688 list_add(&ctx
->next
, &xgene_pmu
->l3cpmus
);
1691 list_add(&ctx
->next
, &xgene_pmu
->iobpmus
);
1693 case PMU_TYPE_IOB_SLOW
:
1694 list_add(&ctx
->next
, &xgene_pmu
->iobpmus
);
1697 list_add(&ctx
->next
, &xgene_pmu
->mcbpmus
);
1700 list_add(&ctx
->next
, &xgene_pmu
->mcpmus
);
1708 static int xgene_pmu_probe_pmu_dev(struct xgene_pmu
*xgene_pmu
,
1709 struct platform_device
*pdev
)
1711 if (has_acpi_companion(&pdev
->dev
))
1712 return acpi_pmu_probe_pmu_dev(xgene_pmu
, pdev
);
1713 return fdt_pmu_probe_pmu_dev(xgene_pmu
, pdev
);
1716 static const struct xgene_pmu_data xgene_pmu_data
= {
1720 static const struct xgene_pmu_data xgene_pmu_v2_data
= {
1725 static const struct xgene_pmu_data xgene_pmu_v3_data
= {
1730 static const struct xgene_pmu_ops xgene_pmu_ops
= {
1731 .mask_int
= xgene_pmu_mask_int
,
1732 .unmask_int
= xgene_pmu_unmask_int
,
1733 .read_counter
= xgene_pmu_read_counter32
,
1734 .write_counter
= xgene_pmu_write_counter32
,
1735 .write_evttype
= xgene_pmu_write_evttype
,
1736 .write_agentmsk
= xgene_pmu_write_agentmsk
,
1737 .write_agent1msk
= xgene_pmu_write_agent1msk
,
1738 .enable_counter
= xgene_pmu_enable_counter
,
1739 .disable_counter
= xgene_pmu_disable_counter
,
1740 .enable_counter_int
= xgene_pmu_enable_counter_int
,
1741 .disable_counter_int
= xgene_pmu_disable_counter_int
,
1742 .reset_counters
= xgene_pmu_reset_counters
,
1743 .start_counters
= xgene_pmu_start_counters
,
1744 .stop_counters
= xgene_pmu_stop_counters
,
1747 static const struct xgene_pmu_ops xgene_pmu_v3_ops
= {
1748 .mask_int
= xgene_pmu_v3_mask_int
,
1749 .unmask_int
= xgene_pmu_v3_unmask_int
,
1750 .read_counter
= xgene_pmu_read_counter64
,
1751 .write_counter
= xgene_pmu_write_counter64
,
1752 .write_evttype
= xgene_pmu_write_evttype
,
1753 .write_agentmsk
= xgene_pmu_v3_write_agentmsk
,
1754 .write_agent1msk
= xgene_pmu_v3_write_agent1msk
,
1755 .enable_counter
= xgene_pmu_enable_counter
,
1756 .disable_counter
= xgene_pmu_disable_counter
,
1757 .enable_counter_int
= xgene_pmu_enable_counter_int
,
1758 .disable_counter_int
= xgene_pmu_disable_counter_int
,
1759 .reset_counters
= xgene_pmu_reset_counters
,
1760 .start_counters
= xgene_pmu_start_counters
,
1761 .stop_counters
= xgene_pmu_stop_counters
,
1764 static const struct of_device_id xgene_pmu_of_match
[] = {
1765 { .compatible
= "apm,xgene-pmu", .data
= &xgene_pmu_data
},
1766 { .compatible
= "apm,xgene-pmu-v2", .data
= &xgene_pmu_v2_data
},
1769 MODULE_DEVICE_TABLE(of
, xgene_pmu_of_match
);
1771 static const struct acpi_device_id xgene_pmu_acpi_match
[] = {
1772 {"APMC0D5B", (kernel_ulong_t
)&xgene_pmu_data
},
1773 {"APMC0D5C", (kernel_ulong_t
)&xgene_pmu_v2_data
},
1774 {"APMC0D83", (kernel_ulong_t
)&xgene_pmu_v3_data
},
1777 MODULE_DEVICE_TABLE(acpi
, xgene_pmu_acpi_match
);
1780 static int xgene_pmu_online_cpu(unsigned int cpu
, struct hlist_node
*node
)
1782 struct xgene_pmu
*xgene_pmu
= hlist_entry_safe(node
, struct xgene_pmu
,
1785 if (cpumask_empty(&xgene_pmu
->cpu
))
1786 cpumask_set_cpu(cpu
, &xgene_pmu
->cpu
);
1788 /* Overflow interrupt also should use the same CPU */
1789 WARN_ON(irq_set_affinity(xgene_pmu
->irq
, &xgene_pmu
->cpu
));
1794 static int xgene_pmu_offline_cpu(unsigned int cpu
, struct hlist_node
*node
)
1796 struct xgene_pmu
*xgene_pmu
= hlist_entry_safe(node
, struct xgene_pmu
,
1798 struct xgene_pmu_dev_ctx
*ctx
;
1799 unsigned int target
;
1801 if (!cpumask_test_and_clear_cpu(cpu
, &xgene_pmu
->cpu
))
1803 target
= cpumask_any_but(cpu_online_mask
, cpu
);
1804 if (target
>= nr_cpu_ids
)
1807 list_for_each_entry(ctx
, &xgene_pmu
->mcpmus
, next
) {
1808 perf_pmu_migrate_context(&ctx
->pmu_dev
->pmu
, cpu
, target
);
1810 list_for_each_entry(ctx
, &xgene_pmu
->mcbpmus
, next
) {
1811 perf_pmu_migrate_context(&ctx
->pmu_dev
->pmu
, cpu
, target
);
1813 list_for_each_entry(ctx
, &xgene_pmu
->l3cpmus
, next
) {
1814 perf_pmu_migrate_context(&ctx
->pmu_dev
->pmu
, cpu
, target
);
1816 list_for_each_entry(ctx
, &xgene_pmu
->iobpmus
, next
) {
1817 perf_pmu_migrate_context(&ctx
->pmu_dev
->pmu
, cpu
, target
);
1820 cpumask_set_cpu(target
, &xgene_pmu
->cpu
);
1821 /* Overflow interrupt also should use the same CPU */
1822 WARN_ON(irq_set_affinity(xgene_pmu
->irq
, &xgene_pmu
->cpu
));
1827 static int xgene_pmu_probe(struct platform_device
*pdev
)
1829 const struct xgene_pmu_data
*dev_data
;
1830 struct xgene_pmu
*xgene_pmu
;
1834 /* Install a hook to update the reader CPU in case it goes offline */
1835 rc
= cpuhp_setup_state_multi(CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE
,
1836 "CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE",
1837 xgene_pmu_online_cpu
,
1838 xgene_pmu_offline_cpu
);
1842 xgene_pmu
= devm_kzalloc(&pdev
->dev
, sizeof(*xgene_pmu
), GFP_KERNEL
);
1845 xgene_pmu
->dev
= &pdev
->dev
;
1846 platform_set_drvdata(pdev
, xgene_pmu
);
1848 dev_data
= device_get_match_data(&pdev
->dev
);
1851 version
= dev_data
->id
;
1853 if (version
== PCP_PMU_V3
)
1854 xgene_pmu
->ops
= &xgene_pmu_v3_ops
;
1856 xgene_pmu
->ops
= &xgene_pmu_ops
;
1858 INIT_LIST_HEAD(&xgene_pmu
->l3cpmus
);
1859 INIT_LIST_HEAD(&xgene_pmu
->iobpmus
);
1860 INIT_LIST_HEAD(&xgene_pmu
->mcbpmus
);
1861 INIT_LIST_HEAD(&xgene_pmu
->mcpmus
);
1863 xgene_pmu
->version
= version
;
1864 dev_info(&pdev
->dev
, "X-Gene PMU version %d\n", xgene_pmu
->version
);
1866 xgene_pmu
->pcppmu_csr
= devm_platform_ioremap_resource(pdev
, 0);
1867 if (IS_ERR(xgene_pmu
->pcppmu_csr
)) {
1868 dev_err(&pdev
->dev
, "ioremap failed for PCP PMU resource\n");
1869 return PTR_ERR(xgene_pmu
->pcppmu_csr
);
1872 irq
= platform_get_irq(pdev
, 0);
1876 rc
= devm_request_irq(&pdev
->dev
, irq
, xgene_pmu_isr
,
1877 IRQF_NOBALANCING
| IRQF_NO_THREAD
,
1878 dev_name(&pdev
->dev
), xgene_pmu
);
1880 dev_err(&pdev
->dev
, "Could not request IRQ %d\n", irq
);
1884 xgene_pmu
->irq
= irq
;
1886 raw_spin_lock_init(&xgene_pmu
->lock
);
1888 /* Check for active MCBs and MCUs */
1889 rc
= xgene_pmu_probe_active_mcb_mcu_l3c(xgene_pmu
, pdev
);
1891 dev_warn(&pdev
->dev
, "Unknown MCB/MCU active status\n");
1892 xgene_pmu
->mcb_active_mask
= 0x1;
1893 xgene_pmu
->mc_active_mask
= 0x1;
1896 /* Add this instance to the list used by the hotplug callback */
1897 rc
= cpuhp_state_add_instance(CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE
,
1900 dev_err(&pdev
->dev
, "Error %d registering hotplug", rc
);
1904 /* Walk through the tree for all PMU perf devices */
1905 rc
= xgene_pmu_probe_pmu_dev(xgene_pmu
, pdev
);
1907 dev_err(&pdev
->dev
, "No PMU perf devices found!\n");
1908 goto out_unregister
;
1911 /* Enable interrupt */
1912 xgene_pmu
->ops
->unmask_int(xgene_pmu
);
1917 cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE
,
1923 xgene_pmu_dev_cleanup(struct xgene_pmu
*xgene_pmu
, struct list_head
*pmus
)
1925 struct xgene_pmu_dev_ctx
*ctx
;
1927 list_for_each_entry(ctx
, pmus
, next
) {
1928 perf_pmu_unregister(&ctx
->pmu_dev
->pmu
);
1932 static void xgene_pmu_remove(struct platform_device
*pdev
)
1934 struct xgene_pmu
*xgene_pmu
= dev_get_drvdata(&pdev
->dev
);
1936 xgene_pmu_dev_cleanup(xgene_pmu
, &xgene_pmu
->l3cpmus
);
1937 xgene_pmu_dev_cleanup(xgene_pmu
, &xgene_pmu
->iobpmus
);
1938 xgene_pmu_dev_cleanup(xgene_pmu
, &xgene_pmu
->mcbpmus
);
1939 xgene_pmu_dev_cleanup(xgene_pmu
, &xgene_pmu
->mcpmus
);
1940 cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE
,
1944 static struct platform_driver xgene_pmu_driver
= {
1945 .probe
= xgene_pmu_probe
,
1946 .remove
= xgene_pmu_remove
,
1948 .name
= "xgene-pmu",
1949 .of_match_table
= xgene_pmu_of_match
,
1950 .acpi_match_table
= ACPI_PTR(xgene_pmu_acpi_match
),
1951 .suppress_bind_attrs
= true,
1955 builtin_platform_driver(xgene_pmu_driver
);