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 "qemu/osdep.h"
26 #include "hw/sysbus.h"
27 #include "qemu/timer.h"
28 #include "hw/ptimer.h"
29 #include "qemu/timer.h"
30 #include "qemu/main-loop.h"
34 #define UNIT_REG_SIZE 16 /* Size of memory mapped regs for the unit */
35 #define GPTIMER_REG_SIZE 16 /* Size of memory mapped regs for a GPTimer */
37 #define GPTIMER_MAX_TIMERS 8
39 /* GPTimer Config register fields */
40 #define GPTIMER_ENABLE (1 << 0)
41 #define GPTIMER_RESTART (1 << 1)
42 #define GPTIMER_LOAD (1 << 2)
43 #define GPTIMER_INT_ENABLE (1 << 3)
44 #define GPTIMER_INT_PENDING (1 << 4)
45 #define GPTIMER_CHAIN (1 << 5) /* Not supported */
46 #define GPTIMER_DEBUG_HALT (1 << 6) /* Not supported */
48 /* Memory mapped register offsets */
49 #define SCALER_OFFSET 0x00
50 #define SCALER_RELOAD_OFFSET 0x04
51 #define CONFIG_OFFSET 0x08
52 #define COUNTER_OFFSET 0x00
53 #define COUNTER_RELOAD_OFFSET 0x04
54 #define TIMER_BASE 0x10
56 #define TYPE_GRLIB_GPTIMER "grlib,gptimer"
57 #define GRLIB_GPTIMER(obj) \
58 OBJECT_CHECK(GPTimerUnit, (obj), TYPE_GRLIB_GPTIMER)
60 typedef struct GPTimer GPTimer
;
61 typedef struct GPTimerUnit GPTimerUnit
;
65 struct ptimer_state
*ptimer
;
78 SysBusDevice parent_obj
;
82 uint32_t nr_timers
; /* Number of timers available */
83 uint32_t freq_hz
; /* System frequency */
84 uint32_t irq_line
; /* Base irq line */
94 static void grlib_gptimer_enable(GPTimer
*timer
)
96 assert(timer
!= NULL
);
99 ptimer_stop(timer
->ptimer
);
101 if (!(timer
->config
& GPTIMER_ENABLE
)) {
103 trace_grlib_gptimer_disabled(timer
->id
, timer
->config
);
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
)
131 assert(unit
!= NULL
);
134 value
= unit
->freq_hz
/ (scaler
+ 1);
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
);
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
,
169 GPTimerUnit
*unit
= opaque
;
179 trace_grlib_gptimer_readl(-1, addr
, unit
->scaler
);
182 case SCALER_RELOAD_OFFSET
:
183 trace_grlib_gptimer_readl(-1, addr
, unit
->reload
);
187 trace_grlib_gptimer_readl(-1, addr
, unit
->config
);
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
) {
202 value
= ptimer_get_count(unit
->timers
[id
].ptimer
);
203 trace_grlib_gptimer_readl(id
, addr
, value
);
206 case COUNTER_RELOAD_OFFSET
:
207 value
= unit
->timers
[id
].reload
;
208 trace_grlib_gptimer_readl(id
, addr
, value
);
212 trace_grlib_gptimer_readl(id
, addr
, unit
->timers
[id
].config
);
213 return unit
->timers
[id
].config
;
221 trace_grlib_gptimer_readl(-1, addr
, 0);
225 static void grlib_gptimer_write(void *opaque
, hwaddr addr
,
226 uint64_t value
, unsigned size
)
228 GPTimerUnit
*unit
= opaque
;
237 value
&= 0xFFFF; /* clean up the value */
238 unit
->scaler
= value
;
239 trace_grlib_gptimer_writel(-1, addr
, unit
->scaler
);
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
);
250 /* Read Only (disable timer freeze not supported) */
251 trace_grlib_gptimer_writel(-1, addr
, 0);
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
) {
266 trace_grlib_gptimer_writel(id
, addr
, value
);
267 unit
->timers
[id
].counter
= value
;
268 grlib_gptimer_enable(&unit
->timers
[id
]);
271 case COUNTER_RELOAD_OFFSET
:
272 trace_grlib_gptimer_writel(id
, addr
, value
);
273 unit
->timers
[id
].reload
= value
;
277 trace_grlib_gptimer_writel(id
, addr
, value
);
279 if (value
& GPTIMER_INT_PENDING
) {
280 /* clear pending bit */
281 value
&= ~GPTIMER_INT_PENDING
;
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
;
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
,
318 .min_access_size
= 4,
319 .max_access_size
= 4,
323 static void grlib_gptimer_reset(DeviceState
*d
)
325 GPTimerUnit
*unit
= GRLIB_GPTIMER(d
);
328 assert(unit
!= NULL
);
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
];
345 ptimer_stop(timer
->ptimer
);
346 ptimer_set_count(timer
->ptimer
, 0);
347 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
351 static int grlib_gptimer_init(SysBusDevice
*dev
)
353 GPTimerUnit
*unit
= GRLIB_GPTIMER(dev
);
356 assert(unit
->nr_timers
> 0);
357 assert(unit
->nr_timers
<= GPTIMER_MAX_TIMERS
);
359 unit
->timers
= g_malloc0(sizeof unit
->timers
[0] * unit
->nr_timers
);
361 for (i
= 0; i
< unit
->nr_timers
; i
++) {
362 GPTimer
*timer
= &unit
->timers
[i
];
365 timer
->bh
= qemu_bh_new(grlib_gptimer_hit
, timer
);
366 timer
->ptimer
= ptimer_init(timer
->bh
);
369 /* One IRQ line for each timer */
370 sysbus_init_irq(dev
, &timer
->irq
);
372 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
375 memory_region_init_io(&unit
->iomem
, OBJECT(unit
), &grlib_gptimer_ops
,
377 UNIT_REG_SIZE
+ GPTIMER_REG_SIZE
* unit
->nr_timers
);
379 sysbus_init_mmio(dev
, &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
);
393 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
395 k
->init
= grlib_gptimer_init
;
396 dc
->reset
= grlib_gptimer_reset
;
397 dc
->props
= grlib_gptimer_properties
;
400 static const TypeInfo grlib_gptimer_info
= {
401 .name
= TYPE_GRLIB_GPTIMER
,
402 .parent
= TYPE_SYS_BUS_DEVICE
,
403 .instance_size
= sizeof(GPTimerUnit
),
404 .class_init
= grlib_gptimer_class_init
,
407 static void grlib_gptimer_register_types(void)
409 type_register_static(&grlib_gptimer_info
);
412 type_init(grlib_gptimer_register_types
)