mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-23 05:34:31 +02:00
ArmPkg: Introduce ArmSetLowVectors/ArmSetHighVectors functions
These functions set/clear the SCTLR.V bit that controls the location of the Vector Table. This commit also forces the SCTLR.V to be clear when the VBAR register is set. Note: The original fix has been proposed by Eugene Cohen (HP). git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11739 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e7f7105ba0
commit
f0fef790ff
@ -149,6 +149,14 @@ InitializeExceptions (
|
|||||||
//
|
//
|
||||||
Length = (UINTN)ExceptionHandlersEnd - (UINTN)ExceptionHandlersStart;
|
Length = (UINTN)ExceptionHandlersEnd - (UINTN)ExceptionHandlersStart;
|
||||||
|
|
||||||
|
// Check if the exception vector is in the low address
|
||||||
|
if (PcdGet32 (PcdCpuVectorBaseAddress) == 0x0) {
|
||||||
|
// Set SCTLR.V to 0 to enable VBAR to be used
|
||||||
|
ArmSetLowVectors ();
|
||||||
|
} else {
|
||||||
|
ArmSetHighVectors ();
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Reserve space for the exception handlers
|
// Reserve space for the exception handlers
|
||||||
//
|
//
|
||||||
|
@ -346,7 +346,19 @@ EFIAPI
|
|||||||
ArmDisableBranchPrediction (
|
ArmDisableBranchPrediction (
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
ArmSetLowVectors (
|
||||||
|
VOID
|
||||||
|
);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
ArmSetHighVectors (
|
||||||
|
VOID
|
||||||
|
);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
ArmDataMemoryBarrier (
|
ArmDataMemoryBarrier (
|
||||||
|
@ -34,6 +34,8 @@ GCC_ASM_EXPORT (ArmDisableInstructionCache)
|
|||||||
GCC_ASM_EXPORT (ArmEnableSWPInstruction)
|
GCC_ASM_EXPORT (ArmEnableSWPInstruction)
|
||||||
GCC_ASM_EXPORT (ArmEnableBranchPrediction)
|
GCC_ASM_EXPORT (ArmEnableBranchPrediction)
|
||||||
GCC_ASM_EXPORT (ArmDisableBranchPrediction)
|
GCC_ASM_EXPORT (ArmDisableBranchPrediction)
|
||||||
|
GCC_ASM_EXPORT (ArmSetLowVectors)
|
||||||
|
GCC_ASM_EXPORT (ArmSetHighVectors)
|
||||||
GCC_ASM_EXPORT (ArmV7AllDataCachesOperation)
|
GCC_ASM_EXPORT (ArmV7AllDataCachesOperation)
|
||||||
GCC_ASM_EXPORT (ArmDataMemoryBarrier)
|
GCC_ASM_EXPORT (ArmDataMemoryBarrier)
|
||||||
GCC_ASM_EXPORT (ArmDataSyncronizationBarrier)
|
GCC_ASM_EXPORT (ArmDataSyncronizationBarrier)
|
||||||
@ -199,6 +201,19 @@ ASM_PFX(ArmDisableBranchPrediction):
|
|||||||
isb
|
isb
|
||||||
bx LR
|
bx LR
|
||||||
|
|
||||||
|
ASM_PFX(ArmSetLowVectors):
|
||||||
|
mrc p15, 0, r0, c1, c0, 0 @ Read SCTLR into R0 (Read control register configuration data)
|
||||||
|
bic r0, r0, #0x00002000 @ clear V bit
|
||||||
|
mcr p15, 0, r0, c1, c0, 0 @ Write R0 into SCTLR (Write control register configuration data)
|
||||||
|
isb
|
||||||
|
bx LR
|
||||||
|
|
||||||
|
ASM_PFX(ArmSetHighVectors):
|
||||||
|
mrc p15, 0, r0, c1, c0, 0 @ Read SCTLR into R0 (Read control register configuration data)
|
||||||
|
orr r0, r0, #0x00002000 @ clear V bit
|
||||||
|
mcr p15, 0, r0, c1, c0, 0 @ Write R0 into SCTLR (Write control register configuration data)
|
||||||
|
isb
|
||||||
|
bx LR
|
||||||
|
|
||||||
ASM_PFX(ArmV7AllDataCachesOperation):
|
ASM_PFX(ArmV7AllDataCachesOperation):
|
||||||
stmfd SP!,{r4-r12, LR}
|
stmfd SP!,{r4-r12, LR}
|
||||||
@ -287,7 +302,13 @@ ASM_PFX(ArmWriteVMBar):
|
|||||||
bx lr
|
bx lr
|
||||||
|
|
||||||
ASM_PFX(ArmWriteVBar):
|
ASM_PFX(ArmWriteVBar):
|
||||||
|
# Set the Address of the Vector Table in the VBAR register
|
||||||
mcr p15, 0, r0, c12, c0, 0
|
mcr p15, 0, r0, c12, c0, 0
|
||||||
|
# Ensure the SCTLR.V bit is clear
|
||||||
|
mrc p15, 0, r0, c1, c0, 0 @ Read SCTLR into R0 (Read control register configuration data)
|
||||||
|
bic r0, r0, #0x00002000 @ clear V bit
|
||||||
|
mcr p15, 0, r0, c1, c0, 0 @ Write R0 into SCTLR (Write control register configuration data)
|
||||||
|
isb
|
||||||
bx lr
|
bx lr
|
||||||
|
|
||||||
ASM_PFX(ArmWriteCPACR):
|
ASM_PFX(ArmWriteCPACR):
|
||||||
|
@ -31,6 +31,8 @@
|
|||||||
EXPORT ArmEnableSWPInstruction
|
EXPORT ArmEnableSWPInstruction
|
||||||
EXPORT ArmEnableBranchPrediction
|
EXPORT ArmEnableBranchPrediction
|
||||||
EXPORT ArmDisableBranchPrediction
|
EXPORT ArmDisableBranchPrediction
|
||||||
|
EXPORT ArmSetLowVectors
|
||||||
|
EXPORT ArmSetHighVectors
|
||||||
EXPORT ArmV7AllDataCachesOperation
|
EXPORT ArmV7AllDataCachesOperation
|
||||||
EXPORT ArmDataMemoryBarrier
|
EXPORT ArmDataMemoryBarrier
|
||||||
EXPORT ArmDataSyncronizationBarrier
|
EXPORT ArmDataSyncronizationBarrier
|
||||||
@ -196,6 +198,19 @@ ArmDisableBranchPrediction
|
|||||||
isb
|
isb
|
||||||
bx LR
|
bx LR
|
||||||
|
|
||||||
|
ArmSetLowVectors
|
||||||
|
mrc p15, 0, r0, c1, c0, 0 ; Read SCTLR into R0 (Read control register configuration data)
|
||||||
|
bic r0, r0, #0x00002000 ; clear V bit
|
||||||
|
mcr p15, 0, r0, c1, c0, 0 ; Write R0 into SCTLR (Write control register configuration data)
|
||||||
|
isb
|
||||||
|
bx LR
|
||||||
|
|
||||||
|
ArmSetHighVectors
|
||||||
|
mrc p15, 0, r0, c1, c0, 0 ; Read SCTLR into R0 (Read control register configuration data)
|
||||||
|
orr r0, r0, #0x00002000 ; clear V bit
|
||||||
|
mcr p15, 0, r0, c1, c0, 0 ; Write R0 into SCTLR (Write control register configuration data)
|
||||||
|
isb
|
||||||
|
bx LR
|
||||||
|
|
||||||
ArmV7AllDataCachesOperation
|
ArmV7AllDataCachesOperation
|
||||||
stmfd SP!,{r4-r12, LR}
|
stmfd SP!,{r4-r12, LR}
|
||||||
@ -281,7 +296,13 @@ ArmWriteVMBar
|
|||||||
bx lr
|
bx lr
|
||||||
|
|
||||||
ArmWriteVBar
|
ArmWriteVBar
|
||||||
|
// Set the Address of the Vector Table in the VBAR register
|
||||||
mcr p15, 0, r0, c12, c0, 0
|
mcr p15, 0, r0, c12, c0, 0
|
||||||
|
// Ensure the SCTLR.V bit is clear
|
||||||
|
mrc p15, 0, r0, c1, c0, 0 ; Read SCTLR into R0 (Read control register configuration data)
|
||||||
|
bic r0, r0, #0x00002000 ; clear V bit
|
||||||
|
mcr p15, 0, r0, c1, c0, 0 ; Write R0 into SCTLR (Write control register configuration data)
|
||||||
|
isb
|
||||||
bx lr
|
bx lr
|
||||||
|
|
||||||
ArmReadVBar
|
ArmReadVBar
|
||||||
|
Loading…
x
Reference in New Issue
Block a user