1 /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
2 /* Copyright 2017-2019 NXP */
3 
4 #include <linux/timer.h>
5 #include <linux/pci.h>
6 #include <linux/netdevice.h>
7 #include <linux/etherdevice.h>
8 #include <linux/dma-mapping.h>
9 #include <linux/skbuff.h>
10 #include <linux/ethtool.h>
11 #include <linux/if_vlan.h>
12 #include <linux/phylink.h>
13 #include <linux/dim.h>
14 #include <net/xdp.h>
15 
16 #include "enetc_hw.h"
17 
18 #define ENETC_MAC_MAXFRM_SIZE	9600
19 #define ENETC_MAX_MTU		(ENETC_MAC_MAXFRM_SIZE - \
20 				(ETH_FCS_LEN + ETH_HLEN + VLAN_HLEN))
21 
22 #define ENETC_CBD_DATA_MEM_ALIGN 64
23 
24 struct enetc_tx_swbd {
25 	union {
26 		struct sk_buff *skb;
27 		struct xdp_frame *xdp_frame;
28 	};
29 	dma_addr_t dma;
30 	struct page *page;	/* valid only if is_xdp_tx */
31 	u16 page_offset;	/* valid only if is_xdp_tx */
32 	u16 len;
33 	enum dma_data_direction dir;
34 	u8 is_dma_page:1;
35 	u8 check_wb:1;
36 	u8 do_twostep_tstamp:1;
37 	u8 is_eof:1;
38 	u8 is_xdp_tx:1;
39 	u8 is_xdp_redirect:1;
40 	u8 qbv_en:1;
41 };
42 
43 #define ENETC_RX_MAXFRM_SIZE	ENETC_MAC_MAXFRM_SIZE
44 #define ENETC_RXB_TRUESIZE	2048 /* PAGE_SIZE >> 1 */
45 #define ENETC_RXB_PAD		NET_SKB_PAD /* add extra space if needed */
46 #define ENETC_RXB_DMA_SIZE	\
47 	(SKB_WITH_OVERHEAD(ENETC_RXB_TRUESIZE) - ENETC_RXB_PAD)
48 #define ENETC_RXB_DMA_SIZE_XDP	\
49 	(SKB_WITH_OVERHEAD(ENETC_RXB_TRUESIZE) - XDP_PACKET_HEADROOM)
50 
51 struct enetc_rx_swbd {
52 	dma_addr_t dma;
53 	struct page *page;
54 	u16 page_offset;
55 	enum dma_data_direction dir;
56 	u16 len;
57 };
58 
59 /* ENETC overhead: optional extension BD + 1 BD gap */
60 #define ENETC_TXBDS_NEEDED(val)	((val) + 2)
61 /* max # of chained Tx BDs is 15, including head and extension BD */
62 #define ENETC_MAX_SKB_FRAGS	13
63 #define ENETC_TXBDS_MAX_NEEDED	ENETC_TXBDS_NEEDED(ENETC_MAX_SKB_FRAGS + 1)
64 
65 struct enetc_ring_stats {
66 	unsigned int packets;
67 	unsigned int bytes;
68 	unsigned int rx_alloc_errs;
69 	unsigned int xdp_drops;
70 	unsigned int xdp_tx;
71 	unsigned int xdp_tx_drops;
72 	unsigned int xdp_redirect;
73 	unsigned int xdp_redirect_failures;
74 	unsigned int recycles;
75 	unsigned int recycle_failures;
76 	unsigned int win_drop;
77 };
78 
79 struct enetc_xdp_data {
80 	struct xdp_rxq_info rxq;
81 	struct bpf_prog *prog;
82 	int xdp_tx_in_flight;
83 };
84 
85 #define ENETC_RX_RING_DEFAULT_SIZE	2048
86 #define ENETC_TX_RING_DEFAULT_SIZE	2048
87 #define ENETC_DEFAULT_TX_WORK		(ENETC_TX_RING_DEFAULT_SIZE / 2)
88 
89 struct enetc_bdr_resource {
90 	/* Input arguments saved for teardown */
91 	struct device *dev; /* for DMA mapping */
92 	size_t bd_count;
93 	size_t bd_size;
94 
95 	/* Resource proper */
96 	void *bd_base; /* points to Rx or Tx BD ring */
97 	dma_addr_t bd_dma_base;
98 	union {
99 		struct enetc_tx_swbd *tx_swbd;
100 		struct enetc_rx_swbd *rx_swbd;
101 	};
102 	char *tso_headers;
103 	dma_addr_t tso_headers_dma;
104 };
105 
106 struct enetc_bdr {
107 	struct device *dev; /* for DMA mapping */
108 	struct net_device *ndev;
109 	void *bd_base; /* points to Rx or Tx BD ring */
110 	union {
111 		void __iomem *tpir;
112 		void __iomem *rcir;
113 	};
114 	u16 index;
115 	u16 prio;
116 	int bd_count; /* # of BDs */
117 	int next_to_use;
118 	int next_to_clean;
119 	union {
120 		struct enetc_tx_swbd *tx_swbd;
121 		struct enetc_rx_swbd *rx_swbd;
122 	};
123 	union {
124 		void __iomem *tcir; /* Tx */
125 		int next_to_alloc; /* Rx */
126 	};
127 	void __iomem *idr; /* Interrupt Detect Register pointer */
128 
129 	int buffer_offset;
130 	struct enetc_xdp_data xdp;
131 
132 	struct enetc_ring_stats stats;
133 
134 	dma_addr_t bd_dma_base;
135 	u8 tsd_enable; /* Time specific departure */
136 	bool ext_en; /* enable h/w descriptor extensions */
137 
138 	/* DMA buffer for TSO headers */
139 	char *tso_headers;
140 	dma_addr_t tso_headers_dma;
141 } ____cacheline_aligned_in_smp;
142 
enetc_bdr_idx_inc(struct enetc_bdr * bdr,int * i)143 static inline void enetc_bdr_idx_inc(struct enetc_bdr *bdr, int *i)
144 {
145 	if (unlikely(++*i == bdr->bd_count))
146 		*i = 0;
147 }
148 
enetc_bd_unused(struct enetc_bdr * bdr)149 static inline int enetc_bd_unused(struct enetc_bdr *bdr)
150 {
151 	if (bdr->next_to_clean > bdr->next_to_use)
152 		return bdr->next_to_clean - bdr->next_to_use - 1;
153 
154 	return bdr->bd_count + bdr->next_to_clean - bdr->next_to_use - 1;
155 }
156 
enetc_swbd_unused(struct enetc_bdr * bdr)157 static inline int enetc_swbd_unused(struct enetc_bdr *bdr)
158 {
159 	if (bdr->next_to_clean > bdr->next_to_alloc)
160 		return bdr->next_to_clean - bdr->next_to_alloc - 1;
161 
162 	return bdr->bd_count + bdr->next_to_clean - bdr->next_to_alloc - 1;
163 }
164 
165 /* Control BD ring */
166 #define ENETC_CBDR_DEFAULT_SIZE	64
167 struct enetc_cbdr {
168 	void *bd_base; /* points to Rx or Tx BD ring */
169 	void __iomem *pir;
170 	void __iomem *cir;
171 	void __iomem *mr; /* mode register */
172 
173 	int bd_count; /* # of BDs */
174 	int next_to_use;
175 	int next_to_clean;
176 
177 	dma_addr_t bd_dma_base;
178 	struct device *dma_dev;
179 };
180 
181 #define ENETC_TXBD(BDR, i) (&(((union enetc_tx_bd *)((BDR).bd_base))[i]))
182 
enetc_rxbd(struct enetc_bdr * rx_ring,int i)183 static inline union enetc_rx_bd *enetc_rxbd(struct enetc_bdr *rx_ring, int i)
184 {
185 	int hw_idx = i;
186 
187 	if (IS_ENABLED(CONFIG_FSL_ENETC_PTP_CLOCK) && rx_ring->ext_en)
188 		hw_idx = 2 * i;
189 
190 	return &(((union enetc_rx_bd *)rx_ring->bd_base)[hw_idx]);
191 }
192 
enetc_rxbd_next(struct enetc_bdr * rx_ring,union enetc_rx_bd ** old_rxbd,int * old_index)193 static inline void enetc_rxbd_next(struct enetc_bdr *rx_ring,
194 				   union enetc_rx_bd **old_rxbd, int *old_index)
195 {
196 	union enetc_rx_bd *new_rxbd = *old_rxbd;
197 	int new_index = *old_index;
198 
199 	new_rxbd++;
200 
201 	if (IS_ENABLED(CONFIG_FSL_ENETC_PTP_CLOCK) && rx_ring->ext_en)
202 		new_rxbd++;
203 
204 	if (unlikely(++new_index == rx_ring->bd_count)) {
205 		new_rxbd = rx_ring->bd_base;
206 		new_index = 0;
207 	}
208 
209 	*old_rxbd = new_rxbd;
210 	*old_index = new_index;
211 }
212 
enetc_rxbd_ext(union enetc_rx_bd * rxbd)213 static inline union enetc_rx_bd *enetc_rxbd_ext(union enetc_rx_bd *rxbd)
214 {
215 	return ++rxbd;
216 }
217 
218 struct enetc_msg_swbd {
219 	void *vaddr;
220 	dma_addr_t dma;
221 	int size;
222 };
223 
224 #define ENETC_REV1	0x1
225 enum enetc_errata {
226 	ENETC_ERR_VLAN_ISOL	= BIT(0),
227 	ENETC_ERR_UCMCSWP	= BIT(1),
228 };
229 
230 #define ENETC_SI_F_PSFP BIT(0)
231 #define ENETC_SI_F_QBV  BIT(1)
232 #define ENETC_SI_F_QBU  BIT(2)
233 
234 /* PCI IEP device data */
235 struct enetc_si {
236 	struct pci_dev *pdev;
237 	struct enetc_hw hw;
238 	enum enetc_errata errata;
239 
240 	struct net_device *ndev; /* back ref. */
241 
242 	struct enetc_cbdr cbd_ring;
243 
244 	int num_rx_rings; /* how many rings are available in the SI */
245 	int num_tx_rings;
246 	int num_fs_entries;
247 	int num_rss; /* number of RSS buckets */
248 	unsigned short pad;
249 	int hw_features;
250 };
251 
252 #define ENETC_SI_ALIGN	32
253 
enetc_si_priv(const struct enetc_si * si)254 static inline void *enetc_si_priv(const struct enetc_si *si)
255 {
256 	return (char *)si + ALIGN(sizeof(struct enetc_si), ENETC_SI_ALIGN);
257 }
258 
enetc_si_is_pf(struct enetc_si * si)259 static inline bool enetc_si_is_pf(struct enetc_si *si)
260 {
261 	return !!(si->hw.port);
262 }
263 
enetc_pf_to_port(struct pci_dev * pf_pdev)264 static inline int enetc_pf_to_port(struct pci_dev *pf_pdev)
265 {
266 	switch (pf_pdev->devfn) {
267 	case 0:
268 		return 0;
269 	case 1:
270 		return 1;
271 	case 2:
272 		return 2;
273 	case 6:
274 		return 3;
275 	default:
276 		return -1;
277 	}
278 }
279 
280 #define ENETC_MAX_NUM_TXQS	8
281 #define ENETC_INT_NAME_MAX	(IFNAMSIZ + 8)
282 
283 struct enetc_int_vector {
284 	void __iomem *rbier;
285 	void __iomem *tbier_base;
286 	void __iomem *ricr1;
287 	unsigned long tx_rings_map;
288 	int count_tx_rings;
289 	u32 rx_ictt;
290 	u16 comp_cnt;
291 	bool rx_dim_en, rx_napi_work;
292 	struct napi_struct napi ____cacheline_aligned_in_smp;
293 	struct dim rx_dim ____cacheline_aligned_in_smp;
294 	char name[ENETC_INT_NAME_MAX];
295 
296 	struct enetc_bdr rx_ring;
297 	struct enetc_bdr tx_ring[] __counted_by(count_tx_rings);
298 } ____cacheline_aligned_in_smp;
299 
300 struct enetc_cls_rule {
301 	struct ethtool_rx_flow_spec fs;
302 	int used;
303 };
304 
305 #define ENETC_MAX_BDR_INT	2 /* fixed to max # of available cpus */
306 struct psfp_cap {
307 	u32 max_streamid;
308 	u32 max_psfp_filter;
309 	u32 max_psfp_gate;
310 	u32 max_psfp_gatelist;
311 	u32 max_psfp_meter;
312 };
313 
314 #define ENETC_F_TX_TSTAMP_MASK	0xff
315 enum enetc_active_offloads {
316 	/* 8 bits reserved for TX timestamp types (hwtstamp_tx_types) */
317 	ENETC_F_TX_TSTAMP		= BIT(0),
318 	ENETC_F_TX_ONESTEP_SYNC_TSTAMP	= BIT(1),
319 
320 	ENETC_F_RX_TSTAMP		= BIT(8),
321 	ENETC_F_QBV			= BIT(9),
322 	ENETC_F_QCI			= BIT(10),
323 	ENETC_F_QBU			= BIT(11),
324 };
325 
326 enum enetc_flags_bit {
327 	ENETC_TX_ONESTEP_TSTAMP_IN_PROGRESS = 0,
328 };
329 
330 /* interrupt coalescing modes */
331 enum enetc_ic_mode {
332 	/* one interrupt per frame */
333 	ENETC_IC_NONE = 0,
334 	/* activated when int coalescing time is set to a non-0 value */
335 	ENETC_IC_RX_MANUAL = BIT(0),
336 	ENETC_IC_TX_MANUAL = BIT(1),
337 	/* use dynamic interrupt moderation */
338 	ENETC_IC_RX_ADAPTIVE = BIT(2),
339 };
340 
341 #define ENETC_RXIC_PKTTHR	min_t(u32, 256, ENETC_RX_RING_DEFAULT_SIZE / 2)
342 #define ENETC_TXIC_PKTTHR	min_t(u32, 128, ENETC_TX_RING_DEFAULT_SIZE / 2)
343 #define ENETC_TXIC_TIMETHR	enetc_usecs_to_cycles(600)
344 
345 struct enetc_ndev_priv {
346 	struct net_device *ndev;
347 	struct device *dev; /* dma-mapping device */
348 	struct enetc_si *si;
349 
350 	int bdr_int_num; /* number of Rx/Tx ring interrupts */
351 	struct enetc_int_vector *int_vector[ENETC_MAX_BDR_INT];
352 	u16 num_rx_rings, num_tx_rings;
353 	u16 rx_bd_count, tx_bd_count;
354 
355 	u16 msg_enable;
356 
357 	u8 preemptible_tcs;
358 
359 	enum enetc_active_offloads active_offloads;
360 
361 	u32 speed; /* store speed for compare update pspeed */
362 
363 	struct enetc_bdr **xdp_tx_ring;
364 	struct enetc_bdr *tx_ring[16];
365 	struct enetc_bdr *rx_ring[16];
366 	const struct enetc_bdr_resource *tx_res;
367 	const struct enetc_bdr_resource *rx_res;
368 
369 	struct enetc_cls_rule *cls_rules;
370 
371 	struct psfp_cap psfp_cap;
372 
373 	/* Minimum number of TX queues required by the network stack */
374 	unsigned int min_num_stack_tx_queues;
375 
376 	struct phylink *phylink;
377 	int ic_mode;
378 	u32 tx_ictt;
379 
380 	struct bpf_prog *xdp_prog;
381 
382 	unsigned long flags;
383 
384 	struct work_struct	tx_onestep_tstamp;
385 	struct sk_buff_head	tx_skbs;
386 
387 	/* Serialize access to MAC Merge state between ethtool requests
388 	 * and link state updates
389 	 */
390 	struct mutex		mm_lock;
391 };
392 
393 /* Messaging */
394 
395 /* VF-PF set primary MAC address message format */
396 struct enetc_msg_cmd_set_primary_mac {
397 	struct enetc_msg_cmd_header header;
398 	struct sockaddr mac;
399 };
400 
401 #define ENETC_CBD(R, i)	(&(((struct enetc_cbd *)((R).bd_base))[i]))
402 
403 #define ENETC_CBDR_TIMEOUT	1000 /* usecs */
404 
405 /* PTP driver exports */
406 extern int enetc_phc_index;
407 
408 /* SI common */
409 u32 enetc_port_mac_rd(struct enetc_si *si, u32 reg);
410 void enetc_port_mac_wr(struct enetc_si *si, u32 reg, u32 val);
411 int enetc_pci_probe(struct pci_dev *pdev, const char *name, int sizeof_priv);
412 void enetc_pci_remove(struct pci_dev *pdev);
413 int enetc_alloc_msix(struct enetc_ndev_priv *priv);
414 void enetc_free_msix(struct enetc_ndev_priv *priv);
415 void enetc_get_si_caps(struct enetc_si *si);
416 void enetc_init_si_rings_params(struct enetc_ndev_priv *priv);
417 int enetc_alloc_si_resources(struct enetc_ndev_priv *priv);
418 void enetc_free_si_resources(struct enetc_ndev_priv *priv);
419 int enetc_configure_si(struct enetc_ndev_priv *priv);
420 
421 int enetc_open(struct net_device *ndev);
422 int enetc_close(struct net_device *ndev);
423 void enetc_start(struct net_device *ndev);
424 void enetc_stop(struct net_device *ndev);
425 netdev_tx_t enetc_xmit(struct sk_buff *skb, struct net_device *ndev);
426 struct net_device_stats *enetc_get_stats(struct net_device *ndev);
427 void enetc_set_features(struct net_device *ndev, netdev_features_t features);
428 int enetc_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd);
429 int enetc_setup_tc_mqprio(struct net_device *ndev, void *type_data);
430 void enetc_reset_tc_mqprio(struct net_device *ndev);
431 int enetc_setup_bpf(struct net_device *ndev, struct netdev_bpf *bpf);
432 int enetc_xdp_xmit(struct net_device *ndev, int num_frames,
433 		   struct xdp_frame **frames, u32 flags);
434 
435 /* ethtool */
436 void enetc_set_ethtool_ops(struct net_device *ndev);
437 void enetc_mm_link_state_update(struct enetc_ndev_priv *priv, bool link);
438 void enetc_mm_commit_preemptible_tcs(struct enetc_ndev_priv *priv);
439 
440 /* control buffer descriptor ring (CBDR) */
441 int enetc_setup_cbdr(struct device *dev, struct enetc_hw *hw, int bd_count,
442 		     struct enetc_cbdr *cbdr);
443 void enetc_teardown_cbdr(struct enetc_cbdr *cbdr);
444 int enetc_set_mac_flt_entry(struct enetc_si *si, int index,
445 			    char *mac_addr, int si_map);
446 int enetc_clear_mac_flt_entry(struct enetc_si *si, int index);
447 int enetc_set_fs_entry(struct enetc_si *si, struct enetc_cmd_rfse *rfse,
448 		       int index);
449 void enetc_set_rss_key(struct enetc_hw *hw, const u8 *bytes);
450 int enetc_get_rss_table(struct enetc_si *si, u32 *table, int count);
451 int enetc_set_rss_table(struct enetc_si *si, const u32 *table, int count);
452 int enetc_send_cmd(struct enetc_si *si, struct enetc_cbd *cbd);
453 
enetc_cbd_alloc_data_mem(struct enetc_si * si,struct enetc_cbd * cbd,int size,dma_addr_t * dma,void ** data_align)454 static inline void *enetc_cbd_alloc_data_mem(struct enetc_si *si,
455 					     struct enetc_cbd *cbd,
456 					     int size, dma_addr_t *dma,
457 					     void **data_align)
458 {
459 	struct enetc_cbdr *ring = &si->cbd_ring;
460 	dma_addr_t dma_align;
461 	void *data;
462 
463 	data = dma_alloc_coherent(ring->dma_dev,
464 				  size + ENETC_CBD_DATA_MEM_ALIGN,
465 				  dma, GFP_KERNEL);
466 	if (!data) {
467 		dev_err(ring->dma_dev, "CBD alloc data memory failed!\n");
468 		return NULL;
469 	}
470 
471 	dma_align = ALIGN(*dma, ENETC_CBD_DATA_MEM_ALIGN);
472 	*data_align = PTR_ALIGN(data, ENETC_CBD_DATA_MEM_ALIGN);
473 
474 	cbd->addr[0] = cpu_to_le32(lower_32_bits(dma_align));
475 	cbd->addr[1] = cpu_to_le32(upper_32_bits(dma_align));
476 	cbd->length = cpu_to_le16(size);
477 
478 	return data;
479 }
480 
enetc_cbd_free_data_mem(struct enetc_si * si,int size,void * data,dma_addr_t * dma)481 static inline void enetc_cbd_free_data_mem(struct enetc_si *si, int size,
482 					   void *data, dma_addr_t *dma)
483 {
484 	struct enetc_cbdr *ring = &si->cbd_ring;
485 
486 	dma_free_coherent(ring->dma_dev, size + ENETC_CBD_DATA_MEM_ALIGN,
487 			  data, *dma);
488 }
489 
490 void enetc_reset_ptcmsdur(struct enetc_hw *hw);
491 void enetc_set_ptcmsdur(struct enetc_hw *hw, u32 *queue_max_sdu);
492 
493 #ifdef CONFIG_FSL_ENETC_QOS
494 int enetc_qos_query_caps(struct net_device *ndev, void *type_data);
495 int enetc_setup_tc_taprio(struct net_device *ndev, void *type_data);
496 void enetc_sched_speed_set(struct enetc_ndev_priv *priv, int speed);
497 int enetc_setup_tc_cbs(struct net_device *ndev, void *type_data);
498 int enetc_setup_tc_txtime(struct net_device *ndev, void *type_data);
499 int enetc_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
500 			    void *cb_priv);
501 int enetc_setup_tc_psfp(struct net_device *ndev, void *type_data);
502 int enetc_psfp_init(struct enetc_ndev_priv *priv);
503 int enetc_psfp_clean(struct enetc_ndev_priv *priv);
504 int enetc_set_psfp(struct net_device *ndev, bool en);
505 
enetc_get_max_cap(struct enetc_ndev_priv * priv)506 static inline void enetc_get_max_cap(struct enetc_ndev_priv *priv)
507 {
508 	struct enetc_hw *hw = &priv->si->hw;
509 	u32 reg;
510 
511 	reg = enetc_port_rd(hw, ENETC_PSIDCAPR);
512 	priv->psfp_cap.max_streamid = reg & ENETC_PSIDCAPR_MSK;
513 	/* Port stream filter capability */
514 	reg = enetc_port_rd(hw, ENETC_PSFCAPR);
515 	priv->psfp_cap.max_psfp_filter = reg & ENETC_PSFCAPR_MSK;
516 	/* Port stream gate capability */
517 	reg = enetc_port_rd(hw, ENETC_PSGCAPR);
518 	priv->psfp_cap.max_psfp_gate = (reg & ENETC_PSGCAPR_SGIT_MSK);
519 	priv->psfp_cap.max_psfp_gatelist = (reg & ENETC_PSGCAPR_GCL_MSK) >> 16;
520 	/* Port flow meter capability */
521 	reg = enetc_port_rd(hw, ENETC_PFMCAPR);
522 	priv->psfp_cap.max_psfp_meter = reg & ENETC_PFMCAPR_MSK;
523 }
524 
enetc_psfp_enable(struct enetc_ndev_priv * priv)525 static inline int enetc_psfp_enable(struct enetc_ndev_priv *priv)
526 {
527 	struct enetc_hw *hw = &priv->si->hw;
528 	int err;
529 
530 	enetc_get_max_cap(priv);
531 
532 	err = enetc_psfp_init(priv);
533 	if (err)
534 		return err;
535 
536 	enetc_wr(hw, ENETC_PPSFPMR, enetc_rd(hw, ENETC_PPSFPMR) |
537 		 ENETC_PPSFPMR_PSFPEN | ENETC_PPSFPMR_VS |
538 		 ENETC_PPSFPMR_PVC | ENETC_PPSFPMR_PVZC);
539 
540 	return 0;
541 }
542 
enetc_psfp_disable(struct enetc_ndev_priv * priv)543 static inline int enetc_psfp_disable(struct enetc_ndev_priv *priv)
544 {
545 	struct enetc_hw *hw = &priv->si->hw;
546 	int err;
547 
548 	err = enetc_psfp_clean(priv);
549 	if (err)
550 		return err;
551 
552 	enetc_wr(hw, ENETC_PPSFPMR, enetc_rd(hw, ENETC_PPSFPMR) &
553 		 ~ENETC_PPSFPMR_PSFPEN & ~ENETC_PPSFPMR_VS &
554 		 ~ENETC_PPSFPMR_PVC & ~ENETC_PPSFPMR_PVZC);
555 
556 	memset(&priv->psfp_cap, 0, sizeof(struct psfp_cap));
557 
558 	return 0;
559 }
560 
561 #else
562 #define enetc_qos_query_caps(ndev, type_data) -EOPNOTSUPP
563 #define enetc_setup_tc_taprio(ndev, type_data) -EOPNOTSUPP
564 #define enetc_sched_speed_set(priv, speed) (void)0
565 #define enetc_setup_tc_cbs(ndev, type_data) -EOPNOTSUPP
566 #define enetc_setup_tc_txtime(ndev, type_data) -EOPNOTSUPP
567 #define enetc_setup_tc_psfp(ndev, type_data) -EOPNOTSUPP
568 #define enetc_setup_tc_block_cb NULL
569 
570 #define enetc_get_max_cap(p)		\
571 	memset(&((p)->psfp_cap), 0, sizeof(struct psfp_cap))
572 
enetc_psfp_enable(struct enetc_ndev_priv * priv)573 static inline int enetc_psfp_enable(struct enetc_ndev_priv *priv)
574 {
575 	return 0;
576 }
577 
enetc_psfp_disable(struct enetc_ndev_priv * priv)578 static inline int enetc_psfp_disable(struct enetc_ndev_priv *priv)
579 {
580 	return 0;
581 }
582 
enetc_set_psfp(struct net_device * ndev,bool en)583 static inline int enetc_set_psfp(struct net_device *ndev, bool en)
584 {
585 	return 0;
586 }
587 #endif
588