blob: 69ba4629bed09025e38de039e7a2d25d73a89a19 [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{
Max Filippov01e3b3c2013-10-17 02:42:16 +040022 if (__builtin_constant_p(loops) && loops < 2)
23 __asm__ __volatile__ ("nop");
24 else if (loops >= 2)
25 /* 2 cycles per loop. */
26 __asm__ __volatile__ ("1: addi %0, %0, -2; bgeui %0, 2, 1b"
27 : "+r" (loops));
Chris Zankel9a8fd552005-06-23 22:01:26 -070028}
29
Max Filippov58f60c22014-01-10 12:02:18 +040030/* Undefined function to get compile-time error */
31void __bad_udelay(void);
Chris Zankel9a8fd552005-06-23 22:01:26 -070032
Max Filippov58f60c22014-01-10 12:02:18 +040033#define __MAX_UDELAY 30000
34
35static inline void __udelay(unsigned long usecs)
Chris Zankel9a8fd552005-06-23 22:01:26 -070036{
Baruch Siach8102f472013-06-17 11:29:44 +030037 unsigned long start = get_ccount();
Max Filippov58f60c22014-01-10 12:02:18 +040038 unsigned long cycles = (usecs * (ccount_freq >> 15)) >> 5;
Chris Zankel9a8fd552005-06-23 22:01:26 -070039
40 /* Note: all variables are unsigned (can wrap around)! */
Baruch Siach8102f472013-06-17 11:29:44 +030041 while (((unsigned long)get_ccount()) - start < cycles)
Max Filippov58f60c22014-01-10 12:02:18 +040042 cpu_relax();
43}
44
45static inline void udelay(unsigned long usec)
46{
47 if (__builtin_constant_p(usec) && usec >= __MAX_UDELAY)
48 __bad_udelay();
49 else
50 __udelay(usec);
Chris Zankel9a8fd552005-06-23 22:01:26 -070051}
52
53#endif