1/*
2 * Copyright (c) 2019-2022, Arm Limited. All rights reserved.
3 * Copyright (c) 2021, Cypress Semiconductor Corporation. All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 *
7 */
8
9/***********{{utilities.donotedit_warning}}***********/
10
11#ifndef __PSA_MANIFEST_PID_H__
12#define __PSA_MANIFEST_PID_H__
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18{% for partition in partitions %}
19#define {{"%-62s"|format(partition.manifest.name)}} ({{partition.attr.pid}})
20{% endfor %}
21
22#define {{"%-62s"|format("TFM_MAX_USER_PARTITIONS")}} ({{partitions | length()}})
23
24#ifdef __cplusplus
25}
26#endif
27
28#endif /* __PSA_MANIFEST_PID_H__ */
29