Xinyu Zhang | a2fab0e | 2022-10-24 15:37:46 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2022, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_BASE_H__ |
| 9 | #define __CONFIG_BASE_H__ |
| 10 | |
Xinyu Zhang | 77668dd | 2022-10-24 16:17:37 +0800 | [diff] [blame^] | 11 | /* Platform Partition Configs */ |
| 12 | |
| 13 | /* Size of input buffer in platform service */ |
| 14 | #define PLATFORM_SERVICE_INPUT_BUFFER_SIZE 64 |
| 15 | |
| 16 | /* Size of output buffer in platform service */ |
| 17 | #define PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE 64 |
| 18 | |
| 19 | /* The stack size of the Platform Secure Partition */ |
| 20 | #define PLATFORM_SP_STACK_SIZE 0x500 |
| 21 | |
| 22 | /* Disable Non-volatile counter module */ |
| 23 | #define PLATFORM_NV_COUNTER_MODULE_DISABLED 0 |
| 24 | |
Xinyu Zhang | a2fab0e | 2022-10-24 15:37:46 +0800 | [diff] [blame] | 25 | #endif /* __CONFIG_BASE_H__ */ |