mae.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /****************************************************************************
  3. * Driver for Solarflare network controllers and boards
  4. * Copyright 2019 Solarflare Communications Inc.
  5. * Copyright 2020-2022 Xilinx Inc.
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License version 2 as published
  9. * by the Free Software Foundation, incorporated herein by reference.
  10. */
  11. #ifndef EF100_MAE_H
  12. #define EF100_MAE_H
  13. /* MCDI interface for the ef100 Match-Action Engine */
  14. #include <net/devlink.h>
  15. #include "net_driver.h"
  16. #include "tc.h"
  17. #include "mcdi_pcol.h" /* needed for various MC_CMD_MAE_*_NULL defines */
  18. int efx_mae_allocate_mport(struct efx_nic *efx, u32 *id, u32 *label);
  19. int efx_mae_free_mport(struct efx_nic *efx, u32 id);
  20. void efx_mae_mport_wire(struct efx_nic *efx, u32 *out);
  21. void efx_mae_mport_uplink(struct efx_nic *efx, u32 *out);
  22. void efx_mae_mport_mport(struct efx_nic *efx, u32 mport_id, u32 *out);
  23. int efx_mae_lookup_mport(struct efx_nic *efx, u32 selector, u32 *id);
  24. struct mae_mport_desc {
  25. u32 mport_id;
  26. u32 flags;
  27. u32 caller_flags; /* enum mae_mport_desc_caller_flags */
  28. u32 mport_type; /* MAE_MPORT_DESC_MPORT_TYPE_* */
  29. union {
  30. u32 port_idx; /* for mport_type == NET_PORT */
  31. u32 alias_mport_id; /* for mport_type == ALIAS */
  32. struct { /* for mport_type == VNIC */
  33. u32 vnic_client_type; /* MAE_MPORT_DESC_VNIC_CLIENT_TYPE_* */
  34. u32 interface_idx;
  35. u16 pf_idx;
  36. u16 vf_idx;
  37. };
  38. };
  39. struct rhash_head linkage;
  40. struct devlink_port dl_port;
  41. };
  42. int efx_mae_enumerate_mports(struct efx_nic *efx);
  43. struct mae_mport_desc *efx_mae_get_mport(struct efx_nic *efx, u32 mport_id);
  44. void efx_mae_put_mport(struct efx_nic *efx, struct mae_mport_desc *desc);
  45. /**
  46. * struct efx_mae - MAE information
  47. *
  48. * @efx: The associated NIC
  49. * @mports_ht: m-port descriptions from MC_CMD_MAE_MPORT_READ_JOURNAL
  50. */
  51. struct efx_mae {
  52. struct efx_nic *efx;
  53. struct rhashtable mports_ht;
  54. };
  55. int efx_mae_start_counters(struct efx_nic *efx, struct efx_rx_queue *rx_queue);
  56. int efx_mae_stop_counters(struct efx_nic *efx, struct efx_rx_queue *rx_queue);
  57. void efx_mae_counters_grant_credits(struct work_struct *work);
  58. int efx_mae_get_tables(struct efx_nic *efx);
  59. void efx_mae_free_tables(struct efx_nic *efx);
  60. #define MAE_NUM_FIELDS (MAE_FIELD_ENC_VNET_ID + 1)
  61. struct mae_caps {
  62. u32 match_field_count;
  63. u32 encap_types;
  64. u32 action_prios;
  65. u8 action_rule_fields[MAE_NUM_FIELDS];
  66. u8 outer_rule_fields[MAE_NUM_FIELDS];
  67. };
  68. int efx_mae_get_caps(struct efx_nic *efx, struct mae_caps *caps);
  69. int efx_mae_match_check_caps(struct efx_nic *efx,
  70. const struct efx_tc_match_fields *mask,
  71. struct netlink_ext_ack *extack);
  72. int efx_mae_match_check_caps_lhs(struct efx_nic *efx,
  73. const struct efx_tc_match_fields *mask,
  74. struct netlink_ext_ack *extack);
  75. int efx_mae_check_encap_match_caps(struct efx_nic *efx, bool ipv6,
  76. u8 ip_tos_mask, __be16 udp_sport_mask,
  77. struct netlink_ext_ack *extack);
  78. int efx_mae_check_encap_type_supported(struct efx_nic *efx,
  79. enum efx_encap_type typ);
  80. int efx_mae_allocate_counter(struct efx_nic *efx, struct efx_tc_counter *cnt);
  81. int efx_mae_free_counter(struct efx_nic *efx, struct efx_tc_counter *cnt);
  82. int efx_mae_allocate_encap_md(struct efx_nic *efx,
  83. struct efx_tc_encap_action *encap);
  84. int efx_mae_update_encap_md(struct efx_nic *efx,
  85. struct efx_tc_encap_action *encap);
  86. int efx_mae_free_encap_md(struct efx_nic *efx,
  87. struct efx_tc_encap_action *encap);
  88. int efx_mae_allocate_pedit_mac(struct efx_nic *efx,
  89. struct efx_tc_mac_pedit_action *ped);
  90. void efx_mae_free_pedit_mac(struct efx_nic *efx,
  91. struct efx_tc_mac_pedit_action *ped);
  92. int efx_mae_alloc_action_set(struct efx_nic *efx, struct efx_tc_action_set *act);
  93. int efx_mae_free_action_set(struct efx_nic *efx, u32 fw_id);
  94. int efx_mae_alloc_action_set_list(struct efx_nic *efx,
  95. struct efx_tc_action_set_list *acts);
  96. int efx_mae_free_action_set_list(struct efx_nic *efx,
  97. struct efx_tc_action_set_list *acts);
  98. int efx_mae_register_encap_match(struct efx_nic *efx,
  99. struct efx_tc_encap_match *encap);
  100. int efx_mae_unregister_encap_match(struct efx_nic *efx,
  101. struct efx_tc_encap_match *encap);
  102. int efx_mae_insert_lhs_rule(struct efx_nic *efx, struct efx_tc_lhs_rule *rule,
  103. u32 prio);
  104. int efx_mae_remove_lhs_rule(struct efx_nic *efx, struct efx_tc_lhs_rule *rule);
  105. struct efx_tc_ct_entry; /* see tc_conntrack.h */
  106. int efx_mae_insert_ct(struct efx_nic *efx, struct efx_tc_ct_entry *conn);
  107. int efx_mae_remove_ct(struct efx_nic *efx, struct efx_tc_ct_entry *conn);
  108. int efx_mae_insert_rule(struct efx_nic *efx, const struct efx_tc_match *match,
  109. u32 prio, u32 acts_id, u32 *id);
  110. int efx_mae_update_rule(struct efx_nic *efx, u32 acts_id, u32 id);
  111. int efx_mae_delete_rule(struct efx_nic *efx, u32 id);
  112. int efx_init_mae(struct efx_nic *efx);
  113. void efx_fini_mae(struct efx_nic *efx);
  114. void efx_mae_remove_mport(void *desc, void *arg);
  115. int efx_mae_fw_lookup_mport(struct efx_nic *efx, u32 selector, u32 *id);
  116. int efx_mae_lookup_mport(struct efx_nic *efx, u32 vf, u32 *id);
  117. #endif /* EF100_MAE_H */