delay.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. */
  14. #include <linux/module.h>
  15. #include <linux/delay.h>
  16. #include <linux/thread_info.h>
  17. #include <asm/timex.h>
  18. void __udelay(unsigned long usecs)
  19. {
  20. if (usecs > ULONG_MAX / 1000) {
  21. WARN_ON_ONCE(usecs > ULONG_MAX / 1000);
  22. usecs = ULONG_MAX / 1000;
  23. }
  24. __ndelay(usecs * 1000);
  25. }
  26. EXPORT_SYMBOL(__udelay);
  27. void __ndelay(unsigned long nsecs)
  28. {
  29. cycles_t target = get_cycles();
  30. target += ns2cycles(nsecs);
  31. while (get_cycles() < target)
  32. cpu_relax();
  33. }
  34. EXPORT_SYMBOL(__ndelay);
  35. void __delay(unsigned long cycles)
  36. {
  37. cycles_t target = get_cycles() + cycles;
  38. while (get_cycles() < target)
  39. cpu_relax();
  40. }
  41. EXPORT_SYMBOL(__delay);