Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 1 | /* |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 2 | * |
| 3 | * Copyright (C) 2007 Google, Inc. |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 4 | * Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved. |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 5 | * |
| 6 | * This software is licensed under the terms of the GNU General Public |
| 7 | * License version 2, as published by the Free Software Foundation, and |
| 8 | * may be copied, distributed, and modified under those terms. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | */ |
| 16 | |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 17 | #include <linux/clocksource.h> |
| 18 | #include <linux/clockchips.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 19 | #include <linux/init.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 20 | #include <linux/interrupt.h> |
| 21 | #include <linux/irq.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 22 | #include <linux/io.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 23 | |
| 24 | #include <asm/mach/time.h> |
Stephen Boyd | ebf30dc | 2011-05-31 16:10:00 -0700 | [diff] [blame] | 25 | #include <asm/hardware/gic.h> |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 26 | #include <asm/localtimer.h> |
Stephen Boyd | f8e56c4 | 2012-02-22 01:39:37 +0000 | [diff] [blame] | 27 | #include <asm/sched_clock.h> |
Stephen Boyd | ebf30dc | 2011-05-31 16:10:00 -0700 | [diff] [blame] | 28 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 29 | #include <mach/msm_iomap.h> |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 30 | #include <mach/cpu.h> |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 31 | #include <mach/board.h> |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 32 | |
| 33 | #define TIMER_MATCH_VAL 0x0000 |
| 34 | #define TIMER_COUNT_VAL 0x0004 |
| 35 | #define TIMER_ENABLE 0x0008 |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 36 | #define TIMER_ENABLE_CLR_ON_MATCH_EN BIT(1) |
| 37 | #define TIMER_ENABLE_EN BIT(0) |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 38 | #define TIMER_CLEAR 0x000C |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 39 | #define DGT_CLK_CTL 0x0034 |
Stephen Boyd | 4a18407 | 2011-11-08 10:34:04 -0800 | [diff] [blame] | 40 | #define DGT_CLK_CTL_DIV_4 0x3 |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 41 | |
| 42 | #define GPT_HZ 32768 |
Jeff Ohlstein | 672039f | 2010-10-05 15:23:57 -0700 | [diff] [blame] | 43 | |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 44 | #define MSM_DGT_SHIFT 5 |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 45 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 46 | static void __iomem *event_base; |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 47 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 48 | static irqreturn_t msm_timer_interrupt(int irq, void *dev_id) |
| 49 | { |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 50 | struct clock_event_device *evt = *(struct clock_event_device **)dev_id; |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 51 | /* Stop the timer tick */ |
| 52 | if (evt->mode == CLOCK_EVT_MODE_ONESHOT) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 53 | u32 ctrl = readl_relaxed(event_base + TIMER_ENABLE); |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 54 | ctrl &= ~TIMER_ENABLE_EN; |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 55 | writel_relaxed(ctrl, event_base + TIMER_ENABLE); |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 56 | } |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 57 | evt->event_handler(evt); |
| 58 | return IRQ_HANDLED; |
| 59 | } |
| 60 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 61 | static int msm_timer_set_next_event(unsigned long cycles, |
| 62 | struct clock_event_device *evt) |
| 63 | { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 64 | u32 ctrl = readl_relaxed(event_base + TIMER_ENABLE); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 65 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 66 | writel_relaxed(0, event_base + TIMER_CLEAR); |
| 67 | writel_relaxed(cycles, event_base + TIMER_MATCH_VAL); |
| 68 | writel_relaxed(ctrl | TIMER_ENABLE_EN, event_base + TIMER_ENABLE); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static void msm_timer_set_mode(enum clock_event_mode mode, |
| 73 | struct clock_event_device *evt) |
| 74 | { |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 75 | u32 ctrl; |
| 76 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 77 | ctrl = readl_relaxed(event_base + TIMER_ENABLE); |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 78 | ctrl &= ~(TIMER_ENABLE_EN | TIMER_ENABLE_CLR_ON_MATCH_EN); |
Jeff Ohlstein | 94790ec | 2010-12-02 12:05:12 -0800 | [diff] [blame] | 79 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 80 | switch (mode) { |
| 81 | case CLOCK_EVT_MODE_RESUME: |
| 82 | case CLOCK_EVT_MODE_PERIODIC: |
| 83 | break; |
| 84 | case CLOCK_EVT_MODE_ONESHOT: |
Stephen Boyd | a850c3f | 2011-11-08 10:34:06 -0800 | [diff] [blame] | 85 | /* Timer is enabled in set_next_event */ |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 86 | break; |
| 87 | case CLOCK_EVT_MODE_UNUSED: |
| 88 | case CLOCK_EVT_MODE_SHUTDOWN: |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 89 | break; |
| 90 | } |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 91 | writel_relaxed(ctrl, event_base + TIMER_ENABLE); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 92 | } |
| 93 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 94 | static struct clock_event_device msm_clockevent = { |
| 95 | .name = "gp_timer", |
| 96 | .features = CLOCK_EVT_FEAT_ONESHOT, |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 97 | .rating = 200, |
| 98 | .set_next_event = msm_timer_set_next_event, |
| 99 | .set_mode = msm_timer_set_mode, |
| 100 | }; |
| 101 | |
| 102 | static union { |
| 103 | struct clock_event_device *evt; |
| 104 | struct clock_event_device __percpu **percpu_evt; |
| 105 | } msm_evt; |
| 106 | |
| 107 | static void __iomem *source_base; |
| 108 | |
Stephen Boyd | f8e56c4 | 2012-02-22 01:39:37 +0000 | [diff] [blame] | 109 | static notrace cycle_t msm_read_timer_count(struct clocksource *cs) |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 110 | { |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 111 | return readl_relaxed(source_base + TIMER_COUNT_VAL); |
| 112 | } |
| 113 | |
Stephen Boyd | f8e56c4 | 2012-02-22 01:39:37 +0000 | [diff] [blame] | 114 | static notrace cycle_t msm_read_timer_count_shift(struct clocksource *cs) |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 115 | { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 116 | /* |
| 117 | * Shift timer count down by a constant due to unreliable lower bits |
| 118 | * on some targets. |
| 119 | */ |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 120 | return msm_read_timer_count(cs) >> MSM_DGT_SHIFT; |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | static struct clocksource msm_clocksource = { |
| 124 | .name = "dg_timer", |
| 125 | .rating = 300, |
| 126 | .read = msm_read_timer_count, |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 127 | .mask = CLOCKSOURCE_MASK(32), |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 128 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 129 | }; |
| 130 | |
Marc Zyngier | 5ca709c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 131 | #ifdef CONFIG_LOCAL_TIMERS |
| 132 | static int __cpuinit msm_local_timer_setup(struct clock_event_device *evt) |
| 133 | { |
| 134 | /* Use existing clock_event for cpu 0 */ |
| 135 | if (!smp_processor_id()) |
| 136 | return 0; |
| 137 | |
| 138 | writel_relaxed(0, event_base + TIMER_ENABLE); |
| 139 | writel_relaxed(0, event_base + TIMER_CLEAR); |
| 140 | writel_relaxed(~0, event_base + TIMER_MATCH_VAL); |
| 141 | evt->irq = msm_clockevent.irq; |
| 142 | evt->name = "local_timer"; |
| 143 | evt->features = msm_clockevent.features; |
| 144 | evt->rating = msm_clockevent.rating; |
| 145 | evt->set_mode = msm_timer_set_mode; |
| 146 | evt->set_next_event = msm_timer_set_next_event; |
| 147 | evt->shift = msm_clockevent.shift; |
| 148 | evt->mult = div_sc(GPT_HZ, NSEC_PER_SEC, evt->shift); |
| 149 | evt->max_delta_ns = clockevent_delta2ns(0xf0000000, evt); |
| 150 | evt->min_delta_ns = clockevent_delta2ns(4, evt); |
| 151 | |
| 152 | *__this_cpu_ptr(msm_evt.percpu_evt) = evt; |
| 153 | clockevents_register_device(evt); |
| 154 | enable_percpu_irq(evt->irq, 0); |
| 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | static void msm_local_timer_stop(struct clock_event_device *evt) |
| 159 | { |
| 160 | evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt); |
| 161 | disable_percpu_irq(evt->irq); |
| 162 | } |
| 163 | |
| 164 | static struct local_timer_ops msm_local_timer_ops __cpuinitdata = { |
| 165 | .setup = msm_local_timer_setup, |
| 166 | .stop = msm_local_timer_stop, |
| 167 | }; |
| 168 | #endif /* CONFIG_LOCAL_TIMERS */ |
| 169 | |
Stephen Boyd | f8e56c4 | 2012-02-22 01:39:37 +0000 | [diff] [blame] | 170 | static notrace u32 msm_sched_clock_read(void) |
| 171 | { |
| 172 | return msm_clocksource.read(&msm_clocksource); |
| 173 | } |
| 174 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 175 | static void __init msm_timer_init(void) |
| 176 | { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 177 | struct clock_event_device *ce = &msm_clockevent; |
| 178 | struct clocksource *cs = &msm_clocksource; |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 179 | int res; |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 180 | u32 dgt_hz; |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 181 | |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 182 | if (cpu_is_msm7x01()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 183 | event_base = MSM_CSR_BASE; |
| 184 | source_base = MSM_CSR_BASE + 0x10; |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 185 | dgt_hz = 19200000 >> MSM_DGT_SHIFT; /* 600 KHz */ |
| 186 | cs->read = msm_read_timer_count_shift; |
| 187 | cs->mask = CLOCKSOURCE_MASK((32 - MSM_DGT_SHIFT)); |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 188 | } else if (cpu_is_msm7x30()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 189 | event_base = MSM_CSR_BASE + 0x04; |
| 190 | source_base = MSM_CSR_BASE + 0x24; |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 191 | dgt_hz = 24576000 / 4; |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 192 | } else if (cpu_is_qsd8x50()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 193 | event_base = MSM_CSR_BASE; |
| 194 | source_base = MSM_CSR_BASE + 0x10; |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 195 | dgt_hz = 19200000 / 4; |
Stepan Moskovchenko | a81c8c3 | 2010-12-01 19:25:14 -0800 | [diff] [blame] | 196 | } else if (cpu_is_msm8x60() || cpu_is_msm8960()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 197 | event_base = MSM_TMR_BASE + 0x04; |
| 198 | /* Use CPU0's timer as the global clock source. */ |
| 199 | source_base = MSM_TMR0_BASE + 0x24; |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 200 | dgt_hz = 27000000 / 4; |
| 201 | writel_relaxed(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL); |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 202 | } else |
| 203 | BUG(); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 204 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 205 | writel_relaxed(0, event_base + TIMER_ENABLE); |
| 206 | writel_relaxed(0, event_base + TIMER_CLEAR); |
| 207 | writel_relaxed(~0, event_base + TIMER_MATCH_VAL); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 208 | ce->cpumask = cpumask_of(0); |
David Brown | 8c27e6f | 2011-01-07 10:20:49 -0800 | [diff] [blame] | 209 | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 210 | ce->irq = INT_GP_TIMER_EXP; |
Stephen Boyd | 27fdb57 | 2011-11-08 10:34:10 -0800 | [diff] [blame] | 211 | clockevents_config_and_register(ce, GPT_HZ, 4, 0xffffffff); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 212 | if (cpu_is_msm8x60() || cpu_is_msm8960()) { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 213 | msm_evt.percpu_evt = alloc_percpu(struct clock_event_device *); |
| 214 | if (!msm_evt.percpu_evt) { |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 215 | pr_err("memory allocation failed for %s\n", ce->name); |
| 216 | goto err; |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 217 | } |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 218 | *__this_cpu_ptr(msm_evt.percpu_evt) = ce; |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 219 | res = request_percpu_irq(ce->irq, msm_timer_interrupt, |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 220 | ce->name, msm_evt.percpu_evt); |
Marc Zyngier | 5ca709c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 221 | if (!res) { |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 222 | enable_percpu_irq(ce->irq, 0); |
Marc Zyngier | 5ca709c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 223 | #ifdef CONFIG_LOCAL_TIMERS |
| 224 | local_timer_register(&msm_local_timer_ops); |
| 225 | #endif |
| 226 | } |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 227 | } else { |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 228 | msm_evt.evt = ce; |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 229 | res = request_irq(ce->irq, msm_timer_interrupt, |
| 230 | IRQF_TIMER | IRQF_NOBALANCING | |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 231 | IRQF_TRIGGER_RISING, ce->name, &msm_evt.evt); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 232 | } |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 233 | |
| 234 | if (res) |
| 235 | pr_err("request_irq failed for %s\n", ce->name); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 236 | err: |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 237 | writel_relaxed(TIMER_ENABLE_EN, source_base + TIMER_ENABLE); |
Stephen Boyd | 2081a6b | 2011-11-08 10:34:08 -0800 | [diff] [blame] | 238 | res = clocksource_register_hz(cs, dgt_hz); |
Stephen Boyd | dd15ab8 | 2011-11-08 10:34:05 -0800 | [diff] [blame] | 239 | if (res) |
Stephen Boyd | 2a00c10 | 2011-11-08 10:34:07 -0800 | [diff] [blame] | 240 | pr_err("clocksource_register failed\n"); |
Stephen Boyd | f8e56c4 | 2012-02-22 01:39:37 +0000 | [diff] [blame] | 241 | setup_sched_clock(msm_sched_clock_read, |
| 242 | cpu_is_msm7x01() ? 32 - MSM_DGT_SHIFT : 32, dgt_hz); |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 243 | } |
| 244 | |
Arve Hjønnevåg | 3e4ea37 | 2007-11-26 04:11:58 -0800 | [diff] [blame] | 245 | struct sys_timer msm_timer = { |
| 246 | .init = msm_timer_init |
| 247 | }; |