/* * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include void plat_arm_gic_driver_init(void) { /* * The GICv3 driver is initialized in EL3 and does not need * to be initialized again in S-EL1. This is because the S-EL1 * can use GIC system registers to manage interrupts and does * not need GIC interface base addresses to be configured. */ gicv3_driver_init(get_plat_config()->gic_data); }