blob: 025afc6dd324949897968f0fac83e1e90eee3d7a [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>
Linus Walleijba327b12010-05-26 07:38:54 +010016#include <linux/clk.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010017#include <linux/jiffies.h>
Linus Walleijba327b12010-05-26 07:38:54 +010018#include <linux/err.h>
Linus Walleij694e33a2012-10-18 14:01:25 +020019#include <linux/platform_data/clocksource-nomadik-mtu.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010020#include <asm/mach/time.h>
Russell Kingec05aa12010-12-15 21:53:02 +000021#include <asm/sched_clock.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010022
Jonas Aaberg05387a92011-09-20 11:18:27 +020023/*
Jonas Aaberg05387a92011-09-20 11:18:27 +020024 * The MTU device hosts four different counters, with 4 set of
25 * registers. These are register names.
26 */
27
28#define MTU_IMSC 0x00 /* Interrupt mask set/clear */
29#define MTU_RIS 0x04 /* Raw interrupt status */
30#define MTU_MIS 0x08 /* Masked interrupt status */
31#define MTU_ICR 0x0C /* Interrupt clear register */
32
33/* per-timer registers take 0..3 as argument */
34#define MTU_LR(x) (0x10 + 0x10 * (x) + 0x00) /* Load value */
35#define MTU_VAL(x) (0x10 + 0x10 * (x) + 0x04) /* Current value */
36#define MTU_CR(x) (0x10 + 0x10 * (x) + 0x08) /* Control reg */
37#define MTU_BGLR(x) (0x10 + 0x10 * (x) + 0x0c) /* At next overflow */
38
39/* bits for the control register */
40#define MTU_CRn_ENA 0x80
41#define MTU_CRn_PERIODIC 0x40 /* if 0 = free-running */
42#define MTU_CRn_PRESCALE_MASK 0x0c
43#define MTU_CRn_PRESCALE_1 0x00
44#define MTU_CRn_PRESCALE_16 0x04
45#define MTU_CRn_PRESCALE_256 0x08
46#define MTU_CRn_32BITS 0x02
47#define MTU_CRn_ONESHOT 0x01 /* if 0 = wraps reloading from BGLR*/
48
49/* Other registers are usual amba/primecell registers, currently not used */
50#define MTU_ITCR 0xff0
51#define MTU_ITOP 0xff4
52
53#define MTU_PERIPH_ID0 0xfe0
54#define MTU_PERIPH_ID1 0xfe4
55#define MTU_PERIPH_ID2 0xfe8
56#define MTU_PERIPH_ID3 0xfeC
57
58#define MTU_PCELL0 0xff0
59#define MTU_PCELL1 0xff4
60#define MTU_PCELL2 0xff8
61#define MTU_PCELL3 0xffC
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010062
Linus Walleijb9576622012-01-11 09:46:59 +010063static void __iomem *mtu_base;
Jonas Aaberg2f73a062011-09-14 10:32:51 +020064static bool clkevt_periodic;
65static u32 clk_prescale;
66static u32 nmdk_cycle; /* write-once */
67
Mattias Wallincba13832011-05-27 10:29:25 +020068#ifdef CONFIG_NOMADIK_MTU_SCHED_CLOCK
Linus Walleij2a847512010-05-07 10:03:02 +010069/*
Linus Walleij2a847512010-05-07 10:03:02 +010070 * Override the global weak sched_clock symbol with this
71 * local implementation which uses the clocksource to get some
Linus Walleij8fbb97a22010-11-19 10:16:05 +010072 * better resolution when scheduling the kernel.
Linus Walleij2a847512010-05-07 10:03:02 +010073 */
Marc Zyngier2f0778af2011-12-15 12:19:23 +010074static u32 notrace nomadik_read_sched_clock(void)
Linus Walleij2a847512010-05-07 10:03:02 +010075{
Linus Walleij8fbb97a22010-11-19 10:16:05 +010076 if (unlikely(!mtu_base))
77 return 0;
78
Marc Zyngier2f0778af2011-12-15 12:19:23 +010079 return -readl(mtu_base + MTU_VAL(0));
Linus Walleij2a847512010-05-07 10:03:02 +010080}
Mattias Wallincba13832011-05-27 10:29:25 +020081#endif
Jonas Aaberg2f73a062011-09-14 10:32:51 +020082
Alessandro Rubinib102c012010-03-05 12:38:51 +010083/* Clockevent device: use one-shot mode */
Jonas Aaberg2f73a062011-09-14 10:32:51 +020084static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev)
85{
86 writel(1 << 1, mtu_base + MTU_IMSC);
87 writel(evt, mtu_base + MTU_LR(1));
88 /* Load highest value, enable device, enable interrupts */
89 writel(MTU_CRn_ONESHOT | clk_prescale |
90 MTU_CRn_32BITS | MTU_CRn_ENA,
91 mtu_base + MTU_CR(1));
92
93 return 0;
94}
95
Jonas Aaberg05387a92011-09-20 11:18:27 +020096void nmdk_clkevt_reset(void)
Jonas Aaberg2f73a062011-09-14 10:32:51 +020097{
98 if (clkevt_periodic) {
Jonas Aaberg2f73a062011-09-14 10:32:51 +020099 /* Timer: configure load and background-load, and fire it up */
100 writel(nmdk_cycle, mtu_base + MTU_LR(1));
101 writel(nmdk_cycle, mtu_base + MTU_BGLR(1));
102
103 writel(MTU_CRn_PERIODIC | clk_prescale |
104 MTU_CRn_32BITS | MTU_CRn_ENA,
105 mtu_base + MTU_CR(1));
106 writel(1 << 1, mtu_base + MTU_IMSC);
107 } else {
108 /* Generate an interrupt to start the clockevent again */
109 (void) nmdk_clkevt_next(nmdk_cycle, NULL);
110 }
111}
112
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100113static void nmdk_clkevt_mode(enum clock_event_mode mode,
114 struct clock_event_device *dev)
115{
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100116 switch (mode) {
117 case CLOCK_EVT_MODE_PERIODIC:
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200118 clkevt_periodic = true;
119 nmdk_clkevt_reset();
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100120 break;
121 case CLOCK_EVT_MODE_ONESHOT:
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200122 clkevt_periodic = false;
Alessandro Rubinib102c012010-03-05 12:38:51 +0100123 break;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100124 case CLOCK_EVT_MODE_SHUTDOWN:
125 case CLOCK_EVT_MODE_UNUSED:
Alessandro Rubinib102c012010-03-05 12:38:51 +0100126 writel(0, mtu_base + MTU_IMSC);
Linus Walleij29179472010-06-01 08:26:49 +0100127 /* disable timer */
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200128 writel(0, mtu_base + MTU_CR(1));
Linus Walleij29179472010-06-01 08:26:49 +0100129 /* load some high default value */
130 writel(0xffffffff, mtu_base + MTU_LR(1));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100131 break;
132 case CLOCK_EVT_MODE_RESUME:
133 break;
134 }
135}
136
Stephen Warren8726e962012-11-07 17:07:45 -0700137void nmdk_clksrc_reset(void)
138{
139 /* Disable */
140 writel(0, mtu_base + MTU_CR(0));
141
142 /* ClockSource: configure load and background-load, and fire it up */
143 writel(nmdk_cycle, mtu_base + MTU_LR(0));
144 writel(nmdk_cycle, mtu_base + MTU_BGLR(0));
145
146 writel(clk_prescale | MTU_CRn_32BITS | MTU_CRn_ENA,
147 mtu_base + MTU_CR(0));
148}
149
150static void nmdk_clkevt_resume(struct clock_event_device *cedev)
151{
152 nmdk_clkevt_reset();
153 nmdk_clksrc_reset();
154}
155
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100156static struct clock_event_device nmdk_clkevt = {
Alessandro Rubinib102c012010-03-05 12:38:51 +0100157 .name = "mtu_1",
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200158 .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100159 .rating = 200,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100160 .set_mode = nmdk_clkevt_mode,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100161 .set_next_event = nmdk_clkevt_next,
Stephen Warren8726e962012-11-07 17:07:45 -0700162 .resume = nmdk_clkevt_resume,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100163};
164
165/*
Alessandro Rubinib102c012010-03-05 12:38:51 +0100166 * IRQ Handler for timer 1 of the MTU block.
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100167 */
168static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id)
169{
Alessandro Rubinib102c012010-03-05 12:38:51 +0100170 struct clock_event_device *evdev = dev_id;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100171
Alessandro Rubinib102c012010-03-05 12:38:51 +0100172 writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */
173 evdev->event_handler(evdev);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100174 return IRQ_HANDLED;
175}
176
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100177static struct irqaction nmdk_timer_irq = {
178 .name = "Nomadik Timer Tick",
179 .flags = IRQF_DISABLED | IRQF_TIMER,
180 .handler = nmdk_timer_interrupt,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100181 .dev_id = &nmdk_clkevt,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100182};
183
Linus Walleij08130692012-10-18 11:06:02 +0200184void __init nmdk_timer_init(void __iomem *base, int irq)
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100185{
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100186 unsigned long rate;
Ulf Hansson16defa62012-10-24 14:13:41 +0200187 struct clk *clk0, *pclk0;
Linus Walleijba327b12010-05-26 07:38:54 +0100188
Linus Walleijb9576622012-01-11 09:46:59 +0100189 mtu_base = base;
Ulf Hansson16defa62012-10-24 14:13:41 +0200190
191 pclk0 = clk_get_sys("mtu0", "apb_pclk");
192 BUG_ON(IS_ERR(pclk0));
193 BUG_ON(clk_prepare(pclk0) < 0);
194 BUG_ON(clk_enable(pclk0) < 0);
195
Linus Walleijba327b12010-05-26 07:38:54 +0100196 clk0 = clk_get_sys("mtu0", NULL);
197 BUG_ON(IS_ERR(clk0));
Linus Walleijd3e8b752012-01-11 09:51:14 +0100198 BUG_ON(clk_prepare(clk0) < 0);
199 BUG_ON(clk_enable(clk0) < 0);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100200
Alessandro Rubinib102c012010-03-05 12:38:51 +0100201 /*
Linus Walleija0719f52010-09-13 13:40:04 +0100202 * Tick rate is 2.4MHz for Nomadik and 2.4Mhz, 100MHz or 133 MHz
203 * for ux500.
204 * Use a divide-by-16 counter if the tick rate is more than 32MHz.
205 * At 32 MHz, the timer (with 32 bit counter) can be programmed
206 * to wake-up at a max 127s a head in time. Dividing a 2.4 MHz timer
207 * with 16 gives too low timer resolution.
Alessandro Rubinib102c012010-03-05 12:38:51 +0100208 */
Linus Walleijba327b12010-05-26 07:38:54 +0100209 rate = clk_get_rate(clk0);
Linus Walleija0719f52010-09-13 13:40:04 +0100210 if (rate > 32000000) {
Alessandro Rubinib102c012010-03-05 12:38:51 +0100211 rate /= 16;
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200212 clk_prescale = MTU_CRn_PRESCALE_16;
Alessandro Rubinib102c012010-03-05 12:38:51 +0100213 } else {
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200214 clk_prescale = MTU_CRn_PRESCALE_1;
Alessandro Rubinib102c012010-03-05 12:38:51 +0100215 }
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100216
Linus Walleij21366832012-10-18 11:12:31 +0200217 /* Cycles for periodic mode */
218 nmdk_cycle = DIV_ROUND_CLOSEST(rate, HZ);
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200219
220
Alessandro Rubinib102c012010-03-05 12:38:51 +0100221 /* Timer 0 is the free running clocksource */
Jonas Aaberg2f73a062011-09-14 10:32:51 +0200222 nmdk_clksrc_reset();
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100223
Russell Kingbfe45e02011-05-08 15:33:30 +0100224 if (clocksource_mmio_init(mtu_base + MTU_VAL(0), "mtu_0",
225 rate, 200, 32, clocksource_mmio_readl_down))
Alessandro Rubinib102c012010-03-05 12:38:51 +0100226 pr_err("timer: failed to initialize clock source %s\n",
Russell Kingbfe45e02011-05-08 15:33:30 +0100227 "mtu_0");
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100228
Mattias Wallincba13832011-05-27 10:29:25 +0200229#ifdef CONFIG_NOMADIK_MTU_SCHED_CLOCK
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100230 setup_sched_clock(nomadik_read_sched_clock, 32, rate);
Mattias Wallincba13832011-05-27 10:29:25 +0200231#endif
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100232
Linus Walleija3b86a62012-01-11 09:57:56 +0100233 /* Timer 1 is used for events, register irq and clockevents */
Linus Walleij08130692012-10-18 11:06:02 +0200234 setup_irq(irq, &nmdk_timer_irq);
Linus Walleija3b86a62012-01-11 09:57:56 +0100235 nmdk_clkevt.cpumask = cpumask_of(0);
236 clockevents_config_and_register(&nmdk_clkevt, rate, 2, 0xffffffffU);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100237}