2012-08-23 00:22:05 +04: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 21:17:29 +03:00
|
|
|
#include "qemu/osdep.h"
|
2017-01-18 15:44:50 +03:00
|
|
|
#include "qemu/error-report.h"
|
2012-08-23 00:22:05 +04:00
|
|
|
#include "hw/boards.h"
|
2017-01-18 15:44:50 +03:00
|
|
|
#include "exec/address-spaces.h"
|
2019-07-09 18:20:52 +03:00
|
|
|
#include "hw/core/cpu.h"
|
2012-08-23 00:22:05 +04:00
|
|
|
|
2017-01-18 15:44:50 +03:00
|
|
|
static void machine_none_init(MachineState *mch)
|
2012-08-23 00:22:05 +04:00
|
|
|
{
|
2017-01-18 15:44:50 +03:00
|
|
|
CPUState *cpu = NULL;
|
|
|
|
|
2018-02-07 13:40:26 +03:00
|
|
|
/* Initialize CPU (if user asked for it) */
|
|
|
|
if (mch->cpu_type) {
|
|
|
|
cpu = cpu_create(mch->cpu_type);
|
2017-01-18 15:44:50 +03:00
|
|
|
if (!cpu) {
|
|
|
|
error_report("Unable to initialize CPU");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RAM at address zero */
|
2020-02-19 19:09:13 +03:00
|
|
|
if (mch->ram) {
|
|
|
|
memory_region_add_subregion(get_system_memory(), 0, mch->ram);
|
2017-01-18 15:44:50 +03:00
|
|
|
}
|
2017-02-28 11:52:51 +03:00
|
|
|
|
|
|
|
if (mch->kernel_filename) {
|
|
|
|
error_report("The -kernel parameter is not supported "
|
|
|
|
"(use the generic 'loader' device instead).");
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-08-23 00:22:05 +04:00
|
|
|
}
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
static void machine_none_machine_init(MachineClass *mc)
|
2012-08-23 00:22:05 +04:00
|
|
|
{
|
2015-09-04 21:37:08 +03:00
|
|
|
mc->desc = "empty machine";
|
|
|
|
mc->init = machine_none_init;
|
2017-01-18 15:44:50 +03:00
|
|
|
mc->max_cpus = 1;
|
|
|
|
mc->default_ram_size = 0;
|
2020-02-19 19:09:13 +03:00
|
|
|
mc->default_ram_id = "ram";
|
2020-06-24 13:56:11 +03:00
|
|
|
mc->no_serial = 1;
|
|
|
|
mc->no_parallel = 1;
|
|
|
|
mc->no_floppy = 1;
|
|
|
|
mc->no_cdrom = 1;
|
|
|
|
mc->no_sdcard = 1;
|
2012-08-23 00:22:05 +04:00
|
|
|
}
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
DEFINE_MACHINE("none", machine_none_machine_init)
|