Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
NetworkInterface.c | HD | 06-Mar-2024 | 14.5 KiB | 424 | 255 | |
README.txt | HD | 06-Mar-2024 | 1.6 KiB | 43 | 27 | |
uncached_memory.c | HD | 06-Mar-2024 | 5 KiB | 167 | 78 | |
uncached_memory.h | HD | 06-Mar-2024 | 548 | 23 | 5 | |
x_emacpsif.h | HD | 06-Mar-2024 | 4.6 KiB | 150 | 81 | |
x_emacpsif_dma.c | HD | 06-Mar-2024 | 22.3 KiB | 668 | 415 | |
x_emacpsif_hw.c | HD | 06-Mar-2024 | 7.2 KiB | 259 | 177 | |
x_emacpsif_hw.h | HD | 06-Mar-2024 | 1.2 KiB | 40 | 12 | |
x_emacpsif_physpeed.c | HD | 06-Mar-2024 | 24.4 KiB | 666 | 508 | |
x_topology.h | HD | 06-Mar-2024 | 1.6 KiB | 51 | 25 |
README.txt
1 2 3NetworkInterface for Xilinx' Zynq 4 5Please include the following source files: 6 7 $(PLUS_TCP_PATH)/portable/NetworkInterface/Zynq/NetworkInterface.c 8 $(PLUS_TCP_PATH)/portable/NetworkInterface/Zynq/uncached_memory.c 9 $(PLUS_TCP_PATH)/portable/NetworkInterface/Zynq/x_emacpsif_dma.c 10 $(PLUS_TCP_PATH)/portable/NetworkInterface/Zynq/x_emacpsif_physpeed.c 11 $(PLUS_TCP_PATH)/portable/NetworkInterface/Zynq/x_emacpsif_hw.c 12 13The file uncached_memory.c can also be found in: 14 15 vendors\xilinx\boards\microzed\aws_demos\application_code\xilinx_code 16 vendors\xilinx\boards\microzed\aws_tests\application_code\xilinx_code 17 18And include the following source files from the Xilinx library: 19 20 $(CPU_PATH)/$(PROCESSOR)/libsrc/emacps_v2_0/src/xemacps.c 21 $(CPU_PATH)/$(PROCESSOR)/libsrc/emacps_v2_0/src/xemacps_control.c 22 $(CPU_PATH)/$(PROCESSOR)/libsrc/emacps_v2_0/src/xemacps_g.c 23 $(CPU_PATH)/$(PROCESSOR)/libsrc/emacps_v2_0/src/xemacps_intr.c 24 25 E.g. ps7_cortexa9_0/libsrc/emacps_v2_0/src/xemacps_intr.c 26 27The following source files are NOT used for the FreeRTOS+TCP interface: 28 29 $(CPU_PATH)/$(PROCESSOR)/libsrc/emacps_v2_0/src/xemacps_bdring.c 30 $(CPU_PATH)/$(PROCESSOR)/libsrc/emacps_v2_0/src/xemacps_hw.c 31 $(CPU_PATH)/$(PROCESSOR)/libsrc/emacps_v2_0/src/xemacps_sinit.c 32 33It is recommended to have these defined : 34 35#define ipconfigDRIVER_INCLUDED_RX_IP_CHECKSUM 1 36#define ipconfigDRIVER_INCLUDED_TX_IP_CHECKSUM 1 37#define ipconfigUSE_LINKED_RX_MESSAGES 1 38 39It is obligatory to define: 40 41#define ipconfigZERO_COPY_RX_DRIVER 1 42#define ipconfigZERO_COPY_TX_DRIVER 1 43