blob: d0480dba2f5b4d84c7707e6061b91c90e58ace4a [file] [log] [blame]
Soby Mathewe063d3c2015-10-07 09:45:27 +01001/*
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +01002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathewe063d3c2015-10-07 09:45:27 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewe063d3c2015-10-07 09:45:27 +01005 */
6
7#ifndef __GICV2_H__
8#define __GICV2_H__
9
10/*******************************************************************************
11 * GICv2 miscellaneous definitions
12 ******************************************************************************/
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010013
14/* Interrupt group definitions */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010015#define GICV2_INTR_GROUP0 U(0)
16#define GICV2_INTR_GROUP1 U(1)
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +010017
Soby Mathewe063d3c2015-10-07 09:45:27 +010018/* Interrupt IDs reported by the HPPIR and IAR registers */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010019#define PENDING_G1_INTID U(1022)
Soby Mathewe063d3c2015-10-07 09:45:27 +010020
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +010021/* GICv2 can only target up to 8 PEs */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010022#define GICV2_MAX_TARGET_PE U(8)
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +010023
Soby Mathewe063d3c2015-10-07 09:45:27 +010024/*******************************************************************************
25 * GICv2 specific Distributor interface register offsets and constants.
26 ******************************************************************************/
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010027#define GICD_ITARGETSR U(0x800)
28#define GICD_SGIR U(0xF00)
29#define GICD_CPENDSGIR U(0xF10)
30#define GICD_SPENDSGIR U(0xF20)
31#define GICD_PIDR2_GICV2 U(0xFE8)
Soby Mathewe063d3c2015-10-07 09:45:27 +010032
33#define ITARGETSR_SHIFT 2
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010034#define GIC_TARGET_CPU_MASK U(0xff)
Soby Mathewe063d3c2015-10-07 09:45:27 +010035
36#define CPENDSGIR_SHIFT 2
37#define SPENDSGIR_SHIFT CPENDSGIR_SHIFT
38
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +010039#define SGIR_TGTLSTFLT_SHIFT 24
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010040#define SGIR_TGTLSTFLT_MASK U(0x3)
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +010041#define SGIR_TGTLST_SHIFT 16
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010042#define SGIR_TGTLST_MASK U(0xff)
43#define SGIR_INTID_MASK ULL(0xf)
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +010044
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010045#define SGIR_TGT_SPECIFIC U(0)
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +010046
47#define GICV2_SGIR_VALUE(tgt_lst_flt, tgt, intid) \
48 ((((tgt_lst_flt) & SGIR_TGTLSTFLT_MASK) << SGIR_TGTLSTFLT_SHIFT) | \
49 (((tgt) & SGIR_TGTLST_MASK) << SGIR_TGTLST_SHIFT) | \
50 ((intid) & SGIR_INTID_MASK))
51
Soby Mathewe063d3c2015-10-07 09:45:27 +010052/*******************************************************************************
53 * GICv2 specific CPU interface register offsets and constants.
54 ******************************************************************************/
55/* Physical CPU Interface registers */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010056#define GICC_CTLR U(0x0)
57#define GICC_PMR U(0x4)
58#define GICC_BPR U(0x8)
59#define GICC_IAR U(0xC)
60#define GICC_EOIR U(0x10)
61#define GICC_RPR U(0x14)
62#define GICC_HPPIR U(0x18)
63#define GICC_AHPPIR U(0x28)
64#define GICC_IIDR U(0xFC)
65#define GICC_DIR U(0x1000)
Soby Mathewe063d3c2015-10-07 09:45:27 +010066#define GICC_PRIODROP GICC_EOIR
67
68/* GICC_CTLR bit definitions */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010069#define EOI_MODE_NS BIT_32(10)
70#define EOI_MODE_S BIT_32(9)
71#define IRQ_BYP_DIS_GRP1 BIT_32(8)
72#define FIQ_BYP_DIS_GRP1 BIT_32(7)
73#define IRQ_BYP_DIS_GRP0 BIT_32(6)
74#define FIQ_BYP_DIS_GRP0 BIT_32(5)
75#define CBPR BIT_32(4)
Soby Mathewe063d3c2015-10-07 09:45:27 +010076#define FIQ_EN_SHIFT 3
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010077#define FIQ_EN_BIT BIT_32(FIQ_EN_SHIFT)
78#define ACK_CTL BIT_32(2)
Soby Mathewe063d3c2015-10-07 09:45:27 +010079
80/* GICC_IIDR bit masks and shifts */
81#define GICC_IIDR_PID_SHIFT 20
82#define GICC_IIDR_ARCH_SHIFT 16
83#define GICC_IIDR_REV_SHIFT 12
84#define GICC_IIDR_IMP_SHIFT 0
85
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010086#define GICC_IIDR_PID_MASK U(0xfff)
87#define GICC_IIDR_ARCH_MASK U(0xf)
88#define GICC_IIDR_REV_MASK U(0xf)
89#define GICC_IIDR_IMP_MASK U(0xfff)
Soby Mathewe063d3c2015-10-07 09:45:27 +010090
91/* HYP view virtual CPU Interface registers */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +010092#define GICH_CTL U(0x0)
93#define GICH_VTR U(0x4)
94#define GICH_ELRSR0 U(0x30)
95#define GICH_ELRSR1 U(0x34)
96#define GICH_APR0 U(0xF0)
97#define GICH_LR_BASE U(0x100)
Soby Mathewe063d3c2015-10-07 09:45:27 +010098
99/* Virtual CPU Interface registers */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +0100100#define GICV_CTL U(0x0)
101#define GICV_PRIMASK U(0x4)
102#define GICV_BP U(0x8)
103#define GICV_INTACK U(0xC)
104#define GICV_EOI U(0x10)
105#define GICV_RUNNINGPRI U(0x14)
106#define GICV_HIGHESTPEND U(0x18)
107#define GICV_DEACTIVATE U(0x1000)
Soby Mathewe063d3c2015-10-07 09:45:27 +0100108
109/* GICD_CTLR bit definitions */
110#define CTLR_ENABLE_G1_SHIFT 1
Antonio Nino Diaz2e590712018-08-24 11:46:33 +0100111#define CTLR_ENABLE_G1_MASK U(0x1)
112#define CTLR_ENABLE_G1_BIT BIT_32(CTLR_ENABLE_G1_SHIFT)
Soby Mathewe063d3c2015-10-07 09:45:27 +0100113
114/* Interrupt ID mask for HPPIR, AHPPIR, IAR and AIAR CPU Interface registers */
Antonio Nino Diaz2e590712018-08-24 11:46:33 +0100115#define INT_ID_MASK U(0x3ff)
Soby Mathewe063d3c2015-10-07 09:45:27 +0100116
117#ifndef __ASSEMBLY__
118
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +0100119#include <cdefs.h>
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100120#include <interrupt_props.h>
Soby Mathewe063d3c2015-10-07 09:45:27 +0100121#include <stdint.h>
122
123/*******************************************************************************
124 * This structure describes some of the implementation defined attributes of
125 * the GICv2 IP. It is used by the platform port to specify these attributes
126 * in order to initialize the GICv2 driver. The attributes are described
127 * below.
128 *
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +0100129 * The 'gicd_base' field contains the base address of the Distributor interface
130 * programmer's view.
Soby Mathewe063d3c2015-10-07 09:45:27 +0100131 *
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +0100132 * The 'gicc_base' field contains the base address of the CPU Interface
133 * programmer's view.
Soby Mathewe063d3c2015-10-07 09:45:27 +0100134 *
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100135 * The 'g0_interrupt_array' field is a pointer to an array in which each entry
136 * corresponds to an ID of a Group 0 interrupt. This field is ignored when
137 * 'interrupt_props' field is used. This field is deprecated.
Soby Mathewe063d3c2015-10-07 09:45:27 +0100138 *
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +0100139 * The 'g0_interrupt_num' field contains the number of entries in the
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100140 * 'g0_interrupt_array'. This field is ignored when 'interrupt_props' field is
141 * used. This field is deprecated.
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +0100142 *
143 * The 'target_masks' is a pointer to an array containing 'target_masks_num'
144 * elements. The GIC driver will populate the array with per-PE target mask to
145 * use to when targeting interrupts.
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100146 *
147 * The 'interrupt_props' field is a pointer to an array that enumerates secure
148 * interrupts and their properties. If this field is not NULL, both
149 * 'g0_interrupt_array' and 'g1s_interrupt_array' fields are ignored.
150 *
151 * The 'interrupt_props_num' field contains the number of entries in the
152 * 'interrupt_props' array. If this field is non-zero, 'g0_interrupt_num' is
153 * ignored.
Soby Mathewe063d3c2015-10-07 09:45:27 +0100154 ******************************************************************************/
155typedef struct gicv2_driver_data {
156 uintptr_t gicd_base;
157 uintptr_t gicc_base;
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100158#if !ERROR_DEPRECATED
Dan Handley4d408b52018-03-01 16:00:15 +0000159 unsigned int g0_interrupt_num __deprecated;
160 const unsigned int *g0_interrupt_array __deprecated;
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100161#endif
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +0100162 unsigned int *target_masks;
163 unsigned int target_masks_num;
Jeenu Viswambharanaeb267c2017-09-22 08:32:09 +0100164 const interrupt_prop_t *interrupt_props;
165 unsigned int interrupt_props_num;
Soby Mathewe063d3c2015-10-07 09:45:27 +0100166} gicv2_driver_data_t;
167
168/*******************************************************************************
169 * Function prototypes
170 ******************************************************************************/
171void gicv2_driver_init(const gicv2_driver_data_t *plat_driver_data);
172void gicv2_distif_init(void);
173void gicv2_pcpu_distif_init(void);
174void gicv2_cpuif_enable(void);
175void gicv2_cpuif_disable(void);
176unsigned int gicv2_is_fiq_enabled(void);
177unsigned int gicv2_get_pending_interrupt_type(void);
178unsigned int gicv2_get_pending_interrupt_id(void);
179unsigned int gicv2_acknowledge_interrupt(void);
180void gicv2_end_of_interrupt(unsigned int id);
181unsigned int gicv2_get_interrupt_group(unsigned int id);
Jeenu Viswambharanb1e957e2017-09-22 08:32:09 +0100182unsigned int gicv2_get_running_priority(void);
Jeenu Viswambharan393fdd92017-09-22 08:32:09 +0100183void gicv2_set_pe_target_mask(unsigned int proc_num);
Jeenu Viswambharan24e70292017-09-22 08:32:09 +0100184unsigned int gicv2_get_interrupt_active(unsigned int id);
Jeenu Viswambharan0fcdfff2017-09-22 08:32:09 +0100185void gicv2_enable_interrupt(unsigned int id);
186void gicv2_disable_interrupt(unsigned int id);
Jeenu Viswambharan447b89d2017-09-22 08:32:09 +0100187void gicv2_set_interrupt_priority(unsigned int id, unsigned int priority);
Jeenu Viswambharanc06f05c2017-09-22 08:32:09 +0100188void gicv2_set_interrupt_type(unsigned int id, unsigned int type);
Jeenu Viswambharanab14e9b2017-09-22 08:32:09 +0100189void gicv2_raise_sgi(int sgi_num, int proc_num);
Jeenu Viswambharandce70b32017-09-22 08:32:09 +0100190void gicv2_set_spi_routing(unsigned int id, int proc_num);
Jeenu Viswambharaneb1c12c2017-09-22 08:32:09 +0100191void gicv2_set_interrupt_pending(unsigned int id);
192void gicv2_clear_interrupt_pending(unsigned int id);
Jeenu Viswambharan62505072017-09-22 08:32:09 +0100193unsigned int gicv2_set_pmr(unsigned int mask);
Marcin Wojtasdd568dd2018-03-21 09:55:47 +0100194void gicv2_interrupt_set_cfg(unsigned int id, unsigned int cfg);
Soby Mathewe063d3c2015-10-07 09:45:27 +0100195
196#endif /* __ASSEMBLY__ */
197#endif /* __GICV2_H__ */