Clang's sanitizer reports a runtime error when booting with '-net nic -net user', due to a null pointer being passed to memory_region_find(), which subsequently triggers a crash in flatview_lookup().
The root cause is that CA35 memory region is not mapped to system memory. In addition, unconfigured NICs (due to missing peers) lead to a cascade of warnings and possibly misbehavior. Fix by: - Reduce ca35 ram size to 1GiB to match the ast2700a1-evb. - Map ca35_memory into system memory - Add nic configuration in ast2700fc's ca35 init function. Steven Lee (3): hw/arm/aspeed_ast2700-fc: Fix null pointer dereference in ca35 init hw/arm/aspeed_ast27x0: Fix unimplemented region overlap with vbootrom docs: Remove ast2700fc from Aspeed family boards docs/system/arm/aspeed.rst | 2 +- hw/arm/aspeed_ast27x0-fc.c | 16 ++++++++++++++-- hw/arm/aspeed_ast27x0.c | 4 ++-- 3 files changed, 17 insertions(+), 5 deletions(-) -- 2.34.1