blob: 0068dc7316b8a9039faf74817f4312df378c831d [file] [log] [blame]
Jens Wiklanderaa5da462014-08-04 15:39:58 +02001/*
2 * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
3 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Jens Wiklanderaa5da462014-08-04 15:39:58 +02005 */
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +00006#ifndef TEESMC_OPTEED_MACROS_H
7#define TEESMC_OPTEED_MACROS_H
Jens Wiklanderaa5da462014-08-04 15:39:58 +02008
9#include <runtime_svc.h>
10
11#define TEESMC_OPTEED_RV(func_num) \
12 ((SMC_TYPE_FAST << FUNCID_TYPE_SHIFT) | \
13 ((SMC_32) << FUNCID_CC_SHIFT) | \
14 (62 << FUNCID_OEN_SHIFT) | \
15 ((func_num) & FUNCID_NUM_MASK))
16
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +000017#endif /* TEESMC_OPTEED_MACROS_H */