sbi.c 4.0 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
/*
 * QEMU Sparc SBI interrupt controller emulation
 *
 * Based on slavio_intctl, copyright (c) 2003-2005 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.
 */
B
Blue Swirl 已提交
24

25 26 27
#include "hw.h"
#include "sun4m.h"
#include "console.h"
B
Blue Swirl 已提交
28
#include "sysbus.h"
29 30 31 32

//#define DEBUG_IRQ

#ifdef DEBUG_IRQ
33 34
#define DPRINTF(fmt, ...)                                       \
    do { printf("IRQ: " fmt , ## __VA_ARGS__); } while (0)
35
#else
36
#define DPRINTF(fmt, ...)
37 38 39 40 41 42 43
#endif

#define MAX_CPUS 16

#define SBI_NREGS 16

typedef struct SBIState {
B
Blue Swirl 已提交
44
    SysBusDevice busdev;
45 46
    uint32_t regs[SBI_NREGS];
    uint32_t intreg_pending[MAX_CPUS];
B
Blue Swirl 已提交
47
    qemu_irq cpu_irqs[MAX_CPUS];
48 49 50 51 52 53 54 55 56 57 58 59 60 61
    uint32_t pil_out[MAX_CPUS];
} SBIState;

#define SBI_SIZE (SBI_NREGS * 4)

static void sbi_set_irq(void *opaque, int irq, int level)
{
}

static uint32_t sbi_mem_readl(void *opaque, target_phys_addr_t addr)
{
    SBIState *s = opaque;
    uint32_t saddr, ret;

B
blueswir1 已提交
62
    saddr = addr >> 2;
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
    switch (saddr) {
    default:
        ret = s->regs[saddr];
        break;
    }
    DPRINTF("read system reg 0x" TARGET_FMT_plx " = %x\n", addr, ret);

    return ret;
}

static void sbi_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
{
    SBIState *s = opaque;
    uint32_t saddr;

B
blueswir1 已提交
78
    saddr = addr >> 2;
79 80 81 82 83 84 85 86
    DPRINTF("write system reg 0x" TARGET_FMT_plx " = %x\n", addr, val);
    switch (saddr) {
    default:
        s->regs[saddr] = val;
        break;
    }
}

87
static CPUReadMemoryFunc * const sbi_mem_read[3] = {
88 89
    NULL,
    NULL,
90 91 92
    sbi_mem_readl,
};

93
static CPUWriteMemoryFunc * const sbi_mem_write[3] = {
94 95
    NULL,
    NULL,
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
    sbi_mem_writel,
};

static void sbi_save(QEMUFile *f, void *opaque)
{
    SBIState *s = opaque;
    unsigned int i;

    for (i = 0; i < MAX_CPUS; i++) {
        qemu_put_be32s(f, &s->intreg_pending[i]);
    }
}

static int sbi_load(QEMUFile *f, void *opaque, int version_id)
{
    SBIState *s = opaque;
    unsigned int i;

    if (version_id != 1)
        return -EINVAL;

    for (i = 0; i < MAX_CPUS; i++) {
        qemu_get_be32s(f, &s->intreg_pending[i]);
    }

    return 0;
}

static void sbi_reset(void *opaque)
{
    SBIState *s = opaque;
    unsigned int i;

    for (i = 0; i < MAX_CPUS; i++) {
        s->intreg_pending[i] = 0;
    }
}

B
Blue Swirl 已提交
134 135 136 137 138 139 140 141 142
static void sbi_init1(SysBusDevice *dev)
{
    SBIState *s = FROM_SYSBUS(SBIState, dev);
    int sbi_io_memory;
    unsigned int i;

    qdev_init_gpio_in(&dev->qdev, sbi_set_irq, 32 + MAX_CPUS);
    for (i = 0; i < MAX_CPUS; i++) {
        sysbus_init_irq(dev, &s->cpu_irqs[i]);
143 144
    }

145
    sbi_io_memory = cpu_register_io_memory(sbi_mem_read, sbi_mem_write, s);
B
Blue Swirl 已提交
146
    sysbus_init_mmio(dev, SBI_SIZE, sbi_io_memory);
147

B
Blue Swirl 已提交
148
    register_savevm("sbi", -1, 1, sbi_save, sbi_load, s);
149
    qemu_register_reset(sbi_reset, s);
150
    sbi_reset(s);
B
Blue Swirl 已提交
151 152 153 154 155 156 157
}

static SysBusDeviceInfo sbi_info = {
    .init = sbi_init1,
    .qdev.name  = "sbi",
    .qdev.size  = sizeof(SBIState),
};
158

B
Blue Swirl 已提交
159 160 161
static void sbi_register_devices(void)
{
    sysbus_register_withprop(&sbi_info);
162
}
B
Blue Swirl 已提交
163 164

device_init(sbi_register_devices)