Skip to content

Commit

Permalink
cmake_tool: Add zcu102 support in simulator generator
Browse files Browse the repository at this point in the history
Qemu is supporting the zcu102 developpment board.

Signed-off-by: Jean-Christophe Dubois <[email protected]>
  • Loading branch information
jcdubois committed Oct 29, 2024
1 parent bef85f3 commit 6900810
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cmake-tool/helpers/simulation.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 6900810

Please sign in to comment.