mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-15 17:07:04 +02:00
To make software license auditing simpler, use SPDX[0] license identifiers instead of duplicating the license text in every file. NOTE: Files that have been imported by FreeBSD have not been modified. [0]: https://spdx.org/ Change-Id: I80a00e1f641b8cc075ca5a95b10607ed9ed8761a Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef __ARM_GIC_H__
|
|
#define __ARM_GIC_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
/*******************************************************************************
|
|
* Function declarations
|
|
******************************************************************************/
|
|
void arm_gic_init(uintptr_t gicc_base,
|
|
uintptr_t gicd_base,
|
|
uintptr_t gicr_base,
|
|
const unsigned int *irq_sec_ptr,
|
|
unsigned int num_irqs) __deprecated;
|
|
void arm_gic_setup(void) __deprecated;
|
|
void arm_gic_cpuif_deactivate(void) __deprecated;
|
|
void arm_gic_cpuif_setup(void) __deprecated;
|
|
void arm_gic_pcpu_distif_setup(void) __deprecated;
|
|
|
|
uint32_t arm_gic_interrupt_type_to_line(uint32_t type,
|
|
uint32_t security_state) __deprecated;
|
|
uint32_t arm_gic_get_pending_interrupt_type(void) __deprecated;
|
|
uint32_t arm_gic_get_pending_interrupt_id(void) __deprecated;
|
|
uint32_t arm_gic_acknowledge_interrupt(void) __deprecated;
|
|
void arm_gic_end_of_interrupt(uint32_t id) __deprecated;
|
|
uint32_t arm_gic_get_interrupt_type(uint32_t id) __deprecated;
|
|
|
|
#endif /* __GIC_H__ */
|