EDMA is a Linux kernel driver provided by AWS for using DMA and/or User-defined interrupts for AWS FPGAs. Please see EDMA README for details.
- Q: How do I know if the EDMA driver is available and installed?
- Q: How do I get the source code of the
edma
driver and compile it? - Q: How can I make sure the installed driver will be preserved following a kernel update?
- Q: What PCIe Vendor-ID and Device-ID does EDMA driver support
############
Q: How do I know if the EDMA driver is available and installed?
Amazon EDMA driver could be already installed in latest releases of various Linux distributions and in AWS FPGA Development AMI available at AWS Marketplace
To make sure the driver is installed run next command from your linux shell:
$ lsmod | grep edma
Running this will return EDMA only if the driver is installed and running.
If running, the device /dev/fpgaX(X=0..7) represents an FPGA device in slot X, and with each FPGA exposing multiple queues under /dev/fpgaX/dma_queueN, and multiple user-defined interrupts/events under /dev/fpgaX/eventK.
The developer can operate these DMA queues and interrupts directly from Linux userspace application.
Q: How do I get the source code of the edma
driver and compile it?
Amazon edma
driver is included in AWS FPGA SDK for integration with other Linux distributions, please follow the next set of steps:
Step 1: Make sure you have gcc
and linux kernel source code
installed in your machine:
For AmazonLinux,RedHat,Centos
$ sudo yum groupinstall "Development tools"
$ sudo yum install kernel-devel
For Ubuntu
$ sudo apt-get install make
$ sudo apt-get install gcc
For Suse
$ sudo zypper install make
$ sudo zypper install gcc
$ sudo zypper update
$ sudo zypper install kernel-devel
Step 2: Clone the git repo locally under my_fpga_dir for example:
$ mkdir -p <my_fgpa_repo>
$ cd <my_fpga_repo>
$ git clone https://github.com/aws/aws-fpga
Note: the above mentioned git call would fail if the local git repository already exists.
Step 3: Enter the directory and compile the code:
$ cd <my_fpga_repo>
$ cd aws-fpga/sdk/linux_kernel_drivers/edma
$ make
If the make
command was successful, you would find edma-drv.ko.
Step 4: Copy the driver to the modules directory:
For AmazonLinux, RedHat, Open Suse, and Centos:
The next set of steps will installing the kernel driver so it get called everytime the machine boots/reboots
$ echo 'edma' | sudo tee --append /etc/modules-load.d/edma.conf
$ sudo cp edma-drv.ko /lib/modules/`uname -r`/
$ sudo depmod
To install the driver without rebooting, run
$ sudo modprobe edma-drv
NOTE: steps 3 and 4 would need to be repeated for every kernel update.
Q: How can I make sure the installed driver will be preserved following a kernel update?
Step A Get DKMS
For CentOS7 : sudo yum install dkms.noarch
Step B: Move the edma
source package to the /usr/src/
directory
so dkms can find it and build it for each kernel update: Append the version number (you can find the current version number in the release notes) of the source code to the directory name. For example, version 1.0.0 is shown in the example below:
$ sudo cp -R <my_fpga_repo/aws-fpga/sdk/linux_kernel_drivers/edma /usr/src/edma-1.0.0
Step C: Create the dkms configuration file with the following values, substituting your version of edma.
$ sudo vim /usr/src/edma-1.0.0/dkms.conf
PACKAGE_NAME="edma"
PACKAGE_VERSION="1.0.0"
CLEAN="make -C ./ clean"
MAKE="make -C ./ BUILD_KERNEL=${kernelver}"
BUILT_MODULE_NAME[0]="edma"
BUILT_MODULE_LOCATION="."
DEST_MODULE_LOCATION[0]="/updates"
DEST_MODULE_NAME[0]="edma"
AUTOINSTALL="yes"
Step D: Add, build, and install the edma module on your instance with dkms.
$ sudo dkms add -m edma -v 1.0.0
$ sudo dkms build -m edma -v 1.0.0
$ sudo dkms install -m edma -v 1.0.0
Step E: Rebuild the initramfs so the correct module is loaded at boot time.
$ TBD
Step F: Verify that the edma module is installed using the modinfo edma.
$ modinfo edma
filename: /lib/modules/3.13.0-74-generic/updates/dkms/edma-drv.ko
version: 1.0.0
license: GPL
description: Elastic Direct Memory Access
author: Amazon.com, Inc. or its affiliates
srcversion: 9693C876C54CA64AE48F0CA
alias: pci:v00001D0Fd0000EC21sv*sd*bc*sc*i*
alias: pci:v00001D0Fd0000EC20sv*sd*bc*sc*i*
alias: pci:v00001D0Fd00001EC2sv*sd*bc*sc*i*
alias: pci:v00001D0Fd00000EC2sv*sd*bc*sc*i*
depends:
vermagic: 3.13.0-74-generic SMP mod_unload modversions
parm: debug:Debug level (0=none,...,16=all) (int)
Q: What PCIe Vendor-ID and Device-ID does EDMA driver support?
Initial, EDMA supports PCIe VendorID:DeviceID 1d0f:f001 (the ID's of the DMA example). To use the device driver on another CL, please add the Vendor ID and Device to the device table in edma_backend_xdma.c
For example:
static DEFINE_PCI_DEVICE_TABLE(edma_pci_tbl) = {
{ PCI_VENDOR_ID_AMAZON, PCI_DEVICE_ID_FPGA,
PCI_ANY_ID, PCI_ANY_ID, 0, 0, PCI_ANY_ID},
{ 0x1d0f, 0xf000,
PCI_ANY_ID, PCI_ANY_ID, 0, 0, PCI_ANY_ID},
{ 0, }
};
where 0x1d0f is the vendor ID for Amazon and 0xf000 is the device ID for the Hello World example CL (which does not actually support DMA).
Be sure to remake and re-install the EDMA driver after modifying the device table.
Amazon encourages pull requests to this github to add CL ID's to the driver, so there is no need to fork the driver or SDK.