mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-22 06:07:36 +02:00
part: Add support for Kintex Ultrascale XCKU040
Signed-off-by: Sylvain Munaut <[email protected]>
This commit is contained in:
@@ -31,6 +31,8 @@ static std::map <int, fpga_model> fpga_list = {
|
||||
{0x03651093, {"xilinx", "kintex7", "xc7k325t", 6}},
|
||||
{0x03656093, {"xilinx", "kintex7", "xc7k410t", 6}},
|
||||
|
||||
{0x13822093, {"xilinx", "kintexus", "xcku040", 6}},
|
||||
|
||||
{0x01414093, {"xilinx", "spartan3", "xc3s200", 6}},
|
||||
{0x01c22093, {"xilinx", "spartan3", "xc3s500e", 6}},
|
||||
|
||||
|
||||
@@ -65,6 +65,8 @@ Xilinx::Xilinx(Jtag *jtag, const std::string &filename,
|
||||
_fpga_family = ZYNQMP_FAMILY;
|
||||
} else if (family == "kintex7") {
|
||||
_fpga_family = KINTEX_FAMILY;
|
||||
} else if (family == "kintexus") {
|
||||
_fpga_family = KINTEXUS_FAMILY;
|
||||
} else if (family == "spartan3") {
|
||||
_fpga_family = SPARTAN3_FAMILY;
|
||||
if (_mode != Device::MEM_MODE) {
|
||||
|
||||
@@ -155,6 +155,7 @@ class Xilinx: public Device, SPIInterface {
|
||||
SPARTAN7_FAMILY,
|
||||
ARTIX_FAMILY,
|
||||
KINTEX_FAMILY,
|
||||
KINTEXUS_FAMILY,
|
||||
ZYNQ_FAMILY,
|
||||
ZYNQMP_FAMILY,
|
||||
XCF_FAMILY,
|
||||
|
||||
Reference in New Issue
Block a user