diff --git a/devices/AnalogDevices/ad9249/ruckus.tcl b/devices/AnalogDevices/ad9249/ruckus.tcl index 3ae406e9b4..35ed2898d2 100644 --- a/devices/AnalogDevices/ad9249/ruckus.tcl +++ b/devices/AnalogDevices/ad9249/ruckus.tcl @@ -16,6 +16,7 @@ if { ${family} eq {artix7} || } if { ${family} eq {kintexu} || + ${family} eq {virtexu} || ${family} eq {kintexuplus} || ${family} eq {virtexuplus} || ${family} eq {virtexuplusHBM} || diff --git a/devices/AnalogDevices/ad9681/ruckus.tcl b/devices/AnalogDevices/ad9681/ruckus.tcl index 9624424dd4..ec7c6fe333 100644 --- a/devices/AnalogDevices/ad9681/ruckus.tcl +++ b/devices/AnalogDevices/ad9681/ruckus.tcl @@ -16,6 +16,7 @@ if { ${family} eq {artix7} || } # if { ${family} eq {kintexu} || + # ${family} eq {virtexu} || # ${family} eq {kintexuplus} || # ${family} eq {virtexuplus} || # ${family} eq {virtexuplusHBM} || diff --git a/devices/Marvell/Sgmii88E1111/ruckus.tcl b/devices/Marvell/Sgmii88E1111/ruckus.tcl index 09b0940c24..d666dee69d 100644 --- a/devices/Marvell/Sgmii88E1111/ruckus.tcl +++ b/devices/Marvell/Sgmii88E1111/ruckus.tcl @@ -8,6 +8,7 @@ loadSource -lib surf -dir "$::DIR_PATH/core" set family [getFpgaArch] if { ${family} eq {kintexu} || + ${family} eq {virtexu} || ${family} eq {kintexuplus} || ${family} eq {virtexuplus} || ${family} eq {virtexuplusHBM} || diff --git a/devices/Ti/dp83867/ruckus.tcl b/devices/Ti/dp83867/ruckus.tcl index 09b0940c24..d666dee69d 100644 --- a/devices/Ti/dp83867/ruckus.tcl +++ b/devices/Ti/dp83867/ruckus.tcl @@ -8,6 +8,7 @@ loadSource -lib surf -dir "$::DIR_PATH/core" set family [getFpgaArch] if { ${family} eq {kintexu} || + ${family} eq {virtexu} || ${family} eq {kintexuplus} || ${family} eq {virtexuplus} || ${family} eq {virtexuplusHBM} || diff --git a/ethernet/GigEthCore/ruckus.tcl b/ethernet/GigEthCore/ruckus.tcl index e308b50d2a..b084a5dfef 100644 --- a/ethernet/GigEthCore/ruckus.tcl +++ b/ethernet/GigEthCore/ruckus.tcl @@ -27,7 +27,8 @@ if { ${family} eq {virtex7} } { loadRuckusTcl "$::DIR_PATH/gth7" } -if { ${family} eq {kintexu} } { +if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUltraScale" loadRuckusTcl "$::DIR_PATH/lvdsUltraScale" } diff --git a/ethernet/TenGigEthCore/ruckus.tcl b/ethernet/TenGigEthCore/ruckus.tcl index 7098fae39f..b8ede006a5 100644 --- a/ethernet/TenGigEthCore/ruckus.tcl +++ b/ethernet/TenGigEthCore/ruckus.tcl @@ -16,7 +16,8 @@ if { ${family} eq {virtex7} } { loadRuckusTcl "$::DIR_PATH/gth7" } -if { ${family} eq {kintexu} } { +if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUltraScale" } diff --git a/ethernet/XauiCore/ruckus.tcl b/ethernet/XauiCore/ruckus.tcl index 7098fae39f..b8ede006a5 100644 --- a/ethernet/XauiCore/ruckus.tcl +++ b/ethernet/XauiCore/ruckus.tcl @@ -16,7 +16,8 @@ if { ${family} eq {virtex7} } { loadRuckusTcl "$::DIR_PATH/gth7" } -if { ${family} eq {kintexu} } { +if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUltraScale" } diff --git a/ethernet/XlauiCore/ruckus.tcl b/ethernet/XlauiCore/ruckus.tcl index d59855b677..b68420a2de 100644 --- a/ethernet/XlauiCore/ruckus.tcl +++ b/ethernet/XlauiCore/ruckus.tcl @@ -16,7 +16,8 @@ if { ${family} eq {virtex7} } { loadRuckusTcl "$::DIR_PATH/gth7" } -if { ${family} eq {kintexu} } { +if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUltraScale" } diff --git a/protocols/clink/ruckus.tcl b/protocols/clink/ruckus.tcl index 5c507d0181..bdebcd1e53 100644 --- a/protocols/clink/ruckus.tcl +++ b/protocols/clink/ruckus.tcl @@ -18,6 +18,7 @@ if { ${family} == "artix7" || } if { ${family} eq {kintexu} || + ${family} eq {virtexu} || ${family} eq {kintexuplus} || ${family} eq {virtexuplus} || ${family} eq {virtexuplusHBM} || diff --git a/protocols/coaxpress/ruckus.tcl b/protocols/coaxpress/ruckus.tcl index c3de29fbbb..e5b28a0fab 100644 --- a/protocols/coaxpress/ruckus.tcl +++ b/protocols/coaxpress/ruckus.tcl @@ -7,7 +7,8 @@ loadRuckusTcl "$::DIR_PATH/core" # Get the family type set family [getFpgaArch] -if { ${family} eq {kintexu} } { +if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUs" } diff --git a/protocols/pgp/pgp2b/ruckus.tcl b/protocols/pgp/pgp2b/ruckus.tcl index 8449a987e8..2fea89839f 100644 --- a/protocols/pgp/pgp2b/ruckus.tcl +++ b/protocols/pgp/pgp2b/ruckus.tcl @@ -27,7 +27,8 @@ if { ${family} eq {virtex7} } { loadRuckusTcl "$::DIR_PATH/gth7" } -if { ${family} eq {kintexu} } { +if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUltraScale" } diff --git a/protocols/pgp/pgp3/ruckus.tcl b/protocols/pgp/pgp3/ruckus.tcl index 0d4b25db7d..4920c89b89 100644 --- a/protocols/pgp/pgp3/ruckus.tcl +++ b/protocols/pgp/pgp3/ruckus.tcl @@ -30,7 +30,8 @@ if { $::env(VIVADO_VERSION) > 0.0} { # loadRuckusTcl "$::DIR_PATH/gth7" # } - if { ${family} eq {kintexu} } { + if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUs" } diff --git a/protocols/pgp/pgp4/ruckus.tcl b/protocols/pgp/pgp4/ruckus.tcl index 201f478e2d..d312aa110b 100644 --- a/protocols/pgp/pgp4/ruckus.tcl +++ b/protocols/pgp/pgp4/ruckus.tcl @@ -30,7 +30,8 @@ if { $::env(VIVADO_VERSION) > 0.0} { # loadRuckusTcl "$::DIR_PATH/gth7" # } - if { ${family} eq {kintexu} } { + if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/gthUs" } diff --git a/protocols/salt/ruckus.tcl b/protocols/salt/ruckus.tcl index 40d14bdca4..74d14f8095 100644 --- a/protocols/salt/ruckus.tcl +++ b/protocols/salt/ruckus.tcl @@ -12,6 +12,7 @@ if { ${family} eq {artix7} || } if { ${family} eq {kintexu} || + ${family} eq {virtexu} || ${family} eq {kintexuplus} || ${family} eq {virtexuplus} || ${family} eq {virtexuplusHBM} || diff --git a/protocols/ssp/ruckus.tcl b/protocols/ssp/ruckus.tcl index ccf9d8c2c8..925ca902a8 100644 --- a/protocols/ssp/ruckus.tcl +++ b/protocols/ssp/ruckus.tcl @@ -11,6 +11,7 @@ loadSource -lib surf -dir "$::DIR_PATH/rtl" loadSource -lib surf -sim_only -dir "$::DIR_PATH/tb" if { ${family} eq {kintexu} || + ${family} eq {virtexu} || ${family} eq {kintexuplus} || ${family} eq {virtexuplus} || ${family} eq {virtexuplusHBM} || diff --git a/protocols/xvc-udp/ruckus.tcl b/protocols/xvc-udp/ruckus.tcl index 5266224029..73c8578d5e 100644 --- a/protocols/xvc-udp/ruckus.tcl +++ b/protocols/xvc-udp/ruckus.tcl @@ -21,6 +21,7 @@ if { [isVersal] == true } { } if { ${family} eq {kintexu} || + ${family} eq {virtexu} || ${family} eq {kintexuplus} || ${family} eq {virtexuplus} || ${family} eq {virtexuplusHBM} || diff --git a/xilinx/ruckus.tcl b/xilinx/ruckus.tcl index 467a1d0066..471bb69da7 100644 --- a/xilinx/ruckus.tcl +++ b/xilinx/ruckus.tcl @@ -20,7 +20,8 @@ if { ${family} eq {artix7} || loadRuckusTcl "$::DIR_PATH/7Series" } -if { ${family} eq {kintexu} } { +if { ${family} eq {kintexu} || + ${family} eq {virtexu} } { loadRuckusTcl "$::DIR_PATH/UltraScale" }