blob: ca522e05aba1e7aa0533c54d0bd562c8542c04dc [file] [log] [blame]
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +01001/*
Antonio Nino Diazd29d21e2019-02-06 09:23:04 +00002 * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved.
Varun Wadekar0a176e32020-02-13 13:07:12 -08003 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +01004 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +01006 */
7
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +01008#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009
Antonio Nino Diazd29d21e2019-02-06 09:23:04 +000010#include <arch_features.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#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 Wadekar0a176e32020-02-13 13:07:12 -080016#include <lib/utils_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017#include <plat/common/platform.h>
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +010018
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +010019static timer_ops_t ops;
20
21static 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
32void 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
44void generic_delay_timer_init(void)
45{
Antonio Nino Diazd29d21e2019-02-06 09:23:04 +000046 assert(is_armv7_gentimer_present());
47
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +010048 /* 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 Balya006b15e2018-09-19 14:23:03 +010055 while (((mult % 10U) == 0U) && ((div % 10U) == 0U)) {
56 mult /= 10U;
57 div /= 10U;
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +010058 }
59
60 generic_delay_timer_init_args(mult, div);
61}
62