blob: 84fbb7ae4db2ff502e8d10546c2169d8cd6d57e7 [file] [log] [blame]
Steven J. Hill778eeb12012-12-07 03:51:04 +00001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
7 */
Andrew Brestickera331ce62014-10-20 12:03:59 -07008#include <linux/clockchips.h>
Andrew Brestickere4752db2014-10-20 12:04:04 -07009#include <linux/cpu.h>
Steven J. Hill778eeb12012-12-07 03:51:04 +000010#include <linux/init.h>
Andrew Brestickera331ce62014-10-20 12:03:59 -070011#include <linux/interrupt.h>
Andrew Bresticker4060bbe2014-10-20 12:03:53 -070012#include <linux/irqchip/mips-gic.h>
Andrew Brestickere4752db2014-10-20 12:04:04 -070013#include <linux/notifier.h>
Andrew Brestickera331ce62014-10-20 12:03:59 -070014#include <linux/percpu.h>
15#include <linux/smp.h>
Steven J. Hilldfa762e2013-04-10 16:28:36 -050016#include <linux/time.h>
Steven J. Hill778eeb12012-12-07 03:51:04 +000017
Andrew Bresticker5fee56e2014-10-20 12:04:00 -070018static DEFINE_PER_CPU(struct clock_event_device, gic_clockevent_device);
Andrew Brestickere4752db2014-10-20 12:04:04 -070019static int gic_timer_irq;
Andrew Brestickerb0854512014-10-20 12:04:01 -070020static unsigned int gic_frequency;
Andrew Brestickera331ce62014-10-20 12:03:59 -070021
22static int gic_next_event(unsigned long delta, struct clock_event_device *evt)
23{
24 u64 cnt;
25 int res;
26
27 cnt = gic_read_count();
28 cnt += (u64)delta;
29 gic_write_cpu_compare(cnt, cpumask_first(evt->cpumask));
30 res = ((int)(gic_read_count() - cnt) >= 0) ? -ETIME : 0;
31 return res;
32}
33
Andrew Bresticker5fee56e2014-10-20 12:04:00 -070034static void gic_set_clock_mode(enum clock_event_mode mode,
Andrew Brestickera331ce62014-10-20 12:03:59 -070035 struct clock_event_device *evt)
36{
37 /* Nothing to do ... */
38}
39
Andrew Bresticker5fee56e2014-10-20 12:04:00 -070040static irqreturn_t gic_compare_interrupt(int irq, void *dev_id)
Andrew Brestickera331ce62014-10-20 12:03:59 -070041{
Andrew Brestickerf7ea3062014-10-20 12:04:03 -070042 struct clock_event_device *cd = dev_id;
Andrew Brestickera331ce62014-10-20 12:03:59 -070043
44 gic_write_compare(gic_read_compare());
Andrew Brestickera331ce62014-10-20 12:03:59 -070045 cd->event_handler(cd);
46 return IRQ_HANDLED;
47}
48
49struct irqaction gic_compare_irqaction = {
50 .handler = gic_compare_interrupt,
Andrew Brestickerf7ea3062014-10-20 12:04:03 -070051 .percpu_dev_id = &gic_clockevent_device,
Andrew Brestickera331ce62014-10-20 12:03:59 -070052 .flags = IRQF_PERCPU | IRQF_TIMER,
53 .name = "timer",
54};
55
Andrew Brestickere4752db2014-10-20 12:04:04 -070056static void gic_clockevent_cpu_init(struct clock_event_device *cd)
Andrew Brestickera331ce62014-10-20 12:03:59 -070057{
58 unsigned int cpu = smp_processor_id();
Andrew Brestickera331ce62014-10-20 12:03:59 -070059
60 cd->name = "MIPS GIC";
61 cd->features = CLOCK_EVT_FEAT_ONESHOT |
62 CLOCK_EVT_FEAT_C3STOP;
63
Andrew Brestickera331ce62014-10-20 12:03:59 -070064 cd->rating = 300;
Andrew Brestickere4752db2014-10-20 12:04:04 -070065 cd->irq = gic_timer_irq;
Andrew Brestickera331ce62014-10-20 12:03:59 -070066 cd->cpumask = cpumask_of(cpu);
67 cd->set_next_event = gic_next_event;
68 cd->set_mode = gic_set_clock_mode;
Andrew Brestickera331ce62014-10-20 12:03:59 -070069
Andrew Brestickerb695d8e2014-10-20 12:04:05 -070070 clockevents_config_and_register(cd, gic_frequency, 0x300, 0x7fffffff);
Andrew Brestickera331ce62014-10-20 12:03:59 -070071
Andrew Brestickere4752db2014-10-20 12:04:04 -070072 enable_percpu_irq(gic_timer_irq, IRQ_TYPE_NONE);
73}
74
75static void gic_clockevent_cpu_exit(struct clock_event_device *cd)
76{
77 disable_percpu_irq(gic_timer_irq);
78}
79
80static int gic_cpu_notifier(struct notifier_block *nb, unsigned long action,
81 void *data)
82{
83 switch (action & ~CPU_TASKS_FROZEN) {
84 case CPU_STARTING:
85 gic_clockevent_cpu_init(this_cpu_ptr(&gic_clockevent_device));
86 break;
87 case CPU_DYING:
88 gic_clockevent_cpu_exit(this_cpu_ptr(&gic_clockevent_device));
89 break;
Andrew Brestickera331ce62014-10-20 12:03:59 -070090 }
91
Andrew Brestickere4752db2014-10-20 12:04:04 -070092 return NOTIFY_OK;
93}
94
95static struct notifier_block gic_cpu_nb = {
96 .notifier_call = gic_cpu_notifier,
97};
98
99static int gic_clockevent_init(void)
100{
101 if (!cpu_has_counter || !gic_frequency)
102 return -ENXIO;
103
104 gic_timer_irq = MIPS_GIC_IRQ_BASE +
105 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_COMPARE);
106 setup_percpu_irq(gic_timer_irq, &gic_compare_irqaction);
107
108 register_cpu_notifier(&gic_cpu_nb);
109
110 gic_clockevent_cpu_init(this_cpu_ptr(&gic_clockevent_device));
Andrew Brestickera331ce62014-10-20 12:03:59 -0700111
112 return 0;
113}
114
Steven J. Hill778eeb12012-12-07 03:51:04 +0000115static cycle_t gic_hpt_read(struct clocksource *cs)
116{
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500117 return gic_read_count();
Steven J. Hill778eeb12012-12-07 03:51:04 +0000118}
119
120static struct clocksource gic_clocksource = {
121 .name = "GIC",
122 .read = gic_hpt_read,
123 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
124};
125
126void __init gic_clocksource_init(unsigned int frequency)
127{
Andrew Brestickerb0854512014-10-20 12:04:01 -0700128 gic_frequency = frequency;
129
Steven J. Hill778eeb12012-12-07 03:51:04 +0000130 /* Set clocksource mask. */
Andrew Bresticker387904f2014-10-20 12:03:49 -0700131 gic_clocksource.mask = CLOCKSOURCE_MASK(gic_get_count_width());
Steven J. Hill778eeb12012-12-07 03:51:04 +0000132
133 /* Calculate a somewhat reasonable rating value. */
134 gic_clocksource.rating = 200 + frequency / 10000000;
135
136 clocksource_register_hz(&gic_clocksource, frequency);
Andrew Brestickere4752db2014-10-20 12:04:04 -0700137
138 gic_clockevent_init();
Steven J. Hill778eeb12012-12-07 03:51:04 +0000139}