2021-08-12 21:07:47 +02:00
|
|
|
module cpu_usb (
|
2021-08-15 21:49:02 +02:00
|
|
|
if_system system_if,
|
|
|
|
if_cpu_bus bus,
|
2021-08-12 21:07:47 +02:00
|
|
|
|
|
|
|
output usb_clk,
|
|
|
|
output usb_cs,
|
|
|
|
input usb_miso,
|
|
|
|
inout [3:0] usb_miosi
|
|
|
|
);
|
|
|
|
|
2021-08-15 21:49:02 +02:00
|
|
|
reg rx_flush;
|
|
|
|
wire rx_empty;
|
|
|
|
reg rx_read;
|
|
|
|
wire [7:0] rx_rdata;
|
2021-08-12 21:07:47 +02:00
|
|
|
|
2021-08-15 21:49:02 +02:00
|
|
|
reg tx_flush;
|
|
|
|
wire tx_full;
|
|
|
|
reg tx_write;
|
|
|
|
reg [7:0] tx_wdata;
|
2021-08-12 21:07:47 +02:00
|
|
|
|
|
|
|
always_comb begin
|
2021-08-15 21:49:02 +02:00
|
|
|
bus.rdata = 32'd0;
|
|
|
|
if (bus.ack) begin
|
|
|
|
case (bus.address[2:2])
|
|
|
|
0: bus.rdata = {30'd0, ~tx_full, ~rx_empty};
|
|
|
|
1: bus.rdata = {24'd0, rx_rdata};
|
|
|
|
default: bus.rdata = 32'd0;
|
|
|
|
endcase
|
|
|
|
end
|
2021-08-12 21:07:47 +02:00
|
|
|
end
|
|
|
|
|
2021-08-15 21:49:02 +02:00
|
|
|
always_ff @(posedge bus.clk) begin
|
|
|
|
rx_flush <= 1'b0;
|
|
|
|
rx_read <= 1'b0;
|
2021-08-12 21:07:47 +02:00
|
|
|
|
2021-08-15 21:49:02 +02:00
|
|
|
tx_flush <= 1'b0;
|
|
|
|
tx_write <= 1'b0;
|
2021-08-12 21:07:47 +02:00
|
|
|
|
2021-08-15 21:49:02 +02:00
|
|
|
bus.ack <= 1'b0;
|
|
|
|
if (bus.request) begin
|
|
|
|
bus.ack <= 1'b1;
|
2021-08-12 21:07:47 +02:00
|
|
|
end
|
|
|
|
|
2021-08-15 21:49:02 +02:00
|
|
|
if (bus.request) begin
|
|
|
|
case (bus.address[2:2])
|
|
|
|
2'd0: if (bus.wmask[0]) begin
|
|
|
|
{tx_flush, rx_flush} <= bus.wdata[3:2];
|
|
|
|
end
|
|
|
|
|
|
|
|
2'd1: if (bus.wmask[0]) begin
|
|
|
|
if (!tx_full) begin
|
|
|
|
tx_write <= 1'b1;
|
|
|
|
tx_wdata <= bus.wdata[7:0];
|
|
|
|
end
|
|
|
|
end else begin
|
|
|
|
rx_read <= 1'b1;
|
|
|
|
end
|
|
|
|
endcase
|
2021-08-12 21:07:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
usb_ft1248 usb_ft1248_inst (
|
|
|
|
.system_if(system_if),
|
|
|
|
|
|
|
|
.usb_clk(usb_clk),
|
|
|
|
.usb_cs(usb_cs),
|
|
|
|
.usb_miso(usb_miso),
|
|
|
|
.usb_miosi(usb_miosi),
|
|
|
|
|
2021-08-15 21:49:02 +02:00
|
|
|
.rx_flush(rx_flush),
|
|
|
|
.rx_empty(rx_empty),
|
|
|
|
.rx_read(rx_read),
|
|
|
|
.rx_rdata(rx_rdata),
|
|
|
|
|
|
|
|
.tx_flush(tx_flush),
|
|
|
|
.tx_full(tx_full),
|
|
|
|
.tx_write(tx_write),
|
|
|
|
.tx_wdata(tx_wdata)
|
2021-08-12 21:07:47 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
endmodule
|