Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | d29d21e | 2019-02-06 09:23:04 +0000 | [diff] [blame] | 2 | * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | 0a176e3 | 2020-02-13 13:07:12 -0800 | [diff] [blame] | 3 | * Copyright (c) 2020, NVIDIA Corporation. All rights reserved. |
Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 4 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 5 | * SPDX-License-Identifier: BSD-3-Clause |
Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 8 | #include <assert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | |
Antonio Nino Diaz | d29d21e | 2019-02-06 09:23:04 +0000 | [diff] [blame] | 10 | #include <arch_features.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <arch_helpers.h> |
| 12 | #include <common/bl_common.h> |
| 13 | #include <common/debug.h> |
| 14 | #include <drivers/delay_timer.h> |
| 15 | #include <drivers/generic_delay_timer.h> |
Varun Wadekar | 0a176e3 | 2020-02-13 13:07:12 -0800 | [diff] [blame] | 16 | #include <lib/utils_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 17 | #include <plat/common/platform.h> |
Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 18 | |
Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 19 | static timer_ops_t ops; |
| 20 | |
| 21 | static uint32_t get_timer_value(void) |
| 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_cntpct_el0() to simulate the down counter. The value is |
| 27 | * clipped from 64 to 32 bits. |
| 28 | */ |
| 29 | return (uint32_t)(~read_cntpct_el0()); |
| 30 | } |
| 31 | |
| 32 | void generic_delay_timer_init_args(uint32_t mult, uint32_t div) |
| 33 | { |
| 34 | ops.get_timer_value = get_timer_value; |
| 35 | ops.clk_mult = mult; |
| 36 | ops.clk_div = div; |
| 37 | |
| 38 | timer_init(&ops); |
| 39 | |
| 40 | VERBOSE("Generic delay timer configured with mult=%u and div=%u\n", |
| 41 | mult, div); |
| 42 | } |
| 43 | |
| 44 | void generic_delay_timer_init(void) |
| 45 | { |
Antonio Nino Diaz | d29d21e | 2019-02-06 09:23:04 +0000 | [diff] [blame] | 46 | assert(is_armv7_gentimer_present()); |
| 47 | |
Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 48 | /* Value in ticks */ |
| 49 | unsigned int mult = MHZ_TICKS_PER_SEC; |
| 50 | |
| 51 | /* Value in ticks per second (Hz) */ |
| 52 | unsigned int div = plat_get_syscnt_freq2(); |
| 53 | |
| 54 | /* Reduce multiplier and divider by dividing them repeatedly by 10 */ |
Sathees Balya | 006b15e | 2018-09-19 14:23:03 +0100 | [diff] [blame] | 55 | while (((mult % 10U) == 0U) && ((div % 10U) == 0U)) { |
| 56 | mult /= 10U; |
| 57 | div /= 10U; |
Antonio Nino Diaz | bcd79b2 | 2016-05-18 10:37:25 +0100 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | generic_delay_timer_init_args(mult, div); |
| 61 | } |
| 62 | |