ARM: rockchip: fix broken build
[linux/fpc-iii.git] / arch / arc / kernel / perf_event.c
blob1287388c258ace8ef57f1030a46acb65f0fbb87e
1 /*
2 * Linux performance counter support for ARC700 series
4 * Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
6 * This code is inspired by the perf support of various other architectures.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/errno.h>
14 #include <linux/module.h>
15 #include <linux/of.h>
16 #include <linux/perf_event.h>
17 #include <linux/platform_device.h>
18 #include <asm/arcregs.h>
19 #include <asm/stacktrace.h>
21 struct arc_pmu {
22 struct pmu pmu;
23 int counter_size; /* in bits */
24 int n_counters;
25 unsigned long used_mask[BITS_TO_LONGS(ARC_PMU_MAX_HWEVENTS)];
26 int ev_hw_idx[PERF_COUNT_ARC_HW_MAX];
29 struct arc_callchain_trace {
30 int depth;
31 void *perf_stuff;
34 static int callchain_trace(unsigned int addr, void *data)
36 struct arc_callchain_trace *ctrl = data;
37 struct perf_callchain_entry *entry = ctrl->perf_stuff;
38 perf_callchain_store(entry, addr);
40 if (ctrl->depth++ < 3)
41 return 0;
43 return -1;
46 void
47 perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
49 struct arc_callchain_trace ctrl = {
50 .depth = 0,
51 .perf_stuff = entry,
54 arc_unwind_core(NULL, regs, callchain_trace, &ctrl);
57 void
58 perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
61 * User stack can't be unwound trivially with kernel dwarf unwinder
62 * So for now just record the user PC
64 perf_callchain_store(entry, instruction_pointer(regs));
67 static struct arc_pmu *arc_pmu;
69 /* read counter #idx; note that counter# != event# on ARC! */
70 static uint64_t arc_pmu_read_counter(int idx)
72 uint32_t tmp;
73 uint64_t result;
76 * ARC supports making 'snapshots' of the counters, so we don't
77 * need to care about counters wrapping to 0 underneath our feet
79 write_aux_reg(ARC_REG_PCT_INDEX, idx);
80 tmp = read_aux_reg(ARC_REG_PCT_CONTROL);
81 write_aux_reg(ARC_REG_PCT_CONTROL, tmp | ARC_REG_PCT_CONTROL_SN);
82 result = (uint64_t) (read_aux_reg(ARC_REG_PCT_SNAPH)) << 32;
83 result |= read_aux_reg(ARC_REG_PCT_SNAPL);
85 return result;
88 static void arc_perf_event_update(struct perf_event *event,
89 struct hw_perf_event *hwc, int idx)
91 uint64_t prev_raw_count, new_raw_count;
92 int64_t delta;
94 do {
95 prev_raw_count = local64_read(&hwc->prev_count);
96 new_raw_count = arc_pmu_read_counter(idx);
97 } while (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
98 new_raw_count) != prev_raw_count);
100 delta = (new_raw_count - prev_raw_count) &
101 ((1ULL << arc_pmu->counter_size) - 1ULL);
103 local64_add(delta, &event->count);
104 local64_sub(delta, &hwc->period_left);
107 static void arc_pmu_read(struct perf_event *event)
109 arc_perf_event_update(event, &event->hw, event->hw.idx);
112 static int arc_pmu_cache_event(u64 config)
114 unsigned int cache_type, cache_op, cache_result;
115 int ret;
117 cache_type = (config >> 0) & 0xff;
118 cache_op = (config >> 8) & 0xff;
119 cache_result = (config >> 16) & 0xff;
120 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
121 return -EINVAL;
122 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
123 return -EINVAL;
124 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
125 return -EINVAL;
127 ret = arc_pmu_cache_map[cache_type][cache_op][cache_result];
129 if (ret == CACHE_OP_UNSUPPORTED)
130 return -ENOENT;
132 pr_debug("init cache event: type/op/result %d/%d/%d with h/w %d \'%s\'\n",
133 cache_type, cache_op, cache_result, ret,
134 arc_pmu_ev_hw_map[ret]);
136 return ret;
139 /* initializes hw_perf_event structure if event is supported */
140 static int arc_pmu_event_init(struct perf_event *event)
142 struct hw_perf_event *hwc = &event->hw;
143 int ret;
145 switch (event->attr.type) {
146 case PERF_TYPE_HARDWARE:
147 if (event->attr.config >= PERF_COUNT_HW_MAX)
148 return -ENOENT;
149 if (arc_pmu->ev_hw_idx[event->attr.config] < 0)
150 return -ENOENT;
151 hwc->config = arc_pmu->ev_hw_idx[event->attr.config];
152 pr_debug("init event %d with h/w %d \'%s\'\n",
153 (int) event->attr.config, (int) hwc->config,
154 arc_pmu_ev_hw_map[event->attr.config]);
155 return 0;
156 case PERF_TYPE_HW_CACHE:
157 ret = arc_pmu_cache_event(event->attr.config);
158 if (ret < 0)
159 return ret;
160 hwc->config = arc_pmu->ev_hw_idx[ret];
161 return 0;
162 default:
163 return -ENOENT;
167 /* starts all counters */
168 static void arc_pmu_enable(struct pmu *pmu)
170 uint32_t tmp;
171 tmp = read_aux_reg(ARC_REG_PCT_CONTROL);
172 write_aux_reg(ARC_REG_PCT_CONTROL, (tmp & 0xffff0000) | 0x1);
175 /* stops all counters */
176 static void arc_pmu_disable(struct pmu *pmu)
178 uint32_t tmp;
179 tmp = read_aux_reg(ARC_REG_PCT_CONTROL);
180 write_aux_reg(ARC_REG_PCT_CONTROL, (tmp & 0xffff0000) | 0x0);
184 * Assigns hardware counter to hardware condition.
185 * Note that there is no separate start/stop mechanism;
186 * stopping is achieved by assigning the 'never' condition
188 static void arc_pmu_start(struct perf_event *event, int flags)
190 struct hw_perf_event *hwc = &event->hw;
191 int idx = hwc->idx;
193 if (WARN_ON_ONCE(idx == -1))
194 return;
196 if (flags & PERF_EF_RELOAD)
197 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
199 event->hw.state = 0;
201 /* enable ARC pmu here */
202 write_aux_reg(ARC_REG_PCT_INDEX, idx);
203 write_aux_reg(ARC_REG_PCT_CONFIG, hwc->config);
206 static void arc_pmu_stop(struct perf_event *event, int flags)
208 struct hw_perf_event *hwc = &event->hw;
209 int idx = hwc->idx;
211 if (!(event->hw.state & PERF_HES_STOPPED)) {
212 /* stop ARC pmu here */
213 write_aux_reg(ARC_REG_PCT_INDEX, idx);
215 /* condition code #0 is always "never" */
216 write_aux_reg(ARC_REG_PCT_CONFIG, 0);
218 event->hw.state |= PERF_HES_STOPPED;
221 if ((flags & PERF_EF_UPDATE) &&
222 !(event->hw.state & PERF_HES_UPTODATE)) {
223 arc_perf_event_update(event, &event->hw, idx);
224 event->hw.state |= PERF_HES_UPTODATE;
228 static void arc_pmu_del(struct perf_event *event, int flags)
230 arc_pmu_stop(event, PERF_EF_UPDATE);
231 __clear_bit(event->hw.idx, arc_pmu->used_mask);
233 perf_event_update_userpage(event);
236 /* allocate hardware counter and optionally start counting */
237 static int arc_pmu_add(struct perf_event *event, int flags)
239 struct hw_perf_event *hwc = &event->hw;
240 int idx = hwc->idx;
242 if (__test_and_set_bit(idx, arc_pmu->used_mask)) {
243 idx = find_first_zero_bit(arc_pmu->used_mask,
244 arc_pmu->n_counters);
245 if (idx == arc_pmu->n_counters)
246 return -EAGAIN;
248 __set_bit(idx, arc_pmu->used_mask);
249 hwc->idx = idx;
252 write_aux_reg(ARC_REG_PCT_INDEX, idx);
253 write_aux_reg(ARC_REG_PCT_CONFIG, 0);
254 write_aux_reg(ARC_REG_PCT_COUNTL, 0);
255 write_aux_reg(ARC_REG_PCT_COUNTH, 0);
256 local64_set(&hwc->prev_count, 0);
258 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
259 if (flags & PERF_EF_START)
260 arc_pmu_start(event, PERF_EF_RELOAD);
262 perf_event_update_userpage(event);
264 return 0;
267 static int arc_pmu_device_probe(struct platform_device *pdev)
269 struct arc_reg_pct_build pct_bcr;
270 struct arc_reg_cc_build cc_bcr;
271 int i, j;
273 union cc_name {
274 struct {
275 uint32_t word0, word1;
276 char sentinel;
277 } indiv;
278 char str[9];
279 } cc_name;
282 READ_BCR(ARC_REG_PCT_BUILD, pct_bcr);
283 if (!pct_bcr.v) {
284 pr_err("This core does not have performance counters!\n");
285 return -ENODEV;
287 BUG_ON(pct_bcr.c > ARC_PMU_MAX_HWEVENTS);
289 READ_BCR(ARC_REG_CC_BUILD, cc_bcr);
290 BUG_ON(!cc_bcr.v); /* Counters exist but No countable conditions ? */
292 arc_pmu = devm_kzalloc(&pdev->dev, sizeof(struct arc_pmu), GFP_KERNEL);
293 if (!arc_pmu)
294 return -ENOMEM;
296 arc_pmu->n_counters = pct_bcr.c;
297 arc_pmu->counter_size = 32 + (pct_bcr.s << 4);
299 pr_info("ARC perf\t: %d counters (%d bits), %d countable conditions\n",
300 arc_pmu->n_counters, arc_pmu->counter_size, cc_bcr.c);
302 cc_name.str[8] = 0;
303 for (i = 0; i < PERF_COUNT_ARC_HW_MAX; i++)
304 arc_pmu->ev_hw_idx[i] = -1;
306 /* loop thru all available h/w condition indexes */
307 for (j = 0; j < cc_bcr.c; j++) {
308 write_aux_reg(ARC_REG_CC_INDEX, j);
309 cc_name.indiv.word0 = read_aux_reg(ARC_REG_CC_NAME0);
310 cc_name.indiv.word1 = read_aux_reg(ARC_REG_CC_NAME1);
312 /* See if it has been mapped to a perf event_id */
313 for (i = 0; i < ARRAY_SIZE(arc_pmu_ev_hw_map); i++) {
314 if (arc_pmu_ev_hw_map[i] &&
315 !strcmp(arc_pmu_ev_hw_map[i], cc_name.str) &&
316 strlen(arc_pmu_ev_hw_map[i])) {
317 pr_debug("mapping perf event %2d to h/w event \'%8s\' (idx %d)\n",
318 i, cc_name.str, j);
319 arc_pmu->ev_hw_idx[i] = j;
324 arc_pmu->pmu = (struct pmu) {
325 .pmu_enable = arc_pmu_enable,
326 .pmu_disable = arc_pmu_disable,
327 .event_init = arc_pmu_event_init,
328 .add = arc_pmu_add,
329 .del = arc_pmu_del,
330 .start = arc_pmu_start,
331 .stop = arc_pmu_stop,
332 .read = arc_pmu_read,
335 /* ARC 700 PMU does not support sampling events */
336 arc_pmu->pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
338 return perf_pmu_register(&arc_pmu->pmu, pdev->name, PERF_TYPE_RAW);
341 #ifdef CONFIG_OF
342 static const struct of_device_id arc_pmu_match[] = {
343 { .compatible = "snps,arc700-pct" },
346 MODULE_DEVICE_TABLE(of, arc_pmu_match);
347 #endif
349 static struct platform_driver arc_pmu_driver = {
350 .driver = {
351 .name = "arc700-pct",
352 .of_match_table = of_match_ptr(arc_pmu_match),
354 .probe = arc_pmu_device_probe,
357 module_platform_driver(arc_pmu_driver);
359 MODULE_LICENSE("GPL");
360 MODULE_AUTHOR("Mischa Jonker <mjonker@synopsys.com>");
361 MODULE_DESCRIPTION("ARC PMU driver");