blob: b3396ab15f635a2ea8bbda666d5c9662e4329158 [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>
Colin Cross2d5cd9a2010-01-28 16:41:42 -080029
30#include <asm/mach/time.h>
Marc Zyngier1fcf3a62012-01-10 19:44:19 +000031#include <asm/smp_twd.h>
Russell Kinge3f4c0a2010-12-15 21:49:42 +000032#include <asm/sched_clock.h>
Colin Cross2d5cd9a2010-01-28 16:41:42 -080033
Colin Cross09361782010-11-28 16:26:19 -080034#define RTC_SECONDS 0x08
35#define RTC_SHADOW_SECONDS 0x0c
36#define RTC_MILLISECONDS 0x10
37
Colin Cross2d5cd9a2010-01-28 16:41:42 -080038#define TIMERUS_CNTR_1US 0x10
39#define TIMERUS_USEC_CFG 0x14
40#define TIMERUS_CNTR_FREEZE 0x4c
41
42#define TIMER1_BASE 0x0
43#define TIMER2_BASE 0x8
44#define TIMER3_BASE 0x50
45#define TIMER4_BASE 0x58
46
47#define TIMER_PTV 0x0
48#define TIMER_PCR 0x4
49
Stephen Warren3a049312012-10-23 11:40:25 -060050static void __iomem *timer_reg_base;
51static void __iomem *rtc_base;
Colin Cross09361782010-11-28 16:26:19 -080052
53static struct timespec persistent_ts;
54static u64 persistent_ms, last_persistent_ms;
Colin Cross2d5cd9a2010-01-28 16:41:42 -080055
56#define timer_writel(value, reg) \
Olof Johansson75d71162011-09-08 17:49:13 -070057 __raw_writel(value, timer_reg_base + (reg))
Colin Cross2d5cd9a2010-01-28 16:41:42 -080058#define timer_readl(reg) \
Olof Johansson75d71162011-09-08 17:49:13 -070059 __raw_readl(timer_reg_base + (reg))
Colin Cross2d5cd9a2010-01-28 16:41:42 -080060
61static int tegra_timer_set_next_event(unsigned long cycles,
62 struct clock_event_device *evt)
63{
64 u32 reg;
65
66 reg = 0x80000000 | ((cycles > 1) ? (cycles-1) : 0);
67 timer_writel(reg, TIMER3_BASE + TIMER_PTV);
68
69 return 0;
70}
71
72static void tegra_timer_set_mode(enum clock_event_mode mode,
73 struct clock_event_device *evt)
74{
75 u32 reg;
76
77 timer_writel(0, TIMER3_BASE + TIMER_PTV);
78
79 switch (mode) {
80 case CLOCK_EVT_MODE_PERIODIC:
81 reg = 0xC0000000 | ((1000000/HZ)-1);
82 timer_writel(reg, TIMER3_BASE + TIMER_PTV);
83 break;
84 case CLOCK_EVT_MODE_ONESHOT:
85 break;
86 case CLOCK_EVT_MODE_UNUSED:
87 case CLOCK_EVT_MODE_SHUTDOWN:
88 case CLOCK_EVT_MODE_RESUME:
89 break;
90 }
91}
92
Colin Cross2d5cd9a2010-01-28 16:41:42 -080093static struct clock_event_device tegra_clockevent = {
94 .name = "timer0",
95 .rating = 300,
96 .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC,
97 .set_next_event = tegra_timer_set_next_event,
98 .set_mode = tegra_timer_set_mode,
99};
100
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100101static u32 notrace tegra_read_sched_clock(void)
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800102{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100103 return timer_readl(TIMERUS_CNTR_1US);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800104}
105
Colin Cross09361782010-11-28 16:26:19 -0800106/*
107 * tegra_rtc_read - Reads the Tegra RTC registers
108 * Care must be taken that this funciton is not called while the
109 * tegra_rtc driver could be executing to avoid race conditions
110 * on the RTC shadow register
111 */
Olof Johanssonb28fba22011-09-08 17:50:03 -0700112static u64 tegra_rtc_read_ms(void)
Colin Cross09361782010-11-28 16:26:19 -0800113{
114 u32 ms = readl(rtc_base + RTC_MILLISECONDS);
115 u32 s = readl(rtc_base + RTC_SHADOW_SECONDS);
116 return (u64)s * MSEC_PER_SEC + ms;
117}
118
119/*
Marc Zyngierbd0493e2012-05-05 19:28:44 +0100120 * tegra_read_persistent_clock - Return time from a persistent clock.
Colin Cross09361782010-11-28 16:26:19 -0800121 *
122 * Reads the time from a source which isn't disabled during PM, the
123 * 32k sync timer. Convert the cycles elapsed since last read into
124 * nsecs and adds to a monotonically increasing timespec.
125 * Care must be taken that this funciton is not called while the
126 * tegra_rtc driver could be executing to avoid race conditions
127 * on the RTC shadow register
128 */
Marc Zyngierbd0493e2012-05-05 19:28:44 +0100129static void tegra_read_persistent_clock(struct timespec *ts)
Colin Cross09361782010-11-28 16:26:19 -0800130{
131 u64 delta;
132 struct timespec *tsp = &persistent_ts;
133
134 last_persistent_ms = persistent_ms;
135 persistent_ms = tegra_rtc_read_ms();
136 delta = persistent_ms - last_persistent_ms;
137
138 timespec_add_ns(tsp, delta * NSEC_PER_MSEC);
139 *ts = *tsp;
140}
141
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800142static irqreturn_t tegra_timer_interrupt(int irq, void *dev_id)
143{
144 struct clock_event_device *evt = (struct clock_event_device *)dev_id;
145 timer_writel(1<<30, TIMER3_BASE + TIMER_PCR);
146 evt->event_handler(evt);
147 return IRQ_HANDLED;
148}
149
150static struct irqaction tegra_timer_irq = {
151 .name = "timer0",
152 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_HIGH,
153 .handler = tegra_timer_interrupt,
154 .dev_id = &tegra_clockevent,
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800155};
156
Stephen Warren56415482012-09-19 13:13:33 -0600157static const struct of_device_id timer_match[] __initconst = {
158 { .compatible = "nvidia,tegra20-timer" },
159 {}
160};
Marc Zyngier1fcf3a62012-01-10 19:44:19 +0000161
Stephen Warren3a049312012-10-23 11:40:25 -0600162static const struct of_device_id rtc_match[] __initconst = {
163 { .compatible = "nvidia,tegra20-rtc" },
164 {}
165};
166
Rob Herringeffbfdd2013-02-06 14:40:22 -0600167static void __init tegra20_init_timer(struct device_node *np)
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800168{
Colin Cross62248ae2011-02-21 17:04:37 -0800169 struct clk *clk;
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200170 unsigned long rate;
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800171 int ret;
172
Stephen Warren56415482012-09-19 13:13:33 -0600173 np = of_find_matching_node(NULL, timer_match);
174 if (!np) {
175 pr_err("Failed to find timer DT node\n");
176 BUG();
177 }
178
Stephen Warren3a049312012-10-23 11:40:25 -0600179 timer_reg_base = of_iomap(np, 0);
180 if (!timer_reg_base) {
Hiroshi Doyu37340862012-12-17 13:35:23 +0200181 pr_err("Can't map timer registers\n");
Stephen Warren3a049312012-10-23 11:40:25 -0600182 BUG();
183 }
184
Stephen Warren56415482012-09-19 13:13:33 -0600185 tegra_timer_irq.irq = irq_of_parse_and_map(np, 2);
186 if (tegra_timer_irq.irq <= 0) {
187 pr_err("Failed to map timer IRQ\n");
188 BUG();
189 }
190
Colin Cross62248ae2011-02-21 17:04:37 -0800191 clk = clk_get_sys("timer", NULL);
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200192 if (IS_ERR(clk)) {
Stephen Warren58664f92012-10-23 12:21:39 -0600193 pr_warn("Unable to get timer clock. Assuming 12Mhz input clock.\n");
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200194 rate = 12000000;
195 } else {
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530196 clk_prepare_enable(clk);
Peter De Schrijver8e4fab22011-12-14 17:03:16 +0200197 rate = clk_get_rate(clk);
198 }
Colin Cross62248ae2011-02-21 17:04:37 -0800199
Stephen Warren3a049312012-10-23 11:40:25 -0600200 of_node_put(np);
201
202 np = of_find_matching_node(NULL, rtc_match);
203 if (!np) {
204 pr_err("Failed to find RTC DT node\n");
205 BUG();
206 }
207
208 rtc_base = of_iomap(np, 0);
209 if (!rtc_base) {
210 pr_err("Can't map RTC registers");
211 BUG();
212 }
213
Colin Cross62248ae2011-02-21 17:04:37 -0800214 /*
215 * rtc registers are used by read_persistent_clock, keep the rtc clock
216 * enabled
217 */
218 clk = clk_get_sys("rtc-tegra", NULL);
Peter De Schrijver2d85b5d2011-10-26 11:41:41 +0300219 if (IS_ERR(clk))
220 pr_warn("Unable to get rtc-tegra clock\n");
221 else
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530222 clk_prepare_enable(clk);
Colin Cross62248ae2011-02-21 17:04:37 -0800223
Stephen Warren56415482012-09-19 13:13:33 -0600224 of_node_put(np);
225
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800226 switch (rate) {
227 case 12000000:
228 timer_writel(0x000b, TIMERUS_USEC_CFG);
229 break;
230 case 13000000:
231 timer_writel(0x000c, TIMERUS_USEC_CFG);
232 break;
233 case 19200000:
234 timer_writel(0x045f, TIMERUS_USEC_CFG);
235 break;
236 case 26000000:
237 timer_writel(0x0019, TIMERUS_USEC_CFG);
238 break;
239 default:
240 WARN(1, "Unknown clock rate");
241 }
242
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100243 setup_sched_clock(tegra_read_sched_clock, 32, 1000000);
Russell Kinge3f4c0a2010-12-15 21:49:42 +0000244
Russell King234b6ced2011-05-08 14:09:47 +0100245 if (clocksource_mmio_init(timer_reg_base + TIMERUS_CNTR_1US,
246 "timer_us", 1000000, 300, 32, clocksource_mmio_readl_up)) {
Stephen Warren58664f92012-10-23 12:21:39 -0600247 pr_err("Failed to register clocksource\n");
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800248 BUG();
249 }
250
251 ret = setup_irq(tegra_timer_irq.irq, &tegra_timer_irq);
252 if (ret) {
Stephen Warren58664f92012-10-23 12:21:39 -0600253 pr_err("Failed to register timer IRQ: %d\n", ret);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800254 BUG();
255 }
256
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800257 tegra_clockevent.cpumask = cpu_all_mask;
258 tegra_clockevent.irq = tegra_timer_irq.irq;
Shawn Guo838a2ae2013-01-12 11:50:05 +0000259 clockevents_config_and_register(&tegra_clockevent, 1000000,
260 0x1, 0x1fffffff);
Stephen Warren56415482012-09-19 13:13:33 -0600261#ifdef CONFIG_HAVE_ARM_TWD
262 twd_local_timer_of_register();
263#endif
Marc Zyngierbd0493e2012-05-05 19:28:44 +0100264 register_persistent_clock(NULL, tegra_read_persistent_clock);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800265}
Stephen Warren1711b1e2012-10-23 11:52:53 -0600266CLOCKSOURCE_OF_DECLARE(tegra20, "nvidia,tegra20-timer", tegra20_init_timer);
Colin Cross2d5cd9a2010-01-28 16:41:42 -0800267
Colin Cross09361782010-11-28 16:26:19 -0800268#ifdef CONFIG_PM
269static u32 usec_config;
270
271void tegra_timer_suspend(void)
272{
273 usec_config = timer_readl(TIMERUS_USEC_CFG);
274}
275
276void tegra_timer_resume(void)
277{
278 timer_writel(usec_config, TIMERUS_USEC_CFG);
279}
280#endif