Skip to content

Commit

Permalink
Merge pull request #91 from ad-astra-et-ultra/dev
Browse files Browse the repository at this point in the history
Support for DSP
  • Loading branch information
mkurc-ant authored Sep 25, 2023
2 parents bafbcd8 + fac97dc commit 631939f
Show file tree
Hide file tree
Showing 4 changed files with 515 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:

- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: recursive

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

steps:

- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: recursive

Expand Down
7 changes: 7 additions & 0 deletions fasm2bels/fasm2bels.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
from .models.gtp_common_models import process_gtp_common
from .models.gtp_channel_models import process_gtp_channel
from .models.pcie_models import process_pcie
from .models.dsp_models import process_dsp

from .database.create_channels import create_channels
from .database.connection_db_utils import get_tile_type
Expand Down Expand Up @@ -81,6 +82,8 @@ def null_process(conn, top, tile, tiles):


PROCESS_TILE = {
'DSP_L': process_dsp,
'DSP_R': process_dsp,
'CLBLL_L': process_clb,
'CLBLL_R': process_clb,
'CLBLM_L': process_clb,
Expand Down Expand Up @@ -136,6 +139,10 @@ def null_process(conn, top, tile, tiles):
'GTP_INT_INTERFACE': null_process,
'GTP_INT_INTERFACE_L': null_process,
'GTP_INT_INTERFACE_R': null_process,
'INT_INTERFACE_L': null_process,
'INT_INTERFACE_R': null_process,
'IO_INT_INTERFACE_L': null_process,
'IO_INT_INTERFACE_R': null_process,
'PCIE_BOT': process_pcie,
}

Expand Down
Loading

0 comments on commit 631939f

Please sign in to comment.