Merge pull request #283 from barbedo/vcu118
Add initial support for the Xilinx VCU118 board
This commit is contained in:
commit
473d2c4092
|
|
@ -203,6 +203,13 @@ Xilinx:
|
||||||
Memory: OK
|
Memory: OK
|
||||||
Flash: NA
|
Flash: NA
|
||||||
|
|
||||||
|
- Description: Virtex UltraScale+
|
||||||
|
Model:
|
||||||
|
- xcvu9p
|
||||||
|
URL: https://www.xilinx.com/products/silicon-devices/fpga/virtex-ultrascale-plus.html#productTable
|
||||||
|
Memory: OK
|
||||||
|
Flash: NA
|
||||||
|
|
||||||
- Description: Spartan 3
|
- Description: Spartan 3
|
||||||
Model:
|
Model:
|
||||||
- xc3s200
|
- xc3s200
|
||||||
|
|
|
||||||
|
|
@ -643,3 +643,10 @@
|
||||||
FPGA: zynq7000 xc7z020clg400
|
FPGA: zynq7000 xc7z020clg400
|
||||||
Memory: OK
|
Memory: OK
|
||||||
Flash: NA
|
Flash: NA
|
||||||
|
|
||||||
|
- ID: vcu118
|
||||||
|
Description: Xilinx VCU118
|
||||||
|
URL: https://www.xilinx.com/products/boards-and-kits/vcu118.html
|
||||||
|
FPGA: Virtex UltraScale+ xcvu9pl2flga2104e
|
||||||
|
Memory: OK
|
||||||
|
Flash: NA
|
||||||
|
|
|
||||||
|
|
@ -204,6 +204,7 @@ static std::map <std::string, target_board_t> board_list = {
|
||||||
JTAG_BOARD("papilio_one", "xc3s500evq100", "papilio", 0, 0, CABLE_DEFAULT),
|
JTAG_BOARD("papilio_one", "xc3s500evq100", "papilio", 0, 0, CABLE_DEFAULT),
|
||||||
JTAG_BOARD("usrpx300", "xc7k325tffg900", "digilent", 0, 0, CABLE_MHZ(15)),
|
JTAG_BOARD("usrpx300", "xc7k325tffg900", "digilent", 0, 0, CABLE_MHZ(15)),
|
||||||
JTAG_BOARD("usrpx310", "xc7k410tffg900", "digilent", 0, 0, CABLE_MHZ(15)),
|
JTAG_BOARD("usrpx310", "xc7k410tffg900", "digilent", 0, 0, CABLE_MHZ(15)),
|
||||||
|
JTAG_BOARD("vcu118", "xcvu9pl2flga2104e", "jtag-smt2-nc", 0, 0, CABLE_DEFAULT)
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,8 @@ static std::map <uint32_t, fpga_model> fpga_list = {
|
||||||
{0x03727093, {"xilinx", "zynq", "xc7z020", 6}},
|
{0x03727093, {"xilinx", "zynq", "xc7z020", 6}},
|
||||||
{0x23731093, {"xilinx", "zynq", "xc7z045", 6}},
|
{0x23731093, {"xilinx", "zynq", "xc7z045", 6}},
|
||||||
|
|
||||||
|
{0x04b31093, {"xilinx", "virtexusp", "xcvu9p", 6}},
|
||||||
|
|
||||||
/* When powering a zynq ultrascale+ MPSoC, PL Tap and ARM dap
|
/* When powering a zynq ultrascale+ MPSoC, PL Tap and ARM dap
|
||||||
* are disabled and only PS tap with a specific IDCODE is seen.
|
* are disabled and only PS tap with a specific IDCODE is seen.
|
||||||
* 0x03 must be written into JTAG_CTRL followed by RTI and
|
* 0x03 must be written into JTAG_CTRL followed by RTI and
|
||||||
|
|
|
||||||
|
|
@ -76,6 +76,8 @@ Xilinx::Xilinx(Jtag *jtag, const std::string &filename,
|
||||||
_fpga_family = KINTEX_FAMILY;
|
_fpga_family = KINTEX_FAMILY;
|
||||||
} else if (family == "kintexus") {
|
} else if (family == "kintexus") {
|
||||||
_fpga_family = KINTEXUS_FAMILY;
|
_fpga_family = KINTEXUS_FAMILY;
|
||||||
|
} else if (family == "virtexusp") {
|
||||||
|
_fpga_family = VIRTEXUSP_FAMILY;
|
||||||
} else if (family.substr(0, 8) == "spartan3") {
|
} else if (family.substr(0, 8) == "spartan3") {
|
||||||
_fpga_family = SPARTAN3_FAMILY;
|
_fpga_family = SPARTAN3_FAMILY;
|
||||||
if (_mode != Device::MEM_MODE) {
|
if (_mode != Device::MEM_MODE) {
|
||||||
|
|
|
||||||
|
|
@ -166,6 +166,7 @@ class Xilinx: public Device, SPIInterface {
|
||||||
ZYNQ_FAMILY,
|
ZYNQ_FAMILY,
|
||||||
ZYNQMP_FAMILY,
|
ZYNQMP_FAMILY,
|
||||||
XCF_FAMILY,
|
XCF_FAMILY,
|
||||||
|
VIRTEXUSP_FAMILY,
|
||||||
UNKNOWN_FAMILY = 999
|
UNKNOWN_FAMILY = 999
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue