linux-imx/include/linux/phy/phy-fsl-lynx.h
Ioana Ciornei 4900a8a82e phy: lynx-10g: export the lynx_lane_mode enum into a new header file
The lynx_lane_mode enum will need to be used from the fsl_guts driver in
order to do the RCW override procedure for a specific Lynx10G link mode.
Since we need the enum into a public header file, create the
phy-fsl-lynx.h header for this purpose.

Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
2024-04-29 13:28:44 +02:00

21 lines
395 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/* Copyright 2023-2024 NXP */
#ifndef __PHY_FSL_LYNX_H_
#define __PHY_FSL_LYNX_H_
enum lynx_lane_mode {
LANE_MODE_UNKNOWN,
LANE_MODE_1000BASEX_SGMII,
LANE_MODE_1000BASEKX,
LANE_MODE_2500BASEX,
LANE_MODE_QSGMII,
LANE_MODE_10G_QXGMII,
LANE_MODE_USXGMII,
LANE_MODE_10GBASER,
LANE_MODE_10GBASEKR,
LANE_MODE_MAX,
};
#endif /* __PHY_FSL_LYNX_H_ */