net/bnxt: handle reset notify async event from FW
[dpdk.git] / drivers / net / bnxt / bnxt_hwrm.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2018 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
16 #define HWRM_SEQ_ID_INVALID -1U
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_RESET_NOTIFY \
25         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_RESET_NOTIFY)
26 #define ASYNC_CMPL_EVENT_ID_PF_DRVR_UNLOAD      \
27         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD - 32))
28 #define ASYNC_CMPL_EVENT_ID_VF_CFG_CHANGE       \
29         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE - 32))
30
31 #define HWRM_QUEUE_SERVICE_PROFILE_LOSSY \
32         HWRM_QUEUE_QPORTCFG_OUTPUT_QUEUE_ID0_SERVICE_PROFILE_LOSSY
33
34 #define HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MINIMAL_STATIC \
35         HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESERVATION_STRATEGY_MINIMAL_STATIC
36
37 #define HWRM_SPEC_CODE_1_8_4            0x10804
38 #define HWRM_SPEC_CODE_1_9_0            0x10900
39 #define HWRM_SPEC_CODE_1_9_2            0x10902
40
41 #define FUNC_BACKING_STORE_CFG_INPUT_DFLT_ENABLES              \
42         (HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_QP |        \
43         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_SRQ |        \
44         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_CQ |         \
45         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_VNIC |       \
46         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_STAT)
47
48 int bnxt_hwrm_cfa_l2_clear_rx_mask(struct bnxt *bp,
49                                    struct bnxt_vnic_info *vnic);
50 int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, struct bnxt_vnic_info *vnic,
51                                  uint16_t vlan_count,
52                                  struct bnxt_vlan_table_entry *vlan_table);
53 int bnxt_hwrm_cfa_vlan_antispoof_cfg(struct bnxt *bp, uint16_t fid,
54                         uint16_t vlan_count,
55                         struct bnxt_vlan_antispoof_table_entry *vlan_table);
56 int bnxt_hwrm_clear_l2_filter(struct bnxt *bp,
57                            struct bnxt_filter_info *filter);
58 int bnxt_hwrm_set_l2_filter(struct bnxt *bp,
59                          uint16_t dst_id,
60                          struct bnxt_filter_info *filter);
61 int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, uint16_t target_id,
62                             void *encaped, size_t ec_size);
63 int bnxt_hwrm_reject_fwd_resp(struct bnxt *bp, uint16_t target_id,
64                               void *encaped, size_t ec_size);
65
66 int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp);
67 int bnxt_hwrm_func_buf_unrgtr(struct bnxt *bp);
68 int bnxt_hwrm_func_driver_register(struct bnxt *bp);
69 int bnxt_hwrm_func_qcaps(struct bnxt *bp);
70 int bnxt_hwrm_func_reset(struct bnxt *bp);
71 int bnxt_hwrm_func_driver_unregister(struct bnxt *bp, uint32_t flags);
72 int bnxt_hwrm_func_qstats(struct bnxt *bp, uint16_t fid,
73                           struct rte_eth_stats *stats);
74 int bnxt_hwrm_func_qstats_tx_drop(struct bnxt *bp, uint16_t fid,
75                                   uint64_t *dropped);
76 int bnxt_hwrm_func_clr_stats(struct bnxt *bp, uint16_t fid);
77 int bnxt_hwrm_func_cfg_def_cp(struct bnxt *bp);
78 int bnxt_hwrm_vf_func_cfg_def_cp(struct bnxt *bp);
79
80 int bnxt_hwrm_queue_qportcfg(struct bnxt *bp);
81
82 int bnxt_hwrm_set_async_event_cr(struct bnxt *bp);
83 int bnxt_hwrm_ring_alloc(struct bnxt *bp,
84                          struct bnxt_ring *ring,
85                          uint32_t ring_type, uint32_t map_index,
86                          uint32_t stats_ctx_id, uint32_t cmpl_ring_id);
87 int bnxt_hwrm_ring_free(struct bnxt *bp,
88                         struct bnxt_ring *ring, uint32_t ring_type);
89 int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp, unsigned int idx);
90 int bnxt_hwrm_ring_grp_free(struct bnxt *bp, unsigned int idx);
91
92 int bnxt_hwrm_stat_clear(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
93 int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp,
94                              struct bnxt_cp_ring_info *cpr, unsigned int idx);
95 int bnxt_hwrm_stat_ctx_free(struct bnxt *bp,
96                             struct bnxt_cp_ring_info *cpr, unsigned int idx);
97 int bnxt_hwrm_ctx_qstats(struct bnxt *bp, uint32_t cid, int idx,
98                          struct rte_eth_stats *stats, uint8_t rx);
99
100 int bnxt_hwrm_ver_get(struct bnxt *bp);
101
102 int bnxt_hwrm_vnic_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic);
103 int bnxt_hwrm_vnic_cfg(struct bnxt *bp, struct bnxt_vnic_info *vnic);
104 int bnxt_hwrm_vnic_qcfg(struct bnxt *bp, struct bnxt_vnic_info *vnic,
105                                 int16_t fw_vf_id);
106 int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic,
107                              uint16_t ctx_idx);
108 int bnxt_hwrm_vnic_ctx_free(struct bnxt *bp, struct bnxt_vnic_info *vnic,
109                             uint16_t ctx_idx);
110 int bnxt_hwrm_vnic_free(struct bnxt *bp, struct bnxt_vnic_info *vnic);
111 int bnxt_hwrm_vnic_rss_cfg(struct bnxt *bp,
112                            struct bnxt_vnic_info *vnic);
113 int bnxt_hwrm_vnic_plcmode_cfg(struct bnxt *bp,
114                                 struct bnxt_vnic_info *vnic);
115 int bnxt_hwrm_vnic_tpa_cfg(struct bnxt *bp,
116                            struct bnxt_vnic_info *vnic, bool enable);
117
118 int bnxt_alloc_all_hwrm_stat_ctxs(struct bnxt *bp);
119 int bnxt_clear_all_hwrm_stat_ctxs(struct bnxt *bp);
120 int bnxt_free_all_hwrm_stat_ctxs(struct bnxt *bp);
121 int bnxt_free_all_hwrm_rings(struct bnxt *bp);
122 int bnxt_free_all_hwrm_ring_grps(struct bnxt *bp);
123 int bnxt_alloc_all_hwrm_ring_grps(struct bnxt *bp);
124 void bnxt_free_cp_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
125 void bnxt_free_nq_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
126 int bnxt_set_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic);
127 int bnxt_clear_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic);
128 void bnxt_free_all_hwrm_resources(struct bnxt *bp);
129 void bnxt_free_hwrm_resources(struct bnxt *bp);
130 void bnxt_free_hwrm_rx_ring(struct bnxt *bp, int queue_index);
131 int bnxt_alloc_hwrm_resources(struct bnxt *bp);
132 int bnxt_get_hwrm_link_config(struct bnxt *bp, struct rte_eth_link *link);
133 int bnxt_set_hwrm_link_config(struct bnxt *bp, bool link_up);
134 int bnxt_hwrm_func_qcfg(struct bnxt *bp, uint16_t *mtu);
135 int bnxt_hwrm_func_resc_qcaps(struct bnxt *bp);
136 int bnxt_hwrm_func_reserve_vf_resc(struct bnxt *bp, bool test);
137 int bnxt_hwrm_allocate_pf_only(struct bnxt *bp);
138 int bnxt_hwrm_allocate_vfs(struct bnxt *bp, int num_vfs);
139 int bnxt_hwrm_func_vf_mac(struct bnxt *bp, uint16_t vf,
140                           const uint8_t *mac_addr);
141 int bnxt_hwrm_pf_evb_mode(struct bnxt *bp);
142 int bnxt_hwrm_func_bw_cfg(struct bnxt *bp, uint16_t vf,
143                         uint16_t max_bw, uint16_t enables);
144 int bnxt_hwrm_set_vf_vlan(struct bnxt *bp, int vf);
145 int bnxt_hwrm_func_qcfg_vf_default_mac(struct bnxt *bp, uint16_t vf,
146                                        struct rte_ether_addr *mac);
147 int bnxt_hwrm_func_qcfg_current_vf_vlan(struct bnxt *bp, int vf);
148 int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, uint16_t port,
149                                 uint8_t tunnel_type);
150 int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, uint16_t port,
151                                 uint8_t tunnel_type);
152 void bnxt_free_tunnel_ports(struct bnxt *bp);
153 int bnxt_hwrm_set_default_vlan(struct bnxt *bp, int vf, uint8_t is_vf);
154 int bnxt_hwrm_port_qstats(struct bnxt *bp);
155 int bnxt_hwrm_port_clr_stats(struct bnxt *bp);
156 int bnxt_hwrm_port_led_cfg(struct bnxt *bp, bool led_on);
157 int bnxt_hwrm_port_led_qcaps(struct bnxt *bp);
158 int bnxt_hwrm_func_cfg_vf_set_flags(struct bnxt *bp, uint16_t vf,
159                                         uint32_t flags);
160 void vf_vnic_set_rxmask_cb(struct bnxt_vnic_info *vnic, void *flagp);
161 int bnxt_set_rx_mask_no_vlan(struct bnxt *bp, struct bnxt_vnic_info *vnic);
162 int bnxt_vf_vnic_count(struct bnxt *bp, uint16_t vf);
163 int bnxt_hwrm_func_vf_vnic_query_and_config(struct bnxt *bp, uint16_t vf,
164         void (*vnic_cb)(struct bnxt_vnic_info *, void *), void *cbdata,
165         int (*hwrm_cb)(struct bnxt *bp, struct bnxt_vnic_info *vnic));
166 int bnxt_hwrm_func_cfg_vf_set_vlan_anti_spoof(struct bnxt *bp, uint16_t vf,
167                                               bool on);
168 int bnxt_hwrm_func_qcfg_vf_dflt_vnic_id(struct bnxt *bp, int vf);
169 int bnxt_hwrm_set_em_filter(struct bnxt *bp, uint16_t dst_id,
170                         struct bnxt_filter_info *filter);
171 int bnxt_hwrm_clear_em_filter(struct bnxt *bp, struct bnxt_filter_info *filter);
172
173 int bnxt_hwrm_set_ntuple_filter(struct bnxt *bp, uint16_t dst_id,
174                          struct bnxt_filter_info *filter);
175 int bnxt_hwrm_clear_ntuple_filter(struct bnxt *bp,
176                                 struct bnxt_filter_info *filter);
177 int bnxt_get_nvram_directory(struct bnxt *bp, uint32_t len, uint8_t *data);
178 int bnxt_hwrm_nvm_get_dir_info(struct bnxt *bp, uint32_t *entries,
179                                uint32_t *length);
180 int bnxt_hwrm_get_nvram_item(struct bnxt *bp, uint32_t index,
181                              uint32_t offset, uint32_t length,
182                              uint8_t *data);
183 int bnxt_hwrm_erase_nvram_directory(struct bnxt *bp, uint8_t index);
184 int bnxt_hwrm_flash_nvram(struct bnxt *bp, uint16_t dir_type,
185                           uint16_t dir_ordinal, uint16_t dir_ext,
186                           uint16_t dir_attr, const uint8_t *data,
187                           size_t data_len);
188 int bnxt_hwrm_ptp_cfg(struct bnxt *bp);
189 int bnxt_vnic_rss_configure(struct bnxt *bp,
190                             struct bnxt_vnic_info *vnic);
191 int bnxt_hwrm_set_ring_coal(struct bnxt *bp,
192                         struct bnxt_coal *coal, uint16_t ring_id);
193 int bnxt_hwrm_check_vf_rings(struct bnxt *bp);
194 int bnxt_hwrm_ext_port_qstats(struct bnxt *bp);
195 int bnxt_hwrm_func_backing_store_qcaps(struct bnxt *bp);
196 int bnxt_hwrm_func_backing_store_cfg(struct bnxt *bp, uint32_t enables);
197 int bnxt_alloc_ctx_mem(struct bnxt *bp);
198 int bnxt_hwrm_tunnel_redirect(struct bnxt *bp, uint8_t type);
199 int bnxt_hwrm_tunnel_redirect_free(struct bnxt *bp, uint8_t type);
200 int bnxt_hwrm_tunnel_redirect_query(struct bnxt *bp, uint32_t *type);
201 int bnxt_hwrm_tunnel_redirect_info(struct bnxt *bp, uint8_t tun_type,
202                                    uint16_t *dst_fid);
203 int bnxt_hwrm_set_mac(struct bnxt *bp);
204 #endif