Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backend: Add AXI Stream as a default configuration #39

Merged
merged 3 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/authors-cfg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ exclude-paths:

allowed-years:
- 2023
- 2024

allowed-authors:
Axel Vanoni: [email protected]
Expand Down
12 changes: 7 additions & 5 deletions idma.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ VLOGAN ?= vlogan
SHELL := /bin/bash

# iDMA Variants
IDMA_BASE_IDS ?= \
IDMA_BASE_IDS := \
rw_axi \
r_obi_w_axi \
r_axi_w_obi
IDMA_OCCAMY_IDS ?= \
r_axi_w_obi \
rw_axi_rw_axis
IDMA_OCCAMY_IDS := \
r_obi_rw_init_w_axi \
r_axi_rw_init_rw_obi
IDMA_BACKEND_IDS ?= $(IDMA_BASE_IDS) $(IDMA_OCCAMY_IDS)
IDMA_ADD_IDS ?=
IDMA_BACKEND_IDS := $(IDMA_BASE_IDS) $(IDMA_OCCAMY_IDS) $(IDMA_ADD_IDS)

# generated frontends
IDMA_FE_IDS ?= reg32_3d reg64_2d
Expand Down Expand Up @@ -449,7 +451,7 @@ idma_doc_all: idma_spinx_doc

idma_pickle_all: $(IDMA_PICKLE_ALL)

idma_hw_all: $(IDMA_RTL_ALL)
idma_hw_all: $(IDMA_RTL_ALL) $(IDMA_TB_ALL)

idma_sim_all: $(IDMA_VCS_DIR)/compile.sh $(IDMA_VSIM_DIR)/compile.tcl

Expand Down
Loading
Loading