blob: 6a76ac76fb8bb01484084a7e1df507ff765e66c7 [file] [log] [blame]
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001/*
2 * CCI cache coherent interconnect driver
3 *
4 * Copyright (C) 2013 ARM Ltd.
5 * Author: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
12 * kind, whether express or implied; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#include <linux/arm-cci.h>
18#include <linux/io.h>
Mark Rutlandc6f85cb2014-06-30 12:20:21 +010019#include <linux/interrupt.h>
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +010020#include <linux/module.h>
21#include <linux/of_address.h>
Punit Agrawalb91c8f22013-08-22 14:41:51 +010022#include <linux/of_irq.h>
23#include <linux/of_platform.h>
Mark Rutlandc6f85cb2014-06-30 12:20:21 +010024#include <linux/perf_event.h>
Punit Agrawalb91c8f22013-08-22 14:41:51 +010025#include <linux/platform_device.h>
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +010026#include <linux/slab.h>
Punit Agrawalb91c8f22013-08-22 14:41:51 +010027#include <linux/spinlock.h>
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +010028
29#include <asm/cacheflush.h>
30#include <asm/smp_plat.h>
31
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000032static void __iomem *cci_ctrl_base;
33static unsigned long cci_ctrl_phys;
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +010034
Suzuki K. Pouloseee8e5d52015-03-18 12:24:41 +000035#ifdef CONFIG_ARM_CCI400_PORT_CTRL
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +010036struct cci_nb_ports {
37 unsigned int nb_ace;
38 unsigned int nb_ace_lite;
39};
40
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000041static const struct cci_nb_ports cci400_ports = {
42 .nb_ace = 2,
43 .nb_ace_lite = 3
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +010044};
45
Suzuki K. Pouloseee8e5d52015-03-18 12:24:41 +000046#define CCI400_PORTS_DATA (&cci400_ports)
47#else
48#define CCI400_PORTS_DATA (NULL)
49#endif
50
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000051static const struct of_device_id arm_cci_matches[] = {
Suzuki K. Pouloseee8e5d52015-03-18 12:24:41 +000052#ifdef CONFIG_ARM_CCI400_COMMON
53 {.compatible = "arm,cci-400", .data = CCI400_PORTS_DATA },
54#endif
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +010055#ifdef CONFIG_ARM_CCI500_PMU
56 { .compatible = "arm,cci-500", },
57#endif
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000058 {},
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +010059};
60
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +010061#ifdef CONFIG_ARM_CCI_PMU
Punit Agrawalb91c8f22013-08-22 14:41:51 +010062
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +010063#define DRIVER_NAME "ARM-CCI"
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000064#define DRIVER_NAME_PMU DRIVER_NAME " PMU"
65
Punit Agrawalb91c8f22013-08-22 14:41:51 +010066#define CCI_PMCR 0x0100
67#define CCI_PID2 0x0fe8
68
69#define CCI_PMCR_CEN 0x00000001
70#define CCI_PMCR_NCNT_MASK 0x0000f800
71#define CCI_PMCR_NCNT_SHIFT 11
72
73#define CCI_PID2_REV_MASK 0xf0
74#define CCI_PID2_REV_SHIFT 4
75
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000076#define CCI_PMU_EVT_SEL 0x000
77#define CCI_PMU_CNTR 0x004
78#define CCI_PMU_CNTR_CTRL 0x008
79#define CCI_PMU_OVRFLW 0x00c
80
81#define CCI_PMU_OVRFLW_FLAG 1
82
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +010083#define CCI_PMU_CNTR_SIZE(model) ((model)->cntr_size)
84#define CCI_PMU_CNTR_BASE(model, idx) ((idx) * CCI_PMU_CNTR_SIZE(model))
85#define CCI_PMU_CNTR_MASK ((1ULL << 32) -1)
86#define CCI_PMU_CNTR_LAST(cci_pmu) (cci_pmu->num_cntrs - 1)
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000087
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +010088#define CCI_PMU_MAX_HW_CNTRS(model) \
89 ((model)->num_hw_cntrs + (model)->fixed_hw_cntrs)
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +000090
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +000091/* Types of interfaces that can generate events */
92enum {
93 CCI_IF_SLAVE,
94 CCI_IF_MASTER,
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +010095#ifdef CONFIG_ARM_CCI500_PMU
96 CCI_IF_GLOBAL,
97#endif
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +000098 CCI_IF_MAX,
99};
100
101struct event_range {
102 u32 min;
103 u32 max;
104};
105
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000106struct cci_pmu_hw_events {
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100107 struct perf_event **events;
108 unsigned long *used_mask;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000109 raw_spinlock_t pmu_lock;
110};
111
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100112struct cci_pmu;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100113/*
114 * struct cci_pmu_model:
115 * @fixed_hw_cntrs - Number of fixed event counters
116 * @num_hw_cntrs - Maximum number of programmable event counters
117 * @cntr_size - Size of an event counter mapping
118 */
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000119struct cci_pmu_model {
120 char *name;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100121 u32 fixed_hw_cntrs;
122 u32 num_hw_cntrs;
123 u32 cntr_size;
Mark Rutland5e442eb2016-02-23 10:49:43 +0000124 struct attribute **format_attrs;
125 struct attribute **event_attrs;
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000126 struct event_range event_ranges[CCI_IF_MAX];
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100127 int (*validate_hw_event)(struct cci_pmu *, unsigned long);
128 int (*get_event_idx)(struct cci_pmu *, struct cci_pmu_hw_events *, unsigned long);
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000129};
130
131static struct cci_pmu_model cci_pmu_models[];
132
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000133struct cci_pmu {
134 void __iomem *base;
135 struct pmu pmu;
136 int nr_irqs;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100137 int *irqs;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000138 unsigned long active_irqs;
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000139 const struct cci_pmu_model *model;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000140 struct cci_pmu_hw_events hw_events;
141 struct platform_device *plat_device;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100142 int num_cntrs;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000143 atomic_t active_events;
144 struct mutex reserve_mutex;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100145 struct notifier_block cpu_nb;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000146 cpumask_t cpus;
147};
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000148
149#define to_cci_pmu(c) (container_of(c, struct cci_pmu, pmu))
150
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100151enum cci_models {
152#ifdef CONFIG_ARM_CCI400_PMU
153 CCI400_R0,
154 CCI400_R1,
155#endif
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +0100156#ifdef CONFIG_ARM_CCI500_PMU
157 CCI500_R0,
158#endif
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100159 CCI_MODEL_MAX
160};
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100161
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100162static ssize_t cci_pmu_format_show(struct device *dev,
163 struct device_attribute *attr, char *buf);
164static ssize_t cci_pmu_event_show(struct device *dev,
165 struct device_attribute *attr, char *buf);
166
Mark Rutland5e442eb2016-02-23 10:49:43 +0000167#define CCI_EXT_ATTR_ENTRY(_name, _func, _config) \
168 &((struct dev_ext_attribute[]) { \
169 { __ATTR(_name, S_IRUGO, _func, NULL), (void *)_config } \
170 })[0].attr.attr
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100171
172#define CCI_FORMAT_EXT_ATTR_ENTRY(_name, _config) \
173 CCI_EXT_ATTR_ENTRY(_name, cci_pmu_format_show, (char *)_config)
174#define CCI_EVENT_EXT_ATTR_ENTRY(_name, _config) \
175 CCI_EXT_ATTR_ENTRY(_name, cci_pmu_event_show, (unsigned long)_config)
176
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100177/* CCI400 PMU Specific definitions */
178
179#ifdef CONFIG_ARM_CCI400_PMU
180
181/* Port ids */
182#define CCI400_PORT_S0 0
183#define CCI400_PORT_S1 1
184#define CCI400_PORT_S2 2
185#define CCI400_PORT_S3 3
186#define CCI400_PORT_S4 4
187#define CCI400_PORT_M0 5
188#define CCI400_PORT_M1 6
189#define CCI400_PORT_M2 7
190
191#define CCI400_R1_PX 5
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100192
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100193/*
194 * Instead of an event id to monitor CCI cycles, a dedicated counter is
195 * provided. Use 0xff to represent CCI cycles and hope that no future revisions
196 * make use of this event in hardware.
197 */
198enum cci400_perf_events {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100199 CCI400_PMU_CYCLES = 0xff
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100200};
201
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100202#define CCI400_PMU_CYCLE_CNTR_IDX 0
203#define CCI400_PMU_CNTR0_IDX 1
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100204
205/*
206 * CCI PMU event id is an 8-bit value made of two parts - bits 7:5 for one of 8
207 * ports and bits 4:0 are event codes. There are different event codes
208 * associated with each port type.
209 *
210 * Additionally, the range of events associated with the port types changed
211 * between Rev0 and Rev1.
212 *
213 * The constants below define the range of valid codes for each port type for
214 * the different revisions and are used to validate the event to be monitored.
215 */
216
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100217#define CCI400_PMU_EVENT_MASK 0xffUL
218#define CCI400_PMU_EVENT_SOURCE_SHIFT 5
219#define CCI400_PMU_EVENT_SOURCE_MASK 0x7
220#define CCI400_PMU_EVENT_CODE_SHIFT 0
221#define CCI400_PMU_EVENT_CODE_MASK 0x1f
222#define CCI400_PMU_EVENT_SOURCE(event) \
223 ((event >> CCI400_PMU_EVENT_SOURCE_SHIFT) & \
224 CCI400_PMU_EVENT_SOURCE_MASK)
225#define CCI400_PMU_EVENT_CODE(event) \
226 ((event >> CCI400_PMU_EVENT_CODE_SHIFT) & CCI400_PMU_EVENT_CODE_MASK)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100227
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100228#define CCI400_R0_SLAVE_PORT_MIN_EV 0x00
229#define CCI400_R0_SLAVE_PORT_MAX_EV 0x13
230#define CCI400_R0_MASTER_PORT_MIN_EV 0x14
231#define CCI400_R0_MASTER_PORT_MAX_EV 0x1a
232
233#define CCI400_R1_SLAVE_PORT_MIN_EV 0x00
234#define CCI400_R1_SLAVE_PORT_MAX_EV 0x14
235#define CCI400_R1_MASTER_PORT_MIN_EV 0x00
236#define CCI400_R1_MASTER_PORT_MAX_EV 0x11
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100237
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100238#define CCI400_CYCLE_EVENT_EXT_ATTR_ENTRY(_name, _config) \
239 CCI_EXT_ATTR_ENTRY(_name, cci400_pmu_cycle_event_show, \
240 (unsigned long)_config)
241
242static ssize_t cci400_pmu_cycle_event_show(struct device *dev,
243 struct device_attribute *attr, char *buf);
244
Mark Rutland5e442eb2016-02-23 10:49:43 +0000245static struct attribute *cci400_pmu_format_attrs[] = {
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100246 CCI_FORMAT_EXT_ATTR_ENTRY(event, "config:0-4"),
247 CCI_FORMAT_EXT_ATTR_ENTRY(source, "config:5-7"),
Mark Rutland5e442eb2016-02-23 10:49:43 +0000248 NULL
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100249};
250
Mark Rutland5e442eb2016-02-23 10:49:43 +0000251static struct attribute *cci400_r0_pmu_event_attrs[] = {
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100252 /* Slave events */
253 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_any, 0x0),
254 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_device, 0x01),
255 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_normal_or_nonshareable, 0x2),
256 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_inner_or_outershareable, 0x3),
257 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_cache_maintenance, 0x4),
258 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_mem_barrier, 0x5),
259 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_sync_barrier, 0x6),
260 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_dvm_msg, 0x7),
261 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_dvm_msg_sync, 0x8),
262 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_stall_tt_full, 0x9),
263 CCI_EVENT_EXT_ATTR_ENTRY(si_r_data_last_hs_snoop, 0xA),
264 CCI_EVENT_EXT_ATTR_ENTRY(si_r_data_stall_rvalids_h_rready_l, 0xB),
265 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_any, 0xC),
266 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_device, 0xD),
267 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_normal_or_nonshareable, 0xE),
268 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_inner_or_outershare_wback_wclean, 0xF),
269 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_write_unique, 0x10),
270 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_write_line_unique, 0x11),
271 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_evict, 0x12),
272 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_stall_tt_full, 0x13),
273 /* Master events */
274 CCI_EVENT_EXT_ATTR_ENTRY(mi_retry_speculative_fetch, 0x14),
275 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_addr_hazard, 0x15),
276 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_id_hazard, 0x16),
277 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_tt_full, 0x17),
278 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_barrier_hazard, 0x18),
279 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_barrier_hazard, 0x19),
280 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_tt_full, 0x1A),
281 /* Special event for cycles counter */
282 CCI400_CYCLE_EVENT_EXT_ATTR_ENTRY(cycles, 0xff),
Mark Rutland5e442eb2016-02-23 10:49:43 +0000283 NULL
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100284};
285
Mark Rutland5e442eb2016-02-23 10:49:43 +0000286static struct attribute *cci400_r1_pmu_event_attrs[] = {
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100287 /* Slave events */
288 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_any, 0x0),
289 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_device, 0x01),
290 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_normal_or_nonshareable, 0x2),
291 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_inner_or_outershareable, 0x3),
292 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_cache_maintenance, 0x4),
293 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_mem_barrier, 0x5),
294 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_sync_barrier, 0x6),
295 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_dvm_msg, 0x7),
296 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_dvm_msg_sync, 0x8),
297 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_stall_tt_full, 0x9),
298 CCI_EVENT_EXT_ATTR_ENTRY(si_r_data_last_hs_snoop, 0xA),
299 CCI_EVENT_EXT_ATTR_ENTRY(si_r_data_stall_rvalids_h_rready_l, 0xB),
300 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_any, 0xC),
301 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_device, 0xD),
302 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_normal_or_nonshareable, 0xE),
303 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_inner_or_outershare_wback_wclean, 0xF),
304 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_write_unique, 0x10),
305 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_write_line_unique, 0x11),
306 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_evict, 0x12),
307 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_stall_tt_full, 0x13),
308 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_stall_slave_id_hazard, 0x14),
309 /* Master events */
310 CCI_EVENT_EXT_ATTR_ENTRY(mi_retry_speculative_fetch, 0x0),
311 CCI_EVENT_EXT_ATTR_ENTRY(mi_stall_cycle_addr_hazard, 0x1),
312 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_master_id_hazard, 0x2),
313 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_hi_prio_rtq_full, 0x3),
314 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_barrier_hazard, 0x4),
315 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_barrier_hazard, 0x5),
316 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_wtq_full, 0x6),
317 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_low_prio_rtq_full, 0x7),
318 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_mid_prio_rtq_full, 0x8),
319 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_qvn_vn0, 0x9),
320 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_qvn_vn1, 0xA),
321 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_qvn_vn2, 0xB),
322 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall_qvn_vn3, 0xC),
323 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_qvn_vn0, 0xD),
324 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_qvn_vn1, 0xE),
325 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_qvn_vn2, 0xF),
326 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall_qvn_vn3, 0x10),
327 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_unique_or_line_unique_addr_hazard, 0x11),
328 /* Special event for cycles counter */
329 CCI400_CYCLE_EVENT_EXT_ATTR_ENTRY(cycles, 0xff),
Mark Rutland5e442eb2016-02-23 10:49:43 +0000330 NULL
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100331};
332
333static ssize_t cci400_pmu_cycle_event_show(struct device *dev,
334 struct device_attribute *attr, char *buf)
335{
336 struct dev_ext_attribute *eattr = container_of(attr,
337 struct dev_ext_attribute, attr);
338 return snprintf(buf, PAGE_SIZE, "config=0x%lx\n", (unsigned long)eattr->var);
339}
340
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100341static int cci400_get_event_idx(struct cci_pmu *cci_pmu,
342 struct cci_pmu_hw_events *hw,
343 unsigned long cci_event)
344{
345 int idx;
346
347 /* cycles event idx is fixed */
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100348 if (cci_event == CCI400_PMU_CYCLES) {
349 if (test_and_set_bit(CCI400_PMU_CYCLE_CNTR_IDX, hw->used_mask))
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100350 return -EAGAIN;
351
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100352 return CCI400_PMU_CYCLE_CNTR_IDX;
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100353 }
354
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100355 for (idx = CCI400_PMU_CNTR0_IDX; idx <= CCI_PMU_CNTR_LAST(cci_pmu); ++idx)
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100356 if (!test_and_set_bit(idx, hw->used_mask))
357 return idx;
358
359 /* No counters available */
360 return -EAGAIN;
361}
362
363static int cci400_validate_hw_event(struct cci_pmu *cci_pmu, unsigned long hw_event)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100364{
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100365 u8 ev_source = CCI400_PMU_EVENT_SOURCE(hw_event);
366 u8 ev_code = CCI400_PMU_EVENT_CODE(hw_event);
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000367 int if_type;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100368
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100369 if (hw_event & ~CCI400_PMU_EVENT_MASK)
Suzuki K. Poulose874c5712015-03-18 12:24:42 +0000370 return -ENOENT;
371
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100372 if (hw_event == CCI400_PMU_CYCLES)
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100373 return hw_event;
374
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100375 switch (ev_source) {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100376 case CCI400_PORT_S0:
377 case CCI400_PORT_S1:
378 case CCI400_PORT_S2:
379 case CCI400_PORT_S3:
380 case CCI400_PORT_S4:
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100381 /* Slave Interface */
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000382 if_type = CCI_IF_SLAVE;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100383 break;
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100384 case CCI400_PORT_M0:
385 case CCI400_PORT_M1:
386 case CCI400_PORT_M2:
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100387 /* Master Interface */
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000388 if_type = CCI_IF_MASTER;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100389 break;
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000390 default:
391 return -ENOENT;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100392 }
393
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100394 if (ev_code >= cci_pmu->model->event_ranges[if_type].min &&
395 ev_code <= cci_pmu->model->event_ranges[if_type].max)
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000396 return hw_event;
397
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100398 return -ENOENT;
399}
400
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100401static int probe_cci400_revision(void)
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000402{
403 int rev;
404 rev = readl_relaxed(cci_ctrl_base + CCI_PID2) & CCI_PID2_REV_MASK;
405 rev >>= CCI_PID2_REV_SHIFT;
406
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100407 if (rev < CCI400_R1_PX)
408 return CCI400_R0;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000409 else
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100410 return CCI400_R1;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000411}
412
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +0000413static const struct cci_pmu_model *probe_cci_model(struct platform_device *pdev)
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000414{
Suzuki K. Poulose772742a2015-03-18 12:24:40 +0000415 if (platform_has_secure_cci_access())
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100416 return &cci_pmu_models[probe_cci400_revision()];
Suzuki K. Poulose772742a2015-03-18 12:24:40 +0000417 return NULL;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000418}
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +0100419#else /* !CONFIG_ARM_CCI400_PMU */
420static inline struct cci_pmu_model *probe_cci_model(struct platform_device *pdev)
421{
422 return NULL;
423}
424#endif /* CONFIG_ARM_CCI400_PMU */
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +0000425
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +0100426#ifdef CONFIG_ARM_CCI500_PMU
427
428/*
429 * CCI500 provides 8 independent event counters that can count
430 * any of the events available.
431 *
432 * CCI500 PMU event id is an 9-bit value made of two parts.
433 * bits [8:5] - Source for the event
434 * 0x0-0x6 - Slave interfaces
435 * 0x8-0xD - Master interfaces
436 * 0xf - Global Events
437 * 0x7,0xe - Reserved
438 *
439 * bits [4:0] - Event code (specific to type of interface)
440 */
441
442/* Port ids */
443#define CCI500_PORT_S0 0x0
444#define CCI500_PORT_S1 0x1
445#define CCI500_PORT_S2 0x2
446#define CCI500_PORT_S3 0x3
447#define CCI500_PORT_S4 0x4
448#define CCI500_PORT_S5 0x5
449#define CCI500_PORT_S6 0x6
450
451#define CCI500_PORT_M0 0x8
452#define CCI500_PORT_M1 0x9
453#define CCI500_PORT_M2 0xa
454#define CCI500_PORT_M3 0xb
455#define CCI500_PORT_M4 0xc
456#define CCI500_PORT_M5 0xd
457
458#define CCI500_PORT_GLOBAL 0xf
459
460#define CCI500_PMU_EVENT_MASK 0x1ffUL
461#define CCI500_PMU_EVENT_SOURCE_SHIFT 0x5
462#define CCI500_PMU_EVENT_SOURCE_MASK 0xf
463#define CCI500_PMU_EVENT_CODE_SHIFT 0x0
464#define CCI500_PMU_EVENT_CODE_MASK 0x1f
465
466#define CCI500_PMU_EVENT_SOURCE(event) \
467 ((event >> CCI500_PMU_EVENT_SOURCE_SHIFT) & CCI500_PMU_EVENT_SOURCE_MASK)
468#define CCI500_PMU_EVENT_CODE(event) \
469 ((event >> CCI500_PMU_EVENT_CODE_SHIFT) & CCI500_PMU_EVENT_CODE_MASK)
470
471#define CCI500_SLAVE_PORT_MIN_EV 0x00
472#define CCI500_SLAVE_PORT_MAX_EV 0x1f
473#define CCI500_MASTER_PORT_MIN_EV 0x00
474#define CCI500_MASTER_PORT_MAX_EV 0x06
475#define CCI500_GLOBAL_PORT_MIN_EV 0x00
476#define CCI500_GLOBAL_PORT_MAX_EV 0x0f
477
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100478
479#define CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(_name, _config) \
480 CCI_EXT_ATTR_ENTRY(_name, cci500_pmu_global_event_show, \
481 (unsigned long) _config)
482
483static ssize_t cci500_pmu_global_event_show(struct device *dev,
484 struct device_attribute *attr, char *buf);
485
Mark Rutland5e442eb2016-02-23 10:49:43 +0000486static struct attribute *cci500_pmu_format_attrs[] = {
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100487 CCI_FORMAT_EXT_ATTR_ENTRY(event, "config:0-4"),
488 CCI_FORMAT_EXT_ATTR_ENTRY(source, "config:5-8"),
Mark Rutland5e442eb2016-02-23 10:49:43 +0000489 NULL,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100490};
491
Mark Rutland5e442eb2016-02-23 10:49:43 +0000492static struct attribute *cci500_pmu_event_attrs[] = {
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100493 /* Slave events */
494 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_arvalid, 0x0),
495 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_dev, 0x1),
496 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_nonshareable, 0x2),
497 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_shareable_non_alloc, 0x3),
498 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_shareable_alloc, 0x4),
499 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_invalidate, 0x5),
500 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_cache_maint, 0x6),
501 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_dvm_msg, 0x7),
502 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_rval, 0x8),
503 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_hs_rlast_snoop, 0x9),
504 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_hs_awalid, 0xA),
505 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_dev, 0xB),
506 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_non_shareable, 0xC),
507 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_share_wb, 0xD),
508 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_share_wlu, 0xE),
509 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_share_wunique, 0xF),
510 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_evict, 0x10),
511 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_wrevict, 0x11),
512 CCI_EVENT_EXT_ATTR_ENTRY(si_w_data_beat, 0x12),
513 CCI_EVENT_EXT_ATTR_ENTRY(si_srq_acvalid, 0x13),
514 CCI_EVENT_EXT_ATTR_ENTRY(si_srq_read, 0x14),
515 CCI_EVENT_EXT_ATTR_ENTRY(si_srq_clean, 0x15),
516 CCI_EVENT_EXT_ATTR_ENTRY(si_srq_data_transfer_low, 0x16),
517 CCI_EVENT_EXT_ATTR_ENTRY(si_rrq_stall_arvalid, 0x17),
518 CCI_EVENT_EXT_ATTR_ENTRY(si_r_data_stall, 0x18),
519 CCI_EVENT_EXT_ATTR_ENTRY(si_wrq_stall, 0x19),
520 CCI_EVENT_EXT_ATTR_ENTRY(si_w_data_stall, 0x1A),
521 CCI_EVENT_EXT_ATTR_ENTRY(si_w_resp_stall, 0x1B),
522 CCI_EVENT_EXT_ATTR_ENTRY(si_srq_stall, 0x1C),
523 CCI_EVENT_EXT_ATTR_ENTRY(si_s_data_stall, 0x1D),
524 CCI_EVENT_EXT_ATTR_ENTRY(si_rq_stall_ot_limit, 0x1E),
525 CCI_EVENT_EXT_ATTR_ENTRY(si_r_stall_arbit, 0x1F),
526
527 /* Master events */
528 CCI_EVENT_EXT_ATTR_ENTRY(mi_r_data_beat_any, 0x0),
529 CCI_EVENT_EXT_ATTR_ENTRY(mi_w_data_beat_any, 0x1),
530 CCI_EVENT_EXT_ATTR_ENTRY(mi_rrq_stall, 0x2),
531 CCI_EVENT_EXT_ATTR_ENTRY(mi_r_data_stall, 0x3),
532 CCI_EVENT_EXT_ATTR_ENTRY(mi_wrq_stall, 0x4),
533 CCI_EVENT_EXT_ATTR_ENTRY(mi_w_data_stall, 0x5),
534 CCI_EVENT_EXT_ATTR_ENTRY(mi_w_resp_stall, 0x6),
535
536 /* Global events */
537 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_filter_bank_0_1, 0x0),
538 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_filter_bank_2_3, 0x1),
539 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_filter_bank_4_5, 0x2),
540 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_filter_bank_6_7, 0x3),
541 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_miss_filter_bank_0_1, 0x4),
542 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_miss_filter_bank_2_3, 0x5),
543 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_miss_filter_bank_4_5, 0x6),
544 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_access_miss_filter_bank_6_7, 0x7),
545 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_back_invalidation, 0x8),
546 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_stall_alloc_busy, 0x9),
547 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_stall_tt_full, 0xA),
548 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_wrq, 0xB),
549 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_cd_hs, 0xC),
550 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_rq_stall_addr_hazard, 0xD),
551 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snopp_rq_stall_tt_full, 0xE),
552 CCI500_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_rq_tzmp1_prot, 0xF),
Mark Rutland5e442eb2016-02-23 10:49:43 +0000553 NULL
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100554};
555
556static ssize_t cci500_pmu_global_event_show(struct device *dev,
557 struct device_attribute *attr, char *buf)
558{
559 struct dev_ext_attribute *eattr = container_of(attr,
560 struct dev_ext_attribute, attr);
561 /* Global events have single fixed source code */
562 return snprintf(buf, PAGE_SIZE, "event=0x%lx,source=0x%x\n",
563 (unsigned long)eattr->var, CCI500_PORT_GLOBAL);
564}
565
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +0100566static int cci500_validate_hw_event(struct cci_pmu *cci_pmu,
567 unsigned long hw_event)
568{
569 u32 ev_source = CCI500_PMU_EVENT_SOURCE(hw_event);
570 u32 ev_code = CCI500_PMU_EVENT_CODE(hw_event);
571 int if_type;
572
573 if (hw_event & ~CCI500_PMU_EVENT_MASK)
574 return -ENOENT;
575
576 switch (ev_source) {
577 case CCI500_PORT_S0:
578 case CCI500_PORT_S1:
579 case CCI500_PORT_S2:
580 case CCI500_PORT_S3:
581 case CCI500_PORT_S4:
582 case CCI500_PORT_S5:
583 case CCI500_PORT_S6:
584 if_type = CCI_IF_SLAVE;
585 break;
586 case CCI500_PORT_M0:
587 case CCI500_PORT_M1:
588 case CCI500_PORT_M2:
589 case CCI500_PORT_M3:
590 case CCI500_PORT_M4:
591 case CCI500_PORT_M5:
592 if_type = CCI_IF_MASTER;
593 break;
594 case CCI500_PORT_GLOBAL:
595 if_type = CCI_IF_GLOBAL;
596 break;
597 default:
598 return -ENOENT;
599 }
600
601 if (ev_code >= cci_pmu->model->event_ranges[if_type].min &&
602 ev_code <= cci_pmu->model->event_ranges[if_type].max)
603 return hw_event;
604
605 return -ENOENT;
606}
607#endif /* CONFIG_ARM_CCI500_PMU */
608
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100609static ssize_t cci_pmu_format_show(struct device *dev,
610 struct device_attribute *attr, char *buf)
611{
612 struct dev_ext_attribute *eattr = container_of(attr,
613 struct dev_ext_attribute, attr);
614 return snprintf(buf, PAGE_SIZE, "%s\n", (char *)eattr->var);
615}
616
617static ssize_t cci_pmu_event_show(struct device *dev,
618 struct device_attribute *attr, char *buf)
619{
620 struct dev_ext_attribute *eattr = container_of(attr,
621 struct dev_ext_attribute, attr);
622 /* source parameter is mandatory for normal PMU events */
623 return snprintf(buf, PAGE_SIZE, "source=?,event=0x%lx\n",
624 (unsigned long)eattr->var);
625}
626
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100627static int pmu_is_valid_counter(struct cci_pmu *cci_pmu, int idx)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100628{
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100629 return 0 <= idx && idx <= CCI_PMU_CNTR_LAST(cci_pmu);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100630}
631
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100632static u32 pmu_read_register(struct cci_pmu *cci_pmu, int idx, unsigned int offset)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100633{
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100634 return readl_relaxed(cci_pmu->base +
635 CCI_PMU_CNTR_BASE(cci_pmu->model, idx) + offset);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100636}
637
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100638static void pmu_write_register(struct cci_pmu *cci_pmu, u32 value,
639 int idx, unsigned int offset)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100640{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100641 return writel_relaxed(value, cci_pmu->base +
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100642 CCI_PMU_CNTR_BASE(cci_pmu->model, idx) + offset);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100643}
644
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100645static void pmu_disable_counter(struct cci_pmu *cci_pmu, int idx)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100646{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100647 pmu_write_register(cci_pmu, 0, idx, CCI_PMU_CNTR_CTRL);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100648}
649
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100650static void pmu_enable_counter(struct cci_pmu *cci_pmu, int idx)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100651{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100652 pmu_write_register(cci_pmu, 1, idx, CCI_PMU_CNTR_CTRL);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100653}
654
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100655static void pmu_set_event(struct cci_pmu *cci_pmu, int idx, unsigned long event)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100656{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100657 pmu_write_register(cci_pmu, event, idx, CCI_PMU_EVT_SEL);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100658}
659
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100660/*
661 * Returns the number of programmable counters actually implemented
662 * by the cci
663 */
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100664static u32 pmu_get_max_counters(void)
665{
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100666 return (readl_relaxed(cci_ctrl_base + CCI_PMCR) &
667 CCI_PMCR_NCNT_MASK) >> CCI_PMCR_NCNT_SHIFT;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100668}
669
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100670static int pmu_get_event_idx(struct cci_pmu_hw_events *hw, struct perf_event *event)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100671{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100672 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100673 unsigned long cci_event = event->hw.config_base;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100674 int idx;
675
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100676 if (cci_pmu->model->get_event_idx)
677 return cci_pmu->model->get_event_idx(cci_pmu, hw, cci_event);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100678
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100679 /* Generic code to find an unused idx from the mask */
680 for(idx = 0; idx <= CCI_PMU_CNTR_LAST(cci_pmu); idx++)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100681 if (!test_and_set_bit(idx, hw->used_mask))
682 return idx;
683
684 /* No counters available */
685 return -EAGAIN;
686}
687
688static int pmu_map_event(struct perf_event *event)
689{
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100690 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100691
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100692 if (event->attr.type < PERF_TYPE_MAX ||
693 !cci_pmu->model->validate_hw_event)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100694 return -ENOENT;
695
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100696 return cci_pmu->model->validate_hw_event(cci_pmu, event->attr.config);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100697}
698
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100699static int pmu_request_irq(struct cci_pmu *cci_pmu, irq_handler_t handler)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100700{
701 int i;
702 struct platform_device *pmu_device = cci_pmu->plat_device;
703
704 if (unlikely(!pmu_device))
705 return -ENODEV;
706
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100707 if (cci_pmu->nr_irqs < 1) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100708 dev_err(&pmu_device->dev, "no irqs for CCI PMUs defined\n");
709 return -ENODEV;
710 }
711
712 /*
713 * Register all available CCI PMU interrupts. In the interrupt handler
714 * we iterate over the counters checking for interrupt source (the
715 * overflowing counter) and clear it.
716 *
717 * This should allow handling of non-unique interrupt for the counters.
718 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100719 for (i = 0; i < cci_pmu->nr_irqs; i++) {
720 int err = request_irq(cci_pmu->irqs[i], handler, IRQF_SHARED,
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100721 "arm-cci-pmu", cci_pmu);
722 if (err) {
723 dev_err(&pmu_device->dev, "unable to request IRQ%d for ARM CCI PMU counters\n",
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100724 cci_pmu->irqs[i]);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100725 return err;
726 }
727
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100728 set_bit(i, &cci_pmu->active_irqs);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100729 }
730
731 return 0;
732}
733
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100734static void pmu_free_irq(struct cci_pmu *cci_pmu)
735{
736 int i;
737
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100738 for (i = 0; i < cci_pmu->nr_irqs; i++) {
739 if (!test_and_clear_bit(i, &cci_pmu->active_irqs))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100740 continue;
741
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100742 free_irq(cci_pmu->irqs[i], cci_pmu);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100743 }
744}
745
746static u32 pmu_read_counter(struct perf_event *event)
747{
748 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
749 struct hw_perf_event *hw_counter = &event->hw;
750 int idx = hw_counter->idx;
751 u32 value;
752
753 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) {
754 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
755 return 0;
756 }
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100757 value = pmu_read_register(cci_pmu, idx, CCI_PMU_CNTR);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100758
759 return value;
760}
761
762static void pmu_write_counter(struct perf_event *event, u32 value)
763{
764 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
765 struct hw_perf_event *hw_counter = &event->hw;
766 int idx = hw_counter->idx;
767
768 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx)))
769 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
770 else
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100771 pmu_write_register(cci_pmu, value, idx, CCI_PMU_CNTR);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100772}
773
Suzuki K Poulosea53eb5c2016-02-23 10:49:45 +0000774static void __maybe_unused
775pmu_write_counters(struct cci_pmu *cci_pmu, unsigned long *mask)
776{
777 int i;
778 struct cci_pmu_hw_events *cci_hw = &cci_pmu->hw_events;
779
780 for_each_set_bit(i, mask, cci_pmu->num_cntrs) {
781 struct perf_event *event = cci_hw->events[i];
782
783 if (WARN_ON(!event))
784 continue;
785 pmu_write_counter(event, local64_read(&event->hw.prev_count));
786 }
787}
788
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100789static u64 pmu_event_update(struct perf_event *event)
790{
791 struct hw_perf_event *hwc = &event->hw;
792 u64 delta, prev_raw_count, new_raw_count;
793
794 do {
795 prev_raw_count = local64_read(&hwc->prev_count);
796 new_raw_count = pmu_read_counter(event);
797 } while (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
798 new_raw_count) != prev_raw_count);
799
800 delta = (new_raw_count - prev_raw_count) & CCI_PMU_CNTR_MASK;
801
802 local64_add(delta, &event->count);
803
804 return new_raw_count;
805}
806
807static void pmu_read(struct perf_event *event)
808{
809 pmu_event_update(event);
810}
811
812void pmu_event_set_period(struct perf_event *event)
813{
814 struct hw_perf_event *hwc = &event->hw;
815 /*
816 * The CCI PMU counters have a period of 2^32. To account for the
817 * possiblity of extreme interrupt latency we program for a period of
818 * half that. Hopefully we can handle the interrupt before another 2^31
819 * events occur and the counter overtakes its previous value.
820 */
821 u64 val = 1ULL << 31;
822 local64_set(&hwc->prev_count, val);
823 pmu_write_counter(event, val);
824}
825
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100826static irqreturn_t pmu_handle_irq(int irq_num, void *dev)
827{
828 unsigned long flags;
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100829 struct cci_pmu *cci_pmu = dev;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100830 struct cci_pmu_hw_events *events = &cci_pmu->hw_events;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100831 int idx, handled = IRQ_NONE;
832
833 raw_spin_lock_irqsave(&events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100834 /*
835 * Iterate over counters and update the corresponding perf events.
836 * This should work regardless of whether we have per-counter overflow
837 * interrupt or a combined overflow interrupt.
838 */
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100839 for (idx = 0; idx <= CCI_PMU_CNTR_LAST(cci_pmu); idx++) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100840 struct perf_event *event = events->events[idx];
841 struct hw_perf_event *hw_counter;
842
843 if (!event)
844 continue;
845
846 hw_counter = &event->hw;
847
848 /* Did this counter overflow? */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100849 if (!(pmu_read_register(cci_pmu, idx, CCI_PMU_OVRFLW) &
Himangi Saraogifc5130d2014-07-30 11:37:35 +0100850 CCI_PMU_OVRFLW_FLAG))
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100851 continue;
852
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100853 pmu_write_register(cci_pmu, CCI_PMU_OVRFLW_FLAG, idx,
854 CCI_PMU_OVRFLW);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100855
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100856 pmu_event_update(event);
857 pmu_event_set_period(event);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100858 handled = IRQ_HANDLED;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100859 }
860 raw_spin_unlock_irqrestore(&events->pmu_lock, flags);
861
862 return IRQ_RETVAL(handled);
863}
864
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100865static int cci_pmu_get_hw(struct cci_pmu *cci_pmu)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100866{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100867 int ret = pmu_request_irq(cci_pmu, pmu_handle_irq);
868 if (ret) {
869 pmu_free_irq(cci_pmu);
870 return ret;
871 }
872 return 0;
873}
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100874
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100875static void cci_pmu_put_hw(struct cci_pmu *cci_pmu)
876{
877 pmu_free_irq(cci_pmu);
878}
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100879
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100880static void hw_perf_event_destroy(struct perf_event *event)
881{
882 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
883 atomic_t *active_events = &cci_pmu->active_events;
884 struct mutex *reserve_mutex = &cci_pmu->reserve_mutex;
885
886 if (atomic_dec_and_mutex_lock(active_events, reserve_mutex)) {
887 cci_pmu_put_hw(cci_pmu);
888 mutex_unlock(reserve_mutex);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100889 }
890}
891
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100892static void cci_pmu_enable(struct pmu *pmu)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100893{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100894 struct cci_pmu *cci_pmu = to_cci_pmu(pmu);
895 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100896 int enabled = bitmap_weight(hw_events->used_mask, cci_pmu->num_cntrs);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100897 unsigned long flags;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100898 u32 val;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100899
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100900 if (!enabled)
901 return;
902
903 raw_spin_lock_irqsave(&hw_events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100904
905 /* Enable all the PMU counters. */
906 val = readl_relaxed(cci_ctrl_base + CCI_PMCR) | CCI_PMCR_CEN;
907 writel(val, cci_ctrl_base + CCI_PMCR);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100908 raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100909
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100910}
911
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100912static void cci_pmu_disable(struct pmu *pmu)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100913{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100914 struct cci_pmu *cci_pmu = to_cci_pmu(pmu);
915 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100916 unsigned long flags;
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100917 u32 val;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100918
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100919 raw_spin_lock_irqsave(&hw_events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100920
921 /* Disable all the PMU counters. */
922 val = readl_relaxed(cci_ctrl_base + CCI_PMCR) & ~CCI_PMCR_CEN;
923 writel(val, cci_ctrl_base + CCI_PMCR);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100924 raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100925}
926
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100927/*
928 * Check if the idx represents a non-programmable counter.
929 * All the fixed event counters are mapped before the programmable
930 * counters.
931 */
932static bool pmu_fixed_hw_idx(struct cci_pmu *cci_pmu, int idx)
933{
934 return (idx >= 0) && (idx < cci_pmu->model->fixed_hw_cntrs);
935}
936
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100937static void cci_pmu_start(struct perf_event *event, int pmu_flags)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100938{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100939 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
940 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
941 struct hw_perf_event *hwc = &event->hw;
942 int idx = hwc->idx;
943 unsigned long flags;
944
945 /*
946 * To handle interrupt latency, we always reprogram the period
947 * regardlesss of PERF_EF_RELOAD.
948 */
949 if (pmu_flags & PERF_EF_RELOAD)
950 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
951
952 hwc->state = 0;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100953
954 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) {
955 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100956 return;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100957 }
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100958
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100959 raw_spin_lock_irqsave(&hw_events->pmu_lock, flags);
960
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100961 /* Configure the counter unless you are counting a fixed event */
962 if (!pmu_fixed_hw_idx(cci_pmu, idx))
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100963 pmu_set_event(cci_pmu, idx, hwc->config_base);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100964
965 pmu_event_set_period(event);
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100966 pmu_enable_counter(cci_pmu, idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100967
968 raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100969}
970
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100971static void cci_pmu_stop(struct perf_event *event, int pmu_flags)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100972{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100973 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
974 struct hw_perf_event *hwc = &event->hw;
975 int idx = hwc->idx;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100976
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100977 if (hwc->state & PERF_HES_STOPPED)
978 return;
979
980 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100981 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100982 return;
983 }
984
985 /*
986 * We always reprogram the counter, so ignore PERF_EF_UPDATE. See
987 * cci_pmu_start()
988 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100989 pmu_disable_counter(cci_pmu, idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100990 pmu_event_update(event);
991 hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100992}
993
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100994static int cci_pmu_add(struct perf_event *event, int flags)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100995{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100996 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
997 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
998 struct hw_perf_event *hwc = &event->hw;
999 int idx;
1000 int err = 0;
1001
1002 perf_pmu_disable(event->pmu);
1003
1004 /* If we don't have a space for the counter then finish early. */
1005 idx = pmu_get_event_idx(hw_events, event);
1006 if (idx < 0) {
1007 err = idx;
1008 goto out;
1009 }
1010
1011 event->hw.idx = idx;
1012 hw_events->events[idx] = event;
1013
1014 hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
1015 if (flags & PERF_EF_START)
1016 cci_pmu_start(event, PERF_EF_RELOAD);
1017
1018 /* Propagate our changes to the userspace mapping. */
1019 perf_event_update_userpage(event);
1020
1021out:
1022 perf_pmu_enable(event->pmu);
1023 return err;
1024}
1025
1026static void cci_pmu_del(struct perf_event *event, int flags)
1027{
1028 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
1029 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
1030 struct hw_perf_event *hwc = &event->hw;
1031 int idx = hwc->idx;
1032
1033 cci_pmu_stop(event, PERF_EF_UPDATE);
1034 hw_events->events[idx] = NULL;
1035 clear_bit(idx, hw_events->used_mask);
1036
1037 perf_event_update_userpage(event);
1038}
1039
1040static int
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001041validate_event(struct pmu *cci_pmu,
1042 struct cci_pmu_hw_events *hw_events,
1043 struct perf_event *event)
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001044{
1045 if (is_software_event(event))
1046 return 1;
1047
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001048 /*
1049 * Reject groups spanning multiple HW PMUs (e.g. CPU + CCI). The
1050 * core perf code won't check that the pmu->ctx == leader->ctx
1051 * until after pmu->event_init(event).
1052 */
1053 if (event->pmu != cci_pmu)
1054 return 0;
1055
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001056 if (event->state < PERF_EVENT_STATE_OFF)
1057 return 1;
1058
1059 if (event->state == PERF_EVENT_STATE_OFF && !event->attr.enable_on_exec)
1060 return 1;
1061
1062 return pmu_get_event_idx(hw_events, event) >= 0;
1063}
1064
1065static int
1066validate_group(struct perf_event *event)
1067{
1068 struct perf_event *sibling, *leader = event->group_leader;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001069 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
1070 unsigned long mask[BITS_TO_LONGS(cci_pmu->num_cntrs)];
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001071 struct cci_pmu_hw_events fake_pmu = {
1072 /*
1073 * Initialise the fake PMU. We only need to populate the
1074 * used_mask for the purposes of validation.
1075 */
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001076 .used_mask = mask,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001077 };
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001078 memset(mask, 0, BITS_TO_LONGS(cci_pmu->num_cntrs) * sizeof(unsigned long));
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001079
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001080 if (!validate_event(event->pmu, &fake_pmu, leader))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001081 return -EINVAL;
1082
1083 list_for_each_entry(sibling, &leader->sibling_list, group_entry) {
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001084 if (!validate_event(event->pmu, &fake_pmu, sibling))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001085 return -EINVAL;
1086 }
1087
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001088 if (!validate_event(event->pmu, &fake_pmu, event))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001089 return -EINVAL;
1090
1091 return 0;
1092}
1093
1094static int
1095__hw_perf_event_init(struct perf_event *event)
1096{
1097 struct hw_perf_event *hwc = &event->hw;
1098 int mapping;
1099
1100 mapping = pmu_map_event(event);
1101
1102 if (mapping < 0) {
1103 pr_debug("event %x:%llx not supported\n", event->attr.type,
1104 event->attr.config);
1105 return mapping;
1106 }
1107
1108 /*
1109 * We don't assign an index until we actually place the event onto
1110 * hardware. Use -1 to signify that we haven't decided where to put it
1111 * yet.
1112 */
1113 hwc->idx = -1;
1114 hwc->config_base = 0;
1115 hwc->config = 0;
1116 hwc->event_base = 0;
1117
1118 /*
1119 * Store the event encoding into the config_base field.
1120 */
1121 hwc->config_base |= (unsigned long)mapping;
1122
1123 /*
1124 * Limit the sample_period to half of the counter width. That way, the
1125 * new counter value is far less likely to overtake the previous one
1126 * unless you have some serious IRQ latency issues.
1127 */
1128 hwc->sample_period = CCI_PMU_CNTR_MASK >> 1;
1129 hwc->last_period = hwc->sample_period;
1130 local64_set(&hwc->period_left, hwc->sample_period);
1131
1132 if (event->group_leader != event) {
1133 if (validate_group(event) != 0)
1134 return -EINVAL;
1135 }
1136
1137 return 0;
1138}
1139
1140static int cci_pmu_event_init(struct perf_event *event)
1141{
1142 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
1143 atomic_t *active_events = &cci_pmu->active_events;
1144 int err = 0;
1145 int cpu;
1146
1147 if (event->attr.type != event->pmu->type)
1148 return -ENOENT;
1149
1150 /* Shared by all CPUs, no meaningful state to sample */
1151 if (is_sampling_event(event) || event->attach_state & PERF_ATTACH_TASK)
1152 return -EOPNOTSUPP;
1153
1154 /* We have no filtering of any kind */
1155 if (event->attr.exclude_user ||
1156 event->attr.exclude_kernel ||
1157 event->attr.exclude_hv ||
1158 event->attr.exclude_idle ||
1159 event->attr.exclude_host ||
1160 event->attr.exclude_guest)
1161 return -EINVAL;
1162
1163 /*
1164 * Following the example set by other "uncore" PMUs, we accept any CPU
1165 * and rewrite its affinity dynamically rather than having perf core
1166 * handle cpu == -1 and pid == -1 for this case.
1167 *
1168 * The perf core will pin online CPUs for the duration of this call and
1169 * the event being installed into its context, so the PMU's CPU can't
1170 * change under our feet.
1171 */
1172 cpu = cpumask_first(&cci_pmu->cpus);
1173 if (event->cpu < 0 || cpu < 0)
1174 return -EINVAL;
1175 event->cpu = cpu;
1176
1177 event->destroy = hw_perf_event_destroy;
1178 if (!atomic_inc_not_zero(active_events)) {
1179 mutex_lock(&cci_pmu->reserve_mutex);
1180 if (atomic_read(active_events) == 0)
1181 err = cci_pmu_get_hw(cci_pmu);
1182 if (!err)
1183 atomic_inc(active_events);
1184 mutex_unlock(&cci_pmu->reserve_mutex);
1185 }
1186 if (err)
1187 return err;
1188
1189 err = __hw_perf_event_init(event);
1190 if (err)
1191 hw_perf_event_destroy(event);
1192
1193 return err;
1194}
1195
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001196static ssize_t pmu_cpumask_attr_show(struct device *dev,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001197 struct device_attribute *attr, char *buf)
1198{
Mark Rutland5e442eb2016-02-23 10:49:43 +00001199 struct pmu *pmu = dev_get_drvdata(dev);
1200 struct cci_pmu *cci_pmu = to_cci_pmu(pmu);
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001201
Tejun Heo660e5ec2015-02-13 14:37:20 -08001202 int n = scnprintf(buf, PAGE_SIZE - 1, "%*pbl",
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001203 cpumask_pr_args(&cci_pmu->cpus));
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001204 buf[n++] = '\n';
1205 buf[n] = '\0';
1206 return n;
1207}
1208
Mark Rutland5e442eb2016-02-23 10:49:43 +00001209static struct device_attribute pmu_cpumask_attr =
1210 __ATTR(cpumask, S_IRUGO, pmu_cpumask_attr_show, NULL);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001211
1212static struct attribute *pmu_attrs[] = {
Mark Rutland5e442eb2016-02-23 10:49:43 +00001213 &pmu_cpumask_attr.attr,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001214 NULL,
1215};
1216
1217static struct attribute_group pmu_attr_group = {
1218 .attrs = pmu_attrs,
1219};
1220
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001221static struct attribute_group pmu_format_attr_group = {
1222 .name = "format",
1223 .attrs = NULL, /* Filled in cci_pmu_init_attrs */
1224};
1225
1226static struct attribute_group pmu_event_attr_group = {
1227 .name = "events",
1228 .attrs = NULL, /* Filled in cci_pmu_init_attrs */
1229};
1230
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001231static const struct attribute_group *pmu_attr_groups[] = {
1232 &pmu_attr_group,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001233 &pmu_format_attr_group,
1234 &pmu_event_attr_group,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001235 NULL
1236};
1237
1238static int cci_pmu_init(struct cci_pmu *cci_pmu, struct platform_device *pdev)
1239{
Mark Rutland5e442eb2016-02-23 10:49:43 +00001240 const struct cci_pmu_model *model = cci_pmu->model;
1241 char *name = model->name;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001242 u32 num_cntrs;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001243
Mark Rutland5e442eb2016-02-23 10:49:43 +00001244 pmu_event_attr_group.attrs = model->event_attrs;
1245 pmu_format_attr_group.attrs = model->format_attrs;
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001246
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001247 cci_pmu->pmu = (struct pmu) {
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001248 .name = cci_pmu->model->name,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001249 .task_ctx_nr = perf_invalid_context,
1250 .pmu_enable = cci_pmu_enable,
1251 .pmu_disable = cci_pmu_disable,
1252 .event_init = cci_pmu_event_init,
1253 .add = cci_pmu_add,
1254 .del = cci_pmu_del,
1255 .start = cci_pmu_start,
1256 .stop = cci_pmu_stop,
1257 .read = pmu_read,
1258 .attr_groups = pmu_attr_groups,
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001259 };
1260
1261 cci_pmu->plat_device = pdev;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001262 num_cntrs = pmu_get_max_counters();
1263 if (num_cntrs > cci_pmu->model->num_hw_cntrs) {
1264 dev_warn(&pdev->dev,
1265 "PMU implements more counters(%d) than supported by"
1266 " the model(%d), truncated.",
1267 num_cntrs, cci_pmu->model->num_hw_cntrs);
1268 num_cntrs = cci_pmu->model->num_hw_cntrs;
1269 }
1270 cci_pmu->num_cntrs = num_cntrs + cci_pmu->model->fixed_hw_cntrs;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001271
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001272 return perf_pmu_register(&cci_pmu->pmu, name, -1);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001273}
1274
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001275static int cci_pmu_cpu_notifier(struct notifier_block *self,
1276 unsigned long action, void *hcpu)
1277{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001278 struct cci_pmu *cci_pmu = container_of(self,
1279 struct cci_pmu, cpu_nb);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001280 unsigned int cpu = (long)hcpu;
1281 unsigned int target;
1282
1283 switch (action & ~CPU_TASKS_FROZEN) {
1284 case CPU_DOWN_PREPARE:
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001285 if (!cpumask_test_and_clear_cpu(cpu, &cci_pmu->cpus))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001286 break;
1287 target = cpumask_any_but(cpu_online_mask, cpu);
Andrzej Hajda0f173802016-02-23 10:49:44 +00001288 if (target >= nr_cpu_ids) // UP, last CPU
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001289 break;
1290 /*
1291 * TODO: migrate context once core races on event->ctx have
1292 * been fixed.
1293 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001294 cpumask_set_cpu(target, &cci_pmu->cpus);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001295 default:
1296 break;
1297 }
1298
1299 return NOTIFY_OK;
1300}
1301
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001302static struct cci_pmu_model cci_pmu_models[] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001303#ifdef CONFIG_ARM_CCI400_PMU
1304 [CCI400_R0] = {
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001305 .name = "CCI_400",
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001306 .fixed_hw_cntrs = 1, /* Cycle counter */
1307 .num_hw_cntrs = 4,
1308 .cntr_size = SZ_4K,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001309 .format_attrs = cci400_pmu_format_attrs,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001310 .event_attrs = cci400_r0_pmu_event_attrs,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001311 .event_ranges = {
1312 [CCI_IF_SLAVE] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001313 CCI400_R0_SLAVE_PORT_MIN_EV,
1314 CCI400_R0_SLAVE_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001315 },
1316 [CCI_IF_MASTER] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001317 CCI400_R0_MASTER_PORT_MIN_EV,
1318 CCI400_R0_MASTER_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001319 },
1320 },
Suzuki K. Poulose31216292015-05-26 10:53:13 +01001321 .validate_hw_event = cci400_validate_hw_event,
1322 .get_event_idx = cci400_get_event_idx,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001323 },
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001324 [CCI400_R1] = {
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001325 .name = "CCI_400_r1",
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001326 .fixed_hw_cntrs = 1, /* Cycle counter */
1327 .num_hw_cntrs = 4,
1328 .cntr_size = SZ_4K,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001329 .format_attrs = cci400_pmu_format_attrs,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001330 .event_attrs = cci400_r1_pmu_event_attrs,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001331 .event_ranges = {
1332 [CCI_IF_SLAVE] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001333 CCI400_R1_SLAVE_PORT_MIN_EV,
1334 CCI400_R1_SLAVE_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001335 },
1336 [CCI_IF_MASTER] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001337 CCI400_R1_MASTER_PORT_MIN_EV,
1338 CCI400_R1_MASTER_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001339 },
1340 },
Suzuki K. Poulose31216292015-05-26 10:53:13 +01001341 .validate_hw_event = cci400_validate_hw_event,
1342 .get_event_idx = cci400_get_event_idx,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001343 },
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001344#endif
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +01001345#ifdef CONFIG_ARM_CCI500_PMU
1346 [CCI500_R0] = {
1347 .name = "CCI_500",
1348 .fixed_hw_cntrs = 0,
1349 .num_hw_cntrs = 8,
1350 .cntr_size = SZ_64K,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001351 .format_attrs = cci500_pmu_format_attrs,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001352 .event_attrs = cci500_pmu_event_attrs,
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +01001353 .event_ranges = {
1354 [CCI_IF_SLAVE] = {
1355 CCI500_SLAVE_PORT_MIN_EV,
1356 CCI500_SLAVE_PORT_MAX_EV,
1357 },
1358 [CCI_IF_MASTER] = {
1359 CCI500_MASTER_PORT_MIN_EV,
1360 CCI500_MASTER_PORT_MAX_EV,
1361 },
1362 [CCI_IF_GLOBAL] = {
1363 CCI500_GLOBAL_PORT_MIN_EV,
1364 CCI500_GLOBAL_PORT_MAX_EV,
1365 },
1366 },
1367 .validate_hw_event = cci500_validate_hw_event,
1368 },
1369#endif
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001370};
1371
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001372static const struct of_device_id arm_cci_pmu_matches[] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001373#ifdef CONFIG_ARM_CCI400_PMU
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001374 {
1375 .compatible = "arm,cci-400-pmu",
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001376 .data = NULL,
1377 },
1378 {
1379 .compatible = "arm,cci-400-pmu,r0",
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001380 .data = &cci_pmu_models[CCI400_R0],
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001381 },
1382 {
1383 .compatible = "arm,cci-400-pmu,r1",
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001384 .data = &cci_pmu_models[CCI400_R1],
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001385 },
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001386#endif
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +01001387#ifdef CONFIG_ARM_CCI500_PMU
1388 {
1389 .compatible = "arm,cci-500-pmu,r0",
1390 .data = &cci_pmu_models[CCI500_R0],
1391 },
1392#endif
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001393 {},
1394};
1395
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001396static inline const struct cci_pmu_model *get_cci_model(struct platform_device *pdev)
1397{
1398 const struct of_device_id *match = of_match_node(arm_cci_pmu_matches,
1399 pdev->dev.of_node);
1400 if (!match)
1401 return NULL;
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001402 if (match->data)
1403 return match->data;
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001404
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001405 dev_warn(&pdev->dev, "DEPRECATED compatible property,"
1406 "requires secure access to CCI registers");
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001407 return probe_cci_model(pdev);
1408}
1409
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001410static bool is_duplicate_irq(int irq, int *irqs, int nr_irqs)
1411{
1412 int i;
1413
1414 for (i = 0; i < nr_irqs; i++)
1415 if (irq == irqs[i])
1416 return true;
1417
1418 return false;
1419}
1420
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001421static struct cci_pmu *cci_pmu_alloc(struct platform_device *pdev)
1422{
1423 struct cci_pmu *cci_pmu;
1424 const struct cci_pmu_model *model;
1425
1426 /*
1427 * All allocations are devm_* hence we don't have to free
1428 * them explicitly on an error, as it would end up in driver
1429 * detach.
1430 */
1431 model = get_cci_model(pdev);
1432 if (!model) {
1433 dev_warn(&pdev->dev, "CCI PMU version not supported\n");
1434 return ERR_PTR(-ENODEV);
1435 }
1436
1437 cci_pmu = devm_kzalloc(&pdev->dev, sizeof(*cci_pmu), GFP_KERNEL);
1438 if (!cci_pmu)
1439 return ERR_PTR(-ENOMEM);
1440
1441 cci_pmu->model = model;
1442 cci_pmu->irqs = devm_kcalloc(&pdev->dev, CCI_PMU_MAX_HW_CNTRS(model),
1443 sizeof(*cci_pmu->irqs), GFP_KERNEL);
1444 if (!cci_pmu->irqs)
1445 return ERR_PTR(-ENOMEM);
1446 cci_pmu->hw_events.events = devm_kcalloc(&pdev->dev,
1447 CCI_PMU_MAX_HW_CNTRS(model),
1448 sizeof(*cci_pmu->hw_events.events),
1449 GFP_KERNEL);
1450 if (!cci_pmu->hw_events.events)
1451 return ERR_PTR(-ENOMEM);
1452 cci_pmu->hw_events.used_mask = devm_kcalloc(&pdev->dev,
1453 BITS_TO_LONGS(CCI_PMU_MAX_HW_CNTRS(model)),
1454 sizeof(*cci_pmu->hw_events.used_mask),
1455 GFP_KERNEL);
1456 if (!cci_pmu->hw_events.used_mask)
1457 return ERR_PTR(-ENOMEM);
1458
1459 return cci_pmu;
1460}
1461
1462
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001463static int cci_pmu_probe(struct platform_device *pdev)
1464{
1465 struct resource *res;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001466 struct cci_pmu *cci_pmu;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001467 int i, ret, irq;
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001468
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001469 cci_pmu = cci_pmu_alloc(pdev);
1470 if (IS_ERR(cci_pmu))
1471 return PTR_ERR(cci_pmu);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001472
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001473 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001474 cci_pmu->base = devm_ioremap_resource(&pdev->dev, res);
1475 if (IS_ERR(cci_pmu->base))
Wei Yongjunfee4f2c2013-09-22 06:04:23 +01001476 return -ENOMEM;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001477
1478 /*
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001479 * CCI PMU has one overflow interrupt per counter; but some may be tied
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001480 * together to a common interrupt.
1481 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001482 cci_pmu->nr_irqs = 0;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001483 for (i = 0; i < CCI_PMU_MAX_HW_CNTRS(cci_pmu->model); i++) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001484 irq = platform_get_irq(pdev, i);
1485 if (irq < 0)
1486 break;
1487
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001488 if (is_duplicate_irq(irq, cci_pmu->irqs, cci_pmu->nr_irqs))
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001489 continue;
1490
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001491 cci_pmu->irqs[cci_pmu->nr_irqs++] = irq;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001492 }
1493
1494 /*
1495 * Ensure that the device tree has as many interrupts as the number
1496 * of counters.
1497 */
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001498 if (i < CCI_PMU_MAX_HW_CNTRS(cci_pmu->model)) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001499 dev_warn(&pdev->dev, "In-correct number of interrupts: %d, should be %d\n",
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001500 i, CCI_PMU_MAX_HW_CNTRS(cci_pmu->model));
Wei Yongjunfee4f2c2013-09-22 06:04:23 +01001501 return -EINVAL;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001502 }
1503
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001504 raw_spin_lock_init(&cci_pmu->hw_events.pmu_lock);
1505 mutex_init(&cci_pmu->reserve_mutex);
1506 atomic_set(&cci_pmu->active_events, 0);
1507 cpumask_set_cpu(smp_processor_id(), &cci_pmu->cpus);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001508
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001509 cci_pmu->cpu_nb = (struct notifier_block) {
1510 .notifier_call = cci_pmu_cpu_notifier,
1511 /*
1512 * to migrate uncore events, our notifier should be executed
1513 * before perf core's notifier.
1514 */
1515 .priority = CPU_PRI_PERF + 1,
1516 };
1517
1518 ret = register_cpu_notifier(&cci_pmu->cpu_nb);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001519 if (ret)
1520 return ret;
1521
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001522 ret = cci_pmu_init(cci_pmu, pdev);
1523 if (ret) {
1524 unregister_cpu_notifier(&cci_pmu->cpu_nb);
Wei Yongjunfee4f2c2013-09-22 06:04:23 +01001525 return ret;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001526 }
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001527
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001528 pr_info("ARM %s PMU driver probed", cci_pmu->model->name);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001529 return 0;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001530}
1531
1532static int cci_platform_probe(struct platform_device *pdev)
1533{
1534 if (!cci_probed())
1535 return -ENODEV;
1536
1537 return of_platform_populate(pdev->dev.of_node, NULL, NULL, &pdev->dev);
1538}
1539
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001540static struct platform_driver cci_pmu_driver = {
1541 .driver = {
1542 .name = DRIVER_NAME_PMU,
1543 .of_match_table = arm_cci_pmu_matches,
1544 },
1545 .probe = cci_pmu_probe,
1546};
1547
1548static struct platform_driver cci_platform_driver = {
1549 .driver = {
1550 .name = DRIVER_NAME,
1551 .of_match_table = arm_cci_matches,
1552 },
1553 .probe = cci_platform_probe,
1554};
1555
1556static int __init cci_platform_init(void)
1557{
1558 int ret;
1559
1560 ret = platform_driver_register(&cci_pmu_driver);
1561 if (ret)
1562 return ret;
1563
1564 return platform_driver_register(&cci_platform_driver);
1565}
1566
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001567#else /* !CONFIG_ARM_CCI_PMU */
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001568
1569static int __init cci_platform_init(void)
1570{
1571 return 0;
1572}
1573
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001574#endif /* CONFIG_ARM_CCI_PMU */
Suzuki K. Pouloseee8e5d52015-03-18 12:24:41 +00001575
1576#ifdef CONFIG_ARM_CCI400_PORT_CTRL
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001577
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001578#define CCI_PORT_CTRL 0x0
1579#define CCI_CTRL_STATUS 0xc
1580
1581#define CCI_ENABLE_SNOOP_REQ 0x1
1582#define CCI_ENABLE_DVM_REQ 0x2
1583#define CCI_ENABLE_REQ (CCI_ENABLE_SNOOP_REQ | CCI_ENABLE_DVM_REQ)
1584
1585enum cci_ace_port_type {
1586 ACE_INVALID_PORT = 0x0,
1587 ACE_PORT,
1588 ACE_LITE_PORT,
1589};
1590
1591struct cci_ace_port {
1592 void __iomem *base;
1593 unsigned long phys;
1594 enum cci_ace_port_type type;
1595 struct device_node *dn;
1596};
1597
1598static struct cci_ace_port *ports;
1599static unsigned int nb_cci_ports;
1600
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001601struct cpu_port {
1602 u64 mpidr;
1603 u32 port;
1604};
Nicolas Pitre62158f82013-05-21 23:34:41 -04001605
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001606/*
1607 * Use the port MSB as valid flag, shift can be made dynamic
1608 * by computing number of bits required for port indexes.
1609 * Code disabling CCI cpu ports runs with D-cache invalidated
1610 * and SCTLR bit clear so data accesses must be kept to a minimum
1611 * to improve performance; for now shift is left static to
1612 * avoid one more data access while disabling the CCI port.
1613 */
1614#define PORT_VALID_SHIFT 31
1615#define PORT_VALID (0x1 << PORT_VALID_SHIFT)
1616
1617static inline void init_cpu_port(struct cpu_port *port, u32 index, u64 mpidr)
1618{
1619 port->port = PORT_VALID | index;
1620 port->mpidr = mpidr;
1621}
1622
1623static inline bool cpu_port_is_valid(struct cpu_port *port)
1624{
1625 return !!(port->port & PORT_VALID);
1626}
1627
1628static inline bool cpu_port_match(struct cpu_port *port, u64 mpidr)
1629{
1630 return port->mpidr == (mpidr & MPIDR_HWID_BITMASK);
1631}
1632
1633static struct cpu_port cpu_port[NR_CPUS];
1634
1635/**
1636 * __cci_ace_get_port - Function to retrieve the port index connected to
1637 * a cpu or device.
1638 *
1639 * @dn: device node of the device to look-up
1640 * @type: port type
1641 *
1642 * Return value:
1643 * - CCI port index if success
1644 * - -ENODEV if failure
1645 */
1646static int __cci_ace_get_port(struct device_node *dn, int type)
1647{
1648 int i;
1649 bool ace_match;
1650 struct device_node *cci_portn;
1651
1652 cci_portn = of_parse_phandle(dn, "cci-control-port", 0);
1653 for (i = 0; i < nb_cci_ports; i++) {
1654 ace_match = ports[i].type == type;
1655 if (ace_match && cci_portn == ports[i].dn)
1656 return i;
1657 }
1658 return -ENODEV;
1659}
1660
1661int cci_ace_get_port(struct device_node *dn)
1662{
1663 return __cci_ace_get_port(dn, ACE_LITE_PORT);
1664}
1665EXPORT_SYMBOL_GPL(cci_ace_get_port);
1666
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001667static void cci_ace_init_ports(void)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001668{
Sudeep KarkadaNagesha78b4d6e2013-06-17 14:51:48 +01001669 int port, cpu;
1670 struct device_node *cpun;
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001671
1672 /*
1673 * Port index look-up speeds up the function disabling ports by CPU,
1674 * since the logical to port index mapping is done once and does
1675 * not change after system boot.
1676 * The stashed index array is initialized for all possible CPUs
1677 * at probe time.
1678 */
Sudeep KarkadaNagesha78b4d6e2013-06-17 14:51:48 +01001679 for_each_possible_cpu(cpu) {
1680 /* too early to use cpu->of_node */
1681 cpun = of_get_cpu_node(cpu, NULL);
1682
1683 if (WARN(!cpun, "Missing cpu device node\n"))
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001684 continue;
1685
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001686 port = __cci_ace_get_port(cpun, ACE_PORT);
1687 if (port < 0)
1688 continue;
1689
1690 init_cpu_port(&cpu_port[cpu], port, cpu_logical_map(cpu));
1691 }
1692
1693 for_each_possible_cpu(cpu) {
1694 WARN(!cpu_port_is_valid(&cpu_port[cpu]),
1695 "CPU %u does not have an associated CCI port\n",
1696 cpu);
1697 }
1698}
1699/*
1700 * Functions to enable/disable a CCI interconnect slave port
1701 *
1702 * They are called by low-level power management code to disable slave
1703 * interfaces snoops and DVM broadcast.
1704 * Since they may execute with cache data allocation disabled and
1705 * after the caches have been cleaned and invalidated the functions provide
1706 * no explicit locking since they may run with D-cache disabled, so normal
1707 * cacheable kernel locks based on ldrex/strex may not work.
1708 * Locking has to be provided by BSP implementations to ensure proper
1709 * operations.
1710 */
1711
1712/**
1713 * cci_port_control() - function to control a CCI port
1714 *
1715 * @port: index of the port to setup
1716 * @enable: if true enables the port, if false disables it
1717 */
1718static void notrace cci_port_control(unsigned int port, bool enable)
1719{
1720 void __iomem *base = ports[port].base;
1721
1722 writel_relaxed(enable ? CCI_ENABLE_REQ : 0, base + CCI_PORT_CTRL);
1723 /*
1724 * This function is called from power down procedures
1725 * and must not execute any instruction that might
1726 * cause the processor to be put in a quiescent state
1727 * (eg wfi). Hence, cpu_relax() can not be added to this
1728 * read loop to optimize power, since it might hide possibly
1729 * disruptive operations.
1730 */
1731 while (readl_relaxed(cci_ctrl_base + CCI_CTRL_STATUS) & 0x1)
1732 ;
1733}
1734
1735/**
1736 * cci_disable_port_by_cpu() - function to disable a CCI port by CPU
1737 * reference
1738 *
1739 * @mpidr: mpidr of the CPU whose CCI port should be disabled
1740 *
1741 * Disabling a CCI port for a CPU implies disabling the CCI port
1742 * controlling that CPU cluster. Code disabling CPU CCI ports
1743 * must make sure that the CPU running the code is the last active CPU
1744 * in the cluster ie all other CPUs are quiescent in a low power state.
1745 *
1746 * Return:
1747 * 0 on success
1748 * -ENODEV on port look-up failure
1749 */
1750int notrace cci_disable_port_by_cpu(u64 mpidr)
1751{
1752 int cpu;
1753 bool is_valid;
1754 for (cpu = 0; cpu < nr_cpu_ids; cpu++) {
1755 is_valid = cpu_port_is_valid(&cpu_port[cpu]);
1756 if (is_valid && cpu_port_match(&cpu_port[cpu], mpidr)) {
1757 cci_port_control(cpu_port[cpu].port, false);
1758 return 0;
1759 }
1760 }
1761 return -ENODEV;
1762}
1763EXPORT_SYMBOL_GPL(cci_disable_port_by_cpu);
1764
1765/**
Nicolas Pitre62158f82013-05-21 23:34:41 -04001766 * cci_enable_port_for_self() - enable a CCI port for calling CPU
1767 *
1768 * Enabling a CCI port for the calling CPU implies enabling the CCI
1769 * port controlling that CPU's cluster. Caller must make sure that the
1770 * CPU running the code is the first active CPU in the cluster and all
1771 * other CPUs are quiescent in a low power state or waiting for this CPU
1772 * to complete the CCI initialization.
1773 *
1774 * Because this is called when the MMU is still off and with no stack,
1775 * the code must be position independent and ideally rely on callee
1776 * clobbered registers only. To achieve this we must code this function
1777 * entirely in assembler.
1778 *
1779 * On success this returns with the proper CCI port enabled. In case of
1780 * any failure this never returns as the inability to enable the CCI is
1781 * fatal and there is no possible recovery at this stage.
1782 */
1783asmlinkage void __naked cci_enable_port_for_self(void)
1784{
1785 asm volatile ("\n"
Arnd Bergmannf4902492013-06-03 15:15:36 +02001786" .arch armv7-a\n"
Nicolas Pitre62158f82013-05-21 23:34:41 -04001787" mrc p15, 0, r0, c0, c0, 5 @ get MPIDR value \n"
1788" and r0, r0, #"__stringify(MPIDR_HWID_BITMASK)" \n"
1789" adr r1, 5f \n"
1790" ldr r2, [r1] \n"
1791" add r1, r1, r2 @ &cpu_port \n"
1792" add ip, r1, %[sizeof_cpu_port] \n"
1793
1794 /* Loop over the cpu_port array looking for a matching MPIDR */
1795"1: ldr r2, [r1, %[offsetof_cpu_port_mpidr_lsb]] \n"
1796" cmp r2, r0 @ compare MPIDR \n"
1797" bne 2f \n"
1798
1799 /* Found a match, now test port validity */
1800" ldr r3, [r1, %[offsetof_cpu_port_port]] \n"
1801" tst r3, #"__stringify(PORT_VALID)" \n"
1802" bne 3f \n"
1803
1804 /* no match, loop with the next cpu_port entry */
1805"2: add r1, r1, %[sizeof_struct_cpu_port] \n"
1806" cmp r1, ip @ done? \n"
1807" blo 1b \n"
1808
1809 /* CCI port not found -- cheaply try to stall this CPU */
1810"cci_port_not_found: \n"
1811" wfi \n"
1812" wfe \n"
1813" b cci_port_not_found \n"
1814
1815 /* Use matched port index to look up the corresponding ports entry */
1816"3: bic r3, r3, #"__stringify(PORT_VALID)" \n"
1817" adr r0, 6f \n"
1818" ldmia r0, {r1, r2} \n"
1819" sub r1, r1, r0 @ virt - phys \n"
1820" ldr r0, [r0, r2] @ *(&ports) \n"
1821" mov r2, %[sizeof_struct_ace_port] \n"
1822" mla r0, r2, r3, r0 @ &ports[index] \n"
1823" sub r0, r0, r1 @ virt_to_phys() \n"
1824
1825 /* Enable the CCI port */
1826" ldr r0, [r0, %[offsetof_port_phys]] \n"
Victor Kamenskyfdb07ae2013-10-15 21:50:34 -07001827" mov r3, %[cci_enable_req]\n"
Nicolas Pitre62158f82013-05-21 23:34:41 -04001828" str r3, [r0, #"__stringify(CCI_PORT_CTRL)"] \n"
1829
1830 /* poll the status reg for completion */
1831" adr r1, 7f \n"
1832" ldr r0, [r1] \n"
1833" ldr r0, [r0, r1] @ cci_ctrl_base \n"
1834"4: ldr r1, [r0, #"__stringify(CCI_CTRL_STATUS)"] \n"
Victor Kamenskyfdb07ae2013-10-15 21:50:34 -07001835" tst r1, %[cci_control_status_bits] \n"
Nicolas Pitre62158f82013-05-21 23:34:41 -04001836" bne 4b \n"
1837
1838" mov r0, #0 \n"
1839" bx lr \n"
1840
1841" .align 2 \n"
1842"5: .word cpu_port - . \n"
1843"6: .word . \n"
1844" .word ports - 6b \n"
1845"7: .word cci_ctrl_phys - . \n"
1846 : :
1847 [sizeof_cpu_port] "i" (sizeof(cpu_port)),
Victor Kamenskyfdb07ae2013-10-15 21:50:34 -07001848 [cci_enable_req] "i" cpu_to_le32(CCI_ENABLE_REQ),
1849 [cci_control_status_bits] "i" cpu_to_le32(1),
Nicolas Pitre62158f82013-05-21 23:34:41 -04001850#ifndef __ARMEB__
1851 [offsetof_cpu_port_mpidr_lsb] "i" (offsetof(struct cpu_port, mpidr)),
1852#else
1853 [offsetof_cpu_port_mpidr_lsb] "i" (offsetof(struct cpu_port, mpidr)+4),
1854#endif
1855 [offsetof_cpu_port_port] "i" (offsetof(struct cpu_port, port)),
1856 [sizeof_struct_cpu_port] "i" (sizeof(struct cpu_port)),
1857 [sizeof_struct_ace_port] "i" (sizeof(struct cci_ace_port)),
1858 [offsetof_port_phys] "i" (offsetof(struct cci_ace_port, phys)) );
1859
1860 unreachable();
1861}
1862
1863/**
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001864 * __cci_control_port_by_device() - function to control a CCI port by device
1865 * reference
1866 *
1867 * @dn: device node pointer of the device whose CCI port should be
1868 * controlled
1869 * @enable: if true enables the port, if false disables it
1870 *
1871 * Return:
1872 * 0 on success
1873 * -ENODEV on port look-up failure
1874 */
1875int notrace __cci_control_port_by_device(struct device_node *dn, bool enable)
1876{
1877 int port;
1878
1879 if (!dn)
1880 return -ENODEV;
1881
1882 port = __cci_ace_get_port(dn, ACE_LITE_PORT);
1883 if (WARN_ONCE(port < 0, "node %s ACE lite port look-up failure\n",
1884 dn->full_name))
1885 return -ENODEV;
1886 cci_port_control(port, enable);
1887 return 0;
1888}
1889EXPORT_SYMBOL_GPL(__cci_control_port_by_device);
1890
1891/**
1892 * __cci_control_port_by_index() - function to control a CCI port by port index
1893 *
1894 * @port: port index previously retrieved with cci_ace_get_port()
1895 * @enable: if true enables the port, if false disables it
1896 *
1897 * Return:
1898 * 0 on success
1899 * -ENODEV on port index out of range
1900 * -EPERM if operation carried out on an ACE PORT
1901 */
1902int notrace __cci_control_port_by_index(u32 port, bool enable)
1903{
1904 if (port >= nb_cci_ports || ports[port].type == ACE_INVALID_PORT)
1905 return -ENODEV;
1906 /*
1907 * CCI control for ports connected to CPUS is extremely fragile
1908 * and must be made to go through a specific and controlled
1909 * interface (ie cci_disable_port_by_cpu(); control by general purpose
1910 * indexing is therefore disabled for ACE ports.
1911 */
1912 if (ports[port].type == ACE_PORT)
1913 return -EPERM;
1914
1915 cci_port_control(port, enable);
1916 return 0;
1917}
1918EXPORT_SYMBOL_GPL(__cci_control_port_by_index);
1919
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001920static const struct of_device_id arm_cci_ctrl_if_matches[] = {
1921 {.compatible = "arm,cci-400-ctrl-if", },
1922 {},
1923};
1924
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001925static int cci_probe_ports(struct device_node *np)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001926{
1927 struct cci_nb_ports const *cci_config;
1928 int ret, i, nb_ace = 0, nb_ace_lite = 0;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001929 struct device_node *cp;
Nicolas Pitre62158f82013-05-21 23:34:41 -04001930 struct resource res;
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001931 const char *match_str;
1932 bool is_ace;
1933
Abhilash Kesavan896ddd62015-01-10 08:41:35 +05301934
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001935 cci_config = of_match_node(arm_cci_matches, np)->data;
1936 if (!cci_config)
1937 return -ENODEV;
1938
1939 nb_cci_ports = cci_config->nb_ace + cci_config->nb_ace_lite;
1940
Lorenzo Pieralisi7c762032014-01-27 10:50:37 +00001941 ports = kcalloc(nb_cci_ports, sizeof(*ports), GFP_KERNEL);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001942 if (!ports)
1943 return -ENOMEM;
1944
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001945 for_each_child_of_node(np, cp) {
1946 if (!of_match_node(arm_cci_ctrl_if_matches, cp))
1947 continue;
1948
1949 i = nb_ace + nb_ace_lite;
1950
1951 if (i >= nb_cci_ports)
1952 break;
1953
1954 if (of_property_read_string(cp, "interface-type",
1955 &match_str)) {
1956 WARN(1, "node %s missing interface-type property\n",
1957 cp->full_name);
1958 continue;
1959 }
1960 is_ace = strcmp(match_str, "ace") == 0;
1961 if (!is_ace && strcmp(match_str, "ace-lite")) {
1962 WARN(1, "node %s containing invalid interface-type property, skipping it\n",
1963 cp->full_name);
1964 continue;
1965 }
1966
Nicolas Pitre62158f82013-05-21 23:34:41 -04001967 ret = of_address_to_resource(cp, 0, &res);
1968 if (!ret) {
1969 ports[i].base = ioremap(res.start, resource_size(&res));
1970 ports[i].phys = res.start;
1971 }
1972 if (ret || !ports[i].base) {
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001973 WARN(1, "unable to ioremap CCI port %d\n", i);
1974 continue;
1975 }
1976
1977 if (is_ace) {
1978 if (WARN_ON(nb_ace >= cci_config->nb_ace))
1979 continue;
1980 ports[i].type = ACE_PORT;
1981 ++nb_ace;
1982 } else {
1983 if (WARN_ON(nb_ace_lite >= cci_config->nb_ace_lite))
1984 continue;
1985 ports[i].type = ACE_LITE_PORT;
1986 ++nb_ace_lite;
1987 }
1988 ports[i].dn = cp;
1989 }
1990
1991 /* initialize a stashed array of ACE ports to speed-up look-up */
1992 cci_ace_init_ports();
1993
1994 /*
1995 * Multi-cluster systems may need this data when non-coherent, during
1996 * cluster power-up/power-down. Make sure it reaches main memory.
1997 */
1998 sync_cache_w(&cci_ctrl_base);
Nicolas Pitre62158f82013-05-21 23:34:41 -04001999 sync_cache_w(&cci_ctrl_phys);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002000 sync_cache_w(&ports);
2001 sync_cache_w(&cpu_port);
2002 __sync_cache_range_w(ports, sizeof(*ports) * nb_cci_ports);
2003 pr_info("ARM CCI driver probed\n");
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002004
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002005 return 0;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002006}
Suzuki K. Pouloseee8e5d52015-03-18 12:24:41 +00002007#else /* !CONFIG_ARM_CCI400_PORT_CTRL */
2008static inline int cci_probe_ports(struct device_node *np)
2009{
2010 return 0;
2011}
2012#endif /* CONFIG_ARM_CCI400_PORT_CTRL */
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002013
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002014static int cci_probe(void)
2015{
2016 int ret;
2017 struct device_node *np;
2018 struct resource res;
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002019
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002020 np = of_find_matching_node(NULL, arm_cci_matches);
2021 if(!np || !of_device_is_available(np))
2022 return -ENODEV;
2023
2024 ret = of_address_to_resource(np, 0, &res);
2025 if (!ret) {
2026 cci_ctrl_base = ioremap(res.start, resource_size(&res));
2027 cci_ctrl_phys = res.start;
2028 }
2029 if (ret || !cci_ctrl_base) {
2030 WARN(1, "unable to ioremap CCI ctrl\n");
2031 return -ENXIO;
2032 }
2033
2034 return cci_probe_ports(np);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002035}
2036
2037static int cci_init_status = -EAGAIN;
2038static DEFINE_MUTEX(cci_probing);
2039
Punit Agrawalb91c8f22013-08-22 14:41:51 +01002040static int cci_init(void)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002041{
2042 if (cci_init_status != -EAGAIN)
2043 return cci_init_status;
2044
2045 mutex_lock(&cci_probing);
2046 if (cci_init_status == -EAGAIN)
2047 cci_init_status = cci_probe();
2048 mutex_unlock(&cci_probing);
2049 return cci_init_status;
2050}
2051
2052/*
2053 * To sort out early init calls ordering a helper function is provided to
2054 * check if the CCI driver has beed initialized. Function check if the driver
2055 * has been initialized, if not it calls the init function that probes
2056 * the driver and updates the return value.
2057 */
Punit Agrawalb91c8f22013-08-22 14:41:51 +01002058bool cci_probed(void)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002059{
2060 return cci_init() == 0;
2061}
2062EXPORT_SYMBOL_GPL(cci_probed);
2063
2064early_initcall(cci_init);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01002065core_initcall(cci_platform_init);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002066MODULE_LICENSE("GPL");
2067MODULE_DESCRIPTION("ARM CCI support");