Statistics
| Branch: | Revision:

root / hw / etraxfs_pic.c @ 8d13fcc0

History | View | Annotate | Download (4.3 kB)

1
/*
2
 * QEMU ETRAX Interrupt Controller.
3
 *
4
 * Copyright (c) 2008 Edgar E. Iglesias, Axis Communications AB.
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7
 * of this software and associated documentation files (the "Software"), to deal
8
 * in the Software without restriction, including without limitation the rights
9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
 * copies of the Software, and to permit persons to whom the Software is
11
 * furnished to do so, subject to the following conditions:
12
 *
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
15
 *
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
 * THE SOFTWARE.
23
 */
24

    
25
#include <stdio.h>
26
#include "hw.h"
27
#include "pc.h"
28
#include "etraxfs.h"
29

    
30
#define D(x)
31

    
32
#define R_RW_MASK        0
33
#define R_R_VECT        1
34
#define R_R_MASKED_VECT        2
35
#define R_R_NMI                3
36
#define R_R_GURU        4
37
#define R_MAX                5
38

    
39
struct fs_pic_state_t
40
{
41
        CPUState *env;
42
        uint32_t regs[R_MAX];
43
};
44

    
45
static void pic_update(struct fs_pic_state_t *fs)
46
{        
47
        CPUState *env = fs->env;
48
        uint32_t vector = 0;
49
        int i;
50

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

    
53
        /* The ETRAX interrupt controller signals interrupts to teh core
54
           through an interrupt request wire and an irq vector bus. If 
55
           multiple interrupts are simultaneously active it chooses vector 
56
           0x30 and lets the sw choose the priorities.  */
57
        if (fs->regs[R_R_MASKED_VECT]) {
58
                uint32_t mv = fs->regs[R_R_MASKED_VECT];
59
                for (i = 0; i < 31; i++) {
60
                        if (mv & 1) {
61
                                vector = 0x31 + i;
62
                                /* Check for multiple interrupts.  */
63
                                if (mv > 1)
64
                                        vector = 0x30;
65
                                break;
66
                        }
67
                        mv >>= 1;
68
                }
69
                if (vector) {
70
                        env->interrupt_vector = vector;
71
                        D(printf("%s vector=%x\n", __func__, vector));
72
                        cpu_interrupt(env, CPU_INTERRUPT_HARD);
73
                }
74
        } else {
75
                env->interrupt_vector = 0;
76
                cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
77
                D(printf("%s reset irqs\n", __func__));
78
        }
79
}
80

    
81
static uint32_t pic_readl (void *opaque, target_phys_addr_t addr)
82
{
83
        struct fs_pic_state_t *fs = opaque;
84
        uint32_t rval;
85

    
86
        rval = fs->regs[addr >> 2];
87
        D(printf("%s %x=%x\n", __func__, addr, rval));
88
        return rval;
89
}
90

    
91
static void
92
pic_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
93
{
94
        struct fs_pic_state_t *fs = opaque;
95
        D(printf("%s addr=%x val=%x\n", __func__, addr, value));
96

    
97
        if (addr == R_RW_MASK) {
98
                fs->regs[R_RW_MASK] = value;
99
                pic_update(fs);
100
        }
101
}
102

    
103
static CPUReadMemoryFunc *pic_read[] = {
104
        NULL, NULL,
105
        &pic_readl,
106
};
107

    
108
static CPUWriteMemoryFunc *pic_write[] = {
109
        NULL, NULL,
110
        &pic_writel,
111
};
112

    
113
void pic_info(Monitor *mon)
114
{
115
}
116

    
117
void irq_info(Monitor *mon)
118
{
119
}
120

    
121
static void irq_handler(void *opaque, int irq, int level)
122
{        
123
        struct fs_pic_state_t *fs = (void *)opaque;
124
        irq -= 1;
125
        fs->regs[R_R_VECT] &= ~(1 << irq);
126
        fs->regs[R_R_VECT] |= (!!level << irq);
127

    
128
        pic_update(fs);
129
}
130

    
131
static void nmi_handler(void *opaque, int irq, int level)
132
{        
133
        struct fs_pic_state_t *fs = (void *)opaque;
134
        CPUState *env = fs->env;
135
        uint32_t mask;
136

    
137
        mask = 1 << irq;
138
        if (level)
139
                fs->regs[R_R_NMI] |= mask;
140
        else
141
                fs->regs[R_R_NMI] &= ~mask;
142

    
143
        if (fs->regs[R_R_NMI])
144
                cpu_interrupt(env, CPU_INTERRUPT_NMI);
145
        else
146
                cpu_reset_interrupt(env, CPU_INTERRUPT_NMI);
147
}
148

    
149
static void guru_handler(void *opaque, int irq, int level)
150
{        
151
        struct fs_pic_state_t *fs = (void *)opaque;
152
        cpu_abort(fs->env, "%s unsupported exception\n", __func__);
153
}
154

    
155
struct etraxfs_pic *etraxfs_pic_init(CPUState *env, target_phys_addr_t base)
156
{
157
        struct fs_pic_state_t *fs = NULL;
158
        struct etraxfs_pic *pic = NULL;
159
        int intr_vect_regs;
160

    
161
        pic = qemu_mallocz(sizeof *pic);
162
        pic->internal = fs = qemu_mallocz(sizeof *fs);
163

    
164
        fs->env = env;
165
        pic->irq = qemu_allocate_irqs(irq_handler, fs, 30);
166
        pic->nmi = qemu_allocate_irqs(nmi_handler, fs, 2);
167
        pic->guru = qemu_allocate_irqs(guru_handler, fs, 1);
168

    
169
        intr_vect_regs = cpu_register_io_memory(0, pic_read, pic_write, fs);
170
        cpu_register_physical_memory(base, R_MAX * 4, intr_vect_regs);
171

    
172
        return pic;
173
}