enjoy-digital / litex

Build your hardware, easily!
Other
2.91k stars 557 forks source link

CPUs keep resetting on PYNQ-Z2 #996

Closed troibe closed 3 years ago

troibe commented 3 years ago

I'm adding the PYNQ-Z2 to LiteX. The process was pretty straight forward as I could base it on the Zybo Z7. Unfortunately any CPU I use gets reset every 2-3 seconds. By that I mean the behavior is just like when pressing the reset button (i.e. ledchaser and UART will get reset). I tried setting pll.reset.eq(0) but it does not seem to be affecting the RTL.

enjoy-digital commented 3 years ago

Hi @developandplay,

I assume you are creating a SoC with a Soft Core CPU and not the PS. If so, this is very similar to a regular FPGA and the SoC just need a stable clock to operate correctly. You could first disconnect the reset. If still not working, I would recommend checking the clock and be sure that it's stable during the reset.

While answering, I'm just looking at Pynq Z2 schematic and it seems the clock from the PL is coming from the Ethernet PHY. If so, the issue could be similar to an issue we had on the Pano Logic G2: the LiteX SoC while initializing the Ethernet PHY was reseting it and then stopping the main clock source. To workaround this, you can comment out rst_npad of the Ethernet PHY and drive it manually as we are doing on the Pano Logic G2: https://github.com/litex-hub/litex-boards/blob/master/litex_boards/targets/pano_logic_g2.py#L36

troibe commented 3 years ago

@enjoy-digital Thanks for the second hint. Just read the PYNQ Z2 manual p.9 again and it seem like the resetting Ethernet PHY is indeed the problem.

Apparently if the ethernet is connected then the board won't reset the PHY. https://forums.xilinx.com/t5/Other-FPGA-Architecture/MMCM-Losing-Lock-on-a-PYNQ-Z2-Zynq-7020/td-p/923525

enjoy-digital commented 3 years ago

@developandplay: Great!