1 /* 2 * This file is part of the Chelsio T4 Ethernet driver for Linux. 3 * 4 * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved. 5 * 6 * This software is available to you under a choice of one of two 7 * licenses. You may choose to be licensed under the terms of the GNU 8 * General Public License (GPL) Version 2, available from the file 9 * COPYING in the main directory of this source tree, or the 10 * OpenIB.org BSD license below: 11 * 12 * Redistribution and use in source and binary forms, with or 13 * without modification, are permitted provided that the following 14 * conditions are met: 15 * 16 * - Redistributions of source code must retain the above 17 * copyright notice, this list of conditions and the following 18 * disclaimer. 19 * 20 * - Redistributions in binary form must reproduce the above 21 * copyright notice, this list of conditions and the following 22 * disclaimer in the documentation and/or other materials 23 * provided with the distribution. 24 * 25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 32 * SOFTWARE. 33 */ 34 35 #ifndef __T4_MSG_H 36 #define __T4_MSG_H 37 38 #include <linux/types.h> 39 40 enum { 41 CPL_PASS_OPEN_REQ = 0x1, 42 CPL_PASS_ACCEPT_RPL = 0x2, 43 CPL_ACT_OPEN_REQ = 0x3, 44 CPL_SET_TCB_FIELD = 0x5, 45 CPL_GET_TCB = 0x6, 46 CPL_CLOSE_CON_REQ = 0x8, 47 CPL_CLOSE_LISTSRV_REQ = 0x9, 48 CPL_ABORT_REQ = 0xA, 49 CPL_ABORT_RPL = 0xB, 50 CPL_RX_DATA_ACK = 0xD, 51 CPL_TX_PKT = 0xE, 52 CPL_L2T_WRITE_REQ = 0x12, 53 CPL_SMT_WRITE_REQ = 0x14, 54 CPL_TID_RELEASE = 0x1A, 55 CPL_SRQ_TABLE_REQ = 0x1C, 56 CPL_TX_DATA_ISO = 0x1F, 57 58 CPL_CLOSE_LISTSRV_RPL = 0x20, 59 CPL_L2T_WRITE_RPL = 0x23, 60 CPL_PASS_OPEN_RPL = 0x24, 61 CPL_ACT_OPEN_RPL = 0x25, 62 CPL_PEER_CLOSE = 0x26, 63 CPL_ABORT_REQ_RSS = 0x2B, 64 CPL_ABORT_RPL_RSS = 0x2D, 65 CPL_SMT_WRITE_RPL = 0x2E, 66 67 CPL_RX_PHYS_ADDR = 0x30, 68 CPL_CLOSE_CON_RPL = 0x32, 69 CPL_ISCSI_HDR = 0x33, 70 CPL_RDMA_CQE = 0x35, 71 CPL_RDMA_CQE_READ_RSP = 0x36, 72 CPL_RDMA_CQE_ERR = 0x37, 73 CPL_RX_DATA = 0x39, 74 CPL_SET_TCB_RPL = 0x3A, 75 CPL_RX_PKT = 0x3B, 76 CPL_RX_DDP_COMPLETE = 0x3F, 77 78 CPL_ACT_ESTABLISH = 0x40, 79 CPL_PASS_ESTABLISH = 0x41, 80 CPL_RX_DATA_DDP = 0x42, 81 CPL_PASS_ACCEPT_REQ = 0x44, 82 CPL_RX_ISCSI_CMP = 0x45, 83 CPL_TRACE_PKT_T5 = 0x48, 84 CPL_RX_ISCSI_DDP = 0x49, 85 CPL_RX_TLS_CMP = 0x4E, 86 87 CPL_RDMA_READ_REQ = 0x60, 88 89 CPL_PASS_OPEN_REQ6 = 0x81, 90 CPL_ACT_OPEN_REQ6 = 0x83, 91 92 CPL_TX_TLS_PDU = 0x88, 93 CPL_TX_TLS_SFO = 0x89, 94 CPL_TX_SEC_PDU = 0x8A, 95 CPL_TX_TLS_ACK = 0x8B, 96 97 CPL_RDMA_TERMINATE = 0xA2, 98 CPL_RDMA_WRITE = 0xA4, 99 CPL_SGE_EGR_UPDATE = 0xA5, 100 CPL_RX_MPS_PKT = 0xAF, 101 102 CPL_TRACE_PKT = 0xB0, 103 CPL_TLS_DATA = 0xB1, 104 CPL_ISCSI_DATA = 0xB2, 105 106 CPL_FW4_MSG = 0xC0, 107 CPL_FW4_PLD = 0xC1, 108 CPL_FW4_ACK = 0xC3, 109 CPL_SRQ_TABLE_RPL = 0xCC, 110 111 CPL_RX_PHYS_DSGL = 0xD0, 112 113 CPL_FW6_MSG = 0xE0, 114 CPL_FW6_PLD = 0xE1, 115 CPL_TX_TNL_LSO = 0xEC, 116 CPL_TX_PKT_LSO = 0xED, 117 CPL_TX_PKT_XT = 0xEE, 118 119 NUM_CPL_CMDS 120 }; 121 122 enum CPL_error { 123 CPL_ERR_NONE = 0, 124 CPL_ERR_TCAM_PARITY = 1, 125 CPL_ERR_TCAM_MISS = 2, 126 CPL_ERR_TCAM_FULL = 3, 127 CPL_ERR_BAD_LENGTH = 15, 128 CPL_ERR_BAD_ROUTE = 18, 129 CPL_ERR_CONN_RESET = 20, 130 CPL_ERR_CONN_EXIST_SYNRECV = 21, 131 CPL_ERR_CONN_EXIST = 22, 132 CPL_ERR_ARP_MISS = 23, 133 CPL_ERR_BAD_SYN = 24, 134 CPL_ERR_CONN_TIMEDOUT = 30, 135 CPL_ERR_XMIT_TIMEDOUT = 31, 136 CPL_ERR_PERSIST_TIMEDOUT = 32, 137 CPL_ERR_FINWAIT2_TIMEDOUT = 33, 138 CPL_ERR_KEEPALIVE_TIMEDOUT = 34, 139 CPL_ERR_RTX_NEG_ADVICE = 35, 140 CPL_ERR_PERSIST_NEG_ADVICE = 36, 141 CPL_ERR_KEEPALV_NEG_ADVICE = 37, 142 CPL_ERR_ABORT_FAILED = 42, 143 CPL_ERR_IWARP_FLM = 50, 144 CPL_CONTAINS_READ_RPL = 60, 145 CPL_CONTAINS_WRITE_RPL = 61, 146 }; 147 148 enum { 149 CPL_CONN_POLICY_AUTO = 0, 150 CPL_CONN_POLICY_ASK = 1, 151 CPL_CONN_POLICY_FILTER = 2, 152 CPL_CONN_POLICY_DENY = 3 153 }; 154 155 enum { 156 ULP_MODE_NONE = 0, 157 ULP_MODE_ISCSI = 2, 158 ULP_MODE_RDMA = 4, 159 ULP_MODE_TCPDDP = 5, 160 ULP_MODE_FCOE = 6, 161 ULP_MODE_TLS = 8, 162 }; 163 164 enum { 165 ULP_CRC_HEADER = 1 << 0, 166 ULP_CRC_DATA = 1 << 1 167 }; 168 169 enum { 170 CPL_ABORT_SEND_RST = 0, 171 CPL_ABORT_NO_RST, 172 }; 173 174 enum { /* TX_PKT_XT checksum types */ 175 TX_CSUM_TCP = 0, 176 TX_CSUM_UDP = 1, 177 TX_CSUM_CRC16 = 4, 178 TX_CSUM_CRC32 = 5, 179 TX_CSUM_CRC32C = 6, 180 TX_CSUM_FCOE = 7, 181 TX_CSUM_TCPIP = 8, 182 TX_CSUM_UDPIP = 9, 183 TX_CSUM_TCPIP6 = 10, 184 TX_CSUM_UDPIP6 = 11, 185 TX_CSUM_IP = 12, 186 }; 187 188 union opcode_tid { 189 __be32 opcode_tid; 190 u8 opcode; 191 }; 192 193 #define CPL_OPCODE_S 24 194 #define CPL_OPCODE_V(x) ((x) << CPL_OPCODE_S) 195 #define CPL_OPCODE_G(x) (((x) >> CPL_OPCODE_S) & 0xFF) 196 #define TID_G(x) ((x) & 0xFFFFFF) 197 198 /* tid is assumed to be 24-bits */ 199 #define MK_OPCODE_TID(opcode, tid) (CPL_OPCODE_V(opcode) | (tid)) 200 201 #define OPCODE_TID(cmd) ((cmd)->ot.opcode_tid) 202 203 /* extract the TID from a CPL command */ 204 #define GET_TID(cmd) (TID_G(be32_to_cpu(OPCODE_TID(cmd)))) 205 206 /* partitioning of TID fields that also carry a queue id */ 207 #define TID_TID_S 0 208 #define TID_TID_M 0x3fff 209 #define TID_TID_V(x) ((x) << TID_TID_S) 210 #define TID_TID_G(x) (((x) >> TID_TID_S) & TID_TID_M) 211 212 #define TID_QID_S 14 213 #define TID_QID_M 0x3ff 214 #define TID_QID_V(x) ((x) << TID_QID_S) 215 #define TID_QID_G(x) (((x) >> TID_QID_S) & TID_QID_M) 216 217 struct rss_header { 218 u8 opcode; 219 #if defined(__LITTLE_ENDIAN_BITFIELD) 220 u8 channel:2; 221 u8 filter_hit:1; 222 u8 filter_tid:1; 223 u8 hash_type:2; 224 u8 ipv6:1; 225 u8 send2fw:1; 226 #else 227 u8 send2fw:1; 228 u8 ipv6:1; 229 u8 hash_type:2; 230 u8 filter_tid:1; 231 u8 filter_hit:1; 232 u8 channel:2; 233 #endif 234 __be16 qid; 235 __be32 hash_val; 236 }; 237 238 struct work_request_hdr { 239 __be32 wr_hi; 240 __be32 wr_mid; 241 __be64 wr_lo; 242 }; 243 244 /* wr_hi fields */ 245 #define WR_OP_S 24 246 #define WR_OP_V(x) ((__u64)(x) << WR_OP_S) 247 248 #define WR_HDR struct work_request_hdr wr 249 250 /* option 0 fields */ 251 #define TX_CHAN_S 2 252 #define TX_CHAN_V(x) ((x) << TX_CHAN_S) 253 254 #define ULP_MODE_S 8 255 #define ULP_MODE_V(x) ((x) << ULP_MODE_S) 256 257 #define RCV_BUFSIZ_S 12 258 #define RCV_BUFSIZ_M 0x3FFU 259 #define RCV_BUFSIZ_V(x) ((x) << RCV_BUFSIZ_S) 260 261 #define SMAC_SEL_S 28 262 #define SMAC_SEL_V(x) ((__u64)(x) << SMAC_SEL_S) 263 264 #define L2T_IDX_S 36 265 #define L2T_IDX_V(x) ((__u64)(x) << L2T_IDX_S) 266 267 #define WND_SCALE_S 50 268 #define WND_SCALE_V(x) ((__u64)(x) << WND_SCALE_S) 269 270 #define KEEP_ALIVE_S 54 271 #define KEEP_ALIVE_V(x) ((__u64)(x) << KEEP_ALIVE_S) 272 #define KEEP_ALIVE_F KEEP_ALIVE_V(1ULL) 273 274 #define MSS_IDX_S 60 275 #define MSS_IDX_M 0xF 276 #define MSS_IDX_V(x) ((__u64)(x) << MSS_IDX_S) 277 #define MSS_IDX_G(x) (((x) >> MSS_IDX_S) & MSS_IDX_M) 278 279 /* option 2 fields */ 280 #define RSS_QUEUE_S 0 281 #define RSS_QUEUE_M 0x3FF 282 #define RSS_QUEUE_V(x) ((x) << RSS_QUEUE_S) 283 #define RSS_QUEUE_G(x) (((x) >> RSS_QUEUE_S) & RSS_QUEUE_M) 284 285 #define RSS_QUEUE_VALID_S 10 286 #define RSS_QUEUE_VALID_V(x) ((x) << RSS_QUEUE_VALID_S) 287 #define RSS_QUEUE_VALID_F RSS_QUEUE_VALID_V(1U) 288 289 #define RX_FC_DISABLE_S 20 290 #define RX_FC_DISABLE_V(x) ((x) << RX_FC_DISABLE_S) 291 #define RX_FC_DISABLE_F RX_FC_DISABLE_V(1U) 292 293 #define RX_FC_VALID_S 22 294 #define RX_FC_VALID_V(x) ((x) << RX_FC_VALID_S) 295 #define RX_FC_VALID_F RX_FC_VALID_V(1U) 296 297 #define RX_CHANNEL_S 26 298 #define RX_CHANNEL_V(x) ((x) << RX_CHANNEL_S) 299 #define RX_CHANNEL_F RX_CHANNEL_V(1U) 300 301 #define WND_SCALE_EN_S 28 302 #define WND_SCALE_EN_V(x) ((x) << WND_SCALE_EN_S) 303 #define WND_SCALE_EN_F WND_SCALE_EN_V(1U) 304 305 #define T5_OPT_2_VALID_S 31 306 #define T5_OPT_2_VALID_V(x) ((x) << T5_OPT_2_VALID_S) 307 #define T5_OPT_2_VALID_F T5_OPT_2_VALID_V(1U) 308 309 struct cpl_pass_open_req { 310 WR_HDR; 311 union opcode_tid ot; 312 __be16 local_port; 313 __be16 peer_port; 314 __be32 local_ip; 315 __be32 peer_ip; 316 __be64 opt0; 317 __be64 opt1; 318 }; 319 320 /* option 0 fields */ 321 #define NO_CONG_S 4 322 #define NO_CONG_V(x) ((x) << NO_CONG_S) 323 #define NO_CONG_F NO_CONG_V(1U) 324 325 #define DELACK_S 5 326 #define DELACK_V(x) ((x) << DELACK_S) 327 #define DELACK_F DELACK_V(1U) 328 329 #define NON_OFFLOAD_S 7 330 #define NON_OFFLOAD_V(x) ((x) << NON_OFFLOAD_S) 331 #define NON_OFFLOAD_F NON_OFFLOAD_V(1U) 332 333 #define DSCP_S 22 334 #define DSCP_M 0x3F 335 #define DSCP_V(x) ((x) << DSCP_S) 336 #define DSCP_G(x) (((x) >> DSCP_S) & DSCP_M) 337 338 #define TCAM_BYPASS_S 48 339 #define TCAM_BYPASS_V(x) ((__u64)(x) << TCAM_BYPASS_S) 340 #define TCAM_BYPASS_F TCAM_BYPASS_V(1ULL) 341 342 #define NAGLE_S 49 343 #define NAGLE_V(x) ((__u64)(x) << NAGLE_S) 344 #define NAGLE_F NAGLE_V(1ULL) 345 346 /* option 1 fields */ 347 #define SYN_RSS_ENABLE_S 0 348 #define SYN_RSS_ENABLE_V(x) ((x) << SYN_RSS_ENABLE_S) 349 #define SYN_RSS_ENABLE_F SYN_RSS_ENABLE_V(1U) 350 351 #define SYN_RSS_QUEUE_S 2 352 #define SYN_RSS_QUEUE_V(x) ((x) << SYN_RSS_QUEUE_S) 353 354 #define CONN_POLICY_S 22 355 #define CONN_POLICY_V(x) ((x) << CONN_POLICY_S) 356 357 struct cpl_pass_open_req6 { 358 WR_HDR; 359 union opcode_tid ot; 360 __be16 local_port; 361 __be16 peer_port; 362 __be64 local_ip_hi; 363 __be64 local_ip_lo; 364 __be64 peer_ip_hi; 365 __be64 peer_ip_lo; 366 __be64 opt0; 367 __be64 opt1; 368 }; 369 370 struct cpl_pass_open_rpl { 371 union opcode_tid ot; 372 u8 rsvd[3]; 373 u8 status; 374 }; 375 376 struct tcp_options { 377 __be16 mss; 378 __u8 wsf; 379 #if defined(__LITTLE_ENDIAN_BITFIELD) 380 __u8:4; 381 __u8 unknown:1; 382 __u8:1; 383 __u8 sack:1; 384 __u8 tstamp:1; 385 #else 386 __u8 tstamp:1; 387 __u8 sack:1; 388 __u8:1; 389 __u8 unknown:1; 390 __u8:4; 391 #endif 392 }; 393 394 struct cpl_pass_accept_req { 395 union opcode_tid ot; 396 __be16 rsvd; 397 __be16 len; 398 __be32 hdr_len; 399 __be16 vlan; 400 __be16 l2info; 401 __be32 tos_stid; 402 struct tcp_options tcpopt; 403 }; 404 405 /* cpl_pass_accept_req.hdr_len fields */ 406 #define SYN_RX_CHAN_S 0 407 #define SYN_RX_CHAN_M 0xF 408 #define SYN_RX_CHAN_V(x) ((x) << SYN_RX_CHAN_S) 409 #define SYN_RX_CHAN_G(x) (((x) >> SYN_RX_CHAN_S) & SYN_RX_CHAN_M) 410 411 #define TCP_HDR_LEN_S 10 412 #define TCP_HDR_LEN_M 0x3F 413 #define TCP_HDR_LEN_V(x) ((x) << TCP_HDR_LEN_S) 414 #define TCP_HDR_LEN_G(x) (((x) >> TCP_HDR_LEN_S) & TCP_HDR_LEN_M) 415 416 #define IP_HDR_LEN_S 16 417 #define IP_HDR_LEN_M 0x3FF 418 #define IP_HDR_LEN_V(x) ((x) << IP_HDR_LEN_S) 419 #define IP_HDR_LEN_G(x) (((x) >> IP_HDR_LEN_S) & IP_HDR_LEN_M) 420 421 #define ETH_HDR_LEN_S 26 422 #define ETH_HDR_LEN_M 0x1F 423 #define ETH_HDR_LEN_V(x) ((x) << ETH_HDR_LEN_S) 424 #define ETH_HDR_LEN_G(x) (((x) >> ETH_HDR_LEN_S) & ETH_HDR_LEN_M) 425 426 /* cpl_pass_accept_req.l2info fields */ 427 #define SYN_MAC_IDX_S 0 428 #define SYN_MAC_IDX_M 0x1FF 429 #define SYN_MAC_IDX_V(x) ((x) << SYN_MAC_IDX_S) 430 #define SYN_MAC_IDX_G(x) (((x) >> SYN_MAC_IDX_S) & SYN_MAC_IDX_M) 431 432 #define SYN_XACT_MATCH_S 9 433 #define SYN_XACT_MATCH_V(x) ((x) << SYN_XACT_MATCH_S) 434 #define SYN_XACT_MATCH_F SYN_XACT_MATCH_V(1U) 435 436 #define SYN_INTF_S 12 437 #define SYN_INTF_M 0xF 438 #define SYN_INTF_V(x) ((x) << SYN_INTF_S) 439 #define SYN_INTF_G(x) (((x) >> SYN_INTF_S) & SYN_INTF_M) 440 441 enum { /* TCP congestion control algorithms */ 442 CONG_ALG_RENO, 443 CONG_ALG_TAHOE, 444 CONG_ALG_NEWRENO, 445 CONG_ALG_HIGHSPEED 446 }; 447 448 #define CONG_CNTRL_S 14 449 #define CONG_CNTRL_M 0x3 450 #define CONG_CNTRL_V(x) ((x) << CONG_CNTRL_S) 451 #define CONG_CNTRL_G(x) (((x) >> CONG_CNTRL_S) & CONG_CNTRL_M) 452 453 #define T5_ISS_S 18 454 #define T5_ISS_V(x) ((x) << T5_ISS_S) 455 #define T5_ISS_F T5_ISS_V(1U) 456 457 struct cpl_pass_accept_rpl { 458 WR_HDR; 459 union opcode_tid ot; 460 __be32 opt2; 461 __be64 opt0; 462 }; 463 464 /* option 2 fields */ 465 #define RX_COALESCE_VALID_S 11 466 #define RX_COALESCE_VALID_V(x) ((x) << RX_COALESCE_VALID_S) 467 #define RX_COALESCE_VALID_F RX_COALESCE_VALID_V(1U) 468 469 #define RX_COALESCE_S 12 470 #define RX_COALESCE_V(x) ((x) << RX_COALESCE_S) 471 472 #define PACE_S 16 473 #define PACE_V(x) ((x) << PACE_S) 474 475 #define TX_QUEUE_S 23 476 #define TX_QUEUE_M 0x7 477 #define TX_QUEUE_V(x) ((x) << TX_QUEUE_S) 478 #define TX_QUEUE_G(x) (((x) >> TX_QUEUE_S) & TX_QUEUE_M) 479 480 #define CCTRL_ECN_S 27 481 #define CCTRL_ECN_V(x) ((x) << CCTRL_ECN_S) 482 #define CCTRL_ECN_F CCTRL_ECN_V(1U) 483 484 #define TSTAMPS_EN_S 29 485 #define TSTAMPS_EN_V(x) ((x) << TSTAMPS_EN_S) 486 #define TSTAMPS_EN_F TSTAMPS_EN_V(1U) 487 488 #define SACK_EN_S 30 489 #define SACK_EN_V(x) ((x) << SACK_EN_S) 490 #define SACK_EN_F SACK_EN_V(1U) 491 492 struct cpl_t5_pass_accept_rpl { 493 WR_HDR; 494 union opcode_tid ot; 495 __be32 opt2; 496 __be64 opt0; 497 __be32 iss; 498 __be32 rsvd; 499 }; 500 501 struct cpl_act_open_req { 502 WR_HDR; 503 union opcode_tid ot; 504 __be16 local_port; 505 __be16 peer_port; 506 __be32 local_ip; 507 __be32 peer_ip; 508 __be64 opt0; 509 __be32 params; 510 __be32 opt2; 511 }; 512 513 #define FILTER_TUPLE_S 24 514 #define FILTER_TUPLE_M 0xFFFFFFFFFF 515 #define FILTER_TUPLE_V(x) ((x) << FILTER_TUPLE_S) 516 #define FILTER_TUPLE_G(x) (((x) >> FILTER_TUPLE_S) & FILTER_TUPLE_M) 517 struct cpl_t5_act_open_req { 518 WR_HDR; 519 union opcode_tid ot; 520 __be16 local_port; 521 __be16 peer_port; 522 __be32 local_ip; 523 __be32 peer_ip; 524 __be64 opt0; 525 __be32 rsvd; 526 __be32 opt2; 527 __be64 params; 528 }; 529 530 struct cpl_t6_act_open_req { 531 WR_HDR; 532 union opcode_tid ot; 533 __be16 local_port; 534 __be16 peer_port; 535 __be32 local_ip; 536 __be32 peer_ip; 537 __be64 opt0; 538 __be32 rsvd; 539 __be32 opt2; 540 __be64 params; 541 __be32 rsvd2; 542 __be32 opt3; 543 }; 544 545 struct cpl_act_open_req6 { 546 WR_HDR; 547 union opcode_tid ot; 548 __be16 local_port; 549 __be16 peer_port; 550 __be64 local_ip_hi; 551 __be64 local_ip_lo; 552 __be64 peer_ip_hi; 553 __be64 peer_ip_lo; 554 __be64 opt0; 555 __be32 params; 556 __be32 opt2; 557 }; 558 559 struct cpl_t5_act_open_req6 { 560 WR_HDR; 561 union opcode_tid ot; 562 __be16 local_port; 563 __be16 peer_port; 564 __be64 local_ip_hi; 565 __be64 local_ip_lo; 566 __be64 peer_ip_hi; 567 __be64 peer_ip_lo; 568 __be64 opt0; 569 __be32 rsvd; 570 __be32 opt2; 571 __be64 params; 572 }; 573 574 struct cpl_t6_act_open_req6 { 575 WR_HDR; 576 union opcode_tid ot; 577 __be16 local_port; 578 __be16 peer_port; 579 __be64 local_ip_hi; 580 __be64 local_ip_lo; 581 __be64 peer_ip_hi; 582 __be64 peer_ip_lo; 583 __be64 opt0; 584 __be32 rsvd; 585 __be32 opt2; 586 __be64 params; 587 __be32 rsvd2; 588 __be32 opt3; 589 }; 590 591 struct cpl_act_open_rpl { 592 union opcode_tid ot; 593 __be32 atid_status; 594 }; 595 596 /* cpl_act_open_rpl.atid_status fields */ 597 #define AOPEN_STATUS_S 0 598 #define AOPEN_STATUS_M 0xFF 599 #define AOPEN_STATUS_G(x) (((x) >> AOPEN_STATUS_S) & AOPEN_STATUS_M) 600 601 #define AOPEN_ATID_S 8 602 #define AOPEN_ATID_M 0xFFFFFF 603 #define AOPEN_ATID_G(x) (((x) >> AOPEN_ATID_S) & AOPEN_ATID_M) 604 605 struct cpl_pass_establish { 606 union opcode_tid ot; 607 __be32 rsvd; 608 __be32 tos_stid; 609 __be16 mac_idx; 610 __be16 tcp_opt; 611 __be32 snd_isn; 612 __be32 rcv_isn; 613 }; 614 615 /* cpl_pass_establish.tos_stid fields */ 616 #define PASS_OPEN_TID_S 0 617 #define PASS_OPEN_TID_M 0xFFFFFF 618 #define PASS_OPEN_TID_V(x) ((x) << PASS_OPEN_TID_S) 619 #define PASS_OPEN_TID_G(x) (((x) >> PASS_OPEN_TID_S) & PASS_OPEN_TID_M) 620 621 #define PASS_OPEN_TOS_S 24 622 #define PASS_OPEN_TOS_M 0xFF 623 #define PASS_OPEN_TOS_V(x) ((x) << PASS_OPEN_TOS_S) 624 #define PASS_OPEN_TOS_G(x) (((x) >> PASS_OPEN_TOS_S) & PASS_OPEN_TOS_M) 625 626 /* cpl_pass_establish.tcp_opt fields (also applies to act_open_establish) */ 627 #define TCPOPT_WSCALE_OK_S 5 628 #define TCPOPT_WSCALE_OK_M 0x1 629 #define TCPOPT_WSCALE_OK_G(x) \ 630 (((x) >> TCPOPT_WSCALE_OK_S) & TCPOPT_WSCALE_OK_M) 631 632 #define TCPOPT_SACK_S 6 633 #define TCPOPT_SACK_M 0x1 634 #define TCPOPT_SACK_G(x) (((x) >> TCPOPT_SACK_S) & TCPOPT_SACK_M) 635 636 #define TCPOPT_TSTAMP_S 7 637 #define TCPOPT_TSTAMP_M 0x1 638 #define TCPOPT_TSTAMP_G(x) (((x) >> TCPOPT_TSTAMP_S) & TCPOPT_TSTAMP_M) 639 640 #define TCPOPT_SND_WSCALE_S 8 641 #define TCPOPT_SND_WSCALE_M 0xF 642 #define TCPOPT_SND_WSCALE_G(x) \ 643 (((x) >> TCPOPT_SND_WSCALE_S) & TCPOPT_SND_WSCALE_M) 644 645 #define TCPOPT_MSS_S 12 646 #define TCPOPT_MSS_M 0xF 647 #define TCPOPT_MSS_G(x) (((x) >> TCPOPT_MSS_S) & TCPOPT_MSS_M) 648 649 #define T6_TCP_HDR_LEN_S 8 650 #define T6_TCP_HDR_LEN_V(x) ((x) << T6_TCP_HDR_LEN_S) 651 #define T6_TCP_HDR_LEN_G(x) (((x) >> T6_TCP_HDR_LEN_S) & TCP_HDR_LEN_M) 652 653 #define T6_IP_HDR_LEN_S 14 654 #define T6_IP_HDR_LEN_V(x) ((x) << T6_IP_HDR_LEN_S) 655 #define T6_IP_HDR_LEN_G(x) (((x) >> T6_IP_HDR_LEN_S) & IP_HDR_LEN_M) 656 657 #define T6_ETH_HDR_LEN_S 24 658 #define T6_ETH_HDR_LEN_M 0xFF 659 #define T6_ETH_HDR_LEN_V(x) ((x) << T6_ETH_HDR_LEN_S) 660 #define T6_ETH_HDR_LEN_G(x) (((x) >> T6_ETH_HDR_LEN_S) & T6_ETH_HDR_LEN_M) 661 662 struct cpl_act_establish { 663 union opcode_tid ot; 664 __be32 rsvd; 665 __be32 tos_atid; 666 __be16 mac_idx; 667 __be16 tcp_opt; 668 __be32 snd_isn; 669 __be32 rcv_isn; 670 }; 671 672 struct cpl_get_tcb { 673 WR_HDR; 674 union opcode_tid ot; 675 __be16 reply_ctrl; 676 __be16 cookie; 677 }; 678 679 /* cpl_get_tcb.reply_ctrl fields */ 680 #define QUEUENO_S 0 681 #define QUEUENO_V(x) ((x) << QUEUENO_S) 682 683 #define REPLY_CHAN_S 14 684 #define REPLY_CHAN_V(x) ((x) << REPLY_CHAN_S) 685 #define REPLY_CHAN_F REPLY_CHAN_V(1U) 686 687 #define NO_REPLY_S 15 688 #define NO_REPLY_V(x) ((x) << NO_REPLY_S) 689 #define NO_REPLY_F NO_REPLY_V(1U) 690 691 struct cpl_set_tcb_field { 692 WR_HDR; 693 union opcode_tid ot; 694 __be16 reply_ctrl; 695 __be16 word_cookie; 696 __be64 mask; 697 __be64 val; 698 }; 699 700 /* cpl_set_tcb_field.word_cookie fields */ 701 #define TCB_WORD_S 0 702 #define TCB_WORD_V(x) ((x) << TCB_WORD_S) 703 704 #define TCB_COOKIE_S 5 705 #define TCB_COOKIE_M 0x7 706 #define TCB_COOKIE_V(x) ((x) << TCB_COOKIE_S) 707 #define TCB_COOKIE_G(x) (((x) >> TCB_COOKIE_S) & TCB_COOKIE_M) 708 709 struct cpl_set_tcb_rpl { 710 union opcode_tid ot; 711 __be16 rsvd; 712 u8 cookie; 713 u8 status; 714 __be64 oldval; 715 }; 716 717 struct cpl_close_con_req { 718 WR_HDR; 719 union opcode_tid ot; 720 __be32 rsvd; 721 }; 722 723 struct cpl_close_con_rpl { 724 union opcode_tid ot; 725 u8 rsvd[3]; 726 u8 status; 727 __be32 snd_nxt; 728 __be32 rcv_nxt; 729 }; 730 731 struct cpl_close_listsvr_req { 732 WR_HDR; 733 union opcode_tid ot; 734 __be16 reply_ctrl; 735 __be16 rsvd; 736 }; 737 738 /* additional cpl_close_listsvr_req.reply_ctrl field */ 739 #define LISTSVR_IPV6_S 14 740 #define LISTSVR_IPV6_V(x) ((x) << LISTSVR_IPV6_S) 741 #define LISTSVR_IPV6_F LISTSVR_IPV6_V(1U) 742 743 struct cpl_close_listsvr_rpl { 744 union opcode_tid ot; 745 u8 rsvd[3]; 746 u8 status; 747 }; 748 749 struct cpl_abort_req_rss { 750 union opcode_tid ot; 751 u8 rsvd[3]; 752 u8 status; 753 }; 754 755 struct cpl_abort_req_rss6 { 756 WR_HDR; 757 union opcode_tid ot; 758 __be32 srqidx_status; 759 }; 760 761 #define ABORT_RSS_STATUS_S 0 762 #define ABORT_RSS_STATUS_M 0xff 763 #define ABORT_RSS_STATUS_V(x) ((x) << ABORT_RSS_STATUS_S) 764 #define ABORT_RSS_STATUS_G(x) (((x) >> ABORT_RSS_STATUS_S) & ABORT_RSS_STATUS_M) 765 766 #define ABORT_RSS_SRQIDX_S 8 767 #define ABORT_RSS_SRQIDX_M 0xffffff 768 #define ABORT_RSS_SRQIDX_V(x) ((x) << ABORT_RSS_SRQIDX_S) 769 #define ABORT_RSS_SRQIDX_G(x) (((x) >> ABORT_RSS_SRQIDX_S) & ABORT_RSS_SRQIDX_M) 770 771 struct cpl_abort_req { 772 WR_HDR; 773 union opcode_tid ot; 774 __be32 rsvd0; 775 u8 rsvd1; 776 u8 cmd; 777 u8 rsvd2[6]; 778 }; 779 780 struct cpl_abort_rpl_rss { 781 union opcode_tid ot; 782 u8 rsvd[3]; 783 u8 status; 784 }; 785 786 struct cpl_abort_rpl_rss6 { 787 union opcode_tid ot; 788 __be32 srqidx_status; 789 }; 790 791 struct cpl_abort_rpl { 792 WR_HDR; 793 union opcode_tid ot; 794 __be32 rsvd0; 795 u8 rsvd1; 796 u8 cmd; 797 u8 rsvd2[6]; 798 }; 799 800 struct cpl_peer_close { 801 union opcode_tid ot; 802 __be32 rcv_nxt; 803 }; 804 805 struct cpl_tid_release { 806 WR_HDR; 807 union opcode_tid ot; 808 __be32 rsvd; 809 }; 810 811 struct cpl_tx_pkt_core { 812 __be32 ctrl0; 813 __be16 pack; 814 __be16 len; 815 __be64 ctrl1; 816 }; 817 818 struct cpl_tx_pkt { 819 WR_HDR; 820 struct cpl_tx_pkt_core c; 821 }; 822 823 #define cpl_tx_pkt_xt cpl_tx_pkt 824 825 /* cpl_tx_pkt_core.ctrl0 fields */ 826 #define TXPKT_VF_S 0 827 #define TXPKT_VF_V(x) ((x) << TXPKT_VF_S) 828 829 #define TXPKT_PF_S 8 830 #define TXPKT_PF_V(x) ((x) << TXPKT_PF_S) 831 832 #define TXPKT_VF_VLD_S 11 833 #define TXPKT_VF_VLD_V(x) ((x) << TXPKT_VF_VLD_S) 834 #define TXPKT_VF_VLD_F TXPKT_VF_VLD_V(1U) 835 836 #define TXPKT_OVLAN_IDX_S 12 837 #define TXPKT_OVLAN_IDX_V(x) ((x) << TXPKT_OVLAN_IDX_S) 838 839 #define TXPKT_T5_OVLAN_IDX_S 12 840 #define TXPKT_T5_OVLAN_IDX_V(x) ((x) << TXPKT_T5_OVLAN_IDX_S) 841 842 #define TXPKT_INTF_S 16 843 #define TXPKT_INTF_V(x) ((x) << TXPKT_INTF_S) 844 845 #define TXPKT_INS_OVLAN_S 21 846 #define TXPKT_INS_OVLAN_V(x) ((x) << TXPKT_INS_OVLAN_S) 847 #define TXPKT_INS_OVLAN_F TXPKT_INS_OVLAN_V(1U) 848 849 #define TXPKT_TSTAMP_S 23 850 #define TXPKT_TSTAMP_V(x) ((x) << TXPKT_TSTAMP_S) 851 #define TXPKT_TSTAMP_F TXPKT_TSTAMP_V(1ULL) 852 853 #define TXPKT_OPCODE_S 24 854 #define TXPKT_OPCODE_V(x) ((x) << TXPKT_OPCODE_S) 855 856 /* cpl_tx_pkt_core.ctrl1 fields */ 857 #define TXPKT_CSUM_END_S 12 858 #define TXPKT_CSUM_END_V(x) ((x) << TXPKT_CSUM_END_S) 859 860 #define TXPKT_CSUM_START_S 20 861 #define TXPKT_CSUM_START_V(x) ((x) << TXPKT_CSUM_START_S) 862 863 #define TXPKT_IPHDR_LEN_S 20 864 #define TXPKT_IPHDR_LEN_V(x) ((__u64)(x) << TXPKT_IPHDR_LEN_S) 865 866 #define TXPKT_CSUM_LOC_S 30 867 #define TXPKT_CSUM_LOC_V(x) ((__u64)(x) << TXPKT_CSUM_LOC_S) 868 869 #define TXPKT_ETHHDR_LEN_S 34 870 #define TXPKT_ETHHDR_LEN_V(x) ((__u64)(x) << TXPKT_ETHHDR_LEN_S) 871 872 #define T6_TXPKT_ETHHDR_LEN_S 32 873 #define T6_TXPKT_ETHHDR_LEN_V(x) ((__u64)(x) << T6_TXPKT_ETHHDR_LEN_S) 874 875 #define TXPKT_CSUM_TYPE_S 40 876 #define TXPKT_CSUM_TYPE_V(x) ((__u64)(x) << TXPKT_CSUM_TYPE_S) 877 878 #define TXPKT_VLAN_S 44 879 #define TXPKT_VLAN_V(x) ((__u64)(x) << TXPKT_VLAN_S) 880 881 #define TXPKT_VLAN_VLD_S 60 882 #define TXPKT_VLAN_VLD_V(x) ((__u64)(x) << TXPKT_VLAN_VLD_S) 883 #define TXPKT_VLAN_VLD_F TXPKT_VLAN_VLD_V(1ULL) 884 885 #define TXPKT_IPCSUM_DIS_S 62 886 #define TXPKT_IPCSUM_DIS_V(x) ((__u64)(x) << TXPKT_IPCSUM_DIS_S) 887 #define TXPKT_IPCSUM_DIS_F TXPKT_IPCSUM_DIS_V(1ULL) 888 889 #define TXPKT_L4CSUM_DIS_S 63 890 #define TXPKT_L4CSUM_DIS_V(x) ((__u64)(x) << TXPKT_L4CSUM_DIS_S) 891 #define TXPKT_L4CSUM_DIS_F TXPKT_L4CSUM_DIS_V(1ULL) 892 893 struct cpl_tx_pkt_lso_core { 894 __be32 lso_ctrl; 895 __be16 ipid_ofst; 896 __be16 mss; 897 __be32 seqno_offset; 898 __be32 len; 899 /* encapsulated CPL (TX_PKT, TX_PKT_XT or TX_DATA) follows here */ 900 }; 901 902 /* cpl_tx_pkt_lso_core.lso_ctrl fields */ 903 #define LSO_TCPHDR_LEN_S 0 904 #define LSO_TCPHDR_LEN_V(x) ((x) << LSO_TCPHDR_LEN_S) 905 906 #define LSO_IPHDR_LEN_S 4 907 #define LSO_IPHDR_LEN_V(x) ((x) << LSO_IPHDR_LEN_S) 908 909 #define LSO_ETHHDR_LEN_S 16 910 #define LSO_ETHHDR_LEN_V(x) ((x) << LSO_ETHHDR_LEN_S) 911 912 #define LSO_IPV6_S 20 913 #define LSO_IPV6_V(x) ((x) << LSO_IPV6_S) 914 #define LSO_IPV6_F LSO_IPV6_V(1U) 915 916 #define LSO_LAST_SLICE_S 22 917 #define LSO_LAST_SLICE_V(x) ((x) << LSO_LAST_SLICE_S) 918 #define LSO_LAST_SLICE_F LSO_LAST_SLICE_V(1U) 919 920 #define LSO_FIRST_SLICE_S 23 921 #define LSO_FIRST_SLICE_V(x) ((x) << LSO_FIRST_SLICE_S) 922 #define LSO_FIRST_SLICE_F LSO_FIRST_SLICE_V(1U) 923 924 #define LSO_OPCODE_S 24 925 #define LSO_OPCODE_V(x) ((x) << LSO_OPCODE_S) 926 927 #define LSO_T5_XFER_SIZE_S 0 928 #define LSO_T5_XFER_SIZE_V(x) ((x) << LSO_T5_XFER_SIZE_S) 929 930 struct cpl_tx_pkt_lso { 931 WR_HDR; 932 struct cpl_tx_pkt_lso_core c; 933 /* encapsulated CPL (TX_PKT, TX_PKT_XT or TX_DATA) follows here */ 934 }; 935 936 struct cpl_iscsi_hdr { 937 union opcode_tid ot; 938 __be16 pdu_len_ddp; 939 __be16 len; 940 __be32 seq; 941 __be16 urg; 942 u8 rsvd; 943 u8 status; 944 }; 945 946 /* cpl_iscsi_hdr.pdu_len_ddp fields */ 947 #define ISCSI_PDU_LEN_S 0 948 #define ISCSI_PDU_LEN_M 0x7FFF 949 #define ISCSI_PDU_LEN_V(x) ((x) << ISCSI_PDU_LEN_S) 950 #define ISCSI_PDU_LEN_G(x) (((x) >> ISCSI_PDU_LEN_S) & ISCSI_PDU_LEN_M) 951 952 #define ISCSI_DDP_S 15 953 #define ISCSI_DDP_V(x) ((x) << ISCSI_DDP_S) 954 #define ISCSI_DDP_F ISCSI_DDP_V(1U) 955 956 struct cpl_rx_data_ddp { 957 union opcode_tid ot; 958 __be16 urg; 959 __be16 len; 960 __be32 seq; 961 union { 962 __be32 nxt_seq; 963 __be32 ddp_report; 964 }; 965 __be32 ulp_crc; 966 __be32 ddpvld; 967 }; 968 969 #define cpl_rx_iscsi_ddp cpl_rx_data_ddp 970 971 struct cpl_iscsi_data { 972 union opcode_tid ot; 973 __u8 rsvd0[2]; 974 __be16 len; 975 __be32 seq; 976 __be16 urg; 977 __u8 rsvd1; 978 __u8 status; 979 }; 980 981 struct cpl_rx_iscsi_cmp { 982 union opcode_tid ot; 983 __be16 pdu_len_ddp; 984 __be16 len; 985 __be32 seq; 986 __be16 urg; 987 __u8 rsvd; 988 __u8 status; 989 __be32 ulp_crc; 990 __be32 ddpvld; 991 }; 992 993 struct cpl_tx_data_iso { 994 __be32 op_to_scsi; 995 __u8 reserved1; 996 __u8 ahs_len; 997 __be16 mpdu; 998 __be32 burst_size; 999 __be32 len; 1000 __be32 reserved2_seglen_offset; 1001 __be32 datasn_offset; 1002 __be32 buffer_offset; 1003 __be32 reserved3; 1004 1005 /* encapsulated CPL_TX_DATA follows here */ 1006 }; 1007 1008 /* cpl_tx_data_iso.op_to_scsi fields */ 1009 #define CPL_TX_DATA_ISO_OP_S 24 1010 #define CPL_TX_DATA_ISO_OP_M 0xff 1011 #define CPL_TX_DATA_ISO_OP_V(x) ((x) << CPL_TX_DATA_ISO_OP_S) 1012 #define CPL_TX_DATA_ISO_OP_G(x) \ 1013 (((x) >> CPL_TX_DATA_ISO_OP_S) & CPL_TX_DATA_ISO_OP_M) 1014 1015 #define CPL_TX_DATA_ISO_FIRST_S 23 1016 #define CPL_TX_DATA_ISO_FIRST_M 0x1 1017 #define CPL_TX_DATA_ISO_FIRST_V(x) ((x) << CPL_TX_DATA_ISO_FIRST_S) 1018 #define CPL_TX_DATA_ISO_FIRST_G(x) \ 1019 (((x) >> CPL_TX_DATA_ISO_FIRST_S) & CPL_TX_DATA_ISO_FIRST_M) 1020 #define CPL_TX_DATA_ISO_FIRST_F CPL_TX_DATA_ISO_FIRST_V(1U) 1021 1022 #define CPL_TX_DATA_ISO_LAST_S 22 1023 #define CPL_TX_DATA_ISO_LAST_M 0x1 1024 #define CPL_TX_DATA_ISO_LAST_V(x) ((x) << CPL_TX_DATA_ISO_LAST_S) 1025 #define CPL_TX_DATA_ISO_LAST_G(x) \ 1026 (((x) >> CPL_TX_DATA_ISO_LAST_S) & CPL_TX_DATA_ISO_LAST_M) 1027 #define CPL_TX_DATA_ISO_LAST_F CPL_TX_DATA_ISO_LAST_V(1U) 1028 1029 #define CPL_TX_DATA_ISO_CPLHDRLEN_S 21 1030 #define CPL_TX_DATA_ISO_CPLHDRLEN_M 0x1 1031 #define CPL_TX_DATA_ISO_CPLHDRLEN_V(x) ((x) << CPL_TX_DATA_ISO_CPLHDRLEN_S) 1032 #define CPL_TX_DATA_ISO_CPLHDRLEN_G(x) \ 1033 (((x) >> CPL_TX_DATA_ISO_CPLHDRLEN_S) & CPL_TX_DATA_ISO_CPLHDRLEN_M) 1034 #define CPL_TX_DATA_ISO_CPLHDRLEN_F CPL_TX_DATA_ISO_CPLHDRLEN_V(1U) 1035 1036 #define CPL_TX_DATA_ISO_HDRCRC_S 20 1037 #define CPL_TX_DATA_ISO_HDRCRC_M 0x1 1038 #define CPL_TX_DATA_ISO_HDRCRC_V(x) ((x) << CPL_TX_DATA_ISO_HDRCRC_S) 1039 #define CPL_TX_DATA_ISO_HDRCRC_G(x) \ 1040 (((x) >> CPL_TX_DATA_ISO_HDRCRC_S) & CPL_TX_DATA_ISO_HDRCRC_M) 1041 #define CPL_TX_DATA_ISO_HDRCRC_F CPL_TX_DATA_ISO_HDRCRC_V(1U) 1042 1043 #define CPL_TX_DATA_ISO_PLDCRC_S 19 1044 #define CPL_TX_DATA_ISO_PLDCRC_M 0x1 1045 #define CPL_TX_DATA_ISO_PLDCRC_V(x) ((x) << CPL_TX_DATA_ISO_PLDCRC_S) 1046 #define CPL_TX_DATA_ISO_PLDCRC_G(x) \ 1047 (((x) >> CPL_TX_DATA_ISO_PLDCRC_S) & CPL_TX_DATA_ISO_PLDCRC_M) 1048 #define CPL_TX_DATA_ISO_PLDCRC_F CPL_TX_DATA_ISO_PLDCRC_V(1U) 1049 1050 #define CPL_TX_DATA_ISO_IMMEDIATE_S 18 1051 #define CPL_TX_DATA_ISO_IMMEDIATE_M 0x1 1052 #define CPL_TX_DATA_ISO_IMMEDIATE_V(x) ((x) << CPL_TX_DATA_ISO_IMMEDIATE_S) 1053 #define CPL_TX_DATA_ISO_IMMEDIATE_G(x) \ 1054 (((x) >> CPL_TX_DATA_ISO_IMMEDIATE_S) & CPL_TX_DATA_ISO_IMMEDIATE_M) 1055 #define CPL_TX_DATA_ISO_IMMEDIATE_F CPL_TX_DATA_ISO_IMMEDIATE_V(1U) 1056 1057 #define CPL_TX_DATA_ISO_SCSI_S 16 1058 #define CPL_TX_DATA_ISO_SCSI_M 0x3 1059 #define CPL_TX_DATA_ISO_SCSI_V(x) ((x) << CPL_TX_DATA_ISO_SCSI_S) 1060 #define CPL_TX_DATA_ISO_SCSI_G(x) \ 1061 (((x) >> CPL_TX_DATA_ISO_SCSI_S) & CPL_TX_DATA_ISO_SCSI_M) 1062 1063 /* cpl_tx_data_iso.reserved2_seglen_offset fields */ 1064 #define CPL_TX_DATA_ISO_SEGLEN_OFFSET_S 0 1065 #define CPL_TX_DATA_ISO_SEGLEN_OFFSET_M 0xffffff 1066 #define CPL_TX_DATA_ISO_SEGLEN_OFFSET_V(x) \ 1067 ((x) << CPL_TX_DATA_ISO_SEGLEN_OFFSET_S) 1068 #define CPL_TX_DATA_ISO_SEGLEN_OFFSET_G(x) \ 1069 (((x) >> CPL_TX_DATA_ISO_SEGLEN_OFFSET_S) & \ 1070 CPL_TX_DATA_ISO_SEGLEN_OFFSET_M) 1071 1072 struct cpl_rx_data { 1073 union opcode_tid ot; 1074 __be16 rsvd; 1075 __be16 len; 1076 __be32 seq; 1077 __be16 urg; 1078 #if defined(__LITTLE_ENDIAN_BITFIELD) 1079 u8 dack_mode:2; 1080 u8 psh:1; 1081 u8 heartbeat:1; 1082 u8 ddp_off:1; 1083 u8 :3; 1084 #else 1085 u8 :3; 1086 u8 ddp_off:1; 1087 u8 heartbeat:1; 1088 u8 psh:1; 1089 u8 dack_mode:2; 1090 #endif 1091 u8 status; 1092 }; 1093 1094 struct cpl_rx_data_ack { 1095 WR_HDR; 1096 union opcode_tid ot; 1097 __be32 credit_dack; 1098 }; 1099 1100 /* cpl_rx_data_ack.ack_seq fields */ 1101 #define RX_CREDITS_S 0 1102 #define RX_CREDITS_V(x) ((x) << RX_CREDITS_S) 1103 1104 #define RX_FORCE_ACK_S 28 1105 #define RX_FORCE_ACK_V(x) ((x) << RX_FORCE_ACK_S) 1106 #define RX_FORCE_ACK_F RX_FORCE_ACK_V(1U) 1107 1108 #define RX_DACK_MODE_S 29 1109 #define RX_DACK_MODE_M 0x3 1110 #define RX_DACK_MODE_V(x) ((x) << RX_DACK_MODE_S) 1111 #define RX_DACK_MODE_G(x) (((x) >> RX_DACK_MODE_S) & RX_DACK_MODE_M) 1112 1113 #define RX_DACK_CHANGE_S 31 1114 #define RX_DACK_CHANGE_V(x) ((x) << RX_DACK_CHANGE_S) 1115 #define RX_DACK_CHANGE_F RX_DACK_CHANGE_V(1U) 1116 1117 struct cpl_rx_pkt { 1118 struct rss_header rsshdr; 1119 u8 opcode; 1120 #if defined(__LITTLE_ENDIAN_BITFIELD) 1121 u8 iff:4; 1122 u8 csum_calc:1; 1123 u8 ipmi_pkt:1; 1124 u8 vlan_ex:1; 1125 u8 ip_frag:1; 1126 #else 1127 u8 ip_frag:1; 1128 u8 vlan_ex:1; 1129 u8 ipmi_pkt:1; 1130 u8 csum_calc:1; 1131 u8 iff:4; 1132 #endif 1133 __be16 csum; 1134 __be16 vlan; 1135 __be16 len; 1136 __be32 l2info; 1137 __be16 hdr_len; 1138 __be16 err_vec; 1139 }; 1140 1141 #define RX_T6_ETHHDR_LEN_M 0xFF 1142 #define RX_T6_ETHHDR_LEN_G(x) (((x) >> RX_ETHHDR_LEN_S) & RX_T6_ETHHDR_LEN_M) 1143 1144 #define RXF_PSH_S 20 1145 #define RXF_PSH_V(x) ((x) << RXF_PSH_S) 1146 #define RXF_PSH_F RXF_PSH_V(1U) 1147 1148 #define RXF_SYN_S 21 1149 #define RXF_SYN_V(x) ((x) << RXF_SYN_S) 1150 #define RXF_SYN_F RXF_SYN_V(1U) 1151 1152 #define RXF_UDP_S 22 1153 #define RXF_UDP_V(x) ((x) << RXF_UDP_S) 1154 #define RXF_UDP_F RXF_UDP_V(1U) 1155 1156 #define RXF_TCP_S 23 1157 #define RXF_TCP_V(x) ((x) << RXF_TCP_S) 1158 #define RXF_TCP_F RXF_TCP_V(1U) 1159 1160 #define RXF_IP_S 24 1161 #define RXF_IP_V(x) ((x) << RXF_IP_S) 1162 #define RXF_IP_F RXF_IP_V(1U) 1163 1164 #define RXF_IP6_S 25 1165 #define RXF_IP6_V(x) ((x) << RXF_IP6_S) 1166 #define RXF_IP6_F RXF_IP6_V(1U) 1167 1168 #define RXF_SYN_COOKIE_S 26 1169 #define RXF_SYN_COOKIE_V(x) ((x) << RXF_SYN_COOKIE_S) 1170 #define RXF_SYN_COOKIE_F RXF_SYN_COOKIE_V(1U) 1171 1172 #define RXF_FCOE_S 26 1173 #define RXF_FCOE_V(x) ((x) << RXF_FCOE_S) 1174 #define RXF_FCOE_F RXF_FCOE_V(1U) 1175 1176 #define RXF_LRO_S 27 1177 #define RXF_LRO_V(x) ((x) << RXF_LRO_S) 1178 #define RXF_LRO_F RXF_LRO_V(1U) 1179 1180 /* rx_pkt.l2info fields */ 1181 #define RX_ETHHDR_LEN_S 0 1182 #define RX_ETHHDR_LEN_M 0x1F 1183 #define RX_ETHHDR_LEN_V(x) ((x) << RX_ETHHDR_LEN_S) 1184 #define RX_ETHHDR_LEN_G(x) (((x) >> RX_ETHHDR_LEN_S) & RX_ETHHDR_LEN_M) 1185 1186 #define RX_T5_ETHHDR_LEN_S 0 1187 #define RX_T5_ETHHDR_LEN_M 0x3F 1188 #define RX_T5_ETHHDR_LEN_V(x) ((x) << RX_T5_ETHHDR_LEN_S) 1189 #define RX_T5_ETHHDR_LEN_G(x) (((x) >> RX_T5_ETHHDR_LEN_S) & RX_T5_ETHHDR_LEN_M) 1190 1191 #define RX_MACIDX_S 8 1192 #define RX_MACIDX_M 0x1FF 1193 #define RX_MACIDX_V(x) ((x) << RX_MACIDX_S) 1194 #define RX_MACIDX_G(x) (((x) >> RX_MACIDX_S) & RX_MACIDX_M) 1195 1196 #define RXF_SYN_S 21 1197 #define RXF_SYN_V(x) ((x) << RXF_SYN_S) 1198 #define RXF_SYN_F RXF_SYN_V(1U) 1199 1200 #define RX_CHAN_S 28 1201 #define RX_CHAN_M 0xF 1202 #define RX_CHAN_V(x) ((x) << RX_CHAN_S) 1203 #define RX_CHAN_G(x) (((x) >> RX_CHAN_S) & RX_CHAN_M) 1204 1205 /* rx_pkt.hdr_len fields */ 1206 #define RX_TCPHDR_LEN_S 0 1207 #define RX_TCPHDR_LEN_M 0x3F 1208 #define RX_TCPHDR_LEN_V(x) ((x) << RX_TCPHDR_LEN_S) 1209 #define RX_TCPHDR_LEN_G(x) (((x) >> RX_TCPHDR_LEN_S) & RX_TCPHDR_LEN_M) 1210 1211 #define RX_IPHDR_LEN_S 6 1212 #define RX_IPHDR_LEN_M 0x3FF 1213 #define RX_IPHDR_LEN_V(x) ((x) << RX_IPHDR_LEN_S) 1214 #define RX_IPHDR_LEN_G(x) (((x) >> RX_IPHDR_LEN_S) & RX_IPHDR_LEN_M) 1215 1216 /* rx_pkt.err_vec fields */ 1217 #define RXERR_CSUM_S 13 1218 #define RXERR_CSUM_V(x) ((x) << RXERR_CSUM_S) 1219 #define RXERR_CSUM_F RXERR_CSUM_V(1U) 1220 1221 #define T6_COMPR_RXERR_LEN_S 1 1222 #define T6_COMPR_RXERR_LEN_V(x) ((x) << T6_COMPR_RXERR_LEN_S) 1223 #define T6_COMPR_RXERR_LEN_F T6_COMPR_RXERR_LEN_V(1U) 1224 1225 #define T6_COMPR_RXERR_VEC_S 0 1226 #define T6_COMPR_RXERR_VEC_M 0x3F 1227 #define T6_COMPR_RXERR_VEC_V(x) ((x) << T6_COMPR_RXERR_LEN_S) 1228 #define T6_COMPR_RXERR_VEC_G(x) \ 1229 (((x) >> T6_COMPR_RXERR_VEC_S) & T6_COMPR_RXERR_VEC_M) 1230 1231 /* Logical OR of RX_ERROR_CSUM, RX_ERROR_CSIP */ 1232 #define T6_COMPR_RXERR_SUM_S 4 1233 #define T6_COMPR_RXERR_SUM_V(x) ((x) << T6_COMPR_RXERR_SUM_S) 1234 #define T6_COMPR_RXERR_SUM_F T6_COMPR_RXERR_SUM_V(1U) 1235 1236 #define T6_RX_TNLHDR_LEN_S 8 1237 #define T6_RX_TNLHDR_LEN_M 0xFF 1238 #define T6_RX_TNLHDR_LEN_V(x) ((x) << T6_RX_TNLHDR_LEN_S) 1239 #define T6_RX_TNLHDR_LEN_G(x) (((x) >> T6_RX_TNLHDR_LEN_S) & T6_RX_TNLHDR_LEN_M) 1240 1241 struct cpl_trace_pkt { 1242 u8 opcode; 1243 u8 intf; 1244 #if defined(__LITTLE_ENDIAN_BITFIELD) 1245 u8 runt:4; 1246 u8 filter_hit:4; 1247 u8 :6; 1248 u8 err:1; 1249 u8 trunc:1; 1250 #else 1251 u8 filter_hit:4; 1252 u8 runt:4; 1253 u8 trunc:1; 1254 u8 err:1; 1255 u8 :6; 1256 #endif 1257 __be16 rsvd; 1258 __be16 len; 1259 __be64 tstamp; 1260 }; 1261 1262 struct cpl_t5_trace_pkt { 1263 __u8 opcode; 1264 __u8 intf; 1265 #if defined(__LITTLE_ENDIAN_BITFIELD) 1266 __u8 runt:4; 1267 __u8 filter_hit:4; 1268 __u8:6; 1269 __u8 err:1; 1270 __u8 trunc:1; 1271 #else 1272 __u8 filter_hit:4; 1273 __u8 runt:4; 1274 __u8 trunc:1; 1275 __u8 err:1; 1276 __u8:6; 1277 #endif 1278 __be16 rsvd; 1279 __be16 len; 1280 __be64 tstamp; 1281 __be64 rsvd1; 1282 }; 1283 1284 struct cpl_l2t_write_req { 1285 WR_HDR; 1286 union opcode_tid ot; 1287 __be16 params; 1288 __be16 l2t_idx; 1289 __be16 vlan; 1290 u8 dst_mac[6]; 1291 }; 1292 1293 /* cpl_l2t_write_req.params fields */ 1294 #define L2T_W_INFO_S 2 1295 #define L2T_W_INFO_V(x) ((x) << L2T_W_INFO_S) 1296 1297 #define L2T_W_PORT_S 8 1298 #define L2T_W_PORT_V(x) ((x) << L2T_W_PORT_S) 1299 1300 #define L2T_W_NOREPLY_S 15 1301 #define L2T_W_NOREPLY_V(x) ((x) << L2T_W_NOREPLY_S) 1302 #define L2T_W_NOREPLY_F L2T_W_NOREPLY_V(1U) 1303 1304 #define CPL_L2T_VLAN_NONE 0xfff 1305 1306 struct cpl_l2t_write_rpl { 1307 union opcode_tid ot; 1308 u8 status; 1309 u8 rsvd[3]; 1310 }; 1311 1312 struct cpl_smt_write_req { 1313 WR_HDR; 1314 union opcode_tid ot; 1315 __be32 params; 1316 __be16 pfvf1; 1317 u8 src_mac1[6]; 1318 __be16 pfvf0; 1319 u8 src_mac0[6]; 1320 }; 1321 1322 struct cpl_t6_smt_write_req { 1323 WR_HDR; 1324 union opcode_tid ot; 1325 __be32 params; 1326 __be64 tag; 1327 __be16 pfvf0; 1328 u8 src_mac0[6]; 1329 __be32 local_ip; 1330 __be32 rsvd; 1331 }; 1332 1333 struct cpl_smt_write_rpl { 1334 union opcode_tid ot; 1335 u8 status; 1336 u8 rsvd[3]; 1337 }; 1338 1339 /* cpl_smt_{read,write}_req.params fields */ 1340 #define SMTW_OVLAN_IDX_S 16 1341 #define SMTW_OVLAN_IDX_V(x) ((x) << SMTW_OVLAN_IDX_S) 1342 1343 #define SMTW_IDX_S 20 1344 #define SMTW_IDX_V(x) ((x) << SMTW_IDX_S) 1345 1346 #define SMTW_NORPL_S 31 1347 #define SMTW_NORPL_V(x) ((x) << SMTW_NORPL_S) 1348 #define SMTW_NORPL_F SMTW_NORPL_V(1U) 1349 1350 struct cpl_rdma_terminate { 1351 union opcode_tid ot; 1352 __be16 rsvd; 1353 __be16 len; 1354 }; 1355 1356 struct cpl_sge_egr_update { 1357 __be32 opcode_qid; 1358 __be16 cidx; 1359 __be16 pidx; 1360 }; 1361 1362 /* cpl_sge_egr_update.ot fields */ 1363 #define EGR_QID_S 0 1364 #define EGR_QID_M 0x1FFFF 1365 #define EGR_QID_G(x) (((x) >> EGR_QID_S) & EGR_QID_M) 1366 1367 /* cpl_fw*.type values */ 1368 enum { 1369 FW_TYPE_CMD_RPL = 0, 1370 FW_TYPE_WR_RPL = 1, 1371 FW_TYPE_CQE = 2, 1372 FW_TYPE_OFLD_CONNECTION_WR_RPL = 3, 1373 FW_TYPE_RSSCPL = 4, 1374 }; 1375 1376 struct cpl_fw4_pld { 1377 u8 opcode; 1378 u8 rsvd0[3]; 1379 u8 type; 1380 u8 rsvd1; 1381 __be16 len; 1382 __be64 data; 1383 __be64 rsvd2; 1384 }; 1385 1386 struct cpl_fw6_pld { 1387 u8 opcode; 1388 u8 rsvd[5]; 1389 __be16 len; 1390 __be64 data[4]; 1391 }; 1392 1393 struct cpl_fw4_msg { 1394 u8 opcode; 1395 u8 type; 1396 __be16 rsvd0; 1397 __be32 rsvd1; 1398 __be64 data[2]; 1399 }; 1400 1401 struct cpl_fw4_ack { 1402 union opcode_tid ot; 1403 u8 credits; 1404 u8 rsvd0[2]; 1405 u8 seq_vld; 1406 __be32 snd_nxt; 1407 __be32 snd_una; 1408 __be64 rsvd1; 1409 }; 1410 1411 enum { 1412 CPL_FW4_ACK_FLAGS_SEQVAL = 0x1, /* seqn valid */ 1413 CPL_FW4_ACK_FLAGS_CH = 0x2, /* channel change complete */ 1414 CPL_FW4_ACK_FLAGS_FLOWC = 0x4, /* fw_flowc_wr complete */ 1415 }; 1416 1417 struct cpl_fw6_msg { 1418 u8 opcode; 1419 u8 type; 1420 __be16 rsvd0; 1421 __be32 rsvd1; 1422 __be64 data[4]; 1423 }; 1424 1425 /* cpl_fw6_msg.type values */ 1426 enum { 1427 FW6_TYPE_CMD_RPL = 0, 1428 FW6_TYPE_WR_RPL = 1, 1429 FW6_TYPE_CQE = 2, 1430 FW6_TYPE_OFLD_CONNECTION_WR_RPL = 3, 1431 FW6_TYPE_RSSCPL = FW_TYPE_RSSCPL, 1432 }; 1433 1434 struct cpl_fw6_msg_ofld_connection_wr_rpl { 1435 __u64 cookie; 1436 __be32 tid; /* or atid in case of active failure */ 1437 __u8 t_state; 1438 __u8 retval; 1439 __u8 rsvd[2]; 1440 }; 1441 1442 struct cpl_tx_data { 1443 union opcode_tid ot; 1444 __be32 len; 1445 __be32 rsvd; 1446 __be32 flags; 1447 }; 1448 1449 /* cpl_tx_data.flags field */ 1450 #define TX_FORCE_S 13 1451 #define TX_FORCE_V(x) ((x) << TX_FORCE_S) 1452 1453 #define T6_TX_FORCE_S 20 1454 #define T6_TX_FORCE_V(x) ((x) << T6_TX_FORCE_S) 1455 #define T6_TX_FORCE_F T6_TX_FORCE_V(1U) 1456 1457 #define TX_SHOVE_S 14 1458 #define TX_SHOVE_V(x) ((x) << TX_SHOVE_S) 1459 1460 #define TX_ULP_MODE_S 10 1461 #define TX_ULP_MODE_M 0x7 1462 #define TX_ULP_MODE_V(x) ((x) << TX_ULP_MODE_S) 1463 #define TX_ULP_MODE_G(x) (((x) >> TX_ULP_MODE_S) & TX_ULP_MODE_M) 1464 1465 enum { 1466 ULP_TX_MEM_READ = 2, 1467 ULP_TX_MEM_WRITE = 3, 1468 ULP_TX_PKT = 4 1469 }; 1470 1471 enum { 1472 ULP_TX_SC_NOOP = 0x80, 1473 ULP_TX_SC_IMM = 0x81, 1474 ULP_TX_SC_DSGL = 0x82, 1475 ULP_TX_SC_ISGL = 0x83, 1476 ULP_TX_SC_MEMRD = 0x86 1477 }; 1478 1479 #define ULPTX_CMD_S 24 1480 #define ULPTX_CMD_V(x) ((x) << ULPTX_CMD_S) 1481 1482 #define ULPTX_LEN16_S 0 1483 #define ULPTX_LEN16_M 0xFF 1484 #define ULPTX_LEN16_V(x) ((x) << ULPTX_LEN16_S) 1485 1486 #define ULP_TX_SC_MORE_S 23 1487 #define ULP_TX_SC_MORE_V(x) ((x) << ULP_TX_SC_MORE_S) 1488 #define ULP_TX_SC_MORE_F ULP_TX_SC_MORE_V(1U) 1489 1490 struct ulptx_sge_pair { 1491 __be32 len[2]; 1492 __be64 addr[2]; 1493 }; 1494 1495 struct ulptx_sgl { 1496 __be32 cmd_nsge; 1497 __be32 len0; 1498 __be64 addr0; 1499 struct ulptx_sge_pair sge[0]; 1500 }; 1501 1502 struct ulptx_idata { 1503 __be32 cmd_more; 1504 __be32 len; 1505 }; 1506 1507 struct ulp_txpkt { 1508 __be32 cmd_dest; 1509 __be32 len; 1510 }; 1511 1512 #define ULPTX_CMD_S 24 1513 #define ULPTX_CMD_M 0xFF 1514 #define ULPTX_CMD_V(x) ((x) << ULPTX_CMD_S) 1515 1516 #define ULPTX_NSGE_S 0 1517 #define ULPTX_NSGE_V(x) ((x) << ULPTX_NSGE_S) 1518 1519 #define ULPTX_MORE_S 23 1520 #define ULPTX_MORE_V(x) ((x) << ULPTX_MORE_S) 1521 #define ULPTX_MORE_F ULPTX_MORE_V(1U) 1522 1523 #define ULP_TXPKT_DEST_S 16 1524 #define ULP_TXPKT_DEST_M 0x3 1525 #define ULP_TXPKT_DEST_V(x) ((x) << ULP_TXPKT_DEST_S) 1526 1527 #define ULP_TXPKT_FID_S 4 1528 #define ULP_TXPKT_FID_M 0x7ff 1529 #define ULP_TXPKT_FID_V(x) ((x) << ULP_TXPKT_FID_S) 1530 1531 #define ULP_TXPKT_RO_S 3 1532 #define ULP_TXPKT_RO_V(x) ((x) << ULP_TXPKT_RO_S) 1533 #define ULP_TXPKT_RO_F ULP_TXPKT_RO_V(1U) 1534 1535 enum cpl_tx_tnl_lso_type { 1536 TX_TNL_TYPE_OPAQUE, 1537 TX_TNL_TYPE_NVGRE, 1538 TX_TNL_TYPE_VXLAN, 1539 TX_TNL_TYPE_GENEVE, 1540 }; 1541 1542 struct cpl_tx_tnl_lso { 1543 __be32 op_to_IpIdSplitOut; 1544 __be16 IpIdOffsetOut; 1545 __be16 UdpLenSetOut_to_TnlHdrLen; 1546 __be64 r1; 1547 __be32 Flow_to_TcpHdrLen; 1548 __be16 IpIdOffset; 1549 __be16 IpIdSplit_to_Mss; 1550 __be32 TCPSeqOffset; 1551 __be32 EthLenOffset_Size; 1552 /* encapsulated CPL (TX_PKT_XT) follows here */ 1553 }; 1554 1555 #define CPL_TX_TNL_LSO_OPCODE_S 24 1556 #define CPL_TX_TNL_LSO_OPCODE_M 0xff 1557 #define CPL_TX_TNL_LSO_OPCODE_V(x) ((x) << CPL_TX_TNL_LSO_OPCODE_S) 1558 #define CPL_TX_TNL_LSO_OPCODE_G(x) \ 1559 (((x) >> CPL_TX_TNL_LSO_OPCODE_S) & CPL_TX_TNL_LSO_OPCODE_M) 1560 1561 #define CPL_TX_TNL_LSO_FIRST_S 23 1562 #define CPL_TX_TNL_LSO_FIRST_M 0x1 1563 #define CPL_TX_TNL_LSO_FIRST_V(x) ((x) << CPL_TX_TNL_LSO_FIRST_S) 1564 #define CPL_TX_TNL_LSO_FIRST_G(x) \ 1565 (((x) >> CPL_TX_TNL_LSO_FIRST_S) & CPL_TX_TNL_LSO_FIRST_M) 1566 #define CPL_TX_TNL_LSO_FIRST_F CPL_TX_TNL_LSO_FIRST_V(1U) 1567 1568 #define CPL_TX_TNL_LSO_LAST_S 22 1569 #define CPL_TX_TNL_LSO_LAST_M 0x1 1570 #define CPL_TX_TNL_LSO_LAST_V(x) ((x) << CPL_TX_TNL_LSO_LAST_S) 1571 #define CPL_TX_TNL_LSO_LAST_G(x) \ 1572 (((x) >> CPL_TX_TNL_LSO_LAST_S) & CPL_TX_TNL_LSO_LAST_M) 1573 #define CPL_TX_TNL_LSO_LAST_F CPL_TX_TNL_LSO_LAST_V(1U) 1574 1575 #define CPL_TX_TNL_LSO_ETHHDRLENXOUT_S 21 1576 #define CPL_TX_TNL_LSO_ETHHDRLENXOUT_M 0x1 1577 #define CPL_TX_TNL_LSO_ETHHDRLENXOUT_V(x) \ 1578 ((x) << CPL_TX_TNL_LSO_ETHHDRLENXOUT_S) 1579 #define CPL_TX_TNL_LSO_ETHHDRLENXOUT_G(x) \ 1580 (((x) >> CPL_TX_TNL_LSO_ETHHDRLENXOUT_S) & \ 1581 CPL_TX_TNL_LSO_ETHHDRLENXOUT_M) 1582 #define CPL_TX_TNL_LSO_ETHHDRLENXOUT_F CPL_TX_TNL_LSO_ETHHDRLENXOUT_V(1U) 1583 1584 #define CPL_TX_TNL_LSO_IPV6OUT_S 20 1585 #define CPL_TX_TNL_LSO_IPV6OUT_M 0x1 1586 #define CPL_TX_TNL_LSO_IPV6OUT_V(x) ((x) << CPL_TX_TNL_LSO_IPV6OUT_S) 1587 #define CPL_TX_TNL_LSO_IPV6OUT_G(x) \ 1588 (((x) >> CPL_TX_TNL_LSO_IPV6OUT_S) & CPL_TX_TNL_LSO_IPV6OUT_M) 1589 #define CPL_TX_TNL_LSO_IPV6OUT_F CPL_TX_TNL_LSO_IPV6OUT_V(1U) 1590 1591 #define CPL_TX_TNL_LSO_ETHHDRLEN_S 16 1592 #define CPL_TX_TNL_LSO_ETHHDRLEN_M 0xf 1593 #define CPL_TX_TNL_LSO_ETHHDRLEN_V(x) ((x) << CPL_TX_TNL_LSO_ETHHDRLEN_S) 1594 #define CPL_TX_TNL_LSO_ETHHDRLEN_G(x) \ 1595 (((x) >> CPL_TX_TNL_LSO_ETHHDRLEN_S) & CPL_TX_TNL_LSO_ETHHDRLEN_M) 1596 1597 #define CPL_TX_TNL_LSO_IPHDRLEN_S 4 1598 #define CPL_TX_TNL_LSO_IPHDRLEN_M 0xfff 1599 #define CPL_TX_TNL_LSO_IPHDRLEN_V(x) ((x) << CPL_TX_TNL_LSO_IPHDRLEN_S) 1600 #define CPL_TX_TNL_LSO_IPHDRLEN_G(x) \ 1601 (((x) >> CPL_TX_TNL_LSO_IPHDRLEN_S) & CPL_TX_TNL_LSO_IPHDRLEN_M) 1602 1603 #define CPL_TX_TNL_LSO_TCPHDRLEN_S 0 1604 #define CPL_TX_TNL_LSO_TCPHDRLEN_M 0xf 1605 #define CPL_TX_TNL_LSO_TCPHDRLEN_V(x) ((x) << CPL_TX_TNL_LSO_TCPHDRLEN_S) 1606 #define CPL_TX_TNL_LSO_TCPHDRLEN_G(x) \ 1607 (((x) >> CPL_TX_TNL_LSO_TCPHDRLEN_S) & CPL_TX_TNL_LSO_TCPHDRLEN_M) 1608 1609 #define CPL_TX_TNL_LSO_MSS_S 0 1610 #define CPL_TX_TNL_LSO_MSS_M 0x3fff 1611 #define CPL_TX_TNL_LSO_MSS_V(x) ((x) << CPL_TX_TNL_LSO_MSS_S) 1612 #define CPL_TX_TNL_LSO_MSS_G(x) \ 1613 (((x) >> CPL_TX_TNL_LSO_MSS_S) & CPL_TX_TNL_LSO_MSS_M) 1614 1615 #define CPL_TX_TNL_LSO_SIZE_S 0 1616 #define CPL_TX_TNL_LSO_SIZE_M 0xfffffff 1617 #define CPL_TX_TNL_LSO_SIZE_V(x) ((x) << CPL_TX_TNL_LSO_SIZE_S) 1618 #define CPL_TX_TNL_LSO_SIZE_G(x) \ 1619 (((x) >> CPL_TX_TNL_LSO_SIZE_S) & CPL_TX_TNL_LSO_SIZE_M) 1620 1621 #define CPL_TX_TNL_LSO_ETHHDRLENOUT_S 16 1622 #define CPL_TX_TNL_LSO_ETHHDRLENOUT_M 0xf 1623 #define CPL_TX_TNL_LSO_ETHHDRLENOUT_V(x) \ 1624 ((x) << CPL_TX_TNL_LSO_ETHHDRLENOUT_S) 1625 #define CPL_TX_TNL_LSO_ETHHDRLENOUT_G(x) \ 1626 (((x) >> CPL_TX_TNL_LSO_ETHHDRLENOUT_S) & CPL_TX_TNL_LSO_ETHHDRLENOUT_M) 1627 1628 #define CPL_TX_TNL_LSO_IPHDRLENOUT_S 4 1629 #define CPL_TX_TNL_LSO_IPHDRLENOUT_M 0xfff 1630 #define CPL_TX_TNL_LSO_IPHDRLENOUT_V(x) ((x) << CPL_TX_TNL_LSO_IPHDRLENOUT_S) 1631 #define CPL_TX_TNL_LSO_IPHDRLENOUT_G(x) \ 1632 (((x) >> CPL_TX_TNL_LSO_IPHDRLENOUT_S) & CPL_TX_TNL_LSO_IPHDRLENOUT_M) 1633 1634 #define CPL_TX_TNL_LSO_IPHDRCHKOUT_S 3 1635 #define CPL_TX_TNL_LSO_IPHDRCHKOUT_M 0x1 1636 #define CPL_TX_TNL_LSO_IPHDRCHKOUT_V(x) ((x) << CPL_TX_TNL_LSO_IPHDRCHKOUT_S) 1637 #define CPL_TX_TNL_LSO_IPHDRCHKOUT_G(x) \ 1638 (((x) >> CPL_TX_TNL_LSO_IPHDRCHKOUT_S) & CPL_TX_TNL_LSO_IPHDRCHKOUT_M) 1639 #define CPL_TX_TNL_LSO_IPHDRCHKOUT_F CPL_TX_TNL_LSO_IPHDRCHKOUT_V(1U) 1640 1641 #define CPL_TX_TNL_LSO_IPLENSETOUT_S 2 1642 #define CPL_TX_TNL_LSO_IPLENSETOUT_M 0x1 1643 #define CPL_TX_TNL_LSO_IPLENSETOUT_V(x) ((x) << CPL_TX_TNL_LSO_IPLENSETOUT_S) 1644 #define CPL_TX_TNL_LSO_IPLENSETOUT_G(x) \ 1645 (((x) >> CPL_TX_TNL_LSO_IPLENSETOUT_S) & CPL_TX_TNL_LSO_IPLENSETOUT_M) 1646 #define CPL_TX_TNL_LSO_IPLENSETOUT_F CPL_TX_TNL_LSO_IPLENSETOUT_V(1U) 1647 1648 #define CPL_TX_TNL_LSO_IPIDINCOUT_S 1 1649 #define CPL_TX_TNL_LSO_IPIDINCOUT_M 0x1 1650 #define CPL_TX_TNL_LSO_IPIDINCOUT_V(x) ((x) << CPL_TX_TNL_LSO_IPIDINCOUT_S) 1651 #define CPL_TX_TNL_LSO_IPIDINCOUT_G(x) \ 1652 (((x) >> CPL_TX_TNL_LSO_IPIDINCOUT_S) & CPL_TX_TNL_LSO_IPIDINCOUT_M) 1653 #define CPL_TX_TNL_LSO_IPIDINCOUT_F CPL_TX_TNL_LSO_IPIDINCOUT_V(1U) 1654 1655 #define CPL_TX_TNL_LSO_UDPCHKCLROUT_S 14 1656 #define CPL_TX_TNL_LSO_UDPCHKCLROUT_M 0x1 1657 #define CPL_TX_TNL_LSO_UDPCHKCLROUT_V(x) \ 1658 ((x) << CPL_TX_TNL_LSO_UDPCHKCLROUT_S) 1659 #define CPL_TX_TNL_LSO_UDPCHKCLROUT_G(x) \ 1660 (((x) >> CPL_TX_TNL_LSO_UDPCHKCLROUT_S) & \ 1661 CPL_TX_TNL_LSO_UDPCHKCLROUT_M) 1662 #define CPL_TX_TNL_LSO_UDPCHKCLROUT_F CPL_TX_TNL_LSO_UDPCHKCLROUT_V(1U) 1663 1664 #define CPL_TX_TNL_LSO_UDPLENSETOUT_S 15 1665 #define CPL_TX_TNL_LSO_UDPLENSETOUT_M 0x1 1666 #define CPL_TX_TNL_LSO_UDPLENSETOUT_V(x) \ 1667 ((x) << CPL_TX_TNL_LSO_UDPLENSETOUT_S) 1668 #define CPL_TX_TNL_LSO_UDPLENSETOUT_G(x) \ 1669 (((x) >> CPL_TX_TNL_LSO_UDPLENSETOUT_S) & \ 1670 CPL_TX_TNL_LSO_UDPLENSETOUT_M) 1671 #define CPL_TX_TNL_LSO_UDPLENSETOUT_F CPL_TX_TNL_LSO_UDPLENSETOUT_V(1U) 1672 1673 #define CPL_TX_TNL_LSO_TNLTYPE_S 12 1674 #define CPL_TX_TNL_LSO_TNLTYPE_M 0x3 1675 #define CPL_TX_TNL_LSO_TNLTYPE_V(x) ((x) << CPL_TX_TNL_LSO_TNLTYPE_S) 1676 #define CPL_TX_TNL_LSO_TNLTYPE_G(x) \ 1677 (((x) >> CPL_TX_TNL_LSO_TNLTYPE_S) & CPL_TX_TNL_LSO_TNLTYPE_M) 1678 1679 #define S_CPL_TX_TNL_LSO_ETHHDRLEN 16 1680 #define M_CPL_TX_TNL_LSO_ETHHDRLEN 0xf 1681 #define V_CPL_TX_TNL_LSO_ETHHDRLEN(x) ((x) << S_CPL_TX_TNL_LSO_ETHHDRLEN) 1682 #define G_CPL_TX_TNL_LSO_ETHHDRLEN(x) \ 1683 (((x) >> S_CPL_TX_TNL_LSO_ETHHDRLEN) & M_CPL_TX_TNL_LSO_ETHHDRLEN) 1684 1685 #define CPL_TX_TNL_LSO_TNLHDRLEN_S 0 1686 #define CPL_TX_TNL_LSO_TNLHDRLEN_M 0xfff 1687 #define CPL_TX_TNL_LSO_TNLHDRLEN_V(x) ((x) << CPL_TX_TNL_LSO_TNLHDRLEN_S) 1688 #define CPL_TX_TNL_LSO_TNLHDRLEN_G(x) \ 1689 (((x) >> CPL_TX_TNL_LSO_TNLHDRLEN_S) & CPL_TX_TNL_LSO_TNLHDRLEN_M) 1690 1691 #define CPL_TX_TNL_LSO_IPV6_S 20 1692 #define CPL_TX_TNL_LSO_IPV6_M 0x1 1693 #define CPL_TX_TNL_LSO_IPV6_V(x) ((x) << CPL_TX_TNL_LSO_IPV6_S) 1694 #define CPL_TX_TNL_LSO_IPV6_G(x) \ 1695 (((x) >> CPL_TX_TNL_LSO_IPV6_S) & CPL_TX_TNL_LSO_IPV6_M) 1696 #define CPL_TX_TNL_LSO_IPV6_F CPL_TX_TNL_LSO_IPV6_V(1U) 1697 1698 #define ULP_TX_SC_MORE_S 23 1699 #define ULP_TX_SC_MORE_V(x) ((x) << ULP_TX_SC_MORE_S) 1700 #define ULP_TX_SC_MORE_F ULP_TX_SC_MORE_V(1U) 1701 1702 struct ulp_mem_io { 1703 WR_HDR; 1704 __be32 cmd; 1705 __be32 len16; /* command length */ 1706 __be32 dlen; /* data length in 32-byte units */ 1707 __be32 lock_addr; 1708 }; 1709 1710 #define ULP_MEMIO_LOCK_S 31 1711 #define ULP_MEMIO_LOCK_V(x) ((x) << ULP_MEMIO_LOCK_S) 1712 #define ULP_MEMIO_LOCK_F ULP_MEMIO_LOCK_V(1U) 1713 1714 /* additional ulp_mem_io.cmd fields */ 1715 #define ULP_MEMIO_ORDER_S 23 1716 #define ULP_MEMIO_ORDER_V(x) ((x) << ULP_MEMIO_ORDER_S) 1717 #define ULP_MEMIO_ORDER_F ULP_MEMIO_ORDER_V(1U) 1718 1719 #define T5_ULP_MEMIO_IMM_S 23 1720 #define T5_ULP_MEMIO_IMM_V(x) ((x) << T5_ULP_MEMIO_IMM_S) 1721 #define T5_ULP_MEMIO_IMM_F T5_ULP_MEMIO_IMM_V(1U) 1722 1723 #define T5_ULP_MEMIO_ORDER_S 22 1724 #define T5_ULP_MEMIO_ORDER_V(x) ((x) << T5_ULP_MEMIO_ORDER_S) 1725 #define T5_ULP_MEMIO_ORDER_F T5_ULP_MEMIO_ORDER_V(1U) 1726 1727 #define T5_ULP_MEMIO_FID_S 4 1728 #define T5_ULP_MEMIO_FID_M 0x7ff 1729 #define T5_ULP_MEMIO_FID_V(x) ((x) << T5_ULP_MEMIO_FID_S) 1730 1731 /* ulp_mem_io.lock_addr fields */ 1732 #define ULP_MEMIO_ADDR_S 0 1733 #define ULP_MEMIO_ADDR_V(x) ((x) << ULP_MEMIO_ADDR_S) 1734 1735 /* ulp_mem_io.dlen fields */ 1736 #define ULP_MEMIO_DATA_LEN_S 0 1737 #define ULP_MEMIO_DATA_LEN_V(x) ((x) << ULP_MEMIO_DATA_LEN_S) 1738 1739 #define ULPTX_NSGE_S 0 1740 #define ULPTX_NSGE_M 0xFFFF 1741 #define ULPTX_NSGE_V(x) ((x) << ULPTX_NSGE_S) 1742 #define ULPTX_NSGE_G(x) (((x) >> ULPTX_NSGE_S) & ULPTX_NSGE_M) 1743 1744 struct ulptx_sc_memrd { 1745 __be32 cmd_to_len; 1746 __be32 addr; 1747 }; 1748 1749 #define ULP_TXPKT_DATAMODIFY_S 23 1750 #define ULP_TXPKT_DATAMODIFY_M 0x1 1751 #define ULP_TXPKT_DATAMODIFY_V(x) ((x) << ULP_TXPKT_DATAMODIFY_S) 1752 #define ULP_TXPKT_DATAMODIFY_G(x) \ 1753 (((x) >> ULP_TXPKT_DATAMODIFY_S) & ULP_TXPKT_DATAMODIFY__M) 1754 #define ULP_TXPKT_DATAMODIFY_F ULP_TXPKT_DATAMODIFY_V(1U) 1755 1756 #define ULP_TXPKT_CHANNELID_S 22 1757 #define ULP_TXPKT_CHANNELID_M 0x1 1758 #define ULP_TXPKT_CHANNELID_V(x) ((x) << ULP_TXPKT_CHANNELID_S) 1759 #define ULP_TXPKT_CHANNELID_G(x) \ 1760 (((x) >> ULP_TXPKT_CHANNELID_S) & ULP_TXPKT_CHANNELID_M) 1761 #define ULP_TXPKT_CHANNELID_F ULP_TXPKT_CHANNELID_V(1U) 1762 1763 #define SCMD_SEQ_NO_CTRL_S 29 1764 #define SCMD_SEQ_NO_CTRL_M 0x3 1765 #define SCMD_SEQ_NO_CTRL_V(x) ((x) << SCMD_SEQ_NO_CTRL_S) 1766 #define SCMD_SEQ_NO_CTRL_G(x) \ 1767 (((x) >> SCMD_SEQ_NO_CTRL_S) & SCMD_SEQ_NO_CTRL_M) 1768 1769 /* StsFieldPrsnt- Status field at the end of the TLS PDU */ 1770 #define SCMD_STATUS_PRESENT_S 28 1771 #define SCMD_STATUS_PRESENT_M 0x1 1772 #define SCMD_STATUS_PRESENT_V(x) ((x) << SCMD_STATUS_PRESENT_S) 1773 #define SCMD_STATUS_PRESENT_G(x) \ 1774 (((x) >> SCMD_STATUS_PRESENT_S) & SCMD_STATUS_PRESENT_M) 1775 #define SCMD_STATUS_PRESENT_F SCMD_STATUS_PRESENT_V(1U) 1776 1777 /* ProtoVersion - Protocol Version 0: 1.2, 1:1.1, 2:DTLS, 3:Generic, 1778 * 3-15: Reserved. 1779 */ 1780 #define SCMD_PROTO_VERSION_S 24 1781 #define SCMD_PROTO_VERSION_M 0xf 1782 #define SCMD_PROTO_VERSION_V(x) ((x) << SCMD_PROTO_VERSION_S) 1783 #define SCMD_PROTO_VERSION_G(x) \ 1784 (((x) >> SCMD_PROTO_VERSION_S) & SCMD_PROTO_VERSION_M) 1785 1786 /* EncDecCtrl - Encryption/Decryption Control. 0: Encrypt, 1: Decrypt */ 1787 #define SCMD_ENC_DEC_CTRL_S 23 1788 #define SCMD_ENC_DEC_CTRL_M 0x1 1789 #define SCMD_ENC_DEC_CTRL_V(x) ((x) << SCMD_ENC_DEC_CTRL_S) 1790 #define SCMD_ENC_DEC_CTRL_G(x) \ 1791 (((x) >> SCMD_ENC_DEC_CTRL_S) & SCMD_ENC_DEC_CTRL_M) 1792 #define SCMD_ENC_DEC_CTRL_F SCMD_ENC_DEC_CTRL_V(1U) 1793 1794 /* CipherAuthSeqCtrl - Cipher Authentication Sequence Control. */ 1795 #define SCMD_CIPH_AUTH_SEQ_CTRL_S 22 1796 #define SCMD_CIPH_AUTH_SEQ_CTRL_M 0x1 1797 #define SCMD_CIPH_AUTH_SEQ_CTRL_V(x) \ 1798 ((x) << SCMD_CIPH_AUTH_SEQ_CTRL_S) 1799 #define SCMD_CIPH_AUTH_SEQ_CTRL_G(x) \ 1800 (((x) >> SCMD_CIPH_AUTH_SEQ_CTRL_S) & SCMD_CIPH_AUTH_SEQ_CTRL_M) 1801 #define SCMD_CIPH_AUTH_SEQ_CTRL_F SCMD_CIPH_AUTH_SEQ_CTRL_V(1U) 1802 1803 /* CiphMode - Cipher Mode. 0: NOP, 1:AES-CBC, 2:AES-GCM, 3:AES-CTR, 1804 * 4:Generic-AES, 5-15: Reserved. 1805 */ 1806 #define SCMD_CIPH_MODE_S 18 1807 #define SCMD_CIPH_MODE_M 0xf 1808 #define SCMD_CIPH_MODE_V(x) ((x) << SCMD_CIPH_MODE_S) 1809 #define SCMD_CIPH_MODE_G(x) \ 1810 (((x) >> SCMD_CIPH_MODE_S) & SCMD_CIPH_MODE_M) 1811 1812 /* AuthMode - Auth Mode. 0: NOP, 1:SHA1, 2:SHA2-224, 3:SHA2-256 1813 * 4-15: Reserved 1814 */ 1815 #define SCMD_AUTH_MODE_S 14 1816 #define SCMD_AUTH_MODE_M 0xf 1817 #define SCMD_AUTH_MODE_V(x) ((x) << SCMD_AUTH_MODE_S) 1818 #define SCMD_AUTH_MODE_G(x) \ 1819 (((x) >> SCMD_AUTH_MODE_S) & SCMD_AUTH_MODE_M) 1820 1821 /* HmacCtrl - HMAC Control. 0:NOP, 1:No truncation, 2:Support HMAC Truncation 1822 * per RFC 4366, 3:IPSec 96 bits, 4-7:Reserved 1823 */ 1824 #define SCMD_HMAC_CTRL_S 11 1825 #define SCMD_HMAC_CTRL_M 0x7 1826 #define SCMD_HMAC_CTRL_V(x) ((x) << SCMD_HMAC_CTRL_S) 1827 #define SCMD_HMAC_CTRL_G(x) \ 1828 (((x) >> SCMD_HMAC_CTRL_S) & SCMD_HMAC_CTRL_M) 1829 1830 /* IvSize - IV size in units of 2 bytes */ 1831 #define SCMD_IV_SIZE_S 7 1832 #define SCMD_IV_SIZE_M 0xf 1833 #define SCMD_IV_SIZE_V(x) ((x) << SCMD_IV_SIZE_S) 1834 #define SCMD_IV_SIZE_G(x) \ 1835 (((x) >> SCMD_IV_SIZE_S) & SCMD_IV_SIZE_M) 1836 1837 /* NumIVs - Number of IVs */ 1838 #define SCMD_NUM_IVS_S 0 1839 #define SCMD_NUM_IVS_M 0x7f 1840 #define SCMD_NUM_IVS_V(x) ((x) << SCMD_NUM_IVS_S) 1841 #define SCMD_NUM_IVS_G(x) \ 1842 (((x) >> SCMD_NUM_IVS_S) & SCMD_NUM_IVS_M) 1843 1844 /* EnbDbgId - If this is enabled upper 20 (63:44) bits if SeqNumber 1845 * (below) are used as Cid (connection id for debug status), these 1846 * bits are padded to zero for forming the 64 bit 1847 * sequence number for TLS 1848 */ 1849 #define SCMD_ENB_DBGID_S 31 1850 #define SCMD_ENB_DBGID_M 0x1 1851 #define SCMD_ENB_DBGID_V(x) ((x) << SCMD_ENB_DBGID_S) 1852 #define SCMD_ENB_DBGID_G(x) \ 1853 (((x) >> SCMD_ENB_DBGID_S) & SCMD_ENB_DBGID_M) 1854 1855 /* IV generation in SW. */ 1856 #define SCMD_IV_GEN_CTRL_S 30 1857 #define SCMD_IV_GEN_CTRL_M 0x1 1858 #define SCMD_IV_GEN_CTRL_V(x) ((x) << SCMD_IV_GEN_CTRL_S) 1859 #define SCMD_IV_GEN_CTRL_G(x) \ 1860 (((x) >> SCMD_IV_GEN_CTRL_S) & SCMD_IV_GEN_CTRL_M) 1861 #define SCMD_IV_GEN_CTRL_F SCMD_IV_GEN_CTRL_V(1U) 1862 1863 /* More frags */ 1864 #define SCMD_MORE_FRAGS_S 20 1865 #define SCMD_MORE_FRAGS_M 0x1 1866 #define SCMD_MORE_FRAGS_V(x) ((x) << SCMD_MORE_FRAGS_S) 1867 #define SCMD_MORE_FRAGS_G(x) (((x) >> SCMD_MORE_FRAGS_S) & SCMD_MORE_FRAGS_M) 1868 1869 /*last frag */ 1870 #define SCMD_LAST_FRAG_S 19 1871 #define SCMD_LAST_FRAG_M 0x1 1872 #define SCMD_LAST_FRAG_V(x) ((x) << SCMD_LAST_FRAG_S) 1873 #define SCMD_LAST_FRAG_G(x) (((x) >> SCMD_LAST_FRAG_S) & SCMD_LAST_FRAG_M) 1874 1875 /* TlsCompPdu */ 1876 #define SCMD_TLS_COMPPDU_S 18 1877 #define SCMD_TLS_COMPPDU_M 0x1 1878 #define SCMD_TLS_COMPPDU_V(x) ((x) << SCMD_TLS_COMPPDU_S) 1879 #define SCMD_TLS_COMPPDU_G(x) (((x) >> SCMD_TLS_COMPPDU_S) & SCMD_TLS_COMPPDU_M) 1880 1881 /* KeyCntxtInline - Key context inline after the scmd OR PayloadOnly*/ 1882 #define SCMD_KEY_CTX_INLINE_S 17 1883 #define SCMD_KEY_CTX_INLINE_M 0x1 1884 #define SCMD_KEY_CTX_INLINE_V(x) ((x) << SCMD_KEY_CTX_INLINE_S) 1885 #define SCMD_KEY_CTX_INLINE_G(x) \ 1886 (((x) >> SCMD_KEY_CTX_INLINE_S) & SCMD_KEY_CTX_INLINE_M) 1887 #define SCMD_KEY_CTX_INLINE_F SCMD_KEY_CTX_INLINE_V(1U) 1888 1889 /* TLSFragEnable - 0: Host created TLS PDUs, 1: TLS Framgmentation in ASIC */ 1890 #define SCMD_TLS_FRAG_ENABLE_S 16 1891 #define SCMD_TLS_FRAG_ENABLE_M 0x1 1892 #define SCMD_TLS_FRAG_ENABLE_V(x) ((x) << SCMD_TLS_FRAG_ENABLE_S) 1893 #define SCMD_TLS_FRAG_ENABLE_G(x) \ 1894 (((x) >> SCMD_TLS_FRAG_ENABLE_S) & SCMD_TLS_FRAG_ENABLE_M) 1895 #define SCMD_TLS_FRAG_ENABLE_F SCMD_TLS_FRAG_ENABLE_V(1U) 1896 1897 /* MacOnly - Only send the MAC and discard PDU. This is valid for hash only 1898 * modes, in this case TLS_TX will drop the PDU and only 1899 * send back the MAC bytes. 1900 */ 1901 #define SCMD_MAC_ONLY_S 15 1902 #define SCMD_MAC_ONLY_M 0x1 1903 #define SCMD_MAC_ONLY_V(x) ((x) << SCMD_MAC_ONLY_S) 1904 #define SCMD_MAC_ONLY_G(x) \ 1905 (((x) >> SCMD_MAC_ONLY_S) & SCMD_MAC_ONLY_M) 1906 #define SCMD_MAC_ONLY_F SCMD_MAC_ONLY_V(1U) 1907 1908 /* AadIVDrop - Drop the AAD and IV fields. Useful in protocols 1909 * which have complex AAD and IV formations Eg:AES-CCM 1910 */ 1911 #define SCMD_AADIVDROP_S 14 1912 #define SCMD_AADIVDROP_M 0x1 1913 #define SCMD_AADIVDROP_V(x) ((x) << SCMD_AADIVDROP_S) 1914 #define SCMD_AADIVDROP_G(x) \ 1915 (((x) >> SCMD_AADIVDROP_S) & SCMD_AADIVDROP_M) 1916 #define SCMD_AADIVDROP_F SCMD_AADIVDROP_V(1U) 1917 1918 /* HdrLength - Length of all headers excluding TLS header 1919 * present before start of crypto PDU/payload. 1920 */ 1921 #define SCMD_HDR_LEN_S 0 1922 #define SCMD_HDR_LEN_M 0x3fff 1923 #define SCMD_HDR_LEN_V(x) ((x) << SCMD_HDR_LEN_S) 1924 #define SCMD_HDR_LEN_G(x) \ 1925 (((x) >> SCMD_HDR_LEN_S) & SCMD_HDR_LEN_M) 1926 1927 struct cpl_tx_sec_pdu { 1928 __be32 op_ivinsrtofst; 1929 __be32 pldlen; 1930 __be32 aadstart_cipherstop_hi; 1931 __be32 cipherstop_lo_authinsert; 1932 __be32 seqno_numivs; 1933 __be32 ivgen_hdrlen; 1934 __be64 scmd1; 1935 }; 1936 1937 #define CPL_TX_SEC_PDU_OPCODE_S 24 1938 #define CPL_TX_SEC_PDU_OPCODE_M 0xff 1939 #define CPL_TX_SEC_PDU_OPCODE_V(x) ((x) << CPL_TX_SEC_PDU_OPCODE_S) 1940 #define CPL_TX_SEC_PDU_OPCODE_G(x) \ 1941 (((x) >> CPL_TX_SEC_PDU_OPCODE_S) & CPL_TX_SEC_PDU_OPCODE_M) 1942 1943 /* RX Channel Id */ 1944 #define CPL_TX_SEC_PDU_RXCHID_S 22 1945 #define CPL_TX_SEC_PDU_RXCHID_M 0x1 1946 #define CPL_TX_SEC_PDU_RXCHID_V(x) ((x) << CPL_TX_SEC_PDU_RXCHID_S) 1947 #define CPL_TX_SEC_PDU_RXCHID_G(x) \ 1948 (((x) >> CPL_TX_SEC_PDU_RXCHID_S) & CPL_TX_SEC_PDU_RXCHID_M) 1949 #define CPL_TX_SEC_PDU_RXCHID_F CPL_TX_SEC_PDU_RXCHID_V(1U) 1950 1951 /* Ack Follows */ 1952 #define CPL_TX_SEC_PDU_ACKFOLLOWS_S 21 1953 #define CPL_TX_SEC_PDU_ACKFOLLOWS_M 0x1 1954 #define CPL_TX_SEC_PDU_ACKFOLLOWS_V(x) ((x) << CPL_TX_SEC_PDU_ACKFOLLOWS_S) 1955 #define CPL_TX_SEC_PDU_ACKFOLLOWS_G(x) \ 1956 (((x) >> CPL_TX_SEC_PDU_ACKFOLLOWS_S) & CPL_TX_SEC_PDU_ACKFOLLOWS_M) 1957 #define CPL_TX_SEC_PDU_ACKFOLLOWS_F CPL_TX_SEC_PDU_ACKFOLLOWS_V(1U) 1958 1959 /* Loopback bit in cpl_tx_sec_pdu */ 1960 #define CPL_TX_SEC_PDU_ULPTXLPBK_S 20 1961 #define CPL_TX_SEC_PDU_ULPTXLPBK_M 0x1 1962 #define CPL_TX_SEC_PDU_ULPTXLPBK_V(x) ((x) << CPL_TX_SEC_PDU_ULPTXLPBK_S) 1963 #define CPL_TX_SEC_PDU_ULPTXLPBK_G(x) \ 1964 (((x) >> CPL_TX_SEC_PDU_ULPTXLPBK_S) & CPL_TX_SEC_PDU_ULPTXLPBK_M) 1965 #define CPL_TX_SEC_PDU_ULPTXLPBK_F CPL_TX_SEC_PDU_ULPTXLPBK_V(1U) 1966 1967 /* Length of cpl header encapsulated */ 1968 #define CPL_TX_SEC_PDU_CPLLEN_S 16 1969 #define CPL_TX_SEC_PDU_CPLLEN_M 0xf 1970 #define CPL_TX_SEC_PDU_CPLLEN_V(x) ((x) << CPL_TX_SEC_PDU_CPLLEN_S) 1971 #define CPL_TX_SEC_PDU_CPLLEN_G(x) \ 1972 (((x) >> CPL_TX_SEC_PDU_CPLLEN_S) & CPL_TX_SEC_PDU_CPLLEN_M) 1973 1974 /* PlaceHolder */ 1975 #define CPL_TX_SEC_PDU_PLACEHOLDER_S 10 1976 #define CPL_TX_SEC_PDU_PLACEHOLDER_M 0x1 1977 #define CPL_TX_SEC_PDU_PLACEHOLDER_V(x) ((x) << CPL_TX_SEC_PDU_PLACEHOLDER_S) 1978 #define CPL_TX_SEC_PDU_PLACEHOLDER_G(x) \ 1979 (((x) >> CPL_TX_SEC_PDU_PLACEHOLDER_S) & \ 1980 CPL_TX_SEC_PDU_PLACEHOLDER_M) 1981 1982 /* IvInsrtOffset: Insertion location for IV */ 1983 #define CPL_TX_SEC_PDU_IVINSRTOFST_S 0 1984 #define CPL_TX_SEC_PDU_IVINSRTOFST_M 0x3ff 1985 #define CPL_TX_SEC_PDU_IVINSRTOFST_V(x) ((x) << CPL_TX_SEC_PDU_IVINSRTOFST_S) 1986 #define CPL_TX_SEC_PDU_IVINSRTOFST_G(x) \ 1987 (((x) >> CPL_TX_SEC_PDU_IVINSRTOFST_S) & \ 1988 CPL_TX_SEC_PDU_IVINSRTOFST_M) 1989 1990 /* AadStartOffset: Offset in bytes for AAD start from 1991 * the first byte following the pkt headers (0-255 bytes) 1992 */ 1993 #define CPL_TX_SEC_PDU_AADSTART_S 24 1994 #define CPL_TX_SEC_PDU_AADSTART_M 0xff 1995 #define CPL_TX_SEC_PDU_AADSTART_V(x) ((x) << CPL_TX_SEC_PDU_AADSTART_S) 1996 #define CPL_TX_SEC_PDU_AADSTART_G(x) \ 1997 (((x) >> CPL_TX_SEC_PDU_AADSTART_S) & \ 1998 CPL_TX_SEC_PDU_AADSTART_M) 1999 2000 /* AadStopOffset: offset in bytes for AAD stop/end from the first byte following 2001 * the pkt headers (0-511 bytes) 2002 */ 2003 #define CPL_TX_SEC_PDU_AADSTOP_S 15 2004 #define CPL_TX_SEC_PDU_AADSTOP_M 0x1ff 2005 #define CPL_TX_SEC_PDU_AADSTOP_V(x) ((x) << CPL_TX_SEC_PDU_AADSTOP_S) 2006 #define CPL_TX_SEC_PDU_AADSTOP_G(x) \ 2007 (((x) >> CPL_TX_SEC_PDU_AADSTOP_S) & CPL_TX_SEC_PDU_AADSTOP_M) 2008 2009 /* CipherStartOffset: offset in bytes for encryption/decryption start from the 2010 * first byte following the pkt headers (0-1023 bytes) 2011 */ 2012 #define CPL_TX_SEC_PDU_CIPHERSTART_S 5 2013 #define CPL_TX_SEC_PDU_CIPHERSTART_M 0x3ff 2014 #define CPL_TX_SEC_PDU_CIPHERSTART_V(x) ((x) << CPL_TX_SEC_PDU_CIPHERSTART_S) 2015 #define CPL_TX_SEC_PDU_CIPHERSTART_G(x) \ 2016 (((x) >> CPL_TX_SEC_PDU_CIPHERSTART_S) & \ 2017 CPL_TX_SEC_PDU_CIPHERSTART_M) 2018 2019 /* CipherStopOffset: offset in bytes for encryption/decryption end 2020 * from end of the payload of this command (0-511 bytes) 2021 */ 2022 #define CPL_TX_SEC_PDU_CIPHERSTOP_HI_S 0 2023 #define CPL_TX_SEC_PDU_CIPHERSTOP_HI_M 0x1f 2024 #define CPL_TX_SEC_PDU_CIPHERSTOP_HI_V(x) \ 2025 ((x) << CPL_TX_SEC_PDU_CIPHERSTOP_HI_S) 2026 #define CPL_TX_SEC_PDU_CIPHERSTOP_HI_G(x) \ 2027 (((x) >> CPL_TX_SEC_PDU_CIPHERSTOP_HI_S) & \ 2028 CPL_TX_SEC_PDU_CIPHERSTOP_HI_M) 2029 2030 #define CPL_TX_SEC_PDU_CIPHERSTOP_LO_S 28 2031 #define CPL_TX_SEC_PDU_CIPHERSTOP_LO_M 0xf 2032 #define CPL_TX_SEC_PDU_CIPHERSTOP_LO_V(x) \ 2033 ((x) << CPL_TX_SEC_PDU_CIPHERSTOP_LO_S) 2034 #define CPL_TX_SEC_PDU_CIPHERSTOP_LO_G(x) \ 2035 (((x) >> CPL_TX_SEC_PDU_CIPHERSTOP_LO_S) & \ 2036 CPL_TX_SEC_PDU_CIPHERSTOP_LO_M) 2037 2038 /* AuthStartOffset: offset in bytes for authentication start from 2039 * the first byte following the pkt headers (0-1023) 2040 */ 2041 #define CPL_TX_SEC_PDU_AUTHSTART_S 18 2042 #define CPL_TX_SEC_PDU_AUTHSTART_M 0x3ff 2043 #define CPL_TX_SEC_PDU_AUTHSTART_V(x) ((x) << CPL_TX_SEC_PDU_AUTHSTART_S) 2044 #define CPL_TX_SEC_PDU_AUTHSTART_G(x) \ 2045 (((x) >> CPL_TX_SEC_PDU_AUTHSTART_S) & \ 2046 CPL_TX_SEC_PDU_AUTHSTART_M) 2047 2048 /* AuthStopOffset: offset in bytes for authentication 2049 * end from end of the payload of this command (0-511 Bytes) 2050 */ 2051 #define CPL_TX_SEC_PDU_AUTHSTOP_S 9 2052 #define CPL_TX_SEC_PDU_AUTHSTOP_M 0x1ff 2053 #define CPL_TX_SEC_PDU_AUTHSTOP_V(x) ((x) << CPL_TX_SEC_PDU_AUTHSTOP_S) 2054 #define CPL_TX_SEC_PDU_AUTHSTOP_G(x) \ 2055 (((x) >> CPL_TX_SEC_PDU_AUTHSTOP_S) & \ 2056 CPL_TX_SEC_PDU_AUTHSTOP_M) 2057 2058 /* AuthInsrtOffset: offset in bytes for authentication insertion 2059 * from end of the payload of this command (0-511 bytes) 2060 */ 2061 #define CPL_TX_SEC_PDU_AUTHINSERT_S 0 2062 #define CPL_TX_SEC_PDU_AUTHINSERT_M 0x1ff 2063 #define CPL_TX_SEC_PDU_AUTHINSERT_V(x) ((x) << CPL_TX_SEC_PDU_AUTHINSERT_S) 2064 #define CPL_TX_SEC_PDU_AUTHINSERT_G(x) \ 2065 (((x) >> CPL_TX_SEC_PDU_AUTHINSERT_S) & \ 2066 CPL_TX_SEC_PDU_AUTHINSERT_M) 2067 2068 struct cpl_rx_phys_dsgl { 2069 __be32 op_to_tid; 2070 __be32 pcirlxorder_to_noofsgentr; 2071 struct rss_header rss_hdr_int; 2072 }; 2073 2074 #define CPL_RX_PHYS_DSGL_OPCODE_S 24 2075 #define CPL_RX_PHYS_DSGL_OPCODE_M 0xff 2076 #define CPL_RX_PHYS_DSGL_OPCODE_V(x) ((x) << CPL_RX_PHYS_DSGL_OPCODE_S) 2077 #define CPL_RX_PHYS_DSGL_OPCODE_G(x) \ 2078 (((x) >> CPL_RX_PHYS_DSGL_OPCODE_S) & CPL_RX_PHYS_DSGL_OPCODE_M) 2079 2080 #define CPL_RX_PHYS_DSGL_ISRDMA_S 23 2081 #define CPL_RX_PHYS_DSGL_ISRDMA_M 0x1 2082 #define CPL_RX_PHYS_DSGL_ISRDMA_V(x) ((x) << CPL_RX_PHYS_DSGL_ISRDMA_S) 2083 #define CPL_RX_PHYS_DSGL_ISRDMA_G(x) \ 2084 (((x) >> CPL_RX_PHYS_DSGL_ISRDMA_S) & CPL_RX_PHYS_DSGL_ISRDMA_M) 2085 #define CPL_RX_PHYS_DSGL_ISRDMA_F CPL_RX_PHYS_DSGL_ISRDMA_V(1U) 2086 2087 #define CPL_RX_PHYS_DSGL_RSVD1_S 20 2088 #define CPL_RX_PHYS_DSGL_RSVD1_M 0x7 2089 #define CPL_RX_PHYS_DSGL_RSVD1_V(x) ((x) << CPL_RX_PHYS_DSGL_RSVD1_S) 2090 #define CPL_RX_PHYS_DSGL_RSVD1_G(x) \ 2091 (((x) >> CPL_RX_PHYS_DSGL_RSVD1_S) & \ 2092 CPL_RX_PHYS_DSGL_RSVD1_M) 2093 2094 #define CPL_RX_PHYS_DSGL_PCIRLXORDER_S 31 2095 #define CPL_RX_PHYS_DSGL_PCIRLXORDER_M 0x1 2096 #define CPL_RX_PHYS_DSGL_PCIRLXORDER_V(x) \ 2097 ((x) << CPL_RX_PHYS_DSGL_PCIRLXORDER_S) 2098 #define CPL_RX_PHYS_DSGL_PCIRLXORDER_G(x) \ 2099 (((x) >> CPL_RX_PHYS_DSGL_PCIRLXORDER_S) & \ 2100 CPL_RX_PHYS_DSGL_PCIRLXORDER_M) 2101 #define CPL_RX_PHYS_DSGL_PCIRLXORDER_F CPL_RX_PHYS_DSGL_PCIRLXORDER_V(1U) 2102 2103 #define CPL_RX_PHYS_DSGL_PCINOSNOOP_S 30 2104 #define CPL_RX_PHYS_DSGL_PCINOSNOOP_M 0x1 2105 #define CPL_RX_PHYS_DSGL_PCINOSNOOP_V(x) \ 2106 ((x) << CPL_RX_PHYS_DSGL_PCINOSNOOP_S) 2107 #define CPL_RX_PHYS_DSGL_PCINOSNOOP_G(x) \ 2108 (((x) >> CPL_RX_PHYS_DSGL_PCINOSNOOP_S) & \ 2109 CPL_RX_PHYS_DSGL_PCINOSNOOP_M) 2110 2111 #define CPL_RX_PHYS_DSGL_PCINOSNOOP_F CPL_RX_PHYS_DSGL_PCINOSNOOP_V(1U) 2112 2113 #define CPL_RX_PHYS_DSGL_PCITPHNTENB_S 29 2114 #define CPL_RX_PHYS_DSGL_PCITPHNTENB_M 0x1 2115 #define CPL_RX_PHYS_DSGL_PCITPHNTENB_V(x) \ 2116 ((x) << CPL_RX_PHYS_DSGL_PCITPHNTENB_S) 2117 #define CPL_RX_PHYS_DSGL_PCITPHNTENB_G(x) \ 2118 (((x) >> CPL_RX_PHYS_DSGL_PCITPHNTENB_S) & \ 2119 CPL_RX_PHYS_DSGL_PCITPHNTENB_M) 2120 #define CPL_RX_PHYS_DSGL_PCITPHNTENB_F CPL_RX_PHYS_DSGL_PCITPHNTENB_V(1U) 2121 2122 #define CPL_RX_PHYS_DSGL_PCITPHNT_S 27 2123 #define CPL_RX_PHYS_DSGL_PCITPHNT_M 0x3 2124 #define CPL_RX_PHYS_DSGL_PCITPHNT_V(x) ((x) << CPL_RX_PHYS_DSGL_PCITPHNT_S) 2125 #define CPL_RX_PHYS_DSGL_PCITPHNT_G(x) \ 2126 (((x) >> CPL_RX_PHYS_DSGL_PCITPHNT_S) & \ 2127 CPL_RX_PHYS_DSGL_PCITPHNT_M) 2128 2129 #define CPL_RX_PHYS_DSGL_DCAID_S 16 2130 #define CPL_RX_PHYS_DSGL_DCAID_M 0x7ff 2131 #define CPL_RX_PHYS_DSGL_DCAID_V(x) ((x) << CPL_RX_PHYS_DSGL_DCAID_S) 2132 #define CPL_RX_PHYS_DSGL_DCAID_G(x) \ 2133 (((x) >> CPL_RX_PHYS_DSGL_DCAID_S) & \ 2134 CPL_RX_PHYS_DSGL_DCAID_M) 2135 2136 #define CPL_RX_PHYS_DSGL_NOOFSGENTR_S 0 2137 #define CPL_RX_PHYS_DSGL_NOOFSGENTR_M 0xffff 2138 #define CPL_RX_PHYS_DSGL_NOOFSGENTR_V(x) \ 2139 ((x) << CPL_RX_PHYS_DSGL_NOOFSGENTR_S) 2140 #define CPL_RX_PHYS_DSGL_NOOFSGENTR_G(x) \ 2141 (((x) >> CPL_RX_PHYS_DSGL_NOOFSGENTR_S) & \ 2142 CPL_RX_PHYS_DSGL_NOOFSGENTR_M) 2143 2144 struct cpl_rx_mps_pkt { 2145 __be32 op_to_r1_hi; 2146 __be32 r1_lo_length; 2147 }; 2148 2149 #define CPL_RX_MPS_PKT_OP_S 24 2150 #define CPL_RX_MPS_PKT_OP_M 0xff 2151 #define CPL_RX_MPS_PKT_OP_V(x) ((x) << CPL_RX_MPS_PKT_OP_S) 2152 #define CPL_RX_MPS_PKT_OP_G(x) \ 2153 (((x) >> CPL_RX_MPS_PKT_OP_S) & CPL_RX_MPS_PKT_OP_M) 2154 2155 #define CPL_RX_MPS_PKT_TYPE_S 20 2156 #define CPL_RX_MPS_PKT_TYPE_M 0xf 2157 #define CPL_RX_MPS_PKT_TYPE_V(x) ((x) << CPL_RX_MPS_PKT_TYPE_S) 2158 #define CPL_RX_MPS_PKT_TYPE_G(x) \ 2159 (((x) >> CPL_RX_MPS_PKT_TYPE_S) & CPL_RX_MPS_PKT_TYPE_M) 2160 2161 enum { 2162 X_CPL_RX_MPS_PKT_TYPE_PAUSE = 1 << 0, 2163 X_CPL_RX_MPS_PKT_TYPE_PPP = 1 << 1, 2164 X_CPL_RX_MPS_PKT_TYPE_QFC = 1 << 2, 2165 X_CPL_RX_MPS_PKT_TYPE_PTP = 1 << 3 2166 }; 2167 2168 struct cpl_srq_table_req { 2169 WR_HDR; 2170 union opcode_tid ot; 2171 __u8 status; 2172 __u8 rsvd[2]; 2173 __u8 idx; 2174 __be64 rsvd_pdid; 2175 __be32 qlen_qbase; 2176 __be16 cur_msn; 2177 __be16 max_msn; 2178 }; 2179 2180 struct cpl_srq_table_rpl { 2181 union opcode_tid ot; 2182 __u8 status; 2183 __u8 rsvd[2]; 2184 __u8 idx; 2185 __be64 rsvd_pdid; 2186 __be32 qlen_qbase; 2187 __be16 cur_msn; 2188 __be16 max_msn; 2189 }; 2190 2191 /* cpl_srq_table_{req,rpl}.params fields */ 2192 #define SRQT_QLEN_S 28 2193 #define SRQT_QLEN_M 0xF 2194 #define SRQT_QLEN_V(x) ((x) << SRQT_QLEN_S) 2195 #define SRQT_QLEN_G(x) (((x) >> SRQT_QLEN_S) & SRQT_QLEN_M) 2196 2197 #define SRQT_QBASE_S 0 2198 #define SRQT_QBASE_M 0x3FFFFFF 2199 #define SRQT_QBASE_V(x) ((x) << SRQT_QBASE_S) 2200 #define SRQT_QBASE_G(x) (((x) >> SRQT_QBASE_S) & SRQT_QBASE_M) 2201 2202 #define SRQT_PDID_S 0 2203 #define SRQT_PDID_M 0xFF 2204 #define SRQT_PDID_V(x) ((x) << SRQT_PDID_S) 2205 #define SRQT_PDID_G(x) (((x) >> SRQT_PDID_S) & SRQT_PDID_M) 2206 2207 #define SRQT_IDX_S 0 2208 #define SRQT_IDX_M 0xF 2209 #define SRQT_IDX_V(x) ((x) << SRQT_IDX_S) 2210 #define SRQT_IDX_G(x) (((x) >> SRQT_IDX_S) & SRQT_IDX_M) 2211 2212 struct cpl_tx_tls_sfo { 2213 __be32 op_to_seg_len; 2214 __be32 pld_len; 2215 __be32 type_protover; 2216 __be32 r1_lo; 2217 __be32 seqno_numivs; 2218 __be32 ivgen_hdrlen; 2219 __be64 scmd1; 2220 }; 2221 2222 /* cpl_tx_tls_sfo macros */ 2223 #define CPL_TX_TLS_SFO_OPCODE_S 24 2224 #define CPL_TX_TLS_SFO_OPCODE_V(x) ((x) << CPL_TX_TLS_SFO_OPCODE_S) 2225 2226 #define CPL_TX_TLS_SFO_DATA_TYPE_S 20 2227 #define CPL_TX_TLS_SFO_DATA_TYPE_V(x) ((x) << CPL_TX_TLS_SFO_DATA_TYPE_S) 2228 2229 #define CPL_TX_TLS_SFO_CPL_LEN_S 16 2230 #define CPL_TX_TLS_SFO_CPL_LEN_V(x) ((x) << CPL_TX_TLS_SFO_CPL_LEN_S) 2231 2232 #define CPL_TX_TLS_SFO_SEG_LEN_S 0 2233 #define CPL_TX_TLS_SFO_SEG_LEN_M 0xffff 2234 #define CPL_TX_TLS_SFO_SEG_LEN_V(x) ((x) << CPL_TX_TLS_SFO_SEG_LEN_S) 2235 #define CPL_TX_TLS_SFO_SEG_LEN_G(x) \ 2236 (((x) >> CPL_TX_TLS_SFO_SEG_LEN_S) & CPL_TX_TLS_SFO_SEG_LEN_M) 2237 2238 #define CPL_TX_TLS_SFO_TYPE_S 24 2239 #define CPL_TX_TLS_SFO_TYPE_M 0xff 2240 #define CPL_TX_TLS_SFO_TYPE_V(x) ((x) << CPL_TX_TLS_SFO_TYPE_S) 2241 #define CPL_TX_TLS_SFO_TYPE_G(x) \ 2242 (((x) >> CPL_TX_TLS_SFO_TYPE_S) & CPL_TX_TLS_SFO_TYPE_M) 2243 2244 #define CPL_TX_TLS_SFO_PROTOVER_S 8 2245 #define CPL_TX_TLS_SFO_PROTOVER_M 0xffff 2246 #define CPL_TX_TLS_SFO_PROTOVER_V(x) ((x) << CPL_TX_TLS_SFO_PROTOVER_S) 2247 #define CPL_TX_TLS_SFO_PROTOVER_G(x) \ 2248 (((x) >> CPL_TX_TLS_SFO_PROTOVER_S) & CPL_TX_TLS_SFO_PROTOVER_M) 2249 2250 struct cpl_tls_data { 2251 struct rss_header rsshdr; 2252 union opcode_tid ot; 2253 __be32 length_pkd; 2254 __be32 seq; 2255 __be32 r1; 2256 }; 2257 2258 #define CPL_TLS_DATA_OPCODE_S 24 2259 #define CPL_TLS_DATA_OPCODE_M 0xff 2260 #define CPL_TLS_DATA_OPCODE_V(x) ((x) << CPL_TLS_DATA_OPCODE_S) 2261 #define CPL_TLS_DATA_OPCODE_G(x) \ 2262 (((x) >> CPL_TLS_DATA_OPCODE_S) & CPL_TLS_DATA_OPCODE_M) 2263 2264 #define CPL_TLS_DATA_TID_S 0 2265 #define CPL_TLS_DATA_TID_M 0xffffff 2266 #define CPL_TLS_DATA_TID_V(x) ((x) << CPL_TLS_DATA_TID_S) 2267 #define CPL_TLS_DATA_TID_G(x) \ 2268 (((x) >> CPL_TLS_DATA_TID_S) & CPL_TLS_DATA_TID_M) 2269 2270 #define CPL_TLS_DATA_LENGTH_S 0 2271 #define CPL_TLS_DATA_LENGTH_M 0xffff 2272 #define CPL_TLS_DATA_LENGTH_V(x) ((x) << CPL_TLS_DATA_LENGTH_S) 2273 #define CPL_TLS_DATA_LENGTH_G(x) \ 2274 (((x) >> CPL_TLS_DATA_LENGTH_S) & CPL_TLS_DATA_LENGTH_M) 2275 2276 struct cpl_rx_tls_cmp { 2277 struct rss_header rsshdr; 2278 union opcode_tid ot; 2279 __be32 pdulength_length; 2280 __be32 seq; 2281 __be32 ddp_report; 2282 __be32 r; 2283 __be32 ddp_valid; 2284 }; 2285 2286 #define CPL_RX_TLS_CMP_OPCODE_S 24 2287 #define CPL_RX_TLS_CMP_OPCODE_M 0xff 2288 #define CPL_RX_TLS_CMP_OPCODE_V(x) ((x) << CPL_RX_TLS_CMP_OPCODE_S) 2289 #define CPL_RX_TLS_CMP_OPCODE_G(x) \ 2290 (((x) >> CPL_RX_TLS_CMP_OPCODE_S) & CPL_RX_TLS_CMP_OPCODE_M) 2291 2292 #define CPL_RX_TLS_CMP_TID_S 0 2293 #define CPL_RX_TLS_CMP_TID_M 0xffffff 2294 #define CPL_RX_TLS_CMP_TID_V(x) ((x) << CPL_RX_TLS_CMP_TID_S) 2295 #define CPL_RX_TLS_CMP_TID_G(x) \ 2296 (((x) >> CPL_RX_TLS_CMP_TID_S) & CPL_RX_TLS_CMP_TID_M) 2297 2298 #define CPL_RX_TLS_CMP_PDULENGTH_S 16 2299 #define CPL_RX_TLS_CMP_PDULENGTH_M 0xffff 2300 #define CPL_RX_TLS_CMP_PDULENGTH_V(x) ((x) << CPL_RX_TLS_CMP_PDULENGTH_S) 2301 #define CPL_RX_TLS_CMP_PDULENGTH_G(x) \ 2302 (((x) >> CPL_RX_TLS_CMP_PDULENGTH_S) & CPL_RX_TLS_CMP_PDULENGTH_M) 2303 2304 #define CPL_RX_TLS_CMP_LENGTH_S 0 2305 #define CPL_RX_TLS_CMP_LENGTH_M 0xffff 2306 #define CPL_RX_TLS_CMP_LENGTH_V(x) ((x) << CPL_RX_TLS_CMP_LENGTH_S) 2307 #define CPL_RX_TLS_CMP_LENGTH_G(x) \ 2308 (((x) >> CPL_RX_TLS_CMP_LENGTH_S) & CPL_RX_TLS_CMP_LENGTH_M) 2309 #endif /* __T4_MSG_H */ 2310