mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-09-03 02:16:09 +02:00

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>
21 lines
395 B
C
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_ */
|