diff options
| author | Jakub Kicinski <kuba@kernel.org> | 2026-01-13 06:29:13 +0300 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2026-01-13 06:29:14 +0300 |
| commit | d7161b07904797563023cc48822c86d3c41abf2c (patch) | |
| tree | 28cdda6b9f9113d43c959c5733c86d52043c3a77 /include | |
| parent | ae4744e173fadd092c43eda4ca92dcb74645225a (diff) | |
| parent | fef0f545511f72223481aab1fd24d5f8f1c9d774 (diff) | |
| download | linux-d7161b07904797563023cc48822c86d3c41abf2c.tar.xz | |
Merge branch 'r8169-add-support-for-rtl8127atf-10g-fiber-sfp'
Heiner Kallweit says:
====================
r8169: add support for RTL8127ATF (10G Fiber SFP)
RTL8127ATF supports a SFP+ port for fiber modules (10GBASE-SR/LR/ER/ZR and
DAC). The list of supported modes was provided by Realtek. According to the
r8127 vendor driver also 1G modules are supported, but this needs some more
complexity in the driver, and only 10G mode has been tested so far.
Therefore mainline support will be limited to 10G for now.
The SFP port signals are hidden in the chip IP and driven by firmware.
Therefore mainline SFP support can't be used here.
The PHY driver is used by the RTL8127ATF support in r8169.
RTL8127ATF reports the same PHY ID as the TP version. Therefore use a dummy
PHY ID.
====================
Link: https://patch.msgid.link/c2ad7819-85f5-4df8-8ecf-571dbee8931b@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/phy/realtek_phy.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/net/phy/realtek_phy.h b/include/net/phy/realtek_phy.h new file mode 100644 index 000000000000..d683bc1b0659 --- /dev/null +++ b/include/net/phy/realtek_phy.h @@ -0,0 +1,7 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _REALTEK_PHY_H +#define _REALTEK_PHY_H + +#define PHY_ID_RTL_DUMMY_SFP 0x001ccbff + +#endif /* _REALTEK_PHY_H */ |
