Skip to content

Commit

Permalink
Fix the reset
Browse files Browse the repository at this point in the history
  • Loading branch information
Dolu1990 committed Aug 26, 2024
1 parent 144462e commit abaa9c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions litex_boards/targets/efinix_ti375_c529_dev_kit.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ def generate(root, namespaces):
Subsignal("r_id", Pins(6)), #5:0]
Subsignal("r_resp", Pins(2)), #1:0]
Subsignal("r_last", Pins(1)), #
Subsignal("resetn", Pins(1)),
)]

io = platform.add_iface_ios(ios)
Expand Down Expand Up @@ -441,6 +442,7 @@ def generate(root, namespaces):
axi_bus.r.id.eq(io.r_id),
axi_bus.r.resp.eq(io.r_resp),
axi_bus.r.last.eq(io.r_last),
io.resetn.eq(~self.crg.cd_sys.rst),
]

if hasattr(self.cpu, "add_memory_buses"):
Expand Down

0 comments on commit abaa9c4

Please sign in to comment.