kasli-soc: Ethernet PHY not detected #78

Closed
opened 2021-05-28 18:20:21 +08:00 by sb10q · 4 comments

identify_phy() always returns None in Phy.find().

``identify_phy()`` always returns ``None`` in ``Phy.find()``.
Poster
Owner

Only MDIO seems broken, board responds to ping after hardcoding PHY autodetection and link status.

diff --git a/libboard_zynq/src/eth/mod.rs b/libboard_zynq/src/eth/mod.rs
index e8e56e4..a4eb143 100644
--- a/libboard_zynq/src/eth/mod.rs
+++ b/libboard_zynq/src/eth/mod.rs
@@ -308,8 +308,8 @@ impl<GEM: Gem> Eth<GEM, (), ()> {
         inner.configure(macaddr);
 
         let phy = Phy::find(&mut inner).expect("phy");
-        phy.reset(&mut inner);
-        phy.restart_autoneg(&mut inner);
+        //phy.reset(&mut inner);
+        //phy.restart_autoneg(&mut inner);
 
         Eth {
             rx: (),
diff --git a/libboard_zynq/src/eth/phy/mod.rs b/libboard_zynq/src/eth/phy/mod.rs
index 9fdfbc7..fa65dcf 100644
--- a/libboard_zynq/src/eth/phy/mod.rs
+++ b/libboard_zynq/src/eth/phy/mod.rs
@@ -43,7 +43,7 @@ const OUI_LANTIQ : u32 = 0x355969;
 impl Phy {
     /// Probe all addresses on MDIO for a known PHY
     pub fn find<PA: PhyAccess>(pa: &mut PA) -> Option<Phy> {
-        (1..32).find(|addr| {
+        /*(1..32).find(|addr| {
             match identify_phy(pa, *addr) {
                 Some(PhyIdentifier {
                     oui: OUI_MARVELL,
@@ -71,7 +71,8 @@ impl Phy {
                 }) => true,
                 _ => false,
             }
-        }).map(|addr| Phy { addr })
+        }).map(|addr| Phy { addr })*/
+        Some(Phy { addr: 5 })
     }
 
     pub fn read_reg<PA, PR>(&self, pa: &mut PA) -> PR
@@ -110,15 +111,10 @@ impl Phy {
     }
 
     pub fn get_link<PA: PhyAccess>(&self, pa: &mut PA) -> Option<Link> {
-        let status = self.get_status(pa);
-        if !status.link_status() {
-            None
-        } else if status.cap_1000base_t_extended_status() {
-            let phy_status: PSSR = self.read_reg(pa);
-            phy_status.get_link()
-        } else {
-            status.get_link()
-        }
+        Some(Link {
+            speed: LinkSpeed::S1000,
+            duplex: LinkDuplex::Full,
+        })
     }
 
     pub fn reset<PA: PhyAccess>(&self, pa: &mut PA) {
Only MDIO seems broken, board responds to ping after hardcoding PHY autodetection and link status. ``` diff --git a/libboard_zynq/src/eth/mod.rs b/libboard_zynq/src/eth/mod.rs index e8e56e4..a4eb143 100644 --- a/libboard_zynq/src/eth/mod.rs +++ b/libboard_zynq/src/eth/mod.rs @@ -308,8 +308,8 @@ impl<GEM: Gem> Eth<GEM, (), ()> { inner.configure(macaddr); let phy = Phy::find(&mut inner).expect("phy"); - phy.reset(&mut inner); - phy.restart_autoneg(&mut inner); + //phy.reset(&mut inner); + //phy.restart_autoneg(&mut inner); Eth { rx: (), diff --git a/libboard_zynq/src/eth/phy/mod.rs b/libboard_zynq/src/eth/phy/mod.rs index 9fdfbc7..fa65dcf 100644 --- a/libboard_zynq/src/eth/phy/mod.rs +++ b/libboard_zynq/src/eth/phy/mod.rs @@ -43,7 +43,7 @@ const OUI_LANTIQ : u32 = 0x355969; impl Phy { /// Probe all addresses on MDIO for a known PHY pub fn find<PA: PhyAccess>(pa: &mut PA) -> Option<Phy> { - (1..32).find(|addr| { + /*(1..32).find(|addr| { match identify_phy(pa, *addr) { Some(PhyIdentifier { oui: OUI_MARVELL, @@ -71,7 +71,8 @@ impl Phy { }) => true, _ => false, } - }).map(|addr| Phy { addr }) + }).map(|addr| Phy { addr })*/ + Some(Phy { addr: 5 }) } pub fn read_reg<PA, PR>(&self, pa: &mut PA) -> PR @@ -110,15 +111,10 @@ impl Phy { } pub fn get_link<PA: PhyAccess>(&self, pa: &mut PA) -> Option<Link> { - let status = self.get_status(pa); - if !status.link_status() { - None - } else if status.cap_1000base_t_extended_status() { - let phy_status: PSSR = self.read_reg(pa); - phy_status.get_link() - } else { - status.get_link() - } + Some(Link { + speed: LinkSpeed::S1000, + duplex: LinkDuplex::Full, + }) } pub fn reset<PA: PhyAccess>(&self, pa: &mut PA) { ```
Poster
Owner
Might be the cause: https://github.com/sinara-hw/Kasli-SOC/issues/53
Poster
Owner

Resetting the PHY in the firmware does not help. I am sure that this code works because executing it causes the Ethernet link to drop on the switch during the PHY reset.

Resetting the PHY in the firmware does not help. I am sure that this code works because executing it causes the Ethernet link to drop on the switch during the PHY reset.
Poster
Owner
https://git.m-labs.hk/M-Labs/zynq-rs/commit/a42e5a95ffa77912dcac54ceb5a8b65ca7ce92ba
sb10q closed this issue 2021-07-05 13:39:07 +08:00
Sign in to join this conversation.
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: M-Labs/zynq-rs#78
There is no content yet.