firmware: reset local RTIO PHYs on startup (#958)

This commit is contained in:
Sebastien Bourdeauducq 2018-03-22 16:29:31 +08:00
parent 40e2ced85e
commit f2cc2a5ff2
1 changed files with 1 additions and 0 deletions

View File

@ -271,6 +271,7 @@ pub fn startup(io: &Io) {
pub fn init_core() { pub fn init_core() {
unsafe { unsafe {
csr::rtio_core::reset_write(1); csr::rtio_core::reset_write(1);
csr::rtio_core::reset_phy_write(1);
} }
drtio::init() drtio::init()
} }