Skip to content

Commit

Permalink
Merge pull request #360 from Dolu1990/master
Browse files Browse the repository at this point in the history
litedram/address_mapping Add bank_byte_alignment
  • Loading branch information
enjoy-digital authored Aug 27, 2024
2 parents ee0972c + 49688a5 commit f5e80bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion litedram/core/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ def __init__(self,
with_auto_precharge = True,

# Address mapping
address_mapping = "ROW_BANK_COL"):
address_mapping = "ROW_BANK_COL",

# bank_byte_alignment specify how many bytes should be in between each bank change (minimum).
# This is usefull when you want to match a L2 cache sets size.
# For instance you have a L2 cache of 256KB with 4 ways => Sets size of 256KB/4=64KB
# => Ideal bank_byte_alignment = 0x10000
bank_byte_alignment = 0):
self.set_attributes(locals())

# Controller ---------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion litedram/core/crossbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def do_finalize(self):
nmasters = len(self.masters)

# Address mapping --------------------------------------------------------------------------
cba_shifts = {"ROW_BANK_COL": controller.settings.geom.colbits - controller.address_align}
cba_shifts = {"ROW_BANK_COL": max(controller.settings.geom.colbits - controller.address_align, log2_int(controller.settings.bank_byte_alignment //(controller.data_width // 8))) }
cba_shift = cba_shifts[controller.settings.address_mapping]
m_ba = [m.get_bank_address(self.bank_bits, cba_shift)for m in self.masters]
m_rca = [m.get_row_column_address(self.bank_bits, self.rca_bits, cba_shift) for m in self.masters]
Expand Down

0 comments on commit f5e80bb

Please sign in to comment.