![]() |
axipcie
Vitis Drivers API Documentation
|
This file contains a design example for using AXI PCIe IP and its driver.
The example handles AXI PCIe IP when it is configured as an end point. It shows how to transfer data between system memory and end point memory. The user has to enter both addresses for source and destination. One of the addresses should be in system memory and the other one in the memory local to an end point(mapped to memory space of the system).
This example assumes that there is an AXI CDMA IP in the system. The user has to specify the Source, Destination and the Length of the DMA transfer which are valid for this system and are defined AXICDMA_SRC_ADDR, AXICDMA_DEST_ADDR and AXICDMA_LENGTH respectively in this example.
This code will illustrate how the AXI Pcie IP and its standalone driver can be used to:
We tried to use as much of the driver's API calls as possible to show the reader how each call could be used and that probably made the example not the shortest way of doing the tasks shown as they could be done.
MODIFICATION HISTORY:
Ver Who Date Changes
1.00a rkv 03/07/11 Initial version based on PLB PCIE example 2.00a nm 10/19/11 Renamed function call XAxiPcie_GetRequestId to XAxiPcie_GetRequesterId 3.1 ms 01/23/17 Added xil_printf statement in main function to ensure that "Successfully ran" and "Failed" strings are available in all examples. This is a fix for CR-965028. ms 04/05/17 Added tabspace for return statements in functions for proper documentation while generating doxygen. *
Functions | |
int | PCIeEndPointInitialize (XAxiPcie *XlnxEndPointPtr, u16 DeviceId) |
This initialize an IP built as an end point. More... | |
int | DmaDataTransfer (u16 DeviceID) |
This function transfers data from Source Address to Destination Address using the AXI CDMA. More... | |
int | main (void) |
This function is the entry point for AXI PCIe End Point with AXI CDMA Example. More... | |
int DmaDataTransfer | ( | u16 | DeviceID | ) |
This function transfers data from Source Address to Destination Address using the AXI CDMA.
User has to specify the Source Address, Destination Address and Transfer Length in AXICDMA_SRC_ADDR, AXICDMA_DEST_ADDR and AXICDMA_LENGTH defines respectively.
DeviceId | is device ID of the XAxiCdma Device. |
User has to specify the Source Address, Destination Address and Transfer Length in AXICDMA_SRC_ADDR, AXICDMA_DEST_ADDR and AXICDMA_LENGTH defines respectively.
DeviceId | is device ID of the XAxiCdma Device. |
Referenced by main().
int main | ( | void | ) |
This function is the entry point for AXI PCIe End Point with AXI CDMA Example.
None |
References DmaDataTransfer(), and PCIeEndPointInitialize().
int PCIeEndPointInitialize | ( | XAxiPcie * | XlnxEndPointPtr, |
u16 | DeviceId | ||
) |
This initialize an IP built as an end point.
This function initializes the AXI PCIE end point IP.
XlnxEndPointPtr | is a pointer to an instance of XAxiPcie data structure represents an end point IP. |
DeviceId | is PCIe IP unique ID |
XlnxEndPointPtr | is a pointer to an instance of XAxiPcie data structure represents an end point IP. |
DeviceId | is AXI PCIe IP unique Device Id |
References XAxiPcie_Config::BaseAddress, XAxiPcie_CfgInitialize(), XAxiPcie_ClearPendingInterrupts(), XAxiPcie_DisableInterrupts(), XAxiPcie_GetEnabledInterrupts(), XAxiPcie_GetPendingInterrupts(), XAxiPcie_GetRequesterId(), XAXIPCIE_ID_CLEAR_ALL_MASK, XAXIPCIE_IM_ENABLE_ALL_MASK, XAxiPcie_IsLinkUp, XAxiPcie_LookupConfig(), and XAxiPcie_ReadLocalConfigSpace().
Referenced by main().