libboard_zynq: work around Kasli-SoC MDIO breakage (#78)
This commit is contained in:
parent
42cdedae91
commit
a11cb852a8
|
@ -1,5 +1,4 @@
|
||||||
pub mod id;
|
pub mod id;
|
||||||
use id::{identify_phy, PhyIdentifier};
|
|
||||||
mod status;
|
mod status;
|
||||||
pub use status::Status;
|
pub use status::Status;
|
||||||
mod control;
|
mod control;
|
||||||
|
@ -31,6 +30,15 @@ pub trait PhyAccess {
|
||||||
fn write_phy(&mut self, addr: u8, reg: u8, data: u16);
|
fn write_phy(&mut self, addr: u8, reg: u8, data: u16);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub trait PhyRegister {
|
||||||
|
fn addr() -> u8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(feature = "target_kasli_soc"))]
|
||||||
|
mod phy_impl {
|
||||||
|
use super::*;
|
||||||
|
use id::{identify_phy, PhyIdentifier};
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Phy {
|
pub struct Phy {
|
||||||
pub addr: u8,
|
pub addr: u8,
|
||||||
|
@ -135,7 +143,41 @@ impl Phy {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait PhyRegister {
|
|
||||||
fn addr() -> u8;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "target_kasli_soc")]
|
||||||
|
mod phy_impl {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct Phy {
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Phy {
|
||||||
|
pub fn find<PA: PhyAccess>(_pa: &mut PA) -> Option<Phy> {
|
||||||
|
Some(Phy {})
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_link<PA: PhyAccess>(&self, _pa: &mut PA) -> Option<Link> {
|
||||||
|
Some(Link {
|
||||||
|
speed: LinkSpeed::S1000,
|
||||||
|
duplex: LinkDuplex::Full,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn modify_control<PA, F>(&self, _pa: &mut PA, _f: F)
|
||||||
|
where
|
||||||
|
PA: PhyAccess,
|
||||||
|
F: FnMut(Control) -> Control,
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn reset<PA: PhyAccess>(&self, _pa: &mut PA) {
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn restart_autoneg<PA: PhyAccess>(&self, _pa: &mut PA) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub use phy_impl::*;
|
||||||
|
|
Loading…
Reference in New Issue