blob: 40b5ed94cb54ac2e2971fad161e925f21e15354d [file] [log] [blame]
Thomas Gleixner4fa9c49f2019-05-29 07:18:05 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002/*******************************************************************************
3 Copyright (C) 2007-2009 STMicroelectronics Ltd
4
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07005
6 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
7*******************************************************************************/
8
Rayagond Kokatanurbd4242d2012-08-22 21:28:18 +00009#ifndef __STMMAC_H__
10#define __STMMAC_H__
11
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000012#define STMMAC_RESOURCE_NAME "stmmaceth"
Giuseppe CAVALLAROba1377ff2012-04-04 04:33:25 +000013
14#include <linux/clk.h>
Vincent Whitchurchd5a05e62020-11-20 16:02:08 +010015#include <linux/hrtimer.h>
Jose Abreu3cd1cfc2019-08-07 10:03:14 +020016#include <linux/if_vlan.h>
Giuseppe CAVALLAROee7946a2010-01-06 23:07:14 +000017#include <linux/stmmac.h>
Jose Abreueeef2f62019-06-11 17:18:46 +020018#include <linux/phylink.h>
Giuseppe CAVALLARO33d5e332012-06-07 19:25:07 +000019#include <linux/pci.h>
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070020#include "common.h"
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +000021#include <linux/ptp_clock_kernel.h>
Artem Panfilovd6228b72019-01-20 19:05:15 +030022#include <linux/net_tstamp.h>
Chen-Yu Tsaic5e4ddb2014-01-17 21:24:41 +080023#include <linux/reset.h>
Jose Abreu2af61062019-07-09 10:03:00 +020024#include <net/page_pool.h>
Jakub Kicinski3b80b732021-12-29 17:27:41 -080025#include <uapi/linux/bpf.h>
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070026
Joachim Eastwoode56788c2015-05-20 20:03:07 +020027struct stmmac_resources {
28 void __iomem *addr;
Michael Walle83216e32021-04-12 19:47:17 +020029 u8 mac[ETH_ALEN];
Joachim Eastwoode56788c2015-05-20 20:03:07 +020030 int wol_irq;
31 int lpi_irq;
32 int irq;
Ong Boon Leong8532f612021-03-26 01:39:14 +080033 int sfty_ce_irq;
34 int sfty_ue_irq;
35 int rx_irq[MTL_MAX_RX_QUEUES];
36 int tx_irq[MTL_MAX_TX_QUEUES];
Joachim Eastwoode56788c2015-05-20 20:03:07 +020037};
38
Ong Boon Leongbe8b38a2021-04-01 10:11:16 +080039enum stmmac_txbuf_type {
40 STMMAC_TXBUF_T_SKB,
41 STMMAC_TXBUF_T_XDP_TX,
Ong Boon Leong8b278a52021-04-01 10:11:17 +080042 STMMAC_TXBUF_T_XDP_NDO,
Ong Boon Leong132c32e2021-04-13 17:36:26 +080043 STMMAC_TXBUF_T_XSK_TX,
Ong Boon Leongbe8b38a2021-04-01 10:11:16 +080044};
45
Giuseppe CAVALLARO362b37b2014-08-27 11:27:00 +020046struct stmmac_tx_info {
47 dma_addr_t buf;
48 bool map_as_page;
Giuseppe Cavallaro553e2ab2016-02-29 14:27:31 +010049 unsigned len;
Giuseppe Cavallaro2a6d8e12016-02-29 14:27:32 +010050 bool last_segment;
Giuseppe Cavallaro96951362016-02-29 14:27:33 +010051 bool is_jumbo;
Ong Boon Leongbe8b38a2021-04-01 10:11:16 +080052 enum stmmac_txbuf_type buf_type;
Giuseppe CAVALLARO362b37b2014-08-27 11:27:00 +020053};
54
Jose Abreu579a25a2020-01-13 17:24:09 +010055#define STMMAC_TBS_AVAIL BIT(0)
56#define STMMAC_TBS_EN BIT(1)
57
Joao Pintoce736782017-04-06 09:49:10 +010058/* Frequently used values are kept adjacent for cache effect */
59struct stmmac_tx_queue {
Jose Abreu8fce3332018-09-17 09:22:56 +010060 u32 tx_count_frames;
Jose Abreu579a25a2020-01-13 17:24:09 +010061 int tbs;
Vincent Whitchurchd5a05e62020-11-20 16:02:08 +010062 struct hrtimer txtimer;
Joao Pintoce736782017-04-06 09:49:10 +010063 u32 queue_index;
64 struct stmmac_priv *priv_data;
65 struct dma_extended_desc *dma_etx ____cacheline_aligned_in_smp;
Jose Abreu579a25a2020-01-13 17:24:09 +010066 struct dma_edesc *dma_entx;
Joao Pintoce736782017-04-06 09:49:10 +010067 struct dma_desc *dma_tx;
Ong Boon Leongbe8b38a2021-04-01 10:11:16 +080068 union {
69 struct sk_buff **tx_skbuff;
70 struct xdp_frame **xdpf;
71 };
Joao Pintoce736782017-04-06 09:49:10 +010072 struct stmmac_tx_info *tx_skbuff_dma;
Ong Boon Leong132c32e2021-04-13 17:36:26 +080073 struct xsk_buff_pool *xsk_pool;
74 u32 xsk_frames_done;
Joao Pintoce736782017-04-06 09:49:10 +010075 unsigned int cur_tx;
76 unsigned int dirty_tx;
77 dma_addr_t dma_tx_phy;
Wong Vee Khee52e597d2021-06-11 17:02:38 +080078 dma_addr_t tx_tail_addr;
Niklas Cassel8d212a9e2018-02-19 18:11:09 +010079 u32 mss;
Joao Pintoce736782017-04-06 09:49:10 +010080};
81
Jose Abreu2af61062019-07-09 10:03:00 +020082struct stmmac_rx_buffer {
Ong Boon Leongbba25562021-04-13 17:36:25 +080083 union {
84 struct {
85 struct page *page;
86 dma_addr_t addr;
87 __u32 page_offset;
88 };
89 struct xdp_buff *xdp;
90 };
Ong Boon Leong5fabb012021-04-01 10:11:15 +080091 struct page *sec_page;
Jose Abreu67afd6d2019-08-17 20:54:43 +020092 dma_addr_t sec_addr;
Jose Abreu2af61062019-07-09 10:03:00 +020093};
94
Joao Pinto54139cf2017-04-06 09:49:09 +010095struct stmmac_rx_queue {
Jose Abreud429b662019-07-09 10:02:58 +020096 u32 rx_count_frames;
Joao Pinto54139cf2017-04-06 09:49:09 +010097 u32 queue_index;
Ong Boon Leongbe8b38a2021-04-01 10:11:16 +080098 struct xdp_rxq_info xdp_rxq;
Ong Boon Leongbba25562021-04-13 17:36:25 +080099 struct xsk_buff_pool *xsk_pool;
Jose Abreu2af61062019-07-09 10:03:00 +0200100 struct page_pool *page_pool;
101 struct stmmac_rx_buffer *buf_pool;
Joao Pinto54139cf2017-04-06 09:49:09 +0100102 struct stmmac_priv *priv_data;
103 struct dma_extended_desc *dma_erx;
104 struct dma_desc *dma_rx ____cacheline_aligned_in_smp;
Joao Pinto54139cf2017-04-06 09:49:09 +0100105 unsigned int cur_rx;
106 unsigned int dirty_rx;
Ong Boon Leongbba25562021-04-13 17:36:25 +0800107 unsigned int buf_alloc_num;
Joao Pinto54139cf2017-04-06 09:49:09 +0100108 u32 rx_zeroc_thresh;
109 dma_addr_t dma_rx_phy;
110 u32 rx_tail_addr;
Jose Abreuec222002019-08-17 20:54:41 +0200111 unsigned int state_saved;
112 struct {
113 struct sk_buff *skb;
114 unsigned int len;
115 unsigned int error;
116 } state;
Jose Abreu8fce3332018-09-17 09:22:56 +0100117};
118
119struct stmmac_channel {
Jose Abreu4ccb45852019-02-19 10:38:47 +0100120 struct napi_struct rx_napi ____cacheline_aligned_in_smp;
121 struct napi_struct tx_napi ____cacheline_aligned_in_smp;
Ong Boon Leong132c32e2021-04-13 17:36:26 +0800122 struct napi_struct rxtx_napi ____cacheline_aligned_in_smp;
Jose Abreu8fce3332018-09-17 09:22:56 +0100123 struct stmmac_priv *priv_data;
Jose Abreu021bd5e2019-12-18 11:24:44 +0100124 spinlock_t lock;
Jose Abreu8fce3332018-09-17 09:22:56 +0100125 u32 index;
Joao Pinto54139cf2017-04-06 09:49:09 +0100126};
127
Jose Abreu4dbbe8d2018-05-04 10:01:38 +0100128struct stmmac_tc_entry {
129 bool in_use;
130 bool in_hw;
131 bool is_last;
132 bool is_frag;
133 void *frag_ptr;
134 unsigned int table_pos;
135 u32 handle;
136 u32 prio;
137 struct {
138 u32 match_data;
139 u32 match_en;
140 u8 af:1;
141 u8 rf:1;
142 u8 im:1;
143 u8 nc:1;
144 u8 res1:4;
145 u8 frame_offset;
146 u8 ok_index;
147 u8 dma_ch_no;
148 u32 res2;
149 } __packed val;
150};
151
Jose Abreu9a8a02c2018-05-31 18:01:27 +0100152#define STMMAC_PPS_MAX 4
153struct stmmac_pps_cfg {
154 bool available;
155 struct timespec64 start;
156 struct timespec64 period;
157};
158
Jose Abreu76067452019-08-07 10:03:12 +0200159struct stmmac_rss {
160 int enable;
161 u8 key[STMMAC_RSS_HASH_KEY_SIZE];
162 u32 table[STMMAC_RSS_MAX_TABLE_SIZE];
163};
164
Jose Abreu425eabd2019-09-04 15:16:56 +0200165#define STMMAC_FLOW_ACTION_DROP BIT(0)
166struct stmmac_flow_entry {
167 unsigned long cookie;
168 unsigned long action;
169 u8 ip_proto;
170 int in_use;
171 int idx;
172 int is_l4;
173};
174
Ong Boon Leongaeb7c752021-12-11 22:51:34 +0800175/* Rx Frame Steering */
176enum stmmac_rfs_type {
177 STMMAC_RFS_T_VLAN,
Ong Boon Leonge48cb312021-12-22 22:43:10 +0800178 STMMAC_RFS_T_LLDP,
179 STMMAC_RFS_T_1588,
Ong Boon Leongaeb7c752021-12-11 22:51:34 +0800180 STMMAC_RFS_T_MAX,
181};
182
183struct stmmac_rfs_entry {
184 unsigned long cookie;
Ong Boon Leonge48cb312021-12-22 22:43:10 +0800185 u16 etype;
Ong Boon Leongaeb7c752021-12-11 22:51:34 +0800186 int in_use;
187 int type;
188 int tc;
189};
190
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700191struct stmmac_priv {
192 /* Frequently used values are kept adjacent for cache effect */
Ong Boon Leongdb2f2842021-03-17 09:01:23 +0800193 u32 tx_coal_frames[MTL_MAX_TX_QUEUES];
194 u32 tx_coal_timer[MTL_MAX_TX_QUEUES];
195 u32 rx_coal_frames[MTL_MAX_TX_QUEUES];
Joao Pintoce736782017-04-06 09:49:10 +0100196
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700197 int tx_coalesce;
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000198 int hwts_tx_en;
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000199 bool tx_path_in_lpi_mode;
Alexandre TORGUEf748be52016-04-01 11:37:34 +0200200 bool tso;
Jose Abreu67afd6d2019-08-17 20:54:43 +0200201 int sph;
Ong Boon Leongd08d32d2021-04-01 10:11:13 +0800202 int sph_cap;
Jose Abreu8000ddc2019-08-17 20:54:47 +0200203 u32 sarc_type;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700204
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700205 unsigned int dma_buf_sz;
Giuseppe Cavallaro22ad3832016-02-29 14:27:41 +0100206 unsigned int rx_copybreak;
Ong Boon Leongdb2f2842021-03-17 09:01:23 +0800207 u32 rx_riwt[MTL_MAX_TX_QUEUES];
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000208 int hwts_rx_en;
LABBE Corentin5bacd772017-03-29 07:05:40 +0200209
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000210 void __iomem *ioaddr;
211 struct net_device *dev;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700212 struct device *device;
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000213 struct mac_device_info *hw;
Jose Abreu7cfde0a2018-06-15 16:17:27 +0100214 int (*hwif_quirks)(struct stmmac_priv *priv);
Thierry Reding29555fa2018-05-24 16:09:07 +0200215 struct mutex lock;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700216
Joao Pinto54139cf2017-04-06 09:49:09 +0100217 /* RX Queue */
218 struct stmmac_rx_queue rx_queue[MTL_MAX_RX_QUEUES];
Song, Yoong Siangaa042f62020-09-16 15:40:20 +0800219 unsigned int dma_rx_size;
Joao Pinto54139cf2017-04-06 09:49:09 +0100220
Joao Pintoce736782017-04-06 09:49:10 +0100221 /* TX Queue */
222 struct stmmac_tx_queue tx_queue[MTL_MAX_TX_QUEUES];
Song, Yoong Siangaa042f62020-09-16 15:40:20 +0800223 unsigned int dma_tx_size;
Joao Pintoce736782017-04-06 09:49:10 +0100224
Jose Abreu8fce3332018-09-17 09:22:56 +0100225 /* Generic channel for NAPI */
226 struct stmmac_channel channel[STMMAC_CH_MAX];
227
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700228 int speed;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700229 unsigned int flow_ctrl;
230 unsigned int pause;
231 struct mii_bus *mii;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000232 int mii_irq[PHY_MAX_ADDR];
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700233
Jose Abreueeef2f62019-06-11 17:18:46 +0200234 struct phylink_config phylink_config;
235 struct phylink *phylink;
236
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000237 struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
Jose Abreu8bf993a2018-03-29 10:40:19 +0100238 struct stmmac_safety_stats sstats;
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000239 struct plat_stmmacenet_data *plat;
240 struct dma_features dma_cap;
241 struct stmmac_counters mmc;
242 int hw_cap_support;
243 int synopsys_id;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700244 u32 msg_enable;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700245 int wolopts;
Deepak Sikri3172d3a2011-09-01 21:51:37 +0000246 int wol_irq;
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000247 int clk_csr;
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000248 struct timer_list eee_ctrl_timer;
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000249 int lpi_irq;
250 int eee_enabled;
251 int eee_active;
252 int tx_lpi_timer;
Vineetha G. Jaya Kumaran388e2012020-10-01 23:56:09 +0800253 int tx_lpi_enabled;
254 int eee_tw_timer;
Vineetha G. Jaya Kumaranbe1c7ea2020-10-28 00:00:51 +0800255 bool eee_sw_timer_en;
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +0000256 unsigned int mode;
Jose Abreu5f0456b2018-04-23 09:05:15 +0100257 unsigned int chain_mode;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000258 int extend_desc;
Artem Panfilovd6228b72019-01-20 19:05:15 +0300259 struct hwtstamp_config tstamp_config;
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +0000260 struct ptp_clock *ptp_clock;
261 struct ptp_clock_info ptp_clock_ops;
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000262 unsigned int default_addend;
Jose Abreu9a8a02c2018-05-31 18:01:27 +0100263 u32 sub_second_inc;
264 u32 systime_flags;
Giuseppe CAVALLARO1bb6dea2013-04-08 02:10:02 +0000265 u32 adv_ts;
266 int use_riwt;
Srinivas Kandagatla89f7f2c2014-01-16 10:53:00 +0000267 int irq_wake;
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +0000268 spinlock_t ptp_lock;
Tan Tee Minf4da5652021-04-14 08:16:17 +0800269 /* Protects auxiliary snapshot registers from concurrent access. */
270 struct mutex aux_ts_lock;
271
Alexandre TORGUE36ff7c12016-04-01 11:37:32 +0200272 void __iomem *mmcaddr;
Giuseppe CAVALLAROba1ffd72016-11-14 09:27:29 +0100273 void __iomem *ptpaddr;
Jose Abreu3cd1cfc2019-08-07 10:03:14 +0200274 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
Ong Boon Leong8532f612021-03-26 01:39:14 +0800275 int sfty_ce_irq;
276 int sfty_ue_irq;
277 int rx_irq[MTL_MAX_RX_QUEUES];
278 int tx_irq[MTL_MAX_TX_QUEUES];
279 /*irq name */
280 char int_name_mac[IFNAMSIZ + 9];
281 char int_name_wol[IFNAMSIZ + 9];
282 char int_name_lpi[IFNAMSIZ + 9];
283 char int_name_sfty_ce[IFNAMSIZ + 10];
284 char int_name_sfty_ue[IFNAMSIZ + 10];
285 char int_name_rx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 14];
286 char int_name_tx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 18];
Mathieu Olivari466c5ac2015-05-22 19:03:29 -0700287
288#ifdef CONFIG_DEBUG_FS
289 struct dentry *dbgfs_dir;
Mathieu Olivari466c5ac2015-05-22 19:03:29 -0700290#endif
Jose Abreu34877a12018-03-29 10:40:18 +0100291
292 unsigned long state;
293 struct workqueue_struct *wq;
294 struct work_struct service_task;
Jose Abreu4dbbe8d2018-05-04 10:01:38 +0100295
Ong Boon Leong5a558612021-03-24 17:07:42 +0800296 /* Workqueue for handling FPE hand-shaking */
297 unsigned long fpe_task_state;
298 struct workqueue_struct *fpe_wq;
299 struct work_struct fpe_task;
300 char wq_name[IFNAMSIZ + 4];
301
Jose Abreu4dbbe8d2018-05-04 10:01:38 +0100302 /* TC Handling */
303 unsigned int tc_entries_max;
304 unsigned int tc_off_max;
305 struct stmmac_tc_entry *tc_entries;
Jose Abreu425eabd2019-09-04 15:16:56 +0200306 unsigned int flow_entries_max;
307 struct stmmac_flow_entry *flow_entries;
Ong Boon Leongaeb7c752021-12-11 22:51:34 +0800308 unsigned int rfs_entries_max[STMMAC_RFS_T_MAX];
309 unsigned int rfs_entries_cnt[STMMAC_RFS_T_MAX];
310 unsigned int rfs_entries_total;
311 struct stmmac_rfs_entry *rfs_entries;
Jose Abreu9a8a02c2018-05-31 18:01:27 +0100312
313 /* Pulse Per Second output */
314 struct stmmac_pps_cfg pps[STMMAC_PPS_MAX];
Jose Abreu76067452019-08-07 10:03:12 +0200315
316 /* Receive Side Scaling */
317 struct stmmac_rss rss;
Ong Boon Leong5fabb012021-04-01 10:11:15 +0800318
319 /* XDP BPF Program */
Ong Boon Leongbba25562021-04-13 17:36:25 +0800320 unsigned long *af_xdp_zc_qps;
Ong Boon Leong5fabb012021-04-01 10:11:15 +0800321 struct bpf_prog *xdp_prog;
Jose Abreu34877a12018-03-29 10:40:18 +0100322};
323
324enum stmmac_state {
325 STMMAC_DOWN,
326 STMMAC_RESET_REQUESTED,
327 STMMAC_RESETING,
328 STMMAC_SERVICE_SCHED,
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700329};
330
Joe Perchesd6cc64e2013-09-23 11:37:59 -0700331int stmmac_mdio_unregister(struct net_device *ndev);
332int stmmac_mdio_register(struct net_device *ndev);
Srinivas Kandagatla073752a2014-01-16 10:52:27 +0000333int stmmac_mdio_reset(struct mii_bus *mii);
Voon Weifeng597a68c2021-06-08 11:51:56 +0800334int stmmac_xpcs_setup(struct mii_bus *mii);
Joe Perchesd6cc64e2013-09-23 11:37:59 -0700335void stmmac_set_ethtool_ops(struct net_device *netdev);
Andy Shevchenko915af652014-11-05 11:45:32 +0200336
Holger Assmanna6da2bb2021-11-21 19:57:04 +0200337int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags);
Giuseppe CAVALLAROc30a70d2016-10-19 09:06:41 +0200338void stmmac_ptp_register(struct stmmac_priv *priv);
Joe Perchesd6cc64e2013-09-23 11:37:59 -0700339void stmmac_ptp_unregister(struct stmmac_priv *priv);
Ong Boon Leongac746c82021-11-11 22:39:49 +0800340int stmmac_xdp_open(struct net_device *dev);
341void stmmac_xdp_release(struct net_device *dev);
Joachim Eastwoodf4e7bd82016-05-01 22:58:19 +0200342int stmmac_resume(struct device *dev);
343int stmmac_suspend(struct device *dev);
344int stmmac_dvr_remove(struct device *dev);
Joachim Eastwood15ffac72015-05-20 20:03:08 +0200345int stmmac_dvr_probe(struct device *device,
346 struct plat_stmmacenet_data *plat_dat,
347 struct stmmac_resources *res);
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000348void stmmac_disable_eee_mode(struct stmmac_priv *priv);
349bool stmmac_eee_init(struct stmmac_priv *priv);
Ong Boon Leong0366f7e2020-09-15 09:28:38 +0800350int stmmac_reinit_queues(struct net_device *dev, u32 rx_cnt, u32 tx_cnt);
Song, Yoong Siangaa042f62020-09-16 15:40:20 +0800351int stmmac_reinit_ringparam(struct net_device *dev, u32 rx_size, u32 tx_size);
Joakim Zhang5ec55822021-03-15 20:16:46 +0800352int stmmac_bus_clks_config(struct stmmac_priv *priv, bool enabled);
Ong Boon Leong5a558612021-03-24 17:07:42 +0800353void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable);
Giuseppe CAVALLAROba1377ff2012-04-04 04:33:25 +0000354
Ong Boon Leong5fabb012021-04-01 10:11:15 +0800355static inline bool stmmac_xdp_is_enabled(struct stmmac_priv *priv)
356{
357 return !!priv->xdp_prog;
358}
359
360static inline unsigned int stmmac_rx_offset(struct stmmac_priv *priv)
361{
362 if (stmmac_xdp_is_enabled(priv))
Marc Zyngier12d125b2021-08-20 19:30:02 +0100363 return XDP_PACKET_HEADROOM;
Ong Boon Leong5fabb012021-04-01 10:11:15 +0800364
Marc Zyngier12d125b2021-08-20 19:30:02 +0100365 return 0;
Ong Boon Leong5fabb012021-04-01 10:11:15 +0800366}
367
Ong Boon Leongbba25562021-04-13 17:36:25 +0800368void stmmac_disable_rx_queue(struct stmmac_priv *priv, u32 queue);
369void stmmac_enable_rx_queue(struct stmmac_priv *priv, u32 queue);
Ong Boon Leong132c32e2021-04-13 17:36:26 +0800370void stmmac_disable_tx_queue(struct stmmac_priv *priv, u32 queue);
371void stmmac_enable_tx_queue(struct stmmac_priv *priv, u32 queue);
Ong Boon Leongbba25562021-04-13 17:36:25 +0800372int stmmac_xsk_wakeup(struct net_device *dev, u32 queue, u32 flags);
Xiaoliang Yang81c52c42021-07-05 18:26:53 +0800373struct timespec64 stmmac_calc_tas_basetime(ktime_t old_base_time,
374 ktime_t current_time,
375 u64 cycle_time);
Ong Boon Leongbba25562021-04-13 17:36:25 +0800376
Jose Abreu091810d2019-05-24 10:20:19 +0200377#if IS_ENABLED(CONFIG_STMMAC_SELFTESTS)
378void stmmac_selftest_run(struct net_device *dev,
379 struct ethtool_test *etest, u64 *buf);
380void stmmac_selftest_get_strings(struct stmmac_priv *priv, u8 *data);
381int stmmac_selftest_get_count(struct stmmac_priv *priv);
382#else
383static inline void stmmac_selftest_run(struct net_device *dev,
384 struct ethtool_test *etest, u64 *buf)
385{
386 /* Not enabled */
387}
388static inline void stmmac_selftest_get_strings(struct stmmac_priv *priv,
389 u8 *data)
390{
391 /* Not enabled */
392}
393static inline int stmmac_selftest_get_count(struct stmmac_priv *priv)
394{
395 return -EOPNOTSUPP;
396}
397#endif /* CONFIG_STMMAC_SELFTESTS */
398
Rayagond Kokatanurbd4242d2012-08-22 21:28:18 +0000399#endif /* __STMMAC_H__ */