1 /*
2  * Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef TF_A_PALTFORM_DEF_H
8 #define TF_A_PALTFORM_DEF_H
9 
10 #include <stdbool.h>
11 
12 /**
13  * Provides a set of defaults for values defined by the platform specific
14  * 'platform_def.h' file. Deployments may override default definitions.
15  */
16 
17 #ifndef ENABLE_ASSERTIONS
18 #define ENABLE_ASSERTIONS       true
19 #endif
20 
21 #ifndef MAX_IO_HANDLES
22 #define MAX_IO_HANDLES          (4)
23 #endif
24 
25 #ifndef MAX_IO_DEVICES
26 #define MAX_IO_DEVICES          (4)
27 #endif
28 
29 #endif /* TF_A_PALTFORM_DEF_H */
30