Skip to content

Commit

Permalink
using gpuAsyncCore from AxiePcieReg
Browse files Browse the repository at this point in the history
  • Loading branch information
mmishra9 committed Nov 6, 2024
1 parent 202b37f commit edaac02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions firmware/python/DrpTDetGpu/_DevKcu1500.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def __init__(self,

self.add(pcie.AxiPcieCore(
useSpi=True,
useGpu=True,
offset = 0x0000_0000,
numDmaLanes = numDmaLanes,
expand = False,
Expand Down Expand Up @@ -58,12 +59,6 @@ def __init__(self,
expand = False,
))

self.add(pcie.AxiGpuAsyncCore(
name = 'AxiGpuAsyncCore',
offset = 0x00D0_0000,
expand = False,
))

self.add(drp.I2CBus(
name = 'I2CBus',
offset = 0x00E0_0000,
Expand Down
2 changes: 1 addition & 1 deletion firmware/targets/DrpTDetGpu/hdl/DrpTDetGpu.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ architecture top_level of DrpTDetGpu is
constant I2C_INDEX_C : integer := 3;

constant CORE_I2C_C : boolean := false;
constant NUM_AXIL0_MASTERS_C : integer := ite(CORE_I2C_C, 4, 5);
constant NUM_AXIL0_MASTERS_C : integer := ite(CORE_I2C_C, 3, 4);
signal mAxil0ReadMasters : AxiLiteReadMasterArray (NUM_AXIL0_MASTERS_C-1 downto 0) := (others => AXI_LITE_READ_MASTER_INIT_C);
signal mAxil0ReadSlaves : AxiLiteReadSlaveArray (NUM_AXIL0_MASTERS_C-1 downto 0) := (others => AXI_LITE_READ_SLAVE_EMPTY_OK_C);
signal mAxil0WriteMasters : AxiLiteWriteMasterArray(NUM_AXIL0_MASTERS_C-1 downto 0) := (others => AXI_LITE_WRITE_MASTER_INIT_C);
Expand Down

0 comments on commit edaac02

Please sign in to comment.