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, "scaler:", unit
->scaler
);
171 case SCALER_RELOAD_OFFSET
:
172 trace_grlib_gptimer_readl(-1, "reload:", unit
->reload
);
176 trace_grlib_gptimer_readl(-1, "config:", 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
, "counter value:", value
);
195 case COUNTER_RELOAD_OFFSET
:
196 value
= unit
->timers
[id
].reload
;
197 trace_grlib_gptimer_readl(id
, "reload value:", value
);
201 trace_grlib_gptimer_readl(id
, "scaler value:",
202 unit
->timers
[id
].config
);
203 return unit
->timers
[id
].config
;
211 trace_grlib_gptimer_unknown_register("read", addr
);
216 grlib_gptimer_writel(void *opaque
, target_phys_addr_t addr
, uint32_t value
)
218 GPTimerUnit
*unit
= opaque
;
219 target_phys_addr_t timer_addr
;
227 value
&= 0xFFFF; /* clean up the value */
228 unit
->scaler
= value
;
229 trace_grlib_gptimer_writel(-1, "scaler:", unit
->scaler
);
232 case SCALER_RELOAD_OFFSET
:
233 value
&= 0xFFFF; /* clean up the value */
234 unit
->reload
= value
;
235 trace_grlib_gptimer_writel(-1, "reload:", unit
->reload
);
236 grlib_gptimer_set_scaler(unit
, value
);
240 /* Read Only (disable timer freeze not supported) */
241 trace_grlib_gptimer_writel(-1, "config (Read Only):", 0);
248 timer_addr
= (addr
% TIMER_BASE
);
249 id
= (addr
- TIMER_BASE
) / TIMER_BASE
;
251 if (id
>= 0 && id
< unit
->nr_timers
) {
253 /* GPTimer registers */
254 switch (timer_addr
) {
256 trace_grlib_gptimer_writel(id
, "counter:", value
);
257 unit
->timers
[id
].counter
= value
;
258 grlib_gptimer_enable(&unit
->timers
[id
]);
261 case COUNTER_RELOAD_OFFSET
:
262 trace_grlib_gptimer_writel(id
, "reload:", value
);
263 unit
->timers
[id
].reload
= value
;
267 trace_grlib_gptimer_writel(id
, "config:", value
);
269 if (value
& GPTIMER_INT_PENDING
) {
270 /* clear pending bit */
271 value
&= ~GPTIMER_INT_PENDING
;
273 /* keep pending bit */
274 value
|= unit
->timers
[id
].config
& GPTIMER_INT_PENDING
;
277 unit
->timers
[id
].config
= value
;
279 /* gptimer_restart calls gptimer_enable, so if "enable" and "load"
280 bits are present, we just have to call restart. */
282 if (value
& GPTIMER_LOAD
) {
283 grlib_gptimer_restart(&unit
->timers
[id
]);
284 } else if (value
& GPTIMER_ENABLE
) {
285 grlib_gptimer_enable(&unit
->timers
[id
]);
288 /* These fields must always be read as 0 */
289 value
&= ~(GPTIMER_LOAD
& GPTIMER_DEBUG_HALT
);
291 unit
->timers
[id
].config
= value
;
300 trace_grlib_gptimer_unknown_register("write", addr
);
303 static CPUReadMemoryFunc
* const grlib_gptimer_read
[] = {
304 NULL
, NULL
, grlib_gptimer_readl
,
307 static CPUWriteMemoryFunc
* const grlib_gptimer_write
[] = {
308 NULL
, NULL
, grlib_gptimer_writel
,
311 static void grlib_gptimer_reset(DeviceState
*d
)
313 GPTimerUnit
*unit
= container_of(d
, GPTimerUnit
, busdev
.qdev
);
316 assert(unit
!= NULL
);
322 unit
->config
= unit
->nr_timers
;
323 unit
->config
|= unit
->irq_line
<< 3;
324 unit
->config
|= 1 << 8; /* separate interrupt */
325 unit
->config
|= 1 << 9; /* Disable timer freeze */
328 for (i
= 0; i
< unit
->nr_timers
; i
++) {
329 GPTimer
*timer
= &unit
->timers
[i
];
334 ptimer_stop(timer
->ptimer
);
335 ptimer_set_count(timer
->ptimer
, 0);
336 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
340 static int grlib_gptimer_init(SysBusDevice
*dev
)
342 GPTimerUnit
*unit
= FROM_SYSBUS(typeof(*unit
), dev
);
346 assert(unit
->nr_timers
> 0);
347 assert(unit
->nr_timers
<= GPTIMER_MAX_TIMERS
);
349 unit
->timers
= qemu_mallocz(sizeof unit
->timers
[0] * unit
->nr_timers
);
351 for (i
= 0; i
< unit
->nr_timers
; i
++) {
352 GPTimer
*timer
= &unit
->timers
[i
];
355 timer
->bh
= qemu_bh_new(grlib_gptimer_hit
, timer
);
356 timer
->ptimer
= ptimer_init(timer
->bh
);
359 /* One IRQ line for each timer */
360 sysbus_init_irq(dev
, &timer
->irq
);
362 ptimer_set_freq(timer
->ptimer
, unit
->freq_hz
);
365 timer_regs
= cpu_register_io_memory(grlib_gptimer_read
,
367 unit
, DEVICE_NATIVE_ENDIAN
);
368 if (timer_regs
< 0) {
372 sysbus_init_mmio(dev
, UNIT_REG_SIZE
+ GPTIMER_REG_SIZE
* unit
->nr_timers
,
377 static SysBusDeviceInfo grlib_gptimer_info
= {
378 .init
= grlib_gptimer_init
,
379 .qdev
.name
= "grlib,gptimer",
380 .qdev
.reset
= grlib_gptimer_reset
,
381 .qdev
.size
= sizeof(GPTimerUnit
),
382 .qdev
.props
= (Property
[]) {
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()
390 static void grlib_gptimer_register(void)
392 sysbus_register_withprop(&grlib_gptimer_info
);
395 device_init(grlib_gptimer_register
)