]> git.zerfleddert.de Git - raggedstone/blame - ethernet/source/ethernet/eth_shiftreg.v
+= use xilinx block ram for ethernet
[raggedstone] / ethernet / source / ethernet / eth_shiftreg.v
CommitLineData
40a1f26c 1//////////////////////////////////////////////////////////////////////
2//// ////
3//// eth_shiftreg.v ////
4//// ////
5//// This file is part of the Ethernet IP core project ////
6//// http://www.opencores.org/projects/ethmac/ ////
7//// ////
8//// Author(s): ////
9//// - Igor Mohor (igorM@opencores.org) ////
10//// ////
11//// All additional information is avaliable in the Readme.txt ////
12//// file. ////
13//// ////
14//////////////////////////////////////////////////////////////////////
15//// ////
16//// Copyright (C) 2001 Authors ////
17//// ////
18//// This source file may be used and distributed without ////
19//// restriction provided that this copyright statement is not ////
20//// removed from the file and that any derivative work contains ////
21//// the original copyright notice and the associated disclaimer. ////
22//// ////
23//// This source file is free software; you can redistribute it ////
24//// and/or modify it under the terms of the GNU Lesser General ////
25//// Public License as published by the Free Software Foundation; ////
26//// either version 2.1 of the License, or (at your option) any ////
27//// later version. ////
28//// ////
29//// This source is distributed in the hope that it will be ////
30//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
31//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
32//// PURPOSE. See the GNU Lesser General Public License for more ////
33//// details. ////
34//// ////
35//// You should have received a copy of the GNU Lesser General ////
36//// Public License along with this source; if not, download it ////
37//// from http://www.opencores.org/lgpl.shtml ////
38//// ////
39//////////////////////////////////////////////////////////////////////
40//
41// CVS Revision History
42//
43// $Log: eth_shiftreg.v,v $
44// Revision 1.1 2007-03-20 17:50:56 sithglan
45// add shit
46//
47// Revision 1.6 2005/03/08 14:45:09 igorm
48// Case statement improved for synthesys.
49//
50// Revision 1.5 2002/08/14 18:16:59 mohor
51// LinkFail signal was not latching appropriate bit.
52//
53// Revision 1.4 2002/03/02 21:06:01 mohor
54// LinkFail signal was not latching appropriate bit.
55//
56// Revision 1.3 2002/01/23 10:28:16 mohor
57// Link in the header changed.
58//
59// Revision 1.2 2001/10/19 08:43:51 mohor
60// eth_timescale.v changed to timescale.v This is done because of the
61// simulation of the few cores in a one joined project.
62//
63// Revision 1.1 2001/08/06 14:44:29 mohor
64// A define FPGA added to select between Artisan RAM (for ASIC) and Block Ram (For Virtex).
65// Include files fixed to contain no path.
66// File names and module names changed ta have a eth_ prologue in the name.
67// File eth_timescale.v is used to define timescale
68// All pin names on the top module are changed to contain _I, _O or _OE at the end.
69// Bidirectional signal MDIO is changed to three signals (Mdc_O, Mdi_I, Mdo_O
70// and Mdo_OE. The bidirectional signal must be created on the top level. This
71// is done due to the ASIC tools.
72//
73// Revision 1.1 2001/07/30 21:23:42 mohor
74// Directory structure changed. Files checked and joind together.
75//
76// Revision 1.3 2001/06/01 22:28:56 mohor
77// This files (MIIM) are fully working. They were thoroughly tested. The testbench is not updated.
78//
79//
80
81`include "timescale.v"
82
83
84module eth_shiftreg(Clk, Reset, MdcEn_n, Mdi, Fiad, Rgad, CtrlData, WriteOp, ByteSelect,
85 LatchByte, ShiftedBit, Prsd, LinkFail);
86
87
88parameter Tp=1;
89
90input Clk; // Input clock (Host clock)
91input Reset; // Reset signal
92input MdcEn_n; // Enable signal is asserted for one Clk period before Mdc falls.
93input Mdi; // MII input data
94input [4:0] Fiad; // PHY address
95input [4:0] Rgad; // Register address (within the selected PHY)
96input [15:0]CtrlData; // Control data (data to be written to the PHY)
97input WriteOp; // The current operation is a PHY register write operation
98input [3:0] ByteSelect; // Byte select
99input [1:0] LatchByte; // Byte select for latching (read operation)
100
101output ShiftedBit; // Bit shifted out of the shift register
102output[15:0]Prsd; // Read Status Data (data read from the PHY)
103output LinkFail; // Link Integrity Signal
104
105reg [7:0] ShiftReg; // Shift register for shifting the data in and out
106reg [15:0]Prsd;
107reg LinkFail;
108
109
110
111
112// ShiftReg[7:0] :: Shift Register Data
113always @ (posedge Clk or posedge Reset)
114begin
115 if(Reset)
116 begin
117 ShiftReg[7:0] <= #Tp 8'h0;
118 Prsd[15:0] <= #Tp 16'h0;
119 LinkFail <= #Tp 1'b0;
120 end
121 else
122 begin
123 if(MdcEn_n)
124 begin
125 if(|ByteSelect)
126 begin
127 case (ByteSelect[3:0]) // synopsys parallel_case full_case
128 4'h1 : ShiftReg[7:0] <= #Tp {2'b01, ~WriteOp, WriteOp, Fiad[4:1]};
129 4'h2 : ShiftReg[7:0] <= #Tp {Fiad[0], Rgad[4:0], 2'b10};
130 4'h4 : ShiftReg[7:0] <= #Tp CtrlData[15:8];
131 4'h8 : ShiftReg[7:0] <= #Tp CtrlData[7:0];
132 endcase
133 end
134 else
135 begin
136 ShiftReg[7:0] <= #Tp {ShiftReg[6:0], Mdi};
137 if(LatchByte[0])
138 begin
139 Prsd[7:0] <= #Tp {ShiftReg[6:0], Mdi};
140 if(Rgad == 5'h01)
141 LinkFail <= #Tp ~ShiftReg[1]; // this is bit [2], because it is not shifted yet
142 end
143 else
144 begin
145 if(LatchByte[1])
146 Prsd[15:8] <= #Tp {ShiftReg[6:0], Mdi};
147 end
148 end
149 end
150 end
151end
152
153
154assign ShiftedBit = ShiftReg[7];
155
156
157endmodule
Impressum, Datenschutz