├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── accelerator ├── lib │ ├── functions.vhd │ ├── psl.vhd │ └── wed.vhd ├── pkg │ ├── control_package.vhd │ ├── cu_package.vhd │ ├── dma_package.vhd │ ├── frame_package.vhd │ └── mmio_package.vhd └── rtl │ ├── afu.vhd │ ├── control.vhd │ ├── cu.vhd │ ├── dma.vhd │ ├── fifo.vhd │ ├── frame.vhd │ ├── mmio.vhd │ └── ram.vhd ├── host └── app │ └── src │ └── example.cpp └── sim ├── pslse.parms ├── pslse_server.dat ├── shim_host.dat ├── vsim.tcl └── wave.do /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/README.md -------------------------------------------------------------------------------- /accelerator/lib/functions.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/lib/functions.vhd -------------------------------------------------------------------------------- /accelerator/lib/psl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/lib/psl.vhd -------------------------------------------------------------------------------- /accelerator/lib/wed.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/lib/wed.vhd -------------------------------------------------------------------------------- /accelerator/pkg/control_package.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/pkg/control_package.vhd -------------------------------------------------------------------------------- /accelerator/pkg/cu_package.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/pkg/cu_package.vhd -------------------------------------------------------------------------------- /accelerator/pkg/dma_package.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/pkg/dma_package.vhd -------------------------------------------------------------------------------- /accelerator/pkg/frame_package.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/pkg/frame_package.vhd -------------------------------------------------------------------------------- /accelerator/pkg/mmio_package.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/pkg/mmio_package.vhd -------------------------------------------------------------------------------- /accelerator/rtl/afu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/afu.vhd -------------------------------------------------------------------------------- /accelerator/rtl/control.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/control.vhd -------------------------------------------------------------------------------- /accelerator/rtl/cu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/cu.vhd -------------------------------------------------------------------------------- /accelerator/rtl/dma.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/dma.vhd -------------------------------------------------------------------------------- /accelerator/rtl/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/fifo.vhd -------------------------------------------------------------------------------- /accelerator/rtl/frame.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/frame.vhd -------------------------------------------------------------------------------- /accelerator/rtl/mmio.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/mmio.vhd -------------------------------------------------------------------------------- /accelerator/rtl/ram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/accelerator/rtl/ram.vhd -------------------------------------------------------------------------------- /host/app/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/host/app/src/example.cpp -------------------------------------------------------------------------------- /sim/pslse.parms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/sim/pslse.parms -------------------------------------------------------------------------------- /sim/pslse_server.dat: -------------------------------------------------------------------------------- 1 | localhost:16384 2 | -------------------------------------------------------------------------------- /sim/shim_host.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/sim/shim_host.dat -------------------------------------------------------------------------------- /sim/vsim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/sim/vsim.tcl -------------------------------------------------------------------------------- /sim/wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbrobbel/capi-streaming-framework/HEAD/sim/wave.do --------------------------------------------------------------------------------