2016-03-16 20:06:00 +03:00
|
|
|
/*
|
2016-09-22 20:13:05 +03:00
|
|
|
* ASPEED SoC family
|
2016-03-16 20:06:00 +03:00
|
|
|
*
|
|
|
|
* Andrew Jeffery <andrew@aj.id.au>
|
|
|
|
* Jeremy Kerr <jk@ozlabs.org>
|
|
|
|
*
|
|
|
|
* Copyright 2016 IBM Corp.
|
|
|
|
*
|
|
|
|
* This code is licensed under the GPL version 2 or later. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 11:01:28 +03:00
|
|
|
#include "qapi/error.h"
|
2016-01-19 23:51:44 +03:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "cpu.h"
|
2016-03-16 20:06:00 +03:00
|
|
|
#include "exec/address-spaces.h"
|
2016-09-22 20:13:05 +03:00
|
|
|
#include "hw/arm/aspeed_soc.h"
|
2016-03-16 20:06:00 +03:00
|
|
|
#include "hw/char/serial.h"
|
2015-12-15 15:16:16 +03:00
|
|
|
#include "qemu/log.h"
|
2016-06-06 18:59:29 +03:00
|
|
|
#include "hw/i2c/aspeed_i2c.h"
|
2016-03-16 20:06:00 +03:00
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
#define ASPEED_SOC_UART_5_BASE 0x00184000
|
|
|
|
#define ASPEED_SOC_IOMEM_SIZE 0x00200000
|
|
|
|
#define ASPEED_SOC_IOMEM_BASE 0x1E600000
|
|
|
|
#define ASPEED_SOC_FMC_BASE 0x1E620000
|
|
|
|
#define ASPEED_SOC_SPI_BASE 0x1E630000
|
|
|
|
#define ASPEED_SOC_VIC_BASE 0x1E6C0000
|
|
|
|
#define ASPEED_SOC_SDMC_BASE 0x1E6E0000
|
|
|
|
#define ASPEED_SOC_SCU_BASE 0x1E6E2000
|
|
|
|
#define ASPEED_SOC_TIMER_BASE 0x1E782000
|
|
|
|
#define ASPEED_SOC_I2C_BASE 0x1E78A000
|
|
|
|
|
|
|
|
#define ASPEED_SOC_FMC_FLASH_BASE 0x20000000
|
|
|
|
#define ASPEED_SOC_SPI_FLASH_BASE 0x30000000
|
2016-07-04 15:06:38 +03:00
|
|
|
|
2016-03-16 20:06:00 +03:00
|
|
|
static const int uart_irqs[] = { 9, 32, 33, 34, 10 };
|
|
|
|
static const int timer_irqs[] = { 16, 17, 18, 35, 36, 37, 38, 39, };
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
#define AST2400_SDRAM_BASE 0x40000000
|
|
|
|
|
|
|
|
static const AspeedSoCInfo aspeed_socs[] = {
|
|
|
|
{ "ast2400-a0", "arm926", AST2400_A0_SILICON_REV, AST2400_SDRAM_BASE },
|
|
|
|
{ "ast2400", "arm926", AST2400_A0_SILICON_REV, AST2400_SDRAM_BASE },
|
|
|
|
};
|
|
|
|
|
2016-03-16 20:06:00 +03:00
|
|
|
/*
|
|
|
|
* IO handlers: simply catch any reads/writes to IO addresses that aren't
|
|
|
|
* handled by a device mapping.
|
|
|
|
*/
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static uint64_t aspeed_soc_io_read(void *p, hwaddr offset, unsigned size)
|
2016-03-16 20:06:00 +03:00
|
|
|
{
|
|
|
|
qemu_log_mask(LOG_UNIMP, "%s: 0x%" HWADDR_PRIx " [%u]\n",
|
|
|
|
__func__, offset, size);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static void aspeed_soc_io_write(void *opaque, hwaddr offset, uint64_t value,
|
2016-03-16 20:06:00 +03:00
|
|
|
unsigned size)
|
|
|
|
{
|
|
|
|
qemu_log_mask(LOG_UNIMP, "%s: 0x%" HWADDR_PRIx " <- 0x%" PRIx64 " [%u]\n",
|
|
|
|
__func__, offset, value, size);
|
|
|
|
}
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static const MemoryRegionOps aspeed_soc_io_ops = {
|
|
|
|
.read = aspeed_soc_io_read,
|
|
|
|
.write = aspeed_soc_io_write,
|
2016-03-16 20:06:00 +03:00
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
};
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static void aspeed_soc_init(Object *obj)
|
2016-03-16 20:06:00 +03:00
|
|
|
{
|
2016-09-22 20:13:05 +03:00
|
|
|
AspeedSoCState *s = ASPEED_SOC(obj);
|
2016-09-22 20:13:05 +03:00
|
|
|
AspeedSoCClass *sc = ASPEED_SOC_GET_CLASS(s);
|
2016-03-16 20:06:00 +03:00
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
s->cpu = cpu_arm_init(sc->info->cpu_model);
|
2016-03-16 20:06:00 +03:00
|
|
|
|
|
|
|
object_initialize(&s->vic, sizeof(s->vic), TYPE_ASPEED_VIC);
|
|
|
|
object_property_add_child(obj, "vic", OBJECT(&s->vic), NULL);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->vic), sysbus_get_default());
|
|
|
|
|
|
|
|
object_initialize(&s->timerctrl, sizeof(s->timerctrl), TYPE_ASPEED_TIMER);
|
|
|
|
object_property_add_child(obj, "timerctrl", OBJECT(&s->timerctrl), NULL);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->timerctrl), sysbus_get_default());
|
2016-06-06 18:59:29 +03:00
|
|
|
|
|
|
|
object_initialize(&s->i2c, sizeof(s->i2c), TYPE_ASPEED_I2C);
|
|
|
|
object_property_add_child(obj, "i2c", OBJECT(&s->i2c), NULL);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->i2c), sysbus_get_default());
|
2016-06-27 17:37:33 +03:00
|
|
|
|
|
|
|
object_initialize(&s->scu, sizeof(s->scu), TYPE_ASPEED_SCU);
|
|
|
|
object_property_add_child(obj, "scu", OBJECT(&s->scu), NULL);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->scu), sysbus_get_default());
|
|
|
|
qdev_prop_set_uint32(DEVICE(&s->scu), "silicon-rev",
|
2016-09-22 20:13:05 +03:00
|
|
|
sc->info->silicon_rev);
|
2016-06-27 17:37:33 +03:00
|
|
|
object_property_add_alias(obj, "hw-strap1", OBJECT(&s->scu),
|
|
|
|
"hw-strap1", &error_abort);
|
|
|
|
object_property_add_alias(obj, "hw-strap2", OBJECT(&s->scu),
|
|
|
|
"hw-strap2", &error_abort);
|
2016-07-04 15:06:37 +03:00
|
|
|
|
|
|
|
object_initialize(&s->smc, sizeof(s->smc), "aspeed.smc.fmc");
|
|
|
|
object_property_add_child(obj, "smc", OBJECT(&s->smc), NULL);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->smc), sysbus_get_default());
|
|
|
|
|
|
|
|
object_initialize(&s->spi, sizeof(s->spi), "aspeed.smc.spi");
|
|
|
|
object_property_add_child(obj, "spi", OBJECT(&s->spi), NULL);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->spi), sysbus_get_default());
|
2016-09-06 21:52:17 +03:00
|
|
|
|
|
|
|
object_initialize(&s->sdmc, sizeof(s->sdmc), TYPE_ASPEED_SDMC);
|
|
|
|
object_property_add_child(obj, "sdmc", OBJECT(&s->sdmc), NULL);
|
|
|
|
qdev_set_parent_bus(DEVICE(&s->sdmc), sysbus_get_default());
|
|
|
|
qdev_prop_set_uint32(DEVICE(&s->sdmc), "silicon-rev",
|
2016-09-22 20:13:05 +03:00
|
|
|
sc->info->silicon_rev);
|
2016-03-16 20:06:00 +03:00
|
|
|
}
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static void aspeed_soc_realize(DeviceState *dev, Error **errp)
|
2016-03-16 20:06:00 +03:00
|
|
|
{
|
|
|
|
int i;
|
2016-09-22 20:13:05 +03:00
|
|
|
AspeedSoCState *s = ASPEED_SOC(dev);
|
2016-07-04 15:06:37 +03:00
|
|
|
Error *err = NULL, *local_err = NULL;
|
2016-03-16 20:06:00 +03:00
|
|
|
|
|
|
|
/* IO space */
|
2016-09-22 20:13:05 +03:00
|
|
|
memory_region_init_io(&s->iomem, NULL, &aspeed_soc_io_ops, NULL,
|
|
|
|
"aspeed_soc.io", ASPEED_SOC_IOMEM_SIZE);
|
|
|
|
memory_region_add_subregion_overlap(get_system_memory(),
|
|
|
|
ASPEED_SOC_IOMEM_BASE, &s->iomem, -1);
|
2016-03-16 20:06:00 +03:00
|
|
|
|
|
|
|
/* VIC */
|
|
|
|
object_property_set_bool(OBJECT(&s->vic), true, "realized", &err);
|
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 20:13:05 +03:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->vic), 0, ASPEED_SOC_VIC_BASE);
|
2016-03-16 20:06:00 +03:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->vic), 0,
|
|
|
|
qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->vic), 1,
|
|
|
|
qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_FIQ));
|
|
|
|
|
|
|
|
/* Timer */
|
|
|
|
object_property_set_bool(OBJECT(&s->timerctrl), true, "realized", &err);
|
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 20:13:05 +03:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->timerctrl), 0, ASPEED_SOC_TIMER_BASE);
|
2016-03-16 20:06:00 +03:00
|
|
|
for (i = 0; i < ARRAY_SIZE(timer_irqs); i++) {
|
|
|
|
qemu_irq irq = qdev_get_gpio_in(DEVICE(&s->vic), timer_irqs[i]);
|
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->timerctrl), i, irq);
|
|
|
|
}
|
|
|
|
|
2016-06-27 17:37:33 +03:00
|
|
|
/* SCU */
|
|
|
|
object_property_set_bool(OBJECT(&s->scu), true, "realized", &err);
|
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 20:13:05 +03:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->scu), 0, ASPEED_SOC_SCU_BASE);
|
2016-06-27 17:37:33 +03:00
|
|
|
|
2016-03-16 20:06:00 +03:00
|
|
|
/* UART - attach an 8250 to the IO space as our UART5 */
|
|
|
|
if (serial_hds[0]) {
|
|
|
|
qemu_irq uart5 = qdev_get_gpio_in(DEVICE(&s->vic), uart_irqs[4]);
|
2016-09-22 20:13:05 +03:00
|
|
|
serial_mm_init(&s->iomem, ASPEED_SOC_UART_5_BASE, 2,
|
2016-03-16 20:06:00 +03:00
|
|
|
uart5, 38400, serial_hds[0], DEVICE_LITTLE_ENDIAN);
|
|
|
|
}
|
2016-06-06 18:59:29 +03:00
|
|
|
|
|
|
|
/* I2C */
|
|
|
|
object_property_set_bool(OBJECT(&s->i2c), true, "realized", &err);
|
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 20:13:05 +03:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->i2c), 0, ASPEED_SOC_I2C_BASE);
|
2016-06-06 18:59:29 +03:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->i2c), 0,
|
|
|
|
qdev_get_gpio_in(DEVICE(&s->vic), 12));
|
2016-07-04 15:06:37 +03:00
|
|
|
|
|
|
|
/* SMC */
|
|
|
|
object_property_set_int(OBJECT(&s->smc), 1, "num-cs", &err);
|
|
|
|
object_property_set_bool(OBJECT(&s->smc), true, "realized", &local_err);
|
|
|
|
error_propagate(&err, local_err);
|
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 20:13:05 +03:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->smc), 0, ASPEED_SOC_FMC_BASE);
|
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->smc), 1, ASPEED_SOC_FMC_FLASH_BASE);
|
2016-07-04 15:06:37 +03:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->smc), 0,
|
|
|
|
qdev_get_gpio_in(DEVICE(&s->vic), 19));
|
|
|
|
|
|
|
|
/* SPI */
|
|
|
|
object_property_set_int(OBJECT(&s->spi), 1, "num-cs", &err);
|
|
|
|
object_property_set_bool(OBJECT(&s->spi), true, "realized", &local_err);
|
|
|
|
error_propagate(&err, local_err);
|
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 20:13:05 +03:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->spi), 0, ASPEED_SOC_SPI_BASE);
|
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->spi), 1, ASPEED_SOC_SPI_FLASH_BASE);
|
2016-09-06 21:52:17 +03:00
|
|
|
|
|
|
|
/* SDMC - SDRAM Memory Controller */
|
|
|
|
object_property_set_bool(OBJECT(&s->sdmc), true, "realized", &err);
|
|
|
|
if (err) {
|
|
|
|
error_propagate(errp, err);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 20:13:05 +03:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->sdmc), 0, ASPEED_SOC_SDMC_BASE);
|
2016-03-16 20:06:00 +03:00
|
|
|
}
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static void aspeed_soc_class_init(ObjectClass *oc, void *data)
|
2016-03-16 20:06:00 +03:00
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2016-09-22 20:13:05 +03:00
|
|
|
AspeedSoCClass *sc = ASPEED_SOC_CLASS(oc);
|
2016-03-16 20:06:00 +03:00
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
sc->info = (AspeedSoCInfo *) data;
|
2016-09-22 20:13:05 +03:00
|
|
|
dc->realize = aspeed_soc_realize;
|
2016-03-16 20:06:00 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Reason: creates an ARM CPU, thus use after free(), see
|
|
|
|
* arm_cpu_class_init()
|
|
|
|
*/
|
|
|
|
dc->cannot_destroy_with_object_finalize_yet = true;
|
|
|
|
}
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static const TypeInfo aspeed_soc_type_info = {
|
2016-09-22 20:13:05 +03:00
|
|
|
.name = TYPE_ASPEED_SOC,
|
|
|
|
.parent = TYPE_DEVICE,
|
|
|
|
.instance_init = aspeed_soc_init,
|
|
|
|
.instance_size = sizeof(AspeedSoCState),
|
|
|
|
.class_size = sizeof(AspeedSoCClass),
|
|
|
|
.abstract = true,
|
2016-03-16 20:06:00 +03:00
|
|
|
};
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
static void aspeed_soc_register_types(void)
|
2016-03-16 20:06:00 +03:00
|
|
|
{
|
2016-09-22 20:13:05 +03:00
|
|
|
int i;
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
type_register_static(&aspeed_soc_type_info);
|
2016-09-22 20:13:05 +03:00
|
|
|
for (i = 0; i < ARRAY_SIZE(aspeed_socs); ++i) {
|
|
|
|
TypeInfo ti = {
|
|
|
|
.name = aspeed_socs[i].name,
|
|
|
|
.parent = TYPE_ASPEED_SOC,
|
|
|
|
.class_init = aspeed_soc_class_init,
|
|
|
|
.class_data = (void *) &aspeed_socs[i],
|
|
|
|
};
|
|
|
|
type_register(&ti);
|
|
|
|
}
|
2016-03-16 20:06:00 +03:00
|
|
|
}
|
|
|
|
|
2016-09-22 20:13:05 +03:00
|
|
|
type_init(aspeed_soc_register_types)
|