]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/lwipopts.h
Remove some of the lwip asserts to allow use with 64-bit alignment.
[freertos] / FreeRTOS / Demo / CORTEX_A9_Zynq_ZC702 / RTOSDemo / src / lwipopts.h
1 /*
2  * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
3  * All rights reserved. 
4  * 
5  * Redistribution and use in source and binary forms, with or without modification, 
6  * are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice,
9  *    this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission. 
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
19  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
21  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
25  * OF SUCH DAMAGE.
26  *
27  * This file is part of the lwIP TCP/IP stack.
28  * 
29  * Author: Adam Dunkels <adam@sics.se>
30  *
31  */
32 #ifndef __LWIPOPTS_H__
33 #define __LWIPOPTS_H__
34
35 #include <limits.h>
36
37 /* Functions used to obtain and release exclusive access to the Tx buffer.  The
38 Get function will block if the Tx buffer is not available - use with care! */
39 signed char *pcLwipBlockingGetTxBuffer( void );
40 void vLwipAppsReleaseTxBuffer( void );
41
42 #define CONFIG_LINKSPEED_AUTODETECT 1
43 #define OS_IS_FREERTOS
44
45 /* SSI options. */
46 #define TCPIP_THREAD_NAME              "tcpip"
47 #define LWIP_HTTPD_MAX_TAG_NAME_LEN 20
48 #define LWIP_HTTPD_MAX_TAG_INSERT_LEN 1024
49 #define TCPIP_THREAD_PRIO configLWIP_TASK_PRIORITY
50 #define TCPIP_THREAD_STACKSIZE configMINIMAL_STACK_SIZE * 3
51
52 #define DEFAULT_TCP_RECVMBOX_SIZE 5
53 #define DEFAULT_ACCEPTMBOX_SIZE 5
54 #define TCPIP_MBOX_SIZE                                 10
55
56 #define NO_SYS                                                  0
57 #define LWIP_SOCKET                                             (NO_SYS==0)
58 #define LWIP_NETCONN                            1
59
60 #define LWIP_SNMP                                               0
61 #define LWIP_IGMP                                               0
62 #define LWIP_ICMP                                               1
63
64 /* DNS is not going to be used as this is a simple local example. */
65 #define LWIP_DNS                                                0
66
67 #define LWIP_HAVE_LOOPIF                                0
68 #define TCP_LISTEN_BACKLOG                              0
69 #define LWIP_SO_RCVTIMEO                                1
70 #define LWIP_SO_RCVBUF                                  1
71
72 #ifdef LWIP_DEBUG
73
74 #define LWIP_DBG_MIN_LEVEL         0
75 #define PPP_DEBUG                  LWIP_DBG_ON
76 #define MEM_DEBUG                  LWIP_DBG_ON
77 #define MEMP_DEBUG                 LWIP_DBG_ON
78 #define PBUF_DEBUG                 LWIP_DBG_ON
79 #define API_LIB_DEBUG              LWIP_DBG_ON
80 #define API_MSG_DEBUG              LWIP_DBG_ON
81 #define TCPIP_DEBUG                LWIP_DBG_ON
82 #define NETIF_DEBUG                LWIP_DBG_ON
83 #define SOCKETS_DEBUG              LWIP_DBG_ON
84 #define DNS_DEBUG                  LWIP_DBG_ON
85 #define AUTOIP_DEBUG               LWIP_DBG_ON
86 #define DHCP_DEBUG                 LWIP_DBG_ON
87 #define IP_DEBUG                   LWIP_DBG_ON
88 #define IP_REASS_DEBUG             LWIP_DBG_ON
89 #define ICMP_DEBUG                 LWIP_DBG_ON
90 #define IGMP_DEBUG                 LWIP_DBG_ON
91 #define UDP_DEBUG                  LWIP_DBG_ON
92 #define TCP_DEBUG                  LWIP_DBG_ON
93 #define TCP_INPUT_DEBUG            LWIP_DBG_ON
94 #define TCP_OUTPUT_DEBUG           LWIP_DBG_ON
95 #define TCP_RTO_DEBUG              LWIP_DBG_ON
96 #define TCP_CWND_DEBUG             LWIP_DBG_ON
97 #define TCP_WND_DEBUG              LWIP_DBG_ON
98 #define TCP_FR_DEBUG               LWIP_DBG_ON
99 #define TCP_QLEN_DEBUG             LWIP_DBG_ON
100 #define TCP_RST_DEBUG              LWIP_DBG_ON
101 #endif
102
103 #define LWIP_DBG_TYPES_ON         (LWIP_DBG_ON|LWIP_DBG_TRACE|LWIP_DBG_STATE|LWIP_DBG_FRESH|LWIP_DBG_HALT)
104
105
106
107 /* ---------- Memory options ---------- */
108 /* MEM_ALIGNMENT: should be set to the alignment of the CPU for which
109    lwIP is compiled. 4 byte alignment -> define MEM_ALIGNMENT to 4, 2
110    byte alignment -> define MEM_ALIGNMENT to 2. */
111 /* MSVC port: intel processors don't need 4-byte alignment,
112    but are faster that way! */
113 #define MEM_ALIGNMENT                   64
114
115 /* MEM_SIZE: the size of the heap memory. If the application will send
116 a lot of data that needs to be copied, this should be set high. */
117 #define MEM_SIZE                                0x20000
118
119 /* MEMP_NUM_PBUF: the number of memp struct pbufs. If the application
120    sends a lot of data out of ROM (or other static memory), this
121    should be set high. */
122 #define MEMP_NUM_PBUF                   16
123
124 /* MEMP_NUM_RAW_PCB: the number of UDP protocol control blocks. One
125    per active RAW "connection". */
126 #define LWIP_RAW                                0
127 #define MEMP_NUM_RAW_PCB                0
128
129 /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
130    per active UDP "connection". */
131 #define MEMP_NUM_UDP_PCB                4
132
133 /* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP
134    connections. */
135 #define MEMP_NUM_TCP_PCB                32
136
137 /* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP
138    connections. */
139 #define MEMP_NUM_TCP_PCB_LISTEN 8
140
141 /* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP
142    segments. */
143 #define MEMP_NUM_TCP_SEG                256
144
145 /* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active
146    timeouts. */
147 #define MEMP_NUM_SYS_TIMEOUT    8
148
149 /* The following four are used only with the sequential API and can be
150    set to 0 if the application only will use the raw API. */
151 /* MEMP_NUM_NETBUF: the number of struct netbufs. */
152 #define MEMP_NUM_NETBUF         0
153
154 /* MEMP_NUM_NETCONN: the number of struct netconns. */
155 #define MEMP_NUM_NETCONN        10
156
157 /* MEMP_NUM_TCPIP_MSG_*: the number of struct tcpip_msg, which is used
158    for sequential API communication and incoming packets. Used in
159    src/api/tcpip.c. */
160 #define MEMP_NUM_TCPIP_MSG_API   4
161 #define MEMP_NUM_TCPIP_MSG_INPKT 4
162
163 #define MEMP_NUM_ARP_QUEUE              5
164
165 /* ---------- Pbuf options ---------- */
166 /* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */
167 #define PBUF_POOL_SIZE                  256
168
169 /* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. */
170 #define PBUF_POOL_BUFSIZE               1700
171
172 /* PBUF_LINK_HLEN: the number of bytes that should be allocated for a
173    link level header. */
174 #define PBUF_LINK_HLEN                  16
175
176 /** SYS_LIGHTWEIGHT_PROT
177  * define SYS_LIGHTWEIGHT_PROT in lwipopts.h if you want inter-task protection
178  * for certain critical regions during buffer allocation, deallocation and memory
179  * allocation and deallocation.
180  */
181 #define SYS_LIGHTWEIGHT_PROT    (NO_SYS==0)
182
183
184 /* ---------- TCP options ---------- */
185 #define LWIP_TCP                                1
186 #define TCP_TTL                                 255
187
188 /* Controls if TCP should queue segments that arrive out of
189    order. Define to 0 if your device is low on memory. */
190 #define TCP_QUEUE_OOSEQ                 1
191
192 /* TCP Maximum segment size. */
193 #define TCP_MSS                                 1460
194
195 /* TCP sender buffer space (bytes). */
196 #define TCP_SND_BUF                             8129
197
198 /* TCP sender buffer space (pbufs). This must be at least = 2 *
199    TCP_SND_BUF/TCP_MSS for things to work. */
200 #define TCP_SND_QUEUELEN                (16 * TCP_SND_BUF/TCP_MSS)
201
202 /* TCP writable space (bytes). This must be less than or equal
203    to TCP_SND_BUF. It is the amount of space which must be
204    available in the tcp snd_buf for select to return writable */
205 #define TCP_SNDLOWAT                    (TCP_SND_BUF/2)
206
207 /* TCP receive window. */
208 #define TCP_WND                                 ( 2048 )
209
210 /* Maximum number of retransmissions of data segments. */
211 #define TCP_MAXRTX                              12
212
213 /* Maximum number of retransmissions of SYN segments. */
214 #define TCP_SYNMAXRTX                   4
215
216
217 /* ---------- ARP options ---------- */
218 #define LWIP_ARP                                1
219 #define ARP_TABLE_SIZE                  10
220 #define ARP_QUEUEING                    1
221
222 #define ICMP_TTL 255
223
224 #define IP_OPTIONS 0
225
226 /* ---------- IP options ---------- */
227 /* Define IP_FORWARD to 1 if you wish to have the ability to forward
228    IP packets across network interfaces. If you are going to run lwIP
229    on a device with only one network interface, define this to 0. */
230 #define IP_FORWARD                              0
231
232 /* IP reassembly and segmentation.These are orthogonal even
233  * if they both deal with IP fragments */
234 #define IP_REASSEMBLY                   0
235 #define IP_REASS_MAX_PBUFS              10
236 #define MEMP_NUM_REASSDATA              10
237 #define IP_FRAG                                 0
238
239
240 /* ---------- ICMP options ---------- */
241 #define ICMP_TTL                                255
242
243
244 /* ---------- DHCP options ---------- */
245 /* Define LWIP_DHCP to 1 if you want DHCP configuration of
246    interfaces. */
247 #define LWIP_DHCP                               0
248
249 /* 1 if you want to do an ARP check on the offered address
250    (recommended). */
251 #define DHCP_DOES_ARP_CHECK             (LWIP_DHCP)
252
253
254 /* ---------- AUTOIP options ------- */
255 #define LWIP_AUTOIP                             0
256 #define LWIP_DHCP_AUTOIP_COOP   (LWIP_DHCP && LWIP_AUTOIP)
257
258
259 /* ---------- UDP options ---------- */
260 #define LWIP_UDP                                1
261 #define LWIP_UDPLITE                    1
262 #define UDP_TTL                                 255
263
264
265 /* ---------- Statistics options ---------- */
266
267 #define LWIP_STATS                              1
268 #define LWIP_STATS_DISPLAY              0
269
270 #if LWIP_STATS
271         #define LINK_STATS                              1
272         #define IP_STATS                                1
273         #define ICMP_STATS                              0
274         #define IGMP_STATS                              0
275         #define IPFRAG_STATS                    0
276         #define UDP_STATS                               1
277         #define TCP_STATS                               1
278         #define MEM_STATS                               1
279         #define MEMP_STATS                              1
280         #define PBUF_STATS                              1
281         #define SYS_STATS                               1
282 #endif /* LWIP_STATS */
283
284
285 /* ---------- PPP options ---------- */
286
287 #define PPP_SUPPORT                      0        /* Set > 0 for PPP */
288
289 #if PPP_SUPPORT
290
291         #define NUM_PPP                                 1         /* Max PPP sessions. */
292
293         /* Select modules to enable.  Ideally these would be set in the makefile but
294          * we're limited by the command line length so you need to modify the settings
295          * in this file.
296          */
297         #define PPPOE_SUPPORT                   1
298         #define PPPOS_SUPPORT                   1
299         #define PAP_SUPPORT                             1         /* Set > 0 for PAP. */
300         #define CHAP_SUPPORT                    1         /* Set > 0 for CHAP. */
301         #define MSCHAP_SUPPORT                  0         /* Set > 0 for MSCHAP (NOT FUNCTIONAL!) */
302         #define CBCP_SUPPORT                    0         /* Set > 0 for CBCP (NOT FUNCTIONAL!) */
303         #define CCP_SUPPORT                             0         /* Set > 0 for CCP (NOT FUNCTIONAL!) */
304         #define VJ_SUPPORT                              1         /* Set > 0 for VJ header compression. */
305         #define MD5_SUPPORT                             1         /* Set > 0 for MD5 (see also CHAP) */
306
307 #endif /* PPP_SUPPORT */
308
309 #endif /* __LWIPOPTS_H__ */