Moved platform call inside of BaseSoC init for compatibility with linux-on-litex-vexriscv support. Added optional spi-sdcard support over P2 header.
This commit is contained in:
parent
45bb329b56
commit
f328909578
|
@ -33,6 +33,16 @@ _io = [
|
|||
IOStandard("LVCMOS33")
|
||||
),
|
||||
|
||||
# spisdcard (requires adapter off P2)
|
||||
("spisdcard", 0,
|
||||
Subsignal("clk", Pins("J2")),
|
||||
Subsignal("mosi", Pins("J5"), Misc("PULLUP True")),
|
||||
Subsignal("cs_n", Pins("H5"), Misc("PULLUP True")),
|
||||
Subsignal("miso", Pins("K2"), Misc("PULLUP True")),
|
||||
Misc("SLEW=FAST"),
|
||||
IOStandard("LVCMOS33"),
|
||||
),
|
||||
|
||||
# pcie
|
||||
("pcie_clkreq_n", 0, Pins("G1"), IOStandard("LVCMOS33")),
|
||||
("pcie_x4", 0,
|
||||
|
|
|
@ -70,7 +70,8 @@ class CRG(Module):
|
|||
# BaseSoC -----------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, platform, with_pcie=False, **kwargs):
|
||||
def __init__(self, with_pcie=False, **kwargs):
|
||||
platform = acorn_cle_215.Platform()
|
||||
sys_clk_freq = int(100e6)
|
||||
|
||||
# SoCCore ----------------------------------------------------------------------------------
|
||||
|
@ -160,6 +161,7 @@ def main():
|
|||
parser = argparse.ArgumentParser(description="LiteX SoC on Acorn CLE 215+")
|
||||
parser.add_argument("--build", action="store_true", help="Build bitstream")
|
||||
parser.add_argument("--with-pcie", action="store_true", help="Enable PCIe support")
|
||||
parser.add_argument("--with-spi-sdcard", action="store_true", help="Enable SPI-mode SDCard support (requires adapter off P2)")
|
||||
parser.add_argument("--driver", action="store_true", help="Generate PCIe driver")
|
||||
parser.add_argument("--load", action="store_true", help="Load bitstream")
|
||||
parser.add_argument("--flash", action="store_true", help="Flash bitstream")
|
||||
|
@ -170,11 +172,15 @@ def main():
|
|||
# Enforce arguments
|
||||
args.csr_data_width = 32
|
||||
|
||||
platform = acorn_cle_215.Platform()
|
||||
soc = BaseSoC(platform, with_pcie=args.with_pcie, **soc_sdram_argdict(args))
|
||||
soc = BaseSoC(with_pcie=args.with_pcie, **soc_sdram_argdict(args))
|
||||
|
||||
if args.with_spi_sdcard:
|
||||
soc.add_spi_sdcard()
|
||||
|
||||
builder = Builder(soc, **builder_argdict(args))
|
||||
builder.build(run=args.build)
|
||||
|
||||
|
||||
if args.driver:
|
||||
generate_litepcie_software(soc, os.path.join(builder.output_dir, "driver"))
|
||||
|
||||
|
|
Loading…
Reference in New Issue