2 * QEMU model of the UART on the SiFive E300 and U500 series SOCs.
4 * Copyright (c) 2016 Stefan O'Rear
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2 or later, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
20 #include "qapi/error.h"
21 #include "hw/sysbus.h"
22 #include "chardev/char.h"
23 #include "chardev/char-fe.h"
24 #include "target/riscv/cpu.h"
25 #include "hw/riscv/sifive_uart.h"
28 * Not yet implemented:
30 * Transmit FIFO using "qemu/fifo8.h"
33 /* Returns the state of the IP (interrupt pending) register */
34 static uint64_t uart_ip(SiFiveUARTState
*s
)
38 uint64_t txcnt
= SIFIVE_UART_GET_TXCNT(s
->txctrl
);
39 uint64_t rxcnt
= SIFIVE_UART_GET_RXCNT(s
->rxctrl
);
42 ret
|= SIFIVE_UART_IP_TXWM
;
44 if (s
->rx_fifo_len
> rxcnt
) {
45 ret
|= SIFIVE_UART_IP_RXWM
;
51 static void update_irq(SiFiveUARTState
*s
)
54 if ((s
->ie
& SIFIVE_UART_IE_TXWM
) ||
55 ((s
->ie
& SIFIVE_UART_IE_RXWM
) && s
->rx_fifo_len
)) {
59 qemu_irq_raise(s
->irq
);
61 qemu_irq_lower(s
->irq
);
66 uart_read(void *opaque
, hwaddr addr
, unsigned int size
)
68 SiFiveUARTState
*s
= opaque
;
71 case SIFIVE_UART_RXFIFO
:
74 memmove(s
->rx_fifo
, s
->rx_fifo
+ 1, s
->rx_fifo_len
- 1);
76 qemu_chr_fe_accept_input(&s
->chr
);
82 case SIFIVE_UART_TXFIFO
:
83 return 0; /* Should check tx fifo */
88 case SIFIVE_UART_TXCTRL
:
90 case SIFIVE_UART_RXCTRL
:
96 hw_error("%s: bad read: addr=0x%x\n",
102 uart_write(void *opaque
, hwaddr addr
,
103 uint64_t val64
, unsigned int size
)
105 SiFiveUARTState
*s
= opaque
;
106 uint32_t value
= val64
;
107 unsigned char ch
= value
;
110 case SIFIVE_UART_TXFIFO
:
111 qemu_chr_fe_write(&s
->chr
, &ch
, 1);
118 case SIFIVE_UART_TXCTRL
:
121 case SIFIVE_UART_RXCTRL
:
124 case SIFIVE_UART_DIV
:
128 hw_error("%s: bad write: addr=0x%x v=0x%x\n",
129 __func__
, (int)addr
, (int)value
);
132 static const MemoryRegionOps uart_ops
= {
135 .endianness
= DEVICE_NATIVE_ENDIAN
,
137 .min_access_size
= 4,
142 static void uart_rx(void *opaque
, const uint8_t *buf
, int size
)
144 SiFiveUARTState
*s
= opaque
;
147 if (s
->rx_fifo_len
>= sizeof(s
->rx_fifo
)) {
148 printf("WARNING: UART dropped char.\n");
151 s
->rx_fifo
[s
->rx_fifo_len
++] = *buf
;
156 static int uart_can_rx(void *opaque
)
158 SiFiveUARTState
*s
= opaque
;
160 return s
->rx_fifo_len
< sizeof(s
->rx_fifo
);
163 static void uart_event(void *opaque
, int event
)
167 static int uart_be_change(void *opaque
)
169 SiFiveUARTState
*s
= opaque
;
171 qemu_chr_fe_set_handlers(&s
->chr
, uart_can_rx
, uart_rx
, uart_event
,
172 uart_be_change
, s
, NULL
, true);
178 * Create UART device.
180 SiFiveUARTState
*sifive_uart_create(MemoryRegion
*address_space
, hwaddr base
,
181 Chardev
*chr
, qemu_irq irq
)
183 SiFiveUARTState
*s
= g_malloc0(sizeof(SiFiveUARTState
));
185 qemu_chr_fe_init(&s
->chr
, chr
, &error_abort
);
186 qemu_chr_fe_set_handlers(&s
->chr
, uart_can_rx
, uart_rx
, uart_event
,
187 uart_be_change
, s
, NULL
, true);
188 memory_region_init_io(&s
->mmio
, NULL
, &uart_ops
, s
,
189 TYPE_SIFIVE_UART
, SIFIVE_UART_MAX
);
190 memory_region_add_subregion(address_space
, base
, &s
->mmio
);