mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 09:27:01 +02:00
Add SPM suspend driver for suspend/resume features. TEST=build pass BUG=b:202871018 Signed-off-by: Jason-ch Chen <jason-ch.chen@mediatek.com> Change-Id: I25b4b97cd3138a7b347385539e47ccfa884d64fc
16 lines
359 B
C
16 lines
359 B
C
/*
|
|
* Copyright (c) 2022, MediaTek Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef MT_LP_IRQREMAIN_H
|
|
#define MT_LP_IRQREMAIN_H
|
|
|
|
extern int mt_lp_irqremain_submit(void);
|
|
extern int mt_lp_irqremain_aquire(void);
|
|
extern int mt_lp_irqremain_release(void);
|
|
extern void mt_lp_irqremain_init(void);
|
|
|
|
#endif /* MT_LP_IRQREMAIN_H */
|