blob: 7a3c4fb23c0501df85285b79b7fa154e5d41061a [file] [log] [blame]
Julian Hall536afb12022-10-12 11:25:55 +01001/*
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
Gyorgy Szing3c446242023-03-31 01:53:15 +020019#define FWU_METADATA_NUM_BANKS (2)
Julian Hall536afb12022-10-12 11:25:55 +010020#endif
21
22#endif /* FWU_PROTO_METADATA_H */