2 * QEMU model of the LatticeMico32 timer block.
4 * Copyright (c) 2010 Michael Walle <michael@walle.cc>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 * Specification available at:
21 * http://www.latticesemi.com/documents/mico32timer.pdf
24 #include "qemu/osdep.h"
26 #include "hw/sysbus.h"
28 #include "qemu/timer.h"
29 #include "hw/ptimer.h"
30 #include "qemu/error-report.h"
31 #include "qemu/main-loop.h"
33 #define DEFAULT_FREQUENCY (50*1000000)
55 #define TYPE_LM32_TIMER "lm32-timer"
56 #define LM32_TIMER(obj) OBJECT_CHECK(LM32TimerState, (obj), TYPE_LM32_TIMER)
58 struct LM32TimerState
{
59 SysBusDevice parent_obj
;
71 typedef struct LM32TimerState LM32TimerState
;
73 static void timer_update_irq(LM32TimerState
*s
)
75 int state
= (s
->regs
[R_SR
] & SR_TO
) && (s
->regs
[R_CR
] & CR_ITO
);
77 trace_lm32_timer_irq_state(state
);
78 qemu_set_irq(s
->irq
, state
);
81 static uint64_t timer_read(void *opaque
, hwaddr addr
, unsigned size
)
83 LM32TimerState
*s
= opaque
;
94 r
= (uint32_t)ptimer_get_count(s
->ptimer
);
97 error_report("lm32_timer: read access to unknown register 0x"
98 TARGET_FMT_plx
, addr
<< 2);
102 trace_lm32_timer_memory_read(addr
<< 2, r
);
106 static void timer_write(void *opaque
, hwaddr addr
,
107 uint64_t value
, unsigned size
)
109 LM32TimerState
*s
= opaque
;
111 trace_lm32_timer_memory_write(addr
, value
);
116 s
->regs
[R_SR
] &= ~SR_TO
;
119 s
->regs
[R_CR
] = value
;
120 if (s
->regs
[R_CR
] & CR_START
) {
121 ptimer_run(s
->ptimer
, 1);
123 if (s
->regs
[R_CR
] & CR_STOP
) {
124 ptimer_stop(s
->ptimer
);
128 s
->regs
[R_PERIOD
] = value
;
129 ptimer_set_count(s
->ptimer
, value
);
132 error_report("lm32_timer: write access to read only register 0x"
133 TARGET_FMT_plx
, addr
<< 2);
136 error_report("lm32_timer: write access to unknown register 0x"
137 TARGET_FMT_plx
, addr
<< 2);
143 static const MemoryRegionOps timer_ops
= {
145 .write
= timer_write
,
146 .endianness
= DEVICE_NATIVE_ENDIAN
,
148 .min_access_size
= 4,
149 .max_access_size
= 4,
153 static void timer_hit(void *opaque
)
155 LM32TimerState
*s
= opaque
;
157 trace_lm32_timer_hit();
159 s
->regs
[R_SR
] |= SR_TO
;
161 if (s
->regs
[R_CR
] & CR_CONT
) {
162 ptimer_set_count(s
->ptimer
, s
->regs
[R_PERIOD
]);
163 ptimer_run(s
->ptimer
, 1);
168 static void timer_reset(DeviceState
*d
)
170 LM32TimerState
*s
= LM32_TIMER(d
);
173 for (i
= 0; i
< R_MAX
; i
++) {
176 ptimer_stop(s
->ptimer
);
179 static void lm32_timer_init(Object
*obj
)
181 LM32TimerState
*s
= LM32_TIMER(obj
);
182 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
184 sysbus_init_irq(dev
, &s
->irq
);
186 s
->bh
= qemu_bh_new(timer_hit
, s
);
187 s
->ptimer
= ptimer_init(s
->bh
, PTIMER_POLICY_DEFAULT
);
189 memory_region_init_io(&s
->iomem
, obj
, &timer_ops
, s
,
191 sysbus_init_mmio(dev
, &s
->iomem
);
194 static void lm32_timer_realize(DeviceState
*dev
, Error
**errp
)
196 LM32TimerState
*s
= LM32_TIMER(dev
);
198 ptimer_set_freq(s
->ptimer
, s
->freq_hz
);
201 static const VMStateDescription vmstate_lm32_timer
= {
202 .name
= "lm32-timer",
204 .minimum_version_id
= 1,
205 .fields
= (VMStateField
[]) {
206 VMSTATE_PTIMER(ptimer
, LM32TimerState
),
207 VMSTATE_UINT32(freq_hz
, LM32TimerState
),
208 VMSTATE_UINT32_ARRAY(regs
, LM32TimerState
, R_MAX
),
209 VMSTATE_END_OF_LIST()
213 static Property lm32_timer_properties
[] = {
214 DEFINE_PROP_UINT32("frequency", LM32TimerState
, freq_hz
, DEFAULT_FREQUENCY
),
215 DEFINE_PROP_END_OF_LIST(),
218 static void lm32_timer_class_init(ObjectClass
*klass
, void *data
)
220 DeviceClass
*dc
= DEVICE_CLASS(klass
);
222 dc
->realize
= lm32_timer_realize
;
223 dc
->reset
= timer_reset
;
224 dc
->vmsd
= &vmstate_lm32_timer
;
225 dc
->props
= lm32_timer_properties
;
228 static const TypeInfo lm32_timer_info
= {
229 .name
= TYPE_LM32_TIMER
,
230 .parent
= TYPE_SYS_BUS_DEVICE
,
231 .instance_size
= sizeof(LM32TimerState
),
232 .instance_init
= lm32_timer_init
,
233 .class_init
= lm32_timer_class_init
,
236 static void lm32_timer_register_types(void)
238 type_register_static(&lm32_timer_info
);
241 type_init(lm32_timer_register_types
)