summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-bcm/kona.c
diff options
context:
space:
mode:
authorAlex Elder <elder@linaro.org>2014-04-21 16:53:05 -0500
committerMatt Porter <mporter@linaro.org>2014-04-25 08:51:33 -0400
commit6c90f10864d1f7492ebe4c90465a9c9797ce649e (patch)
tree9d953197ee4c05b5ea59470a4728dea46d793bc6 /arch/arm/mach-bcm/kona.c
parentc64756cca2fb4da96fcc71e376d712297aedc4a2 (diff)
downloadop-kernel-dev-6c90f10864d1f7492ebe4c90465a9c9797ce649e.zip
op-kernel-dev-6c90f10864d1f7492ebe4c90465a9c9797ce649e.tar.gz
ARM: bcm: have bcm_kona_smc() return request result
Currently it is assumed that SEC_ROM_RET_OK is the only valid "good" result of a secure monitor request. However the values that can be returned by a secure monitor request are dependent on which service id was provided. We therefore should handle the result in a request-dependent way. The most natural way to do that is to have the initiator of the request--where bcm_kona_smc() is called--handle the result in a way appropriate to the request. An "smc" operation must be performed only on core 0, while the request can be initiated from any core. To pass back the request result, we add a new field to the bcm_kona_smc_data structure, and have bcm_kona_smc() return that value rather than 0. There's only one caller right now. Move the existing check of the result out of __bcm_kona_smc() and into the kona_l2_cache_init() where the SSAPI_ENABLE_L2_CACHE request is initiated. Signed-off-by: Alex Elder <elder@linaro.org> Reviewed-by: Tim Kryger <tim.kryger@linaro.org> Reviewed-by: Markus Mayer <markus.mayer@linaro.org> Reviewed-by: Matt Porter <mporter@linaro.org> Signed-off-by: Matt Porter <mporter@linaro.org>
Diffstat (limited to 'arch/arm/mach-bcm/kona.c')
-rw-r--r--arch/arm/mach-bcm/kona.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/mach-bcm/kona.c b/arch/arm/mach-bcm/kona.c
index 768bc28..ecdd713 100644
--- a/arch/arm/mach-bcm/kona.c
+++ b/arch/arm/mach-bcm/kona.c
@@ -19,6 +19,7 @@
void __init kona_l2_cache_init(void)
{
+ unsigned int result;
int ret;
if (!IS_ENABLED(CONFIG_CACHE_L2X0))
@@ -31,7 +32,12 @@ void __init kona_l2_cache_init(void)
return;
}
- bcm_kona_smc(SSAPI_ENABLE_L2_CACHE, 0, 0, 0, 0);
+ result = bcm_kona_smc(SSAPI_ENABLE_L2_CACHE, 0, 0, 0, 0);
+ if (result != SEC_ROM_RET_OK) {
+ pr_err("Secure Monitor call failed (%u)! Skipping L2 init.\n",
+ result);
+ return;
+ }
/*
* The aux_val and aux_mask have no effect since L2 cache is already
OpenPOWER on IntegriCloud