1 /*
2  * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef K3_GICV3_H
8 #define K3_GICV3_H
9 
10 #include <stdint.h>
11 
12 void k3_gic_driver_init(uintptr_t gic_base);
13 void k3_gic_init(void);
14 void k3_gic_cpuif_enable(void);
15 void k3_gic_cpuif_disable(void);
16 void k3_gic_pcpu_init(void);
17 
18 #endif /* K3_GICV3_H */
19