ARP过程只需要一次发送和一次接受就可以完成了;
在实际实现协议栈的时候我个人认为要以主动ARP开始;
主动ARP:发送一次ARP请求,接受一个ARP报文;
使用这种方式的原因是上位机可能不知道你的IP地址(当然如果使用的是开发好的上位机的话,被动ARP也是可以的,例如原子上位机);
这是我的实现方法,提供给大家参考:
主要过程是:一次主动ARP之后,进入NORMAL状态,当NORMAL状态下接收到ARP请求的时候,再发送ARP ACK;
always @(posedge sys_clk) beginif(sys_rst_n == 1'b0) beginstate <= state_idle;end else begincase (state)state_idle:beginstate <= state_arp_req;endstate_arp_req:beginif(r1_arp_rx_ack_vaild == 1'b0 && arp_rx_ack_vaild == 1'b1) beginstate <= state_normal;end else beginstate <= state_arp_req;endendstate_normal:beginif(arp_wait == 1'b1) beginstate <= state_arp_ack;end else if(hb_wait == 1'b1 && data_wait == 1'b0) beginstate <= state_hb;end else if(hb_wait == 1'b1 && data_wait == 1'b1) beginstate <= state_hb;end else if(hb_wait == 1'b0 && data_wait == 1'b1)beginstate <= state_tx_data;end else beginstate <= state_normal;endendstate_arp_ack:beginif(r1_slave_arp_tx_end == 1'b1 && slave_arp_tx_end == 1'b0) beginstate <= state_normal;end else beginstate <= state_arp_ack;endendstate_hb:beginif(r1_slave_hb_tx_end == 1'b0 && slave_hb_tx_end == 1'b1) beginstate <= state_normal;end else beginstate <= state_hb;endendstate_tx_data:beginif(r1_slave_data_tx_end == 1'b0 && slave_data_tx_end == 1'b1) beginstate <= state_normal;end else beginstate <= state_tx_data;endenddefault: beginstate <= state;endendcaseendend