blob: 7cfefaf5cf39126bf7d209973118da5c96e77a20 [file] [log] [blame]
Konstantin Porotchkine7be6e22018-10-08 16:53:09 +03001/*
2 * Copyright (C) 2018 Marvell International Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 * https://spdx.org/licenses
6 */
7
8#include <debug.h>
9#include <gicv3.h>
10#include <interrupt_props.h>
11#include <marvell_def.h>
12#include <plat_marvell.h>
13#include <platform.h>
14#include <platform_def.h>
15
16/******************************************************************************
17 * The following functions are defined as weak to allow a platform to override
18 * the way the GICv3 driver is initialised and used.
19 ******************************************************************************
20 */
21#pragma weak plat_marvell_gic_driver_init
22#pragma weak plat_marvell_gic_init
23#pragma weak plat_marvell_gic_cpuif_enable
24#pragma weak plat_marvell_gic_cpuif_disable
25#pragma weak plat_marvell_gic_pcpu_init
26
27/* The GICv3 driver only needs to be initialized in EL3 */
28static uintptr_t rdistif_base_addrs[PLATFORM_CORE_COUNT];
29
30static const interrupt_prop_t marvell_interrupt_props[] = {
31 PLAT_MARVELL_G1S_IRQ_PROPS(INTR_GROUP1S),
32 PLAT_MARVELL_G0_IRQ_PROPS(INTR_GROUP0)
33};
34
35/*
36 * We save and restore the GICv3 context on system suspend. Allocate the
37 * data in the designated EL3 Secure carve-out memory
38 */
39static gicv3_redist_ctx_t rdist_ctx __section("arm_el3_tzc_dram");
40static gicv3_dist_ctx_t dist_ctx __section("arm_el3_tzc_dram");
41
42/*
43 * MPIDR hashing function for translating MPIDRs read from GICR_TYPER register
44 * to core position.
45 *
46 * Calculating core position is dependent on MPIDR_EL1.MT bit. However, affinity
47 * values read from GICR_TYPER don't have an MT field. To reuse the same
48 * translation used for CPUs, we insert MT bit read from the PE's MPIDR into
49 * that read from GICR_TYPER.
50 *
51 * Assumptions:
52 *
53 * - All CPUs implemented in the system have MPIDR_EL1.MT bit set;
54 * - No CPUs implemented in the system use affinity level 3.
55 */
56static unsigned int marvell_gicv3_mpidr_hash(u_register_t mpidr)
57{
58 mpidr |= (read_mpidr_el1() & MPIDR_MT_MASK);
59 return plat_marvell_calc_core_pos(mpidr);
60}
61
62const gicv3_driver_data_t marvell_gic_data = {
63 .gicd_base = PLAT_MARVELL_GICD_BASE,
64 .gicr_base = PLAT_MARVELL_GICR_BASE,
65 .interrupt_props = marvell_interrupt_props,
66 .interrupt_props_num = ARRAY_SIZE(marvell_interrupt_props),
67 .rdistif_num = PLATFORM_CORE_COUNT,
68 .rdistif_base_addrs = rdistif_base_addrs,
69 .mpidr_to_core_pos = marvell_gicv3_mpidr_hash
70};
71
72void plat_marvell_gic_driver_init(void)
73{
74 /*
75 * The GICv3 driver is initialized in EL3 and does not need
76 * to be initialized again in SEL1. This is because the S-EL1
77 * can use GIC system registers to manage interrupts and does
78 * not need GIC interface base addresses to be configured.
79 */
80#if IMAGE_BL31
81 gicv3_driver_init(&marvell_gic_data);
82#endif
83}
84
85/******************************************************************************
86 * Marvell common helper to initialize the GIC. Only invoked by BL31
87 ******************************************************************************
88 */
89void plat_marvell_gic_init(void)
90{
91 /* Initialize GIC-600 Multi Chip feature,
92 * only if the maximum number of north bridges
93 * is more than 1 - otherwise no need for multi
94 * chip feature initialization
95 */
96#if (PLAT_MARVELL_NORTHB_COUNT > 1)
97 if (gic600_multi_chip_init())
98 ERROR("GIC-600 Multi Chip initialization failed\n");
99#endif
100 gicv3_distif_init();
101 gicv3_rdistif_init(plat_my_core_pos());
102 gicv3_cpuif_enable(plat_my_core_pos());
103}
104
105/******************************************************************************
106 * Marvell common helper to enable the GIC CPU interface
107 ******************************************************************************
108 */
109void plat_marvell_gic_cpuif_enable(void)
110{
111 gicv3_cpuif_enable(plat_my_core_pos());
112}
113
114/******************************************************************************
115 * Marvell common helper to disable the GIC CPU interface
116 ******************************************************************************
117 */
118void plat_marvell_gic_cpuif_disable(void)
119{
120 gicv3_cpuif_disable(plat_my_core_pos());
121}
122
123/******************************************************************************
124 * Marvell common helper to init. the per-cpu redistributor interface in GICv3
125 ******************************************************************************
126 */
127void plat_marvell_gic_pcpu_init(void)
128{
129 gicv3_rdistif_init(plat_my_core_pos());
130}
131
132/******************************************************************************
133 * Marvell common helper to save SPI irq states in GICv3
134 ******************************************************************************
135 */
136void plat_marvell_gic_irq_save(void)
137{
138
139 /*
140 * If an ITS is available, save its context before
141 * the Redistributor using:
142 * gicv3_its_save_disable(gits_base, &its_ctx[i])
143 * Additionally, an implementation-defined sequence may
144 * be required to save the whole ITS state.
145 */
146
147 /*
148 * Save the GIC Redistributors and ITS contexts before the
149 * Distributor context. As we only handle SYSTEM SUSPEND API,
150 * we only need to save the context of the CPU that is issuing
151 * the SYSTEM SUSPEND call, i.e. the current CPU.
152 */
153 gicv3_rdistif_save(plat_my_core_pos(), &rdist_ctx);
154
155 /* Save the GIC Distributor context */
156 gicv3_distif_save(&dist_ctx);
157
158 /*
159 * From here, all the components of the GIC can be safely powered down
160 * as long as there is an alternate way to handle wakeup interrupt
161 * sources.
162 */
163}
164
165/******************************************************************************
166 * Marvell common helper to restore SPI irq states in GICv3
167 ******************************************************************************
168 */
169void plat_marvell_gic_irq_restore(void)
170{
171 /* Restore the GIC Distributor context */
172 gicv3_distif_init_restore(&dist_ctx);
173
174 /*
175 * Restore the GIC Redistributor and ITS contexts after the
176 * Distributor context. As we only handle SYSTEM SUSPEND API,
177 * we only need to restore the context of the CPU that issued
178 * the SYSTEM SUSPEND call.
179 */
180 gicv3_rdistif_init_restore(plat_my_core_pos(), &rdist_ctx);
181
182 /*
183 * If an ITS is available, restore its context after
184 * the Redistributor using:
185 * gicv3_its_restore(gits_base, &its_ctx[i])
186 * An implementation-defined sequence may be required to
187 * restore the whole ITS state. The ITS must also be
188 * re-enabled after this sequence has been executed.
189 */
190}
191
192/******************************************************************************
193 * Marvell common helper to save per-cpu PPI irq states in GICv3
194 ******************************************************************************
195 */
196void plat_marvell_gic_irq_pcpu_save(void)
197{
198 gicv3_rdistif_save(plat_my_core_pos(), &rdist_ctx);
199}
200
201/******************************************************************************
202 * Marvell common helper to restore per-cpu PPI irq states in GICv3
203 ******************************************************************************
204 */
205void plat_marvell_gic_irq_pcpu_restore(void)
206{
207 gicv3_rdistif_init_restore(plat_my_core_pos(), &rdist_ctx);
208}