xref: /openbmc/linux/drivers/net/ethernet/netronome/nfp/flower/cmsg.h (revision 05cf4fe738242183f1237f1b3a28b4479348c0a1)
1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2 /* Copyright (C) 2017-2018 Netronome Systems, Inc. */
3 
4 #ifndef NFP_FLOWER_CMSG_H
5 #define NFP_FLOWER_CMSG_H
6 
7 #include <linux/bitfield.h>
8 #include <linux/skbuff.h>
9 #include <linux/types.h>
10 #include <net/geneve.h>
11 
12 #include "../nfp_app.h"
13 #include "../nfpcore/nfp_cpp.h"
14 
15 #define NFP_FLOWER_LAYER_EXT_META	BIT(0)
16 #define NFP_FLOWER_LAYER_PORT		BIT(1)
17 #define NFP_FLOWER_LAYER_MAC		BIT(2)
18 #define NFP_FLOWER_LAYER_TP		BIT(3)
19 #define NFP_FLOWER_LAYER_IPV4		BIT(4)
20 #define NFP_FLOWER_LAYER_IPV6		BIT(5)
21 #define NFP_FLOWER_LAYER_CT		BIT(6)
22 #define NFP_FLOWER_LAYER_VXLAN		BIT(7)
23 
24 #define NFP_FLOWER_LAYER2_GENEVE	BIT(5)
25 #define NFP_FLOWER_LAYER2_GENEVE_OP	BIT(6)
26 
27 #define NFP_FLOWER_MASK_VLAN_PRIO	GENMASK(15, 13)
28 #define NFP_FLOWER_MASK_VLAN_CFI	BIT(12)
29 #define NFP_FLOWER_MASK_VLAN_VID	GENMASK(11, 0)
30 
31 #define NFP_FLOWER_MASK_MPLS_LB		GENMASK(31, 12)
32 #define NFP_FLOWER_MASK_MPLS_TC		GENMASK(11, 9)
33 #define NFP_FLOWER_MASK_MPLS_BOS	BIT(8)
34 #define NFP_FLOWER_MASK_MPLS_Q		BIT(0)
35 
36 #define NFP_FL_IP_FRAG_FIRST		BIT(7)
37 #define NFP_FL_IP_FRAGMENTED		BIT(6)
38 
39 /* Compressed HW representation of TCP Flags */
40 #define NFP_FL_TCP_FLAG_URG		BIT(4)
41 #define NFP_FL_TCP_FLAG_PSH		BIT(3)
42 #define NFP_FL_TCP_FLAG_RST		BIT(2)
43 #define NFP_FL_TCP_FLAG_SYN		BIT(1)
44 #define NFP_FL_TCP_FLAG_FIN		BIT(0)
45 
46 #define NFP_FL_SC_ACT_DROP		0x80000000
47 #define NFP_FL_SC_ACT_USER		0x7D000000
48 #define NFP_FL_SC_ACT_POPV		0x6A000000
49 #define NFP_FL_SC_ACT_NULL		0x00000000
50 
51 /* The maximum action list size (in bytes) supported by the NFP.
52  */
53 #define NFP_FL_MAX_A_SIZ		1216
54 #define NFP_FL_LW_SIZ			2
55 
56 /* Maximum allowed geneve options */
57 #define NFP_FL_MAX_GENEVE_OPT_ACT	32
58 #define NFP_FL_MAX_GENEVE_OPT_CNT	64
59 #define NFP_FL_MAX_GENEVE_OPT_KEY	32
60 
61 /* Action opcodes */
62 #define NFP_FL_ACTION_OPCODE_OUTPUT		0
63 #define NFP_FL_ACTION_OPCODE_PUSH_VLAN		1
64 #define NFP_FL_ACTION_OPCODE_POP_VLAN		2
65 #define NFP_FL_ACTION_OPCODE_SET_IPV4_TUNNEL	6
66 #define NFP_FL_ACTION_OPCODE_SET_ETHERNET	7
67 #define NFP_FL_ACTION_OPCODE_SET_IPV4_ADDRS	9
68 #define NFP_FL_ACTION_OPCODE_SET_IPV6_SRC	11
69 #define NFP_FL_ACTION_OPCODE_SET_IPV6_DST	12
70 #define NFP_FL_ACTION_OPCODE_SET_UDP		14
71 #define NFP_FL_ACTION_OPCODE_SET_TCP		15
72 #define NFP_FL_ACTION_OPCODE_PRE_LAG		16
73 #define NFP_FL_ACTION_OPCODE_PRE_TUNNEL		17
74 #define NFP_FL_ACTION_OPCODE_PUSH_GENEVE	26
75 #define NFP_FL_ACTION_OPCODE_NUM		32
76 
77 #define NFP_FL_OUT_FLAGS_LAST		BIT(15)
78 #define NFP_FL_OUT_FLAGS_USE_TUN	BIT(4)
79 #define NFP_FL_OUT_FLAGS_TYPE_IDX	GENMASK(2, 0)
80 
81 #define NFP_FL_PUSH_VLAN_PRIO		GENMASK(15, 13)
82 #define NFP_FL_PUSH_VLAN_CFI		BIT(12)
83 #define NFP_FL_PUSH_VLAN_VID		GENMASK(11, 0)
84 
85 /* LAG ports */
86 #define NFP_FL_LAG_OUT			0xC0DE0000
87 
88 /* Tunnel ports */
89 #define NFP_FL_PORT_TYPE_TUN		0x50000000
90 #define NFP_FL_IPV4_TUNNEL_TYPE		GENMASK(7, 4)
91 #define NFP_FL_IPV4_PRE_TUN_INDEX	GENMASK(2, 0)
92 
93 #define NFP_FLOWER_WORKQ_MAX_SKBS	30000
94 
95 #define nfp_flower_cmsg_warn(app, fmt, args...)                         \
96 	do {                                                            \
97 		if (net_ratelimit())                                    \
98 			nfp_warn((app)->cpp, fmt, ## args);             \
99 	} while (0)
100 
101 enum nfp_flower_tun_type {
102 	NFP_FL_TUNNEL_NONE =	0,
103 	NFP_FL_TUNNEL_VXLAN =	2,
104 	NFP_FL_TUNNEL_GENEVE =	4,
105 };
106 
107 struct nfp_fl_act_head {
108 	u8 jump_id;
109 	u8 len_lw;
110 };
111 
112 struct nfp_fl_set_eth {
113 	struct nfp_fl_act_head head;
114 	__be16 reserved;
115 	u8 eth_addr_mask[ETH_ALEN * 2];
116 	u8 eth_addr_val[ETH_ALEN * 2];
117 };
118 
119 struct nfp_fl_set_ip4_addrs {
120 	struct nfp_fl_act_head head;
121 	__be16 reserved;
122 	__be32 ipv4_src_mask;
123 	__be32 ipv4_src;
124 	__be32 ipv4_dst_mask;
125 	__be32 ipv4_dst;
126 };
127 
128 struct nfp_fl_set_ipv6_addr {
129 	struct nfp_fl_act_head head;
130 	__be16 reserved;
131 	struct {
132 		__be32 mask;
133 		__be32 exact;
134 	} ipv6[4];
135 };
136 
137 struct nfp_fl_set_tport {
138 	struct nfp_fl_act_head head;
139 	__be16 reserved;
140 	u8 tp_port_mask[4];
141 	u8 tp_port_val[4];
142 };
143 
144 struct nfp_fl_output {
145 	struct nfp_fl_act_head head;
146 	__be16 flags;
147 	__be32 port;
148 };
149 
150 struct nfp_fl_push_vlan {
151 	struct nfp_fl_act_head head;
152 	__be16 reserved;
153 	__be16 vlan_tpid;
154 	__be16 vlan_tci;
155 };
156 
157 struct nfp_fl_pop_vlan {
158 	struct nfp_fl_act_head head;
159 	__be16 reserved;
160 };
161 
162 struct nfp_fl_pre_lag {
163 	struct nfp_fl_act_head head;
164 	__be16 group_id;
165 	u8 lag_version[3];
166 	u8 instance;
167 };
168 
169 #define NFP_FL_PRE_LAG_VER_OFF	8
170 
171 struct nfp_fl_pre_tunnel {
172 	struct nfp_fl_act_head head;
173 	__be16 reserved;
174 	__be32 ipv4_dst;
175 	/* reserved for use with IPv6 addresses */
176 	__be32 extra[3];
177 };
178 
179 struct nfp_fl_set_ipv4_udp_tun {
180 	struct nfp_fl_act_head head;
181 	__be16 reserved;
182 	__be64 tun_id __packed;
183 	__be32 tun_type_index;
184 	__be16 tun_flags;
185 	u8 ttl;
186 	u8 tos;
187 	__be32 extra;
188 	u8 tun_len;
189 	u8 res2;
190 	__be16 tun_proto;
191 };
192 
193 struct nfp_fl_push_geneve {
194 	struct nfp_fl_act_head head;
195 	__be16 reserved;
196 	__be16 class;
197 	u8 type;
198 	u8 length;
199 	u8 opt_data[];
200 };
201 
202 /* Metadata with L2 (1W/4B)
203  * ----------------------------------------------------------------
204  *    3                   2                   1
205  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
206  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
207  * |    key_type   |    mask_id    | PCP |p|   vlan outermost VID  |
208  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
209  *                                 ^                               ^
210  *                           NOTE: |             TCI               |
211  *                                 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
212  */
213 struct nfp_flower_meta_tci {
214 	u8 nfp_flow_key_layer;
215 	u8 mask_id;
216 	__be16 tci;
217 };
218 
219 /* Extended metadata for additional key_layers (1W/4B)
220  * ----------------------------------------------------------------
221  *    3                   2                   1
222  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
223  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
224  * |                      nfp_flow_key_layer2                      |
225  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
226  */
227 struct nfp_flower_ext_meta {
228 	__be32 nfp_flow_key_layer2;
229 };
230 
231 /* Port details (1W/4B)
232  * ----------------------------------------------------------------
233  *    3                   2                   1
234  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
235  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
236  * |                         port_ingress                          |
237  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
238  */
239 struct nfp_flower_in_port {
240 	__be32 in_port;
241 };
242 
243 /* L2 details (4W/16B)
244  *    3                   2                   1
245  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
246  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
247  * |                     mac_addr_dst, 31 - 0                      |
248  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
249  * |      mac_addr_dst, 47 - 32    |     mac_addr_src, 15 - 0      |
250  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
251  * |                     mac_addr_src, 47 - 16                     |
252  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
253  * |       mpls outermost label            |  TC |B|   reserved  |q|
254  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
255  */
256 struct nfp_flower_mac_mpls {
257 	u8 mac_dst[6];
258 	u8 mac_src[6];
259 	__be32 mpls_lse;
260 };
261 
262 /* L4 ports (for UDP, TCP, SCTP) (1W/4B)
263  *    3                   2                   1
264  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
265  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
266  * |            port_src           |           port_dst            |
267  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
268  */
269 struct nfp_flower_tp_ports {
270 	__be16 port_src;
271 	__be16 port_dst;
272 };
273 
274 struct nfp_flower_ip_ext {
275 	u8 tos;
276 	u8 proto;
277 	u8 ttl;
278 	u8 flags;
279 };
280 
281 /* L3 IPv4 details (3W/12B)
282  *    3                   2                   1
283  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
284  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
285  * |    DSCP   |ECN|   protocol    |      ttl      |     flags     |
286  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
287  * |                        ipv4_addr_src                          |
288  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
289  * |                        ipv4_addr_dst                          |
290  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
291  */
292 struct nfp_flower_ipv4 {
293 	struct nfp_flower_ip_ext ip_ext;
294 	__be32 ipv4_src;
295 	__be32 ipv4_dst;
296 };
297 
298 /* L3 IPv6 details (10W/40B)
299  *    3                   2                   1
300  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
301  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
302  * |    DSCP   |ECN|   protocol    |      ttl      |     flags     |
303  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
304  * |   ipv6_exthdr   | res |            ipv6_flow_label            |
305  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
306  * |                  ipv6_addr_src,   31 - 0                      |
307  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
308  * |                  ipv6_addr_src,  63 - 32                      |
309  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
310  * |                  ipv6_addr_src,  95 - 64                      |
311  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
312  * |                  ipv6_addr_src, 127 - 96                      |
313  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
314  * |                  ipv6_addr_dst,   31 - 0                      |
315  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
316  * |                  ipv6_addr_dst,  63 - 32                      |
317  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
318  * |                  ipv6_addr_dst,  95 - 64                      |
319  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
320  * |                  ipv6_addr_dst, 127 - 96                      |
321  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
322  */
323 struct nfp_flower_ipv6 {
324 	struct nfp_flower_ip_ext ip_ext;
325 	__be32 ipv6_flow_label_exthdr;
326 	struct in6_addr ipv6_src;
327 	struct in6_addr ipv6_dst;
328 };
329 
330 /* Flow Frame IPv4 UDP TUNNEL --> Tunnel details (4W/16B)
331  * -----------------------------------------------------------------
332  *    3                   2                   1
333  *  1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
334  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
335  * |                         ipv4_addr_src                         |
336  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
337  * |                         ipv4_addr_dst                         |
338  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
339  * |           Reserved            |      tos      |      ttl      |
340  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
341  * |                            Reserved                           |
342  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
343  * |                     VNI                       |   Reserved    |
344  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
345  */
346 struct nfp_flower_ipv4_udp_tun {
347 	__be32 ip_src;
348 	__be32 ip_dst;
349 	__be16 reserved1;
350 	u8 tos;
351 	u8 ttl;
352 	__be32 reserved2;
353 	__be32 tun_id;
354 };
355 
356 struct nfp_flower_geneve_options {
357 	u8 data[NFP_FL_MAX_GENEVE_OPT_KEY];
358 };
359 
360 #define NFP_FL_TUN_VNI_OFFSET 8
361 
362 /* The base header for a control message packet.
363  * Defines an 8-bit version, and an 8-bit type, padded
364  * to a 32-bit word. Rest of the packet is type-specific.
365  */
366 struct nfp_flower_cmsg_hdr {
367 	__be16 pad;
368 	u8 type;
369 	u8 version;
370 };
371 
372 #define NFP_FLOWER_CMSG_HLEN		sizeof(struct nfp_flower_cmsg_hdr)
373 #define NFP_FLOWER_CMSG_VER1		1
374 
375 /* Types defined for port related control messages  */
376 enum nfp_flower_cmsg_type_port {
377 	NFP_FLOWER_CMSG_TYPE_FLOW_ADD =		0,
378 	NFP_FLOWER_CMSG_TYPE_FLOW_DEL =		2,
379 	NFP_FLOWER_CMSG_TYPE_LAG_CONFIG =	4,
380 	NFP_FLOWER_CMSG_TYPE_PORT_REIFY =	6,
381 	NFP_FLOWER_CMSG_TYPE_MAC_REPR =		7,
382 	NFP_FLOWER_CMSG_TYPE_PORT_MOD =		8,
383 	NFP_FLOWER_CMSG_TYPE_NO_NEIGH =		10,
384 	NFP_FLOWER_CMSG_TYPE_TUN_MAC =		11,
385 	NFP_FLOWER_CMSG_TYPE_ACTIVE_TUNS =	12,
386 	NFP_FLOWER_CMSG_TYPE_TUN_NEIGH =	13,
387 	NFP_FLOWER_CMSG_TYPE_TUN_IPS =		14,
388 	NFP_FLOWER_CMSG_TYPE_FLOW_STATS =	15,
389 	NFP_FLOWER_CMSG_TYPE_PORT_ECHO =	16,
390 	NFP_FLOWER_CMSG_TYPE_MAX =		32,
391 };
392 
393 /* NFP_FLOWER_CMSG_TYPE_MAC_REPR */
394 struct nfp_flower_cmsg_mac_repr {
395 	u8 reserved[3];
396 	u8 num_ports;
397 	struct {
398 		u8 idx;
399 		u8 info;
400 		u8 nbi_port;
401 		u8 phys_port;
402 	} ports[0];
403 };
404 
405 #define NFP_FLOWER_CMSG_MAC_REPR_NBI		GENMASK(1, 0)
406 
407 /* NFP_FLOWER_CMSG_TYPE_PORT_MOD */
408 struct nfp_flower_cmsg_portmod {
409 	__be32 portnum;
410 	u8 reserved;
411 	u8 info;
412 	__be16 mtu;
413 };
414 
415 #define NFP_FLOWER_CMSG_PORTMOD_INFO_LINK	BIT(0)
416 #define NFP_FLOWER_CMSG_PORTMOD_MTU_CHANGE_ONLY	BIT(1)
417 
418 /* NFP_FLOWER_CMSG_TYPE_PORT_REIFY */
419 struct nfp_flower_cmsg_portreify {
420 	__be32 portnum;
421 	u16 reserved;
422 	__be16 info;
423 };
424 
425 #define NFP_FLOWER_CMSG_PORTREIFY_INFO_EXIST	BIT(0)
426 
427 enum nfp_flower_cmsg_port_type {
428 	NFP_FLOWER_CMSG_PORT_TYPE_UNSPEC =	0x0,
429 	NFP_FLOWER_CMSG_PORT_TYPE_PHYS_PORT =	0x1,
430 	NFP_FLOWER_CMSG_PORT_TYPE_PCIE_PORT =	0x2,
431 	NFP_FLOWER_CMSG_PORT_TYPE_OTHER_PORT =  0x3,
432 };
433 
434 enum nfp_flower_cmsg_port_vnic_type {
435 	NFP_FLOWER_CMSG_PORT_VNIC_TYPE_VF =	0x0,
436 	NFP_FLOWER_CMSG_PORT_VNIC_TYPE_PF =	0x1,
437 	NFP_FLOWER_CMSG_PORT_VNIC_TYPE_CTRL =	0x2,
438 };
439 
440 #define NFP_FLOWER_CMSG_PORT_TYPE		GENMASK(31, 28)
441 #define NFP_FLOWER_CMSG_PORT_SYS_ID		GENMASK(27, 24)
442 #define NFP_FLOWER_CMSG_PORT_NFP_ID		GENMASK(23, 22)
443 #define NFP_FLOWER_CMSG_PORT_PCI		GENMASK(15, 14)
444 #define NFP_FLOWER_CMSG_PORT_VNIC_TYPE		GENMASK(13, 12)
445 #define NFP_FLOWER_CMSG_PORT_VNIC		GENMASK(11, 6)
446 #define NFP_FLOWER_CMSG_PORT_PCIE_Q		GENMASK(5, 0)
447 #define NFP_FLOWER_CMSG_PORT_PHYS_PORT_NUM	GENMASK(7, 0)
448 
449 static inline u32 nfp_flower_cmsg_phys_port(u8 phys_port)
450 {
451 	return FIELD_PREP(NFP_FLOWER_CMSG_PORT_PHYS_PORT_NUM, phys_port) |
452 		FIELD_PREP(NFP_FLOWER_CMSG_PORT_TYPE,
453 			   NFP_FLOWER_CMSG_PORT_TYPE_PHYS_PORT);
454 }
455 
456 static inline u32
457 nfp_flower_cmsg_pcie_port(u8 nfp_pcie, enum nfp_flower_cmsg_port_vnic_type type,
458 			  u8 vnic, u8 q)
459 {
460 	return FIELD_PREP(NFP_FLOWER_CMSG_PORT_PCI, nfp_pcie) |
461 		FIELD_PREP(NFP_FLOWER_CMSG_PORT_VNIC_TYPE, type) |
462 		FIELD_PREP(NFP_FLOWER_CMSG_PORT_VNIC, vnic) |
463 		FIELD_PREP(NFP_FLOWER_CMSG_PORT_PCIE_Q, q) |
464 		FIELD_PREP(NFP_FLOWER_CMSG_PORT_TYPE,
465 			   NFP_FLOWER_CMSG_PORT_TYPE_PCIE_PORT);
466 }
467 
468 static inline void *nfp_flower_cmsg_get_data(struct sk_buff *skb)
469 {
470 	return (unsigned char *)skb->data + NFP_FLOWER_CMSG_HLEN;
471 }
472 
473 static inline int nfp_flower_cmsg_get_data_len(struct sk_buff *skb)
474 {
475 	return skb->len - NFP_FLOWER_CMSG_HLEN;
476 }
477 
478 struct sk_buff *
479 nfp_flower_cmsg_mac_repr_start(struct nfp_app *app, unsigned int num_ports);
480 void
481 nfp_flower_cmsg_mac_repr_add(struct sk_buff *skb, unsigned int idx,
482 			     unsigned int nbi, unsigned int nbi_port,
483 			     unsigned int phys_port);
484 int nfp_flower_cmsg_portmod(struct nfp_repr *repr, bool carrier_ok,
485 			    unsigned int mtu, bool mtu_only);
486 int nfp_flower_cmsg_portreify(struct nfp_repr *repr, bool exists);
487 void nfp_flower_cmsg_process_rx(struct work_struct *work);
488 void nfp_flower_cmsg_rx(struct nfp_app *app, struct sk_buff *skb);
489 struct sk_buff *
490 nfp_flower_cmsg_alloc(struct nfp_app *app, unsigned int size,
491 		      enum nfp_flower_cmsg_type_port type, gfp_t flag);
492 
493 #endif
494