mdio_10g.h 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/****************************************************************************
 * Driver for Solarflare Solarstorm network controllers and boards
 * Copyright 2006-2008 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 EFX_MDIO_10G_H
#define EFX_MDIO_10G_H

13 14
#include <linux/mdio.h>

15
/*
16
 * Helper functions for doing 10G MDIO as specified in IEEE 802.3 clause 45.
17 18 19 20
 */

#include "efx.h"

21 22 23
static inline unsigned efx_mdio_id_rev(u32 id) { return id & 0xf; }
static inline unsigned efx_mdio_id_model(u32 id) { return (id >> 4) & 0x3f; }
extern unsigned efx_mdio_id_oui(u32 id);
24

25
static inline int efx_mdio_read(struct efx_nic *efx, int devad, int addr)
26
{
27
	return efx->mdio.mdio_read(efx->net_dev, efx->mdio.prtad, devad, addr);
28 29
}

30 31
static inline void
efx_mdio_write(struct efx_nic *efx, int devad, int addr, int value)
32
{
33
	efx->mdio.mdio_write(efx->net_dev, efx->mdio.prtad, devad, addr, value);
34 35
}

36
static inline u32 efx_mdio_read_id(struct efx_nic *efx, int mmd)
37
{
38 39
	u16 id_low = efx_mdio_read(efx, mmd, MDIO_DEVID2);
	u16 id_hi = efx_mdio_read(efx, mmd, MDIO_DEVID1);
40 41 42
	return (id_hi << 16) | (id_low);
}

43
static inline bool efx_mdio_phyxgxs_lane_sync(struct efx_nic *efx)
44
{
45 46
	int i, lane_status;
	bool sync;
47 48

	for (i = 0; i < 2; ++i)
49 50
		lane_status = efx_mdio_read(efx, MDIO_MMD_PHYXS,
					    MDIO_PHYXS_LNSTAT);
51

52
	sync = !!(lane_status & MDIO_PHYXS_LNSTAT_ALIGN);
53
	if (!sync)
54
		EFX_LOG(efx, "XGXS lane status: %x\n", lane_status);
55 56 57
	return sync;
}

58
extern const char *efx_mdio_mmd_name(int mmd);
59 60 61 62 63 64 65

/*
 * 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
 */
66 67
extern int efx_mdio_reset_mmd(struct efx_nic *efx, int mmd,
			      int spins, int spintime);
68

69 70 71
/* As efx_mdio_check_mmd but for multiple MMDs */
int efx_mdio_check_mmds(struct efx_nic *efx,
			unsigned int mmd_mask, unsigned int fatal_mask);
72 73

/* Check the link status of specified mmds in bit mask */
74
extern bool efx_mdio_links_ok(struct efx_nic *efx, unsigned int mmd_mask);
75

76
/* Generic transmit disable support though PMAPMD */
77
extern void efx_mdio_transmit_disable(struct efx_nic *efx);
78 79

/* Generic part of reconfigure: set/clear loopback bits */
80
extern void efx_mdio_phy_reconfigure(struct efx_nic *efx);
81

82
/* Set the power state of the specified MMDs */
83 84
extern void efx_mdio_set_mmds_lpower(struct efx_nic *efx,
				     int low_power, unsigned int mmd_mask);
B
Ben Hutchings 已提交
85

86
/* Set (some of) the PHY settings over MDIO */
87
extern int efx_mdio_set_settings(struct efx_nic *efx, struct ethtool_cmd *ecmd);
88

B
Ben Hutchings 已提交
89 90 91
/* Push advertising flags and restart autonegotiation */
extern void efx_mdio_an_reconfigure(struct efx_nic *efx);

B
Ben Hutchings 已提交
92 93 94
/* Get pause parameters from AN if available (otherwise return
 * requested pause parameters)
 */
95
enum efx_fc_type efx_mdio_get_pause(struct efx_nic *efx);
B
Ben Hutchings 已提交
96

97
/* Wait for specified MMDs to exit reset within a timeout */
98 99
extern int efx_mdio_wait_reset_mmds(struct efx_nic *efx,
				    unsigned int mmd_mask);
100

B
Ben Hutchings 已提交
101
/* Set or clear flag, debouncing */
102 103 104 105 106 107
static inline void
efx_mdio_set_flag(struct efx_nic *efx, int devad, int addr,
		  int mask, bool state)
{
	mdio_set_flag(&efx->mdio, efx->mdio.prtad, devad, addr, mask, state);
}
B
Ben Hutchings 已提交
108

109
#endif /* EFX_MDIO_10G_H */