blob: 8c16210dafe6297e2bb369d658bd62e10b682f4a [file] [log] [blame]
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#include <asm/arch/secure_apb.h>
#include <asm/arch/timer.h>
#include <asm/types.h>
uint32_t get_time(void)
{
return readl(SYSCTRL_TIMERE);
}
void _udelay(unsigned int us)
{
#ifndef CONFIG_PXP_EMULATOR
unsigned int t0 = get_time();
while (get_time() - t0 <= us)
;
#endif
}