1 /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
2 /* Copyright 2019 NXP */
3 #ifndef DPAA2_MAC_H
4 #define DPAA2_MAC_H
5 
6 #include <linux/of.h>
7 #include <linux/of_mdio.h>
8 #include <linux/of_net.h>
9 #include <linux/phylink.h>
10 
11 #include "dpmac.h"
12 #include "dpmac-cmd.h"
13 
14 struct dpaa2_mac {
15 	struct fsl_mc_device *mc_dev;
16 	struct dpmac_link_state state;
17 	struct net_device *net_dev;
18 	struct fsl_mc_io *mc_io;
19 	struct dpmac_attr attr;
20 
21 	struct phylink_config phylink_config;
22 	struct phylink *phylink;
23 	phy_interface_t if_mode;
24 	enum dpmac_link_type if_link_type;
25 	struct phylink_pcs *pcs;
26 	struct fwnode_handle *fw_node;
27 };
28 
29 bool dpaa2_mac_is_type_fixed(struct fsl_mc_device *dpmac_dev,
30 			     struct fsl_mc_io *mc_io);
31 
32 int dpaa2_mac_open(struct dpaa2_mac *mac);
33 
34 void dpaa2_mac_close(struct dpaa2_mac *mac);
35 
36 int dpaa2_mac_connect(struct dpaa2_mac *mac);
37 
38 void dpaa2_mac_disconnect(struct dpaa2_mac *mac);
39 
40 int dpaa2_mac_get_sset_count(void);
41 
42 void dpaa2_mac_get_strings(u8 *data);
43 
44 void dpaa2_mac_get_ethtool_stats(struct dpaa2_mac *mac, u64 *data);
45 
46 #endif /* DPAA2_MAC_H */
47