milkymist-uart.c 5.9 KB
Newer Older
M
Michael Walle 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 *  QEMU model of the Milkymist UART block.
 *
 *  Copyright (c) 2010 Michael Walle <michael@walle.cc>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 *
 *
 * Specification available at:
 *   http://www.milkymist.org/socdoc/uart.pdf
 */

24 25
#include "hw/hw.h"
#include "hw/sysbus.h"
M
Michael Walle 已提交
26
#include "trace.h"
27
#include "sysemu/char.h"
28
#include "qemu/error-report.h"
M
Michael Walle 已提交
29 30 31 32

enum {
    R_RXTX = 0,
    R_DIV,
33 34 35
    R_STAT,
    R_CTRL,
    R_DBG,
M
Michael Walle 已提交
36 37 38
    R_MAX
};

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
enum {
    STAT_THRE   = (1<<0),
    STAT_RX_EVT = (1<<1),
    STAT_TX_EVT = (1<<2),
};

enum {
    CTRL_RX_IRQ_EN = (1<<0),
    CTRL_TX_IRQ_EN = (1<<1),
    CTRL_THRU_EN   = (1<<2),
};

enum {
    DBG_BREAK_EN = (1<<0),
};

55 56 57 58
#define TYPE_MILKYMIST_UART "milkymist-uart"
#define MILKYMIST_UART(obj) \
    OBJECT_CHECK(MilkymistUartState, (obj), TYPE_MILKYMIST_UART)

M
Michael Walle 已提交
59
struct MilkymistUartState {
60 61
    SysBusDevice parent_obj;

62
    MemoryRegion regs_region;
M
Michael Walle 已提交
63
    CharDriverState *chr;
64
    qemu_irq irq;
M
Michael Walle 已提交
65 66 67 68 69

    uint32_t regs[R_MAX];
};
typedef struct MilkymistUartState MilkymistUartState;

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
static void uart_update_irq(MilkymistUartState *s)
{
    int rx_event = s->regs[R_STAT] & STAT_RX_EVT;
    int tx_event = s->regs[R_STAT] & STAT_TX_EVT;
    int rx_irq_en = s->regs[R_CTRL] & CTRL_RX_IRQ_EN;
    int tx_irq_en = s->regs[R_CTRL] & CTRL_TX_IRQ_EN;

    if ((rx_irq_en && rx_event) || (tx_irq_en && tx_event)) {
        trace_milkymist_uart_raise_irq();
        qemu_irq_raise(s->irq);
    } else {
        trace_milkymist_uart_lower_irq();
        qemu_irq_lower(s->irq);
    }
}

A
Avi Kivity 已提交
86
static uint64_t uart_read(void *opaque, hwaddr addr,
87
                          unsigned size)
M
Michael Walle 已提交
88 89 90 91 92 93 94
{
    MilkymistUartState *s = opaque;
    uint32_t r = 0;

    addr >>= 2;
    switch (addr) {
    case R_RXTX:
95 96
        r = s->regs[addr];
        break;
M
Michael Walle 已提交
97
    case R_DIV:
98 99 100
    case R_STAT:
    case R_CTRL:
    case R_DBG:
M
Michael Walle 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114
        r = s->regs[addr];
        break;

    default:
        error_report("milkymist_uart: read access to unknown register 0x"
                TARGET_FMT_plx, addr << 2);
        break;
    }

    trace_milkymist_uart_memory_read(addr << 2, r);

    return r;
}

A
Avi Kivity 已提交
115
static void uart_write(void *opaque, hwaddr addr, uint64_t value,
116
                       unsigned size)
M
Michael Walle 已提交
117 118 119 120 121 122 123 124 125 126
{
    MilkymistUartState *s = opaque;
    unsigned char ch = value;

    trace_milkymist_uart_memory_write(addr, value);

    addr >>= 2;
    switch (addr) {
    case R_RXTX:
        if (s->chr) {
127
            qemu_chr_fe_write_all(s->chr, &ch, 1);
M
Michael Walle 已提交
128
        }
129
        s->regs[R_STAT] |= STAT_TX_EVT;
M
Michael Walle 已提交
130 131
        break;
    case R_DIV:
132 133
    case R_CTRL:
    case R_DBG:
M
Michael Walle 已提交
134 135 136
        s->regs[addr] = value;
        break;

137 138 139
    case R_STAT:
        /* write one to clear bits */
        s->regs[addr] &= ~(value & (STAT_RX_EVT | STAT_TX_EVT));
140
        qemu_chr_accept_input(s->chr);
141 142
        break;

M
Michael Walle 已提交
143 144 145 146 147
    default:
        error_report("milkymist_uart: write access to unknown register 0x"
                TARGET_FMT_plx, addr << 2);
        break;
    }
148 149

    uart_update_irq(s);
M
Michael Walle 已提交
150 151
}

152 153 154 155 156 157 158 159
static const MemoryRegionOps uart_mmio_ops = {
    .read = uart_read,
    .write = uart_write,
    .valid = {
        .min_access_size = 4,
        .max_access_size = 4,
    },
    .endianness = DEVICE_NATIVE_ENDIAN,
M
Michael Walle 已提交
160 161 162 163 164 165
};

static void uart_rx(void *opaque, const uint8_t *buf, int size)
{
    MilkymistUartState *s = opaque;

166 167 168
    assert(!(s->regs[R_STAT] & STAT_RX_EVT));

    s->regs[R_STAT] |= STAT_RX_EVT;
M
Michael Walle 已提交
169
    s->regs[R_RXTX] = *buf;
170 171

    uart_update_irq(s);
M
Michael Walle 已提交
172 173 174 175
}

static int uart_can_rx(void *opaque)
{
176 177 178
    MilkymistUartState *s = opaque;

    return !(s->regs[R_STAT] & STAT_RX_EVT);
M
Michael Walle 已提交
179 180 181 182 183 184 185 186
}

static void uart_event(void *opaque, int event)
{
}

static void milkymist_uart_reset(DeviceState *d)
{
187
    MilkymistUartState *s = MILKYMIST_UART(d);
M
Michael Walle 已提交
188 189 190 191 192
    int i;

    for (i = 0; i < R_MAX; i++) {
        s->regs[i] = 0;
    }
193 194 195

    /* THRE is always set */
    s->regs[R_STAT] = STAT_THRE;
M
Michael Walle 已提交
196 197
}

198
static void milkymist_uart_realize(DeviceState *dev, Error **errp)
M
Michael Walle 已提交
199
{
200
    MilkymistUartState *s = MILKYMIST_UART(dev);
M
Michael Walle 已提交
201

A
Anthony Liguori 已提交
202
    s->chr = qemu_char_get_next_serial();
M
Michael Walle 已提交
203 204 205
    if (s->chr) {
        qemu_chr_add_handlers(s->chr, uart_can_rx, uart_rx, uart_event, s);
    }
206
}
M
Michael Walle 已提交
207

208 209 210 211 212 213 214 215 216 217
static void milkymist_uart_init(Object *obj)
{
    SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
    MilkymistUartState *s = MILKYMIST_UART(obj);

    sysbus_init_irq(sbd, &s->irq);

    memory_region_init_io(&s->regs_region, OBJECT(s), &uart_mmio_ops, s,
                          "milkymist-uart", R_MAX * 4);
    sysbus_init_mmio(sbd, &s->regs_region);
M
Michael Walle 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230
}

static const VMStateDescription vmstate_milkymist_uart = {
    .name = "milkymist-uart",
    .version_id = 1,
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
    .fields      = (VMStateField[]) {
        VMSTATE_UINT32_ARRAY(regs, MilkymistUartState, R_MAX),
        VMSTATE_END_OF_LIST()
    }
};

231 232
static void milkymist_uart_class_init(ObjectClass *klass, void *data)
{
233
    DeviceClass *dc = DEVICE_CLASS(klass);
234

235
    dc->realize = milkymist_uart_realize;
236 237
    dc->reset = milkymist_uart_reset;
    dc->vmsd = &vmstate_milkymist_uart;
238 239
}

240
static const TypeInfo milkymist_uart_info = {
241
    .name          = TYPE_MILKYMIST_UART,
242 243
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(MilkymistUartState),
244
    .instance_init = milkymist_uart_init,
245
    .class_init    = milkymist_uart_class_init,
M
Michael Walle 已提交
246 247
};

A
Andreas Färber 已提交
248
static void milkymist_uart_register_types(void)
M
Michael Walle 已提交
249
{
250
    type_register_static(&milkymist_uart_info);
M
Michael Walle 已提交
251 252
}

A
Andreas Färber 已提交
253
type_init(milkymist_uart_register_types)