1 // SPDX-License-Identifier: GPL-2.0
3 * CAVIUM THUNDERX2 SoC PMU UNCORE
4 * Copyright (C) 2018 Cavium Inc.
5 * Author: Ganapatrao Kulkarni <gkulkarni@cavium.com>
8 #include <linux/acpi.h>
9 #include <linux/cpuhotplug.h>
10 #include <linux/perf_event.h>
11 #include <linux/platform_device.h>
13 /* Each ThunderX2(TX2) Socket has a L3C and DMC UNCORE PMU device.
14 * Each UNCORE PMU device consists of 4 independent programmable counters.
15 * Counters are 32 bit and do not support overflow interrupt,
16 * they need to be sampled before overflow(i.e, at every 2 seconds).
19 #define TX2_PMU_MAX_COUNTERS 4
20 #define TX2_PMU_DMC_CHANNELS 8
21 #define TX2_PMU_L3_TILES 16
23 #define TX2_PMU_HRTIMER_INTERVAL (2 * NSEC_PER_SEC)
24 #define GET_EVENTID(ev) ((ev->hw.config) & 0x1f)
25 #define GET_COUNTERID(ev) ((ev->hw.idx) & 0x3)
26 /* 1 byte per counter(4 counters).
27 * Event id is encoded in bits [5:1] of a byte,
29 #define DMC_EVENT_CFG(idx, val) ((val) << (((idx) * 8) + 1))
31 #define L3C_COUNTER_CTL 0xA8
32 #define L3C_COUNTER_DATA 0xAC
33 #define DMC_COUNTER_CTL 0x234
34 #define DMC_COUNTER_DATA 0x240
37 #define L3_EVENT_READ_REQ 0xD
38 #define L3_EVENT_WRITEBACK_REQ 0xE
39 #define L3_EVENT_INV_N_WRITE_REQ 0xF
40 #define L3_EVENT_INV_REQ 0x10
41 #define L3_EVENT_EVICT_REQ 0x13
42 #define L3_EVENT_INV_N_WRITE_HIT 0x14
43 #define L3_EVENT_INV_HIT 0x15
44 #define L3_EVENT_READ_HIT 0x17
45 #define L3_EVENT_MAX 0x18
48 #define DMC_EVENT_COUNT_CYCLES 0x1
49 #define DMC_EVENT_WRITE_TXNS 0xB
50 #define DMC_EVENT_DATA_TRANSFERS 0xD
51 #define DMC_EVENT_READ_TXNS 0xF
52 #define DMC_EVENT_MAX 0x10
54 enum tx2_uncore_type
{
61 * pmu on each socket has 2 uncore devices(dmc and l3c),
62 * each device has 4 counters.
64 struct tx2_uncore_pmu
{
65 struct hlist_node hpnode
;
66 struct list_head entry
;
76 DECLARE_BITMAP(active_counters
, TX2_PMU_MAX_COUNTERS
);
77 struct perf_event
*events
[TX2_PMU_MAX_COUNTERS
];
79 struct hrtimer hrtimer
;
80 const struct attribute_group
**attr_groups
;
81 enum tx2_uncore_type type
;
82 void (*init_cntr_base
)(struct perf_event
*event
,
83 struct tx2_uncore_pmu
*tx2_pmu
);
84 void (*stop_event
)(struct perf_event
*event
);
85 void (*start_event
)(struct perf_event
*event
, int flags
);
88 static LIST_HEAD(tx2_pmus
);
90 static inline struct tx2_uncore_pmu
*pmu_to_tx2_pmu(struct pmu
*pmu
)
92 return container_of(pmu
, struct tx2_uncore_pmu
, pmu
);
95 PMU_FORMAT_ATTR(event
, "config:0-4");
97 static struct attribute
*l3c_pmu_format_attrs
[] = {
98 &format_attr_event
.attr
,
102 static struct attribute
*dmc_pmu_format_attrs
[] = {
103 &format_attr_event
.attr
,
107 static const struct attribute_group l3c_pmu_format_attr_group
= {
109 .attrs
= l3c_pmu_format_attrs
,
112 static const struct attribute_group dmc_pmu_format_attr_group
= {
114 .attrs
= dmc_pmu_format_attrs
,
118 * sysfs event attributes
120 static ssize_t
tx2_pmu_event_show(struct device
*dev
,
121 struct device_attribute
*attr
, char *buf
)
123 struct dev_ext_attribute
*eattr
;
125 eattr
= container_of(attr
, struct dev_ext_attribute
, attr
);
126 return sprintf(buf
, "event=0x%lx\n", (unsigned long) eattr
->var
);
129 #define TX2_EVENT_ATTR(name, config) \
130 PMU_EVENT_ATTR(name, tx2_pmu_event_attr_##name, \
131 config, tx2_pmu_event_show)
133 TX2_EVENT_ATTR(read_request
, L3_EVENT_READ_REQ
);
134 TX2_EVENT_ATTR(writeback_request
, L3_EVENT_WRITEBACK_REQ
);
135 TX2_EVENT_ATTR(inv_nwrite_request
, L3_EVENT_INV_N_WRITE_REQ
);
136 TX2_EVENT_ATTR(inv_request
, L3_EVENT_INV_REQ
);
137 TX2_EVENT_ATTR(evict_request
, L3_EVENT_EVICT_REQ
);
138 TX2_EVENT_ATTR(inv_nwrite_hit
, L3_EVENT_INV_N_WRITE_HIT
);
139 TX2_EVENT_ATTR(inv_hit
, L3_EVENT_INV_HIT
);
140 TX2_EVENT_ATTR(read_hit
, L3_EVENT_READ_HIT
);
142 static struct attribute
*l3c_pmu_events_attrs
[] = {
143 &tx2_pmu_event_attr_read_request
.attr
.attr
,
144 &tx2_pmu_event_attr_writeback_request
.attr
.attr
,
145 &tx2_pmu_event_attr_inv_nwrite_request
.attr
.attr
,
146 &tx2_pmu_event_attr_inv_request
.attr
.attr
,
147 &tx2_pmu_event_attr_evict_request
.attr
.attr
,
148 &tx2_pmu_event_attr_inv_nwrite_hit
.attr
.attr
,
149 &tx2_pmu_event_attr_inv_hit
.attr
.attr
,
150 &tx2_pmu_event_attr_read_hit
.attr
.attr
,
154 TX2_EVENT_ATTR(cnt_cycles
, DMC_EVENT_COUNT_CYCLES
);
155 TX2_EVENT_ATTR(write_txns
, DMC_EVENT_WRITE_TXNS
);
156 TX2_EVENT_ATTR(data_transfers
, DMC_EVENT_DATA_TRANSFERS
);
157 TX2_EVENT_ATTR(read_txns
, DMC_EVENT_READ_TXNS
);
159 static struct attribute
*dmc_pmu_events_attrs
[] = {
160 &tx2_pmu_event_attr_cnt_cycles
.attr
.attr
,
161 &tx2_pmu_event_attr_write_txns
.attr
.attr
,
162 &tx2_pmu_event_attr_data_transfers
.attr
.attr
,
163 &tx2_pmu_event_attr_read_txns
.attr
.attr
,
167 static const struct attribute_group l3c_pmu_events_attr_group
= {
169 .attrs
= l3c_pmu_events_attrs
,
172 static const struct attribute_group dmc_pmu_events_attr_group
= {
174 .attrs
= dmc_pmu_events_attrs
,
178 * sysfs cpumask attributes
180 static ssize_t
cpumask_show(struct device
*dev
, struct device_attribute
*attr
,
183 struct tx2_uncore_pmu
*tx2_pmu
;
185 tx2_pmu
= pmu_to_tx2_pmu(dev_get_drvdata(dev
));
186 return cpumap_print_to_pagebuf(true, buf
, cpumask_of(tx2_pmu
->cpu
));
188 static DEVICE_ATTR_RO(cpumask
);
190 static struct attribute
*tx2_pmu_cpumask_attrs
[] = {
191 &dev_attr_cpumask
.attr
,
195 static const struct attribute_group pmu_cpumask_attr_group
= {
196 .attrs
= tx2_pmu_cpumask_attrs
,
200 * Per PMU device attribute groups
202 static const struct attribute_group
*l3c_pmu_attr_groups
[] = {
203 &l3c_pmu_format_attr_group
,
204 &pmu_cpumask_attr_group
,
205 &l3c_pmu_events_attr_group
,
209 static const struct attribute_group
*dmc_pmu_attr_groups
[] = {
210 &dmc_pmu_format_attr_group
,
211 &pmu_cpumask_attr_group
,
212 &dmc_pmu_events_attr_group
,
216 static inline u32
reg_readl(unsigned long addr
)
218 return readl((void __iomem
*)addr
);
221 static inline void reg_writel(u32 val
, unsigned long addr
)
223 writel(val
, (void __iomem
*)addr
);
226 static int alloc_counter(struct tx2_uncore_pmu
*tx2_pmu
)
230 counter
= find_first_zero_bit(tx2_pmu
->active_counters
,
231 tx2_pmu
->max_counters
);
232 if (counter
== tx2_pmu
->max_counters
)
235 set_bit(counter
, tx2_pmu
->active_counters
);
239 static inline void free_counter(struct tx2_uncore_pmu
*tx2_pmu
, int counter
)
241 clear_bit(counter
, tx2_pmu
->active_counters
);
244 static void init_cntr_base_l3c(struct perf_event
*event
,
245 struct tx2_uncore_pmu
*tx2_pmu
)
247 struct hw_perf_event
*hwc
= &event
->hw
;
249 /* counter ctrl/data reg offset at 8 */
250 hwc
->config_base
= (unsigned long)tx2_pmu
->base
251 + L3C_COUNTER_CTL
+ (8 * GET_COUNTERID(event
));
252 hwc
->event_base
= (unsigned long)tx2_pmu
->base
253 + L3C_COUNTER_DATA
+ (8 * GET_COUNTERID(event
));
256 static void init_cntr_base_dmc(struct perf_event
*event
,
257 struct tx2_uncore_pmu
*tx2_pmu
)
259 struct hw_perf_event
*hwc
= &event
->hw
;
261 hwc
->config_base
= (unsigned long)tx2_pmu
->base
263 /* counter data reg offset at 0xc */
264 hwc
->event_base
= (unsigned long)tx2_pmu
->base
265 + DMC_COUNTER_DATA
+ (0xc * GET_COUNTERID(event
));
268 static void uncore_start_event_l3c(struct perf_event
*event
, int flags
)
271 struct hw_perf_event
*hwc
= &event
->hw
;
273 /* event id encoded in bits [07:03] */
274 val
= GET_EVENTID(event
) << 3;
275 reg_writel(val
, hwc
->config_base
);
276 local64_set(&hwc
->prev_count
, 0);
277 reg_writel(0, hwc
->event_base
);
280 static inline void uncore_stop_event_l3c(struct perf_event
*event
)
282 reg_writel(0, event
->hw
.config_base
);
285 static void uncore_start_event_dmc(struct perf_event
*event
, int flags
)
288 struct hw_perf_event
*hwc
= &event
->hw
;
289 int idx
= GET_COUNTERID(event
);
290 int event_id
= GET_EVENTID(event
);
292 /* enable and start counters.
293 * 8 bits for each counter, bits[05:01] of a counter to set event type.
295 val
= reg_readl(hwc
->config_base
);
296 val
&= ~DMC_EVENT_CFG(idx
, 0x1f);
297 val
|= DMC_EVENT_CFG(idx
, event_id
);
298 reg_writel(val
, hwc
->config_base
);
299 local64_set(&hwc
->prev_count
, 0);
300 reg_writel(0, hwc
->event_base
);
303 static void uncore_stop_event_dmc(struct perf_event
*event
)
306 struct hw_perf_event
*hwc
= &event
->hw
;
307 int idx
= GET_COUNTERID(event
);
309 /* clear event type(bits[05:01]) to stop counter */
310 val
= reg_readl(hwc
->config_base
);
311 val
&= ~DMC_EVENT_CFG(idx
, 0x1f);
312 reg_writel(val
, hwc
->config_base
);
315 static void tx2_uncore_event_update(struct perf_event
*event
)
317 s64 prev
, delta
, new = 0;
318 struct hw_perf_event
*hwc
= &event
->hw
;
319 struct tx2_uncore_pmu
*tx2_pmu
;
320 enum tx2_uncore_type type
;
323 tx2_pmu
= pmu_to_tx2_pmu(event
->pmu
);
324 type
= tx2_pmu
->type
;
325 prorate_factor
= tx2_pmu
->prorate_factor
;
327 new = reg_readl(hwc
->event_base
);
328 prev
= local64_xchg(&hwc
->prev_count
, new);
330 /* handles rollover of 32 bit counter */
331 delta
= (u32
)(((1UL << 32) - prev
) + new);
333 /* DMC event data_transfers granularity is 16 Bytes, convert it to 64 */
334 if (type
== PMU_TYPE_DMC
&&
335 GET_EVENTID(event
) == DMC_EVENT_DATA_TRANSFERS
)
338 /* L3C and DMC has 16 and 8 interleave channels respectively.
339 * The sampled value is for channel 0 and multiplied with
340 * prorate_factor to get the count for a device.
342 local64_add(delta
* prorate_factor
, &event
->count
);
345 static enum tx2_uncore_type
get_tx2_pmu_type(struct acpi_device
*adev
)
348 struct acpi_tx2_pmu_device
{
349 __u8 id
[ACPI_ID_LEN
];
350 enum tx2_uncore_type type
;
352 {"CAV901D", PMU_TYPE_L3C
},
353 {"CAV901F", PMU_TYPE_DMC
},
354 {"", PMU_TYPE_INVALID
}
357 while (devices
[i
].type
!= PMU_TYPE_INVALID
) {
358 if (!strcmp(acpi_device_hid(adev
), devices
[i
].id
))
363 return devices
[i
].type
;
366 static bool tx2_uncore_validate_event(struct pmu
*pmu
,
367 struct perf_event
*event
, int *counters
)
369 if (is_software_event(event
))
371 /* Reject groups spanning multiple HW PMUs. */
372 if (event
->pmu
!= pmu
)
375 *counters
= *counters
+ 1;
380 * Make sure the group of events can be scheduled at once
383 static bool tx2_uncore_validate_event_group(struct perf_event
*event
)
385 struct perf_event
*sibling
, *leader
= event
->group_leader
;
388 if (event
->group_leader
== event
)
391 if (!tx2_uncore_validate_event(event
->pmu
, leader
, &counters
))
394 for_each_sibling_event(sibling
, leader
) {
395 if (!tx2_uncore_validate_event(event
->pmu
, sibling
, &counters
))
399 if (!tx2_uncore_validate_event(event
->pmu
, event
, &counters
))
403 * If the group requires more counters than the HW has,
404 * it cannot ever be scheduled.
406 return counters
<= TX2_PMU_MAX_COUNTERS
;
410 static int tx2_uncore_event_init(struct perf_event
*event
)
412 struct hw_perf_event
*hwc
= &event
->hw
;
413 struct tx2_uncore_pmu
*tx2_pmu
;
415 /* Test the event attr type check for PMU enumeration */
416 if (event
->attr
.type
!= event
->pmu
->type
)
420 * SOC PMU counters are shared across all cores.
421 * Therefore, it does not support per-process mode.
422 * Also, it does not support event sampling mode.
424 if (is_sampling_event(event
) || event
->attach_state
& PERF_ATTACH_TASK
)
430 tx2_pmu
= pmu_to_tx2_pmu(event
->pmu
);
431 if (tx2_pmu
->cpu
>= nr_cpu_ids
)
433 event
->cpu
= tx2_pmu
->cpu
;
435 if (event
->attr
.config
>= tx2_pmu
->max_events
)
439 hwc
->config
= event
->attr
.config
;
441 /* Validate the group */
442 if (!tx2_uncore_validate_event_group(event
))
448 static void tx2_uncore_event_start(struct perf_event
*event
, int flags
)
450 struct hw_perf_event
*hwc
= &event
->hw
;
451 struct tx2_uncore_pmu
*tx2_pmu
;
454 tx2_pmu
= pmu_to_tx2_pmu(event
->pmu
);
456 tx2_pmu
->start_event(event
, flags
);
457 perf_event_update_userpage(event
);
459 /* Start timer for first event */
460 if (bitmap_weight(tx2_pmu
->active_counters
,
461 tx2_pmu
->max_counters
) == 1) {
462 hrtimer_start(&tx2_pmu
->hrtimer
,
463 ns_to_ktime(tx2_pmu
->hrtimer_interval
),
464 HRTIMER_MODE_REL_PINNED
);
468 static void tx2_uncore_event_stop(struct perf_event
*event
, int flags
)
470 struct hw_perf_event
*hwc
= &event
->hw
;
471 struct tx2_uncore_pmu
*tx2_pmu
;
473 if (hwc
->state
& PERF_HES_UPTODATE
)
476 tx2_pmu
= pmu_to_tx2_pmu(event
->pmu
);
477 tx2_pmu
->stop_event(event
);
478 WARN_ON_ONCE(hwc
->state
& PERF_HES_STOPPED
);
479 hwc
->state
|= PERF_HES_STOPPED
;
480 if (flags
& PERF_EF_UPDATE
) {
481 tx2_uncore_event_update(event
);
482 hwc
->state
|= PERF_HES_UPTODATE
;
486 static int tx2_uncore_event_add(struct perf_event
*event
, int flags
)
488 struct hw_perf_event
*hwc
= &event
->hw
;
489 struct tx2_uncore_pmu
*tx2_pmu
;
491 tx2_pmu
= pmu_to_tx2_pmu(event
->pmu
);
493 /* Allocate a free counter */
494 hwc
->idx
= alloc_counter(tx2_pmu
);
498 tx2_pmu
->events
[hwc
->idx
] = event
;
499 /* set counter control and data registers base address */
500 tx2_pmu
->init_cntr_base(event
, tx2_pmu
);
502 hwc
->state
= PERF_HES_UPTODATE
| PERF_HES_STOPPED
;
503 if (flags
& PERF_EF_START
)
504 tx2_uncore_event_start(event
, flags
);
509 static void tx2_uncore_event_del(struct perf_event
*event
, int flags
)
511 struct tx2_uncore_pmu
*tx2_pmu
= pmu_to_tx2_pmu(event
->pmu
);
512 struct hw_perf_event
*hwc
= &event
->hw
;
514 tx2_uncore_event_stop(event
, PERF_EF_UPDATE
);
516 /* clear the assigned counter */
517 free_counter(tx2_pmu
, GET_COUNTERID(event
));
519 perf_event_update_userpage(event
);
520 tx2_pmu
->events
[hwc
->idx
] = NULL
;
524 static void tx2_uncore_event_read(struct perf_event
*event
)
526 tx2_uncore_event_update(event
);
529 static enum hrtimer_restart
tx2_hrtimer_callback(struct hrtimer
*timer
)
531 struct tx2_uncore_pmu
*tx2_pmu
;
532 int max_counters
, idx
;
534 tx2_pmu
= container_of(timer
, struct tx2_uncore_pmu
, hrtimer
);
535 max_counters
= tx2_pmu
->max_counters
;
537 if (bitmap_empty(tx2_pmu
->active_counters
, max_counters
))
538 return HRTIMER_NORESTART
;
540 for_each_set_bit(idx
, tx2_pmu
->active_counters
, max_counters
) {
541 struct perf_event
*event
= tx2_pmu
->events
[idx
];
543 tx2_uncore_event_update(event
);
545 hrtimer_forward_now(timer
, ns_to_ktime(tx2_pmu
->hrtimer_interval
));
546 return HRTIMER_RESTART
;
549 static int tx2_uncore_pmu_register(
550 struct tx2_uncore_pmu
*tx2_pmu
)
552 struct device
*dev
= tx2_pmu
->dev
;
553 char *name
= tx2_pmu
->name
;
555 /* Perf event registration */
556 tx2_pmu
->pmu
= (struct pmu
) {
557 .module
= THIS_MODULE
,
558 .attr_groups
= tx2_pmu
->attr_groups
,
559 .task_ctx_nr
= perf_invalid_context
,
560 .event_init
= tx2_uncore_event_init
,
561 .add
= tx2_uncore_event_add
,
562 .del
= tx2_uncore_event_del
,
563 .start
= tx2_uncore_event_start
,
564 .stop
= tx2_uncore_event_stop
,
565 .read
= tx2_uncore_event_read
,
566 .capabilities
= PERF_PMU_CAP_NO_EXCLUDE
,
569 tx2_pmu
->pmu
.name
= devm_kasprintf(dev
, GFP_KERNEL
,
572 return perf_pmu_register(&tx2_pmu
->pmu
, tx2_pmu
->pmu
.name
, -1);
575 static int tx2_uncore_pmu_add_dev(struct tx2_uncore_pmu
*tx2_pmu
)
579 cpu
= cpumask_any_and(cpumask_of_node(tx2_pmu
->node
),
583 hrtimer_init(&tx2_pmu
->hrtimer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
584 tx2_pmu
->hrtimer
.function
= tx2_hrtimer_callback
;
586 ret
= tx2_uncore_pmu_register(tx2_pmu
);
588 dev_err(tx2_pmu
->dev
, "%s PMU: Failed to init driver\n",
593 /* register hotplug callback for the pmu */
594 ret
= cpuhp_state_add_instance(
595 CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE
,
598 dev_err(tx2_pmu
->dev
, "Error %d registering hotplug", ret
);
603 list_add(&tx2_pmu
->entry
, &tx2_pmus
);
605 dev_dbg(tx2_pmu
->dev
, "%s PMU UNCORE registered\n",
610 static struct tx2_uncore_pmu
*tx2_uncore_pmu_init_dev(struct device
*dev
,
611 acpi_handle handle
, struct acpi_device
*adev
, u32 type
)
613 struct tx2_uncore_pmu
*tx2_pmu
;
616 struct resource_entry
*rentry
;
617 struct list_head list
;
620 INIT_LIST_HEAD(&list
);
621 ret
= acpi_dev_get_resources(adev
, &list
, NULL
, NULL
);
623 dev_err(dev
, "failed to parse _CRS method, error %d\n", ret
);
627 list_for_each_entry(rentry
, &list
, node
) {
628 if (resource_type(rentry
->res
) == IORESOURCE_MEM
) {
637 acpi_dev_free_resource_list(&list
);
638 base
= devm_ioremap_resource(dev
, &res
);
640 dev_err(dev
, "PMU type %d: Fail to map resource\n", type
);
644 tx2_pmu
= devm_kzalloc(dev
, sizeof(*tx2_pmu
), GFP_KERNEL
);
649 tx2_pmu
->type
= type
;
650 tx2_pmu
->base
= base
;
651 tx2_pmu
->node
= dev_to_node(dev
);
652 INIT_LIST_HEAD(&tx2_pmu
->entry
);
654 switch (tx2_pmu
->type
) {
656 tx2_pmu
->max_counters
= TX2_PMU_MAX_COUNTERS
;
657 tx2_pmu
->prorate_factor
= TX2_PMU_L3_TILES
;
658 tx2_pmu
->max_events
= L3_EVENT_MAX
;
659 tx2_pmu
->hrtimer_interval
= TX2_PMU_HRTIMER_INTERVAL
;
660 tx2_pmu
->attr_groups
= l3c_pmu_attr_groups
;
661 tx2_pmu
->name
= devm_kasprintf(dev
, GFP_KERNEL
,
662 "uncore_l3c_%d", tx2_pmu
->node
);
663 tx2_pmu
->init_cntr_base
= init_cntr_base_l3c
;
664 tx2_pmu
->start_event
= uncore_start_event_l3c
;
665 tx2_pmu
->stop_event
= uncore_stop_event_l3c
;
668 tx2_pmu
->max_counters
= TX2_PMU_MAX_COUNTERS
;
669 tx2_pmu
->prorate_factor
= TX2_PMU_DMC_CHANNELS
;
670 tx2_pmu
->max_events
= DMC_EVENT_MAX
;
671 tx2_pmu
->hrtimer_interval
= TX2_PMU_HRTIMER_INTERVAL
;
672 tx2_pmu
->attr_groups
= dmc_pmu_attr_groups
;
673 tx2_pmu
->name
= devm_kasprintf(dev
, GFP_KERNEL
,
674 "uncore_dmc_%d", tx2_pmu
->node
);
675 tx2_pmu
->init_cntr_base
= init_cntr_base_dmc
;
676 tx2_pmu
->start_event
= uncore_start_event_dmc
;
677 tx2_pmu
->stop_event
= uncore_stop_event_dmc
;
679 case PMU_TYPE_INVALID
:
680 devm_kfree(dev
, tx2_pmu
);
687 static acpi_status
tx2_uncore_pmu_add(acpi_handle handle
, u32 level
,
688 void *data
, void **return_value
)
690 struct tx2_uncore_pmu
*tx2_pmu
;
691 struct acpi_device
*adev
;
692 enum tx2_uncore_type type
;
694 if (acpi_bus_get_device(handle
, &adev
))
696 if (acpi_bus_get_status(adev
) || !adev
->status
.present
)
699 type
= get_tx2_pmu_type(adev
);
700 if (type
== PMU_TYPE_INVALID
)
703 tx2_pmu
= tx2_uncore_pmu_init_dev((struct device
*)data
,
709 if (tx2_uncore_pmu_add_dev(tx2_pmu
)) {
710 /* Can't add the PMU device, abort */
716 static int tx2_uncore_pmu_online_cpu(unsigned int cpu
,
717 struct hlist_node
*hpnode
)
719 struct tx2_uncore_pmu
*tx2_pmu
;
721 tx2_pmu
= hlist_entry_safe(hpnode
,
722 struct tx2_uncore_pmu
, hpnode
);
724 /* Pick this CPU, If there is no CPU/PMU association and both are
727 if ((tx2_pmu
->cpu
>= nr_cpu_ids
) &&
728 (tx2_pmu
->node
== cpu_to_node(cpu
)))
734 static int tx2_uncore_pmu_offline_cpu(unsigned int cpu
,
735 struct hlist_node
*hpnode
)
738 struct tx2_uncore_pmu
*tx2_pmu
;
739 struct cpumask cpu_online_mask_temp
;
741 tx2_pmu
= hlist_entry_safe(hpnode
,
742 struct tx2_uncore_pmu
, hpnode
);
744 if (cpu
!= tx2_pmu
->cpu
)
747 hrtimer_cancel(&tx2_pmu
->hrtimer
);
748 cpumask_copy(&cpu_online_mask_temp
, cpu_online_mask
);
749 cpumask_clear_cpu(cpu
, &cpu_online_mask_temp
);
750 new_cpu
= cpumask_any_and(
751 cpumask_of_node(tx2_pmu
->node
),
752 &cpu_online_mask_temp
);
754 tx2_pmu
->cpu
= new_cpu
;
755 if (new_cpu
>= nr_cpu_ids
)
757 perf_pmu_migrate_context(&tx2_pmu
->pmu
, cpu
, new_cpu
);
762 static const struct acpi_device_id tx2_uncore_acpi_match
[] = {
766 MODULE_DEVICE_TABLE(acpi
, tx2_uncore_acpi_match
);
768 static int tx2_uncore_probe(struct platform_device
*pdev
)
770 struct device
*dev
= &pdev
->dev
;
774 set_dev_node(dev
, acpi_get_node(ACPI_HANDLE(dev
)));
776 if (!has_acpi_companion(dev
))
779 handle
= ACPI_HANDLE(dev
);
783 /* Walk through the tree for all PMU UNCORE devices */
784 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
, handle
, 1,
787 if (ACPI_FAILURE(status
)) {
788 dev_err(dev
, "failed to probe PMU devices\n");
789 return_ACPI_STATUS(status
);
792 dev_info(dev
, "node%d: pmu uncore registered\n", dev_to_node(dev
));
796 static int tx2_uncore_remove(struct platform_device
*pdev
)
798 struct tx2_uncore_pmu
*tx2_pmu
, *temp
;
799 struct device
*dev
= &pdev
->dev
;
801 if (!list_empty(&tx2_pmus
)) {
802 list_for_each_entry_safe(tx2_pmu
, temp
, &tx2_pmus
, entry
) {
803 if (tx2_pmu
->node
== dev_to_node(dev
)) {
804 cpuhp_state_remove_instance_nocalls(
805 CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE
,
807 perf_pmu_unregister(&tx2_pmu
->pmu
);
808 list_del(&tx2_pmu
->entry
);
815 static struct platform_driver tx2_uncore_driver
= {
817 .name
= "tx2-uncore-pmu",
818 .acpi_match_table
= ACPI_PTR(tx2_uncore_acpi_match
),
820 .probe
= tx2_uncore_probe
,
821 .remove
= tx2_uncore_remove
,
824 static int __init
tx2_uncore_driver_init(void)
828 ret
= cpuhp_setup_state_multi(CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE
,
829 "perf/tx2/uncore:online",
830 tx2_uncore_pmu_online_cpu
,
831 tx2_uncore_pmu_offline_cpu
);
833 pr_err("TX2 PMU: setup hotplug failed(%d)\n", ret
);
836 ret
= platform_driver_register(&tx2_uncore_driver
);
838 cpuhp_remove_multi_state(CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE
);
842 module_init(tx2_uncore_driver_init
);
844 static void __exit
tx2_uncore_driver_exit(void)
846 platform_driver_unregister(&tx2_uncore_driver
);
847 cpuhp_remove_multi_state(CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE
);
849 module_exit(tx2_uncore_driver_exit
);
851 MODULE_DESCRIPTION("ThunderX2 UNCORE PMU driver");
852 MODULE_LICENSE("GPL v2");
853 MODULE_AUTHOR("Ganapatrao Kulkarni <gkulkarni@cavium.com>");