Resolve L2SDP-697
5 unresolved threads
5 unresolved threads
Closes L2SDP-697
Merge request reports
Activity
requested review from @walle
assigned to @wee
43 43 clk : IN STD_LOGIC; 44 44 rst : IN STD_LOGIC; 45 45 in_data : IN STD_LOGIC_VECTOR(g_in_data_w-1 DOWNTO 0); -- input data 46 in_bsn : IN STD_LOGIC_VECTOR(c_dp_stream_bsn_w-1 DOWNTO 0); -- input bsn 47 in_stop : IN STD_LOGIC := '0'; 48 in_adr : IN NATURAL; tabje te veel?
Edited by Reinier van der Wallechanged this line in version 4 of the diff
57 63 58 64 -- type for statemachine 59 TYPE t_state IS (OVERFLOW_OUTPUT, FILL_VECTOR, FIRST_OUTPUT, RESET); 65 TYPE t_state IS (OVERFLOW_OUTPUT, FILL_VECTOR, FIRST_OUTPUT, RESET, STOP); 60 66 61 67 -- record for readability 62 68 TYPE t_reg IS RECORD 63 69 state : t_state; -- the state the process is currently in; 64 a_of : NATURAL; -- amount of overflow 65 70 c_v : STD_LOGIC_VECTOR(k_c_v_w-1 DOWNTO 0); -- the vector that stores the input data until the data is put into the output data vector 66 71 c_v_count : NATURAL; -- the amount of times the c_v vector received data from the input since the last time it was filled completely 67 72 out_data_count : NATURAL; -- the amount of times the output data vector has been filled since the last time c_v was filled completely 73 out_bsn_written : STD_LOGIC; 68 74 out_of : NATURAL; 69 75 out_sosi : t_dp_sosi; 76 out_bsn_ds : NATURAL; changed this line in version 4 of the diff
90 99 91 100 CASE q_reg.state IS 92 101 WHEN FILL_VECTOR => -- if the input data doesn't exceeds the output data vector width 93 v.c_v(g_in_data_w*(q_reg.c_v_count+1)+q_reg.a_of-1 DOWNTO g_in_data_w*q_reg.c_v_count+q_reg.a_of) := in_data(g_in_data_w-1 DOWNTO 0); -- fill c_v 102 v.c_v(g_in_data_w*(q_reg.c_v_count+1)+q_reg.out_of-1 DOWNTO g_in_data_w*q_reg.c_v_count+q_reg.out_of) := in_data(g_in_data_w-1 DOWNTO 0); -- fill c_v 94 103 v.c_v_count := q_reg.c_v_count+1; -- increase the counter of c_v with 1 95 104 v.out_sosi.valid := '0'; -- out_sosi.valid 0 96 105 106 -- BSN_INPUT 127 END IF; 128 129 97 130 WHEN FIRST_OUTPUT => -- if the input data exceeds output data vector width but not the c_v width 98 v.c_v(g_in_data_w*(q_reg.c_v_count+1)+q_reg.a_of-1 DOWNTO g_in_data_w*q_reg.c_v_count+q_reg.a_of) := in_data(g_in_data_w-1 DOWNTO 0); -- fill c_v 99 v.c_v_count := q_reg.c_v_count + 1; -- increase the counter of c_v with 1 100 v.out_sosi.data(c_out_data_w - 1 DOWNTO 0) := v.c_v(c_out_data_w - 1 DOWNTO 0); -- fill out_sosi.data with 1st part of c_v 101 v.out_sosi.valid := '1'; -- out_sosi.valid 1 102 v.out_data_count := q_reg.out_data_count+1; -- increase the counter of out_sosi.data with 1 131 v.c_v(g_in_data_w*(q_reg.c_v_count+1)+q_reg.out_of-1 DOWNTO g_in_data_w*q_reg.c_v_count+q_reg.out_of) := in_data(g_in_data_w-1 DOWNTO 0); -- fill c_v 132 v.c_v_count := q_reg.c_v_count+1; -- increase the counter of c_v with 1 133 v.out_sosi.data(c_out_data_w-1 DOWNTO 0) := v.c_v(c_out_data_w-1 DOWNTO 0); -- fill out_sosi.data with 1st part of c_v 134 v.out_sosi.valid := '1'; -- out_sosi.valid 1 135 v.out_data_count := q_reg.out_data_count+1; -- increase the counter of out_sosi.data with 1 136 137 IF in_adr = 0 AND q_reg.out_bsn_written = '0' THEN 146 bsn <= ADD_UVEC(bsn, "0001", c_dp_stream_bsn_w); 147 WAIT FOR c_clk_period*1; 148 END LOOP; 149 150 -- sending a stop signal 151 stop_in <= '1'; 152 153 -- filling the input data vectors with the corresponding numbers 154 make_data_1 : FOR J IN 0 TO c_sim_length-1 LOOP 132 155 in_data_cnt <= in_data_cnt+1; 133 fill_in_sosi_arr_rest : FOR I IN 0 TO g_nof_streams-1 LOOP 156 fill_in_sosi_arr_1 : FOR I IN 0 TO g_nof_streams-1 LOOP 134 157 in_sosi_arr(I).data(g_data_w-1 DOWNTO 0) <= c_total_vector(g_data_w*(I+1)+J*c_in_data_w-1 DOWNTO g_data_w*I+J*c_in_data_w); 135 158 END LOOP; 159 in_sosi_arr(0).bsn(c_dp_stream_bsn_w-1 DOWNTO 0) <= bsn(c_dp_stream_bsn_w-1 DOWNTO 0); 160 bsn <= ADD_UVEC(bsn, "0001", c_dp_stream_bsn_w); changed this line in version 2 of the diff
added 2 commits
mentioned in commit 7780aac0
Please register or sign in to reply