1 // SPDX-License-Identifier: GPL-2.0
4 * Copyright (C) 2019 Linus Walleij <linus.walleij@linaro.org>
6 * Based on arch/arm/mach-ixp4xx/common.c
7 * Copyright 2002 (C) Intel Corporation
8 * Copyright 2003-2004 (C) MontaVista, Software, Inc.
9 * Copyright (C) Deepak Saxena <dsaxena@plexity.net>
11 #include <linux/interrupt.h>
13 #include <linux/clockchips.h>
14 #include <linux/clocksource.h>
15 #include <linux/sched_clock.h>
16 #include <linux/slab.h>
17 #include <linux/bitops.h>
18 #include <linux/delay.h>
19 #include <linux/of_address.h>
20 #include <linux/of_irq.h>
21 #include <linux/platform_device.h>
24 * Constants to make it easy to access Timer Control/Status registers
26 #define IXP4XX_OSTS_OFFSET 0x00 /* Continuous Timestamp */
27 #define IXP4XX_OST1_OFFSET 0x04 /* Timer 1 Timestamp */
28 #define IXP4XX_OSRT1_OFFSET 0x08 /* Timer 1 Reload */
29 #define IXP4XX_OST2_OFFSET 0x0C /* Timer 2 Timestamp */
30 #define IXP4XX_OSRT2_OFFSET 0x10 /* Timer 2 Reload */
31 #define IXP4XX_OSST_OFFSET 0x20 /* Timer Status */
34 * Timer register values and bit definitions
36 #define IXP4XX_OST_ENABLE 0x00000001
37 #define IXP4XX_OST_ONE_SHOT 0x00000002
38 /* Low order bits of reload value ignored */
39 #define IXP4XX_OST_RELOAD_MASK 0x00000003
40 #define IXP4XX_OST_DISABLED 0x00000000
41 #define IXP4XX_OSST_TIMER_1_PEND 0x00000001
42 #define IXP4XX_OSST_TIMER_2_PEND 0x00000002
43 #define IXP4XX_OSST_TIMER_TS_PEND 0x00000004
44 /* Remaining registers are for the watchdog and defined in the watchdog driver */
49 struct clock_event_device clkevt;
51 struct delay_timer delay_timer;
56 * A local singleton used by sched_clock and delay timer reads, which are
59 static struct ixp4xx_timer *local_ixp4xx_timer;
61 static inline struct ixp4xx_timer *
62 to_ixp4xx_timer(struct clock_event_device *evt)
64 return container_of(evt, struct ixp4xx_timer, clkevt);
67 static unsigned long ixp4xx_read_timer(void)
69 return __raw_readl(local_ixp4xx_timer->base + IXP4XX_OSTS_OFFSET);
72 static u64 notrace ixp4xx_read_sched_clock(void)
74 return ixp4xx_read_timer();
77 static u64 ixp4xx_clocksource_read(struct clocksource *c)
79 return ixp4xx_read_timer();
82 static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
84 struct ixp4xx_timer *tmr = dev_id;
85 struct clock_event_device *evt = &tmr->clkevt;
87 /* Clear Pending Interrupt */
88 __raw_writel(IXP4XX_OSST_TIMER_1_PEND,
89 tmr->base + IXP4XX_OSST_OFFSET);
91 evt->event_handler(evt);
96 static int ixp4xx_set_next_event(unsigned long cycles,
97 struct clock_event_device *evt)
99 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt);
102 val = __raw_readl(tmr->base + IXP4XX_OSRT1_OFFSET);
103 /* Keep enable/oneshot bits */
104 val &= IXP4XX_OST_RELOAD_MASK;
105 __raw_writel((cycles & ~IXP4XX_OST_RELOAD_MASK) | val,
106 tmr->base + IXP4XX_OSRT1_OFFSET);
111 static int ixp4xx_shutdown(struct clock_event_device *evt)
113 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt);
116 val = __raw_readl(tmr->base + IXP4XX_OSRT1_OFFSET);
117 val &= ~IXP4XX_OST_ENABLE;
118 __raw_writel(val, tmr->base + IXP4XX_OSRT1_OFFSET);
123 static int ixp4xx_set_oneshot(struct clock_event_device *evt)
125 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt);
127 __raw_writel(IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT,
128 tmr->base + IXP4XX_OSRT1_OFFSET);
133 static int ixp4xx_set_periodic(struct clock_event_device *evt)
135 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt);
138 val = tmr->latch & ~IXP4XX_OST_RELOAD_MASK;
139 val |= IXP4XX_OST_ENABLE;
140 __raw_writel(val, tmr->base + IXP4XX_OSRT1_OFFSET);
145 static int ixp4xx_resume(struct clock_event_device *evt)
147 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt);
150 val = __raw_readl(tmr->base + IXP4XX_OSRT1_OFFSET);
151 val |= IXP4XX_OST_ENABLE;
152 __raw_writel(val, tmr->base + IXP4XX_OSRT1_OFFSET);
159 * We use OS timer1 on the CPU for the timer tick and the timestamp
160 * counter as a source of real clock ticks to account for missed jiffies.
162 static __init int ixp4xx_timer_register(void __iomem *base,
164 unsigned int timer_freq)
166 struct ixp4xx_timer *tmr;
169 tmr = kzalloc(sizeof(*tmr), GFP_KERNEL);
175 * The timer register doesn't allow to specify the two least
176 * significant bits of the timeout value and assumes them being zero.
177 * So make sure the latch is the best value with the two least
178 * significant bits unset.
180 tmr->latch = DIV_ROUND_CLOSEST(timer_freq,
181 (IXP4XX_OST_RELOAD_MASK + 1) * HZ)
182 * (IXP4XX_OST_RELOAD_MASK + 1);
184 local_ixp4xx_timer = tmr;
186 /* Reset/disable counter */
187 __raw_writel(0, tmr->base + IXP4XX_OSRT1_OFFSET);
189 /* Clear any pending interrupt on timer 1 */
190 __raw_writel(IXP4XX_OSST_TIMER_1_PEND,
191 tmr->base + IXP4XX_OSST_OFFSET);
193 /* Reset time-stamp counter */
194 __raw_writel(0, tmr->base + IXP4XX_OSTS_OFFSET);
196 clocksource_mmio_init(NULL, "OSTS", timer_freq, 200, 32,
197 ixp4xx_clocksource_read);
199 tmr->clkevt.name = "ixp4xx timer1";
200 tmr->clkevt.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
201 tmr->clkevt.rating = 200;
202 tmr->clkevt.set_state_shutdown = ixp4xx_shutdown;
203 tmr->clkevt.set_state_periodic = ixp4xx_set_periodic;
204 tmr->clkevt.set_state_oneshot = ixp4xx_set_oneshot;
205 tmr->clkevt.tick_resume = ixp4xx_resume;
206 tmr->clkevt.set_next_event = ixp4xx_set_next_event;
207 tmr->clkevt.cpumask = cpumask_of(0);
208 tmr->clkevt.irq = timer_irq;
209 ret = request_irq(timer_irq, ixp4xx_timer_interrupt,
210 IRQF_TIMER, "IXP4XX-TIMER1", tmr);
212 pr_crit("no timer IRQ\n");
215 clockevents_config_and_register(&tmr->clkevt, timer_freq,
218 sched_clock_register(ixp4xx_read_sched_clock, 32, timer_freq);
221 /* Also use this timer for delays */
222 tmr->delay_timer.read_current_timer = ixp4xx_read_timer;
223 tmr->delay_timer.freq = timer_freq;
224 register_current_timer_delay(&tmr->delay_timer);
230 static struct platform_device ixp4xx_watchdog_device = {
231 .name = "ixp4xx-watchdog",
236 * This probe gets called after the timer is already up and running. The main
237 * function on this platform is to spawn the watchdog device as a child.
239 static int ixp4xx_timer_probe(struct platform_device *pdev)
241 struct device *dev = &pdev->dev;
243 /* Pass the base address as platform data and nothing else */
244 ixp4xx_watchdog_device.dev.platform_data = local_ixp4xx_timer->base;
245 ixp4xx_watchdog_device.dev.parent = dev;
246 return platform_device_register(&ixp4xx_watchdog_device);
249 static const struct of_device_id ixp4xx_timer_dt_id[] = {
250 { .compatible = "intel,ixp4xx-timer", },
254 static struct platform_driver ixp4xx_timer_driver = {
255 .probe = ixp4xx_timer_probe,
257 .name = "ixp4xx-timer",
258 .of_match_table = ixp4xx_timer_dt_id,
259 .suppress_bind_attrs = true,
262 builtin_platform_driver(ixp4xx_timer_driver);
264 static __init int ixp4xx_of_timer_init(struct device_node *np)
270 base = of_iomap(np, 0);
272 pr_crit("IXP4xx: can't remap timer\n");
276 irq = irq_of_parse_and_map(np, 0);
278 pr_err("Can't parse IRQ\n");
283 /* TODO: get some fixed clocks into the device tree */
284 ret = ixp4xx_timer_register(base, irq, 66666000);
293 TIMER_OF_DECLARE(ixp4xx, "intel,ixp4xx-timer", ixp4xx_of_timer_init);