blob: 2549d35661376112a238bef493c74b94bbc56707 [file] [log] [blame]
Madhukar Pappireddy042043b2023-03-02 16:33:25 -06001/*
2 * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdint.h>
8
Govindraj Raja436ea5e2023-05-10 14:50:36 -05009#if defined(SPD_spmd) && (SPMC_AT_EL3 == 0)
Madhukar Pappireddy042043b2023-03-02 16:33:25 -060010/*
11 * A dummy implementation of the platform handler for Group0 secure interrupt.
12 */
13int plat_spmd_handle_group0_interrupt(uint32_t intid)
14{
15 (void)intid;
16 return -1;
17}
Govindraj Raja436ea5e2023-05-10 14:50:36 -050018#endif /*defined(SPD_spmd) && (SPMC_AT_EL3 == 0)*/