mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-15 08:57:02 +02:00
This initializes the GIC using the Arm GIC drivers in TF-A. The initial FPGA image uses a GIC600 implementation, and so that its power controller is enabled, this platform port calls the corresponding implementation-specific routines. Signed-off-by: Oliver Swede <oli.swede@arm.com> Change-Id: I88d5a073eead4b653b1ca73273182cd98a95e4c5
19 lines
366 B
C
19 lines
366 B
C
/*
|
|
* Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef FPGA_PRIVATE_H
|
|
#define FPGA_PRIVATE_H
|
|
|
|
unsigned int plat_fpga_calc_core_pos(u_register_t mpidr);
|
|
|
|
void fpga_console_init(void);
|
|
|
|
void plat_fpga_gic_init(void);
|
|
void fpga_pwr_gic_on_finish(void);
|
|
void fpga_pwr_gic_off(void);
|
|
|
|
#endif
|