blob: 6bac8ecc73b0bc1bb66c96e9cc72319237ac2562 [file] [log] [blame]
Tushar Khandelwal59f673a2024-05-08 14:42:10 +01001/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4 */
5
6#ifndef MEC_H
7#define MEC_H
8
9/* MECID helper functions */
10unsigned int mecid_max(void);
11bool mec_assign(unsigned int mecid);
12bool mec_unassign(unsigned int mecid);
Jean-Philippe Bruckerda47f862025-01-23 14:40:19 +000013bool mecid_is_private(unsigned int mecid);
Tushar Khandelwal59f673a2024-05-08 14:42:10 +010014
15#endif