yaffs: Remove a whole lot of function wrappers and forward declarations
[yaffs2.git] / yportenv_multi.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2010 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License version 2.1 as
11  * published by the Free Software Foundation.
12  *
13  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
14  */
15
16 #ifndef __YPORTENV_H__
17 #define __YPORTENV_H__
18
19 /*
20  * Define the MTD version in terms of Linux Kernel versions
21  * This allows yaffs to be used independantly of the kernel
22  * as well as with it.
23  */
24
25 #define MTD_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
26
27 #if defined CONFIG_YAFFS_WINCE
28
29 #include "ywinceenv.h"
30
31 #elif defined __KERNEL__
32
33 #include "moduleconfig.h"
34
35 /* Linux kernel */
36
37 #include <linux/version.h>
38 #define MTD_VERSION_CODE LINUX_VERSION_CODE
39
40 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19))
41 #include <linux/config.h>
42 #endif
43 #include <linux/version.h>
44 #include <linux/kernel.h>
45 #include <linux/mm.h>
46 #include <linux/sched.h>
47 #include <linux/string.h>
48 #include <linux/slab.h>
49 #include <linux/vmalloc.h>
50 #include <linux/xattr.h>
51 #include <linux/list.h>
52 #include <linux/types.h>
53 #include <linux/fs.h>
54 #include <linux/stat.h>
55 #include <linux/sort.h>
56 #include <linux/bitops.h>
57
58 #define YCHAR char
59 #define YUCHAR unsigned char
60 #define _Y(x)     x
61
62 #define Y_INLINE __inline__
63
64 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
65 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
66
67
68 #define YAFFS_ROOT_MODE                 0755
69 #define YAFFS_LOSTNFOUND_MODE           0700
70
71 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
72 #define Y_CURRENT_TIME CURRENT_TIME.tv_sec
73 #define Y_TIME_CONVERT(x) (x).tv_sec
74 #else
75 #define Y_CURRENT_TIME CURRENT_TIME
76 #define Y_TIME_CONVERT(x) (x)
77 #endif
78
79 #define yaffs_sum_cmp(x, y) ((x) == (y))
80 #define strcmp(a, b) strcmp(a, b)
81
82 #define TENDSTR "\n"
83 #define TSTR(x) KERN_DEBUG x
84 #define TCONT(x) x
85 #define TOUT(p) printk p
86
87 #define compile_time_assertion(assertion) \
88         ({ int x = __builtin_choose_expr(assertion, 0, (void)0); (void) x; })
89
90 #elif defined CONFIG_YAFFS_DIRECT
91
92 #define MTD_VERSION_CODE MTD_VERSION(2, 6, 22)
93
94 /* Direct interface */
95 #include "ydirectenv.h"
96
97 #elif defined CONFIG_YAFFS_UTIL
98
99 /* Stuff for YAFFS utilities */
100
101 #include "stdlib.h"
102 #include "stdio.h"
103 #include "string.h"
104
105 #define kmalloc(x) malloc(x)
106 #define kfree(x)   free(x)
107 #define kmalloc_ALT(x) malloc(x)
108 #define kfree_ALT(x) free(x)
109
110 #define YCHAR char
111 #define YUCHAR unsigned char
112 #define _Y(x)     x
113 #define strcat(a, b)     strcat(a, b)
114 #define strcpy(a, b)     strcpy(a, b)
115 #define strncpy(a, b, c) strncpy(a, b, c)
116 #define strnlen(s,m)           strnlen(s,m)
117 #define sprintf        sprintf
118 #define yaffs_toupper(a)       toupper(a)
119
120 #define Y_INLINE inline
121
122 /* #define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s)) */
123 /* #define YALERT(s) YINFO(s) */
124
125 #define TENDSTR "\n"
126 #define TSTR(x) x
127 #define TOUT(p) printf p
128
129 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
130 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
131 /* #define YPRINTF(x) printf x */
132
133 #define YAFFS_ROOT_MODE                 0755
134 #define YAFFS_LOSTNFOUND_MODE           0700
135
136 #define yaffs_sum_cmp(x, y) ((x) == (y))
137 #define strcmp(a, b) strcmp(a, b)
138
139 #else
140 /* Should have specified a configuration type */
141 #error Unknown configuration
142
143 #endif
144
145 #if defined(CONFIG_YAFFS_DIRECT) || defined(CONFIG_YAFFS_WINCE)
146
147 #ifdef CONFIG_YAFFSFS_PROVIDE_VALUES
148
149 #ifndef O_RDONLY
150 #define O_RDONLY        00
151 #endif
152
153 #ifndef O_WRONLY
154 #define O_WRONLY        01
155 #endif
156
157 #ifndef O_RDWR
158 #define O_RDWR          02
159 #endif
160
161 #ifndef O_CREAT
162 #define O_CREAT         0100
163 #endif
164
165 #ifndef O_EXCL
166 #define O_EXCL          0200
167 #endif
168
169 #ifndef O_TRUNC
170 #define O_TRUNC         01000
171 #endif
172
173 #ifndef O_APPEND
174 #define O_APPEND        02000
175 #endif
176
177 #ifndef SEEK_SET
178 #define SEEK_SET        0
179 #endif
180
181 #ifndef SEEK_CUR
182 #define SEEK_CUR        1
183 #endif
184
185 #ifndef SEEK_END
186 #define SEEK_END        2
187 #endif
188
189 #ifndef EBUSY
190 #define EBUSY   16
191 #endif
192
193 #ifndef ENODEV
194 #define ENODEV  19
195 #endif
196
197 #ifndef EINVAL
198 #define EINVAL  22
199 #endif
200
201 #ifndef ENFILE
202 #define ENFILE  23
203 #endif
204
205 #ifndef EBADF
206 #define EBADF   9
207 #endif
208
209 #ifndef EACCES
210 #define EACCES  13
211 #endif
212
213 #ifndef EXDEV
214 #define EXDEV   18
215 #endif
216
217 #ifndef ENOENT
218 #define ENOENT  2
219 #endif
220
221 #ifndef ENOSPC
222 #define ENOSPC  28
223 #endif
224
225 #ifndef ERANGE
226 #define ERANGE 34
227 #endif
228
229 #ifndef ENODATA
230 #define ENODATA 61
231 #endif
232
233 #ifndef ENOTEMPTY
234 #define ENOTEMPTY 39
235 #endif
236
237 #ifndef ENAMETOOLONG
238 #define ENAMETOOLONG 36
239 #endif
240
241 #ifndef ENOMEM
242 #define ENOMEM 12
243 #endif
244
245 #ifndef EEXIST
246 #define EEXIST 17
247 #endif
248
249 #ifndef ENOTDIR
250 #define ENOTDIR 20
251 #endif
252
253 #ifndef EISDIR
254 #define EISDIR 21
255 #endif
256
257 // Mode flags
258
259 #ifndef S_IFMT
260 #define S_IFMT          0170000
261 #endif
262
263 #ifndef S_IFLNK
264 #define S_IFLNK         0120000
265 #endif
266
267 #ifndef S_IFDIR
268 #define S_IFDIR         0040000
269 #endif
270
271 #ifndef S_IFREG
272 #define S_IFREG         0100000
273 #endif
274
275 #ifndef S_IREAD
276 #define S_IREAD         0000400
277 #endif
278
279 #ifndef S_IWRITE
280 #define S_IWRITE        0000200
281 #endif
282
283 #ifndef S_IEXEC
284 #define S_IEXEC 0000100
285 #endif
286
287 #ifndef XATTR_CREATE
288 #define XATTR_CREATE 1
289 #endif
290
291 #ifndef XATTR_REPLACE
292 #define XATTR_REPLACE 2
293 #endif
294
295 #ifndef R_OK
296 #define R_OK    4
297 #define W_OK    2
298 #define X_OK    1
299 #define F_OK    0
300 #endif
301
302 #else
303 #include <errno.h>
304 #include <sys/stat.h>
305 #include <fcntl.h>
306 #endif
307
308 #endif
309
310 #ifndef Y_DUMP_STACK
311 #define Y_DUMP_STACK() do { } while (0)
312 #endif
313
314 #ifndef YBUG
315 #define YBUG() do {\
316         T(YAFFS_TRACE_BUG,\
317                 (TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),\
318                 __LINE__));\
319         Y_DUMP_STACK();\
320 } while (0)
321 #endif
322
323 #endif