Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VC118 - Adding missing rarp_select signal #200

Merged
merged 1 commit into from
Sep 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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