New upstream version 18.02
[deb_dpdk.git] / drivers / net / bnxt / bnxt_hwrm.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) Broadcom Limited.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Broadcom Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _BNXT_HWRM_H_
35 #define _BNXT_HWRM_H_
36
37 #include <inttypes.h>
38 #include <stdbool.h>
39
40 struct bnxt;
41 struct bnxt_filter_info;
42 struct bnxt_cp_ring_info;
43
44 #define HWRM_SEQ_ID_INVALID -1U
45 /* Convert Bit field location to value */
46 #define ASYNC_CMPL_EVENT_ID_LINK_STATUS_CHANGE  \
47         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE)
48 #define ASYNC_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED       \
49         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED)
50 #define ASYNC_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE       \
51         (1 << HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE)
52 #define ASYNC_CMPL_EVENT_ID_PF_DRVR_UNLOAD      \
53         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD - 32))
54 #define ASYNC_CMPL_EVENT_ID_VF_CFG_CHANGE       \
55         (1 << (HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE - 32))
56
57 int bnxt_hwrm_cfa_l2_clear_rx_mask(struct bnxt *bp,
58                                    struct bnxt_vnic_info *vnic);
59 int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, struct bnxt_vnic_info *vnic,
60                                  uint16_t vlan_count,
61                                  struct bnxt_vlan_table_entry *vlan_table);
62 int bnxt_hwrm_cfa_vlan_antispoof_cfg(struct bnxt *bp, uint16_t fid,
63                         uint16_t vlan_count,
64                         struct bnxt_vlan_antispoof_table_entry *vlan_table);
65 int bnxt_hwrm_clear_l2_filter(struct bnxt *bp,
66                            struct bnxt_filter_info *filter);
67 int bnxt_hwrm_set_l2_filter(struct bnxt *bp,
68                          uint16_t dst_id,
69                          struct bnxt_filter_info *filter);
70 int bnxt_hwrm_exec_fwd_resp(struct bnxt *bp, uint16_t target_id,
71                             void *encaped, size_t ec_size);
72 int bnxt_hwrm_reject_fwd_resp(struct bnxt *bp, uint16_t target_id,
73                               void *encaped, size_t ec_size);
74
75 int bnxt_hwrm_func_buf_rgtr(struct bnxt *bp);
76 int bnxt_hwrm_func_buf_unrgtr(struct bnxt *bp);
77 int bnxt_hwrm_func_driver_register(struct bnxt *bp);
78 int bnxt_hwrm_func_qcaps(struct bnxt *bp);
79 int bnxt_hwrm_func_reset(struct bnxt *bp);
80 int bnxt_hwrm_func_driver_unregister(struct bnxt *bp, uint32_t flags);
81 int bnxt_hwrm_func_qstats(struct bnxt *bp, uint16_t fid,
82                           struct rte_eth_stats *stats);
83 int bnxt_hwrm_func_qstats_tx_drop(struct bnxt *bp, uint16_t fid,
84                                   uint64_t *dropped);
85 int bnxt_hwrm_func_clr_stats(struct bnxt *bp, uint16_t fid);
86 int bnxt_hwrm_func_cfg_def_cp(struct bnxt *bp);
87 int bnxt_hwrm_vf_func_cfg_def_cp(struct bnxt *bp);
88
89 int bnxt_hwrm_queue_qportcfg(struct bnxt *bp);
90
91 int bnxt_hwrm_ring_alloc(struct bnxt *bp,
92                          struct bnxt_ring *ring,
93                          uint32_t ring_type, uint32_t map_index,
94                          uint32_t stats_ctx_id, uint32_t cmpl_ring_id);
95 int bnxt_hwrm_ring_free(struct bnxt *bp,
96                         struct bnxt_ring *ring, uint32_t ring_type);
97 int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp, unsigned int idx);
98 int bnxt_hwrm_ring_grp_free(struct bnxt *bp, unsigned int idx);
99
100 int bnxt_hwrm_stat_clear(struct bnxt *bp, struct bnxt_cp_ring_info *cpr);
101 int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp,
102                              struct bnxt_cp_ring_info *cpr, unsigned int idx);
103 int bnxt_hwrm_stat_ctx_free(struct bnxt *bp,
104                             struct bnxt_cp_ring_info *cpr, unsigned int idx);
105 int bnxt_hwrm_ctx_qstats(struct bnxt *bp, uint32_t cid, int idx,
106                          struct rte_eth_stats *stats, uint8_t rx);
107
108 int bnxt_hwrm_ver_get(struct bnxt *bp);
109
110 int bnxt_hwrm_vnic_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic);
111 int bnxt_hwrm_vnic_cfg(struct bnxt *bp, struct bnxt_vnic_info *vnic);
112 int bnxt_hwrm_vnic_qcfg(struct bnxt *bp, struct bnxt_vnic_info *vnic,
113                                 int16_t fw_vf_id);
114 int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic);
115 int bnxt_hwrm_vnic_ctx_free(struct bnxt *bp, struct bnxt_vnic_info *vnic);
116 int bnxt_hwrm_vnic_free(struct bnxt *bp, struct bnxt_vnic_info *vnic);
117 int bnxt_hwrm_vnic_rss_cfg(struct bnxt *bp,
118                            struct bnxt_vnic_info *vnic);
119 int bnxt_hwrm_vnic_plcmode_cfg(struct bnxt *bp,
120                                 struct bnxt_vnic_info *vnic);
121 int bnxt_hwrm_vnic_tpa_cfg(struct bnxt *bp,
122                            struct bnxt_vnic_info *vnic, bool enable);
123
124 int bnxt_alloc_all_hwrm_stat_ctxs(struct bnxt *bp);
125 int bnxt_clear_all_hwrm_stat_ctxs(struct bnxt *bp);
126 int bnxt_free_all_hwrm_stat_ctxs(struct bnxt *bp);
127 int bnxt_free_all_hwrm_rings(struct bnxt *bp);
128 int bnxt_free_all_hwrm_ring_grps(struct bnxt *bp);
129 int bnxt_alloc_all_hwrm_ring_grps(struct bnxt *bp);
130 int bnxt_set_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic);
131 int bnxt_clear_hwrm_vnic_filters(struct bnxt *bp, struct bnxt_vnic_info *vnic);
132 void bnxt_free_all_hwrm_resources(struct bnxt *bp);
133 void bnxt_free_hwrm_resources(struct bnxt *bp);
134 int bnxt_alloc_hwrm_resources(struct bnxt *bp);
135 int bnxt_get_hwrm_link_config(struct bnxt *bp, struct rte_eth_link *link);
136 int bnxt_set_hwrm_link_config(struct bnxt *bp, bool link_up);
137 int bnxt_hwrm_func_qcfg(struct bnxt *bp);
138 int bnxt_hwrm_allocate_pf_only(struct bnxt *bp);
139 int bnxt_hwrm_allocate_vfs(struct bnxt *bp, int num_vfs);
140 int bnxt_hwrm_func_vf_mac(struct bnxt *bp, uint16_t vf,
141                           const uint8_t *mac_addr);
142 int bnxt_hwrm_pf_evb_mode(struct bnxt *bp);
143 int bnxt_hwrm_func_bw_cfg(struct bnxt *bp, uint16_t vf,
144                         uint16_t max_bw, uint16_t enables);
145 int bnxt_hwrm_set_vf_vlan(struct bnxt *bp, int vf);
146 int bnxt_hwrm_func_qcfg_vf_default_mac(struct bnxt *bp, uint16_t vf,
147                                        struct ether_addr *mac);
148 int bnxt_hwrm_func_qcfg_current_vf_vlan(struct bnxt *bp, int vf);
149 int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, uint16_t port,
150                                 uint8_t tunnel_type);
151 int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, uint16_t port,
152                                 uint8_t tunnel_type);
153 void bnxt_free_tunnel_ports(struct bnxt *bp);
154 int bnxt_hwrm_set_default_vlan(struct bnxt *bp, int vf, uint8_t is_vf);
155 int bnxt_hwrm_port_qstats(struct bnxt *bp);
156 int bnxt_hwrm_port_clr_stats(struct bnxt *bp);
157 int bnxt_hwrm_port_led_cfg(struct bnxt *bp, bool led_on);
158 int bnxt_hwrm_port_led_qcaps(struct bnxt *bp);
159 int bnxt_hwrm_func_cfg_vf_set_flags(struct bnxt *bp, uint16_t vf,
160                                         uint32_t flags);
161 void vf_vnic_set_rxmask_cb(struct bnxt_vnic_info *vnic, void *flagp);
162 int bnxt_set_rx_mask_no_vlan(struct bnxt *bp, struct bnxt_vnic_info *vnic);
163 int bnxt_vf_vnic_count(struct bnxt *bp, uint16_t vf);
164 int bnxt_hwrm_func_vf_vnic_query_and_config(struct bnxt *bp, uint16_t vf,
165         void (*vnic_cb)(struct bnxt_vnic_info *, void *), void *cbdata,
166         int (*hwrm_cb)(struct bnxt *bp, struct bnxt_vnic_info *vnic));
167 int bnxt_hwrm_func_cfg_vf_set_vlan_anti_spoof(struct bnxt *bp, uint16_t vf,
168                                               bool on);
169 int bnxt_hwrm_func_qcfg_vf_dflt_vnic_id(struct bnxt *bp, int vf);
170 int bnxt_hwrm_set_em_filter(struct bnxt *bp, uint16_t dst_id,
171                         struct bnxt_filter_info *filter);
172 int bnxt_hwrm_clear_em_filter(struct bnxt *bp, struct bnxt_filter_info *filter);
173
174 int bnxt_hwrm_set_ntuple_filter(struct bnxt *bp, uint16_t dst_id,
175                          struct bnxt_filter_info *filter);
176 int bnxt_hwrm_clear_ntuple_filter(struct bnxt *bp,
177                                 struct bnxt_filter_info *filter);
178 int bnxt_get_nvram_directory(struct bnxt *bp, uint32_t len, uint8_t *data);
179 int bnxt_hwrm_nvm_get_dir_info(struct bnxt *bp, uint32_t *entries,
180                                uint32_t *length);
181 int bnxt_hwrm_get_nvram_item(struct bnxt *bp, uint32_t index,
182                              uint32_t offset, uint32_t length,
183                              uint8_t *data);
184 int bnxt_hwrm_erase_nvram_directory(struct bnxt *bp, uint8_t index);
185 int bnxt_hwrm_flash_nvram(struct bnxt *bp, uint16_t dir_type,
186                           uint16_t dir_ordinal, uint16_t dir_ext,
187                           uint16_t dir_attr, const uint8_t *data,
188                           size_t data_len);
189 int bnxt_hwrm_ptp_cfg(struct bnxt *bp);
190 int bnxt_vnic_rss_configure(struct bnxt *bp,
191                             struct bnxt_vnic_info *vnic);
192 #endif