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 12 #ifndef EF100_MAE_H 13 #define EF100_MAE_H 14 /* MCDI interface for the ef100 Match-Action Engine */ 15 16 #include <net/devlink.h> 17 #include "net_driver.h" 18 #include "tc.h" 19 #include "mcdi_pcol.h" /* needed for various MC_CMD_MAE_*_NULL defines */ 20 21 int efx_mae_allocate_mport(struct efx_nic *efx, u32 *id, u32 *label); 22 int efx_mae_free_mport(struct efx_nic *efx, u32 id); 23 24 void efx_mae_mport_wire(struct efx_nic *efx, u32 *out); 25 void efx_mae_mport_uplink(struct efx_nic *efx, u32 *out); 26 void efx_mae_mport_vf(struct efx_nic *efx, u32 vf_id, u32 *out); 27 void efx_mae_mport_mport(struct efx_nic *efx, u32 mport_id, u32 *out); 28 29 int efx_mae_lookup_mport(struct efx_nic *efx, u32 selector, u32 *id); 30 31 struct mae_mport_desc { 32 u32 mport_id; 33 u32 flags; 34 u32 caller_flags; /* enum mae_mport_desc_caller_flags */ 35 u32 mport_type; /* MAE_MPORT_DESC_MPORT_TYPE_* */ 36 union { 37 u32 port_idx; /* for mport_type == NET_PORT */ 38 u32 alias_mport_id; /* for mport_type == ALIAS */ 39 struct { /* for mport_type == VNIC */ 40 u32 vnic_client_type; /* MAE_MPORT_DESC_VNIC_CLIENT_TYPE_* */ 41 u32 interface_idx; 42 u16 pf_idx; 43 u16 vf_idx; 44 }; 45 }; 46 struct rhash_head linkage; 47 struct devlink_port dl_port; 48 }; 49 50 int efx_mae_enumerate_mports(struct efx_nic *efx); 51 struct mae_mport_desc *efx_mae_get_mport(struct efx_nic *efx, u32 mport_id); 52 void efx_mae_put_mport(struct efx_nic *efx, struct mae_mport_desc *desc); 53 54 /** 55 * struct efx_mae - MAE information 56 * 57 * @efx: The associated NIC 58 * @mports_ht: m-port descriptions from MC_CMD_MAE_MPORT_READ_JOURNAL 59 */ 60 struct efx_mae { 61 struct efx_nic *efx; 62 struct rhashtable mports_ht; 63 }; 64 65 int efx_mae_start_counters(struct efx_nic *efx, struct efx_rx_queue *rx_queue); 66 int efx_mae_stop_counters(struct efx_nic *efx, struct efx_rx_queue *rx_queue); 67 void efx_mae_counters_grant_credits(struct work_struct *work); 68 69 #define MAE_NUM_FIELDS (MAE_FIELD_ENC_VNET_ID + 1) 70 71 struct mae_caps { 72 u32 match_field_count; 73 u32 action_prios; 74 u8 action_rule_fields[MAE_NUM_FIELDS]; 75 }; 76 77 int efx_mae_get_caps(struct efx_nic *efx, struct mae_caps *caps); 78 79 int efx_mae_match_check_caps(struct efx_nic *efx, 80 const struct efx_tc_match_fields *mask, 81 struct netlink_ext_ack *extack); 82 83 int efx_mae_allocate_counter(struct efx_nic *efx, struct efx_tc_counter *cnt); 84 int efx_mae_free_counter(struct efx_nic *efx, struct efx_tc_counter *cnt); 85 86 int efx_mae_alloc_action_set(struct efx_nic *efx, struct efx_tc_action_set *act); 87 int efx_mae_free_action_set(struct efx_nic *efx, u32 fw_id); 88 89 int efx_mae_alloc_action_set_list(struct efx_nic *efx, 90 struct efx_tc_action_set_list *acts); 91 int efx_mae_free_action_set_list(struct efx_nic *efx, 92 struct efx_tc_action_set_list *acts); 93 94 int efx_mae_insert_rule(struct efx_nic *efx, const struct efx_tc_match *match, 95 u32 prio, u32 acts_id, u32 *id); 96 int efx_mae_delete_rule(struct efx_nic *efx, u32 id); 97 98 int efx_init_mae(struct efx_nic *efx); 99 void efx_fini_mae(struct efx_nic *efx); 100 void efx_mae_remove_mport(void *desc, void *arg); 101 int efx_mae_fw_lookup_mport(struct efx_nic *efx, u32 selector, u32 *id); 102 int efx_mae_lookup_mport(struct efx_nic *efx, u32 vf, u32 *id); 103 #endif /* EF100_MAE_H */ 104