xref: /rk3399_ARM-atf/drivers/arm/gic/v2/gicv2_main.c (revision dcf01a0a8dddde79b8315c30395f40f9afa85af4)
1464ce2bbSSoby Mathew /*
27fabe1a8SRoberto Vargas  * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
3464ce2bbSSoby Mathew  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
5464ce2bbSSoby Mathew  */
6464ce2bbSSoby Mathew 
7464ce2bbSSoby Mathew #include <arch.h>
8464ce2bbSSoby Mathew #include <arch_helpers.h>
9464ce2bbSSoby Mathew #include <assert.h>
10464ce2bbSSoby Mathew #include <debug.h>
11464ce2bbSSoby Mathew #include <gic_common.h>
12464ce2bbSSoby Mathew #include <gicv2.h>
13c639e8ebSJeenu Viswambharan #include <interrupt_props.h>
1474dce7faSJeenu Viswambharan #include <spinlock.h>
15e9ec3cecSSoby Mathew #include "../common/gic_common_private.h"
16464ce2bbSSoby Mathew #include "gicv2_private.h"
17464ce2bbSSoby Mathew 
18464ce2bbSSoby Mathew static const gicv2_driver_data_t *driver_data;
19464ce2bbSSoby Mathew 
2074dce7faSJeenu Viswambharan /*
2174dce7faSJeenu Viswambharan  * Spinlock to guard registers needing read-modify-write. APIs protected by this
2274dce7faSJeenu Viswambharan  * spinlock are used either at boot time (when only a single CPU is active), or
2374dce7faSJeenu Viswambharan  * when the system is fully coherent.
2474dce7faSJeenu Viswambharan  */
257fabe1a8SRoberto Vargas static spinlock_t gic_lock;
2674dce7faSJeenu Viswambharan 
27464ce2bbSSoby Mathew /*******************************************************************************
28464ce2bbSSoby Mathew  * Enable secure interrupts and use FIQs to route them. Disable legacy bypass
29464ce2bbSSoby Mathew  * and set the priority mask register to allow all interrupts to trickle in.
30464ce2bbSSoby Mathew  ******************************************************************************/
31464ce2bbSSoby Mathew void gicv2_cpuif_enable(void)
32464ce2bbSSoby Mathew {
33464ce2bbSSoby Mathew 	unsigned int val;
34464ce2bbSSoby Mathew 
35464ce2bbSSoby Mathew 	assert(driver_data);
36464ce2bbSSoby Mathew 	assert(driver_data->gicc_base);
37464ce2bbSSoby Mathew 
38464ce2bbSSoby Mathew 	/*
39464ce2bbSSoby Mathew 	 * Enable the Group 0 interrupts, FIQEn and disable Group 0/1
40464ce2bbSSoby Mathew 	 * bypass.
41464ce2bbSSoby Mathew 	 */
42464ce2bbSSoby Mathew 	val = CTLR_ENABLE_G0_BIT | FIQ_EN_BIT | FIQ_BYP_DIS_GRP0;
43464ce2bbSSoby Mathew 	val |= IRQ_BYP_DIS_GRP0 | FIQ_BYP_DIS_GRP1 | IRQ_BYP_DIS_GRP1;
44464ce2bbSSoby Mathew 
45464ce2bbSSoby Mathew 	/* Program the idle priority in the PMR */
46464ce2bbSSoby Mathew 	gicc_write_pmr(driver_data->gicc_base, GIC_PRI_MASK);
47464ce2bbSSoby Mathew 	gicc_write_ctlr(driver_data->gicc_base, val);
48464ce2bbSSoby Mathew }
49464ce2bbSSoby Mathew 
50464ce2bbSSoby Mathew /*******************************************************************************
51464ce2bbSSoby Mathew  * Place the cpu interface in a state where it can never make a cpu exit wfi as
52464ce2bbSSoby Mathew  * as result of an asserted interrupt. This is critical for powering down a cpu
53464ce2bbSSoby Mathew  ******************************************************************************/
54464ce2bbSSoby Mathew void gicv2_cpuif_disable(void)
55464ce2bbSSoby Mathew {
56464ce2bbSSoby Mathew 	unsigned int val;
57464ce2bbSSoby Mathew 
58464ce2bbSSoby Mathew 	assert(driver_data);
59464ce2bbSSoby Mathew 	assert(driver_data->gicc_base);
60464ce2bbSSoby Mathew 
61464ce2bbSSoby Mathew 	/* Disable secure, non-secure interrupts and disable their bypass */
62464ce2bbSSoby Mathew 	val = gicc_read_ctlr(driver_data->gicc_base);
63464ce2bbSSoby Mathew 	val &= ~(CTLR_ENABLE_G0_BIT | CTLR_ENABLE_G1_BIT);
64464ce2bbSSoby Mathew 	val |= FIQ_BYP_DIS_GRP1 | FIQ_BYP_DIS_GRP0;
65464ce2bbSSoby Mathew 	val |= IRQ_BYP_DIS_GRP0 | IRQ_BYP_DIS_GRP1;
66464ce2bbSSoby Mathew 	gicc_write_ctlr(driver_data->gicc_base, val);
67464ce2bbSSoby Mathew }
68464ce2bbSSoby Mathew 
69464ce2bbSSoby Mathew /*******************************************************************************
70464ce2bbSSoby Mathew  * Per cpu gic distributor setup which will be done by all cpus after a cold
71464ce2bbSSoby Mathew  * boot/hotplug. This marks out the secure SPIs and PPIs & enables them.
72464ce2bbSSoby Mathew  ******************************************************************************/
73464ce2bbSSoby Mathew void gicv2_pcpu_distif_init(void)
74464ce2bbSSoby Mathew {
75385f1dbbSJeenu Viswambharan 	unsigned int ctlr;
76385f1dbbSJeenu Viswambharan 
77464ce2bbSSoby Mathew 	assert(driver_data);
78464ce2bbSSoby Mathew 	assert(driver_data->gicd_base);
79464ce2bbSSoby Mathew 
80c639e8ebSJeenu Viswambharan #if !ERROR_DEPRECATED
81c639e8ebSJeenu Viswambharan 	if (driver_data->interrupt_props != NULL) {
82c639e8ebSJeenu Viswambharan #endif
83c639e8ebSJeenu Viswambharan 		gicv2_secure_ppi_sgi_setup_props(driver_data->gicd_base,
84c639e8ebSJeenu Viswambharan 				driver_data->interrupt_props,
85c639e8ebSJeenu Viswambharan 				driver_data->interrupt_props_num);
86c639e8ebSJeenu Viswambharan #if !ERROR_DEPRECATED
87c639e8ebSJeenu Viswambharan 	} else {
88*dcf01a0aSDan Handley 		/*
89*dcf01a0aSDan Handley 		 * Suppress deprecated declaration warnings in compatibility
90*dcf01a0aSDan Handley 		 * function
91*dcf01a0aSDan Handley 		 */
92*dcf01a0aSDan Handley #pragma GCC diagnostic push
93*dcf01a0aSDan Handley #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
94c639e8ebSJeenu Viswambharan 		assert(driver_data->g0_interrupt_array);
95464ce2bbSSoby Mathew 		gicv2_secure_ppi_sgi_setup(driver_data->gicd_base,
96464ce2bbSSoby Mathew 				driver_data->g0_interrupt_num,
97464ce2bbSSoby Mathew 				driver_data->g0_interrupt_array);
98*dcf01a0aSDan Handley #pragma GCC diagnostic pop
99464ce2bbSSoby Mathew 	}
100c639e8ebSJeenu Viswambharan #endif
101385f1dbbSJeenu Viswambharan 
102385f1dbbSJeenu Viswambharan 	/* Enable G0 interrupts if not already */
103385f1dbbSJeenu Viswambharan 	ctlr = gicd_read_ctlr(driver_data->gicd_base);
104385f1dbbSJeenu Viswambharan 	if ((ctlr & CTLR_ENABLE_G0_BIT) == 0) {
105385f1dbbSJeenu Viswambharan 		gicd_write_ctlr(driver_data->gicd_base,
106385f1dbbSJeenu Viswambharan 				ctlr | CTLR_ENABLE_G0_BIT);
107385f1dbbSJeenu Viswambharan 	}
108c639e8ebSJeenu Viswambharan }
109464ce2bbSSoby Mathew 
110464ce2bbSSoby Mathew /*******************************************************************************
111464ce2bbSSoby Mathew  * Global gic distributor init which will be done by the primary cpu after a
112464ce2bbSSoby Mathew  * cold boot. It marks out the secure SPIs, PPIs & SGIs and enables them. It
113464ce2bbSSoby Mathew  * then enables the secure GIC distributor interface.
114464ce2bbSSoby Mathew  ******************************************************************************/
115464ce2bbSSoby Mathew void gicv2_distif_init(void)
116464ce2bbSSoby Mathew {
117464ce2bbSSoby Mathew 	unsigned int ctlr;
118464ce2bbSSoby Mathew 
119464ce2bbSSoby Mathew 	assert(driver_data);
120464ce2bbSSoby Mathew 	assert(driver_data->gicd_base);
121464ce2bbSSoby Mathew 
122464ce2bbSSoby Mathew 	/* Disable the distributor before going further */
123464ce2bbSSoby Mathew 	ctlr = gicd_read_ctlr(driver_data->gicd_base);
124464ce2bbSSoby Mathew 	gicd_write_ctlr(driver_data->gicd_base,
125464ce2bbSSoby Mathew 			ctlr & ~(CTLR_ENABLE_G0_BIT | CTLR_ENABLE_G1_BIT));
126464ce2bbSSoby Mathew 
127464ce2bbSSoby Mathew 	/* Set the default attribute of all SPIs */
128464ce2bbSSoby Mathew 	gicv2_spis_configure_defaults(driver_data->gicd_base);
129464ce2bbSSoby Mathew 
130c639e8ebSJeenu Viswambharan #if !ERROR_DEPRECATED
131c639e8ebSJeenu Viswambharan 	if (driver_data->interrupt_props != NULL) {
132c639e8ebSJeenu Viswambharan #endif
133c639e8ebSJeenu Viswambharan 		gicv2_secure_spis_configure_props(driver_data->gicd_base,
134c639e8ebSJeenu Viswambharan 				driver_data->interrupt_props,
135c639e8ebSJeenu Viswambharan 				driver_data->interrupt_props_num);
136c639e8ebSJeenu Viswambharan #if !ERROR_DEPRECATED
137c639e8ebSJeenu Viswambharan 	} else {
138*dcf01a0aSDan Handley 		/*
139*dcf01a0aSDan Handley 		 * Suppress deprecated declaration warnings in compatibility
140*dcf01a0aSDan Handley 		 * function
141*dcf01a0aSDan Handley 		 */
142*dcf01a0aSDan Handley #pragma GCC diagnostic push
143*dcf01a0aSDan Handley #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
144*dcf01a0aSDan Handley 
145c639e8ebSJeenu Viswambharan 		assert(driver_data->g0_interrupt_array);
146c639e8ebSJeenu Viswambharan 
147464ce2bbSSoby Mathew 		/* Configure the G0 SPIs */
148464ce2bbSSoby Mathew 		gicv2_secure_spis_configure(driver_data->gicd_base,
149464ce2bbSSoby Mathew 				driver_data->g0_interrupt_num,
150464ce2bbSSoby Mathew 				driver_data->g0_interrupt_array);
151*dcf01a0aSDan Handley #pragma GCC diagnostic pop
152c639e8ebSJeenu Viswambharan 	}
153c639e8ebSJeenu Viswambharan #endif
154464ce2bbSSoby Mathew 
155464ce2bbSSoby Mathew 	/* Re-enable the secure SPIs now that they have been configured */
156464ce2bbSSoby Mathew 	gicd_write_ctlr(driver_data->gicd_base, ctlr | CTLR_ENABLE_G0_BIT);
157464ce2bbSSoby Mathew }
158464ce2bbSSoby Mathew 
159464ce2bbSSoby Mathew /*******************************************************************************
160464ce2bbSSoby Mathew  * Initialize the ARM GICv2 driver with the provided platform inputs
161464ce2bbSSoby Mathew  ******************************************************************************/
162464ce2bbSSoby Mathew void gicv2_driver_init(const gicv2_driver_data_t *plat_driver_data)
163464ce2bbSSoby Mathew {
164464ce2bbSSoby Mathew 	unsigned int gic_version;
165464ce2bbSSoby Mathew 	assert(plat_driver_data);
166464ce2bbSSoby Mathew 	assert(plat_driver_data->gicd_base);
167464ce2bbSSoby Mathew 	assert(plat_driver_data->gicc_base);
168464ce2bbSSoby Mathew 
169c639e8ebSJeenu Viswambharan #if !ERROR_DEPRECATED
170c639e8ebSJeenu Viswambharan 	if (plat_driver_data->interrupt_props == NULL) {
171c639e8ebSJeenu Viswambharan 		/* Interrupt properties array size must be 0 */
172c639e8ebSJeenu Viswambharan 		assert(plat_driver_data->interrupt_props_num == 0);
173c639e8ebSJeenu Viswambharan 
174*dcf01a0aSDan Handley 		/*
175*dcf01a0aSDan Handley 		 * Suppress deprecated declaration warnings in compatibility
176*dcf01a0aSDan Handley 		 * function
177*dcf01a0aSDan Handley 		 */
178*dcf01a0aSDan Handley #pragma GCC diagnostic push
179*dcf01a0aSDan Handley #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
180*dcf01a0aSDan Handley 
181c639e8ebSJeenu Viswambharan 		/* The platform should provide a list of secure interrupts */
182464ce2bbSSoby Mathew 		assert(plat_driver_data->g0_interrupt_array);
183464ce2bbSSoby Mathew 
184464ce2bbSSoby Mathew 		/*
185c639e8ebSJeenu Viswambharan 		 * If there are no interrupts of a particular type, then the
186c639e8ebSJeenu Viswambharan 		 * number of interrupts of that type should be 0 and vice-versa.
187464ce2bbSSoby Mathew 		 */
188464ce2bbSSoby Mathew 		assert(plat_driver_data->g0_interrupt_array ?
189464ce2bbSSoby Mathew 				plat_driver_data->g0_interrupt_num :
190464ce2bbSSoby Mathew 				plat_driver_data->g0_interrupt_num == 0);
191*dcf01a0aSDan Handley #pragma GCC diagnostic pop
192*dcf01a0aSDan Handley 
193*dcf01a0aSDan Handley 		WARN("Using deprecated integer interrupt array in "
194*dcf01a0aSDan Handley 		     "gicv2_driver_data_t\n");
195*dcf01a0aSDan Handley 		WARN("Please migrate to using an interrupt_prop_t array\n");
196c639e8ebSJeenu Viswambharan 	}
197c639e8ebSJeenu Viswambharan #else
198c639e8ebSJeenu Viswambharan 	assert(plat_driver_data->interrupt_props != NULL);
199c639e8ebSJeenu Viswambharan 	assert(plat_driver_data->interrupt_props_num > 0);
200c639e8ebSJeenu Viswambharan #endif
201464ce2bbSSoby Mathew 
202464ce2bbSSoby Mathew 	/* Ensure that this is a GICv2 system */
203464ce2bbSSoby Mathew 	gic_version = gicd_read_pidr2(plat_driver_data->gicd_base);
204464ce2bbSSoby Mathew 	gic_version = (gic_version >> PIDR2_ARCH_REV_SHIFT)
205464ce2bbSSoby Mathew 					& PIDR2_ARCH_REV_MASK;
20664deed19SEtienne Carriere 
20764deed19SEtienne Carriere 	/*
20864deed19SEtienne Carriere 	 * GICv1 with security extension complies with trusted firmware
20964deed19SEtienne Carriere 	 * GICv2 driver as far as virtualization and few tricky power
21064deed19SEtienne Carriere 	 * features are not used. GICv2 features that are not supported
21164deed19SEtienne Carriere 	 * by GICv1 with Security Extensions are:
21264deed19SEtienne Carriere 	 * - virtual interrupt support.
21364deed19SEtienne Carriere 	 * - wake up events.
21464deed19SEtienne Carriere 	 * - writeable GIC state register (for power sequences)
21564deed19SEtienne Carriere 	 * - interrupt priority drop.
21664deed19SEtienne Carriere 	 * - interrupt signal bypass.
21764deed19SEtienne Carriere 	 */
21864deed19SEtienne Carriere 	assert(gic_version == ARCH_REV_GICV2 || gic_version == ARCH_REV_GICV1);
219464ce2bbSSoby Mathew 
220464ce2bbSSoby Mathew 	driver_data = plat_driver_data;
221464ce2bbSSoby Mathew 
222311b1773SSoby Mathew 	/*
223311b1773SSoby Mathew 	 * The GIC driver data is initialized by the primary CPU with caches
224311b1773SSoby Mathew 	 * enabled. When the secondary CPU boots up, it initializes the
225311b1773SSoby Mathew 	 * GICC/GICR interface with the caches disabled. Hence flush the
226311b1773SSoby Mathew 	 * driver_data to ensure coherency. This is not required if the
227311b1773SSoby Mathew 	 * platform has HW_ASSISTED_COHERENCY enabled.
228311b1773SSoby Mathew 	 */
229311b1773SSoby Mathew #if !HW_ASSISTED_COHERENCY
230311b1773SSoby Mathew 	flush_dcache_range((uintptr_t) &driver_data, sizeof(driver_data));
231311b1773SSoby Mathew 	flush_dcache_range((uintptr_t) driver_data, sizeof(*driver_data));
232311b1773SSoby Mathew #endif
233464ce2bbSSoby Mathew 	INFO("ARM GICv2 driver initialized\n");
234464ce2bbSSoby Mathew }
235464ce2bbSSoby Mathew 
236464ce2bbSSoby Mathew /******************************************************************************
237464ce2bbSSoby Mathew  * This function returns whether FIQ is enabled in the GIC CPU interface.
238464ce2bbSSoby Mathew  *****************************************************************************/
239464ce2bbSSoby Mathew unsigned int gicv2_is_fiq_enabled(void)
240464ce2bbSSoby Mathew {
241464ce2bbSSoby Mathew 	unsigned int gicc_ctlr;
242464ce2bbSSoby Mathew 
243464ce2bbSSoby Mathew 	assert(driver_data);
244464ce2bbSSoby Mathew 	assert(driver_data->gicc_base);
245464ce2bbSSoby Mathew 
246464ce2bbSSoby Mathew 	gicc_ctlr = gicc_read_ctlr(driver_data->gicc_base);
247464ce2bbSSoby Mathew 	return (gicc_ctlr >> FIQ_EN_SHIFT) & 0x1;
248464ce2bbSSoby Mathew }
249464ce2bbSSoby Mathew 
250464ce2bbSSoby Mathew /*******************************************************************************
251464ce2bbSSoby Mathew  * This function returns the type of the highest priority pending interrupt at
252464ce2bbSSoby Mathew  * the GIC cpu interface. The return values can be one of the following :
253464ce2bbSSoby Mathew  *   PENDING_G1_INTID   : The interrupt type is non secure Group 1.
254464ce2bbSSoby Mathew  *   0 - 1019           : The interrupt type is secure Group 0.
255464ce2bbSSoby Mathew  *   GIC_SPURIOUS_INTERRUPT : there is no pending interrupt with
256464ce2bbSSoby Mathew  *                            sufficient priority to be signaled
257464ce2bbSSoby Mathew  ******************************************************************************/
258464ce2bbSSoby Mathew unsigned int gicv2_get_pending_interrupt_type(void)
259464ce2bbSSoby Mathew {
260464ce2bbSSoby Mathew 	assert(driver_data);
261464ce2bbSSoby Mathew 	assert(driver_data->gicc_base);
262464ce2bbSSoby Mathew 
263464ce2bbSSoby Mathew 	return gicc_read_hppir(driver_data->gicc_base) & INT_ID_MASK;
264464ce2bbSSoby Mathew }
265464ce2bbSSoby Mathew 
266464ce2bbSSoby Mathew /*******************************************************************************
267464ce2bbSSoby Mathew  * This function returns the id of the highest priority pending interrupt at
268464ce2bbSSoby Mathew  * the GIC cpu interface. GIC_SPURIOUS_INTERRUPT is returned when there is no
269464ce2bbSSoby Mathew  * interrupt pending.
270464ce2bbSSoby Mathew  ******************************************************************************/
271464ce2bbSSoby Mathew unsigned int gicv2_get_pending_interrupt_id(void)
272464ce2bbSSoby Mathew {
273464ce2bbSSoby Mathew 	unsigned int id;
274464ce2bbSSoby Mathew 
275464ce2bbSSoby Mathew 	assert(driver_data);
276464ce2bbSSoby Mathew 	assert(driver_data->gicc_base);
277464ce2bbSSoby Mathew 
278464ce2bbSSoby Mathew 	id = gicc_read_hppir(driver_data->gicc_base) & INT_ID_MASK;
279464ce2bbSSoby Mathew 
280464ce2bbSSoby Mathew 	/*
281464ce2bbSSoby Mathew 	 * Find out which non-secure interrupt it is under the assumption that
282464ce2bbSSoby Mathew 	 * the GICC_CTLR.AckCtl bit is 0.
283464ce2bbSSoby Mathew 	 */
284464ce2bbSSoby Mathew 	if (id == PENDING_G1_INTID)
285464ce2bbSSoby Mathew 		id = gicc_read_ahppir(driver_data->gicc_base) & INT_ID_MASK;
286464ce2bbSSoby Mathew 
287464ce2bbSSoby Mathew 	return id;
288464ce2bbSSoby Mathew }
289464ce2bbSSoby Mathew 
290464ce2bbSSoby Mathew /*******************************************************************************
291464ce2bbSSoby Mathew  * This functions reads the GIC cpu interface Interrupt Acknowledge register
292464ce2bbSSoby Mathew  * to start handling the pending secure 0 interrupt. It returns the
293464ce2bbSSoby Mathew  * contents of the IAR.
294464ce2bbSSoby Mathew  ******************************************************************************/
295464ce2bbSSoby Mathew unsigned int gicv2_acknowledge_interrupt(void)
296464ce2bbSSoby Mathew {
297464ce2bbSSoby Mathew 	assert(driver_data);
298464ce2bbSSoby Mathew 	assert(driver_data->gicc_base);
299464ce2bbSSoby Mathew 
300464ce2bbSSoby Mathew 	return gicc_read_IAR(driver_data->gicc_base);
301464ce2bbSSoby Mathew }
302464ce2bbSSoby Mathew 
303464ce2bbSSoby Mathew /*******************************************************************************
304464ce2bbSSoby Mathew  * This functions writes the GIC cpu interface End Of Interrupt register with
305464ce2bbSSoby Mathew  * the passed value to finish handling the active secure group 0 interrupt.
306464ce2bbSSoby Mathew  ******************************************************************************/
307464ce2bbSSoby Mathew void gicv2_end_of_interrupt(unsigned int id)
308464ce2bbSSoby Mathew {
309464ce2bbSSoby Mathew 	assert(driver_data);
310464ce2bbSSoby Mathew 	assert(driver_data->gicc_base);
311464ce2bbSSoby Mathew 
312464ce2bbSSoby Mathew 	gicc_write_EOIR(driver_data->gicc_base, id);
313464ce2bbSSoby Mathew }
314464ce2bbSSoby Mathew 
315464ce2bbSSoby Mathew /*******************************************************************************
316464ce2bbSSoby Mathew  * This function returns the type of the interrupt id depending upon the group
317464ce2bbSSoby Mathew  * this interrupt has been configured under by the interrupt controller i.e.
318464ce2bbSSoby Mathew  * group0 secure or group1 non secure. It returns zero for Group 0 secure and
319464ce2bbSSoby Mathew  * one for Group 1 non secure interrupt.
320464ce2bbSSoby Mathew  ******************************************************************************/
321464ce2bbSSoby Mathew unsigned int gicv2_get_interrupt_group(unsigned int id)
322464ce2bbSSoby Mathew {
323464ce2bbSSoby Mathew 	assert(driver_data);
324464ce2bbSSoby Mathew 	assert(driver_data->gicd_base);
325464ce2bbSSoby Mathew 
326464ce2bbSSoby Mathew 	return gicd_get_igroupr(driver_data->gicd_base, id);
327464ce2bbSSoby Mathew }
328eb68ea9bSJeenu Viswambharan 
329eb68ea9bSJeenu Viswambharan /*******************************************************************************
330eb68ea9bSJeenu Viswambharan  * This function returns the priority of the interrupt the processor is
331eb68ea9bSJeenu Viswambharan  * currently servicing.
332eb68ea9bSJeenu Viswambharan  ******************************************************************************/
333eb68ea9bSJeenu Viswambharan unsigned int gicv2_get_running_priority(void)
334eb68ea9bSJeenu Viswambharan {
335eb68ea9bSJeenu Viswambharan 	assert(driver_data);
336eb68ea9bSJeenu Viswambharan 	assert(driver_data->gicc_base);
337eb68ea9bSJeenu Viswambharan 
338eb68ea9bSJeenu Viswambharan 	return gicc_read_rpr(driver_data->gicc_base);
339eb68ea9bSJeenu Viswambharan }
340fa9db423SJeenu Viswambharan 
341fa9db423SJeenu Viswambharan /*******************************************************************************
342fa9db423SJeenu Viswambharan  * This function sets the GICv2 target mask pattern for the current PE. The PE
343fa9db423SJeenu Viswambharan  * target mask is used to translate linear PE index (returned by platform core
344fa9db423SJeenu Viswambharan  * position) to a bit mask used when targeting interrupts to a PE, viz. when
345fa9db423SJeenu Viswambharan  * raising SGIs and routing SPIs.
346fa9db423SJeenu Viswambharan  ******************************************************************************/
347fa9db423SJeenu Viswambharan void gicv2_set_pe_target_mask(unsigned int proc_num)
348fa9db423SJeenu Viswambharan {
349fa9db423SJeenu Viswambharan 	assert(driver_data);
350fa9db423SJeenu Viswambharan 	assert(driver_data->gicd_base);
351fa9db423SJeenu Viswambharan 	assert(driver_data->target_masks);
352fa9db423SJeenu Viswambharan 	assert(proc_num < GICV2_MAX_TARGET_PE);
353fa9db423SJeenu Viswambharan 	assert(proc_num < driver_data->target_masks_num);
354fa9db423SJeenu Viswambharan 
355fa9db423SJeenu Viswambharan 	/* Return if the target mask is already populated */
356fa9db423SJeenu Viswambharan 	if (driver_data->target_masks[proc_num])
357fa9db423SJeenu Viswambharan 		return;
358fa9db423SJeenu Viswambharan 
359058efeefSJeenu Viswambharan 	/*
360058efeefSJeenu Viswambharan 	 * Update target register corresponding to this CPU and flush for it to
361058efeefSJeenu Viswambharan 	 * be visible to other CPUs.
362058efeefSJeenu Viswambharan 	 */
363058efeefSJeenu Viswambharan 	if (driver_data->target_masks[proc_num] == 0) {
364fa9db423SJeenu Viswambharan 		driver_data->target_masks[proc_num] =
365fa9db423SJeenu Viswambharan 			gicv2_get_cpuif_id(driver_data->gicd_base);
366058efeefSJeenu Viswambharan #if !HW_ASSISTED_COHERENCY
367058efeefSJeenu Viswambharan 		/*
368058efeefSJeenu Viswambharan 		 * PEs only update their own masks. Primary updates it with
369058efeefSJeenu Viswambharan 		 * caches on. But because secondaries does it with caches off,
370058efeefSJeenu Viswambharan 		 * all updates go to memory directly, and there's no danger of
371058efeefSJeenu Viswambharan 		 * secondaries overwriting each others' mask, despite
372058efeefSJeenu Viswambharan 		 * target_masks[] not being cache line aligned.
373058efeefSJeenu Viswambharan 		 */
374058efeefSJeenu Viswambharan 		flush_dcache_range((uintptr_t)
375058efeefSJeenu Viswambharan 				&driver_data->target_masks[proc_num],
376058efeefSJeenu Viswambharan 				sizeof(driver_data->target_masks[proc_num]));
377058efeefSJeenu Viswambharan #endif
378058efeefSJeenu Viswambharan 	}
379fa9db423SJeenu Viswambharan }
380cbd3f370SJeenu Viswambharan 
381cbd3f370SJeenu Viswambharan /*******************************************************************************
382cbd3f370SJeenu Viswambharan  * This function returns the active status of the interrupt (either because the
383cbd3f370SJeenu Viswambharan  * state is active, or active and pending).
384cbd3f370SJeenu Viswambharan  ******************************************************************************/
385cbd3f370SJeenu Viswambharan unsigned int gicv2_get_interrupt_active(unsigned int id)
386cbd3f370SJeenu Viswambharan {
387cbd3f370SJeenu Viswambharan 	assert(driver_data);
388cbd3f370SJeenu Viswambharan 	assert(driver_data->gicd_base);
389cbd3f370SJeenu Viswambharan 	assert(id <= MAX_SPI_ID);
390cbd3f370SJeenu Viswambharan 
391cbd3f370SJeenu Viswambharan 	return gicd_get_isactiver(driver_data->gicd_base, id);
392cbd3f370SJeenu Viswambharan }
393979225f4SJeenu Viswambharan 
394979225f4SJeenu Viswambharan /*******************************************************************************
395979225f4SJeenu Viswambharan  * This function enables the interrupt identified by id.
396979225f4SJeenu Viswambharan  ******************************************************************************/
397979225f4SJeenu Viswambharan void gicv2_enable_interrupt(unsigned int id)
398979225f4SJeenu Viswambharan {
399979225f4SJeenu Viswambharan 	assert(driver_data);
400979225f4SJeenu Viswambharan 	assert(driver_data->gicd_base);
401979225f4SJeenu Viswambharan 	assert(id <= MAX_SPI_ID);
402979225f4SJeenu Viswambharan 
403979225f4SJeenu Viswambharan 	/*
404979225f4SJeenu Viswambharan 	 * Ensure that any shared variable updates depending on out of band
405979225f4SJeenu Viswambharan 	 * interrupt trigger are observed before enabling interrupt.
406979225f4SJeenu Viswambharan 	 */
407979225f4SJeenu Viswambharan 	dsbishst();
408979225f4SJeenu Viswambharan 	gicd_set_isenabler(driver_data->gicd_base, id);
409979225f4SJeenu Viswambharan }
410979225f4SJeenu Viswambharan 
411979225f4SJeenu Viswambharan /*******************************************************************************
412979225f4SJeenu Viswambharan  * This function disables the interrupt identified by id.
413979225f4SJeenu Viswambharan  ******************************************************************************/
414979225f4SJeenu Viswambharan void gicv2_disable_interrupt(unsigned int id)
415979225f4SJeenu Viswambharan {
416979225f4SJeenu Viswambharan 	assert(driver_data);
417979225f4SJeenu Viswambharan 	assert(driver_data->gicd_base);
418979225f4SJeenu Viswambharan 	assert(id <= MAX_SPI_ID);
419979225f4SJeenu Viswambharan 
420979225f4SJeenu Viswambharan 	/*
421979225f4SJeenu Viswambharan 	 * Disable interrupt, and ensure that any shared variable updates
422979225f4SJeenu Viswambharan 	 * depending on out of band interrupt trigger are observed afterwards.
423979225f4SJeenu Viswambharan 	 */
424979225f4SJeenu Viswambharan 	gicd_set_icenabler(driver_data->gicd_base, id);
425979225f4SJeenu Viswambharan 	dsbishst();
426979225f4SJeenu Viswambharan }
427f3a86600SJeenu Viswambharan 
428f3a86600SJeenu Viswambharan /*******************************************************************************
429f3a86600SJeenu Viswambharan  * This function sets the interrupt priority as supplied for the given interrupt
430f3a86600SJeenu Viswambharan  * id.
431f3a86600SJeenu Viswambharan  ******************************************************************************/
432f3a86600SJeenu Viswambharan void gicv2_set_interrupt_priority(unsigned int id, unsigned int priority)
433f3a86600SJeenu Viswambharan {
434f3a86600SJeenu Viswambharan 	assert(driver_data);
435f3a86600SJeenu Viswambharan 	assert(driver_data->gicd_base);
436f3a86600SJeenu Viswambharan 	assert(id <= MAX_SPI_ID);
437f3a86600SJeenu Viswambharan 
438f3a86600SJeenu Viswambharan 	gicd_set_ipriorityr(driver_data->gicd_base, id, priority);
439f3a86600SJeenu Viswambharan }
44074dce7faSJeenu Viswambharan 
44174dce7faSJeenu Viswambharan /*******************************************************************************
44274dce7faSJeenu Viswambharan  * This function assigns group for the interrupt identified by id. The group can
44374dce7faSJeenu Viswambharan  * be any of GICV2_INTR_GROUP*
44474dce7faSJeenu Viswambharan  ******************************************************************************/
44574dce7faSJeenu Viswambharan void gicv2_set_interrupt_type(unsigned int id, unsigned int type)
44674dce7faSJeenu Viswambharan {
44774dce7faSJeenu Viswambharan 	assert(driver_data);
44874dce7faSJeenu Viswambharan 	assert(driver_data->gicd_base);
44974dce7faSJeenu Viswambharan 	assert(id <= MAX_SPI_ID);
45074dce7faSJeenu Viswambharan 
45174dce7faSJeenu Viswambharan 	/* Serialize read-modify-write to Distributor registers */
45274dce7faSJeenu Viswambharan 	spin_lock(&gic_lock);
45374dce7faSJeenu Viswambharan 	switch (type) {
45474dce7faSJeenu Viswambharan 	case GICV2_INTR_GROUP1:
45574dce7faSJeenu Viswambharan 		gicd_set_igroupr(driver_data->gicd_base, id);
45674dce7faSJeenu Viswambharan 		break;
45774dce7faSJeenu Viswambharan 	case GICV2_INTR_GROUP0:
45874dce7faSJeenu Viswambharan 		gicd_clr_igroupr(driver_data->gicd_base, id);
45974dce7faSJeenu Viswambharan 		break;
46074dce7faSJeenu Viswambharan 	default:
46174dce7faSJeenu Viswambharan 		assert(0);
46274dce7faSJeenu Viswambharan 	}
46374dce7faSJeenu Viswambharan 	spin_unlock(&gic_lock);
46474dce7faSJeenu Viswambharan }
4658db978b5SJeenu Viswambharan 
4668db978b5SJeenu Viswambharan /*******************************************************************************
4678db978b5SJeenu Viswambharan  * This function raises the specified SGI to requested targets.
4688db978b5SJeenu Viswambharan  *
4698db978b5SJeenu Viswambharan  * The proc_num parameter must be the linear index of the target PE in the
4708db978b5SJeenu Viswambharan  * system.
4718db978b5SJeenu Viswambharan  ******************************************************************************/
4728db978b5SJeenu Viswambharan void gicv2_raise_sgi(int sgi_num, int proc_num)
4738db978b5SJeenu Viswambharan {
4748db978b5SJeenu Viswambharan 	unsigned int sgir_val, target;
4758db978b5SJeenu Viswambharan 
4768db978b5SJeenu Viswambharan 	assert(driver_data);
4778db978b5SJeenu Viswambharan 	assert(proc_num < GICV2_MAX_TARGET_PE);
4788db978b5SJeenu Viswambharan 	assert(driver_data->gicd_base);
4798db978b5SJeenu Viswambharan 
4808db978b5SJeenu Viswambharan 	/*
4818db978b5SJeenu Viswambharan 	 * Target masks array must have been supplied, and the core position
4828db978b5SJeenu Viswambharan 	 * should be valid.
4838db978b5SJeenu Viswambharan 	 */
4848db978b5SJeenu Viswambharan 	assert(driver_data->target_masks);
4858db978b5SJeenu Viswambharan 	assert(proc_num < driver_data->target_masks_num);
4868db978b5SJeenu Viswambharan 
4878db978b5SJeenu Viswambharan 	/* Don't raise SGI if the mask hasn't been populated */
4888db978b5SJeenu Viswambharan 	target = driver_data->target_masks[proc_num];
4898db978b5SJeenu Viswambharan 	assert(target != 0);
4908db978b5SJeenu Viswambharan 
4918db978b5SJeenu Viswambharan 	sgir_val = GICV2_SGIR_VALUE(SGIR_TGT_SPECIFIC, target, sgi_num);
4928db978b5SJeenu Viswambharan 
4938db978b5SJeenu Viswambharan 	/*
4948db978b5SJeenu Viswambharan 	 * Ensure that any shared variable updates depending on out of band
4958db978b5SJeenu Viswambharan 	 * interrupt trigger are observed before raising SGI.
4968db978b5SJeenu Viswambharan 	 */
4978db978b5SJeenu Viswambharan 	dsbishst();
4988db978b5SJeenu Viswambharan 	gicd_write_sgir(driver_data->gicd_base, sgir_val);
4998db978b5SJeenu Viswambharan }
500fc529feeSJeenu Viswambharan 
501fc529feeSJeenu Viswambharan /*******************************************************************************
502fc529feeSJeenu Viswambharan  * This function sets the interrupt routing for the given SPI interrupt id.
503fc529feeSJeenu Viswambharan  * The interrupt routing is specified in routing mode. The proc_num parameter is
504fc529feeSJeenu Viswambharan  * linear index of the PE to target SPI. When proc_num < 0, the SPI may target
505fc529feeSJeenu Viswambharan  * all PEs.
506fc529feeSJeenu Viswambharan  ******************************************************************************/
507fc529feeSJeenu Viswambharan void gicv2_set_spi_routing(unsigned int id, int proc_num)
508fc529feeSJeenu Viswambharan {
509fc529feeSJeenu Viswambharan 	int target;
510fc529feeSJeenu Viswambharan 
511fc529feeSJeenu Viswambharan 	assert(driver_data);
512fc529feeSJeenu Viswambharan 	assert(driver_data->gicd_base);
513fc529feeSJeenu Viswambharan 
514fc529feeSJeenu Viswambharan 	assert(id >= MIN_SPI_ID && id <= MAX_SPI_ID);
515fc529feeSJeenu Viswambharan 
516fc529feeSJeenu Viswambharan 	/*
517fc529feeSJeenu Viswambharan 	 * Target masks array must have been supplied, and the core position
518fc529feeSJeenu Viswambharan 	 * should be valid.
519fc529feeSJeenu Viswambharan 	 */
520fc529feeSJeenu Viswambharan 	assert(driver_data->target_masks);
521fc529feeSJeenu Viswambharan 	assert(proc_num < GICV2_MAX_TARGET_PE);
522fc529feeSJeenu Viswambharan 	assert(proc_num < driver_data->target_masks_num);
523fc529feeSJeenu Viswambharan 
524fc529feeSJeenu Viswambharan 	if (proc_num < 0) {
525fc529feeSJeenu Viswambharan 		/* Target all PEs */
526fc529feeSJeenu Viswambharan 		target = GIC_TARGET_CPU_MASK;
527fc529feeSJeenu Viswambharan 	} else {
528fc529feeSJeenu Viswambharan 		/* Don't route interrupt if the mask hasn't been populated */
529fc529feeSJeenu Viswambharan 		target = driver_data->target_masks[proc_num];
530fc529feeSJeenu Viswambharan 		assert(target != 0);
531fc529feeSJeenu Viswambharan 	}
532fc529feeSJeenu Viswambharan 
533fc529feeSJeenu Viswambharan 	gicd_set_itargetsr(driver_data->gicd_base, id, target);
534fc529feeSJeenu Viswambharan }
535a2816a16SJeenu Viswambharan 
536a2816a16SJeenu Viswambharan /*******************************************************************************
537a2816a16SJeenu Viswambharan  * This function clears the pending status of an interrupt identified by id.
538a2816a16SJeenu Viswambharan  ******************************************************************************/
539a2816a16SJeenu Viswambharan void gicv2_clear_interrupt_pending(unsigned int id)
540a2816a16SJeenu Viswambharan {
541a2816a16SJeenu Viswambharan 	assert(driver_data);
542a2816a16SJeenu Viswambharan 	assert(driver_data->gicd_base);
543a2816a16SJeenu Viswambharan 
544a2816a16SJeenu Viswambharan 	/* SGIs can't be cleared pending */
545a2816a16SJeenu Viswambharan 	assert(id >= MIN_PPI_ID);
546a2816a16SJeenu Viswambharan 
547a2816a16SJeenu Viswambharan 	/*
548a2816a16SJeenu Viswambharan 	 * Clear pending interrupt, and ensure that any shared variable updates
549a2816a16SJeenu Viswambharan 	 * depending on out of band interrupt trigger are observed afterwards.
550a2816a16SJeenu Viswambharan 	 */
551a2816a16SJeenu Viswambharan 	gicd_set_icpendr(driver_data->gicd_base, id);
552a2816a16SJeenu Viswambharan 	dsbishst();
553a2816a16SJeenu Viswambharan }
554a2816a16SJeenu Viswambharan 
555a2816a16SJeenu Viswambharan /*******************************************************************************
556a2816a16SJeenu Viswambharan  * This function sets the pending status of an interrupt identified by id.
557a2816a16SJeenu Viswambharan  ******************************************************************************/
558a2816a16SJeenu Viswambharan void gicv2_set_interrupt_pending(unsigned int id)
559a2816a16SJeenu Viswambharan {
560a2816a16SJeenu Viswambharan 	assert(driver_data);
561a2816a16SJeenu Viswambharan 	assert(driver_data->gicd_base);
562a2816a16SJeenu Viswambharan 
563a2816a16SJeenu Viswambharan 	/* SGIs can't be cleared pending */
564a2816a16SJeenu Viswambharan 	assert(id >= MIN_PPI_ID);
565a2816a16SJeenu Viswambharan 
566a2816a16SJeenu Viswambharan 	/*
567a2816a16SJeenu Viswambharan 	 * Ensure that any shared variable updates depending on out of band
568a2816a16SJeenu Viswambharan 	 * interrupt trigger are observed before setting interrupt pending.
569a2816a16SJeenu Viswambharan 	 */
570a2816a16SJeenu Viswambharan 	dsbishst();
571a2816a16SJeenu Viswambharan 	gicd_set_ispendr(driver_data->gicd_base, id);
572a2816a16SJeenu Viswambharan }
573d55a4450SJeenu Viswambharan 
574d55a4450SJeenu Viswambharan /*******************************************************************************
575d55a4450SJeenu Viswambharan  * This function sets the PMR register with the supplied value. Returns the
576d55a4450SJeenu Viswambharan  * original PMR.
577d55a4450SJeenu Viswambharan  ******************************************************************************/
578d55a4450SJeenu Viswambharan unsigned int gicv2_set_pmr(unsigned int mask)
579d55a4450SJeenu Viswambharan {
580d55a4450SJeenu Viswambharan 	unsigned int old_mask;
581d55a4450SJeenu Viswambharan 
582d55a4450SJeenu Viswambharan 	assert(driver_data);
583d55a4450SJeenu Viswambharan 	assert(driver_data->gicc_base);
584d55a4450SJeenu Viswambharan 
585d55a4450SJeenu Viswambharan 	old_mask = gicc_read_pmr(driver_data->gicc_base);
586d55a4450SJeenu Viswambharan 
587d55a4450SJeenu Viswambharan 	/*
588d55a4450SJeenu Viswambharan 	 * Order memory updates w.r.t. PMR write, and ensure they're visible
589d55a4450SJeenu Viswambharan 	 * before potential out of band interrupt trigger because of PMR update.
590d55a4450SJeenu Viswambharan 	 */
591d55a4450SJeenu Viswambharan 	dmbishst();
592d55a4450SJeenu Viswambharan 	gicc_write_pmr(driver_data->gicc_base, mask);
593d55a4450SJeenu Viswambharan 	dsbishst();
594d55a4450SJeenu Viswambharan 
595d55a4450SJeenu Viswambharan 	return old_mask;
596d55a4450SJeenu Viswambharan }
597