isa_mmio.c 2.9 KB
Newer Older
P
pbrook 已提交
1 2 3 4
/*
 * Memory mapped access to ISA IO space.
 *
 * Copyright (c) 2006 Fabrice Bellard
5
 *
P
pbrook 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * 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.
 */

P
pbrook 已提交
25 26
#include "hw.h"
#include "isa.h"
P
pbrook 已提交
27 28 29 30

static void isa_mmio_writeb (void *opaque, target_phys_addr_t addr,
                                  uint32_t val)
{
31
    cpu_outb(addr & IOPORTS_MASK, val);
P
pbrook 已提交
32 33 34 35 36 37 38 39
}

static void isa_mmio_writew (void *opaque, target_phys_addr_t addr,
                                  uint32_t val)
{
#ifdef TARGET_WORDS_BIGENDIAN
    val = bswap16(val);
#endif
40
    cpu_outw(addr & IOPORTS_MASK, val);
P
pbrook 已提交
41 42 43 44 45 46 47 48
}

static void isa_mmio_writel (void *opaque, target_phys_addr_t addr,
                                uint32_t val)
{
#ifdef TARGET_WORDS_BIGENDIAN
    val = bswap32(val);
#endif
49
    cpu_outl(addr & IOPORTS_MASK, val);
P
pbrook 已提交
50 51 52 53 54 55
}

static uint32_t isa_mmio_readb (void *opaque, target_phys_addr_t addr)
{
    uint32_t val;

56
    val = cpu_inb(addr & IOPORTS_MASK);
P
pbrook 已提交
57 58 59 60 61 62 63
    return val;
}

static uint32_t isa_mmio_readw (void *opaque, target_phys_addr_t addr)
{
    uint32_t val;

64
    val = cpu_inw(addr & IOPORTS_MASK);
P
pbrook 已提交
65 66 67 68 69 70 71 72 73 74
#ifdef TARGET_WORDS_BIGENDIAN
    val = bswap16(val);
#endif
    return val;
}

static uint32_t isa_mmio_readl (void *opaque, target_phys_addr_t addr)
{
    uint32_t val;

75
    val = cpu_inl(addr & IOPORTS_MASK);
P
pbrook 已提交
76 77 78 79 80 81
#ifdef TARGET_WORDS_BIGENDIAN
    val = bswap32(val);
#endif
    return val;
}

82
static CPUWriteMemoryFunc * const isa_mmio_write[] = {
P
pbrook 已提交
83 84 85 86 87
    &isa_mmio_writeb,
    &isa_mmio_writew,
    &isa_mmio_writel,
};

88
static CPUReadMemoryFunc * const isa_mmio_read[] = {
P
pbrook 已提交
89 90 91 92 93 94 95 96 97 98
    &isa_mmio_readb,
    &isa_mmio_readw,
    &isa_mmio_readl,
};

static int isa_mmio_iomemtype = 0;

void isa_mmio_init(target_phys_addr_t base, target_phys_addr_t size)
{
    if (!isa_mmio_iomemtype) {
99
        isa_mmio_iomemtype = cpu_register_io_memory(isa_mmio_read,
P
pbrook 已提交
100 101 102 103
                                                    isa_mmio_write, NULL);
    }
    cpu_register_physical_memory(base, size, isa_mmio_iomemtype);
}