From: Michal Simek Date: Thu, 10 Oct 2019 09:09:15 +0000 (+0200) Subject: firmware: zynqmp: Report error when xilinx_pm_request called from EL3 X-Git-Tag: v2020.10~539^2~72 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9bed8a63f762d91bd4392f93ea90a702e9653c70;p=platform%2Fkernel%2Fu-boot.git firmware: zynqmp: Report error when xilinx_pm_request called from EL3 Function should report error when called in EL3 context. Also report it as error instead 0 (success). Reported-by: Luca Ceresoli Signed-off-by: Michal Simek Reviewed-by: Luca Ceresoli --- diff --git a/drivers/firmware/firmware-zynqmp.c b/drivers/firmware/firmware-zynqmp.c index adcef15..4911734 100644 --- a/drivers/firmware/firmware-zynqmp.c +++ b/drivers/firmware/firmware-zynqmp.c @@ -156,8 +156,10 @@ int __maybe_unused xilinx_pm_request(u32 api_id, u32 arg0, u32 arg1, u32 arg2, */ struct pt_regs regs; - if (current_el() == 3) - return 0; + if (current_el() == 3) { + printf("%s: Can't call SMC from EL3 context\n", __func__); + return -EPERM; + } regs.regs[0] = PM_SIP_SVC | api_id; regs.regs[1] = ((u64)arg1 << 32) | arg0;