1 /*
2  * Copyright (c) 2022-2023, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  * FWU metadata information as per the specification section 4.1:
7  * https://developer.arm.com/documentation/den0118/a/
8  *
9  */
10 
11 #ifndef FWU_PROTO_METADATA_H
12 #define FWU_PROTO_METADATA_H
13 
14 /**
15  * The number of banks for different versions of firmware.
16  * With the default configuration, a dual bank A/B scheme is used.
17  */
18 #ifndef FWU_METADATA_NUM_BANKS
19 #define FWU_METADATA_NUM_BANKS (2)
20 #endif
21 
22 #endif /* FWU_PROTO_METADATA_H */
23