diff options
author | Julius Werner <jwerner@chromium.org> | 2018-08-07 14:02:55 -0700 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2018-08-10 04:16:06 +0000 |
commit | 73be9dd82c033a9bce3fc7ff11dab453e9cfde82 (patch) | |
tree | 3515ee34380e7e672ad65d631a2d54c1e45f7f56 /src/arch/arm64/include | |
parent | af7f9eeddf1e2ffcc17c7a1840aaee76acf9aa8d (diff) | |
download | coreboot-73be9dd82c033a9bce3fc7ff11dab453e9cfde82.tar.gz coreboot-73be9dd82c033a9bce3fc7ff11dab453e9cfde82.tar.bz2 coreboot-73be9dd82c033a9bce3fc7ff11dab453e9cfde82.zip |
arm64: Remove set_cntfrq() function
CNTFRQ_EL0 is a normal AArch64 architectural register like hundreds of
others that are all accessed through the raw_(read|write)_${register}()
family of functions. There's no reason why this register in particular
should have an inconsistent accessor, so replace all instances of
set_cntfrq() with raw_write_cntfrq_el0() and get rid of it.
Change-Id: I599519ba71c287d4085f9ad28d7349ef0b1eea9b
Signed-off-by: Julius Werner <jwerner@chromium.org>
Reviewed-on: https://review.coreboot.org/27947
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/arm64/include')
-rw-r--r-- | src/arch/arm64/include/arch/clock.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/arch/arm64/include/arch/clock.h b/src/arch/arm64/include/arch/clock.h deleted file mode 100644 index 77d09d8ef0f2..000000000000 --- a/src/arch/arm64/include/arch/clock.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * This file is part of the coreboot project. - * - * Copyright 2014 Google Inc. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#ifndef __ARM_CLOCK_H_ -#define __ARM_CLOCK_H_ - -#include <types.h> - -void set_cntfrq(uint32_t); - -#endif /* __ARM_CLOCK_H_ */ |