blob: d2616ef167701526a13efe7ef896f3cca2c8668a [file] [log] [blame]
Colin Cross2d5cd9a2010-01-28 16:41:42 -08001/*
Colin Cross2d5cd9a2010-01-28 16:41:42 -08002 * Copyright (C) 2010 Google, Inc.
3 *
4 * Author:
5 * Colin Cross <ccross@google.com>
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/init.h>
Colin Cross62248ae2011-02-21 17:04:37 -080019#include <linux/err.h>
Colin Cross2d5cd9a2010-01-28 16:41:42 -080020#include <linux/time.h>
21#include <linux/interrupt.h>
22#include <linux/irq.h>
23#include <linux/clockchips.h>
24#include <linux/clocksource.h>
25#include <linux/clk.h>
26#include <linux/io.h>
Stephen Warren3a049312012-10-23 11:40:25 -060027#include <linux/of_address.h>
Stephen Warren56415482012-09-19 13:13:33 -060028#include <linux/of_irq.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070029#include <linux/sched_clock.h>
Peter De Schrijver0ff36b42014-06-12 18:58:29 +030030#include <linux/delay.h>
Colin Cross2d5cd9a2010-01-28 16:41:42 -080031
32#include <asm/mach/time.h>
Marc Zyngier1fcf3a62012-01-10 19:44:19 +000033#include <asm/smp_twd.h>
Colin Cross2d5cd9a2010-01-28 16:41:42 -080034
Colin Cross09361782010-11-28 16:26:19 -080035#define RTC_SECONDS 0x08
36#define RTC_SHADOW_SECONDS 0x0c
37#define RTC_MILLISECONDS 0x10
38
Colin Cross2d5cd9a2010-01-28 16:41:42 -080039#define TIMERUS_CNTR_1US 0x10
40#define TIMERUS_USEC_CFG 0x14
41#define TIMERUS_CNTR_FREEZE 0x4c
42
43#define TIMER1_BASE 0x0
44#define TIMER2_BASE 0x8
45#define TIMER3_BASE 0x50
46#define TIMER4_BASE 0x58
47
48#define TIMER_PTV 0x0
49#define TIMER_PCR 0x4
50
Stephen Warren3a049312012-10-23 11:40:25 -060051static void __iomem *timer_reg_base;
52static void __iomem *rtc_base;
Colin Cross09361782010-11-28 16:26:19 -080053
54static struct timespec persistent_ts;
55static u64 persistent_ms, last_persistent_ms;
Colin Cross2d5cd9a2010-01-28 16:41:42 -080056
Peter De Schrijver0ff36b42014-06-12 18:58:29 +030057static struct delay_timer tegra_delay_timer;
58
Colin Cross2d5cd9a2010-01-28 16:41:42 -080059#define timer_writel(value, reg) \
Olof Johansson75d71162011-09-08 17:49:13 -070060 __raw_writel(value, timer_reg_base + (reg))
Colin Cross2d5cd9a2010-01-28 16:41:42 -080061#define timer_readl(reg) \
Olof Johansson75d71162011-09-08 17:49:13 -070062 __raw_readl(timer_reg_base + (reg))
Colin Cross2d5cd9a2010-01-28 16:41:42 -080063
64static int tegra_timer_set_next_event(unsigned long cycles,
65 struct clock_event_device *evt)
66{
67 u32 reg;
68
69 reg = 0x80000000 | ((cycles > 1) ? (cycles-1) : 0);
70 timer_writel(reg, TIMER3_BASE + TIMER_PTV);
71
72 return 0;
73}
74
75static void tegra_timer_set_mode(enum clock_event_mode mode,
76 struct clock_event_device *evt)
77{
78 u32 reg;
79
80 timer_writel(0, TIMER3_BASE + TIMER_PTV);
81
82 switch (mode) {
83 case CLOCK_EVT_MODE_PERIODIC:
84 reg = 0xC0000000 | ((1000000/HZ)-1);
85 timer_writel(reg, TIMER3_BASE + TIMER_PTV);
86 break;
87 case CLOCK_EVT_MODE_ONESHOT:
88 break;
89 case CLOCK_EVT_MODE_UNUSED:
90 case CLOCK_EVT_MODE_SHUTDOWN:
91 case CLOCK_EVT_MODE_RESUME:
92 break;
93 }
94}
95
Colin Cross2d5cd9a2010-01-28 16:41:42 -080096static struct clock_event_device tegra_clockevent = {
97 .name = "timer0",
98 .rating = 300,
99 .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC,
100 .set_next_event = tegra_timer_set_next_event,
101 .set_mode = tegra_timer_set_mode,
102};
103
Stephen Boyd35702992013-07-18 16:21:26 -0700104static u64 notrace tegra_read_sched_clock(void)
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800105{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100106 return timer_readl(TIMERUS_CNTR_1US);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800107}
108
Colin Cross09361782010-11-28 16:26:19 -0800109/*
110 * tegra_rtc_read - Reads the Tegra RTC registers
111 * Care must be taken that this funciton is not called while the
112 * tegra_rtc driver could be executing to avoid race conditions
113 * on the RTC shadow register
114 */
Olof Johanssonb28fba22011-09-08 17:50:03 -0700115static u64 tegra_rtc_read_ms(void)
Colin Cross09361782010-11-28 16:26:19 -0800116{
117 u32 ms = readl(rtc_base + RTC_MILLISECONDS);
118 u32 s = readl(rtc_base + RTC_SHADOW_SECONDS);
119 return (u64)s * MSEC_PER_SEC + ms;
120}
121
122/*
Marc Zyngierbd0493e2012-05-05 19:28:44 +0100123 * tegra_read_persistent_clock - Return time from a persistent clock.
Colin Cross09361782010-11-28 16:26:19 -0800124 *
125 * Reads the time from a source which isn't disabled during PM, the
126 * 32k sync timer. Convert the cycles elapsed since last read into
127 * nsecs and adds to a monotonically increasing timespec.
128 * Care must be taken that this funciton is not called while the
129 * tegra_rtc driver could be executing to avoid race conditions
130 * on the RTC shadow register
131 */
Marc Zyngierbd0493e2012-05-05 19:28:44 +0100132static void tegra_read_persistent_clock(struct timespec *ts)
Colin Cross09361782010-11-28 16:26:19 -0800133{
134 u64 delta;
135 struct timespec *tsp = &persistent_ts;
136
137 last_persistent_ms = persistent_ms;
138 persistent_ms = tegra_rtc_read_ms();
139 delta = persistent_ms - last_persistent_ms;
140
141 timespec_add_ns(tsp, delta * NSEC_PER_MSEC);
142 *ts = *tsp;
143}
144
Peter De Schrijver0ff36b42014-06-12 18:58:29 +0300145static unsigned long tegra_delay_timer_read_counter_long(void)
146{
147 return readl(timer_reg_base + TIMERUS_CNTR_1US);
148}
149
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800150static irqreturn_t tegra_timer_interrupt(int irq, void *dev_id)
151{
152 struct clock_event_device *evt = (struct clock_event_device *)dev_id;
153 timer_writel(1<<30, TIMER3_BASE + TIMER_PCR);
154 evt->event_handler(evt);
155 return IRQ_HANDLED;
156}
157
158static struct irqaction tegra_timer_irq = {
159 .name = "timer0",
Michael Opdenacker39304fa2013-12-09 10:35:45 +0100160 .flags = IRQF_TIMER | IRQF_TRIGGER_HIGH,
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800161 .handler = tegra_timer_interrupt,
162 .dev_id = &tegra_clockevent,
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800163};
164
Rob Herringeffbfdd2013-02-06 14:40:22 -0600165static void __init tegra20_init_timer(struct device_node *np)
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800166{
Colin Cross62248ae2011-02-21 17:04:37 -0800167 struct clk *clk;
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200168 unsigned long rate;
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800169 int ret;
170
Stephen Warren3a049312012-10-23 11:40:25 -0600171 timer_reg_base = of_iomap(np, 0);
172 if (!timer_reg_base) {
Hiroshi Doyu37340862012-12-17 13:35:23 +0200173 pr_err("Can't map timer registers\n");
Stephen Warren3a049312012-10-23 11:40:25 -0600174 BUG();
175 }
176
Stephen Warren56415482012-09-19 13:13:33 -0600177 tegra_timer_irq.irq = irq_of_parse_and_map(np, 2);
178 if (tegra_timer_irq.irq <= 0) {
179 pr_err("Failed to map timer IRQ\n");
180 BUG();
181 }
182
Peter De Schrijver6f88fb82013-02-04 15:40:30 +0200183 clk = of_clk_get(np, 0);
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200184 if (IS_ERR(clk)) {
Stephen Warren58664f92012-10-23 12:21:39 -0600185 pr_warn("Unable to get timer clock. Assuming 12Mhz input clock.\n");
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200186 rate = 12000000;
187 } else {
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530188 clk_prepare_enable(clk);
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200189 rate = clk_get_rate(clk);
190 }
Colin Cross62248ae2011-02-21 17:04:37 -0800191
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800192 switch (rate) {
193 case 12000000:
194 timer_writel(0x000b, TIMERUS_USEC_CFG);
195 break;
196 case 13000000:
197 timer_writel(0x000c, TIMERUS_USEC_CFG);
198 break;
199 case 19200000:
200 timer_writel(0x045f, TIMERUS_USEC_CFG);
201 break;
202 case 26000000:
203 timer_writel(0x0019, TIMERUS_USEC_CFG);
204 break;
205 default:
206 WARN(1, "Unknown clock rate");
207 }
208
Stephen Boyd35702992013-07-18 16:21:26 -0700209 sched_clock_register(tegra_read_sched_clock, 32, 1000000);
Russell Kinge3f4c0a2010-12-15 21:49:42 +0000210
Russell King234b6ced2011-05-08 14:09:47 +0100211 if (clocksource_mmio_init(timer_reg_base + TIMERUS_CNTR_1US,
212 "timer_us", 1000000, 300, 32, clocksource_mmio_readl_up)) {
Stephen Warren58664f92012-10-23 12:21:39 -0600213 pr_err("Failed to register clocksource\n");
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800214 BUG();
215 }
216
Peter De Schrijver0ff36b42014-06-12 18:58:29 +0300217 tegra_delay_timer.read_current_timer =
218 tegra_delay_timer_read_counter_long;
219 tegra_delay_timer.freq = 1000000;
220 register_current_timer_delay(&tegra_delay_timer);
221
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800222 ret = setup_irq(tegra_timer_irq.irq, &tegra_timer_irq);
223 if (ret) {
Stephen Warren58664f92012-10-23 12:21:39 -0600224 pr_err("Failed to register timer IRQ: %d\n", ret);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800225 BUG();
226 }
227
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800228 tegra_clockevent.cpumask = cpu_all_mask;
229 tegra_clockevent.irq = tegra_timer_irq.irq;
Shawn Guo838a2ae2013-01-12 11:50:05 +0000230 clockevents_config_and_register(&tegra_clockevent, 1000000,
231 0x1, 0x1fffffff);
Rob Herring1d16cfb2013-02-07 11:36:23 -0600232}
233CLOCKSOURCE_OF_DECLARE(tegra20_timer, "nvidia,tegra20-timer", tegra20_init_timer);
234
235static void __init tegra20_init_rtc(struct device_node *np)
236{
237 struct clk *clk;
238
239 rtc_base = of_iomap(np, 0);
240 if (!rtc_base) {
241 pr_err("Can't map RTC registers");
242 BUG();
243 }
244
245 /*
246 * rtc registers are used by read_persistent_clock, keep the rtc clock
247 * enabled
248 */
Arnd Bergmann80242062013-04-09 15:27:52 +0200249 clk = of_clk_get(np, 0);
Rob Herring1d16cfb2013-02-07 11:36:23 -0600250 if (IS_ERR(clk))
251 pr_warn("Unable to get rtc-tegra clock\n");
252 else
253 clk_prepare_enable(clk);
254
Marc Zyngierbd0493e2012-05-05 19:28:44 +0100255 register_persistent_clock(NULL, tegra_read_persistent_clock);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800256}
Rob Herring1d16cfb2013-02-07 11:36:23 -0600257CLOCKSOURCE_OF_DECLARE(tegra20_rtc, "nvidia,tegra20-rtc", tegra20_init_rtc);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800258
Colin Cross09361782010-11-28 16:26:19 -0800259#ifdef CONFIG_PM
260static u32 usec_config;
261
262void tegra_timer_suspend(void)
263{
264 usec_config = timer_readl(TIMERUS_USEC_CFG);
265}
266
267void tegra_timer_resume(void)
268{
269 timer_writel(usec_config, TIMERUS_USEC_CFG);
270}
271#endif