mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc: increase supporteds address_width/paging
This commit is contained in:
parent
5b3808cb81
commit
6ed0f445b6
1 changed files with 2 additions and 2 deletions
|
@ -426,9 +426,9 @@ class SoCLocHandler(Module):
|
|||
|
||||
class SoCCSRHandler(SoCLocHandler):
|
||||
supported_data_width = [8, 32]
|
||||
supported_address_width = [14, 15]
|
||||
supported_address_width = [14+i for i in range(4)]
|
||||
supported_alignment = [32, 64]
|
||||
supported_paging = [0x800*2**i for i in range(3)]
|
||||
supported_paging = [0x800*2**i for i in range(4)]
|
||||
|
||||
# Creation -------------------------------------------------------------------------------------
|
||||
def __init__(self, data_width=32, address_width=14, alignment=32, paging=0x800, reserved_csrs={}):
|
||||
|
|
Loading…
Reference in a new issue