SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 1 | /* |
Andrew Victor | 9d04126 | 2007-02-05 11:42:07 +0100 | [diff] [blame] | 2 | * linux/arch/arm/mach-at91/at91rm9200_time.c |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2003 SAN People |
| 5 | * Copyright (C) 2003 ATMEL |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 22 | #include <linux/kernel.h> |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 23 | #include <linux/interrupt.h> |
Thomas Gleixner | 07d265d | 2006-07-01 23:01:50 +0100 | [diff] [blame] | 24 | #include <linux/irq.h> |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 25 | #include <linux/clk.h> |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 26 | #include <linux/clockchips.h> |
Joachim Eastwood | 9fce85c | 2012-04-04 19:15:15 +0200 | [diff] [blame] | 27 | #include <linux/export.h> |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 28 | #include <linux/mfd/syscon.h> |
| 29 | #include <linux/mfd/syscon/atmel-st.h> |
Joachim Eastwood | 454c46d | 2012-10-28 18:31:07 +0000 | [diff] [blame] | 30 | #include <linux/of_irq.h> |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 31 | #include <linux/regmap.h> |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 32 | |
Andrew Victor | 963151f | 2006-06-19 15:23:41 +0100 | [diff] [blame] | 33 | static unsigned long last_crtr; |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 34 | static u32 irqmask; |
| 35 | static struct clock_event_device clkevt; |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 36 | static struct regmap *regmap_st; |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 37 | static int timer_latch; |
Jean-Christophe PLAGNIOL-VILLARD | 2f5893c | 2011-10-16 18:17:09 +0800 | [diff] [blame] | 38 | |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 39 | /* |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 40 | * The ST_CRTR is updated asynchronously to the master clock ... but |
| 41 | * the updates as seen by the CPU don't seem to be strictly monotonic. |
| 42 | * Waiting until we read the same value twice avoids glitching. |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 43 | */ |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 44 | static inline unsigned long read_CRTR(void) |
| 45 | { |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 46 | unsigned int x1, x2; |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 47 | |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 48 | regmap_read(regmap_st, AT91_ST_CRTR, &x1); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 49 | do { |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 50 | regmap_read(regmap_st, AT91_ST_CRTR, &x2); |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 51 | if (x1 == x2) |
| 52 | break; |
| 53 | x1 = x2; |
| 54 | } while (1); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 55 | return x1; |
| 56 | } |
| 57 | |
| 58 | /* |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 59 | * IRQ handler for the timer. |
| 60 | */ |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 61 | static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id) |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 62 | { |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 63 | u32 sr; |
| 64 | |
| 65 | regmap_read(regmap_st, AT91_ST_SR, &sr); |
| 66 | sr &= irqmask; |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 67 | |
Uwe Kleine-König | 501d703 | 2009-09-21 09:30:09 +0200 | [diff] [blame] | 68 | /* |
| 69 | * irqs should be disabled here, but as the irq is shared they are only |
| 70 | * guaranteed to be off if the timer irq is registered first. |
| 71 | */ |
| 72 | WARN_ON_ONCE(!irqs_disabled()); |
| 73 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 74 | /* simulate "oneshot" timer with alarm */ |
| 75 | if (sr & AT91_ST_ALMS) { |
| 76 | clkevt.event_handler(&clkevt); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 77 | return IRQ_HANDLED; |
| 78 | } |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 79 | |
| 80 | /* periodic mode should handle delayed ticks */ |
| 81 | if (sr & AT91_ST_PITS) { |
| 82 | u32 crtr = read_CRTR(); |
| 83 | |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 84 | while (((crtr - last_crtr) & AT91_ST_CRTV) >= timer_latch) { |
| 85 | last_crtr += timer_latch; |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 86 | clkevt.event_handler(&clkevt); |
| 87 | } |
| 88 | return IRQ_HANDLED; |
| 89 | } |
| 90 | |
| 91 | /* this irq is shared ... */ |
| 92 | return IRQ_NONE; |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 93 | } |
| 94 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 95 | static cycle_t read_clk32k(struct clocksource *cs) |
Andrew Victor | 2a6f990 | 2006-06-19 15:26:50 +0100 | [diff] [blame] | 96 | { |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 97 | return read_CRTR(); |
Andrew Victor | 2a6f990 | 2006-06-19 15:26:50 +0100 | [diff] [blame] | 98 | } |
| 99 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 100 | static struct clocksource clk32k = { |
| 101 | .name = "32k_counter", |
| 102 | .rating = 150, |
| 103 | .read = read_clk32k, |
| 104 | .mask = CLOCKSOURCE_MASK(20), |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 105 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 106 | }; |
| 107 | |
Viresh Kumar | 8ab2823 | 2015-06-18 16:24:45 +0530 | [diff] [blame] | 108 | static void clkdev32k_disable_and_flush_irq(void) |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 109 | { |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 110 | unsigned int val; |
| 111 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 112 | /* Disable and flush pending timer interrupts */ |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 113 | regmap_write(regmap_st, AT91_ST_IDR, AT91_ST_PITS | AT91_ST_ALMS); |
| 114 | regmap_read(regmap_st, AT91_ST_SR, &val); |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 115 | last_crtr = read_CRTR(); |
Viresh Kumar | 8ab2823 | 2015-06-18 16:24:45 +0530 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | static int clkevt32k_shutdown(struct clock_event_device *evt) |
| 119 | { |
| 120 | clkdev32k_disable_and_flush_irq(); |
| 121 | irqmask = 0; |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 122 | regmap_write(regmap_st, AT91_ST_IER, irqmask); |
Viresh Kumar | 8ab2823 | 2015-06-18 16:24:45 +0530 | [diff] [blame] | 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | static int clkevt32k_set_oneshot(struct clock_event_device *dev) |
| 127 | { |
| 128 | clkdev32k_disable_and_flush_irq(); |
| 129 | |
| 130 | /* |
| 131 | * ALM for oneshot irqs, set by next_event() |
| 132 | * before 32 seconds have passed. |
| 133 | */ |
| 134 | irqmask = AT91_ST_ALMS; |
| 135 | regmap_write(regmap_st, AT91_ST_RTAR, last_crtr); |
| 136 | regmap_write(regmap_st, AT91_ST_IER, irqmask); |
| 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | static int clkevt32k_set_periodic(struct clock_event_device *dev) |
| 141 | { |
| 142 | clkdev32k_disable_and_flush_irq(); |
| 143 | |
| 144 | /* PIT for periodic irqs; fixed rate of 1/HZ */ |
| 145 | irqmask = AT91_ST_PITS; |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 146 | regmap_write(regmap_st, AT91_ST_PIMR, timer_latch); |
Viresh Kumar | 8ab2823 | 2015-06-18 16:24:45 +0530 | [diff] [blame] | 147 | regmap_write(regmap_st, AT91_ST_IER, irqmask); |
| 148 | return 0; |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | static int |
| 152 | clkevt32k_next_event(unsigned long delta, struct clock_event_device *dev) |
| 153 | { |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 154 | u32 alm; |
| 155 | int status = 0; |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 156 | unsigned int val; |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 157 | |
| 158 | BUG_ON(delta < 2); |
| 159 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 160 | /* The alarm IRQ uses absolute time (now+delta), not the relative |
| 161 | * time (delta) in our calling convention. Like all clockevents |
| 162 | * using such "match" hardware, we have a race to defend against. |
| 163 | * |
| 164 | * Our defense here is to have set up the clockevent device so the |
| 165 | * delta is at least two. That way we never end up writing RTAR |
| 166 | * with the value then held in CRTR ... which would mean the match |
| 167 | * wouldn't trigger until 32 seconds later, after CRTR wraps. |
| 168 | */ |
| 169 | alm = read_CRTR(); |
| 170 | |
| 171 | /* Cancel any pending alarm; flush any pending IRQ */ |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 172 | regmap_write(regmap_st, AT91_ST_RTAR, alm); |
| 173 | regmap_read(regmap_st, AT91_ST_SR, &val); |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 174 | |
| 175 | /* Schedule alarm by writing RTAR. */ |
| 176 | alm += delta; |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 177 | regmap_write(regmap_st, AT91_ST_RTAR, alm); |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 178 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 179 | return status; |
| 180 | } |
| 181 | |
| 182 | static struct clock_event_device clkevt = { |
Viresh Kumar | 8ab2823 | 2015-06-18 16:24:45 +0530 | [diff] [blame] | 183 | .name = "at91_tick", |
| 184 | .features = CLOCK_EVT_FEAT_PERIODIC | |
| 185 | CLOCK_EVT_FEAT_ONESHOT, |
| 186 | .rating = 150, |
| 187 | .set_next_event = clkevt32k_next_event, |
| 188 | .set_state_shutdown = clkevt32k_shutdown, |
| 189 | .set_state_periodic = clkevt32k_set_periodic, |
| 190 | .set_state_oneshot = clkevt32k_set_oneshot, |
| 191 | .tick_resume = clkevt32k_shutdown, |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 192 | }; |
| 193 | |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 194 | /* |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 195 | * ST (system timer) module supports both clockevents and clocksource. |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 196 | */ |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 197 | static int __init atmel_st_timer_init(struct device_node *node) |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 198 | { |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 199 | struct clk *sclk; |
| 200 | unsigned int sclk_rate, val; |
Alexandre Belloni | 0afb46b | 2015-03-13 11:54:37 +0100 | [diff] [blame] | 201 | int irq, ret; |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 202 | |
| 203 | regmap_st = syscon_node_to_regmap(node); |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 204 | if (IS_ERR(regmap_st)) { |
| 205 | pr_err("Unable to get regmap\n"); |
| 206 | return PTR_ERR(regmap_st); |
| 207 | } |
Joachim Eastwood | 454c46d | 2012-10-28 18:31:07 +0000 | [diff] [blame] | 208 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 209 | /* Disable all timer interrupts, and clear any pending ones */ |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 210 | regmap_write(regmap_st, AT91_ST_IDR, |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 211 | AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS); |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 212 | regmap_read(regmap_st, AT91_ST_SR, &val); |
| 213 | |
| 214 | /* Get the interrupts property */ |
Alexandre Belloni | 0afb46b | 2015-03-13 11:54:37 +0100 | [diff] [blame] | 215 | irq = irq_of_parse_and_map(node, 0); |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 216 | if (!irq) { |
| 217 | pr_err("Unable to get IRQ from DT\n"); |
| 218 | return -EINVAL; |
| 219 | } |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 220 | |
Andrew Victor | 2a6f990 | 2006-06-19 15:26:50 +0100 | [diff] [blame] | 221 | /* Make IRQs happen for the system timer */ |
Alexandre Belloni | 0afb46b | 2015-03-13 11:54:37 +0100 | [diff] [blame] | 222 | ret = request_irq(irq, at91rm9200_timer_interrupt, |
| 223 | IRQF_SHARED | IRQF_TIMER | IRQF_IRQPOLL, |
| 224 | "at91_tick", regmap_st); |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 225 | if (ret) { |
| 226 | pr_err("Unable to setup IRQ\n"); |
| 227 | return ret; |
| 228 | } |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 229 | |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 230 | sclk = of_clk_get(node, 0); |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 231 | if (IS_ERR(sclk)) { |
| 232 | pr_err("Unable to get slow clock\n"); |
| 233 | return PTR_ERR(sclk); |
| 234 | } |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 235 | |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 236 | ret = clk_prepare_enable(sclk); |
| 237 | if (ret) { |
| 238 | pr_err("Could not enable slow clock\n"); |
| 239 | return ret; |
| 240 | } |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 241 | |
| 242 | sclk_rate = clk_get_rate(sclk); |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 243 | if (!sclk_rate) { |
| 244 | pr_err("Invalid slow clock rate\n"); |
| 245 | return -EINVAL; |
| 246 | } |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 247 | timer_latch = (sclk_rate + HZ / 2) / HZ; |
| 248 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 249 | /* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used |
| 250 | * directly for the clocksource and all clockevents, after adjusting |
| 251 | * its prescaler from the 1 Hz default. |
| 252 | */ |
Alexandre Belloni | adf2edf | 2015-03-12 13:07:32 +0100 | [diff] [blame] | 253 | regmap_write(regmap_st, AT91_ST_RTMR, 1); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 254 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 255 | /* Setup timer clockevent, with minimum of two ticks (important!!) */ |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 256 | clkevt.cpumask = cpumask_of(0); |
Alexandre Belloni | 216ab8f | 2015-08-16 11:23:44 +0200 | [diff] [blame] | 257 | clockevents_config_and_register(&clkevt, sclk_rate, |
Uwe Kleine-König | 1c28353 | 2013-10-08 16:38:53 +0200 | [diff] [blame] | 258 | 2, AT91_ST_ALMV); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 259 | |
David Brownell | 5e802df | 2007-07-31 01:41:26 +0100 | [diff] [blame] | 260 | /* register clocksource */ |
Daniel Lezcano | adbaf52 | 2016-06-06 19:11:12 +0200 | [diff] [blame] | 261 | return clocksource_register_hz(&clk32k, sclk_rate); |
Andrew Victor | 2a6f990 | 2006-06-19 15:26:50 +0100 | [diff] [blame] | 262 | } |
Daniel Lezcano | 177cf6e | 2016-06-07 00:27:44 +0200 | [diff] [blame] | 263 | CLOCKSOURCE_OF_DECLARE(atmel_st_timer, "atmel,at91rm9200-st", |
Alexandre Belloni | bbfc97e | 2015-03-12 13:07:30 +0100 | [diff] [blame] | 264 | atmel_st_timer_init); |