2 * QEMU ETRAX System Emulator
4 * Copyright (c) 2007 Edgar E. Iglesias, Axis Communications AB.
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
26 #include "qemu-char.h"
31 #define RW_TR_CTRL (0x00 / 4)
32 #define RW_TR_DMA_EN (0x04 / 4)
33 #define RW_REC_CTRL (0x08 / 4)
34 #define RW_DOUT (0x1c / 4)
35 #define RS_STAT_DIN (0x20 / 4)
36 #define R_STAT_DIN (0x24 / 4)
37 #define RW_INTR_MASK (0x2c / 4)
38 #define RW_ACK_INTR (0x30 / 4)
39 #define R_INTR (0x34 / 4)
40 #define R_MASKED_INTR (0x38 / 4)
41 #define R_MAX (0x3c / 4)
44 #define STAT_TR_IDLE 22
45 #define STAT_TR_RDY 24
57 unsigned int rx_fifo_pos;
58 unsigned int rx_fifo_len;
60 /* Control registers. */
64 static void ser_update_irq(struct etrax_serial *s)
70 s->regs[R_INTR] &= ~8;
73 s->regs[R_MASKED_INTR] = s->regs[R_INTR] & s->regs[RW_INTR_MASK];
74 qemu_set_irq(s->irq, !!s->regs[R_MASKED_INTR]);
78 ser_read(void *opaque, hwaddr addr, unsigned int size)
80 struct etrax_serial *s = opaque;
81 D(CPUCRISState *env = s->env);
88 r = s->rx_fifo[(s->rx_fifo_pos - s->rx_fifo_len) & 15];
92 r |= 1 << STAT_TR_RDY;
93 r |= 1 << STAT_TR_IDLE;
96 r = s->rx_fifo[(s->rx_fifo_pos - s->rx_fifo_len) & 15];
101 r |= 1 << STAT_TR_RDY;
102 r |= 1 << STAT_TR_IDLE;
106 D(qemu_log("%s " TARGET_FMT_plx "=%x\n", __func__, addr, r));
113 ser_write(void *opaque, hwaddr addr,
114 uint64_t val64, unsigned int size)
116 struct etrax_serial *s = opaque;
117 uint32_t value = val64;
118 unsigned char ch = val64;
119 D(CPUCRISState *env = s->env);
121 D(qemu_log("%s " TARGET_FMT_plx "=%x\n", __func__, addr, value));
126 qemu_chr_fe_write(s->chr, &ch, 1);
127 s->regs[R_INTR] |= 3;
129 s->regs[addr] = value;
135 D(qemu_log("fixedup value=%x r_intr=%x\n",
136 value, s->regs[R_INTR]));
138 s->regs[addr] = value;
139 s->regs[R_INTR] &= ~value;
140 D(printf("r_intr=%x\n", s->regs[R_INTR]));
143 s->regs[addr] = value;
149 static const MemoryRegionOps ser_ops = {
152 .endianness = DEVICE_NATIVE_ENDIAN,
154 .min_access_size = 4,
159 static void serial_receive(void *opaque, const uint8_t *buf, int size)
161 struct etrax_serial *s = opaque;
165 if (s->rx_fifo_len >= 16) {
166 qemu_log("WARNING: UART dropped char.\n");
170 for (i = 0; i < size; i++) {
171 s->rx_fifo[s->rx_fifo_pos] = buf[i];
173 s->rx_fifo_pos &= 15;
180 static int serial_can_receive(void *opaque)
182 struct etrax_serial *s = opaque;
185 /* Is the receiver enabled? */
186 if (!(s->regs[RW_REC_CTRL] & (1 << 3))) {
190 r = sizeof(s->rx_fifo) - s->rx_fifo_len;
194 static void serial_event(void *opaque, int event)
199 static void etraxfs_ser_reset(DeviceState *d)
201 struct etrax_serial *s = container_of(d, typeof(*s), busdev.qdev);
203 /* transmitter begins ready and idle. */
204 s->regs[RS_STAT_DIN] |= (1 << STAT_TR_RDY);
205 s->regs[RS_STAT_DIN] |= (1 << STAT_TR_IDLE);
207 s->regs[RW_REC_CTRL] = 0x10000;
211 static int etraxfs_ser_init(SysBusDevice *dev)
213 struct etrax_serial *s = FROM_SYSBUS(typeof (*s), dev);
215 sysbus_init_irq(dev, &s->irq);
216 memory_region_init_io(&s->mmio, &ser_ops, s, "etraxfs-serial", R_MAX * 4);
217 sysbus_init_mmio(dev, &s->mmio);
219 s->chr = qemu_char_get_next_serial();
221 qemu_chr_add_handlers(s->chr,
222 serial_can_receive, serial_receive,
227 static void etraxfs_ser_class_init(ObjectClass *klass, void *data)
229 DeviceClass *dc = DEVICE_CLASS(klass);
230 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
232 k->init = etraxfs_ser_init;
233 dc->reset = etraxfs_ser_reset;
236 static TypeInfo etraxfs_ser_info = {
237 .name = "etraxfs,serial",
238 .parent = TYPE_SYS_BUS_DEVICE,
239 .instance_size = sizeof(struct etrax_serial),
240 .class_init = etraxfs_ser_class_init,
243 static void etraxfs_serial_register_types(void)
245 type_register_static(&etraxfs_ser_info);
248 type_init(etraxfs_serial_register_types)