Contributors: 8
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Vladimir Oltean |
67 |
37.22% |
9 |
42.86% |
Jose Abreu |
50 |
27.78% |
1 |
4.76% |
Russell King |
23 |
12.78% |
3 |
14.29% |
Ong Boon Leong |
19 |
10.56% |
4 |
19.05% |
Michael Sit Wei Hong |
10 |
5.56% |
1 |
4.76% |
Jiawen Wu |
4 |
2.22% |
1 |
4.76% |
Weifeng Voon |
4 |
2.22% |
1 |
4.76% |
Andrew Lunn |
3 |
1.67% |
1 |
4.76% |
Total |
180 |
|
21 |
|
/* 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>
#define NXP_SJA1105_XPCS_ID 0x00000010
#define NXP_SJA1110_XPCS_ID 0x00000020
/* AN mode */
#define DW_AN_C73 1
#define DW_AN_C37_SGMII 2
#define DW_2500BASEX 3
#define DW_AN_C37_1000BASEX 4
#define DW_10GBASER 5
struct xpcs_id;
struct dw_xpcs {
struct mdio_device *mdiodev;
const struct xpcs_id *id;
struct phylink_pcs pcs;
};
int xpcs_get_an_mode(struct dw_xpcs *xpcs, phy_interface_t interface);
void xpcs_link_up(struct phylink_pcs *pcs, unsigned int neg_mode,
phy_interface_t interface, int speed, int duplex);
int xpcs_do_config(struct dw_xpcs *xpcs, phy_interface_t interface,
const unsigned long *advertising, unsigned int neg_mode);
void xpcs_get_interfaces(struct dw_xpcs *xpcs, unsigned long *interfaces);
int xpcs_config_eee(struct dw_xpcs *xpcs, int mult_fact_100ns,
int enable);
struct dw_xpcs *xpcs_create_mdiodev(struct mii_bus *bus, int addr,
phy_interface_t interface);
void xpcs_destroy(struct dw_xpcs *xpcs);
#endif /* __LINUX_PCS_XPCS_H */