1 /*
2  * Copyright (c) 2022-2023, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #ifndef __BL2_IMAGE_ID_H__
9 #define __BL2_IMAGE_ID_H__
10 
11 enum rse_bl2_image_id_t {
12     RSE_BL2_IMAGE_S = 0,
13     RSE_BL2_IMAGE_NS,
14     RSE_BL2_IMAGE_AP,
15     RSE_BL2_IMAGE_SCP,
16 };
17 
18 #endif /* __BL2_IMAGE_ID_H__ */
19