blob: d0cc1dc49aaa9f008e08607259c23bfabe9a16d6 [file] [log] [blame]
Ioana Ciornei0bb29b22018-07-31 12:02:47 -05001// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002/* Copyright 2014-2016 Freescale Semiconductor Inc.
Ioana Ciornei48c04812020-04-22 15:05:10 +03003 * Copyright 2016-2020 NXP
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004 */
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/msi.h>
12#include <linux/kthread.h>
Ioana Radulescu08eb2392017-05-24 07:13:27 -050013#include <linux/iommu.h>
Ioana Radulescu859f9982018-04-26 18:23:47 +080014#include <linux/net_tstamp.h>
Bogdan Purcareata6bd067c2018-02-05 08:07:42 -060015#include <linux/fsl/mc.h>
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +000016#include <linux/bpf.h>
17#include <linux/bpf_trace.h>
Ioana Radulescu859f9982018-04-26 18:23:47 +080018#include <net/sock.h>
19
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050020#include "dpaa2-eth.h"
21
Ioana Radulescu56361872017-04-28 04:50:32 -050022/* CREATE_TRACE_POINTS only needs to be defined once. Other dpa files
23 * using trace events only need to #include <trace/events/sched.h>
24 */
25#define CREATE_TRACE_POINTS
26#include "dpaa2-eth-trace.h"
27
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050028MODULE_LICENSE("Dual BSD/GPL");
29MODULE_AUTHOR("Freescale Semiconductor, Inc");
30MODULE_DESCRIPTION("Freescale DPAA2 Ethernet Driver");
31
Ioana Radulescu08eb2392017-05-24 07:13:27 -050032static void *dpaa2_iova_to_virt(struct iommu_domain *domain,
33 dma_addr_t iova_addr)
34{
35 phys_addr_t phys_addr;
36
37 phys_addr = domain ? iommu_iova_to_phys(domain, iova_addr) : iova_addr;
38
39 return phys_to_virt(phys_addr);
40}
41
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050042static void validate_rx_csum(struct dpaa2_eth_priv *priv,
43 u32 fd_status,
44 struct sk_buff *skb)
45{
46 skb_checksum_none_assert(skb);
47
48 /* HW checksum validation is disabled, nothing to do here */
49 if (!(priv->net_dev->features & NETIF_F_RXCSUM))
50 return;
51
52 /* Read checksum validation bits */
53 if (!((fd_status & DPAA2_FAS_L3CV) &&
54 (fd_status & DPAA2_FAS_L4CV)))
55 return;
56
57 /* Inform the stack there's no need to compute L3/L4 csum anymore */
58 skb->ip_summed = CHECKSUM_UNNECESSARY;
59}
60
61/* Free a received FD.
62 * Not to be used for Tx conf FDs or on any other paths.
63 */
64static void free_rx_fd(struct dpaa2_eth_priv *priv,
65 const struct dpaa2_fd *fd,
66 void *vaddr)
67{
68 struct device *dev = priv->net_dev->dev.parent;
69 dma_addr_t addr = dpaa2_fd_get_addr(fd);
70 u8 fd_format = dpaa2_fd_get_format(fd);
71 struct dpaa2_sg_entry *sgt;
72 void *sg_vaddr;
73 int i;
74
75 /* If single buffer frame, just free the data buffer */
76 if (fd_format == dpaa2_fd_single)
77 goto free_buf;
78 else if (fd_format != dpaa2_fd_sg)
79 /* We don't support any other format */
80 return;
81
Ioana Radulescu729d79b2017-10-11 08:29:48 -050082 /* For S/G frames, we first need to free all SG entries
83 * except the first one, which was taken care of already
84 */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050085 sgt = vaddr + dpaa2_fd_get_offset(fd);
Ioana Radulescu729d79b2017-10-11 08:29:48 -050086 for (i = 1; i < DPAA2_ETH_MAX_SG_ENTRIES; i++) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050087 addr = dpaa2_sg_get_addr(&sgt[i]);
Ioana Radulescu08eb2392017-05-24 07:13:27 -050088 sg_vaddr = dpaa2_iova_to_virt(priv->iommu_domain, addr);
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +030089 dma_unmap_page(dev, addr, priv->rx_buf_size,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +000090 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050091
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +000092 free_pages((unsigned long)sg_vaddr, 0);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050093 if (dpaa2_sg_is_final(&sgt[i]))
94 break;
95 }
96
97free_buf:
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +000098 free_pages((unsigned long)vaddr, 0);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -050099}
100
101/* Build a linear skb based on a single-buffer frame descriptor */
Ioana Ciorneifdb6ca92018-10-12 16:27:35 +0000102static struct sk_buff *build_linear_skb(struct dpaa2_eth_channel *ch,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500103 const struct dpaa2_fd *fd,
104 void *fd_vaddr)
105{
106 struct sk_buff *skb = NULL;
107 u16 fd_offset = dpaa2_fd_get_offset(fd);
108 u32 fd_length = dpaa2_fd_get_len(fd);
109
Ioana Radulescucbb3ea42017-10-11 08:29:44 -0500110 ch->buf_count--;
111
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000112 skb = build_skb(fd_vaddr, DPAA2_ETH_RX_BUF_RAW_SIZE);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500113 if (unlikely(!skb))
114 return NULL;
115
116 skb_reserve(skb, fd_offset);
117 skb_put(skb, fd_length);
118
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500119 return skb;
120}
121
122/* Build a non linear (fragmented) skb based on a S/G table */
123static struct sk_buff *build_frag_skb(struct dpaa2_eth_priv *priv,
124 struct dpaa2_eth_channel *ch,
125 struct dpaa2_sg_entry *sgt)
126{
127 struct sk_buff *skb = NULL;
128 struct device *dev = priv->net_dev->dev.parent;
129 void *sg_vaddr;
130 dma_addr_t sg_addr;
131 u16 sg_offset;
132 u32 sg_length;
133 struct page *page, *head_page;
134 int page_offset;
135 int i;
136
137 for (i = 0; i < DPAA2_ETH_MAX_SG_ENTRIES; i++) {
138 struct dpaa2_sg_entry *sge = &sgt[i];
139
140 /* NOTE: We only support SG entries in dpaa2_sg_single format,
141 * but this is the only format we may receive from HW anyway
142 */
143
144 /* Get the address and length from the S/G entry */
145 sg_addr = dpaa2_sg_get_addr(sge);
Ioana Radulescu08eb2392017-05-24 07:13:27 -0500146 sg_vaddr = dpaa2_iova_to_virt(priv->iommu_domain, sg_addr);
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +0300147 dma_unmap_page(dev, sg_addr, priv->rx_buf_size,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000148 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500149
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500150 sg_length = dpaa2_sg_get_len(sge);
151
152 if (i == 0) {
153 /* We build the skb around the first data buffer */
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000154 skb = build_skb(sg_vaddr, DPAA2_ETH_RX_BUF_RAW_SIZE);
Ioana Radulescucbb3ea42017-10-11 08:29:44 -0500155 if (unlikely(!skb)) {
Ioana Radulescu729d79b2017-10-11 08:29:48 -0500156 /* Free the first SG entry now, since we already
157 * unmapped it and obtained the virtual address
158 */
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000159 free_pages((unsigned long)sg_vaddr, 0);
Ioana Radulescu729d79b2017-10-11 08:29:48 -0500160
Ioana Radulescucbb3ea42017-10-11 08:29:44 -0500161 /* We still need to subtract the buffers used
162 * by this FD from our software counter
163 */
164 while (!dpaa2_sg_is_final(&sgt[i]) &&
165 i < DPAA2_ETH_MAX_SG_ENTRIES)
166 i++;
167 break;
168 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500169
170 sg_offset = dpaa2_sg_get_offset(sge);
171 skb_reserve(skb, sg_offset);
172 skb_put(skb, sg_length);
173 } else {
174 /* Rest of the data buffers are stored as skb frags */
175 page = virt_to_page(sg_vaddr);
176 head_page = virt_to_head_page(sg_vaddr);
177
178 /* Offset in page (which may be compound).
179 * Data in subsequent SG entries is stored from the
180 * beginning of the buffer, so we don't need to add the
181 * sg_offset.
182 */
183 page_offset = ((unsigned long)sg_vaddr &
184 (PAGE_SIZE - 1)) +
185 (page_address(page) - page_address(head_page));
186
187 skb_add_rx_frag(skb, i - 1, head_page, page_offset,
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +0300188 sg_length, priv->rx_buf_size);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500189 }
190
191 if (dpaa2_sg_is_final(sge))
192 break;
193 }
194
Ioana Radulescub63baf72017-10-11 08:29:45 -0500195 WARN_ONCE(i == DPAA2_ETH_MAX_SG_ENTRIES, "Final bit not set in SGT");
196
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500197 /* Count all data buffers + SG table buffer */
198 ch->buf_count -= i + 2;
199
200 return skb;
201}
202
Ioana Ciocoi Radulescu569375f2018-11-26 16:27:31 +0000203/* Free buffers acquired from the buffer pool or which were meant to
204 * be released in the pool
205 */
206static void free_bufs(struct dpaa2_eth_priv *priv, u64 *buf_array, int count)
207{
208 struct device *dev = priv->net_dev->dev.parent;
209 void *vaddr;
210 int i;
211
212 for (i = 0; i < count; i++) {
213 vaddr = dpaa2_iova_to_virt(priv->iommu_domain, buf_array[i]);
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +0300214 dma_unmap_page(dev, buf_array[i], priv->rx_buf_size,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000215 DMA_BIDIRECTIONAL);
216 free_pages((unsigned long)vaddr, 0);
Ioana Ciocoi Radulescu569375f2018-11-26 16:27:31 +0000217 }
218}
219
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000220static void xdp_release_buf(struct dpaa2_eth_priv *priv,
221 struct dpaa2_eth_channel *ch,
222 dma_addr_t addr)
223{
Ioana Radulescuef17bd72019-10-07 14:38:28 +0300224 int retries = 0;
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000225 int err;
226
227 ch->xdp.drop_bufs[ch->xdp.drop_cnt++] = addr;
228 if (ch->xdp.drop_cnt < DPAA2_ETH_BUFS_PER_CMD)
229 return;
230
231 while ((err = dpaa2_io_service_release(ch->dpio, priv->bpid,
232 ch->xdp.drop_bufs,
Ioana Radulescuef17bd72019-10-07 14:38:28 +0300233 ch->xdp.drop_cnt)) == -EBUSY) {
234 if (retries++ >= DPAA2_ETH_SWP_BUSY_RETRIES)
235 break;
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000236 cpu_relax();
Ioana Radulescuef17bd72019-10-07 14:38:28 +0300237 }
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000238
239 if (err) {
240 free_bufs(priv, ch->xdp.drop_bufs, ch->xdp.drop_cnt);
241 ch->buf_count -= ch->xdp.drop_cnt;
242 }
243
244 ch->xdp.drop_cnt = 0;
245}
246
Ioana Ciornei38c440b2020-05-06 20:47:17 +0300247static int dpaa2_eth_xdp_flush(struct dpaa2_eth_priv *priv,
248 struct dpaa2_eth_fq *fq,
249 struct dpaa2_eth_xdp_fds *xdp_fds)
250{
251 int total_enqueued = 0, retries = 0, enqueued;
252 struct dpaa2_eth_drv_stats *percpu_extras;
253 int num_fds, err, max_retries;
254 struct dpaa2_fd *fds;
255
256 percpu_extras = this_cpu_ptr(priv->percpu_extras);
257
258 /* try to enqueue all the FDs until the max number of retries is hit */
259 fds = xdp_fds->fds;
260 num_fds = xdp_fds->num;
261 max_retries = num_fds * DPAA2_ETH_ENQUEUE_RETRIES;
262 while (total_enqueued < num_fds && retries < max_retries) {
263 err = priv->enqueue(priv, fq, &fds[total_enqueued],
264 0, num_fds - total_enqueued, &enqueued);
265 if (err == -EBUSY) {
266 percpu_extras->tx_portal_busy += ++retries;
267 continue;
268 }
269 total_enqueued += enqueued;
270 }
271 xdp_fds->num = 0;
272
273 return total_enqueued;
274}
275
Ioana Ciornei74a1c052020-05-13 16:55:46 +0300276static void xdp_tx_flush(struct dpaa2_eth_priv *priv,
277 struct dpaa2_eth_channel *ch,
278 struct dpaa2_eth_fq *fq)
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000279{
Ioana Ciornei74a1c052020-05-13 16:55:46 +0300280 struct rtnl_link_stats64 *percpu_stats;
281 struct dpaa2_fd *fds;
282 int enqueued, i;
283
284 percpu_stats = this_cpu_ptr(priv->percpu_stats);
285
286 // enqueue the array of XDP_TX frames
287 enqueued = dpaa2_eth_xdp_flush(priv, fq, &fq->xdp_tx_fds);
288
289 /* update statistics */
290 percpu_stats->tx_packets += enqueued;
291 fds = fq->xdp_tx_fds.fds;
292 for (i = 0; i < enqueued; i++) {
293 percpu_stats->tx_bytes += dpaa2_fd_get_len(&fds[i]);
294 ch->stats.xdp_tx++;
295 }
296 for (i = enqueued; i < fq->xdp_tx_fds.num; i++) {
297 xdp_release_buf(priv, ch, dpaa2_fd_get_addr(&fds[i]));
298 percpu_stats->tx_errors++;
299 ch->stats.xdp_tx_err++;
300 }
301 fq->xdp_tx_fds.num = 0;
302}
303
304static void xdp_enqueue(struct dpaa2_eth_priv *priv,
305 struct dpaa2_eth_channel *ch,
306 struct dpaa2_fd *fd,
307 void *buf_start, u16 queue_id)
308{
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000309 struct dpaa2_faead *faead;
Ioana Ciornei74a1c052020-05-13 16:55:46 +0300310 struct dpaa2_fd *dest_fd;
311 struct dpaa2_eth_fq *fq;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000312 u32 ctrl, frc;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000313
314 /* Mark the egress frame hardware annotation area as valid */
315 frc = dpaa2_fd_get_frc(fd);
316 dpaa2_fd_set_frc(fd, frc | DPAA2_FD_FRC_FAEADV);
317 dpaa2_fd_set_ctrl(fd, DPAA2_FD_CTRL_ASAL);
318
319 /* Instruct hardware to release the FD buffer directly into
320 * the buffer pool once transmission is completed, instead of
321 * sending a Tx confirmation frame to us
322 */
323 ctrl = DPAA2_FAEAD_A4V | DPAA2_FAEAD_A2V | DPAA2_FAEAD_EBDDV;
324 faead = dpaa2_get_faead(buf_start, false);
325 faead->ctrl = cpu_to_le32(ctrl);
326 faead->conf_fqid = 0;
327
328 fq = &priv->fq[queue_id];
Ioana Ciornei74a1c052020-05-13 16:55:46 +0300329 dest_fd = &fq->xdp_tx_fds.fds[fq->xdp_tx_fds.num++];
330 memcpy(dest_fd, fd, sizeof(*dest_fd));
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000331
Ioana Ciornei74a1c052020-05-13 16:55:46 +0300332 if (fq->xdp_tx_fds.num < DEV_MAP_BULK_SIZE)
333 return;
334
335 xdp_tx_flush(priv, ch, fq);
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000336}
337
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000338static u32 run_xdp(struct dpaa2_eth_priv *priv,
339 struct dpaa2_eth_channel *ch,
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000340 struct dpaa2_eth_fq *rx_fq,
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000341 struct dpaa2_fd *fd, void *vaddr)
342{
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000343 dma_addr_t addr = dpaa2_fd_get_addr(fd);
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000344 struct bpf_prog *xdp_prog;
345 struct xdp_buff xdp;
346 u32 xdp_act = XDP_PASS;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000347 int err;
348
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000349 rcu_read_lock();
350
351 xdp_prog = READ_ONCE(ch->xdp.prog);
352 if (!xdp_prog)
353 goto out;
354
355 xdp.data = vaddr + dpaa2_fd_get_offset(fd);
356 xdp.data_end = xdp.data + dpaa2_fd_get_len(fd);
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +0000357 xdp.data_hard_start = xdp.data - XDP_PACKET_HEADROOM;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000358 xdp_set_data_meta_invalid(&xdp);
Ioana Radulescud678be12019-03-01 17:47:24 +0000359 xdp.rxq = &ch->xdp_rxq;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000360
Jesper Dangaard Brouer4a9b0522020-05-14 12:49:53 +0200361 xdp.frame_sz = DPAA2_ETH_RX_BUF_RAW_SIZE -
362 (dpaa2_fd_get_offset(fd) - XDP_PACKET_HEADROOM);
363
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000364 xdp_act = bpf_prog_run_xdp(xdp_prog, &xdp);
365
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +0000366 /* xdp.data pointer may have changed */
367 dpaa2_fd_set_offset(fd, xdp.data - vaddr);
368 dpaa2_fd_set_len(fd, xdp.data_end - xdp.data);
369
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000370 switch (xdp_act) {
371 case XDP_PASS:
372 break;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000373 case XDP_TX:
Ioana Ciornei74a1c052020-05-13 16:55:46 +0300374 xdp_enqueue(priv, ch, fd, vaddr, rx_fq->flowid);
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000375 break;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000376 default:
377 bpf_warn_invalid_xdp_action(xdp_act);
Ioana Ciocoi Radulescuc1cb11b2018-11-29 08:43:40 +0000378 /* fall through */
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000379 case XDP_ABORTED:
380 trace_xdp_exception(priv->net_dev, xdp_prog, xdp_act);
Ioana Ciocoi Radulescuc1cb11b2018-11-29 08:43:40 +0000381 /* fall through */
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000382 case XDP_DROP:
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000383 xdp_release_buf(priv, ch, addr);
Ioana Ciocoi Radulescua4a7b762018-11-26 16:27:34 +0000384 ch->stats.xdp_drop++;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000385 break;
Ioana Radulescud678be12019-03-01 17:47:24 +0000386 case XDP_REDIRECT:
387 dma_unmap_page(priv->net_dev->dev.parent, addr,
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +0300388 priv->rx_buf_size, DMA_BIDIRECTIONAL);
Ioana Radulescud678be12019-03-01 17:47:24 +0000389 ch->buf_count--;
Jesper Dangaard Brouer4a9b0522020-05-14 12:49:53 +0200390
391 /* Allow redirect use of full headroom */
Ioana Radulescud678be12019-03-01 17:47:24 +0000392 xdp.data_hard_start = vaddr;
Jesper Dangaard Brouer4a9b0522020-05-14 12:49:53 +0200393 xdp.frame_sz = DPAA2_ETH_RX_BUF_RAW_SIZE;
394
Ioana Radulescud678be12019-03-01 17:47:24 +0000395 err = xdp_do_redirect(priv->net_dev, &xdp, xdp_prog);
396 if (unlikely(err))
397 ch->stats.xdp_drop++;
398 else
399 ch->stats.xdp_redirect++;
400 break;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000401 }
402
Ioana Radulescud678be12019-03-01 17:47:24 +0000403 ch->xdp.res |= xdp_act;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000404out:
405 rcu_read_unlock();
406 return xdp_act;
407}
408
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500409/* Main Rx frame processing routine */
410static void dpaa2_eth_rx(struct dpaa2_eth_priv *priv,
411 struct dpaa2_eth_channel *ch,
412 const struct dpaa2_fd *fd,
Ioana Ciocoi Radulescudbcdf722018-11-14 11:48:35 +0000413 struct dpaa2_eth_fq *fq)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500414{
415 dma_addr_t addr = dpaa2_fd_get_addr(fd);
416 u8 fd_format = dpaa2_fd_get_format(fd);
417 void *vaddr;
418 struct sk_buff *skb;
419 struct rtnl_link_stats64 *percpu_stats;
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500420 struct dpaa2_eth_drv_stats *percpu_extras;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500421 struct device *dev = priv->net_dev->dev.parent;
422 struct dpaa2_fas *fas;
Ioana Radulescud695e762017-06-06 10:00:35 -0500423 void *buf_data;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500424 u32 status = 0;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000425 u32 xdp_act;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500426
Ioana Radulescu56361872017-04-28 04:50:32 -0500427 /* Tracing point */
428 trace_dpaa2_rx_fd(priv->net_dev, fd);
429
Ioana Radulescu08eb2392017-05-24 07:13:27 -0500430 vaddr = dpaa2_iova_to_virt(priv->iommu_domain, addr);
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +0300431 dma_sync_single_for_cpu(dev, addr, priv->rx_buf_size,
Ioana Ciocoi Radulescu18c2e772018-11-26 16:27:32 +0000432 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500433
Ioana Radulescu54ce8912017-12-08 06:47:53 -0600434 fas = dpaa2_get_fas(vaddr, false);
Ioana Radulescud695e762017-06-06 10:00:35 -0500435 prefetch(fas);
436 buf_data = vaddr + dpaa2_fd_get_offset(fd);
437 prefetch(buf_data);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500438
439 percpu_stats = this_cpu_ptr(priv->percpu_stats);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500440 percpu_extras = this_cpu_ptr(priv->percpu_extras);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500441
442 if (fd_format == dpaa2_fd_single) {
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000443 xdp_act = run_xdp(priv, ch, fq, (struct dpaa2_fd *)fd, vaddr);
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000444 if (xdp_act != XDP_PASS) {
445 percpu_stats->rx_packets++;
446 percpu_stats->rx_bytes += dpaa2_fd_get_len(fd);
447 return;
448 }
449
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +0300450 dma_unmap_page(dev, addr, priv->rx_buf_size,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000451 DMA_BIDIRECTIONAL);
Ioana Ciorneifdb6ca92018-10-12 16:27:35 +0000452 skb = build_linear_skb(ch, fd, vaddr);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500453 } else if (fd_format == dpaa2_fd_sg) {
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000454 WARN_ON(priv->xdp_prog);
455
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +0300456 dma_unmap_page(dev, addr, priv->rx_buf_size,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000457 DMA_BIDIRECTIONAL);
Ioana Radulescud695e762017-06-06 10:00:35 -0500458 skb = build_frag_skb(priv, ch, buf_data);
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000459 free_pages((unsigned long)vaddr, 0);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500460 percpu_extras->rx_sg_frames++;
461 percpu_extras->rx_sg_bytes += dpaa2_fd_get_len(fd);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500462 } else {
463 /* We don't support any other format */
464 goto err_frame_format;
465 }
466
467 if (unlikely(!skb))
468 goto err_build_skb;
469
470 prefetch(skb->data);
471
Ioana Radulescu859f9982018-04-26 18:23:47 +0800472 /* Get the timestamp value */
473 if (priv->rx_tstamp) {
474 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
475 __le64 *ts = dpaa2_get_ts(vaddr, false);
476 u64 ns;
477
478 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
479
480 ns = DPAA2_PTP_CLK_PERIOD_NS * le64_to_cpup(ts);
481 shhwtstamps->hwtstamp = ns_to_ktime(ns);
482 }
483
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500484 /* Check if we need to validate the L4 csum */
485 if (likely(dpaa2_fd_get_frc(fd) & DPAA2_FD_FRC_FASV)) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500486 status = le32_to_cpu(fas->status);
487 validate_rx_csum(priv, status, skb);
488 }
489
490 skb->protocol = eth_type_trans(skb, priv->net_dev);
Ioana Ciocoi Radulescudbcdf722018-11-14 11:48:35 +0000491 skb_record_rx_queue(skb, fq->flowid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500492
493 percpu_stats->rx_packets++;
494 percpu_stats->rx_bytes += dpaa2_fd_get_len(fd);
495
Ioana Ciornei0a25d922019-03-25 13:42:39 +0000496 list_add_tail(&skb->list, ch->rx_list);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500497
498 return;
499
500err_build_skb:
501 free_rx_fd(priv, fd, vaddr);
502err_frame_format:
503 percpu_stats->rx_dropped++;
504}
505
506/* Consume all frames pull-dequeued into the store. This is the simplest way to
507 * make sure we don't accidentally issue another volatile dequeue which would
508 * overwrite (leak) frames already in the store.
509 *
510 * Observance of NAPI budget is not our concern, leaving that to the caller.
511 */
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000512static int consume_frames(struct dpaa2_eth_channel *ch,
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000513 struct dpaa2_eth_fq **src)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500514{
515 struct dpaa2_eth_priv *priv = ch->priv;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000516 struct dpaa2_eth_fq *fq = NULL;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500517 struct dpaa2_dq *dq;
518 const struct dpaa2_fd *fd;
Ioana Radulescuef17bd72019-10-07 14:38:28 +0300519 int cleaned = 0, retries = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500520 int is_last;
521
522 do {
523 dq = dpaa2_io_store_next(ch->store, &is_last);
524 if (unlikely(!dq)) {
525 /* If we're here, we *must* have placed a
526 * volatile dequeue comnmand, so keep reading through
527 * the store until we get some sort of valid response
528 * token (either a valid frame or an "empty dequeue")
529 */
Ioana Radulescuef17bd72019-10-07 14:38:28 +0300530 if (retries++ >= DPAA2_ETH_SWP_BUSY_RETRIES) {
531 netdev_err_once(priv->net_dev,
532 "Unable to read a valid dequeue response\n");
533 return -ETIMEDOUT;
534 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500535 continue;
536 }
537
538 fd = dpaa2_dq_fd(dq);
Ioana Radulescu75c583a2018-02-26 10:28:06 -0600539 fq = (struct dpaa2_eth_fq *)(uintptr_t)dpaa2_dq_fqd_ctx(dq);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500540
Ioana Ciocoi Radulescudbcdf722018-11-14 11:48:35 +0000541 fq->consume(priv, ch, fd, fq);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500542 cleaned++;
Ioana Radulescuef17bd72019-10-07 14:38:28 +0300543 retries = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500544 } while (!is_last);
545
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000546 if (!cleaned)
547 return 0;
548
549 fq->stats.frames += cleaned;
Ioana Ciornei460fd832020-04-24 12:33:18 +0300550 ch->stats.frames += cleaned;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000551
552 /* A dequeue operation only pulls frames from a single queue
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000553 * into the store. Return the frame queue as an out param.
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000554 */
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000555 if (src)
556 *src = fq;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000557
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500558 return cleaned;
559}
560
Ioana Radulescu859f9982018-04-26 18:23:47 +0800561/* Configure the egress frame annotation for timestamp update */
562static void enable_tx_tstamp(struct dpaa2_fd *fd, void *buf_start)
563{
564 struct dpaa2_faead *faead;
565 u32 ctrl, frc;
566
567 /* Mark the egress frame annotation area as valid */
568 frc = dpaa2_fd_get_frc(fd);
569 dpaa2_fd_set_frc(fd, frc | DPAA2_FD_FRC_FAEADV);
570
571 /* Set hardware annotation size */
572 ctrl = dpaa2_fd_get_ctrl(fd);
573 dpaa2_fd_set_ctrl(fd, ctrl | DPAA2_FD_CTRL_ASAL);
574
575 /* enable UPD (update prepanded data) bit in FAEAD field of
576 * hardware frame annotation area
577 */
578 ctrl = DPAA2_FAEAD_A2V | DPAA2_FAEAD_UPDV | DPAA2_FAEAD_UPD;
579 faead = dpaa2_get_faead(buf_start, true);
580 faead->ctrl = cpu_to_le32(ctrl);
581}
582
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500583/* Create a frame descriptor based on a fragmented skb */
584static int build_sg_fd(struct dpaa2_eth_priv *priv,
585 struct sk_buff *skb,
586 struct dpaa2_fd *fd)
587{
588 struct device *dev = priv->net_dev->dev.parent;
589 void *sgt_buf = NULL;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500590 dma_addr_t addr;
591 int nr_frags = skb_shinfo(skb)->nr_frags;
592 struct dpaa2_sg_entry *sgt;
593 int i, err;
594 int sgt_buf_size;
595 struct scatterlist *scl, *crt_scl;
596 int num_sg;
597 int num_dma_bufs;
598 struct dpaa2_eth_swa *swa;
599
600 /* Create and map scatterlist.
601 * We don't advertise NETIF_F_FRAGLIST, so skb_to_sgvec() will not have
602 * to go beyond nr_frags+1.
603 * Note: We don't support chained scatterlists
604 */
605 if (unlikely(PAGE_SIZE / sizeof(struct scatterlist) < nr_frags + 1))
606 return -EINVAL;
607
608 scl = kcalloc(nr_frags + 1, sizeof(struct scatterlist), GFP_ATOMIC);
609 if (unlikely(!scl))
610 return -ENOMEM;
611
612 sg_init_table(scl, nr_frags + 1);
613 num_sg = skb_to_sgvec(skb, scl, 0, skb->len);
Ioana Ciornei37fbbdda2020-06-24 14:34:18 +0300614 if (unlikely(num_sg < 0)) {
615 err = -ENOMEM;
616 goto dma_map_sg_failed;
617 }
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500618 num_dma_bufs = dma_map_sg(dev, scl, num_sg, DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500619 if (unlikely(!num_dma_bufs)) {
620 err = -ENOMEM;
621 goto dma_map_sg_failed;
622 }
623
624 /* Prepare the HW SGT structure */
625 sgt_buf_size = priv->tx_data_offset +
Ioana Radulescufa722c02018-03-23 08:44:12 -0500626 sizeof(struct dpaa2_sg_entry) * num_dma_bufs;
Sebastian Andrzej Siewior90bc6d42019-06-07 21:20:37 +0200627 sgt_buf = napi_alloc_frag(sgt_buf_size + DPAA2_ETH_TX_BUF_ALIGN);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500628 if (unlikely(!sgt_buf)) {
629 err = -ENOMEM;
630 goto sgt_buf_alloc_failed;
631 }
632 sgt_buf = PTR_ALIGN(sgt_buf, DPAA2_ETH_TX_BUF_ALIGN);
Ioana Radulescu6a9bbe52018-03-14 15:04:51 -0500633 memset(sgt_buf, 0, sgt_buf_size);
634
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500635 sgt = (struct dpaa2_sg_entry *)(sgt_buf + priv->tx_data_offset);
636
637 /* Fill in the HW SGT structure.
638 *
639 * sgt_buf is zeroed out, so the following fields are implicit
640 * in all sgt entries:
641 * - offset is 0
642 * - format is 'dpaa2_sg_single'
643 */
644 for_each_sg(scl, crt_scl, num_dma_bufs, i) {
645 dpaa2_sg_set_addr(&sgt[i], sg_dma_address(crt_scl));
646 dpaa2_sg_set_len(&sgt[i], sg_dma_len(crt_scl));
647 }
648 dpaa2_sg_set_final(&sgt[i - 1], true);
649
650 /* Store the skb backpointer in the SGT buffer.
651 * Fit the scatterlist and the number of buffers alongside the
652 * skb backpointer in the software annotation area. We'll need
653 * all of them on Tx Conf.
654 */
655 swa = (struct dpaa2_eth_swa *)sgt_buf;
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000656 swa->type = DPAA2_ETH_SWA_SG;
657 swa->sg.skb = skb;
658 swa->sg.scl = scl;
659 swa->sg.num_sg = num_sg;
660 swa->sg.sgt_size = sgt_buf_size;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500661
662 /* Separately map the SGT buffer */
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500663 addr = dma_map_single(dev, sgt_buf, sgt_buf_size, DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500664 if (unlikely(dma_mapping_error(dev, addr))) {
665 err = -ENOMEM;
666 goto dma_map_single_failed;
667 }
668 dpaa2_fd_set_offset(fd, priv->tx_data_offset);
669 dpaa2_fd_set_format(fd, dpaa2_fd_sg);
670 dpaa2_fd_set_addr(fd, addr);
671 dpaa2_fd_set_len(fd, skb->len);
Ioana Radulescub948c8c2018-10-12 16:27:40 +0000672 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500673
Ioana Radulescu859f9982018-04-26 18:23:47 +0800674 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
675 enable_tx_tstamp(fd, sgt_buf);
676
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500677 return 0;
678
679dma_map_single_failed:
Ioana Radulescu6a9bbe52018-03-14 15:04:51 -0500680 skb_free_frag(sgt_buf);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500681sgt_buf_alloc_failed:
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500682 dma_unmap_sg(dev, scl, num_sg, DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500683dma_map_sg_failed:
684 kfree(scl);
685 return err;
686}
687
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300688/* Create a SG frame descriptor based on a linear skb.
689 *
690 * This function is used on the Tx path when the skb headroom is not large
691 * enough for the HW requirements, thus instead of realloc-ing the skb we
692 * create a SG frame descriptor with only one entry.
693 */
694static int build_sg_fd_single_buf(struct dpaa2_eth_priv *priv,
695 struct sk_buff *skb,
696 struct dpaa2_fd *fd)
697{
698 struct device *dev = priv->net_dev->dev.parent;
699 struct dpaa2_eth_sgt_cache *sgt_cache;
700 struct dpaa2_sg_entry *sgt;
701 struct dpaa2_eth_swa *swa;
702 dma_addr_t addr, sgt_addr;
703 void *sgt_buf = NULL;
704 int sgt_buf_size;
705 int err;
706
707 /* Prepare the HW SGT structure */
708 sgt_cache = this_cpu_ptr(priv->sgt_cache);
709 sgt_buf_size = priv->tx_data_offset + sizeof(struct dpaa2_sg_entry);
710
711 if (sgt_cache->count == 0)
712 sgt_buf = kzalloc(sgt_buf_size + DPAA2_ETH_TX_BUF_ALIGN,
713 GFP_ATOMIC);
714 else
715 sgt_buf = sgt_cache->buf[--sgt_cache->count];
716 if (unlikely(!sgt_buf))
717 return -ENOMEM;
718
719 sgt_buf = PTR_ALIGN(sgt_buf, DPAA2_ETH_TX_BUF_ALIGN);
720 sgt = (struct dpaa2_sg_entry *)(sgt_buf + priv->tx_data_offset);
721
722 addr = dma_map_single(dev, skb->data, skb->len, DMA_BIDIRECTIONAL);
723 if (unlikely(dma_mapping_error(dev, addr))) {
724 err = -ENOMEM;
725 goto data_map_failed;
726 }
727
728 /* Fill in the HW SGT structure */
729 dpaa2_sg_set_addr(sgt, addr);
730 dpaa2_sg_set_len(sgt, skb->len);
731 dpaa2_sg_set_final(sgt, true);
732
733 /* Store the skb backpointer in the SGT buffer */
734 swa = (struct dpaa2_eth_swa *)sgt_buf;
735 swa->type = DPAA2_ETH_SWA_SINGLE;
736 swa->single.skb = skb;
737 swa->sg.sgt_size = sgt_buf_size;
738
739 /* Separately map the SGT buffer */
740 sgt_addr = dma_map_single(dev, sgt_buf, sgt_buf_size, DMA_BIDIRECTIONAL);
741 if (unlikely(dma_mapping_error(dev, sgt_addr))) {
742 err = -ENOMEM;
743 goto sgt_map_failed;
744 }
745
746 dpaa2_fd_set_offset(fd, priv->tx_data_offset);
747 dpaa2_fd_set_format(fd, dpaa2_fd_sg);
748 dpaa2_fd_set_addr(fd, sgt_addr);
749 dpaa2_fd_set_len(fd, skb->len);
750 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
751
752 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
753 enable_tx_tstamp(fd, sgt_buf);
754
755 return 0;
756
757sgt_map_failed:
758 dma_unmap_single(dev, addr, skb->len, DMA_BIDIRECTIONAL);
759data_map_failed:
760 if (sgt_cache->count >= DPAA2_ETH_SGT_CACHE_SIZE)
761 kfree(sgt_buf);
762 else
763 sgt_cache->buf[sgt_cache->count++] = sgt_buf;
764
765 return err;
766}
767
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500768/* Create a frame descriptor based on a linear skb */
769static int build_single_fd(struct dpaa2_eth_priv *priv,
770 struct sk_buff *skb,
771 struct dpaa2_fd *fd)
772{
773 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescuc1636852017-12-08 06:47:58 -0600774 u8 *buffer_start, *aligned_start;
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000775 struct dpaa2_eth_swa *swa;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500776 dma_addr_t addr;
777
Ioana Radulescuc1636852017-12-08 06:47:58 -0600778 buffer_start = skb->data - dpaa2_eth_needed_headroom(priv, skb);
779
780 /* If there's enough room to align the FD address, do it.
781 * It will help hardware optimize accesses.
782 */
783 aligned_start = PTR_ALIGN(buffer_start - DPAA2_ETH_TX_BUF_ALIGN,
784 DPAA2_ETH_TX_BUF_ALIGN);
785 if (aligned_start >= skb->head)
786 buffer_start = aligned_start;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500787
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500788 /* Store a backpointer to the skb at the beginning of the buffer
789 * (in the private data area) such that we can release it
790 * on Tx confirm
791 */
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000792 swa = (struct dpaa2_eth_swa *)buffer_start;
793 swa->type = DPAA2_ETH_SWA_SINGLE;
794 swa->single.skb = skb;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500795
796 addr = dma_map_single(dev, buffer_start,
797 skb_tail_pointer(skb) - buffer_start,
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500798 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500799 if (unlikely(dma_mapping_error(dev, addr)))
800 return -ENOMEM;
801
802 dpaa2_fd_set_addr(fd, addr);
803 dpaa2_fd_set_offset(fd, (u16)(skb->data - buffer_start));
804 dpaa2_fd_set_len(fd, skb->len);
805 dpaa2_fd_set_format(fd, dpaa2_fd_single);
Ioana Radulescub948c8c2018-10-12 16:27:40 +0000806 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500807
Ioana Radulescu859f9982018-04-26 18:23:47 +0800808 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
809 enable_tx_tstamp(fd, buffer_start);
810
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500811 return 0;
812}
813
814/* FD freeing routine on the Tx path
815 *
816 * DMA-unmap and free FD and possibly SGT buffer allocated on Tx. The skb
817 * back-pointed to is also freed.
818 * This can be called either from dpaa2_eth_tx_conf() or on the error path of
819 * dpaa2_eth_tx().
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500820 */
821static void free_tx_fd(const struct dpaa2_eth_priv *priv,
Ioana Radulescud678be12019-03-01 17:47:24 +0000822 struct dpaa2_eth_fq *fq,
Ioana Ciocoi Radulescu0723a3a2019-02-04 17:00:35 +0000823 const struct dpaa2_fd *fd, bool in_napi)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500824{
825 struct device *dev = priv->net_dev->dev.parent;
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300826 dma_addr_t fd_addr, sg_addr;
Ioana Radulescud678be12019-03-01 17:47:24 +0000827 struct sk_buff *skb = NULL;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500828 unsigned char *buffer_start;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500829 struct dpaa2_eth_swa *swa;
830 u8 fd_format = dpaa2_fd_get_format(fd);
Ioana Radulescud678be12019-03-01 17:47:24 +0000831 u32 fd_len = dpaa2_fd_get_len(fd);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500832
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300833 struct dpaa2_eth_sgt_cache *sgt_cache;
834 struct dpaa2_sg_entry *sgt;
835
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500836 fd_addr = dpaa2_fd_get_addr(fd);
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000837 buffer_start = dpaa2_iova_to_virt(priv->iommu_domain, fd_addr);
838 swa = (struct dpaa2_eth_swa *)buffer_start;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500839
840 if (fd_format == dpaa2_fd_single) {
Ioana Radulescud678be12019-03-01 17:47:24 +0000841 if (swa->type == DPAA2_ETH_SWA_SINGLE) {
842 skb = swa->single.skb;
843 /* Accessing the skb buffer is safe before dma unmap,
844 * because we didn't map the actual skb shell.
845 */
846 dma_unmap_single(dev, fd_addr,
847 skb_tail_pointer(skb) - buffer_start,
848 DMA_BIDIRECTIONAL);
849 } else {
850 WARN_ONCE(swa->type != DPAA2_ETH_SWA_XDP, "Wrong SWA type");
851 dma_unmap_single(dev, fd_addr, swa->xdp.dma_size,
852 DMA_BIDIRECTIONAL);
853 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500854 } else if (fd_format == dpaa2_fd_sg) {
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300855 if (swa->type == DPAA2_ETH_SWA_SG) {
856 skb = swa->sg.skb;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500857
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300858 /* Unmap the scatterlist */
859 dma_unmap_sg(dev, swa->sg.scl, swa->sg.num_sg,
860 DMA_BIDIRECTIONAL);
861 kfree(swa->sg.scl);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500862
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300863 /* Unmap the SGT buffer */
864 dma_unmap_single(dev, fd_addr, swa->sg.sgt_size,
865 DMA_BIDIRECTIONAL);
866 } else {
867 skb = swa->single.skb;
868
869 /* Unmap the SGT Buffer */
870 dma_unmap_single(dev, fd_addr, swa->single.sgt_size,
871 DMA_BIDIRECTIONAL);
872
873 sgt = (struct dpaa2_sg_entry *)(buffer_start +
874 priv->tx_data_offset);
875 sg_addr = dpaa2_sg_get_addr(sgt);
876 dma_unmap_single(dev, sg_addr, skb->len, DMA_BIDIRECTIONAL);
877 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500878 } else {
Ioana Radulescu2b7c86e2017-12-08 06:47:56 -0600879 netdev_dbg(priv->net_dev, "Invalid FD format\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500880 return;
881 }
882
Ioana Radulescud678be12019-03-01 17:47:24 +0000883 if (swa->type != DPAA2_ETH_SWA_XDP && in_napi) {
884 fq->dq_frames++;
885 fq->dq_bytes += fd_len;
886 }
887
888 if (swa->type == DPAA2_ETH_SWA_XDP) {
889 xdp_return_frame(swa->xdp.xdpf);
890 return;
891 }
892
Ioana Radulescu859f9982018-04-26 18:23:47 +0800893 /* Get the timestamp value */
894 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) {
895 struct skb_shared_hwtstamps shhwtstamps;
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000896 __le64 *ts = dpaa2_get_ts(buffer_start, true);
Ioana Radulescu859f9982018-04-26 18:23:47 +0800897 u64 ns;
898
899 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
900
901 ns = DPAA2_PTP_CLK_PERIOD_NS * le64_to_cpup(ts);
902 shhwtstamps.hwtstamp = ns_to_ktime(ns);
903 skb_tstamp_tx(skb, &shhwtstamps);
904 }
905
Ioana Radulescu6a9bbe52018-03-14 15:04:51 -0500906 /* Free SGT buffer allocated on tx */
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300907 if (fd_format != dpaa2_fd_single) {
908 sgt_cache = this_cpu_ptr(priv->sgt_cache);
909 if (swa->type == DPAA2_ETH_SWA_SG) {
910 skb_free_frag(buffer_start);
911 } else {
912 if (sgt_cache->count >= DPAA2_ETH_SGT_CACHE_SIZE)
913 kfree(buffer_start);
914 else
915 sgt_cache->buf[sgt_cache->count++] = buffer_start;
916 }
917 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500918
919 /* Move on with skb release */
Ioana Ciocoi Radulescu0723a3a2019-02-04 17:00:35 +0000920 napi_consume_skb(skb, in_napi);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500921}
922
Ioana Radulescuc433db42017-06-06 10:00:26 -0500923static netdev_tx_t dpaa2_eth_tx(struct sk_buff *skb, struct net_device *net_dev)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500924{
925 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
926 struct dpaa2_fd fd;
927 struct rtnl_link_stats64 *percpu_stats;
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500928 struct dpaa2_eth_drv_stats *percpu_extras;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500929 struct dpaa2_eth_fq *fq;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000930 struct netdev_queue *nq;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500931 u16 queue_mapping;
Ioana Radulescu18c21462017-12-08 06:47:57 -0600932 unsigned int needed_headroom;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000933 u32 fd_len;
Ioana Radulescuab1e6de2019-06-11 14:50:03 +0300934 u8 prio = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500935 int err, i;
936
937 percpu_stats = this_cpu_ptr(priv->percpu_stats);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500938 percpu_extras = this_cpu_ptr(priv->percpu_extras);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500939
Ioana Radulescu18c21462017-12-08 06:47:57 -0600940 needed_headroom = dpaa2_eth_needed_headroom(priv, skb);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500941
942 /* We'll be holding a back-reference to the skb until Tx Confirmation;
943 * we don't want that overwritten by a concurrent Tx with a cloned skb.
944 */
945 skb = skb_unshare(skb, GFP_ATOMIC);
946 if (unlikely(!skb)) {
947 /* skb_unshare() has already freed the skb */
948 percpu_stats->tx_dropped++;
949 return NETDEV_TX_OK;
950 }
951
952 /* Setup the FD fields */
953 memset(&fd, 0, sizeof(fd));
954
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500955 if (skb_is_nonlinear(skb)) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500956 err = build_sg_fd(priv, skb, &fd);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500957 percpu_extras->tx_sg_frames++;
958 percpu_extras->tx_sg_bytes += skb->len;
Ioana Ciorneid70446e2020-06-29 21:47:11 +0300959 } else if (skb_headroom(skb) < needed_headroom) {
960 err = build_sg_fd_single_buf(priv, skb, &fd);
961 percpu_extras->tx_sg_frames++;
962 percpu_extras->tx_sg_bytes += skb->len;
Ioana Ciornei4c96c0a2020-06-29 21:47:12 +0300963 percpu_extras->tx_converted_sg_frames++;
964 percpu_extras->tx_converted_sg_bytes += skb->len;
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500965 } else {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500966 err = build_single_fd(priv, skb, &fd);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500967 }
968
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500969 if (unlikely(err)) {
970 percpu_stats->tx_dropped++;
971 goto err_build_fd;
972 }
973
Ioana Radulescu56361872017-04-28 04:50:32 -0500974 /* Tracing point */
975 trace_dpaa2_tx_fd(net_dev, &fd);
976
Ioana Radulescu537336c2017-12-21 06:33:20 -0600977 /* TxConf FQ selection relies on queue id from the stack.
978 * In case of a forwarded frame from another DPNI interface, we choose
979 * a queue affined to the same core that processed the Rx frame
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500980 */
Ioana Radulescu537336c2017-12-21 06:33:20 -0600981 queue_mapping = skb_get_queue_mapping(skb);
Ioana Radulescuab1e6de2019-06-11 14:50:03 +0300982
983 if (net_dev->num_tc) {
984 prio = netdev_txq_to_tc(net_dev, queue_mapping);
985 /* Hardware interprets priority level 0 as being the highest,
986 * so we need to do a reverse mapping to the netdev tc index
987 */
988 prio = net_dev->num_tc - prio - 1;
989 /* We have only one FQ array entry for all Tx hardware queues
990 * with the same flow id (but different priority levels)
991 */
992 queue_mapping %= dpaa2_eth_queue_count(priv);
993 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500994 fq = &priv->fq[queue_mapping];
Ioana Ciornei8c838f52019-03-25 13:06:22 +0000995
996 fd_len = dpaa2_fd_get_len(&fd);
997 nq = netdev_get_tx_queue(net_dev, queue_mapping);
998 netdev_tx_sent_queue(nq, fd_len);
999
1000 /* Everything that happens after this enqueues might race with
1001 * the Tx confirmation callback for this frame
1002 */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001003 for (i = 0; i < DPAA2_ETH_ENQUEUE_RETRIES; i++) {
Ioana Ciornei6ff80442020-04-22 15:05:11 +03001004 err = priv->enqueue(priv, fq, &fd, prio, 1, NULL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001005 if (err != -EBUSY)
1006 break;
1007 }
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001008 percpu_extras->tx_portal_busy += i;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001009 if (unlikely(err < 0)) {
1010 percpu_stats->tx_errors++;
1011 /* Clean up everything, including freeing the skb */
Ioana Radulescud678be12019-03-01 17:47:24 +00001012 free_tx_fd(priv, fq, &fd, false);
Ioana Ciornei8c838f52019-03-25 13:06:22 +00001013 netdev_tx_completed_queue(nq, 1, fd_len);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001014 } else {
1015 percpu_stats->tx_packets++;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001016 percpu_stats->tx_bytes += fd_len;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001017 }
1018
1019 return NETDEV_TX_OK;
1020
1021err_build_fd:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001022 dev_kfree_skb(skb);
1023
1024 return NETDEV_TX_OK;
1025}
1026
1027/* Tx confirmation frame processing routine */
1028static void dpaa2_eth_tx_conf(struct dpaa2_eth_priv *priv,
Ioana Ciorneib00c8982018-10-12 16:27:38 +00001029 struct dpaa2_eth_channel *ch __always_unused,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001030 const struct dpaa2_fd *fd,
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001031 struct dpaa2_eth_fq *fq)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001032{
1033 struct rtnl_link_stats64 *percpu_stats;
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001034 struct dpaa2_eth_drv_stats *percpu_extras;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001035 u32 fd_len = dpaa2_fd_get_len(fd);
Ioana Radulescu39163c02017-06-06 10:00:39 -05001036 u32 fd_errors;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001037
Ioana Radulescu56361872017-04-28 04:50:32 -05001038 /* Tracing point */
1039 trace_dpaa2_tx_conf_fd(priv->net_dev, fd);
1040
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001041 percpu_extras = this_cpu_ptr(priv->percpu_extras);
1042 percpu_extras->tx_conf_frames++;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001043 percpu_extras->tx_conf_bytes += fd_len;
1044
Ioana Radulescu39163c02017-06-06 10:00:39 -05001045 /* Check frame errors in the FD field */
1046 fd_errors = dpaa2_fd_get_ctrl(fd) & DPAA2_FD_TX_ERR_MASK;
Ioana Radulescud678be12019-03-01 17:47:24 +00001047 free_tx_fd(priv, fq, fd, true);
Ioana Radulescu39163c02017-06-06 10:00:39 -05001048
1049 if (likely(!fd_errors))
1050 return;
1051
Ioana Radulescu2b7c86e2017-12-08 06:47:56 -06001052 if (net_ratelimit())
1053 netdev_dbg(priv->net_dev, "TX frame FD error: 0x%08x\n",
1054 fd_errors);
1055
Ioana Radulescu39163c02017-06-06 10:00:39 -05001056 percpu_stats = this_cpu_ptr(priv->percpu_stats);
1057 /* Tx-conf logically pertains to the egress path. */
1058 percpu_stats->tx_errors++;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001059}
1060
1061static int set_rx_csum(struct dpaa2_eth_priv *priv, bool enable)
1062{
1063 int err;
1064
1065 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1066 DPNI_OFF_RX_L3_CSUM, enable);
1067 if (err) {
1068 netdev_err(priv->net_dev,
1069 "dpni_set_offload(RX_L3_CSUM) failed\n");
1070 return err;
1071 }
1072
1073 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1074 DPNI_OFF_RX_L4_CSUM, enable);
1075 if (err) {
1076 netdev_err(priv->net_dev,
1077 "dpni_set_offload(RX_L4_CSUM) failed\n");
1078 return err;
1079 }
1080
1081 return 0;
1082}
1083
1084static int set_tx_csum(struct dpaa2_eth_priv *priv, bool enable)
1085{
1086 int err;
1087
1088 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1089 DPNI_OFF_TX_L3_CSUM, enable);
1090 if (err) {
1091 netdev_err(priv->net_dev, "dpni_set_offload(TX_L3_CSUM) failed\n");
1092 return err;
1093 }
1094
1095 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
1096 DPNI_OFF_TX_L4_CSUM, enable);
1097 if (err) {
1098 netdev_err(priv->net_dev, "dpni_set_offload(TX_L4_CSUM) failed\n");
1099 return err;
1100 }
1101
1102 return 0;
1103}
1104
1105/* Perform a single release command to add buffers
1106 * to the specified buffer pool
1107 */
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001108static int add_bufs(struct dpaa2_eth_priv *priv,
1109 struct dpaa2_eth_channel *ch, u16 bpid)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001110{
1111 struct device *dev = priv->net_dev->dev.parent;
1112 u64 buf_array[DPAA2_ETH_BUFS_PER_CMD];
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00001113 struct page *page;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001114 dma_addr_t addr;
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001115 int retries = 0;
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001116 int i, err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001117
1118 for (i = 0; i < DPAA2_ETH_BUFS_PER_CMD; i++) {
1119 /* Allocate buffer visible to WRIOP + skb shared info +
1120 * alignment padding
1121 */
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00001122 /* allocate one page for each Rx buffer. WRIOP sees
1123 * the entire page except for a tailroom reserved for
1124 * skb shared info
1125 */
1126 page = dev_alloc_pages(0);
1127 if (!page)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001128 goto err_alloc;
1129
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +03001130 addr = dma_map_page(dev, page, 0, priv->rx_buf_size,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00001131 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001132 if (unlikely(dma_mapping_error(dev, addr)))
1133 goto err_map;
1134
1135 buf_array[i] = addr;
Ioana Radulescu56361872017-04-28 04:50:32 -05001136
1137 /* tracing point */
1138 trace_dpaa2_eth_buf_seed(priv->net_dev,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00001139 page, DPAA2_ETH_RX_BUF_RAW_SIZE,
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +03001140 addr, priv->rx_buf_size,
Ioana Radulescu56361872017-04-28 04:50:32 -05001141 bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001142 }
1143
1144release_bufs:
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001145 /* In case the portal is busy, retry until successful */
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001146 while ((err = dpaa2_io_service_release(ch->dpio, bpid,
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001147 buf_array, i)) == -EBUSY) {
1148 if (retries++ >= DPAA2_ETH_SWP_BUSY_RETRIES)
1149 break;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001150 cpu_relax();
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001151 }
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001152
1153 /* If release command failed, clean up and bail out;
1154 * not much else we can do about it
1155 */
1156 if (err) {
1157 free_bufs(priv, buf_array, i);
1158 return 0;
1159 }
1160
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001161 return i;
1162
1163err_map:
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00001164 __free_pages(page, 0);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001165err_alloc:
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001166 /* If we managed to allocate at least some buffers,
1167 * release them to hardware
1168 */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001169 if (i)
1170 goto release_bufs;
1171
1172 return 0;
1173}
1174
1175static int seed_pool(struct dpaa2_eth_priv *priv, u16 bpid)
1176{
1177 int i, j;
1178 int new_count;
1179
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001180 for (j = 0; j < priv->num_channels; j++) {
1181 for (i = 0; i < DPAA2_ETH_NUM_BUFS;
1182 i += DPAA2_ETH_BUFS_PER_CMD) {
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001183 new_count = add_bufs(priv, priv->channel[j], bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001184 priv->channel[j]->buf_count += new_count;
1185
1186 if (new_count < DPAA2_ETH_BUFS_PER_CMD) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001187 return -ENOMEM;
1188 }
1189 }
1190 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001191
1192 return 0;
1193}
1194
1195/**
1196 * Drain the specified number of buffers from the DPNI's private buffer pool.
1197 * @count must not exceeed DPAA2_ETH_BUFS_PER_CMD
1198 */
1199static void drain_bufs(struct dpaa2_eth_priv *priv, int count)
1200{
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001201 u64 buf_array[DPAA2_ETH_BUFS_PER_CMD];
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001202 int retries = 0;
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001203 int ret;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001204
1205 do {
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001206 ret = dpaa2_io_service_acquire(NULL, priv->bpid,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001207 buf_array, count);
1208 if (ret < 0) {
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001209 if (ret == -EBUSY &&
Ioana Ciornei0e5ad752020-06-24 14:34:19 +03001210 retries++ < DPAA2_ETH_SWP_BUSY_RETRIES)
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001211 continue;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001212 netdev_err(priv->net_dev, "dpaa2_io_service_acquire() failed\n");
1213 return;
1214 }
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001215 free_bufs(priv, buf_array, ret);
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001216 retries = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001217 } while (ret);
1218}
1219
1220static void drain_pool(struct dpaa2_eth_priv *priv)
1221{
1222 int i;
1223
1224 drain_bufs(priv, DPAA2_ETH_BUFS_PER_CMD);
1225 drain_bufs(priv, 1);
1226
1227 for (i = 0; i < priv->num_channels; i++)
1228 priv->channel[i]->buf_count = 0;
1229}
1230
1231/* Function is called from softirq context only, so we don't need to guard
1232 * the access to percpu count
1233 */
1234static int refill_pool(struct dpaa2_eth_priv *priv,
1235 struct dpaa2_eth_channel *ch,
1236 u16 bpid)
1237{
1238 int new_count;
1239
1240 if (likely(ch->buf_count >= DPAA2_ETH_REFILL_THRESH))
1241 return 0;
1242
1243 do {
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001244 new_count = add_bufs(priv, ch, bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001245 if (unlikely(!new_count)) {
1246 /* Out of memory; abort for now, we'll try later on */
1247 break;
1248 }
1249 ch->buf_count += new_count;
1250 } while (ch->buf_count < DPAA2_ETH_NUM_BUFS);
1251
1252 if (unlikely(ch->buf_count < DPAA2_ETH_NUM_BUFS))
1253 return -ENOMEM;
1254
1255 return 0;
1256}
1257
Ioana Ciorneid70446e2020-06-29 21:47:11 +03001258static void dpaa2_eth_sgt_cache_drain(struct dpaa2_eth_priv *priv)
1259{
1260 struct dpaa2_eth_sgt_cache *sgt_cache;
1261 u16 count;
1262 int k, i;
1263
Ioana Ciornei0fe665d2020-07-06 17:55:54 +03001264 for_each_possible_cpu(k) {
Ioana Ciorneid70446e2020-06-29 21:47:11 +03001265 sgt_cache = per_cpu_ptr(priv->sgt_cache, k);
1266 count = sgt_cache->count;
1267
1268 for (i = 0; i < count; i++)
1269 kfree(sgt_cache->buf[i]);
1270 sgt_cache->count = 0;
1271 }
1272}
1273
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001274static int pull_channel(struct dpaa2_eth_channel *ch)
1275{
1276 int err;
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001277 int dequeues = -1;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001278
1279 /* Retry while portal is busy */
1280 do {
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001281 err = dpaa2_io_service_pull_channel(ch->dpio, ch->ch_id,
1282 ch->store);
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001283 dequeues++;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001284 cpu_relax();
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001285 } while (err == -EBUSY && dequeues < DPAA2_ETH_SWP_BUSY_RETRIES);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001286
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001287 ch->stats.dequeue_portal_busy += dequeues;
1288 if (unlikely(err))
1289 ch->stats.pull_err++;
1290
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001291 return err;
1292}
1293
1294/* NAPI poll routine
1295 *
1296 * Frames are dequeued from the QMan channel associated with this NAPI context.
1297 * Rx, Tx confirmation and (if configured) Rx error frames all count
1298 * towards the NAPI budget.
1299 */
1300static int dpaa2_eth_poll(struct napi_struct *napi, int budget)
1301{
1302 struct dpaa2_eth_channel *ch;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001303 struct dpaa2_eth_priv *priv;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001304 int rx_cleaned = 0, txconf_cleaned = 0;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001305 struct dpaa2_eth_fq *fq, *txc_fq = NULL;
1306 struct netdev_queue *nq;
1307 int store_cleaned, work_done;
Ioana Ciornei0a25d922019-03-25 13:42:39 +00001308 struct list_head rx_list;
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001309 int retries = 0;
Ioana Ciornei74a1c052020-05-13 16:55:46 +03001310 u16 flowid;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001311 int err;
1312
1313 ch = container_of(napi, struct dpaa2_eth_channel, napi);
Ioana Radulescud678be12019-03-01 17:47:24 +00001314 ch->xdp.res = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001315 priv = ch->priv;
1316
Ioana Ciornei0a25d922019-03-25 13:42:39 +00001317 INIT_LIST_HEAD(&rx_list);
1318 ch->rx_list = &rx_list;
1319
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001320 do {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001321 err = pull_channel(ch);
1322 if (unlikely(err))
1323 break;
1324
1325 /* Refill pool if appropriate */
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001326 refill_pool(priv, ch, priv->bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001327
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001328 store_cleaned = consume_frames(ch, &fq);
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001329 if (store_cleaned <= 0)
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001330 break;
1331 if (fq->type == DPAA2_RX_FQ) {
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001332 rx_cleaned += store_cleaned;
Ioana Ciornei74a1c052020-05-13 16:55:46 +03001333 flowid = fq->flowid;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001334 } else {
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001335 txconf_cleaned += store_cleaned;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001336 /* We have a single Tx conf FQ on this channel */
1337 txc_fq = fq;
1338 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001339
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001340 /* If we either consumed the whole NAPI budget with Rx frames
1341 * or we reached the Tx confirmations threshold, we're done.
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001342 */
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001343 if (rx_cleaned >= budget ||
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001344 txconf_cleaned >= DPAA2_ETH_TXCONF_PER_NAPI) {
1345 work_done = budget;
1346 goto out;
1347 }
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001348 } while (store_cleaned);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001349
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001350 /* We didn't consume the entire budget, so finish napi and
1351 * re-enable data availability notifications
1352 */
1353 napi_complete_done(napi, rx_cleaned);
1354 do {
1355 err = dpaa2_io_service_rearm(ch->dpio, &ch->nctx);
1356 cpu_relax();
Ioana Radulescuef17bd72019-10-07 14:38:28 +03001357 } while (err == -EBUSY && retries++ < DPAA2_ETH_SWP_BUSY_RETRIES);
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001358 WARN_ONCE(err, "CDAN notifications rearm failed on core %d",
1359 ch->nctx.desired_cpu);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001360
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001361 work_done = max(rx_cleaned, 1);
1362
1363out:
Ioana Ciornei0a25d922019-03-25 13:42:39 +00001364 netif_receive_skb_list(ch->rx_list);
1365
Ioana Radulescud678be12019-03-01 17:47:24 +00001366 if (txc_fq && txc_fq->dq_frames) {
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001367 nq = netdev_get_tx_queue(priv->net_dev, txc_fq->flowid);
1368 netdev_tx_completed_queue(nq, txc_fq->dq_frames,
1369 txc_fq->dq_bytes);
1370 txc_fq->dq_frames = 0;
1371 txc_fq->dq_bytes = 0;
1372 }
1373
Ioana Radulescud678be12019-03-01 17:47:24 +00001374 if (ch->xdp.res & XDP_REDIRECT)
1375 xdp_do_flush_map();
Ioana Ciornei74a1c052020-05-13 16:55:46 +03001376 else if (rx_cleaned && ch->xdp.res & XDP_TX)
1377 xdp_tx_flush(priv, ch, &priv->fq[flowid]);
Ioana Radulescud678be12019-03-01 17:47:24 +00001378
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001379 return work_done;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001380}
1381
1382static void enable_ch_napi(struct dpaa2_eth_priv *priv)
1383{
1384 struct dpaa2_eth_channel *ch;
1385 int i;
1386
1387 for (i = 0; i < priv->num_channels; i++) {
1388 ch = priv->channel[i];
1389 napi_enable(&ch->napi);
1390 }
1391}
1392
1393static void disable_ch_napi(struct dpaa2_eth_priv *priv)
1394{
1395 struct dpaa2_eth_channel *ch;
1396 int i;
1397
1398 for (i = 0; i < priv->num_channels; i++) {
1399 ch = priv->channel[i];
1400 napi_disable(&ch->napi);
1401 }
1402}
1403
Ioana Ciornei07beb162020-05-31 00:08:14 +03001404void dpaa2_eth_set_rx_taildrop(struct dpaa2_eth_priv *priv,
1405 bool tx_pause, bool pfc)
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001406{
1407 struct dpni_taildrop td = {0};
Ioana Radulescu685e39e2020-05-31 00:08:08 +03001408 struct dpaa2_eth_fq *fq;
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001409 int i, err;
1410
Ioana Ciornei07beb162020-05-31 00:08:14 +03001411 /* FQ taildrop: threshold is in bytes, per frame queue. Enabled if
1412 * flow control is disabled (as it might interfere with either the
1413 * buffer pool depletion trigger for pause frames or with the group
1414 * congestion trigger for PFC frames)
1415 */
Ioana Radulescu2c8d1c82020-05-31 00:08:11 +03001416 td.enable = !tx_pause;
Ioana Ciornei07beb162020-05-31 00:08:14 +03001417 if (priv->rx_fqtd_enabled == td.enable)
1418 goto set_cgtd;
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001419
Ioana Radulescu2c8d1c82020-05-31 00:08:11 +03001420 td.threshold = DPAA2_ETH_FQ_TAILDROP_THRESH;
1421 td.units = DPNI_CONGESTION_UNIT_BYTES;
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001422
1423 for (i = 0; i < priv->num_fqs; i++) {
Ioana Radulescu685e39e2020-05-31 00:08:08 +03001424 fq = &priv->fq[i];
1425 if (fq->type != DPAA2_RX_FQ)
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001426 continue;
1427 err = dpni_set_taildrop(priv->mc_io, 0, priv->mc_token,
Ioana Radulescu685e39e2020-05-31 00:08:08 +03001428 DPNI_CP_QUEUE, DPNI_QUEUE_RX,
1429 fq->tc, fq->flowid, &td);
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001430 if (err) {
1431 netdev_err(priv->net_dev,
Ioana Radulescu2c8d1c82020-05-31 00:08:11 +03001432 "dpni_set_taildrop(FQ) failed\n");
1433 return;
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001434 }
1435 }
1436
Ioana Ciornei07beb162020-05-31 00:08:14 +03001437 priv->rx_fqtd_enabled = td.enable;
1438
1439set_cgtd:
Ioana Radulescu2c8d1c82020-05-31 00:08:11 +03001440 /* Congestion group taildrop: threshold is in frames, per group
1441 * of FQs belonging to the same traffic class
Ioana Ciornei07beb162020-05-31 00:08:14 +03001442 * Enabled if general Tx pause disabled or if PFCs are enabled
1443 * (congestion group threhsold for PFC generation is lower than the
1444 * CG taildrop threshold, so it won't interfere with it; we also
1445 * want frames in non-PFC enabled traffic classes to be kept in check)
Ioana Radulescu2c8d1c82020-05-31 00:08:11 +03001446 */
Ioana Ciornei07beb162020-05-31 00:08:14 +03001447 td.enable = !tx_pause || (tx_pause && pfc);
1448 if (priv->rx_cgtd_enabled == td.enable)
1449 return;
1450
Ioana Radulescu2c8d1c82020-05-31 00:08:11 +03001451 td.threshold = DPAA2_ETH_CG_TAILDROP_THRESH(priv);
1452 td.units = DPNI_CONGESTION_UNIT_FRAMES;
1453 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
1454 err = dpni_set_taildrop(priv->mc_io, 0, priv->mc_token,
1455 DPNI_CP_GROUP, DPNI_QUEUE_RX,
1456 i, 0, &td);
1457 if (err) {
1458 netdev_err(priv->net_dev,
1459 "dpni_set_taildrop(CG) failed\n");
1460 return;
1461 }
1462 }
1463
Ioana Ciornei07beb162020-05-31 00:08:14 +03001464 priv->rx_cgtd_enabled = td.enable;
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001465}
1466
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001467static int link_state_update(struct dpaa2_eth_priv *priv)
1468{
Ioana Ciornei85b7a342018-10-12 16:27:33 +00001469 struct dpni_link_state state = {0};
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001470 bool tx_pause;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001471 int err;
1472
1473 err = dpni_get_link_state(priv->mc_io, 0, priv->mc_token, &state);
1474 if (unlikely(err)) {
1475 netdev_err(priv->net_dev,
1476 "dpni_get_link_state() failed\n");
1477 return err;
1478 }
1479
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001480 /* If Tx pause frame settings have changed, we need to update
1481 * Rx FQ taildrop configuration as well. We configure taildrop
1482 * only when pause frame generation is disabled.
1483 */
Ioana Radulescuad054f22020-05-31 00:08:10 +03001484 tx_pause = dpaa2_eth_tx_pause_enabled(state.options);
Ioana Ciornei07beb162020-05-31 00:08:14 +03001485 dpaa2_eth_set_rx_taildrop(priv, tx_pause, priv->pfc_enabled);
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03001486
Ioana Ciornei71947922019-10-31 01:18:31 +02001487 /* When we manage the MAC/PHY using phylink there is no need
1488 * to manually update the netif_carrier.
1489 */
1490 if (priv->mac)
1491 goto out;
1492
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001493 /* Chech link state; speed / duplex changes are not treated yet */
1494 if (priv->link_state.up == state.up)
Ioana Radulescucce629432019-08-28 17:08:14 +03001495 goto out;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001496
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001497 if (state.up) {
1498 netif_carrier_on(priv->net_dev);
1499 netif_tx_start_all_queues(priv->net_dev);
1500 } else {
1501 netif_tx_stop_all_queues(priv->net_dev);
1502 netif_carrier_off(priv->net_dev);
1503 }
1504
Ioana Radulescu77160af2017-06-06 10:00:28 -05001505 netdev_info(priv->net_dev, "Link Event: state %s\n",
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001506 state.up ? "up" : "down");
1507
Ioana Radulescucce629432019-08-28 17:08:14 +03001508out:
1509 priv->link_state = state;
1510
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001511 return 0;
1512}
1513
1514static int dpaa2_eth_open(struct net_device *net_dev)
1515{
1516 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1517 int err;
1518
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001519 err = seed_pool(priv, priv->bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001520 if (err) {
1521 /* Not much to do; the buffer pool, though not filled up,
1522 * may still contain some buffers which would enable us
1523 * to limp on.
1524 */
1525 netdev_err(net_dev, "Buffer seeding failed for DPBP %d (bpid=%d)\n",
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001526 priv->dpbp_dev->obj_desc.id, priv->bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001527 }
1528
Ioana Ciornei71947922019-10-31 01:18:31 +02001529 if (!priv->mac) {
1530 /* We'll only start the txqs when the link is actually ready;
1531 * make sure we don't race against the link up notification,
1532 * which may come immediately after dpni_enable();
1533 */
1534 netif_tx_stop_all_queues(net_dev);
1535
1536 /* Also, explicitly set carrier off, otherwise
1537 * netif_carrier_ok() will return true and cause 'ip link show'
1538 * to report the LOWER_UP flag, even though the link
1539 * notification wasn't even received.
1540 */
1541 netif_carrier_off(net_dev);
1542 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001543 enable_ch_napi(priv);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001544
1545 err = dpni_enable(priv->mc_io, 0, priv->mc_token);
1546 if (err < 0) {
1547 netdev_err(net_dev, "dpni_enable() failed\n");
1548 goto enable_err;
1549 }
1550
Ioana Ciornei71947922019-10-31 01:18:31 +02001551 if (!priv->mac) {
1552 /* If the DPMAC object has already processed the link up
1553 * interrupt, we have to learn the link state ourselves.
1554 */
1555 err = link_state_update(priv);
1556 if (err < 0) {
1557 netdev_err(net_dev, "Can't update link state\n");
1558 goto link_state_err;
1559 }
1560 } else {
1561 phylink_start(priv->mac->phylink);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001562 }
1563
1564 return 0;
1565
1566link_state_err:
1567enable_err:
1568 disable_ch_napi(priv);
1569 drain_pool(priv);
1570 return err;
1571}
1572
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001573/* Total number of in-flight frames on ingress queues */
1574static u32 ingress_fq_count(struct dpaa2_eth_priv *priv)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001575{
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001576 struct dpaa2_eth_fq *fq;
1577 u32 fcnt = 0, bcnt = 0, total = 0;
1578 int i, err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001579
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001580 for (i = 0; i < priv->num_fqs; i++) {
1581 fq = &priv->fq[i];
1582 err = dpaa2_io_query_fq_count(NULL, fq->fqid, &fcnt, &bcnt);
1583 if (err) {
1584 netdev_warn(priv->net_dev, "query_fq_count failed");
1585 break;
1586 }
1587 total += fcnt;
1588 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001589
1590 return total;
1591}
1592
Ioana Radulescu52b6a4f2019-09-02 13:23:19 +03001593static void wait_for_ingress_fq_empty(struct dpaa2_eth_priv *priv)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001594{
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001595 int retries = 10;
1596 u32 pending;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001597
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001598 do {
1599 pending = ingress_fq_count(priv);
1600 if (pending)
1601 msleep(100);
1602 } while (pending && --retries);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001603}
1604
Ioana Radulescu52b6a4f2019-09-02 13:23:19 +03001605#define DPNI_TX_PENDING_VER_MAJOR 7
1606#define DPNI_TX_PENDING_VER_MINOR 13
1607static void wait_for_egress_fq_empty(struct dpaa2_eth_priv *priv)
1608{
1609 union dpni_statistics stats;
1610 int retries = 10;
1611 int err;
1612
1613 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_TX_PENDING_VER_MAJOR,
1614 DPNI_TX_PENDING_VER_MINOR) < 0)
1615 goto out;
1616
1617 do {
1618 err = dpni_get_statistics(priv->mc_io, 0, priv->mc_token, 6,
1619 &stats);
1620 if (err)
1621 goto out;
1622 if (stats.page_6.tx_pending_frames == 0)
1623 return;
1624 } while (--retries);
1625
1626out:
1627 msleep(500);
1628}
1629
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001630static int dpaa2_eth_stop(struct net_device *net_dev)
1631{
1632 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Ciornei85b7a342018-10-12 16:27:33 +00001633 int dpni_enabled = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001634 int retries = 10;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001635
Ioana Ciornei71947922019-10-31 01:18:31 +02001636 if (!priv->mac) {
1637 netif_tx_stop_all_queues(net_dev);
1638 netif_carrier_off(net_dev);
1639 } else {
1640 phylink_stop(priv->mac->phylink);
1641 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001642
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001643 /* On dpni_disable(), the MC firmware will:
1644 * - stop MAC Rx and wait for all Rx frames to be enqueued to software
1645 * - cut off WRIOP dequeues from egress FQs and wait until transmission
1646 * of all in flight Tx frames is finished (and corresponding Tx conf
1647 * frames are enqueued back to software)
1648 *
1649 * Before calling dpni_disable(), we wait for all Tx frames to arrive
1650 * on WRIOP. After it finishes, wait until all remaining frames on Rx
1651 * and Tx conf queues are consumed on NAPI poll.
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001652 */
Ioana Radulescu52b6a4f2019-09-02 13:23:19 +03001653 wait_for_egress_fq_empty(priv);
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001654
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001655 do {
1656 dpni_disable(priv->mc_io, 0, priv->mc_token);
1657 dpni_is_enabled(priv->mc_io, 0, priv->mc_token, &dpni_enabled);
1658 if (dpni_enabled)
1659 /* Allow the hardware some slack */
1660 msleep(100);
1661 } while (dpni_enabled && --retries);
1662 if (!retries) {
1663 netdev_warn(net_dev, "Retry count exceeded disabling DPNI\n");
1664 /* Must go on and disable NAPI nonetheless, so we don't crash at
1665 * the next "ifconfig up"
1666 */
1667 }
1668
Ioana Radulescu52b6a4f2019-09-02 13:23:19 +03001669 wait_for_ingress_fq_empty(priv);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001670 disable_ch_napi(priv);
1671
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001672 /* Empty the buffer pool */
1673 drain_pool(priv);
1674
Ioana Ciorneid70446e2020-06-29 21:47:11 +03001675 /* Empty the Scatter-Gather Buffer cache */
1676 dpaa2_eth_sgt_cache_drain(priv);
1677
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001678 return 0;
1679}
1680
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001681static int dpaa2_eth_set_addr(struct net_device *net_dev, void *addr)
1682{
1683 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1684 struct device *dev = net_dev->dev.parent;
1685 int err;
1686
1687 err = eth_mac_addr(net_dev, addr);
1688 if (err < 0) {
1689 dev_err(dev, "eth_mac_addr() failed (%d)\n", err);
1690 return err;
1691 }
1692
1693 err = dpni_set_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
1694 net_dev->dev_addr);
1695 if (err) {
1696 dev_err(dev, "dpni_set_primary_mac_addr() failed (%d)\n", err);
1697 return err;
1698 }
1699
1700 return 0;
1701}
1702
1703/** Fill in counters maintained by the GPP driver. These may be different from
1704 * the hardware counters obtained by ethtool.
1705 */
Ioana Radulescuacbff8e2017-06-06 10:00:24 -05001706static void dpaa2_eth_get_stats(struct net_device *net_dev,
1707 struct rtnl_link_stats64 *stats)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001708{
1709 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1710 struct rtnl_link_stats64 *percpu_stats;
1711 u64 *cpustats;
1712 u64 *netstats = (u64 *)stats;
1713 int i, j;
1714 int num = sizeof(struct rtnl_link_stats64) / sizeof(u64);
1715
1716 for_each_possible_cpu(i) {
1717 percpu_stats = per_cpu_ptr(priv->percpu_stats, i);
1718 cpustats = (u64 *)percpu_stats;
1719 for (j = 0; j < num; j++)
1720 netstats[j] += cpustats[j];
1721 }
1722}
1723
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001724/* Copy mac unicast addresses from @net_dev to @priv.
1725 * Its sole purpose is to make dpaa2_eth_set_rx_mode() more readable.
1726 */
1727static void add_uc_hw_addr(const struct net_device *net_dev,
1728 struct dpaa2_eth_priv *priv)
1729{
1730 struct netdev_hw_addr *ha;
1731 int err;
1732
1733 netdev_for_each_uc_addr(ha, net_dev) {
1734 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token,
1735 ha->addr);
1736 if (err)
1737 netdev_warn(priv->net_dev,
1738 "Could not add ucast MAC %pM to the filtering table (err %d)\n",
1739 ha->addr, err);
1740 }
1741}
1742
1743/* Copy mac multicast addresses from @net_dev to @priv
1744 * Its sole purpose is to make dpaa2_eth_set_rx_mode() more readable.
1745 */
1746static void add_mc_hw_addr(const struct net_device *net_dev,
1747 struct dpaa2_eth_priv *priv)
1748{
1749 struct netdev_hw_addr *ha;
1750 int err;
1751
1752 netdev_for_each_mc_addr(ha, net_dev) {
1753 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token,
1754 ha->addr);
1755 if (err)
1756 netdev_warn(priv->net_dev,
1757 "Could not add mcast MAC %pM to the filtering table (err %d)\n",
1758 ha->addr, err);
1759 }
1760}
1761
1762static void dpaa2_eth_set_rx_mode(struct net_device *net_dev)
1763{
1764 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1765 int uc_count = netdev_uc_count(net_dev);
1766 int mc_count = netdev_mc_count(net_dev);
1767 u8 max_mac = priv->dpni_attrs.mac_filter_entries;
1768 u32 options = priv->dpni_attrs.options;
1769 u16 mc_token = priv->mc_token;
1770 struct fsl_mc_io *mc_io = priv->mc_io;
1771 int err;
1772
1773 /* Basic sanity checks; these probably indicate a misconfiguration */
1774 if (options & DPNI_OPT_NO_MAC_FILTER && max_mac != 0)
1775 netdev_info(net_dev,
1776 "mac_filter_entries=%d, DPNI_OPT_NO_MAC_FILTER option must be disabled\n",
1777 max_mac);
1778
1779 /* Force promiscuous if the uc or mc counts exceed our capabilities. */
1780 if (uc_count > max_mac) {
1781 netdev_info(net_dev,
1782 "Unicast addr count reached %d, max allowed is %d; forcing promisc\n",
1783 uc_count, max_mac);
1784 goto force_promisc;
1785 }
1786 if (mc_count + uc_count > max_mac) {
1787 netdev_info(net_dev,
1788 "Unicast + multicast addr count reached %d, max allowed is %d; forcing promisc\n",
1789 uc_count + mc_count, max_mac);
1790 goto force_mc_promisc;
1791 }
1792
1793 /* Adjust promisc settings due to flag combinations */
1794 if (net_dev->flags & IFF_PROMISC)
1795 goto force_promisc;
1796 if (net_dev->flags & IFF_ALLMULTI) {
1797 /* First, rebuild unicast filtering table. This should be done
1798 * in promisc mode, in order to avoid frame loss while we
1799 * progressively add entries to the table.
1800 * We don't know whether we had been in promisc already, and
1801 * making an MC call to find out is expensive; so set uc promisc
1802 * nonetheless.
1803 */
1804 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
1805 if (err)
1806 netdev_warn(net_dev, "Can't set uc promisc\n");
1807
1808 /* Actual uc table reconstruction. */
1809 err = dpni_clear_mac_filters(mc_io, 0, mc_token, 1, 0);
1810 if (err)
1811 netdev_warn(net_dev, "Can't clear uc filters\n");
1812 add_uc_hw_addr(net_dev, priv);
1813
1814 /* Finally, clear uc promisc and set mc promisc as requested. */
1815 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 0);
1816 if (err)
1817 netdev_warn(net_dev, "Can't clear uc promisc\n");
1818 goto force_mc_promisc;
1819 }
1820
1821 /* Neither unicast, nor multicast promisc will be on... eventually.
1822 * For now, rebuild mac filtering tables while forcing both of them on.
1823 */
1824 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
1825 if (err)
1826 netdev_warn(net_dev, "Can't set uc promisc (%d)\n", err);
1827 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 1);
1828 if (err)
1829 netdev_warn(net_dev, "Can't set mc promisc (%d)\n", err);
1830
1831 /* Actual mac filtering tables reconstruction */
1832 err = dpni_clear_mac_filters(mc_io, 0, mc_token, 1, 1);
1833 if (err)
1834 netdev_warn(net_dev, "Can't clear mac filters\n");
1835 add_mc_hw_addr(net_dev, priv);
1836 add_uc_hw_addr(net_dev, priv);
1837
1838 /* Now we can clear both ucast and mcast promisc, without risking
1839 * to drop legitimate frames anymore.
1840 */
1841 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 0);
1842 if (err)
1843 netdev_warn(net_dev, "Can't clear ucast promisc\n");
1844 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 0);
1845 if (err)
1846 netdev_warn(net_dev, "Can't clear mcast promisc\n");
1847
1848 return;
1849
1850force_promisc:
1851 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
1852 if (err)
1853 netdev_warn(net_dev, "Can't set ucast promisc\n");
1854force_mc_promisc:
1855 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 1);
1856 if (err)
1857 netdev_warn(net_dev, "Can't set mcast promisc\n");
1858}
1859
1860static int dpaa2_eth_set_features(struct net_device *net_dev,
1861 netdev_features_t features)
1862{
1863 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1864 netdev_features_t changed = features ^ net_dev->features;
1865 bool enable;
1866 int err;
1867
1868 if (changed & NETIF_F_RXCSUM) {
1869 enable = !!(features & NETIF_F_RXCSUM);
1870 err = set_rx_csum(priv, enable);
1871 if (err)
1872 return err;
1873 }
1874
1875 if (changed & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
1876 enable = !!(features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM));
1877 err = set_tx_csum(priv, enable);
1878 if (err)
1879 return err;
1880 }
1881
1882 return 0;
1883}
1884
Ioana Radulescu859f9982018-04-26 18:23:47 +08001885static int dpaa2_eth_ts_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1886{
1887 struct dpaa2_eth_priv *priv = netdev_priv(dev);
1888 struct hwtstamp_config config;
1889
1890 if (copy_from_user(&config, rq->ifr_data, sizeof(config)))
1891 return -EFAULT;
1892
1893 switch (config.tx_type) {
1894 case HWTSTAMP_TX_OFF:
1895 priv->tx_tstamp = false;
1896 break;
1897 case HWTSTAMP_TX_ON:
1898 priv->tx_tstamp = true;
1899 break;
1900 default:
1901 return -ERANGE;
1902 }
1903
1904 if (config.rx_filter == HWTSTAMP_FILTER_NONE) {
1905 priv->rx_tstamp = false;
1906 } else {
1907 priv->rx_tstamp = true;
1908 /* TS is set for all frame types, not only those requested */
1909 config.rx_filter = HWTSTAMP_FILTER_ALL;
1910 }
1911
1912 return copy_to_user(rq->ifr_data, &config, sizeof(config)) ?
1913 -EFAULT : 0;
1914}
1915
1916static int dpaa2_eth_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1917{
Russell King4a841822020-02-27 12:00:21 +00001918 struct dpaa2_eth_priv *priv = netdev_priv(dev);
1919
Ioana Radulescu859f9982018-04-26 18:23:47 +08001920 if (cmd == SIOCSHWTSTAMP)
1921 return dpaa2_eth_ts_ioctl(dev, rq, cmd);
1922
Russell King4a841822020-02-27 12:00:21 +00001923 if (priv->mac)
1924 return phylink_mii_ioctl(priv->mac->phylink, rq, cmd);
1925
1926 return -EOPNOTSUPP;
Ioana Radulescu859f9982018-04-26 18:23:47 +08001927}
1928
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001929static bool xdp_mtu_valid(struct dpaa2_eth_priv *priv, int mtu)
1930{
1931 int mfl, linear_mfl;
1932
1933 mfl = DPAA2_ETH_L2_MAX_FRM(mtu);
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +03001934 linear_mfl = priv->rx_buf_size - DPAA2_ETH_RX_HWA_SIZE -
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00001935 dpaa2_eth_rx_head_room(priv) - XDP_PACKET_HEADROOM;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001936
1937 if (mfl > linear_mfl) {
1938 netdev_warn(priv->net_dev, "Maximum MTU for XDP is %d\n",
1939 linear_mfl - VLAN_ETH_HLEN);
1940 return false;
1941 }
1942
1943 return true;
1944}
1945
1946static int set_rx_mfl(struct dpaa2_eth_priv *priv, int mtu, bool has_xdp)
1947{
1948 int mfl, err;
1949
1950 /* We enforce a maximum Rx frame length based on MTU only if we have
1951 * an XDP program attached (in order to avoid Rx S/G frames).
1952 * Otherwise, we accept all incoming frames as long as they are not
1953 * larger than maximum size supported in hardware
1954 */
1955 if (has_xdp)
1956 mfl = DPAA2_ETH_L2_MAX_FRM(mtu);
1957 else
1958 mfl = DPAA2_ETH_MFL;
1959
1960 err = dpni_set_max_frame_length(priv->mc_io, 0, priv->mc_token, mfl);
1961 if (err) {
1962 netdev_err(priv->net_dev, "dpni_set_max_frame_length failed\n");
1963 return err;
1964 }
1965
1966 return 0;
1967}
1968
1969static int dpaa2_eth_change_mtu(struct net_device *dev, int new_mtu)
1970{
1971 struct dpaa2_eth_priv *priv = netdev_priv(dev);
1972 int err;
1973
1974 if (!priv->xdp_prog)
1975 goto out;
1976
1977 if (!xdp_mtu_valid(priv, new_mtu))
1978 return -EINVAL;
1979
1980 err = set_rx_mfl(priv, new_mtu, true);
1981 if (err)
1982 return err;
1983
1984out:
1985 dev->mtu = new_mtu;
1986 return 0;
1987}
1988
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00001989static int update_rx_buffer_headroom(struct dpaa2_eth_priv *priv, bool has_xdp)
1990{
1991 struct dpni_buffer_layout buf_layout = {0};
1992 int err;
1993
1994 err = dpni_get_buffer_layout(priv->mc_io, 0, priv->mc_token,
1995 DPNI_QUEUE_RX, &buf_layout);
1996 if (err) {
1997 netdev_err(priv->net_dev, "dpni_get_buffer_layout failed\n");
1998 return err;
1999 }
2000
2001 /* Reserve extra headroom for XDP header size changes */
2002 buf_layout.data_head_room = dpaa2_eth_rx_head_room(priv) +
2003 (has_xdp ? XDP_PACKET_HEADROOM : 0);
2004 buf_layout.options = DPNI_BUF_LAYOUT_OPT_DATA_HEAD_ROOM;
2005 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2006 DPNI_QUEUE_RX, &buf_layout);
2007 if (err) {
2008 netdev_err(priv->net_dev, "dpni_set_buffer_layout failed\n");
2009 return err;
2010 }
2011
2012 return 0;
2013}
2014
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00002015static int setup_xdp(struct net_device *dev, struct bpf_prog *prog)
2016{
2017 struct dpaa2_eth_priv *priv = netdev_priv(dev);
2018 struct dpaa2_eth_channel *ch;
2019 struct bpf_prog *old;
2020 bool up, need_update;
2021 int i, err;
2022
2023 if (prog && !xdp_mtu_valid(priv, dev->mtu))
2024 return -EINVAL;
2025
Andrii Nakryiko85192db2019-11-17 09:28:03 -08002026 if (prog)
2027 bpf_prog_add(prog, priv->num_channels);
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00002028
2029 up = netif_running(dev);
2030 need_update = (!!priv->xdp_prog != !!prog);
2031
2032 if (up)
2033 dpaa2_eth_stop(dev);
2034
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00002035 /* While in xdp mode, enforce a maximum Rx frame size based on MTU.
2036 * Also, when switching between xdp/non-xdp modes we need to reconfigure
2037 * our Rx buffer layout. Buffer pool was drained on dpaa2_eth_stop,
2038 * so we are sure no old format buffers will be used from now on.
2039 */
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00002040 if (need_update) {
2041 err = set_rx_mfl(priv, dev->mtu, !!prog);
2042 if (err)
2043 goto out_err;
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00002044 err = update_rx_buffer_headroom(priv, !!prog);
2045 if (err)
2046 goto out_err;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00002047 }
2048
2049 old = xchg(&priv->xdp_prog, prog);
2050 if (old)
2051 bpf_prog_put(old);
2052
2053 for (i = 0; i < priv->num_channels; i++) {
2054 ch = priv->channel[i];
2055 old = xchg(&ch->xdp.prog, prog);
2056 if (old)
2057 bpf_prog_put(old);
2058 }
2059
2060 if (up) {
2061 err = dpaa2_eth_open(dev);
2062 if (err)
2063 return err;
2064 }
2065
2066 return 0;
2067
2068out_err:
2069 if (prog)
2070 bpf_prog_sub(prog, priv->num_channels);
2071 if (up)
2072 dpaa2_eth_open(dev);
2073
2074 return err;
2075}
2076
2077static int dpaa2_eth_xdp(struct net_device *dev, struct netdev_bpf *xdp)
2078{
2079 struct dpaa2_eth_priv *priv = netdev_priv(dev);
2080
2081 switch (xdp->command) {
2082 case XDP_SETUP_PROG:
2083 return setup_xdp(dev, xdp->prog);
2084 case XDP_QUERY_PROG:
2085 xdp->prog_id = priv->xdp_prog ? priv->xdp_prog->aux->id : 0;
2086 break;
2087 default:
2088 return -EINVAL;
2089 }
2090
2091 return 0;
2092}
2093
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002094static int dpaa2_eth_xdp_create_fd(struct net_device *net_dev,
2095 struct xdp_frame *xdpf,
2096 struct dpaa2_fd *fd)
Ioana Radulescud678be12019-03-01 17:47:24 +00002097{
2098 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2099 struct device *dev = net_dev->dev.parent;
Ioana Radulescud678be12019-03-01 17:47:24 +00002100 unsigned int needed_headroom;
2101 struct dpaa2_eth_swa *swa;
Ioana Radulescud678be12019-03-01 17:47:24 +00002102 void *buffer_start, *aligned_start;
2103 dma_addr_t addr;
Ioana Radulescud678be12019-03-01 17:47:24 +00002104
2105 /* We require a minimum headroom to be able to transmit the frame.
2106 * Otherwise return an error and let the original net_device handle it
2107 */
2108 needed_headroom = dpaa2_eth_needed_headroom(priv, NULL);
2109 if (xdpf->headroom < needed_headroom)
2110 return -EINVAL;
2111
Ioana Radulescud678be12019-03-01 17:47:24 +00002112 /* Setup the FD fields */
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002113 memset(fd, 0, sizeof(*fd));
Ioana Radulescud678be12019-03-01 17:47:24 +00002114
2115 /* Align FD address, if possible */
2116 buffer_start = xdpf->data - needed_headroom;
2117 aligned_start = PTR_ALIGN(buffer_start - DPAA2_ETH_TX_BUF_ALIGN,
2118 DPAA2_ETH_TX_BUF_ALIGN);
2119 if (aligned_start >= xdpf->data - xdpf->headroom)
2120 buffer_start = aligned_start;
2121
2122 swa = (struct dpaa2_eth_swa *)buffer_start;
2123 /* fill in necessary fields here */
2124 swa->type = DPAA2_ETH_SWA_XDP;
2125 swa->xdp.dma_size = xdpf->data + xdpf->len - buffer_start;
2126 swa->xdp.xdpf = xdpf;
2127
2128 addr = dma_map_single(dev, buffer_start,
2129 swa->xdp.dma_size,
2130 DMA_BIDIRECTIONAL);
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002131 if (unlikely(dma_mapping_error(dev, addr)))
Ioana Radulescud678be12019-03-01 17:47:24 +00002132 return -ENOMEM;
Ioana Radulescud678be12019-03-01 17:47:24 +00002133
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002134 dpaa2_fd_set_addr(fd, addr);
2135 dpaa2_fd_set_offset(fd, xdpf->data - buffer_start);
2136 dpaa2_fd_set_len(fd, xdpf->len);
2137 dpaa2_fd_set_format(fd, dpaa2_fd_single);
2138 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
Ioana Radulescud678be12019-03-01 17:47:24 +00002139
2140 return 0;
2141}
2142
2143static int dpaa2_eth_xdp_xmit(struct net_device *net_dev, int n,
2144 struct xdp_frame **frames, u32 flags)
2145{
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002146 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002147 struct dpaa2_eth_xdp_fds *xdp_redirect_fds;
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002148 struct rtnl_link_stats64 *percpu_stats;
2149 struct dpaa2_eth_fq *fq;
Ioana Ciornei8665d972020-04-22 15:05:13 +03002150 struct dpaa2_fd *fds;
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002151 int enqueued, i, err;
Ioana Radulescud678be12019-03-01 17:47:24 +00002152
2153 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
2154 return -EINVAL;
2155
2156 if (!netif_running(net_dev))
2157 return -ENETDOWN;
2158
Ioana Ciornei8665d972020-04-22 15:05:13 +03002159 fq = &priv->fq[smp_processor_id()];
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002160 xdp_redirect_fds = &fq->xdp_redirect_fds;
2161 fds = xdp_redirect_fds->fds;
Ioana Ciornei8665d972020-04-22 15:05:13 +03002162
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002163 percpu_stats = this_cpu_ptr(priv->percpu_stats);
Ioana Ciornei6aa40b92020-04-22 15:05:12 +03002164
Ioana Ciornei8665d972020-04-22 15:05:13 +03002165 /* create a FD for each xdp_frame in the list received */
Ioana Radulescud678be12019-03-01 17:47:24 +00002166 for (i = 0; i < n; i++) {
Ioana Ciornei8665d972020-04-22 15:05:13 +03002167 err = dpaa2_eth_xdp_create_fd(net_dev, frames[i], &fds[i]);
2168 if (err)
2169 break;
2170 }
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002171 xdp_redirect_fds->num = i;
Ioana Radulescud678be12019-03-01 17:47:24 +00002172
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002173 /* enqueue all the frame descriptors */
2174 enqueued = dpaa2_eth_xdp_flush(priv, fq, xdp_redirect_fds);
Ioana Radulescud678be12019-03-01 17:47:24 +00002175
Ioana Ciornei8665d972020-04-22 15:05:13 +03002176 /* update statistics */
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002177 percpu_stats->tx_packets += enqueued;
2178 for (i = 0; i < enqueued; i++)
Ioana Ciornei8665d972020-04-22 15:05:13 +03002179 percpu_stats->tx_bytes += dpaa2_fd_get_len(&fds[i]);
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002180 for (i = enqueued; i < n; i++)
Ioana Ciornei8665d972020-04-22 15:05:13 +03002181 xdp_return_frame_rx_napi(frames[i]);
2182
Ioana Ciornei38c440b2020-05-06 20:47:17 +03002183 return enqueued;
Ioana Radulescud678be12019-03-01 17:47:24 +00002184}
2185
Ioana Radulescu06d5b172019-06-11 14:50:01 +03002186static int update_xps(struct dpaa2_eth_priv *priv)
2187{
2188 struct net_device *net_dev = priv->net_dev;
2189 struct cpumask xps_mask;
2190 struct dpaa2_eth_fq *fq;
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03002191 int i, num_queues, netdev_queues;
Ioana Radulescu06d5b172019-06-11 14:50:01 +03002192 int err = 0;
2193
2194 num_queues = dpaa2_eth_queue_count(priv);
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03002195 netdev_queues = (net_dev->num_tc ? : 1) * num_queues;
Ioana Radulescu06d5b172019-06-11 14:50:01 +03002196
2197 /* The first <num_queues> entries in priv->fq array are Tx/Tx conf
2198 * queues, so only process those
2199 */
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03002200 for (i = 0; i < netdev_queues; i++) {
2201 fq = &priv->fq[i % num_queues];
Ioana Radulescu06d5b172019-06-11 14:50:01 +03002202
2203 cpumask_clear(&xps_mask);
2204 cpumask_set_cpu(fq->target_cpu, &xps_mask);
2205
2206 err = netif_set_xps_queue(net_dev, &xps_mask, i);
2207 if (err) {
2208 netdev_warn_once(net_dev, "Error setting XPS queue\n");
2209 break;
2210 }
2211 }
2212
2213 return err;
2214}
2215
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03002216static int dpaa2_eth_setup_tc(struct net_device *net_dev,
2217 enum tc_setup_type type, void *type_data)
2218{
2219 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2220 struct tc_mqprio_qopt *mqprio = type_data;
2221 u8 num_tc, num_queues;
2222 int i;
2223
2224 if (type != TC_SETUP_QDISC_MQPRIO)
Jesper Dangaard Brouerb89c1e62020-04-23 16:57:50 +02002225 return -EOPNOTSUPP;
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03002226
2227 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
2228 num_queues = dpaa2_eth_queue_count(priv);
2229 num_tc = mqprio->num_tc;
2230
2231 if (num_tc == net_dev->num_tc)
2232 return 0;
2233
2234 if (num_tc > dpaa2_eth_tc_count(priv)) {
2235 netdev_err(net_dev, "Max %d traffic classes supported\n",
2236 dpaa2_eth_tc_count(priv));
Jesper Dangaard Brouerb89c1e62020-04-23 16:57:50 +02002237 return -EOPNOTSUPP;
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03002238 }
2239
2240 if (!num_tc) {
2241 netdev_reset_tc(net_dev);
2242 netif_set_real_num_tx_queues(net_dev, num_queues);
2243 goto out;
2244 }
2245
2246 netdev_set_num_tc(net_dev, num_tc);
2247 netif_set_real_num_tx_queues(net_dev, num_tc * num_queues);
2248
2249 for (i = 0; i < num_tc; i++)
2250 netdev_set_tc_queue(net_dev, i, num_queues, i * num_queues);
2251
2252out:
2253 update_xps(priv);
2254
2255 return 0;
2256}
2257
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002258static const struct net_device_ops dpaa2_eth_ops = {
2259 .ndo_open = dpaa2_eth_open,
2260 .ndo_start_xmit = dpaa2_eth_tx,
2261 .ndo_stop = dpaa2_eth_stop,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002262 .ndo_set_mac_address = dpaa2_eth_set_addr,
2263 .ndo_get_stats64 = dpaa2_eth_get_stats,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002264 .ndo_set_rx_mode = dpaa2_eth_set_rx_mode,
2265 .ndo_set_features = dpaa2_eth_set_features,
Ioana Radulescu859f9982018-04-26 18:23:47 +08002266 .ndo_do_ioctl = dpaa2_eth_ioctl,
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00002267 .ndo_change_mtu = dpaa2_eth_change_mtu,
2268 .ndo_bpf = dpaa2_eth_xdp,
Ioana Radulescud678be12019-03-01 17:47:24 +00002269 .ndo_xdp_xmit = dpaa2_eth_xdp_xmit,
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03002270 .ndo_setup_tc = dpaa2_eth_setup_tc,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002271};
2272
2273static void cdan_cb(struct dpaa2_io_notification_ctx *ctx)
2274{
2275 struct dpaa2_eth_channel *ch;
2276
2277 ch = container_of(ctx, struct dpaa2_eth_channel, nctx);
Ioana Radulescu85047ab2017-04-28 04:50:31 -05002278
2279 /* Update NAPI statistics */
2280 ch->stats.cdan++;
2281
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002282 napi_schedule_irqoff(&ch->napi);
2283}
2284
2285/* Allocate and configure a DPCON object */
2286static struct fsl_mc_device *setup_dpcon(struct dpaa2_eth_priv *priv)
2287{
2288 struct fsl_mc_device *dpcon;
2289 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002290 int err;
2291
2292 err = fsl_mc_object_allocate(to_fsl_mc_device(dev),
2293 FSL_MC_POOL_DPCON, &dpcon);
2294 if (err) {
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002295 if (err == -ENXIO)
2296 err = -EPROBE_DEFER;
2297 else
2298 dev_info(dev, "Not enough DPCONs, will go on as-is\n");
2299 return ERR_PTR(err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002300 }
2301
2302 err = dpcon_open(priv->mc_io, 0, dpcon->obj_desc.id, &dpcon->mc_handle);
2303 if (err) {
2304 dev_err(dev, "dpcon_open() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002305 goto free;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002306 }
2307
2308 err = dpcon_reset(priv->mc_io, 0, dpcon->mc_handle);
2309 if (err) {
2310 dev_err(dev, "dpcon_reset() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002311 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002312 }
2313
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002314 err = dpcon_enable(priv->mc_io, 0, dpcon->mc_handle);
2315 if (err) {
2316 dev_err(dev, "dpcon_enable() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002317 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002318 }
2319
2320 return dpcon;
2321
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002322close:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002323 dpcon_close(priv->mc_io, 0, dpcon->mc_handle);
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002324free:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002325 fsl_mc_object_free(dpcon);
2326
2327 return NULL;
2328}
2329
2330static void free_dpcon(struct dpaa2_eth_priv *priv,
2331 struct fsl_mc_device *dpcon)
2332{
2333 dpcon_disable(priv->mc_io, 0, dpcon->mc_handle);
2334 dpcon_close(priv->mc_io, 0, dpcon->mc_handle);
2335 fsl_mc_object_free(dpcon);
2336}
2337
2338static struct dpaa2_eth_channel *
2339alloc_channel(struct dpaa2_eth_priv *priv)
2340{
2341 struct dpaa2_eth_channel *channel;
2342 struct dpcon_attr attr;
2343 struct device *dev = priv->net_dev->dev.parent;
2344 int err;
2345
2346 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
2347 if (!channel)
2348 return NULL;
2349
2350 channel->dpcon = setup_dpcon(priv);
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002351 if (IS_ERR_OR_NULL(channel->dpcon)) {
Ioana Radulescubd8460f2019-05-24 18:15:16 +03002352 err = PTR_ERR_OR_ZERO(channel->dpcon);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002353 goto err_setup;
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002354 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002355
2356 err = dpcon_get_attributes(priv->mc_io, 0, channel->dpcon->mc_handle,
2357 &attr);
2358 if (err) {
2359 dev_err(dev, "dpcon_get_attributes() failed\n");
2360 goto err_get_attr;
2361 }
2362
2363 channel->dpcon_id = attr.id;
2364 channel->ch_id = attr.qbman_ch_id;
2365 channel->priv = priv;
2366
2367 return channel;
2368
2369err_get_attr:
2370 free_dpcon(priv, channel->dpcon);
2371err_setup:
2372 kfree(channel);
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002373 return ERR_PTR(err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002374}
2375
2376static void free_channel(struct dpaa2_eth_priv *priv,
2377 struct dpaa2_eth_channel *channel)
2378{
2379 free_dpcon(priv, channel->dpcon);
2380 kfree(channel);
2381}
2382
2383/* DPIO setup: allocate and configure QBMan channels, setup core affinity
2384 * and register data availability notifications
2385 */
2386static int setup_dpio(struct dpaa2_eth_priv *priv)
2387{
2388 struct dpaa2_io_notification_ctx *nctx;
2389 struct dpaa2_eth_channel *channel;
2390 struct dpcon_notification_cfg dpcon_notif_cfg;
2391 struct device *dev = priv->net_dev->dev.parent;
2392 int i, err;
2393
2394 /* We want the ability to spread ingress traffic (RX, TX conf) to as
2395 * many cores as possible, so we need one channel for each core
2396 * (unless there's fewer queues than cores, in which case the extra
2397 * channels would be wasted).
2398 * Allocate one channel per core and register it to the core's
2399 * affine DPIO. If not enough channels are available for all cores
2400 * or if some cores don't have an affine DPIO, there will be no
2401 * ingress frame processing on those cores.
2402 */
2403 cpumask_clear(&priv->dpio_cpumask);
2404 for_each_online_cpu(i) {
2405 /* Try to allocate a channel */
2406 channel = alloc_channel(priv);
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002407 if (IS_ERR_OR_NULL(channel)) {
Ioana Radulescubd8460f2019-05-24 18:15:16 +03002408 err = PTR_ERR_OR_ZERO(channel);
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002409 if (err != -EPROBE_DEFER)
2410 dev_info(dev,
2411 "No affine channel for cpu %d and above\n", i);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002412 goto err_alloc_ch;
2413 }
2414
2415 priv->channel[priv->num_channels] = channel;
2416
2417 nctx = &channel->nctx;
2418 nctx->is_cdan = 1;
2419 nctx->cb = cdan_cb;
2420 nctx->id = channel->ch_id;
2421 nctx->desired_cpu = i;
2422
2423 /* Register the new context */
Ioana Radulescu7ec05962018-01-05 05:04:32 -06002424 channel->dpio = dpaa2_io_service_select(i);
Ioana Ciornei47441f72018-12-10 16:50:19 +00002425 err = dpaa2_io_service_register(channel->dpio, nctx, dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002426 if (err) {
Ioana Radulescu5206d8d2017-06-06 10:00:33 -05002427 dev_dbg(dev, "No affine DPIO for cpu %d\n", i);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002428 /* If no affine DPIO for this core, there's probably
Ioana Radulescu5206d8d2017-06-06 10:00:33 -05002429 * none available for next cores either. Signal we want
2430 * to retry later, in case the DPIO devices weren't
2431 * probed yet.
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002432 */
Ioana Radulescu5206d8d2017-06-06 10:00:33 -05002433 err = -EPROBE_DEFER;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002434 goto err_service_reg;
2435 }
2436
2437 /* Register DPCON notification with MC */
2438 dpcon_notif_cfg.dpio_id = nctx->dpio_id;
2439 dpcon_notif_cfg.priority = 0;
2440 dpcon_notif_cfg.user_ctx = nctx->qman64;
2441 err = dpcon_set_notification(priv->mc_io, 0,
2442 channel->dpcon->mc_handle,
2443 &dpcon_notif_cfg);
2444 if (err) {
2445 dev_err(dev, "dpcon_set_notification failed()\n");
2446 goto err_set_cdan;
2447 }
2448
2449 /* If we managed to allocate a channel and also found an affine
2450 * DPIO for this core, add it to the final mask
2451 */
2452 cpumask_set_cpu(i, &priv->dpio_cpumask);
2453 priv->num_channels++;
2454
2455 /* Stop if we already have enough channels to accommodate all
2456 * RX and TX conf queues
2457 */
Ioana Ciocoi Radulescub0e4f372018-11-14 11:48:35 +00002458 if (priv->num_channels == priv->dpni_attrs.num_queues)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002459 break;
2460 }
2461
2462 return 0;
2463
2464err_set_cdan:
Ioana Ciornei47441f72018-12-10 16:50:19 +00002465 dpaa2_io_service_deregister(channel->dpio, nctx, dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002466err_service_reg:
2467 free_channel(priv, channel);
2468err_alloc_ch:
Ioana Ciornei5aa42772019-11-12 18:21:52 +02002469 if (err == -EPROBE_DEFER) {
2470 for (i = 0; i < priv->num_channels; i++) {
2471 channel = priv->channel[i];
2472 nctx = &channel->nctx;
2473 dpaa2_io_service_deregister(channel->dpio, nctx, dev);
2474 free_channel(priv, channel);
2475 }
2476 priv->num_channels = 0;
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002477 return err;
Ioana Ciornei5aa42772019-11-12 18:21:52 +02002478 }
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002479
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002480 if (cpumask_empty(&priv->dpio_cpumask)) {
2481 dev_err(dev, "No cpu with an affine DPIO/DPCON\n");
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002482 return -ENODEV;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002483 }
2484
2485 dev_info(dev, "Cores %*pbl available for processing ingress traffic\n",
2486 cpumask_pr_args(&priv->dpio_cpumask));
2487
2488 return 0;
2489}
2490
2491static void free_dpio(struct dpaa2_eth_priv *priv)
2492{
Ioana Ciornei47441f72018-12-10 16:50:19 +00002493 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002494 struct dpaa2_eth_channel *ch;
Ioana Ciornei47441f72018-12-10 16:50:19 +00002495 int i;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002496
2497 /* deregister CDAN notifications and free channels */
2498 for (i = 0; i < priv->num_channels; i++) {
2499 ch = priv->channel[i];
Ioana Ciornei47441f72018-12-10 16:50:19 +00002500 dpaa2_io_service_deregister(ch->dpio, &ch->nctx, dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002501 free_channel(priv, ch);
2502 }
2503}
2504
2505static struct dpaa2_eth_channel *get_affine_channel(struct dpaa2_eth_priv *priv,
2506 int cpu)
2507{
2508 struct device *dev = priv->net_dev->dev.parent;
2509 int i;
2510
2511 for (i = 0; i < priv->num_channels; i++)
2512 if (priv->channel[i]->nctx.desired_cpu == cpu)
2513 return priv->channel[i];
2514
2515 /* We should never get here. Issue a warning and return
2516 * the first channel, because it's still better than nothing
2517 */
2518 dev_warn(dev, "No affine channel found for cpu %d\n", cpu);
2519
2520 return priv->channel[0];
2521}
2522
2523static void set_fq_affinity(struct dpaa2_eth_priv *priv)
2524{
2525 struct device *dev = priv->net_dev->dev.parent;
2526 struct dpaa2_eth_fq *fq;
2527 int rx_cpu, txc_cpu;
Ioana Radulescu06d5b172019-06-11 14:50:01 +03002528 int i;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002529
2530 /* For each FQ, pick one channel/CPU to deliver frames to.
2531 * This may well change at runtime, either through irqbalance or
2532 * through direct user intervention.
2533 */
2534 rx_cpu = txc_cpu = cpumask_first(&priv->dpio_cpumask);
2535
2536 for (i = 0; i < priv->num_fqs; i++) {
2537 fq = &priv->fq[i];
2538 switch (fq->type) {
2539 case DPAA2_RX_FQ:
2540 fq->target_cpu = rx_cpu;
2541 rx_cpu = cpumask_next(rx_cpu, &priv->dpio_cpumask);
2542 if (rx_cpu >= nr_cpu_ids)
2543 rx_cpu = cpumask_first(&priv->dpio_cpumask);
2544 break;
2545 case DPAA2_TX_CONF_FQ:
2546 fq->target_cpu = txc_cpu;
2547 txc_cpu = cpumask_next(txc_cpu, &priv->dpio_cpumask);
2548 if (txc_cpu >= nr_cpu_ids)
2549 txc_cpu = cpumask_first(&priv->dpio_cpumask);
2550 break;
2551 default:
2552 dev_err(dev, "Unknown FQ type: %d\n", fq->type);
2553 }
2554 fq->channel = get_affine_channel(priv, fq->target_cpu);
2555 }
Ioana Radulescu06d5b172019-06-11 14:50:01 +03002556
2557 update_xps(priv);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002558}
2559
2560static void setup_fqs(struct dpaa2_eth_priv *priv)
2561{
Ioana Radulescu685e39e2020-05-31 00:08:08 +03002562 int i, j;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002563
2564 /* We have one TxConf FQ per Tx flow.
2565 * The number of Tx and Rx queues is the same.
2566 * Tx queues come first in the fq array.
2567 */
2568 for (i = 0; i < dpaa2_eth_queue_count(priv); i++) {
2569 priv->fq[priv->num_fqs].type = DPAA2_TX_CONF_FQ;
2570 priv->fq[priv->num_fqs].consume = dpaa2_eth_tx_conf;
2571 priv->fq[priv->num_fqs++].flowid = (u16)i;
2572 }
2573
Ioana Radulescu685e39e2020-05-31 00:08:08 +03002574 for (j = 0; j < dpaa2_eth_tc_count(priv); j++) {
2575 for (i = 0; i < dpaa2_eth_queue_count(priv); i++) {
2576 priv->fq[priv->num_fqs].type = DPAA2_RX_FQ;
2577 priv->fq[priv->num_fqs].consume = dpaa2_eth_rx;
2578 priv->fq[priv->num_fqs].tc = (u8)j;
2579 priv->fq[priv->num_fqs++].flowid = (u16)i;
2580 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002581 }
2582
2583 /* For each FQ, decide on which core to process incoming frames */
2584 set_fq_affinity(priv);
2585}
2586
2587/* Allocate and configure one buffer pool for each interface */
2588static int setup_dpbp(struct dpaa2_eth_priv *priv)
2589{
2590 int err;
2591 struct fsl_mc_device *dpbp_dev;
2592 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05002593 struct dpbp_attr dpbp_attrs;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002594
2595 err = fsl_mc_object_allocate(to_fsl_mc_device(dev), FSL_MC_POOL_DPBP,
2596 &dpbp_dev);
2597 if (err) {
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002598 if (err == -ENXIO)
2599 err = -EPROBE_DEFER;
2600 else
2601 dev_err(dev, "DPBP device allocation failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002602 return err;
2603 }
2604
2605 priv->dpbp_dev = dpbp_dev;
2606
2607 err = dpbp_open(priv->mc_io, 0, priv->dpbp_dev->obj_desc.id,
2608 &dpbp_dev->mc_handle);
2609 if (err) {
2610 dev_err(dev, "dpbp_open() failed\n");
2611 goto err_open;
2612 }
2613
Ioana Radulescud00defe2017-06-06 10:00:32 -05002614 err = dpbp_reset(priv->mc_io, 0, dpbp_dev->mc_handle);
2615 if (err) {
2616 dev_err(dev, "dpbp_reset() failed\n");
2617 goto err_reset;
2618 }
2619
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002620 err = dpbp_enable(priv->mc_io, 0, dpbp_dev->mc_handle);
2621 if (err) {
2622 dev_err(dev, "dpbp_enable() failed\n");
2623 goto err_enable;
2624 }
2625
2626 err = dpbp_get_attributes(priv->mc_io, 0, dpbp_dev->mc_handle,
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05002627 &dpbp_attrs);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002628 if (err) {
2629 dev_err(dev, "dpbp_get_attributes() failed\n");
2630 goto err_get_attr;
2631 }
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05002632 priv->bpid = dpbp_attrs.bpid;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002633
2634 return 0;
2635
2636err_get_attr:
2637 dpbp_disable(priv->mc_io, 0, dpbp_dev->mc_handle);
2638err_enable:
Ioana Radulescud00defe2017-06-06 10:00:32 -05002639err_reset:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002640 dpbp_close(priv->mc_io, 0, dpbp_dev->mc_handle);
2641err_open:
2642 fsl_mc_object_free(dpbp_dev);
2643
2644 return err;
2645}
2646
2647static void free_dpbp(struct dpaa2_eth_priv *priv)
2648{
2649 drain_pool(priv);
2650 dpbp_disable(priv->mc_io, 0, priv->dpbp_dev->mc_handle);
2651 dpbp_close(priv->mc_io, 0, priv->dpbp_dev->mc_handle);
2652 fsl_mc_object_free(priv->dpbp_dev);
2653}
2654
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002655static int set_buffer_layout(struct dpaa2_eth_priv *priv)
2656{
2657 struct device *dev = priv->net_dev->dev.parent;
2658 struct dpni_buffer_layout buf_layout = {0};
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002659 u16 rx_buf_align;
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002660 int err;
2661
Bogdan Purcareata8a4fd872017-10-29 08:20:42 +00002662 /* We need to check for WRIOP version 1.0.0, but depending on the MC
2663 * version, this number is not always provided correctly on rev1.
2664 * We need to check for both alternatives in this situation.
2665 */
2666 if (priv->dpni_attrs.wriop_version == DPAA2_WRIOP_VERSION(0, 0, 0) ||
2667 priv->dpni_attrs.wriop_version == DPAA2_WRIOP_VERSION(1, 0, 0))
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002668 rx_buf_align = DPAA2_ETH_RX_BUF_ALIGN_REV1;
Bogdan Purcareata8a4fd872017-10-29 08:20:42 +00002669 else
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002670 rx_buf_align = DPAA2_ETH_RX_BUF_ALIGN;
Bogdan Purcareata8a4fd872017-10-29 08:20:42 +00002671
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +03002672 /* We need to ensure that the buffer size seen by WRIOP is a multiple
2673 * of 64 or 256 bytes depending on the WRIOP version.
2674 */
2675 priv->rx_buf_size = ALIGN_DOWN(DPAA2_ETH_RX_BUF_SIZE, rx_buf_align);
2676
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002677 /* tx buffer */
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002678 buf_layout.private_data_size = DPAA2_ETH_SWA_SIZE;
Ioana Radulescu859f9982018-04-26 18:23:47 +08002679 buf_layout.pass_timestamp = true;
2680 buf_layout.options = DPNI_BUF_LAYOUT_OPT_PRIVATE_DATA_SIZE |
2681 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002682 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2683 DPNI_QUEUE_TX, &buf_layout);
2684 if (err) {
2685 dev_err(dev, "dpni_set_buffer_layout(TX) failed\n");
2686 return err;
2687 }
2688
2689 /* tx-confirm buffer */
Ioana Radulescu859f9982018-04-26 18:23:47 +08002690 buf_layout.options = DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002691 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2692 DPNI_QUEUE_TX_CONFIRM, &buf_layout);
2693 if (err) {
2694 dev_err(dev, "dpni_set_buffer_layout(TX_CONF) failed\n");
2695 return err;
2696 }
2697
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002698 /* Now that we've set our tx buffer layout, retrieve the minimum
2699 * required tx data offset.
2700 */
2701 err = dpni_get_tx_data_offset(priv->mc_io, 0, priv->mc_token,
2702 &priv->tx_data_offset);
2703 if (err) {
2704 dev_err(dev, "dpni_get_tx_data_offset() failed\n");
2705 return err;
2706 }
2707
2708 if ((priv->tx_data_offset % 64) != 0)
2709 dev_warn(dev, "Tx data offset (%d) not a multiple of 64B\n",
2710 priv->tx_data_offset);
2711
2712 /* rx buffer */
Ioana Radulescu2b7c86e2017-12-08 06:47:56 -06002713 buf_layout.pass_frame_status = true;
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002714 buf_layout.pass_parser_result = true;
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002715 buf_layout.data_align = rx_buf_align;
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002716 buf_layout.data_head_room = dpaa2_eth_rx_head_room(priv);
2717 buf_layout.private_data_size = 0;
2718 buf_layout.options = DPNI_BUF_LAYOUT_OPT_PARSER_RESULT |
2719 DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
2720 DPNI_BUF_LAYOUT_OPT_DATA_ALIGN |
Ioana Radulescu859f9982018-04-26 18:23:47 +08002721 DPNI_BUF_LAYOUT_OPT_DATA_HEAD_ROOM |
2722 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002723 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2724 DPNI_QUEUE_RX, &buf_layout);
2725 if (err) {
2726 dev_err(dev, "dpni_set_buffer_layout(RX) failed\n");
2727 return err;
2728 }
2729
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002730 return 0;
2731}
2732
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002733#define DPNI_ENQUEUE_FQID_VER_MAJOR 7
2734#define DPNI_ENQUEUE_FQID_VER_MINOR 9
2735
2736static inline int dpaa2_eth_enqueue_qd(struct dpaa2_eth_priv *priv,
2737 struct dpaa2_eth_fq *fq,
Ioana Ciornei48c04812020-04-22 15:05:10 +03002738 struct dpaa2_fd *fd, u8 prio,
Ioana Ciornei6ff80442020-04-22 15:05:11 +03002739 u32 num_frames __always_unused,
Ioana Ciornei48c04812020-04-22 15:05:10 +03002740 int *frames_enqueued)
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002741{
Ioana Ciornei48c04812020-04-22 15:05:10 +03002742 int err;
2743
2744 err = dpaa2_io_service_enqueue_qd(fq->channel->dpio,
2745 priv->tx_qdid, prio,
2746 fq->tx_qdbin, fd);
2747 if (!err && frames_enqueued)
2748 *frames_enqueued = 1;
2749 return err;
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002750}
2751
Ioana Ciornei6ff80442020-04-22 15:05:11 +03002752static inline int dpaa2_eth_enqueue_fq_multiple(struct dpaa2_eth_priv *priv,
2753 struct dpaa2_eth_fq *fq,
2754 struct dpaa2_fd *fd,
2755 u8 prio, u32 num_frames,
2756 int *frames_enqueued)
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002757{
Ioana Ciornei48c04812020-04-22 15:05:10 +03002758 int err;
2759
Ioana Ciornei6ff80442020-04-22 15:05:11 +03002760 err = dpaa2_io_service_enqueue_multiple_fq(fq->channel->dpio,
2761 fq->tx_fqid[prio],
2762 fd, num_frames);
2763
2764 if (err == 0)
2765 return -EBUSY;
2766
2767 if (frames_enqueued)
2768 *frames_enqueued = err;
2769 return 0;
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002770}
2771
2772static void set_enqueue_mode(struct dpaa2_eth_priv *priv)
2773{
2774 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_ENQUEUE_FQID_VER_MAJOR,
2775 DPNI_ENQUEUE_FQID_VER_MINOR) < 0)
2776 priv->enqueue = dpaa2_eth_enqueue_qd;
2777 else
Ioana Ciornei6ff80442020-04-22 15:05:11 +03002778 priv->enqueue = dpaa2_eth_enqueue_fq_multiple;
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002779}
2780
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03002781static int set_pause(struct dpaa2_eth_priv *priv)
2782{
2783 struct device *dev = priv->net_dev->dev.parent;
2784 struct dpni_link_cfg link_cfg = {0};
2785 int err;
2786
2787 /* Get the default link options so we don't override other flags */
2788 err = dpni_get_link_cfg(priv->mc_io, 0, priv->mc_token, &link_cfg);
2789 if (err) {
2790 dev_err(dev, "dpni_get_link_cfg() failed\n");
2791 return err;
2792 }
2793
2794 /* By default, enable both Rx and Tx pause frames */
2795 link_cfg.options |= DPNI_LINK_OPT_PAUSE;
2796 link_cfg.options &= ~DPNI_LINK_OPT_ASYM_PAUSE;
2797 err = dpni_set_link_cfg(priv->mc_io, 0, priv->mc_token, &link_cfg);
2798 if (err) {
2799 dev_err(dev, "dpni_set_link_cfg() failed\n");
2800 return err;
2801 }
2802
2803 priv->link_state.options = link_cfg.options;
2804
2805 return 0;
2806}
2807
Ioana Radulescua690af4f2019-10-16 10:36:23 +03002808static void update_tx_fqids(struct dpaa2_eth_priv *priv)
2809{
2810 struct dpni_queue_id qid = {0};
2811 struct dpaa2_eth_fq *fq;
2812 struct dpni_queue queue;
2813 int i, j, err;
2814
2815 /* We only use Tx FQIDs for FQID-based enqueue, so check
2816 * if DPNI version supports it before updating FQIDs
2817 */
2818 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_ENQUEUE_FQID_VER_MAJOR,
2819 DPNI_ENQUEUE_FQID_VER_MINOR) < 0)
2820 return;
2821
2822 for (i = 0; i < priv->num_fqs; i++) {
2823 fq = &priv->fq[i];
2824 if (fq->type != DPAA2_TX_CONF_FQ)
2825 continue;
2826 for (j = 0; j < dpaa2_eth_tc_count(priv); j++) {
2827 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
2828 DPNI_QUEUE_TX, j, fq->flowid,
2829 &queue, &qid);
2830 if (err)
2831 goto out_err;
2832
2833 fq->tx_fqid[j] = qid.fqid;
2834 if (fq->tx_fqid[j] == 0)
2835 goto out_err;
2836 }
2837 }
2838
Ioana Ciornei6ff80442020-04-22 15:05:11 +03002839 priv->enqueue = dpaa2_eth_enqueue_fq_multiple;
Ioana Radulescua690af4f2019-10-16 10:36:23 +03002840
2841 return;
2842
2843out_err:
2844 netdev_info(priv->net_dev,
2845 "Error reading Tx FQID, fallback to QDID-based enqueue\n");
2846 priv->enqueue = dpaa2_eth_enqueue_qd;
2847}
2848
Ioana Radulescu6aa90fe2020-05-31 00:08:09 +03002849/* Configure ingress classification based on VLAN PCP */
2850static int set_vlan_qos(struct dpaa2_eth_priv *priv)
2851{
2852 struct device *dev = priv->net_dev->dev.parent;
2853 struct dpkg_profile_cfg kg_cfg = {0};
2854 struct dpni_qos_tbl_cfg qos_cfg = {0};
2855 struct dpni_rule_cfg key_params;
2856 void *dma_mem, *key, *mask;
2857 u8 key_size = 2; /* VLAN TCI field */
2858 int i, pcp, err;
2859
2860 /* VLAN-based classification only makes sense if we have multiple
2861 * traffic classes.
2862 * Also, we need to extract just the 3-bit PCP field from the VLAN
2863 * header and we can only do that by using a mask
2864 */
2865 if (dpaa2_eth_tc_count(priv) == 1 || !dpaa2_eth_fs_mask_enabled(priv)) {
2866 dev_dbg(dev, "VLAN-based QoS classification not supported\n");
2867 return -EOPNOTSUPP;
2868 }
2869
2870 dma_mem = kzalloc(DPAA2_CLASSIFIER_DMA_SIZE, GFP_KERNEL);
2871 if (!dma_mem)
2872 return -ENOMEM;
2873
2874 kg_cfg.num_extracts = 1;
2875 kg_cfg.extracts[0].type = DPKG_EXTRACT_FROM_HDR;
2876 kg_cfg.extracts[0].extract.from_hdr.prot = NET_PROT_VLAN;
2877 kg_cfg.extracts[0].extract.from_hdr.type = DPKG_FULL_FIELD;
2878 kg_cfg.extracts[0].extract.from_hdr.field = NH_FLD_VLAN_TCI;
2879
2880 err = dpni_prepare_key_cfg(&kg_cfg, dma_mem);
2881 if (err) {
2882 dev_err(dev, "dpni_prepare_key_cfg failed\n");
2883 goto out_free_tbl;
2884 }
2885
2886 /* set QoS table */
2887 qos_cfg.default_tc = 0;
2888 qos_cfg.discard_on_miss = 0;
2889 qos_cfg.key_cfg_iova = dma_map_single(dev, dma_mem,
2890 DPAA2_CLASSIFIER_DMA_SIZE,
2891 DMA_TO_DEVICE);
2892 if (dma_mapping_error(dev, qos_cfg.key_cfg_iova)) {
2893 dev_err(dev, "QoS table DMA mapping failed\n");
2894 err = -ENOMEM;
2895 goto out_free_tbl;
2896 }
2897
2898 err = dpni_set_qos_table(priv->mc_io, 0, priv->mc_token, &qos_cfg);
2899 if (err) {
2900 dev_err(dev, "dpni_set_qos_table failed\n");
2901 goto out_unmap_tbl;
2902 }
2903
2904 /* Add QoS table entries */
2905 key = kzalloc(key_size * 2, GFP_KERNEL);
2906 if (!key) {
2907 err = -ENOMEM;
2908 goto out_unmap_tbl;
2909 }
2910 mask = key + key_size;
2911 *(__be16 *)mask = cpu_to_be16(VLAN_PRIO_MASK);
2912
2913 key_params.key_iova = dma_map_single(dev, key, key_size * 2,
2914 DMA_TO_DEVICE);
2915 if (dma_mapping_error(dev, key_params.key_iova)) {
2916 dev_err(dev, "Qos table entry DMA mapping failed\n");
2917 err = -ENOMEM;
2918 goto out_free_key;
2919 }
2920
2921 key_params.mask_iova = key_params.key_iova + key_size;
2922 key_params.key_size = key_size;
2923
2924 /* We add rules for PCP-based distribution starting with highest
2925 * priority (VLAN PCP = 7). If this DPNI doesn't have enough traffic
2926 * classes to accommodate all priority levels, the lowest ones end up
2927 * on TC 0 which was configured as default
2928 */
2929 for (i = dpaa2_eth_tc_count(priv) - 1, pcp = 7; i >= 0; i--, pcp--) {
2930 *(__be16 *)key = cpu_to_be16(pcp << VLAN_PRIO_SHIFT);
2931 dma_sync_single_for_device(dev, key_params.key_iova,
2932 key_size * 2, DMA_TO_DEVICE);
2933
2934 err = dpni_add_qos_entry(priv->mc_io, 0, priv->mc_token,
2935 &key_params, i, i);
2936 if (err) {
2937 dev_err(dev, "dpni_add_qos_entry failed\n");
2938 dpni_clear_qos_table(priv->mc_io, 0, priv->mc_token);
2939 goto out_unmap_key;
2940 }
2941 }
2942
2943 priv->vlan_cls_enabled = true;
2944
2945 /* Table and key memory is not persistent, clean everything up after
2946 * configuration is finished
2947 */
2948out_unmap_key:
2949 dma_unmap_single(dev, key_params.key_iova, key_size * 2, DMA_TO_DEVICE);
2950out_free_key:
2951 kfree(key);
2952out_unmap_tbl:
2953 dma_unmap_single(dev, qos_cfg.key_cfg_iova, DPAA2_CLASSIFIER_DMA_SIZE,
2954 DMA_TO_DEVICE);
2955out_free_tbl:
2956 kfree(dma_mem);
2957
2958 return err;
2959}
2960
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002961/* Configure the DPNI object this interface is associated with */
2962static int setup_dpni(struct fsl_mc_device *ls_dev)
2963{
2964 struct device *dev = &ls_dev->dev;
2965 struct dpaa2_eth_priv *priv;
2966 struct net_device *net_dev;
2967 int err;
2968
2969 net_dev = dev_get_drvdata(dev);
2970 priv = netdev_priv(net_dev);
2971
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002972 /* get a handle for the DPNI object */
Ioana Radulescu50eacbc2017-06-06 10:00:36 -05002973 err = dpni_open(priv->mc_io, 0, ls_dev->obj_desc.id, &priv->mc_token);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002974 if (err) {
2975 dev_err(dev, "dpni_open() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002976 return err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002977 }
2978
Ioana Radulescu311cffa2018-03-23 08:44:09 -05002979 /* Check if we can work with this DPNI object */
2980 err = dpni_get_api_version(priv->mc_io, 0, &priv->dpni_ver_major,
2981 &priv->dpni_ver_minor);
2982 if (err) {
2983 dev_err(dev, "dpni_get_api_version() failed\n");
2984 goto close;
2985 }
2986 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_VER_MAJOR, DPNI_VER_MINOR) < 0) {
2987 dev_err(dev, "DPNI version %u.%u not supported, need >= %u.%u\n",
2988 priv->dpni_ver_major, priv->dpni_ver_minor,
2989 DPNI_VER_MAJOR, DPNI_VER_MINOR);
2990 err = -ENOTSUPP;
2991 goto close;
2992 }
2993
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002994 ls_dev->mc_io = priv->mc_io;
2995 ls_dev->mc_handle = priv->mc_token;
2996
2997 err = dpni_reset(priv->mc_io, 0, priv->mc_token);
2998 if (err) {
2999 dev_err(dev, "dpni_reset() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00003000 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003001 }
3002
3003 err = dpni_get_attributes(priv->mc_io, 0, priv->mc_token,
3004 &priv->dpni_attrs);
3005 if (err) {
3006 dev_err(dev, "dpni_get_attributes() failed (err=%d)\n", err);
Ioana Radulescuf6dda802017-10-29 08:20:39 +00003007 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003008 }
3009
Ioana Radulescu308f64e2017-10-29 08:20:40 +00003010 err = set_buffer_layout(priv);
3011 if (err)
Ioana Radulescuf6dda802017-10-29 08:20:39 +00003012 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003013
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00003014 set_enqueue_mode(priv);
3015
Ioana Radulescu8eb3cef2019-08-28 17:08:15 +03003016 /* Enable pause frame support */
3017 if (dpaa2_eth_has_pause_support(priv)) {
3018 err = set_pause(priv);
3019 if (err)
3020 goto close;
3021 }
3022
Ioana Radulescu6aa90fe2020-05-31 00:08:09 +03003023 err = set_vlan_qos(priv);
3024 if (err && err != -EOPNOTSUPP)
3025 goto close;
3026
Xu Wang9334d5b2020-06-11 02:45:20 +00003027 priv->cls_rules = devm_kcalloc(dev, dpaa2_eth_fs_count(priv),
3028 sizeof(struct dpaa2_eth_cls_rule),
3029 GFP_KERNEL);
Wei Yongjun97fff7c2020-04-27 10:43:22 +00003030 if (!priv->cls_rules) {
3031 err = -ENOMEM;
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003032 goto close;
Wei Yongjun97fff7c2020-04-27 10:43:22 +00003033 }
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003034
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003035 return 0;
3036
Ioana Radulescuf6dda802017-10-29 08:20:39 +00003037close:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003038 dpni_close(priv->mc_io, 0, priv->mc_token);
Ioana Radulescuf6dda802017-10-29 08:20:39 +00003039
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003040 return err;
3041}
3042
3043static void free_dpni(struct dpaa2_eth_priv *priv)
3044{
3045 int err;
3046
3047 err = dpni_reset(priv->mc_io, 0, priv->mc_token);
3048 if (err)
3049 netdev_warn(priv->net_dev, "dpni_reset() failed (err %d)\n",
3050 err);
3051
3052 dpni_close(priv->mc_io, 0, priv->mc_token);
3053}
3054
3055static int setup_rx_flow(struct dpaa2_eth_priv *priv,
3056 struct dpaa2_eth_fq *fq)
3057{
3058 struct device *dev = priv->net_dev->dev.parent;
3059 struct dpni_queue queue;
3060 struct dpni_queue_id qid;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003061 int err;
3062
3063 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003064 DPNI_QUEUE_RX, fq->tc, fq->flowid, &queue, &qid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003065 if (err) {
3066 dev_err(dev, "dpni_get_queue(RX) failed\n");
3067 return err;
3068 }
3069
3070 fq->fqid = qid.fqid;
3071
3072 queue.destination.id = fq->channel->dpcon_id;
3073 queue.destination.type = DPNI_DEST_DPCON;
3074 queue.destination.priority = 1;
Ioana Radulescu75c583a2018-02-26 10:28:06 -06003075 queue.user_context = (u64)(uintptr_t)fq;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003076 err = dpni_set_queue(priv->mc_io, 0, priv->mc_token,
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003077 DPNI_QUEUE_RX, fq->tc, fq->flowid,
Ioana Radulescu16fa1cf2019-05-23 17:38:22 +03003078 DPNI_QUEUE_OPT_USER_CTX | DPNI_QUEUE_OPT_DEST,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003079 &queue);
3080 if (err) {
3081 dev_err(dev, "dpni_set_queue(RX) failed\n");
3082 return err;
3083 }
3084
Ioana Radulescud678be12019-03-01 17:47:24 +00003085 /* xdp_rxq setup */
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003086 /* only once for each channel */
3087 if (fq->tc > 0)
3088 return 0;
3089
Ioana Radulescud678be12019-03-01 17:47:24 +00003090 err = xdp_rxq_info_reg(&fq->channel->xdp_rxq, priv->net_dev,
3091 fq->flowid);
3092 if (err) {
3093 dev_err(dev, "xdp_rxq_info_reg failed\n");
3094 return err;
3095 }
3096
3097 err = xdp_rxq_info_reg_mem_model(&fq->channel->xdp_rxq,
3098 MEM_TYPE_PAGE_ORDER0, NULL);
3099 if (err) {
3100 dev_err(dev, "xdp_rxq_info_reg_mem_model failed\n");
3101 return err;
3102 }
3103
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003104 return 0;
3105}
3106
3107static int setup_tx_flow(struct dpaa2_eth_priv *priv,
3108 struct dpaa2_eth_fq *fq)
3109{
3110 struct device *dev = priv->net_dev->dev.parent;
3111 struct dpni_queue queue;
3112 struct dpni_queue_id qid;
Ioana Radulescu15c87f62019-06-11 14:50:02 +03003113 int i, err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003114
Ioana Radulescu15c87f62019-06-11 14:50:02 +03003115 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
3116 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
3117 DPNI_QUEUE_TX, i, fq->flowid,
3118 &queue, &qid);
3119 if (err) {
3120 dev_err(dev, "dpni_get_queue(TX) failed\n");
3121 return err;
3122 }
3123 fq->tx_fqid[i] = qid.fqid;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003124 }
3125
Ioana Radulescu15c87f62019-06-11 14:50:02 +03003126 /* All Tx queues belonging to the same flowid have the same qdbin */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003127 fq->tx_qdbin = qid.qdbin;
3128
3129 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
3130 DPNI_QUEUE_TX_CONFIRM, 0, fq->flowid,
3131 &queue, &qid);
3132 if (err) {
3133 dev_err(dev, "dpni_get_queue(TX_CONF) failed\n");
3134 return err;
3135 }
3136
3137 fq->fqid = qid.fqid;
3138
3139 queue.destination.id = fq->channel->dpcon_id;
3140 queue.destination.type = DPNI_DEST_DPCON;
3141 queue.destination.priority = 0;
Ioana Radulescu75c583a2018-02-26 10:28:06 -06003142 queue.user_context = (u64)(uintptr_t)fq;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003143 err = dpni_set_queue(priv->mc_io, 0, priv->mc_token,
3144 DPNI_QUEUE_TX_CONFIRM, 0, fq->flowid,
3145 DPNI_QUEUE_OPT_USER_CTX | DPNI_QUEUE_OPT_DEST,
3146 &queue);
3147 if (err) {
3148 dev_err(dev, "dpni_set_queue(TX_CONF) failed\n");
3149 return err;
3150 }
3151
3152 return 0;
3153}
3154
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003155/* Supported header fields for Rx hash distribution key */
Ioana Radulescuf76c4832018-10-01 13:44:56 +03003156static const struct dpaa2_eth_dist_fields dist_fields[] = {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003157 {
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003158 /* L2 header */
3159 .rxnfc_field = RXH_L2DA,
3160 .cls_prot = NET_PROT_ETH,
3161 .cls_field = NH_FLD_ETH_DA,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003162 .id = DPAA2_ETH_DIST_ETHDST,
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003163 .size = 6,
3164 }, {
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003165 .cls_prot = NET_PROT_ETH,
3166 .cls_field = NH_FLD_ETH_SA,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003167 .id = DPAA2_ETH_DIST_ETHSRC,
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003168 .size = 6,
3169 }, {
3170 /* This is the last ethertype field parsed:
3171 * depending on frame format, it can be the MAC ethertype
3172 * or the VLAN etype.
3173 */
3174 .cls_prot = NET_PROT_ETH,
3175 .cls_field = NH_FLD_ETH_TYPE,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003176 .id = DPAA2_ETH_DIST_ETHTYPE,
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003177 .size = 2,
3178 }, {
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003179 /* VLAN header */
3180 .rxnfc_field = RXH_VLAN,
3181 .cls_prot = NET_PROT_VLAN,
3182 .cls_field = NH_FLD_VLAN_TCI,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003183 .id = DPAA2_ETH_DIST_VLAN,
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003184 .size = 2,
3185 }, {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003186 /* IP header */
3187 .rxnfc_field = RXH_IP_SRC,
3188 .cls_prot = NET_PROT_IP,
3189 .cls_field = NH_FLD_IP_SRC,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003190 .id = DPAA2_ETH_DIST_IPSRC,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003191 .size = 4,
3192 }, {
3193 .rxnfc_field = RXH_IP_DST,
3194 .cls_prot = NET_PROT_IP,
3195 .cls_field = NH_FLD_IP_DST,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003196 .id = DPAA2_ETH_DIST_IPDST,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003197 .size = 4,
3198 }, {
3199 .rxnfc_field = RXH_L3_PROTO,
3200 .cls_prot = NET_PROT_IP,
3201 .cls_field = NH_FLD_IP_PROTO,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003202 .id = DPAA2_ETH_DIST_IPPROTO,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003203 .size = 1,
3204 }, {
3205 /* Using UDP ports, this is functionally equivalent to raw
3206 * byte pairs from L4 header.
3207 */
3208 .rxnfc_field = RXH_L4_B_0_1,
3209 .cls_prot = NET_PROT_UDP,
3210 .cls_field = NH_FLD_UDP_PORT_SRC,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003211 .id = DPAA2_ETH_DIST_L4SRC,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003212 .size = 2,
3213 }, {
3214 .rxnfc_field = RXH_L4_B_2_3,
3215 .cls_prot = NET_PROT_UDP,
3216 .cls_field = NH_FLD_UDP_PORT_DST,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003217 .id = DPAA2_ETH_DIST_L4DST,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003218 .size = 2,
3219 },
3220};
3221
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003222/* Configure the Rx hash key using the legacy API */
3223static int config_legacy_hash_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
3224{
3225 struct device *dev = priv->net_dev->dev.parent;
3226 struct dpni_rx_tc_dist_cfg dist_cfg;
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003227 int i, err = 0;
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003228
3229 memset(&dist_cfg, 0, sizeof(dist_cfg));
3230
3231 dist_cfg.key_cfg_iova = key;
3232 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
3233 dist_cfg.dist_mode = DPNI_DIST_MODE_HASH;
3234
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003235 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
3236 err = dpni_set_rx_tc_dist(priv->mc_io, 0, priv->mc_token,
3237 i, &dist_cfg);
3238 if (err) {
3239 dev_err(dev, "dpni_set_rx_tc_dist failed\n");
3240 break;
3241 }
3242 }
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003243
3244 return err;
3245}
3246
3247/* Configure the Rx hash key using the new API */
3248static int config_hash_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
3249{
3250 struct device *dev = priv->net_dev->dev.parent;
3251 struct dpni_rx_dist_cfg dist_cfg;
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003252 int i, err = 0;
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003253
3254 memset(&dist_cfg, 0, sizeof(dist_cfg));
3255
3256 dist_cfg.key_cfg_iova = key;
3257 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
3258 dist_cfg.enable = 1;
3259
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003260 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
3261 dist_cfg.tc = i;
3262 err = dpni_set_rx_hash_dist(priv->mc_io, 0, priv->mc_token,
3263 &dist_cfg);
3264 if (err) {
3265 dev_err(dev, "dpni_set_rx_hash_dist failed\n");
3266 break;
3267 }
3268 }
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003269
3270 return err;
3271}
3272
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003273/* Configure the Rx flow classification key */
3274static int config_cls_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
3275{
3276 struct device *dev = priv->net_dev->dev.parent;
3277 struct dpni_rx_dist_cfg dist_cfg;
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003278 int i, err = 0;
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003279
3280 memset(&dist_cfg, 0, sizeof(dist_cfg));
3281
3282 dist_cfg.key_cfg_iova = key;
3283 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
3284 dist_cfg.enable = 1;
3285
Ioana Radulescu685e39e2020-05-31 00:08:08 +03003286 for (i = 0; i < dpaa2_eth_tc_count(priv); i++) {
3287 dist_cfg.tc = i;
3288 err = dpni_set_rx_fs_dist(priv->mc_io, 0, priv->mc_token,
3289 &dist_cfg);
3290 if (err) {
3291 dev_err(dev, "dpni_set_rx_fs_dist failed\n");
3292 break;
3293 }
3294 }
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003295
3296 return err;
3297}
3298
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003299/* Size of the Rx flow classification key */
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003300int dpaa2_eth_cls_key_size(u64 fields)
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003301{
3302 int i, size = 0;
3303
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003304 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
3305 if (!(fields & dist_fields[i].id))
3306 continue;
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003307 size += dist_fields[i].size;
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003308 }
Ioana Radulescuafb90db2018-10-01 13:44:58 +03003309
3310 return size;
3311}
3312
3313/* Offset of header field in Rx classification key */
3314int dpaa2_eth_cls_fld_off(int prot, int field)
3315{
3316 int i, off = 0;
3317
3318 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
3319 if (dist_fields[i].cls_prot == prot &&
3320 dist_fields[i].cls_field == field)
3321 return off;
3322 off += dist_fields[i].size;
3323 }
3324
3325 WARN_ONCE(1, "Unsupported header field used for Rx flow cls\n");
3326 return 0;
3327}
3328
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003329/* Prune unused fields from the classification rule.
3330 * Used when masking is not supported
3331 */
3332void dpaa2_eth_cls_trim_rule(void *key_mem, u64 fields)
3333{
3334 int off = 0, new_off = 0;
3335 int i, size;
3336
3337 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
3338 size = dist_fields[i].size;
3339 if (dist_fields[i].id & fields) {
3340 memcpy(key_mem + new_off, key_mem + off, size);
3341 new_off += size;
3342 }
3343 off += size;
3344 }
3345}
3346
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003347/* Set Rx distribution (hash or flow classification) key
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003348 * flags is a combination of RXH_ bits
3349 */
Ioana Ciornei3233c152018-10-12 16:27:29 +00003350static int dpaa2_eth_set_dist_key(struct net_device *net_dev,
3351 enum dpaa2_eth_rx_dist type, u64 flags)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003352{
3353 struct device *dev = net_dev->dev.parent;
3354 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
3355 struct dpkg_profile_cfg cls_cfg;
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003356 u32 rx_hash_fields = 0;
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003357 dma_addr_t key_iova;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003358 u8 *dma_mem;
3359 int i;
3360 int err = 0;
3361
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003362 memset(&cls_cfg, 0, sizeof(cls_cfg));
3363
Ioana Radulescuf76c4832018-10-01 13:44:56 +03003364 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003365 struct dpkg_extract *key =
3366 &cls_cfg.extracts[cls_cfg.num_extracts];
3367
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003368 /* For both Rx hashing and classification keys
3369 * we set only the selected fields.
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003370 */
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003371 if (!(flags & dist_fields[i].id))
3372 continue;
3373 if (type == DPAA2_ETH_RX_DIST_HASH)
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003374 rx_hash_fields |= dist_fields[i].rxnfc_field;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003375
3376 if (cls_cfg.num_extracts >= DPKG_MAX_NUM_OF_EXTRACTS) {
3377 dev_err(dev, "error adding key extraction rule, too many rules?\n");
3378 return -E2BIG;
3379 }
3380
3381 key->type = DPKG_EXTRACT_FROM_HDR;
Ioana Radulescuf76c4832018-10-01 13:44:56 +03003382 key->extract.from_hdr.prot = dist_fields[i].cls_prot;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003383 key->extract.from_hdr.type = DPKG_FULL_FIELD;
Ioana Radulescuf76c4832018-10-01 13:44:56 +03003384 key->extract.from_hdr.field = dist_fields[i].cls_field;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003385 cls_cfg.num_extracts++;
3386 }
3387
Ioana Radulescue40ef9e2017-06-06 10:00:30 -05003388 dma_mem = kzalloc(DPAA2_CLASSIFIER_DMA_SIZE, GFP_KERNEL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003389 if (!dma_mem)
3390 return -ENOMEM;
3391
3392 err = dpni_prepare_key_cfg(&cls_cfg, dma_mem);
3393 if (err) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003394 dev_err(dev, "dpni_prepare_key_cfg error %d\n", err);
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003395 goto free_key;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003396 }
3397
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003398 /* Prepare for setting the rx dist */
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003399 key_iova = dma_map_single(dev, dma_mem, DPAA2_CLASSIFIER_DMA_SIZE,
3400 DMA_TO_DEVICE);
3401 if (dma_mapping_error(dev, key_iova)) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003402 dev_err(dev, "DMA mapping failed\n");
3403 err = -ENOMEM;
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003404 goto free_key;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003405 }
3406
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003407 if (type == DPAA2_ETH_RX_DIST_HASH) {
3408 if (dpaa2_eth_has_legacy_dist(priv))
3409 err = config_legacy_hash_key(priv, key_iova);
3410 else
3411 err = config_hash_key(priv, key_iova);
3412 } else {
3413 err = config_cls_key(priv, key_iova);
3414 }
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003415
3416 dma_unmap_single(dev, key_iova, DPAA2_CLASSIFIER_DMA_SIZE,
3417 DMA_TO_DEVICE);
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003418 if (!err && type == DPAA2_ETH_RX_DIST_HASH)
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003419 priv->rx_hash_fields = rx_hash_fields;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003420
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03003421free_key:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003422 kfree(dma_mem);
3423 return err;
3424}
3425
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003426int dpaa2_eth_set_hash(struct net_device *net_dev, u64 flags)
3427{
3428 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003429 u64 key = 0;
3430 int i;
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003431
3432 if (!dpaa2_eth_hash_enabled(priv))
3433 return -EOPNOTSUPP;
3434
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00003435 for (i = 0; i < ARRAY_SIZE(dist_fields); i++)
3436 if (dist_fields[i].rxnfc_field & flags)
3437 key |= dist_fields[i].id;
3438
3439 return dpaa2_eth_set_dist_key(net_dev, DPAA2_ETH_RX_DIST_HASH, key);
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003440}
3441
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003442int dpaa2_eth_set_cls(struct net_device *net_dev, u64 flags)
3443{
3444 return dpaa2_eth_set_dist_key(net_dev, DPAA2_ETH_RX_DIST_CLS, flags);
3445}
3446
3447static int dpaa2_eth_set_default_cls(struct dpaa2_eth_priv *priv)
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003448{
3449 struct device *dev = priv->net_dev->dev.parent;
Ioana Ciocoi Radulescudf8e2492019-04-16 17:13:28 +00003450 int err;
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003451
3452 /* Check if we actually support Rx flow classification */
3453 if (dpaa2_eth_has_legacy_dist(priv)) {
3454 dev_dbg(dev, "Rx cls not supported by current MC version\n");
3455 return -EOPNOTSUPP;
3456 }
3457
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003458 if (!dpaa2_eth_fs_enabled(priv)) {
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003459 dev_dbg(dev, "Rx cls disabled in DPNI options\n");
3460 return -EOPNOTSUPP;
3461 }
3462
3463 if (!dpaa2_eth_hash_enabled(priv)) {
3464 dev_dbg(dev, "Rx cls disabled for single queue DPNIs\n");
3465 return -EOPNOTSUPP;
3466 }
3467
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003468 /* If there is no support for masking in the classification table,
3469 * we don't set a default key, as it will depend on the rules
3470 * added by the user at runtime.
3471 */
3472 if (!dpaa2_eth_fs_mask_enabled(priv))
3473 goto out;
3474
3475 err = dpaa2_eth_set_cls(priv->net_dev, DPAA2_ETH_DIST_ALL);
Ioana Ciocoi Radulescudf8e2492019-04-16 17:13:28 +00003476 if (err)
3477 return err;
3478
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003479out:
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003480 priv->rx_cls_enabled = 1;
3481
Ioana Ciocoi Radulescudf8e2492019-04-16 17:13:28 +00003482 return 0;
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003483}
3484
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003485/* Bind the DPNI to its needed objects and resources: buffer pool, DPIOs,
3486 * frame queues and channels
3487 */
3488static int bind_dpni(struct dpaa2_eth_priv *priv)
3489{
3490 struct net_device *net_dev = priv->net_dev;
3491 struct device *dev = net_dev->dev.parent;
3492 struct dpni_pools_cfg pools_params;
3493 struct dpni_error_cfg err_cfg;
3494 int err = 0;
3495 int i;
3496
3497 pools_params.num_dpbp = 1;
3498 pools_params.pools[0].dpbp_id = priv->dpbp_dev->obj_desc.id;
3499 pools_params.pools[0].backup_pool = 0;
Ioana Ciorneiefa6a7d2020-05-15 15:30:22 +03003500 pools_params.pools[0].buffer_size = priv->rx_buf_size;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003501 err = dpni_set_pools(priv->mc_io, 0, priv->mc_token, &pools_params);
3502 if (err) {
3503 dev_err(dev, "dpni_set_pools() failed\n");
3504 return err;
3505 }
3506
Ioana Radulescu227686b2018-07-27 09:12:59 -05003507 /* have the interface implicitly distribute traffic based on
3508 * the default hash key
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003509 */
Ioana Radulescu227686b2018-07-27 09:12:59 -05003510 err = dpaa2_eth_set_hash(net_dev, DPAA2_RXH_DEFAULT);
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00003511 if (err && err != -EOPNOTSUPP)
Ioana Radulescu0f4c2952017-10-11 08:29:50 -05003512 dev_err(dev, "Failed to configure hashing\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003513
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003514 /* Configure the flow classification key; it includes all
3515 * supported header fields and cannot be modified at runtime
3516 */
Ioana Ciocoi Radulescu2d680232019-04-16 17:13:30 +00003517 err = dpaa2_eth_set_default_cls(priv);
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03003518 if (err && err != -EOPNOTSUPP)
3519 dev_err(dev, "Failed to configure Rx classification key\n");
3520
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003521 /* Configure handling of error frames */
Ioana Radulescu39163c02017-06-06 10:00:39 -05003522 err_cfg.errors = DPAA2_FAS_RX_ERR_MASK;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003523 err_cfg.set_frame_annotation = 1;
3524 err_cfg.error_action = DPNI_ERROR_ACTION_DISCARD;
3525 err = dpni_set_errors_behavior(priv->mc_io, 0, priv->mc_token,
3526 &err_cfg);
3527 if (err) {
3528 dev_err(dev, "dpni_set_errors_behavior failed\n");
3529 return err;
3530 }
3531
3532 /* Configure Rx and Tx conf queues to generate CDANs */
3533 for (i = 0; i < priv->num_fqs; i++) {
3534 switch (priv->fq[i].type) {
3535 case DPAA2_RX_FQ:
3536 err = setup_rx_flow(priv, &priv->fq[i]);
3537 break;
3538 case DPAA2_TX_CONF_FQ:
3539 err = setup_tx_flow(priv, &priv->fq[i]);
3540 break;
3541 default:
3542 dev_err(dev, "Invalid FQ type %d\n", priv->fq[i].type);
3543 return -EINVAL;
3544 }
3545 if (err)
3546 return err;
3547 }
3548
3549 err = dpni_get_qdid(priv->mc_io, 0, priv->mc_token,
3550 DPNI_QUEUE_TX, &priv->tx_qdid);
3551 if (err) {
3552 dev_err(dev, "dpni_get_qdid() failed\n");
3553 return err;
3554 }
3555
3556 return 0;
3557}
3558
3559/* Allocate rings for storing incoming frame descriptors */
3560static int alloc_rings(struct dpaa2_eth_priv *priv)
3561{
3562 struct net_device *net_dev = priv->net_dev;
3563 struct device *dev = net_dev->dev.parent;
3564 int i;
3565
3566 for (i = 0; i < priv->num_channels; i++) {
3567 priv->channel[i]->store =
3568 dpaa2_io_store_create(DPAA2_ETH_STORE_SIZE, dev);
3569 if (!priv->channel[i]->store) {
3570 netdev_err(net_dev, "dpaa2_io_store_create() failed\n");
3571 goto err_ring;
3572 }
3573 }
3574
3575 return 0;
3576
3577err_ring:
3578 for (i = 0; i < priv->num_channels; i++) {
3579 if (!priv->channel[i]->store)
3580 break;
3581 dpaa2_io_store_destroy(priv->channel[i]->store);
3582 }
3583
3584 return -ENOMEM;
3585}
3586
3587static void free_rings(struct dpaa2_eth_priv *priv)
3588{
3589 int i;
3590
3591 for (i = 0; i < priv->num_channels; i++)
3592 dpaa2_io_store_destroy(priv->channel[i]->store);
3593}
3594
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003595static int set_mac_addr(struct dpaa2_eth_priv *priv)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003596{
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003597 struct net_device *net_dev = priv->net_dev;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003598 struct device *dev = net_dev->dev.parent;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003599 u8 mac_addr[ETH_ALEN], dpni_mac_addr[ETH_ALEN];
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003600 int err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003601
3602 /* Get firmware address, if any */
3603 err = dpni_get_port_mac_addr(priv->mc_io, 0, priv->mc_token, mac_addr);
3604 if (err) {
3605 dev_err(dev, "dpni_get_port_mac_addr() failed\n");
3606 return err;
3607 }
3608
3609 /* Get DPNI attributes address, if any */
3610 err = dpni_get_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
3611 dpni_mac_addr);
3612 if (err) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003613 dev_err(dev, "dpni_get_primary_mac_addr() failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003614 return err;
3615 }
3616
3617 /* First check if firmware has any address configured by bootloader */
3618 if (!is_zero_ether_addr(mac_addr)) {
3619 /* If the DPMAC addr != DPNI addr, update it */
3620 if (!ether_addr_equal(mac_addr, dpni_mac_addr)) {
3621 err = dpni_set_primary_mac_addr(priv->mc_io, 0,
3622 priv->mc_token,
3623 mac_addr);
3624 if (err) {
3625 dev_err(dev, "dpni_set_primary_mac_addr() failed\n");
3626 return err;
3627 }
3628 }
3629 memcpy(net_dev->dev_addr, mac_addr, net_dev->addr_len);
3630 } else if (is_zero_ether_addr(dpni_mac_addr)) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003631 /* No MAC address configured, fill in net_dev->dev_addr
3632 * with a random one
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003633 */
3634 eth_hw_addr_random(net_dev);
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003635 dev_dbg_once(dev, "device(s) have all-zero hwaddr, replaced with random\n");
3636
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003637 err = dpni_set_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
3638 net_dev->dev_addr);
3639 if (err) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003640 dev_err(dev, "dpni_set_primary_mac_addr() failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003641 return err;
3642 }
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003643
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003644 /* Override NET_ADDR_RANDOM set by eth_hw_addr_random(); for all
3645 * practical purposes, this will be our "permanent" mac address,
3646 * at least until the next reboot. This move will also permit
3647 * register_netdevice() to properly fill up net_dev->perm_addr.
3648 */
3649 net_dev->addr_assign_type = NET_ADDR_PERM;
3650 } else {
3651 /* NET_ADDR_PERM is default, all we have to do is
3652 * fill in the device addr.
3653 */
3654 memcpy(net_dev->dev_addr, dpni_mac_addr, net_dev->addr_len);
3655 }
3656
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003657 return 0;
3658}
3659
3660static int netdev_init(struct net_device *net_dev)
3661{
3662 struct device *dev = net_dev->dev.parent;
3663 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003664 u32 options = priv->dpni_attrs.options;
3665 u64 supported = 0, not_supported = 0;
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003666 u8 bcast_addr[ETH_ALEN];
Ioana Radulescubb5b42c2017-06-06 10:00:41 -05003667 u8 num_queues;
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003668 int err;
3669
3670 net_dev->netdev_ops = &dpaa2_eth_ops;
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003671 net_dev->ethtool_ops = &dpaa2_ethtool_ops;
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003672
3673 err = set_mac_addr(priv);
3674 if (err)
3675 return err;
3676
3677 /* Explicitly add the broadcast address to the MAC filtering table */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003678 eth_broadcast_addr(bcast_addr);
3679 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token, bcast_addr);
3680 if (err) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003681 dev_err(dev, "dpni_add_mac_addr() failed\n");
3682 return err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003683 }
3684
Ioana Radulescu3ccc8d42018-07-09 10:01:10 -05003685 /* Set MTU upper limit; lower limit is 68B (default value) */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003686 net_dev->max_mtu = DPAA2_ETH_MAX_MTU;
Ioana Radulescu00fee002018-07-09 10:01:11 -05003687 err = dpni_set_max_frame_length(priv->mc_io, 0, priv->mc_token,
Ioana Radulescu81f34e92018-07-12 12:12:29 -05003688 DPAA2_ETH_MFL);
Ioana Radulescu00fee002018-07-09 10:01:11 -05003689 if (err) {
3690 dev_err(dev, "dpni_set_max_frame_length() failed\n");
3691 return err;
3692 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003693
Ioana Radulescubb5b42c2017-06-06 10:00:41 -05003694 /* Set actual number of queues in the net device */
3695 num_queues = dpaa2_eth_queue_count(priv);
3696 err = netif_set_real_num_tx_queues(net_dev, num_queues);
3697 if (err) {
3698 dev_err(dev, "netif_set_real_num_tx_queues() failed\n");
3699 return err;
3700 }
3701 err = netif_set_real_num_rx_queues(net_dev, num_queues);
3702 if (err) {
3703 dev_err(dev, "netif_set_real_num_rx_queues() failed\n");
3704 return err;
3705 }
3706
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003707 /* Capabilities listing */
3708 supported |= IFF_LIVE_ADDR_CHANGE;
3709
3710 if (options & DPNI_OPT_NO_MAC_FILTER)
3711 not_supported |= IFF_UNICAST_FLT;
3712 else
3713 supported |= IFF_UNICAST_FLT;
3714
3715 net_dev->priv_flags |= supported;
3716 net_dev->priv_flags &= ~not_supported;
3717
3718 /* Features */
3719 net_dev->features = NETIF_F_RXCSUM |
3720 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
3721 NETIF_F_SG | NETIF_F_HIGHDMA |
3722 NETIF_F_LLTX;
3723 net_dev->hw_features = net_dev->features;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003724
3725 return 0;
3726}
3727
3728static int poll_link_state(void *arg)
3729{
3730 struct dpaa2_eth_priv *priv = (struct dpaa2_eth_priv *)arg;
3731 int err;
3732
3733 while (!kthread_should_stop()) {
3734 err = link_state_update(priv);
3735 if (unlikely(err))
3736 return err;
3737
3738 msleep(DPAA2_ETH_LINK_STATE_REFRESH);
3739 }
3740
3741 return 0;
3742}
3743
Ioana Ciornei71947922019-10-31 01:18:31 +02003744static int dpaa2_eth_connect_mac(struct dpaa2_eth_priv *priv)
3745{
3746 struct fsl_mc_device *dpni_dev, *dpmac_dev;
3747 struct dpaa2_mac *mac;
3748 int err;
3749
3750 dpni_dev = to_fsl_mc_device(priv->net_dev->dev.parent);
3751 dpmac_dev = fsl_mc_get_endpoint(dpni_dev);
3752 if (IS_ERR(dpmac_dev) || dpmac_dev->dev.type != &fsl_mc_bus_dpmac_type)
3753 return 0;
3754
3755 if (dpaa2_mac_is_type_fixed(dpmac_dev, priv->mc_io))
3756 return 0;
3757
3758 mac = kzalloc(sizeof(struct dpaa2_mac), GFP_KERNEL);
3759 if (!mac)
3760 return -ENOMEM;
3761
3762 mac->mc_dev = dpmac_dev;
3763 mac->mc_io = priv->mc_io;
3764 mac->net_dev = priv->net_dev;
3765
3766 err = dpaa2_mac_connect(mac);
3767 if (err) {
3768 netdev_err(priv->net_dev, "Error connecting to the MAC endpoint\n");
3769 kfree(mac);
3770 return err;
3771 }
3772 priv->mac = mac;
3773
3774 return 0;
3775}
3776
3777static void dpaa2_eth_disconnect_mac(struct dpaa2_eth_priv *priv)
3778{
3779 if (!priv->mac)
3780 return;
3781
3782 dpaa2_mac_disconnect(priv->mac);
3783 kfree(priv->mac);
3784 priv->mac = NULL;
3785}
3786
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003787static irqreturn_t dpni_irq0_handler_thread(int irq_num, void *arg)
3788{
Ioana Radulescu112197d2017-10-11 08:29:49 -05003789 u32 status = ~0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003790 struct device *dev = (struct device *)arg;
3791 struct fsl_mc_device *dpni_dev = to_fsl_mc_device(dev);
3792 struct net_device *net_dev = dev_get_drvdata(dev);
Ioana Ciornei71947922019-10-31 01:18:31 +02003793 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003794 int err;
3795
3796 err = dpni_get_irq_status(dpni_dev->mc_io, 0, dpni_dev->mc_handle,
3797 DPNI_IRQ_INDEX, &status);
3798 if (unlikely(err)) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003799 netdev_err(net_dev, "Can't get irq status (err %d)\n", err);
Ioana Radulescu112197d2017-10-11 08:29:49 -05003800 return IRQ_HANDLED;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003801 }
3802
Ioana Radulescu112197d2017-10-11 08:29:49 -05003803 if (status & DPNI_IRQ_EVENT_LINK_CHANGED)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003804 link_state_update(netdev_priv(net_dev));
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003805
Ioana Ciorneif5c3fff2019-10-31 01:18:30 +02003806 if (status & DPNI_IRQ_EVENT_ENDPOINT_CHANGED) {
Florin Chiculita8398b372019-10-16 10:36:22 +03003807 set_mac_addr(netdev_priv(net_dev));
Ioana Ciorneif5c3fff2019-10-31 01:18:30 +02003808 update_tx_fqids(priv);
Ioana Ciornei71947922019-10-31 01:18:31 +02003809
3810 rtnl_lock();
3811 if (priv->mac)
3812 dpaa2_eth_disconnect_mac(priv);
3813 else
3814 dpaa2_eth_connect_mac(priv);
3815 rtnl_unlock();
Ioana Ciorneif5c3fff2019-10-31 01:18:30 +02003816 }
Florin Chiculita8398b372019-10-16 10:36:22 +03003817
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003818 return IRQ_HANDLED;
3819}
3820
3821static int setup_irqs(struct fsl_mc_device *ls_dev)
3822{
3823 int err = 0;
3824 struct fsl_mc_device_irq *irq;
3825
3826 err = fsl_mc_allocate_irqs(ls_dev);
3827 if (err) {
3828 dev_err(&ls_dev->dev, "MC irqs allocation failed\n");
3829 return err;
3830 }
3831
3832 irq = ls_dev->irqs[0];
3833 err = devm_request_threaded_irq(&ls_dev->dev, irq->msi_desc->irq,
Ioana Radulescufdc9b532018-03-23 08:44:05 -05003834 NULL, dpni_irq0_handler_thread,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003835 IRQF_NO_SUSPEND | IRQF_ONESHOT,
3836 dev_name(&ls_dev->dev), &ls_dev->dev);
3837 if (err < 0) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003838 dev_err(&ls_dev->dev, "devm_request_threaded_irq(): %d\n", err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003839 goto free_mc_irq;
3840 }
3841
3842 err = dpni_set_irq_mask(ls_dev->mc_io, 0, ls_dev->mc_handle,
Florin Chiculita8398b372019-10-16 10:36:22 +03003843 DPNI_IRQ_INDEX, DPNI_IRQ_EVENT_LINK_CHANGED |
3844 DPNI_IRQ_EVENT_ENDPOINT_CHANGED);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003845 if (err < 0) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003846 dev_err(&ls_dev->dev, "dpni_set_irq_mask(): %d\n", err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003847 goto free_irq;
3848 }
3849
3850 err = dpni_set_irq_enable(ls_dev->mc_io, 0, ls_dev->mc_handle,
3851 DPNI_IRQ_INDEX, 1);
3852 if (err < 0) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003853 dev_err(&ls_dev->dev, "dpni_set_irq_enable(): %d\n", err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003854 goto free_irq;
3855 }
3856
3857 return 0;
3858
3859free_irq:
3860 devm_free_irq(&ls_dev->dev, irq->msi_desc->irq, &ls_dev->dev);
3861free_mc_irq:
3862 fsl_mc_free_irqs(ls_dev);
3863
3864 return err;
3865}
3866
3867static void add_ch_napi(struct dpaa2_eth_priv *priv)
3868{
3869 int i;
3870 struct dpaa2_eth_channel *ch;
3871
3872 for (i = 0; i < priv->num_channels; i++) {
3873 ch = priv->channel[i];
3874 /* NAPI weight *MUST* be a multiple of DPAA2_ETH_STORE_SIZE */
3875 netif_napi_add(priv->net_dev, &ch->napi, dpaa2_eth_poll,
3876 NAPI_POLL_WEIGHT);
3877 }
3878}
3879
3880static void del_ch_napi(struct dpaa2_eth_priv *priv)
3881{
3882 int i;
3883 struct dpaa2_eth_channel *ch;
3884
3885 for (i = 0; i < priv->num_channels; i++) {
3886 ch = priv->channel[i];
3887 netif_napi_del(&ch->napi);
3888 }
3889}
3890
3891static int dpaa2_eth_probe(struct fsl_mc_device *dpni_dev)
3892{
3893 struct device *dev;
3894 struct net_device *net_dev = NULL;
3895 struct dpaa2_eth_priv *priv = NULL;
3896 int err = 0;
3897
3898 dev = &dpni_dev->dev;
3899
3900 /* Net device */
Ioana Radulescuab1e6de2019-06-11 14:50:03 +03003901 net_dev = alloc_etherdev_mq(sizeof(*priv), DPAA2_ETH_MAX_NETDEV_QUEUES);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003902 if (!net_dev) {
3903 dev_err(dev, "alloc_etherdev_mq() failed\n");
3904 return -ENOMEM;
3905 }
3906
3907 SET_NETDEV_DEV(net_dev, dev);
3908 dev_set_drvdata(dev, net_dev);
3909
3910 priv = netdev_priv(net_dev);
3911 priv->net_dev = net_dev;
3912
Ioana Radulescu08eb2392017-05-24 07:13:27 -05003913 priv->iommu_domain = iommu_get_domain_for_dev(dev);
3914
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003915 /* Obtain a MC portal */
3916 err = fsl_mc_portal_allocate(dpni_dev, FSL_MC_IO_ATOMIC_CONTEXT_PORTAL,
3917 &priv->mc_io);
3918 if (err) {
Ioana Radulescu8c369612018-03-20 07:04:46 -05003919 if (err == -ENXIO)
3920 err = -EPROBE_DEFER;
3921 else
3922 dev_err(dev, "MC portal allocation failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003923 goto err_portal_alloc;
3924 }
3925
3926 /* MC objects initialization and configuration */
3927 err = setup_dpni(dpni_dev);
3928 if (err)
3929 goto err_dpni_setup;
3930
3931 err = setup_dpio(priv);
3932 if (err)
3933 goto err_dpio_setup;
3934
3935 setup_fqs(priv);
3936
3937 err = setup_dpbp(priv);
3938 if (err)
3939 goto err_dpbp_setup;
3940
3941 err = bind_dpni(priv);
3942 if (err)
3943 goto err_bind;
3944
3945 /* Add a NAPI context for each channel */
3946 add_ch_napi(priv);
3947
3948 /* Percpu statistics */
3949 priv->percpu_stats = alloc_percpu(*priv->percpu_stats);
3950 if (!priv->percpu_stats) {
3951 dev_err(dev, "alloc_percpu(percpu_stats) failed\n");
3952 err = -ENOMEM;
3953 goto err_alloc_percpu_stats;
3954 }
Ioana Radulescu85047ab2017-04-28 04:50:31 -05003955 priv->percpu_extras = alloc_percpu(*priv->percpu_extras);
3956 if (!priv->percpu_extras) {
3957 dev_err(dev, "alloc_percpu(percpu_extras) failed\n");
3958 err = -ENOMEM;
3959 goto err_alloc_percpu_extras;
3960 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003961
Ioana Ciorneid70446e2020-06-29 21:47:11 +03003962 priv->sgt_cache = alloc_percpu(*priv->sgt_cache);
3963 if (!priv->sgt_cache) {
3964 dev_err(dev, "alloc_percpu(sgt_cache) failed\n");
3965 err = -ENOMEM;
3966 goto err_alloc_sgt_cache;
3967 }
3968
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003969 err = netdev_init(net_dev);
3970 if (err)
3971 goto err_netdev_init;
3972
3973 /* Configure checksum offload based on current interface flags */
3974 err = set_rx_csum(priv, !!(net_dev->features & NETIF_F_RXCSUM));
3975 if (err)
3976 goto err_csum;
3977
3978 err = set_tx_csum(priv, !!(net_dev->features &
3979 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)));
3980 if (err)
3981 goto err_csum;
3982
3983 err = alloc_rings(priv);
3984 if (err)
3985 goto err_alloc_rings;
3986
Ioana Ciorneif395b692020-05-31 00:08:13 +03003987#ifdef CONFIG_FSL_DPAA2_ETH_DCB
3988 if (dpaa2_eth_has_pause_support(priv) && priv->vlan_cls_enabled) {
3989 priv->dcbx_mode = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_IEEE;
3990 net_dev->dcbnl_ops = &dpaa2_eth_dcbnl_ops;
3991 } else {
3992 dev_dbg(dev, "PFC not supported\n");
3993 }
3994#endif
3995
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003996 err = setup_irqs(dpni_dev);
3997 if (err) {
3998 netdev_warn(net_dev, "Failed to set link interrupt, fall back to polling\n");
3999 priv->poll_thread = kthread_run(poll_link_state, priv,
4000 "%s_poll_link", net_dev->name);
4001 if (IS_ERR(priv->poll_thread)) {
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05004002 dev_err(dev, "Error starting polling thread\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004003 goto err_poll_thread;
4004 }
4005 priv->do_link_poll = true;
4006 }
4007
Ioana Ciornei71947922019-10-31 01:18:31 +02004008 err = dpaa2_eth_connect_mac(priv);
4009 if (err)
4010 goto err_connect_mac;
4011
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05004012 err = register_netdev(net_dev);
4013 if (err < 0) {
4014 dev_err(dev, "register_netdev() failed\n");
4015 goto err_netdev_reg;
4016 }
4017
Ioana Radulescu091a19e2019-01-18 16:16:00 +00004018#ifdef CONFIG_DEBUG_FS
4019 dpaa2_dbg_add(priv);
4020#endif
4021
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004022 dev_info(dev, "Probed interface %s\n", net_dev->name);
4023 return 0;
4024
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05004025err_netdev_reg:
Ioana Ciornei71947922019-10-31 01:18:31 +02004026 dpaa2_eth_disconnect_mac(priv);
4027err_connect_mac:
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05004028 if (priv->do_link_poll)
4029 kthread_stop(priv->poll_thread);
4030 else
4031 fsl_mc_free_irqs(dpni_dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004032err_poll_thread:
4033 free_rings(priv);
4034err_alloc_rings:
4035err_csum:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004036err_netdev_init:
Ioana Ciorneid70446e2020-06-29 21:47:11 +03004037 free_percpu(priv->sgt_cache);
4038err_alloc_sgt_cache:
Ioana Radulescu85047ab2017-04-28 04:50:31 -05004039 free_percpu(priv->percpu_extras);
4040err_alloc_percpu_extras:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004041 free_percpu(priv->percpu_stats);
4042err_alloc_percpu_stats:
4043 del_ch_napi(priv);
4044err_bind:
4045 free_dpbp(priv);
4046err_dpbp_setup:
4047 free_dpio(priv);
4048err_dpio_setup:
4049 free_dpni(priv);
4050err_dpni_setup:
4051 fsl_mc_portal_free(priv->mc_io);
4052err_portal_alloc:
4053 dev_set_drvdata(dev, NULL);
4054 free_netdev(net_dev);
4055
4056 return err;
4057}
4058
4059static int dpaa2_eth_remove(struct fsl_mc_device *ls_dev)
4060{
4061 struct device *dev;
4062 struct net_device *net_dev;
4063 struct dpaa2_eth_priv *priv;
4064
4065 dev = &ls_dev->dev;
4066 net_dev = dev_get_drvdata(dev);
4067 priv = netdev_priv(net_dev);
4068
Ioana Radulescu091a19e2019-01-18 16:16:00 +00004069#ifdef CONFIG_DEBUG_FS
4070 dpaa2_dbg_remove(priv);
4071#endif
Ioana Ciornei71947922019-10-31 01:18:31 +02004072 rtnl_lock();
4073 dpaa2_eth_disconnect_mac(priv);
4074 rtnl_unlock();
4075
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004076 unregister_netdev(net_dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004077
4078 if (priv->do_link_poll)
4079 kthread_stop(priv->poll_thread);
4080 else
4081 fsl_mc_free_irqs(ls_dev);
4082
4083 free_rings(priv);
Ioana Ciorneid70446e2020-06-29 21:47:11 +03004084 free_percpu(priv->sgt_cache);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004085 free_percpu(priv->percpu_stats);
Ioana Radulescu85047ab2017-04-28 04:50:31 -05004086 free_percpu(priv->percpu_extras);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004087
4088 del_ch_napi(priv);
4089 free_dpbp(priv);
4090 free_dpio(priv);
4091 free_dpni(priv);
4092
4093 fsl_mc_portal_free(priv->mc_io);
4094
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004095 free_netdev(net_dev);
4096
Ioana Radulescu4bc07aa2018-03-23 10:23:36 -05004097 dev_dbg(net_dev->dev.parent, "Removed interface %s\n", net_dev->name);
Ioana Radulescu7472dd92018-03-23 08:44:06 -05004098
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05004099 return 0;
4100}
4101
4102static const struct fsl_mc_device_id dpaa2_eth_match_id_table[] = {
4103 {
4104 .vendor = FSL_MC_VENDOR_FREESCALE,
4105 .obj_type = "dpni",
4106 },
4107 { .vendor = 0x0 }
4108};
4109MODULE_DEVICE_TABLE(fslmc, dpaa2_eth_match_id_table);
4110
4111static struct fsl_mc_driver dpaa2_eth_driver = {
4112 .driver = {
4113 .name = KBUILD_MODNAME,
4114 .owner = THIS_MODULE,
4115 },
4116 .probe = dpaa2_eth_probe,
4117 .remove = dpaa2_eth_remove,
4118 .match_id_table = dpaa2_eth_match_id_table
4119};
4120
Ioana Radulescu091a19e2019-01-18 16:16:00 +00004121static int __init dpaa2_eth_driver_init(void)
4122{
4123 int err;
4124
4125 dpaa2_eth_dbg_init();
4126 err = fsl_mc_driver_register(&dpaa2_eth_driver);
4127 if (err) {
4128 dpaa2_eth_dbg_exit();
4129 return err;
4130 }
4131
4132 return 0;
4133}
4134
4135static void __exit dpaa2_eth_driver_exit(void)
4136{
4137 dpaa2_eth_dbg_exit();
4138 fsl_mc_driver_unregister(&dpaa2_eth_driver);
4139}
4140
4141module_init(dpaa2_eth_driver_init);
4142module_exit(dpaa2_eth_driver_exit);