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
6 * Copyright (C) 2013 Imagination Technologies Ltd.
8 #include <linux/clockchips.h>
9 #include <linux/interrupt.h>
10 #include <linux/percpu.h>
11 #include <linux/smp.h>
12 #include <linux/irq.h>
16 #include <asm/mips-boards/maltaint.h>
18 DEFINE_PER_CPU(struct clock_event_device
, gic_clockevent_device
);
19 int gic_timer_irq_installed
;
22 static int gic_next_event(unsigned long delta
, struct clock_event_device
*evt
)
27 cnt
= gic_read_count();
29 gic_write_compare(cnt
);
30 res
= ((int)(gic_read_count() - cnt
) >= 0) ? -ETIME
: 0;
34 void gic_set_clock_mode(enum clock_event_mode mode
,
35 struct clock_event_device
*evt
)
37 /* Nothing to do ... */
40 irqreturn_t
gic_compare_interrupt(int irq
, void *dev_id
)
42 struct clock_event_device
*cd
;
43 int cpu
= smp_processor_id();
45 gic_write_compare(gic_read_compare());
46 cd
= &per_cpu(gic_clockevent_device
, cpu
);
47 cd
->event_handler(cd
);
51 struct irqaction gic_compare_irqaction
= {
52 .handler
= gic_compare_interrupt
,
53 .flags
= IRQF_PERCPU
| IRQF_TIMER
,
58 void gic_event_handler(struct clock_event_device
*dev
)
62 int __cpuinit
gic_clockevent_init(void)
64 unsigned int cpu
= smp_processor_id();
65 struct clock_event_device
*cd
;
68 if (!cpu_has_counter
|| !gic_frequency
)
71 irq
= MIPS_GIC_IRQ_BASE
;
73 cd
= &per_cpu(gic_clockevent_device
, cpu
);
75 cd
->name
= "MIPS GIC";
76 cd
->features
= CLOCK_EVT_FEAT_ONESHOT
;
78 clockevent_set_clock(cd
, gic_frequency
);
80 /* Calculate the min / max delta */
81 cd
->max_delta_ns
= clockevent_delta2ns(0x7fffffff, cd
);
82 cd
->min_delta_ns
= clockevent_delta2ns(0x300, cd
);
86 cd
->cpumask
= cpumask_of(cpu
);
87 cd
->set_next_event
= gic_next_event
;
88 cd
->set_mode
= gic_set_clock_mode
;
89 cd
->event_handler
= gic_event_handler
;
91 clockevents_register_device(cd
);
93 GICWRITE(GIC_REG(VPE_LOCAL
, GIC_VPE_COMPARE_MAP
), 0x80000002);
94 GICWRITE(GIC_REG(VPE_LOCAL
, GIC_VPE_SMASK
), GIC_VPE_SMASK_CMP_MSK
);
96 if (gic_timer_irq_installed
)
99 gic_timer_irq_installed
= 1;
101 setup_irq(irq
, &gic_compare_irqaction
);
102 irq_set_handler(irq
, handle_percpu_irq
);