Files
linux-apfs/include/asm-powerpc/timex.h
T

49 lines
793 B
C
Raw Normal View History

#ifndef _ASM_POWERPC_TIMEX_H
#define _ASM_POWERPC_TIMEX_H
2005-04-16 15:20:36 -07:00
#ifdef __KERNEL__
/*
* PowerPC architecture timex specifications
*/
2005-04-16 15:20:36 -07:00
#include <asm/cputable.h>
2006-10-20 14:37:05 +10:00
#include <asm/reg.h>
2005-04-16 15:20:36 -07:00
2005-10-12 11:39:33 +10:00
#define CLOCK_TICK_RATE 1024000 /* Underlying HZ */
2005-04-16 15:20:36 -07:00
typedef unsigned long cycles_t;
static inline cycles_t get_cycles(void)
{
2006-10-20 14:37:05 +10:00
#ifdef __powerpc64__
return mftb();
#else
cycles_t ret;
/*
* For the "cycle" counter we use the timebase lower half.
* Currently only used on SMP.
*/
ret = 0;
2005-04-16 15:20:36 -07:00
__asm__ __volatile__(
2006-10-20 11:47:18 +10:00
"97: mftb %0\n"
2005-04-16 15:20:36 -07:00
"99:\n"
".section __ftr_fixup,\"a\"\n"
2006-10-20 11:47:18 +10:00
".align 2\n"
"98:\n"
2005-04-16 15:20:36 -07:00
" .long %1\n"
" .long 0\n"
2006-10-20 11:47:18 +10:00
" .long 97b-98b\n"
" .long 99b-98b\n"
2005-04-16 15:20:36 -07:00
".previous"
: "=r" (ret) : "i" (CPU_FTR_601));
return ret;
2006-10-20 14:37:05 +10:00
#endif
2005-04-16 15:20:36 -07:00
}
#endif /* __KERNEL__ */
#endif /* _ASM_POWERPC_TIMEX_H */