aboutsummaryrefslogtreecommitdiff
path: root/hw/nios2/cpu_pic.c
blob: 6bccce2f3295304a9fb6698280c6ffeb5d3b5a48 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * Altera Nios2 CPU PIC
 *
 * Copyright (c) 2016 Marek Vasut <marek.vasut@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see
 * <http://www.gnu.org/licenses/lgpl-2.1.html>
 */

#include "qemu/osdep.h"
#include "qemu-common.h"
#include "cpu.h"

#include "qemu/config-file.h"

#include "boot.h"

static void nios2_pic_cpu_handler(void *opaque, int irq, int level)
{
    Nios2CPU *cpu = opaque;
    CPUNios2State *env = &cpu->env;
    CPUState *cs = CPU(cpu);
    int type = irq ? CPU_INTERRUPT_NMI : CPU_INTERRUPT_HARD;

    if (type == CPU_INTERRUPT_HARD) {
        env->irq_pending = level;

        if (level && (env->regs[CR_STATUS] & CR_STATUS_PIE)) {
            env->irq_pending = 0;
            cpu_interrupt(cs, type);
        } else if (!level) {
            env->irq_pending = 0;
            cpu_reset_interrupt(cs, type);
        }
    } else {
        if (level) {
            cpu_interrupt(cs, type);
        } else {
            cpu_reset_interrupt(cs, type);
        }
    }
}

void nios2_check_interrupts(CPUNios2State *env)
{
    Nios2CPU *cpu = nios2_env_get_cpu(env);
    CPUState *cs = CPU(cpu);

    if (env->irq_pending) {
        env->irq_pending = 0;
        cpu_interrupt(cs, CPU_INTERRUPT_HARD);
    }
}

qemu_irq *nios2_cpu_pic_init(Nios2CPU *cpu)
{
    return qemu_allocate_irqs(nios2_pic_cpu_handler, cpu, 2);
}