blob: e42842be8edca73dd649593ba3132df98121d02a [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 Poulosea077c522016-02-23 10:49:46 +0000609/* Should be called with cci_pmu->hw_events->pmu_lock held */
610static void __cci_pmu_enable(void)
611{
612 u32 val;
613
614 /* Enable all the PMU counters. */
615 val = readl_relaxed(cci_ctrl_base + CCI_PMCR) | CCI_PMCR_CEN;
616 writel(val, cci_ctrl_base + CCI_PMCR);
617}
618
619/* Should be called with cci_pmu->hw_events->pmu_lock held */
620static void __cci_pmu_disable(void)
621{
622 u32 val;
623
624 /* Disable all the PMU counters. */
625 val = readl_relaxed(cci_ctrl_base + CCI_PMCR) & ~CCI_PMCR_CEN;
626 writel(val, cci_ctrl_base + CCI_PMCR);
627}
628
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +0100629static ssize_t cci_pmu_format_show(struct device *dev,
630 struct device_attribute *attr, char *buf)
631{
632 struct dev_ext_attribute *eattr = container_of(attr,
633 struct dev_ext_attribute, attr);
634 return snprintf(buf, PAGE_SIZE, "%s\n", (char *)eattr->var);
635}
636
637static ssize_t cci_pmu_event_show(struct device *dev,
638 struct device_attribute *attr, char *buf)
639{
640 struct dev_ext_attribute *eattr = container_of(attr,
641 struct dev_ext_attribute, attr);
642 /* source parameter is mandatory for normal PMU events */
643 return snprintf(buf, PAGE_SIZE, "source=?,event=0x%lx\n",
644 (unsigned long)eattr->var);
645}
646
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100647static int pmu_is_valid_counter(struct cci_pmu *cci_pmu, int idx)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100648{
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100649 return 0 <= idx && idx <= CCI_PMU_CNTR_LAST(cci_pmu);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100650}
651
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100652static u32 pmu_read_register(struct cci_pmu *cci_pmu, int idx, unsigned int offset)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100653{
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100654 return readl_relaxed(cci_pmu->base +
655 CCI_PMU_CNTR_BASE(cci_pmu->model, idx) + offset);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100656}
657
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100658static void pmu_write_register(struct cci_pmu *cci_pmu, u32 value,
659 int idx, unsigned int offset)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100660{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100661 return writel_relaxed(value, cci_pmu->base +
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100662 CCI_PMU_CNTR_BASE(cci_pmu->model, idx) + offset);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100663}
664
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100665static void pmu_disable_counter(struct cci_pmu *cci_pmu, int idx)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100666{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100667 pmu_write_register(cci_pmu, 0, idx, CCI_PMU_CNTR_CTRL);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100668}
669
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100670static void pmu_enable_counter(struct cci_pmu *cci_pmu, int idx)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100671{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100672 pmu_write_register(cci_pmu, 1, idx, CCI_PMU_CNTR_CTRL);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100673}
674
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100675static void pmu_set_event(struct cci_pmu *cci_pmu, int idx, unsigned long event)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100676{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100677 pmu_write_register(cci_pmu, event, idx, CCI_PMU_EVT_SEL);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100678}
679
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100680/*
681 * Returns the number of programmable counters actually implemented
682 * by the cci
683 */
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100684static u32 pmu_get_max_counters(void)
685{
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100686 return (readl_relaxed(cci_ctrl_base + CCI_PMCR) &
687 CCI_PMCR_NCNT_MASK) >> CCI_PMCR_NCNT_SHIFT;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100688}
689
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100690static int pmu_get_event_idx(struct cci_pmu_hw_events *hw, struct perf_event *event)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100691{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100692 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100693 unsigned long cci_event = event->hw.config_base;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100694 int idx;
695
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100696 if (cci_pmu->model->get_event_idx)
697 return cci_pmu->model->get_event_idx(cci_pmu, hw, cci_event);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100698
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100699 /* Generic code to find an unused idx from the mask */
700 for(idx = 0; idx <= CCI_PMU_CNTR_LAST(cci_pmu); idx++)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100701 if (!test_and_set_bit(idx, hw->used_mask))
702 return idx;
703
704 /* No counters available */
705 return -EAGAIN;
706}
707
708static int pmu_map_event(struct perf_event *event)
709{
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100710 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100711
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100712 if (event->attr.type < PERF_TYPE_MAX ||
713 !cci_pmu->model->validate_hw_event)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100714 return -ENOENT;
715
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100716 return cci_pmu->model->validate_hw_event(cci_pmu, event->attr.config);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100717}
718
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100719static int pmu_request_irq(struct cci_pmu *cci_pmu, irq_handler_t handler)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100720{
721 int i;
722 struct platform_device *pmu_device = cci_pmu->plat_device;
723
724 if (unlikely(!pmu_device))
725 return -ENODEV;
726
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100727 if (cci_pmu->nr_irqs < 1) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100728 dev_err(&pmu_device->dev, "no irqs for CCI PMUs defined\n");
729 return -ENODEV;
730 }
731
732 /*
733 * Register all available CCI PMU interrupts. In the interrupt handler
734 * we iterate over the counters checking for interrupt source (the
735 * overflowing counter) and clear it.
736 *
737 * This should allow handling of non-unique interrupt for the counters.
738 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100739 for (i = 0; i < cci_pmu->nr_irqs; i++) {
740 int err = request_irq(cci_pmu->irqs[i], handler, IRQF_SHARED,
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100741 "arm-cci-pmu", cci_pmu);
742 if (err) {
743 dev_err(&pmu_device->dev, "unable to request IRQ%d for ARM CCI PMU counters\n",
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100744 cci_pmu->irqs[i]);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100745 return err;
746 }
747
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100748 set_bit(i, &cci_pmu->active_irqs);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100749 }
750
751 return 0;
752}
753
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100754static void pmu_free_irq(struct cci_pmu *cci_pmu)
755{
756 int i;
757
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100758 for (i = 0; i < cci_pmu->nr_irqs; i++) {
759 if (!test_and_clear_bit(i, &cci_pmu->active_irqs))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100760 continue;
761
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100762 free_irq(cci_pmu->irqs[i], cci_pmu);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100763 }
764}
765
766static u32 pmu_read_counter(struct perf_event *event)
767{
768 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
769 struct hw_perf_event *hw_counter = &event->hw;
770 int idx = hw_counter->idx;
771 u32 value;
772
773 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) {
774 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
775 return 0;
776 }
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100777 value = pmu_read_register(cci_pmu, idx, CCI_PMU_CNTR);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100778
779 return value;
780}
781
782static void pmu_write_counter(struct perf_event *event, u32 value)
783{
784 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
785 struct hw_perf_event *hw_counter = &event->hw;
786 int idx = hw_counter->idx;
787
788 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx)))
789 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
790 else
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100791 pmu_write_register(cci_pmu, value, idx, CCI_PMU_CNTR);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100792}
793
Suzuki K Poulosea53eb5c2016-02-23 10:49:45 +0000794static void __maybe_unused
795pmu_write_counters(struct cci_pmu *cci_pmu, unsigned long *mask)
796{
797 int i;
798 struct cci_pmu_hw_events *cci_hw = &cci_pmu->hw_events;
799
800 for_each_set_bit(i, mask, cci_pmu->num_cntrs) {
801 struct perf_event *event = cci_hw->events[i];
802
803 if (WARN_ON(!event))
804 continue;
805 pmu_write_counter(event, local64_read(&event->hw.prev_count));
806 }
807}
808
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100809static u64 pmu_event_update(struct perf_event *event)
810{
811 struct hw_perf_event *hwc = &event->hw;
812 u64 delta, prev_raw_count, new_raw_count;
813
814 do {
815 prev_raw_count = local64_read(&hwc->prev_count);
816 new_raw_count = pmu_read_counter(event);
817 } while (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
818 new_raw_count) != prev_raw_count);
819
820 delta = (new_raw_count - prev_raw_count) & CCI_PMU_CNTR_MASK;
821
822 local64_add(delta, &event->count);
823
824 return new_raw_count;
825}
826
827static void pmu_read(struct perf_event *event)
828{
829 pmu_event_update(event);
830}
831
832void pmu_event_set_period(struct perf_event *event)
833{
834 struct hw_perf_event *hwc = &event->hw;
835 /*
836 * The CCI PMU counters have a period of 2^32. To account for the
837 * possiblity of extreme interrupt latency we program for a period of
838 * half that. Hopefully we can handle the interrupt before another 2^31
839 * events occur and the counter overtakes its previous value.
840 */
841 u64 val = 1ULL << 31;
842 local64_set(&hwc->prev_count, val);
843 pmu_write_counter(event, val);
844}
845
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100846static irqreturn_t pmu_handle_irq(int irq_num, void *dev)
847{
848 unsigned long flags;
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100849 struct cci_pmu *cci_pmu = dev;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100850 struct cci_pmu_hw_events *events = &cci_pmu->hw_events;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100851 int idx, handled = IRQ_NONE;
852
853 raw_spin_lock_irqsave(&events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100854 /*
855 * Iterate over counters and update the corresponding perf events.
856 * This should work regardless of whether we have per-counter overflow
857 * interrupt or a combined overflow interrupt.
858 */
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100859 for (idx = 0; idx <= CCI_PMU_CNTR_LAST(cci_pmu); idx++) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100860 struct perf_event *event = events->events[idx];
861 struct hw_perf_event *hw_counter;
862
863 if (!event)
864 continue;
865
866 hw_counter = &event->hw;
867
868 /* Did this counter overflow? */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100869 if (!(pmu_read_register(cci_pmu, idx, CCI_PMU_OVRFLW) &
Himangi Saraogifc5130d2014-07-30 11:37:35 +0100870 CCI_PMU_OVRFLW_FLAG))
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100871 continue;
872
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100873 pmu_write_register(cci_pmu, CCI_PMU_OVRFLW_FLAG, idx,
874 CCI_PMU_OVRFLW);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100875
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100876 pmu_event_update(event);
877 pmu_event_set_period(event);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100878 handled = IRQ_HANDLED;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100879 }
880 raw_spin_unlock_irqrestore(&events->pmu_lock, flags);
881
882 return IRQ_RETVAL(handled);
883}
884
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100885static int cci_pmu_get_hw(struct cci_pmu *cci_pmu)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100886{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100887 int ret = pmu_request_irq(cci_pmu, pmu_handle_irq);
888 if (ret) {
889 pmu_free_irq(cci_pmu);
890 return ret;
891 }
892 return 0;
893}
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100894
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100895static void cci_pmu_put_hw(struct cci_pmu *cci_pmu)
896{
897 pmu_free_irq(cci_pmu);
898}
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100899
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100900static void hw_perf_event_destroy(struct perf_event *event)
901{
902 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
903 atomic_t *active_events = &cci_pmu->active_events;
904 struct mutex *reserve_mutex = &cci_pmu->reserve_mutex;
905
906 if (atomic_dec_and_mutex_lock(active_events, reserve_mutex)) {
907 cci_pmu_put_hw(cci_pmu);
908 mutex_unlock(reserve_mutex);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100909 }
910}
911
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100912static void cci_pmu_enable(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;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +0100916 int enabled = bitmap_weight(hw_events->used_mask, cci_pmu->num_cntrs);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100917 unsigned long flags;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100918
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100919 if (!enabled)
920 return;
921
922 raw_spin_lock_irqsave(&hw_events->pmu_lock, flags);
Suzuki K Poulosea077c522016-02-23 10:49:46 +0000923 __cci_pmu_enable();
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
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100926}
927
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100928static void cci_pmu_disable(struct pmu *pmu)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100929{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100930 struct cci_pmu *cci_pmu = to_cci_pmu(pmu);
931 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100932 unsigned long flags;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100933
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100934 raw_spin_lock_irqsave(&hw_events->pmu_lock, flags);
Suzuki K Poulosea077c522016-02-23 10:49:46 +0000935 __cci_pmu_disable();
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100936 raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100937}
938
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100939/*
940 * Check if the idx represents a non-programmable counter.
941 * All the fixed event counters are mapped before the programmable
942 * counters.
943 */
944static bool pmu_fixed_hw_idx(struct cci_pmu *cci_pmu, int idx)
945{
946 return (idx >= 0) && (idx < cci_pmu->model->fixed_hw_cntrs);
947}
948
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100949static void cci_pmu_start(struct perf_event *event, int pmu_flags)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100950{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100951 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
952 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
953 struct hw_perf_event *hwc = &event->hw;
954 int idx = hwc->idx;
955 unsigned long flags;
956
957 /*
958 * To handle interrupt latency, we always reprogram the period
959 * regardlesss of PERF_EF_RELOAD.
960 */
961 if (pmu_flags & PERF_EF_RELOAD)
962 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
963
964 hwc->state = 0;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100965
966 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) {
967 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100968 return;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100969 }
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100970
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100971 raw_spin_lock_irqsave(&hw_events->pmu_lock, flags);
972
Suzuki K. Poulose31216292015-05-26 10:53:13 +0100973 /* Configure the counter unless you are counting a fixed event */
974 if (!pmu_fixed_hw_idx(cci_pmu, idx))
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100975 pmu_set_event(cci_pmu, idx, hwc->config_base);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100976
977 pmu_event_set_period(event);
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +0100978 pmu_enable_counter(cci_pmu, idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100979
980 raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags);
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100981}
982
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100983static void cci_pmu_stop(struct perf_event *event, int pmu_flags)
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100984{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100985 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
986 struct hw_perf_event *hwc = &event->hw;
987 int idx = hwc->idx;
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100988
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100989 if (hwc->state & PERF_HES_STOPPED)
990 return;
991
992 if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +0100993 dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +0100994 return;
995 }
996
997 /*
998 * We always reprogram the counter, so ignore PERF_EF_UPDATE. See
999 * cci_pmu_start()
1000 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001001 pmu_disable_counter(cci_pmu, idx);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001002 pmu_event_update(event);
1003 hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001004}
1005
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001006static int cci_pmu_add(struct perf_event *event, int flags)
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001007{
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001008 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
1009 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
1010 struct hw_perf_event *hwc = &event->hw;
1011 int idx;
1012 int err = 0;
1013
1014 perf_pmu_disable(event->pmu);
1015
1016 /* If we don't have a space for the counter then finish early. */
1017 idx = pmu_get_event_idx(hw_events, event);
1018 if (idx < 0) {
1019 err = idx;
1020 goto out;
1021 }
1022
1023 event->hw.idx = idx;
1024 hw_events->events[idx] = event;
1025
1026 hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
1027 if (flags & PERF_EF_START)
1028 cci_pmu_start(event, PERF_EF_RELOAD);
1029
1030 /* Propagate our changes to the userspace mapping. */
1031 perf_event_update_userpage(event);
1032
1033out:
1034 perf_pmu_enable(event->pmu);
1035 return err;
1036}
1037
1038static void cci_pmu_del(struct perf_event *event, int flags)
1039{
1040 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
1041 struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events;
1042 struct hw_perf_event *hwc = &event->hw;
1043 int idx = hwc->idx;
1044
1045 cci_pmu_stop(event, PERF_EF_UPDATE);
1046 hw_events->events[idx] = NULL;
1047 clear_bit(idx, hw_events->used_mask);
1048
1049 perf_event_update_userpage(event);
1050}
1051
1052static int
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001053validate_event(struct pmu *cci_pmu,
1054 struct cci_pmu_hw_events *hw_events,
1055 struct perf_event *event)
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001056{
1057 if (is_software_event(event))
1058 return 1;
1059
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001060 /*
1061 * Reject groups spanning multiple HW PMUs (e.g. CPU + CCI). The
1062 * core perf code won't check that the pmu->ctx == leader->ctx
1063 * until after pmu->event_init(event).
1064 */
1065 if (event->pmu != cci_pmu)
1066 return 0;
1067
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001068 if (event->state < PERF_EVENT_STATE_OFF)
1069 return 1;
1070
1071 if (event->state == PERF_EVENT_STATE_OFF && !event->attr.enable_on_exec)
1072 return 1;
1073
1074 return pmu_get_event_idx(hw_events, event) >= 0;
1075}
1076
1077static int
1078validate_group(struct perf_event *event)
1079{
1080 struct perf_event *sibling, *leader = event->group_leader;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001081 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
1082 unsigned long mask[BITS_TO_LONGS(cci_pmu->num_cntrs)];
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001083 struct cci_pmu_hw_events fake_pmu = {
1084 /*
1085 * Initialise the fake PMU. We only need to populate the
1086 * used_mask for the purposes of validation.
1087 */
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001088 .used_mask = mask,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001089 };
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001090 memset(mask, 0, BITS_TO_LONGS(cci_pmu->num_cntrs) * sizeof(unsigned long));
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001091
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001092 if (!validate_event(event->pmu, &fake_pmu, leader))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001093 return -EINVAL;
1094
1095 list_for_each_entry(sibling, &leader->sibling_list, group_entry) {
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001096 if (!validate_event(event->pmu, &fake_pmu, sibling))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001097 return -EINVAL;
1098 }
1099
Suzuki K. Pouloseb1862192015-03-17 18:15:00 +00001100 if (!validate_event(event->pmu, &fake_pmu, event))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001101 return -EINVAL;
1102
1103 return 0;
1104}
1105
1106static int
1107__hw_perf_event_init(struct perf_event *event)
1108{
1109 struct hw_perf_event *hwc = &event->hw;
1110 int mapping;
1111
1112 mapping = pmu_map_event(event);
1113
1114 if (mapping < 0) {
1115 pr_debug("event %x:%llx not supported\n", event->attr.type,
1116 event->attr.config);
1117 return mapping;
1118 }
1119
1120 /*
1121 * We don't assign an index until we actually place the event onto
1122 * hardware. Use -1 to signify that we haven't decided where to put it
1123 * yet.
1124 */
1125 hwc->idx = -1;
1126 hwc->config_base = 0;
1127 hwc->config = 0;
1128 hwc->event_base = 0;
1129
1130 /*
1131 * Store the event encoding into the config_base field.
1132 */
1133 hwc->config_base |= (unsigned long)mapping;
1134
1135 /*
1136 * Limit the sample_period to half of the counter width. That way, the
1137 * new counter value is far less likely to overtake the previous one
1138 * unless you have some serious IRQ latency issues.
1139 */
1140 hwc->sample_period = CCI_PMU_CNTR_MASK >> 1;
1141 hwc->last_period = hwc->sample_period;
1142 local64_set(&hwc->period_left, hwc->sample_period);
1143
1144 if (event->group_leader != event) {
1145 if (validate_group(event) != 0)
1146 return -EINVAL;
1147 }
1148
1149 return 0;
1150}
1151
1152static int cci_pmu_event_init(struct perf_event *event)
1153{
1154 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
1155 atomic_t *active_events = &cci_pmu->active_events;
1156 int err = 0;
1157 int cpu;
1158
1159 if (event->attr.type != event->pmu->type)
1160 return -ENOENT;
1161
1162 /* Shared by all CPUs, no meaningful state to sample */
1163 if (is_sampling_event(event) || event->attach_state & PERF_ATTACH_TASK)
1164 return -EOPNOTSUPP;
1165
1166 /* We have no filtering of any kind */
1167 if (event->attr.exclude_user ||
1168 event->attr.exclude_kernel ||
1169 event->attr.exclude_hv ||
1170 event->attr.exclude_idle ||
1171 event->attr.exclude_host ||
1172 event->attr.exclude_guest)
1173 return -EINVAL;
1174
1175 /*
1176 * Following the example set by other "uncore" PMUs, we accept any CPU
1177 * and rewrite its affinity dynamically rather than having perf core
1178 * handle cpu == -1 and pid == -1 for this case.
1179 *
1180 * The perf core will pin online CPUs for the duration of this call and
1181 * the event being installed into its context, so the PMU's CPU can't
1182 * change under our feet.
1183 */
1184 cpu = cpumask_first(&cci_pmu->cpus);
1185 if (event->cpu < 0 || cpu < 0)
1186 return -EINVAL;
1187 event->cpu = cpu;
1188
1189 event->destroy = hw_perf_event_destroy;
1190 if (!atomic_inc_not_zero(active_events)) {
1191 mutex_lock(&cci_pmu->reserve_mutex);
1192 if (atomic_read(active_events) == 0)
1193 err = cci_pmu_get_hw(cci_pmu);
1194 if (!err)
1195 atomic_inc(active_events);
1196 mutex_unlock(&cci_pmu->reserve_mutex);
1197 }
1198 if (err)
1199 return err;
1200
1201 err = __hw_perf_event_init(event);
1202 if (err)
1203 hw_perf_event_destroy(event);
1204
1205 return err;
1206}
1207
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001208static ssize_t pmu_cpumask_attr_show(struct device *dev,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001209 struct device_attribute *attr, char *buf)
1210{
Mark Rutland5e442eb2016-02-23 10:49:43 +00001211 struct pmu *pmu = dev_get_drvdata(dev);
1212 struct cci_pmu *cci_pmu = to_cci_pmu(pmu);
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001213
Tejun Heo660e5ec2015-02-13 14:37:20 -08001214 int n = scnprintf(buf, PAGE_SIZE - 1, "%*pbl",
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001215 cpumask_pr_args(&cci_pmu->cpus));
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001216 buf[n++] = '\n';
1217 buf[n] = '\0';
1218 return n;
1219}
1220
Mark Rutland5e442eb2016-02-23 10:49:43 +00001221static struct device_attribute pmu_cpumask_attr =
1222 __ATTR(cpumask, S_IRUGO, pmu_cpumask_attr_show, NULL);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001223
1224static struct attribute *pmu_attrs[] = {
Mark Rutland5e442eb2016-02-23 10:49:43 +00001225 &pmu_cpumask_attr.attr,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001226 NULL,
1227};
1228
1229static struct attribute_group pmu_attr_group = {
1230 .attrs = pmu_attrs,
1231};
1232
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001233static struct attribute_group pmu_format_attr_group = {
1234 .name = "format",
1235 .attrs = NULL, /* Filled in cci_pmu_init_attrs */
1236};
1237
1238static struct attribute_group pmu_event_attr_group = {
1239 .name = "events",
1240 .attrs = NULL, /* Filled in cci_pmu_init_attrs */
1241};
1242
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001243static const struct attribute_group *pmu_attr_groups[] = {
1244 &pmu_attr_group,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001245 &pmu_format_attr_group,
1246 &pmu_event_attr_group,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001247 NULL
1248};
1249
1250static int cci_pmu_init(struct cci_pmu *cci_pmu, struct platform_device *pdev)
1251{
Mark Rutland5e442eb2016-02-23 10:49:43 +00001252 const struct cci_pmu_model *model = cci_pmu->model;
1253 char *name = model->name;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001254 u32 num_cntrs;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001255
Mark Rutland5e442eb2016-02-23 10:49:43 +00001256 pmu_event_attr_group.attrs = model->event_attrs;
1257 pmu_format_attr_group.attrs = model->format_attrs;
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001258
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001259 cci_pmu->pmu = (struct pmu) {
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001260 .name = cci_pmu->model->name,
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001261 .task_ctx_nr = perf_invalid_context,
1262 .pmu_enable = cci_pmu_enable,
1263 .pmu_disable = cci_pmu_disable,
1264 .event_init = cci_pmu_event_init,
1265 .add = cci_pmu_add,
1266 .del = cci_pmu_del,
1267 .start = cci_pmu_start,
1268 .stop = cci_pmu_stop,
1269 .read = pmu_read,
1270 .attr_groups = pmu_attr_groups,
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001271 };
1272
1273 cci_pmu->plat_device = pdev;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001274 num_cntrs = pmu_get_max_counters();
1275 if (num_cntrs > cci_pmu->model->num_hw_cntrs) {
1276 dev_warn(&pdev->dev,
1277 "PMU implements more counters(%d) than supported by"
1278 " the model(%d), truncated.",
1279 num_cntrs, cci_pmu->model->num_hw_cntrs);
1280 num_cntrs = cci_pmu->model->num_hw_cntrs;
1281 }
1282 cci_pmu->num_cntrs = num_cntrs + cci_pmu->model->fixed_hw_cntrs;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001283
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001284 return perf_pmu_register(&cci_pmu->pmu, name, -1);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001285}
1286
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001287static int cci_pmu_cpu_notifier(struct notifier_block *self,
1288 unsigned long action, void *hcpu)
1289{
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001290 struct cci_pmu *cci_pmu = container_of(self,
1291 struct cci_pmu, cpu_nb);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001292 unsigned int cpu = (long)hcpu;
1293 unsigned int target;
1294
1295 switch (action & ~CPU_TASKS_FROZEN) {
1296 case CPU_DOWN_PREPARE:
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001297 if (!cpumask_test_and_clear_cpu(cpu, &cci_pmu->cpus))
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001298 break;
1299 target = cpumask_any_but(cpu_online_mask, cpu);
Andrzej Hajda0f173802016-02-23 10:49:44 +00001300 if (target >= nr_cpu_ids) // UP, last CPU
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001301 break;
1302 /*
1303 * TODO: migrate context once core races on event->ctx have
1304 * been fixed.
1305 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001306 cpumask_set_cpu(target, &cci_pmu->cpus);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001307 default:
1308 break;
1309 }
1310
1311 return NOTIFY_OK;
1312}
1313
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001314static struct cci_pmu_model cci_pmu_models[] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001315#ifdef CONFIG_ARM_CCI400_PMU
1316 [CCI400_R0] = {
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001317 .name = "CCI_400",
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001318 .fixed_hw_cntrs = 1, /* Cycle counter */
1319 .num_hw_cntrs = 4,
1320 .cntr_size = SZ_4K,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001321 .format_attrs = cci400_pmu_format_attrs,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001322 .event_attrs = cci400_r0_pmu_event_attrs,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001323 .event_ranges = {
1324 [CCI_IF_SLAVE] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001325 CCI400_R0_SLAVE_PORT_MIN_EV,
1326 CCI400_R0_SLAVE_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001327 },
1328 [CCI_IF_MASTER] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001329 CCI400_R0_MASTER_PORT_MIN_EV,
1330 CCI400_R0_MASTER_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001331 },
1332 },
Suzuki K. Poulose31216292015-05-26 10:53:13 +01001333 .validate_hw_event = cci400_validate_hw_event,
1334 .get_event_idx = cci400_get_event_idx,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001335 },
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001336 [CCI400_R1] = {
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001337 .name = "CCI_400_r1",
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001338 .fixed_hw_cntrs = 1, /* Cycle counter */
1339 .num_hw_cntrs = 4,
1340 .cntr_size = SZ_4K,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001341 .format_attrs = cci400_pmu_format_attrs,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001342 .event_attrs = cci400_r1_pmu_event_attrs,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001343 .event_ranges = {
1344 [CCI_IF_SLAVE] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001345 CCI400_R1_SLAVE_PORT_MIN_EV,
1346 CCI400_R1_SLAVE_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001347 },
1348 [CCI_IF_MASTER] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001349 CCI400_R1_MASTER_PORT_MIN_EV,
1350 CCI400_R1_MASTER_PORT_MAX_EV,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001351 },
1352 },
Suzuki K. Poulose31216292015-05-26 10:53:13 +01001353 .validate_hw_event = cci400_validate_hw_event,
1354 .get_event_idx = cci400_get_event_idx,
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001355 },
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001356#endif
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +01001357#ifdef CONFIG_ARM_CCI500_PMU
1358 [CCI500_R0] = {
1359 .name = "CCI_500",
1360 .fixed_hw_cntrs = 0,
1361 .num_hw_cntrs = 8,
1362 .cntr_size = SZ_64K,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001363 .format_attrs = cci500_pmu_format_attrs,
Suzuki K. Poulosee14cfad2015-05-26 10:53:16 +01001364 .event_attrs = cci500_pmu_event_attrs,
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +01001365 .event_ranges = {
1366 [CCI_IF_SLAVE] = {
1367 CCI500_SLAVE_PORT_MIN_EV,
1368 CCI500_SLAVE_PORT_MAX_EV,
1369 },
1370 [CCI_IF_MASTER] = {
1371 CCI500_MASTER_PORT_MIN_EV,
1372 CCI500_MASTER_PORT_MAX_EV,
1373 },
1374 [CCI_IF_GLOBAL] = {
1375 CCI500_GLOBAL_PORT_MIN_EV,
1376 CCI500_GLOBAL_PORT_MAX_EV,
1377 },
1378 },
1379 .validate_hw_event = cci500_validate_hw_event,
1380 },
1381#endif
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001382};
1383
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001384static const struct of_device_id arm_cci_pmu_matches[] = {
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001385#ifdef CONFIG_ARM_CCI400_PMU
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001386 {
1387 .compatible = "arm,cci-400-pmu",
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001388 .data = NULL,
1389 },
1390 {
1391 .compatible = "arm,cci-400-pmu,r0",
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001392 .data = &cci_pmu_models[CCI400_R0],
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001393 },
1394 {
1395 .compatible = "arm,cci-400-pmu,r1",
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001396 .data = &cci_pmu_models[CCI400_R1],
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001397 },
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001398#endif
Suzuki K. Poulosea95791e2015-05-26 10:53:15 +01001399#ifdef CONFIG_ARM_CCI500_PMU
1400 {
1401 .compatible = "arm,cci-500-pmu,r0",
1402 .data = &cci_pmu_models[CCI500_R0],
1403 },
1404#endif
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001405 {},
1406};
1407
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001408static inline const struct cci_pmu_model *get_cci_model(struct platform_device *pdev)
1409{
1410 const struct of_device_id *match = of_match_node(arm_cci_pmu_matches,
1411 pdev->dev.of_node);
1412 if (!match)
1413 return NULL;
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001414 if (match->data)
1415 return match->data;
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001416
Suzuki K. Poulose772742a2015-03-18 12:24:40 +00001417 dev_warn(&pdev->dev, "DEPRECATED compatible property,"
1418 "requires secure access to CCI registers");
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001419 return probe_cci_model(pdev);
1420}
1421
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001422static bool is_duplicate_irq(int irq, int *irqs, int nr_irqs)
1423{
1424 int i;
1425
1426 for (i = 0; i < nr_irqs; i++)
1427 if (irq == irqs[i])
1428 return true;
1429
1430 return false;
1431}
1432
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001433static struct cci_pmu *cci_pmu_alloc(struct platform_device *pdev)
1434{
1435 struct cci_pmu *cci_pmu;
1436 const struct cci_pmu_model *model;
1437
1438 /*
1439 * All allocations are devm_* hence we don't have to free
1440 * them explicitly on an error, as it would end up in driver
1441 * detach.
1442 */
1443 model = get_cci_model(pdev);
1444 if (!model) {
1445 dev_warn(&pdev->dev, "CCI PMU version not supported\n");
1446 return ERR_PTR(-ENODEV);
1447 }
1448
1449 cci_pmu = devm_kzalloc(&pdev->dev, sizeof(*cci_pmu), GFP_KERNEL);
1450 if (!cci_pmu)
1451 return ERR_PTR(-ENOMEM);
1452
1453 cci_pmu->model = model;
1454 cci_pmu->irqs = devm_kcalloc(&pdev->dev, CCI_PMU_MAX_HW_CNTRS(model),
1455 sizeof(*cci_pmu->irqs), GFP_KERNEL);
1456 if (!cci_pmu->irqs)
1457 return ERR_PTR(-ENOMEM);
1458 cci_pmu->hw_events.events = devm_kcalloc(&pdev->dev,
1459 CCI_PMU_MAX_HW_CNTRS(model),
1460 sizeof(*cci_pmu->hw_events.events),
1461 GFP_KERNEL);
1462 if (!cci_pmu->hw_events.events)
1463 return ERR_PTR(-ENOMEM);
1464 cci_pmu->hw_events.used_mask = devm_kcalloc(&pdev->dev,
1465 BITS_TO_LONGS(CCI_PMU_MAX_HW_CNTRS(model)),
1466 sizeof(*cci_pmu->hw_events.used_mask),
1467 GFP_KERNEL);
1468 if (!cci_pmu->hw_events.used_mask)
1469 return ERR_PTR(-ENOMEM);
1470
1471 return cci_pmu;
1472}
1473
1474
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001475static int cci_pmu_probe(struct platform_device *pdev)
1476{
1477 struct resource *res;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001478 struct cci_pmu *cci_pmu;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001479 int i, ret, irq;
Suzuki K. Poulosefc17c832015-03-18 12:24:39 +00001480
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001481 cci_pmu = cci_pmu_alloc(pdev);
1482 if (IS_ERR(cci_pmu))
1483 return PTR_ERR(cci_pmu);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001484
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001485 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001486 cci_pmu->base = devm_ioremap_resource(&pdev->dev, res);
1487 if (IS_ERR(cci_pmu->base))
Wei Yongjunfee4f2c2013-09-22 06:04:23 +01001488 return -ENOMEM;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001489
1490 /*
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001491 * CCI PMU has one overflow interrupt per counter; but some may be tied
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001492 * together to a common interrupt.
1493 */
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001494 cci_pmu->nr_irqs = 0;
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001495 for (i = 0; i < CCI_PMU_MAX_HW_CNTRS(cci_pmu->model); i++) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001496 irq = platform_get_irq(pdev, i);
1497 if (irq < 0)
1498 break;
1499
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001500 if (is_duplicate_irq(irq, cci_pmu->irqs, cci_pmu->nr_irqs))
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001501 continue;
1502
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001503 cci_pmu->irqs[cci_pmu->nr_irqs++] = irq;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001504 }
1505
1506 /*
1507 * Ensure that the device tree has as many interrupts as the number
1508 * of counters.
1509 */
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001510 if (i < CCI_PMU_MAX_HW_CNTRS(cci_pmu->model)) {
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001511 dev_warn(&pdev->dev, "In-correct number of interrupts: %d, should be %d\n",
Suzuki K. Pouloseab5b3162015-05-26 10:53:12 +01001512 i, CCI_PMU_MAX_HW_CNTRS(cci_pmu->model));
Wei Yongjunfee4f2c2013-09-22 06:04:23 +01001513 return -EINVAL;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001514 }
1515
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001516 raw_spin_lock_init(&cci_pmu->hw_events.pmu_lock);
1517 mutex_init(&cci_pmu->reserve_mutex);
1518 atomic_set(&cci_pmu->active_events, 0);
1519 cpumask_set_cpu(smp_processor_id(), &cci_pmu->cpus);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001520
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001521 cci_pmu->cpu_nb = (struct notifier_block) {
1522 .notifier_call = cci_pmu_cpu_notifier,
1523 /*
1524 * to migrate uncore events, our notifier should be executed
1525 * before perf core's notifier.
1526 */
1527 .priority = CPU_PRI_PERF + 1,
1528 };
1529
1530 ret = register_cpu_notifier(&cci_pmu->cpu_nb);
Mark Rutlandc6f85cb2014-06-30 12:20:21 +01001531 if (ret)
1532 return ret;
1533
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001534 ret = cci_pmu_init(cci_pmu, pdev);
1535 if (ret) {
1536 unregister_cpu_notifier(&cci_pmu->cpu_nb);
Wei Yongjunfee4f2c2013-09-22 06:04:23 +01001537 return ret;
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001538 }
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001539
Suzuki K. Poulosea1a076d2015-05-26 10:53:11 +01001540 pr_info("ARM %s PMU driver probed", cci_pmu->model->name);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001541 return 0;
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001542}
1543
1544static int cci_platform_probe(struct platform_device *pdev)
1545{
1546 if (!cci_probed())
1547 return -ENODEV;
1548
1549 return of_platform_populate(pdev->dev.of_node, NULL, NULL, &pdev->dev);
1550}
1551
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001552static struct platform_driver cci_pmu_driver = {
1553 .driver = {
1554 .name = DRIVER_NAME_PMU,
1555 .of_match_table = arm_cci_pmu_matches,
1556 },
1557 .probe = cci_pmu_probe,
1558};
1559
1560static struct platform_driver cci_platform_driver = {
1561 .driver = {
1562 .name = DRIVER_NAME,
1563 .of_match_table = arm_cci_matches,
1564 },
1565 .probe = cci_platform_probe,
1566};
1567
1568static int __init cci_platform_init(void)
1569{
1570 int ret;
1571
1572 ret = platform_driver_register(&cci_pmu_driver);
1573 if (ret)
1574 return ret;
1575
1576 return platform_driver_register(&cci_platform_driver);
1577}
1578
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001579#else /* !CONFIG_ARM_CCI_PMU */
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001580
1581static int __init cci_platform_init(void)
1582{
1583 return 0;
1584}
1585
Suzuki K. Poulosef4d58932015-05-26 10:53:14 +01001586#endif /* CONFIG_ARM_CCI_PMU */
Suzuki K. Pouloseee8e5d52015-03-18 12:24:41 +00001587
1588#ifdef CONFIG_ARM_CCI400_PORT_CTRL
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001589
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001590#define CCI_PORT_CTRL 0x0
1591#define CCI_CTRL_STATUS 0xc
1592
1593#define CCI_ENABLE_SNOOP_REQ 0x1
1594#define CCI_ENABLE_DVM_REQ 0x2
1595#define CCI_ENABLE_REQ (CCI_ENABLE_SNOOP_REQ | CCI_ENABLE_DVM_REQ)
1596
1597enum cci_ace_port_type {
1598 ACE_INVALID_PORT = 0x0,
1599 ACE_PORT,
1600 ACE_LITE_PORT,
1601};
1602
1603struct cci_ace_port {
1604 void __iomem *base;
1605 unsigned long phys;
1606 enum cci_ace_port_type type;
1607 struct device_node *dn;
1608};
1609
1610static struct cci_ace_port *ports;
1611static unsigned int nb_cci_ports;
1612
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001613struct cpu_port {
1614 u64 mpidr;
1615 u32 port;
1616};
Nicolas Pitre62158f82013-05-21 23:34:41 -04001617
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001618/*
1619 * Use the port MSB as valid flag, shift can be made dynamic
1620 * by computing number of bits required for port indexes.
1621 * Code disabling CCI cpu ports runs with D-cache invalidated
1622 * and SCTLR bit clear so data accesses must be kept to a minimum
1623 * to improve performance; for now shift is left static to
1624 * avoid one more data access while disabling the CCI port.
1625 */
1626#define PORT_VALID_SHIFT 31
1627#define PORT_VALID (0x1 << PORT_VALID_SHIFT)
1628
1629static inline void init_cpu_port(struct cpu_port *port, u32 index, u64 mpidr)
1630{
1631 port->port = PORT_VALID | index;
1632 port->mpidr = mpidr;
1633}
1634
1635static inline bool cpu_port_is_valid(struct cpu_port *port)
1636{
1637 return !!(port->port & PORT_VALID);
1638}
1639
1640static inline bool cpu_port_match(struct cpu_port *port, u64 mpidr)
1641{
1642 return port->mpidr == (mpidr & MPIDR_HWID_BITMASK);
1643}
1644
1645static struct cpu_port cpu_port[NR_CPUS];
1646
1647/**
1648 * __cci_ace_get_port - Function to retrieve the port index connected to
1649 * a cpu or device.
1650 *
1651 * @dn: device node of the device to look-up
1652 * @type: port type
1653 *
1654 * Return value:
1655 * - CCI port index if success
1656 * - -ENODEV if failure
1657 */
1658static int __cci_ace_get_port(struct device_node *dn, int type)
1659{
1660 int i;
1661 bool ace_match;
1662 struct device_node *cci_portn;
1663
1664 cci_portn = of_parse_phandle(dn, "cci-control-port", 0);
1665 for (i = 0; i < nb_cci_ports; i++) {
1666 ace_match = ports[i].type == type;
1667 if (ace_match && cci_portn == ports[i].dn)
1668 return i;
1669 }
1670 return -ENODEV;
1671}
1672
1673int cci_ace_get_port(struct device_node *dn)
1674{
1675 return __cci_ace_get_port(dn, ACE_LITE_PORT);
1676}
1677EXPORT_SYMBOL_GPL(cci_ace_get_port);
1678
Punit Agrawalb91c8f22013-08-22 14:41:51 +01001679static void cci_ace_init_ports(void)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001680{
Sudeep KarkadaNagesha78b4d6e2013-06-17 14:51:48 +01001681 int port, cpu;
1682 struct device_node *cpun;
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001683
1684 /*
1685 * Port index look-up speeds up the function disabling ports by CPU,
1686 * since the logical to port index mapping is done once and does
1687 * not change after system boot.
1688 * The stashed index array is initialized for all possible CPUs
1689 * at probe time.
1690 */
Sudeep KarkadaNagesha78b4d6e2013-06-17 14:51:48 +01001691 for_each_possible_cpu(cpu) {
1692 /* too early to use cpu->of_node */
1693 cpun = of_get_cpu_node(cpu, NULL);
1694
1695 if (WARN(!cpun, "Missing cpu device node\n"))
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001696 continue;
1697
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001698 port = __cci_ace_get_port(cpun, ACE_PORT);
1699 if (port < 0)
1700 continue;
1701
1702 init_cpu_port(&cpu_port[cpu], port, cpu_logical_map(cpu));
1703 }
1704
1705 for_each_possible_cpu(cpu) {
1706 WARN(!cpu_port_is_valid(&cpu_port[cpu]),
1707 "CPU %u does not have an associated CCI port\n",
1708 cpu);
1709 }
1710}
1711/*
1712 * Functions to enable/disable a CCI interconnect slave port
1713 *
1714 * They are called by low-level power management code to disable slave
1715 * interfaces snoops and DVM broadcast.
1716 * Since they may execute with cache data allocation disabled and
1717 * after the caches have been cleaned and invalidated the functions provide
1718 * no explicit locking since they may run with D-cache disabled, so normal
1719 * cacheable kernel locks based on ldrex/strex may not work.
1720 * Locking has to be provided by BSP implementations to ensure proper
1721 * operations.
1722 */
1723
1724/**
1725 * cci_port_control() - function to control a CCI port
1726 *
1727 * @port: index of the port to setup
1728 * @enable: if true enables the port, if false disables it
1729 */
1730static void notrace cci_port_control(unsigned int port, bool enable)
1731{
1732 void __iomem *base = ports[port].base;
1733
1734 writel_relaxed(enable ? CCI_ENABLE_REQ : 0, base + CCI_PORT_CTRL);
1735 /*
1736 * This function is called from power down procedures
1737 * and must not execute any instruction that might
1738 * cause the processor to be put in a quiescent state
1739 * (eg wfi). Hence, cpu_relax() can not be added to this
1740 * read loop to optimize power, since it might hide possibly
1741 * disruptive operations.
1742 */
1743 while (readl_relaxed(cci_ctrl_base + CCI_CTRL_STATUS) & 0x1)
1744 ;
1745}
1746
1747/**
1748 * cci_disable_port_by_cpu() - function to disable a CCI port by CPU
1749 * reference
1750 *
1751 * @mpidr: mpidr of the CPU whose CCI port should be disabled
1752 *
1753 * Disabling a CCI port for a CPU implies disabling the CCI port
1754 * controlling that CPU cluster. Code disabling CPU CCI ports
1755 * must make sure that the CPU running the code is the last active CPU
1756 * in the cluster ie all other CPUs are quiescent in a low power state.
1757 *
1758 * Return:
1759 * 0 on success
1760 * -ENODEV on port look-up failure
1761 */
1762int notrace cci_disable_port_by_cpu(u64 mpidr)
1763{
1764 int cpu;
1765 bool is_valid;
1766 for (cpu = 0; cpu < nr_cpu_ids; cpu++) {
1767 is_valid = cpu_port_is_valid(&cpu_port[cpu]);
1768 if (is_valid && cpu_port_match(&cpu_port[cpu], mpidr)) {
1769 cci_port_control(cpu_port[cpu].port, false);
1770 return 0;
1771 }
1772 }
1773 return -ENODEV;
1774}
1775EXPORT_SYMBOL_GPL(cci_disable_port_by_cpu);
1776
1777/**
Nicolas Pitre62158f82013-05-21 23:34:41 -04001778 * cci_enable_port_for_self() - enable a CCI port for calling CPU
1779 *
1780 * Enabling a CCI port for the calling CPU implies enabling the CCI
1781 * port controlling that CPU's cluster. Caller must make sure that the
1782 * CPU running the code is the first active CPU in the cluster and all
1783 * other CPUs are quiescent in a low power state or waiting for this CPU
1784 * to complete the CCI initialization.
1785 *
1786 * Because this is called when the MMU is still off and with no stack,
1787 * the code must be position independent and ideally rely on callee
1788 * clobbered registers only. To achieve this we must code this function
1789 * entirely in assembler.
1790 *
1791 * On success this returns with the proper CCI port enabled. In case of
1792 * any failure this never returns as the inability to enable the CCI is
1793 * fatal and there is no possible recovery at this stage.
1794 */
1795asmlinkage void __naked cci_enable_port_for_self(void)
1796{
1797 asm volatile ("\n"
Arnd Bergmannf4902492013-06-03 15:15:36 +02001798" .arch armv7-a\n"
Nicolas Pitre62158f82013-05-21 23:34:41 -04001799" mrc p15, 0, r0, c0, c0, 5 @ get MPIDR value \n"
1800" and r0, r0, #"__stringify(MPIDR_HWID_BITMASK)" \n"
1801" adr r1, 5f \n"
1802" ldr r2, [r1] \n"
1803" add r1, r1, r2 @ &cpu_port \n"
1804" add ip, r1, %[sizeof_cpu_port] \n"
1805
1806 /* Loop over the cpu_port array looking for a matching MPIDR */
1807"1: ldr r2, [r1, %[offsetof_cpu_port_mpidr_lsb]] \n"
1808" cmp r2, r0 @ compare MPIDR \n"
1809" bne 2f \n"
1810
1811 /* Found a match, now test port validity */
1812" ldr r3, [r1, %[offsetof_cpu_port_port]] \n"
1813" tst r3, #"__stringify(PORT_VALID)" \n"
1814" bne 3f \n"
1815
1816 /* no match, loop with the next cpu_port entry */
1817"2: add r1, r1, %[sizeof_struct_cpu_port] \n"
1818" cmp r1, ip @ done? \n"
1819" blo 1b \n"
1820
1821 /* CCI port not found -- cheaply try to stall this CPU */
1822"cci_port_not_found: \n"
1823" wfi \n"
1824" wfe \n"
1825" b cci_port_not_found \n"
1826
1827 /* Use matched port index to look up the corresponding ports entry */
1828"3: bic r3, r3, #"__stringify(PORT_VALID)" \n"
1829" adr r0, 6f \n"
1830" ldmia r0, {r1, r2} \n"
1831" sub r1, r1, r0 @ virt - phys \n"
1832" ldr r0, [r0, r2] @ *(&ports) \n"
1833" mov r2, %[sizeof_struct_ace_port] \n"
1834" mla r0, r2, r3, r0 @ &ports[index] \n"
1835" sub r0, r0, r1 @ virt_to_phys() \n"
1836
1837 /* Enable the CCI port */
1838" ldr r0, [r0, %[offsetof_port_phys]] \n"
Victor Kamenskyfdb07ae2013-10-15 21:50:34 -07001839" mov r3, %[cci_enable_req]\n"
Nicolas Pitre62158f82013-05-21 23:34:41 -04001840" str r3, [r0, #"__stringify(CCI_PORT_CTRL)"] \n"
1841
1842 /* poll the status reg for completion */
1843" adr r1, 7f \n"
1844" ldr r0, [r1] \n"
1845" ldr r0, [r0, r1] @ cci_ctrl_base \n"
1846"4: ldr r1, [r0, #"__stringify(CCI_CTRL_STATUS)"] \n"
Victor Kamenskyfdb07ae2013-10-15 21:50:34 -07001847" tst r1, %[cci_control_status_bits] \n"
Nicolas Pitre62158f82013-05-21 23:34:41 -04001848" bne 4b \n"
1849
1850" mov r0, #0 \n"
1851" bx lr \n"
1852
1853" .align 2 \n"
1854"5: .word cpu_port - . \n"
1855"6: .word . \n"
1856" .word ports - 6b \n"
1857"7: .word cci_ctrl_phys - . \n"
1858 : :
1859 [sizeof_cpu_port] "i" (sizeof(cpu_port)),
Victor Kamenskyfdb07ae2013-10-15 21:50:34 -07001860 [cci_enable_req] "i" cpu_to_le32(CCI_ENABLE_REQ),
1861 [cci_control_status_bits] "i" cpu_to_le32(1),
Nicolas Pitre62158f82013-05-21 23:34:41 -04001862#ifndef __ARMEB__
1863 [offsetof_cpu_port_mpidr_lsb] "i" (offsetof(struct cpu_port, mpidr)),
1864#else
1865 [offsetof_cpu_port_mpidr_lsb] "i" (offsetof(struct cpu_port, mpidr)+4),
1866#endif
1867 [offsetof_cpu_port_port] "i" (offsetof(struct cpu_port, port)),
1868 [sizeof_struct_cpu_port] "i" (sizeof(struct cpu_port)),
1869 [sizeof_struct_ace_port] "i" (sizeof(struct cci_ace_port)),
1870 [offsetof_port_phys] "i" (offsetof(struct cci_ace_port, phys)) );
1871
1872 unreachable();
1873}
1874
1875/**
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001876 * __cci_control_port_by_device() - function to control a CCI port by device
1877 * reference
1878 *
1879 * @dn: device node pointer of the device whose CCI port should be
1880 * controlled
1881 * @enable: if true enables the port, if false disables it
1882 *
1883 * Return:
1884 * 0 on success
1885 * -ENODEV on port look-up failure
1886 */
1887int notrace __cci_control_port_by_device(struct device_node *dn, bool enable)
1888{
1889 int port;
1890
1891 if (!dn)
1892 return -ENODEV;
1893
1894 port = __cci_ace_get_port(dn, ACE_LITE_PORT);
1895 if (WARN_ONCE(port < 0, "node %s ACE lite port look-up failure\n",
1896 dn->full_name))
1897 return -ENODEV;
1898 cci_port_control(port, enable);
1899 return 0;
1900}
1901EXPORT_SYMBOL_GPL(__cci_control_port_by_device);
1902
1903/**
1904 * __cci_control_port_by_index() - function to control a CCI port by port index
1905 *
1906 * @port: port index previously retrieved with cci_ace_get_port()
1907 * @enable: if true enables the port, if false disables it
1908 *
1909 * Return:
1910 * 0 on success
1911 * -ENODEV on port index out of range
1912 * -EPERM if operation carried out on an ACE PORT
1913 */
1914int notrace __cci_control_port_by_index(u32 port, bool enable)
1915{
1916 if (port >= nb_cci_ports || ports[port].type == ACE_INVALID_PORT)
1917 return -ENODEV;
1918 /*
1919 * CCI control for ports connected to CPUS is extremely fragile
1920 * and must be made to go through a specific and controlled
1921 * interface (ie cci_disable_port_by_cpu(); control by general purpose
1922 * indexing is therefore disabled for ACE ports.
1923 */
1924 if (ports[port].type == ACE_PORT)
1925 return -EPERM;
1926
1927 cci_port_control(port, enable);
1928 return 0;
1929}
1930EXPORT_SYMBOL_GPL(__cci_control_port_by_index);
1931
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001932static const struct of_device_id arm_cci_ctrl_if_matches[] = {
1933 {.compatible = "arm,cci-400-ctrl-if", },
1934 {},
1935};
1936
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001937static int cci_probe_ports(struct device_node *np)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001938{
1939 struct cci_nb_ports const *cci_config;
1940 int ret, i, nb_ace = 0, nb_ace_lite = 0;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00001941 struct device_node *cp;
Nicolas Pitre62158f82013-05-21 23:34:41 -04001942 struct resource res;
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001943 const char *match_str;
1944 bool is_ace;
1945
Abhilash Kesavan896ddd62015-01-10 08:41:35 +05301946
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001947 cci_config = of_match_node(arm_cci_matches, np)->data;
1948 if (!cci_config)
1949 return -ENODEV;
1950
1951 nb_cci_ports = cci_config->nb_ace + cci_config->nb_ace_lite;
1952
Lorenzo Pieralisi7c762032014-01-27 10:50:37 +00001953 ports = kcalloc(nb_cci_ports, sizeof(*ports), GFP_KERNEL);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001954 if (!ports)
1955 return -ENOMEM;
1956
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001957 for_each_child_of_node(np, cp) {
1958 if (!of_match_node(arm_cci_ctrl_if_matches, cp))
1959 continue;
1960
1961 i = nb_ace + nb_ace_lite;
1962
1963 if (i >= nb_cci_ports)
1964 break;
1965
1966 if (of_property_read_string(cp, "interface-type",
1967 &match_str)) {
1968 WARN(1, "node %s missing interface-type property\n",
1969 cp->full_name);
1970 continue;
1971 }
1972 is_ace = strcmp(match_str, "ace") == 0;
1973 if (!is_ace && strcmp(match_str, "ace-lite")) {
1974 WARN(1, "node %s containing invalid interface-type property, skipping it\n",
1975 cp->full_name);
1976 continue;
1977 }
1978
Nicolas Pitre62158f82013-05-21 23:34:41 -04001979 ret = of_address_to_resource(cp, 0, &res);
1980 if (!ret) {
1981 ports[i].base = ioremap(res.start, resource_size(&res));
1982 ports[i].phys = res.start;
1983 }
1984 if (ret || !ports[i].base) {
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01001985 WARN(1, "unable to ioremap CCI port %d\n", i);
1986 continue;
1987 }
1988
1989 if (is_ace) {
1990 if (WARN_ON(nb_ace >= cci_config->nb_ace))
1991 continue;
1992 ports[i].type = ACE_PORT;
1993 ++nb_ace;
1994 } else {
1995 if (WARN_ON(nb_ace_lite >= cci_config->nb_ace_lite))
1996 continue;
1997 ports[i].type = ACE_LITE_PORT;
1998 ++nb_ace_lite;
1999 }
2000 ports[i].dn = cp;
2001 }
2002
2003 /* initialize a stashed array of ACE ports to speed-up look-up */
2004 cci_ace_init_ports();
2005
2006 /*
2007 * Multi-cluster systems may need this data when non-coherent, during
2008 * cluster power-up/power-down. Make sure it reaches main memory.
2009 */
2010 sync_cache_w(&cci_ctrl_base);
Nicolas Pitre62158f82013-05-21 23:34:41 -04002011 sync_cache_w(&cci_ctrl_phys);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002012 sync_cache_w(&ports);
2013 sync_cache_w(&cpu_port);
2014 __sync_cache_range_w(ports, sizeof(*ports) * nb_cci_ports);
2015 pr_info("ARM CCI driver probed\n");
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002016
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002017 return 0;
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002018}
Suzuki K. Pouloseee8e5d52015-03-18 12:24:41 +00002019#else /* !CONFIG_ARM_CCI400_PORT_CTRL */
2020static inline int cci_probe_ports(struct device_node *np)
2021{
2022 return 0;
2023}
2024#endif /* CONFIG_ARM_CCI400_PORT_CTRL */
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002025
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002026static int cci_probe(void)
2027{
2028 int ret;
2029 struct device_node *np;
2030 struct resource res;
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002031
Suzuki K. Poulosef6b9e832015-03-18 12:24:38 +00002032 np = of_find_matching_node(NULL, arm_cci_matches);
2033 if(!np || !of_device_is_available(np))
2034 return -ENODEV;
2035
2036 ret = of_address_to_resource(np, 0, &res);
2037 if (!ret) {
2038 cci_ctrl_base = ioremap(res.start, resource_size(&res));
2039 cci_ctrl_phys = res.start;
2040 }
2041 if (ret || !cci_ctrl_base) {
2042 WARN(1, "unable to ioremap CCI ctrl\n");
2043 return -ENXIO;
2044 }
2045
2046 return cci_probe_ports(np);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002047}
2048
2049static int cci_init_status = -EAGAIN;
2050static DEFINE_MUTEX(cci_probing);
2051
Punit Agrawalb91c8f22013-08-22 14:41:51 +01002052static int cci_init(void)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002053{
2054 if (cci_init_status != -EAGAIN)
2055 return cci_init_status;
2056
2057 mutex_lock(&cci_probing);
2058 if (cci_init_status == -EAGAIN)
2059 cci_init_status = cci_probe();
2060 mutex_unlock(&cci_probing);
2061 return cci_init_status;
2062}
2063
2064/*
2065 * To sort out early init calls ordering a helper function is provided to
2066 * check if the CCI driver has beed initialized. Function check if the driver
2067 * has been initialized, if not it calls the init function that probes
2068 * the driver and updates the return value.
2069 */
Punit Agrawalb91c8f22013-08-22 14:41:51 +01002070bool cci_probed(void)
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002071{
2072 return cci_init() == 0;
2073}
2074EXPORT_SYMBOL_GPL(cci_probed);
2075
2076early_initcall(cci_init);
Punit Agrawalb91c8f22013-08-22 14:41:51 +01002077core_initcall(cci_platform_init);
Lorenzo Pieralisied69bdd2012-07-13 15:55:52 +01002078MODULE_LICENSE("GPL");
2079MODULE_DESCRIPTION("ARM CCI support");