mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-22 16:46:30 -04:00
XPCS IP supports 2500BASEX as PHY interface. It is configured as
autonegotiation disable to cater for PHYs that does not supports 2500BASEX
autonegotiation.
v2: Add supported link speed masking.
v3: Restructure to introduce xpcs_config_2500basex() used to configure the
xpcs for 2.5G speeds. Added 2500BASEX specific information for
configuration.
v4: Fix indentation error
Signed-off-by: Voon Weifeng <weifeng.voon@intel.com>
Signed-off-by: Michael Sit Wei Hong <michael.wei.hong.sit@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
36 lines
927 B
C
36 lines
927 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2020 Synopsys, Inc. and/or its affiliates.
|
|
* Synopsys DesignWare XPCS helpers
|
|
*/
|
|
|
|
#ifndef __LINUX_PCS_XPCS_H
|
|
#define __LINUX_PCS_XPCS_H
|
|
|
|
#include <linux/phy.h>
|
|
#include <linux/phylink.h>
|
|
|
|
/* AN mode */
|
|
#define DW_AN_C73 1
|
|
#define DW_AN_C37_SGMII 2
|
|
#define DW_2500BASEX 3
|
|
|
|
struct xpcs_id;
|
|
|
|
struct mdio_xpcs_args {
|
|
struct mdio_device *mdiodev;
|
|
const struct xpcs_id *id;
|
|
struct phylink_pcs pcs;
|
|
};
|
|
|
|
int xpcs_get_an_mode(struct mdio_xpcs_args *xpcs, phy_interface_t interface);
|
|
void xpcs_validate(struct mdio_xpcs_args *xpcs, unsigned long *supported,
|
|
struct phylink_link_state *state);
|
|
int xpcs_config_eee(struct mdio_xpcs_args *xpcs, int mult_fact_100ns,
|
|
int enable);
|
|
struct mdio_xpcs_args *xpcs_create(struct mdio_device *mdiodev,
|
|
phy_interface_t interface);
|
|
void xpcs_destroy(struct mdio_xpcs_args *xpcs);
|
|
|
|
#endif /* __LINUX_PCS_XPCS_H */
|