2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-05-06 01:49:21 -04:00
|
|
|
|
2021-03-26 18:52:36 -04:00
|
|
|
# The Acorn (CLE-101, CLE-215(+)) are cryptocurrency mining accelerator cards from SQRL that can be
|
|
|
|
# repurposed as generic FPGA PCIe development boards:
|
|
|
|
# - http://www.squirrelsresearch.com/acorn-cle-101
|
|
|
|
# - http://www.squirrelsresearch.com/acorn-cle-215-plus
|
|
|
|
# The 101 variant is eguivalent to the LiteFury and 215 variant equivalent to the NiteFury from
|
|
|
|
# RHSResearchLLC that are documented at: https://github.com/RHSResearchLLC/NiteFury-and-LiteFury.
|
2020-05-06 01:49:21 -04:00
|
|
|
|
|
|
|
from litex.build.generic_platform import *
|
2022-11-05 03:07:14 -04:00
|
|
|
from litex.build.xilinx import Xilinx7SeriesPlatform, VivadoProgrammer
|
2020-05-06 01:49:21 -04:00
|
|
|
from litex.build.openocd import OpenOCD
|
|
|
|
|
|
|
|
# IOs ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
_io = [
|
2021-03-26 18:52:36 -04:00
|
|
|
# Clk / Rst.
|
2020-05-06 01:49:21 -04:00
|
|
|
("clk200", 0,
|
|
|
|
Subsignal("p", Pins("J19"), IOStandard("DIFF_SSTL15")),
|
|
|
|
Subsignal("n", Pins("H19"), IOStandard("DIFF_SSTL15"))
|
|
|
|
),
|
|
|
|
|
2021-03-26 18:52:36 -04:00
|
|
|
# Leds.
|
2020-05-06 01:49:21 -04:00
|
|
|
("user_led", 0, Pins("G3"), IOStandard("LVCMOS33")),
|
|
|
|
("user_led", 1, Pins("H3"), IOStandard("LVCMOS33")),
|
|
|
|
("user_led", 2, Pins("G4"), IOStandard("LVCMOS33")),
|
|
|
|
("user_led", 3, Pins("H4"), IOStandard("LVCMOS33")),
|
|
|
|
|
2021-03-26 18:52:36 -04:00
|
|
|
# SPIFlash.
|
2021-04-21 11:00:40 -04:00
|
|
|
("flash_cs_n", 0, Pins("T19"), IOStandard("LVCMOS33")),
|
|
|
|
("flash", 0,
|
2020-05-06 01:49:21 -04:00
|
|
|
Subsignal("mosi", Pins("P22")),
|
|
|
|
Subsignal("miso", Pins("R22")),
|
|
|
|
Subsignal("wp", Pins("P21")),
|
|
|
|
Subsignal("hold", Pins("R21")),
|
|
|
|
IOStandard("LVCMOS33")
|
|
|
|
),
|
|
|
|
|
2021-03-26 18:52:36 -04:00
|
|
|
# PCIe.
|
2020-05-06 01:49:21 -04:00
|
|
|
("pcie_clkreq_n", 0, Pins("G1"), IOStandard("LVCMOS33")),
|
|
|
|
("pcie_x4", 0,
|
|
|
|
Subsignal("rst_n", Pins("J1"), IOStandard("LVCMOS33"), Misc("PULLUP=TRUE")),
|
|
|
|
Subsignal("clk_p", Pins("F6")),
|
|
|
|
Subsignal("clk_n", Pins("E6")),
|
|
|
|
Subsignal("rx_p", Pins("B10 B8 D11 D9")),
|
|
|
|
Subsignal("rx_n", Pins("A10 A8 C11 C9")),
|
|
|
|
Subsignal("tx_p", Pins("B6 B4 D5 D7")),
|
2020-05-06 06:27:07 -04:00
|
|
|
Subsignal("tx_n", Pins("A6 A4 C5 C7")),
|
2020-05-06 01:49:21 -04:00
|
|
|
),
|
|
|
|
|
2021-03-26 18:52:36 -04:00
|
|
|
# DDR3 SDRAM.
|
2020-05-06 01:49:21 -04:00
|
|
|
("ddram", 0,
|
|
|
|
Subsignal("a", Pins(
|
|
|
|
"M15 L21 M16 L18 K21 M18 M21 N20",
|
|
|
|
"M20 N19 J21 M22 K22 N18 N22 J22"),
|
|
|
|
IOStandard("SSTL15")),
|
|
|
|
Subsignal("ba", Pins("L19 J20 L20"), IOStandard("SSTL15")),
|
|
|
|
Subsignal("ras_n", Pins("H20"), IOStandard("SSTL15")),
|
|
|
|
Subsignal("cas_n", Pins("K18"), IOStandard("SSTL15")),
|
|
|
|
Subsignal("we_n", Pins("L16"), IOStandard("SSTL15")),
|
|
|
|
Subsignal("dm", Pins("A19 G22"), IOStandard("SSTL15")),
|
|
|
|
Subsignal("dq", Pins(
|
|
|
|
"D19 B20 E19 A20 F19 C19 F20 C18",
|
|
|
|
"E22 G21 D20 E21 C22 D21 B22 D22"),
|
|
|
|
IOStandard("SSTL15"),
|
|
|
|
Misc("IN_TERM=UNTUNED_SPLIT_50")),
|
|
|
|
Subsignal("dqs_p", Pins("F18 B21"), IOStandard("DIFF_SSTL15")),
|
|
|
|
Subsignal("dqs_n", Pins("E18 A21"), IOStandard("DIFF_SSTL15")),
|
|
|
|
Subsignal("clk_p", Pins("K17"), IOStandard("DIFF_SSTL15")),
|
|
|
|
Subsignal("clk_n", Pins("J17"), IOStandard("DIFF_SSTL15")),
|
|
|
|
Subsignal("cke", Pins("H22"), IOStandard("SSTL15")),
|
|
|
|
Subsignal("odt", Pins("K19"), IOStandard("SSTL15")),
|
|
|
|
Subsignal("reset_n", Pins("K16"), IOStandard("LVCMOS15")),
|
|
|
|
#Subsignal("cs_n", Pins(""), IOStandard("SSTL15")),
|
|
|
|
Misc("SLEW=FAST"),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2020-10-29 07:10:12 -04:00
|
|
|
_serial_io = [
|
2021-03-26 18:52:36 -04:00
|
|
|
# Serial adapter on P2.
|
2020-10-29 07:10:12 -04:00
|
|
|
("serial", 0,
|
|
|
|
Subsignal("tx", Pins("K2")),
|
|
|
|
Subsignal("rx", Pins("J2")),
|
|
|
|
Misc("SLEW=FAST"),
|
|
|
|
IOStandard("LVCMOS33"),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2020-08-22 16:11:51 -04:00
|
|
|
_sdcard_io = [
|
2021-03-26 18:52:36 -04:00
|
|
|
# SPI SDCard adapter on P2.
|
2020-08-22 16:11:51 -04:00
|
|
|
# https://spoolqueue.com/new-design/fpga/migen/litex/2020/08/11/acorn-cle-215.html
|
|
|
|
("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"),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2020-05-06 01:49:21 -04:00
|
|
|
# Platform -----------------------------------------------------------------------------------------
|
|
|
|
|
2022-11-05 03:07:14 -04:00
|
|
|
class Platform(Xilinx7SeriesPlatform):
|
2020-05-06 01:49:21 -04:00
|
|
|
default_clk_name = "clk200"
|
|
|
|
default_clk_period = 1e9/200e6
|
|
|
|
|
2022-02-14 05:35:08 -05:00
|
|
|
def __init__(self, variant="cle-215+", toolchain="vivado"):
|
2021-03-26 18:52:36 -04:00
|
|
|
device = {
|
|
|
|
"cle-101": "xc7a100t-fgg484-2",
|
|
|
|
"cle-215": "xc7a200t-fbg484-2",
|
|
|
|
"cle-215+": "xc7a200t-fbg484-3"
|
|
|
|
}[variant]
|
|
|
|
|
2022-11-05 03:07:14 -04:00
|
|
|
Xilinx7SeriesPlatform.__init__(self, device, _io, toolchain=toolchain)
|
2020-10-29 07:10:12 -04:00
|
|
|
self.add_extension(_serial_io)
|
2020-08-22 16:11:51 -04:00
|
|
|
self.add_extension(_sdcard_io)
|
2020-05-06 01:49:21 -04:00
|
|
|
self.add_platform_command("set_property INTERNAL_VREF 0.750 [get_iobanks 34]")
|
|
|
|
|
2020-05-06 06:27:07 -04:00
|
|
|
self.toolchain.bitstream_commands = [
|
|
|
|
"set_property BITSTREAM.CONFIG.SPI_BUSWIDTH 4 [current_design]",
|
|
|
|
"set_property BITSTREAM.CONFIG.CONFIGRATE 16 [current_design]",
|
2021-11-07 10:18:22 -05:00
|
|
|
"set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]",
|
|
|
|
"set_property CFGBVS VCCO [current_design]",
|
|
|
|
"set_property CONFIG_VOLTAGE 3.3 [current_design]",
|
2020-05-06 06:27:07 -04:00
|
|
|
]
|
2021-11-21 13:10:21 -05:00
|
|
|
|
|
|
|
self.toolchain.additional_commands = [
|
|
|
|
# Non-Multiboot SPI-Flash bitstream generation.
|
|
|
|
"write_cfgmem -force -format bin -interface spix4 -size 16 -loadbit \"up 0x0 {build_name}.bit\" -file {build_name}.bin",
|
|
|
|
|
|
|
|
# Multiboot SPI-Flash Operational bitstream generation.
|
|
|
|
"set_property BITSTREAM.CONFIG.TIMER_CFG 0x0001fbd0 [current_design]",
|
|
|
|
"set_property BITSTREAM.CONFIG.CONFIGFALLBACK Enable [current_design]",
|
|
|
|
"write_bitstream -force {build_name}_operational.bit ",
|
|
|
|
"write_cfgmem -force -format bin -interface spix4 -size 16 -loadbit \"up 0x0 {build_name}_operational.bit\" -file {build_name}_operational.bin",
|
|
|
|
|
|
|
|
# Multiboot SPI-Flash Fallback bitstream generation.
|
|
|
|
"set_property BITSTREAM.CONFIG.NEXT_CONFIG_ADDR 0x00400000 [current_design]",
|
|
|
|
"write_bitstream -force {build_name}_fallback.bit ",
|
|
|
|
"write_cfgmem -force -format bin -interface spix4 -size 16 -loadbit \"up 0x0 {build_name}_fallback.bit\" -file {build_name}_fallback.bin"
|
|
|
|
]
|
2020-05-06 06:27:07 -04:00
|
|
|
|
2021-11-07 10:17:11 -05:00
|
|
|
def create_programmer(self, name='openocd'):
|
|
|
|
if name == 'openocd':
|
|
|
|
return OpenOCD("openocd_xc7_ft232.cfg", "bscan_spi_xc7a200t.bit")
|
|
|
|
elif name == 'vivado':
|
|
|
|
# TODO: some board versions may have s25fl128s
|
|
|
|
return VivadoProgrammer(flash_part='s25fl256sxxxxxx0-spi-x1_x2_x4')
|
2020-05-06 01:49:21 -04:00
|
|
|
|
|
|
|
def do_finalize(self, fragment):
|
2022-11-05 03:07:14 -04:00
|
|
|
Xilinx7SeriesPlatform.do_finalize(self, fragment)
|
2020-05-06 01:49:21 -04:00
|
|
|
self.add_period_constraint(self.lookup_request("clk200", loose=True), 1e9/200e6)
|