Skip to content

Commit

Permalink
integration/soc/SocCSRHandler: Make supported_address_width/paging va…
Browse files Browse the repository at this point in the history
…lues explicit.
  • Loading branch information
enjoy-digital committed Feb 5, 2024
1 parent 88e530d commit 57bc036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litex/soc/integration/soc.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,9 +650,9 @@ def __str__(self):

class SoCCSRHandler(SoCLocHandler):
supported_data_width = [8, 32]
supported_address_width = [14+i for i in range(4)]
supported_address_width = [14, 15, 16, 17, 18]
supported_alignment = [32]
supported_paging = [0x400*2**i for i in range(5)]
supported_paging = [0x400, 0x800, 0x1000, 0x2000, 0x4000]
supported_ordering = ["big", "little"]

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

0 comments on commit 57bc036

Please sign in to comment.