blob: 2f562c5dcb13c22545c32daf85e1e24563ce610f [file] [log] [blame]
Yatharth Kochar6c0566c2015-10-02 17:56:48 +01001/*
David Cunado2e36de82017-01-19 10:26:16 +00002 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
Yatharth Kochar6c0566c2015-10-02 17:56:48 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
Soby Mathewd0194872016-04-29 19:01:30 +010031#ifndef __SMCC_H__
32#define __SMCC_H__
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010033
David Cunado2e36de82017-01-19 10:26:16 +000034#include <utils.h>
35
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010036/*******************************************************************************
37 * Bit definitions inside the function id as per the SMC calling convention
38 ******************************************************************************/
39#define FUNCID_TYPE_SHIFT 31
40#define FUNCID_CC_SHIFT 30
41#define FUNCID_OEN_SHIFT 24
42#define FUNCID_NUM_SHIFT 0
43
44#define FUNCID_TYPE_MASK 0x1
45#define FUNCID_CC_MASK 0x1
46#define FUNCID_OEN_MASK 0x3f
47#define FUNCID_NUM_MASK 0xffff
48
49#define FUNCID_TYPE_WIDTH 1
50#define FUNCID_CC_WIDTH 1
51#define FUNCID_OEN_WIDTH 6
52#define FUNCID_NUM_WIDTH 16
53
54#define GET_SMC_CC(id) ((id >> FUNCID_CC_SHIFT) & \
55 FUNCID_CC_MASK)
56#define GET_SMC_TYPE(id) ((id >> FUNCID_TYPE_SHIFT) & \
57 FUNCID_TYPE_MASK)
58
59#define SMC_64 1
60#define SMC_32 0
61#define SMC_UNK 0xffffffff
David Cunado2e36de82017-01-19 10:26:16 +000062#define SMC_TYPE_FAST ULL(1)
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010063#define SMC_TYPE_STD 0
64#define SMC_PREEMPTED 0xfffffffe
65/*******************************************************************************
66 * Owning entity number definitions inside the function id as per the SMC
67 * calling convention
68 ******************************************************************************/
69#define OEN_ARM_START 0
70#define OEN_ARM_END 0
71#define OEN_CPU_START 1
72#define OEN_CPU_END 1
73#define OEN_SIP_START 2
74#define OEN_SIP_END 2
75#define OEN_OEM_START 3
76#define OEN_OEM_END 3
77#define OEN_STD_START 4 /* Standard Calls */
78#define OEN_STD_END 4
79#define OEN_TAP_START 48 /* Trusted Applications */
80#define OEN_TAP_END 49
81#define OEN_TOS_START 50 /* Trusted OS */
82#define OEN_TOS_END 63
83#define OEN_LIMIT 64
84
85#ifndef __ASSEMBLY__
86
87#include <cassert.h>
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010088#include <stdint.h>
89
90/* Various flags passed to SMC handlers */
91#define SMC_FROM_SECURE (0 << 0)
92#define SMC_FROM_NON_SECURE (1 << 0)
93
94#define is_caller_non_secure(_f) (!!(_f & SMC_FROM_NON_SECURE))
95#define is_caller_secure(_f) (!(is_caller_non_secure(_f)))
96
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010097/* The macro below is used to identify a Standard Service SMC call */
98#define is_std_svc_call(_fid) ((((_fid) >> FUNCID_OEN_SHIFT) & \
99 FUNCID_OEN_MASK) == OEN_STD_START)
100
101/* The macro below is used to identify a valid Fast SMC call */
102#define is_valid_fast_smc(_fid) ((!(((_fid) >> 16) & 0xff)) && \
103 (GET_SMC_TYPE(_fid) == SMC_TYPE_FAST))
104
105/*
106 * Macro to define UUID for services. Apart from defining and initializing a
107 * uuid_t structure, this macro verifies that the first word of the defined UUID
108 * does not equal SMC_UNK. This is to ensure that the caller won't mistake the
109 * returned UUID in x0 for an invalid SMC error return
110 */
111#define DEFINE_SVC_UUID(_name, _tl, _tm, _th, _cl, _ch, \
112 _n0, _n1, _n2, _n3, _n4, _n5) \
113 CASSERT(_tl != SMC_UNK, invalid_svc_uuid);\
114 static const uuid_t _name = { \
115 _tl, _tm, _th, _cl, _ch, \
116 { _n0, _n1, _n2, _n3, _n4, _n5 } \
117 }
118
Yatharth Kochar6c0566c2015-10-02 17:56:48 +0100119#endif /*__ASSEMBLY__*/
Soby Mathewd0194872016-04-29 19:01:30 +0100120#endif /* __SMCC_H__ */