AM64x MCU+ SDK  08.02.00
enet_dma.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Texas Instruments Incorporated 2020
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * distribution.
15  *
16  * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
47 #ifndef ENET_DMA_H_
48 #define ENET_DMA_H_
49 
50 /* ========================================================================== */
51 /* Include Files */
52 /* ========================================================================== */
53 
54 #include <stdint.h>
58 
59 #if defined(SOC_AM64X) || defined(SOC_AM243X)
60 #include <drivers/udma.h>
64 #elif defined (SOC_AM273X) || defined(SOC_AWR294X) || defined(SOC_AM263X)
65 #include <include/dma/cpdma/enet_cpdma.h>
66 #else
67 #error "SOC not supported"
68 #endif
69 
70 #ifdef __cplusplus
71 extern "C" {
72 #endif
73 
74 /* ========================================================================== */
75 /* Macros */
76 /* ========================================================================== */
77 
78 #if defined(SOC_AM273X) || defined(SOC_AWR294X) || defined(SOC_AM263X)
79 
80 #define Enet_isCacheCoherent() (false)
81 
82 #define ENETDMA_CACHELINE_ALIGNMENT (128U)
83 #elif defined(SOC_AM64X) || defined(SOC_AM243X)
84 
85 #define Enet_isCacheCoherent() (Udma_isCacheCoherent())
86 
87 #define ENETDMA_CACHELINE_ALIGNMENT (UDMA_CACHELINE_ALIGNMENT)
88 #else
89 #error "SOC not supported"
90 #endif
91 
92 
98 #define ENET_DMA_STATS_HISTORY_CNT ((uint32_t)32U)
99 
110 typedef EnetDma_Pkt *(*EnetDma_AllocEthPktFxn)(uint32_t pktSize,
111  uint32_t alignSize,
112  void *appPriv);
113 
115 typedef void (*EnetDma_FreeEthPktFxn)(EnetDma_Pkt *pPktInfo);
116 
127 
128 
129 /* ========================================================================== */
130 /* Structures and Enums */
131 /* ========================================================================== */
132 
144 typedef struct EnetDma_CbStats_s
145 {
147  uint64_t dataNotifyCnt;
148 
151  uint64_t zeroNotifyCnt;
153  uint64_t totalPktCnt;
155  uint64_t totalCycleCnt;
156 
161 
164  uint64_t pktsPerNotify[ENET_DMA_STATS_HISTORY_CNT];
167 
170  uint64_t cycleCntPerNotify[ENET_DMA_STATS_HISTORY_CNT];
173 
176  uint64_t cycleCntPerPkt[ENET_DMA_STATS_HISTORY_CNT];
177 
181  uint64_t readyDmaDescQCnt[ENET_DMA_STATS_HISTORY_CNT];
183 
187 typedef struct EnetDma_DmaDescStats_s
188 {
190  uint64_t readyDmaDescEnq;
192  uint64_t freeDmaDescDeq;
194  uint64_t underFlowCnt;
196 
200 typedef struct EnetDma_RxChStats_s
201 {
209  uint64_t rxSubmitPktEnq;
215 
219 typedef struct EnetDma_TxChStats_s
220 {
228  uint64_t txSubmitPktEnq;
234 
237 /* ========================================================================== */
238 /* Global Variables Declarations */
239 /* ========================================================================== */
240 
241 /* None */
242 
243 /* ========================================================================== */
244 /* Function Declarations */
245 /* ========================================================================== */
246 
259  uint32_t instId,
260  const EnetDma_initCfg *pDmaCfg);
261 
272 
284  uint32_t instId,
285  const void *dmaCfg);
286 
294 int32_t EnetDma_close(EnetDma_Handle hEnetDma);
295 
305 void EnetDma_initRxChParams(void *pRxChCfg);
306 
326  const void *pRxChCfg);
327 
349  EnetDma_PktQ *fq,
350  EnetDma_PktQ *cq);
351 
364 
375 
385 void EnetDma_initTxChParams(void *pTxChCfg);
386 
406  const void *pTxChCfg);
407 
430  EnetDma_PktQ *fq,
431  EnetDma_PktQ *cq);
432 
445 
456 
469  EnetDma_PktQ *pRetrieveQ);
470 
483  EnetDma_Pkt **pPkt);
484 
498  EnetDma_PktQ *pSubmitQ);
499 
511  EnetDma_Pkt *pPkt);
512 
525  EnetDma_PktQ *pRetrieveQ);
526 
539  EnetDma_Pkt **pPkt);
540 
552  EnetDma_PktQ *pSubmitQ);
553 
565  EnetDma_Pkt *pPkt);
566 
575 
587  EnetDma_RxChStats *pStats);
588 
600  EnetDma_TxChStats *pStats);
601 
611 
621 
622 /* ========================================================================== */
623 /* Deprecated Function Declarations */
624 /* ========================================================================== */
625 
626 /* None */
627 
628 /* ========================================================================== */
629 /* Static Function Definitions */
630 /* ========================================================================== */
631 
632 /* None */
633 
634 #ifdef __cplusplus
635 }
636 #endif
637 
638 #endif /* ENET_DMA_H_ */
639 
EnetDma_TxChStats::txSubmitPktEnq
uint64_t txSubmitPktEnq
Definition: enet_dma.h:228
EnetDma_RxChStats::rxSubmitPktEnq
uint64_t rxSubmitPktEnq
Definition: enet_dma.h:209
EnetDma_disableRxEvent
int32_t EnetDma_disableRxEvent(EnetDma_RxChHandle hRxCh)
Disable RX channel packet reception event.
EnetDma_close
int32_t EnetDma_close(EnetDma_Handle hEnetDma)
Close Enet DMA (data path).
EnetDma_DmaDescStats::freeDmaDescDeq
uint64_t freeDmaDescDeq
Definition: enet_dma.h:192
EnetDma_retrieveTxPkt
int32_t EnetDma_retrieveTxPkt(EnetDma_TxChHandle hTxCh, EnetDma_Pkt **pPkt)
Retrieve single TX free (empty) packet from TX channel.
EnetDma_submitTxPktQ
int32_t EnetDma_submitTxPktQ(EnetDma_TxChHandle hTxCh, EnetDma_PktQ *pSubmitQ)
Submit a queue of ready (full) packets to TX channel.
EnetDma_RxChStats::rxRetrievePktDeq
uint64_t rxRetrievePktDeq
Definition: enet_dma.h:211
EnetDma_RxChStats::submitPktStats
EnetDma_CbStats submitPktStats
Definition: enet_dma.h:203
ENET_DMA_STATS_HISTORY_CNT
#define ENET_DMA_STATS_HISTORY_CNT
Enet DMA statistics configuration.
Definition: enet_dma.h:98
EnetDma_enableTxEvent
int32_t EnetDma_enableTxEvent(EnetDma_TxChHandle hTxCh)
Enable TX channel packet transmit completion event.
EnetDma_initRxChParams
void EnetDma_initRxChParams(void *pRxChCfg)
Initialize RX channel open parameters.
EnetDma_RxChStats
RX channel statistics.
Definition: enet_dma.h:201
enet_types.h
This file contains the basic types using across the Enet driver.
EnetDma_TxChStats
TX channel statistics.
Definition: enet_dma.h:220
EnetDma_getTxChStats
int32_t EnetDma_getTxChStats(EnetDma_TxChHandle hTxCh, EnetDma_TxChStats *pStats)
Get TX channel statistics.
EnetDma_RxChStats::retrievePktStats
EnetDma_CbStats retrievePktStats
Definition: enet_dma.h:205
EnetDma_TxChHandle
struct EnetUdma_TxChObj_s * EnetDma_TxChHandle
Opaque handle that holds software state for Enet TX DMA channel.
Definition: enet_udma_types.h:100
EnetDma_getRxChStats
int32_t EnetDma_getRxChStats(EnetDma_RxChHandle hRxCh, EnetDma_RxChStats *pStats)
Get RX channel statistics.
enet_queue.h
This file contains the type definitions and helper macros for the Enet software queue.
EnetDma_CbStats::zeroNotifyCnt
uint64_t zeroNotifyCnt
Definition: enet_dma.h:151
EnetDma_CbStats::pktsPerNotifyMax
uint64_t pktsPerNotifyMax
Definition: enet_dma.h:160
EnetDma_TxChStats::txRetrievePktDeq
uint64_t txRetrievePktDeq
Definition: enet_dma.h:230
EnetDma_TxChStats::txSubmitPktOverFlowCnt
uint64_t txSubmitPktOverFlowCnt
Definition: enet_dma.h:232
EnetDma_resetRxChStats
int32_t EnetDma_resetRxChStats(EnetDma_RxChHandle hRxCh)
Reset RX channel statistics.
EnetDma_initPktInfo
void EnetDma_initPktInfo(EnetDma_Pkt *pktInfo)
Initialize packet information structure.
EnetDma_openTxCh
EnetDma_TxChHandle EnetDma_openTxCh(EnetDma_Handle hDma, const void *pTxChCfg)
Enet DMA open TX channel.
EnetDma_RxChStats::dmaDescStats
EnetDma_DmaDescStats dmaDescStats
Definition: enet_dma.h:207
EnetDma_TxChStats::dmaDescStats
EnetDma_DmaDescStats dmaDescStats
Definition: enet_dma.h:226
enet_dma_pktutils.h
Enet DMA utility API to check packet and descriptor ownership states during development and debug.
EnetDma_resetTxChStats
int32_t EnetDma_resetTxChStats(EnetDma_TxChHandle hTxCh)
Reset TX channel statistics.
EnetDma_CbStats::totalCycleCnt
uint64_t totalCycleCnt
Definition: enet_dma.h:155
EnetDma_initTxChParams
void EnetDma_initTxChParams(void *pTxChCfg)
Initialize TX channel open parameters.
EnetDma_Pkt
struct EnetUdma_PktInfo_s EnetDma_Pkt
Opaque handle that represents a DMA packet.
Definition: enet_udma_types.h:105
EnetDma_initDmaCfg
EnetDma_Handle EnetDma_initDmaCfg(Enet_Type enetType, uint32_t instId, const EnetDma_initCfg *pDmaCfg)
Initialize data path.
EnetDma_retrieveRxPktQ
int32_t EnetDma_retrieveRxPktQ(EnetDma_RxChHandle hRxCh, EnetDma_PktQ *pRetrieveQ)
Retrieve queue of RX ready (full) packets from RX channel.
enet_udma.h
This file contains the type definitions and helper macros for the Enet UDMA data path (DMA) interface...
EnetDma_DmaDescStats::underFlowCnt
uint64_t underFlowCnt
Definition: enet_dma.h:194
enet_udma_psi.h
This file contains the type definitions and helper macros for the Enet UDMA CPPI protocol specific in...
enet_udma_types.h
This file contains the base DMA definitions.
EnetDma_retrieveRxPkt
int32_t EnetDma_retrieveRxPkt(EnetDma_RxChHandle hRxCh, EnetDma_Pkt **pPkt)
Retrieve single RX ready (full) packet (single) from RX channel.
EnetDma_enableRxEvent
int32_t EnetDma_enableRxEvent(EnetDma_RxChHandle hRxCh)
Enable RX channel packet reception event.
EnetDma_retrieveTxPktQ
int32_t EnetDma_retrieveTxPktQ(EnetDma_TxChHandle hTxCh, EnetDma_PktQ *pRetrieveQ)
Retrieve queue of TX free (empty) packets from TX channel.
EnetDma_TxChStats::retrievePktStats
EnetDma_CbStats retrievePktStats
Definition: enet_dma.h:224
EnetDma_CbStats::dataNotifyCnt
uint64_t dataNotifyCnt
Definition: enet_dma.h:147
EnetDma_submitTxPkt
int32_t EnetDma_submitTxPkt(EnetDma_TxChHandle hTxCh, EnetDma_Pkt *pPkt)
Submit a single ready (full) packet to TX channel.
Enet_Type
Enet_Type
Ethernet peripheral type.
Definition: enet_types.h:196
EnetDma_open
EnetDma_Handle EnetDma_open(Enet_Type enetType, uint32_t instId, const void *dmaCfg)
Set default data path parameters.
EnetDma_submitRxPkt
int32_t EnetDma_submitRxPkt(EnetDma_RxChHandle hRxCh, EnetDma_Pkt *pPkt)
Submit single RX free (empty) packet for reception to RX channel.
EnetDma_FreeEthPktFxn
void(* EnetDma_FreeEthPktFxn)(EnetDma_Pkt *pPktInfo)
Function pointer type for Ethernet packet free function.
Definition: enet_dma.h:115
EnetDma_submitRxPktQ
int32_t EnetDma_submitRxPktQ(EnetDma_RxChHandle hRxCh, EnetDma_PktQ *pSubmitQ)
Submit queue of RX free (empty) packets for reception to RX channel.
EnetDma_CbStats::cycleCntPerPktMax
uint64_t cycleCntPerPktMax
Definition: enet_dma.h:172
EnetDma_DmaDescStats
DMA descriptor stats for the RX & TX channels.
Definition: enet_dma.h:188
udma.h
UDMA Driver API/interface file.
EnetDma_TxChStats::submitPktStats
EnetDma_CbStats submitPktStats
Definition: enet_dma.h:222
EnetDma_openRxCh
EnetDma_RxChHandle EnetDma_openRxCh(EnetDma_Handle hDma, const void *pRxChCfg)
Enet DMA open RX channel.
EnetDma_CbStats::totalPktCnt
uint64_t totalPktCnt
Definition: enet_dma.h:153
EnetDma_initCfg
Config structure for Enet UDMA Data Path initialization.
Definition: enet_udma.h:750
EnetDma_closeTxCh
int32_t EnetDma_closeTxCh(EnetDma_TxChHandle hTxCh, EnetDma_PktQ *fq, EnetDma_PktQ *cq)
Enet DMA close TX channel.
EnetDma_CbStats
Stats for packets submitted/retrieved in the DMA event callbacks functions.
Definition: enet_dma.h:145
EnetDma_PktQ
EnetQ EnetDma_PktQ
Packet queue.
Definition: enet_dma.h:126
EnetDma_RxChHandle
struct EnetUdma_RxFlowObj_s * EnetDma_RxChHandle
Opaque handle that holds software state for Enet RX DMA flow.
Definition: enet_udma_types.h:95
EnetDma_disableTxEvent
int32_t EnetDma_disableTxEvent(EnetDma_TxChHandle hTxCh)
Disable TX channel packet transmit completion event.
EnetDma_Handle
struct EnetUdma_DrvObj_s * EnetDma_Handle
Opaque handle for Enet UDMA driver object.
Definition: enet_udma_types.h:86
EnetDma_closeRxCh
int32_t EnetDma_closeRxCh(EnetDma_RxChHandle hRxCh, EnetDma_PktQ *fq, EnetDma_PktQ *cq)
Enet DMA close RX channel.
EnetQ
Generic queue.
Definition: enet_queue.h:83
EnetDma_RxChStats::rxSubmitPktUnderFlowCnt
uint64_t rxSubmitPktUnderFlowCnt
Definition: enet_dma.h:213
EnetDma_DmaDescStats::readyDmaDescEnq
uint64_t readyDmaDescEnq
Definition: enet_dma.h:190
EnetDma_deinitDmaCfg
int32_t EnetDma_deinitDmaCfg(EnetDma_Handle hEnetUdma)
De-initialize data path.
EnetDma_CbStats::cycleCntPerNotifyMax
uint64_t cycleCntPerNotifyMax
Definition: enet_dma.h:166