├── .gitignore ├── README.md ├── demo ├── Makefile ├── xdma-app.c ├── xdma-demo.c └── xdma-test.c ├── dev ├── Makefile ├── xdma.c └── xdma.h ├── lib ├── Makefile ├── libxdma.c └── libxdma.h └── util ├── 80-xdma.rules └── indent-kernel.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # swap files generated by vim 2 | *.swp 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/README.md -------------------------------------------------------------------------------- /demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/demo/Makefile -------------------------------------------------------------------------------- /demo/xdma-app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/demo/xdma-app.c -------------------------------------------------------------------------------- /demo/xdma-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/demo/xdma-demo.c -------------------------------------------------------------------------------- /demo/xdma-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/demo/xdma-test.c -------------------------------------------------------------------------------- /dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/dev/Makefile -------------------------------------------------------------------------------- /dev/xdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/dev/xdma.c -------------------------------------------------------------------------------- /dev/xdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/dev/xdma.h -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/libxdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/lib/libxdma.c -------------------------------------------------------------------------------- /lib/libxdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/lib/libxdma.h -------------------------------------------------------------------------------- /util/80-xdma.rules: -------------------------------------------------------------------------------- 1 | KERNEL=="xdma", MODE="0666" 2 | -------------------------------------------------------------------------------- /util/indent-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmartini/zynq-xdma/HEAD/util/indent-kernel.sh --------------------------------------------------------------------------------