GNU Linux-libre 4.9.337-gnu1
[releases.git] / drivers / clocksource / i8253.c
1 /*
2  * i8253 PIT clocksource
3  */
4 #include <linux/clockchips.h>
5 #include <linux/init.h>
6 #include <linux/io.h>
7 #include <linux/spinlock.h>
8 #include <linux/timex.h>
9 #include <linux/module.h>
10 #include <linux/i8253.h>
11 #include <linux/smp.h>
12
13 /*
14  * Protects access to I/O ports
15  *
16  * 0040-0043 : timer0, i8253 / i8254
17  * 0061-0061 : NMI Control Register which contains two speaker control bits.
18  */
19 DEFINE_RAW_SPINLOCK(i8253_lock);
20 EXPORT_SYMBOL(i8253_lock);
21
22 /*
23  * Handle PIT quirk in pit_shutdown() where zeroing the counter register
24  * restarts the PIT, negating the shutdown. On platforms with the quirk,
25  * platform specific code can set this to false.
26  */
27 bool i8253_clear_counter_on_shutdown __ro_after_init = true;
28
29 #ifdef CONFIG_CLKSRC_I8253
30 /*
31  * Since the PIT overflows every tick, its not very useful
32  * to just read by itself. So use jiffies to emulate a free
33  * running counter:
34  */
35 static cycle_t i8253_read(struct clocksource *cs)
36 {
37         static int old_count;
38         static u32 old_jifs;
39         unsigned long flags;
40         int count;
41         u32 jifs;
42
43         raw_spin_lock_irqsave(&i8253_lock, flags);
44         /*
45          * Although our caller may have the read side of jiffies_lock,
46          * this is now a seqlock, and we are cheating in this routine
47          * by having side effects on state that we cannot undo if
48          * there is a collision on the seqlock and our caller has to
49          * retry.  (Namely, old_jifs and old_count.)  So we must treat
50          * jiffies as volatile despite the lock.  We read jiffies
51          * before latching the timer count to guarantee that although
52          * the jiffies value might be older than the count (that is,
53          * the counter may underflow between the last point where
54          * jiffies was incremented and the point where we latch the
55          * count), it cannot be newer.
56          */
57         jifs = jiffies;
58         outb_p(0x00, PIT_MODE); /* latch the count ASAP */
59         count = inb_p(PIT_CH0); /* read the latched count */
60         count |= inb_p(PIT_CH0) << 8;
61
62         /* VIA686a test code... reset the latch if count > max + 1 */
63         if (count > PIT_LATCH) {
64                 outb_p(0x34, PIT_MODE);
65                 outb_p(PIT_LATCH & 0xff, PIT_CH0);
66                 outb_p(PIT_LATCH >> 8, PIT_CH0);
67                 count = PIT_LATCH - 1;
68         }
69
70         /*
71          * It's possible for count to appear to go the wrong way for a
72          * couple of reasons:
73          *
74          *  1. The timer counter underflows, but we haven't handled the
75          *     resulting interrupt and incremented jiffies yet.
76          *  2. Hardware problem with the timer, not giving us continuous time,
77          *     the counter does small "jumps" upwards on some Pentium systems,
78          *     (see c't 95/10 page 335 for Neptun bug.)
79          *
80          * Previous attempts to handle these cases intelligently were
81          * buggy, so we just do the simple thing now.
82          */
83         if (count > old_count && jifs == old_jifs)
84                 count = old_count;
85
86         old_count = count;
87         old_jifs = jifs;
88
89         raw_spin_unlock_irqrestore(&i8253_lock, flags);
90
91         count = (PIT_LATCH - 1) - count;
92
93         return (cycle_t)(jifs * PIT_LATCH) + count;
94 }
95
96 static struct clocksource i8253_cs = {
97         .name           = "pit",
98         .rating         = 110,
99         .read           = i8253_read,
100         .mask           = CLOCKSOURCE_MASK(32),
101 };
102
103 int __init clocksource_i8253_init(void)
104 {
105         return clocksource_register_hz(&i8253_cs, PIT_TICK_RATE);
106 }
107 #endif
108
109 #ifdef CONFIG_CLKEVT_I8253
110 static int pit_shutdown(struct clock_event_device *evt)
111 {
112         if (!clockevent_state_oneshot(evt) && !clockevent_state_periodic(evt))
113                 return 0;
114
115         raw_spin_lock(&i8253_lock);
116
117         outb_p(0x30, PIT_MODE);
118
119         if (i8253_clear_counter_on_shutdown) {
120                 outb_p(0, PIT_CH0);
121                 outb_p(0, PIT_CH0);
122         }
123
124         raw_spin_unlock(&i8253_lock);
125         return 0;
126 }
127
128 static int pit_set_oneshot(struct clock_event_device *evt)
129 {
130         raw_spin_lock(&i8253_lock);
131         outb_p(0x38, PIT_MODE);
132         raw_spin_unlock(&i8253_lock);
133         return 0;
134 }
135
136 static int pit_set_periodic(struct clock_event_device *evt)
137 {
138         raw_spin_lock(&i8253_lock);
139
140         /* binary, mode 2, LSB/MSB, ch 0 */
141         outb_p(0x34, PIT_MODE);
142         outb_p(PIT_LATCH & 0xff, PIT_CH0);      /* LSB */
143         outb_p(PIT_LATCH >> 8, PIT_CH0);        /* MSB */
144
145         raw_spin_unlock(&i8253_lock);
146         return 0;
147 }
148
149 /*
150  * Program the next event in oneshot mode
151  *
152  * Delta is given in PIT ticks
153  */
154 static int pit_next_event(unsigned long delta, struct clock_event_device *evt)
155 {
156         raw_spin_lock(&i8253_lock);
157         outb_p(delta & 0xff , PIT_CH0); /* LSB */
158         outb_p(delta >> 8 , PIT_CH0);           /* MSB */
159         raw_spin_unlock(&i8253_lock);
160
161         return 0;
162 }
163
164 /*
165  * On UP the PIT can serve all of the possible timer functions. On SMP systems
166  * it can be solely used for the global tick.
167  */
168 struct clock_event_device i8253_clockevent = {
169         .name                   = "pit",
170         .features               = CLOCK_EVT_FEAT_PERIODIC,
171         .set_state_shutdown     = pit_shutdown,
172         .set_state_periodic     = pit_set_periodic,
173         .set_next_event         = pit_next_event,
174 };
175
176 /*
177  * Initialize the conversion factor and the min/max deltas of the clock event
178  * structure and register the clock event source with the framework.
179  */
180 void __init clockevent_i8253_init(bool oneshot)
181 {
182         if (oneshot) {
183                 i8253_clockevent.features |= CLOCK_EVT_FEAT_ONESHOT;
184                 i8253_clockevent.set_state_oneshot = pit_set_oneshot;
185         }
186         /*
187          * Start pit with the boot cpu mask. x86 might make it global
188          * when it is used as broadcast device later.
189          */
190         i8253_clockevent.cpumask = cpumask_of(smp_processor_id());
191
192         clockevents_config_and_register(&i8253_clockevent, PIT_TICK_RATE,
193                                         0xF, 0x7FFF);
194 }
195 #endif