mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

Enforce full include path for includes. Deprecate old paths. The following folders inside include/lib have been left unchanged: - include/lib/cpus/${ARCH} - include/lib/el3_runtime/${ARCH} The reason for this change is that having a global namespace for includes isn't a good idea. It defeats one of the advantages of having folders and it introduces problems that are sometimes subtle (because you may not know the header you are actually including if there are two of them). For example, this patch had to be created because two headers were called the same way:e0ea0928d5
("Fix gpio includes of mt8173 platform to avoid collision."). More recently, this patch has had similar problems:46f9b2c3a2
("drivers: add tzc380 support"). This problem was introduced in commit4ecca33988
("Move include and source files to logical locations"). At that time, there weren't too many headers so it wasn't a real issue. However, time has shown that this creates problems. Platforms that want to preserve the way they include headers may add the removed paths to PLAT_INCLUDES, but this is discouraged. Change-Id: I39dc53ed98f9e297a5966e723d1936d6ccf2fc8f Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
116 lines
3 KiB
C
116 lines
3 KiB
C
/*
|
|
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <assert.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <drivers/arm/gicv3.h>
|
|
#include <common/interrupt_props.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
#include "uniphier.h"
|
|
|
|
static uintptr_t uniphier_rdistif_base_addrs[PLATFORM_CORE_COUNT];
|
|
|
|
static const interrupt_prop_t uniphier_interrupt_props[] = {
|
|
/* G0 interrupts */
|
|
|
|
/* SGI0 */
|
|
INTR_PROP_DESC(8, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP0,
|
|
GIC_INTR_CFG_EDGE),
|
|
/* SGI6 */
|
|
INTR_PROP_DESC(14, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP0,
|
|
GIC_INTR_CFG_EDGE),
|
|
|
|
/* G1S interrupts */
|
|
|
|
/* Timer */
|
|
INTR_PROP_DESC(29, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP1S,
|
|
GIC_INTR_CFG_LEVEL),
|
|
/* SGI1 */
|
|
INTR_PROP_DESC(9, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP1S,
|
|
GIC_INTR_CFG_EDGE),
|
|
/* SGI2 */
|
|
INTR_PROP_DESC(10, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP1S,
|
|
GIC_INTR_CFG_EDGE),
|
|
/* SGI3 */
|
|
INTR_PROP_DESC(11, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP1S,
|
|
GIC_INTR_CFG_EDGE),
|
|
/* SGI4 */
|
|
INTR_PROP_DESC(12, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP1S,
|
|
GIC_INTR_CFG_EDGE),
|
|
/* SGI5 */
|
|
INTR_PROP_DESC(13, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP1S,
|
|
GIC_INTR_CFG_EDGE),
|
|
/* SGI7 */
|
|
INTR_PROP_DESC(15, GIC_HIGHEST_SEC_PRIORITY, INTR_GROUP1S,
|
|
GIC_INTR_CFG_EDGE)
|
|
};
|
|
|
|
static unsigned int uniphier_mpidr_to_core_pos(u_register_t mpidr)
|
|
{
|
|
return plat_core_pos_by_mpidr(mpidr);
|
|
}
|
|
|
|
static const struct gicv3_driver_data uniphier_gic_driver_data[] = {
|
|
[UNIPHIER_SOC_LD11] = {
|
|
.gicd_base = 0x5fe00000,
|
|
.gicr_base = 0x5fe40000,
|
|
.interrupt_props = uniphier_interrupt_props,
|
|
.interrupt_props_num = ARRAY_SIZE(uniphier_interrupt_props),
|
|
.rdistif_num = PLATFORM_CORE_COUNT,
|
|
.rdistif_base_addrs = uniphier_rdistif_base_addrs,
|
|
.mpidr_to_core_pos = uniphier_mpidr_to_core_pos,
|
|
},
|
|
[UNIPHIER_SOC_LD20] = {
|
|
.gicd_base = 0x5fe00000,
|
|
.gicr_base = 0x5fe80000,
|
|
.interrupt_props = uniphier_interrupt_props,
|
|
.interrupt_props_num = ARRAY_SIZE(uniphier_interrupt_props),
|
|
.rdistif_num = PLATFORM_CORE_COUNT,
|
|
.rdistif_base_addrs = uniphier_rdistif_base_addrs,
|
|
.mpidr_to_core_pos = uniphier_mpidr_to_core_pos,
|
|
},
|
|
[UNIPHIER_SOC_PXS3] = {
|
|
.gicd_base = 0x5fe00000,
|
|
.gicr_base = 0x5fe80000,
|
|
.interrupt_props = uniphier_interrupt_props,
|
|
.interrupt_props_num = ARRAY_SIZE(uniphier_interrupt_props),
|
|
.rdistif_num = PLATFORM_CORE_COUNT,
|
|
.rdistif_base_addrs = uniphier_rdistif_base_addrs,
|
|
.mpidr_to_core_pos = uniphier_mpidr_to_core_pos,
|
|
},
|
|
};
|
|
|
|
void uniphier_gic_driver_init(unsigned int soc)
|
|
{
|
|
assert(soc < ARRAY_SIZE(uniphier_gic_driver_data));
|
|
|
|
gicv3_driver_init(&uniphier_gic_driver_data[soc]);
|
|
}
|
|
|
|
void uniphier_gic_init(void)
|
|
{
|
|
gicv3_distif_init();
|
|
gicv3_rdistif_init(plat_my_core_pos());
|
|
gicv3_cpuif_enable(plat_my_core_pos());
|
|
}
|
|
|
|
void uniphier_gic_cpuif_enable(void)
|
|
{
|
|
gicv3_cpuif_enable(plat_my_core_pos());
|
|
}
|
|
|
|
void uniphier_gic_cpuif_disable(void)
|
|
{
|
|
gicv3_cpuif_disable(plat_my_core_pos());
|
|
}
|
|
|
|
void uniphier_gic_pcpu_init(void)
|
|
{
|
|
gicv3_rdistif_init(plat_my_core_pos());
|
|
}
|