Skip to content

Commit

Permalink
Remane hidden to SI Devkit official name
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 e7c26ea commit 0aa1863
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions sm_soc_devkit_ghrd/Makefile
Expand Up @@ -12,8 +12,8 @@
#
# <-
# BOARD_TYPE:
# - hidden: hidden type [default]
# - crv: crv
# - DK-A5E065BB32AES1: Agilex5 Premium Devkit [default]
# - crv: mUDV Coville Ridge
#
# BOOTS_FIRST:
# - hps: hps first [default]
Expand Down Expand Up @@ -168,7 +168,7 @@ endif

# User Settings
# Valid BOARD_TYPE: hidden, crv
BOARD_TYPE ?= hidden
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 @@ -190,7 +190,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 == "hidden" || $board == "crv"} {
if {$board == "DK-A5E065BB32AES1" || $board == "crv"} {

set ranks r1
set width $hps_emif_width
Expand Down
2 changes: 1 addition & 1 deletion sm_soc_devkit_ghrd/design_config.tcl
Expand Up @@ -27,7 +27,7 @@ set CLK_GATE_EN 0
## Board
## ----------------

set BOARD "hidden"
set BOARD "DK-A5E065BB32AES1"
# Only valid for board="DK-SI-AGF014E"; "enpirion" or "linear"
set BOARD_PWRMGT "linear"

Expand Down
2 changes: 1 addition & 1 deletion sm_soc_devkit_ghrd/hps_subsys/construct_subsys_hps.tcl
Expand Up @@ -81,7 +81,7 @@ if {$hps_emif_en == 1} {
if {$board == "crv"} {
set board_emif_config_file "$prjroot/board/board_crv_emif_setting.tcl"
} else {
set board_emif_config_file "$prjroot/board/board_hidden_emif_setting.tcl"
set board_emif_config_file "$prjroot/board/board_DK-A5E065BB32AES1_emif_setting.tcl"
}
if {[file exist $board_emif_config_file]} {
source $board_emif_config_file
Expand Down
Expand Up @@ -21,7 +21,7 @@ source ${prjroot}/utils.tcl
if {$board == "crv"} {
source $prjroot/board/board_crv_config.tcl
} else {
source $prjroot/board/board_hidden_config.tcl
source $prjroot/board/board_DK-A5E065BB32AES1_config.tcl
}

set subsys_name $foldername
Expand Down
2 changes: 1 addition & 1 deletion sm_soc_devkit_ghrd/scripts/config_parzer.awk
Expand Up @@ -65,7 +65,7 @@ BEGIN{

config_str = config_str "" sprintf("%-30s=", var_name[1]);

} else if (match($0, /^#\s+-\s*([a-zA-Z0-9\.]+)\s*:\s*.+$/, var_val)) {
} else if (match($0, /^#\s+-\s*([a-zA-Z0-9\._-]+)\s*:\s*.+$/, var_val)) {
str = get_help_str($0, "val");
help_str = help_str ""str"\n";

Expand Down

0 comments on commit 0aa1863

Please sign in to comment.