xref: /kvm-unit-tests/lib/arm/asm/delay.h (revision 2c96b77ec9d3b1fcec7525174e23a6240ee05949)
1 #ifndef _ASMARM_DELAY_H_
2 #define _ASMARM_DELAY_H_
3 /*
4  * Copyright (C) 2016, Red Hat Inc, Andrew Jones <drjones@redhat.com>
5  *
6  * This work is licensed under the terms of the GNU LGPL, version 2.
7  */
8 #include <libcflat.h>
9 
10 extern void delay(u64 cycles);
11 extern void udelay(unsigned long usecs);
12 extern void mdelay(unsigned long msecs);
13 
14 #endif /* _ASMARM_DELAY_H_ */
15