dma/hisilicon: add control path
[dpdk.git] / drivers / dma / hisilicon / hisi_dmadev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 HiSilicon Limited
3  */
4
5 #include <inttypes.h>
6 #include <string.h>
7
8 #include <rte_bus_pci.h>
9 #include <rte_cycles.h>
10 #include <rte_eal.h>
11 #include <rte_io.h>
12 #include <rte_log.h>
13 #include <rte_malloc.h>
14 #include <rte_memzone.h>
15 #include <rte_pci.h>
16 #include <rte_dmadev_pmd.h>
17
18 #include "hisi_dmadev.h"
19
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, \
27                 __func__, ##args)
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)
36
37 static uint32_t
38 hisi_dma_queue_base(struct hisi_dma_dev *hw)
39 {
40         if (hw->reg_layout == HISI_DMA_REG_LAYOUT_HIP08)
41                 return HISI_DMA_HIP08_QUEUE_BASE;
42         else
43                 return 0;
44 }
45
46 static volatile void *
47 hisi_dma_queue_regaddr(struct hisi_dma_dev *hw, uint32_t qoff)
48 {
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);
52 }
53
54 static void
55 hisi_dma_write_reg(void *base, uint32_t off, uint32_t val)
56 {
57         rte_write32(rte_cpu_to_le_32(val),
58                     (volatile void *)((char *)base + off));
59 }
60
61 static void
62 hisi_dma_write_dev(struct hisi_dma_dev *hw, uint32_t off, uint32_t val)
63 {
64         hisi_dma_write_reg(hw->io_base, off, val);
65 }
66
67 static void
68 hisi_dma_write_queue(struct hisi_dma_dev *hw, uint32_t qoff, uint32_t val)
69 {
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);
73 }
74
75 static uint32_t
76 hisi_dma_read_reg(void *base, uint32_t off)
77 {
78         uint32_t val = rte_read32((volatile void *)((char *)base + off));
79         return rte_le_to_cpu_32(val);
80 }
81
82 static uint32_t
83 hisi_dma_read_dev(struct hisi_dma_dev *hw, uint32_t off)
84 {
85         return hisi_dma_read_reg(hw->io_base, off);
86 }
87
88 static uint32_t
89 hisi_dma_read_queue(struct hisi_dma_dev *hw, uint32_t qoff)
90 {
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);
94 }
95
96 static void
97 hisi_dma_update_bit(struct hisi_dma_dev *hw, uint32_t off, uint32_t pos,
98                     bool set)
99 {
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);
104 }
105
106 static void
107 hisi_dma_update_queue_bit(struct hisi_dma_dev *hw, uint32_t qoff, uint32_t pos,
108                           bool set)
109 {
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);
114 }
115
116 static void
117 hisi_dma_update_queue_mbit(struct hisi_dma_dev *hw, uint32_t qoff,
118                            uint32_t mask, bool set)
119 {
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);
123 }
124
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); \
129                 if (cond) \
130                         break; \
131                 rte_delay_us(sleep_us); \
132         } \
133         (cond) ? 0 : -ETIME; \
134 })
135
136 static int
137 hisi_dma_reset_hw(struct hisi_dma_dev *hw)
138 {
139 #define POLL_SLEEP_US   100
140 #define POLL_TIMEOUT_US 10000
141
142         uint32_t tmp;
143         int ret;
144
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);
149
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);
153         if (ret) {
154                 HISI_DMA_ERR(hw, "disable dma timeout!");
155                 return ret;
156         }
157
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);
164
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);
168         if (ret) {
169                 HISI_DMA_ERR(hw, "reset dma timeout!");
170                 return ret;
171         }
172
173         return 0;
174 }
175
176 static void
177 hisi_dma_init_hw(struct hisi_dma_dev *hw)
178 {
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,
188                              hw->sq_depth_mask);
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);
195
196         if (hw->reg_layout == HISI_DMA_REG_LAYOUT_HIP08) {
197                 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM3_REG,
198                                      0);
199                 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM4_REG,
200                                      0);
201                 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM5_REG,
202                                      0);
203                 hisi_dma_write_queue(hw, HISI_DMA_HIP08_QUEUE_ERR_INT_NUM6_REG,
204                                      0);
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);
212         }
213 }
214
215 static void
216 hisi_dma_init_gbl(void *pci_bar, uint8_t revision)
217 {
218         struct hisi_dma_dev hw;
219
220         memset(&hw, 0, sizeof(hw));
221         hw.io_base = pci_bar;
222
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);
226 }
227
228 static uint8_t
229 hisi_dma_reg_layout(uint8_t revision)
230 {
231         if (revision == HISI_DMA_REVISION_HIP08B)
232                 return HISI_DMA_REG_LAYOUT_HIP08;
233         else
234                 return HISI_DMA_REG_LAYOUT_INVALID;
235 }
236
237 static void
238 hisi_dma_zero_iomem(struct hisi_dma_dev *hw)
239 {
240         memset(hw->iomz->addr, 0, hw->iomz_sz);
241 }
242
243 static int
244 hisi_dma_alloc_iomem(struct hisi_dma_dev *hw, uint16_t ring_size,
245                      const char *dev_name)
246 {
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;
253         uint32_t total_size;
254
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;
259
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);
263         if (iomz == NULL) {
264                 HISI_DMA_ERR(hw, "malloc %s iomem fail!", mz_name);
265                 return -ENOMEM;
266         }
267
268         hw->iomz = iomz;
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);
278
279         return 0;
280 }
281
282 static void
283 hisi_dma_free_iomem(struct hisi_dma_dev *hw)
284 {
285         if (hw->iomz != NULL)
286                 rte_memzone_free(hw->iomz);
287
288         hw->iomz = NULL;
289         hw->sqe = NULL;
290         hw->cqe = NULL;
291         hw->status = NULL;
292         hw->sqe_iova = 0;
293         hw->cqe_iova = 0;
294         hw->sq_depth_mask = 0;
295         hw->cq_depth = 0;
296 }
297
298 static int
299 hisi_dma_info_get(const struct rte_dma_dev *dev,
300                   struct rte_dma_info *dev_info,
301                   uint32_t info_sz)
302 {
303         RTE_SET_USED(dev);
304         RTE_SET_USED(info_sz);
305
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;
311
312         return 0;
313 }
314
315 static int
316 hisi_dma_configure(struct rte_dma_dev *dev,
317                    const struct rte_dma_conf *conf,
318                    uint32_t conf_sz)
319 {
320         RTE_SET_USED(dev);
321         RTE_SET_USED(conf);
322         RTE_SET_USED(conf_sz);
323         return 0;
324 }
325
326 static int
327 hisi_dma_vchan_setup(struct rte_dma_dev *dev, uint16_t vchan,
328                      const struct rte_dma_vchan_conf *conf,
329                      uint32_t conf_sz)
330 {
331         struct hisi_dma_dev *hw = dev->data->dev_private;
332         int ret;
333
334         RTE_SET_USED(vchan);
335         RTE_SET_USED(conf_sz);
336
337         if (!rte_is_power_of_2(conf->nb_desc)) {
338                 HISI_DMA_ERR(hw, "Number of desc must be power of 2!");
339                 return -EINVAL;
340         }
341
342         hisi_dma_free_iomem(hw);
343         ret = hisi_dma_alloc_iomem(hw, conf->nb_desc, dev->data->dev_name);
344         if (ret)
345                 return ret;
346
347         return 0;
348 }
349
350 static int
351 hisi_dma_start(struct rte_dma_dev *dev)
352 {
353         struct hisi_dma_dev *hw = dev->data->dev_private;
354
355         if (hw->iomz == NULL) {
356                 HISI_DMA_ERR(hw, "Vchan was not setup, start fail!\n");
357                 return -EINVAL;
358         }
359
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.
365          */
366         hisi_dma_zero_iomem(hw);
367         hisi_dma_init_hw(hw);
368         hw->ridx = 0;
369         hw->cridx = 0;
370         hw->sq_head = 0;
371         hw->sq_tail = 0;
372         hw->cq_sq_head = 0;
373         hw->cq_head = 0;
374         hw->cqs_completed = 0;
375         hw->cqe_vld = 1;
376         hw->submitted = 0;
377         hw->completed = 0;
378         hw->errors = 0;
379
380         hisi_dma_update_queue_bit(hw, HISI_DMA_QUEUE_CTRL0_REG,
381                                   HISI_DMA_QUEUE_CTRL0_EN_B, true);
382
383         return 0;
384 }
385
386 static int
387 hisi_dma_stop(struct rte_dma_dev *dev)
388 {
389         return hisi_dma_reset_hw(dev->data->dev_private);
390 }
391
392 static int
393 hisi_dma_close(struct rte_dma_dev *dev)
394 {
395         /* The dmadev already stopped */
396         hisi_dma_free_iomem(dev->data->dev_private);
397         return 0;
398 }
399
400 static int
401 hisi_dma_stats_get(const struct rte_dma_dev *dev, uint16_t vchan,
402                    struct rte_dma_stats *stats,
403                    uint32_t stats_sz)
404 {
405         struct hisi_dma_dev *hw = dev->data->dev_private;
406
407         RTE_SET_USED(vchan);
408         RTE_SET_USED(stats_sz);
409         stats->submitted = hw->submitted;
410         stats->completed = hw->completed;
411         stats->errors = hw->errors;
412
413         return 0;
414 }
415
416 static int
417 hisi_dma_stats_reset(struct rte_dma_dev *dev, uint16_t vchan)
418 {
419         struct hisi_dma_dev *hw = dev->data->dev_private;
420
421         RTE_SET_USED(vchan);
422         hw->submitted = 0;
423         hw->completed = 0;
424         hw->errors = 0;
425
426         return 0;
427 }
428
429 static void
430 hisi_dma_get_dump_range(struct hisi_dma_dev *hw, uint32_t *start, uint32_t *end)
431 {
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;
435         } else {
436                 *start = 0;
437                 *end = 0;
438         }
439 }
440
441 static void
442 hisi_dma_dump_common(struct hisi_dma_dev *hw, FILE *f)
443 {
444 #define DUMP_REGNUM_PER_LINE    4
445
446         uint32_t start, end;
447         uint32_t cnt, i;
448
449         hisi_dma_get_dump_range(hw, &start, &end);
450
451         (void)fprintf(f, "    common-register:\n");
452
453         cnt = 0;
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));
458                 cnt++;
459                 if (cnt % DUMP_REGNUM_PER_LINE == 0)
460                         (void)fprintf(f, "\n");
461         }
462         if (cnt % DUMP_REGNUM_PER_LINE)
463                 (void)fprintf(f, "\n");
464 }
465
466 static void
467 hisi_dma_dump_read_queue(struct hisi_dma_dev *hw, uint32_t qoff,
468                          char *buffer, int max_sz)
469 {
470         memset(buffer, 0, max_sz);
471
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, "**********");
478                 return;
479         }
480
481         (void)snprintf(buffer, max_sz, "0x%08x", hisi_dma_read_queue(hw, qoff));
482 }
483
484 static void
485 hisi_dma_dump_queue(struct hisi_dma_dev *hw, FILE *f)
486 {
487 #define REG_FMT_LEN     32
488         char buf[REG_FMT_LEN] = { 0 };
489         uint32_t i;
490
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);
505         }
506 }
507
508 static int
509 hisi_dma_dump(const struct rte_dma_dev *dev, FILE *f)
510 {
511         struct hisi_dma_dev *hw = dev->data->dev_private;
512
513         (void)fprintf(f,
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 %"
519                 PRIu64"\n",
520                 hw->revision, hw->queue_id,
521                 hw->sq_depth_mask > 0 ? hw->sq_depth_mask + 1 : 0,
522                 hw->ridx, hw->cridx,
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);
528
529         return 0;
530 }
531
532 static void
533 hisi_dma_gen_pci_device_name(const struct rte_pci_device *pci_dev,
534                              char *name, size_t size)
535 {
536         memset(name, 0, size);
537         (void)snprintf(name, size, "%x:%x.%x",
538                  pci_dev->addr.bus, pci_dev->addr.devid,
539                  pci_dev->addr.function);
540 }
541
542 static void
543 hisi_dma_gen_dev_name(const struct rte_pci_device *pci_dev,
544                       uint8_t queue_id, char *name, size_t size)
545 {
546         memset(name, 0, size);
547         (void)snprintf(name, size, "%x:%x.%x-ch%u",
548                  pci_dev->addr.bus, pci_dev->addr.devid,
549                  pci_dev->addr.function, queue_id);
550 }
551
552 /**
553  * Hardware queue state machine:
554  *
555  *   -----------  dmadev_create   ------------------
556  *   | Unknown | ---------------> |      IDLE      |
557  *   -----------                  ------------------
558  *                                   ^          |
559  *                                   |          |dev_start
560  *                           dev_stop|          |
561  *                                   |          v
562  *                                ------------------
563  *                                |      RUN       |
564  *                                ------------------
565  *
566  */
567 static const struct rte_dma_dev_ops hisi_dmadev_ops = {
568         .dev_info_get     = hisi_dma_info_get,
569         .dev_configure    = hisi_dma_configure,
570         .dev_start        = hisi_dma_start,
571         .dev_stop         = hisi_dma_stop,
572         .dev_close        = hisi_dma_close,
573         .vchan_setup      = hisi_dma_vchan_setup,
574         .stats_get        = hisi_dma_stats_get,
575         .stats_reset      = hisi_dma_stats_reset,
576         .dev_dump         = hisi_dma_dump,
577 };
578
579 static int
580 hisi_dma_create(struct rte_pci_device *pci_dev, uint8_t queue_id,
581                 uint8_t revision)
582 {
583 #define REG_PCI_BAR_INDEX       2
584
585         char name[RTE_DEV_NAME_MAX_LEN];
586         struct rte_dma_dev *dev;
587         struct hisi_dma_dev *hw;
588         int ret;
589
590         hisi_dma_gen_dev_name(pci_dev, queue_id, name, sizeof(name));
591         dev = rte_dma_pmd_allocate(name, pci_dev->device.numa_node,
592                                    sizeof(*hw));
593         if (dev == NULL) {
594                 HISI_DMA_LOG(ERR, "%s allocate dmadev fail!", name);
595                 return -EINVAL;
596         }
597
598         dev->device = &pci_dev->device;
599         dev->dev_ops = &hisi_dmadev_ops;
600
601         hw = dev->data->dev_private;
602         hw->data = dev->data;
603         hw->revision = revision;
604         hw->reg_layout = hisi_dma_reg_layout(revision);
605         hw->io_base = pci_dev->mem_resource[REG_PCI_BAR_INDEX].addr;
606         hw->queue_id = queue_id;
607         hw->sq_tail_reg = hisi_dma_queue_regaddr(hw,
608                                                  HISI_DMA_QUEUE_SQ_TAIL_REG);
609         hw->cq_head_reg = hisi_dma_queue_regaddr(hw,
610                                                  HISI_DMA_QUEUE_CQ_HEAD_REG);
611
612         ret = hisi_dma_reset_hw(hw);
613         if (ret) {
614                 HISI_DMA_LOG(ERR, "%s init device fail!", name);
615                 (void)rte_dma_pmd_release(name);
616                 return -EIO;
617         }
618
619         dev->state = RTE_DMA_DEV_READY;
620         HISI_DMA_LOG(DEBUG, "%s create dmadev success!", name);
621
622         return 0;
623 }
624
625 static int
626 hisi_dma_check_revision(struct rte_pci_device *pci_dev, const char *name,
627                         uint8_t *out_revision)
628 {
629         uint8_t revision;
630         int ret;
631
632         ret = rte_pci_read_config(pci_dev, &revision, 1,
633                                   HISI_DMA_PCI_REVISION_ID_REG);
634         if (ret != 1) {
635                 HISI_DMA_LOG(ERR, "%s read PCI revision failed!", name);
636                 return -EINVAL;
637         }
638         if (hisi_dma_reg_layout(revision) == HISI_DMA_REG_LAYOUT_INVALID) {
639                 HISI_DMA_LOG(ERR, "%s revision: 0x%x not supported!",
640                              name, revision);
641                 return -EINVAL;
642         }
643
644         *out_revision = revision;
645         return 0;
646 }
647
648 static int
649 hisi_dma_probe(struct rte_pci_driver *pci_drv __rte_unused,
650                struct rte_pci_device *pci_dev)
651 {
652         char name[RTE_DEV_NAME_MAX_LEN] = { 0 };
653         uint8_t revision;
654         uint8_t i;
655         int ret;
656
657         hisi_dma_gen_pci_device_name(pci_dev, name, sizeof(name));
658
659         if (pci_dev->mem_resource[2].addr == NULL) {
660                 HISI_DMA_LOG(ERR, "%s BAR2 is NULL!\n", name);
661                 return -ENODEV;
662         }
663
664         ret = hisi_dma_check_revision(pci_dev, name, &revision);
665         if (ret)
666                 return ret;
667         HISI_DMA_LOG(DEBUG, "%s read PCI revision: 0x%x", name, revision);
668
669         hisi_dma_init_gbl(pci_dev->mem_resource[2].addr, revision);
670
671         for (i = 0; i < HISI_DMA_MAX_HW_QUEUES; i++) {
672                 ret = hisi_dma_create(pci_dev, i, revision);
673                 if (ret) {
674                         HISI_DMA_LOG(ERR, "%s create dmadev %u failed!",
675                                      name, i);
676                         break;
677                 }
678         }
679
680         return ret;
681 }
682
683 static int
684 hisi_dma_remove(struct rte_pci_device *pci_dev)
685 {
686         char name[RTE_DEV_NAME_MAX_LEN];
687         uint8_t i;
688         int ret;
689
690         for (i = 0; i < HISI_DMA_MAX_HW_QUEUES; i++) {
691                 hisi_dma_gen_dev_name(pci_dev, i, name, sizeof(name));
692                 ret = rte_dma_pmd_release(name);
693                 if (ret)
694                         return ret;
695         }
696
697         return 0;
698 }
699
700 static const struct rte_pci_id pci_id_hisi_dma_map[] = {
701         { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HISI_DMA_DEVICE_ID) },
702         { .vendor_id = 0, }, /* sentinel */
703 };
704
705 static struct rte_pci_driver hisi_dma_pmd_drv = {
706         .id_table  = pci_id_hisi_dma_map,
707         .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
708         .probe     = hisi_dma_probe,
709         .remove    = hisi_dma_remove,
710 };
711
712 RTE_PMD_REGISTER_PCI(dma_hisilicon, hisi_dma_pmd_drv);
713 RTE_PMD_REGISTER_PCI_TABLE(dma_hisilicon, pci_id_hisi_dma_map);
714 RTE_PMD_REGISTER_KMOD_DEP(dma_hisilicon, "vfio-pci");