1 `define ADDR_ETH_STATUS 16'hFF68
2 `define ADDR_ETH 16'hFF69
20 reg [10:0] addrcnt = 0;
27 assign data = (addrlatch == `ADDR_ETH_STATUS && rdlatch) ? {state,5'b0,busy} : 8'bzzzzzzzz;
43 .wr(wr && state == 2'b10 && addr == `ADDR_ETH),
49 always @ (posedge clk) begin
52 if(wr && addr == `ADDR_ETH) begin
55 len[10:8] <= data[2:0];
59 len[7:0] <= data[7:0];
63 if(addrcnt == len) begin
68 addrcnt <= addrcnt + 1;
70 end else if (state == 2'b11) begin
85 output reg [7:0] rdata
88 reg [7:0] mem [1600:0];
90 always @ (posedge clk) begin
95 always @(posedge ethclk)
99 module EnetTX(input clk20, output reg Ethernet_TDp, output reg Ethernet_TDm, output wire busy, input start, input [11:0] length, output wire [11:0] rdaddress, input [7:0] indata);
100 reg StartSending; always @(posedge clk20) StartSending<=start;
101 reg [11:0] curlen = 0; always @(posedge clk20) if (start) curlen <= length + 8;
103 reg [11:0] internaladdr;
104 assign rdaddress = internaladdr - 8;
105 wire [7:0] pkt_data = (internaladdr < 7) ? 8'h55 :
106 (internaladdr == 7) ? 8'hD5 :
109 //////////////////////////////////////////////////////////////////////
110 // and finally the 10BASE-T's magic
111 reg [3:0] ShiftCount;
113 always @(posedge clk20) if(StartSending) SendingPacket<=1; else if(ShiftCount==14 && internaladdr==(curlen + 4)) SendingPacket<=0;
114 always @(posedge clk20) ShiftCount <= SendingPacket ? ShiftCount+1 : 15;
115 wire readram = (ShiftCount==15);
116 always @(posedge clk20) if(ShiftCount==15) internaladdr <= SendingPacket ? internaladdr+1 : 0;
117 reg [7:0] ShiftData; always @(posedge clk20) if(ShiftCount[0]) ShiftData <= readram ? pkt_data : {1'b0, ShiftData[7:1]};
119 // generate the CRC32
121 reg CRCflush; always @(posedge clk20) if(CRCflush) CRCflush <= SendingPacket; else if(readram) CRCflush <= (internaladdr==curlen);
122 reg CRCinit; always @(posedge clk20) if(readram) CRCinit <= (internaladdr==7);
123 wire CRCinput = CRCflush ? 0 : (ShiftData[0] ^ CRC[31]);
124 always @(posedge clk20) if(ShiftCount[0]) CRC <= CRCinit ? ~0 : ({CRC[30:0],1'b0} ^ ({32{CRCinput}} & 32'h04C11DB7));
127 reg [17:0] LinkPulseCount; always @(posedge clk20) LinkPulseCount <= SendingPacket ? 0 : LinkPulseCount+1;
128 reg LinkPulse; always @(posedge clk20) LinkPulse <= &LinkPulseCount[17:1];
130 // TP_IDL, shift-register and manchester encoder
131 reg SendingPacketData; always @(posedge clk20) SendingPacketData <= SendingPacket;
132 assign busy = SendingPacketData;
133 reg [2:0] idlecount; always @(posedge clk20) if(SendingPacketData) idlecount<=0; else if(~&idlecount) idlecount<=idlecount+1;
134 wire dataout = CRCflush ? ~CRC[31] : ShiftData[0];
135 reg qo; always @(posedge clk20) qo <= SendingPacketData ? ~dataout^ShiftCount[0] : 1;
136 reg qoe; always @(posedge clk20) qoe <= SendingPacketData | LinkPulse | (idlecount<6);
137 always @(posedge clk20) Ethernet_TDp <= (qoe ? qo : 1'b0);
138 always @(posedge clk20) Ethernet_TDm <= (qoe ? ~qo : 1'b0);
143 input manchester_data_in,
145 output reg [10:0] oaddr,
146 output wire [7:0] odata,
148 output reg [10:0] olength,
152 always @(posedge rxclk) in_data <= {in_data[1:0], manchester_data_in};
157 always @(posedge rxclk) if(|cnt || (in_data[2] ^ in_data[1])) cnt<=cnt+1;
160 always @(posedge rxclk) new_bit_avail <= (cnt==3);
161 always @(posedge rxclk) if(cnt==3) data<={in_data[1],data[7:1]};
163 /////////////////////////////////////////////////
164 reg end_of_Ethernet_frame;
167 always @(posedge rxclk)
168 if(end_of_Ethernet_frame)
170 else if(new_bit_avail) begin
171 if(!(data==8'h55 || data==8'hAA)) // not preamble?
174 if(~&sync1) // if all bits of this "sync1" counter are one, we decide that enough of the preamble
175 // has been received, so stop counting and wait for "sync2" to detect the SFD
176 sync1 <= sync1 + 1; // otherwise keep counting
180 always @(posedge rxclk)
181 if(end_of_Ethernet_frame || !pktrdy)
184 if(new_bit_avail) begin
185 if(|sync2) // if the SFD has already been detected (Ethernet data is coming in)
186 sync2 <= sync2 + 1; // then count the bits coming in
187 else if(&sync1 && data==8'hD5) // otherwise, let's wait for the SFD (0xD5)
191 wire new_byte_available = new_bit_avail && (sync2[2:0]==3'h0) && (sync2[9:3]!=0);
193 /////////////////////////////////////////////////
194 // if no clock transistion is detected for some time, that's the end of the Ethernet frame
196 reg [2:0] transition_timeout;
197 always @(posedge rxclk) if(in_data[2]^in_data[1]) transition_timeout<=0; else if(~&cnt) transition_timeout<=transition_timeout+1;
198 always @(posedge rxclk) end_of_Ethernet_frame <= &transition_timeout;
200 /////////////////////////////////////////////////
201 always @(posedge rxclk)
202 if (new_byte_available && !pktrdy) begin
206 end else if (end_of_Ethernet_frame) begin
211 end else if (pktclear) begin