xref: /linux/drivers/net/dsa/microchip/lan937x.h (revision fcc79e1714e8c2b8e216dc3149812edd37884eef)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Microchip lan937x dev ops headers
3  * Copyright (C) 2019-2022 Microchip Technology Inc.
4  */
5 
6 #ifndef __LAN937X_CFG_H
7 #define __LAN937X_CFG_H
8 
9 int lan937x_reset_switch(struct ksz_device *dev);
10 int lan937x_setup(struct dsa_switch *ds);
11 void lan937x_teardown(struct dsa_switch *ds);
12 void lan937x_port_setup(struct ksz_device *dev, int port, bool cpu_port);
13 void lan937x_config_cpu_port(struct dsa_switch *ds);
14 int lan937x_switch_init(struct ksz_device *dev);
15 void lan937x_switch_exit(struct ksz_device *dev);
16 int lan937x_mdio_bus_preinit(struct ksz_device *dev, bool side_mdio);
17 int lan937x_create_phy_addr_map(struct ksz_device *dev, bool side_mdio);
18 int lan937x_r_phy(struct ksz_device *dev, u16 addr, u16 reg, u16 *data);
19 int lan937x_w_phy(struct ksz_device *dev, u16 addr, u16 reg, u16 val);
20 int lan937x_change_mtu(struct ksz_device *dev, int port, int new_mtu);
21 void lan937x_phylink_get_caps(struct ksz_device *dev, int port,
22 			      struct phylink_config *config);
23 void lan937x_setup_rgmii_delay(struct ksz_device *dev, int port);
24 int lan937x_set_ageing_time(struct ksz_device *dev, unsigned int msecs);
25 int lan937x_tc_cbs_set_cinc(struct ksz_device *dev, int port, u32 val);
26 #endif
27