dummy_timer.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 int dummy_timer_starting_cpu(unsigned int cpu)
  18. {
  19. struct clock_event_device *evt = per_cpu_ptr(&dummy_timer_evt, cpu);
  20. evt->name = "dummy_timer";
  21. evt->features = CLOCK_EVT_FEAT_PERIODIC |
  22. CLOCK_EVT_FEAT_ONESHOT |
  23. CLOCK_EVT_FEAT_DUMMY;
  24. evt->rating = 100;
  25. evt->cpumask = cpumask_of(cpu);
  26. clockevents_register_device(evt);
  27. return 0;
  28. }
  29. static int __init dummy_timer_register(void)
  30. {
  31. return cpuhp_setup_state(CPUHP_AP_DUMMY_TIMER_STARTING,
  32. "AP_DUMMY_TIMER_STARTING",
  33. dummy_timer_starting_cpu, NULL);
  34. }
  35. early_initcall(dummy_timer_register);