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
28 #include "qemu-char.h"
29 #include "qemu-error.h"
92 struct LM32UartState
{
99 typedef struct LM32UartState LM32UartState
;
101 static void uart_update_irq(LM32UartState
*s
)
105 if ((s
->regs
[R_LSR
] & (LSR_OE
| LSR_PE
| LSR_FE
| LSR_BI
))
106 && (s
->regs
[R_IER
] & IER_RLSI
)) {
108 s
->regs
[R_IIR
] = IIR_ID1
| IIR_ID0
;
109 } else if ((s
->regs
[R_LSR
] & LSR_DR
) && (s
->regs
[R_IER
] & IER_RBRI
)) {
111 s
->regs
[R_IIR
] = IIR_ID1
;
112 } else if ((s
->regs
[R_LSR
] & LSR_THRE
) && (s
->regs
[R_IER
] & IER_THRI
)) {
114 s
->regs
[R_IIR
] = IIR_ID0
;
115 } else if ((s
->regs
[R_MSR
] & 0x0f) && (s
->regs
[R_IER
] & IER_MSI
)) {
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
;
136 s
->regs
[R_LSR
] &= ~LSR_DR
;
148 error_report("lm32_uart: read access to write only register 0x"
149 TARGET_FMT_plx
, addr
<< 2);
152 error_report("lm32_uart: read access to unknown register 0x"
153 TARGET_FMT_plx
, addr
<< 2);
157 trace_lm32_uart_memory_read(addr
<< 2, 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
);
172 qemu_chr_write(s
->chr
, &ch
, 1);
179 s
->regs
[addr
] = value
;
184 error_report("lm32_uart: write access to read only register 0x"
185 TARGET_FMT_plx
, addr
<< 2);
188 error_report("lm32_uart: write access to unknown register 0x"
189 TARGET_FMT_plx
, addr
<< 2);
195 static CPUReadMemoryFunc
* const uart_read_fn
[] = {
201 static CPUWriteMemoryFunc
* const uart_write_fn
[] = {
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
;
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
);
237 for (i
= 0; i
< R_MAX
; i
++) {
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
);
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
);
258 qemu_chr_add_handlers(s
->chr
, uart_can_rx
, uart_rx
, uart_event
, s
);
264 static const VMStateDescription vmstate_lm32_uart
= {
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
)