2 * QEMU GRLIB GPTimer Emulator
4 * Copyright (c) 2010-2011 AdaCore
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu-timer.h"
30 #define UNIT_REG_SIZE 16 /* Size of memory mapped regs for the unit */
31 #define GPTIMER_REG_SIZE 16 /* Size of memory mapped regs for a GPTimer */
33 #define GPTIMER_MAX_TIMERS 8
35 /* GPTimer Config register fields */
36 #define GPTIMER_ENABLE (1 << 0)
37 #define GPTIMER_RESTART (1 << 1)
38 #define GPTIMER_LOAD (1 << 2)
39 #define GPTIMER_INT_ENABLE (1 << 3)
40 #define GPTIMER_INT_PENDING (1 << 4)
41 #define GPTIMER_CHAIN (1 << 5) /* Not supported */
42 #define GPTIMER_DEBUG_HALT (1 << 6) /* Not supported */
44 /* Memory mapped register offsets */
45 #define SCALER_OFFSET 0x00
46 #define SCALER_RELOAD_OFFSET 0x04
47 #define CONFIG_OFFSET 0x08
48 #define COUNTER_OFFSET 0x00
49 #define COUNTER_RELOAD_OFFSET 0x04
50 #define TIMER_BASE 0x10
52 typedef struct GPTimer GPTimer;
53 typedef struct GPTimerUnit GPTimerUnit;
57 struct ptimer_state *ptimer;
72 uint32_t nr_timers; /* Number of timers available */
73 uint32_t freq_hz; /* System frequency */
74 uint32_t irq_line; /* Base irq line */
84 static void grlib_gptimer_enable(GPTimer *timer)
86 assert(timer != NULL);
89 ptimer_stop(timer->ptimer);
91 if (!(timer->config & GPTIMER_ENABLE)) {
93 trace_grlib_gptimer_disabled(timer->id, timer->config);
97 /* ptimer is triggered when the counter reach 0 but GPTimer is triggered at
98 underflow. Set count + 1 to simulate the GPTimer behavior. */
100 trace_grlib_gptimer_enable(timer->id, timer->counter + 1);
102 ptimer_set_count(timer->ptimer, timer->counter + 1);
103 ptimer_run(timer->ptimer, 1);
106 static void grlib_gptimer_restart(GPTimer *timer)
108 assert(timer != NULL);
110 trace_grlib_gptimer_restart(timer->id, timer->reload);
112 timer->counter = timer->reload;
113 grlib_gptimer_enable(timer);
116 static void grlib_gptimer_set_scaler(GPTimerUnit *unit, uint32_t scaler)
121 assert(unit != NULL);
124 value = unit->freq_hz / (scaler + 1);
126 value = unit->freq_hz;
129 trace_grlib_gptimer_set_scaler(scaler, value);
131 for (i = 0; i < unit->nr_timers; i++) {
132 ptimer_set_freq(unit->timers[i].ptimer, value);
136 static void grlib_gptimer_hit(void *opaque)
138 GPTimer *timer = opaque;
139 assert(timer != NULL);
141 trace_grlib_gptimer_hit(timer->id);
145 if (timer->config & GPTIMER_INT_ENABLE) {
146 /* Set the pending bit (only unset by write in the config register) */
147 timer->config |= GPTIMER_INT_PENDING;
148 qemu_irq_pulse(timer->irq);
151 if (timer->config & GPTIMER_RESTART) {
152 grlib_gptimer_restart(timer);
156 static uint32_t grlib_gptimer_readl(void *opaque, target_phys_addr_t addr)
158 GPTimerUnit *unit = opaque;
159 target_phys_addr_t timer_addr;
168 trace_grlib_gptimer_readl(-1, addr, unit->scaler);
171 case SCALER_RELOAD_OFFSET:
172 trace_grlib_gptimer_readl(-1, addr, unit->reload);
176 trace_grlib_gptimer_readl(-1, addr, unit->config);
183 timer_addr = (addr % TIMER_BASE);
184 id = (addr - TIMER_BASE) / TIMER_BASE;
186 if (id >= 0 && id < unit->nr_timers) {
188 /* GPTimer registers */
189 switch (timer_addr) {
191 value = ptimer_get_count(unit->timers[id].ptimer);
192 trace_grlib_gptimer_readl(id, addr, value);
195 case COUNTER_RELOAD_OFFSET:
196 value = unit->timers[id].reload;
197 trace_grlib_gptimer_readl(id, addr, value);
201 trace_grlib_gptimer_readl(id, addr, unit->timers[id].config);
202 return unit->timers[id].config;
210 trace_grlib_gptimer_readl(-1, addr, 0);
215 grlib_gptimer_writel(void *opaque, target_phys_addr_t addr, uint32_t value)
217 GPTimerUnit *unit = opaque;
218 target_phys_addr_t timer_addr;
226 value &= 0xFFFF; /* clean up the value */
227 unit->scaler = value;
228 trace_grlib_gptimer_writel(-1, addr, unit->scaler);
231 case SCALER_RELOAD_OFFSET:
232 value &= 0xFFFF; /* clean up the value */
233 unit->reload = value;
234 trace_grlib_gptimer_writel(-1, addr, unit->reload);
235 grlib_gptimer_set_scaler(unit, value);
239 /* Read Only (disable timer freeze not supported) */
240 trace_grlib_gptimer_writel(-1, addr, 0);
247 timer_addr = (addr % TIMER_BASE);
248 id = (addr - TIMER_BASE) / TIMER_BASE;
250 if (id >= 0 && id < unit->nr_timers) {
252 /* GPTimer registers */
253 switch (timer_addr) {
255 trace_grlib_gptimer_writel(id, addr, value);
256 unit->timers[id].counter = value;
257 grlib_gptimer_enable(&unit->timers[id]);
260 case COUNTER_RELOAD_OFFSET:
261 trace_grlib_gptimer_writel(id, addr, value);
262 unit->timers[id].reload = value;
266 trace_grlib_gptimer_writel(id, addr, value);
268 if (value & GPTIMER_INT_PENDING) {
269 /* clear pending bit */
270 value &= ~GPTIMER_INT_PENDING;
272 /* keep pending bit */
273 value |= unit->timers[id].config & GPTIMER_INT_PENDING;
276 unit->timers[id].config = value;
278 /* gptimer_restart calls gptimer_enable, so if "enable" and "load"
279 bits are present, we just have to call restart. */
281 if (value & GPTIMER_LOAD) {
282 grlib_gptimer_restart(&unit->timers[id]);
283 } else if (value & GPTIMER_ENABLE) {
284 grlib_gptimer_enable(&unit->timers[id]);
287 /* These fields must always be read as 0 */
288 value &= ~(GPTIMER_LOAD & GPTIMER_DEBUG_HALT);
290 unit->timers[id].config = value;
299 trace_grlib_gptimer_writel(-1, addr, value);
302 static CPUReadMemoryFunc * const grlib_gptimer_read[] = {
303 NULL, NULL, grlib_gptimer_readl,
306 static CPUWriteMemoryFunc * const grlib_gptimer_write[] = {
307 NULL, NULL, grlib_gptimer_writel,
310 static void grlib_gptimer_reset(DeviceState *d)
312 GPTimerUnit *unit = container_of(d, GPTimerUnit, busdev.qdev);
315 assert(unit != NULL);
321 unit->config = unit->nr_timers;
322 unit->config |= unit->irq_line << 3;
323 unit->config |= 1 << 8; /* separate interrupt */
324 unit->config |= 1 << 9; /* Disable timer freeze */
327 for (i = 0; i < unit->nr_timers; i++) {
328 GPTimer *timer = &unit->timers[i];
333 ptimer_stop(timer->ptimer);
334 ptimer_set_count(timer->ptimer, 0);
335 ptimer_set_freq(timer->ptimer, unit->freq_hz);
339 static int grlib_gptimer_init(SysBusDevice *dev)
341 GPTimerUnit *unit = FROM_SYSBUS(typeof(*unit), dev);
345 assert(unit->nr_timers > 0);
346 assert(unit->nr_timers <= GPTIMER_MAX_TIMERS);
348 unit->timers = qemu_mallocz(sizeof unit->timers[0] * unit->nr_timers);
350 for (i = 0; i < unit->nr_timers; i++) {
351 GPTimer *timer = &unit->timers[i];
354 timer->bh = qemu_bh_new(grlib_gptimer_hit, timer);
355 timer->ptimer = ptimer_init(timer->bh);
358 /* One IRQ line for each timer */
359 sysbus_init_irq(dev, &timer->irq);
361 ptimer_set_freq(timer->ptimer, unit->freq_hz);
364 timer_regs = cpu_register_io_memory(grlib_gptimer_read,
366 unit, DEVICE_NATIVE_ENDIAN);
367 if (timer_regs < 0) {
371 sysbus_init_mmio(dev, UNIT_REG_SIZE + GPTIMER_REG_SIZE * unit->nr_timers,
376 static SysBusDeviceInfo grlib_gptimer_info = {
377 .init = grlib_gptimer_init,
378 .qdev.name = "grlib,gptimer",
379 .qdev.reset = grlib_gptimer_reset,
380 .qdev.size = sizeof(GPTimerUnit),
381 .qdev.props = (Property[]) {
382 DEFINE_PROP_UINT32("frequency", GPTimerUnit, freq_hz, 40000000),
383 DEFINE_PROP_UINT32("irq-line", GPTimerUnit, irq_line, 8),
384 DEFINE_PROP_UINT32("nr-timers", GPTimerUnit, nr_timers, 2),
385 DEFINE_PROP_END_OF_LIST()
389 static void grlib_gptimer_register(void)
391 sysbus_register_withprop(&grlib_gptimer_info);
394 device_init(grlib_gptimer_register)