diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-01-23 16:10:22 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-28 09:35:36 -0800 |
commit | bafa9d95453387814ef25e6b6256ba8db2df612f (patch) | |
tree | 39ba24b5b67072d354775272e687796bb511848d /fpga/usrp3/lib/zynq_fifo/zf_stream_to_host.v | |
parent | 3075b981503002df3115d5f1d0b97d2619ba30f2 (diff) | |
download | uhd-bafa9d95453387814ef25e6b6256ba8db2df612f.tar.gz uhd-bafa9d95453387814ef25e6b6256ba8db2df612f.tar.bz2 uhd-bafa9d95453387814ef25e6b6256ba8db2df612f.zip |
Merge FPGA repository back into UHD repository
The FPGA codebase was removed from the UHD repository in 2014 to reduce
the size of the repository. However, over the last half-decade, the
split between the repositories has proven more burdensome than it has
been helpful. By merging the FPGA code back, it will be possible to
create atomic commits that touch both FPGA and UHD codebases. Continuous
integration testing is also simplified by merging the repositories,
because it was previously difficult to automatically derive the correct
UHD branch when testing a feature branch on the FPGA repository.
This commit also updates the license files and paths therein.
We are therefore merging the repositories again. Future development for
FPGA code will happen in the same repository as the UHD host code and
MPM code.
== Original Codebase and Rebasing ==
The original FPGA repository will be hosted for the foreseeable future
at its original local location: https://github.com/EttusResearch/fpga/
It can be used for bisecting, reference, and a more detailed history.
The final commit from said repository to be merged here is
05003794e2da61cabf64dd278c45685a7abad7ec. This commit is tagged as
v4.0.0.0-pre-uhd-merge.
If you have changes in the FPGA repository that you want to rebase onto
the UHD repository, simply run the following commands:
- Create a directory to store patches (this should be an empty
directory):
mkdir ~/patches
- Now make sure that your FPGA codebase is based on the same state as
the code that was merged:
cd src/fpga # Or wherever your FPGA code is stored
git rebase v4.0.0.0-pre-uhd-merge
Note: The rebase command may look slightly different depending on what
exactly you're trying to rebase.
- Create a patch set for your changes versus v4.0.0.0-pre-uhd-merge:
git format-patch v4.0.0.0-pre-uhd-merge -o ~/patches
Note: Make sure that only patches are stored in your output directory.
It should otherwise be empty. Make sure that you picked the correct
range of commits, and only commits you wanted to rebase were exported
as patch files.
- Go to the UHD repository and apply the patches:
cd src/uhd # Or wherever your UHD repository is stored
git am --directory fpga ~/patches/*
rm -rf ~/patches # This is for cleanup
== Contributors ==
The following people have contributed mainly to these files (this list
is not complete):
Co-authored-by: Alex Williams <alex.williams@ni.com>
Co-authored-by: Andrej Rode <andrej.rode@ettus.com>
Co-authored-by: Ashish Chaudhari <ashish@ettus.com>
Co-authored-by: Ben Hilburn <ben.hilburn@ettus.com>
Co-authored-by: Ciro Nishiguchi <ciro.nishiguchi@ni.com>
Co-authored-by: Daniel Jepson <daniel.jepson@ni.com>
Co-authored-by: Derek Kozel <derek.kozel@ettus.com>
Co-authored-by: EJ Kreinar <ej@he360.com>
Co-authored-by: Humberto Jimenez <humberto.jimenez@ni.com>
Co-authored-by: Ian Buckley <ian.buckley@gmail.com>
Co-authored-by: Jörg Hofrichter <joerg.hofrichter@ni.com>
Co-authored-by: Jon Kiser <jon.kiser@ni.com>
Co-authored-by: Josh Blum <josh@joshknows.com>
Co-authored-by: Jonathon Pendlum <jonathan.pendlum@ettus.com>
Co-authored-by: Martin Braun <martin.braun@ettus.com>
Co-authored-by: Matt Ettus <matt@ettus.com>
Co-authored-by: Michael West <michael.west@ettus.com>
Co-authored-by: Moritz Fischer <moritz.fischer@ettus.com>
Co-authored-by: Nick Foster <nick@ettus.com>
Co-authored-by: Nicolas Cuervo <nicolas.cuervo@ettus.com>
Co-authored-by: Paul Butler <paul.butler@ni.com>
Co-authored-by: Paul David <paul.david@ettus.com>
Co-authored-by: Ryan Marlow <ryan.marlow@ettus.com>
Co-authored-by: Sugandha Gupta <sugandha.gupta@ettus.com>
Co-authored-by: Sylvain Munaut <tnt@246tNt.com>
Co-authored-by: Trung Tran <trung.tran@ettus.com>
Co-authored-by: Vidush Vishwanath <vidush.vishwanath@ettus.com>
Co-authored-by: Wade Fife <wade.fife@ettus.com>
Diffstat (limited to 'fpga/usrp3/lib/zynq_fifo/zf_stream_to_host.v')
-rw-r--r-- | fpga/usrp3/lib/zynq_fifo/zf_stream_to_host.v | 154 |
1 files changed, 154 insertions, 0 deletions
diff --git a/fpga/usrp3/lib/zynq_fifo/zf_stream_to_host.v b/fpga/usrp3/lib/zynq_fifo/zf_stream_to_host.v new file mode 100644 index 000000000..b85b56ab8 --- /dev/null +++ b/fpga/usrp3/lib/zynq_fifo/zf_stream_to_host.v @@ -0,0 +1,154 @@ +////////////////////////////////////////////////////////////////////////////////// +// +// Copyright Ettus Research LLC +// Copyright 2014 Ettus Research, a National Instruments Company +// +// SPDX-License-Identifier: LGPL-3.0-or-later +// +// The ZYNQ FIFO - read FIFO and write to DDR: +// - implements write state machine for AXI master on DDR +// - provides input fifos from external fabric +////////////////////////////////////////////////////////////////////////////////// + + +//This implementation takes many states to do individual +//64 bit xfers from FIFO to the AXI write master. +//TODO: use axi 4/full with busts, +//in this case we should be able to directly connect the fifo +//to the write lines with much less state machinery. + +module zf_stream_to_host +#( + parameter PROT = 3'b010, //data, non-secure, unpriv + parameter STRB = 4'b1111 //write all bytes +) +( + input clk, + input rst, + input enb, + + //------------------------------------------------------------------ + //-- DDR write signals - master + //------------------------------------------------------------------ + output [31:0] AXI_AWADDR, + output [2:0] AXI_AWPROT, + output AXI_AWVALID, + input AXI_AWREADY, + output [63:0] AXI_WDATA, + output [3:0] AXI_WSTRB, + output AXI_WVALID, + input AXI_WREADY, + input [1:0] AXI_BRESP, + input AXI_BVALID, + output AXI_BREADY, + + //------------------------------------------------------------------ + // FIFO streaming interfaces + //------------------------------------------------------------------ + input [63:0] i_tdata, + input i_tlast, + input i_tvalid, + output i_tready, + + //------------------------------------------------------------------ + // configuration interface + //------------------------------------------------------------------ + input [31:0] mem_addr, + input mem_valid, + output mem_ack, + + output [31:0] debug +); + +//////////////////////////////////////////////////////////////////////// +///////////////////////////// Begin R T L ////////////////////////////// +//////////////////////////////////////////////////////////////////////// + + localparam STATE_WAIT_MEM = 0; + localparam STATE_READ_LINE = 1; + localparam STATE_WRITE_ADDR = 2; + localparam STATE_WRITE_DATA = 3; + localparam STATE_WRITE_B = 4; + localparam STATE_DONE = 5; + + reg [31:0] base_addr; + reg [63:0] line; + reg last; + + reg [2:0] state; + always @(posedge clk) begin + if (rst) begin + state <= STATE_WAIT_MEM; + base_addr <= 0; + line <= 0; + last <= 0; + end + else if (enb) case (state) + STATE_WAIT_MEM: begin + if (mem_valid) begin + state <= STATE_READ_LINE; + end + base_addr <= mem_addr; + end + + STATE_READ_LINE: begin + if (i_tvalid && i_tready) begin + line <= i_tdata; + last <= i_tlast; + state <= STATE_WRITE_ADDR; + end + end + + STATE_WRITE_ADDR: begin + if (AXI_AWVALID && AXI_AWREADY) begin + state <= STATE_WRITE_DATA; + end + end + + STATE_WRITE_DATA: begin + if (AXI_WVALID && AXI_WREADY) begin + state <= STATE_WRITE_B; + end + end + + STATE_WRITE_B: begin + if (AXI_BREADY && AXI_BVALID) begin//FIXME, slave may not assert valid + if (last) state <= STATE_DONE; + else state <= STATE_READ_LINE; + base_addr <= base_addr + 32'h8; + end + end + + STATE_DONE: begin + state <= STATE_WAIT_MEM; + end + + default: state <= STATE_WAIT_MEM; + + endcase //state + end + + assign i_tready = (state == STATE_READ_LINE); + assign mem_ack = (state == STATE_DONE); + + //assign to master write + assign AXI_AWVALID = (state == STATE_WRITE_ADDR); + assign AXI_WVALID = (state == STATE_WRITE_DATA); + assign AXI_AWADDR = base_addr; + assign AXI_WDATA = {line[31:0], line[63:32]}; + + assign AXI_WSTRB = STRB; + assign AXI_AWPROT = PROT; + assign AXI_BREADY = (state == STATE_WRITE_B); + + assign debug[2:0] = state; + assign debug[4] = mem_valid; + assign debug[5] = mem_ack; + assign debug[6] = AXI_AWVALID; + assign debug[7] = AXI_AWREADY; + assign debug[8] = AXI_WVALID; + assign debug[9] = AXI_WREADY; + assign debug[10] = AXI_BVALID; + assign debug[11] = AXI_BREADY; + +endmodule //zf_stream_to_host |