xref: /openbmc/linux/drivers/net/ethernet/sfc/mcdi_port.h (revision 4b4193256c8d3bc3a5397b5cd9494c2ad386317d)
1*83d00531SEdward Cree /* SPDX-License-Identifier: GPL-2.0-only */
2*83d00531SEdward Cree /****************************************************************************
3*83d00531SEdward Cree  * Driver for Solarflare network controllers and boards
4*83d00531SEdward Cree  * Copyright 2008-2013 Solarflare Communications Inc.
5*83d00531SEdward Cree  * Copyright 2019-2020 Xilinx Inc.
6*83d00531SEdward Cree  */
7*83d00531SEdward Cree 
8*83d00531SEdward Cree #ifndef EFX_MCDI_PORT_H
9*83d00531SEdward Cree #define EFX_MCDI_PORT_H
10*83d00531SEdward Cree 
11*83d00531SEdward Cree #include "net_driver.h"
12*83d00531SEdward Cree 
13*83d00531SEdward Cree u32 efx_mcdi_phy_get_caps(struct efx_nic *efx);
14*83d00531SEdward Cree bool efx_mcdi_mac_check_fault(struct efx_nic *efx);
15*83d00531SEdward Cree int efx_mcdi_port_probe(struct efx_nic *efx);
16*83d00531SEdward Cree void efx_mcdi_port_remove(struct efx_nic *efx);
17*83d00531SEdward Cree 
18*83d00531SEdward Cree #endif /* EFX_MCDI_PORT_H */
19