DPDK
25.03.0
Toggle main menu visibility
Main Page
Related Pages
Data Structures
Data Structures
Data Fields
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Functions
_
g
r
t
Variables
c
r
Typedefs
a
c
d
e
h
l
m
p
r
s
t
Enumerations
d
r
Enumerator
c
e
f
r
s
w
Macros
_
b
c
i
l
m
o
p
r
s
t
u
v
Examples
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
drivers
common
dpaax
rte_pmd_dpaax_qdma.h
1
/* SPDX-License-Identifier: BSD-3-Clause
2
* Copyright 2021-2024 NXP
3
*/
4
5
#ifndef RTE_PMD_DPAAX_QDMA_H
6
#define RTE_PMD_DPAAX_QDMA_H
7
8
#include <rte_compat.h>
9
10
#define RTE_DPAAX_QDMA_COPY_IDX_OFFSET 8
11
#define RTE_DPAAX_QDMA_SG_IDX_ADDR_ALIGN \
12
RTE_BIT64(RTE_DPAAX_QDMA_COPY_IDX_OFFSET)
13
#define RTE_DPAAX_QDMA_SG_IDX_ADDR_MASK \
14
(RTE_DPAAX_QDMA_SG_IDX_ADDR_ALIGN - 1)
15
#define RTE_DPAAX_QDMA_SG_SUBMIT(idx_addr, flag) \
16
(((uint64_t)idx_addr) | (flag))
17
18
#define RTE_DPAAX_QDMA_COPY_SUBMIT(idx, flag) \
19
((idx << RTE_DPAAX_QDMA_COPY_IDX_OFFSET) | (flag))
20
21
#define RTE_DPAAX_QDMA_JOB_SUBMIT_MAX 64
22
#define RTE_DMA_CAPA_DPAAX_QDMA_FLAGS_INDEX RTE_BIT64(63)
23
24
#endif
/* RTE_PMD_DPAAX_QDMA_H */
Generated by
1.9.4