75d5299f295a19fda9c1ab92387ad39dc998333d
[dpdk.git] / drivers / net / hns3 / hns3_cmd.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018-2021 HiSilicon Limited.
3  */
4
5 #include <ethdev_pci.h>
6 #include <rte_io.h>
7
8 #include "hns3_ethdev.h"
9 #include "hns3_regs.h"
10 #include "hns3_intr.h"
11 #include "hns3_logs.h"
12
13 #define hns3_is_csq(ring) ((ring)->flag & HNS3_TYPE_CSQ)
14
15 #define cmq_ring_to_dev(ring)   (&(ring)->dev->pdev->dev)
16
17 static int
18 hns3_ring_space(struct hns3_cmq_ring *ring)
19 {
20         int ntu = ring->next_to_use;
21         int ntc = ring->next_to_clean;
22         int used = (ntu - ntc + ring->desc_num) % ring->desc_num;
23
24         return ring->desc_num - used - 1;
25 }
26
27 static bool
28 is_valid_csq_clean_head(struct hns3_cmq_ring *ring, int head)
29 {
30         int ntu = ring->next_to_use;
31         int ntc = ring->next_to_clean;
32
33         if (ntu > ntc)
34                 return head >= ntc && head <= ntu;
35
36         return head >= ntc || head <= ntu;
37 }
38
39 /*
40  * hns3_allocate_dma_mem - Specific memory alloc for command function.
41  * Malloc a memzone, which is a contiguous portion of physical memory identified
42  * by a name.
43  * @ring: pointer to the ring structure
44  * @size: size of memory requested
45  * @alignment: what to align the allocation to
46  */
47 static int
48 hns3_allocate_dma_mem(struct hns3_hw *hw, struct hns3_cmq_ring *ring,
49                       uint64_t size, uint32_t alignment)
50 {
51         const struct rte_memzone *mz = NULL;
52         char z_name[RTE_MEMZONE_NAMESIZE];
53
54         snprintf(z_name, sizeof(z_name), "hns3_dma_%" PRIu64, rte_rand());
55         mz = rte_memzone_reserve_bounded(z_name, size, SOCKET_ID_ANY,
56                                          RTE_MEMZONE_IOVA_CONTIG, alignment,
57                                          RTE_PGSIZE_2M);
58         if (mz == NULL)
59                 return -ENOMEM;
60
61         ring->buf_size = size;
62         ring->desc = mz->addr;
63         ring->desc_dma_addr = mz->iova;
64         ring->zone = (const void *)mz;
65         hns3_dbg(hw, "memzone %s allocated with physical address: %" PRIu64,
66                  mz->name, ring->desc_dma_addr);
67
68         return 0;
69 }
70
71 static void
72 hns3_free_dma_mem(struct hns3_hw *hw, struct hns3_cmq_ring *ring)
73 {
74         hns3_dbg(hw, "memzone %s to be freed with physical address: %" PRIu64,
75                  ((const struct rte_memzone *)ring->zone)->name,
76                  ring->desc_dma_addr);
77         rte_memzone_free((const struct rte_memzone *)ring->zone);
78         ring->buf_size = 0;
79         ring->desc = NULL;
80         ring->desc_dma_addr = 0;
81         ring->zone = NULL;
82 }
83
84 static int
85 hns3_alloc_cmd_desc(struct hns3_hw *hw, struct hns3_cmq_ring *ring)
86 {
87         int size  = ring->desc_num * sizeof(struct hns3_cmd_desc);
88
89         if (hns3_allocate_dma_mem(hw, ring, size, HNS3_CMD_DESC_ALIGNMENT)) {
90                 hns3_err(hw, "allocate dma mem failed");
91                 return -ENOMEM;
92         }
93
94         return 0;
95 }
96
97 static void
98 hns3_free_cmd_desc(struct hns3_hw *hw, struct hns3_cmq_ring *ring)
99 {
100         if (ring->desc)
101                 hns3_free_dma_mem(hw, ring);
102 }
103
104 static int
105 hns3_alloc_cmd_queue(struct hns3_hw *hw, int ring_type)
106 {
107         struct hns3_cmq_ring *ring =
108                 (ring_type == HNS3_TYPE_CSQ) ? &hw->cmq.csq : &hw->cmq.crq;
109         int ret;
110
111         ring->ring_type = ring_type;
112         ring->hw = hw;
113
114         ret = hns3_alloc_cmd_desc(hw, ring);
115         if (ret)
116                 hns3_err(hw, "descriptor %s alloc error %d",
117                             (ring_type == HNS3_TYPE_CSQ) ? "CSQ" : "CRQ", ret);
118
119         return ret;
120 }
121
122 void
123 hns3_cmd_reuse_desc(struct hns3_cmd_desc *desc, bool is_read)
124 {
125         desc->flag = rte_cpu_to_le_16(HNS3_CMD_FLAG_NO_INTR | HNS3_CMD_FLAG_IN);
126         if (is_read)
127                 desc->flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_WR);
128         else
129                 desc->flag &= rte_cpu_to_le_16(~HNS3_CMD_FLAG_WR);
130 }
131
132 void
133 hns3_cmd_setup_basic_desc(struct hns3_cmd_desc *desc,
134                           enum hns3_opcode_type opcode, bool is_read)
135 {
136         memset((void *)desc, 0, sizeof(struct hns3_cmd_desc));
137         desc->opcode = rte_cpu_to_le_16(opcode);
138         desc->flag = rte_cpu_to_le_16(HNS3_CMD_FLAG_NO_INTR | HNS3_CMD_FLAG_IN);
139
140         if (is_read)
141                 desc->flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_WR);
142 }
143
144 static void
145 hns3_cmd_clear_regs(struct hns3_hw *hw)
146 {
147         hns3_write_dev(hw, HNS3_CMDQ_TX_ADDR_L_REG, 0);
148         hns3_write_dev(hw, HNS3_CMDQ_TX_ADDR_H_REG, 0);
149         hns3_write_dev(hw, HNS3_CMDQ_TX_DEPTH_REG, 0);
150         hns3_write_dev(hw, HNS3_CMDQ_TX_HEAD_REG, 0);
151         hns3_write_dev(hw, HNS3_CMDQ_TX_TAIL_REG, 0);
152         hns3_write_dev(hw, HNS3_CMDQ_RX_ADDR_L_REG, 0);
153         hns3_write_dev(hw, HNS3_CMDQ_RX_ADDR_H_REG, 0);
154         hns3_write_dev(hw, HNS3_CMDQ_RX_DEPTH_REG, 0);
155         hns3_write_dev(hw, HNS3_CMDQ_RX_HEAD_REG, 0);
156         hns3_write_dev(hw, HNS3_CMDQ_RX_TAIL_REG, 0);
157 }
158
159 static void
160 hns3_cmd_config_regs(struct hns3_cmq_ring *ring)
161 {
162         uint64_t dma = ring->desc_dma_addr;
163
164         if (ring->ring_type == HNS3_TYPE_CSQ) {
165                 hns3_write_dev(ring->hw, HNS3_CMDQ_TX_ADDR_L_REG,
166                                lower_32_bits(dma));
167                 hns3_write_dev(ring->hw, HNS3_CMDQ_TX_ADDR_H_REG,
168                                upper_32_bits(dma));
169                 hns3_write_dev(ring->hw, HNS3_CMDQ_TX_DEPTH_REG,
170                                ring->desc_num >> HNS3_NIC_CMQ_DESC_NUM_S |
171                                HNS3_NIC_SW_RST_RDY);
172                 hns3_write_dev(ring->hw, HNS3_CMDQ_TX_HEAD_REG, 0);
173                 hns3_write_dev(ring->hw, HNS3_CMDQ_TX_TAIL_REG, 0);
174         } else {
175                 hns3_write_dev(ring->hw, HNS3_CMDQ_RX_ADDR_L_REG,
176                                lower_32_bits(dma));
177                 hns3_write_dev(ring->hw, HNS3_CMDQ_RX_ADDR_H_REG,
178                                upper_32_bits(dma));
179                 hns3_write_dev(ring->hw, HNS3_CMDQ_RX_DEPTH_REG,
180                                ring->desc_num >> HNS3_NIC_CMQ_DESC_NUM_S);
181                 hns3_write_dev(ring->hw, HNS3_CMDQ_RX_HEAD_REG, 0);
182                 hns3_write_dev(ring->hw, HNS3_CMDQ_RX_TAIL_REG, 0);
183         }
184 }
185
186 static void
187 hns3_cmd_init_regs(struct hns3_hw *hw)
188 {
189         hns3_cmd_config_regs(&hw->cmq.csq);
190         hns3_cmd_config_regs(&hw->cmq.crq);
191 }
192
193 static int
194 hns3_cmd_csq_clean(struct hns3_hw *hw)
195 {
196         struct hns3_cmq_ring *csq = &hw->cmq.csq;
197         uint32_t head;
198         uint32_t addr;
199         int clean;
200
201         head = hns3_read_dev(hw, HNS3_CMDQ_TX_HEAD_REG);
202         addr = hns3_read_dev(hw, HNS3_CMDQ_TX_ADDR_L_REG);
203         if (!is_valid_csq_clean_head(csq, head) || addr == 0) {
204                 hns3_err(hw, "wrong cmd addr(%0x) head (%u, %u-%u)", addr, head,
205                          csq->next_to_use, csq->next_to_clean);
206                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
207                         __atomic_store_n(&hw->reset.disable_cmd, 1,
208                                          __ATOMIC_RELAXED);
209                         hns3_schedule_delayed_reset(HNS3_DEV_HW_TO_ADAPTER(hw));
210                 }
211
212                 return -EIO;
213         }
214
215         clean = (head - csq->next_to_clean + csq->desc_num) % csq->desc_num;
216         csq->next_to_clean = head;
217         return clean;
218 }
219
220 static int
221 hns3_cmd_csq_done(struct hns3_hw *hw)
222 {
223         uint32_t head = hns3_read_dev(hw, HNS3_CMDQ_TX_HEAD_REG);
224
225         return head == hw->cmq.csq.next_to_use;
226 }
227
228 static bool
229 hns3_is_special_opcode(uint16_t opcode)
230 {
231         /*
232          * These commands have several descriptors,
233          * and use the first one to save opcode and return value.
234          */
235         uint16_t spec_opcode[] = {HNS3_OPC_STATS_64_BIT,
236                                   HNS3_OPC_STATS_32_BIT,
237                                   HNS3_OPC_STATS_MAC,
238                                   HNS3_OPC_STATS_MAC_ALL,
239                                   HNS3_OPC_QUERY_32_BIT_REG,
240                                   HNS3_OPC_QUERY_64_BIT_REG};
241         uint32_t i;
242
243         for (i = 0; i < ARRAY_SIZE(spec_opcode); i++)
244                 if (spec_opcode[i] == opcode)
245                         return true;
246
247         return false;
248 }
249
250 static int
251 hns3_cmd_convert_err_code(uint16_t desc_ret)
252 {
253         static const struct {
254                 uint16_t imp_errcode;
255                 int linux_errcode;
256         } hns3_cmdq_status[] = {
257                 {HNS3_CMD_EXEC_SUCCESS, 0},
258                 {HNS3_CMD_NO_AUTH, -EPERM},
259                 {HNS3_CMD_NOT_SUPPORTED, -EOPNOTSUPP},
260                 {HNS3_CMD_QUEUE_FULL, -EXFULL},
261                 {HNS3_CMD_NEXT_ERR, -ENOSR},
262                 {HNS3_CMD_UNEXE_ERR, -ENOTBLK},
263                 {HNS3_CMD_PARA_ERR, -EINVAL},
264                 {HNS3_CMD_RESULT_ERR, -ERANGE},
265                 {HNS3_CMD_TIMEOUT, -ETIME},
266                 {HNS3_CMD_HILINK_ERR, -ENOLINK},
267                 {HNS3_CMD_QUEUE_ILLEGAL, -ENXIO},
268                 {HNS3_CMD_INVALID, -EBADR},
269                 {HNS3_CMD_ROH_CHECK_FAIL, -EINVAL}
270         };
271
272         uint32_t i;
273
274         for (i = 0; i < ARRAY_SIZE(hns3_cmdq_status); i++)
275                 if (hns3_cmdq_status[i].imp_errcode == desc_ret)
276                         return hns3_cmdq_status[i].linux_errcode;
277
278         return -EREMOTEIO;
279 }
280
281 static int
282 hns3_cmd_get_hardware_reply(struct hns3_hw *hw,
283                             struct hns3_cmd_desc *desc, int num, int ntc)
284 {
285         uint16_t opcode, desc_ret;
286         int current_ntc = ntc;
287         int handle;
288
289         opcode = rte_le_to_cpu_16(desc[0].opcode);
290         for (handle = 0; handle < num; handle++) {
291                 /* Get the result of hardware write back */
292                 desc[handle] = hw->cmq.csq.desc[current_ntc];
293
294                 current_ntc++;
295                 if (current_ntc == hw->cmq.csq.desc_num)
296                         current_ntc = 0;
297         }
298
299         if (likely(!hns3_is_special_opcode(opcode)))
300                 desc_ret = rte_le_to_cpu_16(desc[num - 1].retval);
301         else
302                 desc_ret = rte_le_to_cpu_16(desc[0].retval);
303
304         hw->cmq.last_status = desc_ret;
305         return hns3_cmd_convert_err_code(desc_ret);
306 }
307
308 static int hns3_cmd_poll_reply(struct hns3_hw *hw)
309 {
310         struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
311         uint32_t timeout = 0;
312
313         do {
314                 if (hns3_cmd_csq_done(hw))
315                         return 0;
316
317                 if (__atomic_load_n(&hw->reset.disable_cmd, __ATOMIC_RELAXED)) {
318                         hns3_err(hw,
319                                  "Don't wait for reply because of disable_cmd");
320                         return -EBUSY;
321                 }
322
323                 if (is_reset_pending(hns)) {
324                         hns3_err(hw, "Don't wait for reply because of reset pending");
325                         return -EIO;
326                 }
327
328                 rte_delay_us(1);
329                 timeout++;
330         } while (timeout < hw->cmq.tx_timeout);
331         hns3_err(hw, "Wait for reply timeout");
332         return -ETIME;
333 }
334
335 /*
336  * hns3_cmd_send - send command to command queue
337  *
338  * @param hw
339  *   pointer to the hw struct
340  * @param desc
341  *   prefilled descriptor for describing the command
342  * @param num
343  *   the number of descriptors to be sent
344  * @return
345  *   - -EBUSY if detect device is in resetting
346  *   - -EIO   if detect cmd csq corrupted (due to reset) or
347  *            there is reset pending
348  *   - -ENOMEM/-ETIME/...(Non-Zero) if other error case
349  *   - Zero   if operation completed successfully
350  *
351  * Note -BUSY/-EIO only used in reset case
352  *
353  * Note this is the main send command for command queue, it
354  * sends the queue, cleans the queue, etc
355  */
356 int
357 hns3_cmd_send(struct hns3_hw *hw, struct hns3_cmd_desc *desc, int num)
358 {
359         struct hns3_cmd_desc *desc_to_use;
360         int handle = 0;
361         int retval;
362         uint32_t ntc;
363
364         if (__atomic_load_n(&hw->reset.disable_cmd, __ATOMIC_RELAXED))
365                 return -EBUSY;
366
367         rte_spinlock_lock(&hw->cmq.csq.lock);
368
369         /* Clean the command send queue */
370         retval = hns3_cmd_csq_clean(hw);
371         if (retval < 0) {
372                 rte_spinlock_unlock(&hw->cmq.csq.lock);
373                 return retval;
374         }
375
376         if (num > hns3_ring_space(&hw->cmq.csq)) {
377                 rte_spinlock_unlock(&hw->cmq.csq.lock);
378                 return -ENOMEM;
379         }
380
381         /*
382          * Record the location of desc in the ring for this time
383          * which will be use for hardware to write back
384          */
385         ntc = hw->cmq.csq.next_to_use;
386
387         while (handle < num) {
388                 desc_to_use = &hw->cmq.csq.desc[hw->cmq.csq.next_to_use];
389                 *desc_to_use = desc[handle];
390                 (hw->cmq.csq.next_to_use)++;
391                 if (hw->cmq.csq.next_to_use == hw->cmq.csq.desc_num)
392                         hw->cmq.csq.next_to_use = 0;
393                 handle++;
394         }
395
396         /* Write to hardware */
397         hns3_write_dev(hw, HNS3_CMDQ_TX_TAIL_REG, hw->cmq.csq.next_to_use);
398
399         /*
400          * If the command is sync, wait for the firmware to write back,
401          * if multi descriptors to be sent, use the first one to check.
402          */
403         if (HNS3_CMD_SEND_SYNC(rte_le_to_cpu_16(desc->flag))) {
404                 retval = hns3_cmd_poll_reply(hw);
405                 if (!retval)
406                         retval = hns3_cmd_get_hardware_reply(hw, desc, num,
407                                                              ntc);
408         }
409
410         rte_spinlock_unlock(&hw->cmq.csq.lock);
411         return retval;
412 }
413
414 static void
415 hns3_parse_capability(struct hns3_hw *hw,
416                       struct hns3_query_version_cmd *cmd)
417 {
418         uint32_t caps = rte_le_to_cpu_32(cmd->caps[0]);
419
420         if (hns3_get_bit(caps, HNS3_CAPS_UDP_GSO_B))
421                 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_UDP_GSO_B, 1);
422         if (hns3_get_bit(caps, HNS3_CAPS_FD_QUEUE_REGION_B))
423                 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_FD_QUEUE_REGION_B,
424                              1);
425         if (hns3_get_bit(caps, HNS3_CAPS_PTP_B)) {
426                 /*
427                  * PTP depends on special packet type reported by hardware which
428                  * enabled rxd advanced layout, so if the hardware doesn't
429                  * support rxd advanced layout, driver should ignore the PTP
430                  * capability.
431                  */
432                 if (hns3_get_bit(caps, HNS3_CAPS_RXD_ADV_LAYOUT_B))
433                         hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_PTP_B, 1);
434                 else
435                         hns3_warn(hw, "ignore PTP capability due to lack of "
436                                   "rxd advanced layout capability.");
437         }
438         if (hns3_get_bit(caps, HNS3_CAPS_TX_PUSH_B))
439                 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_TX_PUSH_B, 1);
440         if (hns3_get_bit(caps, HNS3_CAPS_PHY_IMP_B))
441                 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_COPPER_B, 1);
442         if (hns3_get_bit(caps, HNS3_CAPS_TQP_TXRX_INDEP_B))
443                 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_INDEP_TXRX_B, 1);
444         if (hns3_get_bit(caps, HNS3_CAPS_STASH_B))
445                 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_STASH_B, 1);
446         if (hns3_get_bit(caps, HNS3_CAPS_RXD_ADV_LAYOUT_B))
447                 hns3_set_bit(hw->capability, HNS3_DEV_SUPPORT_RXD_ADV_LAYOUT_B,
448                              1);
449         if (hns3_get_bit(caps, HNS3_CAPS_UDP_TUNNEL_CSUM_B))
450                 hns3_set_bit(hw->capability,
451                                 HNS3_DEV_SUPPORT_OUTER_UDP_CKSUM_B, 1);
452 }
453
454 static uint32_t
455 hns3_build_api_caps(void)
456 {
457         uint32_t api_caps = 0;
458
459         hns3_set_bit(api_caps, HNS3_API_CAP_FLEX_RSS_TBL_B, 1);
460
461         return rte_cpu_to_le_32(api_caps);
462 }
463
464 static int
465 hns3_cmd_query_firmware_version_and_capability(struct hns3_hw *hw)
466 {
467         struct hns3_query_version_cmd *resp;
468         struct hns3_cmd_desc desc;
469         int ret;
470
471         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_FW_VER, 1);
472         resp = (struct hns3_query_version_cmd *)desc.data;
473         resp->api_caps = hns3_build_api_caps();
474
475         /* Initialize the cmd function */
476         ret = hns3_cmd_send(hw, &desc, 1);
477         if (ret)
478                 return ret;
479
480         hw->fw_version = rte_le_to_cpu_32(resp->firmware);
481         hns3_parse_capability(hw, resp);
482
483         return 0;
484 }
485
486 int
487 hns3_cmd_init_queue(struct hns3_hw *hw)
488 {
489         int ret;
490
491         /* Setup the lock for command queue */
492         rte_spinlock_init(&hw->cmq.csq.lock);
493         rte_spinlock_init(&hw->cmq.crq.lock);
494
495         /*
496          * Clear up all command register,
497          * in case there are some residual values
498          */
499         hns3_cmd_clear_regs(hw);
500
501         /* Setup the queue entries for use cmd queue */
502         hw->cmq.csq.desc_num = HNS3_NIC_CMQ_DESC_NUM;
503         hw->cmq.crq.desc_num = HNS3_NIC_CMQ_DESC_NUM;
504
505         /* Setup Tx write back timeout */
506         hw->cmq.tx_timeout = HNS3_CMDQ_TX_TIMEOUT;
507
508         /* Setup queue rings */
509         ret = hns3_alloc_cmd_queue(hw, HNS3_TYPE_CSQ);
510         if (ret) {
511                 PMD_INIT_LOG(ERR, "CSQ ring setup error %d", ret);
512                 return ret;
513         }
514
515         ret = hns3_alloc_cmd_queue(hw, HNS3_TYPE_CRQ);
516         if (ret) {
517                 PMD_INIT_LOG(ERR, "CRQ ring setup error %d", ret);
518                 goto err_crq;
519         }
520
521         return 0;
522
523 err_crq:
524         hns3_free_cmd_desc(hw, &hw->cmq.csq);
525
526         return ret;
527 }
528
529 static void
530 hns3_update_dev_lsc_cap(struct hns3_hw *hw, int fw_compact_cmd_result)
531 {
532         struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
533
534         if (hw->adapter_state != HNS3_NIC_UNINITIALIZED)
535                 return;
536
537         if (fw_compact_cmd_result != 0) {
538                 /*
539                  * If fw_compact_cmd_result is not zero, it means firmware don't
540                  * support link status change interrupt.
541                  * Framework already set RTE_ETH_DEV_INTR_LSC bit because driver
542                  * declared RTE_PCI_DRV_INTR_LSC in drv_flags. It need to clear
543                  * the RTE_ETH_DEV_INTR_LSC capability when detect firmware
544                  * don't support link status change interrupt.
545                  */
546                 dev->data->dev_flags &= ~RTE_ETH_DEV_INTR_LSC;
547         }
548 }
549
550 static int
551 hns3_apply_fw_compat_cmd_result(struct hns3_hw *hw, int result)
552 {
553         if (result != 0 && hns3_dev_copper_supported(hw)) {
554                 hns3_err(hw, "firmware fails to initialize the PHY, ret = %d.",
555                          result);
556                 return result;
557         }
558
559         hns3_update_dev_lsc_cap(hw, result);
560
561         return 0;
562 }
563
564 static int
565 hns3_firmware_compat_config(struct hns3_hw *hw, bool is_init)
566 {
567         struct hns3_firmware_compat_cmd *req;
568         struct hns3_cmd_desc desc;
569         uint32_t compat = 0;
570
571 #if defined(RTE_HNS3_ONLY_1630_FPGA)
572         /* If resv reg enabled phy driver of imp is not configured, driver
573          * will use temporary phy driver.
574          */
575         struct rte_pci_device *pci_dev;
576         struct rte_eth_dev *eth_dev;
577         uint8_t revision;
578         int ret;
579
580         eth_dev = &rte_eth_devices[hw->data->port_id];
581         pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
582         /* Get PCI revision id */
583         ret = rte_pci_read_config(pci_dev, &revision, HNS3_PCI_REVISION_ID_LEN,
584                                   HNS3_PCI_REVISION_ID);
585         if (ret != HNS3_PCI_REVISION_ID_LEN) {
586                 PMD_INIT_LOG(ERR, "failed to read pci revision id, ret = %d",
587                              ret);
588                 return -EIO;
589         }
590         if (revision == PCI_REVISION_ID_HIP09_A) {
591                 struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
592                 if (hns3_dev_copper_supported(hw) == 0 || pf->is_tmp_phy) {
593                         PMD_INIT_LOG(ERR, "***use temp phy driver in dpdk***");
594                         pf->is_tmp_phy = true;
595                         hns3_set_bit(hw->capability,
596                                      HNS3_DEV_SUPPORT_COPPER_B, 1);
597                         return 0;
598                 }
599
600                 PMD_INIT_LOG(ERR, "***use phy driver in imp***");
601         }
602 #endif
603
604         hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_FIRMWARE_COMPAT_CFG, false);
605         req = (struct hns3_firmware_compat_cmd *)desc.data;
606
607         if (is_init) {
608                 hns3_set_bit(compat, HNS3_LINK_EVENT_REPORT_EN_B, 1);
609                 hns3_set_bit(compat, HNS3_NCSI_ERROR_REPORT_EN_B, 0);
610                 if (hns3_dev_copper_supported(hw))
611                         hns3_set_bit(compat, HNS3_FIRMWARE_PHY_DRIVER_EN_B, 1);
612         }
613         req->compat = rte_cpu_to_le_32(compat);
614
615         return hns3_cmd_send(hw, &desc, 1);
616 }
617
618 int
619 hns3_cmd_init(struct hns3_hw *hw)
620 {
621         struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
622         uint32_t version;
623         int ret;
624
625         rte_spinlock_lock(&hw->cmq.csq.lock);
626         rte_spinlock_lock(&hw->cmq.crq.lock);
627
628         hw->cmq.csq.next_to_clean = 0;
629         hw->cmq.csq.next_to_use = 0;
630         hw->cmq.crq.next_to_clean = 0;
631         hw->cmq.crq.next_to_use = 0;
632         hw->mbx_resp.head = 0;
633         hw->mbx_resp.tail = 0;
634         hw->mbx_resp.lost = 0;
635         hns3_cmd_init_regs(hw);
636
637         rte_spinlock_unlock(&hw->cmq.crq.lock);
638         rte_spinlock_unlock(&hw->cmq.csq.lock);
639
640         /*
641          * Check if there is new reset pending, because the higher level
642          * reset may happen when lower level reset is being processed.
643          */
644         if (is_reset_pending(HNS3_DEV_HW_TO_ADAPTER(hw))) {
645                 PMD_INIT_LOG(ERR, "New reset pending, keep disable cmd");
646                 ret = -EBUSY;
647                 goto err_cmd_init;
648         }
649         __atomic_store_n(&hw->reset.disable_cmd, 0, __ATOMIC_RELAXED);
650
651         ret = hns3_cmd_query_firmware_version_and_capability(hw);
652         if (ret) {
653                 PMD_INIT_LOG(ERR, "firmware version query failed %d", ret);
654                 goto err_cmd_init;
655         }
656
657         version = hw->fw_version;
658         PMD_INIT_LOG(INFO, "The firmware version is %lu.%lu.%lu.%lu",
659                      hns3_get_field(version, HNS3_FW_VERSION_BYTE3_M,
660                                     HNS3_FW_VERSION_BYTE3_S),
661                      hns3_get_field(version, HNS3_FW_VERSION_BYTE2_M,
662                                     HNS3_FW_VERSION_BYTE2_S),
663                      hns3_get_field(version, HNS3_FW_VERSION_BYTE1_M,
664                                     HNS3_FW_VERSION_BYTE1_S),
665                      hns3_get_field(version, HNS3_FW_VERSION_BYTE0_M,
666                                     HNS3_FW_VERSION_BYTE0_S));
667
668         if (hns->is_vf)
669                 return 0;
670
671         /*
672          * Requiring firmware to enable some features, firber port can still
673          * work without it, but copper port can't work because the firmware
674          * fails to take over the PHY.
675          */
676         ret = hns3_firmware_compat_config(hw, true);
677         if (ret)
678                 PMD_INIT_LOG(WARNING, "firmware compatible features not "
679                              "supported, ret = %d.", ret);
680
681         /*
682          * Perform some corresponding operations based on the firmware
683          * compatibility configuration result.
684          */
685         ret = hns3_apply_fw_compat_cmd_result(hw, ret);
686         if (ret)
687                 goto err_cmd_init;
688
689         return 0;
690
691 err_cmd_init:
692         __atomic_store_n(&hw->reset.disable_cmd, 1, __ATOMIC_RELAXED);
693         return ret;
694 }
695
696 static void
697 hns3_destroy_queue(struct hns3_hw *hw, struct hns3_cmq_ring *ring)
698 {
699         rte_spinlock_lock(&ring->lock);
700
701         hns3_free_cmd_desc(hw, ring);
702
703         rte_spinlock_unlock(&ring->lock);
704 }
705
706 void
707 hns3_cmd_destroy_queue(struct hns3_hw *hw)
708 {
709         hns3_destroy_queue(hw, &hw->cmq.csq);
710         hns3_destroy_queue(hw, &hw->cmq.crq);
711 }
712
713 void
714 hns3_cmd_uninit(struct hns3_hw *hw)
715 {
716         struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
717
718         if (!hns->is_vf)
719                 (void)hns3_firmware_compat_config(hw, false);
720
721         __atomic_store_n(&hw->reset.disable_cmd, 1, __ATOMIC_RELAXED);
722
723         /*
724          * A delay is added to ensure that the register cleanup operations
725          * will not be performed concurrently with the firmware command and
726          * ensure that all the reserved commands are executed.
727          * Concurrency may occur in two scenarios: asynchronous command and
728          * timeout command. If the command fails to be executed due to busy
729          * scheduling, the command will be processed in the next scheduling
730          * of the firmware.
731          */
732         rte_delay_ms(HNS3_CMDQ_CLEAR_WAIT_TIME);
733
734         rte_spinlock_lock(&hw->cmq.csq.lock);
735         rte_spinlock_lock(&hw->cmq.crq.lock);
736         hns3_cmd_clear_regs(hw);
737         rte_spinlock_unlock(&hw->cmq.crq.lock);
738         rte_spinlock_unlock(&hw->cmq.csq.lock);
739 }