All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module
@ 2023-05-22 14:52 Josua Mayer
  2023-05-22 14:52 ` [PATCH 1/1] " Josua Mayer
  2023-05-24  3:40 ` [PATCH 0/1] " patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: Josua Mayer @ 2023-05-22 14:52 UTC (permalink / raw)
  To: netdev; +Cc: Josua Mayer

Add quirk for this SFP module, which is the industrial version of
Walsun HXSX-ATRC-1, for which Russell King already submitted support.

Please apply only after Russell King patch:
"net: sfp: add support for a couple of copper multi-rate modules"

Josua Mayer (1):
  net: sfp: add support for HXSX-ATRI-1 copper SFP+ module

 drivers/net/phy/sfp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
2.35.3


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module
  2023-05-22 14:52 [PATCH 0/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module Josua Mayer
@ 2023-05-22 14:52 ` Josua Mayer
  2023-05-22 15:17   ` Russell King (Oracle)
  2023-05-24  3:40 ` [PATCH 0/1] " patchwork-bot+netdevbpf
  1 sibling, 1 reply; 4+ messages in thread
From: Josua Mayer @ 2023-05-22 14:52 UTC (permalink / raw)
  To: netdev
  Cc: Josua Mayer, Russell King, Andrew Lunn, Heiner Kallweit,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni

Walsun offers commercial ("C") and industrial ("I") variants of
multi-rate copper SFP+ modules.

Add quirk for HXSX-ATRI-1 using same parameters as the already supported
commercial variant HXSX-ATRC-1.

Signed-off-by: Josua Mayer <josua@solid-run.com>
---
 drivers/net/phy/sfp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/phy/sfp.c b/drivers/net/phy/sfp.c
index ce9693f9f488..2592ff08c783 100644
--- a/drivers/net/phy/sfp.c
+++ b/drivers/net/phy/sfp.c
@@ -451,9 +451,10 @@ static const struct sfp_quirk sfp_quirks[] = {
 
 	SFP_QUIRK_M("UBNT", "UF-INSTANT", sfp_quirk_ubnt_uf_instant),
 
-	// Walsun HXSX-ATRC-1 doesn't identify as copper, and uses the
+	// Walsun HXSX-ATR[CI]-1 don't identify as copper, and use the
 	// Rollball protocol to talk to the PHY.
 	SFP_QUIRK_F("Walsun", "HXSX-ATRC-1", sfp_fixup_fs_10gt),
+	SFP_QUIRK_F("Walsun", "HXSX-ATRI-1", sfp_fixup_fs_10gt),
 
 	SFP_QUIRK_F("OEM", "SFP-10G-T", sfp_fixup_rollball_cc),
 	SFP_QUIRK_M("OEM", "SFP-2.5G-T", sfp_quirk_oem_2_5g),
-- 
2.35.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module
  2023-05-22 14:52 ` [PATCH 1/1] " Josua Mayer
@ 2023-05-22 15:17   ` Russell King (Oracle)
  0 siblings, 0 replies; 4+ messages in thread
From: Russell King (Oracle) @ 2023-05-22 15:17 UTC (permalink / raw)
  To: Josua Mayer
  Cc: netdev, Andrew Lunn, Heiner Kallweit, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni

On Mon, May 22, 2023 at 05:52:42PM +0300, Josua Mayer wrote:
> Walsun offers commercial ("C") and industrial ("I") variants of
> multi-rate copper SFP+ modules.
> 
> Add quirk for HXSX-ATRI-1 using same parameters as the already supported
> commercial variant HXSX-ATRC-1.
> 
> Signed-off-by: Josua Mayer <josua@solid-run.com>

Please note that this depends on this patch:
"net: sfp: add support for a couple of copper multi-rate modules"
https://patchwork.kernel.org/project/netdevbpf/patch/E1q0JfS-006Dqc-8t@rmk-PC.armlinux.org.uk/

Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>

Thanks!

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module
  2023-05-22 14:52 [PATCH 0/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module Josua Mayer
  2023-05-22 14:52 ` [PATCH 1/1] " Josua Mayer
@ 2023-05-24  3:40 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-05-24  3:40 UTC (permalink / raw)
  To: Josua Mayer; +Cc: netdev

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Mon, 22 May 2023 17:52:41 +0300 you wrote:
> Add quirk for this SFP module, which is the industrial version of
> Walsun HXSX-ATRC-1, for which Russell King already submitted support.
> 
> Please apply only after Russell King patch:
> "net: sfp: add support for a couple of copper multi-rate modules"
> 
> Josua Mayer (1):
>   net: sfp: add support for HXSX-ATRI-1 copper SFP+ module
> 
> [...]

Here is the summary with links:
  - [1/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module
    https://git.kernel.org/netdev/net-next/c/ac2e8e3cfe48

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-24  3:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-22 14:52 [PATCH 0/1] net: sfp: add support for HXSX-ATRI-1 copper SFP+ module Josua Mayer
2023-05-22 14:52 ` [PATCH 1/1] " Josua Mayer
2023-05-22 15:17   ` Russell King (Oracle)
2023-05-24  3:40 ` [PATCH 0/1] " patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.