platforms/nexys4ddr: add option to build with spi-mode sdcard support

This commit is contained in:
Gabriel Somlo 2020-05-24 19:09:25 -04:00
parent 0d549a8c89
commit 435913f7d8
1 changed files with 5 additions and 2 deletions

View File

@ -97,11 +97,14 @@ def main():
soc_sdram_args(parser)
parser.add_argument("--sys-clk-freq", default=75e6, help="System clock frequency (default=75MHz)")
parser.add_argument("--with-ethernet", action="store_true", help="Enable Ethernet support")
parser.add_argument("--with-spi-sdcard", action="store_true", help="enable SPI-mode SDCard support")
args = parser.parse_args()
soc = BaseSoC(sys_clk_freq=int(float(args.sys_clk_freq)),
with_ethernet=args.with_ethernet,
**soc_sdram_argdict(args))
if args.with_spi_sdcard:
soc.add_spi_sdcard()
builder = Builder(soc, **builder_argdict(args))
builder.build(run=args.build)