1 // SPDX-License-Identifier: GPL-2.0
3 * platform_device probing code for ARM performance counters.
5 * Copyright (C) 2009 picoChip Designs, Ltd., Jamie Iles
6 * Copyright (C) 2010 ARM Ltd., Will Deacon <will.deacon@arm.com>
8 #define pr_fmt(fmt) "hw perfevents: " fmt
11 #include <linux/bug.h>
12 #include <linux/cpumask.h>
13 #include <linux/device.h>
14 #include <linux/errno.h>
15 #include <linux/irq.h>
16 #include <linux/irqdesc.h>
17 #include <linux/kconfig.h>
19 #include <linux/of_device.h>
20 #include <linux/percpu.h>
21 #include <linux/perf/arm_pmu.h>
22 #include <linux/platform_device.h>
23 #include <linux/printk.h>
24 #include <linux/smp.h>
26 static int probe_current_pmu(struct arm_pmu *pmu,
27 const struct pmu_probe_info *info)
30 unsigned int cpuid = read_cpuid_id();
33 pr_info("probing PMU on CPU %d\n", cpu);
35 for (; info->init != NULL; info++) {
36 if ((cpuid & info->mask) != info->cpuid)
38 ret = info->init(pmu);
46 static int pmu_parse_percpu_irq(struct arm_pmu *pmu, int irq)
49 struct pmu_hw_events __percpu *hw_events = pmu->hw_events;
51 ret = irq_get_percpu_devid_partition(irq, &pmu->supported_cpus);
55 for_each_cpu(cpu, &pmu->supported_cpus)
56 per_cpu(hw_events->irq, cpu) = irq;
61 static bool pmu_has_irq_affinity(struct device_node *node)
63 return !!of_find_property(node, "interrupt-affinity", NULL);
66 static int pmu_parse_irq_affinity(struct device *dev, int i)
68 struct device_node *dn;
72 * If we don't have an interrupt-affinity property, we guess irq
73 * affinity matches our logical CPU order, as we used to assume.
74 * This is fragile, so we'll warn in pmu_parse_irqs().
76 if (!pmu_has_irq_affinity(dev->of_node))
79 dn = of_parse_phandle(dev->of_node, "interrupt-affinity", i);
81 dev_warn(dev, "failed to parse interrupt-affinity[%d]\n", i);
85 cpu = of_cpu_node_to_id(dn);
87 dev_warn(dev, "failed to find logical CPU for %pOFn\n", dn);
96 static int pmu_parse_irqs(struct arm_pmu *pmu)
99 struct platform_device *pdev = pmu->plat_device;
100 struct pmu_hw_events __percpu *hw_events = pmu->hw_events;
101 struct device *dev = &pdev->dev;
103 num_irqs = platform_irq_count(pdev);
105 return dev_err_probe(dev, num_irqs, "unable to count PMU IRQs\n");
108 * In this case we have no idea which CPUs are covered by the PMU.
109 * To match our prior behaviour, we assume all CPUs in this case.
112 dev_warn(dev, "no irqs for PMU, sampling events not supported\n");
113 pmu->pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
114 cpumask_setall(&pmu->supported_cpus);
119 int irq = platform_get_irq(pdev, 0);
120 if (irq && irq_is_percpu_devid(irq))
121 return pmu_parse_percpu_irq(pmu, irq);
124 if (nr_cpu_ids != 1 && !pmu_has_irq_affinity(dev->of_node))
125 dev_warn(dev, "no interrupt-affinity property, guessing.\n");
127 for (i = 0; i < num_irqs; i++) {
130 irq = platform_get_irq(pdev, i);
131 if (WARN_ON(irq <= 0))
134 if (irq_is_percpu_devid(irq)) {
135 dev_warn(dev, "multiple PPIs or mismatched SPI/PPI detected\n");
139 cpu = pmu_parse_irq_affinity(dev, i);
142 if (cpu >= nr_cpu_ids)
145 if (per_cpu(hw_events->irq, cpu)) {
146 dev_warn(dev, "multiple PMU IRQs for the same CPU detected\n");
150 per_cpu(hw_events->irq, cpu) = irq;
151 cpumask_set_cpu(cpu, &pmu->supported_cpus);
157 static int armpmu_request_irqs(struct arm_pmu *armpmu)
159 struct pmu_hw_events __percpu *hw_events = armpmu->hw_events;
162 for_each_cpu(cpu, &armpmu->supported_cpus) {
163 int irq = per_cpu(hw_events->irq, cpu);
167 err = armpmu_request_irq(irq, cpu);
175 static void armpmu_free_irqs(struct arm_pmu *armpmu)
178 struct pmu_hw_events __percpu *hw_events = armpmu->hw_events;
180 for_each_cpu(cpu, &armpmu->supported_cpus) {
181 int irq = per_cpu(hw_events->irq, cpu);
183 armpmu_free_irq(irq, cpu);
187 int arm_pmu_device_probe(struct platform_device *pdev,
188 const struct of_device_id *of_table,
189 const struct pmu_probe_info *probe_table)
191 armpmu_init_fn init_fn;
192 struct device *dev = &pdev->dev;
196 pmu = armpmu_alloc();
200 pmu->plat_device = pdev;
202 ret = pmu_parse_irqs(pmu);
206 init_fn = of_device_get_match_data(dev);
208 pmu->secure_access = of_property_read_bool(dev->of_node,
209 "secure-reg-access");
211 /* arm64 systems boot only as non-secure */
212 if (IS_ENABLED(CONFIG_ARM64) && pmu->secure_access) {
213 dev_warn(dev, "ignoring \"secure-reg-access\" property for arm64\n");
214 pmu->secure_access = false;
218 } else if (probe_table) {
219 cpumask_setall(&pmu->supported_cpus);
220 ret = probe_current_pmu(pmu, probe_table);
224 dev_err(dev, "failed to probe PMU!\n");
228 ret = armpmu_request_irqs(pmu);
232 ret = armpmu_register(pmu);
234 dev_err(dev, "failed to register PMU devices!\n");
241 armpmu_free_irqs(pmu);