diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-01-20 11:58:37 +0000 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-01-20 15:51:34 +0000 |
commit | 734bd6cc41097bde7cc7d54084a042ff9b0ca0f5 (patch) | |
tree | 36e10d04e9812bb3069aadf5f3a7aa1b30385536 /ArmPkg/Library/ArmLib/ArmBaseLib.inf | |
parent | 90d1f671cdad43fa80ba295b3f8d1133d68229df (diff) | |
download | edk2-734bd6cc41097bde7cc7d54084a042ff9b0ca0f5.zip edk2-734bd6cc41097bde7cc7d54084a042ff9b0ca0f5.tar.gz edk2-734bd6cc41097bde7cc7d54084a042ff9b0ca0f5.tar.bz2 |
ArmPkg/ArmLib: remove indirection layer from timer register accessors
The generic timer support libraries call the actual system register
accessor function via a single pair of functions ArmArchTimerReadReg()
and ArmArchTimerWriteReg(), which take an enum argument to identify
the register, and return output values by pointer reference.
Since these functions are never called with a non-immediate argument,
we can simply replace each invocation with the underlying system register
accessor instead. This is mostly functionally equivalent, with the
exception of the bounds check for the enum (which is pointless given the
fact that we never pass a variable), the check for the presence of the
architected timer (which only makes sense for ARMv7, but is highly unlikely
to vary between platforms that are similar enough to run the same firmware
image), and a check for enum values that refer to the HYP view of the timer,
which we never referred to anywhere in the code in the first place.
So get rid of the middle man, and update the ArmGenericTimerPhyCounterLib
and ArmGenericTimerVirtCounterLib implementations to call the system
register accessors directly.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Tested-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'ArmPkg/Library/ArmLib/ArmBaseLib.inf')
-rw-r--r-- | ArmPkg/Library/ArmLib/ArmBaseLib.inf | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ArmPkg/Library/ArmLib/ArmBaseLib.inf b/ArmPkg/Library/ArmLib/ArmBaseLib.inf index 05a5853..79e17be 100644 --- a/ArmPkg/Library/ArmLib/ArmBaseLib.inf +++ b/ArmPkg/Library/ArmLib/ArmBaseLib.inf @@ -27,7 +27,6 @@ [Sources.ARM]
Arm/ArmV7Lib.c
- Arm/ArmV7ArchTimer.c
Arm/ArmLibSupport.S | GCC
Arm/ArmLibSupportV7.S | GCC
@@ -41,7 +40,6 @@ [Sources.AARCH64]
AArch64/AArch64Lib.c
- AArch64/AArch64ArchTimer.c
AArch64/ArmLibSupport.S
AArch64/ArmLibSupportV8.S
|