blob: 4fba682907dd4b36e224c640c75f6b094871bece [file] [log] [blame]
/*
* Copyright (c) 2019-2021, Arm Limited. All rights reserved.
* Copyright (c) 2021, Cypress Semiconductor Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
{{utilities.donotedit_warning}}
#ifndef __PSA_MANIFEST_PID_H__
#define __PSA_MANIFEST_PID_H__
#ifdef __cplusplus
extern "C" {
#endif
{% for partition in partitions %}
#define {{"%-62s"|format(partition.manifest.name)}} ({{partition.attr.pid}})
{% endfor %}
#define {{"%-62s"|format("TFM_MAX_USER_PARTITIONS")}} ({{partitions | length()}})
#ifdef __cplusplus
}
#endif
#endif /* __PSA_MANIFEST_PID_H__ */