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
25 #include "qemu/osdep.h"
26 #include "hw/sysbus.h"
27 #include "sysemu/char.h"
32 #define RW_TR_CTRL (0x00 / 4)
33 #define RW_TR_DMA_EN (0x04 / 4)
34 #define RW_REC_CTRL (0x08 / 4)
35 #define RW_DOUT (0x1c / 4)
36 #define RS_STAT_DIN (0x20 / 4)
37 #define R_STAT_DIN (0x24 / 4)
38 #define RW_INTR_MASK (0x2c / 4)
39 #define RW_ACK_INTR (0x30 / 4)
40 #define R_INTR (0x34 / 4)
41 #define R_MASKED_INTR (0x38 / 4)
42 #define R_MAX (0x3c / 4)
45 #define STAT_TR_IDLE 22
46 #define STAT_TR_RDY 24
48 #define TYPE_ETRAX_FS_SERIAL "etraxfs,serial"
49 #define ETRAX_SERIAL(obj) \
50 OBJECT_CHECK(ETRAXSerial, (obj), TYPE_ETRAX_FS_SERIAL)
52 typedef struct ETRAXSerial {
53 SysBusDevice parent_obj;
62 unsigned int rx_fifo_pos;
63 unsigned int rx_fifo_len;
65 /* Control registers. */
69 static void ser_update_irq(ETRAXSerial *s)
75 s->regs[R_INTR] &= ~8;
78 s->regs[R_MASKED_INTR] = s->regs[R_INTR] & s->regs[RW_INTR_MASK];
79 qemu_set_irq(s->irq, !!s->regs[R_MASKED_INTR]);
83 ser_read(void *opaque, hwaddr addr, unsigned int size)
85 ETRAXSerial *s = opaque;
92 r = s->rx_fifo[(s->rx_fifo_pos - s->rx_fifo_len) & 15];
96 r |= 1 << STAT_TR_RDY;
97 r |= 1 << STAT_TR_IDLE;
100 r = s->rx_fifo[(s->rx_fifo_pos - s->rx_fifo_len) & 15];
101 if (s->rx_fifo_len) {
105 r |= 1 << STAT_TR_RDY;
106 r |= 1 << STAT_TR_IDLE;
110 D(qemu_log("%s " TARGET_FMT_plx "=%x\n", __func__, addr, r));
117 ser_write(void *opaque, hwaddr addr,
118 uint64_t val64, unsigned int size)
120 ETRAXSerial *s = opaque;
121 uint32_t value = val64;
122 unsigned char ch = val64;
124 D(qemu_log("%s " TARGET_FMT_plx "=%x\n", __func__, addr, value));
129 /* XXX this blocks entire thread. Rewrite to use
130 * qemu_chr_fe_write and background I/O callbacks */
131 qemu_chr_fe_write_all(s->chr.chr, &ch, 1);
132 s->regs[R_INTR] |= 3;
134 s->regs[addr] = value;
140 D(qemu_log("fixedup value=%x r_intr=%x\n",
141 value, s->regs[R_INTR]));
143 s->regs[addr] = value;
144 s->regs[R_INTR] &= ~value;
145 D(printf("r_intr=%x\n", s->regs[R_INTR]));
148 s->regs[addr] = value;
154 static const MemoryRegionOps ser_ops = {
157 .endianness = DEVICE_NATIVE_ENDIAN,
159 .min_access_size = 4,
164 static Property etraxfs_ser_properties[] = {
165 DEFINE_PROP_CHR("chardev", ETRAXSerial, chr),
166 DEFINE_PROP_END_OF_LIST(),
169 static void serial_receive(void *opaque, const uint8_t *buf, int size)
171 ETRAXSerial *s = opaque;
175 if (s->rx_fifo_len >= 16) {
176 D(qemu_log("WARNING: UART dropped char.\n"));
180 for (i = 0; i < size; i++) {
181 s->rx_fifo[s->rx_fifo_pos] = buf[i];
183 s->rx_fifo_pos &= 15;
190 static int serial_can_receive(void *opaque)
192 ETRAXSerial *s = opaque;
194 /* Is the receiver enabled? */
195 if (!(s->regs[RW_REC_CTRL] & (1 << 3))) {
199 return sizeof(s->rx_fifo) - s->rx_fifo_len;
202 static void serial_event(void *opaque, int event)
207 static void etraxfs_ser_reset(DeviceState *d)
209 ETRAXSerial *s = ETRAX_SERIAL(d);
211 /* transmitter begins ready and idle. */
212 s->regs[RS_STAT_DIN] |= (1 << STAT_TR_RDY);
213 s->regs[RS_STAT_DIN] |= (1 << STAT_TR_IDLE);
215 s->regs[RW_REC_CTRL] = 0x10000;
219 static void etraxfs_ser_init(Object *obj)
221 ETRAXSerial *s = ETRAX_SERIAL(obj);
222 SysBusDevice *dev = SYS_BUS_DEVICE(obj);
224 sysbus_init_irq(dev, &s->irq);
225 memory_region_init_io(&s->mmio, obj, &ser_ops, s,
226 "etraxfs-serial", R_MAX * 4);
227 sysbus_init_mmio(dev, &s->mmio);
230 static void etraxfs_ser_realize(DeviceState *dev, Error **errp)
232 ETRAXSerial *s = ETRAX_SERIAL(dev);
235 qemu_chr_add_handlers(s->chr.chr,
236 serial_can_receive, serial_receive,
241 static void etraxfs_ser_class_init(ObjectClass *klass, void *data)
243 DeviceClass *dc = DEVICE_CLASS(klass);
245 dc->reset = etraxfs_ser_reset;
246 dc->props = etraxfs_ser_properties;
247 dc->realize = etraxfs_ser_realize;
250 static const TypeInfo etraxfs_ser_info = {
251 .name = TYPE_ETRAX_FS_SERIAL,
252 .parent = TYPE_SYS_BUS_DEVICE,
253 .instance_size = sizeof(ETRAXSerial),
254 .instance_init = etraxfs_ser_init,
255 .class_init = etraxfs_ser_class_init,
258 static void etraxfs_serial_register_types(void)
260 type_register_static(&etraxfs_ser_info);
263 type_init(etraxfs_serial_register_types)