1 /* 2 * Copyright (c) 2022, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __CONFIG_TFM_TARGET_H__ 9 #define __CONFIG_TFM_TARGET_H__ 10 11 /* Size of output buffer in platform service. */ 12 #undef ITS_NUM_ASSETS 13 #define ITS_NUM_ASSETS 12 14 15 /* The maximum asset size to be stored in the Protected Storage area. */ 16 #undef PS_MAX_ASSET_SIZE 17 #define PS_MAX_ASSET_SIZE 512 18 19 /* The maximum number of assets to be stored in the Protected Storage area. */ 20 #undef PS_NUM_ASSETS 21 #define PS_NUM_ASSETS 12 22 23 #endif /* __CONFIG_TFM_TARGET_H__ */ 24