blob: 448964d3d689ee39beb13ef2f0e8837055d5156c [file] [log] [blame]
Tamas Banc0d14992020-10-19 12:05:44 +01001/*
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
11extern "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__ */