1 | ############################################################### |
---|
2 | # Copyright (c) 2004 Xilinx, Inc. All Rights Reserved. |
---|
3 | # You may copy and modify these files for your own internal use solely with |
---|
4 | # Xilinx programmable logic devices and Xilinx EDK system or create IP |
---|
5 | # modules solely for Xilinx programmable logic devices and Xilinx EDK system. |
---|
6 | # No rights are granted to distribute any files unless they are distributed in |
---|
7 | # Xilinx programmable logic devices. |
---|
8 | ############################################################### |
---|
9 | |
---|
10 | OPTION psf_version = 2.1.0 ; |
---|
11 | |
---|
12 | BEGIN LIBRARY WARP_ip_udp |
---|
13 | |
---|
14 | OPTION copyfiles = all; |
---|
15 | OPTION desc = "WARP UDP/IP Library"; |
---|
16 | |
---|
17 | PARAM name = ETH_A_uses_library, type = int, default = 0, desc = "WARPLab ETH A uses UDP transport driver (1 = yes, 0 = no)"; |
---|
18 | PARAM name = ETH_B_uses_library, type = int, default = 1, desc = "WARPLab ETH B uses UDP transport driver (1 = yes, 0 = no, ignored if only one Ethernet inf in design)"; |
---|
19 | |
---|
20 | PARAM name = eth_buffer_size, type = int, default = 9014, range = (none, 0, 1514, 4096, 9014), desc = "Ethernet Buffer size"; |
---|
21 | PARAM name = num_rx_buffers, type = int, default = 3, desc = "Number of Ethernet receive buffers (per instance)"; |
---|
22 | PARAM name = num_tx_buffers, type = int, default = 2, desc = "Number of Ethernet transmit buffers (global pool)"; |
---|
23 | PARAM name = num_tx_descriptors, type = int, default = 10, desc = "Number of DMA transmit descriptors (per instance)"; |
---|
24 | |
---|
25 | PARAM name = num_arp_entries, type = int, default = 10, desc = "Number of ARP table entries (global pool)"; |
---|
26 | PARAM name = num_udp_sockets, type = int, default = 5, desc = "Number of UDP sockets (global pool)"; |
---|
27 | |
---|
28 | PARAM name = eth_default_speed, type = int, default = 1000, range = (100, 1000), desc = "Default Ethernet speed (in Mbps)"; |
---|
29 | |
---|
30 | END LIBRARY |
---|
31 | |
---|