From a844a3350e2063c2712edb2c8a975f697a6099fd Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 22 Mar 2018 16:29:31 +0800 Subject: [PATCH] firmware: reset local RTIO PHYs on startup (#958) --- artiq/firmware/runtime/rtio_mgt.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/artiq/firmware/runtime/rtio_mgt.rs b/artiq/firmware/runtime/rtio_mgt.rs index 35083315c..ce89d18a2 100644 --- a/artiq/firmware/runtime/rtio_mgt.rs +++ b/artiq/firmware/runtime/rtio_mgt.rs @@ -251,6 +251,7 @@ pub fn startup(io: &Io) { pub fn init_core() { unsafe { csr::rtio_core::reset_write(1); + csr::rtio_core::reset_phy_write(1); } drtio::init() }