From 6900810a011288ad79c693959f447c60b685bdab Mon Sep 17 00:00:00 2001 From: Jean-Christophe Dubois Date: Tue, 29 Oct 2024 06:52:22 +0100 Subject: [PATCH] cmake_tool: Add zcu102 support in simulator generator Qemu is supporting the zcu102 developpment board. Signed-off-by: Jean-Christophe Dubois --- cmake-tool/helpers/simulation.cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmake-tool/helpers/simulation.cmake b/cmake-tool/helpers/simulation.cmake index cf38b557..1b73dd34 100644 --- a/cmake-tool/helpers/simulation.cmake +++ b/cmake-tool/helpers/simulation.cmake @@ -110,6 +110,11 @@ function(GenerateSimulateScript) set(sim_serial_opt "-serial null -serial mon:stdio") set(sim_machine "xilinx-zynq-a9") SetDefaultMemSize("1024M") + elseif(KernelPlatformZynqmpZcu102) + set(QemuBinaryMachine "qemu-system-aarch64") + set(sim_serial_opt "-serial mon:stdio") + set(sim_machine "xlnx-zcu102") + SetDefaultMemSize("4096M") elseif(KernelPlatformWandQ) set(QemuBinaryMachine "qemu-system-arm") set(sim_serial_opt "-serial mon:stdio")