2007-10-08 15:26:33 +02:00
|
|
|
/*
|
|
|
|
* QEMU ETRAX System Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Edgar E. Iglesias, Axis Communications AB.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2009-05-16 01:40:46 +02:00
|
|
|
#include "sysbus.h"
|
2008-05-03 00:21:55 +02:00
|
|
|
#include "qemu-char.h"
|
2011-08-11 09:17:28 +02:00
|
|
|
#include "qemu-log.h"
|
2007-10-08 15:26:33 +02:00
|
|
|
|
2008-03-01 18:25:33 +01:00
|
|
|
#define D(x)
|
|
|
|
|
2009-05-05 13:13:18 +02:00
|
|
|
#define RW_TR_CTRL (0x00 / 4)
|
|
|
|
#define RW_TR_DMA_EN (0x04 / 4)
|
|
|
|
#define RW_REC_CTRL (0x08 / 4)
|
|
|
|
#define RW_DOUT (0x1c / 4)
|
|
|
|
#define RS_STAT_DIN (0x20 / 4)
|
|
|
|
#define R_STAT_DIN (0x24 / 4)
|
|
|
|
#define RW_INTR_MASK (0x2c / 4)
|
|
|
|
#define RW_ACK_INTR (0x30 / 4)
|
|
|
|
#define R_INTR (0x34 / 4)
|
|
|
|
#define R_MASKED_INTR (0x38 / 4)
|
|
|
|
#define R_MAX (0x3c / 4)
|
2007-10-08 15:26:33 +02:00
|
|
|
|
2008-05-03 00:21:55 +02:00
|
|
|
#define STAT_DAV 16
|
|
|
|
#define STAT_TR_IDLE 22
|
|
|
|
#define STAT_TR_RDY 24
|
|
|
|
|
2009-05-05 12:50:45 +02:00
|
|
|
struct etrax_serial
|
2007-10-08 15:26:33 +02:00
|
|
|
{
|
2009-05-16 01:44:24 +02:00
|
|
|
SysBusDevice busdev;
|
2011-08-11 13:47:45 +02:00
|
|
|
MemoryRegion mmio;
|
2009-05-16 01:44:24 +02:00
|
|
|
CharDriverState *chr;
|
|
|
|
qemu_irq irq;
|
2008-05-03 00:21:55 +02:00
|
|
|
|
2009-05-16 01:44:24 +02:00
|
|
|
int pending_tx;
|
2008-05-03 00:21:55 +02:00
|
|
|
|
2010-06-14 18:41:12 +02:00
|
|
|
uint8_t rx_fifo[16];
|
|
|
|
unsigned int rx_fifo_pos;
|
|
|
|
unsigned int rx_fifo_len;
|
|
|
|
|
2009-05-16 01:44:24 +02:00
|
|
|
/* Control registers. */
|
|
|
|
uint32_t regs[R_MAX];
|
2008-05-03 00:21:55 +02:00
|
|
|
};
|
|
|
|
|
2009-05-05 12:50:45 +02:00
|
|
|
static void ser_update_irq(struct etrax_serial *s)
|
2008-05-03 00:21:55 +02:00
|
|
|
{
|
2009-05-05 13:13:18 +02:00
|
|
|
|
2010-06-14 18:41:12 +02:00
|
|
|
if (s->rx_fifo_len) {
|
|
|
|
s->regs[R_INTR] |= 8;
|
|
|
|
} else {
|
|
|
|
s->regs[R_INTR] &= ~8;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->regs[R_MASKED_INTR] = s->regs[R_INTR] & s->regs[RW_INTR_MASK];
|
2009-05-16 01:44:24 +02:00
|
|
|
qemu_set_irq(s->irq, !!s->regs[R_MASKED_INTR]);
|
2007-10-08 15:26:33 +02:00
|
|
|
}
|
2008-05-03 00:21:55 +02:00
|
|
|
|
2011-08-11 13:47:45 +02:00
|
|
|
static uint64_t
|
|
|
|
ser_read(void *opaque, target_phys_addr_t addr, unsigned int size)
|
2007-10-08 15:26:33 +02:00
|
|
|
{
|
2009-05-16 01:44:24 +02:00
|
|
|
struct etrax_serial *s = opaque;
|
|
|
|
D(CPUState *env = s->env);
|
|
|
|
uint32_t r = 0;
|
|
|
|
|
|
|
|
addr >>= 2;
|
|
|
|
switch (addr)
|
|
|
|
{
|
|
|
|
case R_STAT_DIN:
|
2010-06-14 18:41:12 +02:00
|
|
|
r = s->rx_fifo[(s->rx_fifo_pos - s->rx_fifo_len) & 15];
|
|
|
|
if (s->rx_fifo_len) {
|
|
|
|
r |= 1 << STAT_DAV;
|
|
|
|
}
|
|
|
|
r |= 1 << STAT_TR_RDY;
|
|
|
|
r |= 1 << STAT_TR_IDLE;
|
2009-05-16 01:44:24 +02:00
|
|
|
break;
|
|
|
|
case RS_STAT_DIN:
|
2010-06-14 18:41:12 +02:00
|
|
|
r = s->rx_fifo[(s->rx_fifo_pos - s->rx_fifo_len) & 15];
|
|
|
|
if (s->rx_fifo_len) {
|
|
|
|
r |= 1 << STAT_DAV;
|
|
|
|
s->rx_fifo_len--;
|
|
|
|
}
|
|
|
|
r |= 1 << STAT_TR_RDY;
|
|
|
|
r |= 1 << STAT_TR_IDLE;
|
2009-05-16 01:44:24 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r = s->regs[addr];
|
2011-08-11 09:17:28 +02:00
|
|
|
D(qemu_log("%s " TARGET_FMT_plx "=%x\n", __func__, addr, r));
|
2009-05-16 01:44:24 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return r;
|
2007-10-08 15:26:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-08-11 13:47:45 +02:00
|
|
|
ser_write(void *opaque, target_phys_addr_t addr,
|
|
|
|
uint64_t val64, unsigned int size)
|
2007-10-08 15:26:33 +02:00
|
|
|
{
|
2009-05-16 01:44:24 +02:00
|
|
|
struct etrax_serial *s = opaque;
|
2011-08-11 13:47:45 +02:00
|
|
|
uint32_t value = val64;
|
|
|
|
unsigned char ch = val64;
|
2009-05-16 01:44:24 +02:00
|
|
|
D(CPUState *env = s->env);
|
|
|
|
|
2011-08-11 09:17:28 +02:00
|
|
|
D(qemu_log("%s " TARGET_FMT_plx "=%x\n", __func__, addr, value));
|
2009-05-16 01:44:24 +02:00
|
|
|
addr >>= 2;
|
|
|
|
switch (addr)
|
|
|
|
{
|
|
|
|
case RW_DOUT:
|
2011-08-15 18:17:28 +02:00
|
|
|
qemu_chr_fe_write(s->chr, &ch, 1);
|
2010-06-14 18:41:12 +02:00
|
|
|
s->regs[R_INTR] |= 3;
|
2009-05-16 01:44:24 +02:00
|
|
|
s->pending_tx = 1;
|
|
|
|
s->regs[addr] = value;
|
|
|
|
break;
|
|
|
|
case RW_ACK_INTR:
|
2010-06-14 18:41:12 +02:00
|
|
|
if (s->pending_tx) {
|
|
|
|
value &= ~1;
|
2009-05-16 01:44:24 +02:00
|
|
|
s->pending_tx = 0;
|
2011-08-11 09:17:28 +02:00
|
|
|
D(qemu_log("fixedup value=%x r_intr=%x\n",
|
|
|
|
value, s->regs[R_INTR]));
|
2009-05-16 01:44:24 +02:00
|
|
|
}
|
2010-06-14 18:41:12 +02:00
|
|
|
s->regs[addr] = value;
|
|
|
|
s->regs[R_INTR] &= ~value;
|
|
|
|
D(printf("r_intr=%x\n", s->regs[R_INTR]));
|
2009-05-16 01:44:24 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s->regs[addr] = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ser_update_irq(s);
|
2007-10-08 15:26:33 +02:00
|
|
|
}
|
|
|
|
|
2011-08-11 13:47:45 +02:00
|
|
|
static const MemoryRegionOps ser_ops = {
|
|
|
|
.read = ser_read,
|
|
|
|
.write = ser_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.valid = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4
|
|
|
|
}
|
2007-10-08 15:26:33 +02:00
|
|
|
};
|
|
|
|
|
2008-05-03 00:21:55 +02:00
|
|
|
static void serial_receive(void *opaque, const uint8_t *buf, int size)
|
2007-10-08 15:26:33 +02:00
|
|
|
{
|
2009-05-16 01:44:24 +02:00
|
|
|
struct etrax_serial *s = opaque;
|
2010-06-14 18:41:12 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Got a byte. */
|
|
|
|
if (s->rx_fifo_len >= 16) {
|
2011-08-11 09:17:28 +02:00
|
|
|
qemu_log("WARNING: UART dropped char.\n");
|
2010-06-14 18:41:12 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
s->rx_fifo[s->rx_fifo_pos] = buf[i];
|
|
|
|
s->rx_fifo_pos++;
|
|
|
|
s->rx_fifo_pos &= 15;
|
|
|
|
s->rx_fifo_len++;
|
|
|
|
}
|
2008-05-03 00:21:55 +02:00
|
|
|
|
2009-05-16 01:44:24 +02:00
|
|
|
ser_update_irq(s);
|
2008-05-03 00:21:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int serial_can_receive(void *opaque)
|
|
|
|
{
|
2009-05-16 01:44:24 +02:00
|
|
|
struct etrax_serial *s = opaque;
|
|
|
|
int r;
|
2008-05-03 00:21:55 +02:00
|
|
|
|
2009-05-16 01:44:24 +02:00
|
|
|
/* Is the receiver enabled? */
|
2010-06-14 18:41:12 +02:00
|
|
|
if (!(s->regs[RW_REC_CTRL] & (1 << 3))) {
|
|
|
|
return 0;
|
|
|
|
}
|
2008-05-03 00:21:55 +02:00
|
|
|
|
2010-06-14 18:41:12 +02:00
|
|
|
r = sizeof(s->rx_fifo) - s->rx_fifo_len;
|
2009-05-16 01:44:24 +02:00
|
|
|
return r;
|
2008-05-03 00:21:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void serial_event(void *opaque, int event)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-06-30 10:52:22 +02:00
|
|
|
static void etraxfs_ser_reset(DeviceState *d)
|
2008-05-03 00:21:55 +02:00
|
|
|
{
|
2011-06-30 10:52:22 +02:00
|
|
|
struct etrax_serial *s = container_of(d, typeof(*s), busdev.qdev);
|
2009-05-16 01:44:24 +02:00
|
|
|
|
|
|
|
/* transmitter begins ready and idle. */
|
|
|
|
s->regs[RS_STAT_DIN] |= (1 << STAT_TR_RDY);
|
|
|
|
s->regs[RS_STAT_DIN] |= (1 << STAT_TR_IDLE);
|
|
|
|
|
2011-06-30 10:52:22 +02:00
|
|
|
s->regs[RW_REC_CTRL] = 0x10000;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static int etraxfs_ser_init(SysBusDevice *dev)
|
|
|
|
{
|
|
|
|
struct etrax_serial *s = FROM_SYSBUS(typeof (*s), dev);
|
|
|
|
|
2009-05-16 01:44:24 +02:00
|
|
|
sysbus_init_irq(dev, &s->irq);
|
2011-08-11 13:47:45 +02:00
|
|
|
memory_region_init_io(&s->mmio, &ser_ops, s, "etraxfs-serial", R_MAX * 4);
|
|
|
|
sysbus_init_mmio_region(dev, &s->mmio);
|
|
|
|
|
2009-05-16 01:44:24 +02:00
|
|
|
s->chr = qdev_init_chardev(&dev->qdev);
|
|
|
|
if (s->chr)
|
|
|
|
qemu_chr_add_handlers(s->chr,
|
|
|
|
serial_can_receive, serial_receive,
|
|
|
|
serial_event, s);
|
2009-08-14 10:36:05 +02:00
|
|
|
return 0;
|
2007-10-08 15:26:33 +02:00
|
|
|
}
|
2009-05-16 01:40:46 +02:00
|
|
|
|
2011-06-30 10:52:22 +02:00
|
|
|
static SysBusDeviceInfo etraxfs_ser_info = {
|
|
|
|
.init = etraxfs_ser_init,
|
|
|
|
.qdev.name = "etraxfs,serial",
|
|
|
|
.qdev.size = sizeof(struct etrax_serial),
|
|
|
|
.qdev.reset = etraxfs_ser_reset,
|
|
|
|
};
|
|
|
|
|
2009-05-16 01:40:46 +02:00
|
|
|
static void etraxfs_serial_register(void)
|
|
|
|
{
|
2011-06-30 10:52:22 +02:00
|
|
|
sysbus_register_withprop(&etraxfs_ser_info);
|
2009-05-16 01:40:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
device_init(etraxfs_serial_register)
|