fix: add support for 128-bit sysregs to EL3 crash handlerThe following changes have been made:* Add new sysreg definitions and ASM macro is_feat_sysreg128_present_asm* Add registers TTBR0_EL2 and
fix: add support for 128-bit sysregs to EL3 crash handlerThe following changes have been made:* Add new sysreg definitions and ASM macro is_feat_sysreg128_present_asm* Add registers TTBR0_EL2 and VTTBR_EL2 to EL3 crash handler output* Use MRRS instead of MRS for registers TTBR0_EL1, TTBR0_EL2, TTBR1_EL1, VTTBR_EL2 and PAR_EL1Change-Id: I0e20b2c35251f3afba2df794c1f8bc0c46c197ffSigned-off-by: Igor Podgainõi <igor.podgainoi@arm.com>
show more ...
feat(d128): add support for FEAT_D128This patch disables trapping to EL3 when the FEAT_D128specific registers are accessed by setting the SCR_EL3.D128En bit.If FEAT_D128 is implemented, then FEA
feat(d128): add support for FEAT_D128This patch disables trapping to EL3 when the FEAT_D128specific registers are accessed by setting the SCR_EL3.D128En bit.If FEAT_D128 is implemented, then FEAT_SYSREG128 is implemented.With FEAT_SYSREG128 certain system registers are treated as 128-bit,so we should be context saving and restoring 128-bits instead of 64-bitwhen FEAT_D128 is enabled.FEAT_SYSREG128 adds support for MRRS and MSRR instruction whichhelps us to read write to 128-bit system register.Refer to Arm Architecture Manual for further details.Change the FVP platform to default to handling this as a dynamic optionso the right decision can be made by the code at runtime.Change-Id: I1a53db5eac29e56c8fbdcd4961ede3abfcb2411aSigned-off-by: Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com>Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>