ARM: rockchip: rk3228: implement function rk3228_restart
[firefly-linux-kernel-4.4.55.git] / arch / arm / kernel / perf_event_cpu.c
1 /*
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/cpu_pm.h>
23 #include <linux/export.h>
24 #include <linux/kernel.h>
25 #include <linux/of.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
28 #include <linux/spinlock.h>
29
30 #include <asm/cputype.h>
31 #include <asm/irq_regs.h>
32 #include <asm/pmu.h>
33
34 /* Set at runtime when we know what CPU type we are. */
35 static DEFINE_PER_CPU(struct arm_pmu *, cpu_pmu);
36
37 static DEFINE_PER_CPU(struct perf_event * [ARMPMU_MAX_HWEVENTS], hw_events);
38 static DEFINE_PER_CPU(unsigned long [BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS)], used_mask);
39 static DEFINE_PER_CPU(struct pmu_hw_events, cpu_hw_events);
40
41 static DEFINE_PER_CPU(struct cpupmu_regs, cpu_pmu_regs);
42
43 /*
44  * Despite the names, these two functions are CPU-specific and are used
45  * by the OProfile/perf code.
46  */
47 const char *perf_pmu_name(void)
48 {
49         struct arm_pmu *pmu = per_cpu(cpu_pmu, 0);
50         if (!pmu)
51                 return NULL;
52
53         return pmu->name;
54 }
55 EXPORT_SYMBOL_GPL(perf_pmu_name);
56
57 int perf_num_counters(void)
58 {
59         struct arm_pmu *pmu = per_cpu(cpu_pmu, 0);
60
61         if (!pmu)
62                 return 0;
63
64         return pmu->num_events;
65 }
66 EXPORT_SYMBOL_GPL(perf_num_counters);
67
68 /* Include the PMU-specific implementations. */
69 #include "perf_event_xscale.c"
70 #include "perf_event_v6.c"
71 #include "perf_event_v7.c"
72
73 static struct pmu_hw_events *cpu_pmu_get_cpu_events(void)
74 {
75         return &__get_cpu_var(cpu_hw_events);
76 }
77
78 static void cpu_pmu_free_irq(struct arm_pmu *cpu_pmu)
79 {
80         int i, irq, irqs;
81         struct platform_device *pmu_device = cpu_pmu->plat_device;
82         int cpu = -1;
83
84         irqs = min(pmu_device->num_resources, num_possible_cpus());
85
86         for (i = 0; i < irqs; ++i) {
87                 cpu = cpumask_next(cpu, &cpu_pmu->valid_cpus);
88                 if (!cpumask_test_and_clear_cpu(cpu, &cpu_pmu->active_irqs))
89                         continue;
90                 irq = platform_get_irq(pmu_device, i);
91                 if (irq >= 0)
92                         free_irq(irq, cpu_pmu);
93         }
94 }
95
96 static int cpu_pmu_request_irq(struct arm_pmu *cpu_pmu, irq_handler_t handler)
97 {
98         int i, err, irq, irqs;
99         struct platform_device *pmu_device = cpu_pmu->plat_device;
100         int cpu = -1;
101
102         if (!pmu_device)
103                 return -ENODEV;
104
105         irqs = min(pmu_device->num_resources, num_possible_cpus());
106         if (irqs < 1) {
107                 pr_err("no irqs for PMUs defined\n");
108                 return -ENODEV;
109         }
110
111         for (i = 0; i < irqs; ++i) {
112                 err = 0;
113                 cpu = cpumask_next(cpu, &cpu_pmu->valid_cpus);
114                 irq = platform_get_irq(pmu_device, i);
115                 if (irq < 0)
116                         continue;
117
118                 /*
119                  * If we have a single PMU interrupt that we can't shift,
120                  * assume that we're running on a uniprocessor machine and
121                  * continue. Otherwise, continue without this interrupt.
122                  */
123                 if (irq_set_affinity(irq, cpumask_of(cpu)) && irqs > 1) {
124                         pr_warning("unable to set irq affinity (irq=%d, cpu=%u)\n",
125                                     irq, i);
126                         continue;
127                 }
128
129                 err = request_irq(irq, handler, IRQF_NOBALANCING, "arm-pmu",
130                                   cpu_pmu);
131                 if (err) {
132                         pr_err("unable to request IRQ%d for ARM PMU counters\n",
133                                 irq);
134                         return err;
135                 }
136
137                 cpumask_set_cpu(cpu, &cpu_pmu->active_irqs);
138         }
139
140         return 0;
141 }
142
143 static void cpu_pmu_init(struct arm_pmu *cpu_pmu)
144 {
145         int cpu;
146         for_each_cpu_mask(cpu, cpu_pmu->valid_cpus) {
147                 struct pmu_hw_events *events = &per_cpu(cpu_hw_events, cpu);
148                 events->events = per_cpu(hw_events, cpu);
149                 events->used_mask = per_cpu(used_mask, cpu);
150                 raw_spin_lock_init(&events->pmu_lock);
151         }
152
153         cpu_pmu->get_hw_events  = cpu_pmu_get_cpu_events;
154         cpu_pmu->request_irq    = cpu_pmu_request_irq;
155         cpu_pmu->free_irq       = cpu_pmu_free_irq;
156
157         /* Ensure the PMU has sane values out of reset. */
158         if (cpu_pmu->reset)
159                 on_each_cpu_mask(&cpu_pmu->valid_cpus, cpu_pmu->reset, cpu_pmu, 1);
160 }
161
162 /*
163  * PMU hardware loses all context when a CPU goes offline.
164  * When a CPU is hotplugged back in, since some hardware registers are
165  * UNKNOWN at reset, the PMU must be explicitly reset to avoid reading
166  * junk values out of them.
167  */
168 static int __cpuinit cpu_pmu_notify(struct notifier_block *b,
169                                     unsigned long action, void *hcpu)
170 {
171         struct arm_pmu *pmu = per_cpu(cpu_pmu, (long)hcpu);
172
173         if ((action & ~CPU_TASKS_FROZEN) != CPU_STARTING)
174                 return NOTIFY_DONE;
175
176         if (pmu && pmu->reset)
177                 pmu->reset(pmu);
178         else
179                 return NOTIFY_DONE;
180
181         return NOTIFY_OK;
182 }
183
184 static int cpu_pmu_pm_notify(struct notifier_block *b,
185                                     unsigned long action, void *hcpu)
186 {
187         int cpu = smp_processor_id();
188         struct arm_pmu *pmu = per_cpu(cpu_pmu, cpu);
189         struct cpupmu_regs *pmuregs = &per_cpu(cpu_pmu_regs, cpu);
190
191         if (!pmu)
192                 return NOTIFY_DONE;
193
194         if (action == CPU_PM_ENTER && pmu->save_regs) {
195                 pmu->save_regs(pmu, pmuregs);
196         } else if (action == CPU_PM_EXIT && pmu->restore_regs) {
197                 pmu->restore_regs(pmu, pmuregs);
198         }
199
200         return NOTIFY_OK;
201 }
202
203 static struct notifier_block __cpuinitdata cpu_pmu_hotplug_notifier = {
204         .notifier_call = cpu_pmu_notify,
205 };
206
207 static struct notifier_block __cpuinitdata cpu_pmu_pm_notifier = {
208         .notifier_call = cpu_pmu_pm_notify,
209 };
210
211 /*
212  * PMU platform driver and devicetree bindings.
213  */
214 static struct of_device_id cpu_pmu_of_device_ids[] = {
215         {.compatible = "arm,cortex-a15-pmu",    .data = armv7_a15_pmu_init},
216         {.compatible = "arm,cortex-a12-pmu",    .data = armv7_a12_pmu_init},
217         {.compatible = "arm,cortex-a9-pmu",     .data = armv7_a9_pmu_init},
218         {.compatible = "arm,cortex-a8-pmu",     .data = armv7_a8_pmu_init},
219         {.compatible = "arm,cortex-a7-pmu",     .data = armv7_a7_pmu_init},
220         {.compatible = "arm,cortex-a5-pmu",     .data = armv7_a5_pmu_init},
221         {.compatible = "arm,arm11mpcore-pmu",   .data = armv6mpcore_pmu_init},
222         {.compatible = "arm,arm1176-pmu",       .data = armv6pmu_init},
223         {.compatible = "arm,arm1136-pmu",       .data = armv6pmu_init},
224         {},
225 };
226
227 static struct platform_device_id cpu_pmu_plat_device_ids[] = {
228         {.name = "arm-pmu"},
229         {},
230 };
231
232 /*
233  * CPU PMU identification and probing.
234  */
235 static int probe_current_pmu(struct arm_pmu *pmu)
236 {
237         int cpu = get_cpu();
238         int ret = -ENODEV;
239
240         pr_info("probing PMU on CPU %d\n", cpu);
241
242         switch (read_cpuid_part()) {
243         /* ARM Ltd CPUs. */
244         case ARM_CPU_PART_ARM1136:
245         case ARM_CPU_PART_ARM1156:
246         case ARM_CPU_PART_ARM1176:
247                 ret = armv6pmu_init(pmu);
248                 break;
249         case ARM_CPU_PART_ARM11MPCORE:
250                 ret = armv6mpcore_pmu_init(pmu);
251                 break;
252         case ARM_CPU_PART_CORTEX_A8:
253                 ret = armv7_a8_pmu_init(pmu);
254                 break;
255         case ARM_CPU_PART_CORTEX_A9:
256                 ret = armv7_a9_pmu_init(pmu);
257                 break;
258
259         default:
260                 if (read_cpuid_implementor() == ARM_CPU_IMP_INTEL) {
261                         switch (xscale_cpu_arch_version()) {
262                         case ARM_CPU_XSCALE_ARCH_V1:
263                                 ret = xscale1pmu_init(pmu);
264                                 break;
265                         case ARM_CPU_XSCALE_ARCH_V2:
266                                 ret = xscale2pmu_init(pmu);
267                                 break;
268                         }
269                 }
270                 break;
271         }
272
273         /* assume PMU support all the CPUs in this case */
274         cpumask_setall(&pmu->valid_cpus);
275
276         put_cpu();
277         return ret;
278 }
279
280 static int cpu_pmu_device_probe(struct platform_device *pdev)
281 {
282         const struct of_device_id *of_id;
283         struct device_node *node = pdev->dev.of_node;
284         struct arm_pmu *pmu;
285         int ret = 0;
286         int cpu;
287
288         pmu = kzalloc(sizeof(struct arm_pmu), GFP_KERNEL);
289         if (!pmu) {
290                 pr_info("failed to allocate PMU device!");
291                 return -ENOMEM;
292         }
293
294         if (node && (of_id = of_match_node(cpu_pmu_of_device_ids, pdev->dev.of_node))) {
295                 smp_call_func_t init_fn = (smp_call_func_t)of_id->data;
296                 struct device_node *ncluster;
297                 int cluster = -1;
298                 cpumask_t sibling_mask;
299
300                 ncluster = of_parse_phandle(node, "cluster", 0);
301                 if (ncluster) {
302                         int len;
303                         const u32 *hwid;
304                         hwid = of_get_property(ncluster, "reg", &len);
305                         if (hwid && len == 4)
306                                 cluster = be32_to_cpup(hwid);
307                 }
308                 /* set sibling mask to all cpu mask if socket is not specified */
309                 if (cluster == -1 ||
310                         cluster_to_logical_mask(cluster, &sibling_mask))
311                         cpumask_setall(&sibling_mask);
312
313                 smp_call_function_any(&sibling_mask, init_fn, pmu, 1);
314
315                 /* now set the valid_cpus after init */
316                 cpumask_copy(&pmu->valid_cpus, &sibling_mask);
317         } else {
318                 ret = probe_current_pmu(pmu);
319         }
320
321         if (ret) {
322                 pr_info("failed to probe PMU!");
323                 goto out_free;
324         }
325
326         for_each_cpu_mask(cpu, pmu->valid_cpus)
327                 per_cpu(cpu_pmu, cpu) = pmu;
328
329         pmu->plat_device = pdev;
330         cpu_pmu_init(pmu);
331         ret = armpmu_register(pmu, -1);
332
333         if (!ret)
334                 return 0;
335
336 out_free:
337         pr_info("failed to register PMU devices!");
338         kfree(pmu);
339         return ret;
340 }
341
342 static struct platform_driver cpu_pmu_driver = {
343         .driver         = {
344                 .name   = "arm-pmu",
345                 .pm     = &armpmu_dev_pm_ops,
346                 .of_match_table = cpu_pmu_of_device_ids,
347         },
348         .probe          = cpu_pmu_device_probe,
349         .id_table       = cpu_pmu_plat_device_ids,
350 };
351
352 static int __init register_pmu_driver(void)
353 {
354         int err;
355
356         err = register_cpu_notifier(&cpu_pmu_hotplug_notifier);
357         if (err)
358                 return err;
359
360         err = cpu_pm_register_notifier(&cpu_pmu_pm_notifier);
361         if (err) {
362                 unregister_cpu_notifier(&cpu_pmu_hotplug_notifier);
363                 return err;
364         }
365
366         err = platform_driver_register(&cpu_pmu_driver);
367         if (err) {
368                 cpu_pm_unregister_notifier(&cpu_pmu_pm_notifier);
369                 unregister_cpu_notifier(&cpu_pmu_hotplug_notifier);
370         }
371
372         return err;
373 }
374 device_initcall(register_pmu_driver);