Adding .24 support for olpc
[openwrt.git] / target / linux / olpc / files-2.6.23 / arch / i386 / kernel / mfgpt.c
1 /* Driver/API for AMD Geode Multi-Function General Purpose Timers (MFGPT)
2 *
3 * Copyright (C) 2006, Advanced Micro Devices, Inc.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 */
10
11 /* The MFPGT timers on the CS5536 provide us with suitable timers to use
12 * as clock event sources - not as good as a HPET or APIC, but certainly
13 * better then the PIT. This isn't a general purpose MFGPT driver, but
14 * a simplified one designed specifically to act as a clock event source.
15 * For full details about the MFGPT, please consult the CS5536 data sheet.
16 */
17
18 /* We are using the 32Khz input clock - its the only one that has the
19 * ranges we find desirable. The following table lists the suitable
20 * divisors and the associated hz, minimum interval
21 * and the maximum interval:
22
23 Divisor Hz Min Delta (S) Max Delta (S)
24 1 32000 .0005 2.048
25 2 16000 .001 4.096
26 4 8000 .002 8.192
27 8 4000 .004 16.384
28 16 2000 .008 32.768
29 32 1000 .016 65.536
30 64 500 .032 131.072
31 128 250 .064 262.144
32 256 125 .128 524.288
33 */
34
35 #include <linux/kernel.h>
36 #include <linux/interrupt.h>
37 #include <linux/module.h>
38 #include <linux/clocksource.h>
39 #include <linux/clockchips.h>
40 #include <asm/geode.h>
41
42 #include "do_timer.h"
43
44 #define MFGPT_MAX_TIMERS 8
45
46 #define F_AVAIL 0x01
47
48 static struct mfgpt_timer_t {
49 int flags;
50 struct module *owner;
51 } mfgpt_timers[MFGPT_MAX_TIMERS];
52
53 /* Selected from the table above */
54
55 #define MFGPT_DIVISOR 16
56 #define MFGPT_SCALE 4 /* divisor = 2^(scale) */
57 #define MFGPT_HZ (32000 / MFGPT_DIVISOR)
58 #define MFGPT_PERIODIC (MFGPT_HZ / HZ)
59
60 #ifdef CONFIG_GEODE_MFGPT_TIMER
61 static int __init mfgpt_timer_setup(void);
62 #else
63 #define mfgpt_timer_setup() (0)
64 #endif
65
66 /* Allow for disabling of MFGPTs */
67 static int disable = 0;
68 static int __init mfgpt_disable(char *s)
69 {
70 disable = 1;
71 return 1;
72 }
73 __setup("nomfgpt", mfgpt_disable);
74
75 /*
76 * Check whether any MFGPTs are available for the kernel to use. In most
77 * cases, firmware that uses AMD's VSA code will claim all timers during
78 * bootup; we certainly don't want to take them if they're already in use.
79 * In other cases (such as with VSAless OpenFirmware), the system firmware
80 * leaves timers available for us to use.
81 */
82 int __init geode_mfgpt_detect(void)
83 {
84 int count = 0, i;
85 u16 val;
86
87 if (disable) {
88 printk(KERN_INFO "geode-mfgpt: Skipping MFGPT setup\n");
89 return 0;
90 }
91
92 for (i = 0; i < MFGPT_MAX_TIMERS; i++) {
93 val = geode_mfgpt_read(i, MFGPT_REG_SETUP);
94 if (!(val & MFGPT_SETUP_SETUP)) {
95 mfgpt_timers[i].flags = F_AVAIL;
96 count++;
97 }
98 }
99
100 /* set up clock event device, if desired */
101 i = mfgpt_timer_setup();
102
103 return count;
104 }
105
106 int geode_mfgpt_toggle_event(int timer, int cmp, int event, int enable)
107 {
108 u32 msr, mask, value, dummy;
109 int shift = (cmp == MFGPT_CMP1) ? 0 : 8;
110
111 if (timer < 0 || timer >= MFGPT_MAX_TIMERS)
112 return -EIO;
113
114 /*
115 * The register maps for these are described in sections 6.17.1.x of
116 * the AMD Geode CS5536 Companion Device Data Book.
117 */
118 switch(event) {
119 case MFGPT_EVENT_RESET:
120 /* XXX: According to the docs, we cannot reset timers above
121 * 6; that is, resets for 7 and 8 will be ignored. Is this
122 * a problem? */
123 msr = MFGPT_NR_MSR;
124 mask = 1 << (timer + 24);
125 break;
126
127 case MFGPT_EVENT_NMI:
128 msr = MFGPT_NR_MSR;
129 mask = 1 << (timer + shift);
130 break;
131
132 case MFGPT_EVENT_IRQ:
133 msr = MFGPT_IRQ_MSR;
134 mask = 1 << (timer + shift);
135 break;
136
137 default:
138 return -EIO;
139 }
140
141 rdmsr(msr, value, dummy);
142
143 if (enable)
144 value |= mask;
145 else
146 value &= ~mask;
147
148 wrmsr(msr, value, dummy);
149 return 0;
150 }
151 EXPORT_SYMBOL(geode_mfgpt_toggle_event);
152
153 int geode_mfgpt_set_irq(int timer, int cmp, int irq, int enable)
154 {
155 u32 val, dummy;
156 int offset;
157
158 if (timer < 0 || timer >= MFGPT_MAX_TIMERS)
159 return -EIO;
160
161 if (geode_mfgpt_toggle_event(timer, cmp, MFGPT_EVENT_IRQ, enable))
162 return -EIO;
163
164 rdmsr(0x51400022, val, dummy);
165
166 offset = (timer % 4) * 4;
167
168 val &= ~((0xF << offset) | (0xF << (offset + 16)));
169
170 if (enable) {
171 val |= (irq & 0x0F) << (offset);
172 val |= (irq & 0x0F) << (offset + 16);
173 }
174
175 wrmsr(0x51400022, val, dummy);
176 return 0;
177 }
178 EXPORT_SYMBOL(geode_mfgpt_set_irq);
179
180 static int mfgpt_get(int timer, struct module *owner)
181 {
182 mfgpt_timers[timer].flags &= ~F_AVAIL;
183 mfgpt_timers[timer].owner = owner;
184 printk(KERN_INFO "geode-mfgpt: Registered timer %d\n", timer);
185 return timer;
186 }
187
188 int geode_mfgpt_alloc_timer(int timer, int domain, struct module *owner)
189 {
190 int i;
191
192 if (!geode_get_dev_base(GEODE_DEV_MFGPT))
193 return -ENODEV;
194 if (timer >= MFGPT_MAX_TIMERS)
195 return -EIO;
196
197 if (timer < 0) {
198 /* Try to find an available timer */
199 for (i = 0; i < MFGPT_MAX_TIMERS; i++) {
200 if (mfgpt_timers[i].flags & F_AVAIL)
201 return mfgpt_get(i, owner);
202
203 if (i == 5 && domain == MFGPT_DOMAIN_WORKING)
204 break;
205 }
206 }
207 else {
208 /* If they requested a specific timer, try to honor that */
209 if (mfgpt_timers[timer].flags & F_AVAIL)
210 return mfgpt_get(timer, owner);
211 }
212
213 /* No timers available - too bad */
214 return -1;
215 }
216 EXPORT_SYMBOL(geode_mfgpt_alloc_timer);
217
218 #ifdef CONFIG_GEODE_MFGPT_TIMER
219
220 static unsigned int mfgpt_tick_mode = CLOCK_EVT_MODE_SHUTDOWN;
221 static u16 mfgpt_event_clock;
222
223 static int irq = 7;
224 static int __init mfgpt_setup(char *str)
225 {
226 get_option(&str, &irq);
227 return 1;
228 }
229 __setup("mfgpt_irq=", mfgpt_setup);
230
231 static inline void mfgpt_disable_timer(u16 clock)
232 {
233 u16 val = geode_mfgpt_read(clock, MFGPT_REG_SETUP);
234 geode_mfgpt_write(clock, MFGPT_REG_SETUP, val & ~MFGPT_SETUP_CNTEN);
235 }
236
237 static int mfgpt_next_event(unsigned long, struct clock_event_device *);
238 static void mfgpt_set_mode(enum clock_event_mode, struct clock_event_device *);
239
240 static struct clock_event_device mfgpt_clockevent = {
241 .name = "mfgpt-timer",
242 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
243 .set_mode = mfgpt_set_mode,
244 .set_next_event = mfgpt_next_event,
245 .rating = 250,
246 .cpumask = CPU_MASK_ALL,
247 .shift = 32
248 };
249
250 static inline void mfgpt_start_timer(u16 clock, u16 delta)
251 {
252 geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_CMP2, (u16) delta);
253 geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_COUNTER, 0);
254
255 geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_SETUP,
256 MFGPT_SETUP_CNTEN | MFGPT_SETUP_CMP2);
257 }
258
259 static void mfgpt_set_mode(enum clock_event_mode mode,
260 struct clock_event_device *evt)
261 {
262 mfgpt_disable_timer(mfgpt_event_clock);
263
264 if (mode == CLOCK_EVT_MODE_PERIODIC)
265 mfgpt_start_timer(mfgpt_event_clock, MFGPT_PERIODIC);
266
267 mfgpt_tick_mode = mode;
268 }
269
270 static int mfgpt_next_event(unsigned long delta, struct clock_event_device *evt)
271 {
272 mfgpt_start_timer(mfgpt_event_clock, delta);
273 return 0;
274 }
275
276 /* Assume (foolishly?), that this interrupt was due to our tick */
277
278 static irqreturn_t mfgpt_tick(int irq, void *dev_id)
279 {
280 if (mfgpt_tick_mode == CLOCK_EVT_MODE_SHUTDOWN)
281 return IRQ_HANDLED;
282
283 /* Turn off the clock */
284 mfgpt_disable_timer(mfgpt_event_clock);
285
286 /* Clear the counter */
287 geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_COUNTER, 0);
288
289 /* Restart the clock in periodic mode */
290
291 if (mfgpt_tick_mode == CLOCK_EVT_MODE_PERIODIC) {
292 geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_SETUP,
293 MFGPT_SETUP_CNTEN | MFGPT_SETUP_CMP2);
294 }
295
296 mfgpt_clockevent.event_handler(&mfgpt_clockevent);
297 return IRQ_HANDLED;
298 }
299
300 static struct irqaction mfgptirq = {
301 .handler = mfgpt_tick,
302 .flags = IRQF_DISABLED | IRQF_NOBALANCING,
303 .mask = CPU_MASK_NONE,
304 .name = "mfgpt-timer"
305 };
306
307 static int __init mfgpt_timer_setup(void)
308 {
309 int timer, ret;
310 u16 val;
311
312 timer = geode_mfgpt_alloc_timer(MFGPT_TIMER_ANY, MFGPT_DOMAIN_WORKING, THIS_MODULE);
313 if (timer < 0) {
314 printk(KERN_ERR "mfgpt-timer: Could not allocate a MFPGT timer\n");
315 return -ENODEV;
316 }
317
318 mfgpt_event_clock = timer;
319 /* Set the clock scale and enable the event mode for CMP2 */
320 val = MFGPT_SCALE | (3 << 8);
321
322 geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_SETUP, val);
323
324 /* Set up the IRQ on the MFGPT side */
325 if (geode_mfgpt_setup_irq(mfgpt_event_clock, MFGPT_CMP2, irq)) {
326 printk(KERN_ERR "mfgpt-timer: Could not set up IRQ %d\n", irq);
327 return -EIO;
328 }
329
330 /* And register it with the kernel */
331 ret = setup_irq(irq, &mfgptirq);
332
333 if (ret) {
334 printk(KERN_ERR "mfgpt-timer: Unable to set up the interrupt.\n");
335 goto err;
336 }
337
338 /* Set up the clock event */
339 mfgpt_clockevent.mult = div_sc(MFGPT_HZ, NSEC_PER_SEC, 32);
340 mfgpt_clockevent.min_delta_ns = clockevent_delta2ns(0xF, &mfgpt_clockevent);
341 mfgpt_clockevent.max_delta_ns = clockevent_delta2ns(0xFFFE, &mfgpt_clockevent);
342
343 printk("mfgpt-timer: registering the MFGT timer as a clock event.\n");
344 clockevents_register_device(&mfgpt_clockevent);
345
346 return 0;
347
348 err:
349 geode_mfgpt_release_irq(mfgpt_event_clock, MFGPT_CMP2, irq);
350 printk(KERN_ERR "mfgpt-timer: Unable to set up the MFGPT clock source\n");
351 return -EIO;
352 }
353
354 #endif
This page took 0.064338 seconds and 5 git commands to generate.