155ab6ffaSArun Ramadoss /* SPDX-License-Identifier: GPL-2.0 */ 255ab6ffaSArun Ramadoss /* Microchip lan937x dev ops headers 355ab6ffaSArun Ramadoss * Copyright (C) 2019-2022 Microchip Technology Inc. 455ab6ffaSArun Ramadoss */ 555ab6ffaSArun Ramadoss 655ab6ffaSArun Ramadoss #ifndef __LAN937X_CFG_H 755ab6ffaSArun Ramadoss #define __LAN937X_CFG_H 855ab6ffaSArun Ramadoss 955ab6ffaSArun Ramadoss int lan937x_reset_switch(struct ksz_device *dev); 1055ab6ffaSArun Ramadoss int lan937x_setup(struct dsa_switch *ds); 1155ab6ffaSArun Ramadoss void lan937x_port_setup(struct ksz_device *dev, int port, bool cpu_port); 1255ab6ffaSArun Ramadoss void lan937x_config_cpu_port(struct dsa_switch *ds); 1355ab6ffaSArun Ramadoss int lan937x_switch_init(struct ksz_device *dev); 1455ab6ffaSArun Ramadoss void lan937x_switch_exit(struct ksz_device *dev); 15ffaf1de2SArun Ramadoss void lan937x_r_phy(struct ksz_device *dev, u16 addr, u16 reg, u16 *data); 16ffaf1de2SArun Ramadoss void lan937x_w_phy(struct ksz_device *dev, u16 addr, u16 reg, u16 val); 17ab882368SArun Ramadoss int lan937x_change_mtu(struct ksz_device *dev, int port, int new_mtu); 18c14e878dSArun Ramadoss void lan937x_phylink_get_caps(struct ksz_device *dev, int port, 19c14e878dSArun Ramadoss struct phylink_config *config); 20f597d3adSArun Ramadoss void lan937x_phylink_mac_link_up(struct ksz_device *dev, int port, 21f597d3adSArun Ramadoss unsigned int mode, phy_interface_t interface, 22f597d3adSArun Ramadoss struct phy_device *phydev, int speed, 23f597d3adSArun Ramadoss int duplex, bool tx_pause, bool rx_pause); 24*a0cb1aa4SArun Ramadoss void lan937x_phylink_mac_config(struct ksz_device *dev, int port, 25*a0cb1aa4SArun Ramadoss unsigned int mode, 26*a0cb1aa4SArun Ramadoss const struct phylink_link_state *state); 2755ab6ffaSArun Ramadoss #endif 28