11a59d1b8SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2beb5818bSLinus Walleij /*
3beb5818bSLinus Walleij * Integrator/AP timer driver
4beb5818bSLinus Walleij * Copyright (C) 2000-2003 Deep Blue Solutions Ltd
5beb5818bSLinus Walleij * Copyright (c) 2014, Linaro Limited
6beb5818bSLinus Walleij */
7beb5818bSLinus Walleij
8beb5818bSLinus Walleij #include <linux/clk.h>
9beb5818bSLinus Walleij #include <linux/clocksource.h>
10*6303d069SRob Herring #include <linux/of.h>
11beb5818bSLinus Walleij #include <linux/of_irq.h>
12beb5818bSLinus Walleij #include <linux/of_address.h>
13beb5818bSLinus Walleij #include <linux/clockchips.h>
14beb5818bSLinus Walleij #include <linux/interrupt.h>
15beb5818bSLinus Walleij #include <linux/sched_clock.h>
160b7402dcSSudeep Holla
170b7402dcSSudeep Holla #include "timer-sp.h"
18beb5818bSLinus Walleij
19beb5818bSLinus Walleij static void __iomem * sched_clk_base;
20beb5818bSLinus Walleij
integrator_read_sched_clock(void)21beb5818bSLinus Walleij static u64 notrace integrator_read_sched_clock(void)
22beb5818bSLinus Walleij {
23beb5818bSLinus Walleij return -readl(sched_clk_base + TIMER_VALUE);
24beb5818bSLinus Walleij }
25beb5818bSLinus Walleij
integrator_clocksource_init(unsigned long inrate,void __iomem * base)268fce3dc5SArnd Bergmann static int __init integrator_clocksource_init(unsigned long inrate,
27beb5818bSLinus Walleij void __iomem *base)
28beb5818bSLinus Walleij {
29beb5818bSLinus Walleij u32 ctrl = TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC;
30beb5818bSLinus Walleij unsigned long rate = inrate;
3176804d05SDaniel Lezcano int ret;
32beb5818bSLinus Walleij
33beb5818bSLinus Walleij if (rate >= 1500000) {
34beb5818bSLinus Walleij rate /= 16;
35beb5818bSLinus Walleij ctrl |= TIMER_CTRL_DIV16;
36beb5818bSLinus Walleij }
37beb5818bSLinus Walleij
38beb5818bSLinus Walleij writel(0xffff, base + TIMER_LOAD);
39beb5818bSLinus Walleij writel(ctrl, base + TIMER_CTRL);
40beb5818bSLinus Walleij
4176804d05SDaniel Lezcano ret = clocksource_mmio_init(base + TIMER_VALUE, "timer2",
42beb5818bSLinus Walleij rate, 200, 16, clocksource_mmio_readl_down);
4376804d05SDaniel Lezcano if (ret)
4476804d05SDaniel Lezcano return ret;
45beb5818bSLinus Walleij
46beb5818bSLinus Walleij sched_clk_base = base;
47beb5818bSLinus Walleij sched_clock_register(integrator_read_sched_clock, 16, rate);
4876804d05SDaniel Lezcano
4976804d05SDaniel Lezcano return 0;
50beb5818bSLinus Walleij }
51beb5818bSLinus Walleij
52beb5818bSLinus Walleij static unsigned long timer_reload;
53beb5818bSLinus Walleij static void __iomem * clkevt_base;
54beb5818bSLinus Walleij
55beb5818bSLinus Walleij /*
56beb5818bSLinus Walleij * IRQ handler for the timer
57beb5818bSLinus Walleij */
integrator_timer_interrupt(int irq,void * dev_id)58beb5818bSLinus Walleij static irqreturn_t integrator_timer_interrupt(int irq, void *dev_id)
59beb5818bSLinus Walleij {
60beb5818bSLinus Walleij struct clock_event_device *evt = dev_id;
61beb5818bSLinus Walleij
62beb5818bSLinus Walleij /* clear the interrupt */
63beb5818bSLinus Walleij writel(1, clkevt_base + TIMER_INTCLR);
64beb5818bSLinus Walleij
65beb5818bSLinus Walleij evt->event_handler(evt);
66beb5818bSLinus Walleij
67beb5818bSLinus Walleij return IRQ_HANDLED;
68beb5818bSLinus Walleij }
69beb5818bSLinus Walleij
clkevt_shutdown(struct clock_event_device * evt)70f710bdeeSViresh Kumar static int clkevt_shutdown(struct clock_event_device *evt)
71f710bdeeSViresh Kumar {
72f710bdeeSViresh Kumar u32 ctrl = readl(clkevt_base + TIMER_CTRL) & ~TIMER_CTRL_ENABLE;
73f710bdeeSViresh Kumar
74f710bdeeSViresh Kumar /* Disable timer */
75f710bdeeSViresh Kumar writel(ctrl, clkevt_base + TIMER_CTRL);
76f710bdeeSViresh Kumar return 0;
77f710bdeeSViresh Kumar }
78f710bdeeSViresh Kumar
clkevt_set_oneshot(struct clock_event_device * evt)79f710bdeeSViresh Kumar static int clkevt_set_oneshot(struct clock_event_device *evt)
80f710bdeeSViresh Kumar {
81f710bdeeSViresh Kumar u32 ctrl = readl(clkevt_base + TIMER_CTRL) &
82f710bdeeSViresh Kumar ~(TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC);
83f710bdeeSViresh Kumar
84f710bdeeSViresh Kumar /* Leave the timer disabled, .set_next_event will enable it */
85f710bdeeSViresh Kumar writel(ctrl, clkevt_base + TIMER_CTRL);
86f710bdeeSViresh Kumar return 0;
87f710bdeeSViresh Kumar }
88f710bdeeSViresh Kumar
clkevt_set_periodic(struct clock_event_device * evt)89f710bdeeSViresh Kumar static int clkevt_set_periodic(struct clock_event_device *evt)
90beb5818bSLinus Walleij {
91beb5818bSLinus Walleij u32 ctrl = readl(clkevt_base + TIMER_CTRL) & ~TIMER_CTRL_ENABLE;
92beb5818bSLinus Walleij
93beb5818bSLinus Walleij /* Disable timer */
94beb5818bSLinus Walleij writel(ctrl, clkevt_base + TIMER_CTRL);
95beb5818bSLinus Walleij
96beb5818bSLinus Walleij /* Enable the timer and start the periodic tick */
97beb5818bSLinus Walleij writel(timer_reload, clkevt_base + TIMER_LOAD);
98beb5818bSLinus Walleij ctrl |= TIMER_CTRL_PERIODIC | TIMER_CTRL_ENABLE;
99beb5818bSLinus Walleij writel(ctrl, clkevt_base + TIMER_CTRL);
100f710bdeeSViresh Kumar return 0;
101beb5818bSLinus Walleij }
102beb5818bSLinus Walleij
clkevt_set_next_event(unsigned long next,struct clock_event_device * evt)103beb5818bSLinus Walleij static int clkevt_set_next_event(unsigned long next, struct clock_event_device *evt)
104beb5818bSLinus Walleij {
105beb5818bSLinus Walleij unsigned long ctrl = readl(clkevt_base + TIMER_CTRL);
106beb5818bSLinus Walleij
107beb5818bSLinus Walleij writel(ctrl & ~TIMER_CTRL_ENABLE, clkevt_base + TIMER_CTRL);
108beb5818bSLinus Walleij writel(next, clkevt_base + TIMER_LOAD);
109beb5818bSLinus Walleij writel(ctrl | TIMER_CTRL_ENABLE, clkevt_base + TIMER_CTRL);
110beb5818bSLinus Walleij
111beb5818bSLinus Walleij return 0;
112beb5818bSLinus Walleij }
113beb5818bSLinus Walleij
114beb5818bSLinus Walleij static struct clock_event_device integrator_clockevent = {
115beb5818bSLinus Walleij .name = "timer1",
116f710bdeeSViresh Kumar .features = CLOCK_EVT_FEAT_PERIODIC |
117f710bdeeSViresh Kumar CLOCK_EVT_FEAT_ONESHOT,
118f710bdeeSViresh Kumar .set_state_shutdown = clkevt_shutdown,
119f710bdeeSViresh Kumar .set_state_periodic = clkevt_set_periodic,
120f710bdeeSViresh Kumar .set_state_oneshot = clkevt_set_oneshot,
121f710bdeeSViresh Kumar .tick_resume = clkevt_shutdown,
122beb5818bSLinus Walleij .set_next_event = clkevt_set_next_event,
123beb5818bSLinus Walleij .rating = 300,
124beb5818bSLinus Walleij };
125beb5818bSLinus Walleij
integrator_clockevent_init(unsigned long inrate,void __iomem * base,int irq)12676804d05SDaniel Lezcano static int integrator_clockevent_init(unsigned long inrate,
127beb5818bSLinus Walleij void __iomem *base, int irq)
128beb5818bSLinus Walleij {
129beb5818bSLinus Walleij unsigned long rate = inrate;
130beb5818bSLinus Walleij unsigned int ctrl = 0;
13176804d05SDaniel Lezcano int ret;
132beb5818bSLinus Walleij
133beb5818bSLinus Walleij clkevt_base = base;
134beb5818bSLinus Walleij /* Calculate and program a divisor */
135beb5818bSLinus Walleij if (rate > 0x100000 * HZ) {
136beb5818bSLinus Walleij rate /= 256;
137beb5818bSLinus Walleij ctrl |= TIMER_CTRL_DIV256;
138beb5818bSLinus Walleij } else if (rate > 0x10000 * HZ) {
139beb5818bSLinus Walleij rate /= 16;
140beb5818bSLinus Walleij ctrl |= TIMER_CTRL_DIV16;
141beb5818bSLinus Walleij }
142beb5818bSLinus Walleij timer_reload = rate / HZ;
143beb5818bSLinus Walleij writel(ctrl, clkevt_base + TIMER_CTRL);
144beb5818bSLinus Walleij
145cc2550b4Safzal mohammed ret = request_irq(irq, integrator_timer_interrupt,
146cc2550b4Safzal mohammed IRQF_TIMER | IRQF_IRQPOLL, "timer",
147cc2550b4Safzal mohammed &integrator_clockevent);
14876804d05SDaniel Lezcano if (ret)
14976804d05SDaniel Lezcano return ret;
15076804d05SDaniel Lezcano
151beb5818bSLinus Walleij clockevents_config_and_register(&integrator_clockevent,
152beb5818bSLinus Walleij rate,
153beb5818bSLinus Walleij 1,
154beb5818bSLinus Walleij 0xffffU);
15576804d05SDaniel Lezcano return 0;
156beb5818bSLinus Walleij }
157beb5818bSLinus Walleij
integrator_ap_timer_init_of(struct device_node * node)15876804d05SDaniel Lezcano static int __init integrator_ap_timer_init_of(struct device_node *node)
159beb5818bSLinus Walleij {
160beb5818bSLinus Walleij const char *path;
161beb5818bSLinus Walleij void __iomem *base;
162beb5818bSLinus Walleij int err;
163beb5818bSLinus Walleij int irq;
164beb5818bSLinus Walleij struct clk *clk;
165beb5818bSLinus Walleij unsigned long rate;
1665eb73c83SYangtao Li struct device_node *alias_node;
167beb5818bSLinus Walleij
168beb5818bSLinus Walleij base = of_io_request_and_map(node, 0, "integrator-timer");
169bd580e7eSMaxime Ripard if (IS_ERR(base))
17076804d05SDaniel Lezcano return PTR_ERR(base);
171beb5818bSLinus Walleij
172beb5818bSLinus Walleij clk = of_clk_get(node, 0);
173beb5818bSLinus Walleij if (IS_ERR(clk)) {
1742a4849d2SRob Herring pr_err("No clock for %pOFn\n", node);
17576804d05SDaniel Lezcano return PTR_ERR(clk);
176beb5818bSLinus Walleij }
177beb5818bSLinus Walleij clk_prepare_enable(clk);
178beb5818bSLinus Walleij rate = clk_get_rate(clk);
179beb5818bSLinus Walleij writel(0, base + TIMER_CTRL);
180beb5818bSLinus Walleij
181beb5818bSLinus Walleij err = of_property_read_string(of_aliases,
182beb5818bSLinus Walleij "arm,timer-primary", &path);
18376804d05SDaniel Lezcano if (err) {
184ac9ce6d1SRafał Miłecki pr_warn("Failed to read property\n");
18576804d05SDaniel Lezcano return err;
18676804d05SDaniel Lezcano }
18776804d05SDaniel Lezcano
1885eb73c83SYangtao Li alias_node = of_find_node_by_path(path);
1895eb73c83SYangtao Li
1905eb73c83SYangtao Li /*
1915eb73c83SYangtao Li * The pointer is used as an identifier not as a pointer, we
1925eb73c83SYangtao Li * can drop the refcount on the of__node immediately after
1935eb73c83SYangtao Li * getting it.
1945eb73c83SYangtao Li */
1955eb73c83SYangtao Li of_node_put(alias_node);
1965eb73c83SYangtao Li
1975eb73c83SYangtao Li if (node == alias_node)
1985eb73c83SYangtao Li /* The primary timer lacks IRQ, use as clocksource */
1995eb73c83SYangtao Li return integrator_clocksource_init(rate, base);
20076804d05SDaniel Lezcano
201beb5818bSLinus Walleij err = of_property_read_string(of_aliases,
202beb5818bSLinus Walleij "arm,timer-secondary", &path);
20376804d05SDaniel Lezcano if (err) {
204ac9ce6d1SRafał Miłecki pr_warn("Failed to read property\n");
20576804d05SDaniel Lezcano return err;
20676804d05SDaniel Lezcano }
20776804d05SDaniel Lezcano
2085eb73c83SYangtao Li alias_node = of_find_node_by_path(path);
20976804d05SDaniel Lezcano
2105eb73c83SYangtao Li of_node_put(alias_node);
211beb5818bSLinus Walleij
2125eb73c83SYangtao Li if (node == alias_node) {
213beb5818bSLinus Walleij /* The secondary timer will drive the clock event */
214beb5818bSLinus Walleij irq = irq_of_parse_and_map(node, 0);
21576804d05SDaniel Lezcano return integrator_clockevent_init(rate, base, irq);
216beb5818bSLinus Walleij }
217beb5818bSLinus Walleij
218beb5818bSLinus Walleij pr_info("Timer @%p unused\n", base);
219beb5818bSLinus Walleij clk_disable_unprepare(clk);
22076804d05SDaniel Lezcano
22176804d05SDaniel Lezcano return 0;
222beb5818bSLinus Walleij }
223beb5818bSLinus Walleij
22417273395SDaniel Lezcano TIMER_OF_DECLARE(integrator_ap_timer, "arm,integrator-timer",
225beb5818bSLinus Walleij integrator_ap_timer_init_of);
226