Hi all
I saw all the build-in trusted services run in S-EL0, could it possible to make one of them run in S-EL1?
Should I modify sp_entry.S to support trusted service run in S-EL1?
Thanks
Carlos
We guess that all things we have to do is replace the following implementation into smm client.
EFI_SMM_VARIABLE_PROTOCOL gSmmVariable = {
VariableServiceGetVariable,
VariableServiceGetNextVariableName,
SmmVariableSetVariable,
VariableServiceQueryVariableInfo
};
EDKII_SMM_VAR_CHECK_PROTOCOL mSmmVarCheck = {
VarCheckRegisterSetVariableCheckHandler,
VarCheckVariablePropertySet,
VarCheckVariablePropertyGet
};
And I correct or something we miss?
Do you have to document to integrate this feature into UEFI variable smm service?
Carlos