timer.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * arch/sh/kernel/timers/timer.c - Common timer code
  3. *
  4. * Copyright (C) 2005 Paul Mundt
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/timer.h>
  13. #include <linux/string.h>
  14. #include <asm/timer.h>
  15. static struct sys_timer *sys_timers[] __initdata = {
  16. #ifdef CONFIG_SH_TMU
  17. &tmu_timer,
  18. #endif
  19. NULL,
  20. };
  21. static char timer_override[10] __initdata;
  22. static int __init timer_setup(char *str)
  23. {
  24. if (str)
  25. strlcpy(timer_override, str, sizeof(timer_override));
  26. return 1;
  27. }
  28. __setup("timer=", timer_setup);
  29. struct sys_timer *get_sys_timer(void)
  30. {
  31. int i;
  32. for (i = 0; i < ARRAY_SIZE(sys_timers); i++) {
  33. struct sys_timer *t = sys_timers[i];
  34. if (unlikely(!t))
  35. break;
  36. if (unlikely(timer_override[0]))
  37. if ((strcmp(timer_override, t->name) != 0))
  38. continue;
  39. if (likely(t->ops->init() == 0))
  40. return t;
  41. }
  42. return NULL;
  43. }