diff options
author | Wade Fife <wade.fife@ettus.com> | 2020-06-08 16:22:29 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-06-29 13:41:15 -0500 |
commit | 38caced6946243f0390c541df54160c45e4959cc (patch) | |
tree | 1215c33a22d622fe8c36e8823ad2b71af4e0ea6f /host | |
parent | 5244c06ae71589a08f337371d91798a6ac3d292b (diff) | |
download | uhd-38caced6946243f0390c541df54160c45e4959cc.tar.gz uhd-38caced6946243f0390c541df54160c45e4959cc.tar.bz2 uhd-38caced6946243f0390c541df54160c45e4959cc.zip |
fpga: rfnoc: Add RFNoC Window block
Diffstat (limited to 'host')
-rw-r--r-- | host/include/uhd/rfnoc/blocks/window.yml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/host/include/uhd/rfnoc/blocks/window.yml b/host/include/uhd/rfnoc/blocks/window.yml new file mode 100644 index 000000000..f696c4da3 --- /dev/null +++ b/host/include/uhd/rfnoc/blocks/window.yml @@ -0,0 +1,56 @@ +schema: rfnoc_modtool_args +module_name: window +version: 1.0 +rfnoc_version: 1.0 +chdr_width: 64 +noc_id: 0xD0530000 +makefile_srcs: "${fpga_lib_dir}/blocks/rfnoc_block_window/Makefile.srcs" + +parameters: + NUM_PORTS: 1 + MAX_WINDOW_SIZE: 4096 # In samples, ideally a power of two + +clocks: + - name: rfnoc_chdr + freq: "[]" + - name: rfnoc_ctrl + freq: "[]" + - name: ce + freq: "[]" + +control: + sw_iface: nocscript + fpga_iface: ctrlport + interface_direction: slave + fifo_depth: 32 + clk_domain: ce + ctrlport: + byte_mode: False + timed: False + has_status: False + +data: + fpga_iface: axis_pyld_ctxt + clk_domain: ce + inputs: + in: + num_ports: NUM_PORTS + item_width: 32 + nipc: 1 + context_fifo_depth: 2 + payload_fifo_depth: 32 + format: sc16 + mdata_sig: ~ + outputs: + out: + num_ports: NUM_PORTS + item_width: 32 + nipc: 1 + context_fifo_depth: 2 + payload_fifo_depth: 32 + format: sc16 + mdata_sig: ~ + +registers: + +properties: |