2 * Integrator/AP timer driver
3 * Copyright (C) 2000-2003 Deep Blue Solutions Ltd
4 * Copyright (c) 2014, Linaro Limited
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/clk.h>
22 #include <linux/clocksource.h>
23 #include <linux/of_irq.h>
24 #include <linux/of_address.h>
25 #include <linux/of_platform.h>
26 #include <linux/clockchips.h>
27 #include <linux/interrupt.h>
28 #include <linux/sched_clock.h>
32 static void __iomem
* sched_clk_base
;
34 static u64 notrace
integrator_read_sched_clock(void)
36 return -readl(sched_clk_base
+ TIMER_VALUE
);
39 static void integrator_clocksource_init(unsigned long inrate
,
42 u32 ctrl
= TIMER_CTRL_ENABLE
| TIMER_CTRL_PERIODIC
;
43 unsigned long rate
= inrate
;
45 if (rate
>= 1500000) {
47 ctrl
|= TIMER_CTRL_DIV16
;
50 writel(0xffff, base
+ TIMER_LOAD
);
51 writel(ctrl
, base
+ TIMER_CTRL
);
53 clocksource_mmio_init(base
+ TIMER_VALUE
, "timer2",
54 rate
, 200, 16, clocksource_mmio_readl_down
);
56 sched_clk_base
= base
;
57 sched_clock_register(integrator_read_sched_clock
, 16, rate
);
60 static unsigned long timer_reload
;
61 static void __iomem
* clkevt_base
;
64 * IRQ handler for the timer
66 static irqreturn_t
integrator_timer_interrupt(int irq
, void *dev_id
)
68 struct clock_event_device
*evt
= dev_id
;
70 /* clear the interrupt */
71 writel(1, clkevt_base
+ TIMER_INTCLR
);
73 evt
->event_handler(evt
);
78 static int clkevt_shutdown(struct clock_event_device
*evt
)
80 u32 ctrl
= readl(clkevt_base
+ TIMER_CTRL
) & ~TIMER_CTRL_ENABLE
;
83 writel(ctrl
, clkevt_base
+ TIMER_CTRL
);
87 static int clkevt_set_oneshot(struct clock_event_device
*evt
)
89 u32 ctrl
= readl(clkevt_base
+ TIMER_CTRL
) &
90 ~(TIMER_CTRL_ENABLE
| TIMER_CTRL_PERIODIC
);
92 /* Leave the timer disabled, .set_next_event will enable it */
93 writel(ctrl
, clkevt_base
+ TIMER_CTRL
);
97 static int clkevt_set_periodic(struct clock_event_device
*evt
)
99 u32 ctrl
= readl(clkevt_base
+ TIMER_CTRL
) & ~TIMER_CTRL_ENABLE
;
102 writel(ctrl
, clkevt_base
+ TIMER_CTRL
);
104 /* Enable the timer and start the periodic tick */
105 writel(timer_reload
, clkevt_base
+ TIMER_LOAD
);
106 ctrl
|= TIMER_CTRL_PERIODIC
| TIMER_CTRL_ENABLE
;
107 writel(ctrl
, clkevt_base
+ TIMER_CTRL
);
111 static int clkevt_set_next_event(unsigned long next
, struct clock_event_device
*evt
)
113 unsigned long ctrl
= readl(clkevt_base
+ TIMER_CTRL
);
115 writel(ctrl
& ~TIMER_CTRL_ENABLE
, clkevt_base
+ TIMER_CTRL
);
116 writel(next
, clkevt_base
+ TIMER_LOAD
);
117 writel(ctrl
| TIMER_CTRL_ENABLE
, clkevt_base
+ TIMER_CTRL
);
122 static struct clock_event_device integrator_clockevent
= {
124 .features
= CLOCK_EVT_FEAT_PERIODIC
|
125 CLOCK_EVT_FEAT_ONESHOT
,
126 .set_state_shutdown
= clkevt_shutdown
,
127 .set_state_periodic
= clkevt_set_periodic
,
128 .set_state_oneshot
= clkevt_set_oneshot
,
129 .tick_resume
= clkevt_shutdown
,
130 .set_next_event
= clkevt_set_next_event
,
134 static struct irqaction integrator_timer_irq
= {
136 .flags
= IRQF_TIMER
| IRQF_IRQPOLL
,
137 .handler
= integrator_timer_interrupt
,
138 .dev_id
= &integrator_clockevent
,
141 static void integrator_clockevent_init(unsigned long inrate
,
142 void __iomem
*base
, int irq
)
144 unsigned long rate
= inrate
;
145 unsigned int ctrl
= 0;
148 /* Calculate and program a divisor */
149 if (rate
> 0x100000 * HZ
) {
151 ctrl
|= TIMER_CTRL_DIV256
;
152 } else if (rate
> 0x10000 * HZ
) {
154 ctrl
|= TIMER_CTRL_DIV16
;
156 timer_reload
= rate
/ HZ
;
157 writel(ctrl
, clkevt_base
+ TIMER_CTRL
);
159 setup_irq(irq
, &integrator_timer_irq
);
160 clockevents_config_and_register(&integrator_clockevent
,
166 static void __init
integrator_ap_timer_init_of(struct device_node
*node
)
174 struct device_node
*pri_node
;
175 struct device_node
*sec_node
;
177 base
= of_io_request_and_map(node
, 0, "integrator-timer");
181 clk
= of_clk_get(node
, 0);
183 pr_err("No clock for %s\n", node
->name
);
186 clk_prepare_enable(clk
);
187 rate
= clk_get_rate(clk
);
188 writel(0, base
+ TIMER_CTRL
);
190 err
= of_property_read_string(of_aliases
,
191 "arm,timer-primary", &path
);
194 pri_node
= of_find_node_by_path(path
);
195 err
= of_property_read_string(of_aliases
,
196 "arm,timer-secondary", &path
);
199 sec_node
= of_find_node_by_path(path
);
201 if (node
== pri_node
) {
202 /* The primary timer lacks IRQ, use as clocksource */
203 integrator_clocksource_init(rate
, base
);
207 if (node
== sec_node
) {
208 /* The secondary timer will drive the clock event */
209 irq
= irq_of_parse_and_map(node
, 0);
210 integrator_clockevent_init(rate
, base
, irq
);
214 pr_info("Timer @%p unused\n", base
);
215 clk_disable_unprepare(clk
);
218 CLOCKSOURCE_OF_DECLARE(integrator_ap_timer
, "arm,integrator-timer",
219 integrator_ap_timer_init_of
);