|
@@ -811,7 +811,6 @@ static void sifive_u_soc_realize(DeviceState *dev, Error **errp)
|
|
MemoryRegion *mask_rom = g_new(MemoryRegion, 1);
|
|
MemoryRegion *mask_rom = g_new(MemoryRegion, 1);
|
|
MemoryRegion *l2lim_mem = g_new(MemoryRegion, 1);
|
|
MemoryRegion *l2lim_mem = g_new(MemoryRegion, 1);
|
|
char *plic_hart_config;
|
|
char *plic_hart_config;
|
|
- size_t plic_hart_config_len;
|
|
|
|
int i, j;
|
|
int i, j;
|
|
NICInfo *nd = &nd_table[0];
|
|
NICInfo *nd = &nd_table[0];
|
|
|
|
|
|
@@ -852,18 +851,7 @@ static void sifive_u_soc_realize(DeviceState *dev, Error **errp)
|
|
l2lim_mem);
|
|
l2lim_mem);
|
|
|
|
|
|
/* create PLIC hart topology configuration string */
|
|
/* create PLIC hart topology configuration string */
|
|
- plic_hart_config_len = (strlen(SIFIVE_U_PLIC_HART_CONFIG) + 1) *
|
|
|
|
- ms->smp.cpus;
|
|
|
|
- plic_hart_config = g_malloc0(plic_hart_config_len);
|
|
|
|
- for (i = 0; i < ms->smp.cpus; i++) {
|
|
|
|
- if (i != 0) {
|
|
|
|
- strncat(plic_hart_config, "," SIFIVE_U_PLIC_HART_CONFIG,
|
|
|
|
- plic_hart_config_len);
|
|
|
|
- } else {
|
|
|
|
- strncat(plic_hart_config, "M", plic_hart_config_len);
|
|
|
|
- }
|
|
|
|
- plic_hart_config_len -= (strlen(SIFIVE_U_PLIC_HART_CONFIG) + 1);
|
|
|
|
- }
|
|
|
|
|
|
+ plic_hart_config = riscv_plic_hart_config_string(ms->smp.cpus);
|
|
|
|
|
|
/* MMIO */
|
|
/* MMIO */
|
|
s->plic = sifive_plic_create(memmap[SIFIVE_U_DEV_PLIC].base,
|
|
s->plic = sifive_plic_create(memmap[SIFIVE_U_DEV_PLIC].base,
|