Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 | // SPDX-License-Identifier: GPL-2.0-only /**************************************************************************** * Driver for Solarflare network controllers and boards * Copyright 2019 Solarflare Communications Inc. * Copyright 2020-2022 Xilinx Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation, incorporated herein by reference. */ #include "mae.h" #include "mcdi.h" #include "mcdi_pcol_mae.h" int efx_mae_allocate_mport(struct efx_nic *efx, u32 *id, u32 *label) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_MPORT_ALLOC_ALIAS_OUT_LEN); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_MPORT_ALLOC_ALIAS_IN_LEN); size_t outlen; int rc; if (WARN_ON_ONCE(!id)) return -EINVAL; if (WARN_ON_ONCE(!label)) return -EINVAL; MCDI_SET_DWORD(inbuf, MAE_MPORT_ALLOC_ALIAS_IN_TYPE, MC_CMD_MAE_MPORT_ALLOC_ALIAS_IN_MPORT_TYPE_ALIAS); MCDI_SET_DWORD(inbuf, MAE_MPORT_ALLOC_ALIAS_IN_DELIVER_MPORT, MAE_MPORT_SELECTOR_ASSIGNED); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_MPORT_ALLOC, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; *id = MCDI_DWORD(outbuf, MAE_MPORT_ALLOC_ALIAS_OUT_MPORT_ID); *label = MCDI_DWORD(outbuf, MAE_MPORT_ALLOC_ALIAS_OUT_LABEL); return 0; } int efx_mae_free_mport(struct efx_nic *efx, u32 id) { MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_MPORT_FREE_IN_LEN); BUILD_BUG_ON(MC_CMD_MAE_MPORT_FREE_OUT_LEN); MCDI_SET_DWORD(inbuf, MAE_MPORT_FREE_IN_MPORT_ID, id); return efx_mcdi_rpc(efx, MC_CMD_MAE_MPORT_FREE, inbuf, sizeof(inbuf), NULL, 0, NULL); } void efx_mae_mport_wire(struct efx_nic *efx, u32 *out) { efx_dword_t mport; EFX_POPULATE_DWORD_2(mport, MAE_MPORT_SELECTOR_TYPE, MAE_MPORT_SELECTOR_TYPE_PPORT, MAE_MPORT_SELECTOR_PPORT_ID, efx->port_num); *out = EFX_DWORD_VAL(mport); } void efx_mae_mport_uplink(struct efx_nic *efx __always_unused, u32 *out) { efx_dword_t mport; EFX_POPULATE_DWORD_3(mport, MAE_MPORT_SELECTOR_TYPE, MAE_MPORT_SELECTOR_TYPE_FUNC, MAE_MPORT_SELECTOR_FUNC_PF_ID, MAE_MPORT_SELECTOR_FUNC_PF_ID_CALLER, MAE_MPORT_SELECTOR_FUNC_VF_ID, MAE_MPORT_SELECTOR_FUNC_VF_ID_NULL); *out = EFX_DWORD_VAL(mport); } void efx_mae_mport_vf(struct efx_nic *efx __always_unused, u32 vf_id, u32 *out) { efx_dword_t mport; EFX_POPULATE_DWORD_3(mport, MAE_MPORT_SELECTOR_TYPE, MAE_MPORT_SELECTOR_TYPE_FUNC, MAE_MPORT_SELECTOR_FUNC_PF_ID, MAE_MPORT_SELECTOR_FUNC_PF_ID_CALLER, MAE_MPORT_SELECTOR_FUNC_VF_ID, vf_id); *out = EFX_DWORD_VAL(mport); } /* Constructs an mport selector from an mport ID, because they're not the same */ void efx_mae_mport_mport(struct efx_nic *efx __always_unused, u32 mport_id, u32 *out) { efx_dword_t mport; EFX_POPULATE_DWORD_2(mport, MAE_MPORT_SELECTOR_TYPE, MAE_MPORT_SELECTOR_TYPE_MPORT_ID, MAE_MPORT_SELECTOR_MPORT_ID, mport_id); *out = EFX_DWORD_VAL(mport); } /* id is really only 24 bits wide */ int efx_mae_lookup_mport(struct efx_nic *efx, u32 selector, u32 *id) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_MPORT_LOOKUP_OUT_LEN); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_MPORT_LOOKUP_IN_LEN); size_t outlen; int rc; MCDI_SET_DWORD(inbuf, MAE_MPORT_LOOKUP_IN_MPORT_SELECTOR, selector); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_MPORT_LOOKUP, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; *id = MCDI_DWORD(outbuf, MAE_MPORT_LOOKUP_OUT_MPORT_ID); return 0; } int efx_mae_start_counters(struct efx_nic *efx, struct efx_rx_queue *rx_queue) { MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_COUNTERS_STREAM_START_V2_IN_LEN); MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_COUNTERS_STREAM_START_OUT_LEN); u32 out_flags; size_t outlen; int rc; MCDI_SET_WORD(inbuf, MAE_COUNTERS_STREAM_START_V2_IN_QID, efx_rx_queue_index(rx_queue)); MCDI_SET_WORD(inbuf, MAE_COUNTERS_STREAM_START_V2_IN_PACKET_SIZE, efx->net_dev->mtu); MCDI_SET_DWORD(inbuf, MAE_COUNTERS_STREAM_START_V2_IN_COUNTER_TYPES_MASK, BIT(MAE_COUNTER_TYPE_AR) | BIT(MAE_COUNTER_TYPE_CT) | BIT(MAE_COUNTER_TYPE_OR)); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_COUNTERS_STREAM_START, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; out_flags = MCDI_DWORD(outbuf, MAE_COUNTERS_STREAM_START_OUT_FLAGS); if (out_flags & BIT(MC_CMD_MAE_COUNTERS_STREAM_START_OUT_USES_CREDITS_OFST)) { netif_dbg(efx, drv, efx->net_dev, "MAE counter stream uses credits\n"); rx_queue->grant_credits = true; out_flags &= ~BIT(MC_CMD_MAE_COUNTERS_STREAM_START_OUT_USES_CREDITS_OFST); } if (out_flags) { netif_err(efx, drv, efx->net_dev, "MAE counter stream start: unrecognised flags %x\n", out_flags); goto out_stop; } return 0; out_stop: efx_mae_stop_counters(efx, rx_queue); return -EOPNOTSUPP; } static bool efx_mae_counters_flushed(u32 *flush_gen, u32 *seen_gen) { int i; for (i = 0; i < EFX_TC_COUNTER_TYPE_MAX; i++) if ((s32)(flush_gen[i] - seen_gen[i]) > 0) return false; return true; } int efx_mae_stop_counters(struct efx_nic *efx, struct efx_rx_queue *rx_queue) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_COUNTERS_STREAM_STOP_V2_OUT_LENMAX); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_COUNTERS_STREAM_STOP_IN_LEN); size_t outlen; int rc, i; MCDI_SET_WORD(inbuf, MAE_COUNTERS_STREAM_STOP_IN_QID, efx_rx_queue_index(rx_queue)); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_COUNTERS_STREAM_STOP, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; netif_dbg(efx, drv, efx->net_dev, "Draining counters:\n"); /* Only process received generation counts */ for (i = 0; (i < (outlen / 4)) && (i < EFX_TC_COUNTER_TYPE_MAX); i++) { efx->tc->flush_gen[i] = MCDI_ARRAY_DWORD(outbuf, MAE_COUNTERS_STREAM_STOP_V2_OUT_GENERATION_COUNT, i); netif_dbg(efx, drv, efx->net_dev, "\ttype %u, awaiting gen %u\n", i, efx->tc->flush_gen[i]); } efx->tc->flush_counters = true; /* Drain can take up to 2 seconds owing to FWRIVERHD-2884; whatever * timeout we use, that delay is added to unload on nonresponsive * hardware, so 2500ms seems like a reasonable compromise. */ if (!wait_event_timeout(efx->tc->flush_wq, efx_mae_counters_flushed(efx->tc->flush_gen, efx->tc->seen_gen), msecs_to_jiffies(2500))) netif_warn(efx, drv, efx->net_dev, "Failed to drain counters RXQ, FW may be unhappy\n"); efx->tc->flush_counters = false; return rc; } void efx_mae_counters_grant_credits(struct work_struct *work) { MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_COUNTERS_STREAM_GIVE_CREDITS_IN_LEN); struct efx_rx_queue *rx_queue = container_of(work, struct efx_rx_queue, grant_work); struct efx_nic *efx = rx_queue->efx; unsigned int credits; BUILD_BUG_ON(MC_CMD_MAE_COUNTERS_STREAM_GIVE_CREDITS_OUT_LEN); credits = READ_ONCE(rx_queue->notified_count) - rx_queue->granted_count; MCDI_SET_DWORD(inbuf, MAE_COUNTERS_STREAM_GIVE_CREDITS_IN_NUM_CREDITS, credits); if (!efx_mcdi_rpc(efx, MC_CMD_MAE_COUNTERS_STREAM_GIVE_CREDITS, inbuf, sizeof(inbuf), NULL, 0, NULL)) rx_queue->granted_count += credits; } static int efx_mae_get_basic_caps(struct efx_nic *efx, struct mae_caps *caps) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_GET_CAPS_OUT_LEN); size_t outlen; int rc; BUILD_BUG_ON(MC_CMD_MAE_GET_CAPS_IN_LEN); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_GET_CAPS, NULL, 0, outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; caps->match_field_count = MCDI_DWORD(outbuf, MAE_GET_CAPS_OUT_MATCH_FIELD_COUNT); caps->action_prios = MCDI_DWORD(outbuf, MAE_GET_CAPS_OUT_ACTION_PRIOS); return 0; } static int efx_mae_get_rule_fields(struct efx_nic *efx, u32 cmd, u8 *field_support) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_GET_AR_CAPS_OUT_LEN(MAE_NUM_FIELDS)); MCDI_DECLARE_STRUCT_PTR(caps); unsigned int count; size_t outlen; int rc, i; BUILD_BUG_ON(MC_CMD_MAE_GET_AR_CAPS_IN_LEN); rc = efx_mcdi_rpc(efx, cmd, NULL, 0, outbuf, sizeof(outbuf), &outlen); if (rc) return rc; count = MCDI_DWORD(outbuf, MAE_GET_AR_CAPS_OUT_COUNT); memset(field_support, MAE_FIELD_UNSUPPORTED, MAE_NUM_FIELDS); caps = _MCDI_DWORD(outbuf, MAE_GET_AR_CAPS_OUT_FIELD_FLAGS); /* We're only interested in the support status enum, not any other * flags, so just extract that from each entry. */ for (i = 0; i < count; i++) if (i * sizeof(*outbuf) + MC_CMD_MAE_GET_AR_CAPS_OUT_FIELD_FLAGS_OFST < outlen) field_support[i] = EFX_DWORD_FIELD(caps[i], MAE_FIELD_FLAGS_SUPPORT_STATUS); return 0; } int efx_mae_get_caps(struct efx_nic *efx, struct mae_caps *caps) { int rc; rc = efx_mae_get_basic_caps(efx, caps); if (rc) return rc; return efx_mae_get_rule_fields(efx, MC_CMD_MAE_GET_AR_CAPS, caps->action_rule_fields); } /* Bit twiddling: * Prefix: 1...110...0 * ~: 0...001...1 * + 1: 0...010...0 is power of two * so (~x) & ((~x) + 1) == 0. Converse holds also. */ #define is_prefix_byte(_x) !(((_x) ^ 0xff) & (((_x) ^ 0xff) + 1)) enum mask_type { MASK_ONES, MASK_ZEROES, MASK_PREFIX, MASK_OTHER }; static const char *mask_type_name(enum mask_type typ) { switch (typ) { case MASK_ONES: return "all-1s"; case MASK_ZEROES: return "all-0s"; case MASK_PREFIX: return "prefix"; case MASK_OTHER: return "arbitrary"; default: /* can't happen */ return "unknown"; } } /* Checks a (big-endian) bytestring is a bit prefix */ static enum mask_type classify_mask(const u8 *mask, size_t len) { bool zeroes = true; /* All bits seen so far are zeroes */ bool ones = true; /* All bits seen so far are ones */ bool prefix = true; /* Valid prefix so far */ size_t i; for (i = 0; i < len; i++) { if (ones) { if (!is_prefix_byte(mask[i])) prefix = false; } else if (mask[i]) { prefix = false; } if (mask[i] != 0xff) ones = false; if (mask[i]) zeroes = false; } if (ones) return MASK_ONES; if (zeroes) return MASK_ZEROES; if (prefix) return MASK_PREFIX; return MASK_OTHER; } static int efx_mae_match_check_cap_typ(u8 support, enum mask_type typ) { switch (support) { case MAE_FIELD_UNSUPPORTED: case MAE_FIELD_SUPPORTED_MATCH_NEVER: if (typ == MASK_ZEROES) return 0; return -EOPNOTSUPP; case MAE_FIELD_SUPPORTED_MATCH_OPTIONAL: if (typ == MASK_ZEROES) return 0; fallthrough; case MAE_FIELD_SUPPORTED_MATCH_ALWAYS: if (typ == MASK_ONES) return 0; return -EINVAL; case MAE_FIELD_SUPPORTED_MATCH_PREFIX: if (typ == MASK_OTHER) return -EOPNOTSUPP; return 0; case MAE_FIELD_SUPPORTED_MATCH_MASK: return 0; default: return -EIO; } } /* Validate field mask against hardware capabilities. Captures caller's 'rc' */ #define CHECK(_mcdi, _field) ({ \ enum mask_type typ = classify_mask((const u8 *)&mask->_field, \ sizeof(mask->_field)); \ \ rc = efx_mae_match_check_cap_typ(supported_fields[MAE_FIELD_ ## _mcdi],\ typ); \ if (rc) \ NL_SET_ERR_MSG_FMT_MOD(extack, \ "No support for %s mask in field %s", \ mask_type_name(typ), #_field); \ rc; \ }) /* Booleans need special handling */ #define CHECK_BIT(_mcdi, _field) ({ \ enum mask_type typ = mask->_field ? MASK_ONES : MASK_ZEROES; \ \ rc = efx_mae_match_check_cap_typ(supported_fields[MAE_FIELD_ ## _mcdi],\ typ); \ if (rc) \ NL_SET_ERR_MSG_FMT_MOD(extack, \ "No support for %s mask in field %s", \ mask_type_name(typ), #_field); \ rc; \ }) int efx_mae_match_check_caps(struct efx_nic *efx, const struct efx_tc_match_fields *mask, struct netlink_ext_ack *extack) { const u8 *supported_fields = efx->tc->caps->action_rule_fields; __be32 ingress_port = cpu_to_be32(mask->ingress_port); enum mask_type ingress_port_mask_type; int rc; /* Check for _PREFIX assumes big-endian, so we need to convert */ ingress_port_mask_type = classify_mask((const u8 *)&ingress_port, sizeof(ingress_port)); rc = efx_mae_match_check_cap_typ(supported_fields[MAE_FIELD_INGRESS_PORT], ingress_port_mask_type); if (rc) { NL_SET_ERR_MSG_FMT_MOD(extack, "No support for %s mask in field ingress_port", mask_type_name(ingress_port_mask_type)); return rc; } if (CHECK(ETHER_TYPE, eth_proto) || CHECK(VLAN0_TCI, vlan_tci[0]) || CHECK(VLAN0_PROTO, vlan_proto[0]) || CHECK(VLAN1_TCI, vlan_tci[1]) || CHECK(VLAN1_PROTO, vlan_proto[1]) || CHECK(ETH_SADDR, eth_saddr) || CHECK(ETH_DADDR, eth_daddr) || CHECK(IP_PROTO, ip_proto) || CHECK(IP_TOS, ip_tos) || CHECK(IP_TTL, ip_ttl) || CHECK(SRC_IP4, src_ip) || CHECK(DST_IP4, dst_ip) || #ifdef CONFIG_IPV6 CHECK(SRC_IP6, src_ip6) || CHECK(DST_IP6, dst_ip6) || #endif CHECK(L4_SPORT, l4_sport) || CHECK(L4_DPORT, l4_dport) || CHECK(TCP_FLAGS, tcp_flags) || CHECK_BIT(IS_IP_FRAG, ip_frag) || CHECK_BIT(IP_FIRST_FRAG, ip_firstfrag) || CHECK(RECIRC_ID, recirc_id)) return rc; return 0; } #undef CHECK_BIT #undef CHECK int efx_mae_allocate_counter(struct efx_nic *efx, struct efx_tc_counter *cnt) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_COUNTER_ALLOC_OUT_LEN(1)); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_COUNTER_ALLOC_V2_IN_LEN); size_t outlen; int rc; if (!cnt) return -EINVAL; MCDI_SET_DWORD(inbuf, MAE_COUNTER_ALLOC_V2_IN_REQUESTED_COUNT, 1); MCDI_SET_DWORD(inbuf, MAE_COUNTER_ALLOC_V2_IN_COUNTER_TYPE, cnt->type); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_COUNTER_ALLOC, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; /* pcol says this can't happen, since count is 1 */ if (outlen < sizeof(outbuf)) return -EIO; cnt->fw_id = MCDI_DWORD(outbuf, MAE_COUNTER_ALLOC_OUT_COUNTER_ID); cnt->gen = MCDI_DWORD(outbuf, MAE_COUNTER_ALLOC_OUT_GENERATION_COUNT); return 0; } int efx_mae_free_counter(struct efx_nic *efx, struct efx_tc_counter *cnt) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_COUNTER_FREE_OUT_LEN(1)); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_COUNTER_FREE_V2_IN_LEN); size_t outlen; int rc; MCDI_SET_DWORD(inbuf, MAE_COUNTER_FREE_V2_IN_COUNTER_ID_COUNT, 1); MCDI_SET_DWORD(inbuf, MAE_COUNTER_FREE_V2_IN_FREE_COUNTER_ID, cnt->fw_id); MCDI_SET_DWORD(inbuf, MAE_COUNTER_FREE_V2_IN_COUNTER_TYPE, cnt->type); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_COUNTER_FREE, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; /* pcol says this can't happen, since count is 1 */ if (outlen < sizeof(outbuf)) return -EIO; /* FW freed a different ID than we asked for, should also never happen. * Warn because it means we've now got a different idea to the FW of * what counters exist, which could cause mayhem later. */ if (WARN_ON(MCDI_DWORD(outbuf, MAE_COUNTER_FREE_OUT_FREED_COUNTER_ID) != cnt->fw_id)) return -EIO; return 0; } static bool efx_mae_asl_id(u32 id) { return !!(id & BIT(31)); } int efx_mae_alloc_action_set(struct efx_nic *efx, struct efx_tc_action_set *act) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_ACTION_SET_ALLOC_OUT_LEN); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_ACTION_SET_ALLOC_IN_LEN); size_t outlen; int rc; MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_ALLOC_IN_SRC_MAC_ID, MC_CMD_MAE_MAC_ADDR_ALLOC_OUT_MAC_ID_NULL); MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_ALLOC_IN_DST_MAC_ID, MC_CMD_MAE_MAC_ADDR_ALLOC_OUT_MAC_ID_NULL); if (act->count && !WARN_ON(!act->count->cnt)) MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_ALLOC_IN_COUNTER_ID, act->count->cnt->fw_id); else MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_ALLOC_IN_COUNTER_ID, MC_CMD_MAE_COUNTER_ALLOC_OUT_COUNTER_ID_NULL); MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_ALLOC_IN_COUNTER_LIST_ID, MC_CMD_MAE_COUNTER_LIST_ALLOC_OUT_COUNTER_LIST_ID_NULL); MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_ALLOC_IN_ENCAP_HEADER_ID, MC_CMD_MAE_ENCAP_HEADER_ALLOC_OUT_ENCAP_HEADER_ID_NULL); if (act->deliver) MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_ALLOC_IN_DELIVER, act->dest_mport); BUILD_BUG_ON(MAE_MPORT_SELECTOR_NULL); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_ACTION_SET_ALLOC, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; act->fw_id = MCDI_DWORD(outbuf, MAE_ACTION_SET_ALLOC_OUT_AS_ID); /* We rely on the high bit of AS IDs always being clear. * The firmware API guarantees this, but let's check it ourselves. */ if (WARN_ON_ONCE(efx_mae_asl_id(act->fw_id))) { efx_mae_free_action_set(efx, act->fw_id); return -EIO; } return 0; } int efx_mae_free_action_set(struct efx_nic *efx, u32 fw_id) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_ACTION_SET_FREE_OUT_LEN(1)); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_ACTION_SET_FREE_IN_LEN(1)); size_t outlen; int rc; MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_FREE_IN_AS_ID, fw_id); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_ACTION_SET_FREE, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; /* FW freed a different ID than we asked for, should never happen. * Warn because it means we've now got a different idea to the FW of * what action-sets exist, which could cause mayhem later. */ if (WARN_ON(MCDI_DWORD(outbuf, MAE_ACTION_SET_FREE_OUT_FREED_AS_ID) != fw_id)) return -EIO; return 0; } int efx_mae_alloc_action_set_list(struct efx_nic *efx, struct efx_tc_action_set_list *acts) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_ACTION_SET_LIST_ALLOC_OUT_LEN); struct efx_tc_action_set *act; size_t inlen, outlen, i = 0; efx_dword_t *inbuf; int rc; list_for_each_entry(act, &acts->list, list) i++; if (i == 0) return -EINVAL; if (i == 1) { /* Don't wrap an ASL around a single AS, just use the AS_ID * directly. ASLs are a more limited resource. */ act = list_first_entry(&acts->list, struct efx_tc_action_set, list); acts->fw_id = act->fw_id; return 0; } if (i > MC_CMD_MAE_ACTION_SET_LIST_ALLOC_IN_AS_IDS_MAXNUM_MCDI2) return -EOPNOTSUPP; /* Too many actions */ inlen = MC_CMD_MAE_ACTION_SET_LIST_ALLOC_IN_LEN(i); inbuf = kzalloc(inlen, GFP_KERNEL); if (!inbuf) return -ENOMEM; i = 0; list_for_each_entry(act, &acts->list, list) { MCDI_SET_ARRAY_DWORD(inbuf, MAE_ACTION_SET_LIST_ALLOC_IN_AS_IDS, i, act->fw_id); i++; } MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_LIST_ALLOC_IN_COUNT, i); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_ACTION_SET_LIST_ALLOC, inbuf, inlen, outbuf, sizeof(outbuf), &outlen); if (rc) goto out_free; if (outlen < sizeof(outbuf)) { rc = -EIO; goto out_free; } acts->fw_id = MCDI_DWORD(outbuf, MAE_ACTION_SET_LIST_ALLOC_OUT_ASL_ID); /* We rely on the high bit of ASL IDs always being set. * The firmware API guarantees this, but let's check it ourselves. */ if (WARN_ON_ONCE(!efx_mae_asl_id(acts->fw_id))) { efx_mae_free_action_set_list(efx, acts); rc = -EIO; } out_free: kfree(inbuf); return rc; } int efx_mae_free_action_set_list(struct efx_nic *efx, struct efx_tc_action_set_list *acts) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_ACTION_SET_LIST_FREE_OUT_LEN(1)); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_ACTION_SET_LIST_FREE_IN_LEN(1)); size_t outlen; int rc; /* If this is just an AS_ID with no ASL wrapper, then there is * nothing for us to free. (The AS will be freed later.) */ if (efx_mae_asl_id(acts->fw_id)) { MCDI_SET_DWORD(inbuf, MAE_ACTION_SET_LIST_FREE_IN_ASL_ID, acts->fw_id); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_ACTION_SET_LIST_FREE, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; /* FW freed a different ID than we asked for, should never happen. * Warn because it means we've now got a different idea to the FW of * what action-set-lists exist, which could cause mayhem later. */ if (WARN_ON(MCDI_DWORD(outbuf, MAE_ACTION_SET_LIST_FREE_OUT_FREED_ASL_ID) != acts->fw_id)) return -EIO; } /* We're probably about to free @acts, but let's just make sure its * fw_id is blatted so that it won't look valid if it leaks out. */ acts->fw_id = MC_CMD_MAE_ACTION_SET_LIST_ALLOC_OUT_ACTION_SET_LIST_ID_NULL; return 0; } static int efx_mae_populate_match_criteria(MCDI_DECLARE_STRUCT_PTR(match_crit), const struct efx_tc_match *match) { if (match->mask.ingress_port) { if (~match->mask.ingress_port) return -EOPNOTSUPP; MCDI_STRUCT_SET_DWORD(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_INGRESS_MPORT_SELECTOR, match->value.ingress_port); } MCDI_STRUCT_SET_DWORD(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_INGRESS_MPORT_SELECTOR_MASK, match->mask.ingress_port); EFX_POPULATE_DWORD_2(*_MCDI_STRUCT_DWORD(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_FLAGS), MAE_FIELD_MASK_VALUE_PAIRS_V2_IS_IP_FRAG, match->value.ip_frag, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_FIRST_FRAG, match->value.ip_firstfrag); EFX_POPULATE_DWORD_2(*_MCDI_STRUCT_DWORD(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_FLAGS_MASK), MAE_FIELD_MASK_VALUE_PAIRS_V2_IS_IP_FRAG, match->mask.ip_frag, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_FIRST_FRAG, match->mask.ip_firstfrag); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_RECIRC_ID, match->value.recirc_id); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_RECIRC_ID_MASK, match->mask.recirc_id); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_ETHER_TYPE_BE, match->value.eth_proto); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_ETHER_TYPE_BE_MASK, match->mask.eth_proto); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN0_TCI_BE, match->value.vlan_tci[0]); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN0_TCI_BE_MASK, match->mask.vlan_tci[0]); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN0_PROTO_BE, match->value.vlan_proto[0]); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN0_PROTO_BE_MASK, match->mask.vlan_proto[0]); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN1_TCI_BE, match->value.vlan_tci[1]); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN1_TCI_BE_MASK, match->mask.vlan_tci[1]); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN1_PROTO_BE, match->value.vlan_proto[1]); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_VLAN1_PROTO_BE_MASK, match->mask.vlan_proto[1]); memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_ETH_SADDR_BE), match->value.eth_saddr, ETH_ALEN); memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_ETH_SADDR_BE_MASK), match->mask.eth_saddr, ETH_ALEN); memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_ETH_DADDR_BE), match->value.eth_daddr, ETH_ALEN); memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_ETH_DADDR_BE_MASK), match->mask.eth_daddr, ETH_ALEN); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_PROTO, match->value.ip_proto); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_PROTO_MASK, match->mask.ip_proto); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_TOS, match->value.ip_tos); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_TOS_MASK, match->mask.ip_tos); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_TTL, match->value.ip_ttl); MCDI_STRUCT_SET_BYTE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_IP_TTL_MASK, match->mask.ip_ttl); MCDI_STRUCT_SET_DWORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_SRC_IP4_BE, match->value.src_ip); MCDI_STRUCT_SET_DWORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_SRC_IP4_BE_MASK, match->mask.src_ip); MCDI_STRUCT_SET_DWORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_DST_IP4_BE, match->value.dst_ip); MCDI_STRUCT_SET_DWORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_DST_IP4_BE_MASK, match->mask.dst_ip); #ifdef CONFIG_IPV6 memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_SRC_IP6_BE), &match->value.src_ip6, sizeof(struct in6_addr)); memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_SRC_IP6_BE_MASK), &match->mask.src_ip6, sizeof(struct in6_addr)); memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_DST_IP6_BE), &match->value.dst_ip6, sizeof(struct in6_addr)); memcpy(MCDI_STRUCT_PTR(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_DST_IP6_BE_MASK), &match->mask.dst_ip6, sizeof(struct in6_addr)); #endif MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_L4_SPORT_BE, match->value.l4_sport); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_L4_SPORT_BE_MASK, match->mask.l4_sport); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_L4_DPORT_BE, match->value.l4_dport); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_L4_DPORT_BE_MASK, match->mask.l4_dport); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_TCP_FLAGS_BE, match->value.tcp_flags); MCDI_STRUCT_SET_WORD_BE(match_crit, MAE_FIELD_MASK_VALUE_PAIRS_V2_TCP_FLAGS_BE_MASK, match->mask.tcp_flags); return 0; } int efx_mae_insert_rule(struct efx_nic *efx, const struct efx_tc_match *match, u32 prio, u32 acts_id, u32 *id) { MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_ACTION_RULE_INSERT_IN_LEN(MAE_FIELD_MASK_VALUE_PAIRS_V2_LEN)); MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_ACTION_RULE_INSERT_OUT_LEN); MCDI_DECLARE_STRUCT_PTR(match_crit); MCDI_DECLARE_STRUCT_PTR(response); size_t outlen; int rc; if (!id) return -EINVAL; match_crit = _MCDI_DWORD(inbuf, MAE_ACTION_RULE_INSERT_IN_MATCH_CRITERIA); response = _MCDI_DWORD(inbuf, MAE_ACTION_RULE_INSERT_IN_RESPONSE); if (efx_mae_asl_id(acts_id)) { MCDI_STRUCT_SET_DWORD(response, MAE_ACTION_RULE_RESPONSE_ASL_ID, acts_id); MCDI_STRUCT_SET_DWORD(response, MAE_ACTION_RULE_RESPONSE_AS_ID, MC_CMD_MAE_ACTION_SET_ALLOC_OUT_ACTION_SET_ID_NULL); } else { /* We only had one AS, so we didn't wrap it in an ASL */ MCDI_STRUCT_SET_DWORD(response, MAE_ACTION_RULE_RESPONSE_ASL_ID, MC_CMD_MAE_ACTION_SET_LIST_ALLOC_OUT_ACTION_SET_LIST_ID_NULL); MCDI_STRUCT_SET_DWORD(response, MAE_ACTION_RULE_RESPONSE_AS_ID, acts_id); } MCDI_SET_DWORD(inbuf, MAE_ACTION_RULE_INSERT_IN_PRIO, prio); rc = efx_mae_populate_match_criteria(match_crit, match); if (rc) return rc; rc = efx_mcdi_rpc(efx, MC_CMD_MAE_ACTION_RULE_INSERT, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; *id = MCDI_DWORD(outbuf, MAE_ACTION_RULE_INSERT_OUT_AR_ID); return 0; } int efx_mae_delete_rule(struct efx_nic *efx, u32 id) { MCDI_DECLARE_BUF(outbuf, MC_CMD_MAE_ACTION_RULE_DELETE_OUT_LEN(1)); MCDI_DECLARE_BUF(inbuf, MC_CMD_MAE_ACTION_RULE_DELETE_IN_LEN(1)); size_t outlen; int rc; MCDI_SET_DWORD(inbuf, MAE_ACTION_RULE_DELETE_IN_AR_ID, id); rc = efx_mcdi_rpc(efx, MC_CMD_MAE_ACTION_RULE_DELETE, inbuf, sizeof(inbuf), outbuf, sizeof(outbuf), &outlen); if (rc) return rc; if (outlen < sizeof(outbuf)) return -EIO; /* FW freed a different ID than we asked for, should also never happen. * Warn because it means we've now got a different idea to the FW of * what rules exist, which could cause mayhem later. */ if (WARN_ON(MCDI_DWORD(outbuf, MAE_ACTION_RULE_DELETE_OUT_DELETED_AR_ID) != id)) return -EIO; return 0; } |