Skip to content

Commit

Permalink
#200: Adding missing rarp_select signal
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrothea committed Sep 26, 2021
1 parent e3e8cd4 commit 45355d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ begin
debug_leds => dleds,
mac_addr => mac_addr,
ip_addr => ip_addr,
rarp_select => '0',
ipb_in => ipb_in,
ipb_out => ipb_out
);
Expand Down
10 changes: 6 additions & 4 deletions boards/vcu118/sgmii/synth/firmware/hdl/vcu118_infra_sgmii.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,12 @@ entity vcu118_infra_sgmii is
nuke : in std_logic;
soft_rst : in std_logic;

mac_addr : in std_logic_vector(47 downto 0); -- MAC address
ip_addr : in std_logic_vector(31 downto 0); -- IP address
mac_addr : in std_logic_vector(47 downto 0); -- MAC address
ip_addr : in std_logic_vector(31 downto 0); -- IP address
rarp_select : in std_logic; -- enable RARP
-- IPbus (from / to slaves)
ipb_in : in ipb_rbus;
ipb_out : out ipb_wbus
ipb_in : in ipb_rbus;
ipb_out : out ipb_wbus
);
end vcu118_infra_sgmii;

Expand Down Expand Up @@ -198,6 +199,7 @@ begin
ipb_in => ipb_in,
mac_addr => mac_addr,
ip_addr => ip_addr,
RARP_select => rarp_select,
pkt => pkt
);

Expand Down

0 comments on commit 45355d0

Please sign in to comment.