1#------------------------------------------------------------------------------- 2# Copyright (c) 2022, 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 15config PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE 16 int "Size of output buffer" 17 default 64 18 19config PLATFORM_SP_STACK_SIZE 20 hex "Stack size" 21 default 0x500 22 23config PLATFORM_NV_COUNTER_MODULE_DISABLED 24 bool "Disable Non-volatile counter module" 25 default n 26 27endmenu 28