Tamas Ban | c0d1499 | 2020-10-19 12:05:44 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2020, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | #ifndef __TFM_PLAT_CONFIG_H__ |
| 8 | #define __TFM_PLAT_CONFIG_H__ |
| 9 | |
| 10 | #ifdef __cplusplus |
| 11 | extern "C" { |
| 12 | #endif |
| 13 | |
| 14 | /* Enable the multiple data section copy and bss section clear feature |
| 15 | * in GNUARM low level start-up. |
| 16 | */ |
| 17 | #define __STARTUP_COPY_MULTIPLE |
| 18 | #define __STARTUP_CLEAR_BSS_MULTIPLE |
| 19 | |
| 20 | #ifdef __cplusplus |
| 21 | } |
| 22 | #endif |
| 23 | |
| 24 | #endif /* __TFM_PLAT_CONFIG_H__ */ |