mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
c71572aa54
Add sam_linux_is_optee_available() which allows to know if OP-TEE is available for Linux. This function is used by code which needs to know if we running with OP-TEE available or not. Signed-off-by: Clément Léger <clement.leger@bootlin.com> [claudiu.beznea: edit commit title and message, renamed sam_linux_is_in_normal_world() into sam_linux_is_optee_available()] Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Link: https://lore.kernel.org/r/20220606145701.185552-2-clement.leger@bootlin.com
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2022, Microchip
|
|
*/
|
|
|
|
#include <linux/arm-smccc.h>
|
|
#include <linux/of.h>
|
|
|
|
#include "sam_secure.h"
|
|
|
|
static bool optee_available;
|
|
|
|
#define SAM_SIP_SMC_STD_CALL_VAL(func_num) \
|
|
ARM_SMCCC_CALL_VAL(ARM_SMCCC_STD_CALL, ARM_SMCCC_SMC_32, \
|
|
ARM_SMCCC_OWNER_SIP, (func_num))
|
|
|
|
struct arm_smccc_res sam_smccc_call(u32 fn, u32 arg0, u32 arg1)
|
|
{
|
|
struct arm_smccc_res res = {.a0 = -1};
|
|
|
|
if (WARN_ON(!optee_available))
|
|
return res;
|
|
|
|
arm_smccc_smc(SAM_SIP_SMC_STD_CALL_VAL(fn), arg0, arg1, 0, 0, 0, 0, 0,
|
|
&res);
|
|
|
|
return res;
|
|
}
|
|
|
|
bool sam_linux_is_optee_available(void)
|
|
{
|
|
/* If optee has been detected, then we are running in normal world */
|
|
return optee_available;
|
|
}
|
|
|
|
void __init sam_secure_init(void)
|
|
{
|
|
struct device_node *np;
|
|
|
|
/*
|
|
* We only check that the OP-TEE node is present and available. The
|
|
* OP-TEE kernel driver is not needed for the type of interaction made
|
|
* with OP-TEE here so the driver's status is not checked.
|
|
*/
|
|
np = of_find_node_by_path("/firmware/optee");
|
|
if (np && of_device_is_available(np))
|
|
optee_available = true;
|
|
of_node_put(np);
|
|
|
|
if (optee_available)
|
|
pr_info("Running under OP-TEE firmware\n");
|
|
}
|