1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(C) 2021 HiSilicon Limited
8 #include <rte_bus_pci.h>
9 #include <rte_cycles.h>
13 #include <rte_malloc.h>
14 #include <rte_memzone.h>
16 #include <rte_dmadev_pmd.h>
18 #include "hisi_dmadev.h"
20 RTE_LOG_REGISTER_DEFAULT(hisi_dma_logtype, INFO);
21 #define HISI_DMA_LOG(level, fmt, args...) \
22 rte_log(RTE_LOG_ ## level, hisi_dma_logtype, \
23 "%s(): " fmt "\n", __func__, ##args)
24 #define HISI_DMA_LOG_RAW(hw, level, fmt, args...) \
25 rte_log(RTE_LOG_ ## level, hisi_dma_logtype, \
26 "%s %s(): " fmt "\n", (hw)->data->dev_name, \
28 #define HISI_DMA_DEBUG(hw, fmt, args...) \
29 HISI_DMA_LOG_RAW(hw, DEBUG, fmt, ## args)
30 #define HISI_DMA_INFO(hw, fmt, args...) \
31 HISI_DMA_LOG_RAW(hw, INFO, fmt, ## args)
32 #define HISI_DMA_WARN(hw, fmt, args...) \
33 HISI_DMA_LOG_RAW(hw, WARNING, fmt, ## args)
34 #define HISI_DMA_ERR(hw, fmt, args...) \
35 HISI_DMA_LOG_RAW(hw, ERR, fmt, ## args)
38 hisi_dma_queue_base(struct hisi_dma_dev *hw)
40 if (hw->reg_layout == HISI_DMA_REG_LAYOUT_HIP08)
41 return HISI_DMA_HIP08_QUEUE_BASE;
46 static volatile void *
47 hisi_dma_queue_regaddr(struct hisi_dma_dev *hw, uint32_t qoff)
49 uint32_t off = hisi_dma_queue_base(hw) +
50 hw->queue_id * HISI_DMA_QUEUE_REGION_SIZE + qoff;
51 return (volatile void *)((char *)hw->io_base + off);
55 hisi_dma_write_reg(void *base, uint32_t off, uint32_t val)
57 rte_write32(rte_cpu_to_le_32(val),
58 (volatile void *)((char *)base + off));
62 hisi_dma_write_dev(struct hisi_dma_dev *hw, uint32_t off, uint32_t val)
64 hisi_dma_write_reg(hw->io_base, off, val);
68 hisi_dma_write_queue(struct hisi_dma_dev *hw, uint32_t qoff, uint32_t val)
70 uint32_t off = hisi_dma_queue_base(hw) +
71 hw->queue_id * HISI_DMA_QUEUE_REGION_SIZE + qoff;
72 hisi_dma_write_dev(hw, off, val);
76 hisi_dma_read_reg(void *base, uint32_t off)
78 uint32_t val = rte_read32((volatile void *)((char *)base + off));
79 return rte_le_to_cpu_32(val);
83 hisi_dma_read_dev(struct hisi_dma_dev *hw, uint32_t off)
85 return hisi_dma_read_reg(hw->io_base, off);
89 hisi_dma_read_queue(struct hisi_dma_dev *hw, uint32_t qoff)
91 uint32_t off = hisi_dma_queue_base(hw) +
92 hw->queue_id * HISI_DMA_QUEUE_REGION_SIZE + qoff;
93 return hisi_dma_read_dev(hw, off);
97 hisi_dma_update_bit(struct hisi_dma_dev *hw, uint32_t off, uint32_t pos,
100 uint32_t tmp = hisi_dma_read_dev(hw, off);
101 uint32_t mask = 1u << pos;
102 tmp = set ? tmp | mask : tmp & ~mask;
103 hisi_dma_write_dev(hw, off, tmp);
107 hisi_dma_update_queue_bit(struct hisi_dma_dev *hw, uint32_t qoff, uint32_t pos,
110 uint32_t tmp = hisi_dma_read_queue(hw, qoff);
111 uint32_t mask = 1u << pos;
112 tmp = set ? tmp | mask : tmp & ~mask;
113 hisi_dma_write_queue(hw, qoff, tmp);
117 hisi_dma_update_queue_mbit(struct hisi_dma_dev *hw, uint32_t qoff,
118 uint32_t mask, bool set)
120 uint32_t tmp = hisi_dma_read_queue(hw, qoff);
121 tmp = set ? tmp | mask : tmp & ~mask;
122 hisi_dma_write_queue(hw, qoff, tmp);
125 #define hisi_dma_poll_hw_state(hw, val, cond, sleep_us, timeout_us) ({ \
126 uint32_t timeout = 0; \
127 while (timeout++ <= (timeout_us)) { \
128 (val) = hisi_dma_read_queue(hw, HISI_DMA_QUEUE_FSM_REG); \
131 rte_delay_us(sleep_us); \
133 (cond) ? 0 : -ETIME; \
137 hisi_dma_reset_hw(struct hisi_dma_dev *hw)
139 #define POLL_SLEEP_US 100
140 #define POLL_TIMEOUT_US 10000
145 hisi_dma_update_queue_bit(hw, HISI_DMA_QUEUE_CTRL0_REG,
146 HISI_DMA_QUEUE_CTRL0_PAUSE_B, true);
147 hisi_dma_update_queue_bit(hw, HISI_DMA_QUEUE_CTRL0_REG,
148 HISI_DMA_QUEUE_CTRL0_EN_B, false);
150 ret = hisi_dma_poll_hw_state(hw, tmp,
151 FIELD_GET(HISI_DMA_QUEUE_FSM_STS_M, tmp) != HISI_DMA_STATE_RUN,
152 POLL_SLEEP_US, POLL_TIMEOUT_US);
154 HISI_DMA_ERR(hw, "disable dma timeout!");
158 hisi_dma_update_queue_bit(hw, HISI_DMA_QUEUE_CTRL1_REG,
159 HISI_DMA_QUEUE_CTRL1_RESET_B, true);
160 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_SQ_TAIL_REG, 0);
161 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_CQ_HEAD_REG, 0);
162 hisi_dma_update_queue_bit(hw, HISI_DMA_QUEUE_CTRL0_REG,
163 HISI_DMA_QUEUE_CTRL0_PAUSE_B, false);
165 ret = hisi_dma_poll_hw_state(hw, tmp,
166 FIELD_GET(HISI_DMA_QUEUE_FSM_STS_M, tmp) == HISI_DMA_STATE_IDLE,
167 POLL_SLEEP_US, POLL_TIMEOUT_US);
169 HISI_DMA_ERR(hw, "reset dma timeout!");
177 hisi_dma_init_hw(struct hisi_dma_dev *hw)
179 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_SQ_BASE_L_REG,
180 lower_32_bits(hw->sqe_iova));
181 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_SQ_BASE_H_REG,
182 upper_32_bits(hw->sqe_iova));
183 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_CQ_BASE_L_REG,
184 lower_32_bits(hw->cqe_iova));
185 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_CQ_BASE_H_REG,
186 upper_32_bits(hw->cqe_iova));
187 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_SQ_DEPTH_REG,
189 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_CQ_DEPTH_REG, hw->cq_depth - 1);
190 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_SQ_TAIL_REG, 0);
191 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_CQ_HEAD_REG, 0);
192 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_ERR_INT_NUM0_REG, 0);
193 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_ERR_INT_NUM1_REG, 0);
194 hisi_dma_write_queue(hw, HISI_DMA_QUEUE_ERR_INT_NUM2_REG, 0);
196 if (hw->reg_layout == HISI_DMA_REG_LAYOUT_HIP08) {
197 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM3_REG,
199 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM4_REG,
201 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM5_REG,
203 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM6_REG,
205 hisi_dma_update_queue_bit(hw, HISI_DMA_QUEUE_CTRL0_REG,
206 HISI_DMA_HIP08_QUEUE_CTRL0_ERR_ABORT_B, false);
207 hisi_dma_update_queue_mbit(hw, HISI_DMA_QUEUE_INT_STATUS_REG,
208 HISI_DMA_HIP08_QUEUE_INT_MASK_M, true);
209 hisi_dma_update_queue_mbit(hw,
210 HISI_DMA_HIP08_QUEUE_INT_MASK_REG,
211 HISI_DMA_HIP08_QUEUE_INT_MASK_M, true);
216 hisi_dma_init_gbl(void *pci_bar, uint8_t revision)
218 struct hisi_dma_dev hw;
220 memset(&hw, 0, sizeof(hw));
221 hw.io_base = pci_bar;
223 if (revision == HISI_DMA_REVISION_HIP08B)
224 hisi_dma_update_bit(&hw, HISI_DMA_HIP08_MODE_REG,
225 HISI_DMA_HIP08_MODE_SEL_B, true);
229 hisi_dma_reg_layout(uint8_t revision)
231 if (revision == HISI_DMA_REVISION_HIP08B)
232 return HISI_DMA_REG_LAYOUT_HIP08;
234 return HISI_DMA_REG_LAYOUT_INVALID;
238 hisi_dma_zero_iomem(struct hisi_dma_dev *hw)
240 memset(hw->iomz->addr, 0, hw->iomz_sz);
244 hisi_dma_alloc_iomem(struct hisi_dma_dev *hw, uint16_t ring_size,
245 const char *dev_name)
247 uint32_t sq_size = sizeof(struct hisi_dma_sqe) * ring_size;
248 uint32_t cq_size = sizeof(struct hisi_dma_cqe) *
249 (ring_size + HISI_DMA_CQ_RESERVED);
250 uint32_t status_size = sizeof(uint16_t) * ring_size;
251 char mz_name[RTE_MEMZONE_NAMESIZE];
252 const struct rte_memzone *iomz;
255 sq_size = RTE_CACHE_LINE_ROUNDUP(sq_size);
256 cq_size = RTE_CACHE_LINE_ROUNDUP(cq_size);
257 status_size = RTE_CACHE_LINE_ROUNDUP(status_size);
258 total_size = sq_size + cq_size + status_size;
260 (void)snprintf(mz_name, sizeof(mz_name), "hisi_dma:%s", dev_name);
261 iomz = rte_memzone_reserve(mz_name, total_size, hw->data->numa_node,
262 RTE_MEMZONE_IOVA_CONTIG);
264 HISI_DMA_ERR(hw, "malloc %s iomem fail!", mz_name);
269 hw->iomz_sz = total_size;
270 hw->sqe = iomz->addr;
271 hw->cqe = (void *)((char *)iomz->addr + sq_size);
272 hw->status = (void *)((char *)iomz->addr + sq_size + cq_size);
273 hw->sqe_iova = iomz->iova;
274 hw->cqe_iova = iomz->iova + sq_size;
275 hw->sq_depth_mask = ring_size - 1;
276 hw->cq_depth = ring_size + HISI_DMA_CQ_RESERVED;
277 hisi_dma_zero_iomem(hw);
283 hisi_dma_free_iomem(struct hisi_dma_dev *hw)
285 if (hw->iomz != NULL)
286 rte_memzone_free(hw->iomz);
294 hw->sq_depth_mask = 0;
299 hisi_dma_info_get(const struct rte_dma_dev *dev,
300 struct rte_dma_info *dev_info,
304 RTE_SET_USED(info_sz);
306 dev_info->dev_capa = RTE_DMA_CAPA_MEM_TO_MEM |
307 RTE_DMA_CAPA_OPS_COPY;
308 dev_info->max_vchans = 1;
309 dev_info->max_desc = HISI_DMA_MAX_DESC_NUM;
310 dev_info->min_desc = HISI_DMA_MIN_DESC_NUM;
316 hisi_dma_configure(struct rte_dma_dev *dev,
317 const struct rte_dma_conf *conf,
322 RTE_SET_USED(conf_sz);
327 hisi_dma_vchan_setup(struct rte_dma_dev *dev, uint16_t vchan,
328 const struct rte_dma_vchan_conf *conf,
331 struct hisi_dma_dev *hw = dev->data->dev_private;
335 RTE_SET_USED(conf_sz);
337 if (!rte_is_power_of_2(conf->nb_desc)) {
338 HISI_DMA_ERR(hw, "Number of desc must be power of 2!");
342 hisi_dma_free_iomem(hw);
343 ret = hisi_dma_alloc_iomem(hw, conf->nb_desc, dev->data->dev_name);
351 hisi_dma_start(struct rte_dma_dev *dev)
353 struct hisi_dma_dev *hw = dev->data->dev_private;
355 if (hw->iomz == NULL) {
356 HISI_DMA_ERR(hw, "Vchan was not setup, start fail!\n");
360 /* Reset the dmadev to a known state, include:
361 * 1) zero iomem, also include status fields.
362 * 2) init hardware register.
363 * 3) init index values to zero.
364 * 4) init running statistics.
366 hisi_dma_zero_iomem(hw);
367 hisi_dma_init_hw(hw);
374 hw->cqs_completed = 0;
380 hisi_dma_update_queue_bit(hw, HISI_DMA_QUEUE_CTRL0_REG,
381 HISI_DMA_QUEUE_CTRL0_EN_B, true);
387 hisi_dma_stop(struct rte_dma_dev *dev)
389 return hisi_dma_reset_hw(dev->data->dev_private);
393 hisi_dma_close(struct rte_dma_dev *dev)
395 /* The dmadev already stopped */
396 hisi_dma_free_iomem(dev->data->dev_private);
401 hisi_dma_stats_get(const struct rte_dma_dev *dev, uint16_t vchan,
402 struct rte_dma_stats *stats,
405 struct hisi_dma_dev *hw = dev->data->dev_private;
408 RTE_SET_USED(stats_sz);
409 stats->submitted = hw->submitted;
410 stats->completed = hw->completed;
411 stats->errors = hw->errors;
417 hisi_dma_stats_reset(struct rte_dma_dev *dev, uint16_t vchan)
419 struct hisi_dma_dev *hw = dev->data->dev_private;
430 hisi_dma_get_dump_range(struct hisi_dma_dev *hw, uint32_t *start, uint32_t *end)
432 if (hw->reg_layout == HISI_DMA_REG_LAYOUT_HIP08) {
433 *start = HISI_DMA_HIP08_DUMP_START_REG;
434 *end = HISI_DMA_HIP08_DUMP_END_REG;
442 hisi_dma_dump_common(struct hisi_dma_dev *hw, FILE *f)
444 #define DUMP_REGNUM_PER_LINE 4
449 hisi_dma_get_dump_range(hw, &start, &end);
451 (void)fprintf(f, " common-register:\n");
454 for (i = start; i <= end; i += sizeof(uint32_t)) {
455 if (cnt % DUMP_REGNUM_PER_LINE == 0)
456 (void)fprintf(f, " [%4x]:", i);
457 (void)fprintf(f, " 0x%08x", hisi_dma_read_dev(hw, i));
459 if (cnt % DUMP_REGNUM_PER_LINE == 0)
460 (void)fprintf(f, "\n");
462 if (cnt % DUMP_REGNUM_PER_LINE)
463 (void)fprintf(f, "\n");
467 hisi_dma_dump_read_queue(struct hisi_dma_dev *hw, uint32_t qoff,
468 char *buffer, int max_sz)
470 memset(buffer, 0, max_sz);
472 /* Address-related registers are not printed for security reasons. */
473 if (qoff == HISI_DMA_QUEUE_SQ_BASE_L_REG ||
474 qoff == HISI_DMA_QUEUE_SQ_BASE_H_REG ||
475 qoff == HISI_DMA_QUEUE_CQ_BASE_L_REG ||
476 qoff == HISI_DMA_QUEUE_CQ_BASE_H_REG) {
477 (void)snprintf(buffer, max_sz, "**********");
481 (void)snprintf(buffer, max_sz, "0x%08x", hisi_dma_read_queue(hw, qoff));
485 hisi_dma_dump_queue(struct hisi_dma_dev *hw, FILE *f)
487 #define REG_FMT_LEN 32
488 char buf[REG_FMT_LEN] = { 0 };
491 (void)fprintf(f, " queue-register:\n");
492 for (i = 0; i < HISI_DMA_QUEUE_REGION_SIZE; ) {
493 hisi_dma_dump_read_queue(hw, i, buf, sizeof(buf));
494 (void)fprintf(f, " [%2x]: %s", i, buf);
495 i += sizeof(uint32_t);
496 hisi_dma_dump_read_queue(hw, i, buf, sizeof(buf));
497 (void)fprintf(f, " %s", buf);
498 i += sizeof(uint32_t);
499 hisi_dma_dump_read_queue(hw, i, buf, sizeof(buf));
500 (void)fprintf(f, " %s", buf);
501 i += sizeof(uint32_t);
502 hisi_dma_dump_read_queue(hw, i, buf, sizeof(buf));
503 (void)fprintf(f, " %s\n", buf);
504 i += sizeof(uint32_t);
509 hisi_dma_dump(const struct rte_dma_dev *dev, FILE *f)
511 struct hisi_dma_dev *hw = dev->data->dev_private;
514 " revision: 0x%x queue_id: %u ring_size: %u\n"
515 " ridx: %u cridx: %u\n"
516 " sq_head: %u sq_tail: %u cq_sq_head: %u\n"
517 " cq_head: %u cqs_completed: %u cqe_vld: %u\n"
518 " submitted: %" PRIu64 " completed: %" PRIu64 " errors %"
520 hw->revision, hw->queue_id,
521 hw->sq_depth_mask > 0 ? hw->sq_depth_mask + 1 : 0,
523 hw->sq_head, hw->sq_tail, hw->cq_sq_head,
524 hw->cq_head, hw->cqs_completed, hw->cqe_vld,
525 hw->submitted, hw->completed, hw->errors);
526 hisi_dma_dump_queue(hw, f);
527 hisi_dma_dump_common(hw, f);
533 hisi_dma_copy(void *dev_private, uint16_t vchan,
534 rte_iova_t src, rte_iova_t dst,
535 uint32_t length, uint64_t flags)
537 struct hisi_dma_dev *hw = dev_private;
538 struct hisi_dma_sqe *sqe = &hw->sqe[hw->sq_tail];
542 if (((hw->sq_tail + 1) & hw->sq_depth_mask) == hw->sq_head)
545 sqe->dw0 = rte_cpu_to_le_32(SQE_OPCODE_M2M);
548 sqe->length = rte_cpu_to_le_32(length);
549 sqe->src_addr = rte_cpu_to_le_64(src);
550 sqe->dst_addr = rte_cpu_to_le_64(dst);
551 hw->sq_tail = (hw->sq_tail + 1) & hw->sq_depth_mask;
554 if (flags & RTE_DMA_OP_FLAG_FENCE)
555 sqe->dw0 |= rte_cpu_to_le_32(SQE_FENCE_FLAG);
556 if (flags & RTE_DMA_OP_FLAG_SUBMIT)
557 rte_write32(rte_cpu_to_le_32(hw->sq_tail), hw->sq_tail_reg);
563 hisi_dma_submit(void *dev_private, uint16_t vchan)
565 struct hisi_dma_dev *hw = dev_private;
568 rte_write32(rte_cpu_to_le_32(hw->sq_tail), hw->sq_tail_reg);
574 hisi_dma_scan_cq(struct hisi_dma_dev *hw)
576 volatile struct hisi_dma_cqe *cqe;
577 uint16_t csq_head = hw->cq_sq_head;
578 uint16_t cq_head = hw->cq_head;
583 cqe = &hw->cqe[cq_head];
585 misc = rte_le_to_cpu_64(misc);
586 if (FIELD_GET(CQE_VALID_B, misc) != hw->cqe_vld)
589 csq_head = FIELD_GET(CQE_SQ_HEAD_MASK, misc);
590 if (unlikely(misc & CQE_STATUS_MASK))
591 hw->status[csq_head] = FIELD_GET(CQE_STATUS_MASK,
596 if (cq_head == hw->cq_depth) {
597 hw->cqe_vld = !hw->cqe_vld;
605 hw->cq_head = cq_head;
606 hw->cq_sq_head = (csq_head + 1) & hw->sq_depth_mask;
607 hw->cqs_completed += count;
608 if (hw->cqs_completed >= HISI_DMA_CQ_RESERVED) {
609 rte_write32(rte_cpu_to_le_32(cq_head), hw->cq_head_reg);
610 hw->cqs_completed = 0;
614 static inline uint16_t
615 hisi_dma_calc_cpls(struct hisi_dma_dev *hw, const uint16_t nb_cpls)
619 if (hw->cq_sq_head >= hw->sq_head)
620 cpl_num = hw->cq_sq_head - hw->sq_head;
622 cpl_num = hw->sq_depth_mask + 1 - hw->sq_head + hw->cq_sq_head;
624 if (cpl_num > nb_cpls)
631 hisi_dma_completed(void *dev_private,
632 uint16_t vchan, const uint16_t nb_cpls,
633 uint16_t *last_idx, bool *has_error)
635 struct hisi_dma_dev *hw = dev_private;
636 uint16_t sq_head = hw->sq_head;
640 hisi_dma_scan_cq(hw);
642 cpl_num = hisi_dma_calc_cpls(hw, nb_cpls);
643 for (i = 0; i < cpl_num; i++) {
644 if (hw->status[sq_head]) {
648 sq_head = (sq_head + 1) & hw->sq_depth_mask;
652 *last_idx = hw->cridx - 1;
653 hw->sq_head = sq_head;
660 static enum rte_dma_status_code
661 hisi_dma_convert_status(uint16_t status)
664 case HISI_DMA_STATUS_SUCCESS:
665 return RTE_DMA_STATUS_SUCCESSFUL;
666 case HISI_DMA_STATUS_INVALID_OPCODE:
667 return RTE_DMA_STATUS_INVALID_OPCODE;
668 case HISI_DMA_STATUS_INVALID_LENGTH:
669 return RTE_DMA_STATUS_INVALID_LENGTH;
670 case HISI_DMA_STATUS_USER_ABORT:
671 return RTE_DMA_STATUS_USER_ABORT;
672 case HISI_DMA_STATUS_REMOTE_READ_ERROR:
673 case HISI_DMA_STATUS_AXI_READ_ERROR:
674 return RTE_DMA_STATUS_BUS_READ_ERROR;
675 case HISI_DMA_STATUS_AXI_WRITE_ERROR:
676 return RTE_DMA_STATUS_BUS_WRITE_ERROR;
677 case HISI_DMA_STATUS_DATA_POISON:
678 case HISI_DMA_STATUS_REMOTE_DATA_POISION:
679 return RTE_DMA_STATUS_DATA_POISION;
680 case HISI_DMA_STATUS_SQE_READ_ERROR:
681 case HISI_DMA_STATUS_SQE_READ_POISION:
682 return RTE_DMA_STATUS_DESCRIPTOR_READ_ERROR;
683 case HISI_DMA_STATUS_LINK_DOWN_ERROR:
684 return RTE_DMA_STATUS_DEV_LINK_ERROR;
686 return RTE_DMA_STATUS_ERROR_UNKNOWN;
691 hisi_dma_completed_status(void *dev_private,
692 uint16_t vchan, const uint16_t nb_cpls,
693 uint16_t *last_idx, enum rte_dma_status_code *status)
695 struct hisi_dma_dev *hw = dev_private;
696 uint16_t sq_head = hw->sq_head;
700 hisi_dma_scan_cq(hw);
702 cpl_num = hisi_dma_calc_cpls(hw, nb_cpls);
703 for (i = 0; i < cpl_num; i++) {
704 status[i] = hisi_dma_convert_status(hw->status[sq_head]);
705 hw->errors += !!status[i];
706 hw->status[sq_head] = HISI_DMA_STATUS_SUCCESS;
707 sq_head = (sq_head + 1) & hw->sq_depth_mask;
709 if (likely(cpl_num > 0)) {
710 hw->cridx += cpl_num;
711 *last_idx = hw->cridx - 1;
712 hw->sq_head = sq_head;
714 hw->completed += cpl_num;
720 hisi_dma_burst_capacity(const void *dev_private, uint16_t vchan)
722 const struct hisi_dma_dev *hw = dev_private;
723 uint16_t sq_head = hw->sq_head;
724 uint16_t sq_tail = hw->sq_tail;
728 return (sq_tail >= sq_head) ? hw->sq_depth_mask - sq_tail + sq_head :
729 sq_head - 1 - sq_tail;
733 hisi_dma_gen_pci_device_name(const struct rte_pci_device *pci_dev,
734 char *name, size_t size)
736 memset(name, 0, size);
737 (void)snprintf(name, size, "%x:%x.%x",
738 pci_dev->addr.bus, pci_dev->addr.devid,
739 pci_dev->addr.function);
743 hisi_dma_gen_dev_name(const struct rte_pci_device *pci_dev,
744 uint8_t queue_id, char *name, size_t size)
746 memset(name, 0, size);
747 (void)snprintf(name, size, "%x:%x.%x-ch%u",
748 pci_dev->addr.bus, pci_dev->addr.devid,
749 pci_dev->addr.function, queue_id);
753 * Hardware queue state machine:
755 * ----------- dmadev_create ------------------
756 * | Unknown | ---------------> | IDLE |
757 * ----------- ------------------
767 static const struct rte_dma_dev_ops hisi_dmadev_ops = {
768 .dev_info_get = hisi_dma_info_get,
769 .dev_configure = hisi_dma_configure,
770 .dev_start = hisi_dma_start,
771 .dev_stop = hisi_dma_stop,
772 .dev_close = hisi_dma_close,
773 .vchan_setup = hisi_dma_vchan_setup,
774 .stats_get = hisi_dma_stats_get,
775 .stats_reset = hisi_dma_stats_reset,
776 .dev_dump = hisi_dma_dump,
780 hisi_dma_create(struct rte_pci_device *pci_dev, uint8_t queue_id,
783 #define REG_PCI_BAR_INDEX 2
785 char name[RTE_DEV_NAME_MAX_LEN];
786 struct rte_dma_dev *dev;
787 struct hisi_dma_dev *hw;
790 hisi_dma_gen_dev_name(pci_dev, queue_id, name, sizeof(name));
791 dev = rte_dma_pmd_allocate(name, pci_dev->device.numa_node,
794 HISI_DMA_LOG(ERR, "%s allocate dmadev fail!", name);
798 dev->device = &pci_dev->device;
799 dev->dev_ops = &hisi_dmadev_ops;
800 dev->fp_obj->dev_private = dev->data->dev_private;
801 dev->fp_obj->copy = hisi_dma_copy;
802 dev->fp_obj->submit = hisi_dma_submit;
803 dev->fp_obj->completed = hisi_dma_completed;
804 dev->fp_obj->completed_status = hisi_dma_completed_status;
805 dev->fp_obj->burst_capacity = hisi_dma_burst_capacity;
807 hw = dev->data->dev_private;
808 hw->data = dev->data;
809 hw->revision = revision;
810 hw->reg_layout = hisi_dma_reg_layout(revision);
811 hw->io_base = pci_dev->mem_resource[REG_PCI_BAR_INDEX].addr;
812 hw->queue_id = queue_id;
813 hw->sq_tail_reg = hisi_dma_queue_regaddr(hw,
814 HISI_DMA_QUEUE_SQ_TAIL_REG);
815 hw->cq_head_reg = hisi_dma_queue_regaddr(hw,
816 HISI_DMA_QUEUE_CQ_HEAD_REG);
818 ret = hisi_dma_reset_hw(hw);
820 HISI_DMA_LOG(ERR, "%s init device fail!", name);
821 (void)rte_dma_pmd_release(name);
825 dev->state = RTE_DMA_DEV_READY;
826 HISI_DMA_LOG(DEBUG, "%s create dmadev success!", name);
832 hisi_dma_check_revision(struct rte_pci_device *pci_dev, const char *name,
833 uint8_t *out_revision)
838 ret = rte_pci_read_config(pci_dev, &revision, 1,
839 HISI_DMA_PCI_REVISION_ID_REG);
841 HISI_DMA_LOG(ERR, "%s read PCI revision failed!", name);
844 if (hisi_dma_reg_layout(revision) == HISI_DMA_REG_LAYOUT_INVALID) {
845 HISI_DMA_LOG(ERR, "%s revision: 0x%x not supported!",
850 *out_revision = revision;
855 hisi_dma_probe(struct rte_pci_driver *pci_drv __rte_unused,
856 struct rte_pci_device *pci_dev)
858 char name[RTE_DEV_NAME_MAX_LEN] = { 0 };
863 hisi_dma_gen_pci_device_name(pci_dev, name, sizeof(name));
865 if (pci_dev->mem_resource[2].addr == NULL) {
866 HISI_DMA_LOG(ERR, "%s BAR2 is NULL!\n", name);
870 ret = hisi_dma_check_revision(pci_dev, name, &revision);
873 HISI_DMA_LOG(DEBUG, "%s read PCI revision: 0x%x", name, revision);
875 hisi_dma_init_gbl(pci_dev->mem_resource[2].addr, revision);
877 for (i = 0; i < HISI_DMA_MAX_HW_QUEUES; i++) {
878 ret = hisi_dma_create(pci_dev, i, revision);
880 HISI_DMA_LOG(ERR, "%s create dmadev %u failed!",
890 hisi_dma_remove(struct rte_pci_device *pci_dev)
892 char name[RTE_DEV_NAME_MAX_LEN];
896 for (i = 0; i < HISI_DMA_MAX_HW_QUEUES; i++) {
897 hisi_dma_gen_dev_name(pci_dev, i, name, sizeof(name));
898 ret = rte_dma_pmd_release(name);
906 static const struct rte_pci_id pci_id_hisi_dma_map[] = {
907 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HISI_DMA_DEVICE_ID) },
908 { .vendor_id = 0, }, /* sentinel */
911 static struct rte_pci_driver hisi_dma_pmd_drv = {
912 .id_table = pci_id_hisi_dma_map,
913 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
914 .probe = hisi_dma_probe,
915 .remove = hisi_dma_remove,
918 RTE_PMD_REGISTER_PCI(dma_hisilicon, hisi_dma_pmd_drv);
919 RTE_PMD_REGISTER_PCI_TABLE(dma_hisilicon, pci_id_hisi_dma_map);
920 RTE_PMD_REGISTER_KMOD_DEP(dma_hisilicon, "vfio-pci");