net/bnxt: convert to SPDX license tag
[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_PF_DRVR_UNLOAD      \
25         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD - 32))
26 #define ASYNC_CMPL_EVENT_ID_VF_CFG_CHANGE       \
27         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE - 32))
28
29 int bnxt_hwrm_cfa_l2_clear_rx_mask(struct bnxt *bp,
30                                    struct bnxt_vnic_info *vnic);
31 int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, struct bnxt_vnic_info *vnic,
32                                  uint16_t vlan_count,
33                                  struct bnxt_vlan_table_entry *vlan_table);
34 int bnxt_hwrm_cfa_vlan_antispoof_cfg(struct bnxt *bp, uint16_t fid,
35                         uint16_t vlan_count,
36                         struct bnxt_vlan_antispoof_table_entry *vlan_table);
37 int bnxt_hwrm_clear_l2_filter(struct bnxt *bp,
38                            struct bnxt_filter_info *filter);
39 int bnxt_hwrm_set_l2_filter(struct bnxt *bp,
40                          uint16_t dst_id,
41                          struct bnxt_filter_info *filter);
42 int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, uint16_t target_id,
43                             void *encaped, size_t ec_size);
44 int bnxt_hwrm_reject_fwd_resp(struct bnxt *bp, uint16_t target_id,
45                               void *encaped, size_t ec_size);
46
47 int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp);
48 int bnxt_hwrm_func_buf_unrgtr(struct bnxt *bp);
49 int bnxt_hwrm_func_driver_register(struct bnxt *bp);
50 int bnxt_hwrm_func_qcaps(struct bnxt *bp);
51 int bnxt_hwrm_func_reset(struct bnxt *bp);
52 int bnxt_hwrm_func_driver_unregister(struct bnxt *bp, uint32_t flags);
53 int bnxt_hwrm_func_qstats(struct bnxt *bp, uint16_t fid,
54                           struct rte_eth_stats *stats);
55 int bnxt_hwrm_func_qstats_tx_drop(struct bnxt *bp, uint16_t fid,
56                                   uint64_t *dropped);
57 int bnxt_hwrm_func_clr_stats(struct bnxt *bp, uint16_t fid);
58 int bnxt_hwrm_func_cfg_def_cp(struct bnxt *bp);
59 int bnxt_hwrm_vf_func_cfg_def_cp(struct bnxt *bp);
60
61 int bnxt_hwrm_queue_qportcfg(struct bnxt *bp);
62
63 int bnxt_hwrm_ring_alloc(struct bnxt *bp,
64                          struct bnxt_ring *ring,
65                          uint32_t ring_type, uint32_t map_index,
66                          uint32_t stats_ctx_id, uint32_t cmpl_ring_id);
67 int bnxt_hwrm_ring_free(struct bnxt *bp,
68                         struct bnxt_ring *ring, uint32_t ring_type);
69 int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp, unsigned int idx);
70 int bnxt_hwrm_ring_grp_free(struct bnxt *bp, unsigned int idx);
71
72 int bnxt_hwrm_stat_clear(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
73 int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp,
74                              struct bnxt_cp_ring_info *cpr, unsigned int idx);
75 int bnxt_hwrm_stat_ctx_free(struct bnxt *bp,
76                             struct bnxt_cp_ring_info *cpr, unsigned int idx);
77 int bnxt_hwrm_ctx_qstats(struct bnxt *bp, uint32_t cid, int idx,
78                          struct rte_eth_stats *stats, uint8_t rx);
79
80 int bnxt_hwrm_ver_get(struct bnxt *bp);
81
82 int bnxt_hwrm_vnic_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic);
83 int bnxt_hwrm_vnic_cfg(struct bnxt *bp, struct bnxt_vnic_info *vnic);
84 int bnxt_hwrm_vnic_qcfg(struct bnxt *bp, struct bnxt_vnic_info *vnic,
85                                 int16_t fw_vf_id);
86 int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic);
87 int bnxt_hwrm_vnic_ctx_free(struct bnxt *bp, struct bnxt_vnic_info *vnic);
88 int bnxt_hwrm_vnic_free(struct bnxt *bp, struct bnxt_vnic_info *vnic);
89 int bnxt_hwrm_vnic_rss_cfg(struct bnxt *bp,
90                            struct bnxt_vnic_info *vnic);
91 int bnxt_hwrm_vnic_plcmode_cfg(struct bnxt *bp,
92                                 struct bnxt_vnic_info *vnic);
93 int bnxt_hwrm_vnic_tpa_cfg(struct bnxt *bp,
94                            struct bnxt_vnic_info *vnic, bool enable);
95
96 int bnxt_alloc_all_hwrm_stat_ctxs(struct bnxt *bp);
97 int bnxt_clear_all_hwrm_stat_ctxs(struct bnxt *bp);
98 int bnxt_free_all_hwrm_stat_ctxs(struct bnxt *bp);
99 int bnxt_free_all_hwrm_rings(struct bnxt *bp);
100 int bnxt_free_all_hwrm_ring_grps(struct bnxt *bp);
101 int bnxt_alloc_all_hwrm_ring_grps(struct bnxt *bp);
102 int bnxt_set_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic);
103 int bnxt_clear_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic);
104 void bnxt_free_all_hwrm_resources(struct bnxt *bp);
105 void bnxt_free_hwrm_resources(struct bnxt *bp);
106 int bnxt_alloc_hwrm_resources(struct bnxt *bp);
107 int bnxt_get_hwrm_link_config(struct bnxt *bp, struct rte_eth_link *link);
108 int bnxt_set_hwrm_link_config(struct bnxt *bp, bool link_up);
109 int bnxt_hwrm_func_qcfg(struct bnxt *bp);
110 int bnxt_hwrm_allocate_pf_only(struct bnxt *bp);
111 int bnxt_hwrm_allocate_vfs(struct bnxt *bp, int num_vfs);
112 int bnxt_hwrm_func_vf_mac(struct bnxt *bp, uint16_t vf,
113                           const uint8_t *mac_addr);
114 int bnxt_hwrm_pf_evb_mode(struct bnxt *bp);
115 int bnxt_hwrm_func_bw_cfg(struct bnxt *bp, uint16_t vf,
116                         uint16_t max_bw, uint16_t enables);
117 int bnxt_hwrm_set_vf_vlan(struct bnxt *bp, int vf);
118 int bnxt_hwrm_func_qcfg_vf_default_mac(struct bnxt *bp, uint16_t vf,
119                                        struct ether_addr *mac);
120 int bnxt_hwrm_func_qcfg_current_vf_vlan(struct bnxt *bp, int vf);
121 int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, uint16_t port,
122                                 uint8_t tunnel_type);
123 int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, uint16_t port,
124                                 uint8_t tunnel_type);
125 void bnxt_free_tunnel_ports(struct bnxt *bp);
126 int bnxt_hwrm_set_default_vlan(struct bnxt *bp, int vf, uint8_t is_vf);
127 int bnxt_hwrm_port_qstats(struct bnxt *bp);
128 int bnxt_hwrm_port_clr_stats(struct bnxt *bp);
129 int bnxt_hwrm_port_led_cfg(struct bnxt *bp, bool led_on);
130 int bnxt_hwrm_port_led_qcaps(struct bnxt *bp);
131 int bnxt_hwrm_func_cfg_vf_set_flags(struct bnxt *bp, uint16_t vf,
132                                         uint32_t flags);
133 void vf_vnic_set_rxmask_cb(struct bnxt_vnic_info *vnic, void *flagp);
134 int bnxt_set_rx_mask_no_vlan(struct bnxt *bp, struct bnxt_vnic_info *vnic);
135 int bnxt_vf_vnic_count(struct bnxt *bp, uint16_t vf);
136 int bnxt_hwrm_func_vf_vnic_query_and_config(struct bnxt *bp, uint16_t vf,
137         void (*vnic_cb)(struct bnxt_vnic_info *, void *), void *cbdata,
138         int (*hwrm_cb)(struct bnxt *bp, struct bnxt_vnic_info *vnic));
139 int bnxt_hwrm_func_cfg_vf_set_vlan_anti_spoof(struct bnxt *bp, uint16_t vf,
140                                               bool on);
141 int bnxt_hwrm_func_qcfg_vf_dflt_vnic_id(struct bnxt *bp, int vf);
142 int bnxt_hwrm_set_em_filter(struct bnxt *bp, uint16_t dst_id,
143                         struct bnxt_filter_info *filter);
144 int bnxt_hwrm_clear_em_filter(struct bnxt *bp, struct bnxt_filter_info *filter);
145
146 int bnxt_hwrm_set_ntuple_filter(struct bnxt *bp, uint16_t dst_id,
147                          struct bnxt_filter_info *filter);
148 int bnxt_hwrm_clear_ntuple_filter(struct bnxt *bp,
149                                 struct bnxt_filter_info *filter);
150 int bnxt_get_nvram_directory(struct bnxt *bp, uint32_t len, uint8_t *data);
151 int bnxt_hwrm_nvm_get_dir_info(struct bnxt *bp, uint32_t *entries,
152                                uint32_t *length);
153 int bnxt_hwrm_get_nvram_item(struct bnxt *bp, uint32_t index,
154                              uint32_t offset, uint32_t length,
155                              uint8_t *data);
156 int bnxt_hwrm_erase_nvram_directory(struct bnxt *bp, uint8_t index);
157 int bnxt_hwrm_flash_nvram(struct bnxt *bp, uint16_t dir_type,
158                           uint16_t dir_ordinal, uint16_t dir_ext,
159                           uint16_t dir_attr, const uint8_t *data,
160                           size_t data_len);
161 int bnxt_hwrm_ptp_cfg(struct bnxt *bp);
162 int bnxt_vnic_rss_configure(struct bnxt *bp,
163                             struct bnxt_vnic_info *vnic);
164 #endif