1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2 /* Copyright (C) 2017-2018 Netronome Systems, Inc. */
4 #ifndef NFP_FLOWER_CMSG_H
5 #define NFP_FLOWER_CMSG_H
7 #include <linux/bitfield.h>
8 #include <linux/skbuff.h>
9 #include <linux/types.h>
10 #include <net/geneve.h>
12 #include <net/vxlan.h>
14 #include "../nfp_app.h"
15 #include "../nfpcore/nfp_cpp.h"
17 #define NFP_FLOWER_LAYER_EXT_META BIT(0)
18 #define NFP_FLOWER_LAYER_PORT BIT(1)
19 #define NFP_FLOWER_LAYER_MAC BIT(2)
20 #define NFP_FLOWER_LAYER_TP BIT(3)
21 #define NFP_FLOWER_LAYER_IPV4 BIT(4)
22 #define NFP_FLOWER_LAYER_IPV6 BIT(5)
23 #define NFP_FLOWER_LAYER_CT BIT(6)
24 #define NFP_FLOWER_LAYER_VXLAN BIT(7)
26 #define NFP_FLOWER_LAYER2_GRE BIT(0)
27 #define NFP_FLOWER_LAYER2_QINQ BIT(4)
28 #define NFP_FLOWER_LAYER2_GENEVE BIT(5)
29 #define NFP_FLOWER_LAYER2_GENEVE_OP BIT(6)
30 #define NFP_FLOWER_LAYER2_TUN_IPV6 BIT(7)
32 #define NFP_FLOWER_MASK_VLAN_PRIO GENMASK(15, 13)
33 #define NFP_FLOWER_MASK_VLAN_PRESENT BIT(12)
34 #define NFP_FLOWER_MASK_VLAN_VID GENMASK(11, 0)
36 #define NFP_FLOWER_MASK_MPLS_LB GENMASK(31, 12)
37 #define NFP_FLOWER_MASK_MPLS_TC GENMASK(11, 9)
38 #define NFP_FLOWER_MASK_MPLS_BOS BIT(8)
39 #define NFP_FLOWER_MASK_MPLS_Q BIT(0)
41 #define NFP_FL_IP_FRAG_FIRST BIT(7)
42 #define NFP_FL_IP_FRAGMENTED BIT(6)
44 /* GRE Tunnel flags */
45 #define NFP_FL_GRE_FLAG_KEY BIT(2)
47 /* Compressed HW representation of TCP Flags */
48 #define NFP_FL_TCP_FLAG_URG BIT(4)
49 #define NFP_FL_TCP_FLAG_PSH BIT(3)
50 #define NFP_FL_TCP_FLAG_RST BIT(2)
51 #define NFP_FL_TCP_FLAG_SYN BIT(1)
52 #define NFP_FL_TCP_FLAG_FIN BIT(0)
54 #define NFP_FL_SC_ACT_DROP 0x80000000
55 #define NFP_FL_SC_ACT_USER 0x7D000000
56 #define NFP_FL_SC_ACT_POPV 0x6A000000
57 #define NFP_FL_SC_ACT_NULL 0x00000000
59 /* The maximum action list size (in bytes) supported by the NFP.
61 #define NFP_FL_MAX_A_SIZ 1216
62 #define NFP_FL_LW_SIZ 2
64 /* Maximum allowed geneve options */
65 #define NFP_FL_MAX_GENEVE_OPT_ACT 32
66 #define NFP_FL_MAX_GENEVE_OPT_CNT 64
67 #define NFP_FL_MAX_GENEVE_OPT_KEY 32
68 #define NFP_FL_MAX_GENEVE_OPT_KEY_V6 8
71 #define NFP_FL_ACTION_OPCODE_OUTPUT 0
72 #define NFP_FL_ACTION_OPCODE_PUSH_VLAN 1
73 #define NFP_FL_ACTION_OPCODE_POP_VLAN 2
74 #define NFP_FL_ACTION_OPCODE_PUSH_MPLS 3
75 #define NFP_FL_ACTION_OPCODE_POP_MPLS 4
76 #define NFP_FL_ACTION_OPCODE_SET_TUNNEL 6
77 #define NFP_FL_ACTION_OPCODE_SET_ETHERNET 7
78 #define NFP_FL_ACTION_OPCODE_SET_MPLS 8
79 #define NFP_FL_ACTION_OPCODE_SET_IPV4_ADDRS 9
80 #define NFP_FL_ACTION_OPCODE_SET_IPV4_TTL_TOS 10
81 #define NFP_FL_ACTION_OPCODE_SET_IPV6_SRC 11
82 #define NFP_FL_ACTION_OPCODE_SET_IPV6_DST 12
83 #define NFP_FL_ACTION_OPCODE_SET_IPV6_TC_HL_FL 13
84 #define NFP_FL_ACTION_OPCODE_SET_UDP 14
85 #define NFP_FL_ACTION_OPCODE_SET_TCP 15
86 #define NFP_FL_ACTION_OPCODE_PRE_LAG 16
87 #define NFP_FL_ACTION_OPCODE_PRE_TUNNEL 17
88 #define NFP_FL_ACTION_OPCODE_PUSH_GENEVE 26
89 #define NFP_FL_ACTION_OPCODE_NUM 32
91 #define NFP_FL_OUT_FLAGS_LAST BIT(15)
92 #define NFP_FL_OUT_FLAGS_USE_TUN BIT(4)
93 #define NFP_FL_OUT_FLAGS_TYPE_IDX GENMASK(2, 0)
95 #define NFP_FL_PUSH_VLAN_PRIO GENMASK(15, 13)
96 #define NFP_FL_PUSH_VLAN_VID GENMASK(11, 0)
98 #define IPV6_FLOW_LABEL_MASK cpu_to_be32(0x000fffff)
101 #define NFP_FL_LAG_OUT 0xC0DE0000
104 #define NFP_FL_PORT_TYPE_TUN 0x50000000
105 #define NFP_FL_TUNNEL_TYPE GENMASK(7, 4)
106 #define NFP_FL_PRE_TUN_INDEX GENMASK(2, 0)
108 #define NFP_FLOWER_WORKQ_MAX_SKBS 30000
110 /* Cmesg reply (empirical) timeout*/
111 #define NFP_FL_REPLY_TIMEOUT msecs_to_jiffies(40)
113 #define nfp_flower_cmsg_warn(app, fmt, args...) \
115 if (net_ratelimit()) \
116 nfp_warn((app)->cpp, fmt, ## args); \
119 enum nfp_flower_tun_type
{
120 NFP_FL_TUNNEL_NONE
= 0,
121 NFP_FL_TUNNEL_GRE
= 1,
122 NFP_FL_TUNNEL_VXLAN
= 2,
123 NFP_FL_TUNNEL_GENEVE
= 4,
126 struct nfp_fl_act_head
{
131 struct nfp_fl_set_eth
{
132 struct nfp_fl_act_head head
;
134 u8 eth_addr_mask
[ETH_ALEN
* 2];
135 u8 eth_addr_val
[ETH_ALEN
* 2];
138 struct nfp_fl_set_ip4_addrs
{
139 struct nfp_fl_act_head head
;
141 __be32 ipv4_src_mask
;
143 __be32 ipv4_dst_mask
;
147 struct nfp_fl_set_ip4_ttl_tos
{
148 struct nfp_fl_act_head head
;
156 struct nfp_fl_set_ipv6_tc_hl_fl
{
157 struct nfp_fl_act_head head
;
159 u8 ipv6_hop_limit_mask
;
163 __be32 ipv6_label_mask
;
167 struct nfp_fl_set_ipv6_addr
{
168 struct nfp_fl_act_head head
;
176 struct nfp_fl_set_tport
{
177 struct nfp_fl_act_head head
;
183 struct nfp_fl_output
{
184 struct nfp_fl_act_head head
;
189 struct nfp_fl_push_vlan
{
190 struct nfp_fl_act_head head
;
196 struct nfp_fl_pop_vlan
{
197 struct nfp_fl_act_head head
;
201 struct nfp_fl_pre_lag
{
202 struct nfp_fl_act_head head
;
208 #define NFP_FL_PRE_LAG_VER_OFF 8
210 struct nfp_fl_pre_tunnel
{
211 struct nfp_fl_act_head head
;
215 struct in6_addr ipv6_dst
;
219 #define NFP_FL_PRE_TUN_IPV6 BIT(0)
221 struct nfp_fl_set_tun
{
222 struct nfp_fl_act_head head
;
224 __be64 tun_id __packed
;
225 __be32 tun_type_index
;
229 __be16 outer_vlan_tpid
;
230 __be16 outer_vlan_tci
;
236 struct nfp_fl_push_geneve
{
237 struct nfp_fl_act_head head
;
245 struct nfp_fl_push_mpls
{
246 struct nfp_fl_act_head head
;
251 struct nfp_fl_pop_mpls
{
252 struct nfp_fl_act_head head
;
256 struct nfp_fl_set_mpls
{
257 struct nfp_fl_act_head head
;
263 /* Metadata with L2 (1W/4B)
264 * ----------------------------------------------------------------
266 * 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
267 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
268 * | key_type | mask_id | PCP |p| vlan outermost VID |
269 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
272 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
274 struct nfp_flower_meta_tci
{
275 u8 nfp_flow_key_layer
;
280 /* Extended metadata for additional key_layers (1W/4B)
281 * ----------------------------------------------------------------
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 * | nfp_flow_key_layer2 |
286 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
288 struct nfp_flower_ext_meta
{
289 __be32 nfp_flow_key_layer2
;
292 /* Port details (1W/4B)
293 * ----------------------------------------------------------------
295 * 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
296 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
298 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
300 struct nfp_flower_in_port
{
304 /* L2 details (4W/16B)
306 * 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
307 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
308 * | mac_addr_dst, 31 - 0 |
309 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
310 * | mac_addr_dst, 47 - 32 | mac_addr_src, 15 - 0 |
311 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
312 * | mac_addr_src, 47 - 16 |
313 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
314 * | mpls outermost label | TC |B| reserved |q|
315 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
317 struct nfp_flower_mac_mpls
{
323 /* VLAN details (2W/8B)
325 * 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
326 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
327 * | outer_tpid | outer_tci |
328 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
329 * | inner_tpid | inner_tci |
330 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
332 struct nfp_flower_vlan
{
339 /* L4 ports (for UDP, TCP, SCTP) (1W/4B)
341 * 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
342 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
343 * | port_src | port_dst |
344 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
346 struct nfp_flower_tp_ports
{
351 struct nfp_flower_ip_ext
{
358 /* L3 IPv4 details (3W/12B)
360 * 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
361 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
362 * | DSCP |ECN| protocol | ttl | flags |
363 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
365 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
367 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
369 struct nfp_flower_ipv4
{
370 struct nfp_flower_ip_ext ip_ext
;
375 /* L3 IPv6 details (10W/40B)
377 * 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
378 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
379 * | DSCP |ECN| protocol | ttl | flags |
380 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
381 * | ipv6_exthdr | res | ipv6_flow_label |
382 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
383 * | ipv6_addr_src, 31 - 0 |
384 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
385 * | ipv6_addr_src, 63 - 32 |
386 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
387 * | ipv6_addr_src, 95 - 64 |
388 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
389 * | ipv6_addr_src, 127 - 96 |
390 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
391 * | ipv6_addr_dst, 31 - 0 |
392 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
393 * | ipv6_addr_dst, 63 - 32 |
394 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
395 * | ipv6_addr_dst, 95 - 64 |
396 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
397 * | ipv6_addr_dst, 127 - 96 |
398 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
400 struct nfp_flower_ipv6
{
401 struct nfp_flower_ip_ext ip_ext
;
402 __be32 ipv6_flow_label_exthdr
;
403 struct in6_addr ipv6_src
;
404 struct in6_addr ipv6_dst
;
407 struct nfp_flower_tun_ipv4
{
412 struct nfp_flower_tun_ipv6
{
417 struct nfp_flower_tun_ip_ext
{
422 /* Flow Frame IPv4 UDP TUNNEL --> Tunnel details (4W/16B)
423 * -----------------------------------------------------------------
425 * 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
426 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
428 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
430 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
431 * | Reserved | tos | ttl |
432 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
434 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
436 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
438 struct nfp_flower_ipv4_udp_tun
{
439 struct nfp_flower_tun_ipv4 ipv4
;
441 struct nfp_flower_tun_ip_ext ip_ext
;
446 /* Flow Frame IPv6 UDP TUNNEL --> Tunnel details (11W/44B)
447 * -----------------------------------------------------------------
449 * 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
450 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
451 * | ipv6_addr_src, 31 - 0 |
452 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
453 * | ipv6_addr_src, 63 - 32 |
454 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
455 * | ipv6_addr_src, 95 - 64 |
456 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
457 * | ipv6_addr_src, 127 - 96 |
458 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
459 * | ipv6_addr_dst, 31 - 0 |
460 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
461 * | ipv6_addr_dst, 63 - 32 |
462 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
463 * | ipv6_addr_dst, 95 - 64 |
464 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
465 * | ipv6_addr_dst, 127 - 96 |
466 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
467 * | Reserved | tos | ttl |
468 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
470 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
472 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
474 struct nfp_flower_ipv6_udp_tun
{
475 struct nfp_flower_tun_ipv6 ipv6
;
477 struct nfp_flower_tun_ip_ext ip_ext
;
482 /* Flow Frame GRE TUNNEL --> Tunnel details (6W/24B)
483 * -----------------------------------------------------------------
485 * 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
486 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
488 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
490 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
491 * | tun_flags | tos | ttl |
492 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
493 * | Reserved | Ethertype |
494 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
496 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
498 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
501 struct nfp_flower_ipv4_gre_tun
{
502 struct nfp_flower_tun_ipv4 ipv4
;
504 struct nfp_flower_tun_ip_ext ip_ext
;
511 /* Flow Frame GRE TUNNEL V6 --> Tunnel details (12W/48B)
512 * -----------------------------------------------------------------
514 * 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
515 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
516 * | ipv6_addr_src, 31 - 0 |
517 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
518 * | ipv6_addr_src, 63 - 32 |
519 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
520 * | ipv6_addr_src, 95 - 64 |
521 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
522 * | ipv6_addr_src, 127 - 96 |
523 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
524 * | ipv6_addr_dst, 31 - 0 |
525 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
526 * | ipv6_addr_dst, 63 - 32 |
527 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
528 * | ipv6_addr_dst, 95 - 64 |
529 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
530 * | ipv6_addr_dst, 127 - 96 |
531 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
532 * | tun_flags | tos | ttl |
533 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
534 * | Reserved | Ethertype |
535 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
537 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
539 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
541 struct nfp_flower_ipv6_gre_tun
{
542 struct nfp_flower_tun_ipv6 ipv6
;
544 struct nfp_flower_tun_ip_ext ip_ext
;
551 struct nfp_flower_geneve_options
{
552 u8 data
[NFP_FL_MAX_GENEVE_OPT_KEY
];
555 #define NFP_FL_TUN_VNI_OFFSET 8
557 /* The base header for a control message packet.
558 * Defines an 8-bit version, and an 8-bit type, padded
559 * to a 32-bit word. Rest of the packet is type-specific.
561 struct nfp_flower_cmsg_hdr
{
567 #define NFP_FLOWER_CMSG_HLEN sizeof(struct nfp_flower_cmsg_hdr)
568 #define NFP_FLOWER_CMSG_VER1 1
570 /* Types defined for port related control messages */
571 enum nfp_flower_cmsg_type_port
{
572 NFP_FLOWER_CMSG_TYPE_FLOW_ADD
= 0,
573 NFP_FLOWER_CMSG_TYPE_FLOW_MOD
= 1,
574 NFP_FLOWER_CMSG_TYPE_FLOW_DEL
= 2,
575 NFP_FLOWER_CMSG_TYPE_LAG_CONFIG
= 4,
576 NFP_FLOWER_CMSG_TYPE_PORT_REIFY
= 6,
577 NFP_FLOWER_CMSG_TYPE_MAC_REPR
= 7,
578 NFP_FLOWER_CMSG_TYPE_PORT_MOD
= 8,
579 NFP_FLOWER_CMSG_TYPE_MERGE_HINT
= 9,
580 NFP_FLOWER_CMSG_TYPE_NO_NEIGH
= 10,
581 NFP_FLOWER_CMSG_TYPE_TUN_MAC
= 11,
582 NFP_FLOWER_CMSG_TYPE_ACTIVE_TUNS
= 12,
583 NFP_FLOWER_CMSG_TYPE_TUN_NEIGH
= 13,
584 NFP_FLOWER_CMSG_TYPE_TUN_IPS
= 14,
585 NFP_FLOWER_CMSG_TYPE_FLOW_STATS
= 15,
586 NFP_FLOWER_CMSG_TYPE_PORT_ECHO
= 16,
587 NFP_FLOWER_CMSG_TYPE_QOS_MOD
= 18,
588 NFP_FLOWER_CMSG_TYPE_QOS_DEL
= 19,
589 NFP_FLOWER_CMSG_TYPE_QOS_STATS
= 20,
590 NFP_FLOWER_CMSG_TYPE_PRE_TUN_RULE
= 21,
591 NFP_FLOWER_CMSG_TYPE_TUN_IPS_V6
= 22,
592 NFP_FLOWER_CMSG_TYPE_NO_NEIGH_V6
= 23,
593 NFP_FLOWER_CMSG_TYPE_TUN_NEIGH_V6
= 24,
594 NFP_FLOWER_CMSG_TYPE_ACTIVE_TUNS_V6
= 25,
595 NFP_FLOWER_CMSG_TYPE_MAX
= 32,
598 /* NFP_FLOWER_CMSG_TYPE_MAC_REPR */
599 struct nfp_flower_cmsg_mac_repr
{
610 #define NFP_FLOWER_CMSG_MAC_REPR_NBI GENMASK(1, 0)
612 /* NFP_FLOWER_CMSG_TYPE_PORT_MOD */
613 struct nfp_flower_cmsg_portmod
{
620 #define NFP_FLOWER_CMSG_PORTMOD_INFO_LINK BIT(0)
621 #define NFP_FLOWER_CMSG_PORTMOD_MTU_CHANGE_ONLY BIT(1)
623 /* NFP_FLOWER_CMSG_TYPE_PORT_REIFY */
624 struct nfp_flower_cmsg_portreify
{
630 #define NFP_FLOWER_CMSG_PORTREIFY_INFO_EXIST BIT(0)
632 /* NFP_FLOWER_CMSG_TYPE_FLOW_MERGE_HINT */
633 struct nfp_flower_cmsg_merge_hint
{
642 enum nfp_flower_cmsg_port_type
{
643 NFP_FLOWER_CMSG_PORT_TYPE_UNSPEC
= 0x0,
644 NFP_FLOWER_CMSG_PORT_TYPE_PHYS_PORT
= 0x1,
645 NFP_FLOWER_CMSG_PORT_TYPE_PCIE_PORT
= 0x2,
646 NFP_FLOWER_CMSG_PORT_TYPE_OTHER_PORT
= 0x3,
649 enum nfp_flower_cmsg_port_vnic_type
{
650 NFP_FLOWER_CMSG_PORT_VNIC_TYPE_VF
= 0x0,
651 NFP_FLOWER_CMSG_PORT_VNIC_TYPE_PF
= 0x1,
652 NFP_FLOWER_CMSG_PORT_VNIC_TYPE_CTRL
= 0x2,
655 #define NFP_FLOWER_CMSG_PORT_TYPE GENMASK(31, 28)
656 #define NFP_FLOWER_CMSG_PORT_SYS_ID GENMASK(27, 24)
657 #define NFP_FLOWER_CMSG_PORT_NFP_ID GENMASK(23, 22)
658 #define NFP_FLOWER_CMSG_PORT_PCI GENMASK(15, 14)
659 #define NFP_FLOWER_CMSG_PORT_VNIC_TYPE GENMASK(13, 12)
660 #define NFP_FLOWER_CMSG_PORT_VNIC GENMASK(11, 6)
661 #define NFP_FLOWER_CMSG_PORT_PCIE_Q GENMASK(5, 0)
662 #define NFP_FLOWER_CMSG_PORT_PHYS_PORT_NUM GENMASK(7, 0)
664 static inline u32
nfp_flower_internal_port_get_port_id(u8 internal_port
)
666 return FIELD_PREP(NFP_FLOWER_CMSG_PORT_PHYS_PORT_NUM
, internal_port
) |
667 FIELD_PREP(NFP_FLOWER_CMSG_PORT_TYPE
,
668 NFP_FLOWER_CMSG_PORT_TYPE_OTHER_PORT
);
671 static inline u32
nfp_flower_cmsg_phys_port(u8 phys_port
)
673 return FIELD_PREP(NFP_FLOWER_CMSG_PORT_PHYS_PORT_NUM
, phys_port
) |
674 FIELD_PREP(NFP_FLOWER_CMSG_PORT_TYPE
,
675 NFP_FLOWER_CMSG_PORT_TYPE_PHYS_PORT
);
679 nfp_flower_cmsg_pcie_port(u8 nfp_pcie
, enum nfp_flower_cmsg_port_vnic_type type
,
682 return FIELD_PREP(NFP_FLOWER_CMSG_PORT_PCI
, nfp_pcie
) |
683 FIELD_PREP(NFP_FLOWER_CMSG_PORT_VNIC_TYPE
, type
) |
684 FIELD_PREP(NFP_FLOWER_CMSG_PORT_VNIC
, vnic
) |
685 FIELD_PREP(NFP_FLOWER_CMSG_PORT_PCIE_Q
, q
) |
686 FIELD_PREP(NFP_FLOWER_CMSG_PORT_TYPE
,
687 NFP_FLOWER_CMSG_PORT_TYPE_PCIE_PORT
);
690 static inline void *nfp_flower_cmsg_get_data(struct sk_buff
*skb
)
692 return (unsigned char *)skb
->data
+ NFP_FLOWER_CMSG_HLEN
;
695 static inline int nfp_flower_cmsg_get_data_len(struct sk_buff
*skb
)
697 return skb
->len
- NFP_FLOWER_CMSG_HLEN
;
701 nfp_fl_netdev_is_tunnel_type(struct net_device
*netdev
,
702 enum nfp_flower_tun_type tun_type
)
704 if (netif_is_vxlan(netdev
))
705 return tun_type
== NFP_FL_TUNNEL_VXLAN
;
706 if (netif_is_gretap(netdev
))
707 return tun_type
== NFP_FL_TUNNEL_GRE
;
708 if (netif_is_geneve(netdev
))
709 return tun_type
== NFP_FL_TUNNEL_GENEVE
;
714 static inline bool nfp_fl_is_netdev_to_offload(struct net_device
*netdev
)
716 if (!netdev
->rtnl_link_ops
)
718 if (!strcmp(netdev
->rtnl_link_ops
->kind
, "openvswitch"))
720 if (netif_is_vxlan(netdev
))
722 if (netif_is_geneve(netdev
))
724 if (netif_is_gretap(netdev
))
731 nfp_flower_cmsg_mac_repr_start(struct nfp_app
*app
, unsigned int num_ports
);
733 nfp_flower_cmsg_mac_repr_add(struct sk_buff
*skb
, unsigned int idx
,
734 unsigned int nbi
, unsigned int nbi_port
,
735 unsigned int phys_port
);
736 int nfp_flower_cmsg_portmod(struct nfp_repr
*repr
, bool carrier_ok
,
737 unsigned int mtu
, bool mtu_only
);
738 int nfp_flower_cmsg_portreify(struct nfp_repr
*repr
, bool exists
);
739 void nfp_flower_cmsg_process_rx(struct work_struct
*work
);
740 void nfp_flower_cmsg_rx(struct nfp_app
*app
, struct sk_buff
*skb
);
742 nfp_flower_cmsg_alloc(struct nfp_app
*app
, unsigned int size
,
743 enum nfp_flower_cmsg_type_port type
, gfp_t flag
);