blob: c415ba109f5a4da610e3607e2f3c3fe0d54e3b40 [file] [log] [blame]
Yatharth Kochar6c0566c2015-10-02 17:56:48 +01001/*
Soby Mathewd0194872016-04-29 19:01:30 +01002 * Copyright (c) 2016, 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
34/*******************************************************************************
35 * Bit definitions inside the function id as per the SMC calling convention
36 ******************************************************************************/
37#define FUNCID_TYPE_SHIFT 31
38#define FUNCID_CC_SHIFT 30
39#define FUNCID_OEN_SHIFT 24
40#define FUNCID_NUM_SHIFT 0
41
42#define FUNCID_TYPE_MASK 0x1
43#define FUNCID_CC_MASK 0x1
44#define FUNCID_OEN_MASK 0x3f
45#define FUNCID_NUM_MASK 0xffff
46
47#define FUNCID_TYPE_WIDTH 1
48#define FUNCID_CC_WIDTH 1
49#define FUNCID_OEN_WIDTH 6
50#define FUNCID_NUM_WIDTH 16
51
52#define GET_SMC_CC(id) ((id >> FUNCID_CC_SHIFT) & \
53 FUNCID_CC_MASK)
54#define GET_SMC_TYPE(id) ((id >> FUNCID_TYPE_SHIFT) & \
55 FUNCID_TYPE_MASK)
56
57#define SMC_64 1
58#define SMC_32 0
59#define SMC_UNK 0xffffffff
60#define SMC_TYPE_FAST 1
61#define SMC_TYPE_STD 0
62#define SMC_PREEMPTED 0xfffffffe
63/*******************************************************************************
64 * Owning entity number definitions inside the function id as per the SMC
65 * calling convention
66 ******************************************************************************/
67#define OEN_ARM_START 0
68#define OEN_ARM_END 0
69#define OEN_CPU_START 1
70#define OEN_CPU_END 1
71#define OEN_SIP_START 2
72#define OEN_SIP_END 2
73#define OEN_OEM_START 3
74#define OEN_OEM_END 3
75#define OEN_STD_START 4 /* Standard Calls */
76#define OEN_STD_END 4
77#define OEN_TAP_START 48 /* Trusted Applications */
78#define OEN_TAP_END 49
79#define OEN_TOS_START 50 /* Trusted OS */
80#define OEN_TOS_END 63
81#define OEN_LIMIT 64
82
83#ifndef __ASSEMBLY__
84
85#include <cassert.h>
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010086#include <stdint.h>
87
88/* Various flags passed to SMC handlers */
89#define SMC_FROM_SECURE (0 << 0)
90#define SMC_FROM_NON_SECURE (1 << 0)
91
92#define is_caller_non_secure(_f) (!!(_f & SMC_FROM_NON_SECURE))
93#define is_caller_secure(_f) (!(is_caller_non_secure(_f)))
94
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010095/* The macro below is used to identify a Standard Service SMC call */
96#define is_std_svc_call(_fid) ((((_fid) >> FUNCID_OEN_SHIFT) & \
97 FUNCID_OEN_MASK) == OEN_STD_START)
98
99/* The macro below is used to identify a valid Fast SMC call */
100#define is_valid_fast_smc(_fid) ((!(((_fid) >> 16) & 0xff)) && \
101 (GET_SMC_TYPE(_fid) == SMC_TYPE_FAST))
102
103/*
104 * Macro to define UUID for services. Apart from defining and initializing a
105 * uuid_t structure, this macro verifies that the first word of the defined UUID
106 * does not equal SMC_UNK. This is to ensure that the caller won't mistake the
107 * returned UUID in x0 for an invalid SMC error return
108 */
109#define DEFINE_SVC_UUID(_name, _tl, _tm, _th, _cl, _ch, \
110 _n0, _n1, _n2, _n3, _n4, _n5) \
111 CASSERT(_tl != SMC_UNK, invalid_svc_uuid);\
112 static const uuid_t _name = { \
113 _tl, _tm, _th, _cl, _ch, \
114 { _n0, _n1, _n2, _n3, _n4, _n5 } \
115 }
116
Yatharth Kochar6c0566c2015-10-02 17:56:48 +0100117#endif /*__ASSEMBLY__*/
Soby Mathewd0194872016-04-29 19:01:30 +0100118#endif /* __SMCC_H__ */