Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1 | /* |
| 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 Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 19 | #include <linux/interrupt.h> |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 20 | #include <linux/module.h> |
| 21 | #include <linux/of_address.h> |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 22 | #include <linux/of_irq.h> |
| 23 | #include <linux/of_platform.h> |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 24 | #include <linux/perf_event.h> |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 25 | #include <linux/platform_device.h> |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 26 | #include <linux/slab.h> |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 27 | #include <linux/spinlock.h> |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 28 | |
| 29 | #include <asm/cacheflush.h> |
| 30 | #include <asm/smp_plat.h> |
| 31 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 32 | static void __iomem *cci_ctrl_base; |
| 33 | static unsigned long cci_ctrl_phys; |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 34 | |
Suzuki K. Poulose | ee8e5d5 | 2015-03-18 12:24:41 +0000 | [diff] [blame] | 35 | #ifdef CONFIG_ARM_CCI400_PORT_CTRL |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 36 | struct cci_nb_ports { |
| 37 | unsigned int nb_ace; |
| 38 | unsigned int nb_ace_lite; |
| 39 | }; |
| 40 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 41 | static const struct cci_nb_ports cci400_ports = { |
| 42 | .nb_ace = 2, |
| 43 | .nb_ace_lite = 3 |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 44 | }; |
| 45 | |
Suzuki K. Poulose | ee8e5d5 | 2015-03-18 12:24:41 +0000 | [diff] [blame] | 46 | #define CCI400_PORTS_DATA (&cci400_ports) |
| 47 | #else |
| 48 | #define CCI400_PORTS_DATA (NULL) |
| 49 | #endif |
| 50 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 51 | static const struct of_device_id arm_cci_matches[] = { |
Suzuki K. Poulose | ee8e5d5 | 2015-03-18 12:24:41 +0000 | [diff] [blame] | 52 | #ifdef CONFIG_ARM_CCI400_COMMON |
| 53 | {.compatible = "arm,cci-400", .data = CCI400_PORTS_DATA }, |
| 54 | #endif |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 55 | {}, |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Suzuki K. Poulose | ee8e5d5 | 2015-03-18 12:24:41 +0000 | [diff] [blame] | 58 | #ifdef CONFIG_ARM_CCI400_PMU |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 59 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 60 | #define DRIVER_NAME "CCI-400" |
| 61 | #define DRIVER_NAME_PMU DRIVER_NAME " PMU" |
| 62 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 63 | #define CCI_PMCR 0x0100 |
| 64 | #define CCI_PID2 0x0fe8 |
| 65 | |
| 66 | #define CCI_PMCR_CEN 0x00000001 |
| 67 | #define CCI_PMCR_NCNT_MASK 0x0000f800 |
| 68 | #define CCI_PMCR_NCNT_SHIFT 11 |
| 69 | |
| 70 | #define CCI_PID2_REV_MASK 0xf0 |
| 71 | #define CCI_PID2_REV_SHIFT 4 |
| 72 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 73 | #define CCI_PMU_EVT_SEL 0x000 |
| 74 | #define CCI_PMU_CNTR 0x004 |
| 75 | #define CCI_PMU_CNTR_CTRL 0x008 |
| 76 | #define CCI_PMU_OVRFLW 0x00c |
| 77 | |
| 78 | #define CCI_PMU_OVRFLW_FLAG 1 |
| 79 | |
| 80 | #define CCI_PMU_CNTR_BASE(idx) ((idx) * SZ_4K) |
| 81 | |
| 82 | #define CCI_PMU_CNTR_MASK ((1ULL << 32) -1) |
| 83 | |
Suzuki K. Poulose | 874c571 | 2015-03-18 12:24:42 +0000 | [diff] [blame] | 84 | #define CCI_PMU_EVENT_MASK 0xffUL |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 85 | #define CCI_PMU_EVENT_SOURCE(event) ((event >> 5) & 0x7) |
| 86 | #define CCI_PMU_EVENT_CODE(event) (event & 0x1f) |
| 87 | |
| 88 | #define CCI_PMU_MAX_HW_EVENTS 5 /* CCI PMU has 4 counters + 1 cycle counter */ |
| 89 | |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 90 | /* Types of interfaces that can generate events */ |
| 91 | enum { |
| 92 | CCI_IF_SLAVE, |
| 93 | CCI_IF_MASTER, |
| 94 | CCI_IF_MAX, |
| 95 | }; |
| 96 | |
| 97 | struct event_range { |
| 98 | u32 min; |
| 99 | u32 max; |
| 100 | }; |
| 101 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 102 | struct cci_pmu_hw_events { |
| 103 | struct perf_event *events[CCI_PMU_MAX_HW_EVENTS]; |
| 104 | unsigned long used_mask[BITS_TO_LONGS(CCI_PMU_MAX_HW_EVENTS)]; |
| 105 | raw_spinlock_t pmu_lock; |
| 106 | }; |
| 107 | |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 108 | struct cci_pmu_model { |
| 109 | char *name; |
| 110 | struct event_range event_ranges[CCI_IF_MAX]; |
| 111 | }; |
| 112 | |
| 113 | static struct cci_pmu_model cci_pmu_models[]; |
| 114 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 115 | struct cci_pmu { |
| 116 | void __iomem *base; |
| 117 | struct pmu pmu; |
| 118 | int nr_irqs; |
| 119 | int irqs[CCI_PMU_MAX_HW_EVENTS]; |
| 120 | unsigned long active_irqs; |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 121 | const struct cci_pmu_model *model; |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 122 | struct cci_pmu_hw_events hw_events; |
| 123 | struct platform_device *plat_device; |
| 124 | int num_events; |
| 125 | atomic_t active_events; |
| 126 | struct mutex reserve_mutex; |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 127 | struct notifier_block cpu_nb; |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 128 | cpumask_t cpus; |
| 129 | }; |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 130 | |
| 131 | #define to_cci_pmu(c) (container_of(c, struct cci_pmu, pmu)) |
| 132 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 133 | /* Port ids */ |
| 134 | #define CCI_PORT_S0 0 |
| 135 | #define CCI_PORT_S1 1 |
| 136 | #define CCI_PORT_S2 2 |
| 137 | #define CCI_PORT_S3 3 |
| 138 | #define CCI_PORT_S4 4 |
| 139 | #define CCI_PORT_M0 5 |
| 140 | #define CCI_PORT_M1 6 |
| 141 | #define CCI_PORT_M2 7 |
| 142 | |
| 143 | #define CCI_REV_R0 0 |
| 144 | #define CCI_REV_R1 1 |
Punit Agrawal | 6fb0c4a | 2014-02-19 12:17:02 +0000 | [diff] [blame] | 145 | #define CCI_REV_R1_PX 5 |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 146 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 147 | /* |
| 148 | * Instead of an event id to monitor CCI cycles, a dedicated counter is |
| 149 | * provided. Use 0xff to represent CCI cycles and hope that no future revisions |
| 150 | * make use of this event in hardware. |
| 151 | */ |
| 152 | enum cci400_perf_events { |
| 153 | CCI_PMU_CYCLES = 0xff |
| 154 | }; |
| 155 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 156 | #define CCI_PMU_CYCLE_CNTR_IDX 0 |
| 157 | #define CCI_PMU_CNTR0_IDX 1 |
| 158 | #define CCI_PMU_CNTR_LAST(cci_pmu) (CCI_PMU_CYCLE_CNTR_IDX + cci_pmu->num_events - 1) |
| 159 | |
| 160 | /* |
| 161 | * CCI PMU event id is an 8-bit value made of two parts - bits 7:5 for one of 8 |
| 162 | * ports and bits 4:0 are event codes. There are different event codes |
| 163 | * associated with each port type. |
| 164 | * |
| 165 | * Additionally, the range of events associated with the port types changed |
| 166 | * between Rev0 and Rev1. |
| 167 | * |
| 168 | * The constants below define the range of valid codes for each port type for |
| 169 | * the different revisions and are used to validate the event to be monitored. |
| 170 | */ |
| 171 | |
| 172 | #define CCI_REV_R0_SLAVE_PORT_MIN_EV 0x00 |
| 173 | #define CCI_REV_R0_SLAVE_PORT_MAX_EV 0x13 |
| 174 | #define CCI_REV_R0_MASTER_PORT_MIN_EV 0x14 |
| 175 | #define CCI_REV_R0_MASTER_PORT_MAX_EV 0x1a |
| 176 | |
| 177 | #define CCI_REV_R1_SLAVE_PORT_MIN_EV 0x00 |
| 178 | #define CCI_REV_R1_SLAVE_PORT_MAX_EV 0x14 |
| 179 | #define CCI_REV_R1_MASTER_PORT_MIN_EV 0x00 |
| 180 | #define CCI_REV_R1_MASTER_PORT_MAX_EV 0x11 |
| 181 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 182 | static int pmu_validate_hw_event(struct cci_pmu *cci_pmu, unsigned long hw_event) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 183 | { |
| 184 | u8 ev_source = CCI_PMU_EVENT_SOURCE(hw_event); |
| 185 | u8 ev_code = CCI_PMU_EVENT_CODE(hw_event); |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 186 | int if_type; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 187 | |
Suzuki K. Poulose | 874c571 | 2015-03-18 12:24:42 +0000 | [diff] [blame] | 188 | if (hw_event & ~CCI_PMU_EVENT_MASK) |
| 189 | return -ENOENT; |
| 190 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 191 | switch (ev_source) { |
| 192 | case CCI_PORT_S0: |
| 193 | case CCI_PORT_S1: |
| 194 | case CCI_PORT_S2: |
| 195 | case CCI_PORT_S3: |
| 196 | case CCI_PORT_S4: |
| 197 | /* Slave Interface */ |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 198 | if_type = CCI_IF_SLAVE; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 199 | break; |
| 200 | case CCI_PORT_M0: |
| 201 | case CCI_PORT_M1: |
| 202 | case CCI_PORT_M2: |
| 203 | /* Master Interface */ |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 204 | if_type = CCI_IF_MASTER; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 205 | break; |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 206 | default: |
| 207 | return -ENOENT; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 208 | } |
| 209 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 210 | if (ev_code >= cci_pmu->model->event_ranges[if_type].min && |
| 211 | ev_code <= cci_pmu->model->event_ranges[if_type].max) |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 212 | return hw_event; |
| 213 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 214 | return -ENOENT; |
| 215 | } |
| 216 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 217 | static int probe_cci_revision(void) |
| 218 | { |
| 219 | int rev; |
| 220 | rev = readl_relaxed(cci_ctrl_base + CCI_PID2) & CCI_PID2_REV_MASK; |
| 221 | rev >>= CCI_PID2_REV_SHIFT; |
| 222 | |
| 223 | if (rev < CCI_REV_R1_PX) |
| 224 | return CCI_REV_R0; |
| 225 | else |
| 226 | return CCI_REV_R1; |
| 227 | } |
| 228 | |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 229 | static const struct cci_pmu_model *probe_cci_model(struct platform_device *pdev) |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 230 | { |
Suzuki K. Poulose | 772742a | 2015-03-18 12:24:40 +0000 | [diff] [blame] | 231 | if (platform_has_secure_cci_access()) |
| 232 | return &cci_pmu_models[probe_cci_revision()]; |
| 233 | return NULL; |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 236 | static int pmu_is_valid_counter(struct cci_pmu *cci_pmu, int idx) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 237 | { |
| 238 | return CCI_PMU_CYCLE_CNTR_IDX <= idx && |
| 239 | idx <= CCI_PMU_CNTR_LAST(cci_pmu); |
| 240 | } |
| 241 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 242 | static u32 pmu_read_register(struct cci_pmu *cci_pmu, int idx, unsigned int offset) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 243 | { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 244 | return readl_relaxed(cci_pmu->base + CCI_PMU_CNTR_BASE(idx) + offset); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 245 | } |
| 246 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 247 | static void pmu_write_register(struct cci_pmu *cci_pmu, u32 value, |
| 248 | int idx, unsigned int offset) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 249 | { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 250 | return writel_relaxed(value, cci_pmu->base + |
| 251 | CCI_PMU_CNTR_BASE(idx) + offset); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 252 | } |
| 253 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 254 | static void pmu_disable_counter(struct cci_pmu *cci_pmu, int idx) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 255 | { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 256 | pmu_write_register(cci_pmu, 0, idx, CCI_PMU_CNTR_CTRL); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 257 | } |
| 258 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 259 | static void pmu_enable_counter(struct cci_pmu *cci_pmu, int idx) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 260 | { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 261 | pmu_write_register(cci_pmu, 1, idx, CCI_PMU_CNTR_CTRL); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 262 | } |
| 263 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 264 | static void pmu_set_event(struct cci_pmu *cci_pmu, int idx, unsigned long event) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 265 | { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 266 | pmu_write_register(cci_pmu, event, idx, CCI_PMU_EVT_SEL); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static u32 pmu_get_max_counters(void) |
| 270 | { |
| 271 | u32 n_cnts = (readl_relaxed(cci_ctrl_base + CCI_PMCR) & |
| 272 | CCI_PMCR_NCNT_MASK) >> CCI_PMCR_NCNT_SHIFT; |
| 273 | |
| 274 | /* add 1 for cycle counter */ |
| 275 | return n_cnts + 1; |
| 276 | } |
| 277 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 278 | static int pmu_get_event_idx(struct cci_pmu_hw_events *hw, struct perf_event *event) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 279 | { |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 280 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 281 | struct hw_perf_event *hw_event = &event->hw; |
Suzuki K. Poulose | 874c571 | 2015-03-18 12:24:42 +0000 | [diff] [blame] | 282 | unsigned long cci_event = hw_event->config_base; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 283 | int idx; |
| 284 | |
| 285 | if (cci_event == CCI_PMU_CYCLES) { |
| 286 | if (test_and_set_bit(CCI_PMU_CYCLE_CNTR_IDX, hw->used_mask)) |
| 287 | return -EAGAIN; |
| 288 | |
| 289 | return CCI_PMU_CYCLE_CNTR_IDX; |
| 290 | } |
| 291 | |
| 292 | for (idx = CCI_PMU_CNTR0_IDX; idx <= CCI_PMU_CNTR_LAST(cci_pmu); ++idx) |
| 293 | if (!test_and_set_bit(idx, hw->used_mask)) |
| 294 | return idx; |
| 295 | |
| 296 | /* No counters available */ |
| 297 | return -EAGAIN; |
| 298 | } |
| 299 | |
| 300 | static int pmu_map_event(struct perf_event *event) |
| 301 | { |
| 302 | int mapping; |
Suzuki K. Poulose | 874c571 | 2015-03-18 12:24:42 +0000 | [diff] [blame] | 303 | unsigned long config = event->attr.config; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 304 | |
| 305 | if (event->attr.type < PERF_TYPE_MAX) |
| 306 | return -ENOENT; |
| 307 | |
| 308 | if (config == CCI_PMU_CYCLES) |
| 309 | mapping = config; |
| 310 | else |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 311 | mapping = pmu_validate_hw_event(to_cci_pmu(event->pmu), |
| 312 | config); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 313 | |
| 314 | return mapping; |
| 315 | } |
| 316 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 317 | static int pmu_request_irq(struct cci_pmu *cci_pmu, irq_handler_t handler) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 318 | { |
| 319 | int i; |
| 320 | struct platform_device *pmu_device = cci_pmu->plat_device; |
| 321 | |
| 322 | if (unlikely(!pmu_device)) |
| 323 | return -ENODEV; |
| 324 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 325 | if (cci_pmu->nr_irqs < 1) { |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 326 | dev_err(&pmu_device->dev, "no irqs for CCI PMUs defined\n"); |
| 327 | return -ENODEV; |
| 328 | } |
| 329 | |
| 330 | /* |
| 331 | * Register all available CCI PMU interrupts. In the interrupt handler |
| 332 | * we iterate over the counters checking for interrupt source (the |
| 333 | * overflowing counter) and clear it. |
| 334 | * |
| 335 | * This should allow handling of non-unique interrupt for the counters. |
| 336 | */ |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 337 | for (i = 0; i < cci_pmu->nr_irqs; i++) { |
| 338 | int err = request_irq(cci_pmu->irqs[i], handler, IRQF_SHARED, |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 339 | "arm-cci-pmu", cci_pmu); |
| 340 | if (err) { |
| 341 | dev_err(&pmu_device->dev, "unable to request IRQ%d for ARM CCI PMU counters\n", |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 342 | cci_pmu->irqs[i]); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 343 | return err; |
| 344 | } |
| 345 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 346 | set_bit(i, &cci_pmu->active_irqs); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | return 0; |
| 350 | } |
| 351 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 352 | static void pmu_free_irq(struct cci_pmu *cci_pmu) |
| 353 | { |
| 354 | int i; |
| 355 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 356 | for (i = 0; i < cci_pmu->nr_irqs; i++) { |
| 357 | if (!test_and_clear_bit(i, &cci_pmu->active_irqs)) |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 358 | continue; |
| 359 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 360 | free_irq(cci_pmu->irqs[i], cci_pmu); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 361 | } |
| 362 | } |
| 363 | |
| 364 | static u32 pmu_read_counter(struct perf_event *event) |
| 365 | { |
| 366 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 367 | struct hw_perf_event *hw_counter = &event->hw; |
| 368 | int idx = hw_counter->idx; |
| 369 | u32 value; |
| 370 | |
| 371 | if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) { |
| 372 | dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx); |
| 373 | return 0; |
| 374 | } |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 375 | value = pmu_read_register(cci_pmu, idx, CCI_PMU_CNTR); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 376 | |
| 377 | return value; |
| 378 | } |
| 379 | |
| 380 | static void pmu_write_counter(struct perf_event *event, u32 value) |
| 381 | { |
| 382 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 383 | struct hw_perf_event *hw_counter = &event->hw; |
| 384 | int idx = hw_counter->idx; |
| 385 | |
| 386 | if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) |
| 387 | dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx); |
| 388 | else |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 389 | pmu_write_register(cci_pmu, value, idx, CCI_PMU_CNTR); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | static u64 pmu_event_update(struct perf_event *event) |
| 393 | { |
| 394 | struct hw_perf_event *hwc = &event->hw; |
| 395 | u64 delta, prev_raw_count, new_raw_count; |
| 396 | |
| 397 | do { |
| 398 | prev_raw_count = local64_read(&hwc->prev_count); |
| 399 | new_raw_count = pmu_read_counter(event); |
| 400 | } while (local64_cmpxchg(&hwc->prev_count, prev_raw_count, |
| 401 | new_raw_count) != prev_raw_count); |
| 402 | |
| 403 | delta = (new_raw_count - prev_raw_count) & CCI_PMU_CNTR_MASK; |
| 404 | |
| 405 | local64_add(delta, &event->count); |
| 406 | |
| 407 | return new_raw_count; |
| 408 | } |
| 409 | |
| 410 | static void pmu_read(struct perf_event *event) |
| 411 | { |
| 412 | pmu_event_update(event); |
| 413 | } |
| 414 | |
| 415 | void pmu_event_set_period(struct perf_event *event) |
| 416 | { |
| 417 | struct hw_perf_event *hwc = &event->hw; |
| 418 | /* |
| 419 | * The CCI PMU counters have a period of 2^32. To account for the |
| 420 | * possiblity of extreme interrupt latency we program for a period of |
| 421 | * half that. Hopefully we can handle the interrupt before another 2^31 |
| 422 | * events occur and the counter overtakes its previous value. |
| 423 | */ |
| 424 | u64 val = 1ULL << 31; |
| 425 | local64_set(&hwc->prev_count, val); |
| 426 | pmu_write_counter(event, val); |
| 427 | } |
| 428 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 429 | static irqreturn_t pmu_handle_irq(int irq_num, void *dev) |
| 430 | { |
| 431 | unsigned long flags; |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 432 | struct cci_pmu *cci_pmu = dev; |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 433 | struct cci_pmu_hw_events *events = &cci_pmu->hw_events; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 434 | int idx, handled = IRQ_NONE; |
| 435 | |
| 436 | raw_spin_lock_irqsave(&events->pmu_lock, flags); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 437 | /* |
| 438 | * Iterate over counters and update the corresponding perf events. |
| 439 | * This should work regardless of whether we have per-counter overflow |
| 440 | * interrupt or a combined overflow interrupt. |
| 441 | */ |
| 442 | for (idx = CCI_PMU_CYCLE_CNTR_IDX; idx <= CCI_PMU_CNTR_LAST(cci_pmu); idx++) { |
| 443 | struct perf_event *event = events->events[idx]; |
| 444 | struct hw_perf_event *hw_counter; |
| 445 | |
| 446 | if (!event) |
| 447 | continue; |
| 448 | |
| 449 | hw_counter = &event->hw; |
| 450 | |
| 451 | /* Did this counter overflow? */ |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 452 | if (!(pmu_read_register(cci_pmu, idx, CCI_PMU_OVRFLW) & |
Himangi Saraogi | fc5130d | 2014-07-30 11:37:35 +0100 | [diff] [blame] | 453 | CCI_PMU_OVRFLW_FLAG)) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 454 | continue; |
| 455 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 456 | pmu_write_register(cci_pmu, CCI_PMU_OVRFLW_FLAG, idx, |
| 457 | CCI_PMU_OVRFLW); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 458 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 459 | pmu_event_update(event); |
| 460 | pmu_event_set_period(event); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 461 | handled = IRQ_HANDLED; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 462 | } |
| 463 | raw_spin_unlock_irqrestore(&events->pmu_lock, flags); |
| 464 | |
| 465 | return IRQ_RETVAL(handled); |
| 466 | } |
| 467 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 468 | static int cci_pmu_get_hw(struct cci_pmu *cci_pmu) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 469 | { |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 470 | int ret = pmu_request_irq(cci_pmu, pmu_handle_irq); |
| 471 | if (ret) { |
| 472 | pmu_free_irq(cci_pmu); |
| 473 | return ret; |
| 474 | } |
| 475 | return 0; |
| 476 | } |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 477 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 478 | static void cci_pmu_put_hw(struct cci_pmu *cci_pmu) |
| 479 | { |
| 480 | pmu_free_irq(cci_pmu); |
| 481 | } |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 482 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 483 | static void hw_perf_event_destroy(struct perf_event *event) |
| 484 | { |
| 485 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 486 | atomic_t *active_events = &cci_pmu->active_events; |
| 487 | struct mutex *reserve_mutex = &cci_pmu->reserve_mutex; |
| 488 | |
| 489 | if (atomic_dec_and_mutex_lock(active_events, reserve_mutex)) { |
| 490 | cci_pmu_put_hw(cci_pmu); |
| 491 | mutex_unlock(reserve_mutex); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 492 | } |
| 493 | } |
| 494 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 495 | static void cci_pmu_enable(struct pmu *pmu) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 496 | { |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 497 | struct cci_pmu *cci_pmu = to_cci_pmu(pmu); |
| 498 | struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events; |
| 499 | int enabled = bitmap_weight(hw_events->used_mask, cci_pmu->num_events); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 500 | unsigned long flags; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 501 | u32 val; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 502 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 503 | if (!enabled) |
| 504 | return; |
| 505 | |
| 506 | raw_spin_lock_irqsave(&hw_events->pmu_lock, flags); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 507 | |
| 508 | /* Enable all the PMU counters. */ |
| 509 | val = readl_relaxed(cci_ctrl_base + CCI_PMCR) | CCI_PMCR_CEN; |
| 510 | writel(val, cci_ctrl_base + CCI_PMCR); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 511 | raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 512 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 513 | } |
| 514 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 515 | static void cci_pmu_disable(struct pmu *pmu) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 516 | { |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 517 | struct cci_pmu *cci_pmu = to_cci_pmu(pmu); |
| 518 | struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 519 | unsigned long flags; |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 520 | u32 val; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 521 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 522 | raw_spin_lock_irqsave(&hw_events->pmu_lock, flags); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 523 | |
| 524 | /* Disable all the PMU counters. */ |
| 525 | val = readl_relaxed(cci_ctrl_base + CCI_PMCR) & ~CCI_PMCR_CEN; |
| 526 | writel(val, cci_ctrl_base + CCI_PMCR); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 527 | raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 528 | } |
| 529 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 530 | static void cci_pmu_start(struct perf_event *event, int pmu_flags) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 531 | { |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 532 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 533 | struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events; |
| 534 | struct hw_perf_event *hwc = &event->hw; |
| 535 | int idx = hwc->idx; |
| 536 | unsigned long flags; |
| 537 | |
| 538 | /* |
| 539 | * To handle interrupt latency, we always reprogram the period |
| 540 | * regardlesss of PERF_EF_RELOAD. |
| 541 | */ |
| 542 | if (pmu_flags & PERF_EF_RELOAD) |
| 543 | WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE)); |
| 544 | |
| 545 | hwc->state = 0; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 546 | |
| 547 | if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) { |
| 548 | dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 549 | return; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 550 | } |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 551 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 552 | raw_spin_lock_irqsave(&hw_events->pmu_lock, flags); |
| 553 | |
| 554 | /* Configure the event to count, unless you are counting cycles */ |
| 555 | if (idx != CCI_PMU_CYCLE_CNTR_IDX) |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 556 | pmu_set_event(cci_pmu, idx, hwc->config_base); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 557 | |
| 558 | pmu_event_set_period(event); |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 559 | pmu_enable_counter(cci_pmu, idx); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 560 | |
| 561 | raw_spin_unlock_irqrestore(&hw_events->pmu_lock, flags); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 562 | } |
| 563 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 564 | static void cci_pmu_stop(struct perf_event *event, int pmu_flags) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 565 | { |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 566 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 567 | struct hw_perf_event *hwc = &event->hw; |
| 568 | int idx = hwc->idx; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 569 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 570 | if (hwc->state & PERF_HES_STOPPED) |
| 571 | return; |
| 572 | |
| 573 | if (unlikely(!pmu_is_valid_counter(cci_pmu, idx))) { |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 574 | dev_err(&cci_pmu->plat_device->dev, "Invalid CCI PMU counter %d\n", idx); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 575 | return; |
| 576 | } |
| 577 | |
| 578 | /* |
| 579 | * We always reprogram the counter, so ignore PERF_EF_UPDATE. See |
| 580 | * cci_pmu_start() |
| 581 | */ |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 582 | pmu_disable_counter(cci_pmu, idx); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 583 | pmu_event_update(event); |
| 584 | hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 585 | } |
| 586 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 587 | static int cci_pmu_add(struct perf_event *event, int flags) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 588 | { |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 589 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 590 | struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events; |
| 591 | struct hw_perf_event *hwc = &event->hw; |
| 592 | int idx; |
| 593 | int err = 0; |
| 594 | |
| 595 | perf_pmu_disable(event->pmu); |
| 596 | |
| 597 | /* If we don't have a space for the counter then finish early. */ |
| 598 | idx = pmu_get_event_idx(hw_events, event); |
| 599 | if (idx < 0) { |
| 600 | err = idx; |
| 601 | goto out; |
| 602 | } |
| 603 | |
| 604 | event->hw.idx = idx; |
| 605 | hw_events->events[idx] = event; |
| 606 | |
| 607 | hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE; |
| 608 | if (flags & PERF_EF_START) |
| 609 | cci_pmu_start(event, PERF_EF_RELOAD); |
| 610 | |
| 611 | /* Propagate our changes to the userspace mapping. */ |
| 612 | perf_event_update_userpage(event); |
| 613 | |
| 614 | out: |
| 615 | perf_pmu_enable(event->pmu); |
| 616 | return err; |
| 617 | } |
| 618 | |
| 619 | static void cci_pmu_del(struct perf_event *event, int flags) |
| 620 | { |
| 621 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 622 | struct cci_pmu_hw_events *hw_events = &cci_pmu->hw_events; |
| 623 | struct hw_perf_event *hwc = &event->hw; |
| 624 | int idx = hwc->idx; |
| 625 | |
| 626 | cci_pmu_stop(event, PERF_EF_UPDATE); |
| 627 | hw_events->events[idx] = NULL; |
| 628 | clear_bit(idx, hw_events->used_mask); |
| 629 | |
| 630 | perf_event_update_userpage(event); |
| 631 | } |
| 632 | |
| 633 | static int |
Suzuki K. Poulose | b186219 | 2015-03-17 18:15:00 +0000 | [diff] [blame] | 634 | validate_event(struct pmu *cci_pmu, |
| 635 | struct cci_pmu_hw_events *hw_events, |
| 636 | struct perf_event *event) |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 637 | { |
| 638 | if (is_software_event(event)) |
| 639 | return 1; |
| 640 | |
Suzuki K. Poulose | b186219 | 2015-03-17 18:15:00 +0000 | [diff] [blame] | 641 | /* |
| 642 | * Reject groups spanning multiple HW PMUs (e.g. CPU + CCI). The |
| 643 | * core perf code won't check that the pmu->ctx == leader->ctx |
| 644 | * until after pmu->event_init(event). |
| 645 | */ |
| 646 | if (event->pmu != cci_pmu) |
| 647 | return 0; |
| 648 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 649 | if (event->state < PERF_EVENT_STATE_OFF) |
| 650 | return 1; |
| 651 | |
| 652 | if (event->state == PERF_EVENT_STATE_OFF && !event->attr.enable_on_exec) |
| 653 | return 1; |
| 654 | |
| 655 | return pmu_get_event_idx(hw_events, event) >= 0; |
| 656 | } |
| 657 | |
| 658 | static int |
| 659 | validate_group(struct perf_event *event) |
| 660 | { |
| 661 | struct perf_event *sibling, *leader = event->group_leader; |
| 662 | struct cci_pmu_hw_events fake_pmu = { |
| 663 | /* |
| 664 | * Initialise the fake PMU. We only need to populate the |
| 665 | * used_mask for the purposes of validation. |
| 666 | */ |
Mark Salter | 454be2a | 2015-04-28 13:09:32 -0400 | [diff] [blame] | 667 | .used_mask = { 0 }, |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 668 | }; |
| 669 | |
Suzuki K. Poulose | b186219 | 2015-03-17 18:15:00 +0000 | [diff] [blame] | 670 | if (!validate_event(event->pmu, &fake_pmu, leader)) |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 671 | return -EINVAL; |
| 672 | |
| 673 | list_for_each_entry(sibling, &leader->sibling_list, group_entry) { |
Suzuki K. Poulose | b186219 | 2015-03-17 18:15:00 +0000 | [diff] [blame] | 674 | if (!validate_event(event->pmu, &fake_pmu, sibling)) |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 675 | return -EINVAL; |
| 676 | } |
| 677 | |
Suzuki K. Poulose | b186219 | 2015-03-17 18:15:00 +0000 | [diff] [blame] | 678 | if (!validate_event(event->pmu, &fake_pmu, event)) |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 679 | return -EINVAL; |
| 680 | |
| 681 | return 0; |
| 682 | } |
| 683 | |
| 684 | static int |
| 685 | __hw_perf_event_init(struct perf_event *event) |
| 686 | { |
| 687 | struct hw_perf_event *hwc = &event->hw; |
| 688 | int mapping; |
| 689 | |
| 690 | mapping = pmu_map_event(event); |
| 691 | |
| 692 | if (mapping < 0) { |
| 693 | pr_debug("event %x:%llx not supported\n", event->attr.type, |
| 694 | event->attr.config); |
| 695 | return mapping; |
| 696 | } |
| 697 | |
| 698 | /* |
| 699 | * We don't assign an index until we actually place the event onto |
| 700 | * hardware. Use -1 to signify that we haven't decided where to put it |
| 701 | * yet. |
| 702 | */ |
| 703 | hwc->idx = -1; |
| 704 | hwc->config_base = 0; |
| 705 | hwc->config = 0; |
| 706 | hwc->event_base = 0; |
| 707 | |
| 708 | /* |
| 709 | * Store the event encoding into the config_base field. |
| 710 | */ |
| 711 | hwc->config_base |= (unsigned long)mapping; |
| 712 | |
| 713 | /* |
| 714 | * Limit the sample_period to half of the counter width. That way, the |
| 715 | * new counter value is far less likely to overtake the previous one |
| 716 | * unless you have some serious IRQ latency issues. |
| 717 | */ |
| 718 | hwc->sample_period = CCI_PMU_CNTR_MASK >> 1; |
| 719 | hwc->last_period = hwc->sample_period; |
| 720 | local64_set(&hwc->period_left, hwc->sample_period); |
| 721 | |
| 722 | if (event->group_leader != event) { |
| 723 | if (validate_group(event) != 0) |
| 724 | return -EINVAL; |
| 725 | } |
| 726 | |
| 727 | return 0; |
| 728 | } |
| 729 | |
| 730 | static int cci_pmu_event_init(struct perf_event *event) |
| 731 | { |
| 732 | struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); |
| 733 | atomic_t *active_events = &cci_pmu->active_events; |
| 734 | int err = 0; |
| 735 | int cpu; |
| 736 | |
| 737 | if (event->attr.type != event->pmu->type) |
| 738 | return -ENOENT; |
| 739 | |
| 740 | /* Shared by all CPUs, no meaningful state to sample */ |
| 741 | if (is_sampling_event(event) || event->attach_state & PERF_ATTACH_TASK) |
| 742 | return -EOPNOTSUPP; |
| 743 | |
| 744 | /* We have no filtering of any kind */ |
| 745 | if (event->attr.exclude_user || |
| 746 | event->attr.exclude_kernel || |
| 747 | event->attr.exclude_hv || |
| 748 | event->attr.exclude_idle || |
| 749 | event->attr.exclude_host || |
| 750 | event->attr.exclude_guest) |
| 751 | return -EINVAL; |
| 752 | |
| 753 | /* |
| 754 | * Following the example set by other "uncore" PMUs, we accept any CPU |
| 755 | * and rewrite its affinity dynamically rather than having perf core |
| 756 | * handle cpu == -1 and pid == -1 for this case. |
| 757 | * |
| 758 | * The perf core will pin online CPUs for the duration of this call and |
| 759 | * the event being installed into its context, so the PMU's CPU can't |
| 760 | * change under our feet. |
| 761 | */ |
| 762 | cpu = cpumask_first(&cci_pmu->cpus); |
| 763 | if (event->cpu < 0 || cpu < 0) |
| 764 | return -EINVAL; |
| 765 | event->cpu = cpu; |
| 766 | |
| 767 | event->destroy = hw_perf_event_destroy; |
| 768 | if (!atomic_inc_not_zero(active_events)) { |
| 769 | mutex_lock(&cci_pmu->reserve_mutex); |
| 770 | if (atomic_read(active_events) == 0) |
| 771 | err = cci_pmu_get_hw(cci_pmu); |
| 772 | if (!err) |
| 773 | atomic_inc(active_events); |
| 774 | mutex_unlock(&cci_pmu->reserve_mutex); |
| 775 | } |
| 776 | if (err) |
| 777 | return err; |
| 778 | |
| 779 | err = __hw_perf_event_init(event); |
| 780 | if (err) |
| 781 | hw_perf_event_destroy(event); |
| 782 | |
| 783 | return err; |
| 784 | } |
| 785 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 786 | static ssize_t pmu_cpumask_attr_show(struct device *dev, |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 787 | struct device_attribute *attr, char *buf) |
| 788 | { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 789 | struct dev_ext_attribute *eattr = container_of(attr, |
| 790 | struct dev_ext_attribute, attr); |
| 791 | struct cci_pmu *cci_pmu = eattr->var; |
| 792 | |
Tejun Heo | 660e5ec | 2015-02-13 14:37:20 -0800 | [diff] [blame] | 793 | int n = scnprintf(buf, PAGE_SIZE - 1, "%*pbl", |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 794 | cpumask_pr_args(&cci_pmu->cpus)); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 795 | buf[n++] = '\n'; |
| 796 | buf[n] = '\0'; |
| 797 | return n; |
| 798 | } |
| 799 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 800 | static struct dev_ext_attribute pmu_cpumask_attr = { |
| 801 | __ATTR(cpumask, S_IRUGO, pmu_cpumask_attr_show, NULL), |
| 802 | NULL, /* Populated in cci_pmu_init */ |
| 803 | }; |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 804 | |
| 805 | static struct attribute *pmu_attrs[] = { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 806 | &pmu_cpumask_attr.attr.attr, |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 807 | NULL, |
| 808 | }; |
| 809 | |
| 810 | static struct attribute_group pmu_attr_group = { |
| 811 | .attrs = pmu_attrs, |
| 812 | }; |
| 813 | |
| 814 | static const struct attribute_group *pmu_attr_groups[] = { |
| 815 | &pmu_attr_group, |
| 816 | NULL |
| 817 | }; |
| 818 | |
| 819 | static int cci_pmu_init(struct cci_pmu *cci_pmu, struct platform_device *pdev) |
| 820 | { |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 821 | char *name = cci_pmu->model->name; |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 822 | |
| 823 | pmu_cpumask_attr.var = cci_pmu; |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 824 | cci_pmu->pmu = (struct pmu) { |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 825 | .name = cci_pmu->model->name, |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 826 | .task_ctx_nr = perf_invalid_context, |
| 827 | .pmu_enable = cci_pmu_enable, |
| 828 | .pmu_disable = cci_pmu_disable, |
| 829 | .event_init = cci_pmu_event_init, |
| 830 | .add = cci_pmu_add, |
| 831 | .del = cci_pmu_del, |
| 832 | .start = cci_pmu_start, |
| 833 | .stop = cci_pmu_stop, |
| 834 | .read = pmu_read, |
| 835 | .attr_groups = pmu_attr_groups, |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 836 | }; |
| 837 | |
| 838 | cci_pmu->plat_device = pdev; |
| 839 | cci_pmu->num_events = pmu_get_max_counters(); |
| 840 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 841 | return perf_pmu_register(&cci_pmu->pmu, name, -1); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 842 | } |
| 843 | |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 844 | static int cci_pmu_cpu_notifier(struct notifier_block *self, |
| 845 | unsigned long action, void *hcpu) |
| 846 | { |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 847 | struct cci_pmu *cci_pmu = container_of(self, |
| 848 | struct cci_pmu, cpu_nb); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 849 | unsigned int cpu = (long)hcpu; |
| 850 | unsigned int target; |
| 851 | |
| 852 | switch (action & ~CPU_TASKS_FROZEN) { |
| 853 | case CPU_DOWN_PREPARE: |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 854 | if (!cpumask_test_and_clear_cpu(cpu, &cci_pmu->cpus)) |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 855 | break; |
| 856 | target = cpumask_any_but(cpu_online_mask, cpu); |
| 857 | if (target < 0) // UP, last CPU |
| 858 | break; |
| 859 | /* |
| 860 | * TODO: migrate context once core races on event->ctx have |
| 861 | * been fixed. |
| 862 | */ |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 863 | cpumask_set_cpu(target, &cci_pmu->cpus); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 864 | default: |
| 865 | break; |
| 866 | } |
| 867 | |
| 868 | return NOTIFY_OK; |
| 869 | } |
| 870 | |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 871 | static struct cci_pmu_model cci_pmu_models[] = { |
| 872 | [CCI_REV_R0] = { |
| 873 | .name = "CCI_400", |
| 874 | .event_ranges = { |
| 875 | [CCI_IF_SLAVE] = { |
| 876 | CCI_REV_R0_SLAVE_PORT_MIN_EV, |
| 877 | CCI_REV_R0_SLAVE_PORT_MAX_EV, |
| 878 | }, |
| 879 | [CCI_IF_MASTER] = { |
| 880 | CCI_REV_R0_MASTER_PORT_MIN_EV, |
| 881 | CCI_REV_R0_MASTER_PORT_MAX_EV, |
| 882 | }, |
| 883 | }, |
| 884 | }, |
| 885 | [CCI_REV_R1] = { |
| 886 | .name = "CCI_400_r1", |
| 887 | .event_ranges = { |
| 888 | [CCI_IF_SLAVE] = { |
| 889 | CCI_REV_R1_SLAVE_PORT_MIN_EV, |
| 890 | CCI_REV_R1_SLAVE_PORT_MAX_EV, |
| 891 | }, |
| 892 | [CCI_IF_MASTER] = { |
| 893 | CCI_REV_R1_MASTER_PORT_MIN_EV, |
| 894 | CCI_REV_R1_MASTER_PORT_MAX_EV, |
| 895 | }, |
| 896 | }, |
| 897 | }, |
| 898 | }; |
| 899 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 900 | static const struct of_device_id arm_cci_pmu_matches[] = { |
| 901 | { |
| 902 | .compatible = "arm,cci-400-pmu", |
Suzuki K. Poulose | 772742a | 2015-03-18 12:24:40 +0000 | [diff] [blame] | 903 | .data = NULL, |
| 904 | }, |
| 905 | { |
| 906 | .compatible = "arm,cci-400-pmu,r0", |
| 907 | .data = &cci_pmu_models[CCI_REV_R0], |
| 908 | }, |
| 909 | { |
| 910 | .compatible = "arm,cci-400-pmu,r1", |
| 911 | .data = &cci_pmu_models[CCI_REV_R1], |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 912 | }, |
| 913 | {}, |
| 914 | }; |
| 915 | |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 916 | static inline const struct cci_pmu_model *get_cci_model(struct platform_device *pdev) |
| 917 | { |
| 918 | const struct of_device_id *match = of_match_node(arm_cci_pmu_matches, |
| 919 | pdev->dev.of_node); |
| 920 | if (!match) |
| 921 | return NULL; |
Suzuki K. Poulose | 772742a | 2015-03-18 12:24:40 +0000 | [diff] [blame] | 922 | if (match->data) |
| 923 | return match->data; |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 924 | |
Suzuki K. Poulose | 772742a | 2015-03-18 12:24:40 +0000 | [diff] [blame] | 925 | dev_warn(&pdev->dev, "DEPRECATED compatible property," |
| 926 | "requires secure access to CCI registers"); |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 927 | return probe_cci_model(pdev); |
| 928 | } |
| 929 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 930 | static bool is_duplicate_irq(int irq, int *irqs, int nr_irqs) |
| 931 | { |
| 932 | int i; |
| 933 | |
| 934 | for (i = 0; i < nr_irqs; i++) |
| 935 | if (irq == irqs[i]) |
| 936 | return true; |
| 937 | |
| 938 | return false; |
| 939 | } |
| 940 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 941 | static int cci_pmu_probe(struct platform_device *pdev) |
| 942 | { |
| 943 | struct resource *res; |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 944 | struct cci_pmu *cci_pmu; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 945 | int i, ret, irq; |
Suzuki K. Poulose | fc17c83 | 2015-03-18 12:24:39 +0000 | [diff] [blame] | 946 | const struct cci_pmu_model *model; |
| 947 | |
| 948 | model = get_cci_model(pdev); |
| 949 | if (!model) { |
| 950 | dev_warn(&pdev->dev, "CCI PMU version not supported\n"); |
| 951 | return -ENODEV; |
| 952 | } |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 953 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 954 | cci_pmu = devm_kzalloc(&pdev->dev, sizeof(*cci_pmu), GFP_KERNEL); |
| 955 | if (!cci_pmu) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 956 | return -ENOMEM; |
| 957 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 958 | cci_pmu->model = model; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 959 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 960 | cci_pmu->base = devm_ioremap_resource(&pdev->dev, res); |
| 961 | if (IS_ERR(cci_pmu->base)) |
Wei Yongjun | fee4f2c | 2013-09-22 06:04:23 +0100 | [diff] [blame] | 962 | return -ENOMEM; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 963 | |
| 964 | /* |
| 965 | * CCI PMU has 5 overflow signals - one per counter; but some may be tied |
| 966 | * together to a common interrupt. |
| 967 | */ |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 968 | cci_pmu->nr_irqs = 0; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 969 | for (i = 0; i < CCI_PMU_MAX_HW_EVENTS; i++) { |
| 970 | irq = platform_get_irq(pdev, i); |
| 971 | if (irq < 0) |
| 972 | break; |
| 973 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 974 | if (is_duplicate_irq(irq, cci_pmu->irqs, cci_pmu->nr_irqs)) |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 975 | continue; |
| 976 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 977 | cci_pmu->irqs[cci_pmu->nr_irqs++] = irq; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | /* |
| 981 | * Ensure that the device tree has as many interrupts as the number |
| 982 | * of counters. |
| 983 | */ |
| 984 | if (i < CCI_PMU_MAX_HW_EVENTS) { |
| 985 | dev_warn(&pdev->dev, "In-correct number of interrupts: %d, should be %d\n", |
| 986 | i, CCI_PMU_MAX_HW_EVENTS); |
Wei Yongjun | fee4f2c | 2013-09-22 06:04:23 +0100 | [diff] [blame] | 987 | return -EINVAL; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 988 | } |
| 989 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 990 | raw_spin_lock_init(&cci_pmu->hw_events.pmu_lock); |
| 991 | mutex_init(&cci_pmu->reserve_mutex); |
| 992 | atomic_set(&cci_pmu->active_events, 0); |
| 993 | cpumask_set_cpu(smp_processor_id(), &cci_pmu->cpus); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 994 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 995 | cci_pmu->cpu_nb = (struct notifier_block) { |
| 996 | .notifier_call = cci_pmu_cpu_notifier, |
| 997 | /* |
| 998 | * to migrate uncore events, our notifier should be executed |
| 999 | * before perf core's notifier. |
| 1000 | */ |
| 1001 | .priority = CPU_PRI_PERF + 1, |
| 1002 | }; |
| 1003 | |
| 1004 | ret = register_cpu_notifier(&cci_pmu->cpu_nb); |
Mark Rutland | c6f85cb | 2014-06-30 12:20:21 +0100 | [diff] [blame] | 1005 | if (ret) |
| 1006 | return ret; |
| 1007 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 1008 | ret = cci_pmu_init(cci_pmu, pdev); |
| 1009 | if (ret) { |
| 1010 | unregister_cpu_notifier(&cci_pmu->cpu_nb); |
Wei Yongjun | fee4f2c | 2013-09-22 06:04:23 +0100 | [diff] [blame] | 1011 | return ret; |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 1012 | } |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1013 | |
Suzuki K. Poulose | a1a076d | 2015-05-26 10:53:11 +0100 | [diff] [blame^] | 1014 | pr_info("ARM %s PMU driver probed", cci_pmu->model->name); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1015 | return 0; |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | static int cci_platform_probe(struct platform_device *pdev) |
| 1019 | { |
| 1020 | if (!cci_probed()) |
| 1021 | return -ENODEV; |
| 1022 | |
| 1023 | return of_platform_populate(pdev->dev.of_node, NULL, NULL, &pdev->dev); |
| 1024 | } |
| 1025 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1026 | static struct platform_driver cci_pmu_driver = { |
| 1027 | .driver = { |
| 1028 | .name = DRIVER_NAME_PMU, |
| 1029 | .of_match_table = arm_cci_pmu_matches, |
| 1030 | }, |
| 1031 | .probe = cci_pmu_probe, |
| 1032 | }; |
| 1033 | |
| 1034 | static struct platform_driver cci_platform_driver = { |
| 1035 | .driver = { |
| 1036 | .name = DRIVER_NAME, |
| 1037 | .of_match_table = arm_cci_matches, |
| 1038 | }, |
| 1039 | .probe = cci_platform_probe, |
| 1040 | }; |
| 1041 | |
| 1042 | static int __init cci_platform_init(void) |
| 1043 | { |
| 1044 | int ret; |
| 1045 | |
| 1046 | ret = platform_driver_register(&cci_pmu_driver); |
| 1047 | if (ret) |
| 1048 | return ret; |
| 1049 | |
| 1050 | return platform_driver_register(&cci_platform_driver); |
| 1051 | } |
| 1052 | |
Suzuki K. Poulose | ee8e5d5 | 2015-03-18 12:24:41 +0000 | [diff] [blame] | 1053 | #else /* !CONFIG_ARM_CCI400_PMU */ |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1054 | |
| 1055 | static int __init cci_platform_init(void) |
| 1056 | { |
| 1057 | return 0; |
| 1058 | } |
| 1059 | |
Suzuki K. Poulose | ee8e5d5 | 2015-03-18 12:24:41 +0000 | [diff] [blame] | 1060 | #endif /* CONFIG_ARM_CCI400_PMU */ |
| 1061 | |
| 1062 | #ifdef CONFIG_ARM_CCI400_PORT_CTRL |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1063 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1064 | #define CCI_PORT_CTRL 0x0 |
| 1065 | #define CCI_CTRL_STATUS 0xc |
| 1066 | |
| 1067 | #define CCI_ENABLE_SNOOP_REQ 0x1 |
| 1068 | #define CCI_ENABLE_DVM_REQ 0x2 |
| 1069 | #define CCI_ENABLE_REQ (CCI_ENABLE_SNOOP_REQ | CCI_ENABLE_DVM_REQ) |
| 1070 | |
| 1071 | enum cci_ace_port_type { |
| 1072 | ACE_INVALID_PORT = 0x0, |
| 1073 | ACE_PORT, |
| 1074 | ACE_LITE_PORT, |
| 1075 | }; |
| 1076 | |
| 1077 | struct cci_ace_port { |
| 1078 | void __iomem *base; |
| 1079 | unsigned long phys; |
| 1080 | enum cci_ace_port_type type; |
| 1081 | struct device_node *dn; |
| 1082 | }; |
| 1083 | |
| 1084 | static struct cci_ace_port *ports; |
| 1085 | static unsigned int nb_cci_ports; |
| 1086 | |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1087 | struct cpu_port { |
| 1088 | u64 mpidr; |
| 1089 | u32 port; |
| 1090 | }; |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1091 | |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1092 | /* |
| 1093 | * Use the port MSB as valid flag, shift can be made dynamic |
| 1094 | * by computing number of bits required for port indexes. |
| 1095 | * Code disabling CCI cpu ports runs with D-cache invalidated |
| 1096 | * and SCTLR bit clear so data accesses must be kept to a minimum |
| 1097 | * to improve performance; for now shift is left static to |
| 1098 | * avoid one more data access while disabling the CCI port. |
| 1099 | */ |
| 1100 | #define PORT_VALID_SHIFT 31 |
| 1101 | #define PORT_VALID (0x1 << PORT_VALID_SHIFT) |
| 1102 | |
| 1103 | static inline void init_cpu_port(struct cpu_port *port, u32 index, u64 mpidr) |
| 1104 | { |
| 1105 | port->port = PORT_VALID | index; |
| 1106 | port->mpidr = mpidr; |
| 1107 | } |
| 1108 | |
| 1109 | static inline bool cpu_port_is_valid(struct cpu_port *port) |
| 1110 | { |
| 1111 | return !!(port->port & PORT_VALID); |
| 1112 | } |
| 1113 | |
| 1114 | static inline bool cpu_port_match(struct cpu_port *port, u64 mpidr) |
| 1115 | { |
| 1116 | return port->mpidr == (mpidr & MPIDR_HWID_BITMASK); |
| 1117 | } |
| 1118 | |
| 1119 | static struct cpu_port cpu_port[NR_CPUS]; |
| 1120 | |
| 1121 | /** |
| 1122 | * __cci_ace_get_port - Function to retrieve the port index connected to |
| 1123 | * a cpu or device. |
| 1124 | * |
| 1125 | * @dn: device node of the device to look-up |
| 1126 | * @type: port type |
| 1127 | * |
| 1128 | * Return value: |
| 1129 | * - CCI port index if success |
| 1130 | * - -ENODEV if failure |
| 1131 | */ |
| 1132 | static int __cci_ace_get_port(struct device_node *dn, int type) |
| 1133 | { |
| 1134 | int i; |
| 1135 | bool ace_match; |
| 1136 | struct device_node *cci_portn; |
| 1137 | |
| 1138 | cci_portn = of_parse_phandle(dn, "cci-control-port", 0); |
| 1139 | for (i = 0; i < nb_cci_ports; i++) { |
| 1140 | ace_match = ports[i].type == type; |
| 1141 | if (ace_match && cci_portn == ports[i].dn) |
| 1142 | return i; |
| 1143 | } |
| 1144 | return -ENODEV; |
| 1145 | } |
| 1146 | |
| 1147 | int cci_ace_get_port(struct device_node *dn) |
| 1148 | { |
| 1149 | return __cci_ace_get_port(dn, ACE_LITE_PORT); |
| 1150 | } |
| 1151 | EXPORT_SYMBOL_GPL(cci_ace_get_port); |
| 1152 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1153 | static void cci_ace_init_ports(void) |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1154 | { |
Sudeep KarkadaNagesha | 78b4d6e | 2013-06-17 14:51:48 +0100 | [diff] [blame] | 1155 | int port, cpu; |
| 1156 | struct device_node *cpun; |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1157 | |
| 1158 | /* |
| 1159 | * Port index look-up speeds up the function disabling ports by CPU, |
| 1160 | * since the logical to port index mapping is done once and does |
| 1161 | * not change after system boot. |
| 1162 | * The stashed index array is initialized for all possible CPUs |
| 1163 | * at probe time. |
| 1164 | */ |
Sudeep KarkadaNagesha | 78b4d6e | 2013-06-17 14:51:48 +0100 | [diff] [blame] | 1165 | for_each_possible_cpu(cpu) { |
| 1166 | /* too early to use cpu->of_node */ |
| 1167 | cpun = of_get_cpu_node(cpu, NULL); |
| 1168 | |
| 1169 | if (WARN(!cpun, "Missing cpu device node\n")) |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1170 | continue; |
| 1171 | |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1172 | port = __cci_ace_get_port(cpun, ACE_PORT); |
| 1173 | if (port < 0) |
| 1174 | continue; |
| 1175 | |
| 1176 | init_cpu_port(&cpu_port[cpu], port, cpu_logical_map(cpu)); |
| 1177 | } |
| 1178 | |
| 1179 | for_each_possible_cpu(cpu) { |
| 1180 | WARN(!cpu_port_is_valid(&cpu_port[cpu]), |
| 1181 | "CPU %u does not have an associated CCI port\n", |
| 1182 | cpu); |
| 1183 | } |
| 1184 | } |
| 1185 | /* |
| 1186 | * Functions to enable/disable a CCI interconnect slave port |
| 1187 | * |
| 1188 | * They are called by low-level power management code to disable slave |
| 1189 | * interfaces snoops and DVM broadcast. |
| 1190 | * Since they may execute with cache data allocation disabled and |
| 1191 | * after the caches have been cleaned and invalidated the functions provide |
| 1192 | * no explicit locking since they may run with D-cache disabled, so normal |
| 1193 | * cacheable kernel locks based on ldrex/strex may not work. |
| 1194 | * Locking has to be provided by BSP implementations to ensure proper |
| 1195 | * operations. |
| 1196 | */ |
| 1197 | |
| 1198 | /** |
| 1199 | * cci_port_control() - function to control a CCI port |
| 1200 | * |
| 1201 | * @port: index of the port to setup |
| 1202 | * @enable: if true enables the port, if false disables it |
| 1203 | */ |
| 1204 | static void notrace cci_port_control(unsigned int port, bool enable) |
| 1205 | { |
| 1206 | void __iomem *base = ports[port].base; |
| 1207 | |
| 1208 | writel_relaxed(enable ? CCI_ENABLE_REQ : 0, base + CCI_PORT_CTRL); |
| 1209 | /* |
| 1210 | * This function is called from power down procedures |
| 1211 | * and must not execute any instruction that might |
| 1212 | * cause the processor to be put in a quiescent state |
| 1213 | * (eg wfi). Hence, cpu_relax() can not be added to this |
| 1214 | * read loop to optimize power, since it might hide possibly |
| 1215 | * disruptive operations. |
| 1216 | */ |
| 1217 | while (readl_relaxed(cci_ctrl_base + CCI_CTRL_STATUS) & 0x1) |
| 1218 | ; |
| 1219 | } |
| 1220 | |
| 1221 | /** |
| 1222 | * cci_disable_port_by_cpu() - function to disable a CCI port by CPU |
| 1223 | * reference |
| 1224 | * |
| 1225 | * @mpidr: mpidr of the CPU whose CCI port should be disabled |
| 1226 | * |
| 1227 | * Disabling a CCI port for a CPU implies disabling the CCI port |
| 1228 | * controlling that CPU cluster. Code disabling CPU CCI ports |
| 1229 | * must make sure that the CPU running the code is the last active CPU |
| 1230 | * in the cluster ie all other CPUs are quiescent in a low power state. |
| 1231 | * |
| 1232 | * Return: |
| 1233 | * 0 on success |
| 1234 | * -ENODEV on port look-up failure |
| 1235 | */ |
| 1236 | int notrace cci_disable_port_by_cpu(u64 mpidr) |
| 1237 | { |
| 1238 | int cpu; |
| 1239 | bool is_valid; |
| 1240 | for (cpu = 0; cpu < nr_cpu_ids; cpu++) { |
| 1241 | is_valid = cpu_port_is_valid(&cpu_port[cpu]); |
| 1242 | if (is_valid && cpu_port_match(&cpu_port[cpu], mpidr)) { |
| 1243 | cci_port_control(cpu_port[cpu].port, false); |
| 1244 | return 0; |
| 1245 | } |
| 1246 | } |
| 1247 | return -ENODEV; |
| 1248 | } |
| 1249 | EXPORT_SYMBOL_GPL(cci_disable_port_by_cpu); |
| 1250 | |
| 1251 | /** |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1252 | * cci_enable_port_for_self() - enable a CCI port for calling CPU |
| 1253 | * |
| 1254 | * Enabling a CCI port for the calling CPU implies enabling the CCI |
| 1255 | * port controlling that CPU's cluster. Caller must make sure that the |
| 1256 | * CPU running the code is the first active CPU in the cluster and all |
| 1257 | * other CPUs are quiescent in a low power state or waiting for this CPU |
| 1258 | * to complete the CCI initialization. |
| 1259 | * |
| 1260 | * Because this is called when the MMU is still off and with no stack, |
| 1261 | * the code must be position independent and ideally rely on callee |
| 1262 | * clobbered registers only. To achieve this we must code this function |
| 1263 | * entirely in assembler. |
| 1264 | * |
| 1265 | * On success this returns with the proper CCI port enabled. In case of |
| 1266 | * any failure this never returns as the inability to enable the CCI is |
| 1267 | * fatal and there is no possible recovery at this stage. |
| 1268 | */ |
| 1269 | asmlinkage void __naked cci_enable_port_for_self(void) |
| 1270 | { |
| 1271 | asm volatile ("\n" |
Arnd Bergmann | f490249 | 2013-06-03 15:15:36 +0200 | [diff] [blame] | 1272 | " .arch armv7-a\n" |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1273 | " mrc p15, 0, r0, c0, c0, 5 @ get MPIDR value \n" |
| 1274 | " and r0, r0, #"__stringify(MPIDR_HWID_BITMASK)" \n" |
| 1275 | " adr r1, 5f \n" |
| 1276 | " ldr r2, [r1] \n" |
| 1277 | " add r1, r1, r2 @ &cpu_port \n" |
| 1278 | " add ip, r1, %[sizeof_cpu_port] \n" |
| 1279 | |
| 1280 | /* Loop over the cpu_port array looking for a matching MPIDR */ |
| 1281 | "1: ldr r2, [r1, %[offsetof_cpu_port_mpidr_lsb]] \n" |
| 1282 | " cmp r2, r0 @ compare MPIDR \n" |
| 1283 | " bne 2f \n" |
| 1284 | |
| 1285 | /* Found a match, now test port validity */ |
| 1286 | " ldr r3, [r1, %[offsetof_cpu_port_port]] \n" |
| 1287 | " tst r3, #"__stringify(PORT_VALID)" \n" |
| 1288 | " bne 3f \n" |
| 1289 | |
| 1290 | /* no match, loop with the next cpu_port entry */ |
| 1291 | "2: add r1, r1, %[sizeof_struct_cpu_port] \n" |
| 1292 | " cmp r1, ip @ done? \n" |
| 1293 | " blo 1b \n" |
| 1294 | |
| 1295 | /* CCI port not found -- cheaply try to stall this CPU */ |
| 1296 | "cci_port_not_found: \n" |
| 1297 | " wfi \n" |
| 1298 | " wfe \n" |
| 1299 | " b cci_port_not_found \n" |
| 1300 | |
| 1301 | /* Use matched port index to look up the corresponding ports entry */ |
| 1302 | "3: bic r3, r3, #"__stringify(PORT_VALID)" \n" |
| 1303 | " adr r0, 6f \n" |
| 1304 | " ldmia r0, {r1, r2} \n" |
| 1305 | " sub r1, r1, r0 @ virt - phys \n" |
| 1306 | " ldr r0, [r0, r2] @ *(&ports) \n" |
| 1307 | " mov r2, %[sizeof_struct_ace_port] \n" |
| 1308 | " mla r0, r2, r3, r0 @ &ports[index] \n" |
| 1309 | " sub r0, r0, r1 @ virt_to_phys() \n" |
| 1310 | |
| 1311 | /* Enable the CCI port */ |
| 1312 | " ldr r0, [r0, %[offsetof_port_phys]] \n" |
Victor Kamensky | fdb07ae | 2013-10-15 21:50:34 -0700 | [diff] [blame] | 1313 | " mov r3, %[cci_enable_req]\n" |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1314 | " str r3, [r0, #"__stringify(CCI_PORT_CTRL)"] \n" |
| 1315 | |
| 1316 | /* poll the status reg for completion */ |
| 1317 | " adr r1, 7f \n" |
| 1318 | " ldr r0, [r1] \n" |
| 1319 | " ldr r0, [r0, r1] @ cci_ctrl_base \n" |
| 1320 | "4: ldr r1, [r0, #"__stringify(CCI_CTRL_STATUS)"] \n" |
Victor Kamensky | fdb07ae | 2013-10-15 21:50:34 -0700 | [diff] [blame] | 1321 | " tst r1, %[cci_control_status_bits] \n" |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1322 | " bne 4b \n" |
| 1323 | |
| 1324 | " mov r0, #0 \n" |
| 1325 | " bx lr \n" |
| 1326 | |
| 1327 | " .align 2 \n" |
| 1328 | "5: .word cpu_port - . \n" |
| 1329 | "6: .word . \n" |
| 1330 | " .word ports - 6b \n" |
| 1331 | "7: .word cci_ctrl_phys - . \n" |
| 1332 | : : |
| 1333 | [sizeof_cpu_port] "i" (sizeof(cpu_port)), |
Victor Kamensky | fdb07ae | 2013-10-15 21:50:34 -0700 | [diff] [blame] | 1334 | [cci_enable_req] "i" cpu_to_le32(CCI_ENABLE_REQ), |
| 1335 | [cci_control_status_bits] "i" cpu_to_le32(1), |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1336 | #ifndef __ARMEB__ |
| 1337 | [offsetof_cpu_port_mpidr_lsb] "i" (offsetof(struct cpu_port, mpidr)), |
| 1338 | #else |
| 1339 | [offsetof_cpu_port_mpidr_lsb] "i" (offsetof(struct cpu_port, mpidr)+4), |
| 1340 | #endif |
| 1341 | [offsetof_cpu_port_port] "i" (offsetof(struct cpu_port, port)), |
| 1342 | [sizeof_struct_cpu_port] "i" (sizeof(struct cpu_port)), |
| 1343 | [sizeof_struct_ace_port] "i" (sizeof(struct cci_ace_port)), |
| 1344 | [offsetof_port_phys] "i" (offsetof(struct cci_ace_port, phys)) ); |
| 1345 | |
| 1346 | unreachable(); |
| 1347 | } |
| 1348 | |
| 1349 | /** |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1350 | * __cci_control_port_by_device() - function to control a CCI port by device |
| 1351 | * reference |
| 1352 | * |
| 1353 | * @dn: device node pointer of the device whose CCI port should be |
| 1354 | * controlled |
| 1355 | * @enable: if true enables the port, if false disables it |
| 1356 | * |
| 1357 | * Return: |
| 1358 | * 0 on success |
| 1359 | * -ENODEV on port look-up failure |
| 1360 | */ |
| 1361 | int notrace __cci_control_port_by_device(struct device_node *dn, bool enable) |
| 1362 | { |
| 1363 | int port; |
| 1364 | |
| 1365 | if (!dn) |
| 1366 | return -ENODEV; |
| 1367 | |
| 1368 | port = __cci_ace_get_port(dn, ACE_LITE_PORT); |
| 1369 | if (WARN_ONCE(port < 0, "node %s ACE lite port look-up failure\n", |
| 1370 | dn->full_name)) |
| 1371 | return -ENODEV; |
| 1372 | cci_port_control(port, enable); |
| 1373 | return 0; |
| 1374 | } |
| 1375 | EXPORT_SYMBOL_GPL(__cci_control_port_by_device); |
| 1376 | |
| 1377 | /** |
| 1378 | * __cci_control_port_by_index() - function to control a CCI port by port index |
| 1379 | * |
| 1380 | * @port: port index previously retrieved with cci_ace_get_port() |
| 1381 | * @enable: if true enables the port, if false disables it |
| 1382 | * |
| 1383 | * Return: |
| 1384 | * 0 on success |
| 1385 | * -ENODEV on port index out of range |
| 1386 | * -EPERM if operation carried out on an ACE PORT |
| 1387 | */ |
| 1388 | int notrace __cci_control_port_by_index(u32 port, bool enable) |
| 1389 | { |
| 1390 | if (port >= nb_cci_ports || ports[port].type == ACE_INVALID_PORT) |
| 1391 | return -ENODEV; |
| 1392 | /* |
| 1393 | * CCI control for ports connected to CPUS is extremely fragile |
| 1394 | * and must be made to go through a specific and controlled |
| 1395 | * interface (ie cci_disable_port_by_cpu(); control by general purpose |
| 1396 | * indexing is therefore disabled for ACE ports. |
| 1397 | */ |
| 1398 | if (ports[port].type == ACE_PORT) |
| 1399 | return -EPERM; |
| 1400 | |
| 1401 | cci_port_control(port, enable); |
| 1402 | return 0; |
| 1403 | } |
| 1404 | EXPORT_SYMBOL_GPL(__cci_control_port_by_index); |
| 1405 | |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1406 | static const struct of_device_id arm_cci_ctrl_if_matches[] = { |
| 1407 | {.compatible = "arm,cci-400-ctrl-if", }, |
| 1408 | {}, |
| 1409 | }; |
| 1410 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1411 | static int cci_probe_ports(struct device_node *np) |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1412 | { |
| 1413 | struct cci_nb_ports const *cci_config; |
| 1414 | int ret, i, nb_ace = 0, nb_ace_lite = 0; |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1415 | struct device_node *cp; |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1416 | struct resource res; |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1417 | const char *match_str; |
| 1418 | bool is_ace; |
| 1419 | |
Abhilash Kesavan | 896ddd6 | 2015-01-10 08:41:35 +0530 | [diff] [blame] | 1420 | |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1421 | cci_config = of_match_node(arm_cci_matches, np)->data; |
| 1422 | if (!cci_config) |
| 1423 | return -ENODEV; |
| 1424 | |
| 1425 | nb_cci_ports = cci_config->nb_ace + cci_config->nb_ace_lite; |
| 1426 | |
Lorenzo Pieralisi | 7c76203 | 2014-01-27 10:50:37 +0000 | [diff] [blame] | 1427 | ports = kcalloc(nb_cci_ports, sizeof(*ports), GFP_KERNEL); |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1428 | if (!ports) |
| 1429 | return -ENOMEM; |
| 1430 | |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1431 | for_each_child_of_node(np, cp) { |
| 1432 | if (!of_match_node(arm_cci_ctrl_if_matches, cp)) |
| 1433 | continue; |
| 1434 | |
| 1435 | i = nb_ace + nb_ace_lite; |
| 1436 | |
| 1437 | if (i >= nb_cci_ports) |
| 1438 | break; |
| 1439 | |
| 1440 | if (of_property_read_string(cp, "interface-type", |
| 1441 | &match_str)) { |
| 1442 | WARN(1, "node %s missing interface-type property\n", |
| 1443 | cp->full_name); |
| 1444 | continue; |
| 1445 | } |
| 1446 | is_ace = strcmp(match_str, "ace") == 0; |
| 1447 | if (!is_ace && strcmp(match_str, "ace-lite")) { |
| 1448 | WARN(1, "node %s containing invalid interface-type property, skipping it\n", |
| 1449 | cp->full_name); |
| 1450 | continue; |
| 1451 | } |
| 1452 | |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1453 | ret = of_address_to_resource(cp, 0, &res); |
| 1454 | if (!ret) { |
| 1455 | ports[i].base = ioremap(res.start, resource_size(&res)); |
| 1456 | ports[i].phys = res.start; |
| 1457 | } |
| 1458 | if (ret || !ports[i].base) { |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1459 | WARN(1, "unable to ioremap CCI port %d\n", i); |
| 1460 | continue; |
| 1461 | } |
| 1462 | |
| 1463 | if (is_ace) { |
| 1464 | if (WARN_ON(nb_ace >= cci_config->nb_ace)) |
| 1465 | continue; |
| 1466 | ports[i].type = ACE_PORT; |
| 1467 | ++nb_ace; |
| 1468 | } else { |
| 1469 | if (WARN_ON(nb_ace_lite >= cci_config->nb_ace_lite)) |
| 1470 | continue; |
| 1471 | ports[i].type = ACE_LITE_PORT; |
| 1472 | ++nb_ace_lite; |
| 1473 | } |
| 1474 | ports[i].dn = cp; |
| 1475 | } |
| 1476 | |
| 1477 | /* initialize a stashed array of ACE ports to speed-up look-up */ |
| 1478 | cci_ace_init_ports(); |
| 1479 | |
| 1480 | /* |
| 1481 | * Multi-cluster systems may need this data when non-coherent, during |
| 1482 | * cluster power-up/power-down. Make sure it reaches main memory. |
| 1483 | */ |
| 1484 | sync_cache_w(&cci_ctrl_base); |
Nicolas Pitre | 62158f8 | 2013-05-21 23:34:41 -0400 | [diff] [blame] | 1485 | sync_cache_w(&cci_ctrl_phys); |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1486 | sync_cache_w(&ports); |
| 1487 | sync_cache_w(&cpu_port); |
| 1488 | __sync_cache_range_w(ports, sizeof(*ports) * nb_cci_ports); |
| 1489 | pr_info("ARM CCI driver probed\n"); |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1490 | |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1491 | return 0; |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1492 | } |
Suzuki K. Poulose | ee8e5d5 | 2015-03-18 12:24:41 +0000 | [diff] [blame] | 1493 | #else /* !CONFIG_ARM_CCI400_PORT_CTRL */ |
| 1494 | static inline int cci_probe_ports(struct device_node *np) |
| 1495 | { |
| 1496 | return 0; |
| 1497 | } |
| 1498 | #endif /* CONFIG_ARM_CCI400_PORT_CTRL */ |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1499 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1500 | static int cci_probe(void) |
| 1501 | { |
| 1502 | int ret; |
| 1503 | struct device_node *np; |
| 1504 | struct resource res; |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1505 | |
Suzuki K. Poulose | f6b9e83 | 2015-03-18 12:24:38 +0000 | [diff] [blame] | 1506 | np = of_find_matching_node(NULL, arm_cci_matches); |
| 1507 | if(!np || !of_device_is_available(np)) |
| 1508 | return -ENODEV; |
| 1509 | |
| 1510 | ret = of_address_to_resource(np, 0, &res); |
| 1511 | if (!ret) { |
| 1512 | cci_ctrl_base = ioremap(res.start, resource_size(&res)); |
| 1513 | cci_ctrl_phys = res.start; |
| 1514 | } |
| 1515 | if (ret || !cci_ctrl_base) { |
| 1516 | WARN(1, "unable to ioremap CCI ctrl\n"); |
| 1517 | return -ENXIO; |
| 1518 | } |
| 1519 | |
| 1520 | return cci_probe_ports(np); |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | static int cci_init_status = -EAGAIN; |
| 1524 | static DEFINE_MUTEX(cci_probing); |
| 1525 | |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1526 | static int cci_init(void) |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1527 | { |
| 1528 | if (cci_init_status != -EAGAIN) |
| 1529 | return cci_init_status; |
| 1530 | |
| 1531 | mutex_lock(&cci_probing); |
| 1532 | if (cci_init_status == -EAGAIN) |
| 1533 | cci_init_status = cci_probe(); |
| 1534 | mutex_unlock(&cci_probing); |
| 1535 | return cci_init_status; |
| 1536 | } |
| 1537 | |
| 1538 | /* |
| 1539 | * To sort out early init calls ordering a helper function is provided to |
| 1540 | * check if the CCI driver has beed initialized. Function check if the driver |
| 1541 | * has been initialized, if not it calls the init function that probes |
| 1542 | * the driver and updates the return value. |
| 1543 | */ |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1544 | bool cci_probed(void) |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1545 | { |
| 1546 | return cci_init() == 0; |
| 1547 | } |
| 1548 | EXPORT_SYMBOL_GPL(cci_probed); |
| 1549 | |
| 1550 | early_initcall(cci_init); |
Punit Agrawal | b91c8f2 | 2013-08-22 14:41:51 +0100 | [diff] [blame] | 1551 | core_initcall(cci_platform_init); |
Lorenzo Pieralisi | ed69bdd | 2012-07-13 15:55:52 +0100 | [diff] [blame] | 1552 | MODULE_LICENSE("GPL"); |
| 1553 | MODULE_DESCRIPTION("ARM CCI support"); |