xref: /openbmc/linux/drivers/net/ethernet/stmicro/stmmac/stmmac.h (revision e3f9c3e348406f7016ded85aed119edfcd2de2fa)
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 
955b24324aSSong Yoong Siang struct stmmac_xdp_buff {
965b24324aSSong Yoong Siang 	struct xdp_buff xdp;
97*e3f9c3e3SSong Yoong Siang 	struct stmmac_priv *priv;
98*e3f9c3e3SSong Yoong Siang 	struct dma_desc *desc;
99*e3f9c3e3SSong Yoong Siang 	struct dma_desc *ndesc;
1005b24324aSSong Yoong Siang };
1015b24324aSSong Yoong Siang 
10254139cf3SJoao Pinto struct stmmac_rx_queue {
103d429b66eSJose Abreu 	u32 rx_count_frames;
10454139cf3SJoao Pinto 	u32 queue_index;
105be8b38a7SOng Boon Leong 	struct xdp_rxq_info xdp_rxq;
106bba2556eSOng Boon Leong 	struct xsk_buff_pool *xsk_pool;
1072af6106aSJose Abreu 	struct page_pool *page_pool;
1082af6106aSJose Abreu 	struct stmmac_rx_buffer *buf_pool;
10954139cf3SJoao Pinto 	struct stmmac_priv *priv_data;
11054139cf3SJoao Pinto 	struct dma_extended_desc *dma_erx;
11154139cf3SJoao Pinto 	struct dma_desc *dma_rx ____cacheline_aligned_in_smp;
11254139cf3SJoao Pinto 	unsigned int cur_rx;
11354139cf3SJoao Pinto 	unsigned int dirty_rx;
114bba2556eSOng Boon Leong 	unsigned int buf_alloc_num;
11554139cf3SJoao Pinto 	u32 rx_zeroc_thresh;
11654139cf3SJoao Pinto 	dma_addr_t dma_rx_phy;
11754139cf3SJoao Pinto 	u32 rx_tail_addr;
118ec222003SJose Abreu 	unsigned int state_saved;
119ec222003SJose Abreu 	struct {
120ec222003SJose Abreu 		struct sk_buff *skb;
121ec222003SJose Abreu 		unsigned int len;
122ec222003SJose Abreu 		unsigned int error;
123ec222003SJose Abreu 	} state;
1248fce3331SJose Abreu };
1258fce3331SJose Abreu 
1268fce3331SJose Abreu struct stmmac_channel {
1274ccb4585SJose Abreu 	struct napi_struct rx_napi ____cacheline_aligned_in_smp;
1284ccb4585SJose Abreu 	struct napi_struct tx_napi ____cacheline_aligned_in_smp;
129132c32eeSOng Boon Leong 	struct napi_struct rxtx_napi ____cacheline_aligned_in_smp;
1308fce3331SJose Abreu 	struct stmmac_priv *priv_data;
131021bd5e3SJose Abreu 	spinlock_t lock;
1328fce3331SJose Abreu 	u32 index;
13354139cf3SJoao Pinto };
13454139cf3SJoao Pinto 
1354dbbe8ddSJose Abreu struct stmmac_tc_entry {
1364dbbe8ddSJose Abreu 	bool in_use;
1374dbbe8ddSJose Abreu 	bool in_hw;
1384dbbe8ddSJose Abreu 	bool is_last;
1394dbbe8ddSJose Abreu 	bool is_frag;
1404dbbe8ddSJose Abreu 	void *frag_ptr;
1414dbbe8ddSJose Abreu 	unsigned int table_pos;
1424dbbe8ddSJose Abreu 	u32 handle;
1434dbbe8ddSJose Abreu 	u32 prio;
1444dbbe8ddSJose Abreu 	struct {
1454dbbe8ddSJose Abreu 		u32 match_data;
1464dbbe8ddSJose Abreu 		u32 match_en;
1474dbbe8ddSJose Abreu 		u8 af:1;
1484dbbe8ddSJose Abreu 		u8 rf:1;
1494dbbe8ddSJose Abreu 		u8 im:1;
1504dbbe8ddSJose Abreu 		u8 nc:1;
1514dbbe8ddSJose Abreu 		u8 res1:4;
1524dbbe8ddSJose Abreu 		u8 frame_offset;
1534dbbe8ddSJose Abreu 		u8 ok_index;
1544dbbe8ddSJose Abreu 		u8 dma_ch_no;
1554dbbe8ddSJose Abreu 		u32 res2;
1564dbbe8ddSJose Abreu 	} __packed val;
1574dbbe8ddSJose Abreu };
1584dbbe8ddSJose Abreu 
1599a8a02c9SJose Abreu #define STMMAC_PPS_MAX		4
1609a8a02c9SJose Abreu struct stmmac_pps_cfg {
1619a8a02c9SJose Abreu 	bool available;
1629a8a02c9SJose Abreu 	struct timespec64 start;
1639a8a02c9SJose Abreu 	struct timespec64 period;
1649a8a02c9SJose Abreu };
1659a8a02c9SJose Abreu 
16676067459SJose Abreu struct stmmac_rss {
16776067459SJose Abreu 	int enable;
16876067459SJose Abreu 	u8 key[STMMAC_RSS_HASH_KEY_SIZE];
16976067459SJose Abreu 	u32 table[STMMAC_RSS_MAX_TABLE_SIZE];
17076067459SJose Abreu };
17176067459SJose Abreu 
172425eabddSJose Abreu #define STMMAC_FLOW_ACTION_DROP		BIT(0)
173425eabddSJose Abreu struct stmmac_flow_entry {
174425eabddSJose Abreu 	unsigned long cookie;
175425eabddSJose Abreu 	unsigned long action;
176425eabddSJose Abreu 	u8 ip_proto;
177425eabddSJose Abreu 	int in_use;
178425eabddSJose Abreu 	int idx;
179425eabddSJose Abreu 	int is_l4;
180425eabddSJose Abreu };
181425eabddSJose Abreu 
182aeb7c75cSOng Boon Leong /* Rx Frame Steering */
183aeb7c75cSOng Boon Leong enum stmmac_rfs_type {
184aeb7c75cSOng Boon Leong 	STMMAC_RFS_T_VLAN,
185e48cb313SOng Boon Leong 	STMMAC_RFS_T_LLDP,
186e48cb313SOng Boon Leong 	STMMAC_RFS_T_1588,
187aeb7c75cSOng Boon Leong 	STMMAC_RFS_T_MAX,
188aeb7c75cSOng Boon Leong };
189aeb7c75cSOng Boon Leong 
190aeb7c75cSOng Boon Leong struct stmmac_rfs_entry {
191aeb7c75cSOng Boon Leong 	unsigned long cookie;
192e48cb313SOng Boon Leong 	u16 etype;
193aeb7c75cSOng Boon Leong 	int in_use;
194aeb7c75cSOng Boon Leong 	int type;
195aeb7c75cSOng Boon Leong 	int tc;
196aeb7c75cSOng Boon Leong };
197aeb7c75cSOng Boon Leong 
1988531c808SChristian Marangi struct stmmac_dma_conf {
1998531c808SChristian Marangi 	unsigned int dma_buf_sz;
2008531c808SChristian Marangi 
2018531c808SChristian Marangi 	/* RX Queue */
2028531c808SChristian Marangi 	struct stmmac_rx_queue rx_queue[MTL_MAX_RX_QUEUES];
2038531c808SChristian Marangi 	unsigned int dma_rx_size;
2048531c808SChristian Marangi 
2058531c808SChristian Marangi 	/* TX Queue */
2068531c808SChristian Marangi 	struct stmmac_tx_queue tx_queue[MTL_MAX_TX_QUEUES];
2078531c808SChristian Marangi 	unsigned int dma_tx_size;
2088531c808SChristian Marangi };
2098531c808SChristian Marangi 
2107ac6653aSJeff Kirsher struct stmmac_priv {
2117ac6653aSJeff Kirsher 	/* Frequently used values are kept adjacent for cache effect */
212db2f2842SOng Boon Leong 	u32 tx_coal_frames[MTL_MAX_TX_QUEUES];
213db2f2842SOng Boon Leong 	u32 tx_coal_timer[MTL_MAX_TX_QUEUES];
214db2f2842SOng Boon Leong 	u32 rx_coal_frames[MTL_MAX_TX_QUEUES];
215ce736788SJoao Pinto 
2161bb6dea8SGiuseppe CAVALLARO 	int hwts_tx_en;
2171bb6dea8SGiuseppe CAVALLARO 	bool tx_path_in_lpi_mode;
218f748be53SAlexandre TORGUE 	bool tso;
21967afd6d1SJose Abreu 	int sph;
220d08d32d1SOng Boon Leong 	int sph_cap;
2218000ddc0SJose Abreu 	u32 sarc_type;
2227ac6653aSJeff Kirsher 
22322ad3838SGiuseppe Cavallaro 	unsigned int rx_copybreak;
224db2f2842SOng Boon Leong 	u32 rx_riwt[MTL_MAX_TX_QUEUES];
2251bb6dea8SGiuseppe CAVALLARO 	int hwts_rx_en;
2265bacd778SLABBE Corentin 
2271bb6dea8SGiuseppe CAVALLARO 	void __iomem *ioaddr;
2281bb6dea8SGiuseppe CAVALLARO 	struct net_device *dev;
2297ac6653aSJeff Kirsher 	struct device *device;
2307ac6653aSJeff Kirsher 	struct mac_device_info *hw;
2317cfde0afSJose Abreu 	int (*hwif_quirks)(struct stmmac_priv *priv);
23229555fa3SThierry Reding 	struct mutex lock;
2337ac6653aSJeff Kirsher 
2348531c808SChristian Marangi 	struct stmmac_dma_conf dma_conf;
235ce736788SJoao Pinto 
2368fce3331SJose Abreu 	/* Generic channel for NAPI */
2378fce3331SJose Abreu 	struct stmmac_channel channel[STMMAC_CH_MAX];
2388fce3331SJose Abreu 
2397ac6653aSJeff Kirsher 	int speed;
2407ac6653aSJeff Kirsher 	unsigned int flow_ctrl;
2417ac6653aSJeff Kirsher 	unsigned int pause;
2427ac6653aSJeff Kirsher 	struct mii_bus *mii;
2437ac6653aSJeff Kirsher 
244eeef2f6bSJose Abreu 	struct phylink_config phylink_config;
245eeef2f6bSJose Abreu 	struct phylink *phylink;
246eeef2f6bSJose Abreu 
2471bb6dea8SGiuseppe CAVALLARO 	struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
2488bf993a5SJose Abreu 	struct stmmac_safety_stats sstats;
2491bb6dea8SGiuseppe CAVALLARO 	struct plat_stmmacenet_data *plat;
2501bb6dea8SGiuseppe CAVALLARO 	struct dma_features dma_cap;
2511bb6dea8SGiuseppe CAVALLARO 	struct stmmac_counters mmc;
2521bb6dea8SGiuseppe CAVALLARO 	int hw_cap_support;
2531bb6dea8SGiuseppe CAVALLARO 	int synopsys_id;
2547ac6653aSJeff Kirsher 	u32 msg_enable;
2557ac6653aSJeff Kirsher 	int wolopts;
2563172d3afSDeepak Sikri 	int wol_irq;
257cd7201f4SGiuseppe CAVALLARO 	int clk_csr;
258d765955dSGiuseppe CAVALLARO 	struct timer_list eee_ctrl_timer;
259d765955dSGiuseppe CAVALLARO 	int lpi_irq;
260d765955dSGiuseppe CAVALLARO 	int eee_enabled;
261d765955dSGiuseppe CAVALLARO 	int eee_active;
262d765955dSGiuseppe CAVALLARO 	int tx_lpi_timer;
263388e201dSVineetha G. Jaya Kumaran 	int tx_lpi_enabled;
264388e201dSVineetha G. Jaya Kumaran 	int eee_tw_timer;
265be1c7eaeSVineetha G. Jaya Kumaran 	bool eee_sw_timer_en;
2664a7d666aSGiuseppe CAVALLARO 	unsigned int mode;
2675f0456b4SJose Abreu 	unsigned int chain_mode;
268c24602efSGiuseppe CAVALLARO 	int extend_desc;
269d6228b7cSArtem Panfilov 	struct hwtstamp_config tstamp_config;
27092ba6888SRayagond Kokatanur 	struct ptp_clock *ptp_clock;
27192ba6888SRayagond Kokatanur 	struct ptp_clock_info ptp_clock_ops;
2721bb6dea8SGiuseppe CAVALLARO 	unsigned int default_addend;
2739a8a02c9SJose Abreu 	u32 sub_second_inc;
2749a8a02c9SJose Abreu 	u32 systime_flags;
2751bb6dea8SGiuseppe CAVALLARO 	u32 adv_ts;
2761bb6dea8SGiuseppe CAVALLARO 	int use_riwt;
27789f7f2cfSSrinivas Kandagatla 	int irq_wake;
278642436a1SYannick Vignon 	rwlock_t ptp_lock;
279f4da5652STan Tee Min 	/* Protects auxiliary snapshot registers from concurrent access. */
280f4da5652STan Tee Min 	struct mutex aux_ts_lock;
28176c16d3eSWong Vee Khee 	wait_queue_head_t tstamp_busy_wait;
282f4da5652STan Tee Min 
28336ff7c1eSAlexandre TORGUE 	void __iomem *mmcaddr;
284ba1ffd74SGiuseppe CAVALLARO 	void __iomem *ptpaddr;
2853cd1cfcbSJose Abreu 	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
2868532f613SOng Boon Leong 	int sfty_ce_irq;
2878532f613SOng Boon Leong 	int sfty_ue_irq;
2888532f613SOng Boon Leong 	int rx_irq[MTL_MAX_RX_QUEUES];
2898532f613SOng Boon Leong 	int tx_irq[MTL_MAX_TX_QUEUES];
2908532f613SOng Boon Leong 	/*irq name */
2918532f613SOng Boon Leong 	char int_name_mac[IFNAMSIZ + 9];
2928532f613SOng Boon Leong 	char int_name_wol[IFNAMSIZ + 9];
2938532f613SOng Boon Leong 	char int_name_lpi[IFNAMSIZ + 9];
2948532f613SOng Boon Leong 	char int_name_sfty_ce[IFNAMSIZ + 10];
2958532f613SOng Boon Leong 	char int_name_sfty_ue[IFNAMSIZ + 10];
2968532f613SOng Boon Leong 	char int_name_rx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 14];
2978532f613SOng Boon Leong 	char int_name_tx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 18];
298466c5ac8SMathieu Olivari 
299466c5ac8SMathieu Olivari #ifdef CONFIG_DEBUG_FS
300466c5ac8SMathieu Olivari 	struct dentry *dbgfs_dir;
301466c5ac8SMathieu Olivari #endif
30234877a15SJose Abreu 
30334877a15SJose Abreu 	unsigned long state;
30434877a15SJose Abreu 	struct workqueue_struct *wq;
30534877a15SJose Abreu 	struct work_struct service_task;
3064dbbe8ddSJose Abreu 
3075a558611SOng Boon Leong 	/* Workqueue for handling FPE hand-shaking */
3085a558611SOng Boon Leong 	unsigned long fpe_task_state;
3095a558611SOng Boon Leong 	struct workqueue_struct *fpe_wq;
3105a558611SOng Boon Leong 	struct work_struct fpe_task;
3115a558611SOng Boon Leong 	char wq_name[IFNAMSIZ + 4];
3125a558611SOng Boon Leong 
3134dbbe8ddSJose Abreu 	/* TC Handling */
3144dbbe8ddSJose Abreu 	unsigned int tc_entries_max;
3154dbbe8ddSJose Abreu 	unsigned int tc_off_max;
3164dbbe8ddSJose Abreu 	struct stmmac_tc_entry *tc_entries;
317425eabddSJose Abreu 	unsigned int flow_entries_max;
318425eabddSJose Abreu 	struct stmmac_flow_entry *flow_entries;
319aeb7c75cSOng Boon Leong 	unsigned int rfs_entries_max[STMMAC_RFS_T_MAX];
320aeb7c75cSOng Boon Leong 	unsigned int rfs_entries_cnt[STMMAC_RFS_T_MAX];
321aeb7c75cSOng Boon Leong 	unsigned int rfs_entries_total;
322aeb7c75cSOng Boon Leong 	struct stmmac_rfs_entry *rfs_entries;
3239a8a02c9SJose Abreu 
3249a8a02c9SJose Abreu 	/* Pulse Per Second output */
3259a8a02c9SJose Abreu 	struct stmmac_pps_cfg pps[STMMAC_PPS_MAX];
32676067459SJose Abreu 
32776067459SJose Abreu 	/* Receive Side Scaling */
32876067459SJose Abreu 	struct stmmac_rss rss;
3295fabb012SOng Boon Leong 
3305fabb012SOng Boon Leong 	/* XDP BPF Program */
331bba2556eSOng Boon Leong 	unsigned long *af_xdp_zc_qps;
3325fabb012SOng Boon Leong 	struct bpf_prog *xdp_prog;
33334877a15SJose Abreu };
33434877a15SJose Abreu 
33534877a15SJose Abreu enum stmmac_state {
33634877a15SJose Abreu 	STMMAC_DOWN,
33734877a15SJose Abreu 	STMMAC_RESET_REQUESTED,
33834877a15SJose Abreu 	STMMAC_RESETING,
33934877a15SJose Abreu 	STMMAC_SERVICE_SCHED,
3407ac6653aSJeff Kirsher };
3417ac6653aSJeff Kirsher 
342d6cc64efSJoe Perches int stmmac_mdio_unregister(struct net_device *ndev);
343d6cc64efSJoe Perches int stmmac_mdio_register(struct net_device *ndev);
344073752aaSSrinivas Kandagatla int stmmac_mdio_reset(struct mii_bus *mii);
345597a68ceSVoon Weifeng int stmmac_xpcs_setup(struct mii_bus *mii);
346d6cc64efSJoe Perches void stmmac_set_ethtool_ops(struct net_device *netdev);
347915af656SAndy Shevchenko 
348a6da2bbbSHolger Assmann int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags);
349c30a70d3SGiuseppe CAVALLARO void stmmac_ptp_register(struct stmmac_priv *priv);
350d6cc64efSJoe Perches void stmmac_ptp_unregister(struct stmmac_priv *priv);
351ac746c85SOng Boon Leong int stmmac_xdp_open(struct net_device *dev);
352ac746c85SOng Boon Leong void stmmac_xdp_release(struct net_device *dev);
353f4e7bd81SJoachim Eastwood int stmmac_resume(struct device *dev);
354f4e7bd81SJoachim Eastwood int stmmac_suspend(struct device *dev);
355ff0011cfSUwe Kleine-König void stmmac_dvr_remove(struct device *dev);
35615ffac73SJoachim Eastwood int stmmac_dvr_probe(struct device *device,
357cf3f047bSGiuseppe CAVALLARO 		     struct plat_stmmacenet_data *plat_dat,
358e56788cfSJoachim Eastwood 		     struct stmmac_resources *res);
359d765955dSGiuseppe CAVALLARO void stmmac_disable_eee_mode(struct stmmac_priv *priv);
360d765955dSGiuseppe CAVALLARO bool stmmac_eee_init(struct stmmac_priv *priv);
3610366f7e0SOng Boon Leong int stmmac_reinit_queues(struct net_device *dev, u32 rx_cnt, u32 tx_cnt);
362aa042f60SSong, Yoong Siang int stmmac_reinit_ringparam(struct net_device *dev, u32 rx_size, u32 tx_size);
3635ec55823SJoakim Zhang int stmmac_bus_clks_config(struct stmmac_priv *priv, bool enabled);
3645a558611SOng Boon Leong void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable);
365ba1377ffSGiuseppe CAVALLARO 
3665fabb012SOng Boon Leong static inline bool stmmac_xdp_is_enabled(struct stmmac_priv *priv)
3675fabb012SOng Boon Leong {
3685fabb012SOng Boon Leong 	return !!priv->xdp_prog;
3695fabb012SOng Boon Leong }
3705fabb012SOng Boon Leong 
3715fabb012SOng Boon Leong static inline unsigned int stmmac_rx_offset(struct stmmac_priv *priv)
3725fabb012SOng Boon Leong {
3735fabb012SOng Boon Leong 	if (stmmac_xdp_is_enabled(priv))
37412d125b4SMarc Zyngier 		return XDP_PACKET_HEADROOM;
3755fabb012SOng Boon Leong 
37612d125b4SMarc Zyngier 	return 0;
3775fabb012SOng Boon Leong }
3785fabb012SOng Boon Leong 
379bba2556eSOng Boon Leong void stmmac_disable_rx_queue(struct stmmac_priv *priv, u32 queue);
380bba2556eSOng Boon Leong void stmmac_enable_rx_queue(struct stmmac_priv *priv, u32 queue);
381132c32eeSOng Boon Leong void stmmac_disable_tx_queue(struct stmmac_priv *priv, u32 queue);
382132c32eeSOng Boon Leong void stmmac_enable_tx_queue(struct stmmac_priv *priv, u32 queue);
383bba2556eSOng Boon Leong int stmmac_xsk_wakeup(struct net_device *dev, u32 queue, u32 flags);
38481c52c42SXiaoliang Yang struct timespec64 stmmac_calc_tas_basetime(ktime_t old_base_time,
38581c52c42SXiaoliang Yang 					   ktime_t current_time,
38681c52c42SXiaoliang Yang 					   u64 cycle_time);
387bba2556eSOng Boon Leong 
388091810dbSJose Abreu #if IS_ENABLED(CONFIG_STMMAC_SELFTESTS)
389091810dbSJose Abreu void stmmac_selftest_run(struct net_device *dev,
390091810dbSJose Abreu 			 struct ethtool_test *etest, u64 *buf);
391091810dbSJose Abreu void stmmac_selftest_get_strings(struct stmmac_priv *priv, u8 *data);
392091810dbSJose Abreu int stmmac_selftest_get_count(struct stmmac_priv *priv);
393091810dbSJose Abreu #else
394091810dbSJose Abreu static inline void stmmac_selftest_run(struct net_device *dev,
395091810dbSJose Abreu 				       struct ethtool_test *etest, u64 *buf)
396091810dbSJose Abreu {
397091810dbSJose Abreu 	/* Not enabled */
398091810dbSJose Abreu }
399091810dbSJose Abreu static inline void stmmac_selftest_get_strings(struct stmmac_priv *priv,
400091810dbSJose Abreu 					       u8 *data)
401091810dbSJose Abreu {
402091810dbSJose Abreu 	/* Not enabled */
403091810dbSJose Abreu }
404091810dbSJose Abreu static inline int stmmac_selftest_get_count(struct stmmac_priv *priv)
405091810dbSJose Abreu {
406091810dbSJose Abreu 	return -EOPNOTSUPP;
407091810dbSJose Abreu }
408091810dbSJose Abreu #endif /* CONFIG_STMMAC_SELFTESTS */
409091810dbSJose Abreu 
410bd4242dfSRayagond Kokatanur #endif /* __STMMAC_H__ */
411