2012-08-22 22:22:05 +02:00
|
|
|
/*
|
|
|
|
* Empty machine
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2012
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:29 +01:00
|
|
|
#include "qemu/osdep.h"
|
2017-01-18 13:44:50 +01:00
|
|
|
#include "qemu/error-report.h"
|
2012-08-22 22:22:05 +02:00
|
|
|
#include "hw/boards.h"
|
2017-01-18 13:44:50 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
|
|
|
#include "exec/address-spaces.h"
|
2019-07-09 17:20:52 +02:00
|
|
|
#include "hw/core/cpu.h"
|
2012-08-22 22:22:05 +02:00
|
|
|
|
2017-01-18 13:44:50 +01:00
|
|
|
static void machine_none_init(MachineState *mch)
|
2012-08-22 22:22:05 +02:00
|
|
|
{
|
2017-01-18 13:44:50 +01:00
|
|
|
CPUState *cpu = NULL;
|
|
|
|
|
2018-02-07 11:40:26 +01:00
|
|
|
/* Initialize CPU (if user asked for it) */
|
|
|
|
if (mch->cpu_type) {
|
|
|
|
cpu = cpu_create(mch->cpu_type);
|
2017-01-18 13:44:50 +01:00
|
|
|
if (!cpu) {
|
|
|
|
error_report("Unable to initialize CPU");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RAM at address zero */
|
|
|
|
if (mch->ram_size) {
|
|
|
|
MemoryRegion *ram = g_new(MemoryRegion, 1);
|
|
|
|
|
|
|
|
memory_region_allocate_system_memory(ram, NULL, "ram", mch->ram_size);
|
|
|
|
memory_region_add_subregion(get_system_memory(), 0, ram);
|
|
|
|
}
|
2017-02-28 09:52:51 +01:00
|
|
|
|
|
|
|
if (mch->kernel_filename) {
|
|
|
|
error_report("The -kernel parameter is not supported "
|
|
|
|
"(use the generic 'loader' device instead).");
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-08-22 22:22:05 +02:00
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
static void machine_none_machine_init(MachineClass *mc)
|
2012-08-22 22:22:05 +02:00
|
|
|
{
|
2015-09-04 20:37:08 +02:00
|
|
|
mc->desc = "empty machine";
|
|
|
|
mc->init = machine_none_init;
|
2017-01-18 13:44:50 +01:00
|
|
|
mc->max_cpus = 1;
|
|
|
|
mc->default_ram_size = 0;
|
2012-08-22 22:22:05 +02:00
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
DEFINE_MACHINE("none", machine_none_machine_init)
|