xref: /openbmc/linux/drivers/net/ethernet/stmicro/stmmac/stmmac.h (revision ff0011cf56014b4dfe88adc35e36a25df63d5005)
14fa9c49fSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */
27ac6653aSJeff Kirsher /*******************************************************************************
37ac6653aSJeff Kirsher   Copyright (C) 2007-2009  STMicroelectronics Ltd
47ac6653aSJeff Kirsher 
57ac6653aSJeff Kirsher 
67ac6653aSJeff Kirsher   Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
77ac6653aSJeff Kirsher *******************************************************************************/
87ac6653aSJeff Kirsher 
9bd4242dfSRayagond Kokatanur #ifndef __STMMAC_H__
10bd4242dfSRayagond Kokatanur #define __STMMAC_H__
11bd4242dfSRayagond Kokatanur 
12bfab27a1SGiuseppe CAVALLARO #define STMMAC_RESOURCE_NAME   "stmmaceth"
13ba1377ffSGiuseppe CAVALLARO 
14ba1377ffSGiuseppe CAVALLARO #include <linux/clk.h>
15d5a05e69SVincent Whitchurch #include <linux/hrtimer.h>
163cd1cfcbSJose Abreu #include <linux/if_vlan.h>
177ac6653aSJeff Kirsher #include <linux/stmmac.h>
18eeef2f6bSJose Abreu #include <linux/phylink.h>
1933d5e332SGiuseppe CAVALLARO #include <linux/pci.h>
207ac6653aSJeff Kirsher #include "common.h"
2192ba6888SRayagond Kokatanur #include <linux/ptp_clock_kernel.h>
22d6228b7cSArtem Panfilov #include <linux/net_tstamp.h>
23c5e4ddbdSChen-Yu Tsai #include <linux/reset.h>
242af6106aSJose Abreu #include <net/page_pool.h>
253b80b73aSJakub Kicinski #include <uapi/linux/bpf.h>
267ac6653aSJeff Kirsher 
27e56788cfSJoachim Eastwood struct stmmac_resources {
28e56788cfSJoachim Eastwood 	void __iomem *addr;
2983216e39SMichael Walle 	u8 mac[ETH_ALEN];
30e56788cfSJoachim Eastwood 	int wol_irq;
31e56788cfSJoachim Eastwood 	int lpi_irq;
32e56788cfSJoachim Eastwood 	int irq;
338532f613SOng Boon Leong 	int sfty_ce_irq;
348532f613SOng Boon Leong 	int sfty_ue_irq;
358532f613SOng Boon Leong 	int rx_irq[MTL_MAX_RX_QUEUES];
368532f613SOng Boon Leong 	int tx_irq[MTL_MAX_TX_QUEUES];
37e56788cfSJoachim Eastwood };
38e56788cfSJoachim Eastwood 
39be8b38a7SOng Boon Leong enum stmmac_txbuf_type {
40be8b38a7SOng Boon Leong 	STMMAC_TXBUF_T_SKB,
41be8b38a7SOng Boon Leong 	STMMAC_TXBUF_T_XDP_TX,
428b278a5bSOng Boon Leong 	STMMAC_TXBUF_T_XDP_NDO,
43132c32eeSOng Boon Leong 	STMMAC_TXBUF_T_XSK_TX,
44be8b38a7SOng Boon Leong };
45be8b38a7SOng Boon Leong 
46362b37beSGiuseppe CAVALLARO struct stmmac_tx_info {
47362b37beSGiuseppe CAVALLARO 	dma_addr_t buf;
48362b37beSGiuseppe CAVALLARO 	bool map_as_page;
49553e2ab3SGiuseppe Cavallaro 	unsigned len;
502a6d8e17SGiuseppe Cavallaro 	bool last_segment;
5196951366SGiuseppe Cavallaro 	bool is_jumbo;
52be8b38a7SOng Boon Leong 	enum stmmac_txbuf_type buf_type;
53362b37beSGiuseppe CAVALLARO };
54362b37beSGiuseppe CAVALLARO 
55579a25a8SJose Abreu #define STMMAC_TBS_AVAIL	BIT(0)
56579a25a8SJose Abreu #define STMMAC_TBS_EN		BIT(1)
57579a25a8SJose Abreu 
58ce736788SJoao Pinto /* Frequently used values are kept adjacent for cache effect */
59ce736788SJoao Pinto struct stmmac_tx_queue {
608fce3331SJose Abreu 	u32 tx_count_frames;
61579a25a8SJose Abreu 	int tbs;
62d5a05e69SVincent Whitchurch 	struct hrtimer txtimer;
63ce736788SJoao Pinto 	u32 queue_index;
64ce736788SJoao Pinto 	struct stmmac_priv *priv_data;
65ce736788SJoao Pinto 	struct dma_extended_desc *dma_etx ____cacheline_aligned_in_smp;
66579a25a8SJose Abreu 	struct dma_edesc *dma_entx;
67ce736788SJoao Pinto 	struct dma_desc *dma_tx;
68be8b38a7SOng Boon Leong 	union {
69ce736788SJoao Pinto 		struct sk_buff **tx_skbuff;
70be8b38a7SOng Boon Leong 		struct xdp_frame **xdpf;
71be8b38a7SOng Boon Leong 	};
72ce736788SJoao Pinto 	struct stmmac_tx_info *tx_skbuff_dma;
73132c32eeSOng Boon Leong 	struct xsk_buff_pool *xsk_pool;
74132c32eeSOng Boon Leong 	u32 xsk_frames_done;
75ce736788SJoao Pinto 	unsigned int cur_tx;
76ce736788SJoao Pinto 	unsigned int dirty_tx;
77ce736788SJoao Pinto 	dma_addr_t dma_tx_phy;
7852e597d3SWong Vee Khee 	dma_addr_t tx_tail_addr;
798d212a9eSNiklas Cassel 	u32 mss;
80ce736788SJoao Pinto };
81ce736788SJoao Pinto 
822af6106aSJose Abreu struct stmmac_rx_buffer {
83bba2556eSOng Boon Leong 	union {
84bba2556eSOng Boon Leong 		struct {
852af6106aSJose Abreu 			struct page *page;
862af6106aSJose Abreu 			dma_addr_t addr;
875fabb012SOng Boon Leong 			__u32 page_offset;
88bba2556eSOng Boon Leong 		};
89bba2556eSOng Boon Leong 		struct xdp_buff *xdp;
90bba2556eSOng Boon Leong 	};
915fabb012SOng Boon Leong 	struct page *sec_page;
9267afd6d1SJose Abreu 	dma_addr_t sec_addr;
932af6106aSJose Abreu };
942af6106aSJose Abreu 
9554139cf3SJoao Pinto struct stmmac_rx_queue {
96d429b66eSJose Abreu 	u32 rx_count_frames;
9754139cf3SJoao Pinto 	u32 queue_index;
98be8b38a7SOng Boon Leong 	struct xdp_rxq_info xdp_rxq;
99bba2556eSOng Boon Leong 	struct xsk_buff_pool *xsk_pool;
1002af6106aSJose Abreu 	struct page_pool *page_pool;
1012af6106aSJose Abreu 	struct stmmac_rx_buffer *buf_pool;
10254139cf3SJoao Pinto 	struct stmmac_priv *priv_data;
10354139cf3SJoao Pinto 	struct dma_extended_desc *dma_erx;
10454139cf3SJoao Pinto 	struct dma_desc *dma_rx ____cacheline_aligned_in_smp;
10554139cf3SJoao Pinto 	unsigned int cur_rx;
10654139cf3SJoao Pinto 	unsigned int dirty_rx;
107bba2556eSOng Boon Leong 	unsigned int buf_alloc_num;
10854139cf3SJoao Pinto 	u32 rx_zeroc_thresh;
10954139cf3SJoao Pinto 	dma_addr_t dma_rx_phy;
11054139cf3SJoao Pinto 	u32 rx_tail_addr;
111ec222003SJose Abreu 	unsigned int state_saved;
112ec222003SJose Abreu 	struct {
113ec222003SJose Abreu 		struct sk_buff *skb;
114ec222003SJose Abreu 		unsigned int len;
115ec222003SJose Abreu 		unsigned int error;
116ec222003SJose Abreu 	} state;
1178fce3331SJose Abreu };
1188fce3331SJose Abreu 
1198fce3331SJose Abreu struct stmmac_channel {
1204ccb4585SJose Abreu 	struct napi_struct rx_napi ____cacheline_aligned_in_smp;
1214ccb4585SJose Abreu 	struct napi_struct tx_napi ____cacheline_aligned_in_smp;
122132c32eeSOng Boon Leong 	struct napi_struct rxtx_napi ____cacheline_aligned_in_smp;
1238fce3331SJose Abreu 	struct stmmac_priv *priv_data;
124021bd5e3SJose Abreu 	spinlock_t lock;
1258fce3331SJose Abreu 	u32 index;
12654139cf3SJoao Pinto };
12754139cf3SJoao Pinto 
1284dbbe8ddSJose Abreu struct stmmac_tc_entry {
1294dbbe8ddSJose Abreu 	bool in_use;
1304dbbe8ddSJose Abreu 	bool in_hw;
1314dbbe8ddSJose Abreu 	bool is_last;
1324dbbe8ddSJose Abreu 	bool is_frag;
1334dbbe8ddSJose Abreu 	void *frag_ptr;
1344dbbe8ddSJose Abreu 	unsigned int table_pos;
1354dbbe8ddSJose Abreu 	u32 handle;
1364dbbe8ddSJose Abreu 	u32 prio;
1374dbbe8ddSJose Abreu 	struct {
1384dbbe8ddSJose Abreu 		u32 match_data;
1394dbbe8ddSJose Abreu 		u32 match_en;
1404dbbe8ddSJose Abreu 		u8 af:1;
1414dbbe8ddSJose Abreu 		u8 rf:1;
1424dbbe8ddSJose Abreu 		u8 im:1;
1434dbbe8ddSJose Abreu 		u8 nc:1;
1444dbbe8ddSJose Abreu 		u8 res1:4;
1454dbbe8ddSJose Abreu 		u8 frame_offset;
1464dbbe8ddSJose Abreu 		u8 ok_index;
1474dbbe8ddSJose Abreu 		u8 dma_ch_no;
1484dbbe8ddSJose Abreu 		u32 res2;
1494dbbe8ddSJose Abreu 	} __packed val;
1504dbbe8ddSJose Abreu };
1514dbbe8ddSJose Abreu 
1529a8a02c9SJose Abreu #define STMMAC_PPS_MAX		4
1539a8a02c9SJose Abreu struct stmmac_pps_cfg {
1549a8a02c9SJose Abreu 	bool available;
1559a8a02c9SJose Abreu 	struct timespec64 start;
1569a8a02c9SJose Abreu 	struct timespec64 period;
1579a8a02c9SJose Abreu };
1589a8a02c9SJose Abreu 
15976067459SJose Abreu struct stmmac_rss {
16076067459SJose Abreu 	int enable;
16176067459SJose Abreu 	u8 key[STMMAC_RSS_HASH_KEY_SIZE];
16276067459SJose Abreu 	u32 table[STMMAC_RSS_MAX_TABLE_SIZE];
16376067459SJose Abreu };
16476067459SJose Abreu 
165425eabddSJose Abreu #define STMMAC_FLOW_ACTION_DROP		BIT(0)
166425eabddSJose Abreu struct stmmac_flow_entry {
167425eabddSJose Abreu 	unsigned long cookie;
168425eabddSJose Abreu 	unsigned long action;
169425eabddSJose Abreu 	u8 ip_proto;
170425eabddSJose Abreu 	int in_use;
171425eabddSJose Abreu 	int idx;
172425eabddSJose Abreu 	int is_l4;
173425eabddSJose Abreu };
174425eabddSJose Abreu 
175aeb7c75cSOng Boon Leong /* Rx Frame Steering */
176aeb7c75cSOng Boon Leong enum stmmac_rfs_type {
177aeb7c75cSOng Boon Leong 	STMMAC_RFS_T_VLAN,
178e48cb313SOng Boon Leong 	STMMAC_RFS_T_LLDP,
179e48cb313SOng Boon Leong 	STMMAC_RFS_T_1588,
180aeb7c75cSOng Boon Leong 	STMMAC_RFS_T_MAX,
181aeb7c75cSOng Boon Leong };
182aeb7c75cSOng Boon Leong 
183aeb7c75cSOng Boon Leong struct stmmac_rfs_entry {
184aeb7c75cSOng Boon Leong 	unsigned long cookie;
185e48cb313SOng Boon Leong 	u16 etype;
186aeb7c75cSOng Boon Leong 	int in_use;
187aeb7c75cSOng Boon Leong 	int type;
188aeb7c75cSOng Boon Leong 	int tc;
189aeb7c75cSOng Boon Leong };
190aeb7c75cSOng Boon Leong 
1918531c808SChristian Marangi struct stmmac_dma_conf {
1928531c808SChristian Marangi 	unsigned int dma_buf_sz;
1938531c808SChristian Marangi 
1948531c808SChristian Marangi 	/* RX Queue */
1958531c808SChristian Marangi 	struct stmmac_rx_queue rx_queue[MTL_MAX_RX_QUEUES];
1968531c808SChristian Marangi 	unsigned int dma_rx_size;
1978531c808SChristian Marangi 
1988531c808SChristian Marangi 	/* TX Queue */
1998531c808SChristian Marangi 	struct stmmac_tx_queue tx_queue[MTL_MAX_TX_QUEUES];
2008531c808SChristian Marangi 	unsigned int dma_tx_size;
2018531c808SChristian Marangi };
2028531c808SChristian Marangi 
2037ac6653aSJeff Kirsher struct stmmac_priv {
2047ac6653aSJeff Kirsher 	/* Frequently used values are kept adjacent for cache effect */
205db2f2842SOng Boon Leong 	u32 tx_coal_frames[MTL_MAX_TX_QUEUES];
206db2f2842SOng Boon Leong 	u32 tx_coal_timer[MTL_MAX_TX_QUEUES];
207db2f2842SOng Boon Leong 	u32 rx_coal_frames[MTL_MAX_TX_QUEUES];
208ce736788SJoao Pinto 
2091bb6dea8SGiuseppe CAVALLARO 	int hwts_tx_en;
2101bb6dea8SGiuseppe CAVALLARO 	bool tx_path_in_lpi_mode;
211f748be53SAlexandre TORGUE 	bool tso;
21267afd6d1SJose Abreu 	int sph;
213d08d32d1SOng Boon Leong 	int sph_cap;
2148000ddc0SJose Abreu 	u32 sarc_type;
2157ac6653aSJeff Kirsher 
21622ad3838SGiuseppe Cavallaro 	unsigned int rx_copybreak;
217db2f2842SOng Boon Leong 	u32 rx_riwt[MTL_MAX_TX_QUEUES];
2181bb6dea8SGiuseppe CAVALLARO 	int hwts_rx_en;
2195bacd778SLABBE Corentin 
2201bb6dea8SGiuseppe CAVALLARO 	void __iomem *ioaddr;
2211bb6dea8SGiuseppe CAVALLARO 	struct net_device *dev;
2227ac6653aSJeff Kirsher 	struct device *device;
2237ac6653aSJeff Kirsher 	struct mac_device_info *hw;
2247cfde0afSJose Abreu 	int (*hwif_quirks)(struct stmmac_priv *priv);
22529555fa3SThierry Reding 	struct mutex lock;
2267ac6653aSJeff Kirsher 
2278531c808SChristian Marangi 	struct stmmac_dma_conf dma_conf;
228ce736788SJoao Pinto 
2298fce3331SJose Abreu 	/* Generic channel for NAPI */
2308fce3331SJose Abreu 	struct stmmac_channel channel[STMMAC_CH_MAX];
2318fce3331SJose Abreu 
2327ac6653aSJeff Kirsher 	int speed;
2337ac6653aSJeff Kirsher 	unsigned int flow_ctrl;
2347ac6653aSJeff Kirsher 	unsigned int pause;
2357ac6653aSJeff Kirsher 	struct mii_bus *mii;
2367ac6653aSJeff Kirsher 
237eeef2f6bSJose Abreu 	struct phylink_config phylink_config;
238eeef2f6bSJose Abreu 	struct phylink *phylink;
239eeef2f6bSJose Abreu 
2401bb6dea8SGiuseppe CAVALLARO 	struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
2418bf993a5SJose Abreu 	struct stmmac_safety_stats sstats;
2421bb6dea8SGiuseppe CAVALLARO 	struct plat_stmmacenet_data *plat;
2431bb6dea8SGiuseppe CAVALLARO 	struct dma_features dma_cap;
2441bb6dea8SGiuseppe CAVALLARO 	struct stmmac_counters mmc;
2451bb6dea8SGiuseppe CAVALLARO 	int hw_cap_support;
2461bb6dea8SGiuseppe CAVALLARO 	int synopsys_id;
2477ac6653aSJeff Kirsher 	u32 msg_enable;
2487ac6653aSJeff Kirsher 	int wolopts;
2493172d3afSDeepak Sikri 	int wol_irq;
250cd7201f4SGiuseppe CAVALLARO 	int clk_csr;
251d765955dSGiuseppe CAVALLARO 	struct timer_list eee_ctrl_timer;
252d765955dSGiuseppe CAVALLARO 	int lpi_irq;
253d765955dSGiuseppe CAVALLARO 	int eee_enabled;
254d765955dSGiuseppe CAVALLARO 	int eee_active;
255d765955dSGiuseppe CAVALLARO 	int tx_lpi_timer;
256388e201dSVineetha G. Jaya Kumaran 	int tx_lpi_enabled;
257388e201dSVineetha G. Jaya Kumaran 	int eee_tw_timer;
258be1c7eaeSVineetha G. Jaya Kumaran 	bool eee_sw_timer_en;
2594a7d666aSGiuseppe CAVALLARO 	unsigned int mode;
2605f0456b4SJose Abreu 	unsigned int chain_mode;
261c24602efSGiuseppe CAVALLARO 	int extend_desc;
262d6228b7cSArtem Panfilov 	struct hwtstamp_config tstamp_config;
26392ba6888SRayagond Kokatanur 	struct ptp_clock *ptp_clock;
26492ba6888SRayagond Kokatanur 	struct ptp_clock_info ptp_clock_ops;
2651bb6dea8SGiuseppe CAVALLARO 	unsigned int default_addend;
2669a8a02c9SJose Abreu 	u32 sub_second_inc;
2679a8a02c9SJose Abreu 	u32 systime_flags;
2681bb6dea8SGiuseppe CAVALLARO 	u32 adv_ts;
2691bb6dea8SGiuseppe CAVALLARO 	int use_riwt;
27089f7f2cfSSrinivas Kandagatla 	int irq_wake;
271642436a1SYannick Vignon 	rwlock_t ptp_lock;
272f4da5652STan Tee Min 	/* Protects auxiliary snapshot registers from concurrent access. */
273f4da5652STan Tee Min 	struct mutex aux_ts_lock;
27476c16d3eSWong Vee Khee 	wait_queue_head_t tstamp_busy_wait;
275f4da5652STan Tee Min 
27636ff7c1eSAlexandre TORGUE 	void __iomem *mmcaddr;
277ba1ffd74SGiuseppe CAVALLARO 	void __iomem *ptpaddr;
2783cd1cfcbSJose Abreu 	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
2798532f613SOng Boon Leong 	int sfty_ce_irq;
2808532f613SOng Boon Leong 	int sfty_ue_irq;
2818532f613SOng Boon Leong 	int rx_irq[MTL_MAX_RX_QUEUES];
2828532f613SOng Boon Leong 	int tx_irq[MTL_MAX_TX_QUEUES];
2838532f613SOng Boon Leong 	/*irq name */
2848532f613SOng Boon Leong 	char int_name_mac[IFNAMSIZ + 9];
2858532f613SOng Boon Leong 	char int_name_wol[IFNAMSIZ + 9];
2868532f613SOng Boon Leong 	char int_name_lpi[IFNAMSIZ + 9];
2878532f613SOng Boon Leong 	char int_name_sfty_ce[IFNAMSIZ + 10];
2888532f613SOng Boon Leong 	char int_name_sfty_ue[IFNAMSIZ + 10];
2898532f613SOng Boon Leong 	char int_name_rx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 14];
2908532f613SOng Boon Leong 	char int_name_tx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 18];
291466c5ac8SMathieu Olivari 
292466c5ac8SMathieu Olivari #ifdef CONFIG_DEBUG_FS
293466c5ac8SMathieu Olivari 	struct dentry *dbgfs_dir;
294466c5ac8SMathieu Olivari #endif
29534877a15SJose Abreu 
29634877a15SJose Abreu 	unsigned long state;
29734877a15SJose Abreu 	struct workqueue_struct *wq;
29834877a15SJose Abreu 	struct work_struct service_task;
2994dbbe8ddSJose Abreu 
3005a558611SOng Boon Leong 	/* Workqueue for handling FPE hand-shaking */
3015a558611SOng Boon Leong 	unsigned long fpe_task_state;
3025a558611SOng Boon Leong 	struct workqueue_struct *fpe_wq;
3035a558611SOng Boon Leong 	struct work_struct fpe_task;
3045a558611SOng Boon Leong 	char wq_name[IFNAMSIZ + 4];
3055a558611SOng Boon Leong 
3064dbbe8ddSJose Abreu 	/* TC Handling */
3074dbbe8ddSJose Abreu 	unsigned int tc_entries_max;
3084dbbe8ddSJose Abreu 	unsigned int tc_off_max;
3094dbbe8ddSJose Abreu 	struct stmmac_tc_entry *tc_entries;
310425eabddSJose Abreu 	unsigned int flow_entries_max;
311425eabddSJose Abreu 	struct stmmac_flow_entry *flow_entries;
312aeb7c75cSOng Boon Leong 	unsigned int rfs_entries_max[STMMAC_RFS_T_MAX];
313aeb7c75cSOng Boon Leong 	unsigned int rfs_entries_cnt[STMMAC_RFS_T_MAX];
314aeb7c75cSOng Boon Leong 	unsigned int rfs_entries_total;
315aeb7c75cSOng Boon Leong 	struct stmmac_rfs_entry *rfs_entries;
3169a8a02c9SJose Abreu 
3179a8a02c9SJose Abreu 	/* Pulse Per Second output */
3189a8a02c9SJose Abreu 	struct stmmac_pps_cfg pps[STMMAC_PPS_MAX];
31976067459SJose Abreu 
32076067459SJose Abreu 	/* Receive Side Scaling */
32176067459SJose Abreu 	struct stmmac_rss rss;
3225fabb012SOng Boon Leong 
3235fabb012SOng Boon Leong 	/* XDP BPF Program */
324bba2556eSOng Boon Leong 	unsigned long *af_xdp_zc_qps;
3255fabb012SOng Boon Leong 	struct bpf_prog *xdp_prog;
32634877a15SJose Abreu };
32734877a15SJose Abreu 
32834877a15SJose Abreu enum stmmac_state {
32934877a15SJose Abreu 	STMMAC_DOWN,
33034877a15SJose Abreu 	STMMAC_RESET_REQUESTED,
33134877a15SJose Abreu 	STMMAC_RESETING,
33234877a15SJose Abreu 	STMMAC_SERVICE_SCHED,
3337ac6653aSJeff Kirsher };
3347ac6653aSJeff Kirsher 
335d6cc64efSJoe Perches int stmmac_mdio_unregister(struct net_device *ndev);
336d6cc64efSJoe Perches int stmmac_mdio_register(struct net_device *ndev);
337073752aaSSrinivas Kandagatla int stmmac_mdio_reset(struct mii_bus *mii);
338597a68ceSVoon Weifeng int stmmac_xpcs_setup(struct mii_bus *mii);
339d6cc64efSJoe Perches void stmmac_set_ethtool_ops(struct net_device *netdev);
340915af656SAndy Shevchenko 
341a6da2bbbSHolger Assmann int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags);
342c30a70d3SGiuseppe CAVALLARO void stmmac_ptp_register(struct stmmac_priv *priv);
343d6cc64efSJoe Perches void stmmac_ptp_unregister(struct stmmac_priv *priv);
344ac746c85SOng Boon Leong int stmmac_xdp_open(struct net_device *dev);
345ac746c85SOng Boon Leong void stmmac_xdp_release(struct net_device *dev);
346f4e7bd81SJoachim Eastwood int stmmac_resume(struct device *dev);
347f4e7bd81SJoachim Eastwood int stmmac_suspend(struct device *dev);
348*ff0011cfSUwe Kleine-König void stmmac_dvr_remove(struct device *dev);
34915ffac73SJoachim Eastwood int stmmac_dvr_probe(struct device *device,
350cf3f047bSGiuseppe CAVALLARO 		     struct plat_stmmacenet_data *plat_dat,
351e56788cfSJoachim Eastwood 		     struct stmmac_resources *res);
352d765955dSGiuseppe CAVALLARO void stmmac_disable_eee_mode(struct stmmac_priv *priv);
353d765955dSGiuseppe CAVALLARO bool stmmac_eee_init(struct stmmac_priv *priv);
3540366f7e0SOng Boon Leong int stmmac_reinit_queues(struct net_device *dev, u32 rx_cnt, u32 tx_cnt);
355aa042f60SSong, Yoong Siang int stmmac_reinit_ringparam(struct net_device *dev, u32 rx_size, u32 tx_size);
3565ec55823SJoakim Zhang int stmmac_bus_clks_config(struct stmmac_priv *priv, bool enabled);
3575a558611SOng Boon Leong void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable);
358ba1377ffSGiuseppe CAVALLARO 
3595fabb012SOng Boon Leong static inline bool stmmac_xdp_is_enabled(struct stmmac_priv *priv)
3605fabb012SOng Boon Leong {
3615fabb012SOng Boon Leong 	return !!priv->xdp_prog;
3625fabb012SOng Boon Leong }
3635fabb012SOng Boon Leong 
3645fabb012SOng Boon Leong static inline unsigned int stmmac_rx_offset(struct stmmac_priv *priv)
3655fabb012SOng Boon Leong {
3665fabb012SOng Boon Leong 	if (stmmac_xdp_is_enabled(priv))
36712d125b4SMarc Zyngier 		return XDP_PACKET_HEADROOM;
3685fabb012SOng Boon Leong 
36912d125b4SMarc Zyngier 	return 0;
3705fabb012SOng Boon Leong }
3715fabb012SOng Boon Leong 
372bba2556eSOng Boon Leong void stmmac_disable_rx_queue(struct stmmac_priv *priv, u32 queue);
373bba2556eSOng Boon Leong void stmmac_enable_rx_queue(struct stmmac_priv *priv, u32 queue);
374132c32eeSOng Boon Leong void stmmac_disable_tx_queue(struct stmmac_priv *priv, u32 queue);
375132c32eeSOng Boon Leong void stmmac_enable_tx_queue(struct stmmac_priv *priv, u32 queue);
376bba2556eSOng Boon Leong int stmmac_xsk_wakeup(struct net_device *dev, u32 queue, u32 flags);
37781c52c42SXiaoliang Yang struct timespec64 stmmac_calc_tas_basetime(ktime_t old_base_time,
37881c52c42SXiaoliang Yang 					   ktime_t current_time,
37981c52c42SXiaoliang Yang 					   u64 cycle_time);
380bba2556eSOng Boon Leong 
381091810dbSJose Abreu #if IS_ENABLED(CONFIG_STMMAC_SELFTESTS)
382091810dbSJose Abreu void stmmac_selftest_run(struct net_device *dev,
383091810dbSJose Abreu 			 struct ethtool_test *etest, u64 *buf);
384091810dbSJose Abreu void stmmac_selftest_get_strings(struct stmmac_priv *priv, u8 *data);
385091810dbSJose Abreu int stmmac_selftest_get_count(struct stmmac_priv *priv);
386091810dbSJose Abreu #else
387091810dbSJose Abreu static inline void stmmac_selftest_run(struct net_device *dev,
388091810dbSJose Abreu 				       struct ethtool_test *etest, u64 *buf)
389091810dbSJose Abreu {
390091810dbSJose Abreu 	/* Not enabled */
391091810dbSJose Abreu }
392091810dbSJose Abreu static inline void stmmac_selftest_get_strings(struct stmmac_priv *priv,
393091810dbSJose Abreu 					       u8 *data)
394091810dbSJose Abreu {
395091810dbSJose Abreu 	/* Not enabled */
396091810dbSJose Abreu }
397091810dbSJose Abreu static inline int stmmac_selftest_get_count(struct stmmac_priv *priv)
398091810dbSJose Abreu {
399091810dbSJose Abreu 	return -EOPNOTSUPP;
400091810dbSJose Abreu }
401091810dbSJose Abreu #endif /* CONFIG_STMMAC_SELFTESTS */
402091810dbSJose Abreu 
403bd4242dfSRayagond Kokatanur #endif /* __STMMAC_H__ */
404