]> git.baikalelectronics.ru Git - arm-tf.git/commit
fix(el3_runtime): do not save scr_el3 during EL3 entry
authorManish Pandey <manish.pandey2@arm.com>
Wed, 7 Dec 2022 13:04:20 +0000 (13:04 +0000)
committerManish Pandey <manish.pandey2@arm.com>
Wed, 14 Dec 2022 14:44:43 +0000 (14:44 +0000)
commite61713b00715fc988a970687f9bf53418b81b0ca
treea0839ade0c4846d2d793f0b9c6453ca5aa66ffbe
parent825641d6150f05c1bcf6328ec726f46f2e9e37f9
fix(el3_runtime): do not save scr_el3 during EL3 entry

scr_el3 registers cannot be modified in lower ELs which means it retains
the same value which is stored in the EL3 cpu context structure for the
given world. So, we should not save the register when entering to EL3
from lower EL as we have the copy of it present in cpu context.

During EL3 execution SCR_EL3 value can be modifed for following cases
 1. Changes which is required for EL3 execution, this change is temp
    and do not need to be saved.
 2. Changes which affects lower EL execution, these changes need to be
    written to cpu context as well and will be retrieved when scr_el3
    is restored as part of exiting EL3

Signed-off-by: Manish Pandey <manish.pandey2@arm.com>
Change-Id: I9cc984ddf50e27d09e361bd83b1b3c9f068cf2fd
bl31/aarch64/runtime_exceptions.S