Re: [Intel-wired-lan] [PATCH iwl-next v2 2/9] ethtool: Add forced speed to supported link modes maps
From: Andrew Lunn <andrew@lunn.ch>
Date: 2023-09-15 13:53:41
Also in:
intel-wired-lan
On Thu, Sep 14, 2023 at 04:27:28PM +0200, Pawel Chmielewski wrote:
On Sun, Sep 03, 2023 at 04:00:57PM +0200, Andrew Lunn wrote:quoted
quoted
Let me check if I understand correctly- is that what was sent with the v3 [1] , with the initialization helper (ethtool_forced_speed_maps_init) and the structure map in the ethtool code? Or do you have another helper in mind?Sorry for the late reply, been on vacation. The main thing is you try to reuse the table: static const struct phy_setting settings[] = {} If you can build your helper on top of phy_lookup_setting() even better. You don't need a phy_device to use those. AndrewThank for the hint Andrew! I took a look into the phy-core code, and a little into phylink. However, I still have the same concern regarding modes that are supported/unsupported by hardware (managed by the firmware in our case). Let's say I'm only looking for duplex modes and iterate over speeds with advertised modes map as an argument for phy_lookup_setting. In this case, I still need another table/map of hardware compatible link modes to check against. Theese are actually the maps we'd like to keep in the driver (and proposed in [1]), so maybe the simple intersect check between them and the advertised modes is sufficient?
The idea was you have a mask of link modes which your hardware
actually supports. You then ask the core code, give me a link mode
which fulfils this speed and duplex, taking into account the mask.
Andrew