etraxfs_pic.c 4.6 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
/*
 * QEMU ETRAX Interrupt Controller.
 *
 * Copyright (c) 2008 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.
 */

25
#include "sysbus.h"
26
#include "hw.h"
P
Paul Brook 已提交
27 28
//#include "pc.h"
//#include "etraxfs.h"
29 30 31

#define D(x)

E
Edgar E. Iglesias 已提交
32 33 34 35 36 37
#define R_RW_MASK   0
#define R_R_VECT    1
#define R_R_MASKED_VECT 2
#define R_R_NMI     3
#define R_R_GURU    4
#define R_MAX       5
38

39
struct etrax_pic
40
{
41
    SysBusDevice busdev;
42
    MemoryRegion mmio;
43
    void *interrupt_vector;
44 45
    qemu_irq parent_irq;
    qemu_irq parent_nmi;
E
Edgar E. Iglesias 已提交
46
    uint32_t regs[R_MAX];
47 48
};

49
static void pic_update(struct etrax_pic *fs)
E
Edgar E. Iglesias 已提交
50 51 52 53 54 55
{   
    uint32_t vector = 0;
    int i;

    fs->regs[R_R_MASKED_VECT] = fs->regs[R_R_VECT] & fs->regs[R_RW_MASK];

D
Dong Xu Wang 已提交
56
    /* The ETRAX interrupt controller signals interrupts to the core
E
Edgar E. Iglesias 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
       through an interrupt request wire and an irq vector bus. If 
       multiple interrupts are simultaneously active it chooses vector 
       0x30 and lets the sw choose the priorities.  */
    if (fs->regs[R_R_MASKED_VECT]) {
        uint32_t mv = fs->regs[R_R_MASKED_VECT];
        for (i = 0; i < 31; i++) {
            if (mv & 1) {
                vector = 0x31 + i;
                /* Check for multiple interrupts.  */
                if (mv > 1)
                    vector = 0x30;
                break;
            }
            mv >>= 1;
        }
    }
73 74

    if (fs->interrupt_vector) {
75 76
        /* hack alert: ptr property */
        *(uint32_t*)(fs->interrupt_vector) = vector;
77 78
    }
    qemu_set_irq(fs->parent_irq, !!vector);
79 80
}

81 82
static uint64_t
pic_read(void *opaque, target_phys_addr_t addr, unsigned int size)
83
{
84
    struct etrax_pic *fs = opaque;
E
Edgar E. Iglesias 已提交
85
    uint32_t rval;
86

E
Edgar E. Iglesias 已提交
87 88 89
    rval = fs->regs[addr >> 2];
    D(printf("%s %x=%x\n", __func__, addr, rval));
    return rval;
90 91
}

92 93
static void pic_write(void *opaque, target_phys_addr_t addr,
                      uint64_t value, unsigned int size)
94
{
95
    struct etrax_pic *fs = opaque;
E
Edgar E. Iglesias 已提交
96
    D(printf("%s addr=%x val=%x\n", __func__, addr, value));
97

E
Edgar E. Iglesias 已提交
98 99 100 101
    if (addr == R_RW_MASK) {
        fs->regs[R_RW_MASK] = value;
        pic_update(fs);
    }
102 103
}

104 105 106 107 108 109 110 111
static const MemoryRegionOps pic_ops = {
    .read = pic_read,
    .write = pic_write,
    .endianness = DEVICE_NATIVE_ENDIAN,
    .valid = {
        .min_access_size = 4,
        .max_access_size = 4
    }
112 113
};

114
static void nmi_handler(void *opaque, int irq, int level)
E
Edgar E. Iglesias 已提交
115
{   
116
    struct etrax_pic *fs = (void *)opaque;
E
Edgar E. Iglesias 已提交
117 118 119 120 121 122 123 124
    uint32_t mask;

    mask = 1 << irq;
    if (level)
        fs->regs[R_R_NMI] |= mask;
    else
        fs->regs[R_R_NMI] &= ~mask;

125
    qemu_set_irq(fs->parent_nmi, !!fs->regs[R_R_NMI]);
126 127
}

128
static void irq_handler(void *opaque, int irq, int level)
E
Edgar E. Iglesias 已提交
129
{   
130
    struct etrax_pic *fs = (void *)opaque;
131

E
Edgar E. Iglesias 已提交
132 133
    if (irq >= 30)
        return nmi_handler(opaque, irq, level);
134

E
Edgar E. Iglesias 已提交
135 136 137 138
    irq -= 1;
    fs->regs[R_R_VECT] &= ~(1 << irq);
    fs->regs[R_R_VECT] |= (!!level << irq);
    pic_update(fs);
139 140
}

141
static int etraxfs_pic_init(SysBusDevice *dev)
142
{
143
    struct etrax_pic *s = FROM_SYSBUS(typeof (*s), dev);
144

P
Paul Brook 已提交
145
    qdev_init_gpio_in(&dev->qdev, irq_handler, 32);
146 147
    sysbus_init_irq(dev, &s->parent_irq);
    sysbus_init_irq(dev, &s->parent_nmi);
148

149
    memory_region_init_io(&s->mmio, &pic_ops, s, "etraxfs-pic", R_MAX * 4);
150
    sysbus_init_mmio(dev, &s->mmio);
151
    return 0;
152
}
153

G
Gerd Hoffmann 已提交
154 155 156 157 158
static SysBusDeviceInfo etraxfs_pic_info = {
    .init = etraxfs_pic_init,
    .qdev.name  = "etraxfs,pic",
    .qdev.size  = sizeof(struct etrax_pic),
    .qdev.props = (Property[]) {
159 160
        DEFINE_PROP_PTR("interrupt_vector", struct etrax_pic, interrupt_vector),
        DEFINE_PROP_END_OF_LIST(),
G
Gerd Hoffmann 已提交
161 162 163
    }
};

164 165
static void etraxfs_pic_register(void)
{
G
Gerd Hoffmann 已提交
166
    sysbus_register_withprop(&etraxfs_pic_info);
167 168 169
}

device_init(etraxfs_pic_register)