Skip to content
Snippets Groups Projects
Commit f5187cab authored by Maciej Lipinski's avatar Maciej Lipinski
Browse files

Endpoint: bugfix in h/w pck injection. The EOF signal generated when injecting...

Endpoint: bugfix in h/w pck injection. The EOF signal generated when injecting h/w pck was not passed on the fabric.
parent 33ac81e2
Branches
No related merge requests found
...@@ -135,6 +135,7 @@ begin -- rtl ...@@ -135,6 +135,7 @@ begin -- rtl
inj_src.eof <= '0'; inj_src.eof <= '0';
inj_src.dvalid <= '0'; inj_src.dvalid <= '0';
inj_src.error <= '0'; inj_src.error <= '0';
select_inject <= '0'; -- added by ML
counter(8 downto 6) <= unsigned(inject_packet_sel_i); counter(8 downto 6) <= unsigned(inject_packet_sel_i);
counter(5 downto 0) <= (others => '0'); counter(5 downto 0) <= (others => '0');
...@@ -173,7 +174,7 @@ begin -- rtl ...@@ -173,7 +174,7 @@ begin -- rtl
if(src_dreq_i = '1') then if(src_dreq_i = '1') then
inj_src.eof <= '1'; inj_src.eof <= '1';
state <= WAIT_IDLE; state <= WAIT_IDLE;
select_inject <= '0'; --select_inject <= '0'; -- removed by ML: we miss EOF on src_fab_o with this
end if; end if;
end case; end case;
end if; end if;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment