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
25 #include "hw/sysbus.h"
26 #include "qemu/timer.h"
27 #include "hw/ptimer.h"
28 #include "qemu/timer.h"
29 #include "qemu/main-loop.h"
33 #define UNIT_REG_SIZE 16 /* Size of memory mapped regs for the unit */
34 #define GPTIMER_REG_SIZE 16 /* Size of memory mapped regs for a GPTimer */
36 #define GPTIMER_MAX_TIMERS 8
38 /* GPTimer Config register fields */
39 #define GPTIMER_ENABLE (1 << 0)
40 #define GPTIMER_RESTART (1 << 1)
41 #define GPTIMER_LOAD (1 << 2)
42 #define GPTIMER_INT_ENABLE (1 << 3)
43 #define GPTIMER_INT_PENDING (1 << 4)
44 #define GPTIMER_CHAIN (1 << 5) /* Not supported */
45 #define GPTIMER_DEBUG_HALT (1 << 6) /* Not supported */
47 /* Memory mapped register offsets */
48 #define SCALER_OFFSET 0x00
49 #define SCALER_RELOAD_OFFSET 0x04
50 #define CONFIG_OFFSET 0x08
51 #define COUNTER_OFFSET 0x00
52 #define COUNTER_RELOAD_OFFSET 0x04
53 #define TIMER_BASE 0x10
55 #define TYPE_GRLIB_GPTIMER "grlib,gptimer"
56 #define GRLIB_GPTIMER(obj) \
57 OBJECT_CHECK(GPTimerUnit, (obj), TYPE_GRLIB_GPTIMER)
59 typedef struct GPTimer GPTimer
;
60 typedef struct GPTimerUnit GPTimerUnit
;
64 struct ptimer_state
*ptimer
;
77 SysBusDevice parent_obj
;
81 uint32_t nr_timers
; /* Number of timers available */
82 uint32_t freq_hz
; /* System frequency */
83 uint32_t irq_line
; /* Base irq line */
93 static void grlib_gptimer_enable(GPTimer
*timer
)
95 assert(timer
!= NULL
);
98 ptimer_stop(timer
->ptimer
);
100 if (!(timer
->config
& GPTIMER_ENABLE
)) {
102 trace_grlib_gptimer_disabled(timer
->id
, timer
->config
);
106 /* ptimer is triggered when the counter reach 0 but GPTimer is triggered at
107 underflow. Set count + 1 to simulate the GPTimer behavior. */
109 trace_grlib_gptimer_enable(timer
->id
, timer
->counter
);
111 ptimer_set_count(timer
->ptimer
, (uint64_t)timer
->counter
+ 1);
112 ptimer_run(timer
->ptimer
, 1);
115 static void grlib_gptimer_restart(GPTimer
*timer
)
117 assert(timer
!= NULL
);
119 trace_grlib_gptimer_restart(timer
->id
, timer
->reload
);
121 timer
->counter
= timer
->reload
;
122 grlib_gptimer_enable(timer
);
125 static void grlib_gptimer_set_scaler(GPTimerUnit
*unit
, uint32_t scaler
)
130 assert(unit
!= NULL
);
133 value
= unit
->freq_hz
/ (scaler
+ 1);
135 value
= unit
->freq_hz
;
138 trace_grlib_gptimer_set_scaler(scaler
, value
);
140 for (i
= 0; i
< unit
->nr_timers
; i
++) {
141 ptimer_set_freq(unit
->timers
[i
].ptimer
, value
);
145 static void grlib_gptimer_hit(void *opaque
)
147 GPTimer
*timer
= opaque
;
148 assert(timer
!= NULL
);
150 trace_grlib_gptimer_hit(timer
->id
);
154 if (timer
->config
& GPTIMER_INT_ENABLE
) {
155 /* Set the pending bit (only unset by write in the config register) */
156 timer
->config
|= GPTIMER_INT_PENDING
;
157 qemu_irq_pulse(timer
->irq
);
160 if (timer
->config
& GPTIMER_RESTART
) {
161 grlib_gptimer_restart(timer
);
165 static uint64_t grlib_gptimer_read(void *opaque
, hwaddr addr
,
168 GPTimerUnit
*unit
= opaque
;
178 trace_grlib_gptimer_readl(-1, addr
, unit
->scaler
);
181 case SCALER_RELOAD_OFFSET
:
182 trace_grlib_gptimer_readl(-1, addr
, unit
->reload
);
186 trace_grlib_gptimer_readl(-1, addr
, unit
->config
);
193 timer_addr
= (addr
% TIMER_BASE
);
194 id
= (addr
- TIMER_BASE
) / TIMER_BASE
;
196 if (id
>= 0 && id
< unit
->nr_timers
) {
198 /* GPTimer registers */
199 switch (timer_addr
) {
201 value
= ptimer_get_count(unit
->timers
[id
].ptimer
);
202 trace_grlib_gptimer_readl(id
, addr
, value
);
205 case COUNTER_RELOAD_OFFSET
:
206 value
= unit
->timers
[id
].reload
;
207 trace_grlib_gptimer_readl(id
, addr
, value
);
211 trace_grlib_gptimer_readl(id
, addr
, unit
->timers
[id
].config
);
212 return unit
->timers
[id
].config
;
220 trace_grlib_gptimer_readl(-1, addr
, 0);
224 static void grlib_gptimer_write(void *opaque
, hwaddr addr
,
225 uint64_t value
, unsigned size
)
227 GPTimerUnit
*unit
= opaque
;
236 value
&= 0xFFFF; /* clean up the value */
237 unit
->scaler
= value
;
238 trace_grlib_gptimer_writel(-1, addr
, unit
->scaler
);
241 case SCALER_RELOAD_OFFSET
:
242 value
&= 0xFFFF; /* clean up the value */
243 unit
->reload
= value
;
244 trace_grlib_gptimer_writel(-1, addr
, unit
->reload
);
245 grlib_gptimer_set_scaler(unit
, value
);
249 /* Read Only (disable timer freeze not supported) */
250 trace_grlib_gptimer_writel(-1, addr
, 0);
257 timer_addr
= (addr
% TIMER_BASE
);
258 id
= (addr
- TIMER_BASE
) / TIMER_BASE
;
260 if (id
>= 0 && id
< unit
->nr_timers
) {
262 /* GPTimer registers */
263 switch (timer_addr
) {
265 trace_grlib_gptimer_writel(id
, addr
, value
);
266 unit
->timers
[id
].counter
= value
;
267 grlib_gptimer_enable(&unit
->timers
[id
]);
270 case COUNTER_RELOAD_OFFSET
:
271 trace_grlib_gptimer_writel(id
, addr
, value
);
272 unit
->timers
[id
].reload
= value
;
276 trace_grlib_gptimer_writel(id
, addr
, value
);
278 if (value
& GPTIMER_INT_PENDING
) {
279 /* clear pending bit */
280 value
&= ~GPTIMER_INT_PENDING
;
282 /* keep pending bit */
283 value
|= unit
->timers
[id
].config
& GPTIMER_INT_PENDING
;
286 unit
->timers
[id
].config
= value
;
288 /* gptimer_restart calls gptimer_enable, so if "enable" and "load"
289 bits are present, we just have to call restart. */
291 if (value
& GPTIMER_LOAD
) {
292 grlib_gptimer_restart(&unit
->timers
[id
]);
293 } else if (value
& GPTIMER_ENABLE
) {
294 grlib_gptimer_enable(&unit
->timers
[id
]);
297 /* These fields must always be read as 0 */
298 value
&= ~(GPTIMER_LOAD
& GPTIMER_DEBUG_HALT
);
300 unit
->timers
[id
].config
= value
;
309 trace_grlib_gptimer_writel(-1, addr
, value
);
312 static const MemoryRegionOps grlib_gptimer_ops
= {
313 .read
= grlib_gptimer_read
,
314 .write
= grlib_gptimer_write
,
315 .endianness
= DEVICE_NATIVE_ENDIAN
,
317 .min_access_size
= 4,
318 .max_access_size
= 4,
322 static void grlib_gptimer_reset(DeviceState
*d
)
324 GPTimerUnit
*unit
= GRLIB_GPTIMER(d
);
327 assert(unit
!= NULL
);
332 unit
->config
= unit
->nr_timers
;
333 unit
->config
|= unit
->irq_line
<< 3;
334 unit
->config
|= 1 << 8; /* separate interrupt */
335 unit
->config
|= 1 << 9; /* Disable timer freeze */
338 for (i
= 0; i
< unit
->nr_timers
; i
++) {
339 GPTimer
*timer
= &unit
->timers
[i
];
344 ptimer_stop(timer
->ptimer
);
345 ptimer_set_count(timer
->ptimer
, 0);
346 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
350 static int grlib_gptimer_init(SysBusDevice
*dev
)
352 GPTimerUnit
*unit
= GRLIB_GPTIMER(dev
);
355 assert(unit
->nr_timers
> 0);
356 assert(unit
->nr_timers
<= GPTIMER_MAX_TIMERS
);
358 unit
->timers
= g_malloc0(sizeof unit
->timers
[0] * unit
->nr_timers
);
360 for (i
= 0; i
< unit
->nr_timers
; i
++) {
361 GPTimer
*timer
= &unit
->timers
[i
];
364 timer
->bh
= qemu_bh_new(grlib_gptimer_hit
, timer
);
365 timer
->ptimer
= ptimer_init(timer
->bh
);
368 /* One IRQ line for each timer */
369 sysbus_init_irq(dev
, &timer
->irq
);
371 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
374 memory_region_init_io(&unit
->iomem
, OBJECT(unit
), &grlib_gptimer_ops
,
376 UNIT_REG_SIZE
+ GPTIMER_REG_SIZE
* unit
->nr_timers
);
378 sysbus_init_mmio(dev
, &unit
->iomem
);
382 static Property grlib_gptimer_properties
[] = {
383 DEFINE_PROP_UINT32("frequency", GPTimerUnit
, freq_hz
, 40000000),
384 DEFINE_PROP_UINT32("irq-line", GPTimerUnit
, irq_line
, 8),
385 DEFINE_PROP_UINT32("nr-timers", GPTimerUnit
, nr_timers
, 2),
386 DEFINE_PROP_END_OF_LIST(),
389 static void grlib_gptimer_class_init(ObjectClass
*klass
, void *data
)
391 DeviceClass
*dc
= DEVICE_CLASS(klass
);
392 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
394 k
->init
= grlib_gptimer_init
;
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
)