blob: eb17206b55e0491663230423340c6d05089166eb [file] [log] [blame]
Boyan Karatotev8cef63d2025-01-07 11:26:56 +00001/*
2 * Copyright (c) 2025, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
Boyan Karatotev13b62812024-11-20 14:02:32 +00006
7#include <drivers/arm/gic.h>
8#include <drivers/arm/gicv5.h>
9
10void gic_cpuif_enable(unsigned int cpu_idx)
11{
12}
13
14void gic_cpuif_disable(unsigned int cpu_idx)
15{
16}
17
18void gic_pcpu_init(unsigned int cpu_idx)
19{
Boyan Karatotev82b228b2024-12-09 14:26:37 +000020 gicv5_enable_ppis();
Boyan Karatotev13b62812024-11-20 14:02:32 +000021}
22
23void gic_pcpu_off(unsigned int cpu_idx)
24{
25}
26