mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 13:30:45 -05:00
Add support for 1600Gbps link modes based on 200Gbps per lane [1]. This includes the adopted IEEE 802.3dj copper and optical PMDs that use 200G/lane signaling [2]. Add the following PMD types: - KR8 (backplane) - CR8 (copper cable) - DR8 (SMF 500m) - DR8-2 (SMF 2km) These modes are defined in the 802.3dj specifications. References: [1] https://www.ieee802.org/3/dj/public/23_03/opsasnick_3dj_01a_2303.pdf [2] https://www.ieee802.org/3/dj/projdoc/objectives_P802d3dj_240314.pdf Signed-off-by: Yael Chemla <ychemla@nvidia.com> Reviewed-by: Shahar Shitrit <shshitrit@nvidia.com> Signed-off-by: Tariq Toukan <tariqt@nvidia.com> Reviewed-by: Maxime Chevallier <maxime.chevallier@bootlin.com> Link: https://patch.msgid.link/1763585297-1243980-2-git-send-email-tariqt@nvidia.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
65 lines
1.6 KiB
C
65 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* link caps internal header, for link modes <-> capabilities <-> interfaces
|
|
* conversions.
|
|
*/
|
|
|
|
#ifndef __PHY_CAPS_H
|
|
#define __PHY_CAPS_H
|
|
|
|
#include <linux/ethtool.h>
|
|
#include <linux/phy.h>
|
|
|
|
enum {
|
|
LINK_CAPA_10HD = 0,
|
|
LINK_CAPA_10FD,
|
|
LINK_CAPA_100HD,
|
|
LINK_CAPA_100FD,
|
|
LINK_CAPA_1000HD,
|
|
LINK_CAPA_1000FD,
|
|
LINK_CAPA_2500FD,
|
|
LINK_CAPA_5000FD,
|
|
LINK_CAPA_10000FD,
|
|
LINK_CAPA_20000FD,
|
|
LINK_CAPA_25000FD,
|
|
LINK_CAPA_40000FD,
|
|
LINK_CAPA_50000FD,
|
|
LINK_CAPA_56000FD,
|
|
LINK_CAPA_100000FD,
|
|
LINK_CAPA_200000FD,
|
|
LINK_CAPA_400000FD,
|
|
LINK_CAPA_800000FD,
|
|
LINK_CAPA_1600000FD,
|
|
|
|
__LINK_CAPA_MAX,
|
|
};
|
|
|
|
#define LINK_CAPA_ALL GENMASK((__LINK_CAPA_MAX - 1), 0)
|
|
|
|
struct link_capabilities {
|
|
int speed;
|
|
unsigned int duplex;
|
|
__ETHTOOL_DECLARE_LINK_MODE_MASK(linkmodes);
|
|
};
|
|
|
|
int __init phy_caps_init(void);
|
|
|
|
size_t phy_caps_speeds(unsigned int *speeds, size_t size,
|
|
unsigned long *linkmodes);
|
|
void phy_caps_linkmode_max_speed(u32 max_speed, unsigned long *linkmodes);
|
|
bool phy_caps_valid(int speed, int duplex, const unsigned long *linkmodes);
|
|
void phy_caps_linkmodes(unsigned long caps, unsigned long *linkmodes);
|
|
unsigned long phy_caps_from_interface(phy_interface_t interface);
|
|
|
|
const struct link_capabilities *
|
|
phy_caps_lookup_by_linkmode(const unsigned long *linkmodes);
|
|
|
|
const struct link_capabilities *
|
|
phy_caps_lookup_by_linkmode_rev(const unsigned long *linkmodes, bool fdx_only);
|
|
|
|
const struct link_capabilities *
|
|
phy_caps_lookup(int speed, unsigned int duplex, const unsigned long *supported,
|
|
bool exact);
|
|
|
|
#endif /* __PHY_CAPS_H */
|