blob: 708805f9aaf049a0456e3f16af235a0916bf6a68 [file] [log] [blame]
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +01001/*
David Cunado9edac042017-01-19 10:26:16 +00002 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
Yatharth Kocharbbf8f6f2015-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 Mathewcf0b1492016-04-29 19:01:30 +010031#ifndef __SMCC_H__
32#define __SMCC_H__
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +010033
David Cunado9edac042017-01-19 10:26:16 +000034#include <utils.h>
35
Yatharth Kocharbbf8f6f2015-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 Cunado9edac042017-01-19 10:26:16 +000062#define SMC_TYPE_FAST ULL(1)
David Cunado16292f52017-04-05 11:34:03 +010063#if !ERROR_DEPRECATED
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +010064#define SMC_TYPE_STD 0
David Cunado16292f52017-04-05 11:34:03 +010065#endif
66#define SMC_TYPE_YIELD 0
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +010067#define SMC_PREEMPTED 0xfffffffe
68/*******************************************************************************
69 * Owning entity number definitions inside the function id as per the SMC
70 * calling convention
71 ******************************************************************************/
72#define OEN_ARM_START 0
73#define OEN_ARM_END 0
74#define OEN_CPU_START 1
75#define OEN_CPU_END 1
76#define OEN_SIP_START 2
77#define OEN_SIP_END 2
78#define OEN_OEM_START 3
79#define OEN_OEM_END 3
David Cunado16292f52017-04-05 11:34:03 +010080#define OEN_STD_START 4 /* Standard Service Calls */
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +010081#define OEN_STD_END 4
82#define OEN_TAP_START 48 /* Trusted Applications */
83#define OEN_TAP_END 49
84#define OEN_TOS_START 50 /* Trusted OS */
85#define OEN_TOS_END 63
86#define OEN_LIMIT 64
87
88#ifndef __ASSEMBLY__
89
90#include <cassert.h>
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +010091#include <stdint.h>
92
93/* Various flags passed to SMC handlers */
94#define SMC_FROM_SECURE (0 << 0)
95#define SMC_FROM_NON_SECURE (1 << 0)
96
97#define is_caller_non_secure(_f) (!!(_f & SMC_FROM_NON_SECURE))
98#define is_caller_secure(_f) (!(is_caller_non_secure(_f)))
99
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +0100100/* The macro below is used to identify a Standard Service SMC call */
101#define is_std_svc_call(_fid) ((((_fid) >> FUNCID_OEN_SHIFT) & \
102 FUNCID_OEN_MASK) == OEN_STD_START)
103
104/* The macro below is used to identify a valid Fast SMC call */
105#define is_valid_fast_smc(_fid) ((!(((_fid) >> 16) & 0xff)) && \
106 (GET_SMC_TYPE(_fid) == SMC_TYPE_FAST))
107
108/*
109 * Macro to define UUID for services. Apart from defining and initializing a
110 * uuid_t structure, this macro verifies that the first word of the defined UUID
111 * does not equal SMC_UNK. This is to ensure that the caller won't mistake the
112 * returned UUID in x0 for an invalid SMC error return
113 */
114#define DEFINE_SVC_UUID(_name, _tl, _tm, _th, _cl, _ch, \
115 _n0, _n1, _n2, _n3, _n4, _n5) \
116 CASSERT(_tl != SMC_UNK, invalid_svc_uuid);\
117 static const uuid_t _name = { \
118 _tl, _tm, _th, _cl, _ch, \
119 { _n0, _n1, _n2, _n3, _n4, _n5 } \
120 }
121
Yatharth Kocharbbf8f6f2015-10-02 17:56:48 +0100122#endif /*__ASSEMBLY__*/
Soby Mathewcf0b1492016-04-29 19:01:30 +0100123#endif /* __SMCC_H__ */