Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/plat-mxc/time.c |
| 3 | * |
| 4 | * Copyright (C) 2000-2001 Deep Blue Solutions |
| 5 | * Copyright (C) 2002 Shane Nay (shane@minirl.com) |
| 6 | * Copyright (C) 2006-2007 Pavel Pisa (ppisa@pikron.com) |
| 7 | * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de) |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License |
| 11 | * as published by the Free Software Foundation; either version 2 |
| 12 | * of the License, or (at your option) any later version. |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 21 | * MA 02110-1301, USA. |
| 22 | */ |
| 23 | |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/irq.h> |
| 26 | #include <linux/clockchips.h> |
| 27 | #include <linux/clk.h> |
Sebastian Andrzej Siewior | 1119c84 | 2014-01-22 12:35:44 +0100 | [diff] [blame] | 28 | #include <linux/delay.h> |
Sascha Hauer | 821dc4d | 2012-03-09 09:29:27 +0100 | [diff] [blame] | 29 | #include <linux/err.h> |
Stephen Boyd | 38ff87f | 2013-06-01 23:39:40 -0700 | [diff] [blame] | 30 | #include <linux/sched_clock.h> |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 31 | #include <linux/slab.h> |
Gilles Chanteperdrix | 876292d | 2014-04-05 17:57:45 +0200 | [diff] [blame] | 32 | #include <linux/of.h> |
| 33 | #include <linux/of_address.h> |
| 34 | #include <linux/of_irq.h> |
Shawn Guo | 0931aff | 2015-05-15 11:41:39 +0800 | [diff] [blame] | 35 | #include <soc/imx/timer.h> |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 36 | |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 37 | #include <asm/mach/time.h> |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 38 | |
| 39 | #include "common.h" |
Shawn Guo | 50f2de6 | 2012-09-14 14:14:45 +0800 | [diff] [blame] | 40 | #include "hardware.h" |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 41 | |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 42 | /* |
Shenwei Wang | 65d0a16 | 2015-04-29 16:40:27 -0500 | [diff] [blame] | 43 | * There are 4 versions of the timer hardware on Freescale MXC hardware. |
| 44 | * - MX1/MXL |
| 45 | * - MX21, MX27. |
| 46 | * - MX25, MX31, MX35, MX37, MX51, MX6Q(rev1.0) |
| 47 | * - MX6DL, MX6SX, MX6Q(rev1.1+) |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 48 | */ |
| 49 | |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 50 | /* defines common for all i.MX */ |
| 51 | #define MXC_TCTL 0x00 |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 52 | #define MXC_TCTL_TEN (1 << 0) /* Enable module */ |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 53 | #define MXC_TPRER 0x04 |
| 54 | |
| 55 | /* MX1, MX21, MX27 */ |
| 56 | #define MX1_2_TCTL_CLK_PCLK1 (1 << 1) |
| 57 | #define MX1_2_TCTL_IRQEN (1 << 4) |
| 58 | #define MX1_2_TCTL_FRR (1 << 8) |
| 59 | #define MX1_2_TCMP 0x08 |
| 60 | #define MX1_2_TCN 0x10 |
| 61 | #define MX1_2_TSTAT 0x14 |
| 62 | |
| 63 | /* MX21, MX27 */ |
| 64 | #define MX2_TSTAT_CAPT (1 << 1) |
| 65 | #define MX2_TSTAT_COMP (1 << 0) |
| 66 | |
Anson Huang | bad3db1 | 2014-09-11 11:29:42 +0800 | [diff] [blame] | 67 | /* MX31, MX35, MX25, MX5, MX6 */ |
Amit Kucheria | 38a66f5 | 2010-04-21 21:34:36 +0300 | [diff] [blame] | 68 | #define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */ |
| 69 | #define V2_TCTL_CLK_IPG (1 << 6) |
Richard Zhao | 1f152b4 | 2012-05-15 15:34:40 +0800 | [diff] [blame] | 70 | #define V2_TCTL_CLK_PER (2 << 6) |
Anson Huang | bad3db1 | 2014-09-11 11:29:42 +0800 | [diff] [blame] | 71 | #define V2_TCTL_CLK_OSC_DIV8 (5 << 6) |
Amit Kucheria | 38a66f5 | 2010-04-21 21:34:36 +0300 | [diff] [blame] | 72 | #define V2_TCTL_FRR (1 << 9) |
Anson Huang | bad3db1 | 2014-09-11 11:29:42 +0800 | [diff] [blame] | 73 | #define V2_TCTL_24MEN (1 << 10) |
| 74 | #define V2_TPRER_PRE24M 12 |
Amit Kucheria | 38a66f5 | 2010-04-21 21:34:36 +0300 | [diff] [blame] | 75 | #define V2_IR 0x0c |
| 76 | #define V2_TSTAT 0x08 |
| 77 | #define V2_TSTAT_OF1 (1 << 0) |
| 78 | #define V2_TCN 0x24 |
| 79 | #define V2_TCMP 0x10 |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 80 | |
Anson Huang | bad3db1 | 2014-09-11 11:29:42 +0800 | [diff] [blame] | 81 | #define V2_TIMER_RATE_OSC_DIV8 3000000 |
| 82 | |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 83 | #define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27()) |
| 84 | #define timer_is_v2() (!timer_is_v1()) |
| 85 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 86 | struct imx_timer { |
Shawn Guo | 0931aff | 2015-05-15 11:41:39 +0800 | [diff] [blame] | 87 | enum imx_gpt_type type; |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 88 | void __iomem *base; |
| 89 | int irq; |
| 90 | struct clk *clk_per; |
| 91 | struct clk *clk_ipg; |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 92 | const struct imx_gpt_data *gpt; |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 93 | struct clock_event_device ced; |
| 94 | enum clock_event_mode cem; |
| 95 | struct irqaction act; |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | struct imx_gpt_data { |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 99 | int reg_tstat; |
| 100 | int reg_tcn; |
| 101 | int reg_tcmp; |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 102 | void (*gpt_setup_tctl)(struct imx_timer *imxtm); |
Shawn Guo | 5ab0475 | 2015-05-22 15:51:41 +0800 | [diff] [blame] | 103 | int (*set_next_event)(unsigned long evt, |
| 104 | struct clock_event_device *ced); |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 105 | }; |
| 106 | |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 107 | static void __iomem *timer_base; |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 108 | |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 109 | static inline struct imx_timer *to_imx_timer(struct clock_event_device *ced) |
| 110 | { |
| 111 | return container_of(ced, struct imx_timer, ced); |
| 112 | } |
| 113 | |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 114 | static inline void gpt_irq_disable(void) |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 115 | { |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 116 | unsigned int tmp; |
| 117 | |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 118 | if (timer_is_v2()) |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 119 | writel_relaxed(0, timer_base + V2_IR); |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 120 | else { |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 121 | tmp = readl_relaxed(timer_base + MXC_TCTL); |
| 122 | writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL); |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | |
| 126 | static inline void gpt_irq_enable(void) |
| 127 | { |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 128 | if (timer_is_v2()) |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 129 | writel_relaxed(1<<0, timer_base + V2_IR); |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 130 | else { |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 131 | writel_relaxed(readl_relaxed(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN, |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 132 | timer_base + MXC_TCTL); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | static void gpt_irq_acknowledge(void) |
| 137 | { |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 138 | if (timer_is_v1()) { |
| 139 | if (cpu_is_mx1()) |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 140 | writel_relaxed(0, timer_base + MX1_2_TSTAT); |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 141 | else |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 142 | writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP, |
Sascha Hauer | 0f3332c | 2009-12-04 09:34:51 +0100 | [diff] [blame] | 143 | timer_base + MX1_2_TSTAT); |
| 144 | } else if (timer_is_v2()) |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 145 | writel_relaxed(V2_TSTAT_OF1, timer_base + V2_TSTAT); |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 146 | } |
| 147 | |
Russell King | 234b6ced | 2011-05-08 14:09:47 +0100 | [diff] [blame] | 148 | static void __iomem *sched_clock_reg; |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 149 | |
Stephen Boyd | b93767e | 2013-11-15 15:26:12 -0800 | [diff] [blame] | 150 | static u64 notrace mxc_read_sched_clock(void) |
Jan Weitzel | c124bef | 2011-03-17 13:44:30 +0100 | [diff] [blame] | 151 | { |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 152 | return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0; |
Jan Weitzel | c124bef | 2011-03-17 13:44:30 +0100 | [diff] [blame] | 153 | } |
| 154 | |
Sebastian Andrzej Siewior | 1119c84 | 2014-01-22 12:35:44 +0100 | [diff] [blame] | 155 | static struct delay_timer imx_delay_timer; |
| 156 | |
| 157 | static unsigned long imx_read_current_timer(void) |
| 158 | { |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 159 | return readl_relaxed(sched_clock_reg); |
Sebastian Andrzej Siewior | 1119c84 | 2014-01-22 12:35:44 +0100 | [diff] [blame] | 160 | } |
| 161 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 162 | static int __init mxc_clocksource_init(struct imx_timer *imxtm) |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 163 | { |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 164 | unsigned int c = clk_get_rate(imxtm->clk_per); |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 165 | void __iomem *reg = imxtm->base + imxtm->gpt->reg_tcn; |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 166 | |
Sebastian Andrzej Siewior | 1119c84 | 2014-01-22 12:35:44 +0100 | [diff] [blame] | 167 | imx_delay_timer.read_current_timer = &imx_read_current_timer; |
| 168 | imx_delay_timer.freq = c; |
| 169 | register_current_timer_delay(&imx_delay_timer); |
| 170 | |
Russell King | 234b6ced | 2011-05-08 14:09:47 +0100 | [diff] [blame] | 171 | sched_clock_reg = reg; |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 172 | |
Stephen Boyd | b93767e | 2013-11-15 15:26:12 -0800 | [diff] [blame] | 173 | sched_clock_register(mxc_read_sched_clock, 32, c); |
Russell King | 234b6ced | 2011-05-08 14:09:47 +0100 | [diff] [blame] | 174 | return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32, |
| 175 | clocksource_mmio_readl_up); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /* clock event */ |
| 179 | |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 180 | static int mx1_2_set_next_event(unsigned long evt, |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 181 | struct clock_event_device *unused) |
| 182 | { |
| 183 | unsigned long tcmp; |
| 184 | |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 185 | tcmp = readl_relaxed(timer_base + MX1_2_TCN) + evt; |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 186 | |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 187 | writel_relaxed(tcmp, timer_base + MX1_2_TCMP); |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 188 | |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 189 | return (int)(tcmp - readl_relaxed(timer_base + MX1_2_TCN)) < 0 ? |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 190 | -ETIME : 0; |
| 191 | } |
| 192 | |
Amit Kucheria | 38a66f5 | 2010-04-21 21:34:36 +0300 | [diff] [blame] | 193 | static int v2_set_next_event(unsigned long evt, |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 194 | struct clock_event_device *unused) |
| 195 | { |
| 196 | unsigned long tcmp; |
| 197 | |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 198 | tcmp = readl_relaxed(timer_base + V2_TCN) + evt; |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 199 | |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 200 | writel_relaxed(tcmp, timer_base + V2_TCMP); |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 201 | |
Shawn Guo | eea8e32 | 2012-12-06 22:54:41 +0800 | [diff] [blame] | 202 | return evt < 0x7fffffff && |
Shawn Guo | c7770bb | 2015-05-19 18:47:47 +0800 | [diff] [blame] | 203 | (int)(tcmp - readl_relaxed(timer_base + V2_TCN)) < 0 ? |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 204 | -ETIME : 0; |
| 205 | } |
| 206 | |
| 207 | #ifdef DEBUG |
| 208 | static const char *clock_event_mode_label[] = { |
| 209 | [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC", |
| 210 | [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT", |
| 211 | [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN", |
Uwe Kleine-König | de9c515 | 2012-07-16 22:07:06 +0200 | [diff] [blame] | 212 | [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED", |
| 213 | [CLOCK_EVT_MODE_RESUME] = "CLOCK_EVT_MODE_RESUME", |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 214 | }; |
| 215 | #endif /* DEBUG */ |
| 216 | |
| 217 | static void mxc_set_mode(enum clock_event_mode mode, |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 218 | struct clock_event_device *ced) |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 219 | { |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 220 | struct imx_timer *imxtm = to_imx_timer(ced); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 221 | unsigned long flags; |
| 222 | |
| 223 | /* |
| 224 | * The timer interrupt generation is disabled at least |
| 225 | * for enough time to call mxc_set_next_event() |
| 226 | */ |
| 227 | local_irq_save(flags); |
| 228 | |
| 229 | /* Disable interrupt in GPT module */ |
| 230 | gpt_irq_disable(); |
| 231 | |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 232 | if (mode != imxtm->cem) { |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 233 | u32 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 234 | /* Set event time into far-far future */ |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 235 | writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp); |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 236 | |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 237 | /* Clear pending interrupt */ |
| 238 | gpt_irq_acknowledge(); |
| 239 | } |
| 240 | |
| 241 | #ifdef DEBUG |
| 242 | printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n", |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 243 | clock_event_mode_label[imxtm->cem], |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 244 | clock_event_mode_label[mode]); |
| 245 | #endif /* DEBUG */ |
| 246 | |
| 247 | /* Remember timer mode */ |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 248 | imxtm->cem = mode; |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 249 | local_irq_restore(flags); |
| 250 | |
| 251 | switch (mode) { |
| 252 | case CLOCK_EVT_MODE_PERIODIC: |
| 253 | printk(KERN_ERR"mxc_set_mode: Periodic mode is not " |
| 254 | "supported for i.MX\n"); |
| 255 | break; |
| 256 | case CLOCK_EVT_MODE_ONESHOT: |
| 257 | /* |
| 258 | * Do not put overhead of interrupt enable/disable into |
| 259 | * mxc_set_next_event(), the core has about 4 minutes |
| 260 | * to call mxc_set_next_event() or shutdown clock after |
| 261 | * mode switching |
| 262 | */ |
| 263 | local_irq_save(flags); |
| 264 | gpt_irq_enable(); |
| 265 | local_irq_restore(flags); |
| 266 | break; |
| 267 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 268 | case CLOCK_EVT_MODE_UNUSED: |
| 269 | case CLOCK_EVT_MODE_RESUME: |
| 270 | /* Left event sources disabled, no more interrupts appear */ |
| 271 | break; |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | /* |
| 276 | * IRQ handler for the timer |
| 277 | */ |
| 278 | static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id) |
| 279 | { |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 280 | struct clock_event_device *ced = dev_id; |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 281 | struct imx_timer *imxtm = to_imx_timer(ced); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 282 | uint32_t tstat; |
| 283 | |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 284 | tstat = readl_relaxed(imxtm->base + imxtm->gpt->reg_tstat); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 285 | |
| 286 | gpt_irq_acknowledge(); |
| 287 | |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 288 | ced->event_handler(ced); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 289 | |
| 290 | return IRQ_HANDLED; |
| 291 | } |
| 292 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 293 | static int __init mxc_clockevent_init(struct imx_timer *imxtm) |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 294 | { |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 295 | struct clock_event_device *ced = &imxtm->ced; |
| 296 | struct irqaction *act = &imxtm->act; |
| 297 | |
| 298 | imxtm->cem = CLOCK_EVT_MODE_UNUSED; |
| 299 | |
| 300 | ced->name = "mxc_timer1"; |
| 301 | ced->features = CLOCK_EVT_FEAT_ONESHOT; |
| 302 | ced->set_mode = mxc_set_mode; |
| 303 | ced->set_next_event = imxtm->gpt->set_next_event; |
| 304 | ced->rating = 200; |
| 305 | ced->cpumask = cpumask_of(0); |
| 306 | clockevents_config_and_register(ced, clk_get_rate(imxtm->clk_per), |
Shawn Guo | 838a2ae | 2013-01-12 11:50:05 +0000 | [diff] [blame] | 307 | 0xff, 0xfffffffe); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 308 | |
Shawn Guo | e510d20 | 2015-05-22 16:38:49 +0800 | [diff] [blame] | 309 | act->name = "i.MX Timer Tick"; |
| 310 | act->flags = IRQF_TIMER | IRQF_IRQPOLL; |
| 311 | act->handler = mxc_timer_interrupt; |
| 312 | act->dev_id = ced; |
| 313 | |
| 314 | return setup_irq(imxtm->irq, act); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 315 | } |
| 316 | |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 317 | static void imx1_gpt_setup_tctl(struct imx_timer *imxtm) |
| 318 | { |
| 319 | u32 tctl_val; |
| 320 | |
| 321 | tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN; |
| 322 | writel_relaxed(tctl_val, imxtm->base + MXC_TCTL); |
| 323 | } |
| 324 | #define imx21_gpt_setup_tctl imx1_gpt_setup_tctl |
| 325 | |
| 326 | static void imx31_gpt_setup_tctl(struct imx_timer *imxtm) |
| 327 | { |
| 328 | u32 tctl_val; |
| 329 | |
| 330 | tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN; |
| 331 | if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) |
| 332 | tctl_val |= V2_TCTL_CLK_OSC_DIV8; |
| 333 | else |
| 334 | tctl_val |= V2_TCTL_CLK_PER; |
| 335 | |
| 336 | writel_relaxed(tctl_val, imxtm->base + MXC_TCTL); |
| 337 | } |
| 338 | |
| 339 | static void imx6dl_gpt_setup_tctl(struct imx_timer *imxtm) |
| 340 | { |
| 341 | u32 tctl_val; |
| 342 | |
| 343 | tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN; |
| 344 | if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) { |
| 345 | tctl_val |= V2_TCTL_CLK_OSC_DIV8; |
| 346 | /* 24 / 8 = 3 MHz */ |
| 347 | writel_relaxed(7 << V2_TPRER_PRE24M, imxtm->base + MXC_TPRER); |
| 348 | tctl_val |= V2_TCTL_24MEN; |
| 349 | } else { |
| 350 | tctl_val |= V2_TCTL_CLK_PER; |
| 351 | } |
| 352 | |
| 353 | writel_relaxed(tctl_val, imxtm->base + MXC_TCTL); |
| 354 | } |
| 355 | |
| 356 | static const struct imx_gpt_data imx1_gpt_data = { |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 357 | .reg_tstat = MX1_2_TSTAT, |
| 358 | .reg_tcn = MX1_2_TCN, |
| 359 | .reg_tcmp = MX1_2_TCMP, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 360 | .gpt_setup_tctl = imx1_gpt_setup_tctl, |
Shawn Guo | 5ab0475 | 2015-05-22 15:51:41 +0800 | [diff] [blame] | 361 | .set_next_event = mx1_2_set_next_event, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 362 | }; |
| 363 | |
| 364 | static const struct imx_gpt_data imx21_gpt_data = { |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 365 | .reg_tstat = MX1_2_TSTAT, |
| 366 | .reg_tcn = MX1_2_TCN, |
| 367 | .reg_tcmp = MX1_2_TCMP, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 368 | .gpt_setup_tctl = imx21_gpt_setup_tctl, |
Shawn Guo | 5ab0475 | 2015-05-22 15:51:41 +0800 | [diff] [blame] | 369 | .set_next_event = mx1_2_set_next_event, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 370 | }; |
| 371 | |
| 372 | static const struct imx_gpt_data imx31_gpt_data = { |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 373 | .reg_tstat = V2_TSTAT, |
| 374 | .reg_tcn = V2_TCN, |
| 375 | .reg_tcmp = V2_TCMP, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 376 | .gpt_setup_tctl = imx31_gpt_setup_tctl, |
Shawn Guo | 5ab0475 | 2015-05-22 15:51:41 +0800 | [diff] [blame] | 377 | .set_next_event = v2_set_next_event, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 378 | }; |
| 379 | |
| 380 | static const struct imx_gpt_data imx6dl_gpt_data = { |
Shawn Guo | 24f74ad | 2015-05-22 21:39:55 +0800 | [diff] [blame^] | 381 | .reg_tstat = V2_TSTAT, |
| 382 | .reg_tcn = V2_TCN, |
| 383 | .reg_tcmp = V2_TCMP, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 384 | .gpt_setup_tctl = imx6dl_gpt_setup_tctl, |
Shawn Guo | 5ab0475 | 2015-05-22 15:51:41 +0800 | [diff] [blame] | 385 | .set_next_event = v2_set_next_event, |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 386 | }; |
| 387 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 388 | static void __init _mxc_timer_init(struct imx_timer *imxtm) |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 389 | { |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 390 | /* Temporary */ |
| 391 | timer_base = imxtm->base; |
| 392 | |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 393 | switch (imxtm->type) { |
| 394 | case GPT_TYPE_IMX1: |
| 395 | imxtm->gpt = &imx1_gpt_data; |
| 396 | break; |
| 397 | case GPT_TYPE_IMX21: |
| 398 | imxtm->gpt = &imx21_gpt_data; |
| 399 | break; |
| 400 | case GPT_TYPE_IMX31: |
| 401 | imxtm->gpt = &imx31_gpt_data; |
| 402 | break; |
| 403 | case GPT_TYPE_IMX6DL: |
| 404 | imxtm->gpt = &imx6dl_gpt_data; |
| 405 | break; |
| 406 | default: |
| 407 | BUG(); |
| 408 | } |
| 409 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 410 | if (IS_ERR(imxtm->clk_per)) { |
Sascha Hauer | 2cfb451 | 2012-05-16 12:29:53 +0200 | [diff] [blame] | 411 | pr_err("i.MX timer: unable to get clk\n"); |
| 412 | return; |
Sascha Hauer | 821dc4d | 2012-03-09 09:29:27 +0100 | [diff] [blame] | 413 | } |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 414 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 415 | if (!IS_ERR(imxtm->clk_ipg)) |
| 416 | clk_prepare_enable(imxtm->clk_ipg); |
Sascha Hauer | 2cfb451 | 2012-05-16 12:29:53 +0200 | [diff] [blame] | 417 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 418 | clk_prepare_enable(imxtm->clk_per); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 419 | |
| 420 | /* |
| 421 | * Initialise to a known state (all timers off, and timing reset) |
| 422 | */ |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 423 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 424 | writel_relaxed(0, imxtm->base + MXC_TCTL); |
| 425 | writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */ |
Sascha Hauer | ec996ba | 2009-02-18 20:58:40 +0100 | [diff] [blame] | 426 | |
Shawn Guo | 9c8694b | 2015-05-15 14:24:41 +0800 | [diff] [blame] | 427 | imxtm->gpt->gpt_setup_tctl(imxtm); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 428 | |
| 429 | /* init and register the timer to the framework */ |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 430 | mxc_clocksource_init(imxtm); |
| 431 | mxc_clockevent_init(imxtm); |
Juergen Beisert | d0f349f | 2008-07-05 10:02:50 +0200 | [diff] [blame] | 432 | } |
Gilles Chanteperdrix | 876292d | 2014-04-05 17:57:45 +0200 | [diff] [blame] | 433 | |
Shawn Guo | 0931aff | 2015-05-15 11:41:39 +0800 | [diff] [blame] | 434 | void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type) |
Alexander Shiyan | f469675 | 2014-05-27 13:04:46 +0400 | [diff] [blame] | 435 | { |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 436 | struct imx_timer *imxtm; |
Alexander Shiyan | f469675 | 2014-05-27 13:04:46 +0400 | [diff] [blame] | 437 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 438 | imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL); |
| 439 | BUG_ON(!imxtm); |
Alexander Shiyan | d7f9891 | 2014-05-27 13:04:47 +0400 | [diff] [blame] | 440 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 441 | imxtm->clk_per = clk_get_sys("imx-gpt.0", "per"); |
| 442 | imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg"); |
| 443 | |
| 444 | imxtm->base = ioremap(pbase, SZ_4K); |
| 445 | BUG_ON(!imxtm->base); |
| 446 | |
Shawn Guo | 0931aff | 2015-05-15 11:41:39 +0800 | [diff] [blame] | 447 | imxtm->type = type; |
| 448 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 449 | _mxc_timer_init(imxtm); |
Alexander Shiyan | f469675 | 2014-05-27 13:04:46 +0400 | [diff] [blame] | 450 | } |
| 451 | |
Shawn Guo | bef11c8 | 2015-05-15 13:38:20 +0800 | [diff] [blame] | 452 | static void __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type type) |
Gilles Chanteperdrix | 876292d | 2014-04-05 17:57:45 +0200 | [diff] [blame] | 453 | { |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 454 | struct imx_timer *imxtm; |
| 455 | static int initialized; |
Gilles Chanteperdrix | 876292d | 2014-04-05 17:57:45 +0200 | [diff] [blame] | 456 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 457 | /* Support one instance only */ |
| 458 | if (initialized) |
Alexander Shiyan | fd4959d | 2014-07-13 09:34:00 +0400 | [diff] [blame] | 459 | return; |
| 460 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 461 | imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL); |
| 462 | BUG_ON(!imxtm); |
Gilles Chanteperdrix | 876292d | 2014-04-05 17:57:45 +0200 | [diff] [blame] | 463 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 464 | imxtm->base = of_iomap(np, 0); |
| 465 | WARN_ON(!imxtm->base); |
| 466 | imxtm->irq = irq_of_parse_and_map(np, 0); |
| 467 | |
| 468 | imxtm->clk_ipg = of_clk_get_by_name(np, "ipg"); |
Alexander Shiyan | f469675 | 2014-05-27 13:04:46 +0400 | [diff] [blame] | 469 | |
Anson Huang | bad3db1 | 2014-09-11 11:29:42 +0800 | [diff] [blame] | 470 | /* Try osc_per first, and fall back to per otherwise */ |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 471 | imxtm->clk_per = of_clk_get_by_name(np, "osc_per"); |
| 472 | if (IS_ERR(imxtm->clk_per)) |
| 473 | imxtm->clk_per = of_clk_get_by_name(np, "per"); |
Anson Huang | bad3db1 | 2014-09-11 11:29:42 +0800 | [diff] [blame] | 474 | |
Shawn Guo | bef11c8 | 2015-05-15 13:38:20 +0800 | [diff] [blame] | 475 | imxtm->type = type; |
| 476 | |
Shawn Guo | 6dd7478 | 2015-05-22 13:53:45 +0800 | [diff] [blame] | 477 | _mxc_timer_init(imxtm); |
| 478 | |
| 479 | initialized = 1; |
Gilles Chanteperdrix | 876292d | 2014-04-05 17:57:45 +0200 | [diff] [blame] | 480 | } |
Shawn Guo | bef11c8 | 2015-05-15 13:38:20 +0800 | [diff] [blame] | 481 | |
| 482 | static void __init imx1_timer_init_dt(struct device_node *np) |
| 483 | { |
| 484 | mxc_timer_init_dt(np, GPT_TYPE_IMX1); |
| 485 | } |
| 486 | |
| 487 | static void __init imx21_timer_init_dt(struct device_node *np) |
| 488 | { |
| 489 | mxc_timer_init_dt(np, GPT_TYPE_IMX21); |
| 490 | } |
| 491 | |
| 492 | static void __init imx31_timer_init_dt(struct device_node *np) |
| 493 | { |
| 494 | enum imx_gpt_type type = GPT_TYPE_IMX31; |
| 495 | |
| 496 | /* |
| 497 | * We were using the same compatible string for i.MX6Q/D and i.MX6DL/S |
| 498 | * GPT device, while they actually have different programming model. |
| 499 | * This is a workaround to keep the existing i.MX6DL/S DTBs continue |
| 500 | * working with the new kernel. |
| 501 | */ |
| 502 | if (of_machine_is_compatible("fsl,imx6dl")) |
| 503 | type = GPT_TYPE_IMX6DL; |
| 504 | |
| 505 | mxc_timer_init_dt(np, type); |
| 506 | } |
| 507 | |
| 508 | static void __init imx6dl_timer_init_dt(struct device_node *np) |
| 509 | { |
| 510 | mxc_timer_init_dt(np, GPT_TYPE_IMX6DL); |
| 511 | } |
| 512 | |
| 513 | CLOCKSOURCE_OF_DECLARE(imx1_timer, "fsl,imx1-gpt", imx1_timer_init_dt); |
| 514 | CLOCKSOURCE_OF_DECLARE(imx21_timer, "fsl,imx21-gpt", imx21_timer_init_dt); |
| 515 | CLOCKSOURCE_OF_DECLARE(imx31_timer, "fsl,imx31-gpt", imx31_timer_init_dt); |
| 516 | CLOCKSOURCE_OF_DECLARE(imx25_timer, "fsl,imx25-gpt", imx31_timer_init_dt); |
| 517 | CLOCKSOURCE_OF_DECLARE(imx50_timer, "fsl,imx50-gpt", imx31_timer_init_dt); |
| 518 | CLOCKSOURCE_OF_DECLARE(imx51_timer, "fsl,imx51-gpt", imx31_timer_init_dt); |
| 519 | CLOCKSOURCE_OF_DECLARE(imx53_timer, "fsl,imx53-gpt", imx31_timer_init_dt); |
| 520 | CLOCKSOURCE_OF_DECLARE(imx6q_timer, "fsl,imx6q-gpt", imx31_timer_init_dt); |
| 521 | CLOCKSOURCE_OF_DECLARE(imx6dl_timer, "fsl,imx6dl-gpt", imx6dl_timer_init_dt); |
| 522 | CLOCKSOURCE_OF_DECLARE(imx6sl_timer, "fsl,imx6sl-gpt", imx6dl_timer_init_dt); |
| 523 | CLOCKSOURCE_OF_DECLARE(imx6sx_timer, "fsl,imx6sx-gpt", imx6dl_timer_init_dt); |