From: Wu Zhangjin <wuzhangjin@xxxxxxxxx> Changes from old revision: o Adds 32bit support, using a smaller scaling factor(shift) to avoid 128bit arithmatic, of course, it loses some precision. o Adds the testing results of the overhead of sched_clock() in 64bit kernel Clock func/overhead(us) Min Avg Max Jitter Std.Dev. ---------------------------------------------- sched_clock(cnt32_to_63) 105 116.2 236 131 9.5 getnstimeofday() 160 167.1 437 277 15 sched_clock(Accumulation method[1]) 193 200.9 243 50 2.9 ---------------------------------------------- As we can see, the cnt32_to_63() based sched_clock() have lower overhead than the other two. ---------------- This patchset adds a high resolution version of sched_clock() for the r4k MIPS. The generic sched_clock() is jiffies based and has very bad resolution(1ms with HZ set as 1000), this one is based on the r4k c0 count, the resolution reaches about several ns(2.5ns with 400M clock frequency). To cope with the overflow problem of the 32bit c0 count, based on the cnt32_to_63() method in include/linux/cnt32_to_63.h. we have converted the 32bit counter to a virtual 63bit counter. And to fix the overflow problem of the 64bit arithmatic(cycles * mult) in 64bit kernel, we use the 128bit arithmatic contributed by David, but for 32bit kernel, to balance the overhead of 128bit arithmatic and the precision lost, we choose the method used in X86(arch/x86/kernel/tsc.c) and ARM(arch/arm/plat-orion/time.c): just use a smaller scale factor and do 64bit arithmatic, of course, it will also overflow but not that quickly. [1] the algorithm looks like this: static inline unsigned long long notrace read_c0_clock(void) { static u64 clock; static u32 old_clock; u32 current_clock; raw_spin_lock(&clock_lock); current_clock = read_c0_count(); clock += ((current_clock - old_clock) & MASK); old_clock = current_clock; raw_spin_unlock(&clock_lock); return clock; } Regards, Wu Zhangjin Wu Zhangjin (3): MIPS: add a common mips_cyc2ns() MIPS: cavium-octeon: rewrite the sched_clock() based on mips_cyc2ns() MIPS: r4k: Add a high resolution sched_clock() arch/mips/Kconfig | 12 +++++ arch/mips/cavium-octeon/csrc-octeon.c | 28 +----------- arch/mips/include/asm/time.h | 38 +++++++++++++++++ arch/mips/kernel/csrc-r4k.c | 75 +++++++++++++++++++++++++++++++++ arch/mips/kernel/time.c | 5 ++ 5 files changed, 132 insertions(+), 26 deletions(-)