Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 2 | /* linux/arch/arm/mach-exynos4/mct.c |
| 3 | * |
| 4 | * Copyright (c) 2011 Samsung Electronics Co., Ltd. |
| 5 | * http://www.samsung.com |
| 6 | * |
Krzysztof Kozlowski | 4ad3534 | 2020-01-04 16:20:58 +0100 | [diff] [blame] | 7 | * Exynos4 MCT(Multi-Core Timer) support |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 8 | */ |
| 9 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 10 | #include <linux/interrupt.h> |
| 11 | #include <linux/irq.h> |
| 12 | #include <linux/err.h> |
| 13 | #include <linux/clk.h> |
| 14 | #include <linux/clockchips.h> |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 15 | #include <linux/cpu.h> |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 16 | #include <linux/delay.h> |
| 17 | #include <linux/percpu.h> |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 18 | #include <linux/of.h> |
Thomas Abraham | 36ba5d5 | 2013-03-09 16:01:52 +0900 | [diff] [blame] | 19 | #include <linux/of_irq.h> |
| 20 | #include <linux/of_address.h> |
Thomas Abraham | 9fbf0c8 | 2013-03-09 16:10:03 +0900 | [diff] [blame] | 21 | #include <linux/clocksource.h> |
Vincent Guittot | 93bfb76 | 2014-05-02 22:27:01 +0900 | [diff] [blame] | 22 | #include <linux/sched_clock.h> |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 23 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 24 | #define EXYNOS4_MCTREG(x) (x) |
| 25 | #define EXYNOS4_MCT_G_CNT_L EXYNOS4_MCTREG(0x100) |
| 26 | #define EXYNOS4_MCT_G_CNT_U EXYNOS4_MCTREG(0x104) |
| 27 | #define EXYNOS4_MCT_G_CNT_WSTAT EXYNOS4_MCTREG(0x110) |
| 28 | #define EXYNOS4_MCT_G_COMP0_L EXYNOS4_MCTREG(0x200) |
| 29 | #define EXYNOS4_MCT_G_COMP0_U EXYNOS4_MCTREG(0x204) |
| 30 | #define EXYNOS4_MCT_G_COMP0_ADD_INCR EXYNOS4_MCTREG(0x208) |
| 31 | #define EXYNOS4_MCT_G_TCON EXYNOS4_MCTREG(0x240) |
| 32 | #define EXYNOS4_MCT_G_INT_CSTAT EXYNOS4_MCTREG(0x244) |
| 33 | #define EXYNOS4_MCT_G_INT_ENB EXYNOS4_MCTREG(0x248) |
| 34 | #define EXYNOS4_MCT_G_WSTAT EXYNOS4_MCTREG(0x24C) |
| 35 | #define _EXYNOS4_MCT_L_BASE EXYNOS4_MCTREG(0x300) |
| 36 | #define EXYNOS4_MCT_L_BASE(x) (_EXYNOS4_MCT_L_BASE + (0x100 * x)) |
| 37 | #define EXYNOS4_MCT_L_MASK (0xffffff00) |
| 38 | |
| 39 | #define MCT_L_TCNTB_OFFSET (0x00) |
| 40 | #define MCT_L_ICNTB_OFFSET (0x08) |
| 41 | #define MCT_L_TCON_OFFSET (0x20) |
| 42 | #define MCT_L_INT_CSTAT_OFFSET (0x30) |
| 43 | #define MCT_L_INT_ENB_OFFSET (0x34) |
| 44 | #define MCT_L_WSTAT_OFFSET (0x40) |
| 45 | #define MCT_G_TCON_START (1 << 8) |
| 46 | #define MCT_G_TCON_COMP0_AUTO_INC (1 << 1) |
| 47 | #define MCT_G_TCON_COMP0_ENABLE (1 << 0) |
| 48 | #define MCT_L_TCON_INTERVAL_MODE (1 << 2) |
| 49 | #define MCT_L_TCON_INT_START (1 << 1) |
| 50 | #define MCT_L_TCON_TIMER_START (1 << 0) |
| 51 | |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 52 | #define TICK_BASE_CNT 1 |
| 53 | |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 54 | enum { |
| 55 | MCT_INT_SPI, |
| 56 | MCT_INT_PPI |
| 57 | }; |
| 58 | |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 59 | enum { |
| 60 | MCT_G0_IRQ, |
| 61 | MCT_G1_IRQ, |
| 62 | MCT_G2_IRQ, |
| 63 | MCT_G3_IRQ, |
| 64 | MCT_L0_IRQ, |
| 65 | MCT_L1_IRQ, |
| 66 | MCT_L2_IRQ, |
| 67 | MCT_L3_IRQ, |
Chander Kashyap | 6c16ded | 2013-12-02 07:48:23 +0900 | [diff] [blame] | 68 | MCT_L4_IRQ, |
| 69 | MCT_L5_IRQ, |
| 70 | MCT_L6_IRQ, |
| 71 | MCT_L7_IRQ, |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 72 | MCT_NR_IRQS, |
| 73 | }; |
| 74 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 75 | static void __iomem *reg_base; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 76 | static unsigned long clk_rate; |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 77 | static unsigned int mct_int_type; |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 78 | static int mct_irqs[MCT_NR_IRQS]; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 79 | |
| 80 | struct mct_clock_event_device { |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 81 | struct clock_event_device evt; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 82 | unsigned long base; |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 83 | char name[10]; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 84 | }; |
| 85 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 86 | static void exynos4_mct_write(unsigned int value, unsigned long offset) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 87 | { |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 88 | unsigned long stat_addr; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 89 | u32 mask; |
| 90 | u32 i; |
| 91 | |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 92 | writel_relaxed(value, reg_base + offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 93 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 94 | if (likely(offset >= EXYNOS4_MCT_L_BASE(0))) { |
Tobias Jakobi | 8c38d28 | 2014-10-22 03:37:08 +0200 | [diff] [blame] | 95 | stat_addr = (offset & EXYNOS4_MCT_L_MASK) + MCT_L_WSTAT_OFFSET; |
| 96 | switch (offset & ~EXYNOS4_MCT_L_MASK) { |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 97 | case MCT_L_TCON_OFFSET: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 98 | mask = 1 << 3; /* L_TCON write status */ |
| 99 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 100 | case MCT_L_ICNTB_OFFSET: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 101 | mask = 1 << 1; /* L_ICNTB write status */ |
| 102 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 103 | case MCT_L_TCNTB_OFFSET: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 104 | mask = 1 << 0; /* L_TCNTB write status */ |
| 105 | break; |
| 106 | default: |
| 107 | return; |
| 108 | } |
| 109 | } else { |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 110 | switch (offset) { |
| 111 | case EXYNOS4_MCT_G_TCON: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 112 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 113 | mask = 1 << 16; /* G_TCON write status */ |
| 114 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 115 | case EXYNOS4_MCT_G_COMP0_L: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 116 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 117 | mask = 1 << 0; /* G_COMP0_L write status */ |
| 118 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 119 | case EXYNOS4_MCT_G_COMP0_U: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 120 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 121 | mask = 1 << 1; /* G_COMP0_U write status */ |
| 122 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 123 | case EXYNOS4_MCT_G_COMP0_ADD_INCR: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 124 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 125 | mask = 1 << 2; /* G_COMP0_ADD_INCR w status */ |
| 126 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 127 | case EXYNOS4_MCT_G_CNT_L: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 128 | stat_addr = EXYNOS4_MCT_G_CNT_WSTAT; |
| 129 | mask = 1 << 0; /* G_CNT_L write status */ |
| 130 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 131 | case EXYNOS4_MCT_G_CNT_U: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 132 | stat_addr = EXYNOS4_MCT_G_CNT_WSTAT; |
| 133 | mask = 1 << 1; /* G_CNT_U write status */ |
| 134 | break; |
| 135 | default: |
| 136 | return; |
| 137 | } |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | /* Wait maximum 1 ms until written values are applied */ |
| 141 | for (i = 0; i < loops_per_jiffy / 1000 * HZ; i++) |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 142 | if (readl_relaxed(reg_base + stat_addr) & mask) { |
| 143 | writel_relaxed(mask, reg_base + stat_addr); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 144 | return; |
| 145 | } |
| 146 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 147 | panic("MCT hangs after writing %d (offset:0x%lx)\n", value, offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | /* Clocksource handling */ |
Chirantan Ekbote | 1d80415 | 2014-06-12 00:18:48 +0900 | [diff] [blame] | 151 | static void exynos4_mct_frc_start(void) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 152 | { |
| 153 | u32 reg; |
| 154 | |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 155 | reg = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 156 | reg |= MCT_G_TCON_START; |
| 157 | exynos4_mct_write(reg, EXYNOS4_MCT_G_TCON); |
| 158 | } |
| 159 | |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 160 | /** |
| 161 | * exynos4_read_count_64 - Read all 64-bits of the global counter |
| 162 | * |
| 163 | * This will read all 64-bits of the global counter taking care to make sure |
| 164 | * that the upper and lower half match. Note that reading the MCT can be quite |
| 165 | * slow (hundreds of nanoseconds) so you should use the 32-bit (lower half |
| 166 | * only) version when possible. |
| 167 | * |
| 168 | * Returns the number of cycles in the global counter. |
| 169 | */ |
| 170 | static u64 exynos4_read_count_64(void) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 171 | { |
| 172 | unsigned int lo, hi; |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 173 | u32 hi2 = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_U); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 174 | |
| 175 | do { |
| 176 | hi = hi2; |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 177 | lo = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_L); |
| 178 | hi2 = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_U); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 179 | } while (hi != hi2); |
| 180 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 181 | return ((u64)hi << 32) | lo; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 182 | } |
| 183 | |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 184 | /** |
| 185 | * exynos4_read_count_32 - Read the lower 32-bits of the global counter |
| 186 | * |
| 187 | * This will read just the lower 32-bits of the global counter. This is marked |
| 188 | * as notrace so it can be used by the scheduler clock. |
| 189 | * |
| 190 | * Returns the number of cycles in the global counter (lower 32 bits). |
| 191 | */ |
| 192 | static u32 notrace exynos4_read_count_32(void) |
| 193 | { |
| 194 | return readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_L); |
| 195 | } |
| 196 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 197 | static u64 exynos4_frc_read(struct clocksource *cs) |
Doug Anderson | 89e6a13 | 2014-07-05 06:38:55 +0900 | [diff] [blame] | 198 | { |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 199 | return exynos4_read_count_32(); |
Doug Anderson | 89e6a13 | 2014-07-05 06:38:55 +0900 | [diff] [blame] | 200 | } |
| 201 | |
Changhwan Youn | aa421c1 | 2011-09-02 14:10:52 +0900 | [diff] [blame] | 202 | static void exynos4_frc_resume(struct clocksource *cs) |
| 203 | { |
Chirantan Ekbote | 1d80415 | 2014-06-12 00:18:48 +0900 | [diff] [blame] | 204 | exynos4_mct_frc_start(); |
Changhwan Youn | aa421c1 | 2011-09-02 14:10:52 +0900 | [diff] [blame] | 205 | } |
| 206 | |
Krzysztof Kozlowski | 6c10bf6 | 2015-04-30 13:42:52 +0900 | [diff] [blame] | 207 | static struct clocksource mct_frc = { |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 208 | .name = "mct-frc", |
Marek Szyprowski | 6282edb | 2019-05-30 12:50:43 +0200 | [diff] [blame] | 209 | .rating = 450, /* use value higher than ARM arch timer */ |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 210 | .read = exynos4_frc_read, |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 211 | .mask = CLOCKSOURCE_MASK(32), |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 212 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Changhwan Youn | aa421c1 | 2011-09-02 14:10:52 +0900 | [diff] [blame] | 213 | .resume = exynos4_frc_resume, |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 214 | }; |
| 215 | |
Vincent Guittot | 93bfb76 | 2014-05-02 22:27:01 +0900 | [diff] [blame] | 216 | static u64 notrace exynos4_read_sched_clock(void) |
| 217 | { |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 218 | return exynos4_read_count_32(); |
Vincent Guittot | 93bfb76 | 2014-05-02 22:27:01 +0900 | [diff] [blame] | 219 | } |
| 220 | |
Chanwoo Choi | f1a4c1f | 2016-08-24 22:49:05 +0900 | [diff] [blame] | 221 | #if defined(CONFIG_ARM) |
Amit Daniel Kachhap | 8bf13a4 | 2014-07-05 06:40:23 +0900 | [diff] [blame] | 222 | static struct delay_timer exynos4_delay_timer; |
| 223 | |
| 224 | static cycles_t exynos4_read_current_timer(void) |
| 225 | { |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 226 | BUILD_BUG_ON_MSG(sizeof(cycles_t) != sizeof(u32), |
| 227 | "cycles_t needs to move to 32-bit for ARM64 usage"); |
| 228 | return exynos4_read_count_32(); |
Amit Daniel Kachhap | 8bf13a4 | 2014-07-05 06:40:23 +0900 | [diff] [blame] | 229 | } |
Chanwoo Choi | f1a4c1f | 2016-08-24 22:49:05 +0900 | [diff] [blame] | 230 | #endif |
Amit Daniel Kachhap | 8bf13a4 | 2014-07-05 06:40:23 +0900 | [diff] [blame] | 231 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 232 | static int __init exynos4_clocksource_init(void) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 233 | { |
Chirantan Ekbote | 1d80415 | 2014-06-12 00:18:48 +0900 | [diff] [blame] | 234 | exynos4_mct_frc_start(); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 235 | |
Chanwoo Choi | f1a4c1f | 2016-08-24 22:49:05 +0900 | [diff] [blame] | 236 | #if defined(CONFIG_ARM) |
Amit Daniel Kachhap | 8bf13a4 | 2014-07-05 06:40:23 +0900 | [diff] [blame] | 237 | exynos4_delay_timer.read_current_timer = &exynos4_read_current_timer; |
| 238 | exynos4_delay_timer.freq = clk_rate; |
| 239 | register_current_timer_delay(&exynos4_delay_timer); |
Chanwoo Choi | f1a4c1f | 2016-08-24 22:49:05 +0900 | [diff] [blame] | 240 | #endif |
Amit Daniel Kachhap | 8bf13a4 | 2014-07-05 06:40:23 +0900 | [diff] [blame] | 241 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 242 | if (clocksource_register_hz(&mct_frc, clk_rate)) |
| 243 | panic("%s: can't register clocksource\n", mct_frc.name); |
Vincent Guittot | 93bfb76 | 2014-05-02 22:27:01 +0900 | [diff] [blame] | 244 | |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 245 | sched_clock_register(exynos4_read_sched_clock, 32, clk_rate); |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 246 | |
| 247 | return 0; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | static void exynos4_mct_comp0_stop(void) |
| 251 | { |
| 252 | unsigned int tcon; |
| 253 | |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 254 | tcon = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 255 | tcon &= ~(MCT_G_TCON_COMP0_ENABLE | MCT_G_TCON_COMP0_AUTO_INC); |
| 256 | |
| 257 | exynos4_mct_write(tcon, EXYNOS4_MCT_G_TCON); |
| 258 | exynos4_mct_write(0, EXYNOS4_MCT_G_INT_ENB); |
| 259 | } |
| 260 | |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 261 | static void exynos4_mct_comp0_start(bool periodic, unsigned long cycles) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 262 | { |
| 263 | unsigned int tcon; |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 264 | u64 comp_cycle; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 265 | |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 266 | tcon = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 267 | |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 268 | if (periodic) { |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 269 | tcon |= MCT_G_TCON_COMP0_AUTO_INC; |
| 270 | exynos4_mct_write(cycles, EXYNOS4_MCT_G_COMP0_ADD_INCR); |
| 271 | } |
| 272 | |
Doug Anderson | 3252a64 | 2014-07-05 06:43:26 +0900 | [diff] [blame] | 273 | comp_cycle = exynos4_read_count_64() + cycles; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 274 | exynos4_mct_write((u32)comp_cycle, EXYNOS4_MCT_G_COMP0_L); |
| 275 | exynos4_mct_write((u32)(comp_cycle >> 32), EXYNOS4_MCT_G_COMP0_U); |
| 276 | |
| 277 | exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_ENB); |
| 278 | |
| 279 | tcon |= MCT_G_TCON_COMP0_ENABLE; |
| 280 | exynos4_mct_write(tcon , EXYNOS4_MCT_G_TCON); |
| 281 | } |
| 282 | |
| 283 | static int exynos4_comp_set_next_event(unsigned long cycles, |
| 284 | struct clock_event_device *evt) |
| 285 | { |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 286 | exynos4_mct_comp0_start(false, cycles); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 287 | |
| 288 | return 0; |
| 289 | } |
| 290 | |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 291 | static int mct_set_state_shutdown(struct clock_event_device *evt) |
| 292 | { |
| 293 | exynos4_mct_comp0_stop(); |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static int mct_set_state_periodic(struct clock_event_device *evt) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 298 | { |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 299 | unsigned long cycles_per_jiffy; |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 300 | |
| 301 | cycles_per_jiffy = (((unsigned long long)NSEC_PER_SEC / HZ * evt->mult) |
| 302 | >> evt->shift); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 303 | exynos4_mct_comp0_stop(); |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 304 | exynos4_mct_comp0_start(true, cycles_per_jiffy); |
| 305 | return 0; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | static struct clock_event_device mct_comp_device = { |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 309 | .name = "mct-comp", |
| 310 | .features = CLOCK_EVT_FEAT_PERIODIC | |
| 311 | CLOCK_EVT_FEAT_ONESHOT, |
| 312 | .rating = 250, |
| 313 | .set_next_event = exynos4_comp_set_next_event, |
| 314 | .set_state_periodic = mct_set_state_periodic, |
| 315 | .set_state_shutdown = mct_set_state_shutdown, |
| 316 | .set_state_oneshot = mct_set_state_shutdown, |
Viresh Kumar | 07f101d | 2015-12-23 16:59:14 +0530 | [diff] [blame] | 317 | .set_state_oneshot_stopped = mct_set_state_shutdown, |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 318 | .tick_resume = mct_set_state_shutdown, |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 319 | }; |
| 320 | |
| 321 | static irqreturn_t exynos4_mct_comp_isr(int irq, void *dev_id) |
| 322 | { |
| 323 | struct clock_event_device *evt = dev_id; |
| 324 | |
| 325 | exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_CSTAT); |
| 326 | |
| 327 | evt->event_handler(evt); |
| 328 | |
| 329 | return IRQ_HANDLED; |
| 330 | } |
| 331 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 332 | static int exynos4_clockevent_init(void) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 333 | { |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 334 | mct_comp_device.cpumask = cpumask_of(0); |
Shawn Guo | 838a2ae | 2013-01-12 11:50:05 +0000 | [diff] [blame] | 335 | clockevents_config_and_register(&mct_comp_device, clk_rate, |
| 336 | 0xf, 0xffffffff); |
afzal mohammed | cc2550b | 2020-02-27 16:29:02 +0530 | [diff] [blame] | 337 | if (request_irq(mct_irqs[MCT_G0_IRQ], exynos4_mct_comp_isr, |
| 338 | IRQF_TIMER | IRQF_IRQPOLL, "mct_comp_irq", |
| 339 | &mct_comp_device)) |
| 340 | pr_err("%s: request_irq() failed\n", "mct_comp_irq"); |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 341 | |
| 342 | return 0; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 343 | } |
| 344 | |
Kukjin Kim | 991a6c7 | 2011-12-08 10:04:49 +0900 | [diff] [blame] | 345 | static DEFINE_PER_CPU(struct mct_clock_event_device, percpu_mct_tick); |
| 346 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 347 | /* Clock event handling */ |
| 348 | static void exynos4_mct_tick_stop(struct mct_clock_event_device *mevt) |
| 349 | { |
| 350 | unsigned long tmp; |
| 351 | unsigned long mask = MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 352 | unsigned long offset = mevt->base + MCT_L_TCON_OFFSET; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 353 | |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 354 | tmp = readl_relaxed(reg_base + offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 355 | if (tmp & mask) { |
| 356 | tmp &= ~mask; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 357 | exynos4_mct_write(tmp, offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 358 | } |
| 359 | } |
| 360 | |
| 361 | static void exynos4_mct_tick_start(unsigned long cycles, |
| 362 | struct mct_clock_event_device *mevt) |
| 363 | { |
| 364 | unsigned long tmp; |
| 365 | |
| 366 | exynos4_mct_tick_stop(mevt); |
| 367 | |
| 368 | tmp = (1 << 31) | cycles; /* MCT_L_UPDATE_ICNTB */ |
| 369 | |
| 370 | /* update interrupt count buffer */ |
| 371 | exynos4_mct_write(tmp, mevt->base + MCT_L_ICNTB_OFFSET); |
| 372 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 373 | /* enable MCT tick interrupt */ |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 374 | exynos4_mct_write(0x1, mevt->base + MCT_L_INT_ENB_OFFSET); |
| 375 | |
Doug Anderson | fdb06f6 | 2014-07-05 06:43:20 +0900 | [diff] [blame] | 376 | tmp = readl_relaxed(reg_base + mevt->base + MCT_L_TCON_OFFSET); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 377 | tmp |= MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START | |
| 378 | MCT_L_TCON_INTERVAL_MODE; |
| 379 | exynos4_mct_write(tmp, mevt->base + MCT_L_TCON_OFFSET); |
| 380 | } |
| 381 | |
Stuart Menefy | a5719a4 | 2019-02-10 22:51:13 +0000 | [diff] [blame] | 382 | static void exynos4_mct_tick_clear(struct mct_clock_event_device *mevt) |
| 383 | { |
| 384 | /* Clear the MCT tick interrupt */ |
| 385 | if (readl_relaxed(reg_base + mevt->base + MCT_L_INT_CSTAT_OFFSET) & 1) |
| 386 | exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET); |
| 387 | } |
| 388 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 389 | static int exynos4_tick_set_next_event(unsigned long cycles, |
| 390 | struct clock_event_device *evt) |
| 391 | { |
Alexey Klimov | 31f7987 | 2015-09-04 02:49:58 +0300 | [diff] [blame] | 392 | struct mct_clock_event_device *mevt; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 393 | |
Alexey Klimov | 31f7987 | 2015-09-04 02:49:58 +0300 | [diff] [blame] | 394 | mevt = container_of(evt, struct mct_clock_event_device, evt); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 395 | exynos4_mct_tick_start(cycles, mevt); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 396 | return 0; |
| 397 | } |
| 398 | |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 399 | static int set_state_shutdown(struct clock_event_device *evt) |
| 400 | { |
Alexey Klimov | 31f7987 | 2015-09-04 02:49:58 +0300 | [diff] [blame] | 401 | struct mct_clock_event_device *mevt; |
| 402 | |
| 403 | mevt = container_of(evt, struct mct_clock_event_device, evt); |
| 404 | exynos4_mct_tick_stop(mevt); |
Stuart Menefy | d2f276c | 2019-02-10 22:51:14 +0000 | [diff] [blame] | 405 | exynos4_mct_tick_clear(mevt); |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | static int set_state_periodic(struct clock_event_device *evt) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 410 | { |
Alexey Klimov | 31f7987 | 2015-09-04 02:49:58 +0300 | [diff] [blame] | 411 | struct mct_clock_event_device *mevt; |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 412 | unsigned long cycles_per_jiffy; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 413 | |
Alexey Klimov | 31f7987 | 2015-09-04 02:49:58 +0300 | [diff] [blame] | 414 | mevt = container_of(evt, struct mct_clock_event_device, evt); |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 415 | cycles_per_jiffy = (((unsigned long long)NSEC_PER_SEC / HZ * evt->mult) |
| 416 | >> evt->shift); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 417 | exynos4_mct_tick_stop(mevt); |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 418 | exynos4_mct_tick_start(cycles_per_jiffy, mevt); |
| 419 | return 0; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 420 | } |
| 421 | |
Stuart Menefy | a5719a4 | 2019-02-10 22:51:13 +0000 | [diff] [blame] | 422 | static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 423 | { |
Stuart Menefy | a5719a4 | 2019-02-10 22:51:13 +0000 | [diff] [blame] | 424 | struct mct_clock_event_device *mevt = dev_id; |
| 425 | struct clock_event_device *evt = &mevt->evt; |
| 426 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 427 | /* |
| 428 | * This is for supporting oneshot mode. |
| 429 | * Mct would generate interrupt periodically |
| 430 | * without explicit stopping. |
| 431 | */ |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 432 | if (!clockevent_state_periodic(&mevt->evt)) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 433 | exynos4_mct_tick_stop(mevt); |
| 434 | |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 435 | exynos4_mct_tick_clear(mevt); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 436 | |
| 437 | evt->event_handler(evt); |
| 438 | |
| 439 | return IRQ_HANDLED; |
| 440 | } |
| 441 | |
Richard Cochran | d11b3a6 | 2016-07-13 17:17:05 +0000 | [diff] [blame] | 442 | static int exynos4_mct_starting_cpu(unsigned int cpu) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 443 | { |
Richard Cochran | d11b3a6 | 2016-07-13 17:17:05 +0000 | [diff] [blame] | 444 | struct mct_clock_event_device *mevt = |
| 445 | per_cpu_ptr(&percpu_mct_tick, cpu); |
Alexey Klimov | 479a932 | 2015-06-21 23:41:39 +0300 | [diff] [blame] | 446 | struct clock_event_device *evt = &mevt->evt; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 447 | |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 448 | mevt->base = EXYNOS4_MCT_L_BASE(cpu); |
Dan Carpenter | 09e1517 | 2014-03-01 16:57:14 +0300 | [diff] [blame] | 449 | snprintf(mevt->name, sizeof(mevt->name), "mct_tick%d", cpu); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 450 | |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 451 | evt->name = mevt->name; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 452 | evt->cpumask = cpumask_of(cpu); |
| 453 | evt->set_next_event = exynos4_tick_set_next_event; |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 454 | evt->set_state_periodic = set_state_periodic; |
| 455 | evt->set_state_shutdown = set_state_shutdown; |
| 456 | evt->set_state_oneshot = set_state_shutdown; |
Viresh Kumar | 07f101d | 2015-12-23 16:59:14 +0530 | [diff] [blame] | 457 | evt->set_state_oneshot_stopped = set_state_shutdown; |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 458 | evt->tick_resume = set_state_shutdown; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 459 | evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT; |
Marek Szyprowski | 6282edb | 2019-05-30 12:50:43 +0200 | [diff] [blame] | 460 | evt->rating = 500; /* use value higher than ARM arch timer */ |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 461 | |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 462 | exynos4_mct_write(TICK_BASE_CNT, mevt->base + MCT_L_TCNTB_OFFSET); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 463 | |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 464 | if (mct_int_type == MCT_INT_SPI) { |
Damian Eppel | 56a94f1 | 2015-06-26 15:23:04 +0200 | [diff] [blame] | 465 | |
| 466 | if (evt->irq == -1) |
Chander Kashyap | 7114cd7 | 2013-06-19 00:29:35 +0900 | [diff] [blame] | 467 | return -EIO; |
Damian Eppel | 56a94f1 | 2015-06-26 15:23:04 +0200 | [diff] [blame] | 468 | |
| 469 | irq_force_affinity(evt->irq, cpumask_of(cpu)); |
| 470 | enable_irq(evt->irq); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 471 | } else { |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 472 | enable_percpu_irq(mct_irqs[MCT_L0_IRQ], 0); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 473 | } |
Krzysztof Kozlowski | 8db6e51 | 2014-04-16 14:36:45 +0000 | [diff] [blame] | 474 | clockevents_config_and_register(evt, clk_rate / (TICK_BASE_CNT + 1), |
| 475 | 0xf, 0x7fffffff); |
Kukjin Kim | 4d487d7 | 2011-08-24 16:07:39 +0900 | [diff] [blame] | 476 | |
| 477 | return 0; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 478 | } |
| 479 | |
Richard Cochran | d11b3a6 | 2016-07-13 17:17:05 +0000 | [diff] [blame] | 480 | static int exynos4_mct_dying_cpu(unsigned int cpu) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 481 | { |
Richard Cochran | d11b3a6 | 2016-07-13 17:17:05 +0000 | [diff] [blame] | 482 | struct mct_clock_event_device *mevt = |
| 483 | per_cpu_ptr(&percpu_mct_tick, cpu); |
Alexey Klimov | 479a932 | 2015-06-21 23:41:39 +0300 | [diff] [blame] | 484 | struct clock_event_device *evt = &mevt->evt; |
| 485 | |
Viresh Kumar | 79e436d | 2015-06-18 16:24:20 +0530 | [diff] [blame] | 486 | evt->set_state_shutdown(evt); |
Damian Eppel | 56a94f1 | 2015-06-26 15:23:04 +0200 | [diff] [blame] | 487 | if (mct_int_type == MCT_INT_SPI) { |
| 488 | if (evt->irq != -1) |
| 489 | disable_irq_nosync(evt->irq); |
Joonyoung Shim | bc7c36e | 2017-01-17 13:54:36 +0900 | [diff] [blame] | 490 | exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET); |
Damian Eppel | 56a94f1 | 2015-06-26 15:23:04 +0200 | [diff] [blame] | 491 | } else { |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 492 | disable_percpu_irq(mct_irqs[MCT_L0_IRQ]); |
Damian Eppel | 56a94f1 | 2015-06-26 15:23:04 +0200 | [diff] [blame] | 493 | } |
Richard Cochran | d11b3a6 | 2016-07-13 17:17:05 +0000 | [diff] [blame] | 494 | return 0; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 495 | } |
Marc Zyngier | a8cb604 | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 496 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 497 | static int __init exynos4_timer_resources(struct device_node *np, void __iomem *base) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 498 | { |
Damian Eppel | 56a94f1 | 2015-06-26 15:23:04 +0200 | [diff] [blame] | 499 | int err, cpu; |
Thomas Abraham | ca9048e | 2013-03-09 17:10:37 +0900 | [diff] [blame] | 500 | struct clk *mct_clk, *tick_clk; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 501 | |
Marek Szyprowski | 9fd464f | 2018-10-18 11:57:03 +0200 | [diff] [blame] | 502 | tick_clk = of_clk_get_by_name(np, "fin_pll"); |
Thomas Abraham | 415ac2e | 2013-03-09 17:10:31 +0900 | [diff] [blame] | 503 | if (IS_ERR(tick_clk)) |
| 504 | panic("%s: unable to determine tick clock rate\n", __func__); |
| 505 | clk_rate = clk_get_rate(tick_clk); |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 506 | |
Marek Szyprowski | 9fd464f | 2018-10-18 11:57:03 +0200 | [diff] [blame] | 507 | mct_clk = of_clk_get_by_name(np, "mct"); |
Thomas Abraham | ca9048e | 2013-03-09 17:10:37 +0900 | [diff] [blame] | 508 | if (IS_ERR(mct_clk)) |
| 509 | panic("%s: unable to retrieve mct clock instance\n", __func__); |
| 510 | clk_prepare_enable(mct_clk); |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 511 | |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 512 | reg_base = base; |
Thomas Abraham | 36ba5d5 | 2013-03-09 16:01:52 +0900 | [diff] [blame] | 513 | if (!reg_base) |
| 514 | panic("%s: unable to ioremap mct address space\n", __func__); |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 515 | |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 516 | if (mct_int_type == MCT_INT_PPI) { |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 517 | |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 518 | err = request_percpu_irq(mct_irqs[MCT_L0_IRQ], |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 519 | exynos4_mct_tick_isr, "MCT", |
| 520 | &percpu_mct_tick); |
| 521 | WARN(err, "MCT: can't request IRQ %d (%d)\n", |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 522 | mct_irqs[MCT_L0_IRQ], err); |
Tomasz Figa | 5df718d | 2013-09-25 12:00:59 +0200 | [diff] [blame] | 523 | } else { |
Damian Eppel | 56a94f1 | 2015-06-26 15:23:04 +0200 | [diff] [blame] | 524 | for_each_possible_cpu(cpu) { |
| 525 | int mct_irq = mct_irqs[MCT_L0_IRQ + cpu]; |
| 526 | struct mct_clock_event_device *pcpu_mevt = |
| 527 | per_cpu_ptr(&percpu_mct_tick, cpu); |
| 528 | |
| 529 | pcpu_mevt->evt.irq = -1; |
| 530 | |
| 531 | irq_set_status_flags(mct_irq, IRQ_NOAUTOEN); |
| 532 | if (request_irq(mct_irq, |
| 533 | exynos4_mct_tick_isr, |
| 534 | IRQF_TIMER | IRQF_NOBALANCING, |
| 535 | pcpu_mevt->name, pcpu_mevt)) { |
| 536 | pr_err("exynos-mct: cannot register IRQ (cpu%d)\n", |
| 537 | cpu); |
| 538 | |
| 539 | continue; |
| 540 | } |
| 541 | pcpu_mevt->evt.irq = mct_irq; |
| 542 | } |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 543 | } |
Marc Zyngier | a8cb604 | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 544 | |
Richard Cochran | d11b3a6 | 2016-07-13 17:17:05 +0000 | [diff] [blame] | 545 | /* Install hotplug callbacks which configure the timer on this CPU */ |
| 546 | err = cpuhp_setup_state(CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING, |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 547 | "clockevents/exynos4/mct_timer:starting", |
Richard Cochran | d11b3a6 | 2016-07-13 17:17:05 +0000 | [diff] [blame] | 548 | exynos4_mct_starting_cpu, |
| 549 | exynos4_mct_dying_cpu); |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 550 | if (err) |
| 551 | goto out_irq; |
| 552 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 553 | return 0; |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 554 | |
| 555 | out_irq: |
Marek Szyprowski | b930742 | 2018-10-18 11:57:04 +0200 | [diff] [blame] | 556 | if (mct_int_type == MCT_INT_PPI) { |
| 557 | free_percpu_irq(mct_irqs[MCT_L0_IRQ], &percpu_mct_tick); |
| 558 | } else { |
| 559 | for_each_possible_cpu(cpu) { |
| 560 | struct mct_clock_event_device *pcpu_mevt = |
| 561 | per_cpu_ptr(&percpu_mct_tick, cpu); |
| 562 | |
| 563 | if (pcpu_mevt->evt.irq != -1) { |
| 564 | free_irq(pcpu_mevt->evt.irq, pcpu_mevt); |
| 565 | pcpu_mevt->evt.irq = -1; |
| 566 | } |
| 567 | } |
| 568 | } |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 569 | return err; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 570 | } |
| 571 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 572 | static int __init mct_init_dt(struct device_node *np, unsigned int int_type) |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 573 | { |
| 574 | u32 nr_irqs, i; |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 575 | int ret; |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 576 | |
| 577 | mct_int_type = int_type; |
| 578 | |
| 579 | /* This driver uses only one global timer interrupt */ |
| 580 | mct_irqs[MCT_G0_IRQ] = irq_of_parse_and_map(np, MCT_G0_IRQ); |
| 581 | |
| 582 | /* |
| 583 | * Find out the number of local irqs specified. The local |
| 584 | * timer irqs are specified after the four global timer |
| 585 | * irqs are specified. |
| 586 | */ |
| 587 | nr_irqs = of_irq_count(np); |
| 588 | for (i = MCT_L0_IRQ; i < nr_irqs; i++) |
| 589 | mct_irqs[i] = irq_of_parse_and_map(np, i); |
| 590 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 591 | ret = exynos4_timer_resources(np, of_iomap(np, 0)); |
| 592 | if (ret) |
| 593 | return ret; |
| 594 | |
| 595 | ret = exynos4_clocksource_init(); |
| 596 | if (ret) |
| 597 | return ret; |
| 598 | |
| 599 | return exynos4_clockevent_init(); |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 603 | static int __init mct_init_spi(struct device_node *np) |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 604 | { |
| 605 | return mct_init_dt(np, MCT_INT_SPI); |
| 606 | } |
| 607 | |
Daniel Lezcano | 5e558eb | 2016-05-31 19:26:55 +0200 | [diff] [blame] | 608 | static int __init mct_init_ppi(struct device_node *np) |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 609 | { |
| 610 | return mct_init_dt(np, MCT_INT_PPI); |
| 611 | } |
Daniel Lezcano | 1727339 | 2017-05-26 16:56:11 +0200 | [diff] [blame] | 612 | TIMER_OF_DECLARE(exynos4210, "samsung,exynos4210-mct", mct_init_spi); |
| 613 | TIMER_OF_DECLARE(exynos4412, "samsung,exynos4412-mct", mct_init_ppi); |