2 * This file contains driver for the Xilinx PS Timer Counter IP.
4 * Copyright (C) 2011 Xilinx
6 * based on arch/mips/kernel/time.c timer driver
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.
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.
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/interrupt.h>
21 #include <linux/irq.h>
22 #include <linux/types.h>
23 #include <linux/clocksource.h>
24 #include <linux/clockchips.h>
27 #include <linux/of_address.h>
28 #include <linux/of_irq.h>
29 #include <linux/slab.h>
30 #include <linux/clk-provider.h>
35 * Timer Register Offset Definitions of Timer 1, Increment base address by 4
36 * and use same offsets for Timer 2
38 #define XTTCPSS_CLK_CNTRL_OFFSET 0x00 /* Clock Control Reg, RW */
39 #define XTTCPSS_CNT_CNTRL_OFFSET 0x0C /* Counter Control Reg, RW */
40 #define XTTCPSS_COUNT_VAL_OFFSET 0x18 /* Counter Value Reg, RO */
41 #define XTTCPSS_INTR_VAL_OFFSET 0x24 /* Interval Count Reg, RW */
42 #define XTTCPSS_MATCH_1_OFFSET 0x30 /* Match 1 Value Reg, RW */
43 #define XTTCPSS_MATCH_2_OFFSET 0x3C /* Match 2 Value Reg, RW */
44 #define XTTCPSS_MATCH_3_OFFSET 0x48 /* Match 3 Value Reg, RW */
45 #define XTTCPSS_ISR_OFFSET 0x54 /* Interrupt Status Reg, RO */
46 #define XTTCPSS_IER_OFFSET 0x60 /* Interrupt Enable Reg, RW */
48 #define XTTCPSS_CNT_CNTRL_DISABLE_MASK 0x1
50 /* Setup the timers to use pre-scaling, using a fixed value for now that will
51 * work across most input frequency, but it may need to be more dynamic
53 #define PRESCALE_EXPONENT 11 /* 2 ^ PRESCALE_EXPONENT = PRESCALE */
54 #define PRESCALE 2048 /* The exponent must match this */
55 #define CLK_CNTRL_PRESCALE ((PRESCALE_EXPONENT - 1) << 1)
56 #define CLK_CNTRL_PRESCALE_EN 1
57 #define CNT_CNTRL_RESET (1<<4)
60 * struct xttcpss_timer - This definition defines local timer structure
62 * @base_addr: Base address of timer
64 struct xttcpss_timer
{
65 void __iomem
*base_addr
;
68 struct xttcpss_timer_clocksource
{
69 struct xttcpss_timer xttc
;
70 struct clocksource cs
;
73 #define to_xttcpss_timer_clksrc(x) \
74 container_of(x, struct xttcpss_timer_clocksource, cs)
76 struct xttcpss_timer_clockevent
{
77 struct xttcpss_timer xttc
;
78 struct clock_event_device ce
;
82 #define to_xttcpss_timer_clkevent(x) \
83 container_of(x, struct xttcpss_timer_clockevent, ce)
86 * xttcpss_set_interval - Set the timer interval value
88 * @timer: Pointer to the timer instance
89 * @cycles: Timer interval ticks
91 static void xttcpss_set_interval(struct xttcpss_timer
*timer
,
96 /* Disable the counter, set the counter value and re-enable counter */
97 ctrl_reg
= __raw_readl(timer
->base_addr
+ XTTCPSS_CNT_CNTRL_OFFSET
);
98 ctrl_reg
|= XTTCPSS_CNT_CNTRL_DISABLE_MASK
;
99 __raw_writel(ctrl_reg
, timer
->base_addr
+ XTTCPSS_CNT_CNTRL_OFFSET
);
101 __raw_writel(cycles
, timer
->base_addr
+ XTTCPSS_INTR_VAL_OFFSET
);
103 /* Reset the counter (0x10) so that it starts from 0, one-shot
104 mode makes this needed for timing to be right. */
105 ctrl_reg
|= CNT_CNTRL_RESET
;
106 ctrl_reg
&= ~XTTCPSS_CNT_CNTRL_DISABLE_MASK
;
107 __raw_writel(ctrl_reg
, timer
->base_addr
+ XTTCPSS_CNT_CNTRL_OFFSET
);
111 * xttcpss_clock_event_interrupt - Clock event timer interrupt handler
113 * @irq: IRQ number of the Timer
114 * @dev_id: void pointer to the xttcpss_timer instance
116 * returns: Always IRQ_HANDLED - success
118 static irqreturn_t
xttcpss_clock_event_interrupt(int irq
, void *dev_id
)
120 struct xttcpss_timer_clockevent
*xttce
= dev_id
;
121 struct xttcpss_timer
*timer
= &xttce
->xttc
;
123 /* Acknowledge the interrupt and call event handler */
124 __raw_writel(__raw_readl(timer
->base_addr
+ XTTCPSS_ISR_OFFSET
),
125 timer
->base_addr
+ XTTCPSS_ISR_OFFSET
);
127 xttce
->ce
.event_handler(&xttce
->ce
);
133 * __xttc_clocksource_read - Reads the timer counter register
135 * returns: Current timer counter register value
137 static cycle_t
__xttc_clocksource_read(struct clocksource
*cs
)
139 struct xttcpss_timer
*timer
= &to_xttcpss_timer_clksrc(cs
)->xttc
;
141 return (cycle_t
)__raw_readl(timer
->base_addr
+
142 XTTCPSS_COUNT_VAL_OFFSET
);
146 * xttcpss_set_next_event - Sets the time interval for next event
148 * @cycles: Timer interval ticks
149 * @evt: Address of clock event instance
151 * returns: Always 0 - success
153 static int xttcpss_set_next_event(unsigned long cycles
,
154 struct clock_event_device
*evt
)
156 struct xttcpss_timer_clockevent
*xttce
= to_xttcpss_timer_clkevent(evt
);
157 struct xttcpss_timer
*timer
= &xttce
->xttc
;
159 xttcpss_set_interval(timer
, cycles
);
164 * xttcpss_set_mode - Sets the mode of timer
166 * @mode: Mode to be set
167 * @evt: Address of clock event instance
169 static void xttcpss_set_mode(enum clock_event_mode mode
,
170 struct clock_event_device
*evt
)
172 struct xttcpss_timer_clockevent
*xttce
= to_xttcpss_timer_clkevent(evt
);
173 struct xttcpss_timer
*timer
= &xttce
->xttc
;
177 case CLOCK_EVT_MODE_PERIODIC
:
178 xttcpss_set_interval(timer
,
179 DIV_ROUND_CLOSEST(clk_get_rate(xttce
->clk
),
182 case CLOCK_EVT_MODE_ONESHOT
:
183 case CLOCK_EVT_MODE_UNUSED
:
184 case CLOCK_EVT_MODE_SHUTDOWN
:
185 ctrl_reg
= __raw_readl(timer
->base_addr
+
186 XTTCPSS_CNT_CNTRL_OFFSET
);
187 ctrl_reg
|= XTTCPSS_CNT_CNTRL_DISABLE_MASK
;
188 __raw_writel(ctrl_reg
,
189 timer
->base_addr
+ XTTCPSS_CNT_CNTRL_OFFSET
);
191 case CLOCK_EVT_MODE_RESUME
:
192 ctrl_reg
= __raw_readl(timer
->base_addr
+
193 XTTCPSS_CNT_CNTRL_OFFSET
);
194 ctrl_reg
&= ~XTTCPSS_CNT_CNTRL_DISABLE_MASK
;
195 __raw_writel(ctrl_reg
,
196 timer
->base_addr
+ XTTCPSS_CNT_CNTRL_OFFSET
);
201 static void __init
zynq_ttc_setup_clocksource(struct device_node
*np
,
204 struct xttcpss_timer_clocksource
*ttccs
;
209 ttccs
= kzalloc(sizeof(*ttccs
), GFP_KERNEL
);
213 err
= of_property_read_u32(np
, "reg", ®
);
217 clk
= of_clk_get_by_name(np
, "cpu_1x");
218 if (WARN_ON(IS_ERR(clk
)))
221 err
= clk_prepare_enable(clk
);
225 ttccs
->xttc
.base_addr
= base
+ reg
* 4;
227 ttccs
->cs
.name
= np
->name
;
228 ttccs
->cs
.rating
= 200;
229 ttccs
->cs
.read
= __xttc_clocksource_read
;
230 ttccs
->cs
.mask
= CLOCKSOURCE_MASK(16);
231 ttccs
->cs
.flags
= CLOCK_SOURCE_IS_CONTINUOUS
;
233 __raw_writel(0x0, ttccs
->xttc
.base_addr
+ XTTCPSS_IER_OFFSET
);
234 __raw_writel(CLK_CNTRL_PRESCALE
| CLK_CNTRL_PRESCALE_EN
,
235 ttccs
->xttc
.base_addr
+ XTTCPSS_CLK_CNTRL_OFFSET
);
236 __raw_writel(CNT_CNTRL_RESET
,
237 ttccs
->xttc
.base_addr
+ XTTCPSS_CNT_CNTRL_OFFSET
);
239 err
= clocksource_register_hz(&ttccs
->cs
, clk_get_rate(clk
) / PRESCALE
);
244 static void __init
zynq_ttc_setup_clockevent(struct device_node
*np
,
247 struct xttcpss_timer_clockevent
*ttcce
;
251 ttcce
= kzalloc(sizeof(*ttcce
), GFP_KERNEL
);
255 err
= of_property_read_u32(np
, "reg", ®
);
259 ttcce
->xttc
.base_addr
= base
+ reg
* 4;
261 ttcce
->clk
= of_clk_get_by_name(np
, "cpu_1x");
262 if (WARN_ON(IS_ERR(ttcce
->clk
)))
265 err
= clk_prepare_enable(ttcce
->clk
);
269 irq
= irq_of_parse_and_map(np
, 0);
273 ttcce
->ce
.name
= np
->name
;
274 ttcce
->ce
.features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
;
275 ttcce
->ce
.set_next_event
= xttcpss_set_next_event
;
276 ttcce
->ce
.set_mode
= xttcpss_set_mode
;
277 ttcce
->ce
.rating
= 200;
280 __raw_writel(0x23, ttcce
->xttc
.base_addr
+ XTTCPSS_CNT_CNTRL_OFFSET
);
281 __raw_writel(CLK_CNTRL_PRESCALE
| CLK_CNTRL_PRESCALE_EN
,
282 ttcce
->xttc
.base_addr
+ XTTCPSS_CLK_CNTRL_OFFSET
);
283 __raw_writel(0x1, ttcce
->xttc
.base_addr
+ XTTCPSS_IER_OFFSET
);
285 err
= request_irq(irq
, xttcpss_clock_event_interrupt
, IRQF_TIMER
,
290 clockevents_config_and_register(&ttcce
->ce
,
291 clk_get_rate(ttcce
->clk
) / PRESCALE
,
295 static const __initconst
struct of_device_id zynq_ttc_match
[] = {
296 { .compatible
= "xlnx,ttc-counter-clocksource",
297 .data
= zynq_ttc_setup_clocksource
, },
298 { .compatible
= "xlnx,ttc-counter-clockevent",
299 .data
= zynq_ttc_setup_clockevent
, },
304 * xttcpss_timer_init - Initialize the timer
306 * Initializes the timer hardware and register the clock source and clock event
307 * timers with Linux kernal timer framework
309 void __init
xttcpss_timer_init(void)
311 struct device_node
*np
;
313 for_each_compatible_node(np
, NULL
, "xlnx,ttc") {
314 struct device_node
*np_chld
;
317 base
= of_iomap(np
, 0);
321 for_each_available_child_of_node(np
, np_chld
) {
322 int (*cb
)(struct device_node
*np
, void __iomem
*base
);
323 const struct of_device_id
*match
;
325 match
= of_match_node(zynq_ttc_match
, np_chld
);