hw/dma: Add SiFive platform DMA controller emulation
[qemu/ar7.git] / hw / char / bcm2835_aux.c
blobee3dd40e3c7bebf434a5f96cb1502524c419eca6
1 /*
2 * BCM2835 (Raspberry Pi / Pi 2) Aux block (mini UART and SPI).
3 * Copyright (c) 2015, Microsoft
4 * Written by Andrew Baumann
5 * Based on pl011.c, copyright terms below:
7 * Arm PrimeCell PL011 UART
9 * Copyright (c) 2006 CodeSourcery.
10 * Written by Paul Brook
12 * This code is licensed under the GPL.
14 * At present only the core UART functions (data path for tx/rx) are
15 * implemented. The following features/registers are unimplemented:
16 * - Line/modem control
17 * - Scratch register
18 * - Extra control
19 * - Baudrate
20 * - SPI interfaces
23 #include "qemu/osdep.h"
24 #include "hw/char/bcm2835_aux.h"
25 #include "hw/irq.h"
26 #include "hw/qdev-properties.h"
27 #include "migration/vmstate.h"
28 #include "qemu/log.h"
29 #include "qemu/module.h"
31 #define AUX_IRQ 0x0
32 #define AUX_ENABLES 0x4
33 #define AUX_MU_IO_REG 0x40
34 #define AUX_MU_IER_REG 0x44
35 #define AUX_MU_IIR_REG 0x48
36 #define AUX_MU_LCR_REG 0x4c
37 #define AUX_MU_MCR_REG 0x50
38 #define AUX_MU_LSR_REG 0x54
39 #define AUX_MU_MSR_REG 0x58
40 #define AUX_MU_SCRATCH 0x5c
41 #define AUX_MU_CNTL_REG 0x60
42 #define AUX_MU_STAT_REG 0x64
43 #define AUX_MU_BAUD_REG 0x68
45 /* bits in IER/IIR registers */
46 #define RX_INT 0x1
47 #define TX_INT 0x2
49 static void bcm2835_aux_update(BCM2835AuxState *s)
51 /* signal an interrupt if either:
52 * 1. rx interrupt is enabled and we have a non-empty rx fifo, or
53 * 2. the tx interrupt is enabled (since we instantly drain the tx fifo)
55 s->iir = 0;
56 if ((s->ier & RX_INT) && s->read_count != 0) {
57 s->iir |= RX_INT;
59 if (s->ier & TX_INT) {
60 s->iir |= TX_INT;
62 qemu_set_irq(s->irq, s->iir != 0);
65 static uint64_t bcm2835_aux_read(void *opaque, hwaddr offset, unsigned size)
67 BCM2835AuxState *s = opaque;
68 uint32_t c, res;
70 switch (offset) {
71 case AUX_IRQ:
72 return s->iir != 0;
74 case AUX_ENABLES:
75 return 1; /* mini UART permanently enabled */
77 case AUX_MU_IO_REG:
78 /* "DLAB bit set means access baudrate register" is NYI */
79 c = s->read_fifo[s->read_pos];
80 if (s->read_count > 0) {
81 s->read_count--;
82 if (++s->read_pos == BCM2835_AUX_RX_FIFO_LEN) {
83 s->read_pos = 0;
86 qemu_chr_fe_accept_input(&s->chr);
87 bcm2835_aux_update(s);
88 return c;
90 case AUX_MU_IER_REG:
91 /* "DLAB bit set means access baudrate register" is NYI */
92 return 0xc0 | s->ier; /* FIFO enables always read 1 */
94 case AUX_MU_IIR_REG:
95 res = 0xc0; /* FIFO enables */
96 /* The spec is unclear on what happens when both tx and rx
97 * interrupts are active, besides that this cannot occur. At
98 * present, we choose to prioritise the rx interrupt, since
99 * the tx fifo is always empty. */
100 if (s->read_count != 0) {
101 res |= 0x4;
102 } else {
103 res |= 0x2;
105 if (s->iir == 0) {
106 res |= 0x1;
108 return res;
110 case AUX_MU_LCR_REG:
111 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_LCR_REG unsupported\n", __func__);
112 return 0;
114 case AUX_MU_MCR_REG:
115 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_MCR_REG unsupported\n", __func__);
116 return 0;
118 case AUX_MU_LSR_REG:
119 res = 0x60; /* tx idle, empty */
120 if (s->read_count != 0) {
121 res |= 0x1;
123 return res;
125 case AUX_MU_MSR_REG:
126 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_MSR_REG unsupported\n", __func__);
127 return 0;
129 case AUX_MU_SCRATCH:
130 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_SCRATCH unsupported\n", __func__);
131 return 0;
133 case AUX_MU_CNTL_REG:
134 return 0x3; /* tx, rx enabled */
136 case AUX_MU_STAT_REG:
137 res = 0x30e; /* space in the output buffer, empty tx fifo, idle tx/rx */
138 if (s->read_count > 0) {
139 res |= 0x1; /* data in input buffer */
140 assert(s->read_count < BCM2835_AUX_RX_FIFO_LEN);
141 res |= ((uint32_t)s->read_count) << 16; /* rx fifo fill level */
143 return res;
145 case AUX_MU_BAUD_REG:
146 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_BAUD_REG unsupported\n", __func__);
147 return 0;
149 default:
150 qemu_log_mask(LOG_GUEST_ERROR, "%s: Bad offset %"HWADDR_PRIx"\n",
151 __func__, offset);
152 return 0;
156 static void bcm2835_aux_write(void *opaque, hwaddr offset, uint64_t value,
157 unsigned size)
159 BCM2835AuxState *s = opaque;
160 unsigned char ch;
162 switch (offset) {
163 case AUX_ENABLES:
164 if (value != 1) {
165 qemu_log_mask(LOG_UNIMP, "%s: unsupported attempt to enable SPI"
166 " or disable UART: 0x%"PRIx64"\n",
167 __func__, value);
169 break;
171 case AUX_MU_IO_REG:
172 /* "DLAB bit set means access baudrate register" is NYI */
173 ch = value;
174 /* XXX this blocks entire thread. Rewrite to use
175 * qemu_chr_fe_write and background I/O callbacks */
176 qemu_chr_fe_write_all(&s->chr, &ch, 1);
177 break;
179 case AUX_MU_IER_REG:
180 /* "DLAB bit set means access baudrate register" is NYI */
181 s->ier = value & (TX_INT | RX_INT);
182 bcm2835_aux_update(s);
183 break;
185 case AUX_MU_IIR_REG:
186 if (value & 0x2) {
187 s->read_count = 0;
189 break;
191 case AUX_MU_LCR_REG:
192 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_LCR_REG unsupported\n", __func__);
193 break;
195 case AUX_MU_MCR_REG:
196 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_MCR_REG unsupported\n", __func__);
197 break;
199 case AUX_MU_SCRATCH:
200 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_SCRATCH unsupported\n", __func__);
201 break;
203 case AUX_MU_CNTL_REG:
204 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_CNTL_REG unsupported\n", __func__);
205 break;
207 case AUX_MU_BAUD_REG:
208 qemu_log_mask(LOG_UNIMP, "%s: AUX_MU_BAUD_REG unsupported\n", __func__);
209 break;
211 default:
212 qemu_log_mask(LOG_GUEST_ERROR, "%s: Bad offset %"HWADDR_PRIx"\n",
213 __func__, offset);
216 bcm2835_aux_update(s);
219 static int bcm2835_aux_can_receive(void *opaque)
221 BCM2835AuxState *s = opaque;
223 return s->read_count < BCM2835_AUX_RX_FIFO_LEN;
226 static void bcm2835_aux_put_fifo(void *opaque, uint8_t value)
228 BCM2835AuxState *s = opaque;
229 int slot;
231 slot = s->read_pos + s->read_count;
232 if (slot >= BCM2835_AUX_RX_FIFO_LEN) {
233 slot -= BCM2835_AUX_RX_FIFO_LEN;
235 s->read_fifo[slot] = value;
236 s->read_count++;
237 if (s->read_count == BCM2835_AUX_RX_FIFO_LEN) {
238 /* buffer full */
240 bcm2835_aux_update(s);
243 static void bcm2835_aux_receive(void *opaque, const uint8_t *buf, int size)
245 bcm2835_aux_put_fifo(opaque, *buf);
248 static const MemoryRegionOps bcm2835_aux_ops = {
249 .read = bcm2835_aux_read,
250 .write = bcm2835_aux_write,
251 .endianness = DEVICE_NATIVE_ENDIAN,
252 .valid.min_access_size = 4,
253 .valid.max_access_size = 4,
256 static const VMStateDescription vmstate_bcm2835_aux = {
257 .name = TYPE_BCM2835_AUX,
258 .version_id = 1,
259 .minimum_version_id = 1,
260 .fields = (VMStateField[]) {
261 VMSTATE_UINT8_ARRAY(read_fifo, BCM2835AuxState,
262 BCM2835_AUX_RX_FIFO_LEN),
263 VMSTATE_UINT8(read_pos, BCM2835AuxState),
264 VMSTATE_UINT8(read_count, BCM2835AuxState),
265 VMSTATE_UINT8(ier, BCM2835AuxState),
266 VMSTATE_UINT8(iir, BCM2835AuxState),
267 VMSTATE_END_OF_LIST()
271 static void bcm2835_aux_init(Object *obj)
273 SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
274 BCM2835AuxState *s = BCM2835_AUX(obj);
276 memory_region_init_io(&s->iomem, OBJECT(s), &bcm2835_aux_ops, s,
277 TYPE_BCM2835_AUX, 0x100);
278 sysbus_init_mmio(sbd, &s->iomem);
279 sysbus_init_irq(sbd, &s->irq);
282 static void bcm2835_aux_realize(DeviceState *dev, Error **errp)
284 BCM2835AuxState *s = BCM2835_AUX(dev);
286 qemu_chr_fe_set_handlers(&s->chr, bcm2835_aux_can_receive,
287 bcm2835_aux_receive, NULL, NULL, s, NULL, true);
290 static Property bcm2835_aux_props[] = {
291 DEFINE_PROP_CHR("chardev", BCM2835AuxState, chr),
292 DEFINE_PROP_END_OF_LIST(),
295 static void bcm2835_aux_class_init(ObjectClass *oc, void *data)
297 DeviceClass *dc = DEVICE_CLASS(oc);
299 dc->realize = bcm2835_aux_realize;
300 dc->vmsd = &vmstate_bcm2835_aux;
301 set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
302 device_class_set_props(dc, bcm2835_aux_props);
305 static const TypeInfo bcm2835_aux_info = {
306 .name = TYPE_BCM2835_AUX,
307 .parent = TYPE_SYS_BUS_DEVICE,
308 .instance_size = sizeof(BCM2835AuxState),
309 .instance_init = bcm2835_aux_init,
310 .class_init = bcm2835_aux_class_init,
313 static void bcm2835_aux_register_types(void)
315 type_register_static(&bcm2835_aux_info);
318 type_init(bcm2835_aux_register_types)