blob: ddf660b11e164d0bd2c1ab8616d3ebb3d13b4bc7 [file] [log] [blame]
Soby Mathewc6820d12016-05-09 17:49:55 +01001/*
2 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3 *
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
31#ifndef __ARCH_HELPERS_H__
32#define __ARCH_HELPERS_H__
33
34#include <arch.h> /* for additional register definitions */
35#include <stdint.h>
36#include <types.h>
37
38/**********************************************************************
39 * Macros which create inline functions to read or write CPU system
40 * registers
41 *********************************************************************/
42
43#define _DEFINE_COPROCR_WRITE_FUNC(_name, coproc, opc1, CRn, CRm, opc2) \
44static inline void write_## _name(u_register_t v) \
45{ \
46 __asm__ volatile ("mcr "#coproc","#opc1",%0,"#CRn","#CRm","#opc2 : : "r" (v));\
47}
48
49#define _DEFINE_COPROCR_READ_FUNC(_name, coproc, opc1, CRn, CRm, opc2) \
50static inline u_register_t read_ ## _name(void) \
51{ \
52 u_register_t v; \
53 __asm__ volatile ("mrc "#coproc","#opc1",%0,"#CRn","#CRm","#opc2 : "=r" (v));\
54 return v; \
55}
56
57/*
58 * The undocumented %Q and %R extended asm are used to implemented the below
59 * 64 bit `mrrc` and `mcrr` instructions. It works only on Little Endian
60 * systems for GCC versions < 4.6. Above GCC 4.6, both Little Endian and
61 * Big Endian systems generate the right instruction encoding.
62 */
63#if !(__GNUC__ > (4) || __GNUC__ == (4) && __GNUC_MINOR__ >= (6))
64#error "GCC 4.6 or above is required to build AArch32 Trusted Firmware"
65#endif
66
67#define _DEFINE_COPROCR_WRITE_FUNC_64(_name, coproc, opc1, CRm) \
68static inline void write64_## _name(uint64_t v) \
69{ \
70 __asm__ volatile ("mcrr "#coproc","#opc1", %Q0, %R0,"#CRm : : "r" (v));\
71}
72
73#define _DEFINE_COPROCR_READ_FUNC_64(_name, coproc, opc1, CRm) \
74static inline uint64_t read64_## _name(void) \
75{ uint64_t v; \
76 __asm__ volatile ("mrrc "#coproc","#opc1", %Q0, %R0,"#CRm : "=r" (v));\
77 return v; \
78}
79
80#define _DEFINE_SYSREG_READ_FUNC(_name, _reg_name) \
81static inline u_register_t read_ ## _name(void) \
82{ \
83 u_register_t v; \
84 __asm__ volatile ("mrs %0, " #_reg_name : "=r" (v)); \
85 return v; \
86}
87
88#define _DEFINE_SYSREG_WRITE_FUNC(_name, _reg_name) \
89static inline void write_ ## _name(u_register_t v) \
90{ \
91 __asm__ volatile ("msr " #_reg_name ", %0" : : "r" (v)); \
92}
93
94#define _DEFINE_SYSREG_WRITE_CONST_FUNC(_name, _reg_name) \
95static inline void write_ ## _name(const u_register_t v) \
96{ \
97 __asm__ volatile ("msr " #_reg_name ", %0" : : "i" (v)); \
98}
99
100/* Define read function for coproc register */
101#define DEFINE_COPROCR_READ_FUNC(_name, ...) \
102 _DEFINE_COPROCR_READ_FUNC(_name, __VA_ARGS__)
103
104/* Define read & write function for coproc register */
105#define DEFINE_COPROCR_RW_FUNCS(_name, ...) \
106 _DEFINE_COPROCR_READ_FUNC(_name, __VA_ARGS__) \
107 _DEFINE_COPROCR_WRITE_FUNC(_name, __VA_ARGS__)
108
109/* Define 64 bit read function for coproc register */
110#define DEFINE_COPROCR_READ_FUNC_64(_name, ...) \
111 _DEFINE_COPROCR_READ_FUNC_64(_name, __VA_ARGS__)
112
113/* Define 64 bit read & write function for coproc register */
114#define DEFINE_COPROCR_RW_FUNCS_64(_name, ...) \
115 _DEFINE_COPROCR_READ_FUNC_64(_name, __VA_ARGS__) \
116 _DEFINE_COPROCR_WRITE_FUNC_64(_name, __VA_ARGS__)
117
118/* Define read & write function for system register */
119#define DEFINE_SYSREG_RW_FUNCS(_name) \
120 _DEFINE_SYSREG_READ_FUNC(_name, _name) \
121 _DEFINE_SYSREG_WRITE_FUNC(_name, _name)
122
123/**********************************************************************
124 * Macros to create inline functions for tlbi operations
125 *********************************************************************/
126
127#define _DEFINE_TLBIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
128static inline void tlbi##_op(void) \
129{ \
130 u_register_t v = 0; \
131 __asm__ volatile ("mcr "#coproc","#opc1",%0,"#CRn","#CRm","#opc2 : : "r" (v));\
132}
133
134#define _DEFINE_TLBIOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
135static inline void tlbi##_op(u_register_t v) \
136{ \
137 __asm__ volatile ("mcr "#coproc","#opc1",%0,"#CRn","#CRm","#opc2 : : "r" (v));\
138}
139
140/* Define function for simple TLBI operation */
141#define DEFINE_TLBIOP_FUNC(_op, ...) \
142 _DEFINE_TLBIOP_FUNC(_op, __VA_ARGS__)
143
144/* Define function for TLBI operation with register parameter */
145#define DEFINE_TLBIOP_PARAM_FUNC(_op, ...) \
146 _DEFINE_TLBIOP_PARAM_FUNC(_op, __VA_ARGS__)
147
148/**********************************************************************
149 * Macros to create inline functions for DC operations
150 *********************************************************************/
151#define _DEFINE_DCOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
152static inline void dc##_op(u_register_t v) \
153{ \
154 __asm__ volatile ("mcr "#coproc","#opc1",%0,"#CRn","#CRm","#opc2 : : "r" (v));\
155}
156
157/* Define function for DC operation with register parameter */
158#define DEFINE_DCOP_PARAM_FUNC(_op, ...) \
159 _DEFINE_DCOP_PARAM_FUNC(_op, __VA_ARGS__)
160
161/**********************************************************************
162 * Macros to create inline functions for system instructions
163 *********************************************************************/
164 /* Define function for simple system instruction */
165#define DEFINE_SYSOP_FUNC(_op) \
166static inline void _op(void) \
167{ \
168 __asm__ (#_op); \
169}
170
171
172/* Define function for system instruction with type specifier */
173#define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \
174static inline void _op ## _type(void) \
175{ \
176 __asm__ (#_op " " #_type); \
177}
178
179/* Define function for system instruction with register parameter */
180#define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \
181static inline void _op ## _type(u_register_t v) \
182{ \
183 __asm__ (#_op " " #_type ", %0" : : "r" (v)); \
184}
185
186void flush_dcache_range(uintptr_t addr, size_t size);
187void clean_dcache_range(uintptr_t addr, size_t size);
188void inv_dcache_range(uintptr_t addr, size_t size);
189
190DEFINE_SYSOP_FUNC(wfi)
191DEFINE_SYSOP_FUNC(wfe)
192DEFINE_SYSOP_FUNC(sev)
193DEFINE_SYSOP_TYPE_FUNC(dsb, sy)
194DEFINE_SYSOP_TYPE_FUNC(dmb, sy)
195DEFINE_SYSOP_TYPE_FUNC(dsb, ish)
196DEFINE_SYSOP_TYPE_FUNC(dmb, ish)
197DEFINE_SYSOP_FUNC(isb)
198
199DEFINE_SYSREG_RW_FUNCS(spsr)
200DEFINE_SYSREG_RW_FUNCS(cpsr)
201
202/*******************************************************************************
203 * System register accessor prototypes
204 ******************************************************************************/
205DEFINE_COPROCR_READ_FUNC(mpidr, MPIDR)
206DEFINE_COPROCR_READ_FUNC(midr, MIDR)
207DEFINE_COPROCR_READ_FUNC(id_pfr1, ID_PFR1)
208DEFINE_COPROCR_READ_FUNC(isr, ISR)
209DEFINE_COPROCR_READ_FUNC(clidr, CLIDR)
210DEFINE_COPROCR_READ_FUNC_64(cntpct, CNTPCT_64)
211
212DEFINE_COPROCR_RW_FUNCS(scr, SCR)
213DEFINE_COPROCR_RW_FUNCS(ctr, CTR)
214DEFINE_COPROCR_RW_FUNCS(sctlr, SCTLR)
215DEFINE_COPROCR_RW_FUNCS(hsctlr, HSCTLR)
216DEFINE_COPROCR_RW_FUNCS(hcr, HCR)
217DEFINE_COPROCR_RW_FUNCS(hcptr, HCPTR)
218DEFINE_COPROCR_RW_FUNCS(cntfrq, CNTFRQ)
219DEFINE_COPROCR_RW_FUNCS(cnthctl, CNTHCTL)
220DEFINE_COPROCR_RW_FUNCS(mair0, MAIR0)
221DEFINE_COPROCR_RW_FUNCS(mair1, MAIR1)
222DEFINE_COPROCR_RW_FUNCS(ttbcr, TTBCR)
223DEFINE_COPROCR_RW_FUNCS(ttbr0, TTBR0)
224DEFINE_COPROCR_RW_FUNCS_64(ttbr0, TTBR0_64)
225DEFINE_COPROCR_RW_FUNCS(ttbr1, TTBR1)
226DEFINE_COPROCR_RW_FUNCS(vpidr, VPIDR)
227DEFINE_COPROCR_RW_FUNCS(vmpidr, VMPIDR)
228DEFINE_COPROCR_RW_FUNCS_64(vttbr, VTTBR_64)
229DEFINE_COPROCR_RW_FUNCS_64(ttbr1, TTBR1_64)
230DEFINE_COPROCR_RW_FUNCS_64(cntvoff, CNTVOFF_64)
231DEFINE_COPROCR_RW_FUNCS(csselr, CSSELR)
232
233DEFINE_COPROCR_RW_FUNCS(icc_sre_el1, ICC_SRE)
234DEFINE_COPROCR_RW_FUNCS(icc_sre_el2, ICC_HSRE)
235DEFINE_COPROCR_RW_FUNCS(icc_sre_el3, ICC_MSRE)
236DEFINE_COPROCR_RW_FUNCS(icc_pmr_el1, ICC_PMR)
237DEFINE_COPROCR_RW_FUNCS(icc_igrpen1_el3, ICC_MGRPEN1)
238DEFINE_COPROCR_RW_FUNCS(icc_igrpen0_el1, ICC_IGRPEN0)
239DEFINE_COPROCR_RW_FUNCS(icc_hppir0_el1, ICC_HPPIR0)
240DEFINE_COPROCR_RW_FUNCS(icc_hppir1_el1, ICC_HPPIR1)
241DEFINE_COPROCR_RW_FUNCS(icc_iar0_el1, ICC_IAR0)
242DEFINE_COPROCR_RW_FUNCS(icc_iar1_el1, ICC_IAR1)
243DEFINE_COPROCR_RW_FUNCS(icc_eoir0_el1, ICC_EOIR0)
244DEFINE_COPROCR_RW_FUNCS(icc_eoir1_el1, ICC_EOIR1)
245
246/*
247 * TLBI operation prototypes
248 */
249DEFINE_TLBIOP_FUNC(all, TLBIALL)
250DEFINE_TLBIOP_FUNC(allis, TLBIALLIS)
251DEFINE_TLBIOP_PARAM_FUNC(mva, TLBIMVA)
252DEFINE_TLBIOP_PARAM_FUNC(mvaa, TLBIMVAA)
253
254/*
255 * DC operation prototypes
256 */
257DEFINE_DCOP_PARAM_FUNC(civac, DCCIMVAC)
258DEFINE_DCOP_PARAM_FUNC(ivac, DCIMVAC)
259DEFINE_DCOP_PARAM_FUNC(cvac, DCCMVAC)
260
261/* Previously defined accessor functions with incomplete register names */
262#define dsb() dsbsy()
263
264#define IS_IN_SECURE() \
265 (GET_NS_BIT(read_scr()) == 0)
266
267 /*
268 * If EL3 is AArch32, then secure PL1 and monitor mode correspond to EL3
269 */
270#define IS_IN_EL3() \
271 ((GET_M32(read_cpsr()) == MODE32_mon) || \
272 (IS_IN_SECURE() && (GET_M32(read_cpsr()) != MODE32_usr)))
273
274/* Macros for compatibility with AArch64 system registers */
275#define read_mpidr_el1() read_mpidr()
276
277#define read_scr_el3() read_scr()
278#define write_scr_el3(_v) write_scr(_v)
279
280#define read_hcr_el2() read_hcr()
281#define write_hcr_el2(_v) write_hcr(_v)
282
283#define read_cpacr_el1() read_cpacr()
284#define write_cpacr_el1(_v) write_cpacr(_v)
285
286#define read_cntfrq_el0() read_cntfrq()
287#define write_cntfrq_el0(_v) write_cntfrq(_v)
288#define read_isr_el1() read_isr()
289
290#define read_cntpct_el0() read64_cntpct()
291
292#endif /* __ARCH_HELPERS_H__ */