1 /*
2  * Copyright (c) 2001-2004 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 __LWIP_ARCH_H__
33 #define __LWIP_ARCH_H__
34 
35 
36 #if LK
37 /* LK's endian.h provides this */
38 #include <endian.h>
39 #else
40 #ifndef LITTLE_ENDIAN
41 #define LITTLE_ENDIAN 1234
42 #endif
43 
44 #ifndef BIG_ENDIAN
45 #define BIG_ENDIAN 4321
46 #endif
47 #endif
48 
49 #include "arch/cc.h"
50 
51 /** Temporary: define format string for size_t if not defined in cc.h */
52 #ifndef SZT_F
53 #define SZT_F U32_F
54 #endif /* SZT_F */
55 /** Temporary upgrade helper: define format string for u8_t as hex if not
56     defined in cc.h */
57 #ifndef X8_F
58 #define X8_F  "02x"
59 #endif /* X8_F */
60 
61 #ifdef __cplusplus
62 extern "C" {
63 #endif
64 
65 #ifndef PACK_STRUCT_BEGIN
66 #define PACK_STRUCT_BEGIN
67 #endif /* PACK_STRUCT_BEGIN */
68 
69 #ifndef PACK_STRUCT_END
70 #define PACK_STRUCT_END
71 #endif /* PACK_STRUCT_END */
72 
73 #ifndef PACK_STRUCT_FIELD
74 #define PACK_STRUCT_FIELD(x) x
75 #endif /* PACK_STRUCT_FIELD */
76 
77 
78 #ifndef LWIP_UNUSED_ARG
79 #define LWIP_UNUSED_ARG(x) (void)x
80 #endif /* LWIP_UNUSED_ARG */
81 
82 
83 #ifdef LWIP_PROVIDE_ERRNO
84 
85 #define  EPERM         1  /* Operation not permitted */
86 #define  ENOENT        2  /* No such file or directory */
87 #define  ESRCH         3  /* No such process */
88 #define  EINTR         4  /* Interrupted system call */
89 #define  EIO           5  /* I/O error */
90 #define  ENXIO         6  /* No such device or address */
91 #define  E2BIG         7  /* Arg list too long */
92 #define  ENOEXEC       8  /* Exec format error */
93 #define  EBADF         9  /* Bad file number */
94 #define  ECHILD       10  /* No child processes */
95 #define  EAGAIN       11  /* Try again */
96 #define  ENOMEM       12  /* Out of memory */
97 #define  EACCES       13  /* Permission denied */
98 #define  EFAULT       14  /* Bad address */
99 #define  ENOTBLK      15  /* Block device required */
100 #define  EBUSY        16  /* Device or resource busy */
101 #define  EEXIST       17  /* File exists */
102 #define  EXDEV        18  /* Cross-device link */
103 #define  ENODEV       19  /* No such device */
104 #define  ENOTDIR      20  /* Not a directory */
105 #define  EISDIR       21  /* Is a directory */
106 #define  EINVAL       22  /* Invalid argument */
107 #define  ENFILE       23  /* File table overflow */
108 #define  EMFILE       24  /* Too many open files */
109 #define  ENOTTY       25  /* Not a typewriter */
110 #define  ETXTBSY      26  /* Text file busy */
111 #define  EFBIG        27  /* File too large */
112 #define  ENOSPC       28  /* No space left on device */
113 #define  ESPIPE       29  /* Illegal seek */
114 #define  EROFS        30  /* Read-only file system */
115 #define  EMLINK       31  /* Too many links */
116 #define  EPIPE        32  /* Broken pipe */
117 #define  EDOM         33  /* Math argument out of domain of func */
118 #define  ERANGE       34  /* Math result not representable */
119 #define  EDEADLK      35  /* Resource deadlock would occur */
120 #define  ENAMETOOLONG 36  /* File name too long */
121 #define  ENOLCK       37  /* No record locks available */
122 #define  ENOSYS       38  /* Function not implemented */
123 #define  ENOTEMPTY    39  /* Directory not empty */
124 #define  ELOOP        40  /* Too many symbolic links encountered */
125 #define  EWOULDBLOCK  EAGAIN  /* Operation would block */
126 #define  ENOMSG       42  /* No message of desired type */
127 #define  EIDRM        43  /* Identifier removed */
128 #define  ECHRNG       44  /* Channel number out of range */
129 #define  EL2NSYNC     45  /* Level 2 not synchronized */
130 #define  EL3HLT       46  /* Level 3 halted */
131 #define  EL3RST       47  /* Level 3 reset */
132 #define  ELNRNG       48  /* Link number out of range */
133 #define  EUNATCH      49  /* Protocol driver not attached */
134 #define  ENOCSI       50  /* No CSI structure available */
135 #define  EL2HLT       51  /* Level 2 halted */
136 #define  EBADE        52  /* Invalid exchange */
137 #define  EBADR        53  /* Invalid request descriptor */
138 #define  EXFULL       54  /* Exchange full */
139 #define  ENOANO       55  /* No anode */
140 #define  EBADRQC      56  /* Invalid request code */
141 #define  EBADSLT      57  /* Invalid slot */
142 
143 #define  EDEADLOCK    EDEADLK
144 
145 #define  EBFONT       59  /* Bad font file format */
146 #define  ENOSTR       60  /* Device not a stream */
147 #define  ENODATA      61  /* No data available */
148 #define  ETIME        62  /* Timer expired */
149 #define  ENOSR        63  /* Out of streams resources */
150 #define  ENONET       64  /* Machine is not on the network */
151 #define  ENOPKG       65  /* Package not installed */
152 #define  EREMOTE      66  /* Object is remote */
153 #define  ENOLINK      67  /* Link has been severed */
154 #define  EADV         68  /* Advertise error */
155 #define  ESRMNT       69  /* Srmount error */
156 #define  ECOMM        70  /* Communication error on send */
157 #define  EPROTO       71  /* Protocol error */
158 #define  EMULTIHOP    72  /* Multihop attempted */
159 #define  EDOTDOT      73  /* RFS specific error */
160 #define  EBADMSG      74  /* Not a data message */
161 #define  EOVERFLOW    75  /* Value too large for defined data type */
162 #define  ENOTUNIQ     76  /* Name not unique on network */
163 #define  EBADFD       77  /* File descriptor in bad state */
164 #define  EREMCHG      78  /* Remote address changed */
165 #define  ELIBACC      79  /* Can not access a needed shared library */
166 #define  ELIBBAD      80  /* Accessing a corrupted shared library */
167 #define  ELIBSCN      81  /* .lib section in a.out corrupted */
168 #define  ELIBMAX      82  /* Attempting to link in too many shared libraries */
169 #define  ELIBEXEC     83  /* Cannot exec a shared library directly */
170 #define  EILSEQ       84  /* Illegal byte sequence */
171 #define  ERESTART     85  /* Interrupted system call should be restarted */
172 #define  ESTRPIPE     86  /* Streams pipe error */
173 #define  EUSERS       87  /* Too many users */
174 #define  ENOTSOCK     88  /* Socket operation on non-socket */
175 #define  EDESTADDRREQ 89  /* Destination address required */
176 #define  EMSGSIZE     90  /* Message too long */
177 #define  EPROTOTYPE   91  /* Protocol wrong type for socket */
178 #define  ENOPROTOOPT  92  /* Protocol not available */
179 #define  EPROTONOSUPPORT 93  /* Protocol not supported */
180 #define  ESOCKTNOSUPPORT 94  /* Socket type not supported */
181 #define  EOPNOTSUPP      95  /* Operation not supported on transport endpoint */
182 #define  EPFNOSUPPORT    96  /* Protocol family not supported */
183 #define  EAFNOSUPPORT    97  /* Address family not supported by protocol */
184 #define  EADDRINUSE      98  /* Address already in use */
185 #define  EADDRNOTAVAIL   99  /* Cannot assign requested address */
186 #define  ENETDOWN       100  /* Network is down */
187 #define  ENETUNREACH    101  /* Network is unreachable */
188 #define  ENETRESET      102  /* Network dropped connection because of reset */
189 #define  ECONNABORTED   103  /* Software caused connection abort */
190 #define  ECONNRESET     104  /* Connection reset by peer */
191 #define  ENOBUFS        105  /* No buffer space available */
192 #define  EISCONN        106  /* Transport endpoint is already connected */
193 #define  ENOTCONN       107  /* Transport endpoint is not connected */
194 #define  ESHUTDOWN      108  /* Cannot send after transport endpoint shutdown */
195 #define  ETOOMANYREFS   109  /* Too many references: cannot splice */
196 #define  ETIMEDOUT      110  /* Connection timed out */
197 #define  ECONNREFUSED   111  /* Connection refused */
198 #define  EHOSTDOWN      112  /* Host is down */
199 #define  EHOSTUNREACH   113  /* No route to host */
200 #define  EALREADY       114  /* Operation already in progress */
201 #define  EINPROGRESS    115  /* Operation now in progress */
202 #define  ESTALE         116  /* Stale NFS file handle */
203 #define  EUCLEAN        117  /* Structure needs cleaning */
204 #define  ENOTNAM        118  /* Not a XENIX named type file */
205 #define  ENAVAIL        119  /* No XENIX semaphores available */
206 #define  EISNAM         120  /* Is a named type file */
207 #define  EREMOTEIO      121  /* Remote I/O error */
208 #define  EDQUOT         122  /* Quota exceeded */
209 
210 #define  ENOMEDIUM      123  /* No medium found */
211 #define  EMEDIUMTYPE    124  /* Wrong medium type */
212 
213 #ifndef errno
214 extern int errno;
215 #endif
216 
217 #endif /* LWIP_PROVIDE_ERRNO */
218 
219 #ifdef __cplusplus
220 }
221 #endif
222 
223 #endif /* __LWIP_ARCH_H__ */
224