ioport.c 8.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * 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.
 */
/*
 * splitted out ioport related stuffs from vl.c.
 */

P
Peter Maydell 已提交
28
#include "qemu/osdep.h"
29
#include "exec/ioport.h"
P
Prerna Saxena 已提交
30
#include "trace.h"
31
#include "exec/memory.h"
32
#include "exec/address-spaces.h"
33

34 35 36 37 38 39
typedef struct MemoryRegionPortioList {
    MemoryRegion mr;
    void *portio_opaque;
    MemoryRegionPortio ports[];
} MemoryRegionPortioList;

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
static uint64_t unassigned_io_read(void *opaque, hwaddr addr, unsigned size)
{
    return -1ULL;
}

static void unassigned_io_write(void *opaque, hwaddr addr, uint64_t val,
                                unsigned size)
{
}

const MemoryRegionOps unassigned_io_ops = {
    .read = unassigned_io_read,
    .write = unassigned_io_write,
    .endianness = DEVICE_NATIVE_ENDIAN,
};

A
Anthony Liguori 已提交
56
void cpu_outb(pio_addr_t addr, uint8_t val)
57
{
P
Paolo Bonzini 已提交
58
    trace_cpu_out(addr, 'b', val);
59 60
    address_space_write(&address_space_io, addr, MEMTXATTRS_UNSPECIFIED,
                        &val, 1);
61 62
}

A
Anthony Liguori 已提交
63
void cpu_outw(pio_addr_t addr, uint16_t val)
64
{
65 66
    uint8_t buf[2];

P
Paolo Bonzini 已提交
67
    trace_cpu_out(addr, 'w', val);
68
    stw_p(buf, val);
69 70
    address_space_write(&address_space_io, addr, MEMTXATTRS_UNSPECIFIED,
                        buf, 2);
71 72
}

A
Anthony Liguori 已提交
73
void cpu_outl(pio_addr_t addr, uint32_t val)
74
{
75 76
    uint8_t buf[4];

P
Paolo Bonzini 已提交
77
    trace_cpu_out(addr, 'l', val);
78
    stl_p(buf, val);
79 80
    address_space_write(&address_space_io, addr, MEMTXATTRS_UNSPECIFIED,
                        buf, 4);
81 82
}

A
Anthony Liguori 已提交
83
uint8_t cpu_inb(pio_addr_t addr)
84
{
85
    uint8_t val;
86

87 88
    address_space_read(&address_space_io, addr, MEMTXATTRS_UNSPECIFIED,
                       &val, 1);
P
Paolo Bonzini 已提交
89
    trace_cpu_in(addr, 'b', val);
90 91 92
    return val;
}

A
Anthony Liguori 已提交
93
uint16_t cpu_inw(pio_addr_t addr)
94
{
95
    uint8_t buf[2];
96
    uint16_t val;
97

98
    address_space_read(&address_space_io, addr, MEMTXATTRS_UNSPECIFIED, buf, 2);
99
    val = lduw_p(buf);
P
Paolo Bonzini 已提交
100
    trace_cpu_in(addr, 'w', val);
101 102 103
    return val;
}

A
Anthony Liguori 已提交
104
uint32_t cpu_inl(pio_addr_t addr)
105
{
106
    uint8_t buf[4];
107
    uint32_t val;
108

109
    address_space_read(&address_space_io, addr, MEMTXATTRS_UNSPECIFIED, buf, 4);
110
    val = ldl_p(buf);
P
Paolo Bonzini 已提交
111
    trace_cpu_in(addr, 'l', val);
112 113
    return val;
}
A
Avi Kivity 已提交
114 115

void portio_list_init(PortioList *piolist,
116
                      Object *owner,
A
Avi Kivity 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130
                      const MemoryRegionPortio *callbacks,
                      void *opaque, const char *name)
{
    unsigned n = 0;

    while (callbacks[n].size) {
        ++n;
    }

    piolist->ports = callbacks;
    piolist->nr = 0;
    piolist->regions = g_new0(MemoryRegion *, n);
    piolist->address_space = NULL;
    piolist->opaque = opaque;
131
    piolist->owner = owner;
A
Avi Kivity 已提交
132
    piolist->name = name;
133 134 135 136 137 138
    piolist->flush_coalesced_mmio = false;
}

void portio_list_set_flush_coalesced(PortioList *piolist)
{
    piolist->flush_coalesced_mmio = true;
A
Avi Kivity 已提交
139 140 141 142
}

void portio_list_destroy(PortioList *piolist)
{
143 144 145 146 147
    MemoryRegionPortioList *mrpio;
    unsigned i;

    for (i = 0; i < piolist->nr; ++i) {
        mrpio = container_of(piolist->regions[i], MemoryRegionPortioList, mr);
148
        object_unparent(OBJECT(&mrpio->mr));
149 150
        g_free(mrpio);
    }
A
Avi Kivity 已提交
151 152 153
    g_free(piolist->regions);
}

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
static const MemoryRegionPortio *find_portio(MemoryRegionPortioList *mrpio,
                                             uint64_t offset, unsigned size,
                                             bool write)
{
    const MemoryRegionPortio *mrp;

    for (mrp = mrpio->ports; mrp->size; ++mrp) {
        if (offset >= mrp->offset && offset < mrp->offset + mrp->len &&
            size == mrp->size &&
            (write ? (bool)mrp->write : (bool)mrp->read)) {
            return mrp;
        }
    }
    return NULL;
}

static uint64_t portio_read(void *opaque, hwaddr addr, unsigned size)
{
    MemoryRegionPortioList *mrpio = opaque;
    const MemoryRegionPortio *mrp = find_portio(mrpio, addr, size, false);
    uint64_t data;

    data = ((uint64_t)1 << (size * 8)) - 1;
    if (mrp) {
        data = mrp->read(mrpio->portio_opaque, mrp->base + addr);
    } else if (size == 2) {
        mrp = find_portio(mrpio, addr, 1, false);
181 182 183 184 185 186 187 188
        if (mrp) {
            data = mrp->read(mrpio->portio_opaque, mrp->base + addr);
            if (addr + 1 < mrp->offset + mrp->len) {
                data |= mrp->read(mrpio->portio_opaque, mrp->base + addr + 1) << 8;
            } else {
                data |= 0xff00;
            }
        }
189 190 191 192 193 194 195 196 197 198 199 200 201 202
    }
    return data;
}

static void portio_write(void *opaque, hwaddr addr, uint64_t data,
                         unsigned size)
{
    MemoryRegionPortioList *mrpio = opaque;
    const MemoryRegionPortio *mrp = find_portio(mrpio, addr, size, true);

    if (mrp) {
        mrp->write(mrpio->portio_opaque, mrp->base + addr, data);
    } else if (size == 2) {
        mrp = find_portio(mrpio, addr, 1, true);
203 204 205 206 207 208
        if (mrp) {
            mrp->write(mrpio->portio_opaque, mrp->base + addr, data & 0xff);
            if (addr + 1 < mrp->offset + mrp->len) {
                mrp->write(mrpio->portio_opaque, mrp->base + addr + 1, data >> 8);
            }
        }
209 210 211 212 213 214
    }
}

static const MemoryRegionOps portio_ops = {
    .read = portio_read,
    .write = portio_write,
215
    .endianness = DEVICE_LITTLE_ENDIAN,
216 217 218 219
    .valid.unaligned = true,
    .impl.unaligned = true,
};

A
Avi Kivity 已提交
220 221 222 223 224
static void portio_list_add_1(PortioList *piolist,
                              const MemoryRegionPortio *pio_init,
                              unsigned count, unsigned start,
                              unsigned off_low, unsigned off_high)
{
225
    MemoryRegionPortioList *mrpio;
A
Avi Kivity 已提交
226 227 228
    unsigned i;

    /* Copy the sub-list and null-terminate it.  */
229 230 231 232 233
    mrpio = g_malloc0(sizeof(MemoryRegionPortioList) +
                      sizeof(MemoryRegionPortio) * (count + 1));
    mrpio->portio_opaque = piolist->opaque;
    memcpy(mrpio->ports, pio_init, sizeof(MemoryRegionPortio) * count);
    memset(mrpio->ports + count, 0, sizeof(MemoryRegionPortio));
A
Avi Kivity 已提交
234 235 236

    /* Adjust the offsets to all be zero-based for the region.  */
    for (i = 0; i < count; ++i) {
237 238
        mrpio->ports[i].offset -= off_low;
        mrpio->ports[i].base = start + off_low;
A
Avi Kivity 已提交
239 240
    }

241 242
    memory_region_init_io(&mrpio->mr, piolist->owner, &portio_ops, mrpio,
                          piolist->name, off_high - off_low);
243 244 245
    if (piolist->flush_coalesced_mmio) {
        memory_region_set_flush_coalesced(&mrpio->mr);
    }
A
Avi Kivity 已提交
246
    memory_region_add_subregion(piolist->address_space,
247 248
                                start + off_low, &mrpio->mr);
    piolist->regions[piolist->nr] = &mrpio->mr;
249
    ++piolist->nr;
A
Avi Kivity 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262
}

void portio_list_add(PortioList *piolist,
                     MemoryRegion *address_space,
                     uint32_t start)
{
    const MemoryRegionPortio *pio, *pio_start = piolist->ports;
    unsigned int off_low, off_high, off_last, count;

    piolist->address_space = address_space;

    /* Handle the first entry specially.  */
    off_last = off_low = pio_start->offset;
263
    off_high = off_low + pio_start->len + pio_start->size - 1;
A
Avi Kivity 已提交
264 265 266 267 268 269 270 271 272 273 274 275 276 277
    count = 1;

    for (pio = pio_start + 1; pio->size != 0; pio++, count++) {
        /* All entries must be sorted by offset.  */
        assert(pio->offset >= off_last);
        off_last = pio->offset;

        /* If we see a hole, break the region.  */
        if (off_last > off_high) {
            portio_list_add_1(piolist, pio_start, count, start, off_low,
                              off_high);
            /* ... and start collecting anew.  */
            pio_start = pio;
            off_low = off_last;
278
            off_high = off_low + pio->len + pio_start->size - 1;
A
Avi Kivity 已提交
279 280
            count = 0;
        } else if (off_last + pio->len > off_high) {
281
            off_high = off_last + pio->len + pio_start->size - 1;
A
Avi Kivity 已提交
282 283 284 285 286 287 288 289 290
        }
    }

    /* There will always be an open sub-list.  */
    portio_list_add_1(piolist, pio_start, count, start, off_low, off_high);
}

void portio_list_del(PortioList *piolist)
{
291
    MemoryRegionPortioList *mrpio;
A
Avi Kivity 已提交
292 293 294
    unsigned i;

    for (i = 0; i < piolist->nr; ++i) {
295 296
        mrpio = container_of(piolist->regions[i], MemoryRegionPortioList, mr);
        memory_region_del_subregion(piolist->address_space, &mrpio->mr);
A
Avi Kivity 已提交
297 298
    }
}