Release 4.11 drivers/net/ethernet/sfc/falcon/mdio_10g.h
/****************************************************************************
* Driver for Solarflare network controllers and boards
* Copyright 2006-2011 Solarflare Communications Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, incorporated herein by reference.
*/
#ifndef EF4_MDIO_10G_H
#define EF4_MDIO_10G_H
#include <linux/mdio.h>
/*
* Helper functions for doing 10G MDIO as specified in IEEE 802.3 clause 45.
*/
#include "efx.h"
static inline unsigned ef4_mdio_id_rev(u32 id) { return id & 0xf; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 14 | 93.33% | 2 | 66.67% |
Edward Cree | 1 | 6.67% | 1 | 33.33% |
Total | 15 | 100.00% | 3 | 100.00% |
static inline unsigned ef4_mdio_id_model(u32 id) { return (id >> 4) & 0x3f; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 18 | 94.74% | 2 | 66.67% |
Edward Cree | 1 | 5.26% | 1 | 33.33% |
Total | 19 | 100.00% | 3 | 100.00% |
unsigned ef4_mdio_id_oui(u32 id);
static inline int ef4_mdio_read(struct ef4_nic *efx, int devad, int addr)
{
return efx->mdio.mdio_read(efx->net_dev, efx->mdio.prtad, devad, addr);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 38 | 95.00% | 2 | 66.67% |
Edward Cree | 2 | 5.00% | 1 | 33.33% |
Total | 40 | 100.00% | 3 | 100.00% |
static inline void
ef4_mdio_write(struct ef4_nic *efx, int devad, int addr, int value)
{
efx->mdio.mdio_write(efx->net_dev, efx->mdio.prtad, devad, addr, value);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 42 | 95.45% | 2 | 66.67% |
Edward Cree | 2 | 4.55% | 1 | 33.33% |
Total | 44 | 100.00% | 3 | 100.00% |
static inline u32 ef4_mdio_read_id(struct ef4_nic *efx, int mmd)
{
u16 id_low = ef4_mdio_read(efx, mmd, MDIO_DEVID2);
u16 id_hi = ef4_mdio_read(efx, mmd, MDIO_DEVID1);
return (id_hi << 16) | (id_low);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 46 | 92.00% | 2 | 66.67% |
Edward Cree | 4 | 8.00% | 1 | 33.33% |
Total | 50 | 100.00% | 3 | 100.00% |
static inline bool ef4_mdio_phyxgxs_lane_sync(struct ef4_nic *efx)
{
int i, lane_status;
bool sync;
for (i = 0; i < 2; ++i)
lane_status = ef4_mdio_read(efx, MDIO_MMD_PHYXS,
MDIO_PHYXS_LNSTAT);
sync = !!(lane_status & MDIO_PHYXS_LNSTAT_ALIGN);
if (!sync)
netif_dbg(efx, hw, efx->net_dev, "XGXS lane status: %x\n",
lane_status);
return sync;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 74 | 96.10% | 4 | 80.00% |
Edward Cree | 3 | 3.90% | 1 | 20.00% |
Total | 77 | 100.00% | 5 | 100.00% |
const char *ef4_mdio_mmd_name(int mmd);
/*
* Reset a specific MMD and wait for reset to clear.
* Return number of spins left (>0) on success, -%ETIMEDOUT on failure.
*
* This function will sleep
*/
int ef4_mdio_reset_mmd(struct ef4_nic *efx, int mmd, int spins, int spintime);
/* As ef4_mdio_check_mmd but for multiple MMDs */
int ef4_mdio_check_mmds(struct ef4_nic *efx, unsigned int mmd_mask);
/* Check the link status of specified mmds in bit mask */
bool ef4_mdio_links_ok(struct ef4_nic *efx, unsigned int mmd_mask);
/* Generic transmit disable support though PMAPMD */
void ef4_mdio_transmit_disable(struct ef4_nic *efx);
/* Generic part of reconfigure: set/clear loopback bits */
void ef4_mdio_phy_reconfigure(struct ef4_nic *efx);
/* Set the power state of the specified MMDs */
void ef4_mdio_set_mmds_lpower(struct ef4_nic *efx, int low_power,
unsigned int mmd_mask);
/* Set (some of) the PHY settings over MDIO */
int ef4_mdio_set_link_ksettings(struct ef4_nic *efx,
const struct ethtool_link_ksettings *cmd);
/* Push advertising flags and restart autonegotiation */
void ef4_mdio_an_reconfigure(struct ef4_nic *efx);
/* Get pause parameters from AN if available (otherwise return
* requested pause parameters)
*/
u8 ef4_mdio_get_pause(struct ef4_nic *efx);
/* Wait for specified MMDs to exit reset within a timeout */
int ef4_mdio_wait_reset_mmds(struct ef4_nic *efx, unsigned int mmd_mask);
/* Set or clear flag, debouncing */
static inline void
ef4_mdio_set_flag(struct ef4_nic *efx, int devad, int addr,
int mask, bool state)
{
mdio_set_flag(&efx->mdio, efx->mdio.prtad, devad, addr, mask, state);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 44 | 95.65% | 2 | 66.67% |
Edward Cree | 2 | 4.35% | 1 | 33.33% |
Total | 46 | 100.00% | 3 | 100.00% |
/* Liveness self-test for MDIO PHYs */
int ef4_mdio_test_alive(struct ef4_nic *efx);
#endif /* EF4_MDIO_10G_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Hutchings | 422 | 89.98% | 11 | 78.57% |
Edward Cree | 42 | 8.96% | 1 | 7.14% |
Philippe Reynes | 4 | 0.85% | 1 | 7.14% |
David S. Miller | 1 | 0.21% | 1 | 7.14% |
Total | 469 | 100.00% | 14 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.