Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43411
b: refs/heads/master
c: 2f1675c
h: refs/heads/master
i:
  43409: 3d38999
  43407: 7e95889
v: v3
  • Loading branch information
Nicolas Pitre authored and Russell King committed Dec 7, 2006
1 parent 326c84b commit a261a1b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 838ccbc35eae5b44d47724e5f694dbec4a26d269
refs/heads/master: 2f1675c11a0a214855ff6cba23aca239eef7a5fb
15 changes: 11 additions & 4 deletions trunk/arch/arm/mach-sa1100/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <linux/platform_device.h>

#include <asm/div64.h>
#include <asm/cnt32_to_63.h>
#include <asm/hardware.h>
#include <asm/system.h>
#include <asm/pgtable.h>
Expand Down Expand Up @@ -118,15 +119,21 @@ EXPORT_SYMBOL(cpufreq_get);

/*
* This is the SA11x0 sched_clock implementation. This has
* a resolution of 271ns, and a maximum value of 1165s.
* a resolution of 271ns, and a maximum value of 32025597s (370 days).
*
* The return value is guaranteed to be monotonic in that range as
* long as there is always less than 582 seconds between successive
* calls to this function.
*
* ( * 1E9 / 3686400 => * 78125 / 288)
*/
unsigned long long sched_clock(void)
{
unsigned long long v;
unsigned long long v = cnt32_to_63(OSCR);

v = (unsigned long long)OSCR * 78125;
do_div(v, 288);
/* the <<1 gets rid of the cnt_32_to_63 top bit saving on a bic insn */
v *= 78125<<1;
do_div(v, 288<<1);

return v;
}
Expand Down

0 comments on commit a261a1b

Please sign in to comment.