Xilinx / qemu

Xilinx's fork of Quick EMUlator (QEMU) with improved support and modelling for the Xilinx platforms.
https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/821395464/QEMU+User+Documentation
Other
238 stars 152 forks source link

QEMU - How to enable two GEMs on xilinx-zcu102 machine #87

Open vladDmit opened 10 months ago

vladDmit commented 10 months ago

By default only gem3 is enable on xilinx-zcu102 machine. How do I enable a second gem? so that my VM has two network interfaces : xzynq0 and xzynq1. Thanks! for your help.

saipava commented 10 months ago

QEMU does emulate all the gems may be mdio connection might be missing. Have a look at here how gem3 is connected with phy https://github.com/Xilinx/qemu-devicetrees/blob/master/board-zynqmp-zcu102.dts#L441

You need to also enable those in linux dts to access those in vm.

vladDmit commented 10 months ago

Thanks for the response. I'm not using a linux image (it's qnx). The boot stall after cpu 1, when I use the machine type arm-generic-fdt. So I used the hard-coded machine xlnx-zcu102 which boots successfully. qemu ignore when I pass the option hw-dtb board-zynqmp-zcu102.dtb. The machine xlnx-zcu102 is not dts based.. since dumpdtb return nothing. I'm still looking, but not successful on which part of the code to update to get the second GEM functional for xlnx-zcu102

saipava commented 10 months ago

For mainline version of zcu102 always have 4 gem's emulated. https://github.com/Xilinx/qemu/blob/master/hw/arm/xlnx-zynqmp.c#L606

the phy address here seems constant, i'm not sure how it goes. Can you change it a different address and set the same expectations from guest.

vladDmit commented 9 months ago

Thanks!! for your help saipava... this issue can be closed. I had to update the QNX Driver for XZYNQ UltraScale+ MPSoC Ethernet GEM. This driver reads GEM interface information from the hwinfo section of the syspage. The hwinfo section is populated in the board-specific Startup code. If there is no GEM interface specified in the hwinfo section, the driver will default to using GEM3.