1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <linux/clocksource.h>
24#include <linux/jiffies.h>
25#include <linux/module.h>
26#include <linux/init.h>
27
28#include "timekeeping.h"
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43#if HZ < 34
44#define JIFFIES_SHIFT 6
45#elif HZ < 67
46#define JIFFIES_SHIFT 7
47#else
48#define JIFFIES_SHIFT 8
49#endif
50
51static u64 jiffies_read(struct clocksource *cs)
52{
53 return (u64) jiffies;
54}
55
56
57
58
59
60
61
62
63
64
65
66
67static struct clocksource clocksource_jiffies = {
68 .name = "jiffies",
69 .rating = 1,
70 .read = jiffies_read,
71 .mask = CLOCKSOURCE_MASK(32),
72 .mult = TICK_NSEC << JIFFIES_SHIFT,
73 .shift = JIFFIES_SHIFT,
74 .max_cycles = 10,
75};
76
77__cacheline_aligned_in_smp DEFINE_RAW_SPINLOCK(jiffies_lock);
78__cacheline_aligned_in_smp seqcount_t jiffies_seq;
79
80#if (BITS_PER_LONG < 64)
81u64 get_jiffies_64(void)
82{
83 unsigned int seq;
84 u64 ret;
85
86 do {
87 seq = read_seqcount_begin(&jiffies_seq);
88 ret = jiffies_64;
89 } while (read_seqcount_retry(&jiffies_seq, seq));
90 return ret;
91}
92EXPORT_SYMBOL(get_jiffies_64);
93#endif
94
95EXPORT_SYMBOL(jiffies);
96
97static int __init init_jiffies_clocksource(void)
98{
99 return __clocksource_register(&clocksource_jiffies);
100}
101
102core_initcall(init_jiffies_clocksource);
103
104struct clocksource * __init __weak clocksource_default_clock(void)
105{
106 return &clocksource_jiffies;
107}
108
109struct clocksource refined_jiffies;
110
111int register_refined_jiffies(long cycles_per_second)
112{
113 u64 nsec_per_tick, shift_hz;
114 long cycles_per_tick;
115
116
117
118 refined_jiffies = clocksource_jiffies;
119 refined_jiffies.name = "refined-jiffies";
120 refined_jiffies.rating++;
121
122
123 cycles_per_tick = (cycles_per_second + HZ/2)/HZ;
124
125 shift_hz = (u64)cycles_per_second << 8;
126 shift_hz += cycles_per_tick/2;
127 do_div(shift_hz, cycles_per_tick);
128
129 nsec_per_tick = (u64)NSEC_PER_SEC << 8;
130 nsec_per_tick += (u32)shift_hz/2;
131 do_div(nsec_per_tick, (u32)shift_hz);
132
133 refined_jiffies.mult = ((u32)nsec_per_tick) << JIFFIES_SHIFT;
134
135 __clocksource_register(&refined_jiffies);
136 return 0;
137}
138