[PATCH] kernel/time/clocksource.c needs struct task_struct on m68k
[linux-2.6/mini2440.git] / kernel / time / clocksource.c
blobd9ef176c4e092eebf93acc31dd14dcbd362603c0
1 /*
2 * linux/kernel/time/clocksource.c
4 * This file contains the functions which manage clocksource drivers.
6 * Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * TODO WishList:
23 * o Allow clocksource drivers to be unregistered
24 * o get rid of clocksource_jiffies extern
27 #include <linux/clocksource.h>
28 #include <linux/sysdev.h>
29 #include <linux/init.h>
30 #include <linux/module.h>
31 #include <linux/sched.h> /* for spin_unlock_irq() using preempt_count() m68k */
33 /* XXX - Would like a better way for initializing curr_clocksource */
34 extern struct clocksource clocksource_jiffies;
36 /*[Clocksource internal variables]---------
37 * curr_clocksource:
38 * currently selected clocksource. Initialized to clocksource_jiffies.
39 * next_clocksource:
40 * pending next selected clocksource.
41 * clocksource_list:
42 * linked list with the registered clocksources
43 * clocksource_lock:
44 * protects manipulations to curr_clocksource and next_clocksource
45 * and the clocksource_list
46 * override_name:
47 * Name of the user-specified clocksource.
49 static struct clocksource *curr_clocksource = &clocksource_jiffies;
50 static struct clocksource *next_clocksource;
51 static LIST_HEAD(clocksource_list);
52 static DEFINE_SPINLOCK(clocksource_lock);
53 static char override_name[32];
54 static int finished_booting;
56 /* clocksource_done_booting - Called near the end of bootup
58 * Hack to avoid lots of clocksource churn at boot time
60 static int __init clocksource_done_booting(void)
62 finished_booting = 1;
63 return 0;
66 late_initcall(clocksource_done_booting);
68 /**
69 * clocksource_get_next - Returns the selected clocksource
72 struct clocksource *clocksource_get_next(void)
74 unsigned long flags;
76 spin_lock_irqsave(&clocksource_lock, flags);
77 if (next_clocksource && finished_booting) {
78 curr_clocksource = next_clocksource;
79 next_clocksource = NULL;
81 spin_unlock_irqrestore(&clocksource_lock, flags);
83 return curr_clocksource;
86 /**
87 * select_clocksource - Finds the best registered clocksource.
89 * Private function. Must hold clocksource_lock when called.
91 * Looks through the list of registered clocksources, returning
92 * the one with the highest rating value. If there is a clocksource
93 * name that matches the override string, it returns that clocksource.
95 static struct clocksource *select_clocksource(void)
97 struct clocksource *best = NULL;
98 struct list_head *tmp;
100 list_for_each(tmp, &clocksource_list) {
101 struct clocksource *src;
103 src = list_entry(tmp, struct clocksource, list);
104 if (!best)
105 best = src;
107 /* check for override: */
108 if (strlen(src->name) == strlen(override_name) &&
109 !strcmp(src->name, override_name)) {
110 best = src;
111 break;
113 /* pick the highest rating: */
114 if (src->rating > best->rating)
115 best = src;
118 return best;
122 * is_registered_source - Checks if clocksource is registered
123 * @c: pointer to a clocksource
125 * Private helper function. Must hold clocksource_lock when called.
127 * Returns one if the clocksource is already registered, zero otherwise.
129 static int is_registered_source(struct clocksource *c)
131 int len = strlen(c->name);
132 struct list_head *tmp;
134 list_for_each(tmp, &clocksource_list) {
135 struct clocksource *src;
137 src = list_entry(tmp, struct clocksource, list);
138 if (strlen(src->name) == len && !strcmp(src->name, c->name))
139 return 1;
142 return 0;
146 * clocksource_register - Used to install new clocksources
147 * @t: clocksource to be registered
149 * Returns -EBUSY if registration fails, zero otherwise.
151 int clocksource_register(struct clocksource *c)
153 int ret = 0;
154 unsigned long flags;
156 spin_lock_irqsave(&clocksource_lock, flags);
157 /* check if clocksource is already registered */
158 if (is_registered_source(c)) {
159 printk("register_clocksource: Cannot register %s. "
160 "Already registered!", c->name);
161 ret = -EBUSY;
162 } else {
163 /* register it */
164 list_add(&c->list, &clocksource_list);
165 /* scan the registered clocksources, and pick the best one */
166 next_clocksource = select_clocksource();
168 spin_unlock_irqrestore(&clocksource_lock, flags);
169 return ret;
171 EXPORT_SYMBOL(clocksource_register);
174 * clocksource_reselect - Rescan list for next clocksource
176 * A quick helper function to be used if a clocksource changes its
177 * rating. Forces the clocksource list to be re-scanned for the best
178 * clocksource.
180 void clocksource_reselect(void)
182 unsigned long flags;
184 spin_lock_irqsave(&clocksource_lock, flags);
185 next_clocksource = select_clocksource();
186 spin_unlock_irqrestore(&clocksource_lock, flags);
188 EXPORT_SYMBOL(clocksource_reselect);
190 #ifdef CONFIG_SYSFS
192 * sysfs_show_current_clocksources - sysfs interface for current clocksource
193 * @dev: unused
194 * @buf: char buffer to be filled with clocksource list
196 * Provides sysfs interface for listing current clocksource.
198 static ssize_t
199 sysfs_show_current_clocksources(struct sys_device *dev, char *buf)
201 char *curr = buf;
203 spin_lock_irq(&clocksource_lock);
204 curr += sprintf(curr, "%s ", curr_clocksource->name);
205 spin_unlock_irq(&clocksource_lock);
207 curr += sprintf(curr, "\n");
209 return curr - buf;
213 * sysfs_override_clocksource - interface for manually overriding clocksource
214 * @dev: unused
215 * @buf: name of override clocksource
216 * @count: length of buffer
218 * Takes input from sysfs interface for manually overriding the default
219 * clocksource selction.
221 static ssize_t sysfs_override_clocksource(struct sys_device *dev,
222 const char *buf, size_t count)
224 size_t ret = count;
225 /* strings from sysfs write are not 0 terminated! */
226 if (count >= sizeof(override_name))
227 return -EINVAL;
229 /* strip of \n: */
230 if (buf[count-1] == '\n')
231 count--;
232 if (count < 1)
233 return -EINVAL;
235 spin_lock_irq(&clocksource_lock);
237 /* copy the name given: */
238 memcpy(override_name, buf, count);
239 override_name[count] = 0;
241 /* try to select it: */
242 next_clocksource = select_clocksource();
244 spin_unlock_irq(&clocksource_lock);
246 return ret;
250 * sysfs_show_available_clocksources - sysfs interface for listing clocksource
251 * @dev: unused
252 * @buf: char buffer to be filled with clocksource list
254 * Provides sysfs interface for listing registered clocksources
256 static ssize_t
257 sysfs_show_available_clocksources(struct sys_device *dev, char *buf)
259 struct list_head *tmp;
260 char *curr = buf;
262 spin_lock_irq(&clocksource_lock);
263 list_for_each(tmp, &clocksource_list) {
264 struct clocksource *src;
266 src = list_entry(tmp, struct clocksource, list);
267 curr += sprintf(curr, "%s ", src->name);
269 spin_unlock_irq(&clocksource_lock);
271 curr += sprintf(curr, "\n");
273 return curr - buf;
277 * Sysfs setup bits:
279 static SYSDEV_ATTR(current_clocksource, 0600, sysfs_show_current_clocksources,
280 sysfs_override_clocksource);
282 static SYSDEV_ATTR(available_clocksource, 0600,
283 sysfs_show_available_clocksources, NULL);
285 static struct sysdev_class clocksource_sysclass = {
286 set_kset_name("clocksource"),
289 static struct sys_device device_clocksource = {
290 .id = 0,
291 .cls = &clocksource_sysclass,
294 static int __init init_clocksource_sysfs(void)
296 int error = sysdev_class_register(&clocksource_sysclass);
298 if (!error)
299 error = sysdev_register(&device_clocksource);
300 if (!error)
301 error = sysdev_create_file(
302 &device_clocksource,
303 &attr_current_clocksource);
304 if (!error)
305 error = sysdev_create_file(
306 &device_clocksource,
307 &attr_available_clocksource);
308 return error;
311 device_initcall(init_clocksource_sysfs);
312 #endif /* CONFIG_SYSFS */
315 * boot_override_clocksource - boot clock override
316 * @str: override name
318 * Takes a clocksource= boot argument and uses it
319 * as the clocksource override name.
321 static int __init boot_override_clocksource(char* str)
323 unsigned long flags;
324 spin_lock_irqsave(&clocksource_lock, flags);
325 if (str)
326 strlcpy(override_name, str, sizeof(override_name));
327 spin_unlock_irqrestore(&clocksource_lock, flags);
328 return 1;
331 __setup("clocksource=", boot_override_clocksource);
334 * boot_override_clock - Compatibility layer for deprecated boot option
335 * @str: override name
337 * DEPRECATED! Takes a clock= boot argument and uses it
338 * as the clocksource override name
340 static int __init boot_override_clock(char* str)
342 if (!strcmp(str, "pmtmr")) {
343 printk("Warning: clock=pmtmr is deprecated. "
344 "Use clocksource=acpi_pm.\n");
345 return boot_override_clocksource("acpi_pm");
347 printk("Warning! clock= boot option is deprecated. "
348 "Use clocksource=xyz\n");
349 return boot_override_clocksource(str);
352 __setup("clock=", boot_override_clock);