mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
aspeed: Integrate HACE
Add the hash and crypto engine model to the Aspeed socs. Reviewed-by: Andrew Jeffery <andrew@aj.id.au> Reviewed-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com> Signed-off-by: Joel Stanley <joel@jms.id.au> Message-Id: <20210409000253.1475587-3-joel@jms.id.au> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
c5475b3f9a
commit
a3888d757a
4 changed files with 34 additions and 1 deletions
|
@ -34,6 +34,7 @@ static const hwaddr aspeed_soc_ast2400_memmap[] = {
|
|||
[ASPEED_DEV_VIC] = 0x1E6C0000,
|
||||
[ASPEED_DEV_SDMC] = 0x1E6E0000,
|
||||
[ASPEED_DEV_SCU] = 0x1E6E2000,
|
||||
[ASPEED_DEV_HACE] = 0x1E6E3000,
|
||||
[ASPEED_DEV_XDMA] = 0x1E6E7000,
|
||||
[ASPEED_DEV_VIDEO] = 0x1E700000,
|
||||
[ASPEED_DEV_ADC] = 0x1E6E9000,
|
||||
|
@ -65,6 +66,7 @@ static const hwaddr aspeed_soc_ast2500_memmap[] = {
|
|||
[ASPEED_DEV_VIC] = 0x1E6C0000,
|
||||
[ASPEED_DEV_SDMC] = 0x1E6E0000,
|
||||
[ASPEED_DEV_SCU] = 0x1E6E2000,
|
||||
[ASPEED_DEV_HACE] = 0x1E6E3000,
|
||||
[ASPEED_DEV_XDMA] = 0x1E6E7000,
|
||||
[ASPEED_DEV_ADC] = 0x1E6E9000,
|
||||
[ASPEED_DEV_VIDEO] = 0x1E700000,
|
||||
|
@ -117,6 +119,7 @@ static const int aspeed_soc_ast2400_irqmap[] = {
|
|||
[ASPEED_DEV_ETH2] = 3,
|
||||
[ASPEED_DEV_XDMA] = 6,
|
||||
[ASPEED_DEV_SDHCI] = 26,
|
||||
[ASPEED_DEV_HACE] = 4,
|
||||
};
|
||||
|
||||
#define aspeed_soc_ast2500_irqmap aspeed_soc_ast2400_irqmap
|
||||
|
@ -212,6 +215,9 @@ static void aspeed_soc_init(Object *obj)
|
|||
}
|
||||
|
||||
object_initialize_child(obj, "lpc", &s->lpc, TYPE_ASPEED_LPC);
|
||||
|
||||
snprintf(typename, sizeof(typename), "aspeed.hace-%s", socname);
|
||||
object_initialize_child(obj, "hace", &s->hace, typename);
|
||||
}
|
||||
|
||||
static void aspeed_soc_realize(DeviceState *dev, Error **errp)
|
||||
|
@ -421,6 +427,16 @@ static void aspeed_soc_realize(DeviceState *dev, Error **errp)
|
|||
|
||||
sysbus_connect_irq(SYS_BUS_DEVICE(&s->lpc), 1 + aspeed_lpc_kcs_4,
|
||||
qdev_get_gpio_in(DEVICE(&s->lpc), aspeed_lpc_kcs_4));
|
||||
|
||||
/* HACE */
|
||||
object_property_set_link(OBJECT(&s->hace), "dram", OBJECT(s->dram_mr),
|
||||
&error_abort);
|
||||
if (!sysbus_realize(SYS_BUS_DEVICE(&s->hace), errp)) {
|
||||
return;
|
||||
}
|
||||
sysbus_mmio_map(SYS_BUS_DEVICE(&s->hace), 0, sc->memmap[ASPEED_DEV_HACE]);
|
||||
sysbus_connect_irq(SYS_BUS_DEVICE(&s->hace), 0,
|
||||
aspeed_soc_get_irq(s, ASPEED_DEV_HACE));
|
||||
}
|
||||
static Property aspeed_soc_properties[] = {
|
||||
DEFINE_PROP_LINK("dram", AspeedSoCState, dram_mr, TYPE_MEMORY_REGION,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue