net/bnxt: support 200G PAM4 link
[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 struct hwrm_func_qstats_output;
16
17 #define HWRM_SEQ_ID_INVALID -1U
18 /* Convert Bit field location to value */
19 #define ASYNC_CMPL_EVENT_ID_LINK_STATUS_CHANGE  \
20         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE)
21 #define ASYNC_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED       \
22         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED)
23 #define ASYNC_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE       \
24         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE)
25 #define ASYNC_CMPL_EVENT_ID_LINK_SPEED_CHANGE \
26         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CHANGE)
27 #define ASYNC_CMPL_EVENT_ID_RESET_NOTIFY \
28         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_RESET_NOTIFY)
29 #define ASYNC_CMPL_EVENT_ID_ERROR_RECOVERY \
30         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_ERROR_RECOVERY)
31 #define ASYNC_CMPL_EVENT_ID_PF_DRVR_UNLOAD      \
32         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD - 32))
33 #define ASYNC_CMPL_EVENT_ID_VF_CFG_CHANGE       \
34         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE - 32))
35 #define ASYNC_CMPL_EVENT_ID_DBG_NOTIFICATION    \
36         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_DEBUG_NOTIFICATION - 32))
37 #define ASYNC_CMPL_EVENT_ID_DEFAULT_VNIC_CHANGE \
38         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_DEFAULT_VNIC_CHANGE - 32))
39
40 #define HWRM_QUEUE_SERVICE_PROFILE_LOSSY \
41         HWRM_QUEUE_QPORTCFG_OUTPUT_QUEUE_ID0_SERVICE_PROFILE_LOSSY
42
43 #define HWRM_QUEUE_SERVICE_PROFILE_UNKNOWN \
44         HWRM_QUEUE_QPORTCFG_OUTPUT_QUEUE_ID0_SERVICE_PROFILE_UNKNOWN
45
46 #define HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MINIMAL_STATIC \
47         HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESERVATION_STRATEGY_MINIMAL_STATIC
48 #define HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESV_STRATEGY_MAXIMAL \
49         HWRM_FUNC_RESOURCE_QCAPS_OUTPUT_VF_RESERVATION_STRATEGY_MAXIMAL
50
51 #define HWRM_PORT_PHY_CFG_IN_EN_FORCE_PAM4_LINK_SPEED \
52         HWRM_PORT_PHY_CFG_INPUT_ENABLES_FORCE_PAM4_LINK_SPEED
53 #define HWRM_PORT_PHY_CFG_IN_EN_AUTO_PAM4_LINK_SPD_MASK \
54         HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_PAM4_LINK_SPEED_MASK
55 #define HWRM_PORT_PHY_CFG_IN_EN_AUTO_LINK_SPEED_MASK \
56         HWRM_PORT_PHY_CFG_INPUT_ENABLES_AUTO_LINK_SPEED_MASK
57
58 #define HWRM_CFA_ADV_FLOW_MGNT_QCAPS_L2_HDR_SRC_FILTER_EN \
59 HWRM_CFA_ADV_FLOW_MGNT_QCAPS_OUTPUT_FLAGS_L2_HEADER_SOURCE_FIELDS_SUPPORTED
60
61 #define HWRM_SPEC_CODE_1_8_4            0x10804
62 #define HWRM_SPEC_CODE_1_9_0            0x10900
63 #define HWRM_SPEC_CODE_1_9_2            0x10902
64
65 #define FUNC_BACKING_STORE_CFG_INPUT_DFLT_ENABLES              \
66         (HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_QP |        \
67         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_SRQ |        \
68         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_CQ |         \
69         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_VNIC |       \
70         HWRM_FUNC_BACKING_STORE_CFG_INPUT_ENABLES_STAT)
71
72 #define GET_TX_QUEUE_INFO(x) \
73         bp->tx_cos_queue[x].id = resp->queue_id##x; \
74         bp->tx_cos_queue[x].profile =   \
75                 resp->queue_id##x##_service_profile
76
77 #define GET_RX_QUEUE_INFO(x) \
78         bp->rx_cos_queue[x].id = resp->queue_id##x; \
79         bp->rx_cos_queue[x].profile =   \
80                 resp->queue_id##x##_service_profile
81
82 int bnxt_hwrm_tf_message_tunneled(struct bnxt *bp,
83                                   bool use_kong_mb,
84                                   uint16_t tf_type,
85                                   uint16_t tf_subtype,
86                                   uint32_t *tf_response_code,
87                                   void *msg,
88                                   uint32_t msg_len,
89                                   void *response,
90                                   uint32_t response_len);
91
92 int bnxt_hwrm_tf_message_direct(struct bnxt *bp,
93                                 bool use_kong_mb,
94                                 uint16_t msg_type,
95                                 void *msg,
96                                 uint32_t msg_len,
97                                 void *resp_msg,
98                                 uint32_t resp_len);
99
100 #define CFA_COUNTER_CFG_IN_COUNTER_TYPE_FC \
101         HWRM_CFA_COUNTER_CFG_INPUT_COUNTER_TYPE_FC
102
103 enum bnxt_flow_dir {
104         BNXT_DIR_RX = 0,
105         BNXT_DIR_TX,
106         BNXT_DIR_LOOPBACK,
107         BNXT_DIR_MAX
108 };
109
110 #define BNXT_CTX_VAL_INVAL      0xFFFF
111
112 int bnxt_hwrm_cfa_l2_clear_rx_mask(struct bnxt *bp,
113                                    struct bnxt_vnic_info *vnic);
114 int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, struct bnxt_vnic_info *vnic,
115                                  uint16_t vlan_count,
116                                  struct bnxt_vlan_table_entry *vlan_table);
117 int bnxt_hwrm_cfa_vlan_antispoof_cfg(struct bnxt *bp, uint16_t fid,
118                         uint16_t vlan_count,
119                         struct bnxt_vlan_antispoof_table_entry *vlan_table);
120 int bnxt_hwrm_clear_l2_filter(struct bnxt *bp,
121                            struct bnxt_filter_info *filter);
122 int bnxt_hwrm_set_l2_filter(struct bnxt *bp,
123                          uint16_t dst_id,
124                          struct bnxt_filter_info *filter);
125 int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, uint16_t target_id,
126                             void *encaped, size_t ec_size);
127 int bnxt_hwrm_reject_fwd_resp(struct bnxt *bp, uint16_t target_id,
128                               void *encaped, size_t ec_size);
129
130 int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp);
131 int bnxt_hwrm_func_buf_unrgtr(struct bnxt *bp);
132 int bnxt_hwrm_func_driver_register(struct bnxt *bp);
133 int bnxt_hwrm_func_qcaps(struct bnxt *bp);
134 int bnxt_hwrm_func_reset(struct bnxt *bp);
135 int bnxt_hwrm_func_driver_unregister(struct bnxt *bp, uint32_t flags);
136 int bnxt_hwrm_func_qstats(struct bnxt *bp, uint16_t fid,
137                           struct rte_eth_stats *stats,
138                           struct hwrm_func_qstats_output *func_qstats);
139 int bnxt_hwrm_func_qstats_tx_drop(struct bnxt *bp, uint16_t fid,
140                                   uint64_t *dropped);
141 int bnxt_hwrm_func_clr_stats(struct bnxt *bp, uint16_t fid);
142 int bnxt_hwrm_func_cfg_def_cp(struct bnxt *bp);
143 int bnxt_hwrm_vf_func_cfg_def_cp(struct bnxt *bp);
144
145 int bnxt_hwrm_queue_qportcfg(struct bnxt *bp);
146
147 int bnxt_hwrm_set_async_event_cr(struct bnxt *bp);
148 int bnxt_hwrm_ring_alloc(struct bnxt *bp,
149                          struct bnxt_ring *ring,
150                          uint32_t ring_type, uint32_t map_index,
151                          uint32_t stats_ctx_id, uint32_t cmpl_ring_id,
152                          uint16_t tx_cosq_id);
153 int bnxt_hwrm_ring_free(struct bnxt *bp,
154                         struct bnxt_ring *ring, uint32_t ring_type);
155 int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp, unsigned int idx);
156 int bnxt_hwrm_ring_grp_free(struct bnxt *bp, unsigned int idx);
157
158 int bnxt_hwrm_stat_clear(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
159 int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp,
160                              struct bnxt_cp_ring_info *cpr, unsigned int idx);
161 int bnxt_hwrm_stat_ctx_free(struct bnxt *bp,
162                             struct bnxt_cp_ring_info *cpr, unsigned int idx);
163 int bnxt_hwrm_ctx_qstats(struct bnxt *bp, uint32_t cid, int idx,
164                          struct rte_eth_stats *stats, uint8_t rx);
165
166 int bnxt_hwrm_ver_get(struct bnxt *bp, uint32_t timeout);
167
168 int bnxt_hwrm_vnic_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic);
169 int bnxt_hwrm_vnic_cfg(struct bnxt *bp, struct bnxt_vnic_info *vnic);
170 int bnxt_hwrm_vnic_qcfg(struct bnxt *bp, struct bnxt_vnic_info *vnic,
171                                 int16_t fw_vf_id);
172 int bnxt_hwrm_vnic_qcaps(struct bnxt *bp);
173 int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic,
174                              uint16_t ctx_idx);
175 int bnxt_hwrm_vnic_ctx_free(struct bnxt *bp, struct bnxt_vnic_info *vnic);
176 int bnxt_hwrm_vnic_free(struct bnxt *bp, struct bnxt_vnic_info *vnic);
177 int bnxt_hwrm_vnic_rss_cfg(struct bnxt *bp,
178                            struct bnxt_vnic_info *vnic);
179 int bnxt_hwrm_vnic_plcmode_cfg(struct bnxt *bp,
180                                 struct bnxt_vnic_info *vnic);
181 int bnxt_hwrm_vnic_tpa_cfg(struct bnxt *bp,
182                            struct bnxt_vnic_info *vnic, bool enable);
183
184 int bnxt_alloc_all_hwrm_stat_ctxs(struct bnxt *bp);
185 int bnxt_clear_all_hwrm_stat_ctxs(struct bnxt *bp);
186 int bnxt_alloc_all_hwrm_ring_grps(struct bnxt *bp);
187 void bnxt_free_cp_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
188 void bnxt_free_nq_ring(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
189 int bnxt_set_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic);
190 void bnxt_free_all_hwrm_resources(struct bnxt *bp);
191 void bnxt_free_hwrm_resources(struct bnxt *bp);
192 void bnxt_free_hwrm_rx_ring(struct bnxt *bp, int queue_index);
193 int bnxt_alloc_hwrm_resources(struct bnxt *bp);
194 int bnxt_get_hwrm_link_config(struct bnxt *bp, struct rte_eth_link *link);
195 int bnxt_set_hwrm_link_config(struct bnxt *bp, bool link_up);
196 int bnxt_hwrm_func_qcfg(struct bnxt *bp, uint16_t *mtu);
197 int bnxt_hwrm_func_resc_qcaps(struct bnxt *bp);
198 int bnxt_hwrm_func_reserve_vf_resc(struct bnxt *bp, bool test);
199 int bnxt_hwrm_allocate_pf_only(struct bnxt *bp);
200 int bnxt_hwrm_allocate_vfs(struct bnxt *bp, int num_vfs);
201 int bnxt_hwrm_func_vf_mac(struct bnxt *bp, uint16_t vf,
202                           const uint8_t *mac_addr);
203 int bnxt_hwrm_pf_evb_mode(struct bnxt *bp);
204 int bnxt_hwrm_func_bw_cfg(struct bnxt *bp, uint16_t vf,
205                         uint16_t max_bw, uint16_t enables);
206 int bnxt_hwrm_set_vf_vlan(struct bnxt *bp, int vf);
207 int bnxt_hwrm_func_qcfg_vf_default_mac(struct bnxt *bp, uint16_t vf,
208                                        struct rte_ether_addr *mac);
209 int bnxt_hwrm_func_qcfg_current_vf_vlan(struct bnxt *bp, int vf);
210 int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, uint16_t port,
211                                 uint8_t tunnel_type);
212 int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, uint16_t port,
213                                 uint8_t tunnel_type);
214 int bnxt_hwrm_set_default_vlan(struct bnxt *bp, int vf, uint8_t is_vf);
215 int bnxt_hwrm_port_qstats(struct bnxt *bp);
216 int bnxt_hwrm_port_clr_stats(struct bnxt *bp);
217 int bnxt_hwrm_port_led_cfg(struct bnxt *bp, bool led_on);
218 int bnxt_hwrm_port_led_qcaps(struct bnxt *bp);
219 int bnxt_hwrm_port_mac_qcfg(struct bnxt *bp);
220 int bnxt_hwrm_func_cfg_vf_set_flags(struct bnxt *bp, uint16_t vf,
221                                         uint32_t flags);
222 void vf_vnic_set_rxmask_cb(struct bnxt_vnic_info *vnic, void *flagp);
223 int bnxt_set_rx_mask_no_vlan(struct bnxt *bp, struct bnxt_vnic_info *vnic);
224 int bnxt_vf_vnic_count(struct bnxt *bp, uint16_t vf);
225 int bnxt_hwrm_func_vf_vnic_query_and_config(struct bnxt *bp, uint16_t vf,
226         void (*vnic_cb)(struct bnxt_vnic_info *, void *), void *cbdata,
227         int (*hwrm_cb)(struct bnxt *bp, struct bnxt_vnic_info *vnic));
228 int bnxt_hwrm_func_cfg_vf_set_vlan_anti_spoof(struct bnxt *bp, uint16_t vf,
229                                               bool on);
230 int bnxt_hwrm_func_qcfg_vf_dflt_vnic_id(struct bnxt *bp, int vf);
231 int bnxt_hwrm_set_em_filter(struct bnxt *bp, uint16_t dst_id,
232                         struct bnxt_filter_info *filter);
233 int bnxt_hwrm_clear_em_filter(struct bnxt *bp, struct bnxt_filter_info *filter);
234
235 int bnxt_hwrm_set_ntuple_filter(struct bnxt *bp, uint16_t dst_id,
236                          struct bnxt_filter_info *filter);
237 int bnxt_hwrm_clear_ntuple_filter(struct bnxt *bp,
238                                 struct bnxt_filter_info *filter);
239 int bnxt_get_nvram_directory(struct bnxt *bp, uint32_t len, uint8_t *data);
240 int bnxt_hwrm_nvm_get_dir_info(struct bnxt *bp, uint32_t *entries,
241                                uint32_t *length);
242 int bnxt_hwrm_get_nvram_item(struct bnxt *bp, uint32_t index,
243                              uint32_t offset, uint32_t length,
244                              uint8_t *data);
245 int bnxt_hwrm_erase_nvram_directory(struct bnxt *bp, uint8_t index);
246 int bnxt_hwrm_flash_nvram(struct bnxt *bp, uint16_t dir_type,
247                           uint16_t dir_ordinal, uint16_t dir_ext,
248                           uint16_t dir_attr, const uint8_t *data,
249                           size_t data_len);
250 int bnxt_hwrm_ptp_cfg(struct bnxt *bp);
251 int bnxt_vnic_rss_configure(struct bnxt *bp,
252                             struct bnxt_vnic_info *vnic);
253 int bnxt_hwrm_set_ring_coal(struct bnxt *bp,
254                         struct bnxt_coal *coal, uint16_t ring_id);
255 int bnxt_hwrm_check_vf_rings(struct bnxt *bp);
256 int bnxt_hwrm_ext_port_qstats(struct bnxt *bp);
257 int bnxt_hwrm_func_backing_store_qcaps(struct bnxt *bp);
258 int bnxt_hwrm_func_backing_store_cfg(struct bnxt *bp, uint32_t enables);
259 int bnxt_alloc_ctx_mem(struct bnxt *bp);
260 int bnxt_hwrm_tunnel_redirect(struct bnxt *bp, uint8_t type);
261 int bnxt_hwrm_tunnel_redirect_free(struct bnxt *bp, uint8_t type);
262 int bnxt_hwrm_tunnel_redirect_query(struct bnxt *bp, uint32_t *type);
263 int bnxt_hwrm_tunnel_redirect_info(struct bnxt *bp, uint8_t tun_type,
264                                    uint16_t *dst_fid);
265 int bnxt_hwrm_set_mac(struct bnxt *bp);
266 int bnxt_hwrm_if_change(struct bnxt *bp, bool state);
267 int bnxt_hwrm_error_recovery_qcfg(struct bnxt *bp);
268 int bnxt_hwrm_fw_reset(struct bnxt *bp);
269 int bnxt_hwrm_port_ts_query(struct bnxt *bp, uint8_t path,
270                             uint64_t *timestamp);
271 int bnxt_hwrm_cfa_counter_qcaps(struct bnxt *bp, uint16_t *max_fc);
272 int bnxt_hwrm_ctx_rgtr(struct bnxt *bp, rte_iova_t dma_addr, uint16_t *ctx_id);
273 int bnxt_hwrm_ctx_unrgtr(struct bnxt *bp, uint16_t ctx_id);
274 int bnxt_hwrm_cfa_counter_cfg(struct bnxt *bp, enum bnxt_flow_dir dir,
275                               uint16_t cntr, uint16_t ctx_id,
276                               uint32_t num_entries, bool enable);
277 int bnxt_hwrm_cfa_counter_qstats(struct bnxt *bp,
278                                  enum bnxt_flow_dir dir,
279                                  uint16_t cntr,
280                                  uint16_t num_entries);
281 int bnxt_hwrm_get_dflt_vnic_id(struct bnxt *bp, uint16_t fid,
282                                uint16_t *vnic_id);
283 int bnxt_hwrm_get_dflt_vnic_svif(struct bnxt *bp, uint16_t fid,
284                                  uint16_t *vnic_id, uint16_t *svif);
285 int bnxt_hwrm_parent_pf_qcfg(struct bnxt *bp);
286 int bnxt_hwrm_port_phy_qcaps(struct bnxt *bp);
287 int bnxt_hwrm_oem_cmd(struct bnxt *bp, uint32_t entry_num);
288 int bnxt_clear_one_vnic_filter(struct bnxt *bp,
289                                struct bnxt_filter_info *filter);
290 int bnxt_hwrm_cfa_vfr_alloc(struct bnxt *bp, uint16_t vf_idx);
291 int bnxt_hwrm_cfa_vfr_free(struct bnxt *bp, uint16_t vf_idx);
292 void bnxt_hwrm_free_vf_info(struct bnxt *bp);
293 int bnxt_hwrm_first_vf_id_query(struct bnxt *bp, uint16_t fid,
294                                 uint16_t *first_vf_id);
295 int bnxt_hwrm_cfa_pair_alloc(struct bnxt *bp, struct bnxt_representor *rep);
296 int bnxt_hwrm_cfa_pair_free(struct bnxt *bp, struct bnxt_representor *rep);
297 #endif