Julian Hall | 536afb1 | 2022-10-12 11:25:55 +0100 | [diff] [blame] | 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 |
Gyorgy Szing | 3c44624 | 2023-03-31 01:53:15 +0200 | [diff] [blame] | 19 | #define FWU_METADATA_NUM_BANKS (2) |
Julian Hall | 536afb1 | 2022-10-12 11:25:55 +0100 | [diff] [blame] | 20 | #endif |
| 21 | |
| 22 | #endif /* FWU_PROTO_METADATA_H */ |