755c080225
Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
76 lines
1.9 KiB
C
76 lines
1.9 KiB
C
/*
|
|
* ARM RealView Emulation Baseboard Interrupt Controller
|
|
*
|
|
* Copyright (c) 2006-2007 CodeSourcery.
|
|
* Written by Paul Brook
|
|
*
|
|
* This code is licensed under the GPL.
|
|
*/
|
|
|
|
#include "sysbus.h"
|
|
|
|
#define GIC_NIRQ 96
|
|
#define NCPU 1
|
|
|
|
/* Only a single "CPU" interface is present. */
|
|
static inline int
|
|
gic_get_current_cpu(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#include "arm_gic.c"
|
|
|
|
typedef struct {
|
|
gic_state gic;
|
|
MemoryRegion iomem;
|
|
MemoryRegion container;
|
|
} RealViewGICState;
|
|
|
|
static uint64_t realview_gic_cpu_read(void *opaque, target_phys_addr_t offset,
|
|
unsigned size)
|
|
{
|
|
gic_state *s = (gic_state *)opaque;
|
|
return gic_cpu_read(s, gic_get_current_cpu(), offset);
|
|
}
|
|
|
|
static void realview_gic_cpu_write(void *opaque, target_phys_addr_t offset,
|
|
uint64_t value, unsigned size)
|
|
{
|
|
gic_state *s = (gic_state *)opaque;
|
|
gic_cpu_write(s, gic_get_current_cpu(), offset, value);
|
|
}
|
|
|
|
static const MemoryRegionOps realview_gic_cpu_ops = {
|
|
.read = realview_gic_cpu_read,
|
|
.write = realview_gic_cpu_write,
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
};
|
|
|
|
static void realview_gic_map_setup(RealViewGICState *s)
|
|
{
|
|
memory_region_init(&s->container, "realview-gic-container", 0x2000);
|
|
memory_region_init_io(&s->iomem, &realview_gic_cpu_ops, &s->gic,
|
|
"realview-gic", 0x1000);
|
|
memory_region_add_subregion(&s->container, 0, &s->iomem);
|
|
memory_region_add_subregion(&s->container, 0x1000, &s->gic.iomem);
|
|
}
|
|
|
|
static int realview_gic_init(SysBusDevice *dev)
|
|
{
|
|
RealViewGICState *s = FROM_SYSBUSGIC(RealViewGICState, dev);
|
|
|
|
gic_init(&s->gic);
|
|
realview_gic_map_setup(s);
|
|
sysbus_init_mmio_region(dev, &s->container);
|
|
return 0;
|
|
}
|
|
|
|
static void realview_gic_register_devices(void)
|
|
{
|
|
sysbus_register_dev("realview_gic", sizeof(RealViewGICState),
|
|
realview_gic_init);
|
|
}
|
|
|
|
device_init(realview_gic_register_devices)
|