timex.h 758 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * linux/include/asm-alpha/timex.h
  3. *
  4. * ALPHA architecture timex specifications
  5. */
  6. #ifndef _ASMALPHA_TIMEX_H
  7. #define _ASMALPHA_TIMEX_H
  8. /* With only one or two oddballs, we use the RTC as the ticker, selecting
  9. the 32.768kHz reference clock, which nicely divides down to our HZ. */
  10. #define CLOCK_TICK_RATE 32768
  11. /*
  12. * Standard way to access the cycle counter.
  13. * Currently only used on SMP for scheduling.
  14. *
  15. * Only the low 32 bits are available as a continuously counting entity.
  16. * But this only means we'll force a reschedule every 8 seconds or so,
  17. * which isn't an evil thing.
  18. */
  19. typedef unsigned int cycles_t;
  20. static inline cycles_t get_cycles (void)
  21. {
  22. cycles_t ret;
  23. __asm__ __volatile__ ("rpcc %0" : "=r"(ret));
  24. return ret;
  25. }
  26. #endif