From: Igor Mammedov Date: Wed, 19 Feb 2020 16:09:28 +0000 (-0500) Subject: mips/mips_jazz: add max ram size check X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7c3dd4c6a50ea31bedc2efb7497271273bf42cb9;p=qemu.git mips/mips_jazz: add max ram size check error out in case user asked for more RAM than board supports. Signed-off-by: Igor Mammedov Reviewed-by: Philippe Mathieu-Daude Message-Id: <20200219160953.13771-55-imammedo@redhat.com> --- diff --git a/hw/mips/mips_jazz.c b/hw/mips/mips_jazz.c index 85d49cf155..32fbd10b4e 100644 --- a/hw/mips/mips_jazz.c +++ b/hw/mips/mips_jazz.c @@ -164,6 +164,11 @@ static void mips_jazz_init(MachineState *machine, SysBusESPState *sysbus_esp; ESPState *esp; + if (machine->ram_size > 256 * MiB) { + error_report("RAM size more than 256Mb is not supported"); + exit(EXIT_FAILURE); + } + /* init CPUs */ cpu = MIPS_CPU(cpu_create(machine->cpu_type)); env = &cpu->env;