mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-20 19:44:23 +00:00

Move delay driver code to common directory, so that the same code can be re-used by both R-Car Gen3 and RZ/G2 platforms. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Change-Id: I5e806bd0e0a0a4b436048513b7089db90ff9805f
31 lines
639 B
C
31 lines
639 B
C
/*
|
|
* Copyright (c) 2018-2020, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <arch.h>
|
|
#include <arch_helpers.h>
|
|
|
|
#include "micro_delay.h"
|
|
|
|
#define RCAR_CONV_MICROSEC 1000000U
|
|
|
|
void
|
|
#if IMAGE_BL31
|
|
__attribute__ ((section(".system_ram")))
|
|
#endif
|
|
rcar_micro_delay(uint64_t micro_sec)
|
|
{
|
|
uint64_t freq;
|
|
uint64_t base_count;
|
|
uint64_t get_count;
|
|
uint64_t wait_time = 0U;
|
|
|
|
freq = read_cntfrq_el0();
|
|
base_count = read_cntpct_el0();
|
|
while (micro_sec > wait_time) {
|
|
get_count = read_cntpct_el0();
|
|
wait_time = ((get_count - base_count) * RCAR_CONV_MICROSEC) / freq;
|
|
}
|
|
}
|