├── .gitignore ├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md ├── Software ├── .gitignore ├── Makefile ├── README.md ├── User │ ├── cmac_statistics │ │ ├── cmac_statistics.c │ │ └── cmac_statistics.h │ ├── common │ │ ├── common_functions.c │ │ └── common_functions.h │ ├── iperf2 │ │ ├── iperf2.c │ │ └── iperf2.h │ ├── performance_debug │ │ ├── performance_debug.c │ │ └── performance_debug.h │ └── toe_statistics │ │ ├── toe_statistics.c │ │ └── toe_statistics.h ├── download_driver.sh └── load_driver.sh ├── images ├── arping.png ├── cmacStats.jpg ├── echo.gif ├── iperfClient.png ├── iperfServer.png ├── ping.png └── vioLink.jpg ├── scripts ├── alveou200-fns-single-toe-iperf │ ├── block_design.tcl │ └── specific_details.tcl ├── alveou280-fns-single-toe-iperf │ ├── block_design.tcl │ └── specific_details.tcl ├── common_scripts │ ├── backup_block_design.tcl │ ├── common_paths.tcl │ ├── create_project.tcl │ └── implement_project.tcl ├── vcu118-fns-single-toe-echo │ ├── block_design.tcl │ └── specific_details.tcl └── vcu118-fns-single-toe-iperf │ ├── block_design.tcl │ └── specific_details.tcl ├── src ├── constraints │ ├── alveou200_pinout.xdc │ ├── alveou200_timing.xdc │ ├── alveou280_pinout.xdc │ ├── alveou280_timing.xdc │ ├── vcu118_pinout.xdc │ └── vcu118_timing.xdc ├── rtl │ ├── 6to3_reducer.vhd │ ├── axi4stream_constant.v │ ├── axi4stream_sinker.v │ ├── bandwith_reg.v │ ├── counter_64_7_v3.vhd │ ├── performance_debug_reg.v │ └── qsfp28_cage_control.v └── wrapper │ ├── alveou200_fns_doubleIF_toe_wrapper.v │ ├── alveou200_fns_single_toe_wrapper.v │ ├── alveou280_fns_single_toe_wrapper.v │ └── vcu118_fns_single_toe_wrapper.v └── submodules ├── Makefile ├── cmac ├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── constraints │ ├── alveo_u280_qsfp0.xdc │ ├── alveo_u280_qsfp1.xdc │ ├── alveou200_qsfp0.xdc │ ├── alveou200_qsfp1.xdc │ ├── cmac_synq_false_path.xdc │ ├── vcu118_qsfp0.xdc │ └── vcu118_qsfp1.xdc ├── patch_cmac_files.sh ├── res │ └── connections.png ├── scripts │ ├── cmac_sync.tcl │ ├── cmac_uplus_wrapper.tcl │ └── xilinx_ips │ │ ├── axi_fifo.tcl │ │ ├── cmac_uplus.tcl │ │ ├── fifo_cdc.tcl │ │ └── lbus_fifo.tcl └── src │ ├── cmac │ ├── cmac_axi2lbus.sv │ ├── cmac_connector.sv │ ├── cmac_connector_wrapper.sv │ ├── cmac_lbus2axi.v │ ├── cmac_lbus_aligned_2_axi.sv │ ├── cmac_lbus_aligner.sv │ └── cmac_uplus_wrapper.sv │ ├── cmac_sync │ ├── cmac_0_axi4_lite_user_if.v │ ├── cmac_sync.sv │ ├── cmac_sync_wrapper.sv │ ├── rx_sync.v │ └── tx_sync.v │ └── common │ ├── cmac_0_cdc.v │ └── types.svh └── cuckooCam ├── .gitattributes ├── .gitignore ├── cuckoo_cam.dcp └── cuckoo_cam.xdc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/README.md -------------------------------------------------------------------------------- /Software/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | Xilinx_DMA_Driver/ -------------------------------------------------------------------------------- /Software/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/Makefile -------------------------------------------------------------------------------- /Software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/README.md -------------------------------------------------------------------------------- /Software/User/cmac_statistics/cmac_statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/cmac_statistics/cmac_statistics.c -------------------------------------------------------------------------------- /Software/User/cmac_statistics/cmac_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/cmac_statistics/cmac_statistics.h -------------------------------------------------------------------------------- /Software/User/common/common_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/common/common_functions.c -------------------------------------------------------------------------------- /Software/User/common/common_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/common/common_functions.h -------------------------------------------------------------------------------- /Software/User/iperf2/iperf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/iperf2/iperf2.c -------------------------------------------------------------------------------- /Software/User/iperf2/iperf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/iperf2/iperf2.h -------------------------------------------------------------------------------- /Software/User/performance_debug/performance_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/performance_debug/performance_debug.c -------------------------------------------------------------------------------- /Software/User/performance_debug/performance_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/performance_debug/performance_debug.h -------------------------------------------------------------------------------- /Software/User/toe_statistics/toe_statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/toe_statistics/toe_statistics.c -------------------------------------------------------------------------------- /Software/User/toe_statistics/toe_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/User/toe_statistics/toe_statistics.h -------------------------------------------------------------------------------- /Software/download_driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/download_driver.sh -------------------------------------------------------------------------------- /Software/load_driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/Software/load_driver.sh -------------------------------------------------------------------------------- /images/arping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/images/arping.png -------------------------------------------------------------------------------- /images/cmacStats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/images/cmacStats.jpg -------------------------------------------------------------------------------- /images/echo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/images/echo.gif -------------------------------------------------------------------------------- /images/iperfClient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/images/iperfClient.png -------------------------------------------------------------------------------- /images/iperfServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/images/iperfServer.png -------------------------------------------------------------------------------- /images/ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/images/ping.png -------------------------------------------------------------------------------- /images/vioLink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/images/vioLink.jpg -------------------------------------------------------------------------------- /scripts/alveou200-fns-single-toe-iperf/block_design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/alveou200-fns-single-toe-iperf/block_design.tcl -------------------------------------------------------------------------------- /scripts/alveou200-fns-single-toe-iperf/specific_details.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/alveou200-fns-single-toe-iperf/specific_details.tcl -------------------------------------------------------------------------------- /scripts/alveou280-fns-single-toe-iperf/block_design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/alveou280-fns-single-toe-iperf/block_design.tcl -------------------------------------------------------------------------------- /scripts/alveou280-fns-single-toe-iperf/specific_details.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/alveou280-fns-single-toe-iperf/specific_details.tcl -------------------------------------------------------------------------------- /scripts/common_scripts/backup_block_design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/common_scripts/backup_block_design.tcl -------------------------------------------------------------------------------- /scripts/common_scripts/common_paths.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/common_scripts/common_paths.tcl -------------------------------------------------------------------------------- /scripts/common_scripts/create_project.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/common_scripts/create_project.tcl -------------------------------------------------------------------------------- /scripts/common_scripts/implement_project.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/common_scripts/implement_project.tcl -------------------------------------------------------------------------------- /scripts/vcu118-fns-single-toe-echo/block_design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/vcu118-fns-single-toe-echo/block_design.tcl -------------------------------------------------------------------------------- /scripts/vcu118-fns-single-toe-echo/specific_details.tcl: -------------------------------------------------------------------------------- 1 | ../vcu118-fns-single-toe-iperf/specific_details.tcl -------------------------------------------------------------------------------- /scripts/vcu118-fns-single-toe-iperf/block_design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/vcu118-fns-single-toe-iperf/block_design.tcl -------------------------------------------------------------------------------- /scripts/vcu118-fns-single-toe-iperf/specific_details.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/scripts/vcu118-fns-single-toe-iperf/specific_details.tcl -------------------------------------------------------------------------------- /src/constraints/alveou200_pinout.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/constraints/alveou200_pinout.xdc -------------------------------------------------------------------------------- /src/constraints/alveou200_timing.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/constraints/alveou200_timing.xdc -------------------------------------------------------------------------------- /src/constraints/alveou280_pinout.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/constraints/alveou280_pinout.xdc -------------------------------------------------------------------------------- /src/constraints/alveou280_timing.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/constraints/alveou280_timing.xdc -------------------------------------------------------------------------------- /src/constraints/vcu118_pinout.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/constraints/vcu118_pinout.xdc -------------------------------------------------------------------------------- /src/constraints/vcu118_timing.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/constraints/vcu118_timing.xdc -------------------------------------------------------------------------------- /src/rtl/6to3_reducer.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/rtl/6to3_reducer.vhd -------------------------------------------------------------------------------- /src/rtl/axi4stream_constant.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/rtl/axi4stream_constant.v -------------------------------------------------------------------------------- /src/rtl/axi4stream_sinker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/rtl/axi4stream_sinker.v -------------------------------------------------------------------------------- /src/rtl/bandwith_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/rtl/bandwith_reg.v -------------------------------------------------------------------------------- /src/rtl/counter_64_7_v3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/rtl/counter_64_7_v3.vhd -------------------------------------------------------------------------------- /src/rtl/performance_debug_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/rtl/performance_debug_reg.v -------------------------------------------------------------------------------- /src/rtl/qsfp28_cage_control.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/rtl/qsfp28_cage_control.v -------------------------------------------------------------------------------- /src/wrapper/alveou200_fns_doubleIF_toe_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/wrapper/alveou200_fns_doubleIF_toe_wrapper.v -------------------------------------------------------------------------------- /src/wrapper/alveou200_fns_single_toe_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/wrapper/alveou200_fns_single_toe_wrapper.v -------------------------------------------------------------------------------- /src/wrapper/alveou280_fns_single_toe_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/wrapper/alveou280_fns_single_toe_wrapper.v -------------------------------------------------------------------------------- /src/wrapper/vcu118_fns_single_toe_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/src/wrapper/vcu118_fns_single_toe_wrapper.v -------------------------------------------------------------------------------- /submodules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/Makefile -------------------------------------------------------------------------------- /submodules/cmac/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/.gitignore -------------------------------------------------------------------------------- /submodules/cmac/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/LICENSE.md -------------------------------------------------------------------------------- /submodules/cmac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/Makefile -------------------------------------------------------------------------------- /submodules/cmac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/README.md -------------------------------------------------------------------------------- /submodules/cmac/constraints/alveo_u280_qsfp0.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/constraints/alveo_u280_qsfp0.xdc -------------------------------------------------------------------------------- /submodules/cmac/constraints/alveo_u280_qsfp1.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/constraints/alveo_u280_qsfp1.xdc -------------------------------------------------------------------------------- /submodules/cmac/constraints/alveou200_qsfp0.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/constraints/alveou200_qsfp0.xdc -------------------------------------------------------------------------------- /submodules/cmac/constraints/alveou200_qsfp1.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/constraints/alveou200_qsfp1.xdc -------------------------------------------------------------------------------- /submodules/cmac/constraints/cmac_synq_false_path.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/constraints/cmac_synq_false_path.xdc -------------------------------------------------------------------------------- /submodules/cmac/constraints/vcu118_qsfp0.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/constraints/vcu118_qsfp0.xdc -------------------------------------------------------------------------------- /submodules/cmac/constraints/vcu118_qsfp1.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/constraints/vcu118_qsfp1.xdc -------------------------------------------------------------------------------- /submodules/cmac/patch_cmac_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/patch_cmac_files.sh -------------------------------------------------------------------------------- /submodules/cmac/res/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/res/connections.png -------------------------------------------------------------------------------- /submodules/cmac/scripts/cmac_sync.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/scripts/cmac_sync.tcl -------------------------------------------------------------------------------- /submodules/cmac/scripts/cmac_uplus_wrapper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/scripts/cmac_uplus_wrapper.tcl -------------------------------------------------------------------------------- /submodules/cmac/scripts/xilinx_ips/axi_fifo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/scripts/xilinx_ips/axi_fifo.tcl -------------------------------------------------------------------------------- /submodules/cmac/scripts/xilinx_ips/cmac_uplus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/scripts/xilinx_ips/cmac_uplus.tcl -------------------------------------------------------------------------------- /submodules/cmac/scripts/xilinx_ips/fifo_cdc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/scripts/xilinx_ips/fifo_cdc.tcl -------------------------------------------------------------------------------- /submodules/cmac/scripts/xilinx_ips/lbus_fifo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/scripts/xilinx_ips/lbus_fifo.tcl -------------------------------------------------------------------------------- /submodules/cmac/src/cmac/cmac_axi2lbus.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac/cmac_axi2lbus.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac/cmac_connector.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac/cmac_connector.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac/cmac_connector_wrapper.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac/cmac_connector_wrapper.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac/cmac_lbus2axi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac/cmac_lbus2axi.v -------------------------------------------------------------------------------- /submodules/cmac/src/cmac/cmac_lbus_aligned_2_axi.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac/cmac_lbus_aligned_2_axi.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac/cmac_lbus_aligner.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac/cmac_lbus_aligner.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac/cmac_uplus_wrapper.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac/cmac_uplus_wrapper.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac_sync/cmac_0_axi4_lite_user_if.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac_sync/cmac_0_axi4_lite_user_if.v -------------------------------------------------------------------------------- /submodules/cmac/src/cmac_sync/cmac_sync.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac_sync/cmac_sync.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac_sync/cmac_sync_wrapper.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac_sync/cmac_sync_wrapper.sv -------------------------------------------------------------------------------- /submodules/cmac/src/cmac_sync/rx_sync.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac_sync/rx_sync.v -------------------------------------------------------------------------------- /submodules/cmac/src/cmac_sync/tx_sync.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/cmac_sync/tx_sync.v -------------------------------------------------------------------------------- /submodules/cmac/src/common/cmac_0_cdc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/common/cmac_0_cdc.v -------------------------------------------------------------------------------- /submodules/cmac/src/common/types.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cmac/src/common/types.svh -------------------------------------------------------------------------------- /submodules/cuckooCam/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cuckooCam/.gitattributes -------------------------------------------------------------------------------- /submodules/cuckooCam/.gitignore: -------------------------------------------------------------------------------- 1 | ip/ -------------------------------------------------------------------------------- /submodules/cuckooCam/cuckoo_cam.dcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cuckooCam/cuckoo_cam.dcp -------------------------------------------------------------------------------- /submodules/cuckooCam/cuckoo_cam.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcn-uam/Limago/HEAD/submodules/cuckooCam/cuckoo_cam.xdc --------------------------------------------------------------------------------