From: Sebastien Bourdeauducq Date: Fri, 21 Nov 2014 01:11:57 +0000 (-0800) Subject: targets/kc705: avoid ddrphy/ethphy address conflict X-Git-Tag: 24jan2021_ls180~2627 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7eaa5f7372c6c2b7f20ba8be5eadef71cef32036;p=litex.git targets/kc705: avoid ddrphy/ethphy address conflict --- diff --git a/targets/kc705.py b/targets/kc705.py index 1aab9ef4..5680a0e7 100644 --- a/targets/kc705.py +++ b/targets/kc705.py @@ -107,8 +107,8 @@ class BaseSoC(SDRAMSoC): class MiniSoC(BaseSoC): csr_map = { - "ethphy": 10, - "ethmac": 11, + "ethphy": 11, + "ethmac": 12, } csr_map.update(BaseSoC.csr_map)