]> git.proxmox.com Git - qemu.git/blame - hw/timer/lm32_timer.c
Merge git://github.com/hw-claudio/qemu-aarch64-queue into tcg-next
[qemu.git] / hw / timer / lm32_timer.c
CommitLineData
ea7924dc
MW
1/*
2 * QEMU model of the LatticeMico32 timer block.
3 *
4 * Copyright (c) 2010 Michael Walle <michael@walle.cc>
5 *
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.
10 *
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.
15 *
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/>.
18 *
19 *
20 * Specification available at:
21 * http://www.latticesemi.com/documents/mico32timer.pdf
22 */
23
83c9f4ca
PB
24#include "hw/hw.h"
25#include "hw/sysbus.h"
ea7924dc 26#include "trace.h"
1de7afc9 27#include "qemu/timer.h"
83c9f4ca 28#include "hw/ptimer.h"
1de7afc9 29#include "qemu/error-report.h"
ea7924dc
MW
30
31#define DEFAULT_FREQUENCY (50*1000000)
32
33enum {
34 R_SR = 0,
35 R_CR,
36 R_PERIOD,
37 R_SNAPSHOT,
38 R_MAX
39};
40
41enum {
42 SR_TO = (1 << 0),
43 SR_RUN = (1 << 1),
44};
45
46enum {
47 CR_ITO = (1 << 0),
48 CR_CONT = (1 << 1),
49 CR_START = (1 << 2),
50 CR_STOP = (1 << 3),
51};
52
53struct LM32TimerState {
54 SysBusDevice busdev;
d09510b2 55 MemoryRegion iomem;
ea7924dc
MW
56
57 QEMUBH *bh;
58 ptimer_state *ptimer;
59
60 qemu_irq irq;
61 uint32_t freq_hz;
62
63 uint32_t regs[R_MAX];
64};
65typedef struct LM32TimerState LM32TimerState;
66
67static void timer_update_irq(LM32TimerState *s)
68{
69 int state = (s->regs[R_SR] & SR_TO) && (s->regs[R_CR] & CR_ITO);
70
71 trace_lm32_timer_irq_state(state);
72 qemu_set_irq(s->irq, state);
73}
74
a8170e5e 75static uint64_t timer_read(void *opaque, hwaddr addr, unsigned size)
ea7924dc
MW
76{
77 LM32TimerState *s = opaque;
78 uint32_t r = 0;
79
80 addr >>= 2;
81 switch (addr) {
82 case R_SR:
83 case R_CR:
84 case R_PERIOD:
85 r = s->regs[addr];
86 break;
87 case R_SNAPSHOT:
88 r = (uint32_t)ptimer_get_count(s->ptimer);
89 break;
90 default:
dd3d6775 91 error_report("lm32_timer: read access to unknown register 0x"
ea7924dc
MW
92 TARGET_FMT_plx, addr << 2);
93 break;
94 }
95
96 trace_lm32_timer_memory_read(addr << 2, r);
97 return r;
98}
99
a8170e5e 100static void timer_write(void *opaque, hwaddr addr,
d09510b2 101 uint64_t value, unsigned size)
ea7924dc
MW
102{
103 LM32TimerState *s = opaque;
104
105 trace_lm32_timer_memory_write(addr, value);
106
107 addr >>= 2;
108 switch (addr) {
109 case R_SR:
110 s->regs[R_SR] &= ~SR_TO;
111 break;
112 case R_CR:
113 s->regs[R_CR] = value;
114 if (s->regs[R_CR] & CR_START) {
115 ptimer_run(s->ptimer, 1);
116 }
117 if (s->regs[R_CR] & CR_STOP) {
118 ptimer_stop(s->ptimer);
119 }
120 break;
121 case R_PERIOD:
122 s->regs[R_PERIOD] = value;
123 ptimer_set_count(s->ptimer, value);
124 break;
125 case R_SNAPSHOT:
126 error_report("lm32_timer: write access to read only register 0x"
127 TARGET_FMT_plx, addr << 2);
128 break;
129 default:
dd3d6775 130 error_report("lm32_timer: write access to unknown register 0x"
ea7924dc
MW
131 TARGET_FMT_plx, addr << 2);
132 break;
133 }
134 timer_update_irq(s);
135}
136
d09510b2
AK
137static const MemoryRegionOps timer_ops = {
138 .read = timer_read,
139 .write = timer_write,
140 .endianness = DEVICE_NATIVE_ENDIAN,
141 .valid = {
142 .min_access_size = 4,
143 .max_access_size = 4,
144 },
ea7924dc
MW
145};
146
147static void timer_hit(void *opaque)
148{
149 LM32TimerState *s = opaque;
150
151 trace_lm32_timer_hit();
152
153 s->regs[R_SR] |= SR_TO;
154
155 if (s->regs[R_CR] & CR_CONT) {
156 ptimer_set_count(s->ptimer, s->regs[R_PERIOD]);
157 ptimer_run(s->ptimer, 1);
158 }
159 timer_update_irq(s);
160}
161
162static void timer_reset(DeviceState *d)
163{
164 LM32TimerState *s = container_of(d, LM32TimerState, busdev.qdev);
165 int i;
166
167 for (i = 0; i < R_MAX; i++) {
168 s->regs[i] = 0;
169 }
170 ptimer_stop(s->ptimer);
171}
172
173static int lm32_timer_init(SysBusDevice *dev)
174{
175 LM32TimerState *s = FROM_SYSBUS(typeof(*s), dev);
ea7924dc
MW
176
177 sysbus_init_irq(dev, &s->irq);
178
179 s->bh = qemu_bh_new(timer_hit, s);
180 s->ptimer = ptimer_init(s->bh);
181 ptimer_set_freq(s->ptimer, s->freq_hz);
182
853dca12
PB
183 memory_region_init_io(&s->iomem, OBJECT(s), &timer_ops, s,
184 "timer", R_MAX * 4);
750ecd44 185 sysbus_init_mmio(dev, &s->iomem);
ea7924dc
MW
186
187 return 0;
188}
189
190static const VMStateDescription vmstate_lm32_timer = {
191 .name = "lm32-timer",
192 .version_id = 1,
193 .minimum_version_id = 1,
194 .minimum_version_id_old = 1,
195 .fields = (VMStateField[]) {
196 VMSTATE_PTIMER(ptimer, LM32TimerState),
197 VMSTATE_UINT32(freq_hz, LM32TimerState),
198 VMSTATE_UINT32_ARRAY(regs, LM32TimerState, R_MAX),
199 VMSTATE_END_OF_LIST()
200 }
201};
202
999e12bb
AL
203static Property lm32_timer_properties[] = {
204 DEFINE_PROP_UINT32("frequency", LM32TimerState, freq_hz, DEFAULT_FREQUENCY),
205 DEFINE_PROP_END_OF_LIST(),
206};
207
208static void lm32_timer_class_init(ObjectClass *klass, void *data)
209{
39bffca2 210 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
211 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
212
213 k->init = lm32_timer_init;
39bffca2
AL
214 dc->reset = timer_reset;
215 dc->vmsd = &vmstate_lm32_timer;
216 dc->props = lm32_timer_properties;
999e12bb
AL
217}
218
8c43a6f0 219static const TypeInfo lm32_timer_info = {
39bffca2
AL
220 .name = "lm32-timer",
221 .parent = TYPE_SYS_BUS_DEVICE,
222 .instance_size = sizeof(LM32TimerState),
223 .class_init = lm32_timer_class_init,
ea7924dc
MW
224};
225
83f7d43a 226static void lm32_timer_register_types(void)
ea7924dc 227{
39bffca2 228 type_register_static(&lm32_timer_info);
ea7924dc
MW
229}
230
83f7d43a 231type_init(lm32_timer_register_types)