arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / arm / mm / cache-l2x0-pmu.c
blob993fefdc167a89d00b2f35b96b7cab125fa76613
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * L220/L310 cache controller support
5 * Copyright (C) 2016 ARM Limited
6 */
7 #include <linux/errno.h>
8 #include <linux/hrtimer.h>
9 #include <linux/io.h>
10 #include <linux/list.h>
11 #include <linux/perf_event.h>
12 #include <linux/printk.h>
13 #include <linux/slab.h>
14 #include <linux/types.h>
16 #include <asm/hardware/cache-l2x0.h>
18 #define PMU_NR_COUNTERS 2
20 static void __iomem *l2x0_base;
21 static struct pmu *l2x0_pmu;
22 static cpumask_t pmu_cpu;
24 static const char *l2x0_name;
26 static ktime_t l2x0_pmu_poll_period;
27 static struct hrtimer l2x0_pmu_hrtimer;
30 * The L220/PL310 PMU has two equivalent counters, Counter1 and Counter0.
31 * Registers controlling these are laid out in pairs, in descending order, i.e.
32 * the register for Counter1 comes first, followed by the register for
33 * Counter0.
34 * We ensure that idx 0 -> Counter0, and idx1 -> Counter1.
36 static struct perf_event *events[PMU_NR_COUNTERS];
38 /* Find an unused counter */
39 static int l2x0_pmu_find_idx(void)
41 int i;
43 for (i = 0; i < PMU_NR_COUNTERS; i++) {
44 if (!events[i])
45 return i;
48 return -1;
51 /* How many counters are allocated? */
52 static int l2x0_pmu_num_active_counters(void)
54 int i, cnt = 0;
56 for (i = 0; i < PMU_NR_COUNTERS; i++) {
57 if (events[i])
58 cnt++;
61 return cnt;
64 static void l2x0_pmu_counter_config_write(int idx, u32 val)
66 writel_relaxed(val, l2x0_base + L2X0_EVENT_CNT0_CFG - 4 * idx);
69 static u32 l2x0_pmu_counter_read(int idx)
71 return readl_relaxed(l2x0_base + L2X0_EVENT_CNT0_VAL - 4 * idx);
74 static void l2x0_pmu_counter_write(int idx, u32 val)
76 writel_relaxed(val, l2x0_base + L2X0_EVENT_CNT0_VAL - 4 * idx);
79 static void __l2x0_pmu_enable(void)
81 u32 val = readl_relaxed(l2x0_base + L2X0_EVENT_CNT_CTRL);
82 val |= L2X0_EVENT_CNT_CTRL_ENABLE;
83 writel_relaxed(val, l2x0_base + L2X0_EVENT_CNT_CTRL);
86 static void __l2x0_pmu_disable(void)
88 u32 val = readl_relaxed(l2x0_base + L2X0_EVENT_CNT_CTRL);
89 val &= ~L2X0_EVENT_CNT_CTRL_ENABLE;
90 writel_relaxed(val, l2x0_base + L2X0_EVENT_CNT_CTRL);
93 static void l2x0_pmu_enable(struct pmu *pmu)
95 if (l2x0_pmu_num_active_counters() == 0)
96 return;
98 __l2x0_pmu_enable();
101 static void l2x0_pmu_disable(struct pmu *pmu)
103 if (l2x0_pmu_num_active_counters() == 0)
104 return;
106 __l2x0_pmu_disable();
109 static void warn_if_saturated(u32 count)
111 if (count != 0xffffffff)
112 return;
114 pr_warn_ratelimited("L2X0 counter saturated. Poll period too long\n");
117 static void l2x0_pmu_event_read(struct perf_event *event)
119 struct hw_perf_event *hw = &event->hw;
120 u64 prev_count, new_count, mask;
122 do {
123 prev_count = local64_read(&hw->prev_count);
124 new_count = l2x0_pmu_counter_read(hw->idx);
125 } while (local64_xchg(&hw->prev_count, new_count) != prev_count);
127 mask = GENMASK_ULL(31, 0);
128 local64_add((new_count - prev_count) & mask, &event->count);
130 warn_if_saturated(new_count);
133 static void l2x0_pmu_event_configure(struct perf_event *event)
135 struct hw_perf_event *hw = &event->hw;
138 * The L2X0 counters saturate at 0xffffffff rather than wrapping, so we
139 * will *always* lose some number of events when a counter saturates,
140 * and have no way of detecting how many were lost.
142 * To minimize the impact of this, we try to maximize the period by
143 * always starting counters at zero. To ensure that group ratios are
144 * representative, we poll periodically to avoid counters saturating.
145 * See l2x0_pmu_poll().
147 local64_set(&hw->prev_count, 0);
148 l2x0_pmu_counter_write(hw->idx, 0);
151 static enum hrtimer_restart l2x0_pmu_poll(struct hrtimer *hrtimer)
153 unsigned long flags;
154 int i;
156 local_irq_save(flags);
157 __l2x0_pmu_disable();
159 for (i = 0; i < PMU_NR_COUNTERS; i++) {
160 struct perf_event *event = events[i];
162 if (!event)
163 continue;
165 l2x0_pmu_event_read(event);
166 l2x0_pmu_event_configure(event);
169 __l2x0_pmu_enable();
170 local_irq_restore(flags);
172 hrtimer_forward_now(hrtimer, l2x0_pmu_poll_period);
173 return HRTIMER_RESTART;
177 static void __l2x0_pmu_event_enable(int idx, u32 event)
179 u32 val;
181 val = event << L2X0_EVENT_CNT_CFG_SRC_SHIFT;
182 val |= L2X0_EVENT_CNT_CFG_INT_DISABLED;
183 l2x0_pmu_counter_config_write(idx, val);
186 static void l2x0_pmu_event_start(struct perf_event *event, int flags)
188 struct hw_perf_event *hw = &event->hw;
190 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
191 return;
193 if (flags & PERF_EF_RELOAD) {
194 WARN_ON_ONCE(!(hw->state & PERF_HES_UPTODATE));
195 l2x0_pmu_event_configure(event);
198 hw->state = 0;
200 __l2x0_pmu_event_enable(hw->idx, hw->config_base);
203 static void __l2x0_pmu_event_disable(int idx)
205 u32 val;
207 val = L2X0_EVENT_CNT_CFG_SRC_DISABLED << L2X0_EVENT_CNT_CFG_SRC_SHIFT;
208 val |= L2X0_EVENT_CNT_CFG_INT_DISABLED;
209 l2x0_pmu_counter_config_write(idx, val);
212 static void l2x0_pmu_event_stop(struct perf_event *event, int flags)
214 struct hw_perf_event *hw = &event->hw;
216 if (WARN_ON_ONCE(event->hw.state & PERF_HES_STOPPED))
217 return;
219 __l2x0_pmu_event_disable(hw->idx);
221 hw->state |= PERF_HES_STOPPED;
223 if (flags & PERF_EF_UPDATE) {
224 l2x0_pmu_event_read(event);
225 hw->state |= PERF_HES_UPTODATE;
229 static int l2x0_pmu_event_add(struct perf_event *event, int flags)
231 struct hw_perf_event *hw = &event->hw;
232 int idx = l2x0_pmu_find_idx();
234 if (idx == -1)
235 return -EAGAIN;
238 * Pin the timer, so that the overflows are handled by the chosen
239 * event->cpu (this is the same one as presented in "cpumask"
240 * attribute).
242 if (l2x0_pmu_num_active_counters() == 0)
243 hrtimer_start(&l2x0_pmu_hrtimer, l2x0_pmu_poll_period,
244 HRTIMER_MODE_REL_PINNED);
246 events[idx] = event;
247 hw->idx = idx;
249 l2x0_pmu_event_configure(event);
251 hw->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
253 if (flags & PERF_EF_START)
254 l2x0_pmu_event_start(event, 0);
256 return 0;
259 static void l2x0_pmu_event_del(struct perf_event *event, int flags)
261 struct hw_perf_event *hw = &event->hw;
263 l2x0_pmu_event_stop(event, PERF_EF_UPDATE);
265 events[hw->idx] = NULL;
266 hw->idx = -1;
268 if (l2x0_pmu_num_active_counters() == 0)
269 hrtimer_cancel(&l2x0_pmu_hrtimer);
272 static bool l2x0_pmu_group_is_valid(struct perf_event *event)
274 struct pmu *pmu = event->pmu;
275 struct perf_event *leader = event->group_leader;
276 struct perf_event *sibling;
277 int num_hw = 0;
279 if (leader->pmu == pmu)
280 num_hw++;
281 else if (!is_software_event(leader))
282 return false;
284 for_each_sibling_event(sibling, leader) {
285 if (sibling->pmu == pmu)
286 num_hw++;
287 else if (!is_software_event(sibling))
288 return false;
291 return num_hw <= PMU_NR_COUNTERS;
294 static int l2x0_pmu_event_init(struct perf_event *event)
296 struct hw_perf_event *hw = &event->hw;
298 if (event->attr.type != l2x0_pmu->type)
299 return -ENOENT;
301 if (is_sampling_event(event) ||
302 event->attach_state & PERF_ATTACH_TASK)
303 return -EINVAL;
305 if (event->cpu < 0)
306 return -EINVAL;
308 if (event->attr.config & ~L2X0_EVENT_CNT_CFG_SRC_MASK)
309 return -EINVAL;
311 hw->config_base = event->attr.config;
313 if (!l2x0_pmu_group_is_valid(event))
314 return -EINVAL;
316 event->cpu = cpumask_first(&pmu_cpu);
318 return 0;
321 struct l2x0_event_attribute {
322 struct device_attribute attr;
323 unsigned int config;
324 bool pl310_only;
327 #define L2X0_EVENT_ATTR(_name, _config, _pl310_only) \
328 (&((struct l2x0_event_attribute[]) {{ \
329 .attr = __ATTR(_name, S_IRUGO, l2x0_pmu_event_show, NULL), \
330 .config = _config, \
331 .pl310_only = _pl310_only, \
332 }})[0].attr.attr)
334 #define L220_PLUS_EVENT_ATTR(_name, _config) \
335 L2X0_EVENT_ATTR(_name, _config, false)
337 #define PL310_EVENT_ATTR(_name, _config) \
338 L2X0_EVENT_ATTR(_name, _config, true)
340 static ssize_t l2x0_pmu_event_show(struct device *dev,
341 struct device_attribute *attr, char *buf)
343 struct l2x0_event_attribute *lattr;
345 lattr = container_of(attr, typeof(*lattr), attr);
346 return snprintf(buf, PAGE_SIZE, "config=0x%x\n", lattr->config);
349 static umode_t l2x0_pmu_event_attr_is_visible(struct kobject *kobj,
350 struct attribute *attr,
351 int unused)
353 struct device *dev = kobj_to_dev(kobj);
354 struct pmu *pmu = dev_get_drvdata(dev);
355 struct l2x0_event_attribute *lattr;
357 lattr = container_of(attr, typeof(*lattr), attr.attr);
359 if (!lattr->pl310_only || strcmp("l2c_310", pmu->name) == 0)
360 return attr->mode;
362 return 0;
365 static struct attribute *l2x0_pmu_event_attrs[] = {
366 L220_PLUS_EVENT_ATTR(co, 0x1),
367 L220_PLUS_EVENT_ATTR(drhit, 0x2),
368 L220_PLUS_EVENT_ATTR(drreq, 0x3),
369 L220_PLUS_EVENT_ATTR(dwhit, 0x4),
370 L220_PLUS_EVENT_ATTR(dwreq, 0x5),
371 L220_PLUS_EVENT_ATTR(dwtreq, 0x6),
372 L220_PLUS_EVENT_ATTR(irhit, 0x7),
373 L220_PLUS_EVENT_ATTR(irreq, 0x8),
374 L220_PLUS_EVENT_ATTR(wa, 0x9),
375 PL310_EVENT_ATTR(ipfalloc, 0xa),
376 PL310_EVENT_ATTR(epfhit, 0xb),
377 PL310_EVENT_ATTR(epfalloc, 0xc),
378 PL310_EVENT_ATTR(srrcvd, 0xd),
379 PL310_EVENT_ATTR(srconf, 0xe),
380 PL310_EVENT_ATTR(epfrcvd, 0xf),
381 NULL
384 static struct attribute_group l2x0_pmu_event_attrs_group = {
385 .name = "events",
386 .attrs = l2x0_pmu_event_attrs,
387 .is_visible = l2x0_pmu_event_attr_is_visible,
390 static ssize_t l2x0_pmu_cpumask_show(struct device *dev,
391 struct device_attribute *attr, char *buf)
393 return cpumap_print_to_pagebuf(true, buf, &pmu_cpu);
396 static struct device_attribute l2x0_pmu_cpumask_attr =
397 __ATTR(cpumask, S_IRUGO, l2x0_pmu_cpumask_show, NULL);
399 static struct attribute *l2x0_pmu_cpumask_attrs[] = {
400 &l2x0_pmu_cpumask_attr.attr,
401 NULL,
404 static struct attribute_group l2x0_pmu_cpumask_attr_group = {
405 .attrs = l2x0_pmu_cpumask_attrs,
408 static const struct attribute_group *l2x0_pmu_attr_groups[] = {
409 &l2x0_pmu_event_attrs_group,
410 &l2x0_pmu_cpumask_attr_group,
411 NULL,
414 static void l2x0_pmu_reset(void)
416 int i;
418 __l2x0_pmu_disable();
420 for (i = 0; i < PMU_NR_COUNTERS; i++)
421 __l2x0_pmu_event_disable(i);
424 static int l2x0_pmu_offline_cpu(unsigned int cpu)
426 unsigned int target;
428 if (!cpumask_test_and_clear_cpu(cpu, &pmu_cpu))
429 return 0;
431 target = cpumask_any_but(cpu_online_mask, cpu);
432 if (target >= nr_cpu_ids)
433 return 0;
435 perf_pmu_migrate_context(l2x0_pmu, cpu, target);
436 cpumask_set_cpu(target, &pmu_cpu);
438 return 0;
441 void l2x0_pmu_suspend(void)
443 int i;
445 if (!l2x0_pmu)
446 return;
448 l2x0_pmu_disable(l2x0_pmu);
450 for (i = 0; i < PMU_NR_COUNTERS; i++) {
451 if (events[i])
452 l2x0_pmu_event_stop(events[i], PERF_EF_UPDATE);
457 void l2x0_pmu_resume(void)
459 int i;
461 if (!l2x0_pmu)
462 return;
464 l2x0_pmu_reset();
466 for (i = 0; i < PMU_NR_COUNTERS; i++) {
467 if (events[i])
468 l2x0_pmu_event_start(events[i], PERF_EF_RELOAD);
471 l2x0_pmu_enable(l2x0_pmu);
474 void __init l2x0_pmu_register(void __iomem *base, u32 part)
477 * Determine whether we support the PMU, and choose the name for sysfs.
478 * This is also used by l2x0_pmu_event_attr_is_visible to determine
479 * which events to display, as the PL310 PMU supports a superset of
480 * L220 events.
482 * The L210 PMU has a different programmer's interface, and is not
483 * supported by this driver.
485 * We must defer registering the PMU until the perf subsystem is up and
486 * running, so just stash the name and base, and leave that to another
487 * initcall.
489 switch (part & L2X0_CACHE_ID_PART_MASK) {
490 case L2X0_CACHE_ID_PART_L220:
491 l2x0_name = "l2c_220";
492 break;
493 case L2X0_CACHE_ID_PART_L310:
494 l2x0_name = "l2c_310";
495 break;
496 default:
497 return;
500 l2x0_base = base;
503 static __init int l2x0_pmu_init(void)
505 int ret;
507 if (!l2x0_base)
508 return 0;
510 l2x0_pmu = kzalloc(sizeof(*l2x0_pmu), GFP_KERNEL);
511 if (!l2x0_pmu) {
512 pr_warn("Unable to allocate L2x0 PMU\n");
513 return -ENOMEM;
516 *l2x0_pmu = (struct pmu) {
517 .task_ctx_nr = perf_invalid_context,
518 .pmu_enable = l2x0_pmu_enable,
519 .pmu_disable = l2x0_pmu_disable,
520 .read = l2x0_pmu_event_read,
521 .start = l2x0_pmu_event_start,
522 .stop = l2x0_pmu_event_stop,
523 .add = l2x0_pmu_event_add,
524 .del = l2x0_pmu_event_del,
525 .event_init = l2x0_pmu_event_init,
526 .attr_groups = l2x0_pmu_attr_groups,
527 .capabilities = PERF_PMU_CAP_NO_EXCLUDE,
530 l2x0_pmu_reset();
533 * We always use a hrtimer rather than an interrupt.
534 * See comments in l2x0_pmu_event_configure and l2x0_pmu_poll.
536 * Polling once a second allows the counters to fill up to 1/128th on a
537 * quad-core test chip with cores clocked at 400MHz. Hopefully this
538 * leaves sufficient headroom to avoid overflow on production silicon
539 * at higher frequencies.
541 l2x0_pmu_poll_period = ms_to_ktime(1000);
542 hrtimer_init(&l2x0_pmu_hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
543 l2x0_pmu_hrtimer.function = l2x0_pmu_poll;
545 cpumask_set_cpu(0, &pmu_cpu);
546 ret = cpuhp_setup_state_nocalls(CPUHP_AP_PERF_ARM_L2X0_ONLINE,
547 "perf/arm/l2x0:online", NULL,
548 l2x0_pmu_offline_cpu);
549 if (ret)
550 goto out_pmu;
552 ret = perf_pmu_register(l2x0_pmu, l2x0_name, -1);
553 if (ret)
554 goto out_cpuhp;
556 return 0;
558 out_cpuhp:
559 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_ARM_L2X0_ONLINE);
560 out_pmu:
561 kfree(l2x0_pmu);
562 l2x0_pmu = NULL;
563 return ret;
565 device_initcall(l2x0_pmu_init);