Merge tag 'nfsd-4.6' of git://linux-nfs.org/~bfields/linux
[deliverable/linux.git] / arch / arm / mach-footbridge / dc21285-timer.c
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/mach-footbridge/dc21285-timer.c
3 *
4 * Copyright (C) 1998 Russell King.
5 * Copyright (C) 1998 Phil Blundell
6 */
4e8d7637
RK
7#include <linux/clockchips.h>
8#include <linux/clocksource.h>
1da177e4
LT
9#include <linux/init.h>
10#include <linux/interrupt.h>
55e86989 11#include <linux/irq.h>
6cefe92f 12#include <linux/sched_clock.h>
1da177e4
LT
13
14#include <asm/irq.h>
15
16#include <asm/hardware/dec21285.h>
17#include <asm/mach/time.h>
9f97da78 18#include <asm/system_info.h>
1da177e4
LT
19
20#include "common.h"
21
4e8d7637
RK
22static cycle_t cksrc_dc21285_read(struct clocksource *cs)
23{
24 return cs->mask - *CSR_TIMER2_VALUE;
25}
1da177e4 26
4e8d7637 27static int cksrc_dc21285_enable(struct clocksource *cs)
1da177e4 28{
4e8d7637
RK
29 *CSR_TIMER2_LOAD = cs->mask;
30 *CSR_TIMER2_CLR = 0;
31 *CSR_TIMER2_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_DIV16;
32 return 0;
33}
1da177e4 34
f2e0bf21 35static void cksrc_dc21285_disable(struct clocksource *cs)
4e8d7637
RK
36{
37 *CSR_TIMER2_CNTL = 0;
1da177e4
LT
38}
39
4e8d7637
RK
40static struct clocksource cksrc_dc21285 = {
41 .name = "dc21285_timer2",
42 .rating = 200,
43 .read = cksrc_dc21285_read,
44 .enable = cksrc_dc21285_enable,
45 .disable = cksrc_dc21285_disable,
46 .mask = CLOCKSOURCE_MASK(24),
47 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
48};
49
4808972a
RK
50static int ckevt_dc21285_set_next_event(unsigned long delta,
51 struct clock_event_device *c)
52{
53 *CSR_TIMER1_CLR = 0;
54 *CSR_TIMER1_LOAD = delta;
55 *CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_DIV16;
56
57 return 0;
58}
59
947d9cf5 60static int ckevt_dc21285_shutdown(struct clock_event_device *c)
1da177e4 61{
947d9cf5
VK
62 *CSR_TIMER1_CNTL = 0;
63 return 0;
64}
65
66static int ckevt_dc21285_set_periodic(struct clock_event_device *c)
67{
68 *CSR_TIMER1_CLR = 0;
69 *CSR_TIMER1_LOAD = (mem_fclk_21285 + 8 * HZ) / (16 * HZ);
70 *CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_AUTORELOAD |
71 TIMER_CNTL_DIV16;
72 return 0;
4e8d7637
RK
73}
74
75static struct clock_event_device ckevt_dc21285 = {
947d9cf5
VK
76 .name = "dc21285_timer1",
77 .features = CLOCK_EVT_FEAT_PERIODIC |
78 CLOCK_EVT_FEAT_ONESHOT,
79 .rating = 200,
80 .irq = IRQ_TIMER1,
81 .set_next_event = ckevt_dc21285_set_next_event,
82 .set_state_shutdown = ckevt_dc21285_shutdown,
83 .set_state_periodic = ckevt_dc21285_set_periodic,
84 .set_state_oneshot = ckevt_dc21285_shutdown,
85 .tick_resume = ckevt_dc21285_set_periodic,
4e8d7637
RK
86};
87
88static irqreturn_t timer1_interrupt(int irq, void *dev_id)
89{
90 struct clock_event_device *ce = dev_id;
91
1da177e4
LT
92 *CSR_TIMER1_CLR = 0;
93
4808972a 94 /* Stop the timer if in one-shot mode */
947d9cf5 95 if (clockevent_state_oneshot(ce))
4808972a
RK
96 *CSR_TIMER1_CNTL = 0;
97
4e8d7637 98 ce->event_handler(ce);
1da177e4 99
1da177e4
LT
100 return IRQ_HANDLED;
101}
102
103static struct irqaction footbridge_timer_irq = {
4e8d7637 104 .name = "dc21285_timer1",
1da177e4 105 .handler = timer1_interrupt,
26632bec 106 .flags = IRQF_TIMER | IRQF_IRQPOLL,
4e8d7637 107 .dev_id = &ckevt_dc21285,
1da177e4
LT
108};
109
110/*
111 * Set up timer interrupt.
112 */
6bb27d73 113void __init footbridge_timer_init(void)
1da177e4 114{
4e8d7637 115 struct clock_event_device *ce = &ckevt_dc21285;
4ff859fe 116 unsigned rate = DIV_ROUND_CLOSEST(mem_fclk_21285, 16);
4e8d7637 117
4ff859fe 118 clocksource_register_hz(&cksrc_dc21285, rate);
4e8d7637
RK
119
120 setup_irq(ce->irq, &footbridge_timer_irq);
1da177e4 121
7d7975a0 122 ce->cpumask = cpumask_of(smp_processor_id());
4ff859fe 123 clockevents_config_and_register(ce, rate, 0x4, 0xffffff);
1da177e4 124}
6cefe92f 125
889f172d 126static u64 notrace footbridge_read_sched_clock(void)
6cefe92f
RK
127{
128 return ~*CSR_TIMER3_VALUE;
129}
130
131void __init footbridge_sched_clock(void)
132{
133 unsigned rate = DIV_ROUND_CLOSEST(mem_fclk_21285, 16);
134
135 *CSR_TIMER3_LOAD = 0;
136 *CSR_TIMER3_CLR = 0;
137 *CSR_TIMER3_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_DIV16;
138
889f172d 139 sched_clock_register(footbridge_read_sched_clock, 24, rate);
1da177e4 140}
This page took 0.744443 seconds and 5 git commands to generate.