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
25 #include "hw/sysbus.h"
27 #include "qemu/timer.h"
28 #include "hw/ptimer.h"
29 #include "qemu/error-report.h"
30 #include "qemu/main-loop.h"
32 #define DEFAULT_FREQUENCY (50*1000000)
54 #define TYPE_LM32_TIMER "lm32-timer"
55 #define LM32_TIMER(obj) OBJECT_CHECK(LM32TimerState, (obj), TYPE_LM32_TIMER)
57 struct LM32TimerState
{
58 SysBusDevice parent_obj
;
70 typedef struct LM32TimerState LM32TimerState
;
72 static void timer_update_irq(LM32TimerState
*s
)
74 int state
= (s
->regs
[R_SR
] & SR_TO
) && (s
->regs
[R_CR
] & CR_ITO
);
76 trace_lm32_timer_irq_state(state
);
77 qemu_set_irq(s
->irq
, state
);
80 static uint64_t timer_read(void *opaque
, hwaddr addr
, unsigned size
)
82 LM32TimerState
*s
= opaque
;
93 r
= (uint32_t)ptimer_get_count(s
->ptimer
);
96 error_report("lm32_timer: read access to unknown register 0x"
97 TARGET_FMT_plx
, addr
<< 2);
101 trace_lm32_timer_memory_read(addr
<< 2, r
);
105 static void timer_write(void *opaque
, hwaddr addr
,
106 uint64_t value
, unsigned size
)
108 LM32TimerState
*s
= opaque
;
110 trace_lm32_timer_memory_write(addr
, value
);
115 s
->regs
[R_SR
] &= ~SR_TO
;
118 s
->regs
[R_CR
] = value
;
119 if (s
->regs
[R_CR
] & CR_START
) {
120 ptimer_run(s
->ptimer
, 1);
122 if (s
->regs
[R_CR
] & CR_STOP
) {
123 ptimer_stop(s
->ptimer
);
127 s
->regs
[R_PERIOD
] = value
;
128 ptimer_set_count(s
->ptimer
, value
);
131 error_report("lm32_timer: write access to read only register 0x"
132 TARGET_FMT_plx
, addr
<< 2);
135 error_report("lm32_timer: write access to unknown register 0x"
136 TARGET_FMT_plx
, addr
<< 2);
142 static const MemoryRegionOps timer_ops
= {
144 .write
= timer_write
,
145 .endianness
= DEVICE_NATIVE_ENDIAN
,
147 .min_access_size
= 4,
148 .max_access_size
= 4,
152 static void timer_hit(void *opaque
)
154 LM32TimerState
*s
= opaque
;
156 trace_lm32_timer_hit();
158 s
->regs
[R_SR
] |= SR_TO
;
160 if (s
->regs
[R_CR
] & CR_CONT
) {
161 ptimer_set_count(s
->ptimer
, s
->regs
[R_PERIOD
]);
162 ptimer_run(s
->ptimer
, 1);
167 static void timer_reset(DeviceState
*d
)
169 LM32TimerState
*s
= LM32_TIMER(d
);
172 for (i
= 0; i
< R_MAX
; i
++) {
175 ptimer_stop(s
->ptimer
);
178 static int lm32_timer_init(SysBusDevice
*dev
)
180 LM32TimerState
*s
= LM32_TIMER(dev
);
182 sysbus_init_irq(dev
, &s
->irq
);
184 s
->bh
= qemu_bh_new(timer_hit
, s
);
185 s
->ptimer
= ptimer_init(s
->bh
);
186 ptimer_set_freq(s
->ptimer
, s
->freq_hz
);
188 memory_region_init_io(&s
->iomem
, OBJECT(s
), &timer_ops
, s
,
190 sysbus_init_mmio(dev
, &s
->iomem
);
195 static const VMStateDescription vmstate_lm32_timer
= {
196 .name
= "lm32-timer",
198 .minimum_version_id
= 1,
199 .fields
= (VMStateField
[]) {
200 VMSTATE_PTIMER(ptimer
, LM32TimerState
),
201 VMSTATE_UINT32(freq_hz
, LM32TimerState
),
202 VMSTATE_UINT32_ARRAY(regs
, LM32TimerState
, R_MAX
),
203 VMSTATE_END_OF_LIST()
207 static Property lm32_timer_properties
[] = {
208 DEFINE_PROP_UINT32("frequency", LM32TimerState
, freq_hz
, DEFAULT_FREQUENCY
),
209 DEFINE_PROP_END_OF_LIST(),
212 static void lm32_timer_class_init(ObjectClass
*klass
, void *data
)
214 DeviceClass
*dc
= DEVICE_CLASS(klass
);
215 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
217 k
->init
= lm32_timer_init
;
218 dc
->reset
= timer_reset
;
219 dc
->vmsd
= &vmstate_lm32_timer
;
220 dc
->props
= lm32_timer_properties
;
223 static const TypeInfo lm32_timer_info
= {
224 .name
= TYPE_LM32_TIMER
,
225 .parent
= TYPE_SYS_BUS_DEVICE
,
226 .instance_size
= sizeof(LM32TimerState
),
227 .class_init
= lm32_timer_class_init
,
230 static void lm32_timer_register_types(void)
232 type_register_static(&lm32_timer_info
);
235 type_init(lm32_timer_register_types
)