1 // SPDX-License-Identifier: GPL-2.0-only
3 * OMAP Secure API infrastructure.
5 * Copyright (C) 2011 Texas Instruments, Inc.
6 * Santosh Shilimkar <santosh.shilimkar@ti.com>
7 * Copyright (C) 2012 Ivaylo Dimitrov <freemangordon@abv.bg>
8 * Copyright (C) 2013 Pali Rohár <pali@kernel.org>
11 #include <linux/arm-smccc.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
15 #include <linux/memblock.h>
18 #include <asm/cacheflush.h>
19 #include <asm/memblock.h>
22 #include "omap-secure.h"
24 static phys_addr_t omap_secure_memblock_base
;
28 #define OMAP_SIP_SMC_STD_CALL_VAL(func_num) \
29 ARM_SMCCC_CALL_VAL(ARM_SMCCC_STD_CALL, ARM_SMCCC_SMC_32, \
30 ARM_SMCCC_OWNER_SIP, (func_num))
32 static void __init
omap_optee_init_check(void)
34 struct device_node
*np
;
37 * We only check that the OP-TEE node is present and available. The
38 * OP-TEE kernel driver is not needed for the type of interaction made
39 * with OP-TEE here so the driver's status is not checked.
41 np
= of_find_node_by_path("/firmware/optee");
42 if (np
&& of_device_is_available(np
))
43 optee_available
= true;
48 * omap_sec_dispatcher: Routine to dispatch low power secure
50 * @idx: The HAL API index
51 * @flag: The flag indicating criticality of operation
52 * @nargs: Number of valid arguments out of four.
53 * @arg1, arg2, arg3 args4: Parameters passed to secure API
55 * Return the non-zero error value on failure.
57 u32
omap_secure_dispatcher(u32 idx
, u32 flag
, u32 nargs
, u32 arg1
, u32 arg2
,
70 * Secure API needs physical address
71 * pointer for the parameters
74 outer_clean_range(__pa(param
), __pa(param
+ 5));
75 ret
= omap_smc2(idx
, flag
, __pa(param
));
80 void omap_smccc_smc(u32 fn
, u32 arg
)
82 struct arm_smccc_res res
;
84 arm_smccc_smc(OMAP_SIP_SMC_STD_CALL_VAL(fn
), arg
,
85 0, 0, 0, 0, 0, 0, &res
);
86 WARN(res
.a0
, "Secure function call 0x%08x failed\n", fn
);
89 void omap_smc1(u32 fn
, u32 arg
)
92 * If this platform has OP-TEE installed we use ARM SMC calls
93 * otherwise fall back to the OMAP ROM style calls.
96 omap_smccc_smc(fn
, arg
);
101 /* Allocate the memory to save secure ram */
102 int __init
omap_secure_ram_reserve_memblock(void)
104 u32 size
= OMAP_SECURE_RAM_STORAGE
;
106 size
= ALIGN(size
, SECTION_SIZE
);
107 omap_secure_memblock_base
= arm_memblock_steal(size
, SECTION_SIZE
);
112 phys_addr_t
omap_secure_ram_mempool_base(void)
114 return omap_secure_memblock_base
;
117 #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_PM)
118 u32
omap3_save_secure_ram(void __iomem
*addr
, int size
)
123 if (size
!= OMAP3_SAVE_SECURE_RAM_SZ
)
124 return OMAP3_SAVE_SECURE_RAM_SZ
;
126 param
[0] = 4; /* Number of arguments */
127 param
[1] = __pa(addr
); /* Physical address for saving */
132 ret
= save_secure_ram_context(__pa(param
));
139 * rx51_secure_dispatcher: Routine to dispatch secure PPA API calls
140 * @idx: The PPA API index
141 * @process: Process ID
142 * @flag: The flag indicating criticality of operation
143 * @nargs: Number of valid arguments out of four.
144 * @arg1, arg2, arg3 args4: Parameters passed to secure API
146 * Return the non-zero error value on failure.
148 * NOTE: rx51_secure_dispatcher differs from omap_secure_dispatcher because
149 * it calling omap_smc3() instead omap_smc2() and param[0] is nargs+1
151 u32
rx51_secure_dispatcher(u32 idx
, u32 process
, u32 flag
, u32 nargs
,
152 u32 arg1
, u32 arg2
, u32 arg3
, u32 arg4
)
157 param
[0] = nargs
+1; /* RX-51 needs number of arguments + 1 */
164 * Secure API needs physical address
165 * pointer for the parameters
170 outer_clean_range(__pa(param
), __pa(param
+ 5));
171 ret
= omap_smc3(idx
, process
, flag
, __pa(param
));
180 * rx51_secure_update_aux_cr: Routine to modify the contents of Auxiliary Control Register
181 * @set_bits: bits to set in ACR
182 * @clr_bits: bits to clear in ACR
184 * Return the non-zero error value on failure.
186 u32
rx51_secure_update_aux_cr(u32 set_bits
, u32 clear_bits
)
191 asm volatile ("mrc p15, 0, %0, c1, c0, 1" : "=r" (acr
));
195 return rx51_secure_dispatcher(RX51_PPA_WRITE_ACR
,
202 * rx51_secure_rng_call: Routine for HW random generator
204 u32
rx51_secure_rng_call(u32 ptr
, u32 count
, u32 flag
)
206 return rx51_secure_dispatcher(RX51_PPA_HWRNG
,
209 3, ptr
, count
, flag
, 0);
212 void __init
omap_secure_init(void)
214 omap_optee_init_check();