[PATCH v2 2/3] rust: phy: add some phy_driver and genphy_ functions

From: Christina Quast
Date: Thu Feb 01 2024 - 13:11:47 EST


Those functions are need for the rockchip_rust.rs implementation.

Added functions:
genphy_config_aneg
config_init

Getter functions for mdix and speed.

Signed-off-by: Christina Quast <contact@xxxxxxxxxxxxxxxxxx>
---
rust/kernel/net/phy.rs | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)

diff --git a/rust/kernel/net/phy.rs b/rust/kernel/net/phy.rs
index e457b3c7cb2f..373a4d358e9f 100644
--- a/rust/kernel/net/phy.rs
+++ b/rust/kernel/net/phy.rs
@@ -95,6 +95,22 @@ pub fn phy_id(&self) -> u32 {
unsafe { (*phydev).phy_id }
}

+ /// Gets the current crossover of the PHY.
+ pub fn mdix(&self) -> u8 {
+ let phydev = self.0.get();
+ // SAFETY: The struct invariant ensures that we may access
+ // this field without additional synchronization.
+ unsafe { (*phydev).mdix }
+ }
+
+ /// Gets the speed of the PHY.
+ pub fn speed(&mut self) -> u32 {
+ let phydev = self.0.get();
+ // SAFETY: The struct invariant ensures that we may access
+ // this field without additional synchronization.
+ unsafe { (*phydev).speed as u32 }
+ }
+
/// Gets the state of PHY state machine states.
pub fn state(&self) -> DeviceState {
let phydev = self.0.get();
@@ -300,6 +316,15 @@ pub fn genphy_read_abilities(&mut self) -> Result {
// So it's just an FFI call.
to_result(unsafe { bindings::genphy_read_abilities(phydev) })
}
+
+ /// Writes BMCR
+ pub fn genphy_config_aneg(&mut self) -> Result {
+ let phydev = self.0.get();
+ // SAFETY: `phydev` is pointing to a valid object by the type invariant of `Self`.
+ // So it's just an FFI call.
+ // second param = false => autoneg not requested
+ to_result(unsafe { bindings::__genphy_config_aneg(phydev, false) })
+ }
}

/// Defines certain other features this PHY supports (like interrupts).
@@ -583,6 +608,12 @@ fn soft_reset(_dev: &mut Device) -> Result {
Err(code::ENOTSUPP)
}

+ /// Called to initialize the PHY,
+ /// including after a reset
+ fn config_init(_dev: &mut Device) -> Result {
+ Err(code::ENOTSUPP)
+ }
+
/// Probes the hardware to determine what abilities it has.
fn get_features(_dev: &mut Device) -> Result {
Err(code::ENOTSUPP)

--
2.43.0