Skip to content

Commit

Permalink
Rename CVR board info
Browse files Browse the repository at this point in the history
Signed-off-by: Ong, Lean Kim <lean.kim.ong@intel.com>
  • Loading branch information
lekong-pg authored and FelixWongSiewAn committed Mar 28, 2024
1 parent abb73c9 commit 117ba8c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions sm_soc_devkit_ghrd/Makefile
Expand Up @@ -13,7 +13,7 @@
# <-
# BOARD_TYPE:
# - DK-A5E065BB32AES1: Agilex5 Premium Devkit [default]
# - crv: mUDV Coville Ridge
# - cvr: mUDV Coville Ridge
# - lbm: mUCV Little Battle Mountain
#
# BOOTS_FIRST:
Expand Down Expand Up @@ -172,7 +172,7 @@ endif
# QUARTUS_DEVICE to Board Revision Mapping

# User Settings
# Valid BOARD_TYPE: hidden, crv
# Valid BOARD_TYPE: hidden, cvr
BOARD_TYPE ?= DK-A5E065BB32AES1
#Loading board configuration
include board/board_$(BOARD_TYPE)_make_config.inc
Expand Down
2 changes: 1 addition & 1 deletion sm_soc_devkit_ghrd/create_ghrd_quartus.tcl
Expand Up @@ -189,7 +189,7 @@ if {[info exists pin_assignment_table]} {
set_instance_assignment -name IO_STANDARD "1.8 V" -to hps_osc_clk

if {$hps_emif_en} {
if {$board == "DK-A5E065BB32AES1" || $board == "crv" || $board == "lbm" } {
if {$board == "DK-A5E065BB32AES1" || $board == "cvr" || $board == "lbm" } {

set ranks r1
set width $hps_emif_width
Expand Down
Expand Up @@ -19,8 +19,8 @@ puts "\[GHRD:info\] \$prjroot = ${prjroot} "
source ${prjroot}/arguments_solver.tcl
source ${prjroot}/utils.tcl

if {$board == "crv"} {
source $prjroot/board/board_crv_config.tcl
if {$board == "cvr"} {
source $prjroot/board/board_cvr_config.tcl
} else {
source $prjroot/board/board_DK-A5E065BB32AES1_config.tcl
}
Expand Down
4 changes: 2 additions & 2 deletions sm_soc_devkit_ghrd/hps_subsys/construct_subsys_hps.tcl
Expand Up @@ -88,8 +88,8 @@ set_component_param "agilex_hps
# EMIF_DDR_WIDTH $hps_emif_width
if {$hps_emif_en == 1} {
set cpu_instance agilex_hps
if {$board == "crv"} {
set board_emif_config_file "$prjroot/board/board_crv_emif_setting.tcl"
if {$board == "cvr"} {
set board_emif_config_file "$prjroot/board/board_cvr_emif_setting.tcl"
} elseif {$board == "lbm"} {
set board_emif_config_file "$prjroot/board/board_lbm_emif_setting.tcl"
} else {
Expand Down
Expand Up @@ -18,8 +18,8 @@ puts "\[GHRD:info\] \$prjroot = ${prjroot} "
source ${prjroot}/arguments_solver.tcl
source ${prjroot}/utils.tcl

if {$board == "crv"} {
source $prjroot/board/board_crv_config.tcl
if {$board == "cvr"} {
source $prjroot/board/board_cvr_config.tcl
} else {
source $prjroot/board/board_DK-A5E065BB32AES1_config.tcl
}
Expand Down
2 changes: 1 addition & 1 deletion sm_soc_devkit_ghrd/top_level_template.v.terp
Expand Up @@ -30,7 +30,7 @@

module ${top_name} (
//Additional refclk_bti to preserve Etile XCVR
@@if {$board == "hidden" || $board == "crv"} {
@@if {$board == "hidden" || $board == "cvr"} {
input wire refclk_bti,
@@}
// Clock and Reset
Expand Down

0 comments on commit 117ba8c

Please sign in to comment.