From: Florent Kermarrec Date: Mon, 16 Feb 2015 13:14:03 +0000 (+0100) Subject: targets/kc705: fix csr address conflict on eth X-Git-Tag: 24jan2021_ls180~2606 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=73ab271f9a8c366c967a94a38cc9ddba921cc136;p=litex.git targets/kc705: fix csr address conflict on eth --- diff --git a/targets/kc705.py b/targets/kc705.py index f6aa143c..50b68804 100644 --- a/targets/kc705.py +++ b/targets/kc705.py @@ -111,8 +111,8 @@ class BaseSoC(SDRAMSoC): class MiniSoC(BaseSoC): csr_map = { - "ethphy": 11, - "ethmac": 12, + "ethphy": 12, + "ethmac": 13, } csr_map.update(BaseSoC.csr_map)