1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2014-2023 Broadcom 3 * All rights reserved. 4 */ 5 6 #ifndef _BNXT_HWRM_H_ 7 #define _BNXT_HWRM_H_ 8 9 #include <inttypes.h> 10 #include <stdbool.h> 11 12 struct bnxt; 13 struct bnxt_filter_info; 14 struct bnxt_cp_ring_info; 15 struct hwrm_func_qstats_output; 16 17 /* Convert Bit field location to value */ 18 #define ASYNC_CMPL_EVENT_ID_LINK_STATUS_CHANGE \ 19 (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE) 20 #define ASYNC_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED \ 21 (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED) 22 #define ASYNC_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE \ 23 (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE) 24 #define ASYNC_CMPL_EVENT_ID_LINK_SPEED_CHANGE \ 25 (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CHANGE) 26 #define ASYNC_CMPL_EVENT_ID_RESET_NOTIFY \ 27 (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_RESET_NOTIFY) 28 #define ASYNC_CMPL_EVENT_ID_ERROR_RECOVERY \ 29 (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_ERROR_RECOVERY) 30 #define ASYNC_CMPL_EVENT_ID_PF_DRVR_UNLOAD \ 31 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD - 32)) 32 #define ASYNC_CMPL_EVENT_ID_VF_FLR \ 33 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_FLR - 32)) 34 #define ASYNC_CMPL_EVENT_ID_VF_CFG_CHANGE \ 35 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE - 32)) 36 #define ASYNC_CMPL_EVENT_ID_DBG_NOTIFICATION \ 37 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_DEBUG_NOTIFICATION - 32)) 38 #define ASYNC_CMPL_EVENT_ID_DEFAULT_VNIC_CHANGE \ 39 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_DEFAULT_VNIC_CHANGE - 32)) 40 #define ASYNC_CMPL_EVENT_ID_ECHO_REQUEST \ 41 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_ECHO_REQUEST - 64)) 42 #define ASYNC_CMPL_EVENT_ID_ERROR_REPORT \ 43 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_ERROR_REPORT - 64)) 44 #define ASYNC_CMPL_EVENT_ID_RSS_CHANGE \ 45 (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_RSS_CHANGE - 64)) 46 47 #define HWRM_QUEUE_SERVICE_PROFILE_LOSSY \ 48 HWRM_QUEUE_QPORTCFG_OUTPUT_QUEUE_ID0_SERVICE_PROFILE_LOSSY 49 50 #define HWRM_QUEUE_SERVICE_PROFILE_UNKNOWN \ 51 HWRM_QUEUE_QPORTCFG_OUTPUT_QUEUE_ID0_SERVICE_PROFILE_UNKNOWN 52 53 #define HWRM_QUEUE_SERVICE_PROFILE_TYPE_NIC \ 54 HWRM_QUEUE_QPORTCFG_OUTPUT_QUEUE_ID0_SERVICE_PROFILE_TYPE_NIC 55 56 #define HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MINIMAL_STATIC \ 57 HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESERVATION_STRATEGY_MINIMAL_STATIC 58 #define HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MAXIMAL \ 59 HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESERVATION_STRATEGY_MAXIMAL 60 61 #define HWRM_PORT_PHY_CFG_IN_EN_FORCE_PAM4_LINK_SPEED \ 62 HWRM_PORT_PHY_CFG_INPUT_ENABLES_FORCE_PAM4_LINK_SPEED 63 #define HWRM_PORT_PHY_CFG_IN_EN_AUTO_PAM4_LINK_SPD_MASK \ 64 HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_PAM4_LINK_SPEED_MASK 65 #define HWRM_PORT_PHY_CFG_IN_EN_AUTO_LINK_SPEED_MASK \ 66 HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_LINK_SPEED_MASK 67 #define BACKING_STORE_CFG_V2_IN_FLG_CFG_ALL_DONE \ 68 HWRM_FUNC_BACKING_STORE_CFG_V2_INPUT_FLAGS_BS_CFG_ALL_DONE 69 70 #define HWRM_SPEC_CODE_1_8_4 0x10804 71 #define HWRM_SPEC_CODE_1_9_0 0x10900 72 #define HWRM_SPEC_CODE_1_9_2 0x10902 73 74 #define FUNC_BACKING_STORE_CFG_INPUT_DFLT_ENABLES \ 75 (HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_QP | \ 76 HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_SRQ | \ 77 HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_CQ | \ 78 HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_VNIC | \ 79 HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_STAT) 80 81 #define GET_TX_QUEUE_INFO(x) \ 82 bp->tx_cos_queue[x].id = resp->queue_id##x; \ 83 bp->tx_cos_queue[x].profile = \ 84 resp->queue_id##x##_service_profile 85 86 #define GET_TX_QUEUE_TYPE_INFO(x) \ 87 bp->tx_cos_queue[x].profile_type = \ 88 resp->queue_id##x##_service_profile_type 89 90 #define GET_RX_QUEUE_INFO(x) \ 91 bp->rx_cos_queue[x].id = resp->queue_id##x; \ 92 bp->rx_cos_queue[x].profile = \ 93 resp->queue_id##x##_service_profile 94 95 int bnxt_hwrm_tf_message_direct(struct bnxt *bp, 96 bool use_kong_mb, 97 uint16_t msg_type, 98 void *msg, 99 uint32_t msg_len, 100 void *resp_msg, 101 uint32_t resp_len); 102 103 #define CFA_COUNTER_CFG_IN_COUNTER_TYPE_FC \ 104 HWRM_CFA_COUNTER_CFG_INPUT_COUNTER_TYPE_FC 105 106 enum bnxt_flow_dir { 107 BNXT_DIR_RX = 0, 108 BNXT_DIR_TX, 109 BNXT_DIR_LOOPBACK, 110 BNXT_DIR_MAX 111 }; 112 113 struct bnxt_pf_resource_info { 114 uint16_t num_rsscos_ctxs; 115 uint16_t num_stat_ctxs; 116 uint16_t num_tx_rings; 117 uint16_t num_rx_rings; 118 uint16_t num_cp_rings; 119 uint16_t num_l2_ctxs; 120 uint16_t num_nq_rings; 121 uint16_t num_vnics; 122 uint32_t num_hw_ring_grps; 123 }; 124 125 #define BNXT_CTX_VAL_INVAL 0xFFFF 126 #define BNXT_RSS_CTX_IDX_INVALID 0xFFFF 127 128 #define BNXT_TUNNELED_OFFLOADS_CAP_VXLAN_EN(bp) \ 129 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_VXLAN)) 130 #define BNXT_TUNNELED_OFFLOADS_CAP_NGE_EN(bp) \ 131 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_NGE)) 132 #define BNXT_TUNNELED_OFFLOADS_CAP_GRE_EN(bp) \ 133 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_GRE)) 134 #define BNXT_TUNNELED_OFFLOADS_CAP_IPINIP_EN(bp) \ 135 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_IPINIP)) 136 137 /* 138 * If the device supports VXLAN, GRE, IPIP and GENEVE tunnel parsing, then report 139 * RTE_ETH_RX_OFFLOAD_OUTER_IPV4_CKSUM, RTE_ETH_RX_OFFLOAD_OUTER_UDP_CKSUM and 140 * RTE_ETH_TX_OFFLOAD_OUTER_IPV4_CKSUM in the Rx/Tx offload capabilities of the device. 141 */ 142 #define BNXT_TUNNELED_OFFLOADS_CAP_ALL_EN(bp) \ 143 (BNXT_TUNNELED_OFFLOADS_CAP_VXLAN_EN(bp) && \ 144 BNXT_TUNNELED_OFFLOADS_CAP_NGE_EN(bp) && \ 145 BNXT_TUNNELED_OFFLOADS_CAP_GRE_EN(bp) && \ 146 BNXT_TUNNELED_OFFLOADS_CAP_IPINIP_EN(bp)) 147 148 #define BNXT_SIG_MODE_NRZ HWRM_PORT_PHY_QCFG_OUTPUT_SIGNAL_MODE_NRZ 149 #define BNXT_SIG_MODE_PAM4 HWRM_PORT_PHY_QCFG_OUTPUT_SIGNAL_MODE_PAM4 150 #define BNXT_SIG_MODE_PAM4_112 HWRM_PORT_PHY_QCFG_OUTPUT_SIGNAL_MODE_PAM4_112 151 152 #define BNXT_TUNNELED_OFFLOADS_CAP_VXLAN_EN(bp) \ 153 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_VXLAN)) 154 #define BNXT_TUNNELED_OFFLOADS_CAP_NGE_EN(bp) \ 155 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_NGE)) 156 #define BNXT_TUNNELED_OFFLOADS_CAP_GRE_EN(bp) \ 157 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_GRE)) 158 #define BNXT_TUNNELED_OFFLOADS_CAP_IPINIP_EN(bp) \ 159 (!((bp)->tunnel_disable_flag & HWRM_FUNC_QCAPS_OUTPUT_TUNNEL_DISABLE_FLAG_DISABLE_IPINIP)) 160 161 /* 162 * If the device supports VXLAN, GRE, IPIP and GENEVE tunnel parsing, then report 163 * RTE_ETH_RX_OFFLOAD_OUTER_IPV4_CKSUM, RTE_ETH_RX_OFFLOAD_OUTER_UDP_CKSUM and 164 * RTE_ETH_TX_OFFLOAD_OUTER_IPV4_CKSUM in the Rx/Tx offload capabilities of the device. 165 */ 166 #define BNXT_TUNNELED_OFFLOADS_CAP_ALL_EN(bp) \ 167 (BNXT_TUNNELED_OFFLOADS_CAP_VXLAN_EN(bp) && \ 168 BNXT_TUNNELED_OFFLOADS_CAP_NGE_EN(bp) && \ 169 BNXT_TUNNELED_OFFLOADS_CAP_GRE_EN(bp) && \ 170 BNXT_TUNNELED_OFFLOADS_CAP_IPINIP_EN(bp)) 171 172 /* Is this tpa_v2 and P7 173 * Just add P5 to this once we validate on Thor FW 174 */ 175 #define BNXT_TPA_V2_P7(bp) ((bp)->max_tpa_v2 && BNXT_CHIP_P7(bp)) 176 /* Get the size of the stat context size for DMA from HW */ 177 #define BNXT_HWRM_CTX_GET_SIZE(bp) (BNXT_TPA_V2_P7(bp) ? \ 178 sizeof(struct ctx_hw_stats_ext) : \ 179 sizeof(struct ctx_hw_stats)) 180 181 int bnxt_hwrm_cfa_l2_clear_rx_mask(struct bnxt *bp, 182 struct bnxt_vnic_info *vnic); 183 int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, struct bnxt_vnic_info *vnic, 184 uint16_t vlan_count, 185 struct bnxt_vlan_table_entry *vlan_table); 186 int bnxt_hwrm_cfa_vlan_antispoof_cfg(struct bnxt *bp, uint16_t fid, 187 uint16_t vlan_count, 188 struct bnxt_vlan_antispoof_table_entry *vlan_table); 189 int bnxt_hwrm_clear_l2_filter(struct bnxt *bp, 190 struct bnxt_filter_info *filter); 191 int bnxt_hwrm_set_l2_filter(struct bnxt *bp, 192 uint16_t dst_id, 193 struct bnxt_filter_info *filter); 194 int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, uint16_t target_id, 195 void *encaped, size_t ec_size); 196 int bnxt_hwrm_reject_fwd_resp(struct bnxt *bp, uint16_t target_id, 197 void *encaped, size_t ec_size); 198 int bnxt_hwrm_fwd_resp(struct bnxt *bp, uint16_t target_id, 199 void *encaped, size_t ec_size, 200 uint64_t encap_resp_addr, uint16_t cmpl_ring); 201 202 int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp, int num_vfs); 203 int bnxt_hwrm_func_buf_unrgtr(struct bnxt *bp); 204 int bnxt_hwrm_func_driver_register(struct bnxt *bp); 205 int bnxt_hwrm_func_qcaps(struct bnxt *bp); 206 int bnxt_hwrm_func_reset(struct bnxt *bp); 207 int bnxt_hwrm_func_driver_unregister(struct bnxt *bp); 208 int bnxt_hwrm_func_qstats(struct bnxt *bp, uint16_t fid, 209 struct rte_eth_stats *stats, 210 struct hwrm_func_qstats_output *func_qstats); 211 int bnxt_hwrm_func_qstats_tx_drop(struct bnxt *bp, uint16_t fid, 212 uint64_t *dropped); 213 int bnxt_hwrm_func_clr_stats(struct bnxt *bp, uint16_t fid); 214 int bnxt_hwrm_func_cfg_def_cp(struct bnxt *bp); 215 int bnxt_hwrm_vf_func_cfg_def_cp(struct bnxt *bp); 216 217 int bnxt_hwrm_queue_qportcfg(struct bnxt *bp); 218 219 int bnxt_hwrm_set_async_event_cr(struct bnxt *bp); 220 int bnxt_hwrm_ring_alloc(struct bnxt *bp, 221 struct bnxt_ring *ring, 222 uint32_t ring_type, uint32_t map_index, 223 uint32_t stats_ctx_id, uint32_t cmpl_ring_id, 224 uint16_t tx_cosq_id); 225 int bnxt_hwrm_ring_free(struct bnxt *bp, 226 struct bnxt_ring *ring, uint32_t ring_type, 227 uint16_t cp_ring_id); 228 int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp, unsigned int idx); 229 int bnxt_hwrm_ring_grp_free(struct bnxt *bp, unsigned int idx); 230 231 int bnxt_hwrm_stat_clear(struct bnxt *bp, struct bnxt_cp_ring_info *cpr); 232 int bnxt_hwrm_ver_get(struct bnxt *bp, uint32_t timeout); 233 234 int bnxt_hwrm_vnic_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic); 235 int bnxt_hwrm_vnic_cfg(struct bnxt *bp, struct bnxt_vnic_info *vnic); 236 int bnxt_hwrm_vnic_qcfg(struct bnxt *bp, struct bnxt_vnic_info *vnic, 237 int16_t fw_vf_id); 238 int bnxt_hwrm_vnic_qcaps(struct bnxt *bp); 239 int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic, 240 uint16_t ctx_idx); 241 int bnxt_hwrm_vnic_ctx_free(struct bnxt *bp, struct bnxt_vnic_info *vnic); 242 int bnxt_hwrm_vnic_free(struct bnxt *bp, struct bnxt_vnic_info *vnic); 243 int bnxt_hwrm_vnic_rss_cfg(struct bnxt *bp, 244 struct bnxt_vnic_info *vnic); 245 int bnxt_hwrm_vnic_plcmode_cfg(struct bnxt *bp, 246 struct bnxt_vnic_info *vnic); 247 int bnxt_hwrm_vnic_tpa_cfg(struct bnxt *bp, 248 struct bnxt_vnic_info *vnic, bool enable); 249 int bnxt_hwrm_vnic_update(struct bnxt *bp, 250 struct bnxt_vnic_info *vnic, 251 uint8_t valid); 252 253 int bnxt_clear_all_hwrm_stat_ctxs(struct bnxt *bp); 254 int bnxt_alloc_all_hwrm_ring_grps(struct bnxt *bp); 255 void bnxt_free_cp_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr); 256 void bnxt_free_nq_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr); 257 int bnxt_set_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic); 258 void bnxt_free_all_hwrm_resources(struct bnxt *bp); 259 void bnxt_free_hwrm_resources(struct bnxt *bp); 260 void bnxt_free_hwrm_rx_ring(struct bnxt *bp, int queue_index); 261 int bnxt_alloc_hwrm_resources(struct bnxt *bp); 262 int bnxt_get_hwrm_link_config(struct bnxt *bp, struct rte_eth_link *link); 263 int bnxt_set_hwrm_link_config(struct bnxt *bp, bool link_up); 264 int bnxt_hwrm_func_qcfg(struct bnxt *bp, uint16_t *mtu); 265 int bnxt_hwrm_func_resc_qcaps(struct bnxt *bp); 266 int bnxt_hwrm_func_reserve_vf_resc(struct bnxt *bp, bool test); 267 int bnxt_hwrm_allocate_pf_only(struct bnxt *bp); 268 int bnxt_hwrm_allocate_vfs(struct bnxt *bp, int num_vfs); 269 int bnxt_hwrm_func_vf_mac(struct bnxt *bp, uint16_t vf, 270 const uint8_t *mac_addr); 271 int bnxt_hwrm_pf_evb_mode(struct bnxt *bp); 272 int bnxt_hwrm_func_bw_cfg(struct bnxt *bp, uint16_t vf, 273 uint16_t max_bw, uint16_t enables); 274 int bnxt_hwrm_set_vf_vlan(struct bnxt *bp, int vf); 275 int bnxt_hwrm_func_qcfg_vf_default_mac(struct bnxt *bp, uint16_t vf, 276 struct rte_ether_addr *mac); 277 int bnxt_hwrm_func_qcfg_current_vf_vlan(struct bnxt *bp, int vf); 278 int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, uint16_t port, 279 uint8_t tunnel_type); 280 int bnxt_hwrm_tunnel_upar_id_get(struct bnxt *bp, uint8_t *upar_id, 281 uint8_t tunnel_type); 282 int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, uint16_t port, 283 uint8_t tunnel_type); 284 int bnxt_hwrm_set_default_vlan(struct bnxt *bp, int vf, uint8_t is_vf); 285 int bnxt_hwrm_port_qstats(struct bnxt *bp); 286 int bnxt_hwrm_port_clr_stats(struct bnxt *bp); 287 int bnxt_hwrm_port_led_cfg(struct bnxt *bp, bool led_on); 288 int bnxt_hwrm_port_led_qcaps(struct bnxt *bp); 289 int bnxt_hwrm_port_mac_qcfg(struct bnxt *bp); 290 int bnxt_hwrm_func_cfg_vf_set_flags(struct bnxt *bp, uint16_t vf, 291 uint32_t flags); 292 void vf_vnic_set_rxmask_cb(struct bnxt_vnic_info *vnic, void *flagp); 293 int bnxt_set_rx_mask_no_vlan(struct bnxt *bp, struct bnxt_vnic_info *vnic); 294 int bnxt_vf_vnic_count(struct bnxt *bp, uint16_t vf); 295 int bnxt_hwrm_func_vf_vnic_query_and_config(struct bnxt *bp, uint16_t vf, 296 void (*vnic_cb)(struct bnxt_vnic_info *, void *), void *cbdata, 297 int (*hwrm_cb)(struct bnxt *bp, struct bnxt_vnic_info *vnic)); 298 int bnxt_hwrm_func_cfg_vf_set_vlan_anti_spoof(struct bnxt *bp, uint16_t vf, 299 bool on); 300 int bnxt_hwrm_func_qcfg_vf_dflt_vnic_id(struct bnxt *bp, int vf); 301 int bnxt_hwrm_set_em_filter(struct bnxt *bp, uint16_t dst_id, 302 struct bnxt_filter_info *filter); 303 int bnxt_hwrm_clear_em_filter(struct bnxt *bp, struct bnxt_filter_info *filter); 304 305 int bnxt_hwrm_set_ntuple_filter(struct bnxt *bp, uint16_t dst_id, 306 struct bnxt_filter_info *filter); 307 int bnxt_hwrm_clear_ntuple_filter(struct bnxt *bp, 308 struct bnxt_filter_info *filter); 309 int bnxt_get_nvram_directory(struct bnxt *bp, uint32_t len, uint8_t *data); 310 int bnxt_hwrm_nvm_get_dir_info(struct bnxt *bp, uint32_t *entries, 311 uint32_t *length); 312 int bnxt_hwrm_get_nvram_item(struct bnxt *bp, uint32_t index, 313 uint32_t offset, uint32_t length, 314 uint8_t *data); 315 int bnxt_hwrm_erase_nvram_directory(struct bnxt *bp, uint8_t index); 316 int bnxt_hwrm_flash_nvram(struct bnxt *bp, uint16_t dir_type, 317 uint16_t dir_ordinal, uint16_t dir_ext, 318 uint16_t dir_attr, const uint8_t *data, 319 size_t data_len); 320 int bnxt_hwrm_ptp_cfg(struct bnxt *bp); 321 int bnxt_vnic_rss_configure(struct bnxt *bp, 322 struct bnxt_vnic_info *vnic); 323 int bnxt_hwrm_set_ring_coal(struct bnxt *bp, 324 struct bnxt_coal *coal, uint16_t ring_id); 325 int bnxt_hwrm_check_vf_rings(struct bnxt *bp); 326 int bnxt_hwrm_ext_port_qstats(struct bnxt *bp); 327 int bnxt_hwrm_func_backing_store_qcaps(struct bnxt *bp); 328 int bnxt_hwrm_func_backing_store_cfg(struct bnxt *bp, uint32_t enables); 329 int bnxt_alloc_ctx_mem(struct bnxt *bp); 330 int bnxt_hwrm_tunnel_redirect(struct bnxt *bp, uint8_t type); 331 int bnxt_hwrm_tunnel_redirect_free(struct bnxt *bp, uint8_t type); 332 int bnxt_hwrm_tunnel_redirect_query(struct bnxt *bp, uint32_t *type); 333 int bnxt_hwrm_tunnel_redirect_info(struct bnxt *bp, uint8_t tun_type, 334 uint16_t *dst_fid); 335 int bnxt_hwrm_set_mac(struct bnxt *bp); 336 int bnxt_hwrm_if_change(struct bnxt *bp, bool state); 337 int bnxt_hwrm_error_recovery_qcfg(struct bnxt *bp); 338 int bnxt_hwrm_fw_reset(struct bnxt *bp); 339 int bnxt_hwrm_port_ts_query(struct bnxt *bp, uint8_t path, 340 uint64_t *timestamp); 341 int bnxt_hwrm_cfa_counter_qcaps(struct bnxt *bp, uint16_t *max_fc); 342 int bnxt_hwrm_ctx_rgtr(struct bnxt *bp, rte_iova_t dma_addr, uint16_t *ctx_id); 343 int bnxt_hwrm_ctx_unrgtr(struct bnxt *bp, uint16_t ctx_id); 344 int bnxt_hwrm_cfa_counter_cfg(struct bnxt *bp, enum bnxt_flow_dir dir, 345 uint16_t cntr, uint16_t ctx_id, 346 uint32_t num_entries, bool enable); 347 int bnxt_hwrm_cfa_counter_qstats(struct bnxt *bp, 348 enum bnxt_flow_dir dir, 349 uint16_t cntr, 350 uint16_t num_entries); 351 int bnxt_hwrm_get_dflt_vnic_svif(struct bnxt *bp, uint16_t fid, 352 uint16_t *vnic_id, uint16_t *svif); 353 int bnxt_hwrm_parent_pf_qcfg(struct bnxt *bp); 354 int bnxt_hwrm_port_phy_qcaps(struct bnxt *bp); 355 int bnxt_clear_one_vnic_filter(struct bnxt *bp, 356 struct bnxt_filter_info *filter); 357 void bnxt_free_vf_info(struct bnxt *bp); 358 int bnxt_hwrm_first_vf_id_query(struct bnxt *bp, uint16_t fid, 359 uint16_t *first_vf_id); 360 int bnxt_hwrm_cfa_pair_exists(struct bnxt *bp, struct bnxt_representor *rep_bp); 361 int bnxt_hwrm_cfa_pair_alloc(struct bnxt *bp, struct bnxt_representor *rep); 362 int bnxt_hwrm_cfa_pair_free(struct bnxt *bp, struct bnxt_representor *rep); 363 int bnxt_hwrm_fw_echo_reply(struct bnxt *bp, uint32_t echo_req_data1, 364 uint32_t echo_req_data2); 365 int bnxt_hwrm_poll_ver_get(struct bnxt *bp); 366 int bnxt_hwrm_rx_ring_reset(struct bnxt *bp, int queue_index); 367 int bnxt_hwrm_ring_stats(struct bnxt *bp, uint32_t cid, int idx, 368 struct bnxt_ring_stats *stats, bool rx); 369 int bnxt_hwrm_ring_stats_ext(struct bnxt *bp, uint32_t cid, int idx, 370 struct bnxt_ring_stats_ext *ring_stats, bool rx); 371 int bnxt_hwrm_read_sfp_module_eeprom_info(struct bnxt *bp, uint16_t i2c_addr, 372 uint16_t page_number, uint16_t start_addr, 373 uint16_t data_length, uint8_t *buf); 374 int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp, struct bnxt_cp_ring_info *cpr); 375 void bnxt_free_hwrm_tx_ring(struct bnxt *bp, int queue_index); 376 int bnxt_alloc_hwrm_tx_ring(struct bnxt *bp, int queue_index); 377 int bnxt_hwrm_config_host_mtu(struct bnxt *bp); 378 int bnxt_hwrm_func_cfg_mpc(struct bnxt *bp, 379 uint8_t mpc_chnls_msk, 380 bool enable); 381 int bnxt_hwrm_stat_ctx_free(struct bnxt *bp, struct bnxt_cp_ring_info *cpr); 382 int bnxt_vnic_rss_clear_p5(struct bnxt *bp, struct bnxt_vnic_info *vnic); 383 int bnxt_vnic_rss_configure_p5(struct bnxt *bp, struct bnxt_vnic_info *vnic); 384 int bnxt_hwrm_func_backing_store_qcaps_v2(struct bnxt *bp); 385 int bnxt_hwrm_func_backing_store_cfg_v2(struct bnxt *bp, 386 struct bnxt_ctx_mem *ctxm); 387 int bnxt_hwrm_func_backing_store_types_count(struct bnxt *bp); 388 int bnxt_hwrm_func_backing_store_ctx_alloc(struct bnxt *bp, uint16_t types); 389 int bnxt_alloc_ctx_pg_tbls(struct bnxt *bp); 390 int bnxt_hwrm_tf_oem_cmd(struct bnxt *bp, 391 uint32_t *in, 392 uint16_t in_len, 393 uint32_t *out, 394 uint16_t out_len); 395 int bnxt_hwrm_release_afm_func(struct bnxt *bp, 396 uint16_t fid, 397 uint16_t rfid, 398 uint8_t type, 399 uint32_t flags); 400 #endif 401