blob: a97dbbd2de99880e6c59c35ea8e10195729841fc [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
Ben Hutchings0a6f40c2011-02-25 00:01:34 +00003 * Copyright 2006-2011 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation, incorporated herein by reference.
8 */
9
10#ifndef EFX_MDIO_10G_H
11#define EFX_MDIO_10G_H
12
Ben Hutchings68e7f452009-04-29 08:05:08 +000013#include <linux/mdio.h>
14
Ben Hutchings8ceee662008-04-27 12:55:59 +010015/*
Ben Hutchings68e7f452009-04-29 08:05:08 +000016 * Helper functions for doing 10G MDIO as specified in IEEE 802.3 clause 45.
Ben Hutchings8ceee662008-04-27 12:55:59 +010017 */
18
19#include "efx.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010020
Ben Hutchings68e7f452009-04-29 08:05:08 +000021static inline unsigned efx_mdio_id_rev(u32 id) { return id & 0xf; }
22static inline unsigned efx_mdio_id_model(u32 id) { return (id >> 4) & 0x3f; }
23extern unsigned efx_mdio_id_oui(u32 id);
Ben Hutchings8ceee662008-04-27 12:55:59 +010024
Ben Hutchings68e7f452009-04-29 08:05:08 +000025static inline int efx_mdio_read(struct efx_nic *efx, int devad, int addr)
Ben Hutchings8ceee662008-04-27 12:55:59 +010026{
Ben Hutchings68e7f452009-04-29 08:05:08 +000027 return efx->mdio.mdio_read(efx->net_dev, efx->mdio.prtad, devad, addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +010028}
29
Ben Hutchings68e7f452009-04-29 08:05:08 +000030static inline void
31efx_mdio_write(struct efx_nic *efx, int devad, int addr, int value)
Ben Hutchings8ceee662008-04-27 12:55:59 +010032{
Ben Hutchings68e7f452009-04-29 08:05:08 +000033 efx->mdio.mdio_write(efx->net_dev, efx->mdio.prtad, devad, addr, value);
Ben Hutchings8ceee662008-04-27 12:55:59 +010034}
35
Ben Hutchings68e7f452009-04-29 08:05:08 +000036static inline u32 efx_mdio_read_id(struct efx_nic *efx, int mmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +010037{
Ben Hutchings68e7f452009-04-29 08:05:08 +000038 u16 id_low = efx_mdio_read(efx, mmd, MDIO_DEVID2);
39 u16 id_hi = efx_mdio_read(efx, mmd, MDIO_DEVID1);
Ben Hutchings8ceee662008-04-27 12:55:59 +010040 return (id_hi << 16) | (id_low);
41}
42
Ben Hutchings68e7f452009-04-29 08:05:08 +000043static inline bool efx_mdio_phyxgxs_lane_sync(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +010044{
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +010045 int i, lane_status;
46 bool sync;
Ben Hutchings8ceee662008-04-27 12:55:59 +010047
48 for (i = 0; i < 2; ++i)
Ben Hutchings68e7f452009-04-29 08:05:08 +000049 lane_status = efx_mdio_read(efx, MDIO_MMD_PHYXS,
50 MDIO_PHYXS_LNSTAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +010051
Ben Hutchings68e7f452009-04-29 08:05:08 +000052 sync = !!(lane_status & MDIO_PHYXS_LNSTAT_ALIGN);
Ben Hutchings8ceee662008-04-27 12:55:59 +010053 if (!sync)
Ben Hutchings62776d02010-06-23 11:30:07 +000054 netif_dbg(efx, hw, efx->net_dev, "XGXS lane status: %x\n",
55 lane_status);
Ben Hutchings8ceee662008-04-27 12:55:59 +010056 return sync;
57}
58
Ben Hutchings68e7f452009-04-29 08:05:08 +000059extern const char *efx_mdio_mmd_name(int mmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +010060
61/*
62 * Reset a specific MMD and wait for reset to clear.
63 * Return number of spins left (>0) on success, -%ETIMEDOUT on failure.
64 *
65 * This function will sleep
66 */
Ben Hutchings68e7f452009-04-29 08:05:08 +000067extern int efx_mdio_reset_mmd(struct efx_nic *efx, int mmd,
68 int spins, int spintime);
Ben Hutchings8ceee662008-04-27 12:55:59 +010069
Ben Hutchings68e7f452009-04-29 08:05:08 +000070/* As efx_mdio_check_mmd but for multiple MMDs */
Ben Hutchingsa4611032011-02-24 23:59:15 +000071int efx_mdio_check_mmds(struct efx_nic *efx, unsigned int mmd_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +010072
73/* Check the link status of specified mmds in bit mask */
Ben Hutchings68e7f452009-04-29 08:05:08 +000074extern bool efx_mdio_links_ok(struct efx_nic *efx, unsigned int mmd_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +010075
Ben Hutchings3273c2e2008-05-07 13:36:19 +010076/* Generic transmit disable support though PMAPMD */
Ben Hutchings68e7f452009-04-29 08:05:08 +000077extern void efx_mdio_transmit_disable(struct efx_nic *efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +010078
79/* Generic part of reconfigure: set/clear loopback bits */
Ben Hutchings68e7f452009-04-29 08:05:08 +000080extern void efx_mdio_phy_reconfigure(struct efx_nic *efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +010081
Ben Hutchings3e133c42008-11-04 20:34:56 +000082/* Set the power state of the specified MMDs */
Ben Hutchings68e7f452009-04-29 08:05:08 +000083extern void efx_mdio_set_mmds_lpower(struct efx_nic *efx,
84 int low_power, unsigned int mmd_mask);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -080085
Ben Hutchings8ceee662008-04-27 12:55:59 +010086/* Set (some of) the PHY settings over MDIO */
Ben Hutchings68e7f452009-04-29 08:05:08 +000087extern int efx_mdio_set_settings(struct efx_nic *efx, struct ethtool_cmd *ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +010088
Ben Hutchingsd3245b22009-11-29 03:42:41 +000089/* Push advertising flags and restart autonegotiation */
90extern void efx_mdio_an_reconfigure(struct efx_nic *efx);
91
Ben Hutchings04cc8ca2008-12-12 21:50:46 -080092/* Get pause parameters from AN if available (otherwise return
93 * requested pause parameters)
94 */
David S. Millerb56269462011-05-17 17:53:22 -040095u8 efx_mdio_get_pause(struct efx_nic *efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -080096
Ben Hutchings8ceee662008-04-27 12:55:59 +010097/* Wait for specified MMDs to exit reset within a timeout */
Ben Hutchings68e7f452009-04-29 08:05:08 +000098extern int efx_mdio_wait_reset_mmds(struct efx_nic *efx,
99 unsigned int mmd_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100100
Ben Hutchings356eebb2008-12-12 21:48:57 -0800101/* Set or clear flag, debouncing */
Ben Hutchings68e7f452009-04-29 08:05:08 +0000102static inline void
103efx_mdio_set_flag(struct efx_nic *efx, int devad, int addr,
104 int mask, bool state)
105{
106 mdio_set_flag(&efx->mdio, efx->mdio.prtad, devad, addr, mask, state);
107}
Ben Hutchings356eebb2008-12-12 21:48:57 -0800108
Ben Hutchings4f16c072010-02-03 09:30:50 +0000109/* Liveness self-test for MDIO PHYs */
110extern int efx_mdio_test_alive(struct efx_nic *efx);
111
Ben Hutchings8ceee662008-04-27 12:55:59 +0100112#endif /* EFX_MDIO_10G_H */