2009-11-19 17:45:21 +01:00
|
|
|
/*
|
|
|
|
* Cortex-A9MPCore internal peripheral emulation.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 CodeSourcery.
|
2011-12-01 22:16:34 +01:00
|
|
|
* Copyright (c) 2011 Linaro Limited.
|
|
|
|
* Written by Paul Brook, Peter Maydell.
|
2009-11-19 17:45:21 +01:00
|
|
|
*
|
2011-06-26 04:21:35 +02:00
|
|
|
* This code is licensed under the GPL.
|
2009-11-19 17:45:21 +01:00
|
|
|
*/
|
|
|
|
|
2011-12-01 22:16:34 +01:00
|
|
|
#include "sysbus.h"
|
|
|
|
|
|
|
|
/* A9MP private memory region. */
|
|
|
|
|
2013-02-28 19:23:13 +01:00
|
|
|
typedef struct A9MPPrivState {
|
2012-04-13 13:39:08 +02:00
|
|
|
SysBusDevice busdev;
|
2011-12-01 22:16:34 +01:00
|
|
|
uint32_t scu_control;
|
2011-12-29 07:19:50 +01:00
|
|
|
uint32_t scu_status;
|
2011-12-01 22:16:34 +01:00
|
|
|
uint32_t old_timer_status[8];
|
|
|
|
uint32_t num_cpu;
|
|
|
|
MemoryRegion scu_iomem;
|
|
|
|
MemoryRegion container;
|
|
|
|
DeviceState *mptimer;
|
2012-04-13 13:39:08 +02:00
|
|
|
DeviceState *gic;
|
2012-01-17 11:54:07 +01:00
|
|
|
uint32_t num_irq;
|
2013-02-28 19:23:13 +01:00
|
|
|
} A9MPPrivState;
|
2011-12-01 22:16:34 +01:00
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint64_t a9_scu_read(void *opaque, hwaddr offset,
|
2011-12-01 22:16:34 +01:00
|
|
|
unsigned size)
|
|
|
|
{
|
2013-02-28 19:23:13 +01:00
|
|
|
A9MPPrivState *s = (A9MPPrivState *)opaque;
|
2011-12-01 22:16:34 +01:00
|
|
|
switch (offset) {
|
|
|
|
case 0x00: /* Control */
|
|
|
|
return s->scu_control;
|
|
|
|
case 0x04: /* Configuration */
|
|
|
|
return (((1 << s->num_cpu) - 1) << 4) | (s->num_cpu - 1);
|
|
|
|
case 0x08: /* CPU Power Status */
|
2011-12-29 07:19:50 +01:00
|
|
|
return s->scu_status;
|
|
|
|
case 0x09: /* CPU status. */
|
|
|
|
return s->scu_status >> 8;
|
|
|
|
case 0x0a: /* CPU status. */
|
|
|
|
return s->scu_status >> 16;
|
|
|
|
case 0x0b: /* CPU status. */
|
|
|
|
return s->scu_status >> 24;
|
2011-12-01 22:16:34 +01:00
|
|
|
case 0x0c: /* Invalidate All Registers In Secure State */
|
|
|
|
return 0;
|
|
|
|
case 0x40: /* Filtering Start Address Register */
|
|
|
|
case 0x44: /* Filtering End Address Register */
|
|
|
|
/* RAZ/WI, like an implementation with only one AXI master */
|
|
|
|
return 0;
|
|
|
|
case 0x50: /* SCU Access Control Register */
|
|
|
|
case 0x54: /* SCU Non-secure Access Control Register */
|
|
|
|
/* unimplemented, fall through */
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void a9_scu_write(void *opaque, hwaddr offset,
|
2011-12-01 22:16:34 +01:00
|
|
|
uint64_t value, unsigned size)
|
|
|
|
{
|
2013-02-28 19:23:13 +01:00
|
|
|
A9MPPrivState *s = (A9MPPrivState *)opaque;
|
2011-12-29 07:19:50 +01:00
|
|
|
uint32_t mask;
|
|
|
|
uint32_t shift;
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
|
|
|
mask = 0xff;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
mask = 0xffff;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
mask = 0xffffffff;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Invalid size %u in write to a9 scu register %x\n",
|
2012-05-22 16:29:52 +02:00
|
|
|
size, (unsigned)offset);
|
2011-12-29 07:19:50 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-01 22:16:34 +01:00
|
|
|
switch (offset) {
|
|
|
|
case 0x00: /* Control */
|
|
|
|
s->scu_control = value & 1;
|
|
|
|
break;
|
|
|
|
case 0x4: /* Configuration: RO */
|
|
|
|
break;
|
2011-12-29 07:19:50 +01:00
|
|
|
case 0x08: case 0x09: case 0x0A: case 0x0B: /* Power Control */
|
|
|
|
shift = (offset - 0x8) * 8;
|
|
|
|
s->scu_status &= ~(mask << shift);
|
|
|
|
s->scu_status |= ((value & mask) << shift);
|
|
|
|
break;
|
2011-12-01 22:16:34 +01:00
|
|
|
case 0x0c: /* Invalidate All Registers In Secure State */
|
|
|
|
/* no-op as we do not implement caches */
|
|
|
|
break;
|
|
|
|
case 0x40: /* Filtering Start Address Register */
|
|
|
|
case 0x44: /* Filtering End Address Register */
|
|
|
|
/* RAZ/WI, like an implementation with only one AXI master */
|
|
|
|
break;
|
|
|
|
case 0x50: /* SCU Access Control Register */
|
|
|
|
case 0x54: /* SCU Non-secure Access Control Register */
|
|
|
|
/* unimplemented, fall through */
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const MemoryRegionOps a9_scu_ops = {
|
|
|
|
.read = a9_scu_read,
|
|
|
|
.write = a9_scu_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void a9mp_priv_reset(DeviceState *dev)
|
|
|
|
{
|
2013-02-28 19:23:13 +01:00
|
|
|
A9MPPrivState *s = FROM_SYSBUS(A9MPPrivState, SYS_BUS_DEVICE(dev));
|
2011-12-01 22:16:34 +01:00
|
|
|
int i;
|
|
|
|
s->scu_control = 0;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->old_timer_status); i++) {
|
|
|
|
s->old_timer_status[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-13 13:39:08 +02:00
|
|
|
static void a9mp_priv_set_irq(void *opaque, int irq, int level)
|
|
|
|
{
|
2013-02-28 19:23:13 +01:00
|
|
|
A9MPPrivState *s = (A9MPPrivState *)opaque;
|
2012-04-13 13:39:08 +02:00
|
|
|
qemu_set_irq(qdev_get_gpio_in(s->gic, irq), level);
|
|
|
|
}
|
|
|
|
|
2011-12-01 22:16:34 +01:00
|
|
|
static int a9mp_priv_init(SysBusDevice *dev)
|
|
|
|
{
|
2013-02-28 19:23:13 +01:00
|
|
|
A9MPPrivState *s = FROM_SYSBUS(A9MPPrivState, dev);
|
2012-04-13 13:39:08 +02:00
|
|
|
SysBusDevice *busdev, *gicbusdev;
|
2011-12-01 22:16:34 +01:00
|
|
|
int i;
|
|
|
|
|
2012-04-13 13:39:08 +02:00
|
|
|
s->gic = qdev_create(NULL, "arm_gic");
|
|
|
|
qdev_prop_set_uint32(s->gic, "num-cpu", s->num_cpu);
|
|
|
|
qdev_prop_set_uint32(s->gic, "num-irq", s->num_irq);
|
|
|
|
qdev_init_nofail(s->gic);
|
2013-01-20 02:47:33 +01:00
|
|
|
gicbusdev = SYS_BUS_DEVICE(s->gic);
|
2012-04-13 13:39:08 +02:00
|
|
|
|
|
|
|
/* Pass through outbound IRQ lines from the GIC */
|
|
|
|
sysbus_pass_irq(dev, gicbusdev);
|
|
|
|
|
|
|
|
/* Pass through inbound GPIO lines to the GIC */
|
|
|
|
qdev_init_gpio_in(&s->busdev.qdev, a9mp_priv_set_irq, s->num_irq - 32);
|
2011-12-01 22:16:34 +01:00
|
|
|
|
|
|
|
s->mptimer = qdev_create(NULL, "arm_mptimer");
|
|
|
|
qdev_prop_set_uint32(s->mptimer, "num-cpu", s->num_cpu);
|
|
|
|
qdev_init_nofail(s->mptimer);
|
2013-01-20 02:47:33 +01:00
|
|
|
busdev = SYS_BUS_DEVICE(s->mptimer);
|
2011-12-01 22:16:34 +01:00
|
|
|
|
|
|
|
/* Memory map (addresses are offsets from PERIPHBASE):
|
|
|
|
* 0x0000-0x00ff -- Snoop Control Unit
|
|
|
|
* 0x0100-0x01ff -- GIC CPU interface
|
|
|
|
* 0x0200-0x02ff -- Global Timer
|
|
|
|
* 0x0300-0x05ff -- nothing
|
|
|
|
* 0x0600-0x06ff -- private timers and watchdogs
|
|
|
|
* 0x0700-0x0fff -- nothing
|
|
|
|
* 0x1000-0x1fff -- GIC Distributor
|
|
|
|
*
|
|
|
|
* We should implement the global timer but don't currently do so.
|
|
|
|
*/
|
|
|
|
memory_region_init(&s->container, "a9mp-priv-container", 0x2000);
|
|
|
|
memory_region_init_io(&s->scu_iomem, &a9_scu_ops, s, "a9mp-scu", 0x100);
|
|
|
|
memory_region_add_subregion(&s->container, 0, &s->scu_iomem);
|
|
|
|
/* GIC CPU interface */
|
2012-04-13 13:39:08 +02:00
|
|
|
memory_region_add_subregion(&s->container, 0x100,
|
|
|
|
sysbus_mmio_get_region(gicbusdev, 1));
|
2011-12-01 22:16:34 +01:00
|
|
|
/* Note that the A9 exposes only the "timer/watchdog for this core"
|
|
|
|
* memory region, not the "timer/watchdog for core X" ones 11MPcore has.
|
|
|
|
*/
|
|
|
|
memory_region_add_subregion(&s->container, 0x600,
|
|
|
|
sysbus_mmio_get_region(busdev, 0));
|
|
|
|
memory_region_add_subregion(&s->container, 0x620,
|
|
|
|
sysbus_mmio_get_region(busdev, 1));
|
2012-04-13 13:39:08 +02:00
|
|
|
memory_region_add_subregion(&s->container, 0x1000,
|
|
|
|
sysbus_mmio_get_region(gicbusdev, 0));
|
2011-12-01 22:16:34 +01:00
|
|
|
|
|
|
|
sysbus_init_mmio(dev, &s->container);
|
|
|
|
|
2012-04-13 13:39:08 +02:00
|
|
|
/* Wire up the interrupt from each watchdog and timer.
|
|
|
|
* For each core the timer is PPI 29 and the watchdog PPI 30.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < s->num_cpu; i++) {
|
|
|
|
int ppibase = (s->num_irq - 32) + i * 32;
|
|
|
|
sysbus_connect_irq(busdev, i * 2,
|
|
|
|
qdev_get_gpio_in(s->gic, ppibase + 29));
|
|
|
|
sysbus_connect_irq(busdev, i * 2 + 1,
|
|
|
|
qdev_get_gpio_in(s->gic, ppibase + 30));
|
2011-12-01 22:16:34 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_a9mp_priv = {
|
|
|
|
.name = "a9mpcore_priv",
|
2011-12-29 07:19:50 +01:00
|
|
|
.version_id = 2,
|
2011-12-01 22:16:34 +01:00
|
|
|
.minimum_version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
2013-02-28 19:23:13 +01:00
|
|
|
VMSTATE_UINT32(scu_control, A9MPPrivState),
|
|
|
|
VMSTATE_UINT32_ARRAY(old_timer_status, A9MPPrivState, 8),
|
|
|
|
VMSTATE_UINT32_V(scu_status, A9MPPrivState, 2),
|
2011-12-01 22:16:34 +01:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
2009-11-19 17:45:21 +01:00
|
|
|
|
2011-12-08 04:34:16 +01:00
|
|
|
static Property a9mp_priv_properties[] = {
|
2013-02-28 19:23:13 +01:00
|
|
|
DEFINE_PROP_UINT32("num-cpu", A9MPPrivState, num_cpu, 1),
|
2011-12-08 04:34:16 +01:00
|
|
|
/* The Cortex-A9MP may have anything from 0 to 224 external interrupt
|
|
|
|
* IRQ lines (with another 32 internal). We default to 64+32, which
|
|
|
|
* is the number provided by the Cortex-A9MP test chip in the
|
|
|
|
* Realview PBX-A9 and Versatile Express A9 development boards.
|
|
|
|
* Other boards may differ and should set this property appropriately.
|
|
|
|
*/
|
2013-02-28 19:23:13 +01:00
|
|
|
DEFINE_PROP_UINT32("num-irq", A9MPPrivState, num_irq, 96),
|
2011-12-08 04:34:16 +01:00
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2012-01-24 20:12:29 +01:00
|
|
|
static void a9mp_priv_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-01-24 20:12:29 +01:00
|
|
|
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
|
|
|
|
|
|
|
k->init = a9mp_priv_init;
|
2011-12-08 04:34:16 +01:00
|
|
|
dc->props = a9mp_priv_properties;
|
|
|
|
dc->vmsd = &vmstate_a9mp_priv;
|
|
|
|
dc->reset = a9mp_priv_reset;
|
2012-01-24 20:12:29 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo a9mp_priv_info = {
|
2011-12-08 04:34:16 +01:00
|
|
|
.name = "a9mpcore_priv",
|
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
2013-02-28 19:23:13 +01:00
|
|
|
.instance_size = sizeof(A9MPPrivState),
|
2011-12-08 04:34:16 +01:00
|
|
|
.class_init = a9mp_priv_class_init,
|
2009-11-19 17:45:21 +01:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void a9mp_register_types(void)
|
2009-11-19 17:45:21 +01:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
type_register_static(&a9mp_priv_info);
|
2009-11-19 17:45:21 +01:00
|
|
|
}
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(a9mp_register_types)
|