Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 150073
b: refs/heads/master
c: 0c09c1a
h: refs/heads/master
i:
  150071: 097b8fe
v: v3
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Apr 30, 2009
1 parent 374cee2 commit e081220
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3f926da82f128c68c479247b1771729b9487502a
refs/heads/master: 0c09c1a49cc7b819b33566a49d9901f7cfdd6889
19 changes: 12 additions & 7 deletions trunk/drivers/net/mdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ void mdio45_ethtool_gset_npage(const struct mdio_if_info *mdio,

ecmd->transceiver = XCVR_INTERNAL;
ecmd->phy_address = mdio->prtad;
ecmd->mdio_support =
mdio->mode_support & (MDIO_SUPPORTS_C45 | MDIO_SUPPORTS_C22);

reg = mdio->mdio_read(mdio->dev, mdio->prtad, MDIO_MMD_PMAPMD,
MDIO_CTRL2);
Expand Down Expand Up @@ -235,16 +237,19 @@ void mdio45_ethtool_gset_npage(const struct mdio_if_info *mdio,

if (ecmd->autoneg) {
u32 modes = 0;
int an_stat = mdio->mdio_read(mdio->dev, mdio->prtad,
MDIO_MMD_AN, MDIO_STAT1);

/* If AN is complete and successful, report best common
* mode, otherwise report best advertised mode. */
if (mdio->mdio_read(mdio->dev, mdio->prtad, MDIO_MMD_AN,
MDIO_STAT1) &
MDIO_AN_STAT1_COMPLETE)
modes = (ecmd->advertising &
(mdio45_get_an(mdio, MDIO_AN_LPA) |
npage_lpa));
if (modes == 0)
if (an_stat & MDIO_AN_STAT1_COMPLETE) {
ecmd->lp_advertising =
mdio45_get_an(mdio, MDIO_AN_LPA) | npage_lpa;
if (an_stat & MDIO_AN_STAT1_LPABLE)
ecmd->lp_advertising |= ADVERTISED_Autoneg;
modes = ecmd->advertising & ecmd->lp_advertising;
}
if ((modes & ~ADVERTISED_Autoneg) == 0)
modes = ecmd->advertising;

if (modes & ADVERTISED_10000baseT_Full) {
Expand Down
4 changes: 3 additions & 1 deletion trunk/include/linux/ethtool.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ struct ethtool_cmd {
__u8 phy_address;
__u8 transceiver; /* Which transceiver to use */
__u8 autoneg; /* Enable or disable autonegotiation */
__u8 mdio_support;
__u32 maxtxpkt; /* Tx pkts before generating tx int */
__u32 maxrxpkt; /* Rx pkts before generating rx int */
__u16 speed_hi;
__u16 reserved2;
__u32 reserved[3];
__u32 lp_advertising; /* Features the link partner advertises */
__u32 reserved[2];
};

static inline void ethtool_cmd_speed_set(struct ethtool_cmd *ep,
Expand Down
5 changes: 3 additions & 2 deletions trunk/include/linux/mdio.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ static inline __u16 mdio_phy_id_devad(int phy_id)
return phy_id & MDIO_PHY_ID_DEVAD;
}

#define MDIO_SUPPORTS_C22 1
#define MDIO_SUPPORTS_C45 2

#ifdef __KERNEL__

/**
Expand Down Expand Up @@ -264,8 +267,6 @@ struct mdio_if_info {

#define MDIO_PRTAD_NONE (-1)
#define MDIO_DEVAD_NONE (-1)
#define MDIO_SUPPORTS_C22 1
#define MDIO_SUPPORTS_C45 2
#define MDIO_EMULATE_C22 4

struct ethtool_cmd;
Expand Down

0 comments on commit e081220

Please sign in to comment.