net/hns3: support PF device with copper PHYs
[dpdk.git] / drivers / net / hns3 / hns3_cmd.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018-2019 Hisilicon Limited.
3  */
4
5 #ifndef _HNS3_CMD_H_
6 #define _HNS3_CMD_H_
7
8 #include <stdint.h>
9
10 #define HNS3_CMDQ_TX_TIMEOUT            30000
11 #define HNS3_CMDQ_CLEAR_WAIT_TIME       200
12 #define HNS3_CMDQ_RX_INVLD_B            0
13 #define HNS3_CMDQ_RX_OUTVLD_B           1
14 #define HNS3_CMD_DESC_ALIGNMENT         4096
15 #define HNS3_CMD_FLAG_NEXT              BIT(2)
16
17 struct hns3_hw;
18
19 #define HNS3_CMD_DESC_DATA_NUM  6
20 struct hns3_cmd_desc {
21         uint16_t opcode;
22         uint16_t flag;
23         uint16_t retval;
24         uint16_t rsv;
25         uint32_t data[HNS3_CMD_DESC_DATA_NUM];
26 };
27
28 struct hns3_cmq_ring {
29         uint64_t desc_dma_addr;
30         struct hns3_cmd_desc *desc;
31         struct hns3_hw *hw;
32
33         uint16_t buf_size;
34         uint16_t desc_num;       /* max number of cmq descriptor */
35         uint32_t next_to_use;
36         uint32_t next_to_clean;
37         uint8_t ring_type;       /* cmq ring type */
38         rte_spinlock_t lock;     /* Command queue lock */
39
40         const void *zone;        /* memory zone */
41 };
42
43 enum hns3_cmd_return_status {
44         HNS3_CMD_EXEC_SUCCESS   = 0,
45         HNS3_CMD_NO_AUTH        = 1,
46         HNS3_CMD_NOT_SUPPORTED  = 2,
47         HNS3_CMD_QUEUE_FULL     = 3,
48         HNS3_CMD_NEXT_ERR       = 4,
49         HNS3_CMD_UNEXE_ERR      = 5,
50         HNS3_CMD_PARA_ERR       = 6,
51         HNS3_CMD_RESULT_ERR     = 7,
52         HNS3_CMD_TIMEOUT        = 8,
53         HNS3_CMD_HILINK_ERR     = 9,
54         HNS3_CMD_QUEUE_ILLEGAL  = 10,
55         HNS3_CMD_INVALID        = 11,
56         HNS3_CMD_ROH_CHECK_FAIL = 12
57 };
58
59 enum hns3_cmd_status {
60         HNS3_STATUS_SUCCESS     = 0,
61         HNS3_ERR_CSQ_FULL       = -1,
62         HNS3_ERR_CSQ_TIMEOUT    = -2,
63         HNS3_ERR_CSQ_ERROR      = -3,
64 };
65
66 struct hns3_misc_vector {
67         uint8_t *addr;
68         int vector_irq;
69 };
70
71 struct hns3_cmq {
72         struct hns3_cmq_ring csq;
73         struct hns3_cmq_ring crq;
74         uint16_t tx_timeout;
75         enum hns3_cmd_status last_status;
76 };
77
78 enum hns3_opcode_type {
79         /* Generic commands */
80         HNS3_OPC_QUERY_FW_VER           = 0x0001,
81         HNS3_OPC_CFG_RST_TRIGGER        = 0x0020,
82         HNS3_OPC_GBL_RST_STATUS         = 0x0021,
83         HNS3_OPC_QUERY_FUNC_STATUS      = 0x0022,
84         HNS3_OPC_QUERY_PF_RSRC          = 0x0023,
85         HNS3_OPC_QUERY_VF_RSRC          = 0x0024,
86         HNS3_OPC_GET_CFG_PARAM          = 0x0025,
87         HNS3_OPC_PF_RST_DONE            = 0x0026,
88
89         HNS3_OPC_STATS_64_BIT           = 0x0030,
90         HNS3_OPC_STATS_32_BIT           = 0x0031,
91         HNS3_OPC_STATS_MAC              = 0x0032,
92         HNS3_OPC_QUERY_MAC_REG_NUM      = 0x0033,
93         HNS3_OPC_STATS_MAC_ALL          = 0x0034,
94
95         HNS3_OPC_QUERY_REG_NUM          = 0x0040,
96         HNS3_OPC_QUERY_32_BIT_REG       = 0x0041,
97         HNS3_OPC_QUERY_64_BIT_REG       = 0x0042,
98         HNS3_OPC_DFX_BD_NUM             = 0x0043,
99         HNS3_OPC_DFX_BIOS_COMMON_REG    = 0x0044,
100         HNS3_OPC_DFX_SSU_REG_0          = 0x0045,
101         HNS3_OPC_DFX_SSU_REG_1          = 0x0046,
102         HNS3_OPC_DFX_IGU_EGU_REG        = 0x0047,
103         HNS3_OPC_DFX_RPU_REG_0          = 0x0048,
104         HNS3_OPC_DFX_RPU_REG_1          = 0x0049,
105         HNS3_OPC_DFX_NCSI_REG           = 0x004A,
106         HNS3_OPC_DFX_RTC_REG            = 0x004B,
107         HNS3_OPC_DFX_PPP_REG            = 0x004C,
108         HNS3_OPC_DFX_RCB_REG            = 0x004D,
109         HNS3_OPC_DFX_TQP_REG            = 0x004E,
110         HNS3_OPC_DFX_SSU_REG_2          = 0x004F,
111
112         HNS3_OPC_QUERY_DEV_SPECS        = 0x0050,
113
114         /* MAC command */
115         HNS3_OPC_CONFIG_MAC_MODE        = 0x0301,
116         HNS3_OPC_QUERY_LINK_STATUS      = 0x0307,
117         HNS3_OPC_CONFIG_MAX_FRM_SIZE    = 0x0308,
118         HNS3_OPC_CONFIG_SPEED_DUP       = 0x0309,
119         HNS3_OPC_CONFIG_FEC_MODE        = 0x031A,
120
121         /* PFC/Pause commands */
122         HNS3_OPC_CFG_MAC_PAUSE_EN       = 0x0701,
123         HNS3_OPC_CFG_PFC_PAUSE_EN       = 0x0702,
124         HNS3_OPC_CFG_MAC_PARA           = 0x0703,
125         HNS3_OPC_CFG_PFC_PARA           = 0x0704,
126         HNS3_OPC_QUERY_MAC_TX_PKT_CNT   = 0x0705,
127         HNS3_OPC_QUERY_MAC_RX_PKT_CNT   = 0x0706,
128         HNS3_OPC_QUERY_PFC_TX_PKT_CNT   = 0x0707,
129         HNS3_OPC_QUERY_PFC_RX_PKT_CNT   = 0x0708,
130         HNS3_OPC_PRI_TO_TC_MAPPING      = 0x0709,
131         HNS3_OPC_QOS_MAP                = 0x070A,
132
133         /* ETS/scheduler commands */
134         HNS3_OPC_TM_PG_TO_PRI_LINK      = 0x0804,
135         HNS3_OPC_TM_QS_TO_PRI_LINK      = 0x0805,
136         HNS3_OPC_TM_NQ_TO_QS_LINK       = 0x0806,
137         HNS3_OPC_TM_RQ_TO_QS_LINK       = 0x0807,
138         HNS3_OPC_TM_PORT_WEIGHT         = 0x0808,
139         HNS3_OPC_TM_PG_WEIGHT           = 0x0809,
140         HNS3_OPC_TM_QS_WEIGHT           = 0x080A,
141         HNS3_OPC_TM_PRI_WEIGHT          = 0x080B,
142         HNS3_OPC_TM_PRI_C_SHAPPING      = 0x080C,
143         HNS3_OPC_TM_PRI_P_SHAPPING      = 0x080D,
144         HNS3_OPC_TM_PG_C_SHAPPING       = 0x080E,
145         HNS3_OPC_TM_PG_P_SHAPPING       = 0x080F,
146         HNS3_OPC_TM_PORT_SHAPPING       = 0x0810,
147         HNS3_OPC_TM_PG_SCH_MODE_CFG     = 0x0812,
148         HNS3_OPC_TM_PRI_SCH_MODE_CFG    = 0x0813,
149         HNS3_OPC_TM_QS_SCH_MODE_CFG     = 0x0814,
150         HNS3_OPC_TM_BP_TO_QSET_MAPPING  = 0x0815,
151         HNS3_OPC_ETS_TC_WEIGHT          = 0x0843,
152         HNS3_OPC_QSET_DFX_STS           = 0x0844,
153         HNS3_OPC_PRI_DFX_STS            = 0x0845,
154         HNS3_OPC_PG_DFX_STS             = 0x0846,
155         HNS3_OPC_PORT_DFX_STS           = 0x0847,
156         HNS3_OPC_SCH_NQ_CNT             = 0x0848,
157         HNS3_OPC_SCH_RQ_CNT             = 0x0849,
158         HNS3_OPC_TM_INTERNAL_STS        = 0x0850,
159         HNS3_OPC_TM_INTERNAL_CNT        = 0x0851,
160         HNS3_OPC_TM_INTERNAL_STS_1      = 0x0852,
161
162         /* Mailbox cmd */
163         HNS3_OPC_MBX_VF_TO_PF           = 0x2001,
164
165         /* Packet buffer allocate commands */
166         HNS3_OPC_TX_BUFF_ALLOC          = 0x0901,
167         HNS3_OPC_RX_PRIV_BUFF_ALLOC     = 0x0902,
168         HNS3_OPC_RX_PRIV_WL_ALLOC       = 0x0903,
169         HNS3_OPC_RX_COM_THRD_ALLOC      = 0x0904,
170         HNS3_OPC_RX_COM_WL_ALLOC        = 0x0905,
171
172         /* TQP management command */
173         HNS3_OPC_SET_TQP_MAP            = 0x0A01,
174
175         /* TQP commands */
176         HNS3_OPC_QUERY_TX_STATUS        = 0x0B03,
177         HNS3_OPC_QUERY_RX_STATUS        = 0x0B13,
178         HNS3_OPC_CFG_COM_TQP_QUEUE      = 0x0B20,
179         HNS3_OPC_RESET_TQP_QUEUE        = 0x0B22,
180         HNS3_OPC_RESET_TQP_QUEUE_INDEP  = 0x0B23,
181
182         /* TSO command */
183         HNS3_OPC_TSO_GENERIC_CONFIG     = 0x0C01,
184         HNS3_OPC_GRO_GENERIC_CONFIG     = 0x0C10,
185
186         /* RSS commands */
187         HNS3_OPC_RSS_GENERIC_CONFIG     = 0x0D01,
188         HNS3_OPC_RSS_INPUT_TUPLE        = 0x0D02,
189         HNS3_OPC_RSS_INDIR_TABLE        = 0x0D07,
190         HNS3_OPC_RSS_TC_MODE            = 0x0D08,
191
192         /* Promisuous mode command */
193         HNS3_OPC_CFG_PROMISC_MODE       = 0x0E01,
194
195         /* Vlan offload commands */
196         HNS3_OPC_VLAN_PORT_TX_CFG       = 0x0F01,
197         HNS3_OPC_VLAN_PORT_RX_CFG       = 0x0F02,
198
199         /* MAC commands */
200         HNS3_OPC_MAC_VLAN_ADD           = 0x1000,
201         HNS3_OPC_MAC_VLAN_REMOVE        = 0x1001,
202         HNS3_OPC_MAC_VLAN_TYPE_ID       = 0x1002,
203         HNS3_OPC_MAC_VLAN_INSERT        = 0x1003,
204         HNS3_OPC_MAC_VLAN_ALLOCATE      = 0x1004,
205         HNS3_OPC_MAC_ETHTYPE_ADD        = 0x1010,
206
207         /* VLAN commands */
208         HNS3_OPC_VLAN_FILTER_CTRL       = 0x1100,
209         HNS3_OPC_VLAN_FILTER_PF_CFG     = 0x1101,
210         HNS3_OPC_VLAN_FILTER_VF_CFG     = 0x1102,
211
212         /* Flow Director command */
213         HNS3_OPC_FD_MODE_CTRL           = 0x1200,
214         HNS3_OPC_FD_GET_ALLOCATION      = 0x1201,
215         HNS3_OPC_FD_KEY_CONFIG          = 0x1202,
216         HNS3_OPC_FD_TCAM_OP             = 0x1203,
217         HNS3_OPC_FD_AD_OP               = 0x1204,
218         HNS3_OPC_FD_COUNTER_OP          = 0x1205,
219
220         /* Clear hardware state command */
221         HNS3_OPC_CLEAR_HW_STATE         = 0x700B,
222
223         /* Firmware stats command */
224         HNS3_OPC_FIRMWARE_COMPAT_CFG    = 0x701A,
225         /* Firmware control phy command */
226         HNS3_OPC_PHY_PARAM_CFG          = 0x7025,
227
228         /* SFP command */
229         HNS3_OPC_GET_SFP_EEPROM         = 0x7100,
230         HNS3_OPC_GET_SFP_EXIST          = 0x7101,
231         HNS3_OPC_SFP_GET_SPEED          = 0x7104,
232
233         /* Interrupts commands */
234         HNS3_OPC_ADD_RING_TO_VECTOR     = 0x1503,
235         HNS3_OPC_DEL_RING_TO_VECTOR     = 0x1504,
236
237         /* Error INT commands */
238         HNS3_OPC_MAC_COMMON_INT_EN              = 0x030E,
239         HNS3_OPC_TM_SCH_ECC_INT_EN              = 0x0829,
240         HNS3_OPC_SSU_ECC_INT_CMD                = 0x0989,
241         HNS3_OPC_SSU_COMMON_INT_CMD             = 0x098C,
242         HNS3_OPC_PPU_MPF_ECC_INT_CMD            = 0x0B40,
243         HNS3_OPC_PPU_MPF_OTHER_INT_CMD          = 0x0B41,
244         HNS3_OPC_PPU_PF_OTHER_INT_CMD           = 0x0B42,
245         HNS3_OPC_COMMON_ECC_INT_CFG             = 0x1505,
246         HNS3_OPC_QUERY_RAS_INT_STS_BD_NUM       = 0x1510,
247         HNS3_OPC_QUERY_CLEAR_MPF_RAS_INT        = 0x1511,
248         HNS3_OPC_QUERY_CLEAR_PF_RAS_INT         = 0x1512,
249         HNS3_OPC_QUERY_MSIX_INT_STS_BD_NUM      = 0x1513,
250         HNS3_OPC_QUERY_CLEAR_ALL_MPF_MSIX_INT   = 0x1514,
251         HNS3_OPC_QUERY_CLEAR_ALL_PF_MSIX_INT    = 0x1515,
252         HNS3_OPC_IGU_EGU_TNL_INT_EN             = 0x1803,
253         HNS3_OPC_IGU_COMMON_INT_EN              = 0x1806,
254         HNS3_OPC_TM_QCN_MEM_INT_CFG             = 0x1A14,
255         HNS3_OPC_PPP_CMD0_INT_CMD               = 0x2100,
256         HNS3_OPC_PPP_CMD1_INT_CMD               = 0x2101,
257         HNS3_OPC_NCSI_INT_EN                    = 0x2401,
258 };
259
260 #define HNS3_CMD_FLAG_IN        BIT(0)
261 #define HNS3_CMD_FLAG_OUT       BIT(1)
262 #define HNS3_CMD_FLAG_NEXT      BIT(2)
263 #define HNS3_CMD_FLAG_WR        BIT(3)
264 #define HNS3_CMD_FLAG_NO_INTR   BIT(4)
265 #define HNS3_CMD_FLAG_ERR_INTR  BIT(5)
266
267 #define HNS3_MPF_RAS_INT_MIN_BD_NUM     10
268 #define HNS3_PF_RAS_INT_MIN_BD_NUM      4
269 #define HNS3_MPF_MSIX_INT_MIN_BD_NUM    10
270 #define HNS3_PF_MSIX_INT_MIN_BD_NUM     4
271
272 #define HNS3_BUF_SIZE_UNIT      256
273 #define HNS3_BUF_MUL_BY         2
274 #define HNS3_BUF_DIV_BY         2
275 #define NEED_RESERVE_TC_NUM     2
276 #define BUF_MAX_PERCENT         100
277 #define BUF_RESERVE_PERCENT     90
278
279 #define HNS3_MAX_TC_NUM         8
280 #define HNS3_TC0_PRI_BUF_EN_B   15 /* Bit 15 indicate enable or not */
281 #define HNS3_BUF_UNIT_S         7  /* Buf size is united by 128 bytes */
282 #define HNS3_TX_BUFF_RSV_NUM    8
283 struct hns3_tx_buff_alloc_cmd {
284         uint16_t tx_pkt_buff[HNS3_MAX_TC_NUM];
285         uint8_t tx_buff_rsv[HNS3_TX_BUFF_RSV_NUM];
286 };
287
288 struct hns3_rx_priv_buff_cmd {
289         uint16_t buf_num[HNS3_MAX_TC_NUM];
290         uint16_t shared_buf;
291         uint8_t rsv[6];
292 };
293
294 #define HNS3_FW_VERSION_BYTE3_S         24
295 #define HNS3_FW_VERSION_BYTE3_M         GENMASK(31, 24)
296 #define HNS3_FW_VERSION_BYTE2_S         16
297 #define HNS3_FW_VERSION_BYTE2_M         GENMASK(23, 16)
298 #define HNS3_FW_VERSION_BYTE1_S         8
299 #define HNS3_FW_VERSION_BYTE1_M         GENMASK(15, 8)
300 #define HNS3_FW_VERSION_BYTE0_S         0
301 #define HNS3_FW_VERSION_BYTE0_M         GENMASK(7, 0)
302
303 enum HNS3_CAPS_BITS {
304         HNS3_CAPS_UDP_GSO_B,
305         HNS3_CAPS_ATR_B,
306         HNS3_CAPS_FD_QUEUE_REGION_B,
307         HNS3_CAPS_PTP_B,
308         HNS3_CAPS_INT_QL_B,
309         HNS3_CAPS_SIMPLE_BD_B,
310         HNS3_CAPS_TX_PUSH_B,
311         HNS3_CAPS_PHY_IMP_B,
312         HNS3_CAPS_TQP_TXRX_INDEP_B,
313         HNS3_CAPS_HW_PAD_B,
314         HNS3_CAPS_STASH_B,
315 };
316
317 enum HNS3_API_CAP_BITS {
318         HNS3_API_CAP_FLEX_RSS_TBL_B,
319 };
320
321 #define HNS3_QUERY_CAP_LENGTH           3
322 struct hns3_query_version_cmd {
323         uint32_t firmware;
324         uint32_t hardware;
325         uint32_t api_caps;
326         uint32_t caps[HNS3_QUERY_CAP_LENGTH]; /* capabilities of device */
327 };
328
329 #define HNS3_RX_PRIV_EN_B       15
330 #define HNS3_TC_NUM_ONE_DESC    4
331 struct hns3_priv_wl {
332         uint16_t high;
333         uint16_t low;
334 };
335
336 struct hns3_rx_priv_wl_buf {
337         struct hns3_priv_wl tc_wl[HNS3_TC_NUM_ONE_DESC];
338 };
339
340 struct hns3_rx_com_thrd {
341         struct hns3_priv_wl com_thrd[HNS3_TC_NUM_ONE_DESC];
342 };
343
344 struct hns3_rx_com_wl {
345         struct hns3_priv_wl com_wl;
346 };
347
348 struct hns3_waterline {
349         uint32_t low;
350         uint32_t high;
351 };
352
353 struct hns3_tc_thrd {
354         uint32_t low;
355         uint32_t high;
356 };
357
358 struct hns3_priv_buf {
359         struct hns3_waterline wl; /* Waterline for low and high */
360         uint32_t buf_size;        /* TC private buffer size */
361         uint32_t tx_buf_size;
362         uint32_t enable;          /* Enable TC private buffer or not */
363 };
364
365 struct hns3_shared_buf {
366         struct hns3_waterline self;
367         struct hns3_tc_thrd tc_thrd[HNS3_MAX_TC_NUM];
368         uint32_t buf_size;
369 };
370
371 struct hns3_pkt_buf_alloc {
372         struct hns3_priv_buf priv_buf[HNS3_MAX_TC_NUM];
373         struct hns3_shared_buf s_buf;
374 };
375
376 #define HNS3_RX_COM_WL_EN_B     15
377 struct hns3_rx_com_wl_buf_cmd {
378         uint16_t high_wl;
379         uint16_t low_wl;
380         uint8_t rsv[20];
381 };
382
383 #define HNS3_RX_PKT_EN_B        15
384 struct hns3_rx_pkt_buf_cmd {
385         uint16_t high_pkt;
386         uint16_t low_pkt;
387         uint8_t rsv[20];
388 };
389
390 #define HNS3_PF_STATE_DONE_B    0
391 #define HNS3_PF_STATE_MAIN_B    1
392 #define HNS3_PF_STATE_BOND_B    2
393 #define HNS3_PF_STATE_MAC_N_B   6
394 #define HNS3_PF_MAC_NUM_MASK    0x3
395 #define HNS3_PF_STATE_MAIN      BIT(HNS3_PF_STATE_MAIN_B)
396 #define HNS3_PF_STATE_DONE      BIT(HNS3_PF_STATE_DONE_B)
397 #define HNS3_VF_RST_STATE_NUM   4
398 struct hns3_func_status_cmd {
399         uint32_t vf_rst_state[HNS3_VF_RST_STATE_NUM];
400         uint8_t pf_state;
401         uint8_t mac_id;
402         uint8_t rsv1;
403         uint8_t pf_cnt_in_mac;
404         uint8_t pf_num;
405         uint8_t vf_num;
406         uint8_t rsv[2];
407 };
408
409 #define HNS3_PF_VEC_NUM_S       0
410 #define HNS3_PF_VEC_NUM_M       GENMASK(15, 0)
411 #define HNS3_MIN_VECTOR_NUM     2 /* one for msi-x, another for IO */
412 struct hns3_pf_res_cmd {
413         uint16_t tqp_num;
414         uint16_t buf_size;
415         uint16_t msixcap_localid_ba_nic;
416         uint16_t nic_pf_intr_vector_number;
417         uint16_t roce_pf_intr_vector_number;
418         uint16_t pf_own_fun_number;
419         uint16_t tx_buf_size;
420         uint16_t dv_buf_size;
421         /* number of queues that exceed 1024 */
422         uint16_t ext_tqp_num;
423         uint16_t roh_pf_intr_vector_number;
424         uint32_t rsv[1];
425 };
426
427 #define HNS3_VF_VEC_NUM_S       0
428 #define HNS3_VF_VEC_NUM_M       GENMASK(7, 0)
429 struct hns3_vf_res_cmd {
430         uint16_t tqp_num;
431         uint16_t reserved;
432         uint16_t msixcap_localid_ba_nic;
433         uint16_t msixcap_localid_ba_rocee;
434         uint16_t vf_intr_vector_number;
435         uint16_t rsv[7];
436 };
437
438 #define HNS3_UMV_SPC_ALC_B      0
439 struct hns3_umv_spc_alc_cmd {
440         uint8_t allocate;
441         uint8_t rsv1[3];
442         uint32_t space_size;
443         uint8_t rsv2[16];
444 };
445
446 #define HNS3_CFG_OFFSET_S               0
447 #define HNS3_CFG_OFFSET_M               GENMASK(19, 0)
448 #define HNS3_CFG_RD_LEN_S               24
449 #define HNS3_CFG_RD_LEN_M               GENMASK(27, 24)
450 #define HNS3_CFG_RD_LEN_BYTES           16
451 #define HNS3_CFG_RD_LEN_UNIT            4
452
453 #define HNS3_CFG_VMDQ_S                 0
454 #define HNS3_CFG_VMDQ_M                 GENMASK(7, 0)
455 #define HNS3_CFG_TC_NUM_S               8
456 #define HNS3_CFG_TC_NUM_M               GENMASK(15, 8)
457 #define HNS3_CFG_TQP_DESC_N_S           16
458 #define HNS3_CFG_TQP_DESC_N_M           GENMASK(31, 16)
459 #define HNS3_CFG_PHY_ADDR_S             0
460 #define HNS3_CFG_PHY_ADDR_M             GENMASK(7, 0)
461 #define HNS3_CFG_MEDIA_TP_S             8
462 #define HNS3_CFG_MEDIA_TP_M             GENMASK(15, 8)
463 #define HNS3_CFG_RX_BUF_LEN_S           16
464 #define HNS3_CFG_RX_BUF_LEN_M           GENMASK(31, 16)
465 #define HNS3_CFG_MAC_ADDR_H_S           0
466 #define HNS3_CFG_MAC_ADDR_H_M           GENMASK(15, 0)
467 #define HNS3_CFG_DEFAULT_SPEED_S        16
468 #define HNS3_CFG_DEFAULT_SPEED_M        GENMASK(23, 16)
469 #define HNS3_CFG_RSS_SIZE_S             24
470 #define HNS3_CFG_RSS_SIZE_M             GENMASK(31, 24)
471 #define HNS3_CFG_SPEED_ABILITY_S        0
472 #define HNS3_CFG_SPEED_ABILITY_M        GENMASK(7, 0)
473 #define HNS3_CFG_UMV_TBL_SPACE_S        16
474 #define HNS3_CFG_UMV_TBL_SPACE_M        GENMASK(31, 16)
475 #define HNS3_CFG_EXT_RSS_SIZE_S         0
476 #define HNS3_CFG_EXT_RSS_SIZE_M         GENMASK(3, 0)
477
478 #define HNS3_ACCEPT_TAG1_B              0
479 #define HNS3_ACCEPT_UNTAG1_B            1
480 #define HNS3_PORT_INS_TAG1_EN_B         2
481 #define HNS3_PORT_INS_TAG2_EN_B         3
482 #define HNS3_CFG_NIC_ROCE_SEL_B         4
483 #define HNS3_ACCEPT_TAG2_B              5
484 #define HNS3_ACCEPT_UNTAG2_B            6
485 #define HNS3_TAG_SHIFT_MODE_EN_B        7
486
487 #define HNS3_REM_TAG1_EN_B              0
488 #define HNS3_REM_TAG2_EN_B              1
489 #define HNS3_SHOW_TAG1_EN_B             2
490 #define HNS3_SHOW_TAG2_EN_B             3
491 #define HNS3_DISCARD_TAG1_EN_B          5
492 #define HNS3_DISCARD_TAG2_EN_B          6
493
494 /* Factor used to calculate offset and bitmap of VF num */
495 #define HNS3_VF_NUM_PER_CMD             64
496 #define HNS3_VF_NUM_PER_BYTE            8
497
498 struct hns3_cfg_param_cmd {
499         uint32_t offset;
500         uint32_t rsv;
501         uint32_t param[4];
502 };
503
504 #define HNS3_VPORT_VTAG_RX_CFG_CMD_VF_BITMAP_NUM        8
505 struct hns3_vport_vtag_rx_cfg_cmd {
506         uint8_t vport_vlan_cfg;
507         uint8_t vf_offset;
508         uint8_t rsv1[6];
509         uint8_t vf_bitmap[HNS3_VPORT_VTAG_RX_CFG_CMD_VF_BITMAP_NUM];
510         uint8_t rsv2[8];
511 };
512
513 struct hns3_vport_vtag_tx_cfg_cmd {
514         uint8_t vport_vlan_cfg;
515         uint8_t vf_offset;
516         uint8_t rsv1[2];
517         uint16_t def_vlan_tag1;
518         uint16_t def_vlan_tag2;
519         uint8_t vf_bitmap[8];
520         uint8_t rsv2[8];
521 };
522
523
524 struct hns3_vlan_filter_ctrl_cmd {
525         uint8_t vlan_type;
526         uint8_t vlan_fe;
527         uint8_t rsv1[2];
528         uint8_t vf_id;
529         uint8_t rsv2[19];
530 };
531
532 #define HNS3_VLAN_OFFSET_BITMAP_NUM     20
533 struct hns3_vlan_filter_pf_cfg_cmd {
534         uint8_t vlan_offset;
535         uint8_t vlan_cfg;
536         uint8_t rsv[2];
537         uint8_t vlan_offset_bitmap[HNS3_VLAN_OFFSET_BITMAP_NUM];
538 };
539
540 #define HNS3_VLAN_FILTER_VF_CFG_CMD_VF_BITMAP_NUM       16
541 struct hns3_vlan_filter_vf_cfg_cmd {
542         uint16_t vlan_id;
543         uint8_t  resp_code;
544         uint8_t  rsv;
545         uint8_t  vlan_cfg;
546         uint8_t  rsv1[3];
547         uint8_t  vf_bitmap[HNS3_VLAN_FILTER_VF_CFG_CMD_VF_BITMAP_NUM];
548 };
549
550 struct hns3_tx_vlan_type_cfg_cmd {
551         uint16_t ot_vlan_type;
552         uint16_t in_vlan_type;
553         uint8_t rsv[20];
554 };
555
556 struct hns3_rx_vlan_type_cfg_cmd {
557         uint16_t ot_fst_vlan_type;
558         uint16_t ot_sec_vlan_type;
559         uint16_t in_fst_vlan_type;
560         uint16_t in_sec_vlan_type;
561         uint8_t rsv[16];
562 };
563
564 #define HNS3_TSO_MSS_MIN_S      0
565 #define HNS3_TSO_MSS_MIN_M      GENMASK(13, 0)
566
567 #define HNS3_TSO_MSS_MAX_S      16
568 #define HNS3_TSO_MSS_MAX_M      GENMASK(29, 16)
569
570 struct hns3_cfg_tso_status_cmd {
571         rte_le16_t tso_mss_min;
572         rte_le16_t tso_mss_max;
573         uint8_t rsv[20];
574 };
575
576 #define HNS3_GRO_EN_B           0
577 struct hns3_cfg_gro_status_cmd {
578         rte_le16_t gro_en;
579         uint8_t rsv[22];
580 };
581
582 #define HNS3_TSO_MSS_MIN        256
583 #define HNS3_TSO_MSS_MAX        9668
584
585 #define HNS3_RSS_HASH_KEY_OFFSET_B      4
586
587 #define HNS3_RSS_CFG_TBL_SIZE   16
588 #define HNS3_RSS_HASH_KEY_NUM   16
589 /* Configure the algorithm mode and Hash Key, opcode:0x0D01 */
590 struct hns3_rss_generic_config_cmd {
591         /* Hash_algorithm(8.0~8.3), hash_key_offset(8.4~8.7) */
592         uint8_t hash_config;
593         uint8_t rsv[7];
594         uint8_t hash_key[HNS3_RSS_HASH_KEY_NUM];
595 };
596
597 /* Configure the tuple selection for RSS hash input, opcode:0x0D02 */
598 struct hns3_rss_input_tuple_cmd {
599         uint64_t tuple_field;
600         uint8_t rsv[16];
601 };
602
603 #define HNS3_RSS_CFG_TBL_SIZE           16
604 #define HNS3_RSS_CFG_TBL_SIZE_H         4
605 #define HNS3_RSS_CFG_TBL_BW_H           2
606 #define HNS3_RSS_CFG_TBL_BW_L           8
607
608 /* Configure the indirection table, opcode:0x0D07 */
609 struct hns3_rss_indirection_table_cmd {
610         uint16_t start_table_index;  /* Bit3~0 must be 0x0. */
611         uint16_t rss_set_bitmap;
612         uint8_t rss_result_h[HNS3_RSS_CFG_TBL_SIZE_H];
613         uint8_t rss_result_l[HNS3_RSS_CFG_TBL_SIZE];
614 };
615
616 #define HNS3_RSS_TC_OFFSET_S            0
617 #define HNS3_RSS_TC_OFFSET_M            GENMASK(10, 0)
618 #define HNS3_RSS_TC_SIZE_MSB_S          11
619 #define HNS3_RSS_TC_SIZE_MSB_OFFSET     3
620 #define HNS3_RSS_TC_SIZE_S              12
621 #define HNS3_RSS_TC_SIZE_M              GENMASK(14, 12)
622 #define HNS3_RSS_TC_VALID_B             15
623
624 /* Configure the tc_size and tc_offset, opcode:0x0D08 */
625 struct hns3_rss_tc_mode_cmd {
626         uint16_t rss_tc_mode[HNS3_MAX_TC_NUM];
627         uint8_t rsv[8];
628 };
629
630 #define HNS3_LINK_STATUS_UP_B   0
631 #define HNS3_LINK_STATUS_UP_M   BIT(HNS3_LINK_STATUS_UP_B)
632 struct hns3_link_status_cmd {
633         uint8_t status;
634         uint8_t rsv[23];
635 };
636
637 struct hns3_promisc_param {
638         uint8_t vf_id;
639         uint8_t enable;
640 };
641
642 #define HNS3_PROMISC_TX_EN_B    BIT(4)
643 #define HNS3_PROMISC_RX_EN_B    BIT(5)
644 #define HNS3_PROMISC_EN_B       1
645 #define HNS3_PROMISC_EN_ALL     0x7
646 #define HNS3_PROMISC_EN_UC      0x1
647 #define HNS3_PROMISC_EN_MC      0x2
648 #define HNS3_PROMISC_EN_BC      0x4
649 struct hns3_promisc_cfg_cmd {
650         uint8_t flag;
651         uint8_t vf_id;
652         uint16_t rsv0;
653         uint8_t rsv1[20];
654 };
655
656 enum hns3_promisc_type {
657         HNS3_UNICAST    = 1,
658         HNS3_MULTICAST  = 2,
659         HNS3_BROADCAST  = 3,
660 };
661
662 #define HNS3_LINK_EVENT_REPORT_EN_B     0
663 #define HNS3_NCSI_ERROR_REPORT_EN_B     1
664 #define HNS3_FIRMWARE_PHY_DRIVER_EN_B   2
665 struct hns3_firmware_compat_cmd {
666         uint32_t compat;
667         uint8_t rsv[20];
668 };
669
670 /* Bitmap flags in supported, advertising and lp_advertising */
671 #define HNS3_PHY_LINK_SPEED_10M_HD_BIT          BIT(0)
672 #define HNS3_PHY_LINK_SPEED_10M_BIT             BIT(1)
673 #define HNS3_PHY_LINK_SPEED_100M_HD_BIT         BIT(2)
674 #define HNS3_PHY_LINK_SPEED_100M_BIT            BIT(3)
675 #define HNS3_PHY_LINK_MODE_AUTONEG_BIT          BIT(6)
676 #define HNS3_PHY_LINK_MODE_PAUSE_BIT            BIT(13)
677 #define HNS3_PHY_LINK_MODE_ASYM_PAUSE_BIT       BIT(14)
678
679 #define HNS3_PHY_PARAM_CFG_BD_NUM       2
680 struct hns3_phy_params_bd0_cmd {
681         uint32_t speed;
682 #define HNS3_PHY_DUPLEX_CFG_B           0
683         uint8_t duplex;
684 #define HNS3_PHY_AUTONEG_CFG_B  0
685         uint8_t autoneg;
686         uint8_t eth_tp_mdix;
687         uint8_t eth_tp_mdix_ctrl;
688         uint8_t port;
689         uint8_t transceiver;
690         uint8_t phy_address;
691         uint8_t rsv;
692         uint32_t supported;
693         uint32_t advertising;
694         uint32_t lp_advertising;
695 };
696
697 struct hns3_phy_params_bd1_cmd {
698         uint8_t master_slave_cfg;
699         uint8_t master_slave_state;
700         uint8_t rsv1[2];
701         uint32_t rsv2[5];
702 };
703
704 #define HNS3_MAC_TX_EN_B                6
705 #define HNS3_MAC_RX_EN_B                7
706 #define HNS3_MAC_PAD_TX_B               11
707 #define HNS3_MAC_PAD_RX_B               12
708 #define HNS3_MAC_1588_TX_B              13
709 #define HNS3_MAC_1588_RX_B              14
710 #define HNS3_MAC_APP_LP_B               15
711 #define HNS3_MAC_LINE_LP_B              16
712 #define HNS3_MAC_FCS_TX_B               17
713 #define HNS3_MAC_RX_OVERSIZE_TRUNCATE_B 18
714 #define HNS3_MAC_RX_FCS_STRIP_B         19
715 #define HNS3_MAC_RX_FCS_B               20
716 #define HNS3_MAC_TX_UNDER_MIN_ERR_B     21
717 #define HNS3_MAC_TX_OVERSIZE_TRUNCATE_B 22
718
719 struct hns3_config_mac_mode_cmd {
720         uint32_t txrx_pad_fcs_loop_en;
721         uint8_t  rsv[20];
722 };
723
724 #define HNS3_CFG_SPEED_10M              6
725 #define HNS3_CFG_SPEED_100M             7
726 #define HNS3_CFG_SPEED_1G               0
727 #define HNS3_CFG_SPEED_10G              1
728 #define HNS3_CFG_SPEED_25G              2
729 #define HNS3_CFG_SPEED_40G              3
730 #define HNS3_CFG_SPEED_50G              4
731 #define HNS3_CFG_SPEED_100G             5
732 #define HNS3_CFG_SPEED_200G             8
733
734 #define HNS3_CFG_SPEED_S                0
735 #define HNS3_CFG_SPEED_M                GENMASK(5, 0)
736 #define HNS3_CFG_DUPLEX_B               7
737 #define HNS3_CFG_DUPLEX_M               BIT(HNS3_CFG_DUPLEX_B)
738
739 #define HNS3_CFG_MAC_SPEED_CHANGE_EN_B  0
740
741 struct hns3_config_mac_speed_dup_cmd {
742         uint8_t speed_dup;
743         uint8_t mac_change_fec_en;
744         uint8_t rsv[22];
745 };
746
747 #define HNS3_TQP_ENABLE_B               0
748
749 #define HNS3_MAC_CFG_AN_EN_B            0
750 #define HNS3_MAC_CFG_AN_INT_EN_B        1
751 #define HNS3_MAC_CFG_AN_INT_MSK_B       2
752 #define HNS3_MAC_CFG_AN_INT_CLR_B       3
753 #define HNS3_MAC_CFG_AN_RST_B           4
754
755 #define HNS3_MAC_CFG_AN_EN      BIT(HNS3_MAC_CFG_AN_EN_B)
756
757 struct hns3_config_auto_neg_cmd {
758         uint32_t  cfg_an_cmd_flag;
759         uint8_t   rsv[20];
760 };
761
762 #define HNS3_MAC_CFG_FEC_AUTO_EN_B      0
763 #define HNS3_MAC_CFG_FEC_MODE_S         1
764 #define HNS3_MAC_CFG_FEC_MODE_M GENMASK(3, 1)
765 #define HNS3_MAC_FEC_OFF                0
766 #define HNS3_MAC_FEC_BASER              1
767 #define HNS3_MAC_FEC_RS                 2
768
769 #define HNS3_SFP_INFO_BD0_LEN  20UL
770 #define HNS3_SFP_INFO_BDX_LEN  24UL
771
772 struct hns3_sfp_info_bd0_cmd {
773         uint16_t offset;
774         uint16_t read_len;
775         uint8_t data[HNS3_SFP_INFO_BD0_LEN];
776 };
777
778 struct hns3_sfp_type {
779         uint8_t type;
780         uint8_t ext_type;
781 };
782
783 struct hns3_sfp_speed_cmd {
784         uint32_t  sfp_speed;
785         uint8_t   query_type; /* 0: sfp speed, 1: active fec */
786         uint8_t   active_fec; /* current FEC mode */
787         uint16_t  rsv1;
788         uint32_t  rsv2[4];
789 };
790
791 /* Configure FEC mode, opcode:0x031A */
792 struct hns3_config_fec_cmd {
793         uint8_t fec_mode;
794         uint8_t rsv[23];
795 };
796
797 #define HNS3_MAC_MGR_MASK_VLAN_B                BIT(0)
798 #define HNS3_MAC_MGR_MASK_MAC_B                 BIT(1)
799 #define HNS3_MAC_MGR_MASK_ETHERTYPE_B           BIT(2)
800 #define HNS3_MAC_ETHERTYPE_LLDP                 0x88cc
801
802 struct hns3_mac_mgr_tbl_entry_cmd {
803         uint8_t   flags;
804         uint8_t   resp_code;
805         uint16_t  vlan_tag;
806         uint32_t  mac_addr_hi32;
807         uint16_t  mac_addr_lo16;
808         uint16_t  rsv1;
809         uint16_t  ethter_type;
810         uint16_t  egress_port;
811         uint16_t  egress_queue;
812         uint8_t   sw_port_id_aware;
813         uint8_t   rsv2;
814         uint8_t   i_port_bitmap;
815         uint8_t   i_port_direction;
816         uint8_t   rsv3[2];
817 };
818
819 struct hns3_cfg_com_tqp_queue_cmd {
820         uint16_t tqp_id;
821         uint16_t stream_id;
822         uint8_t enable;
823         uint8_t rsv[19];
824 };
825
826 #define HNS3_TQP_MAP_TYPE_PF            0
827 #define HNS3_TQP_MAP_TYPE_VF            1
828 #define HNS3_TQP_MAP_TYPE_B             0
829 #define HNS3_TQP_MAP_EN_B               1
830
831 struct hns3_tqp_map_cmd {
832         uint16_t tqp_id;        /* Absolute tqp id for in this pf */
833         uint8_t tqp_vf;         /* VF id */
834         uint8_t tqp_flag;       /* Indicate it's pf or vf tqp */
835         uint16_t tqp_vid;       /* Virtual id in this pf/vf */
836         uint8_t rsv[18];
837 };
838
839 enum hns3_ring_type {
840         HNS3_RING_TYPE_TX,
841         HNS3_RING_TYPE_RX
842 };
843
844 enum hns3_int_gl_idx {
845         HNS3_RING_GL_RX,
846         HNS3_RING_GL_TX,
847         HNS3_RING_GL_IMMEDIATE = 3
848 };
849
850 #define HNS3_RING_GL_IDX_S      0
851 #define HNS3_RING_GL_IDX_M      GENMASK(1, 0)
852
853 #define HNS3_VECTOR_ELEMENTS_PER_CMD    10
854
855 #define HNS3_INT_TYPE_S         0
856 #define HNS3_INT_TYPE_M         GENMASK(1, 0)
857 #define HNS3_TQP_ID_S           2
858 #define HNS3_TQP_ID_M           GENMASK(12, 2)
859 #define HNS3_INT_GL_IDX_S       13
860 #define HNS3_INT_GL_IDX_M       GENMASK(14, 13)
861 #define HNS3_TQP_INT_ID_L_S     0
862 #define HNS3_TQP_INT_ID_L_M     GENMASK(7, 0)
863 #define HNS3_TQP_INT_ID_H_S     8
864 #define HNS3_TQP_INT_ID_H_M     GENMASK(15, 8)
865 struct hns3_ctrl_vector_chain_cmd {
866         uint8_t int_vector_id;    /* the low order of the interrupt id */
867         uint8_t int_cause_num;
868         uint16_t tqp_type_and_id[HNS3_VECTOR_ELEMENTS_PER_CMD];
869         uint8_t vfid;
870         uint8_t int_vector_id_h;  /* the high order of the interrupt id */
871 };
872
873 struct hns3_config_max_frm_size_cmd {
874         uint16_t max_frm_size;
875         uint8_t min_frm_size;
876         uint8_t rsv[21];
877 };
878
879 enum hns3_mac_vlan_tbl_opcode {
880         HNS3_MAC_VLAN_ADD,      /* Add new or modify mac_vlan */
881         HNS3_MAC_VLAN_UPDATE,   /* Modify other fields of this table */
882         HNS3_MAC_VLAN_REMOVE,   /* Remove a entry through mac_vlan key */
883         HNS3_MAC_VLAN_LKUP,     /* Lookup a entry through mac_vlan key */
884 };
885
886 enum hns3_mac_vlan_add_resp_code {
887         HNS3_ADD_UC_OVERFLOW = 2,  /* ADD failed for UC overflow */
888         HNS3_ADD_MC_OVERFLOW,      /* ADD failed for MC overflow */
889 };
890
891 #define HNS3_MC_MAC_VLAN_ADD_DESC_NUM   3
892
893 #define HNS3_MAC_VLAN_BIT0_EN_B         0
894 #define HNS3_MAC_VLAN_BIT1_EN_B         1
895 #define HNS3_MAC_EPORT_SW_EN_B          12
896 #define HNS3_MAC_EPORT_TYPE_B           11
897 #define HNS3_MAC_EPORT_VFID_S           3
898 #define HNS3_MAC_EPORT_VFID_M           GENMASK(10, 3)
899 #define HNS3_MAC_EPORT_PFID_S           0
900 #define HNS3_MAC_EPORT_PFID_M           GENMASK(2, 0)
901 struct hns3_mac_vlan_tbl_entry_cmd {
902         uint8_t   flags;
903         uint8_t   resp_code;
904         uint16_t  vlan_tag;
905         uint32_t  mac_addr_hi32;
906         uint16_t  mac_addr_lo16;
907         uint16_t  rsv1;
908         uint8_t   entry_type;
909         uint8_t   mc_mac_en;
910         uint16_t  egress_port;
911         uint16_t  egress_queue;
912         uint8_t   rsv2[6];
913 };
914
915 #define HNS3_TQP_RESET_B        0
916 struct hns3_reset_tqp_queue_cmd {
917         uint16_t tqp_id;
918         uint8_t reset_req;
919         uint8_t ready_to_reset;
920         uint8_t queue_direction;
921         uint8_t rsv[19];
922 };
923
924 #define HNS3_CFG_RESET_MAC_B            3
925 #define HNS3_CFG_RESET_FUNC_B           7
926 struct hns3_reset_cmd {
927         uint8_t mac_func_reset;
928         uint8_t fun_reset_vfid;
929         uint8_t rsv[22];
930 };
931
932 #define HNS3_QUERY_DEV_SPECS_BD_NUM             4
933 struct hns3_dev_specs_0_cmd {
934         uint32_t rsv0;
935         uint32_t mac_entry_num;
936         uint32_t mng_entry_num;
937         uint16_t rss_ind_tbl_size;
938         uint16_t rss_key_size;
939         uint16_t intr_ql_max;
940         uint8_t max_non_tso_bd_num;
941         uint8_t rsv1;
942         uint32_t max_tm_rate;
943 };
944
945 struct hns3_query_rpu_cmd {
946         uint32_t tc_queue_num;
947         uint32_t rsv1[2];
948         uint32_t rpu_rx_pkt_drop_cnt;
949         uint32_t rsv2[2];
950 };
951
952 #define HNS3_MAX_TQP_NUM_HIP08_PF       64
953 #define HNS3_DEFAULT_TX_BUF             0x4000    /* 16k  bytes */
954 #define HNS3_TOTAL_PKT_BUF              0x108000  /* 1.03125M bytes */
955 #define HNS3_DEFAULT_DV                 0xA000    /* 40k byte */
956 #define HNS3_DEFAULT_NON_DCB_DV         0x7800    /* 30K byte */
957 #define HNS3_NON_DCB_ADDITIONAL_BUF     0x1400    /* 5120 byte */
958
959 #define HNS3_TYPE_CRQ                   0
960 #define HNS3_TYPE_CSQ                   1
961
962 #define HNS3_NIC_SW_RST_RDY_B           16
963 #define HNS3_NIC_SW_RST_RDY                     BIT(HNS3_NIC_SW_RST_RDY_B)
964 #define HNS3_NIC_CMQ_DESC_NUM           1024
965 #define HNS3_NIC_CMQ_DESC_NUM_S         3
966
967 #define HNS3_CMD_SEND_SYNC(flag) \
968         ((flag) & HNS3_CMD_FLAG_NO_INTR)
969
970 void hns3_cmd_reuse_desc(struct hns3_cmd_desc *desc, bool is_read);
971 void hns3_cmd_setup_basic_desc(struct hns3_cmd_desc *desc,
972                                 enum hns3_opcode_type opcode, bool is_read);
973 int hns3_cmd_send(struct hns3_hw *hw, struct hns3_cmd_desc *desc, int num);
974 int hns3_cmd_init_queue(struct hns3_hw *hw);
975 int hns3_cmd_init(struct hns3_hw *hw);
976 void hns3_cmd_destroy_queue(struct hns3_hw *hw);
977 void hns3_cmd_uninit(struct hns3_hw *hw);
978
979 #endif /* _HNS3_CMD_H_ */