blob: 3d0a11f5953fc308f609be3813019ff139b32893 [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.
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +01005 */
6
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +01007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
Antonio Nino Diazd29d21e2019-02-06 09:23:04 +00009#include <arch_features.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <arch_helpers.h>
11#include <common/bl_common.h>
12#include <common/debug.h>
13#include <drivers/delay_timer.h>
14#include <drivers/generic_delay_timer.h>
15#include <plat/common/platform.h>
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +010016
17/* Ticks elapsed in one second by a signal of 1 MHz */
18#define MHZ_TICKS_PER_SEC 1000000
19
20static timer_ops_t ops;
21
22static uint32_t get_timer_value(void)
23{
24 /*
25 * Generic delay timer implementation expects the timer to be a down
26 * counter. We apply bitwise NOT operator to the tick values returned
27 * by read_cntpct_el0() to simulate the down counter. The value is
28 * clipped from 64 to 32 bits.
29 */
30 return (uint32_t)(~read_cntpct_el0());
31}
32
33void generic_delay_timer_init_args(uint32_t mult, uint32_t div)
34{
35 ops.get_timer_value = get_timer_value;
36 ops.clk_mult = mult;
37 ops.clk_div = div;
38
39 timer_init(&ops);
40
41 VERBOSE("Generic delay timer configured with mult=%u and div=%u\n",
42 mult, div);
43}
44
45void generic_delay_timer_init(void)
46{
Antonio Nino Diazd29d21e2019-02-06 09:23:04 +000047 assert(is_armv7_gentimer_present());
48
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +010049 /* Value in ticks */
50 unsigned int mult = MHZ_TICKS_PER_SEC;
51
52 /* Value in ticks per second (Hz) */
53 unsigned int div = plat_get_syscnt_freq2();
54
55 /* Reduce multiplier and divider by dividing them repeatedly by 10 */
Sathees Balya006b15e2018-09-19 14:23:03 +010056 while (((mult % 10U) == 0U) && ((div % 10U) == 0U)) {
57 mult /= 10U;
58 div /= 10U;
Antonio Nino Diazbcd79b22016-05-18 10:37:25 +010059 }
60
61 generic_delay_timer_init_args(mult, div);
62}
63