mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 09:27:01 +02:00
This patch fixes the violations of Rule 21.1 from all the Tegra common header files. Rule 21.1 "#define and #undef shall not be used on a reserved identifier or reserved macro name" Signed-off-by: Varun Wadekar <vwadekar@nvidia.com> Change-Id: I2e117645c110e04c13fa86ebbbb38df4951d2185
31 lines
989 B
C
31 lines
989 B
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
* Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef TEGRA_GIC_H
|
|
#define TEGRA_GIC_H
|
|
|
|
#include <common/interrupt_props.h>
|
|
|
|
/*******************************************************************************
|
|
* Per-CPU struct describing FIQ state to be stored
|
|
******************************************************************************/
|
|
typedef struct pcpu_fiq_state {
|
|
uint64_t elr_el3;
|
|
uint64_t spsr_el3;
|
|
} pcpu_fiq_state_t;
|
|
|
|
/*******************************************************************************
|
|
* Fucntion declarations
|
|
******************************************************************************/
|
|
void tegra_gic_cpuif_deactivate(void);
|
|
void tegra_gic_init(void);
|
|
void tegra_gic_pcpu_init(void);
|
|
void tegra_gic_setup(const interrupt_prop_t *interrupt_props,
|
|
unsigned int interrupt_props_num);
|
|
|
|
#endif /* TEGRA_GIC_H */
|