/* SPDX-License-Identifier: BSD-2-Clause */ /* * Copyright (c) 2016, Linaro Limited * Copyright (c) 2014, STMicroelectronics International N.V. */ #ifndef __DRIVERS_GIC_H #define __DRIVERS_GIC_H #include #include #if defined(CFG_ARM_GICV3) #define GIC_DIST_REG_SIZE 0x10000 #define GIC_CPU_REG_SIZE 0x10000 #else #define GIC_DIST_REG_SIZE 0x1000 #define GIC_CPU_REG_SIZE 0x1000 #endif #define GIC_PPI_BASE U(16) #define GIC_SPI_BASE U(32) #define GIC_SGI_TO_ITNUM(x) (x) #define GIC_PPI_TO_ITNUM(x) ((x) + GIC_PPI_BASE) #define GIC_SPI_TO_ITNUM(x) ((x) + GIC_SPI_BASE) /* * The two gic_init_* functions initializes the struct gic_data which is * then used by the other functions. */ /* Initialize GIC */ void gic_init(paddr_t gicc_base_pa, paddr_t gicd_base_pa); /* Only initialize CPU GIC interface, mainly use for secondary CPUs */ void gic_cpu_init(void); /* Print GIC state to console */ void gic_dump_state(void); #endif /*__DRIVERS_GIC_H*/