blob: 960f69174df7ba85597c5a404ae134aa3ee60ece [file] [log] [blame]
Achin Gupta1fa7eb62015-11-03 14:18:34 +00001/*
2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta1fa7eb62015-11-03 14:18:34 +00005 */
6
7#include <arm_def.h>
8#include <gicv3.h>
9#include <plat_arm.h>
10#include <platform.h>
11#include <platform_def.h>
12
13/******************************************************************************
14 * The following functions are defined as weak to allow a platform to override
15 * the way the GICv3 driver is initialised and used.
16 *****************************************************************************/
17#pragma weak plat_arm_gic_driver_init
18#pragma weak plat_arm_gic_init
19#pragma weak plat_arm_gic_cpuif_enable
20#pragma weak plat_arm_gic_cpuif_disable
21#pragma weak plat_arm_gic_pcpu_init
Jeenu Viswambharan78132c92016-12-09 11:12:34 +000022#pragma weak plat_arm_gic_redistif_on
23#pragma weak plat_arm_gic_redistif_off
Achin Gupta1fa7eb62015-11-03 14:18:34 +000024
25/* The GICv3 driver only needs to be initialized in EL3 */
Soby Mathewcf022c52016-01-13 17:06:00 +000026static uintptr_t rdistif_base_addrs[PLATFORM_CORE_COUNT];
Achin Gupta1fa7eb62015-11-03 14:18:34 +000027
28/* Array of Group1 secure interrupts to be configured by the gic driver */
Soby Mathewcf022c52016-01-13 17:06:00 +000029static const unsigned int g1s_interrupt_array[] = {
Achin Gupta1fa7eb62015-11-03 14:18:34 +000030 PLAT_ARM_G1S_IRQS
31};
32
33/* Array of Group0 interrupts to be configured by the gic driver */
Soby Mathewcf022c52016-01-13 17:06:00 +000034static const unsigned int g0_interrupt_array[] = {
Achin Gupta1fa7eb62015-11-03 14:18:34 +000035 PLAT_ARM_G0_IRQS
36};
37
38const gicv3_driver_data_t arm_gic_data = {
39 .gicd_base = PLAT_ARM_GICD_BASE,
40 .gicr_base = PLAT_ARM_GICR_BASE,
41 .g0_interrupt_num = ARRAY_SIZE(g0_interrupt_array),
42 .g1s_interrupt_num = ARRAY_SIZE(g1s_interrupt_array),
43 .g0_interrupt_array = g0_interrupt_array,
44 .g1s_interrupt_array = g1s_interrupt_array,
45 .rdistif_num = PLATFORM_CORE_COUNT,
46 .rdistif_base_addrs = rdistif_base_addrs,
47 .mpidr_to_core_pos = plat_arm_calc_core_pos
48};
49
50void plat_arm_gic_driver_init(void)
51{
52 /*
53 * The GICv3 driver is initialized in EL3 and does not need
54 * to be initialized again in SEL1. This is because the S-EL1
55 * can use GIC system registers to manage interrupts and does
56 * not need GIC interface base addresses to be configured.
57 */
Masahiro Yamadaa2698372016-12-26 00:22:47 +090058#if (defined(AARCH32) && defined(IMAGE_BL32)) || \
59 (defined(IMAGE_BL31) && !defined(AARCH32))
Achin Gupta1fa7eb62015-11-03 14:18:34 +000060 gicv3_driver_init(&arm_gic_data);
61#endif
62}
63
64/******************************************************************************
65 * ARM common helper to initialize the GIC. Only invoked by BL31
66 *****************************************************************************/
67void plat_arm_gic_init(void)
68{
69 gicv3_distif_init();
70 gicv3_rdistif_init(plat_my_core_pos());
71 gicv3_cpuif_enable(plat_my_core_pos());
72}
73
74/******************************************************************************
75 * ARM common helper to enable the GIC CPU interface
76 *****************************************************************************/
77void plat_arm_gic_cpuif_enable(void)
78{
79 gicv3_cpuif_enable(plat_my_core_pos());
80}
81
82/******************************************************************************
83 * ARM common helper to disable the GIC CPU interface
84 *****************************************************************************/
85void plat_arm_gic_cpuif_disable(void)
86{
87 gicv3_cpuif_disable(plat_my_core_pos());
88}
89
90/******************************************************************************
91 * ARM common helper to initialize the per-cpu redistributor interface in GICv3
92 *****************************************************************************/
93void plat_arm_gic_pcpu_init(void)
94{
95 gicv3_rdistif_init(plat_my_core_pos());
96}
Jeenu Viswambharan78132c92016-12-09 11:12:34 +000097
98/******************************************************************************
99 * ARM common helpers to power GIC redistributor interface
100 *****************************************************************************/
101void plat_arm_gic_redistif_on(void)
102{
103 gicv3_rdistif_on(plat_my_core_pos());
104}
105
106void plat_arm_gic_redistif_off(void)
107{
108 gicv3_rdistif_off(plat_my_core_pos());
109}