blob: d39604579c1ef43fcec93464362883c5f7e8566c [file] [log] [blame]
wdenk4a551702003-10-08 23:26:14 +00001/*
2 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk4a551702003-10-08 23:26:14 +00006 */
7
8#include <common.h>
wdenk028ab6b2004-02-23 23:54:43 +00009#include <watchdog.h>
wdenk4a551702003-10-08 23:26:14 +000010
11
12extern void dly_clks( unsigned long ticks );
13
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010014void __udelay(unsigned long usec)
wdenk4a551702003-10-08 23:26:14 +000015{
16 /* The Nios core doesn't have a timebase, so we do our
17 * best for now and call a low-level loop that counts
18 * cpu clocks.
19 */
20 unsigned long cnt = (CONFIG_SYS_CLK_FREQ/1000000) * usec;
wdenk4a551702003-10-08 23:26:14 +000021 dly_clks (cnt);
22}