mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
targets/kc705: add ddrphy to CSR map
This commit is contained in:
parent
6decb357f1
commit
0eeb0ad9eb
1 changed files with 5 additions and 0 deletions
|
@ -62,6 +62,11 @@ class _CRG(Module):
|
|||
class BaseSoC(SDRAMSoC):
|
||||
default_platform = "kc705"
|
||||
|
||||
csr_map = {
|
||||
"ddrphy": 10,
|
||||
}
|
||||
csr_map.update(SDRAMSoC.csr_map)
|
||||
|
||||
def __init__(self, platform, **kwargs):
|
||||
SDRAMSoC.__init__(self, platform,
|
||||
clk_freq=125*1000000, cpu_reset_address=0xaf0000,
|
||||
|
|
Loading…
Reference in a new issue