The command takes the target initialization phase as the argument and triggers QEMU to advance the machine to the target phase (i.e. execute all initialization steps required to enter the target phase).
This command would be used as an alternative to 'next-machine-phase' if it's more convenient to jump to a target initialization phase than to single-step through phases. The command is used in combination with the -preconfig CLI option. Note: advancing the machine to the 'ready' phase has the same effect as executing the 'x-exit-preconfig' command when the machine is in 'accel-created' phase. Signed-off-by: Mirela Grujic <mirela.gru...@greensocs.com> --- qapi/machine.json | 26 ++++++++++++++++++++++++++ hw/core/machine-qmp-cmds.c | 10 ++++++++++ 2 files changed, 36 insertions(+) diff --git a/qapi/machine.json b/qapi/machine.json index 968d67dd95..31872aae72 100644 --- a/qapi/machine.json +++ b/qapi/machine.json @@ -1352,3 +1352,29 @@ # ## { 'command': 'next-machine-phase', 'allow-preconfig': true } + +## +# @advance-machine-phase: +# +# Advance machine initialization phase to the target phase +# +# @phase: target machine initialization phase +# +# Since: #FIXME +# +# Returns: If successful, nothing +# +# Notes: This command will trigger QEMU to execute initialization steps +# that are required to enter the target machine initialization phase. +# If the target phase is the final initialization phase, the guest will +# start running immediately unless the -S option is used. The command +# is available only if the -preconfig command line option was passed. +# +# Example: +# +# -> { "execute": "advance-machine-phase", "arguments": { "phase": "ready" } } +# <- { "return": {} } +# +## +{ 'command': 'advance-machine-phase', 'data' : {'phase': 'MachineInitPhase'}, + 'allow-preconfig': true } diff --git a/hw/core/machine-qmp-cmds.c b/hw/core/machine-qmp-cmds.c index 8aa743d59b..6b21a3fdd5 100644 --- a/hw/core/machine-qmp-cmds.c +++ b/hw/core/machine-qmp-cmds.c @@ -219,3 +219,13 @@ void qmp_next_machine_phase(Error **errp) qemu_machine_enter_phase(target_phase, errp); } + +void qmp_advance_machine_phase(MachineInitPhase phase, Error **errp) +{ + if (phase_get() == phase) { + error_setg(errp, "Machine is already in the target phase"); + return; + } + + qemu_machine_enter_phase(phase, errp); +} -- 2.25.1