blob: 5aca101f007fbac18fe69b22a51784a716c92cd3 [file] [log] [blame]
Soby Mathewb4c6df42022-11-09 11:13:29 +00001/*
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 */
18enum ripas {
19 RMI_EMPTY = EMPTY,
20 RMI_RAM = RAM
21};
22
23#endif /* RIPAS_H */