6b1b7deb4fbac03879b9b2932257ea306c36b7f8
[dpdk.git] / drivers / net / hinic / base / hinic_pmd_niccfg.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Huawei Technologies Co., Ltd
3  */
4
5 #include "hinic_compat.h"
6 #include "hinic_pmd_hwdev.h"
7 #include "hinic_pmd_hwif.h"
8 #include "hinic_pmd_eqs.h"
9 #include "hinic_pmd_wq.h"
10 #include "hinic_pmd_mgmt.h"
11 #include "hinic_pmd_cmdq.h"
12 #include "hinic_pmd_niccfg.h"
13 #include "hinic_pmd_mbox.h"
14
15 #define l2nic_msg_to_mgmt_sync(hwdev, cmd, buf_in,              \
16                                in_size, buf_out, out_size)      \
17         hinic_msg_to_mgmt_sync(hwdev, HINIC_MOD_L2NIC, cmd,     \
18                         buf_in, in_size,                        \
19                         buf_out, out_size, 0)
20
21
22 /**
23  * hinic_init_function_table - Initialize function table.
24  *
25  * @param hwdev
26  *   The hardware interface of a nic device.
27  * @param rx_buf_sz
28  *   Receive buffer size.
29  *
30  * @return
31  *   0 on success.
32  *   negative error value otherwise.
33  */
34 int hinic_init_function_table(void *hwdev, u16 rx_buf_sz)
35 {
36         struct hinic_function_table function_table;
37         u16 out_size = sizeof(function_table);
38         int err;
39
40         if (!hwdev) {
41                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
42                 return -EINVAL;
43         }
44
45         memset(&function_table, 0, sizeof(function_table));
46         function_table.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
47         function_table.func_id = hinic_global_func_id(hwdev);
48         function_table.mtu = 0x3FFF;    /* default, max mtu */
49         function_table.rx_wqe_buf_size = rx_buf_sz;
50
51         err = hinic_msg_to_mgmt_sync(hwdev, HINIC_MOD_L2NIC,
52                                      HINIC_PORT_CMD_INIT_FUNC,
53                                      &function_table, sizeof(function_table),
54                                      &function_table, &out_size, 0);
55         if (err || function_table.mgmt_msg_head.status || !out_size) {
56                 PMD_DRV_LOG(ERR,
57                         "Failed to init func table, err: %d, status: 0x%x, out size: 0x%x",
58                         err, function_table.mgmt_msg_head.status, out_size);
59                 return -EFAULT;
60         }
61
62         return 0;
63 }
64
65 /**
66  * hinic_get_base_qpn - Get global queue number.
67  *
68  * @param hwdev
69  *   The hardware interface of a nic device.
70  * @param global_qpn
71  *   Global queue number.
72  *
73  * @return
74  *   0 on success.
75  *   negative error value otherwise.
76  */
77 int hinic_get_base_qpn(void *hwdev, u16 *global_qpn)
78 {
79         struct hinic_cmd_qpn cmd_qpn;
80         u16 out_size = sizeof(cmd_qpn);
81         int err;
82
83         if (!hwdev || !global_qpn) {
84                 PMD_DRV_LOG(ERR, "Hwdev or global_qpn is NULL");
85                 return -EINVAL;
86         }
87
88         memset(&cmd_qpn, 0, sizeof(cmd_qpn));
89         cmd_qpn.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
90         cmd_qpn.func_id = hinic_global_func_id(hwdev);
91
92         err = hinic_msg_to_mgmt_sync(hwdev, HINIC_MOD_L2NIC,
93                                      HINIC_PORT_CMD_GET_GLOBAL_QPN,
94                                      &cmd_qpn, sizeof(cmd_qpn), &cmd_qpn,
95                                      &out_size, 0);
96         if (err || !out_size || cmd_qpn.mgmt_msg_head.status) {
97                 PMD_DRV_LOG(ERR,
98                         "Failed to get base qpn, err: %d, status: 0x%x, out size: 0x%x",
99                         err, cmd_qpn.mgmt_msg_head.status, out_size);
100                 return -EINVAL;
101         }
102
103         *global_qpn = cmd_qpn.base_qpn;
104
105         return 0;
106 }
107
108 /**
109  * hinic_set_mac - Init mac_vlan table in NIC.
110  *
111  * @param hwdev
112  *   The hardware interface of a nic device.
113  * @param mac_addr
114  *   MAC address.
115  * @param vlan_id
116  *   Set 0 for mac_vlan table initialization.
117  * @param func_id
118  *   Global function id of NIC.
119  *
120  * @return
121  *   0 on success.
122  *   negative error value otherwise.
123  */
124 int hinic_set_mac(void *hwdev, u8 *mac_addr, u16 vlan_id, u16 func_id)
125 {
126         struct hinic_port_mac_set mac_info;
127         u16 out_size = sizeof(mac_info);
128         int err;
129
130         if (!hwdev || !mac_addr) {
131                 PMD_DRV_LOG(ERR, "Hwdev or mac_addr is NULL");
132                 return -EINVAL;
133         }
134
135         memset(&mac_info, 0, sizeof(mac_info));
136         mac_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
137         mac_info.func_id = func_id;
138         mac_info.vlan_id = vlan_id;
139         memmove(mac_info.mac, mac_addr, ETH_ALEN);
140
141         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_MAC, &mac_info,
142                                      sizeof(mac_info), &mac_info, &out_size);
143         if (err || !out_size || (mac_info.mgmt_msg_head.status &&
144             mac_info.mgmt_msg_head.status != HINIC_PF_SET_VF_ALREADY)) {
145                 PMD_DRV_LOG(ERR, "Failed to set MAC, err: %d, status: 0x%x, out size: 0x%x",
146                         err, mac_info.mgmt_msg_head.status, out_size);
147                 return -EINVAL;
148         }
149
150         if (mac_info.mgmt_msg_head.status == HINIC_PF_SET_VF_ALREADY) {
151                 PMD_DRV_LOG(WARNING, "PF has already set vf mac, Ignore set operation.");
152                 return HINIC_PF_SET_VF_ALREADY;
153         }
154
155         return 0;
156 }
157
158 /**
159  * hinic_del_mac - Uninit mac_vlan table in NIC.
160  *
161  * @param hwdev
162  *   The hardware interface of a nic device.
163  * @param mac_addr
164  *   MAC address.
165  * @param vlan_id
166  *   Set 0 for mac_vlan table initialization.
167  * @param func_id
168  *   Global function id of NIC.
169  *
170  * @return
171  *   0 on success.
172  *   negative error value otherwise.
173  */
174 int hinic_del_mac(void *hwdev, u8 *mac_addr, u16 vlan_id, u16 func_id)
175 {
176         struct hinic_port_mac_set mac_info;
177         u16 out_size = sizeof(mac_info);
178         int err;
179
180         if (!hwdev || !mac_addr) {
181                 PMD_DRV_LOG(ERR, "Hwdev or mac_addr is NULL");
182                 return -EINVAL;
183         }
184
185         if (vlan_id >= VLAN_N_VID) {
186                 PMD_DRV_LOG(ERR, "Invalid VLAN number");
187                 return -EINVAL;
188         }
189
190         memset(&mac_info, 0, sizeof(mac_info));
191         mac_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
192         mac_info.func_id = func_id;
193         mac_info.vlan_id = vlan_id;
194         memmove(mac_info.mac, mac_addr, ETH_ALEN);
195
196         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_DEL_MAC, &mac_info,
197                                      sizeof(mac_info), &mac_info, &out_size);
198         if (err || !out_size || (mac_info.mgmt_msg_head.status &&
199                 mac_info.mgmt_msg_head.status != HINIC_PF_SET_VF_ALREADY)) {
200                 PMD_DRV_LOG(ERR, "Failed to delete MAC, err: %d, status: 0x%x, out size: 0x%x",
201                         err, mac_info.mgmt_msg_head.status, out_size);
202                 return -EINVAL;
203         }
204         if (mac_info.mgmt_msg_head.status == HINIC_PF_SET_VF_ALREADY) {
205                 PMD_DRV_LOG(WARNING, "PF has already set vf mac, Ignore delete operation.");
206                 return HINIC_PF_SET_VF_ALREADY;
207         }
208
209         return 0;
210 }
211
212 /**
213  * hinic_get_default_mac - Get default mac address from hardware.
214  *
215  * @param hwdev
216  *   The hardware interface of a nic device.
217  * @param mac_addr
218  *   MAC address.
219  *
220  * @return
221  *   0 on success.
222  *   negative error value otherwise.
223  */
224 int hinic_get_default_mac(void *hwdev, u8 *mac_addr)
225 {
226         struct hinic_port_mac_set mac_info;
227         u16 out_size = sizeof(mac_info);
228         int err;
229
230         if (!hwdev || !mac_addr) {
231                 PMD_DRV_LOG(ERR, "Hwdev or mac_addr is NULL");
232                 return -EINVAL;
233         }
234
235         memset(&mac_info, 0, sizeof(mac_info));
236         mac_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
237         mac_info.func_id = hinic_global_func_id(hwdev);
238
239         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_MAC,
240                                      &mac_info, sizeof(mac_info),
241                                      &mac_info, &out_size);
242         if (err || !out_size || mac_info.mgmt_msg_head.status) {
243                 PMD_DRV_LOG(ERR, "Failed to get mac, err: %d, status: 0x%x, out size: 0x%x",
244                         err, mac_info.mgmt_msg_head.status, out_size);
245                 return -EINVAL;
246         }
247
248         memmove(mac_addr, mac_info.mac, ETH_ALEN);
249
250         return 0;
251 }
252
253 /**
254 *  hinic_update_mac - Update mac address to hardware.
255 *
256 * @param hwdev
257 *   The hardware interface of a nic device.
258 * @param old_mac
259 *   Old mac address.
260 * @param new_mac
261 *   New mac address.
262 * @param vlan_id
263 *   Set 0 for mac_vlan table initialization.
264 * @param func_id
265 *   Global function id of NIC.
266 *
267 * @return
268 *   0 on success.
269 *   negative error value otherwise.
270 */
271 int hinic_update_mac(void *hwdev, u8 *old_mac, u8 *new_mac, u16 vlan_id,
272                      u16 func_id)
273 {
274         struct hinic_port_mac_update mac_info;
275         u16 out_size = sizeof(mac_info);
276         int err;
277
278         if (!hwdev || !old_mac || !new_mac) {
279                 PMD_DRV_LOG(ERR, "Hwdev, old_mac or new_mac is NULL");
280                 return -EINVAL;
281         }
282
283         memset(&mac_info, 0, sizeof(mac_info));
284         mac_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
285         mac_info.func_id = func_id;
286         mac_info.vlan_id = vlan_id;
287         memcpy(mac_info.old_mac, old_mac, ETH_ALEN);
288         memcpy(mac_info.new_mac, new_mac, ETH_ALEN);
289
290         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_UPDATE_MAC,
291                                      &mac_info, sizeof(mac_info),
292                                      &mac_info, &out_size);
293         if (err || !out_size ||
294             (mac_info.mgmt_msg_head.status &&
295              mac_info.mgmt_msg_head.status != HINIC_PF_SET_VF_ALREADY)) {
296                 PMD_DRV_LOG(ERR, "Failed to update MAC, err: %d, status: 0x%x, out size: 0x%x",
297                             err, mac_info.mgmt_msg_head.status, out_size);
298                 return -EINVAL;
299         }
300         if (mac_info.mgmt_msg_head.status == HINIC_PF_SET_VF_ALREADY) {
301                 PMD_DRV_LOG(WARNING, "PF has already set vf mac, Ignore update operation");
302                 return HINIC_PF_SET_VF_ALREADY;
303         }
304
305         return 0;
306 }
307
308 /**
309  * hinic_set_port_mtu -  Set MTU to port.
310  *
311  * @param hwdev
312  *   The hardware interface of a nic device.
313  * @param new_mtu
314  *   MTU size.
315  *
316  * @return
317  *   0 on success.
318  *   negative error value otherwise.
319  */
320 int hinic_set_port_mtu(void *hwdev, u32 new_mtu)
321 {
322         struct hinic_mtu mtu_info;
323         u16 out_size = sizeof(mtu_info);
324         int err;
325
326         if (!hwdev) {
327                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
328                 return -EINVAL;
329         }
330
331         memset(&mtu_info, 0, sizeof(mtu_info));
332         mtu_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
333         mtu_info.func_id = hinic_global_func_id(hwdev);
334         mtu_info.mtu = new_mtu;
335
336         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_CHANGE_MTU,
337                                      &mtu_info, sizeof(mtu_info),
338                                      &mtu_info, &out_size);
339         if (err || !out_size || mtu_info.mgmt_msg_head.status) {
340                 PMD_DRV_LOG(ERR, "Failed to set mtu, err: %d, status: 0x%x, out size: 0x%x",
341                         err, mtu_info.mgmt_msg_head.status, out_size);
342                 return -EINVAL;
343         }
344
345         return 0;
346 }
347
348 /**
349  * hinic_add_remove_vlan - Add or remove vlan id to vlan elb table.
350  *
351  * @param hwdev
352  *   The hardware interface of a nic device.
353  * @param vlan_id
354  *   Vlan id.
355  * @param func_id
356  *   Global function id of NIC.
357  * @param add
358  *   Add or remove operation.
359  *
360  * @return
361  *   0 on success.
362  *   negative error value otherwise.
363  */
364 int hinic_add_remove_vlan(void *hwdev, u16 vlan_id, u16 func_id, bool add)
365 {
366         struct hinic_vlan_config vlan_info;
367         u16 out_size = sizeof(vlan_info);
368         u8 cmd;
369         int err;
370
371         if (!hwdev) {
372                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
373                 return -EINVAL;
374         }
375
376         cmd = add ? HINIC_PORT_CMD_ADD_VLAN : HINIC_PORT_CMD_DEL_VLAN;
377
378         memset(&vlan_info, 0, sizeof(vlan_info));
379         vlan_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
380         vlan_info.func_id = func_id;
381         vlan_info.vlan_id = vlan_id;
382
383         err = l2nic_msg_to_mgmt_sync(hwdev, cmd, &vlan_info,
384                                      sizeof(vlan_info), &vlan_info,
385                                      &out_size);
386         if (err || !out_size || vlan_info.mgmt_msg_head.status) {
387                 PMD_DRV_LOG(ERR,
388                         "Failed to %s vlan, err: %d, status: 0x%x, out size: 0x%x",
389                         add ? "add" : "remove", err,
390                         vlan_info.mgmt_msg_head.status, out_size);
391                 return -EINVAL;
392         }
393
394         return 0;
395 }
396
397 /**
398  * hinic_config_vlan_filter - Enable or Disable vlan filter.
399  *
400  * @param hwdev
401  *   The hardware interface of a nic device.
402  * @param vlan_filter_ctrl
403  *   Enable or Disable.
404  *
405  * @return
406  *   0 on success.
407  *   negative error value otherwise.
408  */
409 int hinic_config_vlan_filter(void *hwdev, u32 vlan_filter_ctrl)
410 {
411         struct hinic_hwdev *nic_hwdev = (struct hinic_hwdev *)hwdev;
412         struct hinic_vlan_filter vlan_filter;
413         u16 out_size = sizeof(vlan_filter);
414         int err;
415
416         if (!hwdev)
417                 return -EINVAL;
418
419         memset(&vlan_filter, 0, sizeof(vlan_filter));
420         vlan_filter.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
421         vlan_filter.func_id = hinic_global_func_id(nic_hwdev);
422         vlan_filter.vlan_filter_ctrl = vlan_filter_ctrl;
423
424         err = l2nic_msg_to_mgmt_sync(nic_hwdev, HINIC_PORT_CMD_SET_VLAN_FILTER,
425                                      &vlan_filter, sizeof(vlan_filter),
426                                      &vlan_filter, &out_size);
427         if (vlan_filter.mgmt_msg_head.status == HINIC_MGMT_CMD_UNSUPPORTED) {
428                 err = HINIC_MGMT_CMD_UNSUPPORTED;
429         } else if ((err == HINIC_MBOX_VF_CMD_ERROR) &&
430                 (HINIC_IS_VF(nic_hwdev))) {
431                 err = HINIC_MGMT_CMD_UNSUPPORTED;
432         } else if (err || !out_size || vlan_filter.mgmt_msg_head.status) {
433                 PMD_DRV_LOG(ERR,
434                         "Failed to config vlan filter, vlan_filter_ctrl: 0x%x, err: %d, status: 0x%x, out size: 0x%x",
435                         vlan_filter_ctrl, err,
436                         vlan_filter.mgmt_msg_head.status, out_size);
437                 err = -EINVAL;
438         }
439
440         return err;
441 }
442
443 /**
444  * hinic_set_rx_vlan_offload - Enable or Disable vlan offload.
445  *
446  * @param hwdev
447  *   The hardware interface of a nic device.
448  * @param en
449  *   Enable or Disable.
450  *
451  * @return
452  *   0 on success.
453  *   negative error value otherwise.
454  */
455 int hinic_set_rx_vlan_offload(void *hwdev, u8 en)
456 {
457         struct hinic_vlan_offload vlan_cfg;
458         u16 out_size = sizeof(vlan_cfg);
459         int err;
460
461         if (!hwdev) {
462                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
463                 return -EINVAL;
464         }
465
466         memset(&vlan_cfg, 0, sizeof(vlan_cfg));
467         vlan_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
468         vlan_cfg.func_id = hinic_global_func_id(hwdev);
469         vlan_cfg.vlan_rx_offload = en;
470
471         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_RX_VLAN_OFFLOAD,
472                                         &vlan_cfg, sizeof(vlan_cfg),
473                                         &vlan_cfg, &out_size);
474         if (err || !out_size || vlan_cfg.mgmt_msg_head.status) {
475                 PMD_DRV_LOG(ERR,
476                         "Failed to set rx vlan offload, err: %d, status: 0x%x, out size: 0x%x",
477                         err, vlan_cfg.mgmt_msg_head.status, out_size);
478                 return -EINVAL;
479         }
480
481         return 0;
482 }
483
484 /**
485  * hinic_get_link_status - Get link status from hardware.
486  *
487  * @param hwdev
488  *   The hardware interface of a nic device.
489  * @param link_state
490  *   Link status.
491  *
492  * @return
493  *   0 on success.
494  *   negative error value otherwise.
495  */
496 int hinic_get_link_status(void *hwdev, u8 *link_state)
497 {
498         struct hinic_get_link get_link;
499         u16 out_size = sizeof(get_link);
500         int err;
501
502         if (!hwdev || !link_state) {
503                 PMD_DRV_LOG(ERR, "Hwdev or link_state is NULL");
504                 return -EINVAL;
505         }
506
507         memset(&get_link, 0, sizeof(get_link));
508         get_link.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
509         get_link.func_id = hinic_global_func_id(hwdev);
510
511         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_LINK_STATE,
512                                      &get_link, sizeof(get_link),
513                                      &get_link, &out_size);
514         if (err || !out_size || get_link.mgmt_msg_head.status) {
515                 PMD_DRV_LOG(ERR, "Failed to get link state, err: %d, status: 0x%x, out size: 0x%x",
516                         err, get_link.mgmt_msg_head.status, out_size);
517                 return -EINVAL;
518         }
519
520         *link_state = get_link.link_status;
521
522         return 0;
523 }
524
525 /**
526  * hinic_set_vport_enable - Notify firmware that driver is ready or not.
527  *
528  * @param hwdev
529  *   The hardware interface of a nic device.
530  * @param enable
531  *   1: driver is ready; 0: driver is not ok.
532  *
533  * @return
534  *   0 on success.
535  *   negative error value otherwise.
536  */
537 int hinic_set_vport_enable(void *hwdev, bool enable)
538 {
539         struct hinic_vport_state en_state;
540         u16 out_size = sizeof(en_state);
541         int err;
542
543         if (!hwdev) {
544                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
545                 return -EINVAL;
546         }
547
548         memset(&en_state, 0, sizeof(en_state));
549         en_state.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
550         en_state.func_id = hinic_global_func_id(hwdev);
551         en_state.state = (enable ? 1 : 0);
552
553         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_VPORT_ENABLE,
554                                      &en_state, sizeof(en_state),
555                                      &en_state, &out_size);
556         if (err || !out_size || en_state.mgmt_msg_head.status) {
557                 PMD_DRV_LOG(ERR, "Failed to set vport state, err: %d, status: 0x%x, out size: 0x%x",
558                         err, en_state.mgmt_msg_head.status, out_size);
559                 return -EINVAL;
560         }
561
562         return 0;
563 }
564
565 /**
566  * hinic_set_port_enable - Open MAG to receive packets.
567  *
568  * @param hwdev
569  *   The hardware interface of a nic device.
570  * @param enable
571  *   1: open MAG; 0: close MAG.
572  *
573  * @return
574  *   0 on success.
575  *   negative error value otherwise.
576  */
577 int hinic_set_port_enable(void *hwdev, bool enable)
578 {
579         struct hinic_port_state en_state;
580         u16 out_size = sizeof(en_state);
581         int err;
582
583         if (!hwdev) {
584                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
585                 return -EINVAL;
586         }
587
588         if (HINIC_IS_VF((struct hinic_hwdev *)hwdev))
589                 return 0;
590
591         memset(&en_state, 0, sizeof(en_state));
592         en_state.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
593         en_state.state = (enable ? HINIC_PORT_ENABLE : HINIC_PORT_DISABLE);
594
595         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_PORT_ENABLE,
596                                      &en_state, sizeof(en_state),
597                                      &en_state, &out_size);
598         if (err || !out_size || en_state.mgmt_msg_head.status) {
599                 PMD_DRV_LOG(ERR, "Failed to set phy port state, err: %d, status: 0x%x, out size: 0x%x",
600                         err, en_state.mgmt_msg_head.status, out_size);
601                 return -EINVAL;
602         }
603
604         return 0;
605 }
606
607 int hinic_get_port_info(void *hwdev, struct nic_port_info *port_info)
608 {
609         struct hinic_port_info port_msg;
610         u16 out_size = sizeof(port_msg);
611         int err;
612
613         if (!hwdev || !port_info) {
614                 PMD_DRV_LOG(ERR, "Hwdev or port_info is NULL");
615                 return -EINVAL;
616         }
617
618         memset(&port_msg, 0, sizeof(port_msg));
619         port_msg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
620         port_msg.func_id = hinic_global_func_id(hwdev);
621
622         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_PORT_INFO,
623                                      &port_msg, sizeof(port_msg),
624                                      &port_msg, &out_size);
625         if (err || !out_size || port_msg.mgmt_msg_head.status) {
626                 PMD_DRV_LOG(ERR,
627                         "Failed to get port info, err: %d, status: 0x%x, out size: 0x%x",
628                         err, port_msg.mgmt_msg_head.status, out_size);
629                 return err;
630         }
631
632         port_info->autoneg_cap = port_msg.autoneg_cap;
633         port_info->autoneg_state = port_msg.autoneg_state;
634         port_info->duplex = port_msg.duplex;
635         port_info->port_type = port_msg.port_type;
636         port_info->speed = port_msg.speed;
637
638         return 0;
639 }
640
641 int hinic_set_pause_config(void *hwdev, struct nic_pause_config nic_pause)
642 {
643         struct hinic_pause_config pause_info;
644         u16 out_size = sizeof(pause_info);
645         int err;
646
647         if (!hwdev) {
648                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
649                 return -EINVAL;
650         }
651
652         memset(&pause_info, 0, sizeof(pause_info));
653         pause_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
654         pause_info.func_id = hinic_global_func_id(hwdev);
655         pause_info.auto_neg = nic_pause.auto_neg;
656         pause_info.rx_pause = nic_pause.rx_pause;
657         pause_info.tx_pause = nic_pause.tx_pause;
658
659         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_PAUSE_INFO,
660                                      &pause_info, sizeof(pause_info),
661                                      &pause_info, &out_size);
662         if (err || !out_size || pause_info.mgmt_msg_head.status) {
663                 PMD_DRV_LOG(ERR, "Failed to set pause info, err: %d, status: 0x%x, out size: 0x%x",
664                         err, pause_info.mgmt_msg_head.status, out_size);
665                 return -EINVAL;
666         }
667
668         return 0;
669 }
670
671 int hinic_dcb_set_ets(void *hwdev, u8 *up_tc, u8 *pg_bw,
672                       u8 *pgid, u8 *up_bw, u8 *prio)
673 {
674         struct hinic_up_ets_cfg ets;
675         u16 out_size = sizeof(ets);
676         u16 up_bw_t = 0;
677         u8 pg_bw_t = 0;
678         int i, err;
679
680         if (!hwdev || !up_tc || !pg_bw || !pgid || !up_bw || !prio) {
681                 PMD_DRV_LOG(ERR, "Hwdev, up_tc, pg_bw, pgid, up_bw or prio is NULL");
682                 return -EINVAL;
683         }
684
685         for (i = 0; i < HINIC_DCB_TC_MAX; i++) {
686                 up_bw_t += *(up_bw + i);
687                 pg_bw_t += *(pg_bw + i);
688
689                 if (*(up_tc + i) > HINIC_DCB_TC_MAX) {
690                         PMD_DRV_LOG(ERR, "Invalid up %d mapping tc: %d", i,
691                                 *(up_tc + i));
692                         return -EINVAL;
693                 }
694         }
695
696         if (pg_bw_t != 100 || (up_bw_t % 100) != 0) {
697                 PMD_DRV_LOG(ERR,
698                         "Invalid pg_bw: %d or up_bw: %d", pg_bw_t, up_bw_t);
699                 return -EINVAL;
700         }
701
702         memset(&ets, 0, sizeof(ets));
703         ets.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
704         ets.port_id = 0;        /* reserved */
705         memcpy(ets.up_tc, up_tc, HINIC_DCB_TC_MAX);
706         memcpy(ets.pg_bw, pg_bw, HINIC_DCB_UP_MAX);
707         memcpy(ets.pgid, pgid, HINIC_DCB_UP_MAX);
708         memcpy(ets.up_bw, up_bw, HINIC_DCB_UP_MAX);
709         memcpy(ets.prio, prio, HINIC_DCB_UP_MAX);
710
711         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_ETS,
712                                      &ets, sizeof(ets), &ets, &out_size);
713         if (err || ets.mgmt_msg_head.status || !out_size) {
714                 PMD_DRV_LOG(ERR,
715                         "Failed to set ets, err: %d, status: 0x%x, out size: 0x%x",
716                         err, ets.mgmt_msg_head.status, out_size);
717                 return -EINVAL;
718         }
719
720         return 0;
721 }
722
723 int hinic_get_vport_stats(void *hwdev, struct hinic_vport_stats *stats)
724 {
725         struct hinic_port_stats_info vport_stats_cmd;
726         struct hinic_cmd_vport_stats vport_stats_rsp;
727         u16 out_size = sizeof(vport_stats_rsp);
728         int err;
729
730         if (!hwdev || !stats) {
731                 PMD_DRV_LOG(ERR, "Hwdev or stats is NULL");
732                 return -EINVAL;
733         }
734
735         memset(&vport_stats_rsp, 0, sizeof(vport_stats_rsp));
736         memset(&vport_stats_cmd, 0, sizeof(vport_stats_cmd));
737         vport_stats_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
738         vport_stats_cmd.stats_version = HINIC_PORT_STATS_VERSION;
739         vport_stats_cmd.func_id = hinic_global_func_id(hwdev);
740         vport_stats_cmd.stats_size = sizeof(vport_stats_rsp);
741
742         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_VPORT_STAT,
743                                      &vport_stats_cmd, sizeof(vport_stats_cmd),
744                                      &vport_stats_rsp, &out_size);
745         if (err || !out_size || vport_stats_rsp.mgmt_msg_head.status) {
746                 PMD_DRV_LOG(ERR,
747                         "Get vport stats from fw failed, err: %d, status: 0x%x, out size: 0x%x",
748                         err, vport_stats_rsp.mgmt_msg_head.status, out_size);
749                 return -EFAULT;
750         }
751
752         memcpy(stats, &vport_stats_rsp.stats, sizeof(*stats));
753
754         return 0;
755 }
756
757 int hinic_get_phy_port_stats(void *hwdev, struct hinic_phy_port_stats *stats)
758 {
759         struct hinic_port_stats_info port_stats_cmd;
760         struct hinic_port_stats port_stats_rsp;
761         u16 out_size = sizeof(port_stats_rsp);
762         int err;
763
764         if (!hwdev || !stats) {
765                 PMD_DRV_LOG(ERR, "Hwdev or stats is NULL");
766                 return -EINVAL;
767         }
768
769         memset(&port_stats_rsp, 0, sizeof(port_stats_rsp));
770         memset(&port_stats_cmd, 0, sizeof(port_stats_cmd));
771         port_stats_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
772         port_stats_cmd.stats_version = HINIC_PORT_STATS_VERSION;
773         port_stats_cmd.stats_size = sizeof(port_stats_rsp);
774
775         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_PORT_STATISTICS,
776                                      &port_stats_cmd, sizeof(port_stats_cmd),
777                                      &port_stats_rsp, &out_size);
778         if (err || !out_size || port_stats_rsp.mgmt_msg_head.status) {
779                 PMD_DRV_LOG(ERR,
780                         "Failed to get port statistics, err: %d, status: 0x%x, out size: 0x%x",
781                         err, port_stats_rsp.mgmt_msg_head.status, out_size);
782                 return -EFAULT;
783         }
784
785         memcpy(stats, &port_stats_rsp.stats, sizeof(*stats));
786
787         return 0;
788 }
789
790 int hinic_set_rss_type(void *hwdev, u32 tmpl_idx, struct nic_rss_type rss_type)
791 {
792         struct nic_rss_context_tbl *ctx_tbl;
793         struct hinic_cmd_buf *cmd_buf;
794         u32 ctx = 0;
795         u64 out_param;
796         int err;
797
798         if (!hwdev) {
799                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
800                 return -EINVAL;
801         }
802
803         cmd_buf = hinic_alloc_cmd_buf(hwdev);
804         if (!cmd_buf) {
805                 PMD_DRV_LOG(ERR, "Failed to allocate cmd buf");
806                 return -ENOMEM;
807         }
808
809         ctx |= HINIC_RSS_TYPE_SET(1, VALID) |
810                 HINIC_RSS_TYPE_SET(rss_type.ipv4, IPV4) |
811                 HINIC_RSS_TYPE_SET(rss_type.ipv6, IPV6) |
812                 HINIC_RSS_TYPE_SET(rss_type.ipv6_ext, IPV6_EXT) |
813                 HINIC_RSS_TYPE_SET(rss_type.tcp_ipv4, TCP_IPV4) |
814                 HINIC_RSS_TYPE_SET(rss_type.tcp_ipv6, TCP_IPV6) |
815                 HINIC_RSS_TYPE_SET(rss_type.tcp_ipv6_ext, TCP_IPV6_EXT) |
816                 HINIC_RSS_TYPE_SET(rss_type.udp_ipv4, UDP_IPV4) |
817                 HINIC_RSS_TYPE_SET(rss_type.udp_ipv6, UDP_IPV6);
818
819         cmd_buf->size = sizeof(struct nic_rss_context_tbl);
820
821         ctx_tbl = (struct nic_rss_context_tbl *)cmd_buf->buf;
822         ctx_tbl->group_index = cpu_to_be32(tmpl_idx);
823         ctx_tbl->offset = 0;
824         ctx_tbl->size = sizeof(u32);
825         ctx_tbl->size = cpu_to_be32(ctx_tbl->size);
826         ctx_tbl->rsvd = 0;
827         ctx_tbl->ctx = cpu_to_be32(ctx);
828
829         /* cfg the rss context table by command queue */
830         err = hinic_cmdq_direct_resp(hwdev, HINIC_ACK_TYPE_CMDQ,
831                                      HINIC_MOD_L2NIC,
832                                      HINIC_UCODE_CMD_SET_RSS_CONTEXT_TABLE,
833                                      cmd_buf, &out_param, 0);
834
835         hinic_free_cmd_buf(hwdev, cmd_buf);
836
837         if (err || out_param != 0) {
838                 PMD_DRV_LOG(ERR, "Failed to set rss context table");
839                 return -EFAULT;
840         }
841
842         return 0;
843 }
844
845 int hinic_get_rss_type(void *hwdev, u32 tmpl_idx, struct nic_rss_type *rss_type)
846 {
847         struct hinic_rss_context_table ctx_tbl;
848         u16 out_size = sizeof(ctx_tbl);
849         int err;
850
851         if (!hwdev || !rss_type) {
852                 PMD_DRV_LOG(ERR, "Hwdev or rss_type is NULL");
853                 return -EINVAL;
854         }
855
856         ctx_tbl.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
857         ctx_tbl.func_id = hinic_global_func_id(hwdev);
858         ctx_tbl.template_id = (u8)tmpl_idx;
859
860         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_RSS_CTX_TBL,
861                                      &ctx_tbl, sizeof(ctx_tbl),
862                                      &ctx_tbl, &out_size);
863         if (err || !out_size || ctx_tbl.mgmt_msg_head.status) {
864                 PMD_DRV_LOG(ERR,
865                         "Failed to get hash type, err: %d, status: 0x%x, out size: 0x%x",
866                         err, ctx_tbl.mgmt_msg_head.status, out_size);
867                 return -EINVAL;
868         }
869
870         rss_type->ipv4 = HINIC_RSS_TYPE_GET(ctx_tbl.context, IPV4);
871         rss_type->ipv6 = HINIC_RSS_TYPE_GET(ctx_tbl.context, IPV6);
872         rss_type->ipv6_ext = HINIC_RSS_TYPE_GET(ctx_tbl.context, IPV6_EXT);
873         rss_type->tcp_ipv4 = HINIC_RSS_TYPE_GET(ctx_tbl.context, TCP_IPV4);
874         rss_type->tcp_ipv6 = HINIC_RSS_TYPE_GET(ctx_tbl.context, TCP_IPV6);
875         rss_type->tcp_ipv6_ext =
876                         HINIC_RSS_TYPE_GET(ctx_tbl.context, TCP_IPV6_EXT);
877         rss_type->udp_ipv4 = HINIC_RSS_TYPE_GET(ctx_tbl.context, UDP_IPV4);
878         rss_type->udp_ipv6 = HINIC_RSS_TYPE_GET(ctx_tbl.context, UDP_IPV6);
879
880         return 0;
881 }
882
883 int hinic_rss_set_template_tbl(void *hwdev, u32 tmpl_idx, u8 *temp)
884 {
885         struct hinic_rss_template_key temp_key;
886         u16 out_size = sizeof(temp_key);
887         int err;
888
889         if (!hwdev || !temp) {
890                 PMD_DRV_LOG(ERR, "Hwdev or temp is NULL");
891                 return -EINVAL;
892         }
893
894         memset(&temp_key, 0, sizeof(temp_key));
895         temp_key.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
896         temp_key.func_id = hinic_global_func_id(hwdev);
897         temp_key.template_id = (u8)tmpl_idx;
898         memcpy(temp_key.key, temp, HINIC_RSS_KEY_SIZE);
899
900         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_RSS_TEMPLATE_TBL,
901                                      &temp_key, sizeof(temp_key),
902                                      &temp_key, &out_size);
903         if (err || !out_size || temp_key.mgmt_msg_head.status) {
904                 PMD_DRV_LOG(ERR,
905                         "Failed to set hash key, err: %d, status: 0x%x, out size: 0x%x",
906                         err, temp_key.mgmt_msg_head.status, out_size);
907                 return -EINVAL;
908         }
909
910         return 0;
911 }
912
913 int hinic_rss_get_template_tbl(void *hwdev, u32 tmpl_idx, u8 *temp)
914 {
915         struct hinic_rss_template_key temp_key;
916         u16 out_size = sizeof(temp_key);
917         int err;
918
919         if (!hwdev || !temp) {
920                 PMD_DRV_LOG(ERR, "Hwdev or temp is NULL");
921                 return -EINVAL;
922         }
923
924         memset(&temp_key, 0, sizeof(temp_key));
925         temp_key.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
926         temp_key.func_id = hinic_global_func_id(hwdev);
927         temp_key.template_id = (u8)tmpl_idx;
928
929         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_RSS_TEMPLATE_TBL,
930                                      &temp_key, sizeof(temp_key),
931                                      &temp_key, &out_size);
932         if (err || !out_size || temp_key.mgmt_msg_head.status) {
933                 PMD_DRV_LOG(ERR, "Failed to get hash key, err: %d, status: 0x%x, out size: 0x%x",
934                         err, temp_key.mgmt_msg_head.status, out_size);
935                 return -EINVAL;
936         }
937
938         memcpy(temp, temp_key.key, HINIC_RSS_KEY_SIZE);
939
940         return 0;
941 }
942
943 /**
944  * hinic_rss_set_hash_engine - Init rss hash function.
945  *
946  * @param hwdev
947  *   The hardware interface of a nic device.
948  * @param tmpl_idx
949  *   Index of rss template from NIC.
950  * @param type
951  *   Hash function, such as Toeplitz or XOR.
952  *
953  * @return
954  *   0 on success.
955  *   negative error value otherwise.
956  */
957 int hinic_rss_set_hash_engine(void *hwdev, u8 tmpl_idx, u8 type)
958 {
959         struct hinic_rss_engine_type hash_type;
960         u16 out_size = sizeof(hash_type);
961         int err;
962
963         if (!hwdev) {
964                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
965                 return -EINVAL;
966         }
967
968         memset(&hash_type, 0, sizeof(hash_type));
969         hash_type.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
970         hash_type.func_id = hinic_global_func_id(hwdev);
971         hash_type.hash_engine = type;
972         hash_type.template_id = tmpl_idx;
973
974         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_RSS_HASH_ENGINE,
975                                      &hash_type, sizeof(hash_type),
976                                      &hash_type, &out_size);
977         if (err || !out_size || hash_type.mgmt_msg_head.status) {
978                 PMD_DRV_LOG(ERR, "Failed to get hash engine, err: %d, status: 0x%x, out size: 0x%x",
979                         err, hash_type.mgmt_msg_head.status, out_size);
980                 return -EINVAL;
981         }
982
983         return 0;
984 }
985
986 int hinic_rss_set_indir_tbl(void *hwdev, u32 tmpl_idx, u32 *indir_table)
987 {
988         struct nic_rss_indirect_tbl *indir_tbl;
989         struct hinic_cmd_buf *cmd_buf;
990         int i;
991         u32 *temp;
992         u32 indir_size;
993         u64 out_param;
994         int err;
995
996         if (!hwdev || !indir_table) {
997                 PMD_DRV_LOG(ERR, "Hwdev or indir_table is NULL");
998                 return -EINVAL;
999         }
1000
1001         cmd_buf = hinic_alloc_cmd_buf(hwdev);
1002         if (!cmd_buf) {
1003                 PMD_DRV_LOG(ERR, "Failed to allocate cmd buf");
1004                 return -ENOMEM;
1005         }
1006
1007         cmd_buf->size = sizeof(struct nic_rss_indirect_tbl);
1008         indir_tbl = cmd_buf->buf;
1009         indir_tbl->group_index = cpu_to_be32(tmpl_idx);
1010
1011         for (i = 0; i < HINIC_RSS_INDIR_SIZE; i++) {
1012                 indir_tbl->entry[i] = (u8)(*(indir_table + i));
1013
1014                 if (0x3 == (i & 0x3)) {
1015                         temp = (u32 *)&indir_tbl->entry[i - 3];
1016                         *temp = cpu_to_be32(*temp);
1017                 }
1018         }
1019
1020         /* configure the rss indirect table by command queue */
1021         indir_size = HINIC_RSS_INDIR_SIZE / 2;
1022         indir_tbl->offset = 0;
1023         indir_tbl->size = cpu_to_be32(indir_size);
1024
1025         err = hinic_cmdq_direct_resp(hwdev, HINIC_ACK_TYPE_CMDQ,
1026                                      HINIC_MOD_L2NIC,
1027                                      HINIC_UCODE_CMD_SET_RSS_INDIR_TABLE,
1028                                      cmd_buf, &out_param, 0);
1029         if (err || out_param != 0) {
1030                 PMD_DRV_LOG(ERR, "Failed to set rss indir table");
1031                 err = -EFAULT;
1032                 goto free_buf;
1033         }
1034
1035         indir_tbl->offset = cpu_to_be32(indir_size);
1036         indir_tbl->size = cpu_to_be32(indir_size);
1037         memcpy(indir_tbl->entry, &indir_tbl->entry[indir_size], indir_size);
1038
1039         err = hinic_cmdq_direct_resp(hwdev, HINIC_ACK_TYPE_CMDQ,
1040                                      HINIC_MOD_L2NIC,
1041                                      HINIC_UCODE_CMD_SET_RSS_INDIR_TABLE,
1042                                      cmd_buf, &out_param, 0);
1043         if (err || out_param != 0) {
1044                 PMD_DRV_LOG(ERR, "Failed to set rss indir table");
1045                 err = -EFAULT;
1046         }
1047
1048 free_buf:
1049         hinic_free_cmd_buf(hwdev, cmd_buf);
1050
1051         return err;
1052 }
1053
1054 int hinic_rss_get_indir_tbl(void *hwdev, u32 tmpl_idx, u32 *indir_table)
1055 {
1056         struct hinic_rss_indir_table rss_cfg;
1057         u16 out_size = sizeof(rss_cfg);
1058         int err = 0, i;
1059
1060         if (!hwdev || !indir_table) {
1061                 PMD_DRV_LOG(ERR, "Hwdev or indir_table is NULL");
1062                 return -EINVAL;
1063         }
1064
1065         memset(&rss_cfg, 0, sizeof(rss_cfg));
1066         rss_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1067         rss_cfg.func_id = hinic_global_func_id(hwdev);
1068         rss_cfg.template_id = (u8)tmpl_idx;
1069
1070         err = l2nic_msg_to_mgmt_sync(hwdev,
1071                                      HINIC_PORT_CMD_GET_RSS_TEMPLATE_INDIR_TBL,
1072                                      &rss_cfg, sizeof(rss_cfg), &rss_cfg,
1073                                      &out_size);
1074         if (err || !out_size || rss_cfg.mgmt_msg_head.status) {
1075                 PMD_DRV_LOG(ERR, "Failed to get indir table, err: %d, status: 0x%x, out size: 0x%x",
1076                         err, rss_cfg.mgmt_msg_head.status, out_size);
1077                 return -EINVAL;
1078         }
1079
1080         hinic_be32_to_cpu(rss_cfg.indir, HINIC_RSS_INDIR_SIZE);
1081         for (i = 0; i < HINIC_RSS_INDIR_SIZE; i++)
1082                 indir_table[i] = rss_cfg.indir[i];
1083
1084         return 0;
1085 }
1086
1087 int hinic_rss_cfg(void *hwdev, u8 rss_en, u8 tmpl_idx, u8 tc_num, u8 *prio_tc)
1088 {
1089         struct hinic_rss_config rss_cfg;
1090         u16 out_size = sizeof(rss_cfg);
1091         int err;
1092
1093         /* micro code required: number of TC should be power of 2 */
1094         if (!hwdev || !prio_tc || (tc_num & (tc_num - 1))) {
1095                 PMD_DRV_LOG(ERR, "Hwdev or prio_tc is NULL, or tc_num: %u Not power of 2",
1096                         tc_num);
1097                 return -EINVAL;
1098         }
1099
1100         memset(&rss_cfg, 0, sizeof(rss_cfg));
1101         rss_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1102         rss_cfg.func_id = hinic_global_func_id(hwdev);
1103         rss_cfg.rss_en = rss_en;
1104         rss_cfg.template_id = tmpl_idx;
1105         rss_cfg.rq_priority_number = tc_num ? (u8)ilog2(tc_num) : 0;
1106
1107         memcpy(rss_cfg.prio_tc, prio_tc, HINIC_DCB_UP_MAX);
1108
1109         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_RSS_CFG,
1110                                      &rss_cfg, sizeof(rss_cfg), &rss_cfg,
1111                                      &out_size);
1112         if (err || !out_size || rss_cfg.mgmt_msg_head.status) {
1113                 PMD_DRV_LOG(ERR, "Failed to set rss cfg, err: %d, status: 0x%x, out size: 0x%x",
1114                         err, rss_cfg.mgmt_msg_head.status, out_size);
1115                 return -EINVAL;
1116         }
1117
1118         return 0;
1119 }
1120
1121 /**
1122  * hinic_rss_template_alloc - Get rss template id from the chip,
1123  * all functions share 96 templates.
1124  *
1125  * @param hwdev
1126  *   The hardware interface of a nic device.
1127  * @param tmpl_idx
1128  *   Index of rss template from chip.
1129  *
1130  * @return
1131  *   0 on success.
1132  *   negative error value otherwise.
1133  */
1134 int hinic_rss_template_alloc(void *hwdev, u8 *tmpl_idx)
1135 {
1136         struct hinic_rss_template_mgmt template_mgmt;
1137         u16 out_size = sizeof(template_mgmt);
1138         int err;
1139
1140         if (!hwdev || !tmpl_idx) {
1141                 PMD_DRV_LOG(ERR, "Hwdev or tmpl_idx is NULL");
1142                 return -EINVAL;
1143         }
1144
1145         memset(&template_mgmt, 0, sizeof(template_mgmt));
1146         template_mgmt.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1147         template_mgmt.func_id = hinic_global_func_id(hwdev);
1148         template_mgmt.cmd = NIC_RSS_CMD_TEMP_ALLOC;
1149
1150         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_RSS_TEMP_MGR,
1151                                      &template_mgmt, sizeof(template_mgmt),
1152                                      &template_mgmt, &out_size);
1153         if (err || !out_size || template_mgmt.mgmt_msg_head.status) {
1154                 PMD_DRV_LOG(ERR, "Failed to alloc rss template, err: %d, status: 0x%x, out size: 0x%x",
1155                         err, template_mgmt.mgmt_msg_head.status, out_size);
1156                 return -EINVAL;
1157         }
1158
1159         *tmpl_idx = template_mgmt.template_id;
1160
1161         return 0;
1162 }
1163
1164 /**
1165  * hinic_rss_template_free - Free rss template id to the chip.
1166  *
1167  * @param hwdev
1168  *   The hardware interface of a nic device.
1169  * @param tmpl_idx
1170  *   Index of rss template from chip.
1171  *
1172  * @return
1173  *   0 on success.
1174  *   negative error value otherwise.
1175  */
1176 int hinic_rss_template_free(void *hwdev, u8 tmpl_idx)
1177 {
1178         struct hinic_rss_template_mgmt template_mgmt;
1179         u16 out_size = sizeof(template_mgmt);
1180         int err;
1181
1182         if (!hwdev) {
1183                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1184                 return -EINVAL;
1185         }
1186
1187         memset(&template_mgmt, 0, sizeof(template_mgmt));
1188         template_mgmt.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1189         template_mgmt.func_id = hinic_global_func_id(hwdev);
1190         template_mgmt.template_id = tmpl_idx;
1191         template_mgmt.cmd = NIC_RSS_CMD_TEMP_FREE;
1192
1193         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_RSS_TEMP_MGR,
1194                                      &template_mgmt, sizeof(template_mgmt),
1195                                      &template_mgmt, &out_size);
1196         if (err || !out_size || template_mgmt.mgmt_msg_head.status) {
1197                 PMD_DRV_LOG(ERR, "Failed to free rss template, err: %d, status: 0x%x, out size: 0x%x",
1198                         err, template_mgmt.mgmt_msg_head.status, out_size);
1199                 return -EINVAL;
1200         }
1201
1202         return 0;
1203 }
1204
1205 /**
1206  * hinic_set_rx_vhd_mode - Change rx buffer size after initialization.
1207  *
1208  * @param hwdev
1209  *   The hardware interface of a nic device.
1210  * @param vhd_mode
1211  *   Not needed.
1212  * @param rx_buf_sz
1213  *   receive buffer size.
1214  *
1215  * @return
1216  *   0 on success.
1217  *   negative error value otherwise.
1218  */
1219 int hinic_set_rx_vhd_mode(void *hwdev, u16 vhd_mode, u16 rx_buf_sz)
1220 {
1221         struct hinic_set_vhd_mode vhd_mode_cfg;
1222         u16 out_size = sizeof(vhd_mode_cfg);
1223         int err;
1224
1225         if (!hwdev) {
1226                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1227                 return -EINVAL;
1228         }
1229
1230         memset(&vhd_mode_cfg, 0, sizeof(vhd_mode_cfg));
1231
1232         vhd_mode_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1233         vhd_mode_cfg.func_id = hinic_global_func_id(hwdev);
1234         vhd_mode_cfg.vhd_type = vhd_mode;
1235         vhd_mode_cfg.rx_wqe_buffer_size = rx_buf_sz;
1236
1237         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_VHD_CFG,
1238                                      &vhd_mode_cfg, sizeof(vhd_mode_cfg),
1239                                      &vhd_mode_cfg, &out_size);
1240         if (err || !out_size || vhd_mode_cfg.mgmt_msg_head.status) {
1241                 PMD_DRV_LOG(ERR,
1242                         "Failed to set vhd mode, err: %d, status: 0x%x, out size: 0x%x",
1243                         err, vhd_mode_cfg.mgmt_msg_head.status, out_size);
1244
1245                 return -EIO;
1246         }
1247
1248         return 0;
1249 }
1250
1251 int hinic_set_rx_mode(void *hwdev, u32 enable)
1252 {
1253         struct hinic_rx_mode_config rx_mode_cfg;
1254         u16 out_size = sizeof(rx_mode_cfg);
1255         int err;
1256
1257         if (!hwdev) {
1258                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1259                 return -EINVAL;
1260         }
1261
1262         memset(&rx_mode_cfg, 0, sizeof(rx_mode_cfg));
1263         rx_mode_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1264         rx_mode_cfg.func_id = hinic_global_func_id(hwdev);
1265         rx_mode_cfg.rx_mode = enable;
1266
1267         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_RX_MODE,
1268                                      &rx_mode_cfg, sizeof(rx_mode_cfg),
1269                                      &rx_mode_cfg, &out_size);
1270         if (err || !out_size || rx_mode_cfg.mgmt_msg_head.status) {
1271                 PMD_DRV_LOG(ERR, "Failed to set rx mode, err: %d, status: 0x%x, out size: 0x%x",
1272                         err, rx_mode_cfg.mgmt_msg_head.status, out_size);
1273                 return -EINVAL;
1274         }
1275
1276         return 0;
1277 }
1278
1279 /**
1280  * hinic_get_mgmt_version - Get mgmt module version from chip.
1281  *
1282  * @param hwdev
1283  *   The hardware interface of a nic device.
1284  * @param fw
1285  *   Firmware version.
1286  *
1287  * @return
1288  *   0 on success.
1289  *   negative error value otherwise.
1290  */
1291 int hinic_get_mgmt_version(void *hwdev, char *fw)
1292 {
1293         struct hinic_version_info fw_ver;
1294         u16 out_size = sizeof(fw_ver);
1295         int err;
1296
1297         if (!hwdev || !fw) {
1298                 PMD_DRV_LOG(ERR, "Hwdev or fw is NULL");
1299                 return -EINVAL;
1300         }
1301
1302         memset(&fw_ver, 0, sizeof(fw_ver));
1303         fw_ver.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1304
1305         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_MGMT_VERSION,
1306                                      &fw_ver, sizeof(fw_ver), &fw_ver,
1307                                      &out_size);
1308         if (err || !out_size || fw_ver.mgmt_msg_head.status) {
1309                 PMD_DRV_LOG(ERR, "Failed to get mgmt version, err: %d, status: 0x%x, out size: 0x%x\n",
1310                         err, fw_ver.mgmt_msg_head.status, out_size);
1311                 return -EINVAL;
1312         }
1313
1314         snprintf(fw, HINIC_MGMT_VERSION_MAX_LEN, "%s", fw_ver.ver);
1315
1316         return 0;
1317 }
1318
1319 int hinic_set_rx_csum_offload(void *hwdev, u32 en)
1320 {
1321         struct hinic_checksum_offload rx_csum_cfg;
1322         u16 out_size = sizeof(rx_csum_cfg);
1323         int err;
1324
1325         if (!hwdev) {
1326                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1327                 return -EINVAL;
1328         }
1329
1330         memset(&rx_csum_cfg, 0, sizeof(rx_csum_cfg));
1331         rx_csum_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1332         rx_csum_cfg.func_id = hinic_global_func_id(hwdev);
1333         rx_csum_cfg.rx_csum_offload = en;
1334
1335         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_RX_CSUM,
1336                                      &rx_csum_cfg, sizeof(rx_csum_cfg),
1337                                      &rx_csum_cfg, &out_size);
1338         if (err || !out_size || rx_csum_cfg.mgmt_msg_head.status) {
1339                 PMD_DRV_LOG(ERR,
1340                         "Failed to set rx csum offload, err: %d, status: 0x%x, out size: 0x%x",
1341                         err, rx_csum_cfg.mgmt_msg_head.status, out_size);
1342                 return -EINVAL;
1343         }
1344
1345         return 0;
1346 }
1347
1348 int hinic_set_rx_lro(void *hwdev, u8 ipv4_en, u8 ipv6_en, u8 max_wqe_num)
1349 {
1350         struct hinic_lro_config lro_cfg;
1351         u16 out_size = sizeof(lro_cfg);
1352         int err;
1353
1354         if (!hwdev) {
1355                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1356                 return -EINVAL;
1357         }
1358
1359         memset(&lro_cfg, 0, sizeof(lro_cfg));
1360         lro_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1361         lro_cfg.func_id = hinic_global_func_id(hwdev);
1362         lro_cfg.lro_ipv4_en = ipv4_en;
1363         lro_cfg.lro_ipv6_en = ipv6_en;
1364         lro_cfg.lro_max_wqe_num = max_wqe_num;
1365
1366         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_LRO,
1367                                      &lro_cfg, sizeof(lro_cfg), &lro_cfg,
1368                                      &out_size);
1369         if (err || !out_size || lro_cfg.mgmt_msg_head.status) {
1370                 PMD_DRV_LOG(ERR, "Failed to set lro offload, err: %d, status: 0x%x, out size: 0x%x",
1371                         err, lro_cfg.mgmt_msg_head.status, out_size);
1372                 return -EINVAL;
1373         }
1374
1375         return 0;
1376 }
1377
1378 int hinic_set_anti_attack(void *hwdev, bool enable)
1379 {
1380         struct hinic_port_anti_attack_rate rate;
1381         u16 out_size = sizeof(rate);
1382         int err;
1383
1384         if (!hwdev) {
1385                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1386                 return -EINVAL;
1387         }
1388
1389         memset(&rate, 0, sizeof(rate));
1390         rate.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1391         rate.func_id = hinic_global_func_id(hwdev);
1392         rate.enable = enable;
1393         rate.cir = ANTI_ATTACK_DEFAULT_CIR;
1394         rate.xir = ANTI_ATTACK_DEFAULT_XIR;
1395         rate.cbs = ANTI_ATTACK_DEFAULT_CBS;
1396         rate.xbs = ANTI_ATTACK_DEFAULT_XBS;
1397
1398         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_ANTI_ATTACK_RATE,
1399                                      &rate, sizeof(rate), &rate,
1400                                      &out_size);
1401         if (err || !out_size || rate.mgmt_msg_head.status) {
1402                 PMD_DRV_LOG(ERR, "Can't %s port Anti-Attack rate limit, err: %d, status: 0x%x, out size: 0x%x",
1403                         (enable ? "enable" : "disable"), err,
1404                         rate.mgmt_msg_head.status, out_size);
1405                 return -EINVAL;
1406         }
1407
1408         return 0;
1409 }
1410
1411 /* Set autoneg status and restart port link status */
1412 int hinic_reset_port_link_cfg(void *hwdev)
1413 {
1414         struct hinic_reset_link_cfg reset_cfg;
1415         u16 out_size = sizeof(reset_cfg);
1416         int err;
1417
1418         memset(&reset_cfg, 0, sizeof(reset_cfg));
1419         reset_cfg.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1420         reset_cfg.func_id = hinic_global_func_id(hwdev);
1421
1422         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_RESET_LINK_CFG,
1423                                      &reset_cfg, sizeof(reset_cfg),
1424                                      &reset_cfg, &out_size);
1425         if (err || !out_size || reset_cfg.mgmt_msg_head.status) {
1426                 PMD_DRV_LOG(ERR, "Reset port link configure failed, err: %d, status: 0x%x, out size: 0x%x",
1427                         err, reset_cfg.mgmt_msg_head.status, out_size);
1428                 return -EFAULT;
1429         }
1430
1431         return 0;
1432 }
1433
1434 /**
1435  * hinic_vf_func_init - Register VF to PF.
1436  *
1437  * @param hwdev
1438  *   The hardware interface of a nic device.
1439  *
1440  * @return
1441  *   0 on success.
1442  *   negative error value otherwise.
1443  */
1444 int hinic_vf_func_init(struct hinic_hwdev *hwdev)
1445 {
1446         int err, state = 0;
1447
1448         if (!HINIC_IS_VF(hwdev))
1449                 return 0;
1450
1451         err = hinic_mbox_to_pf(hwdev, HINIC_MOD_L2NIC,
1452                         HINIC_PORT_CMD_VF_REGISTER, &state, sizeof(state),
1453                         NULL, NULL, 0);
1454         if (err) {
1455                 PMD_DRV_LOG(ERR, "Fail to register vf");
1456                 return err;
1457         }
1458
1459         return 0;
1460 }
1461
1462 /**
1463  * hinic_vf_func_free - Unregister VF from PF.
1464  *
1465  * @param hwdev
1466  *   The hardware interface of a nic device.
1467  */
1468 void hinic_vf_func_free(struct hinic_hwdev *hwdev)
1469 {
1470         int err;
1471
1472         if (hinic_func_type(hwdev) != TYPE_VF)
1473                 return;
1474
1475         err = hinic_mbox_to_pf(hwdev, HINIC_MOD_L2NIC,
1476                                 HINIC_PORT_CMD_VF_UNREGISTER, &err, sizeof(err),
1477                                 NULL, NULL, 0);
1478         if (err)
1479                 PMD_DRV_LOG(ERR, "Fail to unregister VF, err: %d", err);
1480 }
1481
1482 int hinic_set_fast_recycle_mode(void *hwdev, u8 mode)
1483 {
1484         struct hinic_fast_recycled_mode fast_recycled_mode;
1485         u16 out_size = sizeof(fast_recycled_mode);
1486         int err;
1487
1488         if (!hwdev) {
1489                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1490                 return -EINVAL;
1491         }
1492
1493         memset(&fast_recycled_mode, 0, sizeof(fast_recycled_mode));
1494         fast_recycled_mode.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1495         fast_recycled_mode.func_id = hinic_global_func_id(hwdev);
1496         fast_recycled_mode.fast_recycled_mode = mode;
1497
1498         err = hinic_msg_to_mgmt_sync(hwdev, HINIC_MOD_COMM,
1499                                      HINIC_MGMT_CMD_FAST_RECYCLE_MODE_SET,
1500                                      &fast_recycled_mode,
1501                                      sizeof(fast_recycled_mode),
1502                                      &fast_recycled_mode, &out_size, 0);
1503         if (err || fast_recycled_mode.mgmt_msg_head.status || !out_size) {
1504                 PMD_DRV_LOG(ERR, "Failed to set recycle mode, ret: %d",
1505                         fast_recycled_mode.mgmt_msg_head.status);
1506                 return -EFAULT;
1507         }
1508
1509         return 0;
1510 }
1511
1512 int hinic_clear_vport_stats(struct hinic_hwdev *hwdev)
1513 {
1514         struct hinic_clear_vport_stats clear_vport_stats;
1515         u16 out_size = sizeof(clear_vport_stats);
1516         int err;
1517
1518         if (!hwdev) {
1519                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1520                 return -EINVAL;
1521         }
1522
1523         memset(&clear_vport_stats, 0, sizeof(clear_vport_stats));
1524         clear_vport_stats.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1525         clear_vport_stats.func_id = hinic_global_func_id(hwdev);
1526
1527         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_CLEAN_VPORT_STAT,
1528                                      &clear_vport_stats,
1529                                      sizeof(clear_vport_stats),
1530                                      &clear_vport_stats, &out_size);
1531         if (err || !out_size || clear_vport_stats.mgmt_msg_head.status) {
1532                 PMD_DRV_LOG(ERR, "Failed to clear vport statistics, err: %d, status: 0x%x, out size: 0x%x",
1533                         err, clear_vport_stats.mgmt_msg_head.status, out_size);
1534                 return -EINVAL;
1535         }
1536
1537         return 0;
1538 }
1539
1540 int hinic_clear_phy_port_stats(struct hinic_hwdev *hwdev)
1541 {
1542         struct hinic_clear_port_stats clear_phy_port_stats;
1543         u16 out_size = sizeof(clear_phy_port_stats);
1544         int err;
1545
1546         if (!hwdev) {
1547                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1548                 return -EINVAL;
1549         }
1550
1551         memset(&clear_phy_port_stats, 0, sizeof(clear_phy_port_stats));
1552         clear_phy_port_stats.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1553         clear_phy_port_stats.func_id = hinic_global_func_id(hwdev);
1554
1555         err = l2nic_msg_to_mgmt_sync(hwdev,
1556                                      HINIC_PORT_CMD_CLEAR_PORT_STATISTICS,
1557                                      &clear_phy_port_stats,
1558                                      sizeof(clear_phy_port_stats),
1559                                      &clear_phy_port_stats, &out_size);
1560         if (err || !out_size || clear_phy_port_stats.mgmt_msg_head.status) {
1561                 PMD_DRV_LOG(ERR, "Failed to clear phy port statistics, err: %d, status: 0x%x, out size: 0x%x",
1562                         err, clear_phy_port_stats.mgmt_msg_head.status,
1563                         out_size);
1564                 return -EINVAL;
1565         }
1566
1567         return 0;
1568 }
1569
1570 int hinic_set_link_status_follow(void *hwdev,
1571                                  enum hinic_link_follow_status status)
1572 {
1573         struct hinic_set_link_follow follow;
1574         u16 out_size = sizeof(follow);
1575         int err;
1576
1577         if (!hwdev)
1578                 return -EINVAL;
1579
1580         if (HINIC_IS_VF((struct hinic_hwdev *)hwdev))
1581                 return 0;
1582
1583         if (status >= HINIC_LINK_FOLLOW_STATUS_MAX) {
1584                 PMD_DRV_LOG(ERR,
1585                         "Invalid link follow status: %d", status);
1586                 return -EINVAL;
1587         }
1588
1589         memset(&follow, 0, sizeof(follow));
1590         follow.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1591         follow.func_id = hinic_global_func_id(hwdev);
1592         follow.follow_status = status;
1593
1594         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_LINK_FOLLOW,
1595                                      &follow, sizeof(follow),
1596                                      &follow, &out_size);
1597         if ((follow.mgmt_msg_head.status != HINIC_MGMT_CMD_UNSUPPORTED &&
1598              follow.mgmt_msg_head.status) || err || !out_size) {
1599                 PMD_DRV_LOG(ERR,
1600                         "Failed to set link status follow phy port status, err: %d, status: 0x%x, out size: 0x%x",
1601                         err, follow.mgmt_msg_head.status, out_size);
1602                 return -EFAULT;
1603         }
1604
1605         return follow.mgmt_msg_head.status;
1606 }
1607
1608 int hinic_get_link_mode(void *hwdev, u32 *supported, u32 *advertised)
1609 {
1610         struct hinic_link_mode_cmd link_mode;
1611         u16 out_size = sizeof(link_mode);
1612         int err;
1613
1614         if (!hwdev || !supported || !advertised)
1615                 return -EINVAL;
1616
1617         memset(&link_mode, 0, sizeof(link_mode));
1618         link_mode.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1619         link_mode.func_id = hinic_global_func_id(hwdev);
1620
1621         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_GET_LINK_MODE,
1622                                      &link_mode, sizeof(link_mode),
1623                                      &link_mode, &out_size);
1624         if (err || !out_size || link_mode.mgmt_msg_head.status) {
1625                 PMD_DRV_LOG(ERR,
1626                         "Failed to get link mode, err: %d, status: 0x%x, out size: 0x%x",
1627                         err, link_mode.mgmt_msg_head.status, out_size);
1628                 return -EINVAL;
1629         }
1630
1631         *supported = link_mode.supported;
1632         *advertised = link_mode.advertised;
1633
1634         return 0;
1635 }
1636
1637 /**
1638  * hinic_set_xsfp_tx_status - Enable or disable the fiber in
1639  * tx direction when set link up or down.
1640  *
1641  * @param hwdev
1642  *   The hardware interface of a nic device.
1643  * @param enable
1644  *   Enable or Disable.
1645  *
1646  * @return
1647  *   0 on success.
1648  *   negative error value otherwise.
1649  */
1650 int hinic_set_xsfp_tx_status(void *hwdev, bool enable)
1651 {
1652         struct hinic_set_xsfp_status xsfp_status;
1653         u16 out_size = sizeof(struct hinic_set_xsfp_status);
1654         int err;
1655
1656         memset(&xsfp_status, 0, sizeof(xsfp_status));
1657         xsfp_status.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1658         xsfp_status.port_id = hinic_global_func_id(hwdev);
1659         xsfp_status.xsfp_tx_dis = ((enable == 0) ? 1 : 0);
1660
1661         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_SET_XSFP_STATUS,
1662                 &xsfp_status, sizeof(struct hinic_set_xsfp_status),
1663                 &xsfp_status, &out_size);
1664         if (err || !out_size || xsfp_status.mgmt_msg_head.status) {
1665                 PMD_DRV_LOG(ERR,
1666                         "Failed to %s port xsfp status, err: %d, status: 0x%x, out size: 0x%x\n",
1667                         enable ? "Disable" : "Enable", err,
1668                         xsfp_status.mgmt_msg_head.status, out_size);
1669                 return -EFAULT;
1670         }
1671
1672         return 0;
1673 }
1674
1675 /**
1676  * hinic_flush_qp_res - Flush tx && rx chip resources in case of set vport
1677  * fake failed when device start.
1678  *
1679  * @param hwdev
1680  *   The hardware interface of a nic device.
1681  *
1682  * @return
1683  *   0 on success.
1684  *   negative error value otherwise.
1685  */
1686 int hinic_flush_qp_res(void *hwdev)
1687 {
1688         struct hinic_clear_qp_resource qp_res;
1689         u16 out_size = sizeof(qp_res);
1690         int err;
1691
1692         memset(&qp_res, 0, sizeof(qp_res));
1693         qp_res.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1694         qp_res.func_id = hinic_global_func_id(hwdev);
1695
1696         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_CLEAR_QP_RES,
1697                                      &qp_res, sizeof(qp_res), &qp_res,
1698                                      &out_size);
1699         if (err || !out_size || qp_res.mgmt_msg_head.status) {
1700                 PMD_DRV_LOG(ERR, "Failed to clear sq resources, err: %d, status: 0x%x, out size: 0x%x",
1701                         err, qp_res.mgmt_msg_head.status, out_size);
1702                 return -EINVAL;
1703         }
1704
1705         return 0;
1706 }
1707
1708 /**
1709  * hinic_vf_get_default_cos - Get default cos of VF.
1710  *
1711  * @param hwdev
1712  *   The hardware interface of a nic device.
1713  * @param cos_id
1714  *   Cos value.
1715  *
1716  * @return
1717  *   0 on success.
1718  *   negative error value otherwise.
1719  */
1720 int hinic_vf_get_default_cos(struct hinic_hwdev *hwdev, u8 *cos_id)
1721 {
1722         struct hinic_vf_default_cos vf_cos;
1723         u16 out_size = sizeof(vf_cos);
1724         int err;
1725
1726         memset(&vf_cos, 0, sizeof(vf_cos));
1727         vf_cos.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1728
1729         err = hinic_msg_to_mgmt_sync(hwdev, HINIC_MOD_L2NIC,
1730                                      HINIC_PORT_CMD_GET_VF_COS, &vf_cos,
1731                                      sizeof(vf_cos), &vf_cos,
1732                                      &out_size, 0);
1733         if (err || !out_size || vf_cos.mgmt_msg_head.status) {
1734                 PMD_DRV_LOG(ERR, "Get VF default cos failed, err: %d, status: 0x%x, out size: 0x%x",
1735                         err, vf_cos.mgmt_msg_head.status, out_size);
1736                 return -EFAULT;
1737         }
1738         *cos_id = vf_cos.state.default_cos;
1739
1740         return 0;
1741 }
1742
1743 /**
1744  * hinic_set_fdir_filter - Set fdir filter for control path
1745  * packet to notify firmware.
1746  *
1747  * @param hwdev
1748  *   The hardware interface of a nic device.
1749  * @param filter_type
1750  *   Packet type to filter.
1751  * @param qid
1752  *   Rx qid to filter.
1753  * @param type_enable
1754  *   The status of pkt type filter.
1755  * @param enable
1756  *   Fdir function Enable or Disable.
1757  * @return
1758  *   0 on success,
1759  *   negative error value otherwise.
1760  */
1761 int hinic_set_fdir_filter(void *hwdev, u8 filter_type, u8 qid, u8 type_enable,
1762                           bool enable)
1763 {
1764         struct hinic_port_qfilter_info port_filer_cmd;
1765         u16 out_size = sizeof(port_filer_cmd);
1766         int err;
1767
1768         if (!hwdev)
1769                 return -EINVAL;
1770
1771         memset(&port_filer_cmd, 0, sizeof(port_filer_cmd));
1772         port_filer_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1773         port_filer_cmd.func_id = hinic_global_func_id(hwdev);
1774         port_filer_cmd.filter_enable = (u8)enable;
1775         port_filer_cmd.filter_type = filter_type;
1776         port_filer_cmd.qid = qid;
1777         port_filer_cmd.filter_type_enable = type_enable;
1778         port_filer_cmd.fdir_flag = 0;
1779
1780         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_Q_FILTER,
1781                         &port_filer_cmd, sizeof(port_filer_cmd),
1782                         &port_filer_cmd, &out_size);
1783         if (err || !out_size || port_filer_cmd.mgmt_msg_head.status) {
1784                 PMD_DRV_LOG(ERR, "Set port Q filter failed, err: %d, status: 0x%x, out size: 0x%x, type: 0x%x,"
1785                         " enable: 0x%x, qid: 0x%x, filter_type_enable: 0x%x\n",
1786                         err, port_filer_cmd.mgmt_msg_head.status, out_size,
1787                         filter_type, enable, qid, type_enable);
1788                 return -EFAULT;
1789         }
1790
1791         return 0;
1792 }
1793
1794 /**
1795  * hinic_set_normal_filter - Set fdir filter for IO path packet.
1796  *
1797  * @param hwdev
1798  *   The hardware interface of a nic device.
1799  * @param qid
1800  *   Rx qid to filter.
1801  * @param normal_type_enable
1802  *   IO path packet function Enable or Disable
1803  * @param key
1804  *   IO path packet filter key value, such as DIP from pkt.
1805  * @param enable
1806  *   Fdir function Enable or Disable.
1807  * @param flag
1808  *   Filter flag, such as dip or others.
1809  * @return
1810  *   0 on success,
1811  *   negative error value otherwise.
1812  */
1813 int hinic_set_normal_filter(void *hwdev, u8 qid, u8 normal_type_enable,
1814                                 u32 key, bool enable, u8 flag)
1815 {
1816         struct hinic_port_qfilter_info port_filer_cmd;
1817         u16 out_size = sizeof(port_filer_cmd);
1818         int err;
1819
1820         if (!hwdev)
1821                 return -EINVAL;
1822
1823         memset(&port_filer_cmd, 0, sizeof(port_filer_cmd));
1824         port_filer_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1825         port_filer_cmd.func_id = hinic_global_func_id(hwdev);
1826         port_filer_cmd.filter_enable = (u8)enable;
1827         port_filer_cmd.qid = qid;
1828         port_filer_cmd.normal_type_enable = normal_type_enable;
1829         port_filer_cmd.fdir_flag = flag; /* fdir flag: support dip */
1830         port_filer_cmd.key = key;
1831
1832         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_Q_FILTER,
1833                         &port_filer_cmd, sizeof(port_filer_cmd),
1834                         &port_filer_cmd, &out_size);
1835         if (err || !out_size || port_filer_cmd.mgmt_msg_head.status) {
1836                 PMD_DRV_LOG(ERR, "Set normal filter failed, err: %d, status: 0x%x, out size: 0x%x, fdir_flag: 0x%x,"
1837                         " enable: 0x%x, qid: 0x%x, normal_type_enable: 0x%x, key:0x%x\n",
1838                         err, port_filer_cmd.mgmt_msg_head.status, out_size,
1839                         flag, enable, qid, normal_type_enable, key);
1840                 return -EFAULT;
1841         }
1842
1843         return 0;
1844 }
1845
1846 /**
1847  * hinic_set_fdir_tcam - Set fdir filter for control packet
1848  * by tcam table to notify hardware.
1849  *
1850  * @param hwdev
1851  *   The hardware interface of a nic device.
1852  * @param type_mask
1853  *   Index of TCAM.
1854  * @param filter_rule
1855  *   TCAM rule for control packet, such as lacp or bgp.
1856  * @param filter_action
1857  *   TCAM action for control packet, such as accept or drop.
1858  * @return
1859  *   0 on success,
1860  *   negative error value otherwise.
1861  */
1862 int hinic_set_fdir_tcam(void *hwdev, u16 type_mask,
1863                         struct tag_pa_rule *filter_rule,
1864                         struct tag_pa_action *filter_action)
1865 {
1866         struct hinic_fdir_tcam_info port_tcam_cmd;
1867         u16 out_size = sizeof(port_tcam_cmd);
1868         int err;
1869
1870         if (!hwdev)
1871                 return -EINVAL;
1872
1873         memset(&port_tcam_cmd, 0, sizeof(port_tcam_cmd));
1874         port_tcam_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1875         port_tcam_cmd.tcam_index = type_mask;
1876         port_tcam_cmd.flag = TCAM_SET;
1877         memcpy((void *)&port_tcam_cmd.filter_rule,
1878                 (void *)filter_rule, sizeof(struct tag_pa_rule));
1879         memcpy((void *)&port_tcam_cmd.filter_action,
1880                 (void *)filter_action, sizeof(struct tag_pa_action));
1881
1882         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_TCAM_FILTER,
1883                         &port_tcam_cmd, sizeof(port_tcam_cmd),
1884                         &port_tcam_cmd, &out_size);
1885         if (err || !out_size || port_tcam_cmd.mgmt_msg_head.status) {
1886                 PMD_DRV_LOG(ERR, "Set tcam table failed, err: %d, status: 0x%x, out size: 0x%x",
1887                         err, port_tcam_cmd.mgmt_msg_head.status, out_size);
1888                 return -EFAULT;
1889         }
1890
1891         return 0;
1892 }
1893
1894 /**
1895  * hinic_clear_fdir_tcam - Clear fdir filter TCAM table for control packet.
1896  *
1897  * @param hwdev
1898  *   The hardware interface of a nic device.
1899  * @param type_mask
1900  *   Index of TCAM.
1901  * @return
1902  *   0 on success,
1903  *   negative error value otherwise.
1904  */
1905 int hinic_clear_fdir_tcam(void *hwdev, u16 type_mask)
1906 {
1907         struct hinic_fdir_tcam_info port_tcam_cmd;
1908         u16 out_size = sizeof(port_tcam_cmd);
1909         int err;
1910
1911         if (!hwdev)
1912                 return -EINVAL;
1913
1914         memset(&port_tcam_cmd, 0, sizeof(port_tcam_cmd));
1915         port_tcam_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1916         port_tcam_cmd.tcam_index = type_mask;
1917         port_tcam_cmd.flag = TCAM_CLEAR;
1918
1919         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_TCAM_FILTER,
1920                         &port_tcam_cmd, sizeof(port_tcam_cmd),
1921                         &port_tcam_cmd, &out_size);
1922         if (err || !out_size || port_tcam_cmd.mgmt_msg_head.status) {
1923                 PMD_DRV_LOG(ERR, "Clear tcam table failed, err: %d, status: 0x%x, out size: 0x%x",
1924                         err, port_tcam_cmd.mgmt_msg_head.status, out_size);
1925                 return -EFAULT;
1926         }
1927
1928         return 0;
1929 }
1930
1931 int hinic_add_tcam_rule(void *hwdev, struct tag_tcam_cfg_rule *tcam_rule)
1932 {
1933         u16 out_size = sizeof(struct tag_fdir_add_rule_cmd);
1934         struct tag_fdir_add_rule_cmd tcam_cmd;
1935         int err;
1936
1937         if (!hwdev) {
1938                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1939                 return -EINVAL;
1940         }
1941
1942         if (tcam_rule->index >= HINIC_MAX_TCAM_RULES_NUM) {
1943                 PMD_DRV_LOG(ERR, "Tcam rules num to add is invalid");
1944                 return -EFAULT;
1945         }
1946
1947         memset(&tcam_cmd, 0, sizeof(struct tag_fdir_add_rule_cmd));
1948         tcam_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1949         memcpy((void *)&tcam_cmd.rule, (void *)tcam_rule,
1950                 sizeof(struct tag_tcam_cfg_rule));
1951
1952         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_UP_TC_ADD_FLOW,
1953                                 &tcam_cmd, sizeof(tcam_cmd),
1954                                 &tcam_cmd, &out_size);
1955         if (err || tcam_cmd.mgmt_msg_head.status || !out_size) {
1956                 PMD_DRV_LOG(ERR,
1957                         "Add tcam rule failed, err: %d, status: 0x%x, out size: 0x%x",
1958                         err, tcam_cmd.mgmt_msg_head.status, out_size);
1959                 return -EFAULT;
1960         }
1961
1962         return 0;
1963 }
1964
1965 int hinic_del_tcam_rule(void *hwdev, u32 index)
1966 {
1967         u16 out_size = sizeof(struct tag_fdir_del_rule_cmd);
1968         struct tag_fdir_del_rule_cmd tcam_cmd;
1969         int err;
1970
1971         if (!hwdev) {
1972                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
1973                 return -EINVAL;
1974         }
1975
1976         if (index >= HINIC_MAX_TCAM_RULES_NUM) {
1977                 PMD_DRV_LOG(ERR, "Tcam rules num to del is invalid");
1978                 return -EFAULT;
1979         }
1980
1981         memset(&tcam_cmd, 0, sizeof(struct tag_fdir_del_rule_cmd));
1982         tcam_cmd.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
1983         tcam_cmd.index_start = index;
1984         tcam_cmd.index_num = 1;
1985
1986         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_UP_TC_DEL_FLOW,
1987                                 &tcam_cmd, sizeof(tcam_cmd),
1988                                 &tcam_cmd, &out_size);
1989         if (err || tcam_cmd.mgmt_msg_head.status || !out_size) {
1990                 PMD_DRV_LOG(ERR,
1991                         "Del tcam rule failed, err: %d, status: 0x%x, out size: 0x%x",
1992                         err, tcam_cmd.mgmt_msg_head.status, out_size);
1993                 return -EFAULT;
1994         }
1995
1996         return 0;
1997 }
1998
1999 static int hinic_mgmt_tcam_block(void *hwdev, u8 alloc_en,
2000                                 u8 block_type, u16 *index)
2001 {
2002         struct hinic_cmd_ctrl_tcam_block tcam_block_info;
2003         u16 out_size = sizeof(struct hinic_cmd_ctrl_tcam_block);
2004         struct hinic_hwdev *nic_hwdev = (struct hinic_hwdev *)hwdev;
2005         int err;
2006
2007         if (!hwdev) {
2008                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
2009                 return -EINVAL;
2010         }
2011
2012         memset(&tcam_block_info, 0, sizeof(struct hinic_cmd_ctrl_tcam_block));
2013         tcam_block_info.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
2014         tcam_block_info.func_id = hinic_global_func_id(hwdev);
2015         tcam_block_info.alloc_en = alloc_en;
2016         tcam_block_info.tcam_type = block_type;
2017         tcam_block_info.tcam_block_index = *index;
2018
2019         err = l2nic_msg_to_mgmt_sync(hwdev,
2020                                 HINIC_PORT_CMD_UP_TC_CTRL_TCAM_BLOCK,
2021                                 &tcam_block_info, sizeof(tcam_block_info),
2022                                 &tcam_block_info, &out_size);
2023         if (tcam_block_info.mgmt_msg_head.status ==
2024                 HINIC_MGMT_CMD_UNSUPPORTED) {
2025                 err = HINIC_MGMT_CMD_UNSUPPORTED;
2026                 PMD_DRV_LOG(INFO, "Firmware/uP doesn't support alloc or del tcam block");
2027                 return err;
2028         } else if ((err == HINIC_MBOX_VF_CMD_ERROR) &&
2029                         (HINIC_IS_VF(nic_hwdev))) {
2030                 err = HINIC_MGMT_CMD_UNSUPPORTED;
2031                 PMD_DRV_LOG(INFO, "VF doesn't support alloc and del tcam block.");
2032                 return err;
2033         } else if (err || (!out_size) || tcam_block_info.mgmt_msg_head.status) {
2034                 PMD_DRV_LOG(ERR,
2035                         "Set tcam block failed, err: %d, status: 0x%x, out size: 0x%x",
2036                         err, tcam_block_info.mgmt_msg_head.status, out_size);
2037                 return -EFAULT;
2038         }
2039
2040         if (alloc_en)
2041                 *index = tcam_block_info.tcam_block_index;
2042
2043         return 0;
2044 }
2045
2046 int hinic_alloc_tcam_block(void *hwdev, u8 block_type, u16 *index)
2047 {
2048         return hinic_mgmt_tcam_block(hwdev, HINIC_TCAM_BLOCK_ENABLE,
2049                                 block_type, index);
2050 }
2051
2052 int hinic_free_tcam_block(void *hwdev, u8 block_type, u16 *index)
2053 {
2054         return hinic_mgmt_tcam_block(hwdev, HINIC_TCAM_BLOCK_DISABLE,
2055                                 block_type, index);
2056 }
2057
2058 int hinic_flush_tcam_rule(void *hwdev)
2059 {
2060         struct hinic_cmd_flush_tcam_rules tcam_flush;
2061         u16 out_size = sizeof(struct hinic_cmd_flush_tcam_rules);
2062         struct hinic_hwdev *nic_hwdev = (struct hinic_hwdev *)hwdev;
2063         int err;
2064
2065         if (!hwdev) {
2066                 PMD_DRV_LOG(ERR, "Hwdev is NULL");
2067                 return -EINVAL;
2068         }
2069
2070         memset(&tcam_flush, 0, sizeof(struct hinic_cmd_flush_tcam_rules));
2071         tcam_flush.mgmt_msg_head.resp_aeq_num = HINIC_AEQ1;
2072         tcam_flush.func_id = hinic_global_func_id(hwdev);
2073
2074         err = l2nic_msg_to_mgmt_sync(hwdev, HINIC_PORT_CMD_UP_TC_FLUSH_TCAM,
2075                         &tcam_flush, sizeof(struct hinic_cmd_flush_tcam_rules),
2076                         &tcam_flush, &out_size);
2077         if (tcam_flush.mgmt_msg_head.status == HINIC_MGMT_CMD_UNSUPPORTED) {
2078                 err = HINIC_MGMT_CMD_UNSUPPORTED;
2079                 PMD_DRV_LOG(INFO, "Firmware/uP doesn't support flush tcam fdir");
2080         } else if ((err == HINIC_MBOX_VF_CMD_ERROR) &&
2081                         (HINIC_IS_VF(nic_hwdev))) {
2082                 err = HINIC_MGMT_CMD_UNSUPPORTED;
2083                 PMD_DRV_LOG(INFO, "VF doesn't support flush tcam fdir");
2084         } else if (err || (!out_size) || tcam_flush.mgmt_msg_head.status) {
2085                 PMD_DRV_LOG(ERR,
2086                         "Flush tcam fdir rules failed, err: %d, status: 0x%x, out size: 0x%x",
2087                         err, tcam_flush.mgmt_msg_head.status, out_size);
2088                 err = -EFAULT;
2089         }
2090
2091         return err;
2092 }
2093