Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 1 | /* |
Anthony Zhou | ee4be0f | 2017-04-27 22:00:54 +0800 | [diff] [blame] | 2 | * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 3 | * Copyright (c) 2020, NVIDIA Corporation. All rights reserved. |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 4 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 5 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 8 | #include <arch.h> |
| 9 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <drivers/delay_timer.h> |
| 11 | #include <lib/mmio.h> |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 12 | #include <lib/utils_def.h> |
| 13 | #include <plat/common/platform.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 14 | |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 15 | #include <tegra_def.h> |
Anthony Zhou | ee4be0f | 2017-04-27 22:00:54 +0800 | [diff] [blame] | 16 | #include <tegra_private.h> |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 17 | |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 18 | static uint32_t tegra_timer_get_value(void) |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 19 | { |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 20 | /* enable cntps_tval_el1 timer, mask interrupt */ |
| 21 | write_cntps_ctl_el1(CNTP_CTL_IMASK_BIT | CNTP_CTL_ENABLE_BIT); |
| 22 | |
| 23 | /* |
| 24 | * Generic delay timer implementation expects the timer to be a down |
| 25 | * counter. We apply bitwise NOT operator to the tick values returned |
| 26 | * by read_cntps_tval_el1() to simulate the down counter. The value is |
| 27 | * clipped from 64 to 32 bits. |
| 28 | */ |
| 29 | return (uint32_t)(~read_cntps_tval_el1()); |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 30 | } |
| 31 | |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 32 | /* |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 33 | * Initialise the architecture provided counter as the delay timer. |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 34 | */ |
| 35 | void tegra_delay_timer_init(void) |
| 36 | { |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 37 | static timer_ops_t tegra_timer_ops; |
| 38 | |
| 39 | /* Value in ticks */ |
| 40 | uint32_t multiplier = MHZ_TICKS_PER_SEC; |
| 41 | |
| 42 | /* Value in ticks per second (Hz) */ |
| 43 | uint32_t divider = plat_get_syscnt_freq2(); |
| 44 | |
| 45 | /* Reduce multiplier and divider by dividing them repeatedly by 10 */ |
| 46 | while (((multiplier % 10U) == 0U) && ((divider % 10U) == 0U)) { |
| 47 | multiplier /= 10U; |
| 48 | divider /= 10U; |
| 49 | } |
| 50 | |
| 51 | /* enable cntps_tval_el1 timer, mask interrupt */ |
| 52 | write_cntps_ctl_el1(CNTP_CTL_IMASK_BIT | CNTP_CTL_ENABLE_BIT); |
Anthony Zhou | ee4be0f | 2017-04-27 22:00:54 +0800 | [diff] [blame] | 53 | |
Varun Wadekar | 787a129 | 2018-06-18 16:15:51 -0700 | [diff] [blame] | 54 | /* register the timer */ |
| 55 | tegra_timer_ops.get_timer_value = tegra_timer_get_value; |
| 56 | tegra_timer_ops.clk_mult = multiplier; |
| 57 | tegra_timer_ops.clk_div = divider; |
Varun Wadekar | bc74fec | 2015-07-16 15:47:03 +0530 | [diff] [blame] | 58 | timer_init(&tegra_timer_ops); |
| 59 | } |