Merge tag 'asoc-fix-v5.0-rc2' of https://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / drivers / clocksource / timer-tegra20.c
1 /*
2  * 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>
19 #include <linux/err.h>
20 #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>
27 #include <linux/of_address.h>
28 #include <linux/of_irq.h>
29 #include <linux/sched_clock.h>
30 #include <linux/delay.h>
31
32 #include <asm/mach/time.h>
33
34 #define RTC_SECONDS            0x08
35 #define RTC_SHADOW_SECONDS     0x0c
36 #define RTC_MILLISECONDS       0x10
37
38 #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
50 static void __iomem *timer_reg_base;
51 static void __iomem *rtc_base;
52
53 static struct timespec64 persistent_ts;
54 static u64 persistent_ms, last_persistent_ms;
55
56 static struct delay_timer tegra_delay_timer;
57
58 #define timer_writel(value, reg) \
59         writel_relaxed(value, timer_reg_base + (reg))
60 #define timer_readl(reg) \
61         readl_relaxed(timer_reg_base + (reg))
62
63 static int tegra_timer_set_next_event(unsigned long cycles,
64                                          struct clock_event_device *evt)
65 {
66         u32 reg;
67
68         reg = 0x80000000 | ((cycles > 1) ? (cycles-1) : 0);
69         timer_writel(reg, TIMER3_BASE + TIMER_PTV);
70
71         return 0;
72 }
73
74 static inline void timer_shutdown(struct clock_event_device *evt)
75 {
76         timer_writel(0, TIMER3_BASE + TIMER_PTV);
77 }
78
79 static int tegra_timer_shutdown(struct clock_event_device *evt)
80 {
81         timer_shutdown(evt);
82         return 0;
83 }
84
85 static int tegra_timer_set_periodic(struct clock_event_device *evt)
86 {
87         u32 reg = 0xC0000000 | ((1000000 / HZ) - 1);
88
89         timer_shutdown(evt);
90         timer_writel(reg, TIMER3_BASE + TIMER_PTV);
91         return 0;
92 }
93
94 static struct clock_event_device tegra_clockevent = {
95         .name                   = "timer0",
96         .rating                 = 300,
97         .features               = CLOCK_EVT_FEAT_ONESHOT |
98                                   CLOCK_EVT_FEAT_PERIODIC |
99                                   CLOCK_EVT_FEAT_DYNIRQ,
100         .set_next_event         = tegra_timer_set_next_event,
101         .set_state_shutdown     = tegra_timer_shutdown,
102         .set_state_periodic     = tegra_timer_set_periodic,
103         .set_state_oneshot      = tegra_timer_shutdown,
104         .tick_resume            = tegra_timer_shutdown,
105 };
106
107 static u64 notrace tegra_read_sched_clock(void)
108 {
109         return timer_readl(TIMERUS_CNTR_1US);
110 }
111
112 /*
113  * tegra_rtc_read - Reads the Tegra RTC registers
114  * Care must be taken that this funciton is not called while the
115  * tegra_rtc driver could be executing to avoid race conditions
116  * on the RTC shadow register
117  */
118 static u64 tegra_rtc_read_ms(void)
119 {
120         u32 ms = readl(rtc_base + RTC_MILLISECONDS);
121         u32 s = readl(rtc_base + RTC_SHADOW_SECONDS);
122         return (u64)s * MSEC_PER_SEC + ms;
123 }
124
125 /*
126  * tegra_read_persistent_clock64 -  Return time from a persistent clock.
127  *
128  * Reads the time from a source which isn't disabled during PM, the
129  * 32k sync timer.  Convert the cycles elapsed since last read into
130  * nsecs and adds to a monotonically increasing timespec64.
131  * Care must be taken that this funciton is not called while the
132  * tegra_rtc driver could be executing to avoid race conditions
133  * on the RTC shadow register
134  */
135 static void tegra_read_persistent_clock64(struct timespec64 *ts)
136 {
137         u64 delta;
138
139         last_persistent_ms = persistent_ms;
140         persistent_ms = tegra_rtc_read_ms();
141         delta = persistent_ms - last_persistent_ms;
142
143         timespec64_add_ns(&persistent_ts, delta * NSEC_PER_MSEC);
144         *ts = persistent_ts;
145 }
146
147 static unsigned long tegra_delay_timer_read_counter_long(void)
148 {
149         return readl(timer_reg_base + TIMERUS_CNTR_1US);
150 }
151
152 static irqreturn_t tegra_timer_interrupt(int irq, void *dev_id)
153 {
154         struct clock_event_device *evt = (struct clock_event_device *)dev_id;
155         timer_writel(1<<30, TIMER3_BASE + TIMER_PCR);
156         evt->event_handler(evt);
157         return IRQ_HANDLED;
158 }
159
160 static struct irqaction tegra_timer_irq = {
161         .name           = "timer0",
162         .flags          = IRQF_TIMER | IRQF_TRIGGER_HIGH,
163         .handler        = tegra_timer_interrupt,
164         .dev_id         = &tegra_clockevent,
165 };
166
167 static int __init tegra20_init_timer(struct device_node *np)
168 {
169         struct clk *clk;
170         unsigned long rate;
171         int ret;
172
173         timer_reg_base = of_iomap(np, 0);
174         if (!timer_reg_base) {
175                 pr_err("Can't map timer registers\n");
176                 return -ENXIO;
177         }
178
179         tegra_timer_irq.irq = irq_of_parse_and_map(np, 2);
180         if (tegra_timer_irq.irq <= 0) {
181                 pr_err("Failed to map timer IRQ\n");
182                 return -EINVAL;
183         }
184
185         clk = of_clk_get(np, 0);
186         if (IS_ERR(clk)) {
187                 pr_warn("Unable to get timer clock. Assuming 12Mhz input clock.\n");
188                 rate = 12000000;
189         } else {
190                 clk_prepare_enable(clk);
191                 rate = clk_get_rate(clk);
192         }
193
194         switch (rate) {
195         case 12000000:
196                 timer_writel(0x000b, TIMERUS_USEC_CFG);
197                 break;
198         case 13000000:
199                 timer_writel(0x000c, TIMERUS_USEC_CFG);
200                 break;
201         case 19200000:
202                 timer_writel(0x045f, TIMERUS_USEC_CFG);
203                 break;
204         case 26000000:
205                 timer_writel(0x0019, TIMERUS_USEC_CFG);
206                 break;
207         default:
208                 WARN(1, "Unknown clock rate");
209         }
210
211         sched_clock_register(tegra_read_sched_clock, 32, 1000000);
212
213         ret = clocksource_mmio_init(timer_reg_base + TIMERUS_CNTR_1US,
214                                     "timer_us", 1000000, 300, 32,
215                                     clocksource_mmio_readl_up);
216         if (ret) {
217                 pr_err("Failed to register clocksource\n");
218                 return ret;
219         }
220
221         tegra_delay_timer.read_current_timer =
222                         tegra_delay_timer_read_counter_long;
223         tegra_delay_timer.freq = 1000000;
224         register_current_timer_delay(&tegra_delay_timer);
225
226         ret = setup_irq(tegra_timer_irq.irq, &tegra_timer_irq);
227         if (ret) {
228                 pr_err("Failed to register timer IRQ: %d\n", ret);
229                 return ret;
230         }
231
232         tegra_clockevent.cpumask = cpu_possible_mask;
233         tegra_clockevent.irq = tegra_timer_irq.irq;
234         clockevents_config_and_register(&tegra_clockevent, 1000000,
235                                         0x1, 0x1fffffff);
236
237         return 0;
238 }
239 TIMER_OF_DECLARE(tegra20_timer, "nvidia,tegra20-timer", tegra20_init_timer);
240
241 static int __init tegra20_init_rtc(struct device_node *np)
242 {
243         struct clk *clk;
244
245         rtc_base = of_iomap(np, 0);
246         if (!rtc_base) {
247                 pr_err("Can't map RTC registers\n");
248                 return -ENXIO;
249         }
250
251         /*
252          * rtc registers are used by read_persistent_clock, keep the rtc clock
253          * enabled
254          */
255         clk = of_clk_get(np, 0);
256         if (IS_ERR(clk))
257                 pr_warn("Unable to get rtc-tegra clock\n");
258         else
259                 clk_prepare_enable(clk);
260
261         return register_persistent_clock(tegra_read_persistent_clock64);
262 }
263 TIMER_OF_DECLARE(tegra20_rtc, "nvidia,tegra20-rtc", tegra20_init_rtc);