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_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_LAYER_ETHER BIT(3) 54 #define NFP_FLOWER_LAYER_ARP BIT(4) 55 56 #define NFP_FLOWER_MASK_VLAN_PRIO GENMASK(15, 13) 57 #define NFP_FLOWER_MASK_VLAN_CFI BIT(12) 58 #define NFP_FLOWER_MASK_VLAN_VID GENMASK(11, 0) 59 60 #define NFP_FL_SC_ACT_DROP 0x80000000 61 #define NFP_FL_SC_ACT_USER 0x7D000000 62 #define NFP_FL_SC_ACT_POPV 0x6A000000 63 #define NFP_FL_SC_ACT_NULL 0x00000000 64 65 /* The maximum action list size (in bytes) supported by the NFP. 66 */ 67 #define NFP_FL_MAX_A_SIZ 1216 68 #define NFP_FL_LW_SIZ 2 69 70 /* Action opcodes */ 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_SET_IPV4_TUNNEL 6 75 #define NFP_FL_ACTION_OPCODE_PRE_TUNNEL 17 76 #define NFP_FL_ACTION_OPCODE_NUM 32 77 78 #define NFP_FL_ACT_JMP_ID GENMASK(15, 8) 79 #define NFP_FL_ACT_LEN_LW GENMASK(7, 0) 80 81 #define NFP_FL_OUT_FLAGS_LAST BIT(15) 82 #define NFP_FL_OUT_FLAGS_USE_TUN BIT(4) 83 #define NFP_FL_OUT_FLAGS_TYPE_IDX GENMASK(2, 0) 84 85 #define NFP_FL_PUSH_VLAN_PRIO GENMASK(15, 13) 86 #define NFP_FL_PUSH_VLAN_CFI BIT(12) 87 #define NFP_FL_PUSH_VLAN_VID GENMASK(11, 0) 88 89 /* Tunnel ports */ 90 #define NFP_FL_PORT_TYPE_TUN 0x50000000 91 #define NFP_FL_IPV4_TUNNEL_TYPE GENMASK(7, 4) 92 #define NFP_FL_IPV4_PRE_TUN_INDEX GENMASK(2, 0) 93 94 #define nfp_flower_cmsg_warn(app, fmt, args...) \ 95 do { \ 96 if (net_ratelimit()) \ 97 nfp_warn((app)->cpp, fmt, ## args); \ 98 } while (0) 99 100 enum nfp_flower_tun_type { 101 NFP_FL_TUNNEL_NONE = 0, 102 NFP_FL_TUNNEL_VXLAN = 2, 103 }; 104 105 struct nfp_fl_output { 106 __be16 a_op; 107 __be16 flags; 108 __be32 port; 109 }; 110 111 struct nfp_fl_push_vlan { 112 __be16 a_op; 113 __be16 reserved; 114 __be16 vlan_tpid; 115 __be16 vlan_tci; 116 }; 117 118 struct nfp_fl_pop_vlan { 119 __be16 a_op; 120 __be16 reserved; 121 }; 122 123 /* Metadata without L2 (1W/4B) 124 * ---------------------------------------------------------------- 125 * 3 2 1 126 * 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 127 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 128 * | key_layers | mask_id | reserved | 129 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 130 */ 131 struct nfp_flower_meta_one { 132 u8 nfp_flow_key_layer; 133 u8 mask_id; 134 u16 reserved; 135 }; 136 137 struct nfp_fl_pre_tunnel { 138 __be16 a_op; 139 __be16 reserved; 140 __be32 ipv4_dst; 141 /* reserved for use with IPv6 addresses */ 142 __be32 extra[3]; 143 }; 144 145 struct nfp_fl_set_vxlan { 146 __be16 a_op; 147 __be16 reserved; 148 __be64 tun_id; 149 __be32 tun_type_index; 150 __be16 tun_flags; 151 u8 ipv4_ttl; 152 u8 ipv4_tos; 153 __be32 extra[2]; 154 } __packed; 155 156 /* Metadata with L2 (1W/4B) 157 * ---------------------------------------------------------------- 158 * 3 2 1 159 * 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 160 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 161 * | key_type | mask_id | PCP |p| vlan outermost VID | 162 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 163 * ^ ^ 164 * NOTE: | TCI | 165 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 166 */ 167 struct nfp_flower_meta_two { 168 u8 nfp_flow_key_layer; 169 u8 mask_id; 170 __be16 tci; 171 }; 172 173 /* Port details (1W/4B) 174 * ---------------------------------------------------------------- 175 * 3 2 1 176 * 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 177 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 178 * | port_ingress | 179 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 180 */ 181 struct nfp_flower_in_port { 182 __be32 in_port; 183 }; 184 185 /* L2 details (4W/16B) 186 * 3 2 1 187 * 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 188 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 189 * | mac_addr_dst, 31 - 0 | 190 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 191 * | mac_addr_dst, 47 - 32 | mac_addr_src, 15 - 0 | 192 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 193 * | mac_addr_src, 47 - 16 | 194 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 195 * | mpls outermost label | TC |B| reserved |q| 196 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 197 */ 198 struct nfp_flower_mac_mpls { 199 u8 mac_dst[6]; 200 u8 mac_src[6]; 201 __be32 mpls_lse; 202 }; 203 204 /* L4 ports (for UDP, TCP, SCTP) (1W/4B) 205 * 3 2 1 206 * 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 207 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 208 * | port_src | port_dst | 209 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 210 */ 211 struct nfp_flower_tp_ports { 212 __be16 port_src; 213 __be16 port_dst; 214 }; 215 216 /* L3 IPv4 details (3W/12B) 217 * 3 2 1 218 * 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 219 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 220 * | DSCP |ECN| protocol | reserved | 221 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 222 * | ipv4_addr_src | 223 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 224 * | ipv4_addr_dst | 225 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 226 */ 227 struct nfp_flower_ipv4 { 228 u8 tos; 229 u8 proto; 230 u8 ttl; 231 u8 reserved; 232 __be32 ipv4_src; 233 __be32 ipv4_dst; 234 }; 235 236 /* L3 IPv6 details (10W/40B) 237 * 3 2 1 238 * 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 239 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 240 * | DSCP |ECN| protocol | reserved | 241 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 242 * | ipv6_exthdr | res | ipv6_flow_label | 243 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 244 * | ipv6_addr_src, 31 - 0 | 245 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 246 * | ipv6_addr_src, 63 - 32 | 247 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 248 * | ipv6_addr_src, 95 - 64 | 249 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 250 * | ipv6_addr_src, 127 - 96 | 251 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 252 * | ipv6_addr_dst, 31 - 0 | 253 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 254 * | ipv6_addr_dst, 63 - 32 | 255 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 256 * | ipv6_addr_dst, 95 - 64 | 257 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 258 * | ipv6_addr_dst, 127 - 96 | 259 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 260 */ 261 struct nfp_flower_ipv6 { 262 u8 tos; 263 u8 proto; 264 u8 ttl; 265 u8 reserved; 266 __be32 ipv6_flow_label_exthdr; 267 struct in6_addr ipv6_src; 268 struct in6_addr ipv6_dst; 269 }; 270 271 /* Flow Frame VXLAN --> Tunnel details (4W/16B) 272 * ----------------------------------------------------------------- 273 * 3 2 1 274 * 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 275 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 276 * | ipv4_addr_src | 277 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 278 * | ipv4_addr_dst | 279 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 280 * | tun_flags | tos | ttl | 281 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 282 * | gpe_flags | Reserved | Next Protocol | 283 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 284 * | VNI | Reserved | 285 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 286 */ 287 struct nfp_flower_vxlan { 288 __be32 ip_src; 289 __be32 ip_dst; 290 __be16 tun_flags; 291 u8 tos; 292 u8 ttl; 293 u8 gpe_flags; 294 u8 reserved[2]; 295 u8 nxt_proto; 296 __be32 tun_id; 297 }; 298 299 #define NFP_FL_TUN_VNI_OFFSET 8 300 301 /* The base header for a control message packet. 302 * Defines an 8-bit version, and an 8-bit type, padded 303 * to a 32-bit word. Rest of the packet is type-specific. 304 */ 305 struct nfp_flower_cmsg_hdr { 306 __be16 pad; 307 u8 type; 308 u8 version; 309 }; 310 311 #define NFP_FLOWER_CMSG_HLEN sizeof(struct nfp_flower_cmsg_hdr) 312 #define NFP_FLOWER_CMSG_VER1 1 313 314 /* Types defined for port related control messages */ 315 enum nfp_flower_cmsg_type_port { 316 NFP_FLOWER_CMSG_TYPE_FLOW_ADD = 0, 317 NFP_FLOWER_CMSG_TYPE_FLOW_DEL = 2, 318 NFP_FLOWER_CMSG_TYPE_MAC_REPR = 7, 319 NFP_FLOWER_CMSG_TYPE_PORT_MOD = 8, 320 NFP_FLOWER_CMSG_TYPE_NO_NEIGH = 10, 321 NFP_FLOWER_CMSG_TYPE_TUN_MAC = 11, 322 NFP_FLOWER_CMSG_TYPE_ACTIVE_TUNS = 12, 323 NFP_FLOWER_CMSG_TYPE_TUN_NEIGH = 13, 324 NFP_FLOWER_CMSG_TYPE_TUN_IPS = 14, 325 NFP_FLOWER_CMSG_TYPE_FLOW_STATS = 15, 326 NFP_FLOWER_CMSG_TYPE_PORT_ECHO = 16, 327 NFP_FLOWER_CMSG_TYPE_MAX = 32, 328 }; 329 330 /* NFP_FLOWER_CMSG_TYPE_MAC_REPR */ 331 struct nfp_flower_cmsg_mac_repr { 332 u8 reserved[3]; 333 u8 num_ports; 334 struct { 335 u8 idx; 336 u8 info; 337 u8 nbi_port; 338 u8 phys_port; 339 } ports[0]; 340 }; 341 342 #define NFP_FLOWER_CMSG_MAC_REPR_NBI GENMASK(1, 0) 343 344 /* NFP_FLOWER_CMSG_TYPE_PORT_MOD */ 345 struct nfp_flower_cmsg_portmod { 346 __be32 portnum; 347 u8 reserved; 348 u8 info; 349 __be16 mtu; 350 }; 351 352 #define NFP_FLOWER_CMSG_PORTMOD_INFO_LINK BIT(0) 353 354 enum nfp_flower_cmsg_port_type { 355 NFP_FLOWER_CMSG_PORT_TYPE_UNSPEC = 0x0, 356 NFP_FLOWER_CMSG_PORT_TYPE_PHYS_PORT = 0x1, 357 NFP_FLOWER_CMSG_PORT_TYPE_PCIE_PORT = 0x2, 358 NFP_FLOWER_CMSG_PORT_TYPE_OTHER_PORT = 0x3, 359 }; 360 361 enum nfp_flower_cmsg_port_vnic_type { 362 NFP_FLOWER_CMSG_PORT_VNIC_TYPE_VF = 0x0, 363 NFP_FLOWER_CMSG_PORT_VNIC_TYPE_PF = 0x1, 364 NFP_FLOWER_CMSG_PORT_VNIC_TYPE_CTRL = 0x2, 365 }; 366 367 #define NFP_FLOWER_CMSG_PORT_TYPE GENMASK(31, 28) 368 #define NFP_FLOWER_CMSG_PORT_SYS_ID GENMASK(27, 24) 369 #define NFP_FLOWER_CMSG_PORT_NFP_ID GENMASK(23, 22) 370 #define NFP_FLOWER_CMSG_PORT_PCI GENMASK(15, 14) 371 #define NFP_FLOWER_CMSG_PORT_VNIC_TYPE GENMASK(13, 12) 372 #define NFP_FLOWER_CMSG_PORT_VNIC GENMASK(11, 6) 373 #define NFP_FLOWER_CMSG_PORT_PCIE_Q GENMASK(5, 0) 374 #define NFP_FLOWER_CMSG_PORT_PHYS_PORT_NUM GENMASK(7, 0) 375 376 static inline u32 nfp_flower_cmsg_phys_port(u8 phys_port) 377 { 378 return FIELD_PREP(NFP_FLOWER_CMSG_PORT_PHYS_PORT_NUM, phys_port) | 379 FIELD_PREP(NFP_FLOWER_CMSG_PORT_TYPE, 380 NFP_FLOWER_CMSG_PORT_TYPE_PHYS_PORT); 381 } 382 383 static inline u32 384 nfp_flower_cmsg_pcie_port(u8 nfp_pcie, enum nfp_flower_cmsg_port_vnic_type type, 385 u8 vnic, u8 q) 386 { 387 return FIELD_PREP(NFP_FLOWER_CMSG_PORT_PCI, nfp_pcie) | 388 FIELD_PREP(NFP_FLOWER_CMSG_PORT_VNIC_TYPE, type) | 389 FIELD_PREP(NFP_FLOWER_CMSG_PORT_VNIC, vnic) | 390 FIELD_PREP(NFP_FLOWER_CMSG_PORT_PCIE_Q, q) | 391 FIELD_PREP(NFP_FLOWER_CMSG_PORT_TYPE, 392 NFP_FLOWER_CMSG_PORT_TYPE_PCIE_PORT); 393 } 394 395 static inline void *nfp_flower_cmsg_get_data(struct sk_buff *skb) 396 { 397 return (unsigned char *)skb->data + NFP_FLOWER_CMSG_HLEN; 398 } 399 400 static inline int nfp_flower_cmsg_get_data_len(struct sk_buff *skb) 401 { 402 return skb->len - NFP_FLOWER_CMSG_HLEN; 403 } 404 405 struct sk_buff * 406 nfp_flower_cmsg_mac_repr_start(struct nfp_app *app, unsigned int num_ports); 407 void 408 nfp_flower_cmsg_mac_repr_add(struct sk_buff *skb, unsigned int idx, 409 unsigned int nbi, unsigned int nbi_port, 410 unsigned int phys_port); 411 int nfp_flower_cmsg_portmod(struct nfp_repr *repr, bool carrier_ok); 412 void nfp_flower_cmsg_process_rx(struct work_struct *work); 413 void nfp_flower_cmsg_rx(struct nfp_app *app, struct sk_buff *skb); 414 struct sk_buff * 415 nfp_flower_cmsg_alloc(struct nfp_app *app, unsigned int size, 416 enum nfp_flower_cmsg_type_port type); 417 418 #endif 419