blob: 3899610c1dfff71a53e0144969fd990e59e75f62 [file] [log] [blame]
Chris Zankel9a8fd552005-06-23 22:01:26 -07001/*
2 * include/asm-xtensa/delay.h
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
9 *
10 */
11
12#ifndef _XTENSA_DELAY_H
13#define _XTENSA_DELAY_H
14
Baruch Siach8102f472013-06-17 11:29:44 +030015#include <asm/timex.h>
Chris Zankel9a8fd552005-06-23 22:01:26 -070016#include <asm/param.h>
17
18extern unsigned long loops_per_jiffy;
19
Adrian Bunkd99cf712005-09-03 15:57:53 -070020static inline void __delay(unsigned long loops)
Chris Zankel9a8fd552005-06-23 22:01:26 -070021{
Chris Zankelc4c45942012-11-28 16:53:51 -080022 /* 2 cycles per loop. */
23 __asm__ __volatile__ ("1: addi %0, %0, -2; bgeui %0, 2, 1b"
24 : "=r" (loops) : "0" (loops));
Chris Zankel9a8fd552005-06-23 22:01:26 -070025}
26
Chris Zankel9a8fd552005-06-23 22:01:26 -070027/* For SMP/NUMA systems, change boot_cpu_data to something like
28 * local_cpu_data->... where local_cpu_data points to the current
29 * cpu. */
30
31static __inline__ void udelay (unsigned long usecs)
32{
Baruch Siach8102f472013-06-17 11:29:44 +030033 unsigned long start = get_ccount();
Chris Zankel9a8fd552005-06-23 22:01:26 -070034 unsigned long cycles = usecs * (loops_per_jiffy / (1000000UL / HZ));
35
36 /* Note: all variables are unsigned (can wrap around)! */
Baruch Siach8102f472013-06-17 11:29:44 +030037 while (((unsigned long)get_ccount()) - start < cycles)
Chris Zankel9a8fd552005-06-23 22:01:26 -070038 ;
39}
40
41#endif