-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuart_tx.sv
executable file
·196 lines (186 loc) · 7.74 KB
/
uart_tx.sv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
//=============================================================================
// basic_uart_tmct: UART Transmitter
//-----------------------------------------------------------------------------
// uart_tx.sv
// UART Transmitter part of basic uart
//-----------------------------------------------------------------------------
// © 2022 tmct-web https://ss1.xrea.com/tmct.s1009.xrea.com/
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation and/or
// other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of
// its contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//=============================================================================
module uart_tx
(
input logic i_clk, // System clock input
input logic i_reset, // System reset input(high active)
input logic i_txclken, // Transmit timing signal input (same as baud rate interval)
input logic i_txrun, // Transmission trigger input(high active)
input logic [7:0] i_txdata, // Transmission data input
output logic o_tx, // TX output
output logic o_txdone // Transmission completion output(high active)
);
logic [3:0] currentState;
logic [3:0] nextState;
//-------------------------------------------------------------------------
// State machine: State transition synchronization
//-------------------------------------------------------------------------
always_ff @(posedge i_clk, posedge i_reset, negedge i_txrun)
begin
if (i_reset)
begin
currentState <= 4'd0;
end
else if (!i_txrun)
begin
currentState <= 4'd0;
end
else
begin
if (i_txclken) currentState <= nextState;
end
end
//-------------------------------------------------------------------------
// State machine: State transition table
//-------------------------------------------------------------------------
always_comb
begin
if (currentState == 4'd0)
begin
// Idle -----------------------------------------------------------
if (i_txrun) nextState = 4'd1; else nextState = 4'd0;
end
else if (currentState == 4'd1)
begin
// Start bit ------------------------------------------------------
nextState = 4'd2;
end
else if (currentState == 4'd2)
begin
// Bit0 -----------------------------------------------------------
nextState = 4'd3;
end
else if (currentState == 4'd3)
begin
// Bit1 -----------------------------------------------------------
nextState = 4'd4;
end
else if (currentState == 4'd4)
begin
// Bit2 -----------------------------------------------------------
nextState = 4'd5;
end
else if (currentState == 4'd5)
begin
// Bit3 -----------------------------------------------------------
nextState = 4'd6;
end
else if (currentState == 4'd6)
begin
// Bit4 -----------------------------------------------------------
nextState = 4'd7;
end
else if (currentState == 4'd7)
begin
// Bit5 -----------------------------------------------------------
nextState = 4'd8;
end
else if (currentState == 4'd8)
begin
// Bit6 -----------------------------------------------------------
nextState = 4'd9;
end
else if (currentState == 4'd9)
begin
// Bit7 -----------------------------------------------------------
nextState = 4'd10;
end
else if (currentState == 4'd10)
begin
// Stop bit -------------------------------------------------------
nextState = 4'd11;
end
else if (currentState == 4'd11)
begin
// Done -----------------------------------------------------------
nextState = 4'd11;
end
else
begin
// Unknown state --------------------------------------------------
nextState = 4'd0;
end
end
//-------------------------------------------------------------------------
// State machine: Output signal table
//-------------------------------------------------------------------------
always_ff @ (posedge i_clk, posedge i_reset, negedge i_txrun)
begin
if (i_reset)
begin
//-----------------------------------------------------------------
// Asynchronous reset
//-----------------------------------------------------------------
o_tx <= 1'b1;
o_txdone <= 1'b0;
end
else if (!i_txrun)
begin
//-----------------------------------------------------------------
// Transmitter clear
//-----------------------------------------------------------------
o_tx <= 1'b1;
o_txdone <= 1'b0;
end
else
begin
//-----------------------------------------------------------------
// Operational state
//-----------------------------------------------------------------
if (i_txclken)
begin
if (currentState == 4'd0)
begin
o_tx <= 1'b1;
o_txdone <= 1'b0;
end
else if (currentState == 4'd1) o_tx <= 1'b0;
else if (currentState == 4'd2) o_tx <= i_txdata[0];
else if (currentState == 4'd3) o_tx <= i_txdata[1];
else if (currentState == 4'd4) o_tx <= i_txdata[2];
else if (currentState == 4'd5) o_tx <= i_txdata[3];
else if (currentState == 4'd6) o_tx <= i_txdata[4];
else if (currentState == 4'd7) o_tx <= i_txdata[5];
else if (currentState == 4'd8) o_tx <= i_txdata[6];
else if (currentState == 4'd9) o_tx <= i_txdata[7];
else if (currentState == 4'd10) o_tx <= 1'b1;
else if (currentState == 4'd11)
begin
o_tx <= 1'b1;
o_txdone <= 1'b1;
end
end
end
end
endmodule