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