1 |
2 |
robfinch |
// ============================================================================
|
2 |
|
|
// __
|
3 |
8 |
robfinch |
// \\__/ o\ (C) 2003-2022 Robert Finch, Waterloo
|
4 |
2 |
robfinch |
// \ __ / All rights reserved.
|
5 |
|
|
// \/_// robfinch@finitron.ca
|
6 |
|
|
// ||
|
7 |
|
|
//
|
8 |
|
|
//
|
9 |
8 |
robfinch |
// BSD 3-Clause License
|
10 |
|
|
// Redistribution and use in source and binary forms, with or without
|
11 |
|
|
// modification, are permitted provided that the following conditions are met:
|
12 |
2 |
robfinch |
//
|
13 |
8 |
robfinch |
// 1. Redistributions of source code must retain the above copyright notice, this
|
14 |
|
|
// list of conditions and the following disclaimer.
|
15 |
|
|
//
|
16 |
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
17 |
|
|
// this list of conditions and the following disclaimer in the documentation
|
18 |
|
|
// and/or other materials provided with the distribution.
|
19 |
|
|
//
|
20 |
|
|
// 3. Neither the name of the copyright holder nor the names of its
|
21 |
|
|
// contributors may be used to endorse or promote products derived from
|
22 |
|
|
// this software without specific prior written permission.
|
23 |
|
|
//
|
24 |
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
25 |
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
26 |
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
27 |
|
|
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
28 |
|
|
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
29 |
|
|
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
30 |
|
|
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
31 |
|
|
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
32 |
|
|
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
33 |
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
34 |
|
|
//
|
35 |
2 |
robfinch |
// ============================================================================
|
36 |
|
|
//
|
37 |
|
|
module uart6551Fifo(clk, rst, wr, rd, din, dout, ctr, full, empty);
|
38 |
|
|
parameter WID=8;
|
39 |
|
|
parameter DEP=16;
|
40 |
4 |
robfinch |
localparam pCtrBits = $clog2(DEP-1);
|
41 |
2 |
robfinch |
input clk;
|
42 |
|
|
input rst;
|
43 |
|
|
input wr;
|
44 |
|
|
input rd;
|
45 |
|
|
input [WID-1:0] din;
|
46 |
|
|
output [WID-1:0] dout;
|
47 |
4 |
robfinch |
output [pCtrBits-1:0] ctr;
|
48 |
|
|
reg [pCtrBits-1:0] ctr;
|
49 |
2 |
robfinch |
output full;
|
50 |
|
|
output empty;
|
51 |
|
|
|
52 |
|
|
assign full = ctr=={pCtrBits{1'b1}}-1;
|
53 |
|
|
assign empty = ctr=={pCtrBits{1'b1}};
|
54 |
|
|
wire rdok = rd & ~empty;
|
55 |
|
|
wire wrok = wr & ~full;
|
56 |
|
|
|
57 |
|
|
vtdl #(WID,DEP) u1 (.clk(clk), .ce(1'b1), .a(ctr), .d(din), .q(dout));
|
58 |
|
|
|
59 |
|
|
always @(posedge clk)
|
60 |
|
|
if (rst)
|
61 |
|
|
ctr <= {pCtrBits{1'b1}};
|
62 |
|
|
else
|
63 |
|
|
ctr <= ctr + {rdok&~wrok,rdok&~wrok,rdok&~wrok,rdok^wrok};
|
64 |
|
|
|
65 |
|
|
endmodule
|