2 * QEMU model of Xilinx uartlite.
4 * Copyright (c) 2009 Edgar E. Iglesias.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "hw/sysbus.h"
26 #include "sysemu/char.h"
36 #define STATUS_RXVALID 0x01
37 #define STATUS_RXFULL 0x02
38 #define STATUS_TXEMPTY 0x04
39 #define STATUS_TXFULL 0x08
40 #define STATUS_IE 0x10
41 #define STATUS_OVERRUN 0x20
42 #define STATUS_FRAME 0x40
43 #define STATUS_PARITY 0x80
45 #define CONTROL_RST_TX 0x01
46 #define CONTROL_RST_RX 0x02
47 #define CONTROL_IE 0x10
49 #define TYPE_XILINX_UARTLITE "xlnx.xps-uartlite"
50 #define XILINX_UARTLITE(obj) \
51 OBJECT_CHECK(XilinxUARTLite, (obj), TYPE_XILINX_UARTLITE)
53 typedef struct XilinxUARTLite
{
54 SysBusDevice parent_obj
;
61 unsigned int rx_fifo_pos
;
62 unsigned int rx_fifo_len
;
67 static void uart_update_irq(XilinxUARTLite
*s
)
72 s
->regs
[R_STATUS
] |= STATUS_IE
;
74 irq
= (s
->regs
[R_STATUS
] & STATUS_IE
) && (s
->regs
[R_CTRL
] & CONTROL_IE
);
75 qemu_set_irq(s
->irq
, irq
);
78 static void uart_update_status(XilinxUARTLite
*s
)
82 r
= s
->regs
[R_STATUS
];
84 r
|= 1 << 2; /* Tx fifo is always empty. We are fast :) */
85 r
|= (s
->rx_fifo_len
== sizeof (s
->rx_fifo
)) << 1;
86 r
|= (!!s
->rx_fifo_len
);
87 s
->regs
[R_STATUS
] = r
;
91 uart_read(void *opaque
, hwaddr addr
, unsigned int size
)
93 XilinxUARTLite
*s
= opaque
;
99 r
= s
->rx_fifo
[(s
->rx_fifo_pos
- s
->rx_fifo_len
) & 7];
102 uart_update_status(s
);
104 qemu_chr_accept_input(s
->chr
);
108 if (addr
< ARRAY_SIZE(s
->regs
))
110 DUART(qemu_log("%s addr=%x v=%x\n", __func__
, addr
, r
));
117 uart_write(void *opaque
, hwaddr addr
,
118 uint64_t val64
, unsigned int size
)
120 XilinxUARTLite
*s
= opaque
;
121 uint32_t value
= val64
;
122 unsigned char ch
= value
;
128 hw_error("write to UART STATUS?\n");
132 if (value
& CONTROL_RST_RX
) {
136 s
->regs
[addr
] = value
;
141 qemu_chr_fe_write(s
->chr
, &ch
, 1);
143 s
->regs
[addr
] = value
;
146 s
->regs
[R_STATUS
] |= STATUS_IE
;
150 DUART(printf("%s addr=%x v=%x\n", __func__
, addr
, value
));
151 if (addr
< ARRAY_SIZE(s
->regs
))
152 s
->regs
[addr
] = value
;
155 uart_update_status(s
);
159 static const MemoryRegionOps uart_ops
= {
162 .endianness
= DEVICE_NATIVE_ENDIAN
,
164 .min_access_size
= 1,
169 static void uart_rx(void *opaque
, const uint8_t *buf
, int size
)
171 XilinxUARTLite
*s
= opaque
;
174 if (s
->rx_fifo_len
>= 8) {
175 printf("WARNING: UART dropped char.\n");
178 s
->rx_fifo
[s
->rx_fifo_pos
] = *buf
;
180 s
->rx_fifo_pos
&= 0x7;
183 uart_update_status(s
);
187 static int uart_can_rx(void *opaque
)
189 XilinxUARTLite
*s
= opaque
;
191 return s
->rx_fifo_len
< sizeof(s
->rx_fifo
);
194 static void uart_event(void *opaque
, int event
)
199 static int xilinx_uartlite_init(SysBusDevice
*dev
)
201 XilinxUARTLite
*s
= XILINX_UARTLITE(dev
);
203 sysbus_init_irq(dev
, &s
->irq
);
205 uart_update_status(s
);
206 memory_region_init_io(&s
->mmio
, OBJECT(s
), &uart_ops
, s
,
207 "xlnx.xps-uartlite", R_MAX
* 4);
208 sysbus_init_mmio(dev
, &s
->mmio
);
210 s
->chr
= qemu_char_get_next_serial();
212 qemu_chr_add_handlers(s
->chr
, uart_can_rx
, uart_rx
, uart_event
, s
);
216 static void xilinx_uartlite_class_init(ObjectClass
*klass
, void *data
)
218 SysBusDeviceClass
*sdc
= SYS_BUS_DEVICE_CLASS(klass
);
220 sdc
->init
= xilinx_uartlite_init
;
223 static const TypeInfo xilinx_uartlite_info
= {
224 .name
= TYPE_XILINX_UARTLITE
,
225 .parent
= TYPE_SYS_BUS_DEVICE
,
226 .instance_size
= sizeof(XilinxUARTLite
),
227 .class_init
= xilinx_uartlite_class_init
,
230 static void xilinx_uart_register_types(void)
232 type_register_static(&xilinx_uartlite_info
);
235 type_init(xilinx_uart_register_types
)