mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 15:34:48 +08:00
a4fb174651
For backward compatibility reasons, PSCI maintains SMCCC version as SMCCC didn't provide ARM_SMCCC_VERSION_FUNC_ID until v1.1. PSCI initialises both the SMCCC version and conduit. Similar to the conduit, let us provide accessors to fetch the SMCCC version also so that other SMCCC v1.1+ features can use it. Signed-off-by: Sudeep Holla <sudeep.holla@arm.com> Tested-by: Etienne Carriere <etienne.carriere@st.com> Reviewed-by: Steven Price <steven.price@arm.com> Reviewed-by: Etienne Carriere <etienne.carriere@st.com> Acked-by: Mark Rutland <mark.rutland@arm.com> Link: https://lore.kernel.org/r/20200518091222.27467-7-sudeep.holla@arm.com Signed-off-by: Will Deacon <will@kernel.org>
32 lines
642 B
C
32 lines
642 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2020 Arm Limited
|
|
*/
|
|
|
|
#define pr_fmt(fmt) "smccc: " fmt
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/arm-smccc.h>
|
|
|
|
static u32 smccc_version = ARM_SMCCC_VERSION_1_0;
|
|
static enum arm_smccc_conduit smccc_conduit = SMCCC_CONDUIT_NONE;
|
|
|
|
void __init arm_smccc_version_init(u32 version, enum arm_smccc_conduit conduit)
|
|
{
|
|
smccc_version = version;
|
|
smccc_conduit = conduit;
|
|
}
|
|
|
|
enum arm_smccc_conduit arm_smccc_1_1_get_conduit(void)
|
|
{
|
|
if (smccc_version < ARM_SMCCC_VERSION_1_1)
|
|
return SMCCC_CONDUIT_NONE;
|
|
|
|
return smccc_conduit;
|
|
}
|
|
|
|
u32 arm_smccc_get_version(void)
|
|
{
|
|
return smccc_version;
|
|
}
|