1#-------------------------------------------------------------------------------
2# Copyright (c) 2022-2023, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
8menu "Platform partition component configs"
9    depends on TFM_PARTITION_PLATFORM
10
11config PLATFORM_SERVICE_INPUT_BUFFER_SIZE
12    int "Size of input buffer"
13    default 64
14    help
15      Size of the internal transiant buffer to hold input vectors from client.
16
17config PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE
18    int "Size of output buffer"
19    default 64
20    help
21      Size of the internal transiant buffer to hold service outputs.
22
23config PLATFORM_SP_STACK_SIZE
24    hex "Stack size"
25    default 0x500
26
27config PLATFORM_NV_COUNTER_MODULE_DISABLED
28    bool "Disable Non-volatile counter module"
29    default n
30
31endmenu
32