Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in Alveo U50 Vivado Part Number #129

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Ethernet/bd_cmac.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if {${projPart} eq "xcu55n-fsvh2892-2L-e"} {
set interface_number 0
}
}
} elseif {${projPart} eq "xcu50-fsvh2104-2L-e"} {
} elseif {${projPart} eq "xcu50-fsvh2104-2-e"} {
# Possible core_selection CMACE4_X0Y3 and CMACE4_X0Y4
set gt_ref_clk 161.1328125
set core_selection CMACE4_X0Y3
Expand Down
2 changes: 1 addition & 1 deletion Ethernet/package_cmac.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ set path_to_tmp_project "./tmp_${suffix}"
#get projPart
source platform.tcl

if {${projPart} eq "xcu50-fsvh2104-2L-e"} {
if {${projPart} eq "xcu50-fsvh2104-2-e"} {
if {$interface != 0} {
catch {common::send_gid_msg -ssname BD::TCL -id 2041 -severity "ERROR" "Alveo U50 only has one interface (0)"}
return 1
Expand Down
4 changes: 2 additions & 2 deletions Ethernet/platform.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set board [lindex $words 1]
if {[string first "u55n" ${board}] != -1} {
set projPart "xcu55n-fsvh2892-2L-e"
} elseif {[string first "u50" ${board}] != -1} {
set projPart "xcu50-fsvh2104-2L-e"
set projPart "xcu50-fsvh2104-2-e"
} elseif {[string first "u55c" ${board}] != -1} {
set projPart "xcu55c-fsvh2892-2L-e"
} elseif {[string first "u200" ${board}] != -1} {
Expand All @@ -20,4 +20,4 @@ if {[string first "u55n" ${board}] != -1} {
} else {
catch {common::send_gid_msg -ssname BD::TCL -id 2041 -severity "ERROR" "unsupported device: ${device}"}
return 1
}
}
4 changes: 2 additions & 2 deletions NetLayers/platform.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set board [lindex $words 1]
if {[string first "u55n" ${board}] != -1} {
set projPart "xcu55n-fsvh2892-2L-e"
} elseif {[string first "u50" ${board}] != -1} {
set projPart "xcu50-fsvh2104-2L-e"
set projPart "xcu50-fsvh2104-2-e"
} elseif {[string first "u55c" ${board}] != -1} {
set projPart "xcu55c-fsvh2892-2L-e"
} elseif {[string first "u200" ${board}] != -1} {
Expand All @@ -22,4 +22,4 @@ if {[string first "u55n" ${board}] != -1} {
} else {
catch {common::send_gid_msg -ssname BD::TCL -id 2041 -severity "ERROR" "unsupported device: ${device}"}
return 1
}
}