Merge remote-tracking branch 'remotes/armbru/tags/pull-build-2019-07-02-v2' into...
[qemu/ar7.git] / hw / timer / grlib_gptimer.c
blobe45a49075be6b6afecc6f049db33b0e9bde3b580
1 /*
2 * QEMU GRLIB GPTimer Emulator
4 * Copyright (c) 2010-2019 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
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "hw/sparc/grlib.h"
27 #include "hw/sysbus.h"
28 #include "qemu/timer.h"
29 #include "hw/ptimer.h"
30 #include "qemu/main-loop.h"
31 #include "qemu/module.h"
33 #include "trace.h"
35 #define UNIT_REG_SIZE 16 /* Size of memory mapped regs for the unit */
36 #define GPTIMER_REG_SIZE 16 /* Size of memory mapped regs for a GPTimer */
38 #define GPTIMER_MAX_TIMERS 8
40 /* GPTimer Config register fields */
41 #define GPTIMER_ENABLE (1 << 0)
42 #define GPTIMER_RESTART (1 << 1)
43 #define GPTIMER_LOAD (1 << 2)
44 #define GPTIMER_INT_ENABLE (1 << 3)
45 #define GPTIMER_INT_PENDING (1 << 4)
46 #define GPTIMER_CHAIN (1 << 5) /* Not supported */
47 #define GPTIMER_DEBUG_HALT (1 << 6) /* Not supported */
49 /* Memory mapped register offsets */
50 #define SCALER_OFFSET 0x00
51 #define SCALER_RELOAD_OFFSET 0x04
52 #define CONFIG_OFFSET 0x08
53 #define COUNTER_OFFSET 0x00
54 #define COUNTER_RELOAD_OFFSET 0x04
55 #define TIMER_BASE 0x10
57 #define GRLIB_GPTIMER(obj) \
58 OBJECT_CHECK(GPTimerUnit, (obj), TYPE_GRLIB_GPTIMER)
60 typedef struct GPTimer GPTimer;
61 typedef struct GPTimerUnit GPTimerUnit;
63 struct GPTimer {
64 QEMUBH *bh;
65 struct ptimer_state *ptimer;
67 qemu_irq irq;
68 int id;
69 GPTimerUnit *unit;
71 /* registers */
72 uint32_t counter;
73 uint32_t reload;
74 uint32_t config;
77 struct GPTimerUnit {
78 SysBusDevice parent_obj;
80 MemoryRegion iomem;
82 uint32_t nr_timers; /* Number of timers available */
83 uint32_t freq_hz; /* System frequency */
84 uint32_t irq_line; /* Base irq line */
86 GPTimer *timers;
88 /* registers */
89 uint32_t scaler;
90 uint32_t reload;
91 uint32_t config;
94 static void grlib_gptimer_enable(GPTimer *timer)
96 assert(timer != NULL);
99 ptimer_stop(timer->ptimer);
101 if (!(timer->config & GPTIMER_ENABLE)) {
102 /* Timer disabled */
103 trace_grlib_gptimer_disabled(timer->id, timer->config);
104 return;
107 /* ptimer is triggered when the counter reach 0 but GPTimer is triggered at
108 underflow. Set count + 1 to simulate the GPTimer behavior. */
110 trace_grlib_gptimer_enable(timer->id, timer->counter);
112 ptimer_set_count(timer->ptimer, (uint64_t)timer->counter + 1);
113 ptimer_run(timer->ptimer, 1);
116 static void grlib_gptimer_restart(GPTimer *timer)
118 assert(timer != NULL);
120 trace_grlib_gptimer_restart(timer->id, timer->reload);
122 timer->counter = timer->reload;
123 grlib_gptimer_enable(timer);
126 static void grlib_gptimer_set_scaler(GPTimerUnit *unit, uint32_t scaler)
128 int i = 0;
129 uint32_t value = 0;
131 assert(unit != NULL);
133 if (scaler > 0) {
134 value = unit->freq_hz / (scaler + 1);
135 } else {
136 value = unit->freq_hz;
139 trace_grlib_gptimer_set_scaler(scaler, value);
141 for (i = 0; i < unit->nr_timers; i++) {
142 ptimer_set_freq(unit->timers[i].ptimer, value);
146 static void grlib_gptimer_hit(void *opaque)
148 GPTimer *timer = opaque;
149 assert(timer != NULL);
151 trace_grlib_gptimer_hit(timer->id);
153 /* Timer expired */
155 if (timer->config & GPTIMER_INT_ENABLE) {
156 /* Set the pending bit (only unset by write in the config register) */
157 timer->config |= GPTIMER_INT_PENDING;
158 qemu_irq_pulse(timer->irq);
161 if (timer->config & GPTIMER_RESTART) {
162 grlib_gptimer_restart(timer);
166 static uint64_t grlib_gptimer_read(void *opaque, hwaddr addr,
167 unsigned size)
169 GPTimerUnit *unit = opaque;
170 hwaddr timer_addr;
171 int id;
172 uint32_t value = 0;
174 addr &= 0xff;
176 /* Unit registers */
177 switch (addr) {
178 case SCALER_OFFSET:
179 trace_grlib_gptimer_readl(-1, addr, unit->scaler);
180 return unit->scaler;
182 case SCALER_RELOAD_OFFSET:
183 trace_grlib_gptimer_readl(-1, addr, unit->reload);
184 return unit->reload;
186 case CONFIG_OFFSET:
187 trace_grlib_gptimer_readl(-1, addr, unit->config);
188 return unit->config;
190 default:
191 break;
194 timer_addr = (addr % TIMER_BASE);
195 id = (addr - TIMER_BASE) / TIMER_BASE;
197 if (id >= 0 && id < unit->nr_timers) {
199 /* GPTimer registers */
200 switch (timer_addr) {
201 case COUNTER_OFFSET:
202 value = ptimer_get_count(unit->timers[id].ptimer);
203 trace_grlib_gptimer_readl(id, addr, value);
204 return value;
206 case COUNTER_RELOAD_OFFSET:
207 value = unit->timers[id].reload;
208 trace_grlib_gptimer_readl(id, addr, value);
209 return value;
211 case CONFIG_OFFSET:
212 trace_grlib_gptimer_readl(id, addr, unit->timers[id].config);
213 return unit->timers[id].config;
215 default:
216 break;
221 trace_grlib_gptimer_readl(-1, addr, 0);
222 return 0;
225 static void grlib_gptimer_write(void *opaque, hwaddr addr,
226 uint64_t value, unsigned size)
228 GPTimerUnit *unit = opaque;
229 hwaddr timer_addr;
230 int id;
232 addr &= 0xff;
234 /* Unit registers */
235 switch (addr) {
236 case SCALER_OFFSET:
237 value &= 0xFFFF; /* clean up the value */
238 unit->scaler = value;
239 trace_grlib_gptimer_writel(-1, addr, unit->scaler);
240 return;
242 case SCALER_RELOAD_OFFSET:
243 value &= 0xFFFF; /* clean up the value */
244 unit->reload = value;
245 trace_grlib_gptimer_writel(-1, addr, unit->reload);
246 grlib_gptimer_set_scaler(unit, value);
247 return;
249 case CONFIG_OFFSET:
250 /* Read Only (disable timer freeze not supported) */
251 trace_grlib_gptimer_writel(-1, addr, 0);
252 return;
254 default:
255 break;
258 timer_addr = (addr % TIMER_BASE);
259 id = (addr - TIMER_BASE) / TIMER_BASE;
261 if (id >= 0 && id < unit->nr_timers) {
263 /* GPTimer registers */
264 switch (timer_addr) {
265 case COUNTER_OFFSET:
266 trace_grlib_gptimer_writel(id, addr, value);
267 unit->timers[id].counter = value;
268 grlib_gptimer_enable(&unit->timers[id]);
269 return;
271 case COUNTER_RELOAD_OFFSET:
272 trace_grlib_gptimer_writel(id, addr, value);
273 unit->timers[id].reload = value;
274 return;
276 case CONFIG_OFFSET:
277 trace_grlib_gptimer_writel(id, addr, value);
279 if (value & GPTIMER_INT_PENDING) {
280 /* clear pending bit */
281 value &= ~GPTIMER_INT_PENDING;
282 } else {
283 /* keep pending bit */
284 value |= unit->timers[id].config & GPTIMER_INT_PENDING;
287 unit->timers[id].config = value;
289 /* gptimer_restart calls gptimer_enable, so if "enable" and "load"
290 bits are present, we just have to call restart. */
292 if (value & GPTIMER_LOAD) {
293 grlib_gptimer_restart(&unit->timers[id]);
294 } else if (value & GPTIMER_ENABLE) {
295 grlib_gptimer_enable(&unit->timers[id]);
298 /* These fields must always be read as 0 */
299 value &= ~(GPTIMER_LOAD & GPTIMER_DEBUG_HALT);
301 unit->timers[id].config = value;
302 return;
304 default:
305 break;
310 trace_grlib_gptimer_writel(-1, addr, value);
313 static const MemoryRegionOps grlib_gptimer_ops = {
314 .read = grlib_gptimer_read,
315 .write = grlib_gptimer_write,
316 .endianness = DEVICE_NATIVE_ENDIAN,
317 .valid = {
318 .min_access_size = 4,
319 .max_access_size = 4,
323 static void grlib_gptimer_reset(DeviceState *d)
325 GPTimerUnit *unit = GRLIB_GPTIMER(d);
326 int i = 0;
328 assert(unit != NULL);
330 unit->scaler = 0;
331 unit->reload = 0;
333 unit->config = unit->nr_timers;
334 unit->config |= unit->irq_line << 3;
335 unit->config |= 1 << 8; /* separate interrupt */
336 unit->config |= 1 << 9; /* Disable timer freeze */
339 for (i = 0; i < unit->nr_timers; i++) {
340 GPTimer *timer = &unit->timers[i];
342 timer->counter = 0;
343 timer->reload = 0;
344 timer->config = 0;
345 ptimer_stop(timer->ptimer);
346 ptimer_set_count(timer->ptimer, 0);
347 ptimer_set_freq(timer->ptimer, unit->freq_hz);
351 static void grlib_gptimer_realize(DeviceState *dev, Error **errp)
353 GPTimerUnit *unit = GRLIB_GPTIMER(dev);
354 unsigned int i;
355 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
357 assert(unit->nr_timers > 0);
358 assert(unit->nr_timers <= GPTIMER_MAX_TIMERS);
360 unit->timers = g_malloc0(sizeof unit->timers[0] * unit->nr_timers);
362 for (i = 0; i < unit->nr_timers; i++) {
363 GPTimer *timer = &unit->timers[i];
365 timer->unit = unit;
366 timer->bh = qemu_bh_new(grlib_gptimer_hit, timer);
367 timer->ptimer = ptimer_init(timer->bh, PTIMER_POLICY_DEFAULT);
368 timer->id = i;
370 /* One IRQ line for each timer */
371 sysbus_init_irq(sbd, &timer->irq);
373 ptimer_set_freq(timer->ptimer, unit->freq_hz);
376 memory_region_init_io(&unit->iomem, OBJECT(unit), &grlib_gptimer_ops,
377 unit, "gptimer",
378 UNIT_REG_SIZE + GPTIMER_REG_SIZE * unit->nr_timers);
380 sysbus_init_mmio(sbd, &unit->iomem);
383 static Property grlib_gptimer_properties[] = {
384 DEFINE_PROP_UINT32("frequency", GPTimerUnit, freq_hz, 40000000),
385 DEFINE_PROP_UINT32("irq-line", GPTimerUnit, irq_line, 8),
386 DEFINE_PROP_UINT32("nr-timers", GPTimerUnit, nr_timers, 2),
387 DEFINE_PROP_END_OF_LIST(),
390 static void grlib_gptimer_class_init(ObjectClass *klass, void *data)
392 DeviceClass *dc = DEVICE_CLASS(klass);
394 dc->realize = grlib_gptimer_realize;
395 dc->reset = grlib_gptimer_reset;
396 dc->props = grlib_gptimer_properties;
399 static const TypeInfo grlib_gptimer_info = {
400 .name = TYPE_GRLIB_GPTIMER,
401 .parent = TYPE_SYS_BUS_DEVICE,
402 .instance_size = sizeof(GPTimerUnit),
403 .class_init = grlib_gptimer_class_init,
406 static void grlib_gptimer_register_types(void)
408 type_register_static(&grlib_gptimer_info);
411 type_init(grlib_gptimer_register_types)