blob: 776b6c86dcd54149dad1e6e799f922d2ce5c4c5f [file] [log] [blame]
Mark Rutland06470652013-06-03 13:33:53 -07001/*
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
17static DEFINE_PER_CPU(struct clock_event_device, dummy_timer_evt);
18
Paul Gortmaker8c37bb32013-06-19 11:32:08 -040019static void dummy_timer_setup(void)
Mark Rutland06470652013-06-03 13:33:53 -070020{
21 int cpu = smp_processor_id();
Christoph Lameter22127e92014-08-17 12:30:25 -050022 struct clock_event_device *evt = raw_cpu_ptr(&dummy_timer_evt);
Mark Rutland06470652013-06-03 13:33:53 -070023
24 evt->name = "dummy_timer";
25 evt->features = CLOCK_EVT_FEAT_PERIODIC |
26 CLOCK_EVT_FEAT_ONESHOT |
27 CLOCK_EVT_FEAT_DUMMY;
28 evt->rating = 100;
Mark Rutland06470652013-06-03 13:33:53 -070029 evt->cpumask = cpumask_of(cpu);
30
31 clockevents_register_device(evt);
32}
33
Paul Gortmaker8c37bb32013-06-19 11:32:08 -040034static int dummy_timer_cpu_notify(struct notifier_block *self,
Mark Rutland06470652013-06-03 13:33:53 -070035 unsigned long action, void *hcpu)
36{
37 if ((action & ~CPU_TASKS_FROZEN) == CPU_STARTING)
38 dummy_timer_setup();
39
40 return NOTIFY_OK;
41}
42
Paul Gortmaker8c37bb32013-06-19 11:32:08 -040043static struct notifier_block dummy_timer_cpu_nb = {
Mark Rutland06470652013-06-03 13:33:53 -070044 .notifier_call = dummy_timer_cpu_notify,
45};
46
47static int __init dummy_timer_register(void)
48{
Srivatsa S. Bhat8daa1272014-03-11 02:10:23 +053049 int err = 0;
50
51 cpu_notifier_register_begin();
52 err = __register_cpu_notifier(&dummy_timer_cpu_nb);
Mark Rutland06470652013-06-03 13:33:53 -070053 if (err)
Srivatsa S. Bhat8daa1272014-03-11 02:10:23 +053054 goto out;
Mark Rutland06470652013-06-03 13:33:53 -070055
56 /* We won't get a call on the boot CPU, so register immediately */
57 if (num_possible_cpus() > 1)
58 dummy_timer_setup();
59
Srivatsa S. Bhat8daa1272014-03-11 02:10:23 +053060out:
61 cpu_notifier_register_done();
62 return err;
Mark Rutland06470652013-06-03 13:33:53 -070063}
64early_initcall(dummy_timer_register);