Commit ca0cd0fe authored by Tristan Gingold's avatar Tristan Gingold

mpsoc_int_gen: fix a dead-lock

parent 116213af
...@@ -85,10 +85,10 @@ begin ...@@ -85,10 +85,10 @@ begin
S_AXI_awsize <= "010"; S_AXI_awsize <= "010";
-- Normal Non-cacheable Non-bufferable -- Normal Non-cacheable Non-bufferable
S_AXI_awcache <= "0010"; S_AXI_awcache <= "0000";
-- Reuse the same id. -- Reuse the same id.
S_AXI_awid <= "000000"; S_AXI_awid <= b"00_0000";
S_AXI_awlock <= '0'; S_AXI_awlock <= '0';
...@@ -108,12 +108,12 @@ begin ...@@ -108,12 +108,12 @@ begin
S_AXI_wstrb(3 downto 0) <= "1111"; S_AXI_wstrb(3 downto 0) <= "1111";
S_AXI_wstrb(s_AXI_wstrb'left downto 4) <= (others => '0'); S_AXI_wstrb(s_AXI_wstrb'left downto 4) <= (others => '0');
S_AXI_bready <= '1';
process (clk_i) process (clk_i)
begin begin
if rising_edge(clk_i) then if rising_edge(clk_i) then
S_AXI_bready <= '1';
if rst_n_i = '0' then if rst_n_i = '0' then
S_AXI_awvalid <= '0'; S_AXI_awvalid <= '0';
S_AXI_wvalid <= '0'; S_AXI_wvalid <= '0';
......
Markdown is supported
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