Merge pull request #1113 from shenki/microwatt-xilinx-multiplier

microwatt: Use Xilinx multiplier
This commit is contained in:
enjoy-digital 2021-11-29 08:04:57 +01:00 committed by GitHub
commit facb278ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -187,8 +187,7 @@ class Microwatt(CPU):
# Load/Store. # Load/Store.
"loadstore1.vhdl", "loadstore1.vhdl",
# Multiply/Divide. # Divide.
"multiply.vhdl",
"divider.vhdl", "divider.vhdl",
# FPU. # FPU.
@ -207,6 +206,12 @@ class Microwatt(CPU):
"core_debug.vhdl", "core_debug.vhdl",
"core.vhdl", "core.vhdl",
] ]
from litex.build.xilinx import XilinxPlatform
if isinstance(platform, XilinxPlatform) and not use_ghdl_yosys_plugin:
sources.append("xilinx-mult.vhdl")
else:
sources.append("multiply.vhdl")
sdir = get_data_mod("cpu", "microwatt").data_location sdir = get_data_mod("cpu", "microwatt").data_location
cdir = os.path.dirname(__file__) cdir = os.path.dirname(__file__)
# Convert VHDL to Verilog through GHDL/Yosys. # Convert VHDL to Verilog through GHDL/Yosys.