mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 05:54:08 +00:00
fix(rdv3): correctly handle FP regs context saving
Commit fe488c3796
added an override to
force `CTX_INCLUDE_SVE_REGS` to 0 when `SPD == spmd` and
`SPMD_SPM_AT_SEL2 == 1`.
Since there is an architectural dependency between FP and SVE registers,
`CTX_INCLUDE_FPREGS` must also be overridden to 0 when
CTX_INCLUDE_SVE_REGS is 0.
Signed-off-by: Rakshit Goyal <rakshit.goyal@arm.com>
Change-Id: I1cd834241a2d5a5368ac532a348d8729a701bbcd
This commit is contained in:
parent
fa8ca8bcd0
commit
ac05182df0
1 changed files with 1 additions and 0 deletions
|
@ -178,5 +178,6 @@ override CTX_INCLUDE_SVE_REGS := 1
|
|||
ifeq (${SPD},spmd)
|
||||
ifeq (${SPMD_SPM_AT_SEL2},1)
|
||||
override CTX_INCLUDE_SVE_REGS := 0
|
||||
override CTX_INCLUDE_FPREGS := 0
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue