1/* SPDX-License-Identifier: GPL-2.0-only */
2/*******************************************************************************
3  Copyright (C) 2007-2009  STMicroelectronics Ltd
4
5
6  Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
7*******************************************************************************/
8
9#ifndef __STMMAC_H__
10#define __STMMAC_H__
11
12#define STMMAC_RESOURCE_NAME   "stmmaceth"
13
14#include <linux/clk.h>
15#include <linux/hrtimer.h>
16#include <linux/if_vlan.h>
17#include <linux/stmmac.h>
18#include <linux/phylink.h>
19#include <linux/pci.h>
20#include "common.h"
21#include <linux/ptp_clock_kernel.h>
22#include <linux/net_tstamp.h>
23#include <linux/reset.h>
24#include <net/page_pool/types.h>
25#include <net/xdp.h>
26#include <uapi/linux/bpf.h>
27
28struct stmmac_resources {
29	void __iomem *addr;
30	u8 mac[ETH_ALEN];
31	int wol_irq;
32	int lpi_irq;
33	int irq;
34	int sfty_ce_irq;
35	int sfty_ue_irq;
36	int rx_irq[MTL_MAX_RX_QUEUES];
37	int tx_irq[MTL_MAX_TX_QUEUES];
38};
39
40enum stmmac_txbuf_type {
41	STMMAC_TXBUF_T_SKB,
42	STMMAC_TXBUF_T_XDP_TX,
43	STMMAC_TXBUF_T_XDP_NDO,
44	STMMAC_TXBUF_T_XSK_TX,
45};
46
47struct stmmac_tx_info {
48	dma_addr_t buf;
49	bool map_as_page;
50	unsigned len;
51	bool last_segment;
52	bool is_jumbo;
53	enum stmmac_txbuf_type buf_type;
54};
55
56#define STMMAC_TBS_AVAIL	BIT(0)
57#define STMMAC_TBS_EN		BIT(1)
58
59/* Frequently used values are kept adjacent for cache effect */
60struct stmmac_tx_queue {
61	u32 tx_count_frames;
62	int tbs;
63	struct hrtimer txtimer;
64	u32 queue_index;
65	struct stmmac_priv *priv_data;
66	struct dma_extended_desc *dma_etx ____cacheline_aligned_in_smp;
67	struct dma_edesc *dma_entx;
68	struct dma_desc *dma_tx;
69	union {
70		struct sk_buff **tx_skbuff;
71		struct xdp_frame **xdpf;
72	};
73	struct stmmac_tx_info *tx_skbuff_dma;
74	struct xsk_buff_pool *xsk_pool;
75	u32 xsk_frames_done;
76	unsigned int cur_tx;
77	unsigned int dirty_tx;
78	dma_addr_t dma_tx_phy;
79	dma_addr_t tx_tail_addr;
80	u32 mss;
81};
82
83struct stmmac_rx_buffer {
84	union {
85		struct {
86			struct page *page;
87			dma_addr_t addr;
88			__u32 page_offset;
89		};
90		struct xdp_buff *xdp;
91	};
92	struct page *sec_page;
93	dma_addr_t sec_addr;
94};
95
96struct stmmac_xdp_buff {
97	struct xdp_buff xdp;
98	struct stmmac_priv *priv;
99	struct dma_desc *desc;
100	struct dma_desc *ndesc;
101};
102
103struct stmmac_rx_queue {
104	u32 rx_count_frames;
105	u32 queue_index;
106	struct xdp_rxq_info xdp_rxq;
107	struct xsk_buff_pool *xsk_pool;
108	struct page_pool *page_pool;
109	struct stmmac_rx_buffer *buf_pool;
110	struct stmmac_priv *priv_data;
111	struct dma_extended_desc *dma_erx;
112	struct dma_desc *dma_rx ____cacheline_aligned_in_smp;
113	unsigned int cur_rx;
114	unsigned int dirty_rx;
115	unsigned int buf_alloc_num;
116	u32 rx_zeroc_thresh;
117	dma_addr_t dma_rx_phy;
118	u32 rx_tail_addr;
119	unsigned int state_saved;
120	struct {
121		struct sk_buff *skb;
122		unsigned int len;
123		unsigned int error;
124	} state;
125};
126
127struct stmmac_channel {
128	struct napi_struct rx_napi ____cacheline_aligned_in_smp;
129	struct napi_struct tx_napi ____cacheline_aligned_in_smp;
130	struct napi_struct rxtx_napi ____cacheline_aligned_in_smp;
131	struct stmmac_priv *priv_data;
132	spinlock_t lock;
133	u32 index;
134};
135
136struct stmmac_tc_entry {
137	bool in_use;
138	bool in_hw;
139	bool is_last;
140	bool is_frag;
141	void *frag_ptr;
142	unsigned int table_pos;
143	u32 handle;
144	u32 prio;
145	struct {
146		u32 match_data;
147		u32 match_en;
148		u8 af:1;
149		u8 rf:1;
150		u8 im:1;
151		u8 nc:1;
152		u8 res1:4;
153		u8 frame_offset;
154		u8 ok_index;
155		u8 dma_ch_no;
156		u32 res2;
157	} __packed val;
158};
159
160#define STMMAC_PPS_MAX		4
161struct stmmac_pps_cfg {
162	bool available;
163	struct timespec64 start;
164	struct timespec64 period;
165};
166
167struct stmmac_rss {
168	int enable;
169	u8 key[STMMAC_RSS_HASH_KEY_SIZE];
170	u32 table[STMMAC_RSS_MAX_TABLE_SIZE];
171};
172
173#define STMMAC_FLOW_ACTION_DROP		BIT(0)
174struct stmmac_flow_entry {
175	unsigned long cookie;
176	unsigned long action;
177	u8 ip_proto;
178	int in_use;
179	int idx;
180	int is_l4;
181};
182
183/* Rx Frame Steering */
184enum stmmac_rfs_type {
185	STMMAC_RFS_T_VLAN,
186	STMMAC_RFS_T_LLDP,
187	STMMAC_RFS_T_1588,
188	STMMAC_RFS_T_MAX,
189};
190
191struct stmmac_rfs_entry {
192	unsigned long cookie;
193	u16 etype;
194	int in_use;
195	int type;
196	int tc;
197};
198
199struct stmmac_dma_conf {
200	unsigned int dma_buf_sz;
201
202	/* RX Queue */
203	struct stmmac_rx_queue rx_queue[MTL_MAX_RX_QUEUES];
204	unsigned int dma_rx_size;
205
206	/* TX Queue */
207	struct stmmac_tx_queue tx_queue[MTL_MAX_TX_QUEUES];
208	unsigned int dma_tx_size;
209};
210
211struct stmmac_priv {
212	/* Frequently used values are kept adjacent for cache effect */
213	u32 tx_coal_frames[MTL_MAX_TX_QUEUES];
214	u32 tx_coal_timer[MTL_MAX_TX_QUEUES];
215	u32 rx_coal_frames[MTL_MAX_TX_QUEUES];
216
217	int hwts_tx_en;
218	bool tx_path_in_lpi_mode;
219	bool tso;
220	int sph;
221	int sph_cap;
222	u32 sarc_type;
223
224	unsigned int rx_copybreak;
225	u32 rx_riwt[MTL_MAX_TX_QUEUES];
226	int hwts_rx_en;
227
228	void __iomem *ioaddr;
229	struct net_device *dev;
230	struct device *device;
231	struct mac_device_info *hw;
232	int (*hwif_quirks)(struct stmmac_priv *priv);
233	struct mutex lock;
234
235	struct stmmac_dma_conf dma_conf;
236
237	/* Generic channel for NAPI */
238	struct stmmac_channel channel[STMMAC_CH_MAX];
239
240	int speed;
241	unsigned int flow_ctrl;
242	unsigned int pause;
243	struct mii_bus *mii;
244
245	struct phylink_config phylink_config;
246	struct phylink *phylink;
247
248	struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
249	struct stmmac_safety_stats sstats;
250	struct plat_stmmacenet_data *plat;
251	struct dma_features dma_cap;
252	struct stmmac_counters mmc;
253	int hw_cap_support;
254	int synopsys_id;
255	u32 msg_enable;
256	int wolopts;
257	int wol_irq;
258	bool wol_irq_disabled;
259	int clk_csr;
260	struct timer_list eee_ctrl_timer;
261	int lpi_irq;
262	int eee_enabled;
263	int eee_active;
264	int tx_lpi_timer;
265	int tx_lpi_enabled;
266	int eee_tw_timer;
267	bool eee_sw_timer_en;
268	unsigned int mode;
269	unsigned int chain_mode;
270	int extend_desc;
271	struct hwtstamp_config tstamp_config;
272	struct ptp_clock *ptp_clock;
273	struct ptp_clock_info ptp_clock_ops;
274	unsigned int default_addend;
275	u32 sub_second_inc;
276	u32 systime_flags;
277	u32 adv_ts;
278	int use_riwt;
279	int irq_wake;
280	rwlock_t ptp_lock;
281	/* Protects auxiliary snapshot registers from concurrent access. */
282	struct mutex aux_ts_lock;
283	wait_queue_head_t tstamp_busy_wait;
284
285	void __iomem *mmcaddr;
286	void __iomem *ptpaddr;
287	unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
288	int sfty_ce_irq;
289	int sfty_ue_irq;
290	int rx_irq[MTL_MAX_RX_QUEUES];
291	int tx_irq[MTL_MAX_TX_QUEUES];
292	/*irq name */
293	char int_name_mac[IFNAMSIZ + 9];
294	char int_name_wol[IFNAMSIZ + 9];
295	char int_name_lpi[IFNAMSIZ + 9];
296	char int_name_sfty_ce[IFNAMSIZ + 10];
297	char int_name_sfty_ue[IFNAMSIZ + 10];
298	char int_name_rx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 14];
299	char int_name_tx_irq[MTL_MAX_TX_QUEUES][IFNAMSIZ + 18];
300
301#ifdef CONFIG_DEBUG_FS
302	struct dentry *dbgfs_dir;
303#endif
304
305	unsigned long state;
306	struct workqueue_struct *wq;
307	struct work_struct service_task;
308
309	/* Workqueue for handling FPE hand-shaking */
310	unsigned long fpe_task_state;
311	struct workqueue_struct *fpe_wq;
312	struct work_struct fpe_task;
313	char wq_name[IFNAMSIZ + 4];
314
315	/* TC Handling */
316	unsigned int tc_entries_max;
317	unsigned int tc_off_max;
318	struct stmmac_tc_entry *tc_entries;
319	unsigned int flow_entries_max;
320	struct stmmac_flow_entry *flow_entries;
321	unsigned int rfs_entries_max[STMMAC_RFS_T_MAX];
322	unsigned int rfs_entries_cnt[STMMAC_RFS_T_MAX];
323	unsigned int rfs_entries_total;
324	struct stmmac_rfs_entry *rfs_entries;
325
326	/* Pulse Per Second output */
327	struct stmmac_pps_cfg pps[STMMAC_PPS_MAX];
328
329	/* Receive Side Scaling */
330	struct stmmac_rss rss;
331
332	/* XDP BPF Program */
333	unsigned long *af_xdp_zc_qps;
334	struct bpf_prog *xdp_prog;
335};
336
337enum stmmac_state {
338	STMMAC_DOWN,
339	STMMAC_RESET_REQUESTED,
340	STMMAC_RESETING,
341	STMMAC_SERVICE_SCHED,
342};
343
344int stmmac_mdio_unregister(struct net_device *ndev);
345int stmmac_mdio_register(struct net_device *ndev);
346int stmmac_mdio_reset(struct mii_bus *mii);
347int stmmac_xpcs_setup(struct mii_bus *mii);
348void stmmac_set_ethtool_ops(struct net_device *netdev);
349
350int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags);
351void stmmac_ptp_register(struct stmmac_priv *priv);
352void stmmac_ptp_unregister(struct stmmac_priv *priv);
353int stmmac_xdp_open(struct net_device *dev);
354void stmmac_xdp_release(struct net_device *dev);
355int stmmac_resume(struct device *dev);
356int stmmac_suspend(struct device *dev);
357void stmmac_dvr_remove(struct device *dev);
358int stmmac_dvr_probe(struct device *device,
359		     struct plat_stmmacenet_data *plat_dat,
360		     struct stmmac_resources *res);
361void stmmac_disable_eee_mode(struct stmmac_priv *priv);
362bool stmmac_eee_init(struct stmmac_priv *priv);
363int stmmac_reinit_queues(struct net_device *dev, u32 rx_cnt, u32 tx_cnt);
364int stmmac_reinit_ringparam(struct net_device *dev, u32 rx_size, u32 tx_size);
365int stmmac_bus_clks_config(struct stmmac_priv *priv, bool enabled);
366void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable);
367
368static inline bool stmmac_xdp_is_enabled(struct stmmac_priv *priv)
369{
370	return !!priv->xdp_prog;
371}
372
373static inline unsigned int stmmac_rx_offset(struct stmmac_priv *priv)
374{
375	if (stmmac_xdp_is_enabled(priv))
376		return XDP_PACKET_HEADROOM;
377
378	return 0;
379}
380
381void stmmac_disable_rx_queue(struct stmmac_priv *priv, u32 queue);
382void stmmac_enable_rx_queue(struct stmmac_priv *priv, u32 queue);
383void stmmac_disable_tx_queue(struct stmmac_priv *priv, u32 queue);
384void stmmac_enable_tx_queue(struct stmmac_priv *priv, u32 queue);
385int stmmac_xsk_wakeup(struct net_device *dev, u32 queue, u32 flags);
386struct timespec64 stmmac_calc_tas_basetime(ktime_t old_base_time,
387					   ktime_t current_time,
388					   u64 cycle_time);
389
390#if IS_ENABLED(CONFIG_STMMAC_SELFTESTS)
391void stmmac_selftest_run(struct net_device *dev,
392			 struct ethtool_test *etest, u64 *buf);
393void stmmac_selftest_get_strings(struct stmmac_priv *priv, u8 *data);
394int stmmac_selftest_get_count(struct stmmac_priv *priv);
395#else
396static inline void stmmac_selftest_run(struct net_device *dev,
397				       struct ethtool_test *etest, u64 *buf)
398{
399	/* Not enabled */
400}
401static inline void stmmac_selftest_get_strings(struct stmmac_priv *priv,
402					       u8 *data)
403{
404	/* Not enabled */
405}
406static inline int stmmac_selftest_get_count(struct stmmac_priv *priv)
407{
408	return -EOPNOTSUPP;
409}
410#endif /* CONFIG_STMMAC_SELFTESTS */
411
412#endif /* __STMMAC_H__ */
413