coroutine: add test-coroutine --benchmark-lifecycle
[qemu/stefanha.git] / hw / lm32_uart.c
blob09090e93b2108e32255d334cac81426c81e7c166
1 /*
2 * QEMU model of the LatticeMico32 UART 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/mico32uart.pdf
25 #include "hw.h"
26 #include "sysbus.h"
27 #include "trace.h"
28 #include "qemu-char.h"
29 #include "qemu-error.h"
31 enum {
32 R_RXTX = 0,
33 R_IER,
34 R_IIR,
35 R_LCR,
36 R_MCR,
37 R_LSR,
38 R_MSR,
39 R_DIV,
40 R_MAX
43 enum {
44 IER_RBRI = (1<<0),
45 IER_THRI = (1<<1),
46 IER_RLSI = (1<<2),
47 IER_MSI = (1<<3),
50 enum {
51 IIR_STAT = (1<<0),
52 IIR_ID0 = (1<<1),
53 IIR_ID1 = (1<<2),
56 enum {
57 LCR_WLS0 = (1<<0),
58 LCR_WLS1 = (1<<1),
59 LCR_STB = (1<<2),
60 LCR_PEN = (1<<3),
61 LCR_EPS = (1<<4),
62 LCR_SP = (1<<5),
63 LCR_SB = (1<<6),
66 enum {
67 MCR_DTR = (1<<0),
68 MCR_RTS = (1<<1),
71 enum {
72 LSR_DR = (1<<0),
73 LSR_OE = (1<<1),
74 LSR_PE = (1<<2),
75 LSR_FE = (1<<3),
76 LSR_BI = (1<<4),
77 LSR_THRE = (1<<5),
78 LSR_TEMT = (1<<6),
81 enum {
82 MSR_DCTS = (1<<0),
83 MSR_DDSR = (1<<1),
84 MSR_TERI = (1<<2),
85 MSR_DDCD = (1<<3),
86 MSR_CTS = (1<<4),
87 MSR_DSR = (1<<5),
88 MSR_RI = (1<<6),
89 MSR_DCD = (1<<7),
92 struct LM32UartState {
93 SysBusDevice busdev;
94 CharDriverState *chr;
95 qemu_irq irq;
97 uint32_t regs[R_MAX];
99 typedef struct LM32UartState LM32UartState;
101 static void uart_update_irq(LM32UartState *s)
103 unsigned int irq;
105 if ((s->regs[R_LSR] & (LSR_OE | LSR_PE | LSR_FE | LSR_BI))
106 && (s->regs[R_IER] & IER_RLSI)) {
107 irq = 1;
108 s->regs[R_IIR] = IIR_ID1 | IIR_ID0;
109 } else if ((s->regs[R_LSR] & LSR_DR) && (s->regs[R_IER] & IER_RBRI)) {
110 irq = 1;
111 s->regs[R_IIR] = IIR_ID1;
112 } else if ((s->regs[R_LSR] & LSR_THRE) && (s->regs[R_IER] & IER_THRI)) {
113 irq = 1;
114 s->regs[R_IIR] = IIR_ID0;
115 } else if ((s->regs[R_MSR] & 0x0f) && (s->regs[R_IER] & IER_MSI)) {
116 irq = 1;
117 s->regs[R_IIR] = 0;
118 } else {
119 irq = 0;
120 s->regs[R_IIR] = IIR_STAT;
123 trace_lm32_uart_irq_state(irq);
124 qemu_set_irq(s->irq, irq);
127 static uint32_t uart_read(void *opaque, target_phys_addr_t addr)
129 LM32UartState *s = opaque;
130 uint32_t r = 0;
132 addr >>= 2;
133 switch (addr) {
134 case R_RXTX:
135 r = s->regs[R_RXTX];
136 s->regs[R_LSR] &= ~LSR_DR;
137 uart_update_irq(s);
138 break;
139 case R_IIR:
140 case R_LSR:
141 case R_MSR:
142 r = s->regs[addr];
143 break;
144 case R_IER:
145 case R_LCR:
146 case R_MCR:
147 case R_DIV:
148 error_report("lm32_uart: read access to write only register 0x"
149 TARGET_FMT_plx, addr << 2);
150 break;
151 default:
152 error_report("lm32_uart: read access to unknown register 0x"
153 TARGET_FMT_plx, addr << 2);
154 break;
157 trace_lm32_uart_memory_read(addr << 2, r);
158 return r;
161 static void uart_write(void *opaque, target_phys_addr_t addr, uint32_t value)
163 LM32UartState *s = opaque;
164 unsigned char ch = value;
166 trace_lm32_uart_memory_write(addr, value);
168 addr >>= 2;
169 switch (addr) {
170 case R_RXTX:
171 if (s->chr) {
172 qemu_chr_write(s->chr, &ch, 1);
174 break;
175 case R_IER:
176 case R_LCR:
177 case R_MCR:
178 case R_DIV:
179 s->regs[addr] = value;
180 break;
181 case R_IIR:
182 case R_LSR:
183 case R_MSR:
184 error_report("lm32_uart: write access to read only register 0x"
185 TARGET_FMT_plx, addr << 2);
186 break;
187 default:
188 error_report("lm32_uart: write access to unknown register 0x"
189 TARGET_FMT_plx, addr << 2);
190 break;
192 uart_update_irq(s);
195 static CPUReadMemoryFunc * const uart_read_fn[] = {
196 NULL,
197 NULL,
198 &uart_read,
201 static CPUWriteMemoryFunc * const uart_write_fn[] = {
202 NULL,
203 NULL,
204 &uart_write,
207 static void uart_rx(void *opaque, const uint8_t *buf, int size)
209 LM32UartState *s = opaque;
211 if (s->regs[R_LSR] & LSR_DR) {
212 s->regs[R_LSR] |= LSR_OE;
215 s->regs[R_LSR] |= LSR_DR;
216 s->regs[R_RXTX] = *buf;
218 uart_update_irq(s);
221 static int uart_can_rx(void *opaque)
223 LM32UartState *s = opaque;
225 return !(s->regs[R_LSR] & LSR_DR);
228 static void uart_event(void *opaque, int event)
232 static void uart_reset(DeviceState *d)
234 LM32UartState *s = container_of(d, LM32UartState, busdev.qdev);
235 int i;
237 for (i = 0; i < R_MAX; i++) {
238 s->regs[i] = 0;
241 /* defaults */
242 s->regs[R_LSR] = LSR_THRE | LSR_TEMT;
245 static int lm32_uart_init(SysBusDevice *dev)
247 LM32UartState *s = FROM_SYSBUS(typeof(*s), dev);
248 int uart_regs;
250 sysbus_init_irq(dev, &s->irq);
252 uart_regs = cpu_register_io_memory(uart_read_fn, uart_write_fn, s,
253 DEVICE_NATIVE_ENDIAN);
254 sysbus_init_mmio(dev, R_MAX * 4, uart_regs);
256 s->chr = qdev_init_chardev(&dev->qdev);
257 if (s->chr) {
258 qemu_chr_add_handlers(s->chr, uart_can_rx, uart_rx, uart_event, s);
261 return 0;
264 static const VMStateDescription vmstate_lm32_uart = {
265 .name = "lm32-uart",
266 .version_id = 1,
267 .minimum_version_id = 1,
268 .minimum_version_id_old = 1,
269 .fields = (VMStateField[]) {
270 VMSTATE_UINT32_ARRAY(regs, LM32UartState, R_MAX),
271 VMSTATE_END_OF_LIST()
275 static SysBusDeviceInfo lm32_uart_info = {
276 .init = lm32_uart_init,
277 .qdev.name = "lm32-uart",
278 .qdev.size = sizeof(LM32UartState),
279 .qdev.vmsd = &vmstate_lm32_uart,
280 .qdev.reset = uart_reset,
283 static void lm32_uart_register(void)
285 sysbus_register_withprop(&lm32_uart_info);
288 device_init(lm32_uart_register)