mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00
feat(rdv3): introduce platform handler for Group0 interrupt
This patch introduces a handler for RD-V3 variants to handle Group0 secure interrupts. Currently, it is empty but serves as a placeholder for future Group0 interrupt sources. Signed-off-by: Nishant Sharma <nishant.sharma@arm.com> Signed-off-by: Rakshit Goyal <rakshit.goyal@arm.com> Change-Id: Ifa418094f6075a6cdc33e63eec1825103bbf6d68
This commit is contained in:
parent
82f46593de
commit
4593b93239
1 changed files with 11 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
|
* Copyright (c) 2024-2025, Arm Limited and Contributors. All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
*/
|
*/
|
||||||
|
@ -198,3 +198,13 @@ int plat_rse_comms_init(void)
|
||||||
/* Initialize the communication channel between AP and RSE */
|
/* Initialize the communication channel between AP and RSE */
|
||||||
return rse_comms_init(snd_base, rcv_base);
|
return rse_comms_init(snd_base, rcv_base);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int plat_spmd_handle_group0_interrupt(uint32_t intid)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* As of now, there are no sources of Group0 secure interrupt enabled
|
||||||
|
* for FVP.
|
||||||
|
*/
|
||||||
|
(void)intid;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue