summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJerome Forissier <jerome.forissier@linaro.org>2018-10-05 10:07:29 +0200
committerPeter Maydell <peter.maydell@linaro.org>2018-10-16 16:15:01 +0100
commitfb23d693a3e0f22c25fdc2f373ac81d9cbb26680 (patch)
treeb011b978315b5e44cb46a77a2cb36b7d602e22aa
parentdddb37495b844270088e68e3bf30b764d48d863f (diff)
downloadfocaccia-qemu-fb23d693a3e0f22c25fdc2f373ac81d9cbb26680.tar.gz
focaccia-qemu-fb23d693a3e0f22c25fdc2f373ac81d9cbb26680.zip
hw/arm/virt: add DT property /secure-chosen/stdout-path indicating secure UART
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 <jerome.forissier@linaro.org>
Message-id: 20181005080729.6480-1-jerome.forissier@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
[PMM: commit message tweak]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--hw/arm/virt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
index 96dd4ef10c..9f677825f9 100644
--- a/hw/arm/virt.c
+++ b/hw/arm/virt.c
@@ -712,6 +712,10 @@ static void create_uart(const VirtMachineState *vms, qemu_irq *pic, int uart,
         /* 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);