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