1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
2 /* Copyright 2014-2016 Freescale Semiconductor Inc.
3 * Copyright 2016-2022 NXP
4 */
5 #include <linux/init.h>
6 #include <linux/module.h>
7 #include <linux/platform_device.h>
8 #include <linux/etherdevice.h>
9 #include <linux/of_net.h>
10 #include <linux/interrupt.h>
11 #include <linux/kthread.h>
12 #include <linux/iommu.h>
13 #include <linux/fsl/mc.h>
14 #include <linux/bpf.h>
15 #include <linux/bpf_trace.h>
16 #include <linux/fsl/ptp_qoriq.h>
17 #include <linux/ptp_classify.h>
18 #include <net/pkt_cls.h>
19 #include <net/sock.h>
20 #include <net/tso.h>
21 #include <net/xdp_sock_drv.h>
22
23 #include "dpaa2-eth.h"
24
25 /* CREATE_TRACE_POINTS only needs to be defined once. Other dpa files
26 * using trace events only need to #include <trace/events/sched.h>
27 */
28 #define CREATE_TRACE_POINTS
29 #include "dpaa2-eth-trace.h"
30
31 MODULE_LICENSE("Dual BSD/GPL");
32 MODULE_AUTHOR("Freescale Semiconductor, Inc");
33 MODULE_DESCRIPTION("Freescale DPAA2 Ethernet Driver");
34
35 struct ptp_qoriq *dpaa2_ptp;
36 EXPORT_SYMBOL(dpaa2_ptp);
37
dpaa2_eth_detect_features(struct dpaa2_eth_priv * priv)38 static void dpaa2_eth_detect_features(struct dpaa2_eth_priv *priv)
39 {
40 priv->features = 0;
41
42 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_PTP_ONESTEP_VER_MAJOR,
43 DPNI_PTP_ONESTEP_VER_MINOR) >= 0)
44 priv->features |= DPAA2_ETH_FEATURE_ONESTEP_CFG_DIRECT;
45 }
46
dpaa2_update_ptp_onestep_indirect(struct dpaa2_eth_priv * priv,u32 offset,u8 udp)47 static void dpaa2_update_ptp_onestep_indirect(struct dpaa2_eth_priv *priv,
48 u32 offset, u8 udp)
49 {
50 struct dpni_single_step_cfg cfg;
51
52 cfg.en = 1;
53 cfg.ch_update = udp;
54 cfg.offset = offset;
55 cfg.peer_delay = 0;
56
57 if (dpni_set_single_step_cfg(priv->mc_io, 0, priv->mc_token, &cfg))
58 WARN_ONCE(1, "Failed to set single step register");
59 }
60
dpaa2_update_ptp_onestep_direct(struct dpaa2_eth_priv * priv,u32 offset,u8 udp)61 static void dpaa2_update_ptp_onestep_direct(struct dpaa2_eth_priv *priv,
62 u32 offset, u8 udp)
63 {
64 u32 val = 0;
65
66 val = DPAA2_PTP_SINGLE_STEP_ENABLE |
67 DPAA2_PTP_SINGLE_CORRECTION_OFF(offset);
68
69 if (udp)
70 val |= DPAA2_PTP_SINGLE_STEP_CH;
71
72 if (priv->onestep_reg_base)
73 writel(val, priv->onestep_reg_base);
74 }
75
dpaa2_ptp_onestep_reg_update_method(struct dpaa2_eth_priv * priv)76 static void dpaa2_ptp_onestep_reg_update_method(struct dpaa2_eth_priv *priv)
77 {
78 struct device *dev = priv->net_dev->dev.parent;
79 struct dpni_single_step_cfg ptp_cfg;
80
81 priv->dpaa2_set_onestep_params_cb = dpaa2_update_ptp_onestep_indirect;
82
83 if (!(priv->features & DPAA2_ETH_FEATURE_ONESTEP_CFG_DIRECT))
84 return;
85
86 if (dpni_get_single_step_cfg(priv->mc_io, 0,
87 priv->mc_token, &ptp_cfg)) {
88 dev_err(dev, "dpni_get_single_step_cfg cannot retrieve onestep reg, falling back to indirect update\n");
89 return;
90 }
91
92 if (!ptp_cfg.ptp_onestep_reg_base) {
93 dev_err(dev, "1588 onestep reg not available, falling back to indirect update\n");
94 return;
95 }
96
97 priv->onestep_reg_base = ioremap(ptp_cfg.ptp_onestep_reg_base,
98 sizeof(u32));
99 if (!priv->onestep_reg_base) {
100 dev_err(dev, "1588 onestep reg cannot be mapped, falling back to indirect update\n");
101 return;
102 }
103
104 priv->dpaa2_set_onestep_params_cb = dpaa2_update_ptp_onestep_direct;
105 }
106
dpaa2_iova_to_virt(struct iommu_domain * domain,dma_addr_t iova_addr)107 void *dpaa2_iova_to_virt(struct iommu_domain *domain,
108 dma_addr_t iova_addr)
109 {
110 phys_addr_t phys_addr;
111
112 phys_addr = domain ? iommu_iova_to_phys(domain, iova_addr) : iova_addr;
113
114 return phys_to_virt(phys_addr);
115 }
116
dpaa2_eth_validate_rx_csum(struct dpaa2_eth_priv * priv,u32 fd_status,struct sk_buff * skb)117 static void dpaa2_eth_validate_rx_csum(struct dpaa2_eth_priv *priv,
118 u32 fd_status,
119 struct sk_buff *skb)
120 {
121 skb_checksum_none_assert(skb);
122
123 /* HW checksum validation is disabled, nothing to do here */
124 if (!(priv->net_dev->features & NETIF_F_RXCSUM))
125 return;
126
127 /* Read checksum validation bits */
128 if (!((fd_status & DPAA2_FAS_L3CV) &&
129 (fd_status & DPAA2_FAS_L4CV)))
130 return;
131
132 /* Inform the stack there's no need to compute L3/L4 csum anymore */
133 skb->ip_summed = CHECKSUM_UNNECESSARY;
134 }
135
136 /* Free a received FD.
137 * Not to be used for Tx conf FDs or on any other paths.
138 */
dpaa2_eth_free_rx_fd(struct dpaa2_eth_priv * priv,const struct dpaa2_fd * fd,void * vaddr)139 static void dpaa2_eth_free_rx_fd(struct dpaa2_eth_priv *priv,
140 const struct dpaa2_fd *fd,
141 void *vaddr)
142 {
143 struct device *dev = priv->net_dev->dev.parent;
144 dma_addr_t addr = dpaa2_fd_get_addr(fd);
145 u8 fd_format = dpaa2_fd_get_format(fd);
146 struct dpaa2_sg_entry *sgt;
147 void *sg_vaddr;
148 int i;
149
150 /* If single buffer frame, just free the data buffer */
151 if (fd_format == dpaa2_fd_single)
152 goto free_buf;
153 else if (fd_format != dpaa2_fd_sg)
154 /* We don't support any other format */
155 return;
156
157 /* For S/G frames, we first need to free all SG entries
158 * except the first one, which was taken care of already
159 */
160 sgt = vaddr + dpaa2_fd_get_offset(fd);
161 for (i = 1; i < DPAA2_ETH_MAX_SG_ENTRIES; i++) {
162 addr = dpaa2_sg_get_addr(&sgt[i]);
163 sg_vaddr = dpaa2_iova_to_virt(priv->iommu_domain, addr);
164 dma_unmap_page(dev, addr, priv->rx_buf_size,
165 DMA_BIDIRECTIONAL);
166
167 free_pages((unsigned long)sg_vaddr, 0);
168 if (dpaa2_sg_is_final(&sgt[i]))
169 break;
170 }
171
172 free_buf:
173 free_pages((unsigned long)vaddr, 0);
174 }
175
176 /* Build a linear skb based on a single-buffer frame descriptor */
dpaa2_eth_build_linear_skb(struct dpaa2_eth_channel * ch,const struct dpaa2_fd * fd,void * fd_vaddr)177 static struct sk_buff *dpaa2_eth_build_linear_skb(struct dpaa2_eth_channel *ch,
178 const struct dpaa2_fd *fd,
179 void *fd_vaddr)
180 {
181 struct sk_buff *skb = NULL;
182 u16 fd_offset = dpaa2_fd_get_offset(fd);
183 u32 fd_length = dpaa2_fd_get_len(fd);
184
185 ch->buf_count--;
186
187 skb = build_skb(fd_vaddr, DPAA2_ETH_RX_BUF_RAW_SIZE);
188 if (unlikely(!skb))
189 return NULL;
190
191 skb_reserve(skb, fd_offset);
192 skb_put(skb, fd_length);
193
194 return skb;
195 }
196
197 /* Build a non linear (fragmented) skb based on a S/G table */
dpaa2_eth_build_frag_skb(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,struct dpaa2_sg_entry * sgt)198 static struct sk_buff *dpaa2_eth_build_frag_skb(struct dpaa2_eth_priv *priv,
199 struct dpaa2_eth_channel *ch,
200 struct dpaa2_sg_entry *sgt)
201 {
202 struct sk_buff *skb = NULL;
203 struct device *dev = priv->net_dev->dev.parent;
204 void *sg_vaddr;
205 dma_addr_t sg_addr;
206 u16 sg_offset;
207 u32 sg_length;
208 struct page *page, *head_page;
209 int page_offset;
210 int i;
211
212 for (i = 0; i < DPAA2_ETH_MAX_SG_ENTRIES; i++) {
213 struct dpaa2_sg_entry *sge = &sgt[i];
214
215 /* NOTE: We only support SG entries in dpaa2_sg_single format,
216 * but this is the only format we may receive from HW anyway
217 */
218
219 /* Get the address and length from the S/G entry */
220 sg_addr = dpaa2_sg_get_addr(sge);
221 sg_vaddr = dpaa2_iova_to_virt(priv->iommu_domain, sg_addr);
222 dma_unmap_page(dev, sg_addr, priv->rx_buf_size,
223 DMA_BIDIRECTIONAL);
224
225 sg_length = dpaa2_sg_get_len(sge);
226
227 if (i == 0) {
228 /* We build the skb around the first data buffer */
229 skb = build_skb(sg_vaddr, DPAA2_ETH_RX_BUF_RAW_SIZE);
230 if (unlikely(!skb)) {
231 /* Free the first SG entry now, since we already
232 * unmapped it and obtained the virtual address
233 */
234 free_pages((unsigned long)sg_vaddr, 0);
235
236 /* We still need to subtract the buffers used
237 * by this FD from our software counter
238 */
239 while (!dpaa2_sg_is_final(&sgt[i]) &&
240 i < DPAA2_ETH_MAX_SG_ENTRIES)
241 i++;
242 break;
243 }
244
245 sg_offset = dpaa2_sg_get_offset(sge);
246 skb_reserve(skb, sg_offset);
247 skb_put(skb, sg_length);
248 } else {
249 /* Rest of the data buffers are stored as skb frags */
250 page = virt_to_page(sg_vaddr);
251 head_page = virt_to_head_page(sg_vaddr);
252
253 /* Offset in page (which may be compound).
254 * Data in subsequent SG entries is stored from the
255 * beginning of the buffer, so we don't need to add the
256 * sg_offset.
257 */
258 page_offset = ((unsigned long)sg_vaddr &
259 (PAGE_SIZE - 1)) +
260 (page_address(page) - page_address(head_page));
261
262 skb_add_rx_frag(skb, i - 1, head_page, page_offset,
263 sg_length, priv->rx_buf_size);
264 }
265
266 if (dpaa2_sg_is_final(sge))
267 break;
268 }
269
270 WARN_ONCE(i == DPAA2_ETH_MAX_SG_ENTRIES, "Final bit not set in SGT");
271
272 /* Count all data buffers + SG table buffer */
273 ch->buf_count -= i + 2;
274
275 return skb;
276 }
277
278 /* Free buffers acquired from the buffer pool or which were meant to
279 * be released in the pool
280 */
dpaa2_eth_free_bufs(struct dpaa2_eth_priv * priv,u64 * buf_array,int count,bool xsk_zc)281 static void dpaa2_eth_free_bufs(struct dpaa2_eth_priv *priv, u64 *buf_array,
282 int count, bool xsk_zc)
283 {
284 struct device *dev = priv->net_dev->dev.parent;
285 struct dpaa2_eth_swa *swa;
286 struct xdp_buff *xdp_buff;
287 void *vaddr;
288 int i;
289
290 for (i = 0; i < count; i++) {
291 vaddr = dpaa2_iova_to_virt(priv->iommu_domain, buf_array[i]);
292
293 if (!xsk_zc) {
294 dma_unmap_page(dev, buf_array[i], priv->rx_buf_size,
295 DMA_BIDIRECTIONAL);
296 free_pages((unsigned long)vaddr, 0);
297 } else {
298 swa = (struct dpaa2_eth_swa *)
299 (vaddr + DPAA2_ETH_RX_HWA_SIZE);
300 xdp_buff = swa->xsk.xdp_buff;
301 xsk_buff_free(xdp_buff);
302 }
303 }
304 }
305
dpaa2_eth_recycle_buf(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,dma_addr_t addr)306 void dpaa2_eth_recycle_buf(struct dpaa2_eth_priv *priv,
307 struct dpaa2_eth_channel *ch,
308 dma_addr_t addr)
309 {
310 int retries = 0;
311 int err;
312
313 ch->recycled_bufs[ch->recycled_bufs_cnt++] = addr;
314 if (ch->recycled_bufs_cnt < DPAA2_ETH_BUFS_PER_CMD)
315 return;
316
317 while ((err = dpaa2_io_service_release(ch->dpio, ch->bp->bpid,
318 ch->recycled_bufs,
319 ch->recycled_bufs_cnt)) == -EBUSY) {
320 if (retries++ >= DPAA2_ETH_SWP_BUSY_RETRIES)
321 break;
322 cpu_relax();
323 }
324
325 if (err) {
326 dpaa2_eth_free_bufs(priv, ch->recycled_bufs,
327 ch->recycled_bufs_cnt, ch->xsk_zc);
328 ch->buf_count -= ch->recycled_bufs_cnt;
329 }
330
331 ch->recycled_bufs_cnt = 0;
332 }
333
dpaa2_eth_xdp_flush(struct dpaa2_eth_priv * priv,struct dpaa2_eth_fq * fq,struct dpaa2_eth_xdp_fds * xdp_fds)334 static int dpaa2_eth_xdp_flush(struct dpaa2_eth_priv *priv,
335 struct dpaa2_eth_fq *fq,
336 struct dpaa2_eth_xdp_fds *xdp_fds)
337 {
338 int total_enqueued = 0, retries = 0, enqueued;
339 struct dpaa2_eth_drv_stats *percpu_extras;
340 int num_fds, err, max_retries;
341 struct dpaa2_fd *fds;
342
343 percpu_extras = this_cpu_ptr(priv->percpu_extras);
344
345 /* try to enqueue all the FDs until the max number of retries is hit */
346 fds = xdp_fds->fds;
347 num_fds = xdp_fds->num;
348 max_retries = num_fds * DPAA2_ETH_ENQUEUE_RETRIES;
349 while (total_enqueued < num_fds && retries < max_retries) {
350 err = priv->enqueue(priv, fq, &fds[total_enqueued],
351 0, num_fds - total_enqueued, &enqueued);
352 if (err == -EBUSY) {
353 percpu_extras->tx_portal_busy += ++retries;
354 continue;
355 }
356 total_enqueued += enqueued;
357 }
358 xdp_fds->num = 0;
359
360 return total_enqueued;
361 }
362
dpaa2_eth_xdp_tx_flush(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,struct dpaa2_eth_fq * fq)363 static void dpaa2_eth_xdp_tx_flush(struct dpaa2_eth_priv *priv,
364 struct dpaa2_eth_channel *ch,
365 struct dpaa2_eth_fq *fq)
366 {
367 struct rtnl_link_stats64 *percpu_stats;
368 struct dpaa2_fd *fds;
369 int enqueued, i;
370
371 percpu_stats = this_cpu_ptr(priv->percpu_stats);
372
373 // enqueue the array of XDP_TX frames
374 enqueued = dpaa2_eth_xdp_flush(priv, fq, &fq->xdp_tx_fds);
375
376 /* update statistics */
377 percpu_stats->tx_packets += enqueued;
378 fds = fq->xdp_tx_fds.fds;
379 for (i = 0; i < enqueued; i++) {
380 percpu_stats->tx_bytes += dpaa2_fd_get_len(&fds[i]);
381 ch->stats.xdp_tx++;
382 }
383 for (i = enqueued; i < fq->xdp_tx_fds.num; i++) {
384 dpaa2_eth_recycle_buf(priv, ch, dpaa2_fd_get_addr(&fds[i]));
385 percpu_stats->tx_errors++;
386 ch->stats.xdp_tx_err++;
387 }
388 fq->xdp_tx_fds.num = 0;
389 }
390
dpaa2_eth_xdp_enqueue(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,struct dpaa2_fd * fd,void * buf_start,u16 queue_id)391 void dpaa2_eth_xdp_enqueue(struct dpaa2_eth_priv *priv,
392 struct dpaa2_eth_channel *ch,
393 struct dpaa2_fd *fd,
394 void *buf_start, u16 queue_id)
395 {
396 struct dpaa2_faead *faead;
397 struct dpaa2_fd *dest_fd;
398 struct dpaa2_eth_fq *fq;
399 u32 ctrl, frc;
400
401 /* Mark the egress frame hardware annotation area as valid */
402 frc = dpaa2_fd_get_frc(fd);
403 dpaa2_fd_set_frc(fd, frc | DPAA2_FD_FRC_FAEADV);
404 dpaa2_fd_set_ctrl(fd, DPAA2_FD_CTRL_ASAL);
405
406 /* Instruct hardware to release the FD buffer directly into
407 * the buffer pool once transmission is completed, instead of
408 * sending a Tx confirmation frame to us
409 */
410 ctrl = DPAA2_FAEAD_A4V | DPAA2_FAEAD_A2V | DPAA2_FAEAD_EBDDV;
411 faead = dpaa2_get_faead(buf_start, false);
412 faead->ctrl = cpu_to_le32(ctrl);
413 faead->conf_fqid = 0;
414
415 fq = &priv->fq[queue_id];
416 dest_fd = &fq->xdp_tx_fds.fds[fq->xdp_tx_fds.num++];
417 memcpy(dest_fd, fd, sizeof(*dest_fd));
418
419 if (fq->xdp_tx_fds.num < DEV_MAP_BULK_SIZE)
420 return;
421
422 dpaa2_eth_xdp_tx_flush(priv, ch, fq);
423 }
424
dpaa2_eth_run_xdp(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,struct dpaa2_eth_fq * rx_fq,struct dpaa2_fd * fd,void * vaddr)425 static u32 dpaa2_eth_run_xdp(struct dpaa2_eth_priv *priv,
426 struct dpaa2_eth_channel *ch,
427 struct dpaa2_eth_fq *rx_fq,
428 struct dpaa2_fd *fd, void *vaddr)
429 {
430 dma_addr_t addr = dpaa2_fd_get_addr(fd);
431 struct bpf_prog *xdp_prog;
432 struct xdp_buff xdp;
433 u32 xdp_act = XDP_PASS;
434 int err, offset;
435
436 xdp_prog = READ_ONCE(ch->xdp.prog);
437 if (!xdp_prog)
438 goto out;
439
440 offset = dpaa2_fd_get_offset(fd) - XDP_PACKET_HEADROOM;
441 xdp_init_buff(&xdp, DPAA2_ETH_RX_BUF_RAW_SIZE - offset, &ch->xdp_rxq);
442 xdp_prepare_buff(&xdp, vaddr + offset, XDP_PACKET_HEADROOM,
443 dpaa2_fd_get_len(fd), false);
444
445 xdp_act = bpf_prog_run_xdp(xdp_prog, &xdp);
446
447 /* xdp.data pointer may have changed */
448 dpaa2_fd_set_offset(fd, xdp.data - vaddr);
449 dpaa2_fd_set_len(fd, xdp.data_end - xdp.data);
450
451 switch (xdp_act) {
452 case XDP_PASS:
453 break;
454 case XDP_TX:
455 dpaa2_eth_xdp_enqueue(priv, ch, fd, vaddr, rx_fq->flowid);
456 break;
457 default:
458 bpf_warn_invalid_xdp_action(priv->net_dev, xdp_prog, xdp_act);
459 fallthrough;
460 case XDP_ABORTED:
461 trace_xdp_exception(priv->net_dev, xdp_prog, xdp_act);
462 fallthrough;
463 case XDP_DROP:
464 dpaa2_eth_recycle_buf(priv, ch, addr);
465 ch->stats.xdp_drop++;
466 break;
467 case XDP_REDIRECT:
468 dma_unmap_page(priv->net_dev->dev.parent, addr,
469 priv->rx_buf_size, DMA_BIDIRECTIONAL);
470 ch->buf_count--;
471
472 /* Allow redirect use of full headroom */
473 xdp.data_hard_start = vaddr;
474 xdp.frame_sz = DPAA2_ETH_RX_BUF_RAW_SIZE;
475
476 err = xdp_do_redirect(priv->net_dev, &xdp, xdp_prog);
477 if (unlikely(err)) {
478 addr = dma_map_page(priv->net_dev->dev.parent,
479 virt_to_page(vaddr), 0,
480 priv->rx_buf_size, DMA_BIDIRECTIONAL);
481 if (unlikely(dma_mapping_error(priv->net_dev->dev.parent, addr))) {
482 free_pages((unsigned long)vaddr, 0);
483 } else {
484 ch->buf_count++;
485 dpaa2_eth_recycle_buf(priv, ch, addr);
486 }
487 ch->stats.xdp_drop++;
488 } else {
489 ch->stats.xdp_redirect++;
490 }
491 break;
492 }
493
494 ch->xdp.res |= xdp_act;
495 out:
496 return xdp_act;
497 }
498
dpaa2_eth_alloc_skb(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,const struct dpaa2_fd * fd,u32 fd_length,void * fd_vaddr)499 struct sk_buff *dpaa2_eth_alloc_skb(struct dpaa2_eth_priv *priv,
500 struct dpaa2_eth_channel *ch,
501 const struct dpaa2_fd *fd, u32 fd_length,
502 void *fd_vaddr)
503 {
504 u16 fd_offset = dpaa2_fd_get_offset(fd);
505 struct sk_buff *skb = NULL;
506 unsigned int skb_len;
507
508 skb_len = fd_length + dpaa2_eth_needed_headroom(NULL);
509
510 skb = napi_alloc_skb(&ch->napi, skb_len);
511 if (!skb)
512 return NULL;
513
514 skb_reserve(skb, dpaa2_eth_needed_headroom(NULL));
515 skb_put(skb, fd_length);
516
517 memcpy(skb->data, fd_vaddr + fd_offset, fd_length);
518
519 return skb;
520 }
521
dpaa2_eth_copybreak(struct dpaa2_eth_channel * ch,const struct dpaa2_fd * fd,void * fd_vaddr)522 static struct sk_buff *dpaa2_eth_copybreak(struct dpaa2_eth_channel *ch,
523 const struct dpaa2_fd *fd,
524 void *fd_vaddr)
525 {
526 struct dpaa2_eth_priv *priv = ch->priv;
527 u32 fd_length = dpaa2_fd_get_len(fd);
528
529 if (fd_length > priv->rx_copybreak)
530 return NULL;
531
532 return dpaa2_eth_alloc_skb(priv, ch, fd, fd_length, fd_vaddr);
533 }
534
dpaa2_eth_receive_skb(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,const struct dpaa2_fd * fd,void * vaddr,struct dpaa2_eth_fq * fq,struct rtnl_link_stats64 * percpu_stats,struct sk_buff * skb)535 void dpaa2_eth_receive_skb(struct dpaa2_eth_priv *priv,
536 struct dpaa2_eth_channel *ch,
537 const struct dpaa2_fd *fd, void *vaddr,
538 struct dpaa2_eth_fq *fq,
539 struct rtnl_link_stats64 *percpu_stats,
540 struct sk_buff *skb)
541 {
542 struct dpaa2_fas *fas;
543 u32 status = 0;
544
545 fas = dpaa2_get_fas(vaddr, false);
546 prefetch(fas);
547 prefetch(skb->data);
548
549 /* Get the timestamp value */
550 if (priv->rx_tstamp) {
551 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
552 __le64 *ts = dpaa2_get_ts(vaddr, false);
553 u64 ns;
554
555 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
556
557 ns = DPAA2_PTP_CLK_PERIOD_NS * le64_to_cpup(ts);
558 shhwtstamps->hwtstamp = ns_to_ktime(ns);
559 }
560
561 /* Check if we need to validate the L4 csum */
562 if (likely(dpaa2_fd_get_frc(fd) & DPAA2_FD_FRC_FASV)) {
563 status = le32_to_cpu(fas->status);
564 dpaa2_eth_validate_rx_csum(priv, status, skb);
565 }
566
567 skb->protocol = eth_type_trans(skb, priv->net_dev);
568 skb_record_rx_queue(skb, fq->flowid);
569
570 percpu_stats->rx_packets++;
571 percpu_stats->rx_bytes += dpaa2_fd_get_len(fd);
572 ch->stats.bytes_per_cdan += dpaa2_fd_get_len(fd);
573
574 list_add_tail(&skb->list, ch->rx_list);
575 }
576
577 /* Main Rx frame processing routine */
dpaa2_eth_rx(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,const struct dpaa2_fd * fd,struct dpaa2_eth_fq * fq)578 void dpaa2_eth_rx(struct dpaa2_eth_priv *priv,
579 struct dpaa2_eth_channel *ch,
580 const struct dpaa2_fd *fd,
581 struct dpaa2_eth_fq *fq)
582 {
583 dma_addr_t addr = dpaa2_fd_get_addr(fd);
584 u8 fd_format = dpaa2_fd_get_format(fd);
585 void *vaddr;
586 struct sk_buff *skb;
587 struct rtnl_link_stats64 *percpu_stats;
588 struct dpaa2_eth_drv_stats *percpu_extras;
589 struct device *dev = priv->net_dev->dev.parent;
590 bool recycle_rx_buf = false;
591 void *buf_data;
592 u32 xdp_act;
593
594 /* Tracing point */
595 trace_dpaa2_rx_fd(priv->net_dev, fd);
596
597 vaddr = dpaa2_iova_to_virt(priv->iommu_domain, addr);
598 dma_sync_single_for_cpu(dev, addr, priv->rx_buf_size,
599 DMA_BIDIRECTIONAL);
600
601 buf_data = vaddr + dpaa2_fd_get_offset(fd);
602 prefetch(buf_data);
603
604 percpu_stats = this_cpu_ptr(priv->percpu_stats);
605 percpu_extras = this_cpu_ptr(priv->percpu_extras);
606
607 if (fd_format == dpaa2_fd_single) {
608 xdp_act = dpaa2_eth_run_xdp(priv, ch, fq, (struct dpaa2_fd *)fd, vaddr);
609 if (xdp_act != XDP_PASS) {
610 percpu_stats->rx_packets++;
611 percpu_stats->rx_bytes += dpaa2_fd_get_len(fd);
612 return;
613 }
614
615 skb = dpaa2_eth_copybreak(ch, fd, vaddr);
616 if (!skb) {
617 dma_unmap_page(dev, addr, priv->rx_buf_size,
618 DMA_BIDIRECTIONAL);
619 skb = dpaa2_eth_build_linear_skb(ch, fd, vaddr);
620 } else {
621 recycle_rx_buf = true;
622 }
623 } else if (fd_format == dpaa2_fd_sg) {
624 WARN_ON(priv->xdp_prog);
625
626 dma_unmap_page(dev, addr, priv->rx_buf_size,
627 DMA_BIDIRECTIONAL);
628 skb = dpaa2_eth_build_frag_skb(priv, ch, buf_data);
629 free_pages((unsigned long)vaddr, 0);
630 percpu_extras->rx_sg_frames++;
631 percpu_extras->rx_sg_bytes += dpaa2_fd_get_len(fd);
632 } else {
633 /* We don't support any other format */
634 goto err_frame_format;
635 }
636
637 if (unlikely(!skb))
638 goto err_build_skb;
639
640 dpaa2_eth_receive_skb(priv, ch, fd, vaddr, fq, percpu_stats, skb);
641
642 if (recycle_rx_buf)
643 dpaa2_eth_recycle_buf(priv, ch, dpaa2_fd_get_addr(fd));
644 return;
645
646 err_build_skb:
647 dpaa2_eth_free_rx_fd(priv, fd, vaddr);
648 err_frame_format:
649 percpu_stats->rx_dropped++;
650 }
651
652 /* Processing of Rx frames received on the error FQ
653 * We check and print the error bits and then free the frame
654 */
dpaa2_eth_rx_err(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,const struct dpaa2_fd * fd,struct dpaa2_eth_fq * fq __always_unused)655 static void dpaa2_eth_rx_err(struct dpaa2_eth_priv *priv,
656 struct dpaa2_eth_channel *ch,
657 const struct dpaa2_fd *fd,
658 struct dpaa2_eth_fq *fq __always_unused)
659 {
660 struct device *dev = priv->net_dev->dev.parent;
661 dma_addr_t addr = dpaa2_fd_get_addr(fd);
662 u8 fd_format = dpaa2_fd_get_format(fd);
663 struct rtnl_link_stats64 *percpu_stats;
664 struct dpaa2_eth_trap_item *trap_item;
665 struct dpaa2_fapr *fapr;
666 struct sk_buff *skb;
667 void *buf_data;
668 void *vaddr;
669
670 vaddr = dpaa2_iova_to_virt(priv->iommu_domain, addr);
671 dma_sync_single_for_cpu(dev, addr, priv->rx_buf_size,
672 DMA_BIDIRECTIONAL);
673
674 buf_data = vaddr + dpaa2_fd_get_offset(fd);
675
676 if (fd_format == dpaa2_fd_single) {
677 dma_unmap_page(dev, addr, priv->rx_buf_size,
678 DMA_BIDIRECTIONAL);
679 skb = dpaa2_eth_build_linear_skb(ch, fd, vaddr);
680 } else if (fd_format == dpaa2_fd_sg) {
681 dma_unmap_page(dev, addr, priv->rx_buf_size,
682 DMA_BIDIRECTIONAL);
683 skb = dpaa2_eth_build_frag_skb(priv, ch, buf_data);
684 free_pages((unsigned long)vaddr, 0);
685 } else {
686 /* We don't support any other format */
687 dpaa2_eth_free_rx_fd(priv, fd, vaddr);
688 goto err_frame_format;
689 }
690
691 fapr = dpaa2_get_fapr(vaddr, false);
692 trap_item = dpaa2_eth_dl_get_trap(priv, fapr);
693 if (trap_item)
694 devlink_trap_report(priv->devlink, skb, trap_item->trap_ctx,
695 &priv->devlink_port, NULL);
696 consume_skb(skb);
697
698 err_frame_format:
699 percpu_stats = this_cpu_ptr(priv->percpu_stats);
700 percpu_stats->rx_errors++;
701 ch->buf_count--;
702 }
703
704 /* Consume all frames pull-dequeued into the store. This is the simplest way to
705 * make sure we don't accidentally issue another volatile dequeue which would
706 * overwrite (leak) frames already in the store.
707 *
708 * Observance of NAPI budget is not our concern, leaving that to the caller.
709 */
dpaa2_eth_consume_frames(struct dpaa2_eth_channel * ch,struct dpaa2_eth_fq ** src)710 static int dpaa2_eth_consume_frames(struct dpaa2_eth_channel *ch,
711 struct dpaa2_eth_fq **src)
712 {
713 struct dpaa2_eth_priv *priv = ch->priv;
714 struct dpaa2_eth_fq *fq = NULL;
715 struct dpaa2_dq *dq;
716 const struct dpaa2_fd *fd;
717 int cleaned = 0, retries = 0;
718 int is_last;
719
720 do {
721 dq = dpaa2_io_store_next(ch->store, &is_last);
722 if (unlikely(!dq)) {
723 /* If we're here, we *must* have placed a
724 * volatile dequeue comnmand, so keep reading through
725 * the store until we get some sort of valid response
726 * token (either a valid frame or an "empty dequeue")
727 */
728 if (retries++ >= DPAA2_ETH_SWP_BUSY_RETRIES) {
729 netdev_err_once(priv->net_dev,
730 "Unable to read a valid dequeue response\n");
731 return -ETIMEDOUT;
732 }
733 continue;
734 }
735
736 fd = dpaa2_dq_fd(dq);
737 fq = (struct dpaa2_eth_fq *)(uintptr_t)dpaa2_dq_fqd_ctx(dq);
738
739 fq->consume(priv, ch, fd, fq);
740 cleaned++;
741 retries = 0;
742 } while (!is_last);
743
744 if (!cleaned)
745 return 0;
746
747 fq->stats.frames += cleaned;
748 ch->stats.frames += cleaned;
749 ch->stats.frames_per_cdan += cleaned;
750
751 /* A dequeue operation only pulls frames from a single queue
752 * into the store. Return the frame queue as an out param.
753 */
754 if (src)
755 *src = fq;
756
757 return cleaned;
758 }
759
dpaa2_eth_ptp_parse(struct sk_buff * skb,u8 * msgtype,u8 * twostep,u8 * udp,u16 * correction_offset,u16 * origintimestamp_offset)760 static int dpaa2_eth_ptp_parse(struct sk_buff *skb,
761 u8 *msgtype, u8 *twostep, u8 *udp,
762 u16 *correction_offset,
763 u16 *origintimestamp_offset)
764 {
765 unsigned int ptp_class;
766 struct ptp_header *hdr;
767 unsigned int type;
768 u8 *base;
769
770 ptp_class = ptp_classify_raw(skb);
771 if (ptp_class == PTP_CLASS_NONE)
772 return -EINVAL;
773
774 hdr = ptp_parse_header(skb, ptp_class);
775 if (!hdr)
776 return -EINVAL;
777
778 *msgtype = ptp_get_msgtype(hdr, ptp_class);
779 *twostep = hdr->flag_field[0] & 0x2;
780
781 type = ptp_class & PTP_CLASS_PMASK;
782 if (type == PTP_CLASS_IPV4 ||
783 type == PTP_CLASS_IPV6)
784 *udp = 1;
785 else
786 *udp = 0;
787
788 base = skb_mac_header(skb);
789 *correction_offset = (u8 *)&hdr->correction - base;
790 *origintimestamp_offset = (u8 *)hdr + sizeof(struct ptp_header) - base;
791
792 return 0;
793 }
794
795 /* Configure the egress frame annotation for timestamp update */
dpaa2_eth_enable_tx_tstamp(struct dpaa2_eth_priv * priv,struct dpaa2_fd * fd,void * buf_start,struct sk_buff * skb)796 static void dpaa2_eth_enable_tx_tstamp(struct dpaa2_eth_priv *priv,
797 struct dpaa2_fd *fd,
798 void *buf_start,
799 struct sk_buff *skb)
800 {
801 struct ptp_tstamp origin_timestamp;
802 u8 msgtype, twostep, udp;
803 struct dpaa2_faead *faead;
804 struct dpaa2_fas *fas;
805 struct timespec64 ts;
806 u16 offset1, offset2;
807 u32 ctrl, frc;
808 __le64 *ns;
809 u8 *data;
810
811 /* Mark the egress frame annotation area as valid */
812 frc = dpaa2_fd_get_frc(fd);
813 dpaa2_fd_set_frc(fd, frc | DPAA2_FD_FRC_FAEADV);
814
815 /* Set hardware annotation size */
816 ctrl = dpaa2_fd_get_ctrl(fd);
817 dpaa2_fd_set_ctrl(fd, ctrl | DPAA2_FD_CTRL_ASAL);
818
819 /* enable UPD (update prepanded data) bit in FAEAD field of
820 * hardware frame annotation area
821 */
822 ctrl = DPAA2_FAEAD_A2V | DPAA2_FAEAD_UPDV | DPAA2_FAEAD_UPD;
823 faead = dpaa2_get_faead(buf_start, true);
824 faead->ctrl = cpu_to_le32(ctrl);
825
826 if (skb->cb[0] == TX_TSTAMP_ONESTEP_SYNC) {
827 if (dpaa2_eth_ptp_parse(skb, &msgtype, &twostep, &udp,
828 &offset1, &offset2) ||
829 msgtype != PTP_MSGTYPE_SYNC || twostep) {
830 WARN_ONCE(1, "Bad packet for one-step timestamping\n");
831 return;
832 }
833
834 /* Mark the frame annotation status as valid */
835 frc = dpaa2_fd_get_frc(fd);
836 dpaa2_fd_set_frc(fd, frc | DPAA2_FD_FRC_FASV);
837
838 /* Mark the PTP flag for one step timestamping */
839 fas = dpaa2_get_fas(buf_start, true);
840 fas->status = cpu_to_le32(DPAA2_FAS_PTP);
841
842 dpaa2_ptp->caps.gettime64(&dpaa2_ptp->caps, &ts);
843 ns = dpaa2_get_ts(buf_start, true);
844 *ns = cpu_to_le64(timespec64_to_ns(&ts) /
845 DPAA2_PTP_CLK_PERIOD_NS);
846
847 /* Update current time to PTP message originTimestamp field */
848 ns_to_ptp_tstamp(&origin_timestamp, le64_to_cpup(ns));
849 data = skb_mac_header(skb);
850 *(__be16 *)(data + offset2) = htons(origin_timestamp.sec_msb);
851 *(__be32 *)(data + offset2 + 2) =
852 htonl(origin_timestamp.sec_lsb);
853 *(__be32 *)(data + offset2 + 6) = htonl(origin_timestamp.nsec);
854
855 if (priv->ptp_correction_off == offset1)
856 return;
857
858 priv->dpaa2_set_onestep_params_cb(priv, offset1, udp);
859 priv->ptp_correction_off = offset1;
860
861 }
862 }
863
dpaa2_eth_sgt_get(struct dpaa2_eth_priv * priv)864 void *dpaa2_eth_sgt_get(struct dpaa2_eth_priv *priv)
865 {
866 struct dpaa2_eth_sgt_cache *sgt_cache;
867 void *sgt_buf = NULL;
868 int sgt_buf_size;
869
870 sgt_cache = this_cpu_ptr(priv->sgt_cache);
871 sgt_buf_size = priv->tx_data_offset +
872 DPAA2_ETH_SG_ENTRIES_MAX * sizeof(struct dpaa2_sg_entry);
873
874 if (sgt_cache->count == 0)
875 sgt_buf = napi_alloc_frag_align(sgt_buf_size, DPAA2_ETH_TX_BUF_ALIGN);
876 else
877 sgt_buf = sgt_cache->buf[--sgt_cache->count];
878 if (!sgt_buf)
879 return NULL;
880
881 memset(sgt_buf, 0, sgt_buf_size);
882
883 return sgt_buf;
884 }
885
dpaa2_eth_sgt_recycle(struct dpaa2_eth_priv * priv,void * sgt_buf)886 void dpaa2_eth_sgt_recycle(struct dpaa2_eth_priv *priv, void *sgt_buf)
887 {
888 struct dpaa2_eth_sgt_cache *sgt_cache;
889
890 sgt_cache = this_cpu_ptr(priv->sgt_cache);
891 if (sgt_cache->count >= DPAA2_ETH_SGT_CACHE_SIZE)
892 skb_free_frag(sgt_buf);
893 else
894 sgt_cache->buf[sgt_cache->count++] = sgt_buf;
895 }
896
897 /* Create a frame descriptor based on a fragmented skb */
dpaa2_eth_build_sg_fd(struct dpaa2_eth_priv * priv,struct sk_buff * skb,struct dpaa2_fd * fd,void ** swa_addr)898 static int dpaa2_eth_build_sg_fd(struct dpaa2_eth_priv *priv,
899 struct sk_buff *skb,
900 struct dpaa2_fd *fd,
901 void **swa_addr)
902 {
903 struct device *dev = priv->net_dev->dev.parent;
904 void *sgt_buf = NULL;
905 dma_addr_t addr;
906 int nr_frags = skb_shinfo(skb)->nr_frags;
907 struct dpaa2_sg_entry *sgt;
908 int i, err;
909 int sgt_buf_size;
910 struct scatterlist *scl, *crt_scl;
911 int num_sg;
912 int num_dma_bufs;
913 struct dpaa2_eth_swa *swa;
914
915 /* Create and map scatterlist.
916 * We don't advertise NETIF_F_FRAGLIST, so skb_to_sgvec() will not have
917 * to go beyond nr_frags+1.
918 * Note: We don't support chained scatterlists
919 */
920 if (unlikely(PAGE_SIZE / sizeof(struct scatterlist) < nr_frags + 1))
921 return -EINVAL;
922
923 scl = kmalloc_array(nr_frags + 1, sizeof(struct scatterlist), GFP_ATOMIC);
924 if (unlikely(!scl))
925 return -ENOMEM;
926
927 sg_init_table(scl, nr_frags + 1);
928 num_sg = skb_to_sgvec(skb, scl, 0, skb->len);
929 if (unlikely(num_sg < 0)) {
930 err = -ENOMEM;
931 goto dma_map_sg_failed;
932 }
933 num_dma_bufs = dma_map_sg(dev, scl, num_sg, DMA_BIDIRECTIONAL);
934 if (unlikely(!num_dma_bufs)) {
935 err = -ENOMEM;
936 goto dma_map_sg_failed;
937 }
938
939 /* Prepare the HW SGT structure */
940 sgt_buf_size = priv->tx_data_offset +
941 sizeof(struct dpaa2_sg_entry) * num_dma_bufs;
942 sgt_buf = dpaa2_eth_sgt_get(priv);
943 if (unlikely(!sgt_buf)) {
944 err = -ENOMEM;
945 goto sgt_buf_alloc_failed;
946 }
947
948 sgt = (struct dpaa2_sg_entry *)(sgt_buf + priv->tx_data_offset);
949
950 /* Fill in the HW SGT structure.
951 *
952 * sgt_buf is zeroed out, so the following fields are implicit
953 * in all sgt entries:
954 * - offset is 0
955 * - format is 'dpaa2_sg_single'
956 */
957 for_each_sg(scl, crt_scl, num_dma_bufs, i) {
958 dpaa2_sg_set_addr(&sgt[i], sg_dma_address(crt_scl));
959 dpaa2_sg_set_len(&sgt[i], sg_dma_len(crt_scl));
960 }
961 dpaa2_sg_set_final(&sgt[i - 1], true);
962
963 /* Store the skb backpointer in the SGT buffer.
964 * Fit the scatterlist and the number of buffers alongside the
965 * skb backpointer in the software annotation area. We'll need
966 * all of them on Tx Conf.
967 */
968 *swa_addr = (void *)sgt_buf;
969 swa = (struct dpaa2_eth_swa *)sgt_buf;
970 swa->type = DPAA2_ETH_SWA_SG;
971 swa->sg.skb = skb;
972 swa->sg.scl = scl;
973 swa->sg.num_sg = num_sg;
974 swa->sg.sgt_size = sgt_buf_size;
975
976 /* Separately map the SGT buffer */
977 addr = dma_map_single(dev, sgt_buf, sgt_buf_size, DMA_BIDIRECTIONAL);
978 if (unlikely(dma_mapping_error(dev, addr))) {
979 err = -ENOMEM;
980 goto dma_map_single_failed;
981 }
982 memset(fd, 0, sizeof(struct dpaa2_fd));
983 dpaa2_fd_set_offset(fd, priv->tx_data_offset);
984 dpaa2_fd_set_format(fd, dpaa2_fd_sg);
985 dpaa2_fd_set_addr(fd, addr);
986 dpaa2_fd_set_len(fd, skb->len);
987 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
988
989 return 0;
990
991 dma_map_single_failed:
992 dpaa2_eth_sgt_recycle(priv, sgt_buf);
993 sgt_buf_alloc_failed:
994 dma_unmap_sg(dev, scl, num_sg, DMA_BIDIRECTIONAL);
995 dma_map_sg_failed:
996 kfree(scl);
997 return err;
998 }
999
1000 /* Create a SG frame descriptor based on a linear skb.
1001 *
1002 * This function is used on the Tx path when the skb headroom is not large
1003 * enough for the HW requirements, thus instead of realloc-ing the skb we
1004 * create a SG frame descriptor with only one entry.
1005 */
dpaa2_eth_build_sg_fd_single_buf(struct dpaa2_eth_priv * priv,struct sk_buff * skb,struct dpaa2_fd * fd,void ** swa_addr)1006 static int dpaa2_eth_build_sg_fd_single_buf(struct dpaa2_eth_priv *priv,
1007 struct sk_buff *skb,
1008 struct dpaa2_fd *fd,
1009 void **swa_addr)
1010 {
1011 struct device *dev = priv->net_dev->dev.parent;
1012 struct dpaa2_sg_entry *sgt;
1013 struct dpaa2_eth_swa *swa;
1014 dma_addr_t addr, sgt_addr;
1015 void *sgt_buf = NULL;
1016 int sgt_buf_size;
1017 int err;
1018
1019 /* Prepare the HW SGT structure */
1020 sgt_buf_size = priv->tx_data_offset + sizeof(struct dpaa2_sg_entry);
1021 sgt_buf = dpaa2_eth_sgt_get(priv);
1022 if (unlikely(!sgt_buf))
1023 return -ENOMEM;
1024 sgt = (struct dpaa2_sg_entry *)(sgt_buf + priv->tx_data_offset);
1025
1026 addr = dma_map_single(dev, skb->data, skb->len, DMA_BIDIRECTIONAL);
1027 if (unlikely(dma_mapping_error(dev, addr))) {
1028 err = -ENOMEM;
1029 goto data_map_failed;
1030 }
1031
1032 /* Fill in the HW SGT structure */
1033 dpaa2_sg_set_addr(sgt, addr);
1034 dpaa2_sg_set_len(sgt, skb->len);
1035 dpaa2_sg_set_final(sgt, true);
1036
1037 /* Store the skb backpointer in the SGT buffer */
1038 *swa_addr = (void *)sgt_buf;
1039 swa = (struct dpaa2_eth_swa *)sgt_buf;
1040 swa->type = DPAA2_ETH_SWA_SINGLE;
1041 swa->single.skb = skb;
1042 swa->single.sgt_size = sgt_buf_size;
1043
1044 /* Separately map the SGT buffer */
1045 sgt_addr = dma_map_single(dev, sgt_buf, sgt_buf_size, DMA_BIDIRECTIONAL);
1046 if (unlikely(dma_mapping_error(dev, sgt_addr))) {
1047 err = -ENOMEM;
1048 goto sgt_map_failed;
1049 }
1050
1051 memset(fd, 0, sizeof(struct dpaa2_fd));
1052 dpaa2_fd_set_offset(fd, priv->tx_data_offset);
1053 dpaa2_fd_set_format(fd, dpaa2_fd_sg);
1054 dpaa2_fd_set_addr(fd, sgt_addr);
1055 dpaa2_fd_set_len(fd, skb->len);
1056 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
1057
1058 return 0;
1059
1060 sgt_map_failed:
1061 dma_unmap_single(dev, addr, skb->len, DMA_BIDIRECTIONAL);
1062 data_map_failed:
1063 dpaa2_eth_sgt_recycle(priv, sgt_buf);
1064
1065 return err;
1066 }
1067
1068 /* Create a frame descriptor based on a linear skb */
dpaa2_eth_build_single_fd(struct dpaa2_eth_priv * priv,struct sk_buff * skb,struct dpaa2_fd * fd,void ** swa_addr)1069 static int dpaa2_eth_build_single_fd(struct dpaa2_eth_priv *priv,
1070 struct sk_buff *skb,
1071 struct dpaa2_fd *fd,
1072 void **swa_addr)
1073 {
1074 struct device *dev = priv->net_dev->dev.parent;
1075 u8 *buffer_start, *aligned_start;
1076 struct dpaa2_eth_swa *swa;
1077 dma_addr_t addr;
1078
1079 buffer_start = skb->data - dpaa2_eth_needed_headroom(skb);
1080 aligned_start = PTR_ALIGN(buffer_start - DPAA2_ETH_TX_BUF_ALIGN,
1081 DPAA2_ETH_TX_BUF_ALIGN);
1082 if (aligned_start >= skb->head)
1083 buffer_start = aligned_start;
1084 else
1085 return -ENOMEM;
1086
1087 /* Store a backpointer to the skb at the beginning of the buffer
1088 * (in the private data area) such that we can release it
1089 * on Tx confirm
1090 */
1091 *swa_addr = (void *)buffer_start;
1092 swa = (struct dpaa2_eth_swa *)buffer_start;
1093 swa->type = DPAA2_ETH_SWA_SINGLE;
1094 swa->single.skb = skb;
1095
1096 addr = dma_map_single(dev, buffer_start,
1097 skb_tail_pointer(skb) - buffer_start,
1098 DMA_BIDIRECTIONAL);
1099 if (unlikely(dma_mapping_error(dev, addr)))
1100 return -ENOMEM;
1101
1102 memset(fd, 0, sizeof(struct dpaa2_fd));
1103 dpaa2_fd_set_addr(fd, addr);
1104 dpaa2_fd_set_offset(fd, (u16)(skb->data - buffer_start));
1105 dpaa2_fd_set_len(fd, skb->len);
1106 dpaa2_fd_set_format(fd, dpaa2_fd_single);
1107 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
1108
1109 return 0;
1110 }
1111
1112 /* FD freeing routine on the Tx path
1113 *
1114 * DMA-unmap and free FD and possibly SGT buffer allocated on Tx. The skb
1115 * back-pointed to is also freed.
1116 * This can be called either from dpaa2_eth_tx_conf() or on the error path of
1117 * dpaa2_eth_tx().
1118 */
dpaa2_eth_free_tx_fd(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,struct dpaa2_eth_fq * fq,const struct dpaa2_fd * fd,bool in_napi)1119 void dpaa2_eth_free_tx_fd(struct dpaa2_eth_priv *priv,
1120 struct dpaa2_eth_channel *ch,
1121 struct dpaa2_eth_fq *fq,
1122 const struct dpaa2_fd *fd, bool in_napi)
1123 {
1124 struct device *dev = priv->net_dev->dev.parent;
1125 dma_addr_t fd_addr, sg_addr;
1126 struct sk_buff *skb = NULL;
1127 unsigned char *buffer_start;
1128 struct dpaa2_eth_swa *swa;
1129 u8 fd_format = dpaa2_fd_get_format(fd);
1130 u32 fd_len = dpaa2_fd_get_len(fd);
1131 struct dpaa2_sg_entry *sgt;
1132 int should_free_skb = 1;
1133 void *tso_hdr;
1134 int i;
1135
1136 fd_addr = dpaa2_fd_get_addr(fd);
1137 buffer_start = dpaa2_iova_to_virt(priv->iommu_domain, fd_addr);
1138 swa = (struct dpaa2_eth_swa *)buffer_start;
1139
1140 if (fd_format == dpaa2_fd_single) {
1141 if (swa->type == DPAA2_ETH_SWA_SINGLE) {
1142 skb = swa->single.skb;
1143 /* Accessing the skb buffer is safe before dma unmap,
1144 * because we didn't map the actual skb shell.
1145 */
1146 dma_unmap_single(dev, fd_addr,
1147 skb_tail_pointer(skb) - buffer_start,
1148 DMA_BIDIRECTIONAL);
1149 } else {
1150 WARN_ONCE(swa->type != DPAA2_ETH_SWA_XDP, "Wrong SWA type");
1151 dma_unmap_single(dev, fd_addr, swa->xdp.dma_size,
1152 DMA_BIDIRECTIONAL);
1153 }
1154 } else if (fd_format == dpaa2_fd_sg) {
1155 if (swa->type == DPAA2_ETH_SWA_SG) {
1156 skb = swa->sg.skb;
1157
1158 /* Unmap the scatterlist */
1159 dma_unmap_sg(dev, swa->sg.scl, swa->sg.num_sg,
1160 DMA_BIDIRECTIONAL);
1161 kfree(swa->sg.scl);
1162
1163 /* Unmap the SGT buffer */
1164 dma_unmap_single(dev, fd_addr, swa->sg.sgt_size,
1165 DMA_BIDIRECTIONAL);
1166 } else if (swa->type == DPAA2_ETH_SWA_SW_TSO) {
1167 skb = swa->tso.skb;
1168
1169 sgt = (struct dpaa2_sg_entry *)(buffer_start +
1170 priv->tx_data_offset);
1171
1172 /* Unmap the SGT buffer */
1173 dma_unmap_single(dev, fd_addr, swa->tso.sgt_size,
1174 DMA_BIDIRECTIONAL);
1175
1176 /* Unmap and free the header */
1177 tso_hdr = dpaa2_iova_to_virt(priv->iommu_domain, dpaa2_sg_get_addr(sgt));
1178 dma_unmap_single(dev, dpaa2_sg_get_addr(sgt), TSO_HEADER_SIZE,
1179 DMA_TO_DEVICE);
1180 kfree(tso_hdr);
1181
1182 /* Unmap the other SG entries for the data */
1183 for (i = 1; i < swa->tso.num_sg; i++)
1184 dma_unmap_single(dev, dpaa2_sg_get_addr(&sgt[i]),
1185 dpaa2_sg_get_len(&sgt[i]), DMA_TO_DEVICE);
1186
1187 if (!swa->tso.is_last_fd)
1188 should_free_skb = 0;
1189 } else if (swa->type == DPAA2_ETH_SWA_XSK) {
1190 /* Unmap the SGT Buffer */
1191 dma_unmap_single(dev, fd_addr, swa->xsk.sgt_size,
1192 DMA_BIDIRECTIONAL);
1193 } else {
1194 skb = swa->single.skb;
1195
1196 /* Unmap the SGT Buffer */
1197 dma_unmap_single(dev, fd_addr, swa->single.sgt_size,
1198 DMA_BIDIRECTIONAL);
1199
1200 sgt = (struct dpaa2_sg_entry *)(buffer_start +
1201 priv->tx_data_offset);
1202 sg_addr = dpaa2_sg_get_addr(sgt);
1203 dma_unmap_single(dev, sg_addr, skb->len, DMA_BIDIRECTIONAL);
1204 }
1205 } else {
1206 netdev_dbg(priv->net_dev, "Invalid FD format\n");
1207 return;
1208 }
1209
1210 if (swa->type == DPAA2_ETH_SWA_XSK) {
1211 ch->xsk_tx_pkts_sent++;
1212 dpaa2_eth_sgt_recycle(priv, buffer_start);
1213 return;
1214 }
1215
1216 if (swa->type != DPAA2_ETH_SWA_XDP && in_napi) {
1217 fq->dq_frames++;
1218 fq->dq_bytes += fd_len;
1219 }
1220
1221 if (swa->type == DPAA2_ETH_SWA_XDP) {
1222 xdp_return_frame(swa->xdp.xdpf);
1223 return;
1224 }
1225
1226 /* Get the timestamp value */
1227 if (swa->type != DPAA2_ETH_SWA_SW_TSO) {
1228 if (skb->cb[0] == TX_TSTAMP) {
1229 struct skb_shared_hwtstamps shhwtstamps;
1230 __le64 *ts = dpaa2_get_ts(buffer_start, true);
1231 u64 ns;
1232
1233 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
1234
1235 ns = DPAA2_PTP_CLK_PERIOD_NS * le64_to_cpup(ts);
1236 shhwtstamps.hwtstamp = ns_to_ktime(ns);
1237 skb_tstamp_tx(skb, &shhwtstamps);
1238 } else if (skb->cb[0] == TX_TSTAMP_ONESTEP_SYNC) {
1239 mutex_unlock(&priv->onestep_tstamp_lock);
1240 }
1241 }
1242
1243 /* Free SGT buffer allocated on tx */
1244 if (fd_format != dpaa2_fd_single)
1245 dpaa2_eth_sgt_recycle(priv, buffer_start);
1246
1247 /* Move on with skb release. If we are just confirming multiple FDs
1248 * from the same TSO skb then only the last one will need to free the
1249 * skb.
1250 */
1251 if (should_free_skb)
1252 napi_consume_skb(skb, in_napi);
1253 }
1254
dpaa2_eth_build_gso_fd(struct dpaa2_eth_priv * priv,struct sk_buff * skb,struct dpaa2_fd * fd,int * num_fds,u32 * total_fds_len)1255 static int dpaa2_eth_build_gso_fd(struct dpaa2_eth_priv *priv,
1256 struct sk_buff *skb, struct dpaa2_fd *fd,
1257 int *num_fds, u32 *total_fds_len)
1258 {
1259 struct device *dev = priv->net_dev->dev.parent;
1260 int hdr_len, total_len, data_left, fd_len;
1261 int num_sge, err, i, sgt_buf_size;
1262 struct dpaa2_fd *fd_start = fd;
1263 struct dpaa2_sg_entry *sgt;
1264 struct dpaa2_eth_swa *swa;
1265 dma_addr_t sgt_addr, addr;
1266 dma_addr_t tso_hdr_dma;
1267 unsigned int index = 0;
1268 struct tso_t tso;
1269 char *tso_hdr;
1270 void *sgt_buf;
1271
1272 /* Initialize the TSO handler, and prepare the first payload */
1273 hdr_len = tso_start(skb, &tso);
1274 *total_fds_len = 0;
1275
1276 total_len = skb->len - hdr_len;
1277 while (total_len > 0) {
1278 /* Prepare the HW SGT structure for this frame */
1279 sgt_buf = dpaa2_eth_sgt_get(priv);
1280 if (unlikely(!sgt_buf)) {
1281 netdev_err(priv->net_dev, "dpaa2_eth_sgt_get() failed\n");
1282 err = -ENOMEM;
1283 goto err_sgt_get;
1284 }
1285 sgt = (struct dpaa2_sg_entry *)(sgt_buf + priv->tx_data_offset);
1286
1287 /* Determine the data length of this frame */
1288 data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len);
1289 total_len -= data_left;
1290 fd_len = data_left + hdr_len;
1291
1292 /* Prepare packet headers: MAC + IP + TCP */
1293 tso_hdr = kmalloc(TSO_HEADER_SIZE, GFP_ATOMIC);
1294 if (!tso_hdr) {
1295 err = -ENOMEM;
1296 goto err_alloc_tso_hdr;
1297 }
1298
1299 tso_build_hdr(skb, tso_hdr, &tso, data_left, total_len == 0);
1300 tso_hdr_dma = dma_map_single(dev, tso_hdr, TSO_HEADER_SIZE, DMA_TO_DEVICE);
1301 if (dma_mapping_error(dev, tso_hdr_dma)) {
1302 netdev_err(priv->net_dev, "dma_map_single(tso_hdr) failed\n");
1303 err = -ENOMEM;
1304 goto err_map_tso_hdr;
1305 }
1306
1307 /* Setup the SG entry for the header */
1308 dpaa2_sg_set_addr(sgt, tso_hdr_dma);
1309 dpaa2_sg_set_len(sgt, hdr_len);
1310 dpaa2_sg_set_final(sgt, data_left <= 0);
1311
1312 /* Compose the SG entries for each fragment of data */
1313 num_sge = 1;
1314 while (data_left > 0) {
1315 int size;
1316
1317 /* Move to the next SG entry */
1318 sgt++;
1319 size = min_t(int, tso.size, data_left);
1320
1321 addr = dma_map_single(dev, tso.data, size, DMA_TO_DEVICE);
1322 if (dma_mapping_error(dev, addr)) {
1323 netdev_err(priv->net_dev, "dma_map_single(tso.data) failed\n");
1324 err = -ENOMEM;
1325 goto err_map_data;
1326 }
1327 dpaa2_sg_set_addr(sgt, addr);
1328 dpaa2_sg_set_len(sgt, size);
1329 dpaa2_sg_set_final(sgt, size == data_left);
1330
1331 num_sge++;
1332
1333 /* Build the data for the __next__ fragment */
1334 data_left -= size;
1335 tso_build_data(skb, &tso, size);
1336 }
1337
1338 /* Store the skb backpointer in the SGT buffer */
1339 sgt_buf_size = priv->tx_data_offset + num_sge * sizeof(struct dpaa2_sg_entry);
1340 swa = (struct dpaa2_eth_swa *)sgt_buf;
1341 swa->type = DPAA2_ETH_SWA_SW_TSO;
1342 swa->tso.skb = skb;
1343 swa->tso.num_sg = num_sge;
1344 swa->tso.sgt_size = sgt_buf_size;
1345 swa->tso.is_last_fd = total_len == 0 ? 1 : 0;
1346
1347 /* Separately map the SGT buffer */
1348 sgt_addr = dma_map_single(dev, sgt_buf, sgt_buf_size, DMA_BIDIRECTIONAL);
1349 if (unlikely(dma_mapping_error(dev, sgt_addr))) {
1350 netdev_err(priv->net_dev, "dma_map_single(sgt_buf) failed\n");
1351 err = -ENOMEM;
1352 goto err_map_sgt;
1353 }
1354
1355 /* Setup the frame descriptor */
1356 memset(fd, 0, sizeof(struct dpaa2_fd));
1357 dpaa2_fd_set_offset(fd, priv->tx_data_offset);
1358 dpaa2_fd_set_format(fd, dpaa2_fd_sg);
1359 dpaa2_fd_set_addr(fd, sgt_addr);
1360 dpaa2_fd_set_len(fd, fd_len);
1361 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
1362
1363 *total_fds_len += fd_len;
1364 /* Advance to the next frame descriptor */
1365 fd++;
1366 index++;
1367 }
1368
1369 *num_fds = index;
1370
1371 return 0;
1372
1373 err_map_sgt:
1374 err_map_data:
1375 /* Unmap all the data S/G entries for the current FD */
1376 sgt = (struct dpaa2_sg_entry *)(sgt_buf + priv->tx_data_offset);
1377 for (i = 1; i < num_sge; i++)
1378 dma_unmap_single(dev, dpaa2_sg_get_addr(&sgt[i]),
1379 dpaa2_sg_get_len(&sgt[i]), DMA_TO_DEVICE);
1380
1381 /* Unmap the header entry */
1382 dma_unmap_single(dev, tso_hdr_dma, TSO_HEADER_SIZE, DMA_TO_DEVICE);
1383 err_map_tso_hdr:
1384 kfree(tso_hdr);
1385 err_alloc_tso_hdr:
1386 dpaa2_eth_sgt_recycle(priv, sgt_buf);
1387 err_sgt_get:
1388 /* Free all the other FDs that were already fully created */
1389 for (i = 0; i < index; i++)
1390 dpaa2_eth_free_tx_fd(priv, NULL, NULL, &fd_start[i], false);
1391
1392 return err;
1393 }
1394
__dpaa2_eth_tx(struct sk_buff * skb,struct net_device * net_dev)1395 static netdev_tx_t __dpaa2_eth_tx(struct sk_buff *skb,
1396 struct net_device *net_dev)
1397 {
1398 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1399 int total_enqueued = 0, retries = 0, enqueued;
1400 struct dpaa2_eth_drv_stats *percpu_extras;
1401 struct rtnl_link_stats64 *percpu_stats;
1402 unsigned int needed_headroom;
1403 int num_fds = 1, max_retries;
1404 struct dpaa2_eth_fq *fq;
1405 struct netdev_queue *nq;
1406 struct dpaa2_fd *fd;
1407 u16 queue_mapping;
1408 void *swa = NULL;
1409 u8 prio = 0;
1410 int err, i;
1411 u32 fd_len;
1412
1413 percpu_stats = this_cpu_ptr(priv->percpu_stats);
1414 percpu_extras = this_cpu_ptr(priv->percpu_extras);
1415 fd = (this_cpu_ptr(priv->fd))->array;
1416
1417 needed_headroom = dpaa2_eth_needed_headroom(skb);
1418
1419 /* We'll be holding a back-reference to the skb until Tx Confirmation;
1420 * we don't want that overwritten by a concurrent Tx with a cloned skb.
1421 */
1422 skb = skb_unshare(skb, GFP_ATOMIC);
1423 if (unlikely(!skb)) {
1424 /* skb_unshare() has already freed the skb */
1425 percpu_stats->tx_dropped++;
1426 return NETDEV_TX_OK;
1427 }
1428
1429 /* Setup the FD fields */
1430
1431 if (skb_is_gso(skb)) {
1432 err = dpaa2_eth_build_gso_fd(priv, skb, fd, &num_fds, &fd_len);
1433 percpu_extras->tx_sg_frames += num_fds;
1434 percpu_extras->tx_sg_bytes += fd_len;
1435 percpu_extras->tx_tso_frames += num_fds;
1436 percpu_extras->tx_tso_bytes += fd_len;
1437 } else if (skb_is_nonlinear(skb)) {
1438 err = dpaa2_eth_build_sg_fd(priv, skb, fd, &swa);
1439 percpu_extras->tx_sg_frames++;
1440 percpu_extras->tx_sg_bytes += skb->len;
1441 fd_len = dpaa2_fd_get_len(fd);
1442 } else if (skb_headroom(skb) < needed_headroom) {
1443 err = dpaa2_eth_build_sg_fd_single_buf(priv, skb, fd, &swa);
1444 percpu_extras->tx_sg_frames++;
1445 percpu_extras->tx_sg_bytes += skb->len;
1446 percpu_extras->tx_converted_sg_frames++;
1447 percpu_extras->tx_converted_sg_bytes += skb->len;
1448 fd_len = dpaa2_fd_get_len(fd);
1449 } else {
1450 err = dpaa2_eth_build_single_fd(priv, skb, fd, &swa);
1451 fd_len = dpaa2_fd_get_len(fd);
1452 }
1453
1454 if (unlikely(err)) {
1455 percpu_stats->tx_dropped++;
1456 goto err_build_fd;
1457 }
1458
1459 if (swa && skb->cb[0])
1460 dpaa2_eth_enable_tx_tstamp(priv, fd, swa, skb);
1461
1462 /* Tracing point */
1463 for (i = 0; i < num_fds; i++)
1464 trace_dpaa2_tx_fd(net_dev, &fd[i]);
1465
1466 /* TxConf FQ selection relies on queue id from the stack.
1467 * In case of a forwarded frame from another DPNI interface, we choose
1468 * a queue affined to the same core that processed the Rx frame
1469 */
1470 queue_mapping = skb_get_queue_mapping(skb);
1471
1472 if (net_dev->num_tc) {
1473 prio = netdev_txq_to_tc(net_dev, queue_mapping);
1474 /* Hardware interprets priority level 0 as being the highest,
1475 * so we need to do a reverse mapping to the netdev tc index
1476 */
1477 prio = net_dev->num_tc - prio - 1;
1478 /* We have only one FQ array entry for all Tx hardware queues
1479 * with the same flow id (but different priority levels)
1480 */
1481 queue_mapping %= dpaa2_eth_queue_count(priv);
1482 }
1483 fq = &priv->fq[queue_mapping];
1484 nq = netdev_get_tx_queue(net_dev, queue_mapping);
1485 netdev_tx_sent_queue(nq, fd_len);
1486
1487 /* Everything that happens after this enqueues might race with
1488 * the Tx confirmation callback for this frame
1489 */
1490 max_retries = num_fds * DPAA2_ETH_ENQUEUE_RETRIES;
1491 while (total_enqueued < num_fds && retries < max_retries) {
1492 err = priv->enqueue(priv, fq, &fd[total_enqueued],
1493 prio, num_fds - total_enqueued, &enqueued);
1494 if (err == -EBUSY) {
1495 retries++;
1496 continue;
1497 }
1498
1499 total_enqueued += enqueued;
1500 }
1501 percpu_extras->tx_portal_busy += retries;
1502
1503 if (unlikely(err < 0)) {
1504 percpu_stats->tx_errors++;
1505 /* Clean up everything, including freeing the skb */
1506 dpaa2_eth_free_tx_fd(priv, NULL, fq, fd, false);
1507 netdev_tx_completed_queue(nq, 1, fd_len);
1508 } else {
1509 percpu_stats->tx_packets += total_enqueued;
1510 percpu_stats->tx_bytes += fd_len;
1511 }
1512
1513 return NETDEV_TX_OK;
1514
1515 err_build_fd:
1516 dev_kfree_skb(skb);
1517
1518 return NETDEV_TX_OK;
1519 }
1520
dpaa2_eth_tx_onestep_tstamp(struct work_struct * work)1521 static void dpaa2_eth_tx_onestep_tstamp(struct work_struct *work)
1522 {
1523 struct dpaa2_eth_priv *priv = container_of(work, struct dpaa2_eth_priv,
1524 tx_onestep_tstamp);
1525 struct sk_buff *skb;
1526
1527 while (true) {
1528 skb = skb_dequeue(&priv->tx_skbs);
1529 if (!skb)
1530 return;
1531
1532 /* Lock just before TX one-step timestamping packet,
1533 * and release the lock in dpaa2_eth_free_tx_fd when
1534 * confirm the packet has been sent on hardware, or
1535 * when clean up during transmit failure.
1536 */
1537 mutex_lock(&priv->onestep_tstamp_lock);
1538 __dpaa2_eth_tx(skb, priv->net_dev);
1539 }
1540 }
1541
dpaa2_eth_tx(struct sk_buff * skb,struct net_device * net_dev)1542 static netdev_tx_t dpaa2_eth_tx(struct sk_buff *skb, struct net_device *net_dev)
1543 {
1544 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1545 u8 msgtype, twostep, udp;
1546 u16 offset1, offset2;
1547
1548 /* Utilize skb->cb[0] for timestamping request per skb */
1549 skb->cb[0] = 0;
1550
1551 if ((skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) && dpaa2_ptp) {
1552 if (priv->tx_tstamp_type == HWTSTAMP_TX_ON)
1553 skb->cb[0] = TX_TSTAMP;
1554 else if (priv->tx_tstamp_type == HWTSTAMP_TX_ONESTEP_SYNC)
1555 skb->cb[0] = TX_TSTAMP_ONESTEP_SYNC;
1556 }
1557
1558 /* TX for one-step timestamping PTP Sync packet */
1559 if (skb->cb[0] == TX_TSTAMP_ONESTEP_SYNC) {
1560 if (!dpaa2_eth_ptp_parse(skb, &msgtype, &twostep, &udp,
1561 &offset1, &offset2))
1562 if (msgtype == PTP_MSGTYPE_SYNC && twostep == 0) {
1563 skb_queue_tail(&priv->tx_skbs, skb);
1564 queue_work(priv->dpaa2_ptp_wq,
1565 &priv->tx_onestep_tstamp);
1566 return NETDEV_TX_OK;
1567 }
1568 /* Use two-step timestamping if not one-step timestamping
1569 * PTP Sync packet
1570 */
1571 skb->cb[0] = TX_TSTAMP;
1572 }
1573
1574 /* TX for other packets */
1575 return __dpaa2_eth_tx(skb, net_dev);
1576 }
1577
1578 /* Tx confirmation frame processing routine */
dpaa2_eth_tx_conf(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch,const struct dpaa2_fd * fd,struct dpaa2_eth_fq * fq)1579 static void dpaa2_eth_tx_conf(struct dpaa2_eth_priv *priv,
1580 struct dpaa2_eth_channel *ch,
1581 const struct dpaa2_fd *fd,
1582 struct dpaa2_eth_fq *fq)
1583 {
1584 struct rtnl_link_stats64 *percpu_stats;
1585 struct dpaa2_eth_drv_stats *percpu_extras;
1586 u32 fd_len = dpaa2_fd_get_len(fd);
1587 u32 fd_errors;
1588
1589 /* Tracing point */
1590 trace_dpaa2_tx_conf_fd(priv->net_dev, fd);
1591
1592 percpu_extras = this_cpu_ptr(priv->percpu_extras);
1593 percpu_extras->tx_conf_frames++;
1594 percpu_extras->tx_conf_bytes += fd_len;
1595 ch->stats.bytes_per_cdan += fd_len;
1596
1597 /* Check frame errors in the FD field */
1598 fd_errors = dpaa2_fd_get_ctrl(fd) & DPAA2_FD_TX_ERR_MASK;
1599 dpaa2_eth_free_tx_fd(priv, ch, fq, fd, true);
1600
1601 if (likely(!fd_errors))
1602 return;
1603
1604 if (net_ratelimit())
1605 netdev_dbg(priv->net_dev, "TX frame FD error: 0x%08x\n",
1606 fd_errors);
1607
1608 percpu_stats = this_cpu_ptr(priv->percpu_stats);
1609 /* Tx-conf logically pertains to the egress path. */
1610 percpu_stats->tx_errors++;
1611 }
1612
dpaa2_eth_set_rx_vlan_filtering(struct dpaa2_eth_priv * priv,bool enable)1613 static int dpaa2_eth_set_rx_vlan_filtering(struct dpaa2_eth_priv *priv,
1614 bool enable)
1615 {
1616 int err;
1617
1618 err = dpni_enable_vlan_filter(priv->mc_io, 0, priv->mc_token, enable);
1619
1620 if (err) {
1621 netdev_err(priv->net_dev,
1622 "dpni_enable_vlan_filter failed\n");
1623 return err;
1624 }
1625
1626 return 0;
1627 }
1628
dpaa2_eth_set_rx_csum(struct dpaa2_eth_priv * priv,bool enable)1629 static int dpaa2_eth_set_rx_csum(struct dpaa2_eth_priv *priv, bool enable)
1630 {
1631 int err;
1632
1633 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1634 DPNI_OFF_RX_L3_CSUM, enable);
1635 if (err) {
1636 netdev_err(priv->net_dev,
1637 "dpni_set_offload(RX_L3_CSUM) failed\n");
1638 return err;
1639 }
1640
1641 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1642 DPNI_OFF_RX_L4_CSUM, enable);
1643 if (err) {
1644 netdev_err(priv->net_dev,
1645 "dpni_set_offload(RX_L4_CSUM) failed\n");
1646 return err;
1647 }
1648
1649 return 0;
1650 }
1651
dpaa2_eth_set_tx_csum(struct dpaa2_eth_priv * priv,bool enable)1652 static int dpaa2_eth_set_tx_csum(struct dpaa2_eth_priv *priv, bool enable)
1653 {
1654 int err;
1655
1656 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1657 DPNI_OFF_TX_L3_CSUM, enable);
1658 if (err) {
1659 netdev_err(priv->net_dev, "dpni_set_offload(TX_L3_CSUM) failed\n");
1660 return err;
1661 }
1662
1663 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1664 DPNI_OFF_TX_L4_CSUM, enable);
1665 if (err) {
1666 netdev_err(priv->net_dev, "dpni_set_offload(TX_L4_CSUM) failed\n");
1667 return err;
1668 }
1669
1670 return 0;
1671 }
1672
1673 /* Perform a single release command to add buffers
1674 * to the specified buffer pool
1675 */
dpaa2_eth_add_bufs(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch)1676 static int dpaa2_eth_add_bufs(struct dpaa2_eth_priv *priv,
1677 struct dpaa2_eth_channel *ch)
1678 {
1679 struct xdp_buff *xdp_buffs[DPAA2_ETH_BUFS_PER_CMD];
1680 struct device *dev = priv->net_dev->dev.parent;
1681 u64 buf_array[DPAA2_ETH_BUFS_PER_CMD];
1682 struct dpaa2_eth_swa *swa;
1683 struct page *page;
1684 dma_addr_t addr;
1685 int retries = 0;
1686 int i = 0, err;
1687 u32 batch;
1688
1689 /* Allocate buffers visible to WRIOP */
1690 if (!ch->xsk_zc) {
1691 for (i = 0; i < DPAA2_ETH_BUFS_PER_CMD; i++) {
1692 /* Also allocate skb shared info and alignment padding.
1693 * There is one page for each Rx buffer. WRIOP sees
1694 * the entire page except for a tailroom reserved for
1695 * skb shared info
1696 */
1697 page = dev_alloc_pages(0);
1698 if (!page)
1699 goto err_alloc;
1700
1701 addr = dma_map_page(dev, page, 0, priv->rx_buf_size,
1702 DMA_BIDIRECTIONAL);
1703 if (unlikely(dma_mapping_error(dev, addr)))
1704 goto err_map;
1705
1706 buf_array[i] = addr;
1707
1708 /* tracing point */
1709 trace_dpaa2_eth_buf_seed(priv->net_dev,
1710 page_address(page),
1711 DPAA2_ETH_RX_BUF_RAW_SIZE,
1712 addr, priv->rx_buf_size,
1713 ch->bp->bpid);
1714 }
1715 } else if (xsk_buff_can_alloc(ch->xsk_pool, DPAA2_ETH_BUFS_PER_CMD)) {
1716 /* Allocate XSK buffers for AF_XDP fast path in batches
1717 * of DPAA2_ETH_BUFS_PER_CMD. Bail out if the UMEM cannot
1718 * provide enough buffers at the moment
1719 */
1720 batch = xsk_buff_alloc_batch(ch->xsk_pool, xdp_buffs,
1721 DPAA2_ETH_BUFS_PER_CMD);
1722 if (!batch)
1723 goto err_alloc;
1724
1725 for (i = 0; i < batch; i++) {
1726 swa = (struct dpaa2_eth_swa *)(xdp_buffs[i]->data_hard_start +
1727 DPAA2_ETH_RX_HWA_SIZE);
1728 swa->xsk.xdp_buff = xdp_buffs[i];
1729
1730 addr = xsk_buff_xdp_get_frame_dma(xdp_buffs[i]);
1731 if (unlikely(dma_mapping_error(dev, addr)))
1732 goto err_map;
1733
1734 buf_array[i] = addr;
1735
1736 trace_dpaa2_xsk_buf_seed(priv->net_dev,
1737 xdp_buffs[i]->data_hard_start,
1738 DPAA2_ETH_RX_BUF_RAW_SIZE,
1739 addr, priv->rx_buf_size,
1740 ch->bp->bpid);
1741 }
1742 }
1743
1744 release_bufs:
1745 /* In case the portal is busy, retry until successful */
1746 while ((err = dpaa2_io_service_release(ch->dpio, ch->bp->bpid,
1747 buf_array, i)) == -EBUSY) {
1748 if (retries++ >= DPAA2_ETH_SWP_BUSY_RETRIES)
1749 break;
1750 cpu_relax();
1751 }
1752
1753 /* If release command failed, clean up and bail out;
1754 * not much else we can do about it
1755 */
1756 if (err) {
1757 dpaa2_eth_free_bufs(priv, buf_array, i, ch->xsk_zc);
1758 return 0;
1759 }
1760
1761 return i;
1762
1763 err_map:
1764 if (!ch->xsk_zc) {
1765 __free_pages(page, 0);
1766 } else {
1767 for (; i < batch; i++)
1768 xsk_buff_free(xdp_buffs[i]);
1769 }
1770 err_alloc:
1771 /* If we managed to allocate at least some buffers,
1772 * release them to hardware
1773 */
1774 if (i)
1775 goto release_bufs;
1776
1777 return 0;
1778 }
1779
dpaa2_eth_seed_pool(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch)1780 static int dpaa2_eth_seed_pool(struct dpaa2_eth_priv *priv,
1781 struct dpaa2_eth_channel *ch)
1782 {
1783 int i;
1784 int new_count;
1785
1786 for (i = 0; i < DPAA2_ETH_NUM_BUFS; i += DPAA2_ETH_BUFS_PER_CMD) {
1787 new_count = dpaa2_eth_add_bufs(priv, ch);
1788 ch->buf_count += new_count;
1789
1790 if (new_count < DPAA2_ETH_BUFS_PER_CMD)
1791 return -ENOMEM;
1792 }
1793
1794 return 0;
1795 }
1796
dpaa2_eth_seed_pools(struct dpaa2_eth_priv * priv)1797 static void dpaa2_eth_seed_pools(struct dpaa2_eth_priv *priv)
1798 {
1799 struct net_device *net_dev = priv->net_dev;
1800 struct dpaa2_eth_channel *channel;
1801 int i, err = 0;
1802
1803 for (i = 0; i < priv->num_channels; i++) {
1804 channel = priv->channel[i];
1805
1806 err = dpaa2_eth_seed_pool(priv, channel);
1807
1808 /* Not much to do; the buffer pool, though not filled up,
1809 * may still contain some buffers which would enable us
1810 * to limp on.
1811 */
1812 if (err)
1813 netdev_err(net_dev, "Buffer seeding failed for DPBP %d (bpid=%d)\n",
1814 channel->bp->dev->obj_desc.id,
1815 channel->bp->bpid);
1816 }
1817 }
1818
1819 /*
1820 * Drain the specified number of buffers from one of the DPNI's private buffer
1821 * pools.
1822 * @count must not exceeed DPAA2_ETH_BUFS_PER_CMD
1823 */
dpaa2_eth_drain_bufs(struct dpaa2_eth_priv * priv,int bpid,int count)1824 static void dpaa2_eth_drain_bufs(struct dpaa2_eth_priv *priv, int bpid,
1825 int count)
1826 {
1827 u64 buf_array[DPAA2_ETH_BUFS_PER_CMD];
1828 bool xsk_zc = false;
1829 int retries = 0;
1830 int i, ret;
1831
1832 for (i = 0; i < priv->num_channels; i++)
1833 if (priv->channel[i]->bp->bpid == bpid)
1834 xsk_zc = priv->channel[i]->xsk_zc;
1835
1836 do {
1837 ret = dpaa2_io_service_acquire(NULL, bpid, buf_array, count);
1838 if (ret < 0) {
1839 if (ret == -EBUSY &&
1840 retries++ < DPAA2_ETH_SWP_BUSY_RETRIES)
1841 continue;
1842 netdev_err(priv->net_dev, "dpaa2_io_service_acquire() failed\n");
1843 return;
1844 }
1845 dpaa2_eth_free_bufs(priv, buf_array, ret, xsk_zc);
1846 retries = 0;
1847 } while (ret);
1848 }
1849
dpaa2_eth_drain_pool(struct dpaa2_eth_priv * priv,int bpid)1850 static void dpaa2_eth_drain_pool(struct dpaa2_eth_priv *priv, int bpid)
1851 {
1852 int i;
1853
1854 /* Drain the buffer pool */
1855 dpaa2_eth_drain_bufs(priv, bpid, DPAA2_ETH_BUFS_PER_CMD);
1856 dpaa2_eth_drain_bufs(priv, bpid, 1);
1857
1858 /* Setup to zero the buffer count of all channels which were
1859 * using this buffer pool.
1860 */
1861 for (i = 0; i < priv->num_channels; i++)
1862 if (priv->channel[i]->bp->bpid == bpid)
1863 priv->channel[i]->buf_count = 0;
1864 }
1865
dpaa2_eth_drain_pools(struct dpaa2_eth_priv * priv)1866 static void dpaa2_eth_drain_pools(struct dpaa2_eth_priv *priv)
1867 {
1868 int i;
1869
1870 for (i = 0; i < priv->num_bps; i++)
1871 dpaa2_eth_drain_pool(priv, priv->bp[i]->bpid);
1872 }
1873
1874 /* Function is called from softirq context only, so we don't need to guard
1875 * the access to percpu count
1876 */
dpaa2_eth_refill_pool(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * ch)1877 static int dpaa2_eth_refill_pool(struct dpaa2_eth_priv *priv,
1878 struct dpaa2_eth_channel *ch)
1879 {
1880 int new_count;
1881
1882 if (likely(ch->buf_count >= DPAA2_ETH_REFILL_THRESH))
1883 return 0;
1884
1885 do {
1886 new_count = dpaa2_eth_add_bufs(priv, ch);
1887 if (unlikely(!new_count)) {
1888 /* Out of memory; abort for now, we'll try later on */
1889 break;
1890 }
1891 ch->buf_count += new_count;
1892 } while (ch->buf_count < DPAA2_ETH_NUM_BUFS);
1893
1894 if (unlikely(ch->buf_count < DPAA2_ETH_NUM_BUFS))
1895 return -ENOMEM;
1896
1897 return 0;
1898 }
1899
dpaa2_eth_sgt_cache_drain(struct dpaa2_eth_priv * priv)1900 static void dpaa2_eth_sgt_cache_drain(struct dpaa2_eth_priv *priv)
1901 {
1902 struct dpaa2_eth_sgt_cache *sgt_cache;
1903 u16 count;
1904 int k, i;
1905
1906 for_each_possible_cpu(k) {
1907 sgt_cache = per_cpu_ptr(priv->sgt_cache, k);
1908 count = sgt_cache->count;
1909
1910 for (i = 0; i < count; i++)
1911 skb_free_frag(sgt_cache->buf[i]);
1912 sgt_cache->count = 0;
1913 }
1914 }
1915
dpaa2_eth_pull_channel(struct dpaa2_eth_channel * ch)1916 static int dpaa2_eth_pull_channel(struct dpaa2_eth_channel *ch)
1917 {
1918 int err;
1919 int dequeues = -1;
1920
1921 /* Retry while portal is busy */
1922 do {
1923 err = dpaa2_io_service_pull_channel(ch->dpio, ch->ch_id,
1924 ch->store);
1925 dequeues++;
1926 cpu_relax();
1927 } while (err == -EBUSY && dequeues < DPAA2_ETH_SWP_BUSY_RETRIES);
1928
1929 ch->stats.dequeue_portal_busy += dequeues;
1930 if (unlikely(err))
1931 ch->stats.pull_err++;
1932
1933 return err;
1934 }
1935
1936 /* NAPI poll routine
1937 *
1938 * Frames are dequeued from the QMan channel associated with this NAPI context.
1939 * Rx, Tx confirmation and (if configured) Rx error frames all count
1940 * towards the NAPI budget.
1941 */
dpaa2_eth_poll(struct napi_struct * napi,int budget)1942 static int dpaa2_eth_poll(struct napi_struct *napi, int budget)
1943 {
1944 struct dpaa2_eth_channel *ch;
1945 struct dpaa2_eth_priv *priv;
1946 int rx_cleaned = 0, txconf_cleaned = 0;
1947 struct dpaa2_eth_fq *fq, *txc_fq = NULL;
1948 struct netdev_queue *nq;
1949 int store_cleaned, work_done;
1950 bool work_done_zc = false;
1951 struct list_head rx_list;
1952 int retries = 0;
1953 u16 flowid;
1954 int err;
1955
1956 ch = container_of(napi, struct dpaa2_eth_channel, napi);
1957 ch->xdp.res = 0;
1958 priv = ch->priv;
1959
1960 INIT_LIST_HEAD(&rx_list);
1961 ch->rx_list = &rx_list;
1962
1963 if (ch->xsk_zc) {
1964 work_done_zc = dpaa2_xsk_tx(priv, ch);
1965 /* If we reached the XSK Tx per NAPI threshold, we're done */
1966 if (work_done_zc) {
1967 work_done = budget;
1968 goto out;
1969 }
1970 }
1971
1972 do {
1973 err = dpaa2_eth_pull_channel(ch);
1974 if (unlikely(err))
1975 break;
1976
1977 /* Refill pool if appropriate */
1978 dpaa2_eth_refill_pool(priv, ch);
1979
1980 store_cleaned = dpaa2_eth_consume_frames(ch, &fq);
1981 if (store_cleaned <= 0)
1982 break;
1983 if (fq->type == DPAA2_RX_FQ) {
1984 rx_cleaned += store_cleaned;
1985 flowid = fq->flowid;
1986 } else {
1987 txconf_cleaned += store_cleaned;
1988 /* We have a single Tx conf FQ on this channel */
1989 txc_fq = fq;
1990 }
1991
1992 /* If we either consumed the whole NAPI budget with Rx frames
1993 * or we reached the Tx confirmations threshold, we're done.
1994 */
1995 if (rx_cleaned >= budget ||
1996 txconf_cleaned >= DPAA2_ETH_TXCONF_PER_NAPI) {
1997 work_done = budget;
1998 if (ch->xdp.res & XDP_REDIRECT)
1999 xdp_do_flush();
2000 goto out;
2001 }
2002 } while (store_cleaned);
2003
2004 if (ch->xdp.res & XDP_REDIRECT)
2005 xdp_do_flush();
2006
2007 /* Update NET DIM with the values for this CDAN */
2008 dpaa2_io_update_net_dim(ch->dpio, ch->stats.frames_per_cdan,
2009 ch->stats.bytes_per_cdan);
2010 ch->stats.frames_per_cdan = 0;
2011 ch->stats.bytes_per_cdan = 0;
2012
2013 /* We didn't consume the entire budget, so finish napi and
2014 * re-enable data availability notifications
2015 */
2016 napi_complete_done(napi, rx_cleaned);
2017 do {
2018 err = dpaa2_io_service_rearm(ch->dpio, &ch->nctx);
2019 cpu_relax();
2020 } while (err == -EBUSY && retries++ < DPAA2_ETH_SWP_BUSY_RETRIES);
2021 WARN_ONCE(err, "CDAN notifications rearm failed on core %d",
2022 ch->nctx.desired_cpu);
2023
2024 work_done = max(rx_cleaned, 1);
2025
2026 out:
2027 netif_receive_skb_list(ch->rx_list);
2028
2029 if (ch->xsk_tx_pkts_sent) {
2030 xsk_tx_completed(ch->xsk_pool, ch->xsk_tx_pkts_sent);
2031 ch->xsk_tx_pkts_sent = 0;
2032 }
2033
2034 if (txc_fq && txc_fq->dq_frames) {
2035 nq = netdev_get_tx_queue(priv->net_dev, txc_fq->flowid);
2036 netdev_tx_completed_queue(nq, txc_fq->dq_frames,
2037 txc_fq->dq_bytes);
2038 txc_fq->dq_frames = 0;
2039 txc_fq->dq_bytes = 0;
2040 }
2041
2042 if (rx_cleaned && ch->xdp.res & XDP_TX)
2043 dpaa2_eth_xdp_tx_flush(priv, ch, &priv->fq[flowid]);
2044
2045 return work_done;
2046 }
2047
dpaa2_eth_enable_ch_napi(struct dpaa2_eth_priv * priv)2048 static void dpaa2_eth_enable_ch_napi(struct dpaa2_eth_priv *priv)
2049 {
2050 struct dpaa2_eth_channel *ch;
2051 int i;
2052
2053 for (i = 0; i < priv->num_channels; i++) {
2054 ch = priv->channel[i];
2055 napi_enable(&ch->napi);
2056 }
2057 }
2058
dpaa2_eth_disable_ch_napi(struct dpaa2_eth_priv * priv)2059 static void dpaa2_eth_disable_ch_napi(struct dpaa2_eth_priv *priv)
2060 {
2061 struct dpaa2_eth_channel *ch;
2062 int i;
2063
2064 for (i = 0; i < priv->num_channels; i++) {
2065 ch = priv->channel[i];
2066 napi_disable(&ch->napi);
2067 }
2068 }
2069
dpaa2_eth_set_rx_taildrop(struct dpaa2_eth_priv * priv,bool tx_pause,bool pfc)2070 void dpaa2_eth_set_rx_taildrop(struct dpaa2_eth_priv *priv,
2071 bool tx_pause, bool pfc)
2072 {
2073 struct dpni_taildrop td = {0};
2074 struct dpaa2_eth_fq *fq;
2075 int i, err;
2076
2077 /* FQ taildrop: threshold is in bytes, per frame queue. Enabled if
2078 * flow control is disabled (as it might interfere with either the
2079 * buffer pool depletion trigger for pause frames or with the group
2080 * congestion trigger for PFC frames)
2081 */
2082 td.enable = !tx_pause;
2083 if (priv->rx_fqtd_enabled == td.enable)
2084 goto set_cgtd;
2085
2086 td.threshold = DPAA2_ETH_FQ_TAILDROP_THRESH;
2087 td.units = DPNI_CONGESTION_UNIT_BYTES;
2088
2089 for (i = 0; i < priv->num_fqs; i++) {
2090 fq = &priv->fq[i];
2091 if (fq->type != DPAA2_RX_FQ)
2092 continue;
2093 err = dpni_set_taildrop(priv->mc_io, 0, priv->mc_token,
2094 DPNI_CP_QUEUE, DPNI_QUEUE_RX,
2095 fq->tc, fq->flowid, &td);
2096 if (err) {
2097 netdev_err(priv->net_dev,
2098 "dpni_set_taildrop(FQ) failed\n");
2099 return;
2100 }
2101 }
2102
2103 priv->rx_fqtd_enabled = td.enable;
2104
2105 set_cgtd:
2106 /* Congestion group taildrop: threshold is in frames, per group
2107 * of FQs belonging to the same traffic class
2108 * Enabled if general Tx pause disabled or if PFCs are enabled
2109 * (congestion group threhsold for PFC generation is lower than the
2110 * CG taildrop threshold, so it won't interfere with it; we also
2111 * want frames in non-PFC enabled traffic classes to be kept in check)
2112 */
2113 td.enable = !tx_pause || pfc;
2114 if (priv->rx_cgtd_enabled == td.enable)
2115 return;
2116
2117 td.threshold = DPAA2_ETH_CG_TAILDROP_THRESH(priv);
2118 td.units = DPNI_CONGESTION_UNIT_FRAMES;
2119 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
2120 err = dpni_set_taildrop(priv->mc_io, 0, priv->mc_token,
2121 DPNI_CP_GROUP, DPNI_QUEUE_RX,
2122 i, 0, &td);
2123 if (err) {
2124 netdev_err(priv->net_dev,
2125 "dpni_set_taildrop(CG) failed\n");
2126 return;
2127 }
2128 }
2129
2130 priv->rx_cgtd_enabled = td.enable;
2131 }
2132
dpaa2_eth_link_state_update(struct dpaa2_eth_priv * priv)2133 static int dpaa2_eth_link_state_update(struct dpaa2_eth_priv *priv)
2134 {
2135 struct dpni_link_state state = {0};
2136 bool tx_pause;
2137 int err;
2138
2139 err = dpni_get_link_state(priv->mc_io, 0, priv->mc_token, &state);
2140 if (unlikely(err)) {
2141 netdev_err(priv->net_dev,
2142 "dpni_get_link_state() failed\n");
2143 return err;
2144 }
2145
2146 /* If Tx pause frame settings have changed, we need to update
2147 * Rx FQ taildrop configuration as well. We configure taildrop
2148 * only when pause frame generation is disabled.
2149 */
2150 tx_pause = dpaa2_eth_tx_pause_enabled(state.options);
2151 dpaa2_eth_set_rx_taildrop(priv, tx_pause, priv->pfc_enabled);
2152
2153 /* When we manage the MAC/PHY using phylink there is no need
2154 * to manually update the netif_carrier.
2155 * We can avoid locking because we are called from the "link changed"
2156 * IRQ handler, which is the same as the "endpoint changed" IRQ handler
2157 * (the writer to priv->mac), so we cannot race with it.
2158 */
2159 if (dpaa2_mac_is_type_phy(priv->mac))
2160 goto out;
2161
2162 /* Chech link state; speed / duplex changes are not treated yet */
2163 if (priv->link_state.up == state.up)
2164 goto out;
2165
2166 if (state.up) {
2167 netif_carrier_on(priv->net_dev);
2168 netif_tx_start_all_queues(priv->net_dev);
2169 } else {
2170 netif_tx_stop_all_queues(priv->net_dev);
2171 netif_carrier_off(priv->net_dev);
2172 }
2173
2174 netdev_info(priv->net_dev, "Link Event: state %s\n",
2175 state.up ? "up" : "down");
2176
2177 out:
2178 priv->link_state = state;
2179
2180 return 0;
2181 }
2182
dpaa2_eth_open(struct net_device * net_dev)2183 static int dpaa2_eth_open(struct net_device *net_dev)
2184 {
2185 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2186 int err;
2187
2188 dpaa2_eth_seed_pools(priv);
2189
2190 mutex_lock(&priv->mac_lock);
2191
2192 if (!dpaa2_eth_is_type_phy(priv)) {
2193 /* We'll only start the txqs when the link is actually ready;
2194 * make sure we don't race against the link up notification,
2195 * which may come immediately after dpni_enable();
2196 */
2197 netif_tx_stop_all_queues(net_dev);
2198
2199 /* Also, explicitly set carrier off, otherwise
2200 * netif_carrier_ok() will return true and cause 'ip link show'
2201 * to report the LOWER_UP flag, even though the link
2202 * notification wasn't even received.
2203 */
2204 netif_carrier_off(net_dev);
2205 }
2206 dpaa2_eth_enable_ch_napi(priv);
2207
2208 err = dpni_enable(priv->mc_io, 0, priv->mc_token);
2209 if (err < 0) {
2210 mutex_unlock(&priv->mac_lock);
2211 netdev_err(net_dev, "dpni_enable() failed\n");
2212 goto enable_err;
2213 }
2214
2215 if (dpaa2_eth_is_type_phy(priv))
2216 dpaa2_mac_start(priv->mac);
2217
2218 mutex_unlock(&priv->mac_lock);
2219
2220 return 0;
2221
2222 enable_err:
2223 dpaa2_eth_disable_ch_napi(priv);
2224 dpaa2_eth_drain_pools(priv);
2225 return err;
2226 }
2227
2228 /* Total number of in-flight frames on ingress queues */
dpaa2_eth_ingress_fq_count(struct dpaa2_eth_priv * priv)2229 static u32 dpaa2_eth_ingress_fq_count(struct dpaa2_eth_priv *priv)
2230 {
2231 struct dpaa2_eth_fq *fq;
2232 u32 fcnt = 0, bcnt = 0, total = 0;
2233 int i, err;
2234
2235 for (i = 0; i < priv->num_fqs; i++) {
2236 fq = &priv->fq[i];
2237 err = dpaa2_io_query_fq_count(NULL, fq->fqid, &fcnt, &bcnt);
2238 if (err) {
2239 netdev_warn(priv->net_dev, "query_fq_count failed");
2240 break;
2241 }
2242 total += fcnt;
2243 }
2244
2245 return total;
2246 }
2247
dpaa2_eth_wait_for_ingress_fq_empty(struct dpaa2_eth_priv * priv)2248 static void dpaa2_eth_wait_for_ingress_fq_empty(struct dpaa2_eth_priv *priv)
2249 {
2250 int retries = 10;
2251 u32 pending;
2252
2253 do {
2254 pending = dpaa2_eth_ingress_fq_count(priv);
2255 if (pending)
2256 msleep(100);
2257 } while (pending && --retries);
2258 }
2259
2260 #define DPNI_TX_PENDING_VER_MAJOR 7
2261 #define DPNI_TX_PENDING_VER_MINOR 13
dpaa2_eth_wait_for_egress_fq_empty(struct dpaa2_eth_priv * priv)2262 static void dpaa2_eth_wait_for_egress_fq_empty(struct dpaa2_eth_priv *priv)
2263 {
2264 union dpni_statistics stats;
2265 int retries = 10;
2266 int err;
2267
2268 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_TX_PENDING_VER_MAJOR,
2269 DPNI_TX_PENDING_VER_MINOR) < 0)
2270 goto out;
2271
2272 do {
2273 err = dpni_get_statistics(priv->mc_io, 0, priv->mc_token, 6,
2274 &stats);
2275 if (err)
2276 goto out;
2277 if (stats.page_6.tx_pending_frames == 0)
2278 return;
2279 } while (--retries);
2280
2281 out:
2282 msleep(500);
2283 }
2284
dpaa2_eth_stop(struct net_device * net_dev)2285 static int dpaa2_eth_stop(struct net_device *net_dev)
2286 {
2287 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2288 int dpni_enabled = 0;
2289 int retries = 10;
2290
2291 mutex_lock(&priv->mac_lock);
2292
2293 if (dpaa2_eth_is_type_phy(priv)) {
2294 dpaa2_mac_stop(priv->mac);
2295 } else {
2296 netif_tx_stop_all_queues(net_dev);
2297 netif_carrier_off(net_dev);
2298 }
2299
2300 mutex_unlock(&priv->mac_lock);
2301
2302 /* On dpni_disable(), the MC firmware will:
2303 * - stop MAC Rx and wait for all Rx frames to be enqueued to software
2304 * - cut off WRIOP dequeues from egress FQs and wait until transmission
2305 * of all in flight Tx frames is finished (and corresponding Tx conf
2306 * frames are enqueued back to software)
2307 *
2308 * Before calling dpni_disable(), we wait for all Tx frames to arrive
2309 * on WRIOP. After it finishes, wait until all remaining frames on Rx
2310 * and Tx conf queues are consumed on NAPI poll.
2311 */
2312 dpaa2_eth_wait_for_egress_fq_empty(priv);
2313
2314 do {
2315 dpni_disable(priv->mc_io, 0, priv->mc_token);
2316 dpni_is_enabled(priv->mc_io, 0, priv->mc_token, &dpni_enabled);
2317 if (dpni_enabled)
2318 /* Allow the hardware some slack */
2319 msleep(100);
2320 } while (dpni_enabled && --retries);
2321 if (!retries) {
2322 netdev_warn(net_dev, "Retry count exceeded disabling DPNI\n");
2323 /* Must go on and disable NAPI nonetheless, so we don't crash at
2324 * the next "ifconfig up"
2325 */
2326 }
2327
2328 dpaa2_eth_wait_for_ingress_fq_empty(priv);
2329 dpaa2_eth_disable_ch_napi(priv);
2330
2331 /* Empty the buffer pool */
2332 dpaa2_eth_drain_pools(priv);
2333
2334 /* Empty the Scatter-Gather Buffer cache */
2335 dpaa2_eth_sgt_cache_drain(priv);
2336
2337 return 0;
2338 }
2339
dpaa2_eth_set_addr(struct net_device * net_dev,void * addr)2340 static int dpaa2_eth_set_addr(struct net_device *net_dev, void *addr)
2341 {
2342 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2343 struct device *dev = net_dev->dev.parent;
2344 int err;
2345
2346 err = eth_mac_addr(net_dev, addr);
2347 if (err < 0) {
2348 dev_err(dev, "eth_mac_addr() failed (%d)\n", err);
2349 return err;
2350 }
2351
2352 err = dpni_set_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
2353 net_dev->dev_addr);
2354 if (err) {
2355 dev_err(dev, "dpni_set_primary_mac_addr() failed (%d)\n", err);
2356 return err;
2357 }
2358
2359 return 0;
2360 }
2361
2362 /** Fill in counters maintained by the GPP driver. These may be different from
2363 * the hardware counters obtained by ethtool.
2364 */
dpaa2_eth_get_stats(struct net_device * net_dev,struct rtnl_link_stats64 * stats)2365 static void dpaa2_eth_get_stats(struct net_device *net_dev,
2366 struct rtnl_link_stats64 *stats)
2367 {
2368 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2369 struct rtnl_link_stats64 *percpu_stats;
2370 u64 *cpustats;
2371 u64 *netstats = (u64 *)stats;
2372 int i, j;
2373 int num = sizeof(struct rtnl_link_stats64) / sizeof(u64);
2374
2375 for_each_possible_cpu(i) {
2376 percpu_stats = per_cpu_ptr(priv->percpu_stats, i);
2377 cpustats = (u64 *)percpu_stats;
2378 for (j = 0; j < num; j++)
2379 netstats[j] += cpustats[j];
2380 }
2381 }
2382
2383 /* Copy mac unicast addresses from @net_dev to @priv.
2384 * Its sole purpose is to make dpaa2_eth_set_rx_mode() more readable.
2385 */
dpaa2_eth_add_uc_hw_addr(const struct net_device * net_dev,struct dpaa2_eth_priv * priv)2386 static void dpaa2_eth_add_uc_hw_addr(const struct net_device *net_dev,
2387 struct dpaa2_eth_priv *priv)
2388 {
2389 struct netdev_hw_addr *ha;
2390 int err;
2391
2392 netdev_for_each_uc_addr(ha, net_dev) {
2393 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token,
2394 ha->addr);
2395 if (err)
2396 netdev_warn(priv->net_dev,
2397 "Could not add ucast MAC %pM to the filtering table (err %d)\n",
2398 ha->addr, err);
2399 }
2400 }
2401
2402 /* Copy mac multicast addresses from @net_dev to @priv
2403 * Its sole purpose is to make dpaa2_eth_set_rx_mode() more readable.
2404 */
dpaa2_eth_add_mc_hw_addr(const struct net_device * net_dev,struct dpaa2_eth_priv * priv)2405 static void dpaa2_eth_add_mc_hw_addr(const struct net_device *net_dev,
2406 struct dpaa2_eth_priv *priv)
2407 {
2408 struct netdev_hw_addr *ha;
2409 int err;
2410
2411 netdev_for_each_mc_addr(ha, net_dev) {
2412 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token,
2413 ha->addr);
2414 if (err)
2415 netdev_warn(priv->net_dev,
2416 "Could not add mcast MAC %pM to the filtering table (err %d)\n",
2417 ha->addr, err);
2418 }
2419 }
2420
dpaa2_eth_rx_add_vid(struct net_device * net_dev,__be16 vlan_proto,u16 vid)2421 static int dpaa2_eth_rx_add_vid(struct net_device *net_dev,
2422 __be16 vlan_proto, u16 vid)
2423 {
2424 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2425 int err;
2426
2427 err = dpni_add_vlan_id(priv->mc_io, 0, priv->mc_token,
2428 vid, 0, 0, 0);
2429
2430 if (err) {
2431 netdev_warn(priv->net_dev,
2432 "Could not add the vlan id %u\n",
2433 vid);
2434 return err;
2435 }
2436
2437 return 0;
2438 }
2439
dpaa2_eth_rx_kill_vid(struct net_device * net_dev,__be16 vlan_proto,u16 vid)2440 static int dpaa2_eth_rx_kill_vid(struct net_device *net_dev,
2441 __be16 vlan_proto, u16 vid)
2442 {
2443 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2444 int err;
2445
2446 err = dpni_remove_vlan_id(priv->mc_io, 0, priv->mc_token, vid);
2447
2448 if (err) {
2449 netdev_warn(priv->net_dev,
2450 "Could not remove the vlan id %u\n",
2451 vid);
2452 return err;
2453 }
2454
2455 return 0;
2456 }
2457
dpaa2_eth_set_rx_mode(struct net_device * net_dev)2458 static void dpaa2_eth_set_rx_mode(struct net_device *net_dev)
2459 {
2460 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2461 int uc_count = netdev_uc_count(net_dev);
2462 int mc_count = netdev_mc_count(net_dev);
2463 u8 max_mac = priv->dpni_attrs.mac_filter_entries;
2464 u32 options = priv->dpni_attrs.options;
2465 u16 mc_token = priv->mc_token;
2466 struct fsl_mc_io *mc_io = priv->mc_io;
2467 int err;
2468
2469 /* Basic sanity checks; these probably indicate a misconfiguration */
2470 if (options & DPNI_OPT_NO_MAC_FILTER && max_mac != 0)
2471 netdev_info(net_dev,
2472 "mac_filter_entries=%d, DPNI_OPT_NO_MAC_FILTER option must be disabled\n",
2473 max_mac);
2474
2475 /* Force promiscuous if the uc or mc counts exceed our capabilities. */
2476 if (uc_count > max_mac) {
2477 netdev_info(net_dev,
2478 "Unicast addr count reached %d, max allowed is %d; forcing promisc\n",
2479 uc_count, max_mac);
2480 goto force_promisc;
2481 }
2482 if (mc_count + uc_count > max_mac) {
2483 netdev_info(net_dev,
2484 "Unicast + multicast addr count reached %d, max allowed is %d; forcing promisc\n",
2485 uc_count + mc_count, max_mac);
2486 goto force_mc_promisc;
2487 }
2488
2489 /* Adjust promisc settings due to flag combinations */
2490 if (net_dev->flags & IFF_PROMISC)
2491 goto force_promisc;
2492 if (net_dev->flags & IFF_ALLMULTI) {
2493 /* First, rebuild unicast filtering table. This should be done
2494 * in promisc mode, in order to avoid frame loss while we
2495 * progressively add entries to the table.
2496 * We don't know whether we had been in promisc already, and
2497 * making an MC call to find out is expensive; so set uc promisc
2498 * nonetheless.
2499 */
2500 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
2501 if (err)
2502 netdev_warn(net_dev, "Can't set uc promisc\n");
2503
2504 /* Actual uc table reconstruction. */
2505 err = dpni_clear_mac_filters(mc_io, 0, mc_token, 1, 0);
2506 if (err)
2507 netdev_warn(net_dev, "Can't clear uc filters\n");
2508 dpaa2_eth_add_uc_hw_addr(net_dev, priv);
2509
2510 /* Finally, clear uc promisc and set mc promisc as requested. */
2511 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 0);
2512 if (err)
2513 netdev_warn(net_dev, "Can't clear uc promisc\n");
2514 goto force_mc_promisc;
2515 }
2516
2517 /* Neither unicast, nor multicast promisc will be on... eventually.
2518 * For now, rebuild mac filtering tables while forcing both of them on.
2519 */
2520 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
2521 if (err)
2522 netdev_warn(net_dev, "Can't set uc promisc (%d)\n", err);
2523 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 1);
2524 if (err)
2525 netdev_warn(net_dev, "Can't set mc promisc (%d)\n", err);
2526
2527 /* Actual mac filtering tables reconstruction */
2528 err = dpni_clear_mac_filters(mc_io, 0, mc_token, 1, 1);
2529 if (err)
2530 netdev_warn(net_dev, "Can't clear mac filters\n");
2531 dpaa2_eth_add_mc_hw_addr(net_dev, priv);
2532 dpaa2_eth_add_uc_hw_addr(net_dev, priv);
2533
2534 /* Now we can clear both ucast and mcast promisc, without risking
2535 * to drop legitimate frames anymore.
2536 */
2537 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 0);
2538 if (err)
2539 netdev_warn(net_dev, "Can't clear ucast promisc\n");
2540 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 0);
2541 if (err)
2542 netdev_warn(net_dev, "Can't clear mcast promisc\n");
2543
2544 return;
2545
2546 force_promisc:
2547 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
2548 if (err)
2549 netdev_warn(net_dev, "Can't set ucast promisc\n");
2550 force_mc_promisc:
2551 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 1);
2552 if (err)
2553 netdev_warn(net_dev, "Can't set mcast promisc\n");
2554 }
2555
dpaa2_eth_set_features(struct net_device * net_dev,netdev_features_t features)2556 static int dpaa2_eth_set_features(struct net_device *net_dev,
2557 netdev_features_t features)
2558 {
2559 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2560 netdev_features_t changed = features ^ net_dev->features;
2561 bool enable;
2562 int err;
2563
2564 if (changed & NETIF_F_HW_VLAN_CTAG_FILTER) {
2565 enable = !!(features & NETIF_F_HW_VLAN_CTAG_FILTER);
2566 err = dpaa2_eth_set_rx_vlan_filtering(priv, enable);
2567 if (err)
2568 return err;
2569 }
2570
2571 if (changed & NETIF_F_RXCSUM) {
2572 enable = !!(features & NETIF_F_RXCSUM);
2573 err = dpaa2_eth_set_rx_csum(priv, enable);
2574 if (err)
2575 return err;
2576 }
2577
2578 if (changed & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
2579 enable = !!(features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM));
2580 err = dpaa2_eth_set_tx_csum(priv, enable);
2581 if (err)
2582 return err;
2583 }
2584
2585 return 0;
2586 }
2587
dpaa2_eth_hwtstamp_set(struct net_device * dev,struct kernel_hwtstamp_config * config,struct netlink_ext_ack * extack)2588 static int dpaa2_eth_hwtstamp_set(struct net_device *dev,
2589 struct kernel_hwtstamp_config *config,
2590 struct netlink_ext_ack *extack)
2591 {
2592 struct dpaa2_eth_priv *priv = netdev_priv(dev);
2593
2594 if (!dpaa2_ptp)
2595 return -EINVAL;
2596
2597 switch (config->tx_type) {
2598 case HWTSTAMP_TX_OFF:
2599 case HWTSTAMP_TX_ON:
2600 case HWTSTAMP_TX_ONESTEP_SYNC:
2601 priv->tx_tstamp_type = config->tx_type;
2602 break;
2603 default:
2604 return -ERANGE;
2605 }
2606
2607 if (config->rx_filter == HWTSTAMP_FILTER_NONE) {
2608 priv->rx_tstamp = false;
2609 } else {
2610 priv->rx_tstamp = true;
2611 /* TS is set for all frame types, not only those requested */
2612 config->rx_filter = HWTSTAMP_FILTER_ALL;
2613 }
2614
2615 if (priv->tx_tstamp_type == HWTSTAMP_TX_ONESTEP_SYNC)
2616 dpaa2_ptp_onestep_reg_update_method(priv);
2617
2618 return 0;
2619 }
2620
dpaa2_eth_hwtstamp_get(struct net_device * dev,struct kernel_hwtstamp_config * config)2621 static int dpaa2_eth_hwtstamp_get(struct net_device *dev,
2622 struct kernel_hwtstamp_config *config)
2623 {
2624 struct dpaa2_eth_priv *priv = netdev_priv(dev);
2625
2626 if (!dpaa2_ptp)
2627 return -EINVAL;
2628
2629 config->tx_type = priv->tx_tstamp_type;
2630 config->rx_filter = priv->rx_tstamp ? HWTSTAMP_FILTER_ALL :
2631 HWTSTAMP_FILTER_NONE;
2632
2633 return 0;
2634 }
2635
dpaa2_eth_ioctl(struct net_device * dev,struct ifreq * rq,int cmd)2636 static int dpaa2_eth_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2637 {
2638 struct dpaa2_eth_priv *priv = netdev_priv(dev);
2639 int err;
2640
2641 mutex_lock(&priv->mac_lock);
2642
2643 if (dpaa2_eth_is_type_phy(priv)) {
2644 err = phylink_mii_ioctl(priv->mac->phylink, rq, cmd);
2645 mutex_unlock(&priv->mac_lock);
2646 return err;
2647 }
2648
2649 mutex_unlock(&priv->mac_lock);
2650
2651 return -EOPNOTSUPP;
2652 }
2653
xdp_mtu_valid(struct dpaa2_eth_priv * priv,int mtu)2654 static bool xdp_mtu_valid(struct dpaa2_eth_priv *priv, int mtu)
2655 {
2656 int mfl, linear_mfl;
2657
2658 mfl = DPAA2_ETH_L2_MAX_FRM(mtu);
2659 linear_mfl = priv->rx_buf_size - DPAA2_ETH_RX_HWA_SIZE -
2660 dpaa2_eth_rx_head_room(priv) - XDP_PACKET_HEADROOM;
2661
2662 if (mfl > linear_mfl) {
2663 netdev_warn(priv->net_dev, "Maximum MTU for XDP is %d\n",
2664 linear_mfl - VLAN_ETH_HLEN);
2665 return false;
2666 }
2667
2668 return true;
2669 }
2670
dpaa2_eth_set_rx_mfl(struct dpaa2_eth_priv * priv,int mtu,bool has_xdp)2671 static int dpaa2_eth_set_rx_mfl(struct dpaa2_eth_priv *priv, int mtu, bool has_xdp)
2672 {
2673 int mfl, err;
2674
2675 /* We enforce a maximum Rx frame length based on MTU only if we have
2676 * an XDP program attached (in order to avoid Rx S/G frames).
2677 * Otherwise, we accept all incoming frames as long as they are not
2678 * larger than maximum size supported in hardware
2679 */
2680 if (has_xdp)
2681 mfl = DPAA2_ETH_L2_MAX_FRM(mtu);
2682 else
2683 mfl = DPAA2_ETH_MFL;
2684
2685 err = dpni_set_max_frame_length(priv->mc_io, 0, priv->mc_token, mfl);
2686 if (err) {
2687 netdev_err(priv->net_dev, "dpni_set_max_frame_length failed\n");
2688 return err;
2689 }
2690
2691 return 0;
2692 }
2693
dpaa2_eth_change_mtu(struct net_device * dev,int new_mtu)2694 static int dpaa2_eth_change_mtu(struct net_device *dev, int new_mtu)
2695 {
2696 struct dpaa2_eth_priv *priv = netdev_priv(dev);
2697 int err;
2698
2699 if (!priv->xdp_prog)
2700 goto out;
2701
2702 if (!xdp_mtu_valid(priv, new_mtu))
2703 return -EINVAL;
2704
2705 err = dpaa2_eth_set_rx_mfl(priv, new_mtu, true);
2706 if (err)
2707 return err;
2708
2709 out:
2710 WRITE_ONCE(dev->mtu, new_mtu);
2711 return 0;
2712 }
2713
dpaa2_eth_update_rx_buffer_headroom(struct dpaa2_eth_priv * priv,bool has_xdp)2714 static int dpaa2_eth_update_rx_buffer_headroom(struct dpaa2_eth_priv *priv, bool has_xdp)
2715 {
2716 struct dpni_buffer_layout buf_layout = {0};
2717 int err;
2718
2719 err = dpni_get_buffer_layout(priv->mc_io, 0, priv->mc_token,
2720 DPNI_QUEUE_RX, &buf_layout);
2721 if (err) {
2722 netdev_err(priv->net_dev, "dpni_get_buffer_layout failed\n");
2723 return err;
2724 }
2725
2726 /* Reserve extra headroom for XDP header size changes */
2727 buf_layout.data_head_room = dpaa2_eth_rx_head_room(priv) +
2728 (has_xdp ? XDP_PACKET_HEADROOM : 0);
2729 buf_layout.options = DPNI_BUF_LAYOUT_OPT_DATA_HEAD_ROOM;
2730 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2731 DPNI_QUEUE_RX, &buf_layout);
2732 if (err) {
2733 netdev_err(priv->net_dev, "dpni_set_buffer_layout failed\n");
2734 return err;
2735 }
2736
2737 return 0;
2738 }
2739
dpaa2_eth_setup_xdp(struct net_device * dev,struct bpf_prog * prog)2740 static int dpaa2_eth_setup_xdp(struct net_device *dev, struct bpf_prog *prog)
2741 {
2742 struct dpaa2_eth_priv *priv = netdev_priv(dev);
2743 struct dpaa2_eth_channel *ch;
2744 struct bpf_prog *old;
2745 bool up, need_update;
2746 int i, err;
2747
2748 if (prog && !xdp_mtu_valid(priv, dev->mtu))
2749 return -EINVAL;
2750
2751 if (prog)
2752 bpf_prog_add(prog, priv->num_channels);
2753
2754 up = netif_running(dev);
2755 need_update = (!!priv->xdp_prog != !!prog);
2756
2757 if (up)
2758 dev_close(dev);
2759
2760 /* While in xdp mode, enforce a maximum Rx frame size based on MTU.
2761 * Also, when switching between xdp/non-xdp modes we need to reconfigure
2762 * our Rx buffer layout. Buffer pool was drained on dpaa2_eth_stop,
2763 * so we are sure no old format buffers will be used from now on.
2764 */
2765 if (need_update) {
2766 err = dpaa2_eth_set_rx_mfl(priv, dev->mtu, !!prog);
2767 if (err)
2768 goto out_err;
2769 err = dpaa2_eth_update_rx_buffer_headroom(priv, !!prog);
2770 if (err)
2771 goto out_err;
2772 }
2773
2774 old = xchg(&priv->xdp_prog, prog);
2775 if (old)
2776 bpf_prog_put(old);
2777
2778 for (i = 0; i < priv->num_channels; i++) {
2779 ch = priv->channel[i];
2780 old = xchg(&ch->xdp.prog, prog);
2781 if (old)
2782 bpf_prog_put(old);
2783 }
2784
2785 if (up) {
2786 err = dev_open(dev, NULL);
2787 if (err)
2788 return err;
2789 }
2790
2791 return 0;
2792
2793 out_err:
2794 if (prog)
2795 bpf_prog_sub(prog, priv->num_channels);
2796 if (up)
2797 dev_open(dev, NULL);
2798
2799 return err;
2800 }
2801
dpaa2_eth_xdp(struct net_device * dev,struct netdev_bpf * xdp)2802 static int dpaa2_eth_xdp(struct net_device *dev, struct netdev_bpf *xdp)
2803 {
2804 switch (xdp->command) {
2805 case XDP_SETUP_PROG:
2806 return dpaa2_eth_setup_xdp(dev, xdp->prog);
2807 case XDP_SETUP_XSK_POOL:
2808 return dpaa2_xsk_setup_pool(dev, xdp->xsk.pool, xdp->xsk.queue_id);
2809 default:
2810 return -EINVAL;
2811 }
2812
2813 return 0;
2814 }
2815
dpaa2_eth_xdp_create_fd(struct net_device * net_dev,struct xdp_frame * xdpf,struct dpaa2_fd * fd)2816 static int dpaa2_eth_xdp_create_fd(struct net_device *net_dev,
2817 struct xdp_frame *xdpf,
2818 struct dpaa2_fd *fd)
2819 {
2820 struct device *dev = net_dev->dev.parent;
2821 unsigned int needed_headroom;
2822 struct dpaa2_eth_swa *swa;
2823 void *buffer_start, *aligned_start;
2824 dma_addr_t addr;
2825
2826 /* We require a minimum headroom to be able to transmit the frame.
2827 * Otherwise return an error and let the original net_device handle it
2828 */
2829 needed_headroom = dpaa2_eth_needed_headroom(NULL);
2830 if (xdpf->headroom < needed_headroom)
2831 return -EINVAL;
2832
2833 /* Setup the FD fields */
2834 memset(fd, 0, sizeof(*fd));
2835
2836 /* Align FD address, if possible */
2837 buffer_start = xdpf->data - needed_headroom;
2838 aligned_start = PTR_ALIGN(buffer_start - DPAA2_ETH_TX_BUF_ALIGN,
2839 DPAA2_ETH_TX_BUF_ALIGN);
2840 if (aligned_start >= xdpf->data - xdpf->headroom)
2841 buffer_start = aligned_start;
2842
2843 swa = (struct dpaa2_eth_swa *)buffer_start;
2844 /* fill in necessary fields here */
2845 swa->type = DPAA2_ETH_SWA_XDP;
2846 swa->xdp.dma_size = xdpf->data + xdpf->len - buffer_start;
2847 swa->xdp.xdpf = xdpf;
2848
2849 addr = dma_map_single(dev, buffer_start,
2850 swa->xdp.dma_size,
2851 DMA_BIDIRECTIONAL);
2852 if (unlikely(dma_mapping_error(dev, addr)))
2853 return -ENOMEM;
2854
2855 dpaa2_fd_set_addr(fd, addr);
2856 dpaa2_fd_set_offset(fd, xdpf->data - buffer_start);
2857 dpaa2_fd_set_len(fd, xdpf->len);
2858 dpaa2_fd_set_format(fd, dpaa2_fd_single);
2859 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
2860
2861 return 0;
2862 }
2863
dpaa2_eth_xdp_xmit(struct net_device * net_dev,int n,struct xdp_frame ** frames,u32 flags)2864 static int dpaa2_eth_xdp_xmit(struct net_device *net_dev, int n,
2865 struct xdp_frame **frames, u32 flags)
2866 {
2867 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2868 struct dpaa2_eth_xdp_fds *xdp_redirect_fds;
2869 struct rtnl_link_stats64 *percpu_stats;
2870 struct dpaa2_eth_fq *fq;
2871 struct dpaa2_fd *fds;
2872 int enqueued, i, err;
2873
2874 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
2875 return -EINVAL;
2876
2877 if (!netif_running(net_dev))
2878 return -ENETDOWN;
2879
2880 fq = &priv->fq[smp_processor_id()];
2881 xdp_redirect_fds = &fq->xdp_redirect_fds;
2882 fds = xdp_redirect_fds->fds;
2883
2884 percpu_stats = this_cpu_ptr(priv->percpu_stats);
2885
2886 /* create a FD for each xdp_frame in the list received */
2887 for (i = 0; i < n; i++) {
2888 err = dpaa2_eth_xdp_create_fd(net_dev, frames[i], &fds[i]);
2889 if (err)
2890 break;
2891 }
2892 xdp_redirect_fds->num = i;
2893
2894 /* enqueue all the frame descriptors */
2895 enqueued = dpaa2_eth_xdp_flush(priv, fq, xdp_redirect_fds);
2896
2897 /* update statistics */
2898 percpu_stats->tx_packets += enqueued;
2899 for (i = 0; i < enqueued; i++)
2900 percpu_stats->tx_bytes += dpaa2_fd_get_len(&fds[i]);
2901
2902 return enqueued;
2903 }
2904
update_xps(struct dpaa2_eth_priv * priv)2905 static int update_xps(struct dpaa2_eth_priv *priv)
2906 {
2907 struct net_device *net_dev = priv->net_dev;
2908 int i, num_queues, netdev_queues;
2909 struct dpaa2_eth_fq *fq;
2910 cpumask_var_t xps_mask;
2911 int err = 0;
2912
2913 if (!alloc_cpumask_var(&xps_mask, GFP_KERNEL))
2914 return -ENOMEM;
2915
2916 num_queues = dpaa2_eth_queue_count(priv);
2917 netdev_queues = (net_dev->num_tc ? : 1) * num_queues;
2918
2919 /* The first <num_queues> entries in priv->fq array are Tx/Tx conf
2920 * queues, so only process those
2921 */
2922 for (i = 0; i < netdev_queues; i++) {
2923 fq = &priv->fq[i % num_queues];
2924
2925 cpumask_clear(xps_mask);
2926 cpumask_set_cpu(fq->target_cpu, xps_mask);
2927
2928 err = netif_set_xps_queue(net_dev, xps_mask, i);
2929 if (err) {
2930 netdev_warn_once(net_dev, "Error setting XPS queue\n");
2931 break;
2932 }
2933 }
2934
2935 free_cpumask_var(xps_mask);
2936 return err;
2937 }
2938
dpaa2_eth_setup_mqprio(struct net_device * net_dev,struct tc_mqprio_qopt * mqprio)2939 static int dpaa2_eth_setup_mqprio(struct net_device *net_dev,
2940 struct tc_mqprio_qopt *mqprio)
2941 {
2942 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2943 u8 num_tc, num_queues;
2944 int i;
2945
2946 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
2947 num_queues = dpaa2_eth_queue_count(priv);
2948 num_tc = mqprio->num_tc;
2949
2950 if (num_tc == net_dev->num_tc)
2951 return 0;
2952
2953 if (num_tc > dpaa2_eth_tc_count(priv)) {
2954 netdev_err(net_dev, "Max %d traffic classes supported\n",
2955 dpaa2_eth_tc_count(priv));
2956 return -EOPNOTSUPP;
2957 }
2958
2959 if (!num_tc) {
2960 netdev_reset_tc(net_dev);
2961 netif_set_real_num_tx_queues(net_dev, num_queues);
2962 goto out;
2963 }
2964
2965 netdev_set_num_tc(net_dev, num_tc);
2966 netif_set_real_num_tx_queues(net_dev, num_tc * num_queues);
2967
2968 for (i = 0; i < num_tc; i++)
2969 netdev_set_tc_queue(net_dev, i, num_queues, i * num_queues);
2970
2971 out:
2972 update_xps(priv);
2973
2974 return 0;
2975 }
2976
2977 #define bps_to_mbits(rate) (div_u64((rate), 1000000) * 8)
2978
dpaa2_eth_setup_tbf(struct net_device * net_dev,struct tc_tbf_qopt_offload * p)2979 static int dpaa2_eth_setup_tbf(struct net_device *net_dev, struct tc_tbf_qopt_offload *p)
2980 {
2981 struct tc_tbf_qopt_offload_replace_params *cfg = &p->replace_params;
2982 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2983 struct dpni_tx_shaping_cfg tx_cr_shaper = { 0 };
2984 struct dpni_tx_shaping_cfg tx_er_shaper = { 0 };
2985 int err;
2986
2987 if (p->command == TC_TBF_STATS)
2988 return -EOPNOTSUPP;
2989
2990 /* Only per port Tx shaping */
2991 if (p->parent != TC_H_ROOT)
2992 return -EOPNOTSUPP;
2993
2994 if (p->command == TC_TBF_REPLACE) {
2995 if (cfg->max_size > DPAA2_ETH_MAX_BURST_SIZE) {
2996 netdev_err(net_dev, "burst size cannot be greater than %d\n",
2997 DPAA2_ETH_MAX_BURST_SIZE);
2998 return -EINVAL;
2999 }
3000
3001 tx_cr_shaper.max_burst_size = cfg->max_size;
3002 /* The TBF interface is in bytes/s, whereas DPAA2 expects the
3003 * rate in Mbits/s
3004 */
3005 tx_cr_shaper.rate_limit = bps_to_mbits(cfg->rate.rate_bytes_ps);
3006 }
3007
3008 err = dpni_set_tx_shaping(priv->mc_io, 0, priv->mc_token, &tx_cr_shaper,
3009 &tx_er_shaper, 0);
3010 if (err) {
3011 netdev_err(net_dev, "dpni_set_tx_shaping() = %d\n", err);
3012 return err;
3013 }
3014
3015 return 0;
3016 }
3017
dpaa2_eth_setup_tc(struct net_device * net_dev,enum tc_setup_type type,void * type_data)3018 static int dpaa2_eth_setup_tc(struct net_device *net_dev,
3019 enum tc_setup_type type, void *type_data)
3020 {
3021 switch (type) {
3022 case TC_SETUP_QDISC_MQPRIO:
3023 return dpaa2_eth_setup_mqprio(net_dev, type_data);
3024 case TC_SETUP_QDISC_TBF:
3025 return dpaa2_eth_setup_tbf(net_dev, type_data);
3026 default:
3027 return -EOPNOTSUPP;
3028 }
3029 }
3030
3031 static const struct net_device_ops dpaa2_eth_ops = {
3032 .ndo_open = dpaa2_eth_open,
3033 .ndo_start_xmit = dpaa2_eth_tx,
3034 .ndo_stop = dpaa2_eth_stop,
3035 .ndo_set_mac_address = dpaa2_eth_set_addr,
3036 .ndo_get_stats64 = dpaa2_eth_get_stats,
3037 .ndo_set_rx_mode = dpaa2_eth_set_rx_mode,
3038 .ndo_set_features = dpaa2_eth_set_features,
3039 .ndo_eth_ioctl = dpaa2_eth_ioctl,
3040 .ndo_change_mtu = dpaa2_eth_change_mtu,
3041 .ndo_bpf = dpaa2_eth_xdp,
3042 .ndo_xdp_xmit = dpaa2_eth_xdp_xmit,
3043 .ndo_xsk_wakeup = dpaa2_xsk_wakeup,
3044 .ndo_setup_tc = dpaa2_eth_setup_tc,
3045 .ndo_vlan_rx_add_vid = dpaa2_eth_rx_add_vid,
3046 .ndo_vlan_rx_kill_vid = dpaa2_eth_rx_kill_vid,
3047 .ndo_hwtstamp_get = dpaa2_eth_hwtstamp_get,
3048 .ndo_hwtstamp_set = dpaa2_eth_hwtstamp_set,
3049 };
3050
dpaa2_eth_cdan_cb(struct dpaa2_io_notification_ctx * ctx)3051 static void dpaa2_eth_cdan_cb(struct dpaa2_io_notification_ctx *ctx)
3052 {
3053 struct dpaa2_eth_channel *ch;
3054
3055 ch = container_of(ctx, struct dpaa2_eth_channel, nctx);
3056
3057 /* Update NAPI statistics */
3058 ch->stats.cdan++;
3059
3060 /* NAPI can also be scheduled from the AF_XDP Tx path. Mark a missed
3061 * so that it can be rescheduled again.
3062 */
3063 if (!napi_if_scheduled_mark_missed(&ch->napi))
3064 napi_schedule(&ch->napi);
3065 }
3066
3067 /* Allocate and configure a DPCON object */
dpaa2_eth_setup_dpcon(struct dpaa2_eth_priv * priv)3068 static struct fsl_mc_device *dpaa2_eth_setup_dpcon(struct dpaa2_eth_priv *priv)
3069 {
3070 struct fsl_mc_device *dpcon;
3071 struct device *dev = priv->net_dev->dev.parent;
3072 int err;
3073
3074 err = fsl_mc_object_allocate(to_fsl_mc_device(dev),
3075 FSL_MC_POOL_DPCON, &dpcon);
3076 if (err) {
3077 if (err == -ENXIO) {
3078 dev_dbg(dev, "Waiting for DPCON\n");
3079 err = -EPROBE_DEFER;
3080 } else {
3081 dev_info(dev, "Not enough DPCONs, will go on as-is\n");
3082 }
3083 return ERR_PTR(err);
3084 }
3085
3086 err = dpcon_open(priv->mc_io, 0, dpcon->obj_desc.id, &dpcon->mc_handle);
3087 if (err) {
3088 dev_err(dev, "dpcon_open() failed\n");
3089 goto free;
3090 }
3091
3092 err = dpcon_reset(priv->mc_io, 0, dpcon->mc_handle);
3093 if (err) {
3094 dev_err(dev, "dpcon_reset() failed\n");
3095 goto close;
3096 }
3097
3098 err = dpcon_enable(priv->mc_io, 0, dpcon->mc_handle);
3099 if (err) {
3100 dev_err(dev, "dpcon_enable() failed\n");
3101 goto close;
3102 }
3103
3104 return dpcon;
3105
3106 close:
3107 dpcon_close(priv->mc_io, 0, dpcon->mc_handle);
3108 free:
3109 fsl_mc_object_free(dpcon);
3110
3111 return ERR_PTR(err);
3112 }
3113
dpaa2_eth_free_dpcon(struct dpaa2_eth_priv * priv,struct fsl_mc_device * dpcon)3114 static void dpaa2_eth_free_dpcon(struct dpaa2_eth_priv *priv,
3115 struct fsl_mc_device *dpcon)
3116 {
3117 dpcon_disable(priv->mc_io, 0, dpcon->mc_handle);
3118 dpcon_close(priv->mc_io, 0, dpcon->mc_handle);
3119 fsl_mc_object_free(dpcon);
3120 }
3121
dpaa2_eth_alloc_channel(struct dpaa2_eth_priv * priv)3122 static struct dpaa2_eth_channel *dpaa2_eth_alloc_channel(struct dpaa2_eth_priv *priv)
3123 {
3124 struct dpaa2_eth_channel *channel;
3125 struct dpcon_attr attr;
3126 struct device *dev = priv->net_dev->dev.parent;
3127 int err;
3128
3129 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
3130 if (!channel)
3131 return NULL;
3132
3133 channel->dpcon = dpaa2_eth_setup_dpcon(priv);
3134 if (IS_ERR(channel->dpcon)) {
3135 err = PTR_ERR(channel->dpcon);
3136 goto err_setup;
3137 }
3138
3139 err = dpcon_get_attributes(priv->mc_io, 0, channel->dpcon->mc_handle,
3140 &attr);
3141 if (err) {
3142 dev_err(dev, "dpcon_get_attributes() failed\n");
3143 goto err_get_attr;
3144 }
3145
3146 channel->dpcon_id = attr.id;
3147 channel->ch_id = attr.qbman_ch_id;
3148 channel->priv = priv;
3149
3150 return channel;
3151
3152 err_get_attr:
3153 dpaa2_eth_free_dpcon(priv, channel->dpcon);
3154 err_setup:
3155 kfree(channel);
3156 return ERR_PTR(err);
3157 }
3158
dpaa2_eth_free_channel(struct dpaa2_eth_priv * priv,struct dpaa2_eth_channel * channel)3159 static void dpaa2_eth_free_channel(struct dpaa2_eth_priv *priv,
3160 struct dpaa2_eth_channel *channel)
3161 {
3162 dpaa2_eth_free_dpcon(priv, channel->dpcon);
3163 kfree(channel);
3164 }
3165
3166 /* DPIO setup: allocate and configure QBMan channels, setup core affinity
3167 * and register data availability notifications
3168 */
dpaa2_eth_setup_dpio(struct dpaa2_eth_priv * priv)3169 static int dpaa2_eth_setup_dpio(struct dpaa2_eth_priv *priv)
3170 {
3171 struct dpaa2_io_notification_ctx *nctx;
3172 struct dpaa2_eth_channel *channel;
3173 struct dpcon_notification_cfg dpcon_notif_cfg;
3174 struct device *dev = priv->net_dev->dev.parent;
3175 int i, err;
3176
3177 /* We want the ability to spread ingress traffic (RX, TX conf) to as
3178 * many cores as possible, so we need one channel for each core
3179 * (unless there's fewer queues than cores, in which case the extra
3180 * channels would be wasted).
3181 * Allocate one channel per core and register it to the core's
3182 * affine DPIO. If not enough channels are available for all cores
3183 * or if some cores don't have an affine DPIO, there will be no
3184 * ingress frame processing on those cores.
3185 */
3186 cpumask_clear(&priv->dpio_cpumask);
3187 for_each_online_cpu(i) {
3188 /* Try to allocate a channel */
3189 channel = dpaa2_eth_alloc_channel(priv);
3190 if (IS_ERR_OR_NULL(channel)) {
3191 err = PTR_ERR_OR_ZERO(channel);
3192 if (err == -EPROBE_DEFER)
3193 dev_dbg(dev, "waiting for affine channel\n");
3194 else
3195 dev_info(dev,
3196 "No affine channel for cpu %d and above\n", i);
3197 goto err_alloc_ch;
3198 }
3199
3200 priv->channel[priv->num_channels] = channel;
3201
3202 nctx = &channel->nctx;
3203 nctx->is_cdan = 1;
3204 nctx->cb = dpaa2_eth_cdan_cb;
3205 nctx->id = channel->ch_id;
3206 nctx->desired_cpu = i;
3207
3208 /* Register the new context */
3209 channel->dpio = dpaa2_io_service_select(i);
3210 err = dpaa2_io_service_register(channel->dpio, nctx, dev);
3211 if (err) {
3212 dev_dbg(dev, "No affine DPIO for cpu %d\n", i);
3213 /* If no affine DPIO for this core, there's probably
3214 * none available for next cores either. Signal we want
3215 * to retry later, in case the DPIO devices weren't
3216 * probed yet.
3217 */
3218 err = -EPROBE_DEFER;
3219 goto err_service_reg;
3220 }
3221
3222 /* Register DPCON notification with MC */
3223 dpcon_notif_cfg.dpio_id = nctx->dpio_id;
3224 dpcon_notif_cfg.priority = 0;
3225 dpcon_notif_cfg.user_ctx = nctx->qman64;
3226 err = dpcon_set_notification(priv->mc_io, 0,
3227 channel->dpcon->mc_handle,
3228 &dpcon_notif_cfg);
3229 if (err) {
3230 dev_err(dev, "dpcon_set_notification failed()\n");
3231 goto err_set_cdan;
3232 }
3233
3234 /* If we managed to allocate a channel and also found an affine
3235 * DPIO for this core, add it to the final mask
3236 */
3237 cpumask_set_cpu(i, &priv->dpio_cpumask);
3238 priv->num_channels++;
3239
3240 /* Stop if we already have enough channels to accommodate all
3241 * RX and TX conf queues
3242 */
3243 if (priv->num_channels == priv->dpni_attrs.num_queues)
3244 break;
3245 }
3246
3247 return 0;
3248
3249 err_set_cdan:
3250 dpaa2_io_service_deregister(channel->dpio, nctx, dev);
3251 err_service_reg:
3252 dpaa2_eth_free_channel(priv, channel);
3253 err_alloc_ch:
3254 if (err == -EPROBE_DEFER) {
3255 for (i = 0; i < priv->num_channels; i++) {
3256 channel = priv->channel[i];
3257 nctx = &channel->nctx;
3258 dpaa2_io_service_deregister(channel->dpio, nctx, dev);
3259 dpaa2_eth_free_channel(priv, channel);
3260 }
3261 priv->num_channels = 0;
3262 return err;
3263 }
3264
3265 if (cpumask_empty(&priv->dpio_cpumask)) {
3266 dev_err(dev, "No cpu with an affine DPIO/DPCON\n");
3267 return -ENODEV;
3268 }
3269
3270 dev_info(dev, "Cores %*pbl available for processing ingress traffic\n",
3271 cpumask_pr_args(&priv->dpio_cpumask));
3272
3273 return 0;
3274 }
3275
dpaa2_eth_free_dpio(struct dpaa2_eth_priv * priv)3276 static void dpaa2_eth_free_dpio(struct dpaa2_eth_priv *priv)
3277 {
3278 struct device *dev = priv->net_dev->dev.parent;
3279 struct dpaa2_eth_channel *ch;
3280 int i;
3281
3282 /* deregister CDAN notifications and free channels */
3283 for (i = 0; i < priv->num_channels; i++) {
3284 ch = priv->channel[i];
3285 dpaa2_io_service_deregister(ch->dpio, &ch->nctx, dev);
3286 dpaa2_eth_free_channel(priv, ch);
3287 }
3288 }
3289
dpaa2_eth_get_affine_channel(struct dpaa2_eth_priv * priv,int cpu)3290 static struct dpaa2_eth_channel *dpaa2_eth_get_affine_channel(struct dpaa2_eth_priv *priv,
3291 int cpu)
3292 {
3293 struct device *dev = priv->net_dev->dev.parent;
3294 int i;
3295
3296 for (i = 0; i < priv->num_channels; i++)
3297 if (priv->channel[i]->nctx.desired_cpu == cpu)
3298 return priv->channel[i];
3299
3300 /* We should never get here. Issue a warning and return
3301 * the first channel, because it's still better than nothing
3302 */
3303 dev_warn(dev, "No affine channel found for cpu %d\n", cpu);
3304
3305 return priv->channel[0];
3306 }
3307
dpaa2_eth_set_fq_affinity(struct dpaa2_eth_priv * priv)3308 static void dpaa2_eth_set_fq_affinity(struct dpaa2_eth_priv *priv)
3309 {
3310 struct device *dev = priv->net_dev->dev.parent;
3311 struct dpaa2_eth_fq *fq;
3312 int rx_cpu, txc_cpu;
3313 int i;
3314
3315 /* For each FQ, pick one channel/CPU to deliver frames to.
3316 * This may well change at runtime, either through irqbalance or
3317 * through direct user intervention.
3318 */
3319 rx_cpu = txc_cpu = cpumask_first(&priv->dpio_cpumask);
3320
3321 for (i = 0; i < priv->num_fqs; i++) {
3322 fq = &priv->fq[i];
3323 switch (fq->type) {
3324 case DPAA2_RX_FQ:
3325 case DPAA2_RX_ERR_FQ:
3326 fq->target_cpu = rx_cpu;
3327 rx_cpu = cpumask_next(rx_cpu, &priv->dpio_cpumask);
3328 if (rx_cpu >= nr_cpu_ids)
3329 rx_cpu = cpumask_first(&priv->dpio_cpumask);
3330 break;
3331 case DPAA2_TX_CONF_FQ:
3332 fq->target_cpu = txc_cpu;
3333 txc_cpu = cpumask_next(txc_cpu, &priv->dpio_cpumask);
3334 if (txc_cpu >= nr_cpu_ids)
3335 txc_cpu = cpumask_first(&priv->dpio_cpumask);
3336 break;
3337 default:
3338 dev_err(dev, "Unknown FQ type: %d\n", fq->type);
3339 }
3340 fq->channel = dpaa2_eth_get_affine_channel(priv, fq->target_cpu);
3341 }
3342
3343 update_xps(priv);
3344 }
3345
dpaa2_eth_setup_fqs(struct dpaa2_eth_priv * priv)3346 static void dpaa2_eth_setup_fqs(struct dpaa2_eth_priv *priv)
3347 {
3348 int i, j;
3349
3350 /* We have one TxConf FQ per Tx flow.
3351 * The number of Tx and Rx queues is the same.
3352 * Tx queues come first in the fq array.
3353 */
3354 for (i = 0; i < dpaa2_eth_queue_count(priv); i++) {
3355 priv->fq[priv->num_fqs].type = DPAA2_TX_CONF_FQ;
3356 priv->fq[priv->num_fqs].consume = dpaa2_eth_tx_conf;
3357 priv->fq[priv->num_fqs++].flowid = (u16)i;
3358 }
3359
3360 for (j = 0; j < dpaa2_eth_tc_count(priv); j++) {
3361 for (i = 0; i < dpaa2_eth_queue_count(priv); i++) {
3362 priv->fq[priv->num_fqs].type = DPAA2_RX_FQ;
3363 priv->fq[priv->num_fqs].consume = dpaa2_eth_rx;
3364 priv->fq[priv->num_fqs].tc = (u8)j;
3365 priv->fq[priv->num_fqs++].flowid = (u16)i;
3366 }
3367 }
3368
3369 /* We have exactly one Rx error queue per DPNI */
3370 priv->fq[priv->num_fqs].type = DPAA2_RX_ERR_FQ;
3371 priv->fq[priv->num_fqs++].consume = dpaa2_eth_rx_err;
3372
3373 /* For each FQ, decide on which core to process incoming frames */
3374 dpaa2_eth_set_fq_affinity(priv);
3375 }
3376
3377 /* Allocate and configure a buffer pool */
dpaa2_eth_allocate_dpbp(struct dpaa2_eth_priv * priv)3378 struct dpaa2_eth_bp *dpaa2_eth_allocate_dpbp(struct dpaa2_eth_priv *priv)
3379 {
3380 struct device *dev = priv->net_dev->dev.parent;
3381 struct fsl_mc_device *dpbp_dev;
3382 struct dpbp_attr dpbp_attrs;
3383 struct dpaa2_eth_bp *bp;
3384 int err;
3385
3386 err = fsl_mc_object_allocate(to_fsl_mc_device(dev), FSL_MC_POOL_DPBP,
3387 &dpbp_dev);
3388 if (err) {
3389 if (err == -ENXIO)
3390 err = -EPROBE_DEFER;
3391 else
3392 dev_err(dev, "DPBP device allocation failed\n");
3393 return ERR_PTR(err);
3394 }
3395
3396 bp = kzalloc(sizeof(*bp), GFP_KERNEL);
3397 if (!bp) {
3398 err = -ENOMEM;
3399 goto err_alloc;
3400 }
3401
3402 err = dpbp_open(priv->mc_io, 0, dpbp_dev->obj_desc.id,
3403 &dpbp_dev->mc_handle);
3404 if (err) {
3405 dev_err(dev, "dpbp_open() failed\n");
3406 goto err_open;
3407 }
3408
3409 err = dpbp_reset(priv->mc_io, 0, dpbp_dev->mc_handle);
3410 if (err) {
3411 dev_err(dev, "dpbp_reset() failed\n");
3412 goto err_reset;
3413 }
3414
3415 err = dpbp_enable(priv->mc_io, 0, dpbp_dev->mc_handle);
3416 if (err) {
3417 dev_err(dev, "dpbp_enable() failed\n");
3418 goto err_enable;
3419 }
3420
3421 err = dpbp_get_attributes(priv->mc_io, 0, dpbp_dev->mc_handle,
3422 &dpbp_attrs);
3423 if (err) {
3424 dev_err(dev, "dpbp_get_attributes() failed\n");
3425 goto err_get_attr;
3426 }
3427
3428 bp->dev = dpbp_dev;
3429 bp->bpid = dpbp_attrs.bpid;
3430
3431 return bp;
3432
3433 err_get_attr:
3434 dpbp_disable(priv->mc_io, 0, dpbp_dev->mc_handle);
3435 err_enable:
3436 err_reset:
3437 dpbp_close(priv->mc_io, 0, dpbp_dev->mc_handle);
3438 err_open:
3439 kfree(bp);
3440 err_alloc:
3441 fsl_mc_object_free(dpbp_dev);
3442
3443 return ERR_PTR(err);
3444 }
3445
dpaa2_eth_setup_default_dpbp(struct dpaa2_eth_priv * priv)3446 static int dpaa2_eth_setup_default_dpbp(struct dpaa2_eth_priv *priv)
3447 {
3448 struct dpaa2_eth_bp *bp;
3449 int i;
3450
3451 bp = dpaa2_eth_allocate_dpbp(priv);
3452 if (IS_ERR(bp))
3453 return PTR_ERR(bp);
3454
3455 priv->bp[DPAA2_ETH_DEFAULT_BP_IDX] = bp;
3456 priv->num_bps++;
3457
3458 for (i = 0; i < priv->num_channels; i++)
3459 priv->channel[i]->bp = bp;
3460
3461 return 0;
3462 }
3463
dpaa2_eth_free_dpbp(struct dpaa2_eth_priv * priv,struct dpaa2_eth_bp * bp)3464 void dpaa2_eth_free_dpbp(struct dpaa2_eth_priv *priv, struct dpaa2_eth_bp *bp)
3465 {
3466 int idx_bp;
3467
3468 /* Find the index at which this BP is stored */
3469 for (idx_bp = 0; idx_bp < priv->num_bps; idx_bp++)
3470 if (priv->bp[idx_bp] == bp)
3471 break;
3472
3473 /* Drain the pool and disable the associated MC object */
3474 dpaa2_eth_drain_pool(priv, bp->bpid);
3475 dpbp_disable(priv->mc_io, 0, bp->dev->mc_handle);
3476 dpbp_close(priv->mc_io, 0, bp->dev->mc_handle);
3477 fsl_mc_object_free(bp->dev);
3478 kfree(bp);
3479
3480 /* Move the last in use DPBP over in this position */
3481 priv->bp[idx_bp] = priv->bp[priv->num_bps - 1];
3482 priv->num_bps--;
3483 }
3484
dpaa2_eth_free_dpbps(struct dpaa2_eth_priv * priv)3485 static void dpaa2_eth_free_dpbps(struct dpaa2_eth_priv *priv)
3486 {
3487 int i;
3488
3489 for (i = 0; i < priv->num_bps; i++)
3490 dpaa2_eth_free_dpbp(priv, priv->bp[i]);
3491 }
3492
dpaa2_eth_set_buffer_layout(struct dpaa2_eth_priv * priv)3493 static int dpaa2_eth_set_buffer_layout(struct dpaa2_eth_priv *priv)
3494 {
3495 struct device *dev = priv->net_dev->dev.parent;
3496 struct dpni_buffer_layout buf_layout = {0};
3497 u16 rx_buf_align;
3498 int err;
3499
3500 /* We need to check for WRIOP version 1.0.0, but depending on the MC
3501 * version, this number is not always provided correctly on rev1.
3502 * We need to check for both alternatives in this situation.
3503 */
3504 if (priv->dpni_attrs.wriop_version == DPAA2_WRIOP_VERSION(0, 0, 0) ||
3505 priv->dpni_attrs.wriop_version == DPAA2_WRIOP_VERSION(1, 0, 0))
3506 rx_buf_align = DPAA2_ETH_RX_BUF_ALIGN_REV1;
3507 else
3508 rx_buf_align = DPAA2_ETH_RX_BUF_ALIGN;
3509
3510 /* We need to ensure that the buffer size seen by WRIOP is a multiple
3511 * of 64 or 256 bytes depending on the WRIOP version.
3512 */
3513 priv->rx_buf_size = ALIGN_DOWN(DPAA2_ETH_RX_BUF_SIZE, rx_buf_align);
3514
3515 /* tx buffer */
3516 buf_layout.private_data_size = DPAA2_ETH_SWA_SIZE;
3517 buf_layout.pass_timestamp = true;
3518 buf_layout.pass_frame_status = true;
3519 buf_layout.options = DPNI_BUF_LAYOUT_OPT_PRIVATE_DATA_SIZE |
3520 DPNI_BUF_LAYOUT_OPT_TIMESTAMP |
3521 DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
3522 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
3523 DPNI_QUEUE_TX, &buf_layout);
3524 if (err) {
3525 dev_err(dev, "dpni_set_buffer_layout(TX) failed\n");
3526 return err;
3527 }
3528
3529 /* tx-confirm buffer */
3530 buf_layout.options = DPNI_BUF_LAYOUT_OPT_TIMESTAMP |
3531 DPNI_BUF_LAYOUT_OPT_FRAME_STATUS;
3532 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
3533 DPNI_QUEUE_TX_CONFIRM, &buf_layout);
3534 if (err) {
3535 dev_err(dev, "dpni_set_buffer_layout(TX_CONF) failed\n");
3536 return err;
3537 }
3538
3539 /* Now that we've set our tx buffer layout, retrieve the minimum
3540 * required tx data offset.
3541 */
3542 err = dpni_get_tx_data_offset(priv->mc_io, 0, priv->mc_token,
3543 &priv->tx_data_offset);
3544 if (err) {
3545 dev_err(dev, "dpni_get_tx_data_offset() failed\n");
3546 return err;
3547 }
3548
3549 if ((priv->tx_data_offset % 64) != 0)
3550 dev_warn(dev, "Tx data offset (%d) not a multiple of 64B\n",
3551 priv->tx_data_offset);
3552
3553 /* rx buffer */
3554 buf_layout.pass_frame_status = true;
3555 buf_layout.pass_parser_result = true;
3556 buf_layout.data_align = rx_buf_align;
3557 buf_layout.data_head_room = dpaa2_eth_rx_head_room(priv);
3558 buf_layout.private_data_size = 0;
3559 buf_layout.options = DPNI_BUF_LAYOUT_OPT_PARSER_RESULT |
3560 DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
3561 DPNI_BUF_LAYOUT_OPT_DATA_ALIGN |
3562 DPNI_BUF_LAYOUT_OPT_DATA_HEAD_ROOM |
3563 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
3564 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
3565 DPNI_QUEUE_RX, &buf_layout);
3566 if (err) {
3567 dev_err(dev, "dpni_set_buffer_layout(RX) failed\n");
3568 return err;
3569 }
3570
3571 return 0;
3572 }
3573
3574 #define DPNI_ENQUEUE_FQID_VER_MAJOR 7
3575 #define DPNI_ENQUEUE_FQID_VER_MINOR 9
3576
dpaa2_eth_enqueue_qd(struct dpaa2_eth_priv * priv,struct dpaa2_eth_fq * fq,struct dpaa2_fd * fd,u8 prio,u32 num_frames __always_unused,int * frames_enqueued)3577 static inline int dpaa2_eth_enqueue_qd(struct dpaa2_eth_priv *priv,
3578 struct dpaa2_eth_fq *fq,
3579 struct dpaa2_fd *fd, u8 prio,
3580 u32 num_frames __always_unused,
3581 int *frames_enqueued)
3582 {
3583 int err;
3584
3585 err = dpaa2_io_service_enqueue_qd(fq->channel->dpio,
3586 priv->tx_qdid, prio,
3587 fq->tx_qdbin, fd);
3588 if (!err && frames_enqueued)
3589 *frames_enqueued = 1;
3590 return err;
3591 }
3592
dpaa2_eth_enqueue_fq_multiple(struct dpaa2_eth_priv * priv,struct dpaa2_eth_fq * fq,struct dpaa2_fd * fd,u8 prio,u32 num_frames,int * frames_enqueued)3593 static inline int dpaa2_eth_enqueue_fq_multiple(struct dpaa2_eth_priv *priv,
3594 struct dpaa2_eth_fq *fq,
3595 struct dpaa2_fd *fd,
3596 u8 prio, u32 num_frames,
3597 int *frames_enqueued)
3598 {
3599 int err;
3600
3601 err = dpaa2_io_service_enqueue_multiple_fq(fq->channel->dpio,
3602 fq->tx_fqid[prio],
3603 fd, num_frames);
3604
3605 if (err == 0)
3606 return -EBUSY;
3607
3608 if (frames_enqueued)
3609 *frames_enqueued = err;
3610 return 0;
3611 }
3612
dpaa2_eth_set_enqueue_mode(struct dpaa2_eth_priv * priv)3613 static void dpaa2_eth_set_enqueue_mode(struct dpaa2_eth_priv *priv)
3614 {
3615 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_ENQUEUE_FQID_VER_MAJOR,
3616 DPNI_ENQUEUE_FQID_VER_MINOR) < 0)
3617 priv->enqueue = dpaa2_eth_enqueue_qd;
3618 else
3619 priv->enqueue = dpaa2_eth_enqueue_fq_multiple;
3620 }
3621
dpaa2_eth_set_pause(struct dpaa2_eth_priv * priv)3622 static int dpaa2_eth_set_pause(struct dpaa2_eth_priv *priv)
3623 {
3624 struct device *dev = priv->net_dev->dev.parent;
3625 struct dpni_link_cfg link_cfg = {0};
3626 int err;
3627
3628 /* Get the default link options so we don't override other flags */
3629 err = dpni_get_link_cfg(priv->mc_io, 0, priv->mc_token, &link_cfg);
3630 if (err) {
3631 dev_err(dev, "dpni_get_link_cfg() failed\n");
3632 return err;
3633 }
3634
3635 /* By default, enable both Rx and Tx pause frames */
3636 link_cfg.options |= DPNI_LINK_OPT_PAUSE;
3637 link_cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
3638 err = dpni_set_link_cfg(priv->mc_io, 0, priv->mc_token, &link_cfg);
3639 if (err) {
3640 dev_err(dev, "dpni_set_link_cfg() failed\n");
3641 return err;
3642 }
3643
3644 priv->link_state.options = link_cfg.options;
3645
3646 return 0;
3647 }
3648
dpaa2_eth_update_tx_fqids(struct dpaa2_eth_priv * priv)3649 static void dpaa2_eth_update_tx_fqids(struct dpaa2_eth_priv *priv)
3650 {
3651 struct dpni_queue_id qid = {0};
3652 struct dpaa2_eth_fq *fq;
3653 struct dpni_queue queue;
3654 int i, j, err;
3655
3656 /* We only use Tx FQIDs for FQID-based enqueue, so check
3657 * if DPNI version supports it before updating FQIDs
3658 */
3659 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_ENQUEUE_FQID_VER_MAJOR,
3660 DPNI_ENQUEUE_FQID_VER_MINOR) < 0)
3661 return;
3662
3663 for (i = 0; i < priv->num_fqs; i++) {
3664 fq = &priv->fq[i];
3665 if (fq->type != DPAA2_TX_CONF_FQ)
3666 continue;
3667 for (j = 0; j < dpaa2_eth_tc_count(priv); j++) {
3668 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
3669 DPNI_QUEUE_TX, j, fq->flowid,
3670 &queue, &qid);
3671 if (err)
3672 goto out_err;
3673
3674 fq->tx_fqid[j] = qid.fqid;
3675 if (fq->tx_fqid[j] == 0)
3676 goto out_err;
3677 }
3678 }
3679
3680 priv->enqueue = dpaa2_eth_enqueue_fq_multiple;
3681
3682 return;
3683
3684 out_err:
3685 netdev_info(priv->net_dev,
3686 "Error reading Tx FQID, fallback to QDID-based enqueue\n");
3687 priv->enqueue = dpaa2_eth_enqueue_qd;
3688 }
3689
3690 /* Configure ingress classification based on VLAN PCP */
dpaa2_eth_set_vlan_qos(struct dpaa2_eth_priv * priv)3691 static int dpaa2_eth_set_vlan_qos(struct dpaa2_eth_priv *priv)
3692 {
3693 struct device *dev = priv->net_dev->dev.parent;
3694 struct dpkg_profile_cfg kg_cfg = {0};
3695 struct dpni_qos_tbl_cfg qos_cfg = {0};
3696 struct dpni_rule_cfg key_params;
3697 void *dma_mem, *key, *mask;
3698 u8 key_size = 2; /* VLAN TCI field */
3699 int i, pcp, err;
3700
3701 /* VLAN-based classification only makes sense if we have multiple
3702 * traffic classes.
3703 * Also, we need to extract just the 3-bit PCP field from the VLAN
3704 * header and we can only do that by using a mask
3705 */
3706 if (dpaa2_eth_tc_count(priv) == 1 || !dpaa2_eth_fs_mask_enabled(priv)) {
3707 dev_dbg(dev, "VLAN-based QoS classification not supported\n");
3708 return -EOPNOTSUPP;
3709 }
3710
3711 dma_mem = kzalloc(DPAA2_CLASSIFIER_DMA_SIZE, GFP_KERNEL);
3712 if (!dma_mem)
3713 return -ENOMEM;
3714
3715 kg_cfg.num_extracts = 1;
3716 kg_cfg.extracts[0].type = DPKG_EXTRACT_FROM_HDR;
3717 kg_cfg.extracts[0].extract.from_hdr.prot = NET_PROT_VLAN;
3718 kg_cfg.extracts[0].extract.from_hdr.type = DPKG_FULL_FIELD;
3719 kg_cfg.extracts[0].extract.from_hdr.field = NH_FLD_VLAN_TCI;
3720
3721 err = dpni_prepare_key_cfg(&kg_cfg, dma_mem);
3722 if (err) {
3723 dev_err(dev, "dpni_prepare_key_cfg failed\n");
3724 goto out_free_tbl;
3725 }
3726
3727 /* set QoS table */
3728 qos_cfg.default_tc = 0;
3729 qos_cfg.discard_on_miss = 0;
3730 qos_cfg.key_cfg_iova = dma_map_single(dev, dma_mem,
3731 DPAA2_CLASSIFIER_DMA_SIZE,
3732 DMA_TO_DEVICE);
3733 if (dma_mapping_error(dev, qos_cfg.key_cfg_iova)) {
3734 dev_err(dev, "QoS table DMA mapping failed\n");
3735 err = -ENOMEM;
3736 goto out_free_tbl;
3737 }
3738
3739 err = dpni_set_qos_table(priv->mc_io, 0, priv->mc_token, &qos_cfg);
3740 if (err) {
3741 dev_err(dev, "dpni_set_qos_table failed\n");
3742 goto out_unmap_tbl;
3743 }
3744
3745 /* Add QoS table entries */
3746 key = kzalloc(key_size * 2, GFP_KERNEL);
3747 if (!key) {
3748 err = -ENOMEM;
3749 goto out_unmap_tbl;
3750 }
3751 mask = key + key_size;
3752 *(__be16 *)mask = cpu_to_be16(VLAN_PRIO_MASK);
3753
3754 key_params.key_iova = dma_map_single(dev, key, key_size * 2,
3755 DMA_TO_DEVICE);
3756 if (dma_mapping_error(dev, key_params.key_iova)) {
3757 dev_err(dev, "Qos table entry DMA mapping failed\n");
3758 err = -ENOMEM;
3759 goto out_free_key;
3760 }
3761
3762 key_params.mask_iova = key_params.key_iova + key_size;
3763 key_params.key_size = key_size;
3764
3765 /* We add rules for PCP-based distribution starting with highest
3766 * priority (VLAN PCP = 7). If this DPNI doesn't have enough traffic
3767 * classes to accommodate all priority levels, the lowest ones end up
3768 * on TC 0 which was configured as default
3769 */
3770 for (i = dpaa2_eth_tc_count(priv) - 1, pcp = 7; i >= 0; i--, pcp--) {
3771 *(__be16 *)key = cpu_to_be16(pcp << VLAN_PRIO_SHIFT);
3772 dma_sync_single_for_device(dev, key_params.key_iova,
3773 key_size * 2, DMA_TO_DEVICE);
3774
3775 err = dpni_add_qos_entry(priv->mc_io, 0, priv->mc_token,
3776 &key_params, i, i);
3777 if (err) {
3778 dev_err(dev, "dpni_add_qos_entry failed\n");
3779 dpni_clear_qos_table(priv->mc_io, 0, priv->mc_token);
3780 goto out_unmap_key;
3781 }
3782 }
3783
3784 priv->vlan_cls_enabled = true;
3785
3786 /* Table and key memory is not persistent, clean everything up after
3787 * configuration is finished
3788 */
3789 out_unmap_key:
3790 dma_unmap_single(dev, key_params.key_iova, key_size * 2, DMA_TO_DEVICE);
3791 out_free_key:
3792 kfree(key);
3793 out_unmap_tbl:
3794 dma_unmap_single(dev, qos_cfg.key_cfg_iova, DPAA2_CLASSIFIER_DMA_SIZE,
3795 DMA_TO_DEVICE);
3796 out_free_tbl:
3797 kfree(dma_mem);
3798
3799 return err;
3800 }
3801
3802 /* Configure the DPNI object this interface is associated with */
dpaa2_eth_setup_dpni(struct fsl_mc_device * ls_dev)3803 static int dpaa2_eth_setup_dpni(struct fsl_mc_device *ls_dev)
3804 {
3805 struct device *dev = &ls_dev->dev;
3806 struct dpaa2_eth_priv *priv;
3807 struct net_device *net_dev;
3808 int err;
3809
3810 net_dev = dev_get_drvdata(dev);
3811 priv = netdev_priv(net_dev);
3812
3813 /* get a handle for the DPNI object */
3814 err = dpni_open(priv->mc_io, 0, ls_dev->obj_desc.id, &priv->mc_token);
3815 if (err) {
3816 dev_err(dev, "dpni_open() failed\n");
3817 return err;
3818 }
3819
3820 /* Check if we can work with this DPNI object */
3821 err = dpni_get_api_version(priv->mc_io, 0, &priv->dpni_ver_major,
3822 &priv->dpni_ver_minor);
3823 if (err) {
3824 dev_err(dev, "dpni_get_api_version() failed\n");
3825 goto close;
3826 }
3827 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_VER_MAJOR, DPNI_VER_MINOR) < 0) {
3828 dev_err(dev, "DPNI version %u.%u not supported, need >= %u.%u\n",
3829 priv->dpni_ver_major, priv->dpni_ver_minor,
3830 DPNI_VER_MAJOR, DPNI_VER_MINOR);
3831 err = -EOPNOTSUPP;
3832 goto close;
3833 }
3834
3835 ls_dev->mc_io = priv->mc_io;
3836 ls_dev->mc_handle = priv->mc_token;
3837
3838 err = dpni_reset(priv->mc_io, 0, priv->mc_token);
3839 if (err) {
3840 dev_err(dev, "dpni_reset() failed\n");
3841 goto close;
3842 }
3843
3844 err = dpni_get_attributes(priv->mc_io, 0, priv->mc_token,
3845 &priv->dpni_attrs);
3846 if (err) {
3847 dev_err(dev, "dpni_get_attributes() failed (err=%d)\n", err);
3848 goto close;
3849 }
3850
3851 err = dpaa2_eth_set_buffer_layout(priv);
3852 if (err)
3853 goto close;
3854
3855 dpaa2_eth_set_enqueue_mode(priv);
3856
3857 /* Enable pause frame support */
3858 if (dpaa2_eth_has_pause_support(priv)) {
3859 err = dpaa2_eth_set_pause(priv);
3860 if (err)
3861 goto close;
3862 }
3863
3864 err = dpaa2_eth_set_vlan_qos(priv);
3865 if (err && err != -EOPNOTSUPP)
3866 goto close;
3867
3868 priv->cls_rules = devm_kcalloc(dev, dpaa2_eth_fs_count(priv),
3869 sizeof(struct dpaa2_eth_cls_rule),
3870 GFP_KERNEL);
3871 if (!priv->cls_rules) {
3872 err = -ENOMEM;
3873 goto close;
3874 }
3875
3876 return 0;
3877
3878 close:
3879 dpni_close(priv->mc_io, 0, priv->mc_token);
3880
3881 return err;
3882 }
3883
dpaa2_eth_free_dpni(struct dpaa2_eth_priv * priv)3884 static void dpaa2_eth_free_dpni(struct dpaa2_eth_priv *priv)
3885 {
3886 int err;
3887
3888 err = dpni_reset(priv->mc_io, 0, priv->mc_token);
3889 if (err)
3890 netdev_warn(priv->net_dev, "dpni_reset() failed (err %d)\n",
3891 err);
3892
3893 dpni_close(priv->mc_io, 0, priv->mc_token);
3894 }
3895
dpaa2_eth_setup_rx_flow(struct dpaa2_eth_priv * priv,struct dpaa2_eth_fq * fq)3896 static int dpaa2_eth_setup_rx_flow(struct dpaa2_eth_priv *priv,
3897 struct dpaa2_eth_fq *fq)
3898 {
3899 struct device *dev = priv->net_dev->dev.parent;
3900 struct dpni_queue queue;
3901 struct dpni_queue_id qid;
3902 int err;
3903
3904 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
3905 DPNI_QUEUE_RX, fq->tc, fq->flowid, &queue, &qid);
3906 if (err) {
3907 dev_err(dev, "dpni_get_queue(RX) failed\n");
3908 return err;
3909 }
3910
3911 fq->fqid = qid.fqid;
3912
3913 queue.destination.id = fq->channel->dpcon_id;
3914 queue.destination.type = DPNI_DEST_DPCON;
3915 queue.destination.priority = 1;
3916 queue.user_context = (u64)(uintptr_t)fq;
3917 err = dpni_set_queue(priv->mc_io, 0, priv->mc_token,
3918 DPNI_QUEUE_RX, fq->tc, fq->flowid,
3919 DPNI_QUEUE_OPT_USER_CTX | DPNI_QUEUE_OPT_DEST,
3920 &queue);
3921 if (err) {
3922 dev_err(dev, "dpni_set_queue(RX) failed\n");
3923 return err;
3924 }
3925
3926 /* xdp_rxq setup */
3927 /* only once for each channel */
3928 if (fq->tc > 0)
3929 return 0;
3930
3931 err = xdp_rxq_info_reg(&fq->channel->xdp_rxq, priv->net_dev,
3932 fq->flowid, 0);
3933 if (err) {
3934 dev_err(dev, "xdp_rxq_info_reg failed\n");
3935 return err;
3936 }
3937
3938 err = xdp_rxq_info_reg_mem_model(&fq->channel->xdp_rxq,
3939 MEM_TYPE_PAGE_ORDER0, NULL);
3940 if (err) {
3941 dev_err(dev, "xdp_rxq_info_reg_mem_model failed\n");
3942 xdp_rxq_info_unreg(&fq->channel->xdp_rxq);
3943 return err;
3944 }
3945
3946 return 0;
3947 }
3948
dpaa2_eth_setup_tx_flow(struct dpaa2_eth_priv * priv,struct dpaa2_eth_fq * fq)3949 static int dpaa2_eth_setup_tx_flow(struct dpaa2_eth_priv *priv,
3950 struct dpaa2_eth_fq *fq)
3951 {
3952 struct device *dev = priv->net_dev->dev.parent;
3953 struct dpni_queue queue;
3954 struct dpni_queue_id qid;
3955 int i, err;
3956
3957 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
3958 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
3959 DPNI_QUEUE_TX, i, fq->flowid,
3960 &queue, &qid);
3961 if (err) {
3962 dev_err(dev, "dpni_get_queue(TX) failed\n");
3963 return err;
3964 }
3965 fq->tx_fqid[i] = qid.fqid;
3966 }
3967
3968 /* All Tx queues belonging to the same flowid have the same qdbin */
3969 fq->tx_qdbin = qid.qdbin;
3970
3971 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
3972 DPNI_QUEUE_TX_CONFIRM, 0, fq->flowid,
3973 &queue, &qid);
3974 if (err) {
3975 dev_err(dev, "dpni_get_queue(TX_CONF) failed\n");
3976 return err;
3977 }
3978
3979 fq->fqid = qid.fqid;
3980
3981 queue.destination.id = fq->channel->dpcon_id;
3982 queue.destination.type = DPNI_DEST_DPCON;
3983 queue.destination.priority = 0;
3984 queue.user_context = (u64)(uintptr_t)fq;
3985 err = dpni_set_queue(priv->mc_io, 0, priv->mc_token,
3986 DPNI_QUEUE_TX_CONFIRM, 0, fq->flowid,
3987 DPNI_QUEUE_OPT_USER_CTX | DPNI_QUEUE_OPT_DEST,
3988 &queue);
3989 if (err) {
3990 dev_err(dev, "dpni_set_queue(TX_CONF) failed\n");
3991 return err;
3992 }
3993
3994 return 0;
3995 }
3996
setup_rx_err_flow(struct dpaa2_eth_priv * priv,struct dpaa2_eth_fq * fq)3997 static int setup_rx_err_flow(struct dpaa2_eth_priv *priv,
3998 struct dpaa2_eth_fq *fq)
3999 {
4000 struct device *dev = priv->net_dev->dev.parent;
4001 struct dpni_queue q = { { 0 } };
4002 struct dpni_queue_id qid;
4003 u8 q_opt = DPNI_QUEUE_OPT_USER_CTX | DPNI_QUEUE_OPT_DEST;
4004 int err;
4005
4006 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
4007 DPNI_QUEUE_RX_ERR, 0, 0, &q, &qid);
4008 if (err) {
4009 dev_err(dev, "dpni_get_queue() failed (%d)\n", err);
4010 return err;
4011 }
4012
4013 fq->fqid = qid.fqid;
4014
4015 q.destination.id = fq->channel->dpcon_id;
4016 q.destination.type = DPNI_DEST_DPCON;
4017 q.destination.priority = 1;
4018 q.user_context = (u64)(uintptr_t)fq;
4019 err = dpni_set_queue(priv->mc_io, 0, priv->mc_token,
4020 DPNI_QUEUE_RX_ERR, 0, 0, q_opt, &q);
4021 if (err) {
4022 dev_err(dev, "dpni_set_queue() failed (%d)\n", err);
4023 return err;
4024 }
4025
4026 return 0;
4027 }
4028
4029 /* Supported header fields for Rx hash distribution key */
4030 static const struct dpaa2_eth_dist_fields dist_fields[] = {
4031 {
4032 /* L2 header */
4033 .rxnfc_field = RXH_L2DA,
4034 .cls_prot = NET_PROT_ETH,
4035 .cls_field = NH_FLD_ETH_DA,
4036 .id = DPAA2_ETH_DIST_ETHDST,
4037 .size = 6,
4038 }, {
4039 .cls_prot = NET_PROT_ETH,
4040 .cls_field = NH_FLD_ETH_SA,
4041 .id = DPAA2_ETH_DIST_ETHSRC,
4042 .size = 6,
4043 }, {
4044 /* This is the last ethertype field parsed:
4045 * depending on frame format, it can be the MAC ethertype
4046 * or the VLAN etype.
4047 */
4048 .cls_prot = NET_PROT_ETH,
4049 .cls_field = NH_FLD_ETH_TYPE,
4050 .id = DPAA2_ETH_DIST_ETHTYPE,
4051 .size = 2,
4052 }, {
4053 /* VLAN header */
4054 .rxnfc_field = RXH_VLAN,
4055 .cls_prot = NET_PROT_VLAN,
4056 .cls_field = NH_FLD_VLAN_TCI,
4057 .id = DPAA2_ETH_DIST_VLAN,
4058 .size = 2,
4059 }, {
4060 /* IP header */
4061 .rxnfc_field = RXH_IP_SRC,
4062 .cls_prot = NET_PROT_IP,
4063 .cls_field = NH_FLD_IP_SRC,
4064 .id = DPAA2_ETH_DIST_IPSRC,
4065 .size = 4,
4066 }, {
4067 .rxnfc_field = RXH_IP_DST,
4068 .cls_prot = NET_PROT_IP,
4069 .cls_field = NH_FLD_IP_DST,
4070 .id = DPAA2_ETH_DIST_IPDST,
4071 .size = 4,
4072 }, {
4073 .rxnfc_field = RXH_L3_PROTO,
4074 .cls_prot = NET_PROT_IP,
4075 .cls_field = NH_FLD_IP_PROTO,
4076 .id = DPAA2_ETH_DIST_IPPROTO,
4077 .size = 1,
4078 }, {
4079 /* Using UDP ports, this is functionally equivalent to raw
4080 * byte pairs from L4 header.
4081 */
4082 .rxnfc_field = RXH_L4_B_0_1,
4083 .cls_prot = NET_PROT_UDP,
4084 .cls_field = NH_FLD_UDP_PORT_SRC,
4085 .id = DPAA2_ETH_DIST_L4SRC,
4086 .size = 2,
4087 }, {
4088 .rxnfc_field = RXH_L4_B_2_3,
4089 .cls_prot = NET_PROT_UDP,
4090 .cls_field = NH_FLD_UDP_PORT_DST,
4091 .id = DPAA2_ETH_DIST_L4DST,
4092 .size = 2,
4093 },
4094 };
4095
4096 /* Configure the Rx hash key using the legacy API */
dpaa2_eth_config_legacy_hash_key(struct dpaa2_eth_priv * priv,dma_addr_t key)4097 static int dpaa2_eth_config_legacy_hash_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
4098 {
4099 struct device *dev = priv->net_dev->dev.parent;
4100 struct dpni_rx_tc_dist_cfg dist_cfg;
4101 int i, err = 0;
4102
4103 memset(&dist_cfg, 0, sizeof(dist_cfg));
4104
4105 dist_cfg.key_cfg_iova = key;
4106 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
4107 dist_cfg.dist_mode = DPNI_DIST_MODE_HASH;
4108
4109 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
4110 err = dpni_set_rx_tc_dist(priv->mc_io, 0, priv->mc_token,
4111 i, &dist_cfg);
4112 if (err) {
4113 dev_err(dev, "dpni_set_rx_tc_dist failed\n");
4114 break;
4115 }
4116 }
4117
4118 return err;
4119 }
4120
4121 /* Configure the Rx hash key using the new API */
dpaa2_eth_config_hash_key(struct dpaa2_eth_priv * priv,dma_addr_t key)4122 static int dpaa2_eth_config_hash_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
4123 {
4124 struct device *dev = priv->net_dev->dev.parent;
4125 struct dpni_rx_dist_cfg dist_cfg;
4126 int i, err = 0;
4127
4128 memset(&dist_cfg, 0, sizeof(dist_cfg));
4129
4130 dist_cfg.key_cfg_iova = key;
4131 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
4132 dist_cfg.enable = 1;
4133
4134 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
4135 dist_cfg.tc = i;
4136 err = dpni_set_rx_hash_dist(priv->mc_io, 0, priv->mc_token,
4137 &dist_cfg);
4138 if (err) {
4139 dev_err(dev, "dpni_set_rx_hash_dist failed\n");
4140 break;
4141 }
4142
4143 /* If the flow steering / hashing key is shared between all
4144 * traffic classes, install it just once
4145 */
4146 if (priv->dpni_attrs.options & DPNI_OPT_SHARED_FS)
4147 break;
4148 }
4149
4150 return err;
4151 }
4152
4153 /* Configure the Rx flow classification key */
dpaa2_eth_config_cls_key(struct dpaa2_eth_priv * priv,dma_addr_t key)4154 static int dpaa2_eth_config_cls_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
4155 {
4156 struct device *dev = priv->net_dev->dev.parent;
4157 struct dpni_rx_dist_cfg dist_cfg;
4158 int i, err = 0;
4159
4160 memset(&dist_cfg, 0, sizeof(dist_cfg));
4161
4162 dist_cfg.key_cfg_iova = key;
4163 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
4164 dist_cfg.enable = 1;
4165
4166 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
4167 dist_cfg.tc = i;
4168 err = dpni_set_rx_fs_dist(priv->mc_io, 0, priv->mc_token,
4169 &dist_cfg);
4170 if (err) {
4171 dev_err(dev, "dpni_set_rx_fs_dist failed\n");
4172 break;
4173 }
4174
4175 /* If the flow steering / hashing key is shared between all
4176 * traffic classes, install it just once
4177 */
4178 if (priv->dpni_attrs.options & DPNI_OPT_SHARED_FS)
4179 break;
4180 }
4181
4182 return err;
4183 }
4184
4185 /* Size of the Rx flow classification key */
dpaa2_eth_cls_key_size(u64 fields)4186 int dpaa2_eth_cls_key_size(u64 fields)
4187 {
4188 int i, size = 0;
4189
4190 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
4191 if (!(fields & dist_fields[i].id))
4192 continue;
4193 size += dist_fields[i].size;
4194 }
4195
4196 return size;
4197 }
4198
4199 /* Offset of header field in Rx classification key */
dpaa2_eth_cls_fld_off(int prot,int field)4200 int dpaa2_eth_cls_fld_off(int prot, int field)
4201 {
4202 int i, off = 0;
4203
4204 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
4205 if (dist_fields[i].cls_prot == prot &&
4206 dist_fields[i].cls_field == field)
4207 return off;
4208 off += dist_fields[i].size;
4209 }
4210
4211 WARN_ONCE(1, "Unsupported header field used for Rx flow cls\n");
4212 return 0;
4213 }
4214
4215 /* Prune unused fields from the classification rule.
4216 * Used when masking is not supported
4217 */
dpaa2_eth_cls_trim_rule(void * key_mem,u64 fields)4218 void dpaa2_eth_cls_trim_rule(void *key_mem, u64 fields)
4219 {
4220 int off = 0, new_off = 0;
4221 int i, size;
4222
4223 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
4224 size = dist_fields[i].size;
4225 if (dist_fields[i].id & fields) {
4226 memcpy(key_mem + new_off, key_mem + off, size);
4227 new_off += size;
4228 }
4229 off += size;
4230 }
4231 }
4232
4233 /* Set Rx distribution (hash or flow classification) key
4234 * flags is a combination of RXH_ bits
4235 */
dpaa2_eth_set_dist_key(struct net_device * net_dev,enum dpaa2_eth_rx_dist type,u64 flags)4236 static int dpaa2_eth_set_dist_key(struct net_device *net_dev,
4237 enum dpaa2_eth_rx_dist type, u64 flags)
4238 {
4239 struct device *dev = net_dev->dev.parent;
4240 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
4241 struct dpkg_profile_cfg cls_cfg;
4242 u32 rx_hash_fields = 0;
4243 dma_addr_t key_iova;
4244 u8 *dma_mem;
4245 int i;
4246 int err = 0;
4247
4248 memset(&cls_cfg, 0, sizeof(cls_cfg));
4249
4250 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
4251 struct dpkg_extract *key =
4252 &cls_cfg.extracts[cls_cfg.num_extracts];
4253
4254 /* For both Rx hashing and classification keys
4255 * we set only the selected fields.
4256 */
4257 if (!(flags & dist_fields[i].id))
4258 continue;
4259 if (type == DPAA2_ETH_RX_DIST_HASH)
4260 rx_hash_fields |= dist_fields[i].rxnfc_field;
4261
4262 if (cls_cfg.num_extracts >= DPKG_MAX_NUM_OF_EXTRACTS) {
4263 dev_err(dev, "error adding key extraction rule, too many rules?\n");
4264 return -E2BIG;
4265 }
4266
4267 key->type = DPKG_EXTRACT_FROM_HDR;
4268 key->extract.from_hdr.prot = dist_fields[i].cls_prot;
4269 key->extract.from_hdr.type = DPKG_FULL_FIELD;
4270 key->extract.from_hdr.field = dist_fields[i].cls_field;
4271 cls_cfg.num_extracts++;
4272 }
4273
4274 dma_mem = kzalloc(DPAA2_CLASSIFIER_DMA_SIZE, GFP_KERNEL);
4275 if (!dma_mem)
4276 return -ENOMEM;
4277
4278 err = dpni_prepare_key_cfg(&cls_cfg, dma_mem);
4279 if (err) {
4280 dev_err(dev, "dpni_prepare_key_cfg error %d\n", err);
4281 goto free_key;
4282 }
4283
4284 /* Prepare for setting the rx dist */
4285 key_iova = dma_map_single(dev, dma_mem, DPAA2_CLASSIFIER_DMA_SIZE,
4286 DMA_TO_DEVICE);
4287 if (dma_mapping_error(dev, key_iova)) {
4288 dev_err(dev, "DMA mapping failed\n");
4289 err = -ENOMEM;
4290 goto free_key;
4291 }
4292
4293 if (type == DPAA2_ETH_RX_DIST_HASH) {
4294 if (dpaa2_eth_has_legacy_dist(priv))
4295 err = dpaa2_eth_config_legacy_hash_key(priv, key_iova);
4296 else
4297 err = dpaa2_eth_config_hash_key(priv, key_iova);
4298 } else {
4299 err = dpaa2_eth_config_cls_key(priv, key_iova);
4300 }
4301
4302 dma_unmap_single(dev, key_iova, DPAA2_CLASSIFIER_DMA_SIZE,
4303 DMA_TO_DEVICE);
4304 if (!err && type == DPAA2_ETH_RX_DIST_HASH)
4305 priv->rx_hash_fields = rx_hash_fields;
4306
4307 free_key:
4308 kfree(dma_mem);
4309 return err;
4310 }
4311
dpaa2_eth_set_hash(struct net_device * net_dev,u64 flags)4312 int dpaa2_eth_set_hash(struct net_device *net_dev, u64 flags)
4313 {
4314 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
4315 u64 key = 0;
4316 int i;
4317
4318 if (!dpaa2_eth_hash_enabled(priv))
4319 return -EOPNOTSUPP;
4320
4321 for (i = 0; i < ARRAY_SIZE(dist_fields); i++)
4322 if (dist_fields[i].rxnfc_field & flags)
4323 key |= dist_fields[i].id;
4324
4325 return dpaa2_eth_set_dist_key(net_dev, DPAA2_ETH_RX_DIST_HASH, key);
4326 }
4327
dpaa2_eth_set_cls(struct net_device * net_dev,u64 flags)4328 int dpaa2_eth_set_cls(struct net_device *net_dev, u64 flags)
4329 {
4330 return dpaa2_eth_set_dist_key(net_dev, DPAA2_ETH_RX_DIST_CLS, flags);
4331 }
4332
dpaa2_eth_set_default_cls(struct dpaa2_eth_priv * priv)4333 static int dpaa2_eth_set_default_cls(struct dpaa2_eth_priv *priv)
4334 {
4335 struct device *dev = priv->net_dev->dev.parent;
4336 int err;
4337
4338 /* Check if we actually support Rx flow classification */
4339 if (dpaa2_eth_has_legacy_dist(priv)) {
4340 dev_dbg(dev, "Rx cls not supported by current MC version\n");
4341 return -EOPNOTSUPP;
4342 }
4343
4344 if (!dpaa2_eth_fs_enabled(priv)) {
4345 dev_dbg(dev, "Rx cls disabled in DPNI options\n");
4346 return -EOPNOTSUPP;
4347 }
4348
4349 if (!dpaa2_eth_hash_enabled(priv)) {
4350 dev_dbg(dev, "Rx cls disabled for single queue DPNIs\n");
4351 return -EOPNOTSUPP;
4352 }
4353
4354 /* If there is no support for masking in the classification table,
4355 * we don't set a default key, as it will depend on the rules
4356 * added by the user at runtime.
4357 */
4358 if (!dpaa2_eth_fs_mask_enabled(priv))
4359 goto out;
4360
4361 err = dpaa2_eth_set_cls(priv->net_dev, DPAA2_ETH_DIST_ALL);
4362 if (err)
4363 return err;
4364
4365 out:
4366 priv->rx_cls_enabled = 1;
4367
4368 return 0;
4369 }
4370
4371 /* Bind the DPNI to its needed objects and resources: buffer pool, DPIOs,
4372 * frame queues and channels
4373 */
dpaa2_eth_bind_dpni(struct dpaa2_eth_priv * priv)4374 static int dpaa2_eth_bind_dpni(struct dpaa2_eth_priv *priv)
4375 {
4376 struct dpaa2_eth_bp *bp = priv->bp[DPAA2_ETH_DEFAULT_BP_IDX];
4377 struct net_device *net_dev = priv->net_dev;
4378 struct dpni_pools_cfg pools_params = { 0 };
4379 struct device *dev = net_dev->dev.parent;
4380 struct dpni_error_cfg err_cfg;
4381 int err = 0;
4382 int i;
4383
4384 pools_params.num_dpbp = 1;
4385 pools_params.pools[0].dpbp_id = bp->dev->obj_desc.id;
4386 pools_params.pools[0].backup_pool = 0;
4387 pools_params.pools[0].buffer_size = priv->rx_buf_size;
4388 err = dpni_set_pools(priv->mc_io, 0, priv->mc_token, &pools_params);
4389 if (err) {
4390 dev_err(dev, "dpni_set_pools() failed\n");
4391 return err;
4392 }
4393
4394 /* have the interface implicitly distribute traffic based on
4395 * the default hash key
4396 */
4397 err = dpaa2_eth_set_hash(net_dev, DPAA2_RXH_DEFAULT);
4398 if (err && err != -EOPNOTSUPP)
4399 dev_err(dev, "Failed to configure hashing\n");
4400
4401 /* Configure the flow classification key; it includes all
4402 * supported header fields and cannot be modified at runtime
4403 */
4404 err = dpaa2_eth_set_default_cls(priv);
4405 if (err && err != -EOPNOTSUPP)
4406 dev_err(dev, "Failed to configure Rx classification key\n");
4407
4408 /* Configure handling of error frames */
4409 err_cfg.errors = DPAA2_FAS_RX_ERR_MASK;
4410 err_cfg.set_frame_annotation = 1;
4411 err_cfg.error_action = DPNI_ERROR_ACTION_DISCARD;
4412 err = dpni_set_errors_behavior(priv->mc_io, 0, priv->mc_token,
4413 &err_cfg);
4414 if (err) {
4415 dev_err(dev, "dpni_set_errors_behavior failed\n");
4416 return err;
4417 }
4418
4419 /* Configure Rx and Tx conf queues to generate CDANs */
4420 for (i = 0; i < priv->num_fqs; i++) {
4421 switch (priv->fq[i].type) {
4422 case DPAA2_RX_FQ:
4423 err = dpaa2_eth_setup_rx_flow(priv, &priv->fq[i]);
4424 break;
4425 case DPAA2_TX_CONF_FQ:
4426 err = dpaa2_eth_setup_tx_flow(priv, &priv->fq[i]);
4427 break;
4428 case DPAA2_RX_ERR_FQ:
4429 err = setup_rx_err_flow(priv, &priv->fq[i]);
4430 break;
4431 default:
4432 dev_err(dev, "Invalid FQ type %d\n", priv->fq[i].type);
4433 return -EINVAL;
4434 }
4435 if (err)
4436 goto out;
4437 }
4438
4439 err = dpni_get_qdid(priv->mc_io, 0, priv->mc_token,
4440 DPNI_QUEUE_TX, &priv->tx_qdid);
4441 if (err) {
4442 dev_err(dev, "dpni_get_qdid() failed\n");
4443 goto out;
4444 }
4445
4446 return 0;
4447
4448 out:
4449 while (i--) {
4450 if (priv->fq[i].type == DPAA2_RX_FQ &&
4451 xdp_rxq_info_is_reg(&priv->fq[i].channel->xdp_rxq))
4452 xdp_rxq_info_unreg(&priv->fq[i].channel->xdp_rxq);
4453 }
4454 return err;
4455 }
4456
4457 /* Allocate rings for storing incoming frame descriptors */
dpaa2_eth_alloc_rings(struct dpaa2_eth_priv * priv)4458 static int dpaa2_eth_alloc_rings(struct dpaa2_eth_priv *priv)
4459 {
4460 struct net_device *net_dev = priv->net_dev;
4461 struct device *dev = net_dev->dev.parent;
4462 int i;
4463
4464 for (i = 0; i < priv->num_channels; i++) {
4465 priv->channel[i]->store =
4466 dpaa2_io_store_create(DPAA2_ETH_STORE_SIZE, dev);
4467 if (!priv->channel[i]->store) {
4468 netdev_err(net_dev, "dpaa2_io_store_create() failed\n");
4469 goto err_ring;
4470 }
4471 }
4472
4473 return 0;
4474
4475 err_ring:
4476 for (i = 0; i < priv->num_channels; i++) {
4477 if (!priv->channel[i]->store)
4478 break;
4479 dpaa2_io_store_destroy(priv->channel[i]->store);
4480 }
4481
4482 return -ENOMEM;
4483 }
4484
dpaa2_eth_free_rings(struct dpaa2_eth_priv * priv)4485 static void dpaa2_eth_free_rings(struct dpaa2_eth_priv *priv)
4486 {
4487 int i;
4488
4489 for (i = 0; i < priv->num_channels; i++)
4490 dpaa2_io_store_destroy(priv->channel[i]->store);
4491 }
4492
dpaa2_eth_set_mac_addr(struct dpaa2_eth_priv * priv)4493 static int dpaa2_eth_set_mac_addr(struct dpaa2_eth_priv *priv)
4494 {
4495 struct net_device *net_dev = priv->net_dev;
4496 struct device *dev = net_dev->dev.parent;
4497 u8 mac_addr[ETH_ALEN], dpni_mac_addr[ETH_ALEN];
4498 int err;
4499
4500 /* Get firmware address, if any */
4501 err = dpni_get_port_mac_addr(priv->mc_io, 0, priv->mc_token, mac_addr);
4502 if (err) {
4503 dev_err(dev, "dpni_get_port_mac_addr() failed\n");
4504 return err;
4505 }
4506
4507 /* Get DPNI attributes address, if any */
4508 err = dpni_get_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
4509 dpni_mac_addr);
4510 if (err) {
4511 dev_err(dev, "dpni_get_primary_mac_addr() failed\n");
4512 return err;
4513 }
4514
4515 /* First check if firmware has any address configured by bootloader */
4516 if (!is_zero_ether_addr(mac_addr)) {
4517 /* If the DPMAC addr != DPNI addr, update it */
4518 if (!ether_addr_equal(mac_addr, dpni_mac_addr)) {
4519 err = dpni_set_primary_mac_addr(priv->mc_io, 0,
4520 priv->mc_token,
4521 mac_addr);
4522 if (err) {
4523 dev_err(dev, "dpni_set_primary_mac_addr() failed\n");
4524 return err;
4525 }
4526 }
4527 eth_hw_addr_set(net_dev, mac_addr);
4528 } else if (is_zero_ether_addr(dpni_mac_addr)) {
4529 /* No MAC address configured, fill in net_dev->dev_addr
4530 * with a random one
4531 */
4532 eth_hw_addr_random(net_dev);
4533 dev_dbg_once(dev, "device(s) have all-zero hwaddr, replaced with random\n");
4534
4535 err = dpni_set_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
4536 net_dev->dev_addr);
4537 if (err) {
4538 dev_err(dev, "dpni_set_primary_mac_addr() failed\n");
4539 return err;
4540 }
4541
4542 /* Override NET_ADDR_RANDOM set by eth_hw_addr_random(); for all
4543 * practical purposes, this will be our "permanent" mac address,
4544 * at least until the next reboot. This move will also permit
4545 * register_netdevice() to properly fill up net_dev->perm_addr.
4546 */
4547 net_dev->addr_assign_type = NET_ADDR_PERM;
4548 } else {
4549 /* NET_ADDR_PERM is default, all we have to do is
4550 * fill in the device addr.
4551 */
4552 eth_hw_addr_set(net_dev, dpni_mac_addr);
4553 }
4554
4555 return 0;
4556 }
4557
dpaa2_eth_netdev_init(struct net_device * net_dev)4558 static int dpaa2_eth_netdev_init(struct net_device *net_dev)
4559 {
4560 struct device *dev = net_dev->dev.parent;
4561 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
4562 u32 options = priv->dpni_attrs.options;
4563 u64 supported = 0, not_supported = 0;
4564 u8 bcast_addr[ETH_ALEN];
4565 u8 num_queues;
4566 int err;
4567
4568 net_dev->netdev_ops = &dpaa2_eth_ops;
4569 net_dev->ethtool_ops = &dpaa2_ethtool_ops;
4570
4571 err = dpaa2_eth_set_mac_addr(priv);
4572 if (err)
4573 return err;
4574
4575 /* Explicitly add the broadcast address to the MAC filtering table */
4576 eth_broadcast_addr(bcast_addr);
4577 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token, bcast_addr);
4578 if (err) {
4579 dev_err(dev, "dpni_add_mac_addr() failed\n");
4580 return err;
4581 }
4582
4583 /* Set MTU upper limit; lower limit is 68B (default value) */
4584 net_dev->max_mtu = DPAA2_ETH_MAX_MTU;
4585 err = dpni_set_max_frame_length(priv->mc_io, 0, priv->mc_token,
4586 DPAA2_ETH_MFL);
4587 if (err) {
4588 dev_err(dev, "dpni_set_max_frame_length() failed\n");
4589 return err;
4590 }
4591
4592 /* Set actual number of queues in the net device */
4593 num_queues = dpaa2_eth_queue_count(priv);
4594 err = netif_set_real_num_tx_queues(net_dev, num_queues);
4595 if (err) {
4596 dev_err(dev, "netif_set_real_num_tx_queues() failed\n");
4597 return err;
4598 }
4599 err = netif_set_real_num_rx_queues(net_dev, num_queues);
4600 if (err) {
4601 dev_err(dev, "netif_set_real_num_rx_queues() failed\n");
4602 return err;
4603 }
4604
4605 dpaa2_eth_detect_features(priv);
4606
4607 /* Capabilities listing */
4608 supported |= IFF_LIVE_ADDR_CHANGE;
4609
4610 if (options & DPNI_OPT_NO_MAC_FILTER)
4611 not_supported |= IFF_UNICAST_FLT;
4612 else
4613 supported |= IFF_UNICAST_FLT;
4614
4615 net_dev->priv_flags |= supported;
4616 net_dev->priv_flags &= ~not_supported;
4617 net_dev->lltx = true;
4618
4619 /* Features */
4620 net_dev->features = NETIF_F_RXCSUM |
4621 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
4622 NETIF_F_SG | NETIF_F_HIGHDMA |
4623 NETIF_F_HW_TC | NETIF_F_TSO;
4624 net_dev->gso_max_segs = DPAA2_ETH_ENQUEUE_MAX_FDS;
4625 net_dev->hw_features = net_dev->features;
4626 net_dev->xdp_features = NETDEV_XDP_ACT_BASIC |
4627 NETDEV_XDP_ACT_REDIRECT |
4628 NETDEV_XDP_ACT_NDO_XMIT;
4629 if (priv->dpni_attrs.wriop_version >= DPAA2_WRIOP_VERSION(3, 0, 0) &&
4630 priv->dpni_attrs.num_queues <= 8)
4631 net_dev->xdp_features |= NETDEV_XDP_ACT_XSK_ZEROCOPY;
4632
4633 if (priv->dpni_attrs.vlan_filter_entries)
4634 net_dev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
4635
4636 return 0;
4637 }
4638
dpaa2_eth_poll_link_state(void * arg)4639 static int dpaa2_eth_poll_link_state(void *arg)
4640 {
4641 struct dpaa2_eth_priv *priv = (struct dpaa2_eth_priv *)arg;
4642 int err;
4643
4644 while (!kthread_should_stop()) {
4645 err = dpaa2_eth_link_state_update(priv);
4646 if (unlikely(err))
4647 return err;
4648
4649 msleep(DPAA2_ETH_LINK_STATE_REFRESH);
4650 }
4651
4652 return 0;
4653 }
4654
dpaa2_eth_connect_mac(struct dpaa2_eth_priv * priv)4655 static int dpaa2_eth_connect_mac(struct dpaa2_eth_priv *priv)
4656 {
4657 struct fsl_mc_device *dpni_dev, *dpmac_dev;
4658 struct dpaa2_mac *mac;
4659 int err;
4660
4661 dpni_dev = to_fsl_mc_device(priv->net_dev->dev.parent);
4662 dpmac_dev = fsl_mc_get_endpoint(dpni_dev, 0);
4663
4664 if (PTR_ERR(dpmac_dev) == -EPROBE_DEFER) {
4665 netdev_dbg(priv->net_dev, "waiting for mac\n");
4666 return PTR_ERR(dpmac_dev);
4667 }
4668
4669 if (IS_ERR(dpmac_dev) || dpmac_dev->dev.type != &fsl_mc_bus_dpmac_type)
4670 return 0;
4671
4672 mac = kzalloc(sizeof(struct dpaa2_mac), GFP_KERNEL);
4673 if (!mac)
4674 return -ENOMEM;
4675
4676 mac->mc_dev = dpmac_dev;
4677 mac->mc_io = priv->mc_io;
4678 mac->net_dev = priv->net_dev;
4679
4680 err = dpaa2_mac_open(mac);
4681 if (err)
4682 goto err_free_mac;
4683
4684 if (dpaa2_mac_is_type_phy(mac)) {
4685 err = dpaa2_mac_connect(mac);
4686 if (err) {
4687 if (err == -EPROBE_DEFER)
4688 netdev_dbg(priv->net_dev,
4689 "could not connect to MAC\n");
4690 else
4691 netdev_err(priv->net_dev,
4692 "Error connecting to the MAC endpoint: %pe",
4693 ERR_PTR(err));
4694 goto err_close_mac;
4695 }
4696 }
4697
4698 mutex_lock(&priv->mac_lock);
4699 priv->mac = mac;
4700 mutex_unlock(&priv->mac_lock);
4701
4702 return 0;
4703
4704 err_close_mac:
4705 dpaa2_mac_close(mac);
4706 err_free_mac:
4707 kfree(mac);
4708 return err;
4709 }
4710
dpaa2_eth_disconnect_mac(struct dpaa2_eth_priv * priv)4711 static void dpaa2_eth_disconnect_mac(struct dpaa2_eth_priv *priv)
4712 {
4713 struct dpaa2_mac *mac;
4714
4715 mutex_lock(&priv->mac_lock);
4716 mac = priv->mac;
4717 priv->mac = NULL;
4718 mutex_unlock(&priv->mac_lock);
4719
4720 if (!mac)
4721 return;
4722
4723 if (dpaa2_mac_is_type_phy(mac))
4724 dpaa2_mac_disconnect(mac);
4725
4726 dpaa2_mac_close(mac);
4727 kfree(mac);
4728 }
4729
dpni_irq0_handler_thread(int irq_num,void * arg)4730 static irqreturn_t dpni_irq0_handler_thread(int irq_num, void *arg)
4731 {
4732 u32 status = ~0;
4733 struct device *dev = (struct device *)arg;
4734 struct fsl_mc_device *dpni_dev = to_fsl_mc_device(dev);
4735 struct net_device *net_dev = dev_get_drvdata(dev);
4736 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
4737 bool had_mac;
4738 int err;
4739
4740 err = dpni_get_irq_status(dpni_dev->mc_io, 0, dpni_dev->mc_handle,
4741 DPNI_IRQ_INDEX, &status);
4742 if (unlikely(err)) {
4743 netdev_err(net_dev, "Can't get irq status (err %d)\n", err);
4744 return IRQ_HANDLED;
4745 }
4746
4747 if (status & DPNI_IRQ_EVENT_LINK_CHANGED)
4748 dpaa2_eth_link_state_update(netdev_priv(net_dev));
4749
4750 if (status & DPNI_IRQ_EVENT_ENDPOINT_CHANGED) {
4751 dpaa2_eth_set_mac_addr(netdev_priv(net_dev));
4752 dpaa2_eth_update_tx_fqids(priv);
4753
4754 /* We can avoid locking because the "endpoint changed" IRQ
4755 * handler is the only one who changes priv->mac at runtime,
4756 * so we are not racing with anyone.
4757 */
4758 had_mac = !!priv->mac;
4759 if (had_mac)
4760 dpaa2_eth_disconnect_mac(priv);
4761 else
4762 dpaa2_eth_connect_mac(priv);
4763 }
4764
4765 return IRQ_HANDLED;
4766 }
4767
dpaa2_eth_setup_irqs(struct fsl_mc_device * ls_dev)4768 static int dpaa2_eth_setup_irqs(struct fsl_mc_device *ls_dev)
4769 {
4770 int err = 0;
4771 struct fsl_mc_device_irq *irq;
4772
4773 err = fsl_mc_allocate_irqs(ls_dev);
4774 if (err) {
4775 dev_err(&ls_dev->dev, "MC irqs allocation failed\n");
4776 return err;
4777 }
4778
4779 irq = ls_dev->irqs[0];
4780 err = devm_request_threaded_irq(&ls_dev->dev, irq->virq,
4781 NULL, dpni_irq0_handler_thread,
4782 IRQF_NO_SUSPEND | IRQF_ONESHOT,
4783 dev_name(&ls_dev->dev), &ls_dev->dev);
4784 if (err < 0) {
4785 dev_err(&ls_dev->dev, "devm_request_threaded_irq(): %d\n", err);
4786 goto free_mc_irq;
4787 }
4788
4789 err = dpni_set_irq_mask(ls_dev->mc_io, 0, ls_dev->mc_handle,
4790 DPNI_IRQ_INDEX, DPNI_IRQ_EVENT_LINK_CHANGED |
4791 DPNI_IRQ_EVENT_ENDPOINT_CHANGED);
4792 if (err < 0) {
4793 dev_err(&ls_dev->dev, "dpni_set_irq_mask(): %d\n", err);
4794 goto free_irq;
4795 }
4796
4797 err = dpni_set_irq_enable(ls_dev->mc_io, 0, ls_dev->mc_handle,
4798 DPNI_IRQ_INDEX, 1);
4799 if (err < 0) {
4800 dev_err(&ls_dev->dev, "dpni_set_irq_enable(): %d\n", err);
4801 goto free_irq;
4802 }
4803
4804 return 0;
4805
4806 free_irq:
4807 devm_free_irq(&ls_dev->dev, irq->virq, &ls_dev->dev);
4808 free_mc_irq:
4809 fsl_mc_free_irqs(ls_dev);
4810
4811 return err;
4812 }
4813
dpaa2_eth_add_ch_napi(struct dpaa2_eth_priv * priv)4814 static void dpaa2_eth_add_ch_napi(struct dpaa2_eth_priv *priv)
4815 {
4816 int i;
4817 struct dpaa2_eth_channel *ch;
4818
4819 for (i = 0; i < priv->num_channels; i++) {
4820 ch = priv->channel[i];
4821 /* NAPI weight *MUST* be a multiple of DPAA2_ETH_STORE_SIZE */
4822 netif_napi_add(priv->net_dev, &ch->napi, dpaa2_eth_poll);
4823 }
4824 }
4825
dpaa2_eth_del_ch_napi(struct dpaa2_eth_priv * priv)4826 static void dpaa2_eth_del_ch_napi(struct dpaa2_eth_priv *priv)
4827 {
4828 int i;
4829 struct dpaa2_eth_channel *ch;
4830
4831 for (i = 0; i < priv->num_channels; i++) {
4832 ch = priv->channel[i];
4833 netif_napi_del(&ch->napi);
4834 }
4835 }
4836
dpaa2_eth_free_rx_xdp_rxq(struct dpaa2_eth_priv * priv)4837 static void dpaa2_eth_free_rx_xdp_rxq(struct dpaa2_eth_priv *priv)
4838 {
4839 int i;
4840
4841 for (i = 0; i < priv->num_fqs; i++) {
4842 if (priv->fq[i].type == DPAA2_RX_FQ &&
4843 xdp_rxq_info_is_reg(&priv->fq[i].channel->xdp_rxq))
4844 xdp_rxq_info_unreg(&priv->fq[i].channel->xdp_rxq);
4845 }
4846 }
4847
dpaa2_eth_probe(struct fsl_mc_device * dpni_dev)4848 static int dpaa2_eth_probe(struct fsl_mc_device *dpni_dev)
4849 {
4850 struct device *dev;
4851 struct net_device *net_dev = NULL;
4852 struct dpaa2_eth_priv *priv = NULL;
4853 int err = 0;
4854
4855 dev = &dpni_dev->dev;
4856
4857 /* Net device */
4858 net_dev = alloc_etherdev_mq(sizeof(*priv), DPAA2_ETH_MAX_NETDEV_QUEUES);
4859 if (!net_dev) {
4860 dev_err(dev, "alloc_etherdev_mq() failed\n");
4861 return -ENOMEM;
4862 }
4863
4864 SET_NETDEV_DEV(net_dev, dev);
4865 dev_set_drvdata(dev, net_dev);
4866
4867 priv = netdev_priv(net_dev);
4868 priv->net_dev = net_dev;
4869 SET_NETDEV_DEVLINK_PORT(net_dev, &priv->devlink_port);
4870
4871 mutex_init(&priv->mac_lock);
4872
4873 priv->iommu_domain = iommu_get_domain_for_dev(dev);
4874
4875 priv->tx_tstamp_type = HWTSTAMP_TX_OFF;
4876 priv->rx_tstamp = false;
4877
4878 priv->dpaa2_ptp_wq = alloc_workqueue("dpaa2_ptp_wq", 0, 0);
4879 if (!priv->dpaa2_ptp_wq) {
4880 err = -ENOMEM;
4881 goto err_wq_alloc;
4882 }
4883
4884 INIT_WORK(&priv->tx_onestep_tstamp, dpaa2_eth_tx_onestep_tstamp);
4885 mutex_init(&priv->onestep_tstamp_lock);
4886 skb_queue_head_init(&priv->tx_skbs);
4887
4888 priv->rx_copybreak = DPAA2_ETH_DEFAULT_COPYBREAK;
4889
4890 /* Obtain a MC portal */
4891 err = fsl_mc_portal_allocate(dpni_dev, FSL_MC_IO_ATOMIC_CONTEXT_PORTAL,
4892 &priv->mc_io);
4893 if (err) {
4894 if (err == -ENXIO) {
4895 dev_dbg(dev, "waiting for MC portal\n");
4896 err = -EPROBE_DEFER;
4897 } else {
4898 dev_err(dev, "MC portal allocation failed\n");
4899 }
4900 goto err_portal_alloc;
4901 }
4902
4903 /* MC objects initialization and configuration */
4904 err = dpaa2_eth_setup_dpni(dpni_dev);
4905 if (err)
4906 goto err_dpni_setup;
4907
4908 err = dpaa2_eth_setup_dpio(priv);
4909 if (err)
4910 goto err_dpio_setup;
4911
4912 dpaa2_eth_setup_fqs(priv);
4913
4914 err = dpaa2_eth_setup_default_dpbp(priv);
4915 if (err)
4916 goto err_dpbp_setup;
4917
4918 err = dpaa2_eth_bind_dpni(priv);
4919 if (err)
4920 goto err_bind;
4921
4922 /* Add a NAPI context for each channel */
4923 dpaa2_eth_add_ch_napi(priv);
4924
4925 /* Percpu statistics */
4926 priv->percpu_stats = alloc_percpu(*priv->percpu_stats);
4927 if (!priv->percpu_stats) {
4928 dev_err(dev, "alloc_percpu(percpu_stats) failed\n");
4929 err = -ENOMEM;
4930 goto err_alloc_percpu_stats;
4931 }
4932 priv->percpu_extras = alloc_percpu(*priv->percpu_extras);
4933 if (!priv->percpu_extras) {
4934 dev_err(dev, "alloc_percpu(percpu_extras) failed\n");
4935 err = -ENOMEM;
4936 goto err_alloc_percpu_extras;
4937 }
4938
4939 priv->sgt_cache = alloc_percpu(*priv->sgt_cache);
4940 if (!priv->sgt_cache) {
4941 dev_err(dev, "alloc_percpu(sgt_cache) failed\n");
4942 err = -ENOMEM;
4943 goto err_alloc_sgt_cache;
4944 }
4945
4946 priv->fd = alloc_percpu(*priv->fd);
4947 if (!priv->fd) {
4948 dev_err(dev, "alloc_percpu(fds) failed\n");
4949 err = -ENOMEM;
4950 goto err_alloc_fds;
4951 }
4952
4953 err = dpaa2_eth_netdev_init(net_dev);
4954 if (err)
4955 goto err_netdev_init;
4956
4957 /* Configure checksum offload based on current interface flags */
4958 err = dpaa2_eth_set_rx_csum(priv, !!(net_dev->features & NETIF_F_RXCSUM));
4959 if (err)
4960 goto err_csum;
4961
4962 err = dpaa2_eth_set_tx_csum(priv,
4963 !!(net_dev->features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)));
4964 if (err)
4965 goto err_csum;
4966
4967 err = dpaa2_eth_alloc_rings(priv);
4968 if (err)
4969 goto err_alloc_rings;
4970
4971 #ifdef CONFIG_FSL_DPAA2_ETH_DCB
4972 if (dpaa2_eth_has_pause_support(priv) && priv->vlan_cls_enabled) {
4973 priv->dcbx_mode = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_IEEE;
4974 net_dev->dcbnl_ops = &dpaa2_eth_dcbnl_ops;
4975 } else {
4976 dev_dbg(dev, "PFC not supported\n");
4977 }
4978 #endif
4979
4980 err = dpaa2_eth_connect_mac(priv);
4981 if (err)
4982 goto err_connect_mac;
4983
4984 err = dpaa2_eth_setup_irqs(dpni_dev);
4985 if (err) {
4986 netdev_warn(net_dev, "Failed to set link interrupt, fall back to polling\n");
4987 priv->poll_thread = kthread_run(dpaa2_eth_poll_link_state, priv,
4988 "%s_poll_link", net_dev->name);
4989 if (IS_ERR(priv->poll_thread)) {
4990 dev_err(dev, "Error starting polling thread\n");
4991 goto err_poll_thread;
4992 }
4993 priv->do_link_poll = true;
4994 }
4995
4996 err = dpaa2_eth_dl_alloc(priv);
4997 if (err)
4998 goto err_dl_register;
4999
5000 err = dpaa2_eth_dl_traps_register(priv);
5001 if (err)
5002 goto err_dl_trap_register;
5003
5004 err = dpaa2_eth_dl_port_add(priv);
5005 if (err)
5006 goto err_dl_port_add;
5007
5008 net_dev->needed_headroom = DPAA2_ETH_SWA_SIZE + DPAA2_ETH_TX_BUF_ALIGN;
5009
5010 err = register_netdev(net_dev);
5011 if (err < 0) {
5012 dev_err(dev, "register_netdev() failed\n");
5013 goto err_netdev_reg;
5014 }
5015
5016 #ifdef CONFIG_DEBUG_FS
5017 dpaa2_dbg_add(priv);
5018 #endif
5019
5020 dpaa2_eth_dl_register(priv);
5021 dev_info(dev, "Probed interface %s\n", net_dev->name);
5022 return 0;
5023
5024 err_netdev_reg:
5025 dpaa2_eth_dl_port_del(priv);
5026 err_dl_port_add:
5027 dpaa2_eth_dl_traps_unregister(priv);
5028 err_dl_trap_register:
5029 dpaa2_eth_dl_free(priv);
5030 err_dl_register:
5031 if (priv->do_link_poll)
5032 kthread_stop(priv->poll_thread);
5033 else
5034 fsl_mc_free_irqs(dpni_dev);
5035 err_poll_thread:
5036 dpaa2_eth_disconnect_mac(priv);
5037 err_connect_mac:
5038 dpaa2_eth_free_rings(priv);
5039 err_alloc_rings:
5040 err_csum:
5041 err_netdev_init:
5042 free_percpu(priv->fd);
5043 err_alloc_fds:
5044 free_percpu(priv->sgt_cache);
5045 err_alloc_sgt_cache:
5046 free_percpu(priv->percpu_extras);
5047 err_alloc_percpu_extras:
5048 free_percpu(priv->percpu_stats);
5049 err_alloc_percpu_stats:
5050 dpaa2_eth_del_ch_napi(priv);
5051 dpaa2_eth_free_rx_xdp_rxq(priv);
5052 err_bind:
5053 dpaa2_eth_free_dpbps(priv);
5054 err_dpbp_setup:
5055 dpaa2_eth_free_dpio(priv);
5056 err_dpio_setup:
5057 dpaa2_eth_free_dpni(priv);
5058 err_dpni_setup:
5059 fsl_mc_portal_free(priv->mc_io);
5060 err_portal_alloc:
5061 destroy_workqueue(priv->dpaa2_ptp_wq);
5062 err_wq_alloc:
5063 dev_set_drvdata(dev, NULL);
5064 free_netdev(net_dev);
5065
5066 return err;
5067 }
5068
dpaa2_eth_remove(struct fsl_mc_device * ls_dev)5069 static void dpaa2_eth_remove(struct fsl_mc_device *ls_dev)
5070 {
5071 struct device *dev;
5072 struct net_device *net_dev;
5073 struct dpaa2_eth_priv *priv;
5074
5075 dev = &ls_dev->dev;
5076 net_dev = dev_get_drvdata(dev);
5077 priv = netdev_priv(net_dev);
5078
5079 dpaa2_eth_dl_unregister(priv);
5080
5081 #ifdef CONFIG_DEBUG_FS
5082 dpaa2_dbg_remove(priv);
5083 #endif
5084
5085 unregister_netdev(net_dev);
5086
5087 dpaa2_eth_dl_port_del(priv);
5088 dpaa2_eth_dl_traps_unregister(priv);
5089 dpaa2_eth_dl_free(priv);
5090
5091 if (priv->do_link_poll)
5092 kthread_stop(priv->poll_thread);
5093 else
5094 fsl_mc_free_irqs(ls_dev);
5095
5096 dpaa2_eth_disconnect_mac(priv);
5097 dpaa2_eth_free_rings(priv);
5098 free_percpu(priv->fd);
5099 free_percpu(priv->sgt_cache);
5100 free_percpu(priv->percpu_stats);
5101 free_percpu(priv->percpu_extras);
5102
5103 dpaa2_eth_del_ch_napi(priv);
5104 dpaa2_eth_free_rx_xdp_rxq(priv);
5105 dpaa2_eth_free_dpbps(priv);
5106 dpaa2_eth_free_dpio(priv);
5107 dpaa2_eth_free_dpni(priv);
5108 if (priv->onestep_reg_base)
5109 iounmap(priv->onestep_reg_base);
5110
5111 fsl_mc_portal_free(priv->mc_io);
5112
5113 destroy_workqueue(priv->dpaa2_ptp_wq);
5114
5115 dev_dbg(net_dev->dev.parent, "Removed interface %s\n", net_dev->name);
5116
5117 free_netdev(net_dev);
5118 }
5119
5120 static const struct fsl_mc_device_id dpaa2_eth_match_id_table[] = {
5121 {
5122 .vendor = FSL_MC_VENDOR_FREESCALE,
5123 .obj_type = "dpni",
5124 },
5125 { .vendor = 0x0 }
5126 };
5127 MODULE_DEVICE_TABLE(fslmc, dpaa2_eth_match_id_table);
5128
5129 static struct fsl_mc_driver dpaa2_eth_driver = {
5130 .driver = {
5131 .name = KBUILD_MODNAME,
5132 },
5133 .probe = dpaa2_eth_probe,
5134 .remove = dpaa2_eth_remove,
5135 .match_id_table = dpaa2_eth_match_id_table
5136 };
5137
dpaa2_eth_driver_init(void)5138 static int __init dpaa2_eth_driver_init(void)
5139 {
5140 int err;
5141
5142 dpaa2_eth_dbg_init();
5143 err = fsl_mc_driver_register(&dpaa2_eth_driver);
5144 if (err) {
5145 dpaa2_eth_dbg_exit();
5146 return err;
5147 }
5148
5149 return 0;
5150 }
5151
dpaa2_eth_driver_exit(void)5152 static void __exit dpaa2_eth_driver_exit(void)
5153 {
5154 dpaa2_eth_dbg_exit();
5155 fsl_mc_driver_unregister(&dpaa2_eth_driver);
5156 }
5157
5158 module_init(dpaa2_eth_driver_init);
5159 module_exit(dpaa2_eth_driver_exit);
5160