2 * QEMU GRLIB GPTimer Emulator
4 * SPDX-License-Identifier: MIT
6 * Copyright (c) 2010-2024 AdaCore
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #include "qemu/osdep.h"
28 #include "hw/timer/grlib_gptimer.h"
29 #include "hw/sysbus.h"
30 #include "qemu/timer.h"
32 #include "hw/ptimer.h"
33 #include "hw/qdev-properties.h"
34 #include "qemu/module.h"
37 #include "qom/object.h"
39 #define UNIT_REG_SIZE 16 /* Size of memory mapped regs for the unit */
40 #define GPTIMER_REG_SIZE 16 /* Size of memory mapped regs for a GPTimer */
42 #define GPTIMER_MAX_TIMERS 8
44 /* GPTimer Config register fields */
45 #define GPTIMER_ENABLE (1 << 0)
46 #define GPTIMER_RESTART (1 << 1)
47 #define GPTIMER_LOAD (1 << 2)
48 #define GPTIMER_INT_ENABLE (1 << 3)
49 #define GPTIMER_INT_PENDING (1 << 4)
50 #define GPTIMER_CHAIN (1 << 5) /* Not supported */
51 #define GPTIMER_DEBUG_HALT (1 << 6) /* Not supported */
53 /* Memory mapped register offsets */
54 #define SCALER_OFFSET 0x00
55 #define SCALER_RELOAD_OFFSET 0x04
56 #define CONFIG_OFFSET 0x08
57 #define COUNTER_OFFSET 0x00
58 #define COUNTER_RELOAD_OFFSET 0x04
59 #define TIMER_BASE 0x10
61 OBJECT_DECLARE_SIMPLE_TYPE(GPTimerUnit
, GRLIB_GPTIMER
)
63 typedef struct GPTimer GPTimer
;
66 struct ptimer_state
*ptimer
;
79 SysBusDevice parent_obj
;
83 uint32_t nr_timers
; /* Number of timers available */
84 uint32_t freq_hz
; /* System frequency */
85 uint32_t irq_line
; /* Base irq line */
95 static void grlib_gptimer_tx_begin(GPTimer
*timer
)
97 ptimer_transaction_begin(timer
->ptimer
);
100 static void grlib_gptimer_tx_commit(GPTimer
*timer
)
102 ptimer_transaction_commit(timer
->ptimer
);
105 /* Must be called within grlib_gptimer_tx_begin/commit block */
106 static void grlib_gptimer_enable(GPTimer
*timer
)
108 assert(timer
!= NULL
);
111 ptimer_stop(timer
->ptimer
);
113 if (!(timer
->config
& GPTIMER_ENABLE
)) {
115 trace_grlib_gptimer_disabled(timer
->id
, timer
->config
);
119 /* ptimer is triggered when the counter reach 0 but GPTimer is triggered at
120 underflow. Set count + 1 to simulate the GPTimer behavior. */
122 trace_grlib_gptimer_enable(timer
->id
, timer
->counter
);
124 ptimer_set_count(timer
->ptimer
, (uint64_t)timer
->counter
+ 1);
125 ptimer_run(timer
->ptimer
, 1);
128 /* Must be called within grlib_gptimer_tx_begin/commit block */
129 static void grlib_gptimer_restart(GPTimer
*timer
)
131 assert(timer
!= NULL
);
133 trace_grlib_gptimer_restart(timer
->id
, timer
->reload
);
135 timer
->counter
= timer
->reload
;
136 grlib_gptimer_enable(timer
);
139 static void grlib_gptimer_set_scaler(GPTimerUnit
*unit
, uint32_t scaler
)
144 assert(unit
!= NULL
);
147 value
= unit
->freq_hz
/ (scaler
+ 1);
149 value
= unit
->freq_hz
;
152 trace_grlib_gptimer_set_scaler(scaler
, value
);
154 for (i
= 0; i
< unit
->nr_timers
; i
++) {
155 ptimer_transaction_begin(unit
->timers
[i
].ptimer
);
156 ptimer_set_freq(unit
->timers
[i
].ptimer
, value
);
157 ptimer_transaction_commit(unit
->timers
[i
].ptimer
);
161 static void grlib_gptimer_hit(void *opaque
)
163 GPTimer
*timer
= opaque
;
164 assert(timer
!= NULL
);
166 trace_grlib_gptimer_hit(timer
->id
);
170 if (timer
->config
& GPTIMER_INT_ENABLE
) {
171 /* Set the pending bit (only unset by write in the config register) */
172 timer
->config
|= GPTIMER_INT_PENDING
;
173 qemu_irq_pulse(timer
->irq
);
176 if (timer
->config
& GPTIMER_RESTART
) {
177 grlib_gptimer_restart(timer
);
181 static uint64_t grlib_gptimer_read(void *opaque
, hwaddr addr
,
184 GPTimerUnit
*unit
= opaque
;
194 trace_grlib_gptimer_readl(-1, addr
, unit
->scaler
);
197 case SCALER_RELOAD_OFFSET
:
198 trace_grlib_gptimer_readl(-1, addr
, unit
->reload
);
202 trace_grlib_gptimer_readl(-1, addr
, unit
->config
);
209 timer_addr
= (addr
% TIMER_BASE
);
210 id
= (addr
- TIMER_BASE
) / TIMER_BASE
;
212 if (id
>= 0 && id
< unit
->nr_timers
) {
214 /* GPTimer registers */
215 switch (timer_addr
) {
217 value
= ptimer_get_count(unit
->timers
[id
].ptimer
);
218 trace_grlib_gptimer_readl(id
, addr
, value
);
221 case COUNTER_RELOAD_OFFSET
:
222 value
= unit
->timers
[id
].reload
;
223 trace_grlib_gptimer_readl(id
, addr
, value
);
227 trace_grlib_gptimer_readl(id
, addr
, unit
->timers
[id
].config
);
228 return unit
->timers
[id
].config
;
236 trace_grlib_gptimer_readl(-1, addr
, 0);
240 static void grlib_gptimer_write(void *opaque
, hwaddr addr
,
241 uint64_t value
, unsigned size
)
243 GPTimerUnit
*unit
= opaque
;
252 value
&= 0xFFFF; /* clean up the value */
253 unit
->scaler
= value
;
254 trace_grlib_gptimer_writel(-1, addr
, unit
->scaler
);
257 case SCALER_RELOAD_OFFSET
:
258 value
&= 0xFFFF; /* clean up the value */
259 unit
->reload
= value
;
260 trace_grlib_gptimer_writel(-1, addr
, unit
->reload
);
261 grlib_gptimer_set_scaler(unit
, value
);
265 /* Read Only (disable timer freeze not supported) */
266 trace_grlib_gptimer_writel(-1, addr
, 0);
273 timer_addr
= (addr
% TIMER_BASE
);
274 id
= (addr
- TIMER_BASE
) / TIMER_BASE
;
276 if (id
>= 0 && id
< unit
->nr_timers
) {
278 /* GPTimer registers */
279 switch (timer_addr
) {
281 trace_grlib_gptimer_writel(id
, addr
, value
);
282 grlib_gptimer_tx_begin(&unit
->timers
[id
]);
283 unit
->timers
[id
].counter
= value
;
284 grlib_gptimer_enable(&unit
->timers
[id
]);
285 grlib_gptimer_tx_commit(&unit
->timers
[id
]);
288 case COUNTER_RELOAD_OFFSET
:
289 trace_grlib_gptimer_writel(id
, addr
, value
);
290 unit
->timers
[id
].reload
= value
;
294 trace_grlib_gptimer_writel(id
, addr
, value
);
296 if (value
& GPTIMER_INT_PENDING
) {
297 /* clear pending bit */
298 value
&= ~GPTIMER_INT_PENDING
;
300 /* keep pending bit */
301 value
|= unit
->timers
[id
].config
& GPTIMER_INT_PENDING
;
304 unit
->timers
[id
].config
= value
;
306 /* gptimer_restart calls gptimer_enable, so if "enable" and "load"
307 bits are present, we just have to call restart. */
309 grlib_gptimer_tx_begin(&unit
->timers
[id
]);
310 if (value
& GPTIMER_LOAD
) {
311 grlib_gptimer_restart(&unit
->timers
[id
]);
312 } else if (value
& GPTIMER_ENABLE
) {
313 grlib_gptimer_enable(&unit
->timers
[id
]);
316 /* These fields must always be read as 0 */
317 value
&= ~(GPTIMER_LOAD
& GPTIMER_DEBUG_HALT
);
319 unit
->timers
[id
].config
= value
;
320 grlib_gptimer_tx_commit(&unit
->timers
[id
]);
329 trace_grlib_gptimer_writel(-1, addr
, value
);
332 static const MemoryRegionOps grlib_gptimer_ops
= {
333 .read
= grlib_gptimer_read
,
334 .write
= grlib_gptimer_write
,
335 .endianness
= DEVICE_NATIVE_ENDIAN
,
337 .min_access_size
= 4,
338 .max_access_size
= 4,
342 static void grlib_gptimer_reset(DeviceState
*d
)
344 GPTimerUnit
*unit
= GRLIB_GPTIMER(d
);
347 assert(unit
!= NULL
);
352 unit
->config
= unit
->nr_timers
;
353 unit
->config
|= unit
->irq_line
<< 3;
354 unit
->config
|= 1 << 8; /* separate interrupt */
355 unit
->config
|= 1 << 9; /* Disable timer freeze */
358 for (i
= 0; i
< unit
->nr_timers
; i
++) {
359 GPTimer
*timer
= &unit
->timers
[i
];
364 ptimer_transaction_begin(timer
->ptimer
);
365 ptimer_stop(timer
->ptimer
);
366 ptimer_set_count(timer
->ptimer
, 0);
367 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
368 ptimer_transaction_commit(timer
->ptimer
);
372 static void grlib_gptimer_realize(DeviceState
*dev
, Error
**errp
)
374 GPTimerUnit
*unit
= GRLIB_GPTIMER(dev
);
376 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
378 assert(unit
->nr_timers
> 0);
379 assert(unit
->nr_timers
<= GPTIMER_MAX_TIMERS
);
381 unit
->timers
= g_malloc0(sizeof unit
->timers
[0] * unit
->nr_timers
);
383 for (i
= 0; i
< unit
->nr_timers
; i
++) {
384 GPTimer
*timer
= &unit
->timers
[i
];
387 timer
->ptimer
= ptimer_init(grlib_gptimer_hit
, timer
,
388 PTIMER_POLICY_LEGACY
);
391 /* One IRQ line for each timer */
392 sysbus_init_irq(sbd
, &timer
->irq
);
394 ptimer_transaction_begin(timer
->ptimer
);
395 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
396 ptimer_transaction_commit(timer
->ptimer
);
399 memory_region_init_io(&unit
->iomem
, OBJECT(unit
), &grlib_gptimer_ops
,
401 UNIT_REG_SIZE
+ GPTIMER_REG_SIZE
* unit
->nr_timers
);
403 sysbus_init_mmio(sbd
, &unit
->iomem
);
406 static Property grlib_gptimer_properties
[] = {
407 DEFINE_PROP_UINT32("frequency", GPTimerUnit
, freq_hz
, 40000000),
408 DEFINE_PROP_UINT32("irq-line", GPTimerUnit
, irq_line
, 8),
409 DEFINE_PROP_UINT32("nr-timers", GPTimerUnit
, nr_timers
, 2),
410 DEFINE_PROP_END_OF_LIST(),
413 static void grlib_gptimer_class_init(ObjectClass
*klass
, void *data
)
415 DeviceClass
*dc
= DEVICE_CLASS(klass
);
417 dc
->realize
= grlib_gptimer_realize
;
418 dc
->reset
= grlib_gptimer_reset
;
419 device_class_set_props(dc
, grlib_gptimer_properties
);
422 static const TypeInfo grlib_gptimer_info
= {
423 .name
= TYPE_GRLIB_GPTIMER
,
424 .parent
= TYPE_SYS_BUS_DEVICE
,
425 .instance_size
= sizeof(GPTimerUnit
),
426 .class_init
= grlib_gptimer_class_init
,
429 static void grlib_gptimer_register_types(void)
431 type_register_static(&grlib_gptimer_info
);
434 type_init(grlib_gptimer_register_types
)