summaryrefslogtreecommitdiffstats
path: root/arch/nios2/lib/time.c
blob: d39604579c1ef43fcec93464362883c5f7e8566c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
 * Scott McNutt <smcnutt@psyent.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <watchdog.h>


extern void dly_clks( unsigned long ticks );

void __udelay(unsigned long usec)
{
	/* The Nios core doesn't have a timebase, so we do our
	 * best for now and call a low-level loop that counts
	 * cpu clocks.
	 */
	unsigned long cnt = (CONFIG_SYS_CLK_FREQ/1000000) * usec;
	dly_clks (cnt);
}
OpenPOWER on IntegriCloud