blob: 3b8c2833c5379aa36ca3a0a384bb740df3f3284a [file] [log] [blame]
Will Deacon5505b202012-07-29 13:09:14 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14 *
15 * Copyright (C) 2012 ARM Limited
16 *
17 * Author: Will Deacon <will.deacon@arm.com>
18 */
19#define pr_fmt(fmt) "CPU PMU: " fmt
20
21#include <linux/bitmap.h>
22#include <linux/export.h>
23#include <linux/kernel.h>
24#include <linux/of.h>
25#include <linux/platform_device.h>
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +010026#include <linux/slab.h>
Will Deacon5505b202012-07-29 13:09:14 +010027#include <linux/spinlock.h>
Stephen Boydbbd64552014-02-07 21:01:19 +000028#include <linux/irq.h>
29#include <linux/irqdesc.h>
Will Deacon5505b202012-07-29 13:09:14 +010030
31#include <asm/cputype.h>
32#include <asm/irq_regs.h>
33#include <asm/pmu.h>
34
35/* Set at runtime when we know what CPU type we are. */
36static struct arm_pmu *cpu_pmu;
37
Will Deacon5505b202012-07-29 13:09:14 +010038/*
39 * Despite the names, these two functions are CPU-specific and are used
40 * by the OProfile/perf code.
41 */
42const char *perf_pmu_name(void)
43{
44 if (!cpu_pmu)
45 return NULL;
46
Will Deacon03052302012-09-21 14:23:47 +010047 return cpu_pmu->name;
Will Deacon5505b202012-07-29 13:09:14 +010048}
49EXPORT_SYMBOL_GPL(perf_pmu_name);
50
51int perf_num_counters(void)
52{
53 int max_events = 0;
54
55 if (cpu_pmu != NULL)
56 max_events = cpu_pmu->num_events;
57
58 return max_events;
59}
60EXPORT_SYMBOL_GPL(perf_num_counters);
61
62/* Include the PMU-specific implementations. */
63#include "perf_event_xscale.c"
64#include "perf_event_v6.c"
65#include "perf_event_v7.c"
66
Stephen Boydbbd64552014-02-07 21:01:19 +000067static void cpu_pmu_enable_percpu_irq(void *data)
68{
Stephen Boyd505013b2014-09-11 23:25:30 +010069 int irq = *(int *)data;
Stephen Boydbbd64552014-02-07 21:01:19 +000070
71 enable_percpu_irq(irq, IRQ_TYPE_NONE);
Stephen Boydbbd64552014-02-07 21:01:19 +000072}
73
74static void cpu_pmu_disable_percpu_irq(void *data)
75{
Stephen Boyd505013b2014-09-11 23:25:30 +010076 int irq = *(int *)data;
Stephen Boydbbd64552014-02-07 21:01:19 +000077
Stephen Boydbbd64552014-02-07 21:01:19 +000078 disable_percpu_irq(irq);
79}
80
Sudeep KarkadaNageshaed6f2a52012-07-30 12:00:02 +010081static void cpu_pmu_free_irq(struct arm_pmu *cpu_pmu)
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +010082{
83 int i, irq, irqs;
84 struct platform_device *pmu_device = cpu_pmu->plat_device;
Mark Rutland5ebd9202014-05-13 19:46:10 +010085 struct pmu_hw_events __percpu *hw_events = cpu_pmu->hw_events;
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +010086
87 irqs = min(pmu_device->num_resources, num_possible_cpus());
88
Stephen Boydbbd64552014-02-07 21:01:19 +000089 irq = platform_get_irq(pmu_device, 0);
90 if (irq >= 0 && irq_is_percpu(irq)) {
Stephen Boyd505013b2014-09-11 23:25:30 +010091 on_each_cpu(cpu_pmu_disable_percpu_irq, &irq, 1);
Mark Rutland5ebd9202014-05-13 19:46:10 +010092 free_percpu_irq(irq, &hw_events->percpu_pmu);
Stephen Boydbbd64552014-02-07 21:01:19 +000093 } else {
94 for (i = 0; i < irqs; ++i) {
Will Deacon9fd85eb2015-03-06 11:54:09 +000095 int cpu = i;
96
97 if (cpu_pmu->irq_affinity)
98 cpu = cpu_pmu->irq_affinity[i];
99
100 if (!cpumask_test_and_clear_cpu(cpu, &cpu_pmu->active_irqs))
Stephen Boydbbd64552014-02-07 21:01:19 +0000101 continue;
102 irq = platform_get_irq(pmu_device, i);
103 if (irq >= 0)
Will Deacon9fd85eb2015-03-06 11:54:09 +0000104 free_irq(irq, per_cpu_ptr(&hw_events->percpu_pmu, cpu));
Stephen Boydbbd64552014-02-07 21:01:19 +0000105 }
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100106 }
107}
108
Sudeep KarkadaNageshaed6f2a52012-07-30 12:00:02 +0100109static int cpu_pmu_request_irq(struct arm_pmu *cpu_pmu, irq_handler_t handler)
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100110{
111 int i, err, irq, irqs;
112 struct platform_device *pmu_device = cpu_pmu->plat_device;
Mark Rutland5ebd9202014-05-13 19:46:10 +0100113 struct pmu_hw_events __percpu *hw_events = cpu_pmu->hw_events;
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100114
115 if (!pmu_device)
116 return -ENODEV;
117
118 irqs = min(pmu_device->num_resources, num_possible_cpus());
119 if (irqs < 1) {
Will Deacon52a55662014-10-30 11:26:57 +0000120 pr_warn_once("perf/ARM: No irqs for PMU defined, sampling events not supported\n");
Vince Weaveredcb4d32014-05-16 17:15:49 -0400121 return 0;
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100122 }
123
Stephen Boydbbd64552014-02-07 21:01:19 +0000124 irq = platform_get_irq(pmu_device, 0);
125 if (irq >= 0 && irq_is_percpu(irq)) {
Mark Rutland5ebd9202014-05-13 19:46:10 +0100126 err = request_percpu_irq(irq, handler, "arm-pmu",
127 &hw_events->percpu_pmu);
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100128 if (err) {
129 pr_err("unable to request IRQ%d for ARM PMU counters\n",
130 irq);
131 return err;
132 }
Stephen Boyd505013b2014-09-11 23:25:30 +0100133 on_each_cpu(cpu_pmu_enable_percpu_irq, &irq, 1);
Stephen Boydbbd64552014-02-07 21:01:19 +0000134 } else {
135 for (i = 0; i < irqs; ++i) {
Will Deacon9fd85eb2015-03-06 11:54:09 +0000136 int cpu = i;
137
Stephen Boydbbd64552014-02-07 21:01:19 +0000138 err = 0;
139 irq = platform_get_irq(pmu_device, i);
140 if (irq < 0)
141 continue;
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100142
Will Deacon9fd85eb2015-03-06 11:54:09 +0000143 if (cpu_pmu->irq_affinity)
144 cpu = cpu_pmu->irq_affinity[i];
145
Stephen Boydbbd64552014-02-07 21:01:19 +0000146 /*
147 * If we have a single PMU interrupt that we can't shift,
148 * assume that we're running on a uniprocessor machine and
149 * continue. Otherwise, continue without this interrupt.
150 */
Will Deacon9fd85eb2015-03-06 11:54:09 +0000151 if (irq_set_affinity(irq, cpumask_of(cpu)) && irqs > 1) {
Joe Perches8b521cb2014-09-16 20:41:43 +0100152 pr_warn("unable to set irq affinity (irq=%d, cpu=%u)\n",
Will Deacon9fd85eb2015-03-06 11:54:09 +0000153 irq, cpu);
Stephen Boydbbd64552014-02-07 21:01:19 +0000154 continue;
155 }
156
157 err = request_irq(irq, handler,
158 IRQF_NOBALANCING | IRQF_NO_THREAD, "arm-pmu",
Will Deacon9fd85eb2015-03-06 11:54:09 +0000159 per_cpu_ptr(&hw_events->percpu_pmu, cpu));
Stephen Boydbbd64552014-02-07 21:01:19 +0000160 if (err) {
161 pr_err("unable to request IRQ%d for ARM PMU counters\n",
162 irq);
163 return err;
164 }
165
Will Deacon9fd85eb2015-03-06 11:54:09 +0000166 cpumask_set_cpu(cpu, &cpu_pmu->active_irqs);
Stephen Boydbbd64552014-02-07 21:01:19 +0000167 }
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100168 }
169
170 return 0;
171}
172
Mark Rutlandaf66abf2014-10-23 15:23:35 +0100173/*
174 * PMU hardware loses all context when a CPU goes offline.
175 * When a CPU is hotplugged back in, since some hardware registers are
176 * UNKNOWN at reset, the PMU must be explicitly reset to avoid reading
177 * junk values out of them.
178 */
179static int cpu_pmu_notify(struct notifier_block *b, unsigned long action,
180 void *hcpu)
181{
182 struct arm_pmu *pmu = container_of(b, struct arm_pmu, hotplug_nb);
183
184 if ((action & ~CPU_TASKS_FROZEN) != CPU_STARTING)
185 return NOTIFY_DONE;
186
187 if (pmu->reset)
188 pmu->reset(pmu);
189 else
190 return NOTIFY_DONE;
191
192 return NOTIFY_OK;
193}
194
Mark Rutlandabdf6552014-10-21 14:11:23 +0100195static int cpu_pmu_init(struct arm_pmu *cpu_pmu)
Will Deacon5505b202012-07-29 13:09:14 +0100196{
Mark Rutlandaf66abf2014-10-23 15:23:35 +0100197 int err;
Will Deacon5505b202012-07-29 13:09:14 +0100198 int cpu;
Mark Rutlandabdf6552014-10-21 14:11:23 +0100199 struct pmu_hw_events __percpu *cpu_hw_events;
200
201 cpu_hw_events = alloc_percpu(struct pmu_hw_events);
202 if (!cpu_hw_events)
203 return -ENOMEM;
204
Mark Rutlandaf66abf2014-10-23 15:23:35 +0100205 cpu_pmu->hotplug_nb.notifier_call = cpu_pmu_notify;
206 err = register_cpu_notifier(&cpu_pmu->hotplug_nb);
207 if (err)
208 goto out_hw_events;
209
Will Deacon5505b202012-07-29 13:09:14 +0100210 for_each_possible_cpu(cpu) {
Mark Rutlandabdf6552014-10-21 14:11:23 +0100211 struct pmu_hw_events *events = per_cpu_ptr(cpu_hw_events, cpu);
Will Deacon5505b202012-07-29 13:09:14 +0100212 raw_spin_lock_init(&events->pmu_lock);
Mark Rutland5ebd9202014-05-13 19:46:10 +0100213 events->percpu_pmu = cpu_pmu;
Will Deacon5505b202012-07-29 13:09:14 +0100214 }
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100215
Mark Rutlandabdf6552014-10-21 14:11:23 +0100216 cpu_pmu->hw_events = cpu_hw_events;
Sudeep KarkadaNagesha051f1b12012-07-31 10:34:25 +0100217 cpu_pmu->request_irq = cpu_pmu_request_irq;
218 cpu_pmu->free_irq = cpu_pmu_free_irq;
Will Deacon5505b202012-07-29 13:09:14 +0100219
220 /* Ensure the PMU has sane values out of reset. */
Will Deacon1764c592013-01-14 17:27:35 +0000221 if (cpu_pmu->reset)
Sudeep KarkadaNageshaed6f2a52012-07-30 12:00:02 +0100222 on_each_cpu(cpu_pmu->reset, cpu_pmu, 1);
Vince Weaveredcb4d32014-05-16 17:15:49 -0400223
224 /* If no interrupts available, set the corresponding capability flag */
225 if (!platform_get_irq(cpu_pmu->plat_device, 0))
226 cpu_pmu->pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
Mark Rutlandabdf6552014-10-21 14:11:23 +0100227
228 return 0;
Mark Rutlandaf66abf2014-10-23 15:23:35 +0100229
230out_hw_events:
231 free_percpu(cpu_hw_events);
232 return err;
Mark Rutlandabdf6552014-10-21 14:11:23 +0100233}
234
235static void cpu_pmu_destroy(struct arm_pmu *cpu_pmu)
236{
Mark Rutlandaf66abf2014-10-23 15:23:35 +0100237 unregister_cpu_notifier(&cpu_pmu->hotplug_nb);
Mark Rutlandabdf6552014-10-21 14:11:23 +0100238 free_percpu(cpu_pmu->hw_events);
Will Deacon5505b202012-07-29 13:09:14 +0100239}
240
241/*
Will Deacon5505b202012-07-29 13:09:14 +0100242 * PMU platform driver and devicetree bindings.
243 */
Uwe Kleine-König444d2d32015-02-18 21:19:56 +0100244static const struct of_device_id cpu_pmu_of_device_ids[] = {
Will Deacon03eff462014-05-09 18:34:19 +0100245 {.compatible = "arm,cortex-a17-pmu", .data = armv7_a17_pmu_init},
Will Deacon5505b202012-07-29 13:09:14 +0100246 {.compatible = "arm,cortex-a15-pmu", .data = armv7_a15_pmu_init},
Albin Tonnerre8e781f62014-01-29 14:28:57 +0000247 {.compatible = "arm,cortex-a12-pmu", .data = armv7_a12_pmu_init},
Will Deacon5505b202012-07-29 13:09:14 +0100248 {.compatible = "arm,cortex-a9-pmu", .data = armv7_a9_pmu_init},
249 {.compatible = "arm,cortex-a8-pmu", .data = armv7_a8_pmu_init},
250 {.compatible = "arm,cortex-a7-pmu", .data = armv7_a7_pmu_init},
251 {.compatible = "arm,cortex-a5-pmu", .data = armv7_a5_pmu_init},
252 {.compatible = "arm,arm11mpcore-pmu", .data = armv6mpcore_pmu_init},
Mark Rutland3d1ff752012-12-19 16:33:24 +0000253 {.compatible = "arm,arm1176-pmu", .data = armv6_1176_pmu_init},
254 {.compatible = "arm,arm1136-pmu", .data = armv6_1136_pmu_init},
Stephen Boyd2a3391c2014-02-07 21:01:21 +0000255 {.compatible = "qcom,krait-pmu", .data = krait_pmu_init},
Stephen Boyd341e42c2015-02-27 16:11:35 -0800256 {.compatible = "qcom,scorpion-pmu", .data = scorpion_pmu_init},
257 {.compatible = "qcom,scorpion-mp-pmu", .data = scorpion_mp_pmu_init},
Will Deacon5505b202012-07-29 13:09:14 +0100258 {},
259};
260
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -0800261static struct platform_device_id cpu_pmu_plat_device_ids[] = {
Will Deacon5505b202012-07-29 13:09:14 +0100262 {.name = "arm-pmu"},
Mark Rutland253d8c32014-05-22 11:49:18 +0100263 {.name = "armv6-pmu"},
264 {.name = "armv7-pmu"},
265 {.name = "xscale-pmu"},
Will Deacon5505b202012-07-29 13:09:14 +0100266 {},
267};
268
Mark Rutland548a86c2014-05-23 18:11:14 +0100269static const struct pmu_probe_info pmu_probe_table[] = {
270 ARM_PMU_PROBE(ARM_CPU_PART_ARM1136, armv6_1136_pmu_init),
271 ARM_PMU_PROBE(ARM_CPU_PART_ARM1156, armv6_1156_pmu_init),
272 ARM_PMU_PROBE(ARM_CPU_PART_ARM1176, armv6_1176_pmu_init),
273 ARM_PMU_PROBE(ARM_CPU_PART_ARM11MPCORE, armv6mpcore_pmu_init),
274 ARM_PMU_PROBE(ARM_CPU_PART_CORTEX_A8, armv7_a8_pmu_init),
275 ARM_PMU_PROBE(ARM_CPU_PART_CORTEX_A9, armv7_a9_pmu_init),
276 XSCALE_PMU_PROBE(ARM_CPU_XSCALE_ARCH_V1, xscale1pmu_init),
277 XSCALE_PMU_PROBE(ARM_CPU_XSCALE_ARCH_V2, xscale2pmu_init),
278 { /* sentinel value */ }
279};
280
Will Deacon5505b202012-07-29 13:09:14 +0100281/*
282 * CPU PMU identification and probing.
283 */
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -0800284static int probe_current_pmu(struct arm_pmu *pmu)
Will Deacon5505b202012-07-29 13:09:14 +0100285{
Will Deacon5505b202012-07-29 13:09:14 +0100286 int cpu = get_cpu();
Mark Rutland548a86c2014-05-23 18:11:14 +0100287 unsigned int cpuid = read_cpuid_id();
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100288 int ret = -ENODEV;
Mark Rutland548a86c2014-05-23 18:11:14 +0100289 const struct pmu_probe_info *info;
Will Deacon5505b202012-07-29 13:09:14 +0100290
291 pr_info("probing PMU on CPU %d\n", cpu);
292
Mark Rutland548a86c2014-05-23 18:11:14 +0100293 for (info = pmu_probe_table; info->init != NULL; info++) {
294 if ((cpuid & info->mask) != info->cpuid)
295 continue;
296 ret = info->init(pmu);
Russell Kingaf040ff2014-06-24 19:43:15 +0100297 break;
Will Deacon5505b202012-07-29 13:09:14 +0100298 }
299
300 put_cpu();
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100301 return ret;
Will Deacon5505b202012-07-29 13:09:14 +0100302}
303
Will Deacon9fd85eb2015-03-06 11:54:09 +0000304static int of_pmu_irq_cfg(struct platform_device *pdev)
305{
Will Deacon338d9dd2015-05-01 17:15:23 +0100306 int i, irq;
Will Deacon8d281282015-05-14 18:07:44 +0100307 int *irqs;
Will Deacon9fd85eb2015-03-06 11:54:09 +0000308
Will Deacon338d9dd2015-05-01 17:15:23 +0100309 /* Don't bother with PPIs; they're already affine */
310 irq = platform_get_irq(pdev, 0);
311 if (irq >= 0 && irq_is_percpu(irq))
312 return 0;
313
Will Deacon8d281282015-05-14 18:07:44 +0100314 irqs = kcalloc(pdev->num_resources, sizeof(*irqs), GFP_KERNEL);
315 if (!irqs)
316 return -ENOMEM;
317
Will Deacon9fd85eb2015-03-06 11:54:09 +0000318 for (i = 0; i < pdev->num_resources; ++i) {
319 struct device_node *dn;
320 int cpu;
321
322 dn = of_parse_phandle(pdev->dev.of_node, "interrupt-affinity",
323 i);
324 if (!dn) {
325 pr_warn("Failed to parse %s/interrupt-affinity[%d]\n",
Will Deacon3b8786f2015-05-01 17:16:01 +0100326 of_node_full_name(pdev->dev.of_node), i);
Will Deacon9fd85eb2015-03-06 11:54:09 +0000327 break;
328 }
329
330 for_each_possible_cpu(cpu)
331 if (arch_find_n_match_cpu_physical_id(dn, cpu, NULL))
332 break;
333
334 of_node_put(dn);
335 if (cpu >= nr_cpu_ids) {
336 pr_warn("Failed to find logical CPU for %s\n",
337 dn->name);
338 break;
339 }
340
341 irqs[i] = cpu;
342 }
343
344 if (i == pdev->num_resources)
345 cpu_pmu->irq_affinity = irqs;
346 else
347 kfree(irqs);
348
349 return 0;
350}
351
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -0800352static int cpu_pmu_device_probe(struct platform_device *pdev)
Will Deacon5505b202012-07-29 13:09:14 +0100353{
354 const struct of_device_id *of_id;
Stephen Boyd261521f2014-01-10 00:57:06 +0100355 const int (*init_fn)(struct arm_pmu *);
Will Deacon5505b202012-07-29 13:09:14 +0100356 struct device_node *node = pdev->dev.of_node;
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100357 struct arm_pmu *pmu;
358 int ret = -ENODEV;
Will Deacon5505b202012-07-29 13:09:14 +0100359
360 if (cpu_pmu) {
Mark Rutland0f2a2102014-10-23 15:59:35 +0100361 pr_info("attempt to register multiple PMU devices!\n");
Will Deacon5505b202012-07-29 13:09:14 +0100362 return -ENOSPC;
363 }
364
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100365 pmu = kzalloc(sizeof(struct arm_pmu), GFP_KERNEL);
366 if (!pmu) {
Mark Rutland0f2a2102014-10-23 15:59:35 +0100367 pr_info("failed to allocate PMU device!\n");
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100368 return -ENOMEM;
Will Deacon5505b202012-07-29 13:09:14 +0100369 }
370
Stephen Boyd3a3967e2014-02-07 21:01:20 +0000371 cpu_pmu = pmu;
372 cpu_pmu->plat_device = pdev;
373
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100374 if (node && (of_id = of_match_node(cpu_pmu_of_device_ids, pdev->dev.of_node))) {
375 init_fn = of_id->data;
Will Deacon9fd85eb2015-03-06 11:54:09 +0000376
377 ret = of_pmu_irq_cfg(pdev);
378 if (!ret)
379 ret = init_fn(pmu);
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100380 } else {
381 ret = probe_current_pmu(pmu);
382 }
Will Deacon5505b202012-07-29 13:09:14 +0100383
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100384 if (ret) {
Mark Rutland0f2a2102014-10-23 15:59:35 +0100385 pr_info("failed to probe PMU!\n");
Mark Rutland76b8a0e2013-01-18 13:42:58 +0000386 goto out_free;
Sudeep KarkadaNagesha513c99c2012-07-31 10:11:23 +0100387 }
388
Mark Rutlandabdf6552014-10-21 14:11:23 +0100389 ret = cpu_pmu_init(cpu_pmu);
390 if (ret)
391 goto out_free;
392
Mark Rutland67b43052012-09-12 10:53:23 +0100393 ret = armpmu_register(cpu_pmu, -1);
Mark Rutlandabdf6552014-10-21 14:11:23 +0100394 if (ret)
395 goto out_destroy;
Will Deacon5505b202012-07-29 13:09:14 +0100396
Mark Rutlandabdf6552014-10-21 14:11:23 +0100397 return 0;
Mark Rutland76b8a0e2013-01-18 13:42:58 +0000398
Mark Rutlandabdf6552014-10-21 14:11:23 +0100399out_destroy:
400 cpu_pmu_destroy(cpu_pmu);
Mark Rutland76b8a0e2013-01-18 13:42:58 +0000401out_free:
Mark Rutland0f2a2102014-10-23 15:59:35 +0100402 pr_info("failed to register PMU devices!\n");
Mark Rutland76b8a0e2013-01-18 13:42:58 +0000403 kfree(pmu);
404 return ret;
Will Deacon5505b202012-07-29 13:09:14 +0100405}
406
407static struct platform_driver cpu_pmu_driver = {
408 .driver = {
409 .name = "arm-pmu",
410 .pm = &armpmu_dev_pm_ops,
411 .of_match_table = cpu_pmu_of_device_ids,
412 },
413 .probe = cpu_pmu_device_probe,
414 .id_table = cpu_pmu_plat_device_ids,
415};
416
417static int __init register_pmu_driver(void)
418{
Mark Rutlandaf66abf2014-10-23 15:23:35 +0100419 return platform_driver_register(&cpu_pmu_driver);
Will Deacon5505b202012-07-29 13:09:14 +0100420}
421device_initcall(register_pmu_driver);