2 * Driver/API for AMD Geode Multi-Function General Purpose Timers (MFGPT)
4 * Copyright (C) 2006, Advanced Micro Devices, Inc.
5 * Copyright (C) 2007, Andres Salomon <dilinger@debian.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of version 2 of the GNU General Public License
9 * as published by the Free Software Foundation.
11 * The MFGPTs are documented in AMD Geode CS5536 Companion Device Data Book.
15 * We are using the 32Khz input clock - its the only one that has the
16 * ranges we find desirable. The following table lists the suitable
17 * divisors and the associated hz, minimum interval
18 * and the maximum interval:
20 * Divisor Hz Min Delta (S) Max Delta (S)
28 * 128 250 .064 262.144
29 * 256 125 .128 524.288
32 #include <linux/kernel.h>
33 #include <linux/interrupt.h>
34 #include <linux/module.h>
35 #include <asm/geode.h>
39 static struct mfgpt_timer_t
{
42 } mfgpt_timers
[MFGPT_MAX_TIMERS
];
44 /* Selected from the table above */
46 #define MFGPT_DIVISOR 16
47 #define MFGPT_SCALE 4 /* divisor = 2^(scale) */
48 #define MFGPT_HZ (32000 / MFGPT_DIVISOR)
49 #define MFGPT_PERIODIC (MFGPT_HZ / HZ)
51 #ifdef CONFIG_GEODE_MFGPT_TIMER
52 static int __init
mfgpt_timer_setup(void);
54 #define mfgpt_timer_setup() (0)
57 /* Allow for disabling of MFGPTs */
59 static int __init
mfgpt_disable(char *s
)
64 __setup("nomfgpt", mfgpt_disable
);
67 * Check whether any MFGPTs are available for the kernel to use. In most
68 * cases, firmware that uses AMD's VSA code will claim all timers during
69 * bootup; we certainly don't want to take them if they're already in use.
70 * In other cases (such as with VSAless OpenFirmware), the system firmware
71 * leaves timers available for us to use.
73 int __init
geode_mfgpt_detect(void)
79 printk(KERN_INFO
"geode-mfgpt: Skipping MFGPT setup\n");
83 for (i
= 0; i
< MFGPT_MAX_TIMERS
; i
++) {
84 val
= geode_mfgpt_read(i
, MFGPT_REG_SETUP
);
85 if (!(val
& MFGPT_SETUP_SETUP
)) {
86 mfgpt_timers
[i
].flags
= F_AVAIL
;
91 /* set up clock event device, if desired */
92 i
= mfgpt_timer_setup();
97 int geode_mfgpt_toggle_event(int timer
, int cmp
, int event
, int enable
)
99 u32 msr
, mask
, value
, dummy
;
100 int shift
= (cmp
== MFGPT_CMP1
) ? 0 : 8;
102 if (timer
< 0 || timer
>= MFGPT_MAX_TIMERS
)
106 * The register maps for these are described in sections 6.17.1.x of
107 * the AMD Geode CS5536 Companion Device Data Book.
110 case MFGPT_EVENT_RESET
:
112 * XXX: According to the docs, we cannot reset timers above
113 * 6; that is, resets for 7 and 8 will be ignored. Is this
114 * a problem? -dilinger
117 mask
= 1 << (timer
+ 24);
120 case MFGPT_EVENT_NMI
:
122 mask
= 1 << (timer
+ shift
);
125 case MFGPT_EVENT_IRQ
:
127 mask
= 1 << (timer
+ shift
);
134 rdmsr(msr
, value
, dummy
);
141 wrmsr(msr
, value
, dummy
);
145 int geode_mfgpt_set_irq(int timer
, int cmp
, int irq
, int enable
)
150 if (timer
< 0 || timer
>= MFGPT_MAX_TIMERS
)
153 if (geode_mfgpt_toggle_event(timer
, cmp
, MFGPT_EVENT_IRQ
, enable
))
156 rdmsr(MSR_PIC_ZSEL_LOW
, val
, dummy
);
158 offset
= (timer
% 4) * 4;
160 val
&= ~((0xF << offset
) | (0xF << (offset
+ 16)));
163 val
|= (irq
& 0x0F) << (offset
);
164 val
|= (irq
& 0x0F) << (offset
+ 16);
167 wrmsr(MSR_PIC_ZSEL_LOW
, val
, dummy
);
171 static int mfgpt_get(int timer
, struct module
*owner
)
173 mfgpt_timers
[timer
].flags
&= ~F_AVAIL
;
174 mfgpt_timers
[timer
].owner
= owner
;
175 printk(KERN_INFO
"geode-mfgpt: Registered timer %d\n", timer
);
179 int geode_mfgpt_alloc_timer(int timer
, int domain
, struct module
*owner
)
183 if (!geode_get_dev_base(GEODE_DEV_MFGPT
))
185 if (timer
>= MFGPT_MAX_TIMERS
)
189 /* Try to find an available timer */
190 for (i
= 0; i
< MFGPT_MAX_TIMERS
; i
++) {
191 if (mfgpt_timers
[i
].flags
& F_AVAIL
)
192 return mfgpt_get(i
, owner
);
194 if (i
== 5 && domain
== MFGPT_DOMAIN_WORKING
)
198 /* If they requested a specific timer, try to honor that */
199 if (mfgpt_timers
[timer
].flags
& F_AVAIL
)
200 return mfgpt_get(timer
, owner
);
203 /* No timers available - too bad */
208 #ifdef CONFIG_GEODE_MFGPT_TIMER
211 * The MFPGT timers on the CS5536 provide us with suitable timers to use
212 * as clock event sources - not as good as a HPET or APIC, but certainly
213 * better then the PIT. This isn't a general purpose MFGPT driver, but
214 * a simplified one designed specifically to act as a clock event source.
215 * For full details about the MFGPT, please consult the CS5536 data sheet.
218 #include <linux/clocksource.h>
219 #include <linux/clockchips.h>
221 static unsigned int mfgpt_tick_mode
= CLOCK_EVT_MODE_SHUTDOWN
;
222 static u16 mfgpt_event_clock
;
225 static int __init
mfgpt_setup(char *str
)
227 get_option(&str
, &irq
);
230 __setup("mfgpt_irq=", mfgpt_setup
);
232 static inline void mfgpt_disable_timer(u16 clock
)
234 u16 val
= geode_mfgpt_read(clock
, MFGPT_REG_SETUP
);
235 geode_mfgpt_write(clock
, MFGPT_REG_SETUP
, val
& ~MFGPT_SETUP_CNTEN
);
238 static int mfgpt_next_event(unsigned long, struct clock_event_device
*);
239 static void mfgpt_set_mode(enum clock_event_mode
, struct clock_event_device
*);
241 static struct clock_event_device mfgpt_clockevent
= {
242 .name
= "mfgpt-timer",
243 .features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
,
244 .set_mode
= mfgpt_set_mode
,
245 .set_next_event
= mfgpt_next_event
,
247 .cpumask
= CPU_MASK_ALL
,
251 static inline void mfgpt_start_timer(u16 clock
, u16 delta
)
253 geode_mfgpt_write(mfgpt_event_clock
, MFGPT_REG_CMP2
, (u16
) delta
);
254 geode_mfgpt_write(mfgpt_event_clock
, MFGPT_REG_COUNTER
, 0);
256 geode_mfgpt_write(mfgpt_event_clock
, MFGPT_REG_SETUP
,
257 MFGPT_SETUP_CNTEN
| MFGPT_SETUP_CMP2
);
260 static void mfgpt_set_mode(enum clock_event_mode mode
,
261 struct clock_event_device
*evt
)
263 mfgpt_disable_timer(mfgpt_event_clock
);
265 if (mode
== CLOCK_EVT_MODE_PERIODIC
)
266 mfgpt_start_timer(mfgpt_event_clock
, MFGPT_PERIODIC
);
268 mfgpt_tick_mode
= mode
;
271 static int mfgpt_next_event(unsigned long delta
, struct clock_event_device
*evt
)
273 mfgpt_start_timer(mfgpt_event_clock
, delta
);
277 /* Assume (foolishly?), that this interrupt was due to our tick */
279 static irqreturn_t
mfgpt_tick(int irq
, void *dev_id
)
281 if (mfgpt_tick_mode
== CLOCK_EVT_MODE_SHUTDOWN
)
284 /* Turn off the clock */
285 mfgpt_disable_timer(mfgpt_event_clock
);
287 /* Clear the counter */
288 geode_mfgpt_write(mfgpt_event_clock
, MFGPT_REG_COUNTER
, 0);
290 /* Restart the clock in periodic mode */
292 if (mfgpt_tick_mode
== CLOCK_EVT_MODE_PERIODIC
) {
293 geode_mfgpt_write(mfgpt_event_clock
, MFGPT_REG_SETUP
,
294 MFGPT_SETUP_CNTEN
| MFGPT_SETUP_CMP2
);
297 mfgpt_clockevent
.event_handler(&mfgpt_clockevent
);
301 static struct irqaction mfgptirq
= {
302 .handler
= mfgpt_tick
,
303 .flags
= IRQF_DISABLED
| IRQF_NOBALANCING
,
304 .mask
= CPU_MASK_NONE
,
305 .name
= "mfgpt-timer"
308 static int __init
mfgpt_timer_setup(void)
313 timer
= geode_mfgpt_alloc_timer(MFGPT_TIMER_ANY
, MFGPT_DOMAIN_WORKING
,
317 "mfgpt-timer: Could not allocate a MFPGT timer\n");
321 mfgpt_event_clock
= timer
;
322 /* Set the clock scale and enable the event mode for CMP2 */
323 val
= MFGPT_SCALE
| (3 << 8);
325 geode_mfgpt_write(mfgpt_event_clock
, MFGPT_REG_SETUP
, val
);
327 /* Set up the IRQ on the MFGPT side */
328 if (geode_mfgpt_setup_irq(mfgpt_event_clock
, MFGPT_CMP2
, irq
)) {
329 printk(KERN_ERR
"mfgpt-timer: Could not set up IRQ %d\n", irq
);
333 /* And register it with the kernel */
334 ret
= setup_irq(irq
, &mfgptirq
);
338 "mfgpt-timer: Unable to set up the interrupt.\n");
342 /* Set up the clock event */
343 mfgpt_clockevent
.mult
= div_sc(MFGPT_HZ
, NSEC_PER_SEC
, 32);
344 mfgpt_clockevent
.min_delta_ns
= clockevent_delta2ns(0xF,
346 mfgpt_clockevent
.max_delta_ns
= clockevent_delta2ns(0xFFFE,
350 "mfgpt-timer: registering the MFGT timer as a clock event.\n");
351 clockevents_register_device(&mfgpt_clockevent
);
356 geode_mfgpt_release_irq(mfgpt_event_clock
, MFGPT_CMP2
, irq
);
358 "mfgpt-timer: Unable to set up the MFGPT clock source\n");