firmware: fix non-DRTIO build

pull/1445/head
Sebastien Bourdeauducq 2020-04-10 17:23:17 +08:00
parent ec7b2bea12
commit fb0ade77a9
1 changed files with 8 additions and 6 deletions

View File

@ -158,12 +158,14 @@ pub fn init() {
}
#[cfg(has_drtio)]
unsafe {
csr::drtio_transceiver::stable_clkin_write(1);
}
clock::spin_us(1500); // wait for CPLL/QPLL lock
unsafe {
csr::drtio_transceiver::txenable_write(0xffffffffu32 as _);
{
unsafe {
csr::drtio_transceiver::stable_clkin_write(1);
}
clock::spin_us(1500); // wait for CPLL/QPLL lock
unsafe {
csr::drtio_transceiver::txenable_write(0xffffffffu32 as _);
}
}
#[cfg(has_rtio_crg)]