2 * Syborg Interval Timer.
4 * Copyright (c) 2008 CodeSourcery
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"
29 //#define DEBUG_SYBORG_TIMER
31 #ifdef DEBUG_SYBORG_TIMER
32 #define DPRINTF(fmt, ...) \
33 do { printf("syborg_timer: " fmt , ##args); } while (0)
34 #define BADF(fmt, ...) \
35 do { fprintf(stderr, "syborg_timer: error: " fmt , ## __VA_ARGS__); \
38 #define DPRINTF(fmt, ...) do {} while(0)
39 #define BADF(fmt, ...) \
40 do { fprintf(stderr, "syborg_timer: error: " fmt , ## __VA_ARGS__);} while (0)
66 static void syborg_timer_update(SyborgTimerState
*s
)
68 /* Update interrupt. */
69 if (s
->int_level
&& s
->int_enabled
) {
70 qemu_irq_raise(s
->irq
);
72 qemu_irq_lower(s
->irq
);
76 static void syborg_timer_tick(void *opaque
)
78 SyborgTimerState
*s
= (SyborgTimerState
*)opaque
;
79 //DPRINTF("Timer Tick\n");
83 syborg_timer_update(s
);
86 static uint32_t syborg_timer_read(void *opaque
, target_phys_addr_t offset
)
88 SyborgTimerState
*s
= (SyborgTimerState
*)opaque
;
90 DPRINTF("Reg read %d\n", (int)offset
);
92 switch (offset
>> 2) {
94 return SYBORG_ID_TIMER
;
102 return ptimer_get_count(s
->timer
);
103 case TIMER_INT_ENABLE
:
104 return s
->int_enabled
;
105 case TIMER_INT_STATUS
:
110 cpu_abort(cpu_single_env
, "syborg_timer_read: Bad offset %x\n",
116 static void syborg_timer_write(void *opaque
, target_phys_addr_t offset
,
119 SyborgTimerState
*s
= (SyborgTimerState
*)opaque
;
121 DPRINTF("Reg write %d\n", (int)offset
);
123 switch (offset
>> 2) {
125 if (value
== s
->running
)
129 ptimer_run(s
->timer
, s
->oneshot
);
131 ptimer_stop(s
->timer
);
136 ptimer_stop(s
->timer
);
140 ptimer_run(s
->timer
, s
->oneshot
);
145 ptimer_set_limit(s
->timer
, value
, 1);
148 ptimer_set_count(s
->timer
, value
);
150 case TIMER_INT_ENABLE
:
151 s
->int_enabled
= value
;
152 syborg_timer_update(s
);
154 case TIMER_INT_STATUS
:
155 s
->int_level
&= ~value
;
156 syborg_timer_update(s
);
159 cpu_abort(cpu_single_env
, "syborg_timer_write: Bad offset %x\n",
165 static CPUReadMemoryFunc
* const syborg_timer_readfn
[] = {
171 static CPUWriteMemoryFunc
* const syborg_timer_writefn
[] = {
177 static void syborg_timer_save(QEMUFile
*f
, void *opaque
)
179 SyborgTimerState
*s
= opaque
;
181 qemu_put_be32(f
, s
->running
);
182 qemu_put_be32(f
, s
->oneshot
);
183 qemu_put_be32(f
, s
->limit
);
184 qemu_put_be32(f
, s
->int_level
);
185 qemu_put_be32(f
, s
->int_enabled
);
186 qemu_put_ptimer(f
, s
->timer
);
189 static int syborg_timer_load(QEMUFile
*f
, void *opaque
, int version_id
)
191 SyborgTimerState
*s
= opaque
;
196 s
->running
= qemu_get_be32(f
);
197 s
->oneshot
= qemu_get_be32(f
);
198 s
->limit
= qemu_get_be32(f
);
199 s
->int_level
= qemu_get_be32(f
);
200 s
->int_enabled
= qemu_get_be32(f
);
201 qemu_get_ptimer(f
, s
->timer
);
206 static int syborg_timer_init(SysBusDevice
*dev
)
208 SyborgTimerState
*s
= FROM_SYSBUS(SyborgTimerState
, dev
);
213 fprintf(stderr
, "syborg_timer: Zero/unset frequency\n");
216 sysbus_init_irq(dev
, &s
->irq
);
217 iomemtype
= cpu_register_io_memory(syborg_timer_readfn
,
218 syborg_timer_writefn
, s
,
219 DEVICE_NATIVE_ENDIAN
);
220 sysbus_init_mmio(dev
, 0x1000, iomemtype
);
222 bh
= qemu_bh_new(syborg_timer_tick
, s
);
223 s
->timer
= ptimer_init(bh
);
224 ptimer_set_freq(s
->timer
, s
->freq
);
225 register_savevm(&dev
->qdev
, "syborg_timer", -1, 1,
226 syborg_timer_save
, syborg_timer_load
, s
);
230 static SysBusDeviceInfo syborg_timer_info
= {
231 .init
= syborg_timer_init
,
232 .qdev
.name
= "syborg,timer",
233 .qdev
.size
= sizeof(SyborgTimerState
),
234 .qdev
.props
= (Property
[]) {
235 DEFINE_PROP_UINT32("frequency",SyborgTimerState
, freq
, 0),
236 DEFINE_PROP_END_OF_LIST(),
240 static void syborg_timer_register_devices(void)
242 sysbus_register_withprop(&syborg_timer_info
);
245 device_init(syborg_timer_register_devices
)