Merge pull request #1885 from smunaut/csr-paging-0x400

soc/integration: Allow 0x400 CSR paging
This commit is contained in:
enjoy-digital 2024-02-05 12:44:51 +01:00 committed by GitHub
commit 88e530d0e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ class SoCCSRHandler(SoCLocHandler):
supported_data_width = [8, 32] supported_data_width = [8, 32]
supported_address_width = [14+i for i in range(4)] supported_address_width = [14+i for i in range(4)]
supported_alignment = [32] 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"] supported_ordering = ["big", "little"]
# Creation ------------------------------------------------------------------------------------- # Creation -------------------------------------------------------------------------------------