blob: 3c124d1ca600b1a212cf75c9efb7fcb7afd1c055 [file] [log] [blame]
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01001/*
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01002 * Copyright (C) 2008 STMicroelectronics
Alessandro Rubinib102c012010-03-05 12:38:51 +01003 * Copyright (C) 2010 Alessandro Rubini
Linus Walleij8fbb97a22010-11-19 10:16:05 +01004 * Copyright (C) 2010 Linus Walleij for ST-Ericsson
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
9 */
10#include <linux/init.h>
11#include <linux/interrupt.h>
12#include <linux/irq.h>
13#include <linux/io.h>
14#include <linux/clockchips.h>
Linus Walleij694e33a2012-10-18 14:01:25 +020015#include <linux/clocksource.h>
Rabin Vincentc7785ea2013-04-03 13:28:26 +020016#include <linux/of_address.h>
17#include <linux/of_irq.h>
18#include <linux/of_platform.h>
Linus Walleijba327b12010-05-26 07:38:54 +010019#include <linux/clk.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010020#include <linux/jiffies.h>
Fabio Baltieri6f179b72012-12-04 11:10:44 +010021#include <linux/delay.h>
Linus Walleijba327b12010-05-26 07:38:54 +010022#include <linux/err.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070023#include <linux/sched_clock.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010024#include <asm/mach/time.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010025
Jonas Aaberg05387a92011-09-20 11:18:27 +020026/*
Jonas Aaberg05387a92011-09-20 11:18:27 +020027 * The MTU device hosts four different counters, with 4 set of
28 * registers. These are register names.
29 */
30
31#define MTU_IMSC 0x00 /* Interrupt mask set/clear */
32#define MTU_RIS 0x04 /* Raw interrupt status */
33#define MTU_MIS 0x08 /* Masked interrupt status */
34#define MTU_ICR 0x0C /* Interrupt clear register */
35
36/* per-timer registers take 0..3 as argument */
37#define MTU_LR(x) (0x10 + 0x10 * (x) + 0x00) /* Load value */
38#define MTU_VAL(x) (0x10 + 0x10 * (x) + 0x04) /* Current value */
39#define MTU_CR(x) (0x10 + 0x10 * (x) + 0x08) /* Control reg */
40#define MTU_BGLR(x) (0x10 + 0x10 * (x) + 0x0c) /* At next overflow */
41
42/* bits for the control register */
43#define MTU_CRn_ENA 0x80
44#define MTU_CRn_PERIODIC 0x40 /* if 0 = free-running */
45#define MTU_CRn_PRESCALE_MASK 0x0c
46#define MTU_CRn_PRESCALE_1 0x00
47#define MTU_CRn_PRESCALE_16 0x04
48#define MTU_CRn_PRESCALE_256 0x08
49#define MTU_CRn_32BITS 0x02
50#define MTU_CRn_ONESHOT 0x01 /* if 0 = wraps reloading from BGLR*/
51
52/* Other registers are usual amba/primecell registers, currently not used */
53#define MTU_ITCR 0xff0
54#define MTU_ITOP 0xff4
55
56#define MTU_PERIPH_ID0 0xfe0
57#define MTU_PERIPH_ID1 0xfe4
58#define MTU_PERIPH_ID2 0xfe8
59#define MTU_PERIPH_ID3 0xfeC
60
61#define MTU_PCELL0 0xff0
62#define MTU_PCELL1 0xff4
63#define MTU_PCELL2 0xff8
64#define MTU_PCELL3 0xffC
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010065
Linus Walleijb9576622012-01-11 09:46:59 +010066static void __iomem *mtu_base;
Jonas Aaberg2f73a062011-09-14 10:32:51 +020067static bool clkevt_periodic;
68static u32 clk_prescale;
69static u32 nmdk_cycle; /* write-once */
Fabio Baltieri6f179b72012-12-04 11:10:44 +010070static struct delay_timer mtu_delay_timer;
Jonas Aaberg2f73a062011-09-14 10:32:51 +020071
Linus Walleijea7113f2013-04-20 16:09:17 +020072#ifdef CONFIG_CLKSRC_NOMADIK_MTU_SCHED_CLOCK
Linus Walleij2a847512010-05-07 10:03:02 +010073/*
Linus Walleij2a847512010-05-07 10:03:02 +010074 * Override the global weak sched_clock symbol with this
75 * local implementation which uses the clocksource to get some
Linus Walleij8fbb97a22010-11-19 10:16:05 +010076 * better resolution when scheduling the kernel.
Linus Walleij2a847512010-05-07 10:03:02 +010077 */
Stephen Boyde25bc5f2013-07-18 16:21:24 -070078static u64 notrace nomadik_read_sched_clock(void)
Linus Walleij2a847512010-05-07 10:03:02 +010079{
Linus Walleij8fbb97a22010-11-19 10:16:05 +010080 if (unlikely(!mtu_base))
81 return 0;
82
Marc Zyngier2f0778af2011-12-15 12:19:23 +010083 return -readl(mtu_base + MTU_VAL(0));
Linus Walleij2a847512010-05-07 10:03:02 +010084}
Mattias Wallincba13832011-05-27 10:29:25 +020085#endif
Jonas Aaberg2f73a062011-09-14 10:32:51 +020086
Fabio Baltieri6f179b72012-12-04 11:10:44 +010087static unsigned long nmdk_timer_read_current_timer(void)
88{
89 return ~readl_relaxed(mtu_base + MTU_VAL(0));
90}
91
Alessandro Rubinib102c012010-03-05 12:38:51 +010092/* Clockevent device: use one-shot mode */
Jonas Aaberg2f73a062011-09-14 10:32:51 +020093static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev)
94{
95 writel(1 << 1, mtu_base + MTU_IMSC);
96 writel(evt, mtu_base + MTU_LR(1));
97 /* Load highest value, enable device, enable interrupts */
98 writel(MTU_CRn_ONESHOT | clk_prescale |
99 MTU_CRn_32BITS | MTU_CRn_ENA,
100 mtu_base + MTU_CR(1));
101
102 return 0;
103}
104
Linus Walleij7172c192013-11-19 22:23:21 +0100105static void nmdk_clkevt_reset(void)
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200106{
107 if (clkevt_periodic) {
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200108 /* Timer: configure load and background-load, and fire it up */
109 writel(nmdk_cycle, mtu_base + MTU_LR(1));
110 writel(nmdk_cycle, mtu_base + MTU_BGLR(1));
111
112 writel(MTU_CRn_PERIODIC | clk_prescale |
113 MTU_CRn_32BITS | MTU_CRn_ENA,
114 mtu_base + MTU_CR(1));
115 writel(1 << 1, mtu_base + MTU_IMSC);
116 } else {
117 /* Generate an interrupt to start the clockevent again */
118 (void) nmdk_clkevt_next(nmdk_cycle, NULL);
119 }
120}
121
Viresh Kumar9b0af692015-06-18 16:24:29 +0530122static int nmdk_clkevt_shutdown(struct clock_event_device *evt)
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100123{
Viresh Kumar9b0af692015-06-18 16:24:29 +0530124 writel(0, mtu_base + MTU_IMSC);
125 /* disable timer */
126 writel(0, mtu_base + MTU_CR(1));
127 /* load some high default value */
128 writel(0xffffffff, mtu_base + MTU_LR(1));
129 return 0;
130}
131
132static int nmdk_clkevt_set_oneshot(struct clock_event_device *evt)
133{
134 clkevt_periodic = false;
135 return 0;
136}
137
138static int nmdk_clkevt_set_periodic(struct clock_event_device *evt)
139{
140 clkevt_periodic = true;
141 nmdk_clkevt_reset();
142 return 0;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100143}
144
Linus Walleij7172c192013-11-19 22:23:21 +0100145static void nmdk_clksrc_reset(void)
Stephen Warren8726e962012-11-07 17:07:45 -0700146{
147 /* Disable */
148 writel(0, mtu_base + MTU_CR(0));
149
150 /* ClockSource: configure load and background-load, and fire it up */
151 writel(nmdk_cycle, mtu_base + MTU_LR(0));
152 writel(nmdk_cycle, mtu_base + MTU_BGLR(0));
153
154 writel(clk_prescale | MTU_CRn_32BITS | MTU_CRn_ENA,
155 mtu_base + MTU_CR(0));
156}
157
158static void nmdk_clkevt_resume(struct clock_event_device *cedev)
159{
160 nmdk_clkevt_reset();
161 nmdk_clksrc_reset();
162}
163
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100164static struct clock_event_device nmdk_clkevt = {
Viresh Kumar9b0af692015-06-18 16:24:29 +0530165 .name = "mtu_1",
166 .features = CLOCK_EVT_FEAT_ONESHOT |
167 CLOCK_EVT_FEAT_PERIODIC |
168 CLOCK_EVT_FEAT_DYNIRQ,
169 .rating = 200,
170 .set_state_shutdown = nmdk_clkevt_shutdown,
171 .set_state_periodic = nmdk_clkevt_set_periodic,
172 .set_state_oneshot = nmdk_clkevt_set_oneshot,
173 .set_next_event = nmdk_clkevt_next,
174 .resume = nmdk_clkevt_resume,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100175};
176
177/*
Alessandro Rubinib102c012010-03-05 12:38:51 +0100178 * IRQ Handler for timer 1 of the MTU block.
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100179 */
180static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id)
181{
Alessandro Rubinib102c012010-03-05 12:38:51 +0100182 struct clock_event_device *evdev = dev_id;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100183
Alessandro Rubinib102c012010-03-05 12:38:51 +0100184 writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */
185 evdev->event_handler(evdev);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100186 return IRQ_HANDLED;
187}
188
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100189static struct irqaction nmdk_timer_irq = {
190 .name = "Nomadik Timer Tick",
Michael Opdenacker38c30a82013-12-09 10:12:10 +0100191 .flags = IRQF_TIMER,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100192 .handler = nmdk_timer_interrupt,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100193 .dev_id = &nmdk_clkevt,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100194};
195
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200196static int __init nmdk_timer_init(void __iomem *base, int irq,
Linus Walleij7172c192013-11-19 22:23:21 +0100197 struct clk *pclk, struct clk *clk)
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100198{
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100199 unsigned long rate;
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200200 int ret;
Linus Walleijba327b12010-05-26 07:38:54 +0100201
Linus Walleijb9576622012-01-11 09:46:59 +0100202 mtu_base = base;
Ulf Hansson16defa62012-10-24 14:13:41 +0200203
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200204 BUG_ON(clk_prepare_enable(pclk));
205 BUG_ON(clk_prepare_enable(clk));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100206
Alessandro Rubinib102c012010-03-05 12:38:51 +0100207 /*
Linus Walleija0719f52010-09-13 13:40:04 +0100208 * Tick rate is 2.4MHz for Nomadik and 2.4Mhz, 100MHz or 133 MHz
209 * for ux500.
210 * Use a divide-by-16 counter if the tick rate is more than 32MHz.
211 * At 32 MHz, the timer (with 32 bit counter) can be programmed
212 * to wake-up at a max 127s a head in time. Dividing a 2.4 MHz timer
213 * with 16 gives too low timer resolution.
Alessandro Rubinib102c012010-03-05 12:38:51 +0100214 */
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200215 rate = clk_get_rate(clk);
Linus Walleija0719f52010-09-13 13:40:04 +0100216 if (rate > 32000000) {
Alessandro Rubinib102c012010-03-05 12:38:51 +0100217 rate /= 16;
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200218 clk_prescale = MTU_CRn_PRESCALE_16;
Alessandro Rubinib102c012010-03-05 12:38:51 +0100219 } else {
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200220 clk_prescale = MTU_CRn_PRESCALE_1;
Alessandro Rubinib102c012010-03-05 12:38:51 +0100221 }
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100222
Linus Walleij21366832012-10-18 11:12:31 +0200223 /* Cycles for periodic mode */
224 nmdk_cycle = DIV_ROUND_CLOSEST(rate, HZ);
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200225
226
Alessandro Rubinib102c012010-03-05 12:38:51 +0100227 /* Timer 0 is the free running clocksource */
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200228 nmdk_clksrc_reset();
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100229
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200230 ret = clocksource_mmio_init(mtu_base + MTU_VAL(0), "mtu_0",
231 rate, 200, 32, clocksource_mmio_readl_down);
232 if (ret) {
233 pr_err("timer: failed to initialize clock source %s\n", "mtu_0");
234 return ret;
235 }
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100236
Linus Walleijea7113f2013-04-20 16:09:17 +0200237#ifdef CONFIG_CLKSRC_NOMADIK_MTU_SCHED_CLOCK
Stephen Boyde25bc5f2013-07-18 16:21:24 -0700238 sched_clock_register(nomadik_read_sched_clock, 32, rate);
Mattias Wallincba13832011-05-27 10:29:25 +0200239#endif
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100240
Linus Walleija3b86a62012-01-11 09:57:56 +0100241 /* Timer 1 is used for events, register irq and clockevents */
Linus Walleij08130692012-10-18 11:06:02 +0200242 setup_irq(irq, &nmdk_timer_irq);
Linus Walleija3b86a62012-01-11 09:57:56 +0100243 nmdk_clkevt.cpumask = cpumask_of(0);
Daniel Lezcano00f4e132013-02-22 16:44:30 +0100244 nmdk_clkevt.irq = irq;
Linus Walleija3b86a62012-01-11 09:57:56 +0100245 clockevents_config_and_register(&nmdk_clkevt, rate, 2, 0xffffffffU);
Fabio Baltieri6f179b72012-12-04 11:10:44 +0100246
247 mtu_delay_timer.read_current_timer = &nmdk_timer_read_current_timer;
248 mtu_delay_timer.freq = rate;
249 register_current_timer_delay(&mtu_delay_timer);
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200250
251 return 0;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100252}
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200253
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200254static int __init nmdk_timer_of_init(struct device_node *node)
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200255{
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200256 struct clk *pclk;
257 struct clk *clk;
258 void __iomem *base;
259 int irq;
260
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200261 base = of_iomap(node, 0);
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200262 if (!base) {
263 pr_err("Can't remap registers");
264 return -ENXIO;
265 }
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200266
267 pclk = of_clk_get_by_name(node, "apb_pclk");
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200268 if (IS_ERR(pclk)) {
269 pr_err("could not get apb_pclk");
270 return PTR_ERR(pclk);
271 }
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200272
273 clk = of_clk_get_by_name(node, "timclk");
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200274 if (IS_ERR(clk)) {
275 pr_err("could not get timclk");
276 return PTR_ERR(clk);
277 }
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200278
279 irq = irq_of_parse_and_map(node, 0);
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200280 if (irq <= 0) {
281 pr_err("Can't parse IRQ");
282 return -EINVAL;
283 }
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200284
Daniel Lezcanoe46105a2016-06-06 17:58:15 +0200285 return nmdk_timer_init(base, irq, pclk, clk);
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200286}
Daniel Lezcano177cf6e2016-06-07 00:27:44 +0200287CLOCKSOURCE_OF_DECLARE(nomadik_mtu, "st,nomadik-mtu",
Rabin Vincentc7785ea2013-04-03 13:28:26 +0200288 nmdk_timer_of_init);