blob: 828bca2f32b6a02b6b786a6b9a962e12838877c0 [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.
3 * Copyright 2016-2017 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 Ciocoi Radulescu27c87482019-02-04 17:00:35 +000089 dma_unmap_page(dev, addr, DPAA2_ETH_RX_BUF_SIZE,
90 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 Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000147 dma_unmap_page(dev, sg_addr, DPAA2_ETH_RX_BUF_SIZE,
148 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,
188 sg_length, DPAA2_ETH_RX_BUF_SIZE);
189 }
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 Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000214 dma_unmap_page(dev, buf_array[i], DPAA2_ETH_RX_BUF_SIZE,
215 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{
224 int err;
225
226 ch->xdp.drop_bufs[ch->xdp.drop_cnt++] = addr;
227 if (ch->xdp.drop_cnt < DPAA2_ETH_BUFS_PER_CMD)
228 return;
229
230 while ((err = dpaa2_io_service_release(ch->dpio, priv->bpid,
231 ch->xdp.drop_bufs,
232 ch->xdp.drop_cnt)) == -EBUSY)
233 cpu_relax();
234
235 if (err) {
236 free_bufs(priv, ch->xdp.drop_bufs, ch->xdp.drop_cnt);
237 ch->buf_count -= ch->xdp.drop_cnt;
238 }
239
240 ch->xdp.drop_cnt = 0;
241}
242
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000243static int xdp_enqueue(struct dpaa2_eth_priv *priv, struct dpaa2_fd *fd,
244 void *buf_start, u16 queue_id)
245{
246 struct dpaa2_eth_fq *fq;
247 struct dpaa2_faead *faead;
248 u32 ctrl, frc;
249 int i, err;
250
251 /* Mark the egress frame hardware annotation area as valid */
252 frc = dpaa2_fd_get_frc(fd);
253 dpaa2_fd_set_frc(fd, frc | DPAA2_FD_FRC_FAEADV);
254 dpaa2_fd_set_ctrl(fd, DPAA2_FD_CTRL_ASAL);
255
256 /* Instruct hardware to release the FD buffer directly into
257 * the buffer pool once transmission is completed, instead of
258 * sending a Tx confirmation frame to us
259 */
260 ctrl = DPAA2_FAEAD_A4V | DPAA2_FAEAD_A2V | DPAA2_FAEAD_EBDDV;
261 faead = dpaa2_get_faead(buf_start, false);
262 faead->ctrl = cpu_to_le32(ctrl);
263 faead->conf_fqid = 0;
264
265 fq = &priv->fq[queue_id];
266 for (i = 0; i < DPAA2_ETH_ENQUEUE_RETRIES; i++) {
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +0000267 err = priv->enqueue(priv, fq, fd, 0);
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000268 if (err != -EBUSY)
269 break;
270 }
271
272 return err;
273}
274
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000275static u32 run_xdp(struct dpaa2_eth_priv *priv,
276 struct dpaa2_eth_channel *ch,
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000277 struct dpaa2_eth_fq *rx_fq,
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000278 struct dpaa2_fd *fd, void *vaddr)
279{
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000280 dma_addr_t addr = dpaa2_fd_get_addr(fd);
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000281 struct rtnl_link_stats64 *percpu_stats;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000282 struct bpf_prog *xdp_prog;
283 struct xdp_buff xdp;
284 u32 xdp_act = XDP_PASS;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000285 int err;
286
287 percpu_stats = this_cpu_ptr(priv->percpu_stats);
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000288
289 rcu_read_lock();
290
291 xdp_prog = READ_ONCE(ch->xdp.prog);
292 if (!xdp_prog)
293 goto out;
294
295 xdp.data = vaddr + dpaa2_fd_get_offset(fd);
296 xdp.data_end = xdp.data + dpaa2_fd_get_len(fd);
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +0000297 xdp.data_hard_start = xdp.data - XDP_PACKET_HEADROOM;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000298 xdp_set_data_meta_invalid(&xdp);
Ioana Radulescud678be12019-03-01 17:47:24 +0000299 xdp.rxq = &ch->xdp_rxq;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000300
301 xdp_act = bpf_prog_run_xdp(xdp_prog, &xdp);
302
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +0000303 /* xdp.data pointer may have changed */
304 dpaa2_fd_set_offset(fd, xdp.data - vaddr);
305 dpaa2_fd_set_len(fd, xdp.data_end - xdp.data);
306
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000307 switch (xdp_act) {
308 case XDP_PASS:
309 break;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000310 case XDP_TX:
311 err = xdp_enqueue(priv, fd, vaddr, rx_fq->flowid);
312 if (err) {
313 xdp_release_buf(priv, ch, addr);
314 percpu_stats->tx_errors++;
Ioana Ciocoi Radulescua4a7b762018-11-26 16:27:34 +0000315 ch->stats.xdp_tx_err++;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000316 } else {
317 percpu_stats->tx_packets++;
318 percpu_stats->tx_bytes += dpaa2_fd_get_len(fd);
Ioana Ciocoi Radulescua4a7b762018-11-26 16:27:34 +0000319 ch->stats.xdp_tx++;
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000320 }
321 break;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000322 default:
323 bpf_warn_invalid_xdp_action(xdp_act);
Ioana Ciocoi Radulescuc1cb11b2018-11-29 08:43:40 +0000324 /* fall through */
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000325 case XDP_ABORTED:
326 trace_xdp_exception(priv->net_dev, xdp_prog, xdp_act);
Ioana Ciocoi Radulescuc1cb11b2018-11-29 08:43:40 +0000327 /* fall through */
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000328 case XDP_DROP:
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000329 xdp_release_buf(priv, ch, addr);
Ioana Ciocoi Radulescua4a7b762018-11-26 16:27:34 +0000330 ch->stats.xdp_drop++;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000331 break;
Ioana Radulescud678be12019-03-01 17:47:24 +0000332 case XDP_REDIRECT:
333 dma_unmap_page(priv->net_dev->dev.parent, addr,
334 DPAA2_ETH_RX_BUF_SIZE, DMA_BIDIRECTIONAL);
335 ch->buf_count--;
336 xdp.data_hard_start = vaddr;
337 err = xdp_do_redirect(priv->net_dev, &xdp, xdp_prog);
338 if (unlikely(err))
339 ch->stats.xdp_drop++;
340 else
341 ch->stats.xdp_redirect++;
342 break;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000343 }
344
Ioana Radulescud678be12019-03-01 17:47:24 +0000345 ch->xdp.res |= xdp_act;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000346out:
347 rcu_read_unlock();
348 return xdp_act;
349}
350
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500351/* Main Rx frame processing routine */
352static void dpaa2_eth_rx(struct dpaa2_eth_priv *priv,
353 struct dpaa2_eth_channel *ch,
354 const struct dpaa2_fd *fd,
Ioana Ciocoi Radulescudbcdf722018-11-14 11:48:35 +0000355 struct dpaa2_eth_fq *fq)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500356{
357 dma_addr_t addr = dpaa2_fd_get_addr(fd);
358 u8 fd_format = dpaa2_fd_get_format(fd);
359 void *vaddr;
360 struct sk_buff *skb;
361 struct rtnl_link_stats64 *percpu_stats;
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500362 struct dpaa2_eth_drv_stats *percpu_extras;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500363 struct device *dev = priv->net_dev->dev.parent;
364 struct dpaa2_fas *fas;
Ioana Radulescud695e762017-06-06 10:00:35 -0500365 void *buf_data;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500366 u32 status = 0;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000367 u32 xdp_act;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500368
Ioana Radulescu56361872017-04-28 04:50:32 -0500369 /* Tracing point */
370 trace_dpaa2_rx_fd(priv->net_dev, fd);
371
Ioana Radulescu08eb2392017-05-24 07:13:27 -0500372 vaddr = dpaa2_iova_to_virt(priv->iommu_domain, addr);
Ioana Ciocoi Radulescu5d39dc22018-11-26 16:27:31 +0000373 dma_sync_single_for_cpu(dev, addr, DPAA2_ETH_RX_BUF_SIZE,
Ioana Ciocoi Radulescu18c2e772018-11-26 16:27:32 +0000374 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500375
Ioana Radulescu54ce8912017-12-08 06:47:53 -0600376 fas = dpaa2_get_fas(vaddr, false);
Ioana Radulescud695e762017-06-06 10:00:35 -0500377 prefetch(fas);
378 buf_data = vaddr + dpaa2_fd_get_offset(fd);
379 prefetch(buf_data);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500380
381 percpu_stats = this_cpu_ptr(priv->percpu_stats);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500382 percpu_extras = this_cpu_ptr(priv->percpu_extras);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500383
384 if (fd_format == dpaa2_fd_single) {
Ioana Ciocoi Radulescu99e43522018-11-26 16:27:33 +0000385 xdp_act = run_xdp(priv, ch, fq, (struct dpaa2_fd *)fd, vaddr);
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000386 if (xdp_act != XDP_PASS) {
387 percpu_stats->rx_packets++;
388 percpu_stats->rx_bytes += dpaa2_fd_get_len(fd);
389 return;
390 }
391
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000392 dma_unmap_page(dev, addr, DPAA2_ETH_RX_BUF_SIZE,
393 DMA_BIDIRECTIONAL);
Ioana Ciorneifdb6ca92018-10-12 16:27:35 +0000394 skb = build_linear_skb(ch, fd, vaddr);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500395 } else if (fd_format == dpaa2_fd_sg) {
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +0000396 WARN_ON(priv->xdp_prog);
397
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000398 dma_unmap_page(dev, addr, DPAA2_ETH_RX_BUF_SIZE,
399 DMA_BIDIRECTIONAL);
Ioana Radulescud695e762017-06-06 10:00:35 -0500400 skb = build_frag_skb(priv, ch, buf_data);
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000401 free_pages((unsigned long)vaddr, 0);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500402 percpu_extras->rx_sg_frames++;
403 percpu_extras->rx_sg_bytes += dpaa2_fd_get_len(fd);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500404 } else {
405 /* We don't support any other format */
406 goto err_frame_format;
407 }
408
409 if (unlikely(!skb))
410 goto err_build_skb;
411
412 prefetch(skb->data);
413
Ioana Radulescu859f9982018-04-26 18:23:47 +0800414 /* Get the timestamp value */
415 if (priv->rx_tstamp) {
416 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
417 __le64 *ts = dpaa2_get_ts(vaddr, false);
418 u64 ns;
419
420 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
421
422 ns = DPAA2_PTP_CLK_PERIOD_NS * le64_to_cpup(ts);
423 shhwtstamps->hwtstamp = ns_to_ktime(ns);
424 }
425
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500426 /* Check if we need to validate the L4 csum */
427 if (likely(dpaa2_fd_get_frc(fd) & DPAA2_FD_FRC_FASV)) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500428 status = le32_to_cpu(fas->status);
429 validate_rx_csum(priv, status, skb);
430 }
431
432 skb->protocol = eth_type_trans(skb, priv->net_dev);
Ioana Ciocoi Radulescudbcdf722018-11-14 11:48:35 +0000433 skb_record_rx_queue(skb, fq->flowid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500434
435 percpu_stats->rx_packets++;
436 percpu_stats->rx_bytes += dpaa2_fd_get_len(fd);
437
Ioana Ciornei0a25d922019-03-25 13:42:39 +0000438 list_add_tail(&skb->list, ch->rx_list);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500439
440 return;
441
442err_build_skb:
443 free_rx_fd(priv, fd, vaddr);
444err_frame_format:
445 percpu_stats->rx_dropped++;
446}
447
448/* Consume all frames pull-dequeued into the store. This is the simplest way to
449 * make sure we don't accidentally issue another volatile dequeue which would
450 * overwrite (leak) frames already in the store.
451 *
452 * Observance of NAPI budget is not our concern, leaving that to the caller.
453 */
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000454static int consume_frames(struct dpaa2_eth_channel *ch,
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000455 struct dpaa2_eth_fq **src)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500456{
457 struct dpaa2_eth_priv *priv = ch->priv;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000458 struct dpaa2_eth_fq *fq = NULL;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500459 struct dpaa2_dq *dq;
460 const struct dpaa2_fd *fd;
461 int cleaned = 0;
462 int is_last;
463
464 do {
465 dq = dpaa2_io_store_next(ch->store, &is_last);
466 if (unlikely(!dq)) {
467 /* If we're here, we *must* have placed a
468 * volatile dequeue comnmand, so keep reading through
469 * the store until we get some sort of valid response
470 * token (either a valid frame or an "empty dequeue")
471 */
472 continue;
473 }
474
475 fd = dpaa2_dq_fd(dq);
Ioana Radulescu75c583a2018-02-26 10:28:06 -0600476 fq = (struct dpaa2_eth_fq *)(uintptr_t)dpaa2_dq_fqd_ctx(dq);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500477
Ioana Ciocoi Radulescudbcdf722018-11-14 11:48:35 +0000478 fq->consume(priv, ch, fd, fq);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500479 cleaned++;
480 } while (!is_last);
481
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000482 if (!cleaned)
483 return 0;
484
485 fq->stats.frames += cleaned;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000486
487 /* A dequeue operation only pulls frames from a single queue
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000488 * into the store. Return the frame queue as an out param.
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000489 */
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000490 if (src)
491 *src = fq;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +0000492
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500493 return cleaned;
494}
495
Ioana Radulescu859f9982018-04-26 18:23:47 +0800496/* Configure the egress frame annotation for timestamp update */
497static void enable_tx_tstamp(struct dpaa2_fd *fd, void *buf_start)
498{
499 struct dpaa2_faead *faead;
500 u32 ctrl, frc;
501
502 /* Mark the egress frame annotation area as valid */
503 frc = dpaa2_fd_get_frc(fd);
504 dpaa2_fd_set_frc(fd, frc | DPAA2_FD_FRC_FAEADV);
505
506 /* Set hardware annotation size */
507 ctrl = dpaa2_fd_get_ctrl(fd);
508 dpaa2_fd_set_ctrl(fd, ctrl | DPAA2_FD_CTRL_ASAL);
509
510 /* enable UPD (update prepanded data) bit in FAEAD field of
511 * hardware frame annotation area
512 */
513 ctrl = DPAA2_FAEAD_A2V | DPAA2_FAEAD_UPDV | DPAA2_FAEAD_UPD;
514 faead = dpaa2_get_faead(buf_start, true);
515 faead->ctrl = cpu_to_le32(ctrl);
516}
517
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500518/* Create a frame descriptor based on a fragmented skb */
519static int build_sg_fd(struct dpaa2_eth_priv *priv,
520 struct sk_buff *skb,
521 struct dpaa2_fd *fd)
522{
523 struct device *dev = priv->net_dev->dev.parent;
524 void *sgt_buf = NULL;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500525 dma_addr_t addr;
526 int nr_frags = skb_shinfo(skb)->nr_frags;
527 struct dpaa2_sg_entry *sgt;
528 int i, err;
529 int sgt_buf_size;
530 struct scatterlist *scl, *crt_scl;
531 int num_sg;
532 int num_dma_bufs;
533 struct dpaa2_eth_swa *swa;
534
535 /* Create and map scatterlist.
536 * We don't advertise NETIF_F_FRAGLIST, so skb_to_sgvec() will not have
537 * to go beyond nr_frags+1.
538 * Note: We don't support chained scatterlists
539 */
540 if (unlikely(PAGE_SIZE / sizeof(struct scatterlist) < nr_frags + 1))
541 return -EINVAL;
542
543 scl = kcalloc(nr_frags + 1, sizeof(struct scatterlist), GFP_ATOMIC);
544 if (unlikely(!scl))
545 return -ENOMEM;
546
547 sg_init_table(scl, nr_frags + 1);
548 num_sg = skb_to_sgvec(skb, scl, 0, skb->len);
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500549 num_dma_bufs = dma_map_sg(dev, scl, num_sg, DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500550 if (unlikely(!num_dma_bufs)) {
551 err = -ENOMEM;
552 goto dma_map_sg_failed;
553 }
554
555 /* Prepare the HW SGT structure */
556 sgt_buf_size = priv->tx_data_offset +
Ioana Radulescufa722c02018-03-23 08:44:12 -0500557 sizeof(struct dpaa2_sg_entry) * num_dma_bufs;
Ioana Radulescu6a9bbe52018-03-14 15:04:51 -0500558 sgt_buf = netdev_alloc_frag(sgt_buf_size + DPAA2_ETH_TX_BUF_ALIGN);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500559 if (unlikely(!sgt_buf)) {
560 err = -ENOMEM;
561 goto sgt_buf_alloc_failed;
562 }
563 sgt_buf = PTR_ALIGN(sgt_buf, DPAA2_ETH_TX_BUF_ALIGN);
Ioana Radulescu6a9bbe52018-03-14 15:04:51 -0500564 memset(sgt_buf, 0, sgt_buf_size);
565
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500566 sgt = (struct dpaa2_sg_entry *)(sgt_buf + priv->tx_data_offset);
567
568 /* Fill in the HW SGT structure.
569 *
570 * sgt_buf is zeroed out, so the following fields are implicit
571 * in all sgt entries:
572 * - offset is 0
573 * - format is 'dpaa2_sg_single'
574 */
575 for_each_sg(scl, crt_scl, num_dma_bufs, i) {
576 dpaa2_sg_set_addr(&sgt[i], sg_dma_address(crt_scl));
577 dpaa2_sg_set_len(&sgt[i], sg_dma_len(crt_scl));
578 }
579 dpaa2_sg_set_final(&sgt[i - 1], true);
580
581 /* Store the skb backpointer in the SGT buffer.
582 * Fit the scatterlist and the number of buffers alongside the
583 * skb backpointer in the software annotation area. We'll need
584 * all of them on Tx Conf.
585 */
586 swa = (struct dpaa2_eth_swa *)sgt_buf;
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000587 swa->type = DPAA2_ETH_SWA_SG;
588 swa->sg.skb = skb;
589 swa->sg.scl = scl;
590 swa->sg.num_sg = num_sg;
591 swa->sg.sgt_size = sgt_buf_size;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500592
593 /* Separately map the SGT buffer */
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500594 addr = dma_map_single(dev, sgt_buf, sgt_buf_size, DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500595 if (unlikely(dma_mapping_error(dev, addr))) {
596 err = -ENOMEM;
597 goto dma_map_single_failed;
598 }
599 dpaa2_fd_set_offset(fd, priv->tx_data_offset);
600 dpaa2_fd_set_format(fd, dpaa2_fd_sg);
601 dpaa2_fd_set_addr(fd, addr);
602 dpaa2_fd_set_len(fd, skb->len);
Ioana Radulescub948c8c2018-10-12 16:27:40 +0000603 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500604
Ioana Radulescu859f9982018-04-26 18:23:47 +0800605 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
606 enable_tx_tstamp(fd, sgt_buf);
607
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500608 return 0;
609
610dma_map_single_failed:
Ioana Radulescu6a9bbe52018-03-14 15:04:51 -0500611 skb_free_frag(sgt_buf);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500612sgt_buf_alloc_failed:
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500613 dma_unmap_sg(dev, scl, num_sg, DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500614dma_map_sg_failed:
615 kfree(scl);
616 return err;
617}
618
619/* Create a frame descriptor based on a linear skb */
620static int build_single_fd(struct dpaa2_eth_priv *priv,
621 struct sk_buff *skb,
622 struct dpaa2_fd *fd)
623{
624 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescuc1636852017-12-08 06:47:58 -0600625 u8 *buffer_start, *aligned_start;
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000626 struct dpaa2_eth_swa *swa;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500627 dma_addr_t addr;
628
Ioana Radulescuc1636852017-12-08 06:47:58 -0600629 buffer_start = skb->data - dpaa2_eth_needed_headroom(priv, skb);
630
631 /* If there's enough room to align the FD address, do it.
632 * It will help hardware optimize accesses.
633 */
634 aligned_start = PTR_ALIGN(buffer_start - DPAA2_ETH_TX_BUF_ALIGN,
635 DPAA2_ETH_TX_BUF_ALIGN);
636 if (aligned_start >= skb->head)
637 buffer_start = aligned_start;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500638
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500639 /* Store a backpointer to the skb at the beginning of the buffer
640 * (in the private data area) such that we can release it
641 * on Tx confirm
642 */
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000643 swa = (struct dpaa2_eth_swa *)buffer_start;
644 swa->type = DPAA2_ETH_SWA_SINGLE;
645 swa->single.skb = skb;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500646
647 addr = dma_map_single(dev, buffer_start,
648 skb_tail_pointer(skb) - buffer_start,
Ioana Radulescu1e5fa9e2017-05-24 07:13:28 -0500649 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500650 if (unlikely(dma_mapping_error(dev, addr)))
651 return -ENOMEM;
652
653 dpaa2_fd_set_addr(fd, addr);
654 dpaa2_fd_set_offset(fd, (u16)(skb->data - buffer_start));
655 dpaa2_fd_set_len(fd, skb->len);
656 dpaa2_fd_set_format(fd, dpaa2_fd_single);
Ioana Radulescub948c8c2018-10-12 16:27:40 +0000657 dpaa2_fd_set_ctrl(fd, FD_CTRL_PTA);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500658
Ioana Radulescu859f9982018-04-26 18:23:47 +0800659 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
660 enable_tx_tstamp(fd, buffer_start);
661
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500662 return 0;
663}
664
665/* FD freeing routine on the Tx path
666 *
667 * DMA-unmap and free FD and possibly SGT buffer allocated on Tx. The skb
668 * back-pointed to is also freed.
669 * This can be called either from dpaa2_eth_tx_conf() or on the error path of
670 * dpaa2_eth_tx().
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500671 */
672static void free_tx_fd(const struct dpaa2_eth_priv *priv,
Ioana Radulescud678be12019-03-01 17:47:24 +0000673 struct dpaa2_eth_fq *fq,
Ioana Ciocoi Radulescu0723a3a2019-02-04 17:00:35 +0000674 const struct dpaa2_fd *fd, bool in_napi)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500675{
676 struct device *dev = priv->net_dev->dev.parent;
677 dma_addr_t fd_addr;
Ioana Radulescud678be12019-03-01 17:47:24 +0000678 struct sk_buff *skb = NULL;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500679 unsigned char *buffer_start;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500680 struct dpaa2_eth_swa *swa;
681 u8 fd_format = dpaa2_fd_get_format(fd);
Ioana Radulescud678be12019-03-01 17:47:24 +0000682 u32 fd_len = dpaa2_fd_get_len(fd);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500683
684 fd_addr = dpaa2_fd_get_addr(fd);
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000685 buffer_start = dpaa2_iova_to_virt(priv->iommu_domain, fd_addr);
686 swa = (struct dpaa2_eth_swa *)buffer_start;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500687
688 if (fd_format == dpaa2_fd_single) {
Ioana Radulescud678be12019-03-01 17:47:24 +0000689 if (swa->type == DPAA2_ETH_SWA_SINGLE) {
690 skb = swa->single.skb;
691 /* Accessing the skb buffer is safe before dma unmap,
692 * because we didn't map the actual skb shell.
693 */
694 dma_unmap_single(dev, fd_addr,
695 skb_tail_pointer(skb) - buffer_start,
696 DMA_BIDIRECTIONAL);
697 } else {
698 WARN_ONCE(swa->type != DPAA2_ETH_SWA_XDP, "Wrong SWA type");
699 dma_unmap_single(dev, fd_addr, swa->xdp.dma_size,
700 DMA_BIDIRECTIONAL);
701 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500702 } else if (fd_format == dpaa2_fd_sg) {
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000703 skb = swa->sg.skb;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500704
705 /* Unmap the scatterlist */
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000706 dma_unmap_sg(dev, swa->sg.scl, swa->sg.num_sg,
707 DMA_BIDIRECTIONAL);
708 kfree(swa->sg.scl);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500709
710 /* Unmap the SGT buffer */
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000711 dma_unmap_single(dev, fd_addr, swa->sg.sgt_size,
Ioana Radulescub2718e62018-03-23 08:44:11 -0500712 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500713 } else {
Ioana Radulescu2b7c86e2017-12-08 06:47:56 -0600714 netdev_dbg(priv->net_dev, "Invalid FD format\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500715 return;
716 }
717
Ioana Radulescud678be12019-03-01 17:47:24 +0000718 if (swa->type != DPAA2_ETH_SWA_XDP && in_napi) {
719 fq->dq_frames++;
720 fq->dq_bytes += fd_len;
721 }
722
723 if (swa->type == DPAA2_ETH_SWA_XDP) {
724 xdp_return_frame(swa->xdp.xdpf);
725 return;
726 }
727
Ioana Radulescu859f9982018-04-26 18:23:47 +0800728 /* Get the timestamp value */
729 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) {
730 struct skb_shared_hwtstamps shhwtstamps;
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000731 __le64 *ts = dpaa2_get_ts(buffer_start, true);
Ioana Radulescu859f9982018-04-26 18:23:47 +0800732 u64 ns;
733
734 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
735
736 ns = DPAA2_PTP_CLK_PERIOD_NS * le64_to_cpup(ts);
737 shhwtstamps.hwtstamp = ns_to_ktime(ns);
738 skb_tstamp_tx(skb, &shhwtstamps);
739 }
740
Ioana Radulescu6a9bbe52018-03-14 15:04:51 -0500741 /* Free SGT buffer allocated on tx */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500742 if (fd_format != dpaa2_fd_single)
Ioana Radulescue3fdf6b2019-03-01 17:47:23 +0000743 skb_free_frag(buffer_start);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500744
745 /* Move on with skb release */
Ioana Ciocoi Radulescu0723a3a2019-02-04 17:00:35 +0000746 napi_consume_skb(skb, in_napi);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500747}
748
Ioana Radulescuc433db42017-06-06 10:00:26 -0500749static netdev_tx_t dpaa2_eth_tx(struct sk_buff *skb, struct net_device *net_dev)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500750{
751 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
752 struct dpaa2_fd fd;
753 struct rtnl_link_stats64 *percpu_stats;
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500754 struct dpaa2_eth_drv_stats *percpu_extras;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500755 struct dpaa2_eth_fq *fq;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000756 struct netdev_queue *nq;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500757 u16 queue_mapping;
Ioana Radulescu18c21462017-12-08 06:47:57 -0600758 unsigned int needed_headroom;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000759 u32 fd_len;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500760 int err, i;
761
762 percpu_stats = this_cpu_ptr(priv->percpu_stats);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500763 percpu_extras = this_cpu_ptr(priv->percpu_extras);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500764
Ioana Radulescu18c21462017-12-08 06:47:57 -0600765 needed_headroom = dpaa2_eth_needed_headroom(priv, skb);
766 if (skb_headroom(skb) < needed_headroom) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500767 struct sk_buff *ns;
768
Ioana Radulescu18c21462017-12-08 06:47:57 -0600769 ns = skb_realloc_headroom(skb, needed_headroom);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500770 if (unlikely(!ns)) {
771 percpu_stats->tx_dropped++;
772 goto err_alloc_headroom;
773 }
Ioana Radulescu6662b5e2017-12-08 06:47:55 -0600774 percpu_extras->tx_reallocs++;
Ioana Radulescu859f9982018-04-26 18:23:47 +0800775
776 if (skb->sk)
777 skb_set_owner_w(ns, skb->sk);
778
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500779 dev_kfree_skb(skb);
780 skb = ns;
781 }
782
783 /* We'll be holding a back-reference to the skb until Tx Confirmation;
784 * we don't want that overwritten by a concurrent Tx with a cloned skb.
785 */
786 skb = skb_unshare(skb, GFP_ATOMIC);
787 if (unlikely(!skb)) {
788 /* skb_unshare() has already freed the skb */
789 percpu_stats->tx_dropped++;
790 return NETDEV_TX_OK;
791 }
792
793 /* Setup the FD fields */
794 memset(&fd, 0, sizeof(fd));
795
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500796 if (skb_is_nonlinear(skb)) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500797 err = build_sg_fd(priv, skb, &fd);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500798 percpu_extras->tx_sg_frames++;
799 percpu_extras->tx_sg_bytes += skb->len;
800 } else {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500801 err = build_single_fd(priv, skb, &fd);
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500802 }
803
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500804 if (unlikely(err)) {
805 percpu_stats->tx_dropped++;
806 goto err_build_fd;
807 }
808
Ioana Radulescu56361872017-04-28 04:50:32 -0500809 /* Tracing point */
810 trace_dpaa2_tx_fd(net_dev, &fd);
811
Ioana Radulescu537336c2017-12-21 06:33:20 -0600812 /* TxConf FQ selection relies on queue id from the stack.
813 * In case of a forwarded frame from another DPNI interface, we choose
814 * a queue affined to the same core that processed the Rx frame
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500815 */
Ioana Radulescu537336c2017-12-21 06:33:20 -0600816 queue_mapping = skb_get_queue_mapping(skb);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500817 fq = &priv->fq[queue_mapping];
Ioana Ciornei8c838f52019-03-25 13:06:22 +0000818
819 fd_len = dpaa2_fd_get_len(&fd);
820 nq = netdev_get_tx_queue(net_dev, queue_mapping);
821 netdev_tx_sent_queue(nq, fd_len);
822
823 /* Everything that happens after this enqueues might race with
824 * the Tx confirmation callback for this frame
825 */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500826 for (i = 0; i < DPAA2_ETH_ENQUEUE_RETRIES; i++) {
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +0000827 err = priv->enqueue(priv, fq, &fd, 0);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500828 if (err != -EBUSY)
829 break;
830 }
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500831 percpu_extras->tx_portal_busy += i;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500832 if (unlikely(err < 0)) {
833 percpu_stats->tx_errors++;
834 /* Clean up everything, including freeing the skb */
Ioana Radulescud678be12019-03-01 17:47:24 +0000835 free_tx_fd(priv, fq, &fd, false);
Ioana Ciornei8c838f52019-03-25 13:06:22 +0000836 netdev_tx_completed_queue(nq, 1, fd_len);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500837 } else {
838 percpu_stats->tx_packets++;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000839 percpu_stats->tx_bytes += fd_len;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500840 }
841
842 return NETDEV_TX_OK;
843
844err_build_fd:
845err_alloc_headroom:
846 dev_kfree_skb(skb);
847
848 return NETDEV_TX_OK;
849}
850
851/* Tx confirmation frame processing routine */
852static void dpaa2_eth_tx_conf(struct dpaa2_eth_priv *priv,
Ioana Ciorneib00c8982018-10-12 16:27:38 +0000853 struct dpaa2_eth_channel *ch __always_unused,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500854 const struct dpaa2_fd *fd,
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000855 struct dpaa2_eth_fq *fq)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500856{
857 struct rtnl_link_stats64 *percpu_stats;
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500858 struct dpaa2_eth_drv_stats *percpu_extras;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000859 u32 fd_len = dpaa2_fd_get_len(fd);
Ioana Radulescu39163c02017-06-06 10:00:39 -0500860 u32 fd_errors;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500861
Ioana Radulescu56361872017-04-28 04:50:32 -0500862 /* Tracing point */
863 trace_dpaa2_tx_conf_fd(priv->net_dev, fd);
864
Ioana Radulescu85047ab2017-04-28 04:50:31 -0500865 percpu_extras = this_cpu_ptr(priv->percpu_extras);
866 percpu_extras->tx_conf_frames++;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +0000867 percpu_extras->tx_conf_bytes += fd_len;
868
Ioana Radulescu39163c02017-06-06 10:00:39 -0500869 /* Check frame errors in the FD field */
870 fd_errors = dpaa2_fd_get_ctrl(fd) & DPAA2_FD_TX_ERR_MASK;
Ioana Radulescud678be12019-03-01 17:47:24 +0000871 free_tx_fd(priv, fq, fd, true);
Ioana Radulescu39163c02017-06-06 10:00:39 -0500872
873 if (likely(!fd_errors))
874 return;
875
Ioana Radulescu2b7c86e2017-12-08 06:47:56 -0600876 if (net_ratelimit())
877 netdev_dbg(priv->net_dev, "TX frame FD error: 0x%08x\n",
878 fd_errors);
879
Ioana Radulescu39163c02017-06-06 10:00:39 -0500880 percpu_stats = this_cpu_ptr(priv->percpu_stats);
881 /* Tx-conf logically pertains to the egress path. */
882 percpu_stats->tx_errors++;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500883}
884
885static int set_rx_csum(struct dpaa2_eth_priv *priv, bool enable)
886{
887 int err;
888
889 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
890 DPNI_OFF_RX_L3_CSUM, enable);
891 if (err) {
892 netdev_err(priv->net_dev,
893 "dpni_set_offload(RX_L3_CSUM) failed\n");
894 return err;
895 }
896
897 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
898 DPNI_OFF_RX_L4_CSUM, enable);
899 if (err) {
900 netdev_err(priv->net_dev,
901 "dpni_set_offload(RX_L4_CSUM) failed\n");
902 return err;
903 }
904
905 return 0;
906}
907
908static int set_tx_csum(struct dpaa2_eth_priv *priv, bool enable)
909{
910 int err;
911
912 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
913 DPNI_OFF_TX_L3_CSUM, enable);
914 if (err) {
915 netdev_err(priv->net_dev, "dpni_set_offload(TX_L3_CSUM) failed\n");
916 return err;
917 }
918
919 err = dpni_set_offload(priv->mc_io, 0, priv->mc_token,
920 DPNI_OFF_TX_L4_CSUM, enable);
921 if (err) {
922 netdev_err(priv->net_dev, "dpni_set_offload(TX_L4_CSUM) failed\n");
923 return err;
924 }
925
926 return 0;
927}
928
929/* Perform a single release command to add buffers
930 * to the specified buffer pool
931 */
Ioana Radulescu7ec05962018-01-05 05:04:32 -0600932static int add_bufs(struct dpaa2_eth_priv *priv,
933 struct dpaa2_eth_channel *ch, u16 bpid)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500934{
935 struct device *dev = priv->net_dev->dev.parent;
936 u64 buf_array[DPAA2_ETH_BUFS_PER_CMD];
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000937 struct page *page;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500938 dma_addr_t addr;
Ioana Radulescu87eb55e2017-10-11 08:29:43 -0500939 int i, err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500940
941 for (i = 0; i < DPAA2_ETH_BUFS_PER_CMD; i++) {
942 /* Allocate buffer visible to WRIOP + skb shared info +
943 * alignment padding
944 */
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000945 /* allocate one page for each Rx buffer. WRIOP sees
946 * the entire page except for a tailroom reserved for
947 * skb shared info
948 */
949 page = dev_alloc_pages(0);
950 if (!page)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500951 goto err_alloc;
952
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000953 addr = dma_map_page(dev, page, 0, DPAA2_ETH_RX_BUF_SIZE,
954 DMA_BIDIRECTIONAL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500955 if (unlikely(dma_mapping_error(dev, addr)))
956 goto err_map;
957
958 buf_array[i] = addr;
Ioana Radulescu56361872017-04-28 04:50:32 -0500959
960 /* tracing point */
961 trace_dpaa2_eth_buf_seed(priv->net_dev,
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000962 page, DPAA2_ETH_RX_BUF_RAW_SIZE,
Ioana Radulescu56361872017-04-28 04:50:32 -0500963 addr, DPAA2_ETH_RX_BUF_SIZE,
964 bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500965 }
966
967release_bufs:
Ioana Radulescu87eb55e2017-10-11 08:29:43 -0500968 /* In case the portal is busy, retry until successful */
Ioana Radulescu7ec05962018-01-05 05:04:32 -0600969 while ((err = dpaa2_io_service_release(ch->dpio, bpid,
Ioana Radulescu87eb55e2017-10-11 08:29:43 -0500970 buf_array, i)) == -EBUSY)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500971 cpu_relax();
Ioana Radulescu87eb55e2017-10-11 08:29:43 -0500972
973 /* If release command failed, clean up and bail out;
974 * not much else we can do about it
975 */
976 if (err) {
977 free_bufs(priv, buf_array, i);
978 return 0;
979 }
980
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500981 return i;
982
983err_map:
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +0000984 __free_pages(page, 0);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500985err_alloc:
Ioana Radulescu87eb55e2017-10-11 08:29:43 -0500986 /* If we managed to allocate at least some buffers,
987 * release them to hardware
988 */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -0500989 if (i)
990 goto release_bufs;
991
992 return 0;
993}
994
995static int seed_pool(struct dpaa2_eth_priv *priv, u16 bpid)
996{
997 int i, j;
998 int new_count;
999
1000 /* This is the lazy seeding of Rx buffer pools.
1001 * dpaa2_add_bufs() is also used on the Rx hotpath and calls
1002 * napi_alloc_frag(). The trouble with that is that it in turn ends up
1003 * calling this_cpu_ptr(), which mandates execution in atomic context.
1004 * Rather than splitting up the code, do a one-off preempt disable.
1005 */
1006 preempt_disable();
1007 for (j = 0; j < priv->num_channels; j++) {
1008 for (i = 0; i < DPAA2_ETH_NUM_BUFS;
1009 i += DPAA2_ETH_BUFS_PER_CMD) {
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001010 new_count = add_bufs(priv, priv->channel[j], bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001011 priv->channel[j]->buf_count += new_count;
1012
1013 if (new_count < DPAA2_ETH_BUFS_PER_CMD) {
1014 preempt_enable();
1015 return -ENOMEM;
1016 }
1017 }
1018 }
1019 preempt_enable();
1020
1021 return 0;
1022}
1023
1024/**
1025 * Drain the specified number of buffers from the DPNI's private buffer pool.
1026 * @count must not exceeed DPAA2_ETH_BUFS_PER_CMD
1027 */
1028static void drain_bufs(struct dpaa2_eth_priv *priv, int count)
1029{
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001030 u64 buf_array[DPAA2_ETH_BUFS_PER_CMD];
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001031 int ret;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001032
1033 do {
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001034 ret = dpaa2_io_service_acquire(NULL, priv->bpid,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001035 buf_array, count);
1036 if (ret < 0) {
1037 netdev_err(priv->net_dev, "dpaa2_io_service_acquire() failed\n");
1038 return;
1039 }
Ioana Radulescu87eb55e2017-10-11 08:29:43 -05001040 free_bufs(priv, buf_array, ret);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001041 } while (ret);
1042}
1043
1044static void drain_pool(struct dpaa2_eth_priv *priv)
1045{
1046 int i;
1047
1048 drain_bufs(priv, DPAA2_ETH_BUFS_PER_CMD);
1049 drain_bufs(priv, 1);
1050
1051 for (i = 0; i < priv->num_channels; i++)
1052 priv->channel[i]->buf_count = 0;
1053}
1054
1055/* Function is called from softirq context only, so we don't need to guard
1056 * the access to percpu count
1057 */
1058static int refill_pool(struct dpaa2_eth_priv *priv,
1059 struct dpaa2_eth_channel *ch,
1060 u16 bpid)
1061{
1062 int new_count;
1063
1064 if (likely(ch->buf_count >= DPAA2_ETH_REFILL_THRESH))
1065 return 0;
1066
1067 do {
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001068 new_count = add_bufs(priv, ch, bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001069 if (unlikely(!new_count)) {
1070 /* Out of memory; abort for now, we'll try later on */
1071 break;
1072 }
1073 ch->buf_count += new_count;
1074 } while (ch->buf_count < DPAA2_ETH_NUM_BUFS);
1075
1076 if (unlikely(ch->buf_count < DPAA2_ETH_NUM_BUFS))
1077 return -ENOMEM;
1078
1079 return 0;
1080}
1081
1082static int pull_channel(struct dpaa2_eth_channel *ch)
1083{
1084 int err;
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001085 int dequeues = -1;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001086
1087 /* Retry while portal is busy */
1088 do {
Ioana Radulescu7ec05962018-01-05 05:04:32 -06001089 err = dpaa2_io_service_pull_channel(ch->dpio, ch->ch_id,
1090 ch->store);
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001091 dequeues++;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001092 cpu_relax();
1093 } while (err == -EBUSY);
1094
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001095 ch->stats.dequeue_portal_busy += dequeues;
1096 if (unlikely(err))
1097 ch->stats.pull_err++;
1098
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001099 return err;
1100}
1101
1102/* NAPI poll routine
1103 *
1104 * Frames are dequeued from the QMan channel associated with this NAPI context.
1105 * Rx, Tx confirmation and (if configured) Rx error frames all count
1106 * towards the NAPI budget.
1107 */
1108static int dpaa2_eth_poll(struct napi_struct *napi, int budget)
1109{
1110 struct dpaa2_eth_channel *ch;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001111 struct dpaa2_eth_priv *priv;
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001112 int rx_cleaned = 0, txconf_cleaned = 0;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001113 struct dpaa2_eth_fq *fq, *txc_fq = NULL;
1114 struct netdev_queue *nq;
1115 int store_cleaned, work_done;
Ioana Ciornei0a25d922019-03-25 13:42:39 +00001116 struct list_head rx_list;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001117 int err;
1118
1119 ch = container_of(napi, struct dpaa2_eth_channel, napi);
Ioana Radulescud678be12019-03-01 17:47:24 +00001120 ch->xdp.res = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001121 priv = ch->priv;
1122
Ioana Ciornei0a25d922019-03-25 13:42:39 +00001123 INIT_LIST_HEAD(&rx_list);
1124 ch->rx_list = &rx_list;
1125
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001126 do {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001127 err = pull_channel(ch);
1128 if (unlikely(err))
1129 break;
1130
1131 /* Refill pool if appropriate */
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001132 refill_pool(priv, ch, priv->bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001133
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001134 store_cleaned = consume_frames(ch, &fq);
1135 if (!store_cleaned)
1136 break;
1137 if (fq->type == DPAA2_RX_FQ) {
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001138 rx_cleaned += store_cleaned;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001139 } else {
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001140 txconf_cleaned += store_cleaned;
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001141 /* We have a single Tx conf FQ on this channel */
1142 txc_fq = fq;
1143 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001144
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001145 /* If we either consumed the whole NAPI budget with Rx frames
1146 * or we reached the Tx confirmations threshold, we're done.
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001147 */
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001148 if (rx_cleaned >= budget ||
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001149 txconf_cleaned >= DPAA2_ETH_TXCONF_PER_NAPI) {
1150 work_done = budget;
1151 goto out;
1152 }
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001153 } while (store_cleaned);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001154
Ioana Ciocoi Radulescu68049a52018-10-08 14:16:31 +00001155 /* We didn't consume the entire budget, so finish napi and
1156 * re-enable data availability notifications
1157 */
1158 napi_complete_done(napi, rx_cleaned);
1159 do {
1160 err = dpaa2_io_service_rearm(ch->dpio, &ch->nctx);
1161 cpu_relax();
1162 } while (err == -EBUSY);
1163 WARN_ONCE(err, "CDAN notifications rearm failed on core %d",
1164 ch->nctx.desired_cpu);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001165
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001166 work_done = max(rx_cleaned, 1);
1167
1168out:
Ioana Ciornei0a25d922019-03-25 13:42:39 +00001169 netif_receive_skb_list(ch->rx_list);
1170
Ioana Radulescud678be12019-03-01 17:47:24 +00001171 if (txc_fq && txc_fq->dq_frames) {
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001172 nq = netdev_get_tx_queue(priv->net_dev, txc_fq->flowid);
1173 netdev_tx_completed_queue(nq, txc_fq->dq_frames,
1174 txc_fq->dq_bytes);
1175 txc_fq->dq_frames = 0;
1176 txc_fq->dq_bytes = 0;
1177 }
1178
Ioana Radulescud678be12019-03-01 17:47:24 +00001179 if (ch->xdp.res & XDP_REDIRECT)
1180 xdp_do_flush_map();
1181
Ioana Ciocoi Radulescu569dac62018-11-14 11:48:36 +00001182 return work_done;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001183}
1184
1185static void enable_ch_napi(struct dpaa2_eth_priv *priv)
1186{
1187 struct dpaa2_eth_channel *ch;
1188 int i;
1189
1190 for (i = 0; i < priv->num_channels; i++) {
1191 ch = priv->channel[i];
1192 napi_enable(&ch->napi);
1193 }
1194}
1195
1196static void disable_ch_napi(struct dpaa2_eth_priv *priv)
1197{
1198 struct dpaa2_eth_channel *ch;
1199 int i;
1200
1201 for (i = 0; i < priv->num_channels; i++) {
1202 ch = priv->channel[i];
1203 napi_disable(&ch->napi);
1204 }
1205}
1206
1207static int link_state_update(struct dpaa2_eth_priv *priv)
1208{
Ioana Ciornei85b7a342018-10-12 16:27:33 +00001209 struct dpni_link_state state = {0};
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001210 int err;
1211
1212 err = dpni_get_link_state(priv->mc_io, 0, priv->mc_token, &state);
1213 if (unlikely(err)) {
1214 netdev_err(priv->net_dev,
1215 "dpni_get_link_state() failed\n");
1216 return err;
1217 }
1218
1219 /* Chech link state; speed / duplex changes are not treated yet */
1220 if (priv->link_state.up == state.up)
1221 return 0;
1222
1223 priv->link_state = state;
1224 if (state.up) {
1225 netif_carrier_on(priv->net_dev);
1226 netif_tx_start_all_queues(priv->net_dev);
1227 } else {
1228 netif_tx_stop_all_queues(priv->net_dev);
1229 netif_carrier_off(priv->net_dev);
1230 }
1231
Ioana Radulescu77160af2017-06-06 10:00:28 -05001232 netdev_info(priv->net_dev, "Link Event: state %s\n",
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001233 state.up ? "up" : "down");
1234
1235 return 0;
1236}
1237
1238static int dpaa2_eth_open(struct net_device *net_dev)
1239{
1240 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1241 int err;
1242
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001243 err = seed_pool(priv, priv->bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001244 if (err) {
1245 /* Not much to do; the buffer pool, though not filled up,
1246 * may still contain some buffers which would enable us
1247 * to limp on.
1248 */
1249 netdev_err(net_dev, "Buffer seeding failed for DPBP %d (bpid=%d)\n",
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05001250 priv->dpbp_dev->obj_desc.id, priv->bpid);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001251 }
1252
1253 /* We'll only start the txqs when the link is actually ready; make sure
1254 * we don't race against the link up notification, which may come
1255 * immediately after dpni_enable();
1256 */
1257 netif_tx_stop_all_queues(net_dev);
1258 enable_ch_napi(priv);
1259 /* Also, explicitly set carrier off, otherwise netif_carrier_ok() will
1260 * return true and cause 'ip link show' to report the LOWER_UP flag,
1261 * even though the link notification wasn't even received.
1262 */
1263 netif_carrier_off(net_dev);
1264
1265 err = dpni_enable(priv->mc_io, 0, priv->mc_token);
1266 if (err < 0) {
1267 netdev_err(net_dev, "dpni_enable() failed\n");
1268 goto enable_err;
1269 }
1270
1271 /* If the DPMAC object has already processed the link up interrupt,
1272 * we have to learn the link state ourselves.
1273 */
1274 err = link_state_update(priv);
1275 if (err < 0) {
1276 netdev_err(net_dev, "Can't update link state\n");
1277 goto link_state_err;
1278 }
1279
1280 return 0;
1281
1282link_state_err:
1283enable_err:
1284 disable_ch_napi(priv);
1285 drain_pool(priv);
1286 return err;
1287}
1288
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001289/* Total number of in-flight frames on ingress queues */
1290static u32 ingress_fq_count(struct dpaa2_eth_priv *priv)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001291{
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001292 struct dpaa2_eth_fq *fq;
1293 u32 fcnt = 0, bcnt = 0, total = 0;
1294 int i, err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001295
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001296 for (i = 0; i < priv->num_fqs; i++) {
1297 fq = &priv->fq[i];
1298 err = dpaa2_io_query_fq_count(NULL, fq->fqid, &fcnt, &bcnt);
1299 if (err) {
1300 netdev_warn(priv->net_dev, "query_fq_count failed");
1301 break;
1302 }
1303 total += fcnt;
1304 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001305
1306 return total;
1307}
1308
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001309static void wait_for_fq_empty(struct dpaa2_eth_priv *priv)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001310{
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001311 int retries = 10;
1312 u32 pending;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001313
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001314 do {
1315 pending = ingress_fq_count(priv);
1316 if (pending)
1317 msleep(100);
1318 } while (pending && --retries);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001319}
1320
1321static int dpaa2_eth_stop(struct net_device *net_dev)
1322{
1323 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Ciornei85b7a342018-10-12 16:27:33 +00001324 int dpni_enabled = 0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001325 int retries = 10;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001326
1327 netif_tx_stop_all_queues(net_dev);
1328 netif_carrier_off(net_dev);
1329
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001330 /* On dpni_disable(), the MC firmware will:
1331 * - stop MAC Rx and wait for all Rx frames to be enqueued to software
1332 * - cut off WRIOP dequeues from egress FQs and wait until transmission
1333 * of all in flight Tx frames is finished (and corresponding Tx conf
1334 * frames are enqueued back to software)
1335 *
1336 * Before calling dpni_disable(), we wait for all Tx frames to arrive
1337 * on WRIOP. After it finishes, wait until all remaining frames on Rx
1338 * and Tx conf queues are consumed on NAPI poll.
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001339 */
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001340 msleep(500);
1341
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001342 do {
1343 dpni_disable(priv->mc_io, 0, priv->mc_token);
1344 dpni_is_enabled(priv->mc_io, 0, priv->mc_token, &dpni_enabled);
1345 if (dpni_enabled)
1346 /* Allow the hardware some slack */
1347 msleep(100);
1348 } while (dpni_enabled && --retries);
1349 if (!retries) {
1350 netdev_warn(net_dev, "Retry count exceeded disabling DPNI\n");
1351 /* Must go on and disable NAPI nonetheless, so we don't crash at
1352 * the next "ifconfig up"
1353 */
1354 }
1355
Ioana Ciocoi Radulescu68d74312019-01-16 16:51:44 +00001356 wait_for_fq_empty(priv);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001357 disable_ch_napi(priv);
1358
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001359 /* Empty the buffer pool */
1360 drain_pool(priv);
1361
1362 return 0;
1363}
1364
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001365static int dpaa2_eth_set_addr(struct net_device *net_dev, void *addr)
1366{
1367 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1368 struct device *dev = net_dev->dev.parent;
1369 int err;
1370
1371 err = eth_mac_addr(net_dev, addr);
1372 if (err < 0) {
1373 dev_err(dev, "eth_mac_addr() failed (%d)\n", err);
1374 return err;
1375 }
1376
1377 err = dpni_set_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
1378 net_dev->dev_addr);
1379 if (err) {
1380 dev_err(dev, "dpni_set_primary_mac_addr() failed (%d)\n", err);
1381 return err;
1382 }
1383
1384 return 0;
1385}
1386
1387/** Fill in counters maintained by the GPP driver. These may be different from
1388 * the hardware counters obtained by ethtool.
1389 */
Ioana Radulescuacbff8e2017-06-06 10:00:24 -05001390static void dpaa2_eth_get_stats(struct net_device *net_dev,
1391 struct rtnl_link_stats64 *stats)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001392{
1393 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1394 struct rtnl_link_stats64 *percpu_stats;
1395 u64 *cpustats;
1396 u64 *netstats = (u64 *)stats;
1397 int i, j;
1398 int num = sizeof(struct rtnl_link_stats64) / sizeof(u64);
1399
1400 for_each_possible_cpu(i) {
1401 percpu_stats = per_cpu_ptr(priv->percpu_stats, i);
1402 cpustats = (u64 *)percpu_stats;
1403 for (j = 0; j < num; j++)
1404 netstats[j] += cpustats[j];
1405 }
1406}
1407
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001408/* Copy mac unicast addresses from @net_dev to @priv.
1409 * Its sole purpose is to make dpaa2_eth_set_rx_mode() more readable.
1410 */
1411static void add_uc_hw_addr(const struct net_device *net_dev,
1412 struct dpaa2_eth_priv *priv)
1413{
1414 struct netdev_hw_addr *ha;
1415 int err;
1416
1417 netdev_for_each_uc_addr(ha, net_dev) {
1418 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token,
1419 ha->addr);
1420 if (err)
1421 netdev_warn(priv->net_dev,
1422 "Could not add ucast MAC %pM to the filtering table (err %d)\n",
1423 ha->addr, err);
1424 }
1425}
1426
1427/* Copy mac multicast addresses from @net_dev to @priv
1428 * Its sole purpose is to make dpaa2_eth_set_rx_mode() more readable.
1429 */
1430static void add_mc_hw_addr(const struct net_device *net_dev,
1431 struct dpaa2_eth_priv *priv)
1432{
1433 struct netdev_hw_addr *ha;
1434 int err;
1435
1436 netdev_for_each_mc_addr(ha, net_dev) {
1437 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token,
1438 ha->addr);
1439 if (err)
1440 netdev_warn(priv->net_dev,
1441 "Could not add mcast MAC %pM to the filtering table (err %d)\n",
1442 ha->addr, err);
1443 }
1444}
1445
1446static void dpaa2_eth_set_rx_mode(struct net_device *net_dev)
1447{
1448 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1449 int uc_count = netdev_uc_count(net_dev);
1450 int mc_count = netdev_mc_count(net_dev);
1451 u8 max_mac = priv->dpni_attrs.mac_filter_entries;
1452 u32 options = priv->dpni_attrs.options;
1453 u16 mc_token = priv->mc_token;
1454 struct fsl_mc_io *mc_io = priv->mc_io;
1455 int err;
1456
1457 /* Basic sanity checks; these probably indicate a misconfiguration */
1458 if (options & DPNI_OPT_NO_MAC_FILTER && max_mac != 0)
1459 netdev_info(net_dev,
1460 "mac_filter_entries=%d, DPNI_OPT_NO_MAC_FILTER option must be disabled\n",
1461 max_mac);
1462
1463 /* Force promiscuous if the uc or mc counts exceed our capabilities. */
1464 if (uc_count > max_mac) {
1465 netdev_info(net_dev,
1466 "Unicast addr count reached %d, max allowed is %d; forcing promisc\n",
1467 uc_count, max_mac);
1468 goto force_promisc;
1469 }
1470 if (mc_count + uc_count > max_mac) {
1471 netdev_info(net_dev,
1472 "Unicast + multicast addr count reached %d, max allowed is %d; forcing promisc\n",
1473 uc_count + mc_count, max_mac);
1474 goto force_mc_promisc;
1475 }
1476
1477 /* Adjust promisc settings due to flag combinations */
1478 if (net_dev->flags & IFF_PROMISC)
1479 goto force_promisc;
1480 if (net_dev->flags & IFF_ALLMULTI) {
1481 /* First, rebuild unicast filtering table. This should be done
1482 * in promisc mode, in order to avoid frame loss while we
1483 * progressively add entries to the table.
1484 * We don't know whether we had been in promisc already, and
1485 * making an MC call to find out is expensive; so set uc promisc
1486 * nonetheless.
1487 */
1488 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
1489 if (err)
1490 netdev_warn(net_dev, "Can't set uc promisc\n");
1491
1492 /* Actual uc table reconstruction. */
1493 err = dpni_clear_mac_filters(mc_io, 0, mc_token, 1, 0);
1494 if (err)
1495 netdev_warn(net_dev, "Can't clear uc filters\n");
1496 add_uc_hw_addr(net_dev, priv);
1497
1498 /* Finally, clear uc promisc and set mc promisc as requested. */
1499 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 0);
1500 if (err)
1501 netdev_warn(net_dev, "Can't clear uc promisc\n");
1502 goto force_mc_promisc;
1503 }
1504
1505 /* Neither unicast, nor multicast promisc will be on... eventually.
1506 * For now, rebuild mac filtering tables while forcing both of them on.
1507 */
1508 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
1509 if (err)
1510 netdev_warn(net_dev, "Can't set uc promisc (%d)\n", err);
1511 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 1);
1512 if (err)
1513 netdev_warn(net_dev, "Can't set mc promisc (%d)\n", err);
1514
1515 /* Actual mac filtering tables reconstruction */
1516 err = dpni_clear_mac_filters(mc_io, 0, mc_token, 1, 1);
1517 if (err)
1518 netdev_warn(net_dev, "Can't clear mac filters\n");
1519 add_mc_hw_addr(net_dev, priv);
1520 add_uc_hw_addr(net_dev, priv);
1521
1522 /* Now we can clear both ucast and mcast promisc, without risking
1523 * to drop legitimate frames anymore.
1524 */
1525 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 0);
1526 if (err)
1527 netdev_warn(net_dev, "Can't clear ucast promisc\n");
1528 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 0);
1529 if (err)
1530 netdev_warn(net_dev, "Can't clear mcast promisc\n");
1531
1532 return;
1533
1534force_promisc:
1535 err = dpni_set_unicast_promisc(mc_io, 0, mc_token, 1);
1536 if (err)
1537 netdev_warn(net_dev, "Can't set ucast promisc\n");
1538force_mc_promisc:
1539 err = dpni_set_multicast_promisc(mc_io, 0, mc_token, 1);
1540 if (err)
1541 netdev_warn(net_dev, "Can't set mcast promisc\n");
1542}
1543
1544static int dpaa2_eth_set_features(struct net_device *net_dev,
1545 netdev_features_t features)
1546{
1547 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1548 netdev_features_t changed = features ^ net_dev->features;
1549 bool enable;
1550 int err;
1551
1552 if (changed & NETIF_F_RXCSUM) {
1553 enable = !!(features & NETIF_F_RXCSUM);
1554 err = set_rx_csum(priv, enable);
1555 if (err)
1556 return err;
1557 }
1558
1559 if (changed & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
1560 enable = !!(features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM));
1561 err = set_tx_csum(priv, enable);
1562 if (err)
1563 return err;
1564 }
1565
1566 return 0;
1567}
1568
Ioana Radulescu859f9982018-04-26 18:23:47 +08001569static int dpaa2_eth_ts_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1570{
1571 struct dpaa2_eth_priv *priv = netdev_priv(dev);
1572 struct hwtstamp_config config;
1573
1574 if (copy_from_user(&config, rq->ifr_data, sizeof(config)))
1575 return -EFAULT;
1576
1577 switch (config.tx_type) {
1578 case HWTSTAMP_TX_OFF:
1579 priv->tx_tstamp = false;
1580 break;
1581 case HWTSTAMP_TX_ON:
1582 priv->tx_tstamp = true;
1583 break;
1584 default:
1585 return -ERANGE;
1586 }
1587
1588 if (config.rx_filter == HWTSTAMP_FILTER_NONE) {
1589 priv->rx_tstamp = false;
1590 } else {
1591 priv->rx_tstamp = true;
1592 /* TS is set for all frame types, not only those requested */
1593 config.rx_filter = HWTSTAMP_FILTER_ALL;
1594 }
1595
1596 return copy_to_user(rq->ifr_data, &config, sizeof(config)) ?
1597 -EFAULT : 0;
1598}
1599
1600static int dpaa2_eth_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1601{
1602 if (cmd == SIOCSHWTSTAMP)
1603 return dpaa2_eth_ts_ioctl(dev, rq, cmd);
1604
1605 return -EINVAL;
1606}
1607
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001608static bool xdp_mtu_valid(struct dpaa2_eth_priv *priv, int mtu)
1609{
1610 int mfl, linear_mfl;
1611
1612 mfl = DPAA2_ETH_L2_MAX_FRM(mtu);
1613 linear_mfl = DPAA2_ETH_RX_BUF_SIZE - DPAA2_ETH_RX_HWA_SIZE -
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00001614 dpaa2_eth_rx_head_room(priv) - XDP_PACKET_HEADROOM;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001615
1616 if (mfl > linear_mfl) {
1617 netdev_warn(priv->net_dev, "Maximum MTU for XDP is %d\n",
1618 linear_mfl - VLAN_ETH_HLEN);
1619 return false;
1620 }
1621
1622 return true;
1623}
1624
1625static int set_rx_mfl(struct dpaa2_eth_priv *priv, int mtu, bool has_xdp)
1626{
1627 int mfl, err;
1628
1629 /* We enforce a maximum Rx frame length based on MTU only if we have
1630 * an XDP program attached (in order to avoid Rx S/G frames).
1631 * Otherwise, we accept all incoming frames as long as they are not
1632 * larger than maximum size supported in hardware
1633 */
1634 if (has_xdp)
1635 mfl = DPAA2_ETH_L2_MAX_FRM(mtu);
1636 else
1637 mfl = DPAA2_ETH_MFL;
1638
1639 err = dpni_set_max_frame_length(priv->mc_io, 0, priv->mc_token, mfl);
1640 if (err) {
1641 netdev_err(priv->net_dev, "dpni_set_max_frame_length failed\n");
1642 return err;
1643 }
1644
1645 return 0;
1646}
1647
1648static int dpaa2_eth_change_mtu(struct net_device *dev, int new_mtu)
1649{
1650 struct dpaa2_eth_priv *priv = netdev_priv(dev);
1651 int err;
1652
1653 if (!priv->xdp_prog)
1654 goto out;
1655
1656 if (!xdp_mtu_valid(priv, new_mtu))
1657 return -EINVAL;
1658
1659 err = set_rx_mfl(priv, new_mtu, true);
1660 if (err)
1661 return err;
1662
1663out:
1664 dev->mtu = new_mtu;
1665 return 0;
1666}
1667
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00001668static int update_rx_buffer_headroom(struct dpaa2_eth_priv *priv, bool has_xdp)
1669{
1670 struct dpni_buffer_layout buf_layout = {0};
1671 int err;
1672
1673 err = dpni_get_buffer_layout(priv->mc_io, 0, priv->mc_token,
1674 DPNI_QUEUE_RX, &buf_layout);
1675 if (err) {
1676 netdev_err(priv->net_dev, "dpni_get_buffer_layout failed\n");
1677 return err;
1678 }
1679
1680 /* Reserve extra headroom for XDP header size changes */
1681 buf_layout.data_head_room = dpaa2_eth_rx_head_room(priv) +
1682 (has_xdp ? XDP_PACKET_HEADROOM : 0);
1683 buf_layout.options = DPNI_BUF_LAYOUT_OPT_DATA_HEAD_ROOM;
1684 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
1685 DPNI_QUEUE_RX, &buf_layout);
1686 if (err) {
1687 netdev_err(priv->net_dev, "dpni_set_buffer_layout failed\n");
1688 return err;
1689 }
1690
1691 return 0;
1692}
1693
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001694static int setup_xdp(struct net_device *dev, struct bpf_prog *prog)
1695{
1696 struct dpaa2_eth_priv *priv = netdev_priv(dev);
1697 struct dpaa2_eth_channel *ch;
1698 struct bpf_prog *old;
1699 bool up, need_update;
1700 int i, err;
1701
1702 if (prog && !xdp_mtu_valid(priv, dev->mtu))
1703 return -EINVAL;
1704
1705 if (prog) {
1706 prog = bpf_prog_add(prog, priv->num_channels);
1707 if (IS_ERR(prog))
1708 return PTR_ERR(prog);
1709 }
1710
1711 up = netif_running(dev);
1712 need_update = (!!priv->xdp_prog != !!prog);
1713
1714 if (up)
1715 dpaa2_eth_stop(dev);
1716
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00001717 /* While in xdp mode, enforce a maximum Rx frame size based on MTU.
1718 * Also, when switching between xdp/non-xdp modes we need to reconfigure
1719 * our Rx buffer layout. Buffer pool was drained on dpaa2_eth_stop,
1720 * so we are sure no old format buffers will be used from now on.
1721 */
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001722 if (need_update) {
1723 err = set_rx_mfl(priv, dev->mtu, !!prog);
1724 if (err)
1725 goto out_err;
Ioana Ciocoi Radulescu7b1eea12018-11-26 16:27:30 +00001726 err = update_rx_buffer_headroom(priv, !!prog);
1727 if (err)
1728 goto out_err;
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001729 }
1730
1731 old = xchg(&priv->xdp_prog, prog);
1732 if (old)
1733 bpf_prog_put(old);
1734
1735 for (i = 0; i < priv->num_channels; i++) {
1736 ch = priv->channel[i];
1737 old = xchg(&ch->xdp.prog, prog);
1738 if (old)
1739 bpf_prog_put(old);
1740 }
1741
1742 if (up) {
1743 err = dpaa2_eth_open(dev);
1744 if (err)
1745 return err;
1746 }
1747
1748 return 0;
1749
1750out_err:
1751 if (prog)
1752 bpf_prog_sub(prog, priv->num_channels);
1753 if (up)
1754 dpaa2_eth_open(dev);
1755
1756 return err;
1757}
1758
1759static int dpaa2_eth_xdp(struct net_device *dev, struct netdev_bpf *xdp)
1760{
1761 struct dpaa2_eth_priv *priv = netdev_priv(dev);
1762
1763 switch (xdp->command) {
1764 case XDP_SETUP_PROG:
1765 return setup_xdp(dev, xdp->prog);
1766 case XDP_QUERY_PROG:
1767 xdp->prog_id = priv->xdp_prog ? priv->xdp_prog->aux->id : 0;
1768 break;
1769 default:
1770 return -EINVAL;
1771 }
1772
1773 return 0;
1774}
1775
Ioana Radulescud678be12019-03-01 17:47:24 +00001776static int dpaa2_eth_xdp_xmit_frame(struct net_device *net_dev,
1777 struct xdp_frame *xdpf)
1778{
1779 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
1780 struct device *dev = net_dev->dev.parent;
1781 struct rtnl_link_stats64 *percpu_stats;
1782 struct dpaa2_eth_drv_stats *percpu_extras;
1783 unsigned int needed_headroom;
1784 struct dpaa2_eth_swa *swa;
1785 struct dpaa2_eth_fq *fq;
1786 struct dpaa2_fd fd;
1787 void *buffer_start, *aligned_start;
1788 dma_addr_t addr;
1789 int err, i;
1790
1791 /* We require a minimum headroom to be able to transmit the frame.
1792 * Otherwise return an error and let the original net_device handle it
1793 */
1794 needed_headroom = dpaa2_eth_needed_headroom(priv, NULL);
1795 if (xdpf->headroom < needed_headroom)
1796 return -EINVAL;
1797
1798 percpu_stats = this_cpu_ptr(priv->percpu_stats);
1799 percpu_extras = this_cpu_ptr(priv->percpu_extras);
1800
1801 /* Setup the FD fields */
1802 memset(&fd, 0, sizeof(fd));
1803
1804 /* Align FD address, if possible */
1805 buffer_start = xdpf->data - needed_headroom;
1806 aligned_start = PTR_ALIGN(buffer_start - DPAA2_ETH_TX_BUF_ALIGN,
1807 DPAA2_ETH_TX_BUF_ALIGN);
1808 if (aligned_start >= xdpf->data - xdpf->headroom)
1809 buffer_start = aligned_start;
1810
1811 swa = (struct dpaa2_eth_swa *)buffer_start;
1812 /* fill in necessary fields here */
1813 swa->type = DPAA2_ETH_SWA_XDP;
1814 swa->xdp.dma_size = xdpf->data + xdpf->len - buffer_start;
1815 swa->xdp.xdpf = xdpf;
1816
1817 addr = dma_map_single(dev, buffer_start,
1818 swa->xdp.dma_size,
1819 DMA_BIDIRECTIONAL);
1820 if (unlikely(dma_mapping_error(dev, addr))) {
1821 percpu_stats->tx_dropped++;
1822 return -ENOMEM;
1823 }
1824
1825 dpaa2_fd_set_addr(&fd, addr);
1826 dpaa2_fd_set_offset(&fd, xdpf->data - buffer_start);
1827 dpaa2_fd_set_len(&fd, xdpf->len);
1828 dpaa2_fd_set_format(&fd, dpaa2_fd_single);
1829 dpaa2_fd_set_ctrl(&fd, FD_CTRL_PTA);
1830
Ioana Ciocoi Radulescu64447502019-03-20 14:11:04 +00001831 fq = &priv->fq[smp_processor_id() % dpaa2_eth_queue_count(priv)];
Ioana Radulescud678be12019-03-01 17:47:24 +00001832 for (i = 0; i < DPAA2_ETH_ENQUEUE_RETRIES; i++) {
1833 err = priv->enqueue(priv, fq, &fd, 0);
1834 if (err != -EBUSY)
1835 break;
1836 }
1837 percpu_extras->tx_portal_busy += i;
1838 if (unlikely(err < 0)) {
1839 percpu_stats->tx_errors++;
1840 /* let the Rx device handle the cleanup */
1841 return err;
1842 }
1843
1844 percpu_stats->tx_packets++;
1845 percpu_stats->tx_bytes += dpaa2_fd_get_len(&fd);
1846
1847 return 0;
1848}
1849
1850static int dpaa2_eth_xdp_xmit(struct net_device *net_dev, int n,
1851 struct xdp_frame **frames, u32 flags)
1852{
1853 int drops = 0;
1854 int i, err;
1855
1856 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
1857 return -EINVAL;
1858
1859 if (!netif_running(net_dev))
1860 return -ENETDOWN;
1861
1862 for (i = 0; i < n; i++) {
1863 struct xdp_frame *xdpf = frames[i];
1864
1865 err = dpaa2_eth_xdp_xmit_frame(net_dev, xdpf);
1866 if (err) {
1867 xdp_return_frame_rx_napi(xdpf);
1868 drops++;
1869 }
1870 }
1871
1872 return n - drops;
1873}
1874
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001875static const struct net_device_ops dpaa2_eth_ops = {
1876 .ndo_open = dpaa2_eth_open,
1877 .ndo_start_xmit = dpaa2_eth_tx,
1878 .ndo_stop = dpaa2_eth_stop,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001879 .ndo_set_mac_address = dpaa2_eth_set_addr,
1880 .ndo_get_stats64 = dpaa2_eth_get_stats,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001881 .ndo_set_rx_mode = dpaa2_eth_set_rx_mode,
1882 .ndo_set_features = dpaa2_eth_set_features,
Ioana Radulescu859f9982018-04-26 18:23:47 +08001883 .ndo_do_ioctl = dpaa2_eth_ioctl,
Ioana Ciocoi Radulescu7e273a82018-11-26 16:27:29 +00001884 .ndo_change_mtu = dpaa2_eth_change_mtu,
1885 .ndo_bpf = dpaa2_eth_xdp,
Ioana Radulescud678be12019-03-01 17:47:24 +00001886 .ndo_xdp_xmit = dpaa2_eth_xdp_xmit,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001887};
1888
1889static void cdan_cb(struct dpaa2_io_notification_ctx *ctx)
1890{
1891 struct dpaa2_eth_channel *ch;
1892
1893 ch = container_of(ctx, struct dpaa2_eth_channel, nctx);
Ioana Radulescu85047ab2017-04-28 04:50:31 -05001894
1895 /* Update NAPI statistics */
1896 ch->stats.cdan++;
1897
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001898 napi_schedule_irqoff(&ch->napi);
1899}
1900
1901/* Allocate and configure a DPCON object */
1902static struct fsl_mc_device *setup_dpcon(struct dpaa2_eth_priv *priv)
1903{
1904 struct fsl_mc_device *dpcon;
1905 struct device *dev = priv->net_dev->dev.parent;
1906 struct dpcon_attr attrs;
1907 int err;
1908
1909 err = fsl_mc_object_allocate(to_fsl_mc_device(dev),
1910 FSL_MC_POOL_DPCON, &dpcon);
1911 if (err) {
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00001912 if (err == -ENXIO)
1913 err = -EPROBE_DEFER;
1914 else
1915 dev_info(dev, "Not enough DPCONs, will go on as-is\n");
1916 return ERR_PTR(err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001917 }
1918
1919 err = dpcon_open(priv->mc_io, 0, dpcon->obj_desc.id, &dpcon->mc_handle);
1920 if (err) {
1921 dev_err(dev, "dpcon_open() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00001922 goto free;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001923 }
1924
1925 err = dpcon_reset(priv->mc_io, 0, dpcon->mc_handle);
1926 if (err) {
1927 dev_err(dev, "dpcon_reset() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00001928 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001929 }
1930
1931 err = dpcon_get_attributes(priv->mc_io, 0, dpcon->mc_handle, &attrs);
1932 if (err) {
1933 dev_err(dev, "dpcon_get_attributes() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00001934 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001935 }
1936
1937 err = dpcon_enable(priv->mc_io, 0, dpcon->mc_handle);
1938 if (err) {
1939 dev_err(dev, "dpcon_enable() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00001940 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001941 }
1942
1943 return dpcon;
1944
Ioana Radulescuf6dda802017-10-29 08:20:39 +00001945close:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001946 dpcon_close(priv->mc_io, 0, dpcon->mc_handle);
Ioana Radulescuf6dda802017-10-29 08:20:39 +00001947free:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001948 fsl_mc_object_free(dpcon);
1949
1950 return NULL;
1951}
1952
1953static void free_dpcon(struct dpaa2_eth_priv *priv,
1954 struct fsl_mc_device *dpcon)
1955{
1956 dpcon_disable(priv->mc_io, 0, dpcon->mc_handle);
1957 dpcon_close(priv->mc_io, 0, dpcon->mc_handle);
1958 fsl_mc_object_free(dpcon);
1959}
1960
1961static struct dpaa2_eth_channel *
1962alloc_channel(struct dpaa2_eth_priv *priv)
1963{
1964 struct dpaa2_eth_channel *channel;
1965 struct dpcon_attr attr;
1966 struct device *dev = priv->net_dev->dev.parent;
1967 int err;
1968
1969 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
1970 if (!channel)
1971 return NULL;
1972
1973 channel->dpcon = setup_dpcon(priv);
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00001974 if (IS_ERR_OR_NULL(channel->dpcon)) {
1975 err = PTR_ERR(channel->dpcon);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001976 goto err_setup;
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00001977 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001978
1979 err = dpcon_get_attributes(priv->mc_io, 0, channel->dpcon->mc_handle,
1980 &attr);
1981 if (err) {
1982 dev_err(dev, "dpcon_get_attributes() failed\n");
1983 goto err_get_attr;
1984 }
1985
1986 channel->dpcon_id = attr.id;
1987 channel->ch_id = attr.qbman_ch_id;
1988 channel->priv = priv;
1989
1990 return channel;
1991
1992err_get_attr:
1993 free_dpcon(priv, channel->dpcon);
1994err_setup:
1995 kfree(channel);
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00001996 return ERR_PTR(err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05001997}
1998
1999static void free_channel(struct dpaa2_eth_priv *priv,
2000 struct dpaa2_eth_channel *channel)
2001{
2002 free_dpcon(priv, channel->dpcon);
2003 kfree(channel);
2004}
2005
2006/* DPIO setup: allocate and configure QBMan channels, setup core affinity
2007 * and register data availability notifications
2008 */
2009static int setup_dpio(struct dpaa2_eth_priv *priv)
2010{
2011 struct dpaa2_io_notification_ctx *nctx;
2012 struct dpaa2_eth_channel *channel;
2013 struct dpcon_notification_cfg dpcon_notif_cfg;
2014 struct device *dev = priv->net_dev->dev.parent;
2015 int i, err;
2016
2017 /* We want the ability to spread ingress traffic (RX, TX conf) to as
2018 * many cores as possible, so we need one channel for each core
2019 * (unless there's fewer queues than cores, in which case the extra
2020 * channels would be wasted).
2021 * Allocate one channel per core and register it to the core's
2022 * affine DPIO. If not enough channels are available for all cores
2023 * or if some cores don't have an affine DPIO, there will be no
2024 * ingress frame processing on those cores.
2025 */
2026 cpumask_clear(&priv->dpio_cpumask);
2027 for_each_online_cpu(i) {
2028 /* Try to allocate a channel */
2029 channel = alloc_channel(priv);
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002030 if (IS_ERR_OR_NULL(channel)) {
2031 err = PTR_ERR(channel);
2032 if (err != -EPROBE_DEFER)
2033 dev_info(dev,
2034 "No affine channel for cpu %d and above\n", i);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002035 goto err_alloc_ch;
2036 }
2037
2038 priv->channel[priv->num_channels] = channel;
2039
2040 nctx = &channel->nctx;
2041 nctx->is_cdan = 1;
2042 nctx->cb = cdan_cb;
2043 nctx->id = channel->ch_id;
2044 nctx->desired_cpu = i;
2045
2046 /* Register the new context */
Ioana Radulescu7ec05962018-01-05 05:04:32 -06002047 channel->dpio = dpaa2_io_service_select(i);
Ioana Ciornei47441f72018-12-10 16:50:19 +00002048 err = dpaa2_io_service_register(channel->dpio, nctx, dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002049 if (err) {
Ioana Radulescu5206d8d2017-06-06 10:00:33 -05002050 dev_dbg(dev, "No affine DPIO for cpu %d\n", i);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002051 /* If no affine DPIO for this core, there's probably
Ioana Radulescu5206d8d2017-06-06 10:00:33 -05002052 * none available for next cores either. Signal we want
2053 * to retry later, in case the DPIO devices weren't
2054 * probed yet.
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002055 */
Ioana Radulescu5206d8d2017-06-06 10:00:33 -05002056 err = -EPROBE_DEFER;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002057 goto err_service_reg;
2058 }
2059
2060 /* Register DPCON notification with MC */
2061 dpcon_notif_cfg.dpio_id = nctx->dpio_id;
2062 dpcon_notif_cfg.priority = 0;
2063 dpcon_notif_cfg.user_ctx = nctx->qman64;
2064 err = dpcon_set_notification(priv->mc_io, 0,
2065 channel->dpcon->mc_handle,
2066 &dpcon_notif_cfg);
2067 if (err) {
2068 dev_err(dev, "dpcon_set_notification failed()\n");
2069 goto err_set_cdan;
2070 }
2071
2072 /* If we managed to allocate a channel and also found an affine
2073 * DPIO for this core, add it to the final mask
2074 */
2075 cpumask_set_cpu(i, &priv->dpio_cpumask);
2076 priv->num_channels++;
2077
2078 /* Stop if we already have enough channels to accommodate all
2079 * RX and TX conf queues
2080 */
Ioana Ciocoi Radulescub0e4f372018-11-14 11:48:35 +00002081 if (priv->num_channels == priv->dpni_attrs.num_queues)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002082 break;
2083 }
2084
2085 return 0;
2086
2087err_set_cdan:
Ioana Ciornei47441f72018-12-10 16:50:19 +00002088 dpaa2_io_service_deregister(channel->dpio, nctx, dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002089err_service_reg:
2090 free_channel(priv, channel);
2091err_alloc_ch:
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002092 if (err == -EPROBE_DEFER)
2093 return err;
2094
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002095 if (cpumask_empty(&priv->dpio_cpumask)) {
2096 dev_err(dev, "No cpu with an affine DPIO/DPCON\n");
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002097 return -ENODEV;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002098 }
2099
2100 dev_info(dev, "Cores %*pbl available for processing ingress traffic\n",
2101 cpumask_pr_args(&priv->dpio_cpumask));
2102
2103 return 0;
2104}
2105
2106static void free_dpio(struct dpaa2_eth_priv *priv)
2107{
Ioana Ciornei47441f72018-12-10 16:50:19 +00002108 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002109 struct dpaa2_eth_channel *ch;
Ioana Ciornei47441f72018-12-10 16:50:19 +00002110 int i;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002111
2112 /* deregister CDAN notifications and free channels */
2113 for (i = 0; i < priv->num_channels; i++) {
2114 ch = priv->channel[i];
Ioana Ciornei47441f72018-12-10 16:50:19 +00002115 dpaa2_io_service_deregister(ch->dpio, &ch->nctx, dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002116 free_channel(priv, ch);
2117 }
2118}
2119
2120static struct dpaa2_eth_channel *get_affine_channel(struct dpaa2_eth_priv *priv,
2121 int cpu)
2122{
2123 struct device *dev = priv->net_dev->dev.parent;
2124 int i;
2125
2126 for (i = 0; i < priv->num_channels; i++)
2127 if (priv->channel[i]->nctx.desired_cpu == cpu)
2128 return priv->channel[i];
2129
2130 /* We should never get here. Issue a warning and return
2131 * the first channel, because it's still better than nothing
2132 */
2133 dev_warn(dev, "No affine channel found for cpu %d\n", cpu);
2134
2135 return priv->channel[0];
2136}
2137
2138static void set_fq_affinity(struct dpaa2_eth_priv *priv)
2139{
2140 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescu93ddf0b2017-12-21 06:33:21 -06002141 struct cpumask xps_mask;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002142 struct dpaa2_eth_fq *fq;
2143 int rx_cpu, txc_cpu;
Ioana Radulescu93ddf0b2017-12-21 06:33:21 -06002144 int i, err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002145
2146 /* For each FQ, pick one channel/CPU to deliver frames to.
2147 * This may well change at runtime, either through irqbalance or
2148 * through direct user intervention.
2149 */
2150 rx_cpu = txc_cpu = cpumask_first(&priv->dpio_cpumask);
2151
2152 for (i = 0; i < priv->num_fqs; i++) {
2153 fq = &priv->fq[i];
2154 switch (fq->type) {
2155 case DPAA2_RX_FQ:
2156 fq->target_cpu = rx_cpu;
2157 rx_cpu = cpumask_next(rx_cpu, &priv->dpio_cpumask);
2158 if (rx_cpu >= nr_cpu_ids)
2159 rx_cpu = cpumask_first(&priv->dpio_cpumask);
2160 break;
2161 case DPAA2_TX_CONF_FQ:
2162 fq->target_cpu = txc_cpu;
Ioana Radulescu93ddf0b2017-12-21 06:33:21 -06002163
2164 /* Tell the stack to affine to txc_cpu the Tx queue
2165 * associated with the confirmation one
2166 */
2167 cpumask_clear(&xps_mask);
2168 cpumask_set_cpu(txc_cpu, &xps_mask);
2169 err = netif_set_xps_queue(priv->net_dev, &xps_mask,
2170 fq->flowid);
2171 if (err)
2172 dev_err(dev, "Error setting XPS queue\n");
2173
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002174 txc_cpu = cpumask_next(txc_cpu, &priv->dpio_cpumask);
2175 if (txc_cpu >= nr_cpu_ids)
2176 txc_cpu = cpumask_first(&priv->dpio_cpumask);
2177 break;
2178 default:
2179 dev_err(dev, "Unknown FQ type: %d\n", fq->type);
2180 }
2181 fq->channel = get_affine_channel(priv, fq->target_cpu);
2182 }
2183}
2184
2185static void setup_fqs(struct dpaa2_eth_priv *priv)
2186{
2187 int i;
2188
2189 /* We have one TxConf FQ per Tx flow.
2190 * The number of Tx and Rx queues is the same.
2191 * Tx queues come first in the fq array.
2192 */
2193 for (i = 0; i < dpaa2_eth_queue_count(priv); i++) {
2194 priv->fq[priv->num_fqs].type = DPAA2_TX_CONF_FQ;
2195 priv->fq[priv->num_fqs].consume = dpaa2_eth_tx_conf;
2196 priv->fq[priv->num_fqs++].flowid = (u16)i;
2197 }
2198
2199 for (i = 0; i < dpaa2_eth_queue_count(priv); i++) {
2200 priv->fq[priv->num_fqs].type = DPAA2_RX_FQ;
2201 priv->fq[priv->num_fqs].consume = dpaa2_eth_rx;
2202 priv->fq[priv->num_fqs++].flowid = (u16)i;
2203 }
2204
2205 /* For each FQ, decide on which core to process incoming frames */
2206 set_fq_affinity(priv);
2207}
2208
2209/* Allocate and configure one buffer pool for each interface */
2210static int setup_dpbp(struct dpaa2_eth_priv *priv)
2211{
2212 int err;
2213 struct fsl_mc_device *dpbp_dev;
2214 struct device *dev = priv->net_dev->dev.parent;
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05002215 struct dpbp_attr dpbp_attrs;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002216
2217 err = fsl_mc_object_allocate(to_fsl_mc_device(dev), FSL_MC_POOL_DPBP,
2218 &dpbp_dev);
2219 if (err) {
Ioana Ciorneid7f5a9d2018-11-09 15:26:45 +00002220 if (err == -ENXIO)
2221 err = -EPROBE_DEFER;
2222 else
2223 dev_err(dev, "DPBP device allocation failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002224 return err;
2225 }
2226
2227 priv->dpbp_dev = dpbp_dev;
2228
2229 err = dpbp_open(priv->mc_io, 0, priv->dpbp_dev->obj_desc.id,
2230 &dpbp_dev->mc_handle);
2231 if (err) {
2232 dev_err(dev, "dpbp_open() failed\n");
2233 goto err_open;
2234 }
2235
Ioana Radulescud00defe2017-06-06 10:00:32 -05002236 err = dpbp_reset(priv->mc_io, 0, dpbp_dev->mc_handle);
2237 if (err) {
2238 dev_err(dev, "dpbp_reset() failed\n");
2239 goto err_reset;
2240 }
2241
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002242 err = dpbp_enable(priv->mc_io, 0, dpbp_dev->mc_handle);
2243 if (err) {
2244 dev_err(dev, "dpbp_enable() failed\n");
2245 goto err_enable;
2246 }
2247
2248 err = dpbp_get_attributes(priv->mc_io, 0, dpbp_dev->mc_handle,
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05002249 &dpbp_attrs);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002250 if (err) {
2251 dev_err(dev, "dpbp_get_attributes() failed\n");
2252 goto err_get_attr;
2253 }
Ioana Radulescu05fa39c2017-06-06 10:00:37 -05002254 priv->bpid = dpbp_attrs.bpid;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002255
2256 return 0;
2257
2258err_get_attr:
2259 dpbp_disable(priv->mc_io, 0, dpbp_dev->mc_handle);
2260err_enable:
Ioana Radulescud00defe2017-06-06 10:00:32 -05002261err_reset:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002262 dpbp_close(priv->mc_io, 0, dpbp_dev->mc_handle);
2263err_open:
2264 fsl_mc_object_free(dpbp_dev);
2265
2266 return err;
2267}
2268
2269static void free_dpbp(struct dpaa2_eth_priv *priv)
2270{
2271 drain_pool(priv);
2272 dpbp_disable(priv->mc_io, 0, priv->dpbp_dev->mc_handle);
2273 dpbp_close(priv->mc_io, 0, priv->dpbp_dev->mc_handle);
2274 fsl_mc_object_free(priv->dpbp_dev);
2275}
2276
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002277static int set_buffer_layout(struct dpaa2_eth_priv *priv)
2278{
2279 struct device *dev = priv->net_dev->dev.parent;
2280 struct dpni_buffer_layout buf_layout = {0};
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002281 u16 rx_buf_align;
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002282 int err;
2283
Bogdan Purcareata8a4fd872017-10-29 08:20:42 +00002284 /* We need to check for WRIOP version 1.0.0, but depending on the MC
2285 * version, this number is not always provided correctly on rev1.
2286 * We need to check for both alternatives in this situation.
2287 */
2288 if (priv->dpni_attrs.wriop_version == DPAA2_WRIOP_VERSION(0, 0, 0) ||
2289 priv->dpni_attrs.wriop_version == DPAA2_WRIOP_VERSION(1, 0, 0))
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002290 rx_buf_align = DPAA2_ETH_RX_BUF_ALIGN_REV1;
Bogdan Purcareata8a4fd872017-10-29 08:20:42 +00002291 else
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002292 rx_buf_align = DPAA2_ETH_RX_BUF_ALIGN;
Bogdan Purcareata8a4fd872017-10-29 08:20:42 +00002293
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002294 /* tx buffer */
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002295 buf_layout.private_data_size = DPAA2_ETH_SWA_SIZE;
Ioana Radulescu859f9982018-04-26 18:23:47 +08002296 buf_layout.pass_timestamp = true;
2297 buf_layout.options = DPNI_BUF_LAYOUT_OPT_PRIVATE_DATA_SIZE |
2298 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002299 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2300 DPNI_QUEUE_TX, &buf_layout);
2301 if (err) {
2302 dev_err(dev, "dpni_set_buffer_layout(TX) failed\n");
2303 return err;
2304 }
2305
2306 /* tx-confirm buffer */
Ioana Radulescu859f9982018-04-26 18:23:47 +08002307 buf_layout.options = DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002308 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2309 DPNI_QUEUE_TX_CONFIRM, &buf_layout);
2310 if (err) {
2311 dev_err(dev, "dpni_set_buffer_layout(TX_CONF) failed\n");
2312 return err;
2313 }
2314
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002315 /* Now that we've set our tx buffer layout, retrieve the minimum
2316 * required tx data offset.
2317 */
2318 err = dpni_get_tx_data_offset(priv->mc_io, 0, priv->mc_token,
2319 &priv->tx_data_offset);
2320 if (err) {
2321 dev_err(dev, "dpni_get_tx_data_offset() failed\n");
2322 return err;
2323 }
2324
2325 if ((priv->tx_data_offset % 64) != 0)
2326 dev_warn(dev, "Tx data offset (%d) not a multiple of 64B\n",
2327 priv->tx_data_offset);
2328
2329 /* rx buffer */
Ioana Radulescu2b7c86e2017-12-08 06:47:56 -06002330 buf_layout.pass_frame_status = true;
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002331 buf_layout.pass_parser_result = true;
Ioana Ciocoi Radulescu27c87482019-02-04 17:00:35 +00002332 buf_layout.data_align = rx_buf_align;
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002333 buf_layout.data_head_room = dpaa2_eth_rx_head_room(priv);
2334 buf_layout.private_data_size = 0;
2335 buf_layout.options = DPNI_BUF_LAYOUT_OPT_PARSER_RESULT |
2336 DPNI_BUF_LAYOUT_OPT_FRAME_STATUS |
2337 DPNI_BUF_LAYOUT_OPT_DATA_ALIGN |
Ioana Radulescu859f9982018-04-26 18:23:47 +08002338 DPNI_BUF_LAYOUT_OPT_DATA_HEAD_ROOM |
2339 DPNI_BUF_LAYOUT_OPT_TIMESTAMP;
Bogdan Purcareata4b2d9fe2017-10-29 08:20:43 +00002340 err = dpni_set_buffer_layout(priv->mc_io, 0, priv->mc_token,
2341 DPNI_QUEUE_RX, &buf_layout);
2342 if (err) {
2343 dev_err(dev, "dpni_set_buffer_layout(RX) failed\n");
2344 return err;
2345 }
2346
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002347 return 0;
2348}
2349
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002350#define DPNI_ENQUEUE_FQID_VER_MAJOR 7
2351#define DPNI_ENQUEUE_FQID_VER_MINOR 9
2352
2353static inline int dpaa2_eth_enqueue_qd(struct dpaa2_eth_priv *priv,
2354 struct dpaa2_eth_fq *fq,
2355 struct dpaa2_fd *fd, u8 prio)
2356{
2357 return dpaa2_io_service_enqueue_qd(fq->channel->dpio,
2358 priv->tx_qdid, prio,
2359 fq->tx_qdbin, fd);
2360}
2361
2362static inline int dpaa2_eth_enqueue_fq(struct dpaa2_eth_priv *priv,
2363 struct dpaa2_eth_fq *fq,
2364 struct dpaa2_fd *fd,
2365 u8 prio __always_unused)
2366{
2367 return dpaa2_io_service_enqueue_fq(fq->channel->dpio,
2368 fq->tx_fqid, fd);
2369}
2370
2371static void set_enqueue_mode(struct dpaa2_eth_priv *priv)
2372{
2373 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_ENQUEUE_FQID_VER_MAJOR,
2374 DPNI_ENQUEUE_FQID_VER_MINOR) < 0)
2375 priv->enqueue = dpaa2_eth_enqueue_qd;
2376 else
2377 priv->enqueue = dpaa2_eth_enqueue_fq;
2378}
2379
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002380/* Configure the DPNI object this interface is associated with */
2381static int setup_dpni(struct fsl_mc_device *ls_dev)
2382{
2383 struct device *dev = &ls_dev->dev;
2384 struct dpaa2_eth_priv *priv;
2385 struct net_device *net_dev;
2386 int err;
2387
2388 net_dev = dev_get_drvdata(dev);
2389 priv = netdev_priv(net_dev);
2390
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002391 /* get a handle for the DPNI object */
Ioana Radulescu50eacbc2017-06-06 10:00:36 -05002392 err = dpni_open(priv->mc_io, 0, ls_dev->obj_desc.id, &priv->mc_token);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002393 if (err) {
2394 dev_err(dev, "dpni_open() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002395 return err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002396 }
2397
Ioana Radulescu311cffa2018-03-23 08:44:09 -05002398 /* Check if we can work with this DPNI object */
2399 err = dpni_get_api_version(priv->mc_io, 0, &priv->dpni_ver_major,
2400 &priv->dpni_ver_minor);
2401 if (err) {
2402 dev_err(dev, "dpni_get_api_version() failed\n");
2403 goto close;
2404 }
2405 if (dpaa2_eth_cmp_dpni_ver(priv, DPNI_VER_MAJOR, DPNI_VER_MINOR) < 0) {
2406 dev_err(dev, "DPNI version %u.%u not supported, need >= %u.%u\n",
2407 priv->dpni_ver_major, priv->dpni_ver_minor,
2408 DPNI_VER_MAJOR, DPNI_VER_MINOR);
2409 err = -ENOTSUPP;
2410 goto close;
2411 }
2412
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002413 ls_dev->mc_io = priv->mc_io;
2414 ls_dev->mc_handle = priv->mc_token;
2415
2416 err = dpni_reset(priv->mc_io, 0, priv->mc_token);
2417 if (err) {
2418 dev_err(dev, "dpni_reset() failed\n");
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002419 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002420 }
2421
2422 err = dpni_get_attributes(priv->mc_io, 0, priv->mc_token,
2423 &priv->dpni_attrs);
2424 if (err) {
2425 dev_err(dev, "dpni_get_attributes() failed (err=%d)\n", err);
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002426 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002427 }
2428
Ioana Radulescu308f64e2017-10-29 08:20:40 +00002429 err = set_buffer_layout(priv);
2430 if (err)
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002431 goto close;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002432
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002433 set_enqueue_mode(priv);
2434
Ioana Radulescuafb90db2018-10-01 13:44:58 +03002435 priv->cls_rules = devm_kzalloc(dev, sizeof(struct dpaa2_eth_cls_rule) *
2436 dpaa2_eth_fs_count(priv), GFP_KERNEL);
2437 if (!priv->cls_rules)
2438 goto close;
2439
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002440 return 0;
2441
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002442close:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002443 dpni_close(priv->mc_io, 0, priv->mc_token);
Ioana Radulescuf6dda802017-10-29 08:20:39 +00002444
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002445 return err;
2446}
2447
2448static void free_dpni(struct dpaa2_eth_priv *priv)
2449{
2450 int err;
2451
2452 err = dpni_reset(priv->mc_io, 0, priv->mc_token);
2453 if (err)
2454 netdev_warn(priv->net_dev, "dpni_reset() failed (err %d)\n",
2455 err);
2456
2457 dpni_close(priv->mc_io, 0, priv->mc_token);
2458}
2459
2460static int setup_rx_flow(struct dpaa2_eth_priv *priv,
2461 struct dpaa2_eth_fq *fq)
2462{
2463 struct device *dev = priv->net_dev->dev.parent;
2464 struct dpni_queue queue;
2465 struct dpni_queue_id qid;
2466 struct dpni_taildrop td;
2467 int err;
2468
2469 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
2470 DPNI_QUEUE_RX, 0, fq->flowid, &queue, &qid);
2471 if (err) {
2472 dev_err(dev, "dpni_get_queue(RX) failed\n");
2473 return err;
2474 }
2475
2476 fq->fqid = qid.fqid;
2477
2478 queue.destination.id = fq->channel->dpcon_id;
2479 queue.destination.type = DPNI_DEST_DPCON;
2480 queue.destination.priority = 1;
Ioana Radulescu75c583a2018-02-26 10:28:06 -06002481 queue.user_context = (u64)(uintptr_t)fq;
Ioana Ciorneif8b99582019-02-23 08:48:55 +00002482 queue.flc.stash_control = 1;
2483 queue.flc.value &= 0xFFFFFFFFFFFFFFC0;
2484 /* 01 01 00 - data, annotation, flow context */
2485 queue.flc.value |= 0x14;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002486 err = dpni_set_queue(priv->mc_io, 0, priv->mc_token,
2487 DPNI_QUEUE_RX, 0, fq->flowid,
Ioana Ciorneif8b99582019-02-23 08:48:55 +00002488 DPNI_QUEUE_OPT_USER_CTX | DPNI_QUEUE_OPT_DEST |
2489 DPNI_QUEUE_OPT_FLC,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002490 &queue);
2491 if (err) {
2492 dev_err(dev, "dpni_set_queue(RX) failed\n");
2493 return err;
2494 }
2495
2496 td.enable = 1;
2497 td.threshold = DPAA2_ETH_TAILDROP_THRESH;
2498 err = dpni_set_taildrop(priv->mc_io, 0, priv->mc_token, DPNI_CP_QUEUE,
2499 DPNI_QUEUE_RX, 0, fq->flowid, &td);
2500 if (err) {
2501 dev_err(dev, "dpni_set_threshold() failed\n");
2502 return err;
2503 }
2504
Ioana Radulescud678be12019-03-01 17:47:24 +00002505 /* xdp_rxq setup */
2506 err = xdp_rxq_info_reg(&fq->channel->xdp_rxq, priv->net_dev,
2507 fq->flowid);
2508 if (err) {
2509 dev_err(dev, "xdp_rxq_info_reg failed\n");
2510 return err;
2511 }
2512
2513 err = xdp_rxq_info_reg_mem_model(&fq->channel->xdp_rxq,
2514 MEM_TYPE_PAGE_ORDER0, NULL);
2515 if (err) {
2516 dev_err(dev, "xdp_rxq_info_reg_mem_model failed\n");
2517 return err;
2518 }
2519
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002520 return 0;
2521}
2522
2523static int setup_tx_flow(struct dpaa2_eth_priv *priv,
2524 struct dpaa2_eth_fq *fq)
2525{
2526 struct device *dev = priv->net_dev->dev.parent;
2527 struct dpni_queue queue;
2528 struct dpni_queue_id qid;
2529 int err;
2530
2531 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
2532 DPNI_QUEUE_TX, 0, fq->flowid, &queue, &qid);
2533 if (err) {
2534 dev_err(dev, "dpni_get_queue(TX) failed\n");
2535 return err;
2536 }
2537
2538 fq->tx_qdbin = qid.qdbin;
Ioana Ciocoi Radulescu1fa0f682019-02-04 17:00:36 +00002539 fq->tx_fqid = qid.fqid;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002540
2541 err = dpni_get_queue(priv->mc_io, 0, priv->mc_token,
2542 DPNI_QUEUE_TX_CONFIRM, 0, fq->flowid,
2543 &queue, &qid);
2544 if (err) {
2545 dev_err(dev, "dpni_get_queue(TX_CONF) failed\n");
2546 return err;
2547 }
2548
2549 fq->fqid = qid.fqid;
2550
2551 queue.destination.id = fq->channel->dpcon_id;
2552 queue.destination.type = DPNI_DEST_DPCON;
2553 queue.destination.priority = 0;
Ioana Radulescu75c583a2018-02-26 10:28:06 -06002554 queue.user_context = (u64)(uintptr_t)fq;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002555 err = dpni_set_queue(priv->mc_io, 0, priv->mc_token,
2556 DPNI_QUEUE_TX_CONFIRM, 0, fq->flowid,
2557 DPNI_QUEUE_OPT_USER_CTX | DPNI_QUEUE_OPT_DEST,
2558 &queue);
2559 if (err) {
2560 dev_err(dev, "dpni_set_queue(TX_CONF) failed\n");
2561 return err;
2562 }
2563
2564 return 0;
2565}
2566
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002567/* Supported header fields for Rx hash distribution key */
Ioana Radulescuf76c4832018-10-01 13:44:56 +03002568static const struct dpaa2_eth_dist_fields dist_fields[] = {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002569 {
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002570 /* L2 header */
2571 .rxnfc_field = RXH_L2DA,
2572 .cls_prot = NET_PROT_ETH,
2573 .cls_field = NH_FLD_ETH_DA,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002574 .id = DPAA2_ETH_DIST_ETHDST,
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002575 .size = 6,
2576 }, {
Ioana Radulescuafb90db2018-10-01 13:44:58 +03002577 .cls_prot = NET_PROT_ETH,
2578 .cls_field = NH_FLD_ETH_SA,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002579 .id = DPAA2_ETH_DIST_ETHSRC,
Ioana Radulescuafb90db2018-10-01 13:44:58 +03002580 .size = 6,
2581 }, {
2582 /* This is the last ethertype field parsed:
2583 * depending on frame format, it can be the MAC ethertype
2584 * or the VLAN etype.
2585 */
2586 .cls_prot = NET_PROT_ETH,
2587 .cls_field = NH_FLD_ETH_TYPE,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002588 .id = DPAA2_ETH_DIST_ETHTYPE,
Ioana Radulescuafb90db2018-10-01 13:44:58 +03002589 .size = 2,
2590 }, {
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002591 /* VLAN header */
2592 .rxnfc_field = RXH_VLAN,
2593 .cls_prot = NET_PROT_VLAN,
2594 .cls_field = NH_FLD_VLAN_TCI,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002595 .id = DPAA2_ETH_DIST_VLAN,
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002596 .size = 2,
2597 }, {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002598 /* IP header */
2599 .rxnfc_field = RXH_IP_SRC,
2600 .cls_prot = NET_PROT_IP,
2601 .cls_field = NH_FLD_IP_SRC,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002602 .id = DPAA2_ETH_DIST_IPSRC,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002603 .size = 4,
2604 }, {
2605 .rxnfc_field = RXH_IP_DST,
2606 .cls_prot = NET_PROT_IP,
2607 .cls_field = NH_FLD_IP_DST,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002608 .id = DPAA2_ETH_DIST_IPDST,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002609 .size = 4,
2610 }, {
2611 .rxnfc_field = RXH_L3_PROTO,
2612 .cls_prot = NET_PROT_IP,
2613 .cls_field = NH_FLD_IP_PROTO,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002614 .id = DPAA2_ETH_DIST_IPPROTO,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002615 .size = 1,
2616 }, {
2617 /* Using UDP ports, this is functionally equivalent to raw
2618 * byte pairs from L4 header.
2619 */
2620 .rxnfc_field = RXH_L4_B_0_1,
2621 .cls_prot = NET_PROT_UDP,
2622 .cls_field = NH_FLD_UDP_PORT_SRC,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002623 .id = DPAA2_ETH_DIST_L4SRC,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002624 .size = 2,
2625 }, {
2626 .rxnfc_field = RXH_L4_B_2_3,
2627 .cls_prot = NET_PROT_UDP,
2628 .cls_field = NH_FLD_UDP_PORT_DST,
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002629 .id = DPAA2_ETH_DIST_L4DST,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002630 .size = 2,
2631 },
2632};
2633
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03002634/* Configure the Rx hash key using the legacy API */
2635static int config_legacy_hash_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
2636{
2637 struct device *dev = priv->net_dev->dev.parent;
2638 struct dpni_rx_tc_dist_cfg dist_cfg;
2639 int err;
2640
2641 memset(&dist_cfg, 0, sizeof(dist_cfg));
2642
2643 dist_cfg.key_cfg_iova = key;
2644 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
2645 dist_cfg.dist_mode = DPNI_DIST_MODE_HASH;
2646
2647 err = dpni_set_rx_tc_dist(priv->mc_io, 0, priv->mc_token, 0, &dist_cfg);
2648 if (err)
2649 dev_err(dev, "dpni_set_rx_tc_dist failed\n");
2650
2651 return err;
2652}
2653
2654/* Configure the Rx hash key using the new API */
2655static int config_hash_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
2656{
2657 struct device *dev = priv->net_dev->dev.parent;
2658 struct dpni_rx_dist_cfg dist_cfg;
2659 int err;
2660
2661 memset(&dist_cfg, 0, sizeof(dist_cfg));
2662
2663 dist_cfg.key_cfg_iova = key;
2664 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
2665 dist_cfg.enable = 1;
2666
2667 err = dpni_set_rx_hash_dist(priv->mc_io, 0, priv->mc_token, &dist_cfg);
2668 if (err)
2669 dev_err(dev, "dpni_set_rx_hash_dist failed\n");
2670
2671 return err;
2672}
2673
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002674/* Configure the Rx flow classification key */
2675static int config_cls_key(struct dpaa2_eth_priv *priv, dma_addr_t key)
2676{
2677 struct device *dev = priv->net_dev->dev.parent;
2678 struct dpni_rx_dist_cfg dist_cfg;
2679 int err;
2680
2681 memset(&dist_cfg, 0, sizeof(dist_cfg));
2682
2683 dist_cfg.key_cfg_iova = key;
2684 dist_cfg.dist_size = dpaa2_eth_queue_count(priv);
2685 dist_cfg.enable = 1;
2686
2687 err = dpni_set_rx_fs_dist(priv->mc_io, 0, priv->mc_token, &dist_cfg);
2688 if (err)
2689 dev_err(dev, "dpni_set_rx_fs_dist failed\n");
2690
2691 return err;
2692}
2693
Ioana Radulescuafb90db2018-10-01 13:44:58 +03002694/* Size of the Rx flow classification key */
2695int dpaa2_eth_cls_key_size(void)
2696{
2697 int i, size = 0;
2698
2699 for (i = 0; i < ARRAY_SIZE(dist_fields); i++)
2700 size += dist_fields[i].size;
2701
2702 return size;
2703}
2704
2705/* Offset of header field in Rx classification key */
2706int dpaa2_eth_cls_fld_off(int prot, int field)
2707{
2708 int i, off = 0;
2709
2710 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
2711 if (dist_fields[i].cls_prot == prot &&
2712 dist_fields[i].cls_field == field)
2713 return off;
2714 off += dist_fields[i].size;
2715 }
2716
2717 WARN_ONCE(1, "Unsupported header field used for Rx flow cls\n");
2718 return 0;
2719}
2720
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002721/* Set Rx distribution (hash or flow classification) key
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002722 * flags is a combination of RXH_ bits
2723 */
Ioana Ciornei3233c152018-10-12 16:27:29 +00002724static int dpaa2_eth_set_dist_key(struct net_device *net_dev,
2725 enum dpaa2_eth_rx_dist type, u64 flags)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002726{
2727 struct device *dev = net_dev->dev.parent;
2728 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
2729 struct dpkg_profile_cfg cls_cfg;
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002730 u32 rx_hash_fields = 0;
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03002731 dma_addr_t key_iova;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002732 u8 *dma_mem;
2733 int i;
2734 int err = 0;
2735
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002736 memset(&cls_cfg, 0, sizeof(cls_cfg));
2737
Ioana Radulescuf76c4832018-10-01 13:44:56 +03002738 for (i = 0; i < ARRAY_SIZE(dist_fields); i++) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002739 struct dpkg_extract *key =
2740 &cls_cfg.extracts[cls_cfg.num_extracts];
2741
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002742 /* For Rx hashing key we set only the selected fields.
2743 * For Rx flow classification key we set all supported fields
2744 */
2745 if (type == DPAA2_ETH_RX_DIST_HASH) {
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002746 if (!(flags & dist_fields[i].id))
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002747 continue;
2748 rx_hash_fields |= dist_fields[i].rxnfc_field;
2749 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002750
2751 if (cls_cfg.num_extracts >= DPKG_MAX_NUM_OF_EXTRACTS) {
2752 dev_err(dev, "error adding key extraction rule, too many rules?\n");
2753 return -E2BIG;
2754 }
2755
2756 key->type = DPKG_EXTRACT_FROM_HDR;
Ioana Radulescuf76c4832018-10-01 13:44:56 +03002757 key->extract.from_hdr.prot = dist_fields[i].cls_prot;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002758 key->extract.from_hdr.type = DPKG_FULL_FIELD;
Ioana Radulescuf76c4832018-10-01 13:44:56 +03002759 key->extract.from_hdr.field = dist_fields[i].cls_field;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002760 cls_cfg.num_extracts++;
2761 }
2762
Ioana Radulescue40ef9e2017-06-06 10:00:30 -05002763 dma_mem = kzalloc(DPAA2_CLASSIFIER_DMA_SIZE, GFP_KERNEL);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002764 if (!dma_mem)
2765 return -ENOMEM;
2766
2767 err = dpni_prepare_key_cfg(&cls_cfg, dma_mem);
2768 if (err) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05002769 dev_err(dev, "dpni_prepare_key_cfg error %d\n", err);
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03002770 goto free_key;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002771 }
2772
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002773 /* Prepare for setting the rx dist */
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03002774 key_iova = dma_map_single(dev, dma_mem, DPAA2_CLASSIFIER_DMA_SIZE,
2775 DMA_TO_DEVICE);
2776 if (dma_mapping_error(dev, key_iova)) {
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002777 dev_err(dev, "DMA mapping failed\n");
2778 err = -ENOMEM;
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03002779 goto free_key;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002780 }
2781
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002782 if (type == DPAA2_ETH_RX_DIST_HASH) {
2783 if (dpaa2_eth_has_legacy_dist(priv))
2784 err = config_legacy_hash_key(priv, key_iova);
2785 else
2786 err = config_hash_key(priv, key_iova);
2787 } else {
2788 err = config_cls_key(priv, key_iova);
2789 }
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03002790
2791 dma_unmap_single(dev, key_iova, DPAA2_CLASSIFIER_DMA_SIZE,
2792 DMA_TO_DEVICE);
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002793 if (!err && type == DPAA2_ETH_RX_DIST_HASH)
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002794 priv->rx_hash_fields = rx_hash_fields;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002795
Ioana Radulescudf85aeb2018-10-01 13:44:55 +03002796free_key:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002797 kfree(dma_mem);
2798 return err;
2799}
2800
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002801int dpaa2_eth_set_hash(struct net_device *net_dev, u64 flags)
2802{
2803 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002804 u64 key = 0;
2805 int i;
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002806
2807 if (!dpaa2_eth_hash_enabled(priv))
2808 return -EOPNOTSUPP;
2809
Ioana Ciocoi Radulescu3a1e6b82019-04-16 17:13:29 +00002810 for (i = 0; i < ARRAY_SIZE(dist_fields); i++)
2811 if (dist_fields[i].rxnfc_field & flags)
2812 key |= dist_fields[i].id;
2813
2814 return dpaa2_eth_set_dist_key(net_dev, DPAA2_ETH_RX_DIST_HASH, key);
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002815}
2816
2817static int dpaa2_eth_set_cls(struct dpaa2_eth_priv *priv)
2818{
2819 struct device *dev = priv->net_dev->dev.parent;
Ioana Ciocoi Radulescudf8e2492019-04-16 17:13:28 +00002820 int err;
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002821
2822 /* Check if we actually support Rx flow classification */
2823 if (dpaa2_eth_has_legacy_dist(priv)) {
2824 dev_dbg(dev, "Rx cls not supported by current MC version\n");
2825 return -EOPNOTSUPP;
2826 }
2827
Ioana Ciocoi Radulescu61f9bf02019-04-16 17:13:29 +00002828 if (!dpaa2_eth_fs_enabled(priv) || !dpaa2_eth_fs_mask_enabled(priv)) {
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002829 dev_dbg(dev, "Rx cls disabled in DPNI options\n");
2830 return -EOPNOTSUPP;
2831 }
2832
2833 if (!dpaa2_eth_hash_enabled(priv)) {
2834 dev_dbg(dev, "Rx cls disabled for single queue DPNIs\n");
2835 return -EOPNOTSUPP;
2836 }
2837
Ioana Ciocoi Radulescudf8e2492019-04-16 17:13:28 +00002838 err = dpaa2_eth_set_dist_key(priv->net_dev, DPAA2_ETH_RX_DIST_CLS, 0);
2839 if (err)
2840 return err;
2841
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002842 priv->rx_cls_enabled = 1;
2843
Ioana Ciocoi Radulescudf8e2492019-04-16 17:13:28 +00002844 return 0;
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002845}
2846
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002847/* Bind the DPNI to its needed objects and resources: buffer pool, DPIOs,
2848 * frame queues and channels
2849 */
2850static int bind_dpni(struct dpaa2_eth_priv *priv)
2851{
2852 struct net_device *net_dev = priv->net_dev;
2853 struct device *dev = net_dev->dev.parent;
2854 struct dpni_pools_cfg pools_params;
2855 struct dpni_error_cfg err_cfg;
2856 int err = 0;
2857 int i;
2858
2859 pools_params.num_dpbp = 1;
2860 pools_params.pools[0].dpbp_id = priv->dpbp_dev->obj_desc.id;
2861 pools_params.pools[0].backup_pool = 0;
2862 pools_params.pools[0].buffer_size = DPAA2_ETH_RX_BUF_SIZE;
2863 err = dpni_set_pools(priv->mc_io, 0, priv->mc_token, &pools_params);
2864 if (err) {
2865 dev_err(dev, "dpni_set_pools() failed\n");
2866 return err;
2867 }
2868
Ioana Radulescu227686b2018-07-27 09:12:59 -05002869 /* have the interface implicitly distribute traffic based on
2870 * the default hash key
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002871 */
Ioana Radulescu227686b2018-07-27 09:12:59 -05002872 err = dpaa2_eth_set_hash(net_dev, DPAA2_RXH_DEFAULT);
Ioana Ciocoi Radulescuedad8d22018-09-24 15:36:21 +00002873 if (err && err != -EOPNOTSUPP)
Ioana Radulescu0f4c2952017-10-11 08:29:50 -05002874 dev_err(dev, "Failed to configure hashing\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002875
Ioana Radulescu4aaaf9b2018-10-01 13:44:57 +03002876 /* Configure the flow classification key; it includes all
2877 * supported header fields and cannot be modified at runtime
2878 */
2879 err = dpaa2_eth_set_cls(priv);
2880 if (err && err != -EOPNOTSUPP)
2881 dev_err(dev, "Failed to configure Rx classification key\n");
2882
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002883 /* Configure handling of error frames */
Ioana Radulescu39163c02017-06-06 10:00:39 -05002884 err_cfg.errors = DPAA2_FAS_RX_ERR_MASK;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002885 err_cfg.set_frame_annotation = 1;
2886 err_cfg.error_action = DPNI_ERROR_ACTION_DISCARD;
2887 err = dpni_set_errors_behavior(priv->mc_io, 0, priv->mc_token,
2888 &err_cfg);
2889 if (err) {
2890 dev_err(dev, "dpni_set_errors_behavior failed\n");
2891 return err;
2892 }
2893
2894 /* Configure Rx and Tx conf queues to generate CDANs */
2895 for (i = 0; i < priv->num_fqs; i++) {
2896 switch (priv->fq[i].type) {
2897 case DPAA2_RX_FQ:
2898 err = setup_rx_flow(priv, &priv->fq[i]);
2899 break;
2900 case DPAA2_TX_CONF_FQ:
2901 err = setup_tx_flow(priv, &priv->fq[i]);
2902 break;
2903 default:
2904 dev_err(dev, "Invalid FQ type %d\n", priv->fq[i].type);
2905 return -EINVAL;
2906 }
2907 if (err)
2908 return err;
2909 }
2910
2911 err = dpni_get_qdid(priv->mc_io, 0, priv->mc_token,
2912 DPNI_QUEUE_TX, &priv->tx_qdid);
2913 if (err) {
2914 dev_err(dev, "dpni_get_qdid() failed\n");
2915 return err;
2916 }
2917
2918 return 0;
2919}
2920
2921/* Allocate rings for storing incoming frame descriptors */
2922static int alloc_rings(struct dpaa2_eth_priv *priv)
2923{
2924 struct net_device *net_dev = priv->net_dev;
2925 struct device *dev = net_dev->dev.parent;
2926 int i;
2927
2928 for (i = 0; i < priv->num_channels; i++) {
2929 priv->channel[i]->store =
2930 dpaa2_io_store_create(DPAA2_ETH_STORE_SIZE, dev);
2931 if (!priv->channel[i]->store) {
2932 netdev_err(net_dev, "dpaa2_io_store_create() failed\n");
2933 goto err_ring;
2934 }
2935 }
2936
2937 return 0;
2938
2939err_ring:
2940 for (i = 0; i < priv->num_channels; i++) {
2941 if (!priv->channel[i]->store)
2942 break;
2943 dpaa2_io_store_destroy(priv->channel[i]->store);
2944 }
2945
2946 return -ENOMEM;
2947}
2948
2949static void free_rings(struct dpaa2_eth_priv *priv)
2950{
2951 int i;
2952
2953 for (i = 0; i < priv->num_channels; i++)
2954 dpaa2_io_store_destroy(priv->channel[i]->store);
2955}
2956
Ioana Radulescu6ab00862017-06-06 10:00:40 -05002957static int set_mac_addr(struct dpaa2_eth_priv *priv)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002958{
Ioana Radulescu6ab00862017-06-06 10:00:40 -05002959 struct net_device *net_dev = priv->net_dev;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002960 struct device *dev = net_dev->dev.parent;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002961 u8 mac_addr[ETH_ALEN], dpni_mac_addr[ETH_ALEN];
Ioana Radulescu6ab00862017-06-06 10:00:40 -05002962 int err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002963
2964 /* Get firmware address, if any */
2965 err = dpni_get_port_mac_addr(priv->mc_io, 0, priv->mc_token, mac_addr);
2966 if (err) {
2967 dev_err(dev, "dpni_get_port_mac_addr() failed\n");
2968 return err;
2969 }
2970
2971 /* Get DPNI attributes address, if any */
2972 err = dpni_get_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
2973 dpni_mac_addr);
2974 if (err) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05002975 dev_err(dev, "dpni_get_primary_mac_addr() failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002976 return err;
2977 }
2978
2979 /* First check if firmware has any address configured by bootloader */
2980 if (!is_zero_ether_addr(mac_addr)) {
2981 /* If the DPMAC addr != DPNI addr, update it */
2982 if (!ether_addr_equal(mac_addr, dpni_mac_addr)) {
2983 err = dpni_set_primary_mac_addr(priv->mc_io, 0,
2984 priv->mc_token,
2985 mac_addr);
2986 if (err) {
2987 dev_err(dev, "dpni_set_primary_mac_addr() failed\n");
2988 return err;
2989 }
2990 }
2991 memcpy(net_dev->dev_addr, mac_addr, net_dev->addr_len);
2992 } else if (is_zero_ether_addr(dpni_mac_addr)) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05002993 /* No MAC address configured, fill in net_dev->dev_addr
2994 * with a random one
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002995 */
2996 eth_hw_addr_random(net_dev);
Ioana Radulescu6ab00862017-06-06 10:00:40 -05002997 dev_dbg_once(dev, "device(s) have all-zero hwaddr, replaced with random\n");
2998
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05002999 err = dpni_set_primary_mac_addr(priv->mc_io, 0, priv->mc_token,
3000 net_dev->dev_addr);
3001 if (err) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003002 dev_err(dev, "dpni_set_primary_mac_addr() failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003003 return err;
3004 }
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003005
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003006 /* Override NET_ADDR_RANDOM set by eth_hw_addr_random(); for all
3007 * practical purposes, this will be our "permanent" mac address,
3008 * at least until the next reboot. This move will also permit
3009 * register_netdevice() to properly fill up net_dev->perm_addr.
3010 */
3011 net_dev->addr_assign_type = NET_ADDR_PERM;
3012 } else {
3013 /* NET_ADDR_PERM is default, all we have to do is
3014 * fill in the device addr.
3015 */
3016 memcpy(net_dev->dev_addr, dpni_mac_addr, net_dev->addr_len);
3017 }
3018
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003019 return 0;
3020}
3021
3022static int netdev_init(struct net_device *net_dev)
3023{
3024 struct device *dev = net_dev->dev.parent;
3025 struct dpaa2_eth_priv *priv = netdev_priv(net_dev);
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003026 u32 options = priv->dpni_attrs.options;
3027 u64 supported = 0, not_supported = 0;
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003028 u8 bcast_addr[ETH_ALEN];
Ioana Radulescubb5b42c2017-06-06 10:00:41 -05003029 u8 num_queues;
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003030 int err;
3031
3032 net_dev->netdev_ops = &dpaa2_eth_ops;
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003033 net_dev->ethtool_ops = &dpaa2_ethtool_ops;
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003034
3035 err = set_mac_addr(priv);
3036 if (err)
3037 return err;
3038
3039 /* Explicitly add the broadcast address to the MAC filtering table */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003040 eth_broadcast_addr(bcast_addr);
3041 err = dpni_add_mac_addr(priv->mc_io, 0, priv->mc_token, bcast_addr);
3042 if (err) {
Ioana Radulescu6ab00862017-06-06 10:00:40 -05003043 dev_err(dev, "dpni_add_mac_addr() failed\n");
3044 return err;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003045 }
3046
Ioana Radulescu3ccc8d42018-07-09 10:01:10 -05003047 /* Set MTU upper limit; lower limit is 68B (default value) */
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003048 net_dev->max_mtu = DPAA2_ETH_MAX_MTU;
Ioana Radulescu00fee002018-07-09 10:01:11 -05003049 err = dpni_set_max_frame_length(priv->mc_io, 0, priv->mc_token,
Ioana Radulescu81f34e92018-07-12 12:12:29 -05003050 DPAA2_ETH_MFL);
Ioana Radulescu00fee002018-07-09 10:01:11 -05003051 if (err) {
3052 dev_err(dev, "dpni_set_max_frame_length() failed\n");
3053 return err;
3054 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003055
Ioana Radulescubb5b42c2017-06-06 10:00:41 -05003056 /* Set actual number of queues in the net device */
3057 num_queues = dpaa2_eth_queue_count(priv);
3058 err = netif_set_real_num_tx_queues(net_dev, num_queues);
3059 if (err) {
3060 dev_err(dev, "netif_set_real_num_tx_queues() failed\n");
3061 return err;
3062 }
3063 err = netif_set_real_num_rx_queues(net_dev, num_queues);
3064 if (err) {
3065 dev_err(dev, "netif_set_real_num_rx_queues() failed\n");
3066 return err;
3067 }
3068
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003069 /* Capabilities listing */
3070 supported |= IFF_LIVE_ADDR_CHANGE;
3071
3072 if (options & DPNI_OPT_NO_MAC_FILTER)
3073 not_supported |= IFF_UNICAST_FLT;
3074 else
3075 supported |= IFF_UNICAST_FLT;
3076
3077 net_dev->priv_flags |= supported;
3078 net_dev->priv_flags &= ~not_supported;
3079
3080 /* Features */
3081 net_dev->features = NETIF_F_RXCSUM |
3082 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
3083 NETIF_F_SG | NETIF_F_HIGHDMA |
3084 NETIF_F_LLTX;
3085 net_dev->hw_features = net_dev->features;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003086
3087 return 0;
3088}
3089
3090static int poll_link_state(void *arg)
3091{
3092 struct dpaa2_eth_priv *priv = (struct dpaa2_eth_priv *)arg;
3093 int err;
3094
3095 while (!kthread_should_stop()) {
3096 err = link_state_update(priv);
3097 if (unlikely(err))
3098 return err;
3099
3100 msleep(DPAA2_ETH_LINK_STATE_REFRESH);
3101 }
3102
3103 return 0;
3104}
3105
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003106static irqreturn_t dpni_irq0_handler_thread(int irq_num, void *arg)
3107{
Ioana Radulescu112197d2017-10-11 08:29:49 -05003108 u32 status = ~0;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003109 struct device *dev = (struct device *)arg;
3110 struct fsl_mc_device *dpni_dev = to_fsl_mc_device(dev);
3111 struct net_device *net_dev = dev_get_drvdata(dev);
3112 int err;
3113
3114 err = dpni_get_irq_status(dpni_dev->mc_io, 0, dpni_dev->mc_handle,
3115 DPNI_IRQ_INDEX, &status);
3116 if (unlikely(err)) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003117 netdev_err(net_dev, "Can't get irq status (err %d)\n", err);
Ioana Radulescu112197d2017-10-11 08:29:49 -05003118 return IRQ_HANDLED;
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003119 }
3120
Ioana Radulescu112197d2017-10-11 08:29:49 -05003121 if (status & DPNI_IRQ_EVENT_LINK_CHANGED)
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003122 link_state_update(netdev_priv(net_dev));
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003123
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003124 return IRQ_HANDLED;
3125}
3126
3127static int setup_irqs(struct fsl_mc_device *ls_dev)
3128{
3129 int err = 0;
3130 struct fsl_mc_device_irq *irq;
3131
3132 err = fsl_mc_allocate_irqs(ls_dev);
3133 if (err) {
3134 dev_err(&ls_dev->dev, "MC irqs allocation failed\n");
3135 return err;
3136 }
3137
3138 irq = ls_dev->irqs[0];
3139 err = devm_request_threaded_irq(&ls_dev->dev, irq->msi_desc->irq,
Ioana Radulescufdc9b532018-03-23 08:44:05 -05003140 NULL, dpni_irq0_handler_thread,
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003141 IRQF_NO_SUSPEND | IRQF_ONESHOT,
3142 dev_name(&ls_dev->dev), &ls_dev->dev);
3143 if (err < 0) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003144 dev_err(&ls_dev->dev, "devm_request_threaded_irq(): %d\n", err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003145 goto free_mc_irq;
3146 }
3147
3148 err = dpni_set_irq_mask(ls_dev->mc_io, 0, ls_dev->mc_handle,
3149 DPNI_IRQ_INDEX, DPNI_IRQ_EVENT_LINK_CHANGED);
3150 if (err < 0) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003151 dev_err(&ls_dev->dev, "dpni_set_irq_mask(): %d\n", err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003152 goto free_irq;
3153 }
3154
3155 err = dpni_set_irq_enable(ls_dev->mc_io, 0, ls_dev->mc_handle,
3156 DPNI_IRQ_INDEX, 1);
3157 if (err < 0) {
Ioana Radulescu77160af2017-06-06 10:00:28 -05003158 dev_err(&ls_dev->dev, "dpni_set_irq_enable(): %d\n", err);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003159 goto free_irq;
3160 }
3161
3162 return 0;
3163
3164free_irq:
3165 devm_free_irq(&ls_dev->dev, irq->msi_desc->irq, &ls_dev->dev);
3166free_mc_irq:
3167 fsl_mc_free_irqs(ls_dev);
3168
3169 return err;
3170}
3171
3172static void add_ch_napi(struct dpaa2_eth_priv *priv)
3173{
3174 int i;
3175 struct dpaa2_eth_channel *ch;
3176
3177 for (i = 0; i < priv->num_channels; i++) {
3178 ch = priv->channel[i];
3179 /* NAPI weight *MUST* be a multiple of DPAA2_ETH_STORE_SIZE */
3180 netif_napi_add(priv->net_dev, &ch->napi, dpaa2_eth_poll,
3181 NAPI_POLL_WEIGHT);
3182 }
3183}
3184
3185static void del_ch_napi(struct dpaa2_eth_priv *priv)
3186{
3187 int i;
3188 struct dpaa2_eth_channel *ch;
3189
3190 for (i = 0; i < priv->num_channels; i++) {
3191 ch = priv->channel[i];
3192 netif_napi_del(&ch->napi);
3193 }
3194}
3195
3196static int dpaa2_eth_probe(struct fsl_mc_device *dpni_dev)
3197{
3198 struct device *dev;
3199 struct net_device *net_dev = NULL;
3200 struct dpaa2_eth_priv *priv = NULL;
3201 int err = 0;
3202
3203 dev = &dpni_dev->dev;
3204
3205 /* Net device */
3206 net_dev = alloc_etherdev_mq(sizeof(*priv), DPAA2_ETH_MAX_TX_QUEUES);
3207 if (!net_dev) {
3208 dev_err(dev, "alloc_etherdev_mq() failed\n");
3209 return -ENOMEM;
3210 }
3211
3212 SET_NETDEV_DEV(net_dev, dev);
3213 dev_set_drvdata(dev, net_dev);
3214
3215 priv = netdev_priv(net_dev);
3216 priv->net_dev = net_dev;
3217
Ioana Radulescu08eb2392017-05-24 07:13:27 -05003218 priv->iommu_domain = iommu_get_domain_for_dev(dev);
3219
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003220 /* Obtain a MC portal */
3221 err = fsl_mc_portal_allocate(dpni_dev, FSL_MC_IO_ATOMIC_CONTEXT_PORTAL,
3222 &priv->mc_io);
3223 if (err) {
Ioana Radulescu8c369612018-03-20 07:04:46 -05003224 if (err == -ENXIO)
3225 err = -EPROBE_DEFER;
3226 else
3227 dev_err(dev, "MC portal allocation failed\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003228 goto err_portal_alloc;
3229 }
3230
3231 /* MC objects initialization and configuration */
3232 err = setup_dpni(dpni_dev);
3233 if (err)
3234 goto err_dpni_setup;
3235
3236 err = setup_dpio(priv);
3237 if (err)
3238 goto err_dpio_setup;
3239
3240 setup_fqs(priv);
3241
3242 err = setup_dpbp(priv);
3243 if (err)
3244 goto err_dpbp_setup;
3245
3246 err = bind_dpni(priv);
3247 if (err)
3248 goto err_bind;
3249
3250 /* Add a NAPI context for each channel */
3251 add_ch_napi(priv);
3252
3253 /* Percpu statistics */
3254 priv->percpu_stats = alloc_percpu(*priv->percpu_stats);
3255 if (!priv->percpu_stats) {
3256 dev_err(dev, "alloc_percpu(percpu_stats) failed\n");
3257 err = -ENOMEM;
3258 goto err_alloc_percpu_stats;
3259 }
Ioana Radulescu85047ab2017-04-28 04:50:31 -05003260 priv->percpu_extras = alloc_percpu(*priv->percpu_extras);
3261 if (!priv->percpu_extras) {
3262 dev_err(dev, "alloc_percpu(percpu_extras) failed\n");
3263 err = -ENOMEM;
3264 goto err_alloc_percpu_extras;
3265 }
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003266
3267 err = netdev_init(net_dev);
3268 if (err)
3269 goto err_netdev_init;
3270
3271 /* Configure checksum offload based on current interface flags */
3272 err = set_rx_csum(priv, !!(net_dev->features & NETIF_F_RXCSUM));
3273 if (err)
3274 goto err_csum;
3275
3276 err = set_tx_csum(priv, !!(net_dev->features &
3277 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)));
3278 if (err)
3279 goto err_csum;
3280
3281 err = alloc_rings(priv);
3282 if (err)
3283 goto err_alloc_rings;
3284
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003285 err = setup_irqs(dpni_dev);
3286 if (err) {
3287 netdev_warn(net_dev, "Failed to set link interrupt, fall back to polling\n");
3288 priv->poll_thread = kthread_run(poll_link_state, priv,
3289 "%s_poll_link", net_dev->name);
3290 if (IS_ERR(priv->poll_thread)) {
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003291 dev_err(dev, "Error starting polling thread\n");
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003292 goto err_poll_thread;
3293 }
3294 priv->do_link_poll = true;
3295 }
3296
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003297 err = register_netdev(net_dev);
3298 if (err < 0) {
3299 dev_err(dev, "register_netdev() failed\n");
3300 goto err_netdev_reg;
3301 }
3302
Ioana Radulescu091a19e2019-01-18 16:16:00 +00003303#ifdef CONFIG_DEBUG_FS
3304 dpaa2_dbg_add(priv);
3305#endif
3306
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003307 dev_info(dev, "Probed interface %s\n", net_dev->name);
3308 return 0;
3309
Ioana Radulescu7f12c8a32018-08-29 04:42:39 -05003310err_netdev_reg:
3311 if (priv->do_link_poll)
3312 kthread_stop(priv->poll_thread);
3313 else
3314 fsl_mc_free_irqs(dpni_dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003315err_poll_thread:
3316 free_rings(priv);
3317err_alloc_rings:
3318err_csum:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003319err_netdev_init:
Ioana Radulescu85047ab2017-04-28 04:50:31 -05003320 free_percpu(priv->percpu_extras);
3321err_alloc_percpu_extras:
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003322 free_percpu(priv->percpu_stats);
3323err_alloc_percpu_stats:
3324 del_ch_napi(priv);
3325err_bind:
3326 free_dpbp(priv);
3327err_dpbp_setup:
3328 free_dpio(priv);
3329err_dpio_setup:
3330 free_dpni(priv);
3331err_dpni_setup:
3332 fsl_mc_portal_free(priv->mc_io);
3333err_portal_alloc:
3334 dev_set_drvdata(dev, NULL);
3335 free_netdev(net_dev);
3336
3337 return err;
3338}
3339
3340static int dpaa2_eth_remove(struct fsl_mc_device *ls_dev)
3341{
3342 struct device *dev;
3343 struct net_device *net_dev;
3344 struct dpaa2_eth_priv *priv;
3345
3346 dev = &ls_dev->dev;
3347 net_dev = dev_get_drvdata(dev);
3348 priv = netdev_priv(net_dev);
3349
Ioana Radulescu091a19e2019-01-18 16:16:00 +00003350#ifdef CONFIG_DEBUG_FS
3351 dpaa2_dbg_remove(priv);
3352#endif
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003353 unregister_netdev(net_dev);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003354
3355 if (priv->do_link_poll)
3356 kthread_stop(priv->poll_thread);
3357 else
3358 fsl_mc_free_irqs(ls_dev);
3359
3360 free_rings(priv);
3361 free_percpu(priv->percpu_stats);
Ioana Radulescu85047ab2017-04-28 04:50:31 -05003362 free_percpu(priv->percpu_extras);
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003363
3364 del_ch_napi(priv);
3365 free_dpbp(priv);
3366 free_dpio(priv);
3367 free_dpni(priv);
3368
3369 fsl_mc_portal_free(priv->mc_io);
3370
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003371 free_netdev(net_dev);
3372
Ioana Radulescu4bc07aa2018-03-23 10:23:36 -05003373 dev_dbg(net_dev->dev.parent, "Removed interface %s\n", net_dev->name);
Ioana Radulescu7472dd92018-03-23 08:44:06 -05003374
Ioana Radulescu6e2387e2017-04-28 04:50:29 -05003375 return 0;
3376}
3377
3378static const struct fsl_mc_device_id dpaa2_eth_match_id_table[] = {
3379 {
3380 .vendor = FSL_MC_VENDOR_FREESCALE,
3381 .obj_type = "dpni",
3382 },
3383 { .vendor = 0x0 }
3384};
3385MODULE_DEVICE_TABLE(fslmc, dpaa2_eth_match_id_table);
3386
3387static struct fsl_mc_driver dpaa2_eth_driver = {
3388 .driver = {
3389 .name = KBUILD_MODNAME,
3390 .owner = THIS_MODULE,
3391 },
3392 .probe = dpaa2_eth_probe,
3393 .remove = dpaa2_eth_remove,
3394 .match_id_table = dpaa2_eth_match_id_table
3395};
3396
Ioana Radulescu091a19e2019-01-18 16:16:00 +00003397static int __init dpaa2_eth_driver_init(void)
3398{
3399 int err;
3400
3401 dpaa2_eth_dbg_init();
3402 err = fsl_mc_driver_register(&dpaa2_eth_driver);
3403 if (err) {
3404 dpaa2_eth_dbg_exit();
3405 return err;
3406 }
3407
3408 return 0;
3409}
3410
3411static void __exit dpaa2_eth_driver_exit(void)
3412{
3413 dpaa2_eth_dbg_exit();
3414 fsl_mc_driver_unregister(&dpaa2_eth_driver);
3415}
3416
3417module_init(dpaa2_eth_driver_init);
3418module_exit(dpaa2_eth_driver_exit);