Intel® Arria® 10 or Intel® Cyclone® 10 GX Avalon® Memory-Mapped (Avalon-MM) DMA Interface for PCI Express* Solutions User Guide

ID 683425
Date 6/03/2021
Public
Document Table of Contents

5.7.4. Read DMA Example

This example moves three data blocks from the system memory to the Avalon-MM address space. Host software running on an embedded CPU allocates the memory and creates the descriptor table in system memory.

This example uses the addresses in the Platform Designer design example, ep_g3x8_avmm256_integrated.qsys, available in the <install_dir>/ ip/altera/altera_pcie/altera_pcie_<dev>_ed/example_design/<dev> directory.

The following figures illustrate the location and size of the data blocks in the PCIe and Avalon-MM address spaces and the descriptor table format. In this example, the value of RD_TABLE_SIZE is 127.

Figure 27. Data Blocks to Transfer from PCIe to Avalon-MM Address Space Using Read DMA

Assume the descriptor table includes 128 entries. The status table precedes a variable number of descriptors in memory. The Read and Write Status and Descriptor Tables are at the address specified in the RC Read Descriptor Base Register and RC Write Descriptor Base Register, respectively.

Figure 28. Descriptor Table Format
  1. Calculate the memory allocation required:
    1. Each entry in the status table is 4 bytes. The 128 entries require 512 bytes of memory.
    2. Each descriptor is 32 bytes. The three descriptors require 96 bytes of memory.
    The total memory allocation for the status and descriptor tables is 608 bytes.
  2. Allocate 608 bytes of memory in the PCI Express address space.
    The start address of the allocated memory in this example is 0xF000_0000. Program this address into the Root Complex Read Status and Descriptor Base Address Registers.
  3. Create the descriptor table in the PCI Express address space. Because the status table is stored before the descriptors, the first descriptor is stored at 0xF000_0000 + 0x200 = 0xF000_0200.
    1. Program 0x0000_0000 into the source address 0xF000_0204 in descriptor 0.
      This is the upper 32 bits of the source address.
    2. Program 0x1000_0000 into the source address 0xF000_0200 in descriptor 0.
      This is the lower 32 bits of the source address.
    3. Program 0x0000_0000 into the destination address 0xF000_020C in descriptor 0.
      This is the upper 32 bits of the destination address.
    4. Program 0x5000_0000 into the destination address 0xF000_0208 in descriptor 0.
      This is the lower 32 bits of the destination address.
      These four steps program the Avalon-MM destination address for the 64 KB block of memory into the Descriptor Table.
    5. Program 0x0000_4000 to 0xF000_0210 to transfer 16K dwords (64 KB), of data for descriptor ID 0.
  4. Repeat this procedure for the second data block:
    1. Program 0x0000_0000 to source address 0xF000_0224.
    2. Program 0x2000_0000 to source address 0xF000_0220.
    3. Program 0x0000_0000 to destination address 0xF000_022C.
    4. Program 0x0001_0000 to destination address 0xF000_0228.
    5. Program 0x0004_2000 to 0xF000_0230 to transfer 8K dwords (32 KB) of data for descriptor ID 1.
  5. Repeat this procedure for the third data block:
    1. Program 0x0000_0001 to source address 0xF000_0244.
    2. Program 0x2000_0000 to source address 0xF000_0240.
    3. Program 0x0000_0000 to destination address 0xF000_024C.
    4. Program 0x1000_0000 to destination address 0xF000_0248.
    5. Program 0x0008_1000 to 0xF000_0250 to transfer 4K dwords (16 KB) of data for descriptor ID 2.
    The following figure shows the values in the Descriptor Table after programming completes.
    Figure 29. Descriptor Table Format
  6. Program the DMA Descriptor Controller with the address of the status and descriptor table in the PCI Express system memory address space. When the DMA Descriptor Controller is internal, these registers are accessed through combined BAR0 and BAR1 because this example uses 64-bit addresses. The DMA read control registers start at offset 0x0000. The Write DMA control registers start at offset 0x0100
    1. Program 0x0000_0000 to offset 0x0000_0004.
      This is the upper 32 bits of the PCIe system memory where the status and descriptor table is stored.
    2. Program 0xF000_0000 to offset 0x0000_0000.
      This is the lower 32 bits of the address in PCIe memory that stores the status and descriptor tables. The Read DMA automatically adds an offset of 0x200 to this value to start the copy of the descriptors which follow the status table in memory.
  7. Program the DMA Descriptor Controller with the on-chip FIFO address. This is the address to which the Descriptor Controller copies the status and descriptor table.
    1. Program 0x0000_0000 to offset 0x0000_000C
      This is the upper 32 bits of the on-chip FIFO address in the Avalon-MM address domain.
    2. Program 0x0100_0000 to offset 0x0000_0008.
      This is the lower 32 bits of the on-chip FIFO address. This is address of the internal on-chip FIFO that is a part of the Descriptor Controller as seen by the RX Master.
      Figure 30. Address of the On-Chip FIFO
  8. Program the Descriptor Controller RD_DMA_LAST_PTR register.
    This step starts the DMA. It also specifies the status dword to be updated when the three descriptors complete.
    • To update a single done bit for the final descriptor, program 0x2 to offset 0x0000_0010. The Descriptor Controller processes all three descriptors and writes the done bit to 0xF000_0008 of the status table.

    • To update the done bits for all three descriptors, program address 0x0000_0010 RD_DMA_LAST_PTR three times with the values 0, 1, and 2. The Descriptor Controller sets the done bits for addresses 0xF000_0000, 0xF000_0004, and 0xF000_0008. If the system returns Read Completions out-of-order, the Descriptor Controller may complete descriptors out of order. In such systems, you must use this method of requesting done status for each descriptor. Software must check for done status for every descriptor.