dummy_timer.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * linux/drivers/clocksource/dummy_timer.c
  3. *
  4. * Copyright (C) 2013 ARM Ltd.
  5. * All Rights Reserved
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/clockchips.h>
  12. #include <linux/cpu.h>
  13. #include <linux/init.h>
  14. #include <linux/percpu.h>
  15. #include <linux/cpumask.h>
  16. static DEFINE_PER_CPU(struct clock_event_device, dummy_timer_evt);
  17. static void dummy_timer_setup(void)
  18. {
  19. int cpu = smp_processor_id();
  20. struct clock_event_device *evt = raw_cpu_ptr(&dummy_timer_evt);
  21. evt->name = "dummy_timer";
  22. evt->features = CLOCK_EVT_FEAT_PERIODIC |
  23. CLOCK_EVT_FEAT_ONESHOT |
  24. CLOCK_EVT_FEAT_DUMMY;
  25. evt->rating = 100;
  26. evt->cpumask = cpumask_of(cpu);
  27. clockevents_register_device(evt);
  28. }
  29. static int dummy_timer_cpu_notify(struct notifier_block *self,
  30. unsigned long action, void *hcpu)
  31. {
  32. if ((action & ~CPU_TASKS_FROZEN) == CPU_STARTING)
  33. dummy_timer_setup();
  34. return NOTIFY_OK;
  35. }
  36. static struct notifier_block dummy_timer_cpu_nb = {
  37. .notifier_call = dummy_timer_cpu_notify,
  38. };
  39. static int __init dummy_timer_register(void)
  40. {
  41. int err = 0;
  42. cpu_notifier_register_begin();
  43. err = __register_cpu_notifier(&dummy_timer_cpu_nb);
  44. if (err)
  45. goto out;
  46. /* We won't get a call on the boot CPU, so register immediately */
  47. if (num_possible_cpus() > 1)
  48. dummy_timer_setup();
  49. out:
  50. cpu_notifier_register_done();
  51. return err;
  52. }
  53. early_initcall(dummy_timer_register);