pl190.c (e4f70d635863cfc3e3fa7d9a6e37b569ae94d82f) pl190.c (03dd024ff57733a55cd2e455f361d053c81b1b29)
1/*
2 * Arm PrimeCell PL190 Vector Interrupt Controller
3 *
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
6 *
7 * This code is licensed under the GPL.
8 */
9
10#include "qemu/osdep.h"
11#include "hw/sysbus.h"
1/*
2 * Arm PrimeCell PL190 Vector Interrupt Controller
3 *
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
6 *
7 * This code is licensed under the GPL.
8 */
9
10#include "qemu/osdep.h"
11#include "hw/sysbus.h"
12#include "qemu/log.h"
12
13/* The number of virtual priority levels. 16 user vectors plus the
14 unvectored IRQ. Chained interrupts would require an additional level
15 if implemented. */
16
17#define PL190_NUM_PRIO 17
18
19#define TYPE_PL190 "pl190"

--- 273 unchanged lines hidden ---
13
14/* The number of virtual priority levels. 16 user vectors plus the
15 unvectored IRQ. Chained interrupts would require an additional level
16 if implemented. */
17
18#define PL190_NUM_PRIO 17
19
20#define TYPE_PL190 "pl190"

--- 273 unchanged lines hidden ---