blob: a92350b55d32604e3783368d8c4ab8a794ce55c8 [file] [log] [blame]
John Linnb85a3ef2011-06-20 11:47:27 -06001/*
Michal Simek9e09dc52013-03-27 12:05:28 +01002 * This file contains driver for the Cadence Triple Timer Counter Rev 06
John Linnb85a3ef2011-06-20 11:47:27 -06003 *
Michal Simeke9329002013-03-20 10:15:28 +01004 * Copyright (C) 2011-2013 Xilinx
John Linnb85a3ef2011-06-20 11:47:27 -06005 *
6 * based on arch/mips/kernel/time.c timer driver
7 *
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
Michal Simeke9329002013-03-20 10:15:28 +010018#include <linux/clk.h>
John Linnb85a3ef2011-06-20 11:47:27 -060019#include <linux/interrupt.h>
John Linnb85a3ef2011-06-20 11:47:27 -060020#include <linux/clockchips.h>
Josh Cartwright91dc9852012-10-31 13:56:14 -060021#include <linux/of_address.h>
22#include <linux/of_irq.h>
23#include <linux/slab.h>
Soren Brinkmann3d77b302013-07-08 09:51:38 -070024#include <linux/sched_clock.h>
John Linnb85a3ef2011-06-20 11:47:27 -060025
John Linnb85a3ef2011-06-20 11:47:27 -060026/*
Michal Simeke9329002013-03-20 10:15:28 +010027 * This driver configures the 2 16-bit count-up timers as follows:
28 *
29 * T1: Timer 1, clocksource for generic timekeeping
30 * T2: Timer 2, clockevent source for hrtimers
31 * T3: Timer 3, <unused>
32 *
33 * The input frequency to the timer module for emulation is 2.5MHz which is
34 * common to all the timer channels (T1, T2, and T3). With a pre-scaler of 32,
35 * the timers are clocked at 78.125KHz (12.8 us resolution).
36
37 * The input frequency to the timer module in silicon is configurable and
38 * obtained from device tree. The pre-scaler of 32 is used.
39 */
40
41/*
John Linnb85a3ef2011-06-20 11:47:27 -060042 * Timer Register Offset Definitions of Timer 1, Increment base address by 4
43 * and use same offsets for Timer 2
44 */
Michal Simek9e09dc52013-03-27 12:05:28 +010045#define TTC_CLK_CNTRL_OFFSET 0x00 /* Clock Control Reg, RW */
46#define TTC_CNT_CNTRL_OFFSET 0x0C /* Counter Control Reg, RW */
47#define TTC_COUNT_VAL_OFFSET 0x18 /* Counter Value Reg, RO */
48#define TTC_INTR_VAL_OFFSET 0x24 /* Interval Count Reg, RW */
49#define TTC_ISR_OFFSET 0x54 /* Interrupt Status Reg, RO */
50#define TTC_IER_OFFSET 0x60 /* Interrupt Enable Reg, RW */
John Linnb85a3ef2011-06-20 11:47:27 -060051
Michal Simek9e09dc52013-03-27 12:05:28 +010052#define TTC_CNT_CNTRL_DISABLE_MASK 0x1
John Linnb85a3ef2011-06-20 11:47:27 -060053
Soren Brinkmann30e1e282013-05-13 10:46:38 -070054#define TTC_CLK_CNTRL_CSRC_MASK (1 << 5) /* clock source */
55
Soren Brinkmann03377e52012-12-19 10:18:41 -080056/*
57 * Setup the timers to use pre-scaling, using a fixed value for now that will
Josh Cartwright91dc9852012-10-31 13:56:14 -060058 * work across most input frequency, but it may need to be more dynamic
59 */
60#define PRESCALE_EXPONENT 11 /* 2 ^ PRESCALE_EXPONENT = PRESCALE */
61#define PRESCALE 2048 /* The exponent must match this */
62#define CLK_CNTRL_PRESCALE ((PRESCALE_EXPONENT - 1) << 1)
63#define CLK_CNTRL_PRESCALE_EN 1
Michal Simeke9329002013-03-20 10:15:28 +010064#define CNT_CNTRL_RESET (1 << 4)
John Linnb85a3ef2011-06-20 11:47:27 -060065
66/**
Michal Simek9e09dc52013-03-27 12:05:28 +010067 * struct ttc_timer - This definition defines local timer structure
John Linnb85a3ef2011-06-20 11:47:27 -060068 *
69 * @base_addr: Base address of timer
Soren Brinkmannc1dcc922013-11-26 17:04:50 -080070 * @freq: Timer input clock frequency
Michal Simeke9329002013-03-20 10:15:28 +010071 * @clk: Associated clock source
72 * @clk_rate_change_nb Notifier block for clock rate changes
73 */
Michal Simek9e09dc52013-03-27 12:05:28 +010074struct ttc_timer {
Michal Simeke9329002013-03-20 10:15:28 +010075 void __iomem *base_addr;
Soren Brinkmannc1dcc922013-11-26 17:04:50 -080076 unsigned long freq;
Michal Simeke9329002013-03-20 10:15:28 +010077 struct clk *clk;
78 struct notifier_block clk_rate_change_nb;
John Linnb85a3ef2011-06-20 11:47:27 -060079};
80
Michal Simek9e09dc52013-03-27 12:05:28 +010081#define to_ttc_timer(x) \
82 container_of(x, struct ttc_timer, clk_rate_change_nb)
Michal Simeke9329002013-03-20 10:15:28 +010083
Michal Simek9e09dc52013-03-27 12:05:28 +010084struct ttc_timer_clocksource {
85 struct ttc_timer ttc;
Josh Cartwright91dc9852012-10-31 13:56:14 -060086 struct clocksource cs;
87};
88
Michal Simek9e09dc52013-03-27 12:05:28 +010089#define to_ttc_timer_clksrc(x) \
90 container_of(x, struct ttc_timer_clocksource, cs)
Josh Cartwright91dc9852012-10-31 13:56:14 -060091
Michal Simek9e09dc52013-03-27 12:05:28 +010092struct ttc_timer_clockevent {
93 struct ttc_timer ttc;
Josh Cartwright91dc9852012-10-31 13:56:14 -060094 struct clock_event_device ce;
Josh Cartwright91dc9852012-10-31 13:56:14 -060095};
96
Michal Simek9e09dc52013-03-27 12:05:28 +010097#define to_ttc_timer_clkevent(x) \
98 container_of(x, struct ttc_timer_clockevent, ce)
John Linnb85a3ef2011-06-20 11:47:27 -060099
Soren Brinkmann3d77b302013-07-08 09:51:38 -0700100static void __iomem *ttc_sched_clock_val_reg;
101
John Linnb85a3ef2011-06-20 11:47:27 -0600102/**
Michal Simek9e09dc52013-03-27 12:05:28 +0100103 * ttc_set_interval - Set the timer interval value
John Linnb85a3ef2011-06-20 11:47:27 -0600104 *
105 * @timer: Pointer to the timer instance
106 * @cycles: Timer interval ticks
107 **/
Michal Simek9e09dc52013-03-27 12:05:28 +0100108static void ttc_set_interval(struct ttc_timer *timer,
John Linnb85a3ef2011-06-20 11:47:27 -0600109 unsigned long cycles)
110{
111 u32 ctrl_reg;
112
113 /* Disable the counter, set the counter value and re-enable counter */
Michal Simek9e09dc52013-03-27 12:05:28 +0100114 ctrl_reg = __raw_readl(timer->base_addr + TTC_CNT_CNTRL_OFFSET);
115 ctrl_reg |= TTC_CNT_CNTRL_DISABLE_MASK;
116 __raw_writel(ctrl_reg, timer->base_addr + TTC_CNT_CNTRL_OFFSET);
John Linnb85a3ef2011-06-20 11:47:27 -0600117
Michal Simek9e09dc52013-03-27 12:05:28 +0100118 __raw_writel(cycles, timer->base_addr + TTC_INTR_VAL_OFFSET);
John Linnb85a3ef2011-06-20 11:47:27 -0600119
Soren Brinkmann03377e52012-12-19 10:18:41 -0800120 /*
121 * Reset the counter (0x10) so that it starts from 0, one-shot
122 * mode makes this needed for timing to be right.
123 */
Josh Cartwright91dc9852012-10-31 13:56:14 -0600124 ctrl_reg |= CNT_CNTRL_RESET;
Michal Simek9e09dc52013-03-27 12:05:28 +0100125 ctrl_reg &= ~TTC_CNT_CNTRL_DISABLE_MASK;
126 __raw_writel(ctrl_reg, timer->base_addr + TTC_CNT_CNTRL_OFFSET);
John Linnb85a3ef2011-06-20 11:47:27 -0600127}
128
129/**
Michal Simek9e09dc52013-03-27 12:05:28 +0100130 * ttc_clock_event_interrupt - Clock event timer interrupt handler
John Linnb85a3ef2011-06-20 11:47:27 -0600131 *
132 * @irq: IRQ number of the Timer
Michal Simek9e09dc52013-03-27 12:05:28 +0100133 * @dev_id: void pointer to the ttc_timer instance
John Linnb85a3ef2011-06-20 11:47:27 -0600134 *
135 * returns: Always IRQ_HANDLED - success
136 **/
Michal Simek9e09dc52013-03-27 12:05:28 +0100137static irqreturn_t ttc_clock_event_interrupt(int irq, void *dev_id)
John Linnb85a3ef2011-06-20 11:47:27 -0600138{
Michal Simek9e09dc52013-03-27 12:05:28 +0100139 struct ttc_timer_clockevent *ttce = dev_id;
140 struct ttc_timer *timer = &ttce->ttc;
John Linnb85a3ef2011-06-20 11:47:27 -0600141
142 /* Acknowledge the interrupt and call event handler */
Michal Simek9e09dc52013-03-27 12:05:28 +0100143 __raw_readl(timer->base_addr + TTC_ISR_OFFSET);
John Linnb85a3ef2011-06-20 11:47:27 -0600144
Michal Simek9e09dc52013-03-27 12:05:28 +0100145 ttce->ce.event_handler(&ttce->ce);
John Linnb85a3ef2011-06-20 11:47:27 -0600146
147 return IRQ_HANDLED;
148}
149
John Linnb85a3ef2011-06-20 11:47:27 -0600150/**
Michal Simek9e09dc52013-03-27 12:05:28 +0100151 * __ttc_clocksource_read - Reads the timer counter register
John Linnb85a3ef2011-06-20 11:47:27 -0600152 *
153 * returns: Current timer counter register value
154 **/
Michal Simek9e09dc52013-03-27 12:05:28 +0100155static cycle_t __ttc_clocksource_read(struct clocksource *cs)
John Linnb85a3ef2011-06-20 11:47:27 -0600156{
Michal Simek9e09dc52013-03-27 12:05:28 +0100157 struct ttc_timer *timer = &to_ttc_timer_clksrc(cs)->ttc;
John Linnb85a3ef2011-06-20 11:47:27 -0600158
159 return (cycle_t)__raw_readl(timer->base_addr +
Michal Simek9e09dc52013-03-27 12:05:28 +0100160 TTC_COUNT_VAL_OFFSET);
John Linnb85a3ef2011-06-20 11:47:27 -0600161}
162
Soren Brinkmann3d77b302013-07-08 09:51:38 -0700163static u32 notrace ttc_sched_clock_read(void)
164{
165 return __raw_readl(ttc_sched_clock_val_reg);
166}
167
John Linnb85a3ef2011-06-20 11:47:27 -0600168/**
Michal Simek9e09dc52013-03-27 12:05:28 +0100169 * ttc_set_next_event - Sets the time interval for next event
John Linnb85a3ef2011-06-20 11:47:27 -0600170 *
171 * @cycles: Timer interval ticks
172 * @evt: Address of clock event instance
173 *
174 * returns: Always 0 - success
175 **/
Michal Simek9e09dc52013-03-27 12:05:28 +0100176static int ttc_set_next_event(unsigned long cycles,
John Linnb85a3ef2011-06-20 11:47:27 -0600177 struct clock_event_device *evt)
178{
Michal Simek9e09dc52013-03-27 12:05:28 +0100179 struct ttc_timer_clockevent *ttce = to_ttc_timer_clkevent(evt);
180 struct ttc_timer *timer = &ttce->ttc;
John Linnb85a3ef2011-06-20 11:47:27 -0600181
Michal Simek9e09dc52013-03-27 12:05:28 +0100182 ttc_set_interval(timer, cycles);
John Linnb85a3ef2011-06-20 11:47:27 -0600183 return 0;
184}
185
186/**
Michal Simek9e09dc52013-03-27 12:05:28 +0100187 * ttc_set_mode - Sets the mode of timer
John Linnb85a3ef2011-06-20 11:47:27 -0600188 *
189 * @mode: Mode to be set
190 * @evt: Address of clock event instance
191 **/
Michal Simek9e09dc52013-03-27 12:05:28 +0100192static void ttc_set_mode(enum clock_event_mode mode,
John Linnb85a3ef2011-06-20 11:47:27 -0600193 struct clock_event_device *evt)
194{
Michal Simek9e09dc52013-03-27 12:05:28 +0100195 struct ttc_timer_clockevent *ttce = to_ttc_timer_clkevent(evt);
196 struct ttc_timer *timer = &ttce->ttc;
John Linnb85a3ef2011-06-20 11:47:27 -0600197 u32 ctrl_reg;
198
199 switch (mode) {
200 case CLOCK_EVT_MODE_PERIODIC:
Soren Brinkmannc1dcc922013-11-26 17:04:50 -0800201 ttc_set_interval(timer, DIV_ROUND_CLOSEST(ttce->ttc.freq,
202 PRESCALE * HZ));
John Linnb85a3ef2011-06-20 11:47:27 -0600203 break;
204 case CLOCK_EVT_MODE_ONESHOT:
205 case CLOCK_EVT_MODE_UNUSED:
206 case CLOCK_EVT_MODE_SHUTDOWN:
207 ctrl_reg = __raw_readl(timer->base_addr +
Michal Simek9e09dc52013-03-27 12:05:28 +0100208 TTC_CNT_CNTRL_OFFSET);
209 ctrl_reg |= TTC_CNT_CNTRL_DISABLE_MASK;
John Linnb85a3ef2011-06-20 11:47:27 -0600210 __raw_writel(ctrl_reg,
Michal Simek9e09dc52013-03-27 12:05:28 +0100211 timer->base_addr + TTC_CNT_CNTRL_OFFSET);
John Linnb85a3ef2011-06-20 11:47:27 -0600212 break;
213 case CLOCK_EVT_MODE_RESUME:
214 ctrl_reg = __raw_readl(timer->base_addr +
Michal Simek9e09dc52013-03-27 12:05:28 +0100215 TTC_CNT_CNTRL_OFFSET);
216 ctrl_reg &= ~TTC_CNT_CNTRL_DISABLE_MASK;
John Linnb85a3ef2011-06-20 11:47:27 -0600217 __raw_writel(ctrl_reg,
Michal Simek9e09dc52013-03-27 12:05:28 +0100218 timer->base_addr + TTC_CNT_CNTRL_OFFSET);
John Linnb85a3ef2011-06-20 11:47:27 -0600219 break;
220 }
221}
222
Michal Simek9e09dc52013-03-27 12:05:28 +0100223static int ttc_rate_change_clocksource_cb(struct notifier_block *nb,
Michal Simeke9329002013-03-20 10:15:28 +0100224 unsigned long event, void *data)
225{
226 struct clk_notifier_data *ndata = data;
Michal Simek9e09dc52013-03-27 12:05:28 +0100227 struct ttc_timer *ttc = to_ttc_timer(nb);
228 struct ttc_timer_clocksource *ttccs = container_of(ttc,
229 struct ttc_timer_clocksource, ttc);
Michal Simeke9329002013-03-20 10:15:28 +0100230
231 switch (event) {
232 case POST_RATE_CHANGE:
233 /*
234 * Do whatever is necessary to maintain a proper time base
235 *
236 * I cannot find a way to adjust the currently used clocksource
237 * to the new frequency. __clocksource_updatefreq_hz() sounds
238 * good, but does not work. Not sure what's that missing.
239 *
240 * This approach works, but triggers two clocksource switches.
241 * The first after unregister to clocksource jiffies. And
242 * another one after the register to the newly registered timer.
243 *
244 * Alternatively we could 'waste' another HW timer to ping pong
245 * between clock sources. That would also use one register and
246 * one unregister call, but only trigger one clocksource switch
247 * for the cost of another HW timer used by the OS.
248 */
Michal Simek9e09dc52013-03-27 12:05:28 +0100249 clocksource_unregister(&ttccs->cs);
250 clocksource_register_hz(&ttccs->cs,
Michal Simeke9329002013-03-20 10:15:28 +0100251 ndata->new_rate / PRESCALE);
252 /* fall through */
253 case PRE_RATE_CHANGE:
254 case ABORT_RATE_CHANGE:
255 default:
256 return NOTIFY_DONE;
257 }
258}
259
Michal Simek9e09dc52013-03-27 12:05:28 +0100260static void __init ttc_setup_clocksource(struct clk *clk, void __iomem *base)
Josh Cartwright91dc9852012-10-31 13:56:14 -0600261{
Michal Simek9e09dc52013-03-27 12:05:28 +0100262 struct ttc_timer_clocksource *ttccs;
Josh Cartwright91dc9852012-10-31 13:56:14 -0600263 int err;
Josh Cartwright91dc9852012-10-31 13:56:14 -0600264
265 ttccs = kzalloc(sizeof(*ttccs), GFP_KERNEL);
266 if (WARN_ON(!ttccs))
267 return;
268
Michal Simek9e09dc52013-03-27 12:05:28 +0100269 ttccs->ttc.clk = clk;
Michal Simeke9329002013-03-20 10:15:28 +0100270
Michal Simek9e09dc52013-03-27 12:05:28 +0100271 err = clk_prepare_enable(ttccs->ttc.clk);
Michal Simekc5263bb2013-03-20 10:24:59 +0100272 if (WARN_ON(err)) {
273 kfree(ttccs);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600274 return;
Michal Simekc5263bb2013-03-20 10:24:59 +0100275 }
Josh Cartwright91dc9852012-10-31 13:56:14 -0600276
Soren Brinkmannc1dcc922013-11-26 17:04:50 -0800277 ttccs->ttc.freq = clk_get_rate(ttccs->ttc.clk);
278
Michal Simek9e09dc52013-03-27 12:05:28 +0100279 ttccs->ttc.clk_rate_change_nb.notifier_call =
280 ttc_rate_change_clocksource_cb;
281 ttccs->ttc.clk_rate_change_nb.next = NULL;
282 if (clk_notifier_register(ttccs->ttc.clk,
283 &ttccs->ttc.clk_rate_change_nb))
Michal Simeke9329002013-03-20 10:15:28 +0100284 pr_warn("Unable to register clock notifier.\n");
Josh Cartwright91dc9852012-10-31 13:56:14 -0600285
Michal Simek9e09dc52013-03-27 12:05:28 +0100286 ttccs->ttc.base_addr = base;
287 ttccs->cs.name = "ttc_clocksource";
Josh Cartwright91dc9852012-10-31 13:56:14 -0600288 ttccs->cs.rating = 200;
Michal Simek9e09dc52013-03-27 12:05:28 +0100289 ttccs->cs.read = __ttc_clocksource_read;
Josh Cartwright91dc9852012-10-31 13:56:14 -0600290 ttccs->cs.mask = CLOCKSOURCE_MASK(16);
291 ttccs->cs.flags = CLOCK_SOURCE_IS_CONTINUOUS;
292
Michal Simeke9329002013-03-20 10:15:28 +0100293 /*
294 * Setup the clock source counter to be an incrementing counter
295 * with no interrupt and it rolls over at 0xFFFF. Pre-scale
296 * it by 32 also. Let it start running now.
297 */
Michal Simek9e09dc52013-03-27 12:05:28 +0100298 __raw_writel(0x0, ttccs->ttc.base_addr + TTC_IER_OFFSET);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600299 __raw_writel(CLK_CNTRL_PRESCALE | CLK_CNTRL_PRESCALE_EN,
Michal Simek9e09dc52013-03-27 12:05:28 +0100300 ttccs->ttc.base_addr + TTC_CLK_CNTRL_OFFSET);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600301 __raw_writel(CNT_CNTRL_RESET,
Michal Simek9e09dc52013-03-27 12:05:28 +0100302 ttccs->ttc.base_addr + TTC_CNT_CNTRL_OFFSET);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600303
Soren Brinkmannc1dcc922013-11-26 17:04:50 -0800304 err = clocksource_register_hz(&ttccs->cs, ttccs->ttc.freq / PRESCALE);
Michal Simekc5263bb2013-03-20 10:24:59 +0100305 if (WARN_ON(err)) {
306 kfree(ttccs);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600307 return;
Michal Simekc5263bb2013-03-20 10:24:59 +0100308 }
Soren Brinkmann3d77b302013-07-08 09:51:38 -0700309
310 ttc_sched_clock_val_reg = base + TTC_COUNT_VAL_OFFSET;
Soren Brinkmannc1dcc922013-11-26 17:04:50 -0800311 setup_sched_clock(ttc_sched_clock_read, 16, ttccs->ttc.freq / PRESCALE);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600312}
313
Michal Simek9e09dc52013-03-27 12:05:28 +0100314static int ttc_rate_change_clockevent_cb(struct notifier_block *nb,
Michal Simeke9329002013-03-20 10:15:28 +0100315 unsigned long event, void *data)
316{
317 struct clk_notifier_data *ndata = data;
Michal Simek9e09dc52013-03-27 12:05:28 +0100318 struct ttc_timer *ttc = to_ttc_timer(nb);
319 struct ttc_timer_clockevent *ttcce = container_of(ttc,
320 struct ttc_timer_clockevent, ttc);
Michal Simeke9329002013-03-20 10:15:28 +0100321
322 switch (event) {
323 case POST_RATE_CHANGE:
324 {
325 unsigned long flags;
326
327 /*
328 * clockevents_update_freq should be called with IRQ disabled on
329 * the CPU the timer provides events for. The timer we use is
330 * common to both CPUs, not sure if we need to run on both
331 * cores.
332 */
333 local_irq_save(flags);
Michal Simek9e09dc52013-03-27 12:05:28 +0100334 clockevents_update_freq(&ttcce->ce,
Michal Simeke9329002013-03-20 10:15:28 +0100335 ndata->new_rate / PRESCALE);
336 local_irq_restore(flags);
337
Soren Brinkmannc1dcc922013-11-26 17:04:50 -0800338 /* update cached frequency */
339 ttc->freq = ndata->new_rate;
340
Michal Simeke9329002013-03-20 10:15:28 +0100341 /* fall through */
342 }
343 case PRE_RATE_CHANGE:
344 case ABORT_RATE_CHANGE:
345 default:
346 return NOTIFY_DONE;
347 }
348}
349
Michal Simek9e09dc52013-03-27 12:05:28 +0100350static void __init ttc_setup_clockevent(struct clk *clk,
Michal Simeke9329002013-03-20 10:15:28 +0100351 void __iomem *base, u32 irq)
Josh Cartwright91dc9852012-10-31 13:56:14 -0600352{
Michal Simek9e09dc52013-03-27 12:05:28 +0100353 struct ttc_timer_clockevent *ttcce;
Michal Simeke9329002013-03-20 10:15:28 +0100354 int err;
Josh Cartwright91dc9852012-10-31 13:56:14 -0600355
356 ttcce = kzalloc(sizeof(*ttcce), GFP_KERNEL);
357 if (WARN_ON(!ttcce))
358 return;
359
Michal Simek9e09dc52013-03-27 12:05:28 +0100360 ttcce->ttc.clk = clk;
Michal Simeke9329002013-03-20 10:15:28 +0100361
Michal Simek9e09dc52013-03-27 12:05:28 +0100362 err = clk_prepare_enable(ttcce->ttc.clk);
Michal Simekc5263bb2013-03-20 10:24:59 +0100363 if (WARN_ON(err)) {
364 kfree(ttcce);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600365 return;
Michal Simekc5263bb2013-03-20 10:24:59 +0100366 }
Josh Cartwright91dc9852012-10-31 13:56:14 -0600367
Michal Simek9e09dc52013-03-27 12:05:28 +0100368 ttcce->ttc.clk_rate_change_nb.notifier_call =
369 ttc_rate_change_clockevent_cb;
370 ttcce->ttc.clk_rate_change_nb.next = NULL;
371 if (clk_notifier_register(ttcce->ttc.clk,
372 &ttcce->ttc.clk_rate_change_nb))
Michal Simeke9329002013-03-20 10:15:28 +0100373 pr_warn("Unable to register clock notifier.\n");
Soren Brinkmannc1dcc922013-11-26 17:04:50 -0800374 ttcce->ttc.freq = clk_get_rate(ttcce->ttc.clk);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600375
Michal Simek9e09dc52013-03-27 12:05:28 +0100376 ttcce->ttc.base_addr = base;
377 ttcce->ce.name = "ttc_clockevent";
Josh Cartwright91dc9852012-10-31 13:56:14 -0600378 ttcce->ce.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
Michal Simek9e09dc52013-03-27 12:05:28 +0100379 ttcce->ce.set_next_event = ttc_set_next_event;
380 ttcce->ce.set_mode = ttc_set_mode;
Josh Cartwright91dc9852012-10-31 13:56:14 -0600381 ttcce->ce.rating = 200;
382 ttcce->ce.irq = irq;
Soren Brinkmann87e4ee72012-12-19 10:18:42 -0800383 ttcce->ce.cpumask = cpu_possible_mask;
Josh Cartwright91dc9852012-10-31 13:56:14 -0600384
Michal Simeke9329002013-03-20 10:15:28 +0100385 /*
386 * Setup the clock event timer to be an interval timer which
387 * is prescaled by 32 using the interval interrupt. Leave it
388 * disabled for now.
389 */
Michal Simek9e09dc52013-03-27 12:05:28 +0100390 __raw_writel(0x23, ttcce->ttc.base_addr + TTC_CNT_CNTRL_OFFSET);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600391 __raw_writel(CLK_CNTRL_PRESCALE | CLK_CNTRL_PRESCALE_EN,
Michal Simek9e09dc52013-03-27 12:05:28 +0100392 ttcce->ttc.base_addr + TTC_CLK_CNTRL_OFFSET);
393 __raw_writel(0x1, ttcce->ttc.base_addr + TTC_IER_OFFSET);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600394
Michal Simek9e09dc52013-03-27 12:05:28 +0100395 err = request_irq(irq, ttc_clock_event_interrupt,
Michal Simeke9329002013-03-20 10:15:28 +0100396 IRQF_DISABLED | IRQF_TIMER,
397 ttcce->ce.name, ttcce);
Michal Simekc5263bb2013-03-20 10:24:59 +0100398 if (WARN_ON(err)) {
399 kfree(ttcce);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600400 return;
Michal Simekc5263bb2013-03-20 10:24:59 +0100401 }
Josh Cartwright91dc9852012-10-31 13:56:14 -0600402
403 clockevents_config_and_register(&ttcce->ce,
Soren Brinkmannc1dcc922013-11-26 17:04:50 -0800404 ttcce->ttc.freq / PRESCALE, 1, 0xfffe);
Josh Cartwright91dc9852012-10-31 13:56:14 -0600405}
406
John Linnb85a3ef2011-06-20 11:47:27 -0600407/**
Michal Simek9e09dc52013-03-27 12:05:28 +0100408 * ttc_timer_init - Initialize the timer
John Linnb85a3ef2011-06-20 11:47:27 -0600409 *
410 * Initializes the timer hardware and register the clock source and clock event
411 * timers with Linux kernal timer framework
Michal Simeke9329002013-03-20 10:15:28 +0100412 */
Michal Simek9e09dc52013-03-27 12:05:28 +0100413static void __init ttc_timer_init(struct device_node *timer)
Michal Simeke9329002013-03-20 10:15:28 +0100414{
415 unsigned int irq;
416 void __iomem *timer_baseaddr;
Soren Brinkmann30e1e282013-05-13 10:46:38 -0700417 struct clk *clk_cs, *clk_ce;
Michal Simekc5263bb2013-03-20 10:24:59 +0100418 static int initialized;
Soren Brinkmann30e1e282013-05-13 10:46:38 -0700419 int clksel;
Michal Simekc5263bb2013-03-20 10:24:59 +0100420
421 if (initialized)
422 return;
423
424 initialized = 1;
Michal Simeke9329002013-03-20 10:15:28 +0100425
426 /*
427 * Get the 1st Triple Timer Counter (TTC) block from the device tree
428 * and use it. Note that the event timer uses the interrupt and it's the
429 * 2nd TTC hence the irq_of_parse_and_map(,1)
430 */
431 timer_baseaddr = of_iomap(timer, 0);
432 if (!timer_baseaddr) {
433 pr_err("ERROR: invalid timer base address\n");
434 BUG();
435 }
436
437 irq = irq_of_parse_and_map(timer, 1);
438 if (irq <= 0) {
439 pr_err("ERROR: invalid interrupt number\n");
440 BUG();
441 }
442
Soren Brinkmann30e1e282013-05-13 10:46:38 -0700443 clksel = __raw_readl(timer_baseaddr + TTC_CLK_CNTRL_OFFSET);
444 clksel = !!(clksel & TTC_CLK_CNTRL_CSRC_MASK);
445 clk_cs = of_clk_get(timer, clksel);
446 if (IS_ERR(clk_cs)) {
Michal Simeke9329002013-03-20 10:15:28 +0100447 pr_err("ERROR: timer input clock not found\n");
448 BUG();
449 }
450
Soren Brinkmann30e1e282013-05-13 10:46:38 -0700451 clksel = __raw_readl(timer_baseaddr + 4 + TTC_CLK_CNTRL_OFFSET);
452 clksel = !!(clksel & TTC_CLK_CNTRL_CSRC_MASK);
453 clk_ce = of_clk_get(timer, clksel);
454 if (IS_ERR(clk_ce)) {
455 pr_err("ERROR: timer input clock not found\n");
456 BUG();
457 }
458
459 ttc_setup_clocksource(clk_cs, timer_baseaddr);
460 ttc_setup_clockevent(clk_ce, timer_baseaddr + 4, irq);
Michal Simeke9329002013-03-20 10:15:28 +0100461
462 pr_info("%s #0 at %p, irq=%d\n", timer->name, timer_baseaddr, irq);
463}
464
Michal Simek9e09dc52013-03-27 12:05:28 +0100465CLOCKSOURCE_OF_DECLARE(ttc, "cdns,ttc", ttc_timer_init);