2 * CCI cache coherent interconnect driver
4 * Copyright (C) 2013 ARM Ltd.
5 * Author: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
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.
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.
17 #include <linux/arm-cci.h>
19 #include <linux/module.h>
20 #include <linux/of_address.h>
21 #include <linux/of_irq.h>
22 #include <linux/of_platform.h>
23 #include <linux/platform_device.h>
24 #include <linux/slab.h>
25 #include <linux/spinlock.h>
27 #include <asm/cacheflush.h>
28 #include <asm/irq_regs.h>
30 #include <asm/smp_plat.h>
32 #define DRIVER_NAME "CCI-400"
33 #define DRIVER_NAME_PMU DRIVER_NAME " PMU"
34 #define PMU_NAME "CCI_400"
36 #define CCI_PORT_CTRL 0x0
37 #define CCI_CTRL_STATUS 0xc
39 #define CCI_ENABLE_SNOOP_REQ 0x1
40 #define CCI_ENABLE_DVM_REQ 0x2
41 #define CCI_ENABLE_REQ (CCI_ENABLE_SNOOP_REQ | CCI_ENABLE_DVM_REQ)
45 unsigned int nb_ace_lite
;
48 enum cci_ace_port_type
{
49 ACE_INVALID_PORT
= 0x0,
57 enum cci_ace_port_type type
;
58 struct device_node
*dn
;
61 static struct cci_ace_port
*ports
;
62 static unsigned int nb_cci_ports
;
64 static void __iomem
*cci_ctrl_base
;
65 static unsigned long cci_ctrl_phys
;
67 #ifdef CONFIG_HW_PERF_EVENTS
69 #define CCI_PMCR 0x0100
70 #define CCI_PID2 0x0fe8
72 #define CCI_PMCR_CEN 0x00000001
73 #define CCI_PMCR_NCNT_MASK 0x0000f800
74 #define CCI_PMCR_NCNT_SHIFT 11
76 #define CCI_PID2_REV_MASK 0xf0
77 #define CCI_PID2_REV_SHIFT 4
91 #define CCI_REV_R0_P4 4
92 #define CCI_REV_R1_P2 6
94 #define CCI_PMU_EVT_SEL 0x000
95 #define CCI_PMU_CNTR 0x004
96 #define CCI_PMU_CNTR_CTRL 0x008
97 #define CCI_PMU_OVRFLW 0x00c
99 #define CCI_PMU_OVRFLW_FLAG 1
101 #define CCI_PMU_CNTR_BASE(idx) ((idx) * SZ_4K)
104 * Instead of an event id to monitor CCI cycles, a dedicated counter is
105 * provided. Use 0xff to represent CCI cycles and hope that no future revisions
106 * make use of this event in hardware.
108 enum cci400_perf_events
{
109 CCI_PMU_CYCLES
= 0xff
112 #define CCI_PMU_EVENT_MASK 0xff
113 #define CCI_PMU_EVENT_SOURCE(event) ((event >> 5) & 0x7)
114 #define CCI_PMU_EVENT_CODE(event) (event & 0x1f)
116 #define CCI_PMU_MAX_HW_EVENTS 5 /* CCI PMU has 4 counters + 1 cycle counter */
118 #define CCI_PMU_CYCLE_CNTR_IDX 0
119 #define CCI_PMU_CNTR0_IDX 1
120 #define CCI_PMU_CNTR_LAST(cci_pmu) (CCI_PMU_CYCLE_CNTR_IDX + cci_pmu->num_events - 1)
123 * CCI PMU event id is an 8-bit value made of two parts - bits 7:5 for one of 8
124 * ports and bits 4:0 are event codes. There are different event codes
125 * associated with each port type.
127 * Additionally, the range of events associated with the port types changed
128 * between Rev0 and Rev1.
130 * The constants below define the range of valid codes for each port type for
131 * the different revisions and are used to validate the event to be monitored.
134 #define CCI_REV_R0_SLAVE_PORT_MIN_EV 0x00
135 #define CCI_REV_R0_SLAVE_PORT_MAX_EV 0x13
136 #define CCI_REV_R0_MASTER_PORT_MIN_EV 0x14
137 #define CCI_REV_R0_MASTER_PORT_MAX_EV 0x1a
139 #define CCI_REV_R1_SLAVE_PORT_MIN_EV 0x00
140 #define CCI_REV_R1_SLAVE_PORT_MAX_EV 0x14
141 #define CCI_REV_R1_MASTER_PORT_MIN_EV 0x00
142 #define CCI_REV_R1_MASTER_PORT_MAX_EV 0x11
144 struct pmu_port_event_ranges
{
151 static struct pmu_port_event_ranges port_event_range
[] = {
153 .slave_min
= CCI_REV_R0_SLAVE_PORT_MIN_EV
,
154 .slave_max
= CCI_REV_R0_SLAVE_PORT_MAX_EV
,
155 .master_min
= CCI_REV_R0_MASTER_PORT_MIN_EV
,
156 .master_max
= CCI_REV_R0_MASTER_PORT_MAX_EV
,
159 .slave_min
= CCI_REV_R1_SLAVE_PORT_MIN_EV
,
160 .slave_max
= CCI_REV_R1_SLAVE_PORT_MAX_EV
,
161 .master_min
= CCI_REV_R1_MASTER_PORT_MIN_EV
,
162 .master_max
= CCI_REV_R1_MASTER_PORT_MAX_EV
,
166 struct cci_pmu_drv_data
{
168 struct arm_pmu
*cci_pmu
;
170 int irqs
[CCI_PMU_MAX_HW_EVENTS
];
171 unsigned long active_irqs
;
172 struct perf_event
*events
[CCI_PMU_MAX_HW_EVENTS
];
173 unsigned long used_mask
[BITS_TO_LONGS(CCI_PMU_MAX_HW_EVENTS
)];
174 struct pmu_port_event_ranges
*port_ranges
;
175 struct pmu_hw_events hw_events
;
177 static struct cci_pmu_drv_data
*pmu
;
179 static bool is_duplicate_irq(int irq
, int *irqs
, int nr_irqs
)
183 for (i
= 0; i
< nr_irqs
; i
++)
190 static int probe_cci_revision(void)
193 rev
= readl_relaxed(cci_ctrl_base
+ CCI_PID2
) & CCI_PID2_REV_MASK
;
194 rev
>>= CCI_PID2_REV_SHIFT
;
196 if (rev
<= CCI_REV_R0_P4
)
198 else if (rev
<= CCI_REV_R1_P2
)
204 static struct pmu_port_event_ranges
*port_range_by_rev(void)
206 int rev
= probe_cci_revision();
211 return &port_event_range
[rev
];
214 static int pmu_is_valid_slave_event(u8 ev_code
)
216 return pmu
->port_ranges
->slave_min
<= ev_code
&&
217 ev_code
<= pmu
->port_ranges
->slave_max
;
220 static int pmu_is_valid_master_event(u8 ev_code
)
222 return pmu
->port_ranges
->master_min
<= ev_code
&&
223 ev_code
<= pmu
->port_ranges
->master_max
;
226 static int pmu_validate_hw_event(u8 hw_event
)
228 u8 ev_source
= CCI_PMU_EVENT_SOURCE(hw_event
);
229 u8 ev_code
= CCI_PMU_EVENT_CODE(hw_event
);
237 /* Slave Interface */
238 if (pmu_is_valid_slave_event(ev_code
))
244 /* Master Interface */
245 if (pmu_is_valid_master_event(ev_code
))
253 static int pmu_is_valid_counter(struct arm_pmu
*cci_pmu
, int idx
)
255 return CCI_PMU_CYCLE_CNTR_IDX
<= idx
&&
256 idx
<= CCI_PMU_CNTR_LAST(cci_pmu
);
259 static u32
pmu_read_register(int idx
, unsigned int offset
)
261 return readl_relaxed(pmu
->base
+ CCI_PMU_CNTR_BASE(idx
) + offset
);
264 static void pmu_write_register(u32 value
, int idx
, unsigned int offset
)
266 return writel_relaxed(value
, pmu
->base
+ CCI_PMU_CNTR_BASE(idx
) + offset
);
269 static void pmu_disable_counter(int idx
)
271 pmu_write_register(0, idx
, CCI_PMU_CNTR_CTRL
);
274 static void pmu_enable_counter(int idx
)
276 pmu_write_register(1, idx
, CCI_PMU_CNTR_CTRL
);
279 static void pmu_set_event(int idx
, unsigned long event
)
281 event
&= CCI_PMU_EVENT_MASK
;
282 pmu_write_register(event
, idx
, CCI_PMU_EVT_SEL
);
285 static u32
pmu_get_max_counters(void)
287 u32 n_cnts
= (readl_relaxed(cci_ctrl_base
+ CCI_PMCR
) &
288 CCI_PMCR_NCNT_MASK
) >> CCI_PMCR_NCNT_SHIFT
;
290 /* add 1 for cycle counter */
294 static struct pmu_hw_events
*pmu_get_hw_events(void)
296 return &pmu
->hw_events
;
299 static int pmu_get_event_idx(struct pmu_hw_events
*hw
, struct perf_event
*event
)
301 struct arm_pmu
*cci_pmu
= to_arm_pmu(event
->pmu
);
302 struct hw_perf_event
*hw_event
= &event
->hw
;
303 unsigned long cci_event
= hw_event
->config_base
& CCI_PMU_EVENT_MASK
;
306 if (cci_event
== CCI_PMU_CYCLES
) {
307 if (test_and_set_bit(CCI_PMU_CYCLE_CNTR_IDX
, hw
->used_mask
))
310 return CCI_PMU_CYCLE_CNTR_IDX
;
313 for (idx
= CCI_PMU_CNTR0_IDX
; idx
<= CCI_PMU_CNTR_LAST(cci_pmu
); ++idx
)
314 if (!test_and_set_bit(idx
, hw
->used_mask
))
317 /* No counters available */
321 static int pmu_map_event(struct perf_event
*event
)
324 u8 config
= event
->attr
.config
& CCI_PMU_EVENT_MASK
;
326 if (event
->attr
.type
< PERF_TYPE_MAX
)
329 if (config
== CCI_PMU_CYCLES
)
332 mapping
= pmu_validate_hw_event(config
);
337 static int pmu_request_irq(struct arm_pmu
*cci_pmu
, irq_handler_t handler
)
340 struct platform_device
*pmu_device
= cci_pmu
->plat_device
;
342 if (unlikely(!pmu_device
))
345 if (pmu
->nr_irqs
< 1) {
346 dev_err(&pmu_device
->dev
, "no irqs for CCI PMUs defined\n");
351 * Register all available CCI PMU interrupts. In the interrupt handler
352 * we iterate over the counters checking for interrupt source (the
353 * overflowing counter) and clear it.
355 * This should allow handling of non-unique interrupt for the counters.
357 for (i
= 0; i
< pmu
->nr_irqs
; i
++) {
358 int err
= request_irq(pmu
->irqs
[i
], handler
, IRQF_SHARED
,
359 "arm-cci-pmu", cci_pmu
);
361 dev_err(&pmu_device
->dev
, "unable to request IRQ%d for ARM CCI PMU counters\n",
366 set_bit(i
, &pmu
->active_irqs
);
372 static irqreturn_t
pmu_handle_irq(int irq_num
, void *dev
)
375 struct arm_pmu
*cci_pmu
= (struct arm_pmu
*)dev
;
376 struct pmu_hw_events
*events
= cci_pmu
->get_hw_events();
377 struct perf_sample_data data
;
378 struct pt_regs
*regs
;
379 int idx
, handled
= IRQ_NONE
;
381 raw_spin_lock_irqsave(&events
->pmu_lock
, flags
);
382 regs
= get_irq_regs();
384 * Iterate over counters and update the corresponding perf events.
385 * This should work regardless of whether we have per-counter overflow
386 * interrupt or a combined overflow interrupt.
388 for (idx
= CCI_PMU_CYCLE_CNTR_IDX
; idx
<= CCI_PMU_CNTR_LAST(cci_pmu
); idx
++) {
389 struct perf_event
*event
= events
->events
[idx
];
390 struct hw_perf_event
*hw_counter
;
395 hw_counter
= &event
->hw
;
397 /* Did this counter overflow? */
398 if (!pmu_read_register(idx
, CCI_PMU_OVRFLW
) & CCI_PMU_OVRFLW_FLAG
)
401 pmu_write_register(CCI_PMU_OVRFLW_FLAG
, idx
, CCI_PMU_OVRFLW
);
403 handled
= IRQ_HANDLED
;
405 armpmu_event_update(event
);
406 perf_sample_data_init(&data
, 0, hw_counter
->last_period
);
407 if (!armpmu_event_set_period(event
))
410 if (perf_event_overflow(event
, &data
, regs
))
411 cci_pmu
->disable(event
);
413 raw_spin_unlock_irqrestore(&events
->pmu_lock
, flags
);
415 return IRQ_RETVAL(handled
);
418 static void pmu_free_irq(struct arm_pmu
*cci_pmu
)
422 for (i
= 0; i
< pmu
->nr_irqs
; i
++) {
423 if (!test_and_clear_bit(i
, &pmu
->active_irqs
))
426 free_irq(pmu
->irqs
[i
], cci_pmu
);
430 static void pmu_enable_event(struct perf_event
*event
)
433 struct arm_pmu
*cci_pmu
= to_arm_pmu(event
->pmu
);
434 struct pmu_hw_events
*events
= cci_pmu
->get_hw_events();
435 struct hw_perf_event
*hw_counter
= &event
->hw
;
436 int idx
= hw_counter
->idx
;
438 if (unlikely(!pmu_is_valid_counter(cci_pmu
, idx
))) {
439 dev_err(&cci_pmu
->plat_device
->dev
, "Invalid CCI PMU counter %d\n", idx
);
443 raw_spin_lock_irqsave(&events
->pmu_lock
, flags
);
445 /* Configure the event to count, unless you are counting cycles */
446 if (idx
!= CCI_PMU_CYCLE_CNTR_IDX
)
447 pmu_set_event(idx
, hw_counter
->config_base
);
449 pmu_enable_counter(idx
);
451 raw_spin_unlock_irqrestore(&events
->pmu_lock
, flags
);
454 static void pmu_disable_event(struct perf_event
*event
)
456 struct arm_pmu
*cci_pmu
= to_arm_pmu(event
->pmu
);
457 struct hw_perf_event
*hw_counter
= &event
->hw
;
458 int idx
= hw_counter
->idx
;
460 if (unlikely(!pmu_is_valid_counter(cci_pmu
, idx
))) {
461 dev_err(&cci_pmu
->plat_device
->dev
, "Invalid CCI PMU counter %d\n", idx
);
465 pmu_disable_counter(idx
);
468 static void pmu_start(struct arm_pmu
*cci_pmu
)
472 struct pmu_hw_events
*events
= cci_pmu
->get_hw_events();
474 raw_spin_lock_irqsave(&events
->pmu_lock
, flags
);
476 /* Enable all the PMU counters. */
477 val
= readl_relaxed(cci_ctrl_base
+ CCI_PMCR
) | CCI_PMCR_CEN
;
478 writel(val
, cci_ctrl_base
+ CCI_PMCR
);
480 raw_spin_unlock_irqrestore(&events
->pmu_lock
, flags
);
483 static void pmu_stop(struct arm_pmu
*cci_pmu
)
487 struct pmu_hw_events
*events
= cci_pmu
->get_hw_events();
489 raw_spin_lock_irqsave(&events
->pmu_lock
, flags
);
491 /* Disable all the PMU counters. */
492 val
= readl_relaxed(cci_ctrl_base
+ CCI_PMCR
) & ~CCI_PMCR_CEN
;
493 writel(val
, cci_ctrl_base
+ CCI_PMCR
);
495 raw_spin_unlock_irqrestore(&events
->pmu_lock
, flags
);
498 static u32
pmu_read_counter(struct perf_event
*event
)
500 struct arm_pmu
*cci_pmu
= to_arm_pmu(event
->pmu
);
501 struct hw_perf_event
*hw_counter
= &event
->hw
;
502 int idx
= hw_counter
->idx
;
505 if (unlikely(!pmu_is_valid_counter(cci_pmu
, idx
))) {
506 dev_err(&cci_pmu
->plat_device
->dev
, "Invalid CCI PMU counter %d\n", idx
);
509 value
= pmu_read_register(idx
, CCI_PMU_CNTR
);
514 static void pmu_write_counter(struct perf_event
*event
, u32 value
)
516 struct arm_pmu
*cci_pmu
= to_arm_pmu(event
->pmu
);
517 struct hw_perf_event
*hw_counter
= &event
->hw
;
518 int idx
= hw_counter
->idx
;
520 if (unlikely(!pmu_is_valid_counter(cci_pmu
, idx
)))
521 dev_err(&cci_pmu
->plat_device
->dev
, "Invalid CCI PMU counter %d\n", idx
);
523 pmu_write_register(value
, idx
, CCI_PMU_CNTR
);
526 static int cci_pmu_init(struct arm_pmu
*cci_pmu
, struct platform_device
*pdev
)
528 *cci_pmu
= (struct arm_pmu
){
530 .max_period
= (1LLU << 32) - 1,
531 .get_hw_events
= pmu_get_hw_events
,
532 .get_event_idx
= pmu_get_event_idx
,
533 .map_event
= pmu_map_event
,
534 .request_irq
= pmu_request_irq
,
535 .handle_irq
= pmu_handle_irq
,
536 .free_irq
= pmu_free_irq
,
537 .enable
= pmu_enable_event
,
538 .disable
= pmu_disable_event
,
541 .read_counter
= pmu_read_counter
,
542 .write_counter
= pmu_write_counter
,
545 cci_pmu
->plat_device
= pdev
;
546 cci_pmu
->num_events
= pmu_get_max_counters();
548 return armpmu_register(cci_pmu
, -1);
551 static const struct of_device_id arm_cci_pmu_matches
[] = {
553 .compatible
= "arm,cci-400-pmu",
558 static int cci_pmu_probe(struct platform_device
*pdev
)
560 struct resource
*res
;
563 pmu
= devm_kzalloc(&pdev
->dev
, sizeof(*pmu
), GFP_KERNEL
);
567 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
568 pmu
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
569 if (IS_ERR(pmu
->base
))
573 * CCI PMU has 5 overflow signals - one per counter; but some may be tied
574 * together to a common interrupt.
577 for (i
= 0; i
< CCI_PMU_MAX_HW_EVENTS
; i
++) {
578 irq
= platform_get_irq(pdev
, i
);
582 if (is_duplicate_irq(irq
, pmu
->irqs
, pmu
->nr_irqs
))
585 pmu
->irqs
[pmu
->nr_irqs
++] = irq
;
589 * Ensure that the device tree has as many interrupts as the number
592 if (i
< CCI_PMU_MAX_HW_EVENTS
) {
593 dev_warn(&pdev
->dev
, "In-correct number of interrupts: %d, should be %d\n",
594 i
, CCI_PMU_MAX_HW_EVENTS
);
598 pmu
->port_ranges
= port_range_by_rev();
599 if (!pmu
->port_ranges
) {
600 dev_warn(&pdev
->dev
, "CCI PMU version not supported\n");
604 pmu
->cci_pmu
= devm_kzalloc(&pdev
->dev
, sizeof(*(pmu
->cci_pmu
)), GFP_KERNEL
);
608 pmu
->hw_events
.events
= pmu
->events
;
609 pmu
->hw_events
.used_mask
= pmu
->used_mask
;
610 raw_spin_lock_init(&pmu
->hw_events
.pmu_lock
);
612 ret
= cci_pmu_init(pmu
->cci_pmu
, pdev
);
619 static int cci_platform_probe(struct platform_device
*pdev
)
624 return of_platform_populate(pdev
->dev
.of_node
, NULL
, NULL
, &pdev
->dev
);
627 #endif /* CONFIG_HW_PERF_EVENTS */
635 * Use the port MSB as valid flag, shift can be made dynamic
636 * by computing number of bits required for port indexes.
637 * Code disabling CCI cpu ports runs with D-cache invalidated
638 * and SCTLR bit clear so data accesses must be kept to a minimum
639 * to improve performance; for now shift is left static to
640 * avoid one more data access while disabling the CCI port.
642 #define PORT_VALID_SHIFT 31
643 #define PORT_VALID (0x1 << PORT_VALID_SHIFT)
645 static inline void init_cpu_port(struct cpu_port
*port
, u32 index
, u64 mpidr
)
647 port
->port
= PORT_VALID
| index
;
651 static inline bool cpu_port_is_valid(struct cpu_port
*port
)
653 return !!(port
->port
& PORT_VALID
);
656 static inline bool cpu_port_match(struct cpu_port
*port
, u64 mpidr
)
658 return port
->mpidr
== (mpidr
& MPIDR_HWID_BITMASK
);
661 static struct cpu_port cpu_port
[NR_CPUS
];
664 * __cci_ace_get_port - Function to retrieve the port index connected to
667 * @dn: device node of the device to look-up
671 * - CCI port index if success
672 * - -ENODEV if failure
674 static int __cci_ace_get_port(struct device_node
*dn
, int type
)
678 struct device_node
*cci_portn
;
680 cci_portn
= of_parse_phandle(dn
, "cci-control-port", 0);
681 for (i
= 0; i
< nb_cci_ports
; i
++) {
682 ace_match
= ports
[i
].type
== type
;
683 if (ace_match
&& cci_portn
== ports
[i
].dn
)
689 int cci_ace_get_port(struct device_node
*dn
)
691 return __cci_ace_get_port(dn
, ACE_LITE_PORT
);
693 EXPORT_SYMBOL_GPL(cci_ace_get_port
);
695 static void cci_ace_init_ports(void)
698 struct device_node
*cpun
;
701 * Port index look-up speeds up the function disabling ports by CPU,
702 * since the logical to port index mapping is done once and does
703 * not change after system boot.
704 * The stashed index array is initialized for all possible CPUs
707 for_each_possible_cpu(cpu
) {
708 /* too early to use cpu->of_node */
709 cpun
= of_get_cpu_node(cpu
, NULL
);
711 if (WARN(!cpun
, "Missing cpu device node\n"))
714 port
= __cci_ace_get_port(cpun
, ACE_PORT
);
718 init_cpu_port(&cpu_port
[cpu
], port
, cpu_logical_map(cpu
));
721 for_each_possible_cpu(cpu
) {
722 WARN(!cpu_port_is_valid(&cpu_port
[cpu
]),
723 "CPU %u does not have an associated CCI port\n",
728 * Functions to enable/disable a CCI interconnect slave port
730 * They are called by low-level power management code to disable slave
731 * interfaces snoops and DVM broadcast.
732 * Since they may execute with cache data allocation disabled and
733 * after the caches have been cleaned and invalidated the functions provide
734 * no explicit locking since they may run with D-cache disabled, so normal
735 * cacheable kernel locks based on ldrex/strex may not work.
736 * Locking has to be provided by BSP implementations to ensure proper
741 * cci_port_control() - function to control a CCI port
743 * @port: index of the port to setup
744 * @enable: if true enables the port, if false disables it
746 static void notrace
cci_port_control(unsigned int port
, bool enable
)
748 void __iomem
*base
= ports
[port
].base
;
750 writel_relaxed(enable
? CCI_ENABLE_REQ
: 0, base
+ CCI_PORT_CTRL
);
752 * This function is called from power down procedures
753 * and must not execute any instruction that might
754 * cause the processor to be put in a quiescent state
755 * (eg wfi). Hence, cpu_relax() can not be added to this
756 * read loop to optimize power, since it might hide possibly
757 * disruptive operations.
759 while (readl_relaxed(cci_ctrl_base
+ CCI_CTRL_STATUS
) & 0x1)
764 * cci_disable_port_by_cpu() - function to disable a CCI port by CPU
767 * @mpidr: mpidr of the CPU whose CCI port should be disabled
769 * Disabling a CCI port for a CPU implies disabling the CCI port
770 * controlling that CPU cluster. Code disabling CPU CCI ports
771 * must make sure that the CPU running the code is the last active CPU
772 * in the cluster ie all other CPUs are quiescent in a low power state.
776 * -ENODEV on port look-up failure
778 int notrace
cci_disable_port_by_cpu(u64 mpidr
)
782 for (cpu
= 0; cpu
< nr_cpu_ids
; cpu
++) {
783 is_valid
= cpu_port_is_valid(&cpu_port
[cpu
]);
784 if (is_valid
&& cpu_port_match(&cpu_port
[cpu
], mpidr
)) {
785 cci_port_control(cpu_port
[cpu
].port
, false);
791 EXPORT_SYMBOL_GPL(cci_disable_port_by_cpu
);
794 * cci_enable_port_for_self() - enable a CCI port for calling CPU
796 * Enabling a CCI port for the calling CPU implies enabling the CCI
797 * port controlling that CPU's cluster. Caller must make sure that the
798 * CPU running the code is the first active CPU in the cluster and all
799 * other CPUs are quiescent in a low power state or waiting for this CPU
800 * to complete the CCI initialization.
802 * Because this is called when the MMU is still off and with no stack,
803 * the code must be position independent and ideally rely on callee
804 * clobbered registers only. To achieve this we must code this function
805 * entirely in assembler.
807 * On success this returns with the proper CCI port enabled. In case of
808 * any failure this never returns as the inability to enable the CCI is
809 * fatal and there is no possible recovery at this stage.
811 asmlinkage
void __naked
cci_enable_port_for_self(void)
815 " mrc p15, 0, r0, c0, c0, 5 @ get MPIDR value \n"
816 " and r0, r0, #"__stringify(MPIDR_HWID_BITMASK
)" \n"
819 " add r1, r1, r2 @ &cpu_port \n"
820 " add ip, r1, %[sizeof_cpu_port] \n"
822 /* Loop over the cpu_port array looking for a matching MPIDR */
823 "1: ldr r2, [r1, %[offsetof_cpu_port_mpidr_lsb]] \n"
824 " cmp r2, r0 @ compare MPIDR \n"
827 /* Found a match, now test port validity */
828 " ldr r3, [r1, %[offsetof_cpu_port_port]] \n"
829 " tst r3, #"__stringify(PORT_VALID
)" \n"
832 /* no match, loop with the next cpu_port entry */
833 "2: add r1, r1, %[sizeof_struct_cpu_port] \n"
834 " cmp r1, ip @ done? \n"
837 /* CCI port not found -- cheaply try to stall this CPU */
838 "cci_port_not_found: \n"
841 " b cci_port_not_found \n"
843 /* Use matched port index to look up the corresponding ports entry */
844 "3: bic r3, r3, #"__stringify(PORT_VALID
)" \n"
846 " ldmia r0, {r1, r2} \n"
847 " sub r1, r1, r0 @ virt - phys \n"
848 " ldr r0, [r0, r2] @ *(&ports) \n"
849 " mov r2, %[sizeof_struct_ace_port] \n"
850 " mla r0, r2, r3, r0 @ &ports[index] \n"
851 " sub r0, r0, r1 @ virt_to_phys() \n"
853 /* Enable the CCI port */
854 " ldr r0, [r0, %[offsetof_port_phys]] \n"
855 " mov r3, %[cci_enable_req]\n"
856 " str r3, [r0, #"__stringify(CCI_PORT_CTRL
)"] \n"
858 /* poll the status reg for completion */
861 " ldr r0, [r0, r1] @ cci_ctrl_base \n"
862 "4: ldr r1, [r0, #"__stringify(CCI_CTRL_STATUS
)"] \n"
863 " tst r1, %[cci_control_status_bits] \n"
870 "5: .word cpu_port - . \n"
872 " .word ports - 6b \n"
873 "7: .word cci_ctrl_phys - . \n"
875 [sizeof_cpu_port
] "i" (sizeof(cpu_port
)),
876 [cci_enable_req
] "i" cpu_to_le32(CCI_ENABLE_REQ
),
877 [cci_control_status_bits
] "i" cpu_to_le32(1),
879 [offsetof_cpu_port_mpidr_lsb
] "i" (offsetof(struct cpu_port
, mpidr
)),
881 [offsetof_cpu_port_mpidr_lsb
] "i" (offsetof(struct cpu_port
, mpidr
)+4),
883 [offsetof_cpu_port_port
] "i" (offsetof(struct cpu_port
, port
)),
884 [sizeof_struct_cpu_port
] "i" (sizeof(struct cpu_port
)),
885 [sizeof_struct_ace_port
] "i" (sizeof(struct cci_ace_port
)),
886 [offsetof_port_phys
] "i" (offsetof(struct cci_ace_port
, phys
)) );
892 * __cci_control_port_by_device() - function to control a CCI port by device
895 * @dn: device node pointer of the device whose CCI port should be
897 * @enable: if true enables the port, if false disables it
901 * -ENODEV on port look-up failure
903 int notrace
__cci_control_port_by_device(struct device_node
*dn
, bool enable
)
910 port
= __cci_ace_get_port(dn
, ACE_LITE_PORT
);
911 if (WARN_ONCE(port
< 0, "node %s ACE lite port look-up failure\n",
914 cci_port_control(port
, enable
);
917 EXPORT_SYMBOL_GPL(__cci_control_port_by_device
);
920 * __cci_control_port_by_index() - function to control a CCI port by port index
922 * @port: port index previously retrieved with cci_ace_get_port()
923 * @enable: if true enables the port, if false disables it
927 * -ENODEV on port index out of range
928 * -EPERM if operation carried out on an ACE PORT
930 int notrace
__cci_control_port_by_index(u32 port
, bool enable
)
932 if (port
>= nb_cci_ports
|| ports
[port
].type
== ACE_INVALID_PORT
)
935 * CCI control for ports connected to CPUS is extremely fragile
936 * and must be made to go through a specific and controlled
937 * interface (ie cci_disable_port_by_cpu(); control by general purpose
938 * indexing is therefore disabled for ACE ports.
940 if (ports
[port
].type
== ACE_PORT
)
943 cci_port_control(port
, enable
);
946 EXPORT_SYMBOL_GPL(__cci_control_port_by_index
);
948 static const struct cci_nb_ports cci400_ports
= {
953 static const struct of_device_id arm_cci_matches
[] = {
954 {.compatible
= "arm,cci-400", .data
= &cci400_ports
},
958 static const struct of_device_id arm_cci_ctrl_if_matches
[] = {
959 {.compatible
= "arm,cci-400-ctrl-if", },
963 static int cci_probe(void)
965 struct cci_nb_ports
const *cci_config
;
966 int ret
, i
, nb_ace
= 0, nb_ace_lite
= 0;
967 struct device_node
*np
, *cp
;
969 const char *match_str
;
972 np
= of_find_matching_node(NULL
, arm_cci_matches
);
976 cci_config
= of_match_node(arm_cci_matches
, np
)->data
;
980 nb_cci_ports
= cci_config
->nb_ace
+ cci_config
->nb_ace_lite
;
982 ports
= kcalloc(nb_cci_ports
, sizeof(*ports
), GFP_KERNEL
);
986 ret
= of_address_to_resource(np
, 0, &res
);
988 cci_ctrl_base
= ioremap(res
.start
, resource_size(&res
));
989 cci_ctrl_phys
= res
.start
;
991 if (ret
|| !cci_ctrl_base
) {
992 WARN(1, "unable to ioremap CCI ctrl\n");
997 for_each_child_of_node(np
, cp
) {
998 if (!of_match_node(arm_cci_ctrl_if_matches
, cp
))
1001 i
= nb_ace
+ nb_ace_lite
;
1003 if (i
>= nb_cci_ports
)
1006 if (of_property_read_string(cp
, "interface-type",
1008 WARN(1, "node %s missing interface-type property\n",
1012 is_ace
= strcmp(match_str
, "ace") == 0;
1013 if (!is_ace
&& strcmp(match_str
, "ace-lite")) {
1014 WARN(1, "node %s containing invalid interface-type property, skipping it\n",
1019 ret
= of_address_to_resource(cp
, 0, &res
);
1021 ports
[i
].base
= ioremap(res
.start
, resource_size(&res
));
1022 ports
[i
].phys
= res
.start
;
1024 if (ret
|| !ports
[i
].base
) {
1025 WARN(1, "unable to ioremap CCI port %d\n", i
);
1030 if (WARN_ON(nb_ace
>= cci_config
->nb_ace
))
1032 ports
[i
].type
= ACE_PORT
;
1035 if (WARN_ON(nb_ace_lite
>= cci_config
->nb_ace_lite
))
1037 ports
[i
].type
= ACE_LITE_PORT
;
1043 /* initialize a stashed array of ACE ports to speed-up look-up */
1044 cci_ace_init_ports();
1047 * Multi-cluster systems may need this data when non-coherent, during
1048 * cluster power-up/power-down. Make sure it reaches main memory.
1050 sync_cache_w(&cci_ctrl_base
);
1051 sync_cache_w(&cci_ctrl_phys
);
1052 sync_cache_w(&ports
);
1053 sync_cache_w(&cpu_port
);
1054 __sync_cache_range_w(ports
, sizeof(*ports
) * nb_cci_ports
);
1055 pr_info("ARM CCI driver probed\n");
1064 static int cci_init_status
= -EAGAIN
;
1065 static DEFINE_MUTEX(cci_probing
);
1067 static int cci_init(void)
1069 if (cci_init_status
!= -EAGAIN
)
1070 return cci_init_status
;
1072 mutex_lock(&cci_probing
);
1073 if (cci_init_status
== -EAGAIN
)
1074 cci_init_status
= cci_probe();
1075 mutex_unlock(&cci_probing
);
1076 return cci_init_status
;
1079 #ifdef CONFIG_HW_PERF_EVENTS
1080 static struct platform_driver cci_pmu_driver
= {
1082 .name
= DRIVER_NAME_PMU
,
1083 .of_match_table
= arm_cci_pmu_matches
,
1085 .probe
= cci_pmu_probe
,
1088 static struct platform_driver cci_platform_driver
= {
1090 .name
= DRIVER_NAME
,
1091 .of_match_table
= arm_cci_matches
,
1093 .probe
= cci_platform_probe
,
1096 static int __init
cci_platform_init(void)
1100 ret
= platform_driver_register(&cci_pmu_driver
);
1104 return platform_driver_register(&cci_platform_driver
);
1109 static int __init
cci_platform_init(void)
1116 * To sort out early init calls ordering a helper function is provided to
1117 * check if the CCI driver has beed initialized. Function check if the driver
1118 * has been initialized, if not it calls the init function that probes
1119 * the driver and updates the return value.
1121 bool cci_probed(void)
1123 return cci_init() == 0;
1125 EXPORT_SYMBOL_GPL(cci_probed
);
1127 early_initcall(cci_init
);
1128 core_initcall(cci_platform_init
);
1129 MODULE_LICENSE("GPL");
1130 MODULE_DESCRIPTION("ARM CCI support");