Skip to content

Commit

Permalink
Merge pull request #1885 from smunaut/csr-paging-0x400
Browse files Browse the repository at this point in the history
soc/integration: Allow 0x400 CSR paging
  • Loading branch information
enjoy-digital authored Feb 5, 2024
2 parents cd1088d + 3127e50 commit 88e530d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/integration/soc.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ class SoCCSRHandler(SoCLocHandler):
supported_data_width = [8, 32]
supported_address_width = [14+i for i in range(4)]
supported_alignment = [32]
supported_paging = [0x800*2**i for i in range(4)]
supported_paging = [0x400*2**i for i in range(5)]
supported_ordering = ["big", "little"]

# Creation -------------------------------------------------------------------------------------
Expand Down

0 comments on commit 88e530d

Please sign in to comment.