mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-09 08:58:40 -08:00
98 lines
1.7 KiB
Systemverilog
98 lines
1.7 KiB
Systemverilog
// SPDX-License-Identifier: CERN-OHL-S-2.0
|
|
/*
|
|
|
|
Copyright (c) 2014-2025 FPGA Ninja, LLC
|
|
|
|
Authors:
|
|
- Alex Forencich
|
|
|
|
*/
|
|
|
|
`resetall
|
|
`timescale 1ns / 1ps
|
|
`default_nettype none
|
|
|
|
/*
|
|
* AXI4-Stream UART (TX)
|
|
*/
|
|
module taxi_uart_tx
|
|
(
|
|
input wire logic clk,
|
|
input wire logic rst,
|
|
|
|
/*
|
|
* AXI4-Stream input (sink)
|
|
*/
|
|
taxi_axis_if.snk s_axis_tx,
|
|
|
|
/*
|
|
* UART interface
|
|
*/
|
|
output wire logic txd,
|
|
|
|
/*
|
|
* Status
|
|
*/
|
|
output wire logic busy,
|
|
|
|
/*
|
|
* Baud rate pulse in
|
|
*/
|
|
input wire logic baud_clk
|
|
);
|
|
|
|
localparam DATA_W = s_axis_tx.DATA_W;
|
|
|
|
logic s_axis_tready_reg = 1'b0;
|
|
|
|
logic txd_reg = 1'b1;
|
|
|
|
logic busy_reg = 1'b0;
|
|
|
|
logic [DATA_W:0] data_reg = 0;
|
|
logic [2:0] baud_cnt_reg = 0;
|
|
logic [3:0] bit_cnt_reg = 0;
|
|
|
|
assign s_axis_tx.tready = s_axis_tready_reg;
|
|
|
|
assign txd = txd_reg;
|
|
|
|
assign busy = busy_reg;
|
|
|
|
always_ff @(posedge clk) begin
|
|
s_axis_tready_reg <= 1'b0;
|
|
|
|
if (!baud_clk) begin
|
|
// wait
|
|
end else if (baud_cnt_reg != 0) begin
|
|
baud_cnt_reg <= baud_cnt_reg - 1;
|
|
end else if (bit_cnt_reg == 0) begin
|
|
busy_reg <= 1'b0;
|
|
|
|
if (s_axis_tx.tvalid) begin
|
|
s_axis_tready_reg <= 1'b1;
|
|
baud_cnt_reg <= '1;
|
|
bit_cnt_reg <= DATA_W+1;
|
|
data_reg <= {1'b1, s_axis_tx.tdata};
|
|
txd_reg <= 1'b0;
|
|
busy_reg <= 1'b1;
|
|
end
|
|
end else begin
|
|
{data_reg, txd_reg} <= {1'b0, data_reg};
|
|
baud_cnt_reg <= '1;
|
|
bit_cnt_reg <= bit_cnt_reg - 1;
|
|
end
|
|
|
|
if (rst) begin
|
|
s_axis_tready_reg <= 1'b0;
|
|
txd_reg <= 1'b1;
|
|
baud_cnt_reg <= 0;
|
|
bit_cnt_reg <= 0;
|
|
busy_reg <= 1'b0;
|
|
end
|
|
end
|
|
|
|
endmodule
|
|
|
|
`resetall
|