Bindings for /secure-chosen and /secure-chosen/stdout-path have been
proposed 1.5 years ago [1] and implemented in OP-TEE at the same time [2].
They've now been officially agreed on, so we can implement them
in QEMU.
This patch creates the property when the machine is secure.
[1] https://patchwork.kernel.org/patch/
9602401/
[2] https://github.com/OP-TEE/optee_os/commit/
4dc31c52544a
Signed-off-by: Jerome Forissier <[email protected]>
Message-id:
20181005080729[email protected]
Reviewed-by: Peter Maydell <[email protected]>
[PMM: commit message tweak]
Signed-off-by: Peter Maydell <[email protected]>
/* Mark as not usable by the normal world */
qemu_fdt_setprop_string(vms->fdt, nodename, "status", "disabled");
qemu_fdt_setprop_string(vms->fdt, nodename, "secure-status", "okay");
+
+ qemu_fdt_add_subnode(vms->fdt, "/secure-chosen");
+ qemu_fdt_setprop_string(vms->fdt, "/secure-chosen", "stdout-path",
+ nodename);
}
g_free(nodename);