RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-sparc64 / timex.h
blob2a5e4ebaad805bc89b313a17c38937f9273a2198
1 /*
2 * linux/include/asm-sparc64/timex.h
4 * sparc64 architecture timex specifications
5 */
6 #ifndef _ASMsparc64_TIMEX_H
7 #define _ASMsparc64_TIMEX_H
9 #include <asm/timer.h>
11 #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
13 /* Getting on the cycle counter on sparc64. */
14 typedef unsigned long cycles_t;
15 #define get_cycles() tick_ops->get_tick()
17 #define ARCH_HAS_READ_CURRENT_TIMER 1
18 #define read_current_timer(timer_val_p) \
19 ({ *timer_val_p = tick_ops->get_tick(); \
20 0; \
23 #endif