From f2cc2a5ff298009af324365e3287da23a9199d52 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 a5778bd59..675d91a1a 100644 --- a/artiq/firmware/runtime/rtio_mgt.rs +++ b/artiq/firmware/runtime/rtio_mgt.rs @@ -271,6 +271,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() }