From cbb563887781d813e67c59b68dd76891cb78c3d4 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Mon, 10 May 2021 20:08:44 +0100 Subject: hw/arm: Model TCMs in the SSE-300, not the AN547 The SSE-300 has an ITCM at 0x0000_0000 and a DTCM at 0x2000_0000. Currently we model these in the AN547 board, but this is conceptually wrong, because they are a part of the SSE-300 itself. Move the modelling of the TCMs out of mps2-tz.c into sse300.c. This has no guest-visible effects. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Message-id: 20210510190844.17799-7-peter.maydell@linaro.org --- hw/arm/mps2-tz.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'hw/arm/mps2-tz.c') diff --git a/hw/arm/mps2-tz.c b/hw/arm/mps2-tz.c index 8d921afec1..e23830f4b7 100644 --- a/hw/arm/mps2-tz.c +++ b/hw/arm/mps2-tz.c @@ -265,23 +265,11 @@ static const RAMInfo an524_raminfo[] = { { }; static const RAMInfo an547_raminfo[] = { { - .name = "itcm", - .base = 0x00000000, - .size = 512 * KiB, - .mpc = -1, - .mrindex = 0, - }, { .name = "sram", .base = 0x01000000, .size = 2 * MiB, .mpc = 0, .mrindex = 1, - }, { - .name = "dtcm", - .base = 0x20000000, - .size = 4 * 128 * KiB, - .mpc = -1, - .mrindex = 2, }, { .name = "sram 2", .base = 0x21000000, -- cgit v1.2.3