diff options
author | Tom Warren <twarren@nvidia.com> | 2013-04-01 15:48:54 -0700 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2013-04-15 11:01:38 -0700 |
commit | b40f734af9fdc47a0993f1f94f32d40a86f30587 (patch) | |
tree | 21ba340509d52b689be86e0b6dd48ad7e75978b0 /arch/arm/cpu/tegra20-common | |
parent | d0edce4fa394325a0ccfd38a5d668fb5ee1af34d (diff) | |
download | talos-obmc-uboot-b40f734af9fdc47a0993f1f94f32d40a86f30587.tar.gz talos-obmc-uboot-b40f734af9fdc47a0993f1f94f32d40a86f30587.zip |
Tegra114: Initialize System Counter (TSC) with osc frequency
T114 needs the SYSCTR0 counter initialized so the TSC can be
read by the kernel. Do it in the bootloader since it's a write-once
deal (secure/non-secure mode dependent).
Signed-off-by: Tom Warren <twarren@nvidia.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/cpu/tegra20-common')
-rw-r--r-- | arch/arm/cpu/tegra20-common/clock.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/cpu/tegra20-common/clock.c b/arch/arm/cpu/tegra20-common/clock.c index ec93894f48..4afb205c31 100644 --- a/arch/arm/cpu/tegra20-common/clock.c +++ b/arch/arm/cpu/tegra20-common/clock.c @@ -559,3 +559,7 @@ void clock_early_init(void) break; } } + +void arch_timer_init(void) +{ +} |