Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 1 | /* |
| 2 | * System timer for CSR SiRFprimaII |
| 3 | * |
| 4 | * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company. |
| 5 | * |
| 6 | * Licensed under GPLv2 or later. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/kernel.h> |
| 10 | #include <linux/interrupt.h> |
| 11 | #include <linux/clockchips.h> |
| 12 | #include <linux/clocksource.h> |
| 13 | #include <linux/bitops.h> |
| 14 | #include <linux/irq.h> |
| 15 | #include <linux/clk.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/of.h> |
Arnd Bergmann | 67d7134 | 2013-03-19 15:31:08 +0100 | [diff] [blame] | 19 | #include <linux/of_irq.h> |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 20 | #include <linux/of_address.h> |
Stephen Boyd | 38ff87f | 2013-06-01 23:39:40 -0700 | [diff] [blame] | 21 | #include <linux/sched_clock.h> |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 22 | |
Uwe Kleine-König | 980c51a | 2013-11-11 21:06:11 +0100 | [diff] [blame] | 23 | #define PRIMA2_CLOCK_FREQ 1000000 |
| 24 | |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 25 | #define SIRFSOC_TIMER_COUNTER_LO 0x0000 |
| 26 | #define SIRFSOC_TIMER_COUNTER_HI 0x0004 |
| 27 | #define SIRFSOC_TIMER_MATCH_0 0x0008 |
| 28 | #define SIRFSOC_TIMER_MATCH_1 0x000C |
| 29 | #define SIRFSOC_TIMER_MATCH_2 0x0010 |
| 30 | #define SIRFSOC_TIMER_MATCH_3 0x0014 |
| 31 | #define SIRFSOC_TIMER_MATCH_4 0x0018 |
| 32 | #define SIRFSOC_TIMER_MATCH_5 0x001C |
| 33 | #define SIRFSOC_TIMER_STATUS 0x0020 |
| 34 | #define SIRFSOC_TIMER_INT_EN 0x0024 |
| 35 | #define SIRFSOC_TIMER_WATCHDOG_EN 0x0028 |
| 36 | #define SIRFSOC_TIMER_DIV 0x002C |
| 37 | #define SIRFSOC_TIMER_LATCH 0x0030 |
| 38 | #define SIRFSOC_TIMER_LATCHED_LO 0x0034 |
| 39 | #define SIRFSOC_TIMER_LATCHED_HI 0x0038 |
| 40 | |
| 41 | #define SIRFSOC_TIMER_WDT_INDEX 5 |
| 42 | |
| 43 | #define SIRFSOC_TIMER_LATCH_BIT BIT(0) |
| 44 | |
Barry Song | e5598a8 | 2011-09-21 20:56:33 +0800 | [diff] [blame] | 45 | #define SIRFSOC_TIMER_REG_CNT 11 |
| 46 | |
| 47 | static const u32 sirfsoc_timer_reg_list[SIRFSOC_TIMER_REG_CNT] = { |
| 48 | SIRFSOC_TIMER_MATCH_0, SIRFSOC_TIMER_MATCH_1, SIRFSOC_TIMER_MATCH_2, |
| 49 | SIRFSOC_TIMER_MATCH_3, SIRFSOC_TIMER_MATCH_4, SIRFSOC_TIMER_MATCH_5, |
| 50 | SIRFSOC_TIMER_INT_EN, SIRFSOC_TIMER_WATCHDOG_EN, SIRFSOC_TIMER_DIV, |
| 51 | SIRFSOC_TIMER_LATCHED_LO, SIRFSOC_TIMER_LATCHED_HI, |
| 52 | }; |
| 53 | |
| 54 | static u32 sirfsoc_timer_reg_val[SIRFSOC_TIMER_REG_CNT]; |
| 55 | |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 56 | static void __iomem *sirfsoc_timer_base; |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 57 | |
| 58 | /* timer0 interrupt handler */ |
| 59 | static irqreturn_t sirfsoc_timer_interrupt(int irq, void *dev_id) |
| 60 | { |
| 61 | struct clock_event_device *ce = dev_id; |
| 62 | |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 63 | WARN_ON(!(readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_STATUS) & |
| 64 | BIT(0))); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 65 | |
| 66 | /* clear timer0 interrupt */ |
| 67 | writel_relaxed(BIT(0), sirfsoc_timer_base + SIRFSOC_TIMER_STATUS); |
| 68 | |
| 69 | ce->event_handler(ce); |
| 70 | |
| 71 | return IRQ_HANDLED; |
| 72 | } |
| 73 | |
| 74 | /* read 64-bit timer counter */ |
Jisheng Zhang | cdc68ec | 2015-10-20 16:02:37 +0800 | [diff] [blame] | 75 | static cycle_t notrace sirfsoc_timer_read(struct clocksource *cs) |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 76 | { |
| 77 | u64 cycles; |
| 78 | |
| 79 | /* latch the 64-bit timer counter */ |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 80 | writel_relaxed(SIRFSOC_TIMER_LATCH_BIT, |
| 81 | sirfsoc_timer_base + SIRFSOC_TIMER_LATCH); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 82 | cycles = readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_LATCHED_HI); |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 83 | cycles = (cycles << 32) | |
| 84 | readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_LATCHED_LO); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 85 | |
| 86 | return cycles; |
| 87 | } |
| 88 | |
| 89 | static int sirfsoc_timer_set_next_event(unsigned long delta, |
| 90 | struct clock_event_device *ce) |
| 91 | { |
| 92 | unsigned long now, next; |
| 93 | |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 94 | writel_relaxed(SIRFSOC_TIMER_LATCH_BIT, |
| 95 | sirfsoc_timer_base + SIRFSOC_TIMER_LATCH); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 96 | now = readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_LATCHED_LO); |
| 97 | next = now + delta; |
| 98 | writel_relaxed(next, sirfsoc_timer_base + SIRFSOC_TIMER_MATCH_0); |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 99 | writel_relaxed(SIRFSOC_TIMER_LATCH_BIT, |
| 100 | sirfsoc_timer_base + SIRFSOC_TIMER_LATCH); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 101 | now = readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_LATCHED_LO); |
| 102 | |
| 103 | return next - now > delta ? -ETIME : 0; |
| 104 | } |
| 105 | |
Viresh Kumar | 53cba06 | 2015-06-18 16:24:49 +0530 | [diff] [blame] | 106 | static int sirfsoc_timer_shutdown(struct clock_event_device *evt) |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 107 | { |
| 108 | u32 val = readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_INT_EN); |
Viresh Kumar | 53cba06 | 2015-06-18 16:24:49 +0530 | [diff] [blame] | 109 | |
| 110 | writel_relaxed(val & ~BIT(0), |
| 111 | sirfsoc_timer_base + SIRFSOC_TIMER_INT_EN); |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | static int sirfsoc_timer_set_oneshot(struct clock_event_device *evt) |
| 116 | { |
| 117 | u32 val = readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_INT_EN); |
| 118 | |
| 119 | writel_relaxed(val | BIT(0), sirfsoc_timer_base + SIRFSOC_TIMER_INT_EN); |
| 120 | return 0; |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 121 | } |
| 122 | |
Barry Song | e5598a8 | 2011-09-21 20:56:33 +0800 | [diff] [blame] | 123 | static void sirfsoc_clocksource_suspend(struct clocksource *cs) |
| 124 | { |
| 125 | int i; |
| 126 | |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 127 | writel_relaxed(SIRFSOC_TIMER_LATCH_BIT, |
| 128 | sirfsoc_timer_base + SIRFSOC_TIMER_LATCH); |
Barry Song | e5598a8 | 2011-09-21 20:56:33 +0800 | [diff] [blame] | 129 | |
| 130 | for (i = 0; i < SIRFSOC_TIMER_REG_CNT; i++) |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 131 | sirfsoc_timer_reg_val[i] = |
| 132 | readl_relaxed(sirfsoc_timer_base + |
| 133 | sirfsoc_timer_reg_list[i]); |
Barry Song | e5598a8 | 2011-09-21 20:56:33 +0800 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | static void sirfsoc_clocksource_resume(struct clocksource *cs) |
| 137 | { |
| 138 | int i; |
| 139 | |
Barry Song | debeaf6 | 2012-07-30 13:29:30 +0800 | [diff] [blame] | 140 | for (i = 0; i < SIRFSOC_TIMER_REG_CNT - 2; i++) |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 141 | writel_relaxed(sirfsoc_timer_reg_val[i], |
| 142 | sirfsoc_timer_base + sirfsoc_timer_reg_list[i]); |
Barry Song | e5598a8 | 2011-09-21 20:56:33 +0800 | [diff] [blame] | 143 | |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 144 | writel_relaxed(sirfsoc_timer_reg_val[SIRFSOC_TIMER_REG_CNT - 2], |
| 145 | sirfsoc_timer_base + SIRFSOC_TIMER_COUNTER_LO); |
| 146 | writel_relaxed(sirfsoc_timer_reg_val[SIRFSOC_TIMER_REG_CNT - 1], |
| 147 | sirfsoc_timer_base + SIRFSOC_TIMER_COUNTER_HI); |
Barry Song | e5598a8 | 2011-09-21 20:56:33 +0800 | [diff] [blame] | 148 | } |
| 149 | |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 150 | static struct clock_event_device sirfsoc_clockevent = { |
| 151 | .name = "sirfsoc_clockevent", |
| 152 | .rating = 200, |
| 153 | .features = CLOCK_EVT_FEAT_ONESHOT, |
Viresh Kumar | 53cba06 | 2015-06-18 16:24:49 +0530 | [diff] [blame] | 154 | .set_state_shutdown = sirfsoc_timer_shutdown, |
| 155 | .set_state_oneshot = sirfsoc_timer_set_oneshot, |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 156 | .set_next_event = sirfsoc_timer_set_next_event, |
| 157 | }; |
| 158 | |
| 159 | static struct clocksource sirfsoc_clocksource = { |
| 160 | .name = "sirfsoc_clocksource", |
| 161 | .rating = 200, |
| 162 | .mask = CLOCKSOURCE_MASK(64), |
| 163 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 164 | .read = sirfsoc_timer_read, |
Barry Song | e5598a8 | 2011-09-21 20:56:33 +0800 | [diff] [blame] | 165 | .suspend = sirfsoc_clocksource_suspend, |
| 166 | .resume = sirfsoc_clocksource_resume, |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 167 | }; |
| 168 | |
| 169 | static struct irqaction sirfsoc_timer_irq = { |
| 170 | .name = "sirfsoc_timer0", |
| 171 | .flags = IRQF_TIMER, |
| 172 | .irq = 0, |
| 173 | .handler = sirfsoc_timer_interrupt, |
| 174 | .dev_id = &sirfsoc_clockevent, |
| 175 | }; |
| 176 | |
| 177 | /* Overwrite weak default sched_clock with more precise one */ |
Stephen Boyd | 130e6b25 | 2013-07-18 16:21:28 -0700 | [diff] [blame] | 178 | static u64 notrace sirfsoc_read_sched_clock(void) |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 179 | { |
Stephen Boyd | 130e6b25 | 2013-07-18 16:21:28 -0700 | [diff] [blame] | 180 | return sirfsoc_timer_read(NULL); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | static void __init sirfsoc_clockevent_init(void) |
| 184 | { |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 185 | sirfsoc_clockevent.cpumask = cpumask_of(0); |
Uwe Kleine-König | 980c51a | 2013-11-11 21:06:11 +0100 | [diff] [blame] | 186 | clockevents_config_and_register(&sirfsoc_clockevent, PRIMA2_CLOCK_FREQ, |
Shawn Guo | 838a2ae | 2013-01-12 11:50:05 +0000 | [diff] [blame] | 187 | 2, -2); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | /* initialize the kernel jiffy timer source */ |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 191 | static int __init sirfsoc_prima2_timer_init(struct device_node *np) |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 192 | { |
| 193 | unsigned long rate; |
Binghua Duan | 198678b | 2012-08-20 06:42:36 +0000 | [diff] [blame] | 194 | struct clk *clk; |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 195 | int ret; |
Binghua Duan | 198678b | 2012-08-20 06:42:36 +0000 | [diff] [blame] | 196 | |
Zhiwu Song | c7cff54 | 2014-05-05 19:30:04 +0800 | [diff] [blame] | 197 | clk = of_clk_get(np, 0); |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 198 | if (IS_ERR(clk)) { |
| 199 | pr_err("Failed to get clock"); |
| 200 | return PTR_ERR(clk); |
| 201 | } |
Zhiwu Song | 3894152 | 2014-07-03 20:52:51 +0800 | [diff] [blame] | 202 | |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 203 | ret = clk_prepare_enable(clk); |
| 204 | if (ret) { |
| 205 | pr_err("Failed to enable clock"); |
| 206 | return ret; |
| 207 | } |
Zhiwu Song | 3894152 | 2014-07-03 20:52:51 +0800 | [diff] [blame] | 208 | |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 209 | rate = clk_get_rate(clk); |
| 210 | |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 211 | if (rate < PRIMA2_CLOCK_FREQ || rate % PRIMA2_CLOCK_FREQ) { |
| 212 | pr_err("Invalid clock rate"); |
| 213 | return -EINVAL; |
| 214 | } |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 215 | |
Arnd Bergmann | 275786b | 2013-03-19 15:27:22 +0100 | [diff] [blame] | 216 | sirfsoc_timer_base = of_iomap(np, 0); |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 217 | if (!sirfsoc_timer_base) { |
| 218 | pr_err("unable to map timer cpu registers\n"); |
| 219 | return -ENXIO; |
| 220 | } |
Arnd Bergmann | 275786b | 2013-03-19 15:27:22 +0100 | [diff] [blame] | 221 | |
| 222 | sirfsoc_timer_irq.irq = irq_of_parse_and_map(np, 0); |
Marc Zyngier | bc8d849 | 2012-01-16 11:44:12 +0000 | [diff] [blame] | 223 | |
Uwe Kleine-König | 980c51a | 2013-11-11 21:06:11 +0100 | [diff] [blame] | 224 | writel_relaxed(rate / PRIMA2_CLOCK_FREQ / 2 - 1, |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 225 | sirfsoc_timer_base + SIRFSOC_TIMER_DIV); |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 226 | writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_COUNTER_LO); |
| 227 | writel_relaxed(0, sirfsoc_timer_base + SIRFSOC_TIMER_COUNTER_HI); |
| 228 | writel_relaxed(BIT(0), sirfsoc_timer_base + SIRFSOC_TIMER_STATUS); |
| 229 | |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 230 | ret = clocksource_register_hz(&sirfsoc_clocksource, PRIMA2_CLOCK_FREQ); |
| 231 | if (ret) { |
| 232 | pr_err("Failed to register clocksource"); |
| 233 | return ret; |
| 234 | } |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 235 | |
Uwe Kleine-König | 980c51a | 2013-11-11 21:06:11 +0100 | [diff] [blame] | 236 | sched_clock_register(sirfsoc_read_sched_clock, 64, PRIMA2_CLOCK_FREQ); |
Marc Zyngier | bc8d849 | 2012-01-16 11:44:12 +0000 | [diff] [blame] | 237 | |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 238 | ret = setup_irq(sirfsoc_timer_irq.irq, &sirfsoc_timer_irq); |
| 239 | if (ret) { |
| 240 | pr_err("Failed to setup irq"); |
| 241 | return ret; |
| 242 | } |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 243 | |
| 244 | sirfsoc_clockevent_init(); |
Daniel Lezcano | de23484 | 2016-06-06 23:02:59 +0200 | [diff] [blame] | 245 | |
| 246 | return 0; |
Binghua Duan | 02c981c | 2011-07-08 17:40:12 +0800 | [diff] [blame] | 247 | } |
Daniel Lezcano | 177cf6e | 2016-06-07 00:27:44 +0200 | [diff] [blame] | 248 | CLOCKSOURCE_OF_DECLARE(sirfsoc_prima2_timer, |
Bin Shi | 4c1ad70 | 2014-05-06 22:42:29 +0800 | [diff] [blame] | 249 | "sirf,prima2-tick", sirfsoc_prima2_timer_init); |