1 /*
2  * SPDX-License-Identifier: BSD-3-Clause
3  * SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4  */
5 
6 #ifndef RIPAS_H
7 #define RIPAS_H
8 
9 /* The RmmRipas enumeration representing realm IPA state */
10 #define	EMPTY	0U	/* Unused IPA location */
11 #define	RAM	1U	/* Private code or data owned by the Realm */
12 
13 /*
14  * The RmiRipas enumeration representing realm IPA state.
15  *
16  * Map RmmRipas to RmiRipas to simplify code/decode operations.
17  */
18 enum ripas {
19 	RMI_EMPTY = EMPTY,
20 	RMI_RAM = RAM
21 };
22 
23 #endif /* RIPAS_H */
24