Skip to content
Snippets Groups Projects
Commit 35fc6733 authored by Kenneth Hiemstra's avatar Kenneth Hiemstra
Browse files

name change c_ctrl_unb1_version to c_rom_version

parent 1df92058
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,7 @@ END ctrl_unb1_board;
ARCHITECTURE str OF ctrl_unb1_board IS
CONSTANT c_ctrl_unb1_version : NATURAL := 1; -- Only increment when something changes to the register map of rom_system_info.
CONSTANT c_rom_version : NATURAL := 1; -- Only increment when something changes to the register map of rom_system_info.
-- g_sel=0 for clk200_pll.vhd : used when ADUH is not used so g_dp_phs_clk_vec_w = g_nof_dp_phs_clk = 0
-- g_sel=1 for clk200_pll_p6.vhd : used when ADUH is used so g_dp_phs_clk_vec_w = g_nof_dp_phs_clk > 0
......@@ -441,7 +441,7 @@ BEGIN
g_stamp_time => g_stamp_time,
g_stamp_svn => g_stamp_svn,
g_design_note => g_design_note,
g_ctrl_unb1_version => c_ctrl_unb1_version,
g_rom_version => c_rom_version,
g_technology => g_technology
)
PORT MAP (
......
......@@ -37,7 +37,7 @@ ENTITY mms_unb1_board_system_info IS
g_stamp_svn : NATURAL := 0;
g_design_note : STRING := "";
g_aux : t_c_unb1_board_aux := c_unb1_board_aux; -- aux contains the hardware version
g_ctrl_unb1_version : NATURAL := 1;
g_rom_version : NATURAL := 1;
g_technology : NATURAL := c_tech_stratixiv
);
PORT (
......@@ -93,7 +93,7 @@ BEGIN
GENERIC MAP (
g_sim => g_sim,
g_fw_version => g_fw_version,
g_ctrl_unb1_version => g_ctrl_unb1_version,
g_rom_version => g_rom_version,
g_technology => g_technology
)
PORT MAP (
......
......@@ -35,7 +35,7 @@ ENTITY unb1_board_system_info IS
g_sim : BOOLEAN := FALSE;
g_fw_version : t_unb1_board_fw_version := c_unb1_board_fw_version; -- firmware version x.y (4b.4b)
g_aux : t_c_unb1_board_aux := c_unb1_board_aux; -- aux contains the hardware version
g_ctrl_unb1_version : NATURAL := 1;
g_rom_version : NATURAL := 1;
g_technology : NATURAL := c_tech_stratixiv
);
PORT (
......@@ -89,7 +89,7 @@ BEGIN
p_info : PROCESS(cs_sim, hw_version_reg, id_reg)
BEGIN
nxt_info(31 DOWNTO 27) <= TO_UVEC(g_technology, 5);
nxt_info(26 DOWNTO 24) <= TO_UVEC(g_ctrl_unb1_version, 3);
nxt_info(26 DOWNTO 24) <= TO_UVEC(g_rom_version, 3);
nxt_info(23 DOWNTO 20) <= TO_UVEC(g_fw_version.hi, 4);
nxt_info(19 DOWNTO 16) <= TO_UVEC(g_fw_version.lo, 4);
nxt_info(10) <= cs_sim;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment