delay.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  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. #ifndef _XTENSA_DELAY_H
  12. #define _XTENSA_DELAY_H
  13. #include <linux/config.h>
  14. #include <asm/processor.h>
  15. #include <asm/param.h>
  16. extern unsigned long loops_per_jiffy;
  17. static inline void __delay(unsigned long loops)
  18. {
  19. /* 2 cycles per loop. */
  20. __asm__ __volatile__ ("1: addi %0, %0, -2; bgeui %0, 2, 1b"
  21. : "=r" (loops) : "0" (loops));
  22. }
  23. static __inline__ u32 xtensa_get_ccount(void)
  24. {
  25. u32 ccount;
  26. asm volatile ("rsr %0, 234; # CCOUNT\n" : "=r" (ccount));
  27. return ccount;
  28. }
  29. /* For SMP/NUMA systems, change boot_cpu_data to something like
  30. * local_cpu_data->... where local_cpu_data points to the current
  31. * cpu. */
  32. static __inline__ void udelay (unsigned long usecs)
  33. {
  34. unsigned long start = xtensa_get_ccount();
  35. unsigned long cycles = usecs * (loops_per_jiffy / (1000000UL / HZ));
  36. /* Note: all variables are unsigned (can wrap around)! */
  37. while (((unsigned long)xtensa_get_ccount()) - start < cycles)
  38. ;
  39. }
  40. #endif