Skip to content
Snippets Groups Projects
Commit 552554f4 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

processed review comments

parent 49810531
No related branches found
No related tags found
1 merge request!197Verified xsub with ring in simulation.
Pipeline #24639 passed
......@@ -720,6 +720,7 @@ BEGIN
g_use_fsub => c_revision_select.use_fsub,
g_use_xsub => c_revision_select.use_xsub,
g_use_bf => c_revision_select.use_bf,
g_use_ring => c_revision_select.use_ring,
g_P_sq => c_revision_select.P_sq
)
PORT MAP (
......
......@@ -194,7 +194,7 @@ BEGIN
g_in_nof_words => c_longword_w/c_data_w,
g_out_dat_w => c_longword_w,
g_out_nof_words => 1,
g_pipeline_ready => TRUE
g_pipeline_ready => TRUE -- Needed for src_in.ready to snk_out.ready.
)
PORT MAP (
rst => dp_rst,
......@@ -236,7 +236,7 @@ BEGIN
g_in_nof_words => 1,
g_out_dat_w => c_data_w,
g_out_nof_words => c_longword_w/c_data_w,
g_pipeline_ready => TRUE
g_pipeline_ready => TRUE -- Needed for src_in.ready to snk_out.ready.
)
PORT MAP (
rst => dp_rst,
......
......@@ -120,7 +120,7 @@ peripherals:
number_of_mm_ports: g_nof_streams
fields:
- - field_name: enable
field_description: "Stream enable"
field_description: "Stream enable per stream via bits g_nof_streams-1 : 0. Bit value 0 disables the stream, 1 enables the stream. Disabled streams are not aligned."
address_offset: 0x0
mm_width: 1
access_mode: RW
......
......@@ -650,7 +650,7 @@ ENTITY dp_repack_data IS
g_out_dat_w : NATURAL;
g_out_nof_words : NATURAL;
g_out_symbol_w : NATURAL := 1; -- default 1 for src_out.empty in nof bits, else use power of 2
g_pipeline_ready : BOOLEAN := FALSE
g_pipeline_ready : BOOLEAN := FALSE -- TRUE to pipeline ready from src_in to snk_out.
);
PORT (
rst : IN STD_LOGIC;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment