dpaa2-eth.h 14.5 KB
Newer Older
1
/* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
2
/* Copyright 2014-2016 Freescale Semiconductor Inc.
3
 * Copyright 2016-2020 NXP
4 5 6 7 8 9 10
 */

#ifndef __DPAA2_ETH_H
#define __DPAA2_ETH_H

#include <linux/netdevice.h>
#include <linux/if_vlan.h>
11
#include <linux/fsl/mc.h>
12

13 14
#include <soc/fsl/dpaa2-io.h>
#include <soc/fsl/dpaa2-fd.h>
15 16 17
#include "dpni.h"
#include "dpni-cmd.h"

18
#include "dpaa2-eth-trace.h"
19
#include "dpaa2-eth-debugfs.h"
20
#include "dpaa2-mac.h"
21

22 23
#define DPAA2_WRIOP_VERSION(x, y, z) ((x) << 10 | (y) << 5 | (z) << 0)

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
#define DPAA2_ETH_STORE_SIZE		16

/* Maximum number of scatter-gather entries in an ingress frame,
 * considering the maximum receive frame size is 64K
 */
#define DPAA2_ETH_MAX_SG_ENTRIES	((64 * 1024) / DPAA2_ETH_RX_BUF_SIZE)

/* Maximum acceptable MTU value. It is in direct relation with the hardware
 * enforced Max Frame Length (currently 10k).
 */
#define DPAA2_ETH_MFL			(10 * 1024)
#define DPAA2_ETH_MAX_MTU		(DPAA2_ETH_MFL - VLAN_ETH_HLEN)
/* Convert L3 MTU to L2 MFL */
#define DPAA2_ETH_L2_MAX_FRM(mtu)	((mtu) + VLAN_ETH_HLEN)

/* Set the taildrop threshold (in bytes) to allow the enqueue of several jumbo
 * frames in the Rx queues (length of the current frame is not
 * taken into account when making the taildrop decision)
 */
#define DPAA2_ETH_TAILDROP_THRESH	(64 * 1024)

45 46 47 48 49
/* Maximum number of Tx confirmation frames to be processed
 * in a single NAPI call
 */
#define DPAA2_ETH_TXCONF_PER_NAPI	256

50 51 52 53 54 55 56
/* Buffer quota per queue. Must be large enough such that for minimum sized
 * frames taildrop kicks in before the bpool gets depleted, so we compute
 * how many 64B frames fit inside the taildrop threshold and add a margin
 * to accommodate the buffer refill delay.
 */
#define DPAA2_ETH_MAX_FRAMES_PER_QUEUE	(DPAA2_ETH_TAILDROP_THRESH / 64)
#define DPAA2_ETH_NUM_BUFS		(DPAA2_ETH_MAX_FRAMES_PER_QUEUE + 256)
57 58
#define DPAA2_ETH_REFILL_THRESH \
	(DPAA2_ETH_NUM_BUFS - DPAA2_ETH_BUFS_PER_CMD)
59 60 61 62 63 64

/* Maximum number of buffers that can be acquired/released through a single
 * QBMan command
 */
#define DPAA2_ETH_BUFS_PER_CMD		7

65
/* Hardware requires alignment for ingress/egress buffer addresses */
66
#define DPAA2_ETH_TX_BUF_ALIGN		64
67

68 69 70 71 72
#define DPAA2_ETH_RX_BUF_RAW_SIZE	PAGE_SIZE
#define DPAA2_ETH_RX_BUF_TAILROOM \
	SKB_DATA_ALIGN(sizeof(struct skb_shared_info))
#define DPAA2_ETH_RX_BUF_SIZE \
	(DPAA2_ETH_RX_BUF_RAW_SIZE - DPAA2_ETH_RX_BUF_TAILROOM)
73

74
/* Hardware annotation area in RX/TX buffers */
75
#define DPAA2_ETH_RX_HWA_SIZE		64
76 77 78 79
#define DPAA2_ETH_TX_HWA_SIZE		128

/* PTP nominal frequency 1GHz */
#define DPAA2_PTP_CLK_PERIOD_NS		1
80

81 82
/* Due to a limitation in WRIOP 1.0.0, the RX buffer data must be aligned
 * to 256B. For newer revisions, the requirement is only for 64B alignment
83
 */
84 85
#define DPAA2_ETH_RX_BUF_ALIGN_REV1	256
#define DPAA2_ETH_RX_BUF_ALIGN		64
86 87 88 89 90 91 92

/* We are accommodating a skb backpointer and some S/G info
 * in the frame's software annotation. The hardware
 * options are either 0 or 64, so we choose the latter.
 */
#define DPAA2_ETH_SWA_SIZE		64

93 94 95 96 97 98
/* We store different information in the software annotation area of a Tx frame
 * based on what type of frame it is
 */
enum dpaa2_eth_swa_type {
	DPAA2_ETH_SWA_SINGLE,
	DPAA2_ETH_SWA_SG,
99
	DPAA2_ETH_SWA_XDP,
100 101
};

102 103
/* Must keep this struct smaller than DPAA2_ETH_SWA_SIZE */
struct dpaa2_eth_swa {
104 105 106 107 108 109 110 111 112 113 114
	enum dpaa2_eth_swa_type type;
	union {
		struct {
			struct sk_buff *skb;
		} single;
		struct {
			struct sk_buff *skb;
			struct scatterlist *scl;
			int num_sg;
			int sgt_size;
		} sg;
115 116 117 118
		struct {
			int dma_size;
			struct xdp_frame *xdpf;
		} xdp;
119
	};
120 121 122 123 124 125 126 127 128 129
};

/* Annotation valid bits in FD FRC */
#define DPAA2_FD_FRC_FASV		0x8000
#define DPAA2_FD_FRC_FAEADV		0x4000
#define DPAA2_FD_FRC_FAPRV		0x2000
#define DPAA2_FD_FRC_FAIADV		0x1000
#define DPAA2_FD_FRC_FASWOV		0x0800
#define DPAA2_FD_FRC_FAICFDV		0x0400

130
/* Error bits in FD CTRL */
131 132 133 134 135
#define DPAA2_FD_RX_ERR_MASK		(FD_CTRL_SBE | FD_CTRL_FAERR)
#define DPAA2_FD_TX_ERR_MASK		(FD_CTRL_UFD	| \
					 FD_CTRL_SBE	| \
					 FD_CTRL_FSE	| \
					 FD_CTRL_FAERR)
136

137
/* Annotation bits in FD CTRL */
138
#define DPAA2_FD_CTRL_ASAL		0x00020000	/* ASAL = 128B */
139 140 141 142 143 144 145

/* Frame annotation status */
struct dpaa2_fas {
	u8 reserved;
	u8 ppid;
	__le16 ifpid;
	__le32 status;
146
};
147 148 149 150 151 152 153

/* Frame annotation status word is located in the first 8 bytes
 * of the buffer's hardware annoatation area
 */
#define DPAA2_FAS_OFFSET		0
#define DPAA2_FAS_SIZE			(sizeof(struct dpaa2_fas))

154 155 156 157 158 159 160 161 162 163 164 165 166 167
/* Timestamp is located in the next 8 bytes of the buffer's
 * hardware annotation area
 */
#define DPAA2_TS_OFFSET			0x8

/* Frame annotation egress action descriptor */
#define DPAA2_FAEAD_OFFSET		0x58

struct dpaa2_faead {
	__le32 conf_fqid;
	__le32 ctrl;
};

#define DPAA2_FAEAD_A2V			0x20000000
168
#define DPAA2_FAEAD_A4V			0x08000000
169
#define DPAA2_FAEAD_UPDV		0x00001000
170
#define DPAA2_FAEAD_EBDDV		0x00002000
171 172
#define DPAA2_FAEAD_UPD			0x00000010

173
/* Accessors for the hardware annotation fields that we use */
174 175 176 177 178 179 180 181 182
static inline void *dpaa2_get_hwa(void *buf_addr, bool swa)
{
	return buf_addr + (swa ? DPAA2_ETH_SWA_SIZE : 0);
}

static inline struct dpaa2_fas *dpaa2_get_fas(void *buf_addr, bool swa)
{
	return dpaa2_get_hwa(buf_addr, swa) + DPAA2_FAS_OFFSET;
}
183

184 185 186 187 188 189 190 191 192 193
static inline __le64 *dpaa2_get_ts(void *buf_addr, bool swa)
{
	return dpaa2_get_hwa(buf_addr, swa) + DPAA2_TS_OFFSET;
}

static inline struct dpaa2_faead *dpaa2_get_faead(void *buf_addr, bool swa)
{
	return dpaa2_get_hwa(buf_addr, swa) + DPAA2_FAEAD_OFFSET;
}

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
/* Error and status bits in the frame annotation status word */
/* Debug frame, otherwise supposed to be discarded */
#define DPAA2_FAS_DISC			0x80000000
/* MACSEC frame */
#define DPAA2_FAS_MS			0x40000000
#define DPAA2_FAS_PTP			0x08000000
/* Ethernet multicast frame */
#define DPAA2_FAS_MC			0x04000000
/* Ethernet broadcast frame */
#define DPAA2_FAS_BC			0x02000000
#define DPAA2_FAS_KSE			0x00040000
#define DPAA2_FAS_EOFHE			0x00020000
#define DPAA2_FAS_MNLE			0x00010000
#define DPAA2_FAS_TIDE			0x00008000
#define DPAA2_FAS_PIEE			0x00004000
/* Frame length error */
#define DPAA2_FAS_FLE			0x00002000
/* Frame physical error */
#define DPAA2_FAS_FPE			0x00001000
#define DPAA2_FAS_PTE			0x00000080
#define DPAA2_FAS_ISP			0x00000040
#define DPAA2_FAS_PHE			0x00000020
#define DPAA2_FAS_BLE			0x00000010
/* L3 csum validation performed */
#define DPAA2_FAS_L3CV			0x00000008
/* L3 csum error */
#define DPAA2_FAS_L3CE			0x00000004
/* L4 csum validation performed */
#define DPAA2_FAS_L4CV			0x00000002
/* L4 csum error */
#define DPAA2_FAS_L4CE			0x00000001
/* Possible errors on the ingress path */
226
#define DPAA2_FAS_RX_ERR_MASK		(DPAA2_FAS_KSE		| \
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
					 DPAA2_FAS_EOFHE	| \
					 DPAA2_FAS_MNLE		| \
					 DPAA2_FAS_TIDE		| \
					 DPAA2_FAS_PIEE		| \
					 DPAA2_FAS_FLE		| \
					 DPAA2_FAS_FPE		| \
					 DPAA2_FAS_PTE		| \
					 DPAA2_FAS_ISP		| \
					 DPAA2_FAS_PHE		| \
					 DPAA2_FAS_BLE		| \
					 DPAA2_FAS_L3CE		| \
					 DPAA2_FAS_L4CE)

/* Time in milliseconds between link state updates */
#define DPAA2_ETH_LINK_STATE_REFRESH	1000

/* Number of times to retry a frame enqueue before giving up.
 * Value determined empirically, in order to minimize the number
 * of frames dropped on Tx
 */
#define DPAA2_ETH_ENQUEUE_RETRIES	10

249 250 251 252 253 254 255 256
/* Number of times to retry DPIO portal operations while waiting
 * for portal to finish executing current command and become
 * available. We want to avoid being stuck in a while loop in case
 * hardware becomes unresponsive, but not give up too easily if
 * the portal really is busy for valid reasons
 */
#define DPAA2_ETH_SWP_BUSY_RETRIES	1000

257 258 259 260 261 262 263 264
/* Driver statistics, other than those in struct rtnl_link_stats64.
 * These are usually collected per-CPU and aggregated by ethtool.
 */
struct dpaa2_eth_drv_stats {
	__u64	tx_conf_frames;
	__u64	tx_conf_bytes;
	__u64	tx_sg_frames;
	__u64	tx_sg_bytes;
265
	__u64	tx_reallocs;
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
	__u64	rx_sg_frames;
	__u64	rx_sg_bytes;
	/* Enqueues retried due to portal busy */
	__u64	tx_portal_busy;
};

/* Per-FQ statistics */
struct dpaa2_eth_fq_stats {
	/* Number of frames received on this queue */
	__u64 frames;
};

/* Per-channel statistics */
struct dpaa2_eth_ch_stats {
	/* Volatile dequeues retried due to portal busy */
	__u64 dequeue_portal_busy;
	/* Pull errors */
	__u64 pull_err;
284 285
	/* Number of CDANs; useful to estimate avg NAPI len */
	__u64 cdan;
286 287 288 289
	/* XDP counters */
	__u64 xdp_drop;
	__u64 xdp_tx;
	__u64 xdp_tx_err;
290
	__u64 xdp_redirect;
291 292
};

293
/* Maximum number of queues associated with a DPNI */
294
#define DPAA2_ETH_MAX_TCS		8
295
#define DPAA2_ETH_MAX_RX_QUEUES		16
296
#define DPAA2_ETH_MAX_TX_QUEUES		16
297 298
#define DPAA2_ETH_MAX_QUEUES		(DPAA2_ETH_MAX_RX_QUEUES + \
					DPAA2_ETH_MAX_TX_QUEUES)
I
Ioana Radulescu 已提交
299 300
#define DPAA2_ETH_MAX_NETDEV_QUEUES	\
	(DPAA2_ETH_MAX_TX_QUEUES * DPAA2_ETH_MAX_TCS)
301

302
#define DPAA2_ETH_MAX_DPCONS		16
303 304 305 306 307 308 309 310 311 312 313

enum dpaa2_eth_fq_type {
	DPAA2_RX_FQ = 0,
	DPAA2_TX_CONF_FQ,
};

struct dpaa2_eth_priv;

struct dpaa2_eth_fq {
	u32 fqid;
	u32 tx_qdbin;
314
	u32 tx_fqid[DPAA2_ETH_MAX_TCS];
315
	u16 flowid;
316
	u8 tc;
317
	int target_cpu;
I
Ioana Ciocoi Radulescu 已提交
318 319
	u32 dq_frames;
	u32 dq_bytes;
320 321 322
	struct dpaa2_eth_channel *channel;
	enum dpaa2_eth_fq_type type;

323 324 325
	void (*consume)(struct dpaa2_eth_priv *priv,
			struct dpaa2_eth_channel *ch,
			const struct dpaa2_fd *fd,
326
			struct dpaa2_eth_fq *fq);
327
	struct dpaa2_eth_fq_stats stats;
328 329

	struct dpaa2_fd xdp_fds[DEV_MAP_BULK_SIZE];
330 331
};

332 333
struct dpaa2_eth_ch_xdp {
	struct bpf_prog *prog;
334 335
	u64 drop_bufs[DPAA2_ETH_BUFS_PER_CMD];
	int drop_cnt;
336
	unsigned int res;
337 338
};

339 340 341 342 343 344
struct dpaa2_eth_channel {
	struct dpaa2_io_notification_ctx nctx;
	struct fsl_mc_device *dpcon;
	int dpcon_id;
	int ch_id;
	struct napi_struct napi;
345
	struct dpaa2_io *dpio;
346 347 348
	struct dpaa2_io_store *store;
	struct dpaa2_eth_priv *priv;
	int buf_count;
349
	struct dpaa2_eth_ch_stats stats;
350
	struct dpaa2_eth_ch_xdp xdp;
351
	struct xdp_rxq_info xdp_rxq;
352
	struct list_head *rx_list;
353 354
};

I
Ioana Radulescu 已提交
355
struct dpaa2_eth_dist_fields {
356 357 358 359
	u64 rxnfc_field;
	enum net_prot cls_prot;
	int cls_field;
	int size;
360
	u64 id;
361 362
};

363 364 365 366 367
struct dpaa2_eth_cls_rule {
	struct ethtool_rx_flow_spec fs;
	u8 in_use;
};

368 369 370 371 372 373
/* Driver private data */
struct dpaa2_eth_priv {
	struct net_device *net_dev;

	u8 num_fqs;
	struct dpaa2_eth_fq fq[DPAA2_ETH_MAX_QUEUES];
374 375
	int (*enqueue)(struct dpaa2_eth_priv *priv,
		       struct dpaa2_eth_fq *fq,
376
		       struct dpaa2_fd *fd, u8 prio,
377
		       u32 num_frames,
378
		       int *frames_enqueued);
379 380 381 382 383

	u8 num_channels;
	struct dpaa2_eth_channel *channel[DPAA2_ETH_MAX_DPCONS];

	struct dpni_attr dpni_attrs;
384 385
	u16 dpni_ver_major;
	u16 dpni_ver_minor;
386 387 388
	u16 tx_data_offset;

	struct fsl_mc_device *dpbp_dev;
389
	u16 bpid;
390
	struct iommu_domain *iommu_domain;
391

392 393 394
	bool tx_tstamp; /* Tx timestamping enabled */
	bool rx_tstamp; /* Rx timestamping enabled */

395 396 397 398 399 400 401 402 403
	u16 tx_qdid;
	struct fsl_mc_io *mc_io;
	/* Cores which have an affine DPIO/DPCON.
	 * This is the cpu set on which Rx and Tx conf frames are processed
	 */
	struct cpumask dpio_cpumask;

	/* Standard statistics */
	struct rtnl_link_stats64 __percpu *percpu_stats;
404 405
	/* Extra stats, in addition to the ones known by the kernel */
	struct dpaa2_eth_drv_stats __percpu *percpu_extras;
406 407

	u16 mc_token;
408
	u8 rx_td_enabled;
409 410 411 412

	struct dpni_link_state link_state;
	bool do_link_poll;
	struct task_struct *poll_thread;
413 414 415

	/* enabled ethtool hashing bits */
	u64 rx_hash_fields;
416
	u64 rx_cls_fields;
417
	struct dpaa2_eth_cls_rule *cls_rules;
418
	u8 rx_cls_enabled;
419
	struct bpf_prog *xdp_prog;
420 421 422
#ifdef CONFIG_DEBUG_FS
	struct dpaa2_debugfs dbg;
#endif
423 424

	struct dpaa2_mac *mac;
425 426 427 428 429 430
};

#define DPAA2_RXH_SUPPORTED	(RXH_L2DA | RXH_VLAN | RXH_L3_PROTO \
				| RXH_IP_SRC | RXH_IP_DST | RXH_L4_B_0_1 \
				| RXH_L4_B_2_3)

431 432 433 434
/* default Rx hash options, set during probing */
#define DPAA2_RXH_DEFAULT	(RXH_L3_PROTO | RXH_IP_SRC | RXH_IP_DST | \
				 RXH_L4_B_0_1 | RXH_L4_B_2_3)

435 436 437 438 439 440
#define dpaa2_eth_hash_enabled(priv)	\
	((priv)->dpni_attrs.num_queues > 1)

/* Required by struct dpni_rx_tc_dist_cfg::key_cfg_iova */
#define DPAA2_CLASSIFIER_DMA_SIZE 256

441
extern const struct ethtool_ops dpaa2_ethtool_ops;
442
extern int dpaa2_phc_index;
443

444 445 446 447 448 449 450 451
static inline int dpaa2_eth_cmp_dpni_ver(struct dpaa2_eth_priv *priv,
					 u16 ver_major, u16 ver_minor)
{
	if (priv->dpni_ver_major == ver_major)
		return priv->dpni_ver_minor - ver_minor;
	return priv->dpni_ver_major - ver_major;
}

452 453 454 455 456 457 458 459 460 461
/* Minimum firmware version that supports a more flexible API
 * for configuring the Rx flow hash key
 */
#define DPNI_RX_DIST_KEY_VER_MAJOR	7
#define DPNI_RX_DIST_KEY_VER_MINOR	5

#define dpaa2_eth_has_legacy_dist(priv)					\
	(dpaa2_eth_cmp_dpni_ver((priv), DPNI_RX_DIST_KEY_VER_MAJOR,	\
				DPNI_RX_DIST_KEY_VER_MINOR) < 0)

462 463 464 465 466 467
#define dpaa2_eth_fs_enabled(priv)	\
	(!((priv)->dpni_attrs.options & DPNI_OPT_NO_FS))

#define dpaa2_eth_fs_mask_enabled(priv)	\
	((priv)->dpni_attrs.options & DPNI_OPT_HAS_KEY_MASKING)

468 469 470
#define dpaa2_eth_fs_count(priv)        \
	((priv)->dpni_attrs.fs_entries)

471 472 473
#define dpaa2_eth_tc_count(priv)	\
	((priv)->dpni_attrs.num_tcs)

474 475 476 477
/* We have exactly one {Rx, Tx conf} queue per channel */
#define dpaa2_eth_queue_count(priv)     \
	((priv)->num_channels)

478 479 480 481 482
enum dpaa2_eth_rx_dist {
	DPAA2_ETH_RX_DIST_HASH,
	DPAA2_ETH_RX_DIST_CLS
};

483 484 485 486 487 488 489 490 491 492
/* Unique IDs for the supported Rx classification header fields */
#define DPAA2_ETH_DIST_ETHDST		BIT(0)
#define DPAA2_ETH_DIST_ETHSRC		BIT(1)
#define DPAA2_ETH_DIST_ETHTYPE		BIT(2)
#define DPAA2_ETH_DIST_VLAN		BIT(3)
#define DPAA2_ETH_DIST_IPSRC		BIT(4)
#define DPAA2_ETH_DIST_IPDST		BIT(5)
#define DPAA2_ETH_DIST_IPPROTO		BIT(6)
#define DPAA2_ETH_DIST_L4SRC		BIT(7)
#define DPAA2_ETH_DIST_L4DST		BIT(8)
493
#define DPAA2_ETH_DIST_ALL		(~0ULL)
494

495 496 497 498 499 500
#define DPNI_PAUSE_VER_MAJOR		7
#define DPNI_PAUSE_VER_MINOR		13
#define dpaa2_eth_has_pause_support(priv)			\
	(dpaa2_eth_cmp_dpni_ver((priv), DPNI_PAUSE_VER_MAJOR,	\
				DPNI_PAUSE_VER_MINOR) >= 0)

501
static inline
502 503
unsigned int dpaa2_eth_needed_headroom(struct dpaa2_eth_priv *priv,
				       struct sk_buff *skb)
504
{
505 506
	unsigned int headroom = DPAA2_ETH_SWA_SIZE;

507 508 509 510 511 512
	/* If we don't have an skb (e.g. XDP buffer), we only need space for
	 * the software annotation area
	 */
	if (!skb)
		return headroom;

513 514 515
	/* For non-linear skbs we have no headroom requirement, as we build a
	 * SG frame with a newly allocated SGT buffer
	 */
516 517 518
	if (skb_is_nonlinear(skb))
		return 0;

519 520 521 522 523
	/* If we have Tx timestamping, need 128B hardware annotation */
	if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
		headroom += DPAA2_ETH_TX_HWA_SIZE;

	return headroom;
524 525 526 527 528 529 530
}

/* Extra headroom space requested to hardware, in order to make sure there's
 * no realloc'ing in forwarding scenarios
 */
static inline unsigned int dpaa2_eth_rx_head_room(struct dpaa2_eth_priv *priv)
{
531
	return priv->tx_data_offset - DPAA2_ETH_RX_HWA_SIZE;
532 533
}

534
int dpaa2_eth_set_hash(struct net_device *net_dev, u64 flags);
535 536
int dpaa2_eth_set_cls(struct net_device *net_dev, u64 key);
int dpaa2_eth_cls_key_size(u64 key);
537
int dpaa2_eth_cls_fld_off(int prot, int field);
538
void dpaa2_eth_cls_trim_rule(void *key_mem, u64 fields);
539

540
#endif	/* __DPAA2_H */