Mercurial > yaffs-ecoscentric-gpl
annotate yportenv.h @ 413:d94b1449bddc
yaffs: Integrate Android tree differences
This brings in Android changes, and a few more clean-ups to normalise with the
Android tree.
More to follow maybe.
Signed-off-by: Charles Manning <cdhmanning@gmail.com>
| author | Charles Manning <cdhmanning@gmail.com> |
|---|---|
| date | Tue, 27 Apr 2010 14:06:38 +1200 |
| parents | b5309c9b6d7f |
| children | 4aa32dd45dc8 |
| rev | line source |
|---|---|
| 2 | 1 /* |
|
198
b7f785925166
Cleanup patch - Remove all trailing whitespace and fix a few typos.
wookey <wookey>
parents:
197
diff
changeset
|
2 * YAFFS: Yet another Flash File System . A NAND-flash specific file system. |
| 2 | 3 * |
|
409
b5309c9b6d7f
yaffs Some cleanups.
Charles Manning <cdhmanning@gmail.com>
parents:
342
diff
changeset
|
4 * Copyright (C) 2002-2010 Aleph One Ltd. |
| 2 | 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 */ | |
| 77 | 15 |
| 168 | 16 |
| 2 | 17 #ifndef __YPORTENV_H__ |
| 18 #define __YPORTENV_H__ | |
| 19 | |
|
197
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
20 /* |
|
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
21 * Define the MTD version in terms of Linux Kernel versions |
|
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
22 * This allows yaffs to be used independantly of the kernel |
|
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
23 * as well as with it. |
|
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
24 */ |
|
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
25 |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
26 #define MTD_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c)) |
|
197
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
27 |
| 2 | 28 #if defined CONFIG_YAFFS_WINCE |
| 29 | |
| 4 | 30 #include "ywinceenv.h" |
| 2 | 31 |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
32 #elif defined __KERNEL__ |
| 2 | 33 |
|
80
82fbfedb0261
Modified Makefile to allow 'out of kernel tree' module building for 2.6.x
marty <marty>
parents:
77
diff
changeset
|
34 #include "moduleconfig.h" |
|
82fbfedb0261
Modified Makefile to allow 'out of kernel tree' module building for 2.6.x
marty <marty>
parents:
77
diff
changeset
|
35 |
| 77 | 36 /* Linux kernel */ |
|
197
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
37 |
| 166 | 38 #include <linux/version.h> |
|
197
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
39 #define MTD_VERSION_CODE LINUX_VERSION_CODE |
|
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
40 |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
41 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19)) |
|
39
4cd8b1224677
Add linux/config.h here and change include markers
charles <charles>
parents:
7
diff
changeset
|
42 #include <linux/config.h> |
| 166 | 43 #endif |
|
39
4cd8b1224677
Add linux/config.h here and change include markers
charles <charles>
parents:
7
diff
changeset
|
44 #include <linux/kernel.h> |
|
4cd8b1224677
Add linux/config.h here and change include markers
charles <charles>
parents:
7
diff
changeset
|
45 #include <linux/mm.h> |
|
190
0dfc0420d47f
Add #include <linux/sched.h> -- needed for 2.6.23.
imcd <imcd>
parents:
179
diff
changeset
|
46 #include <linux/sched.h> |
|
39
4cd8b1224677
Add linux/config.h here and change include markers
charles <charles>
parents:
7
diff
changeset
|
47 #include <linux/string.h> |
|
4cd8b1224677
Add linux/config.h here and change include markers
charles <charles>
parents:
7
diff
changeset
|
48 #include <linux/slab.h> |
|
90
59da3290b07c
Add support for vmallocing large blockInfos
charles <charles>
parents:
80
diff
changeset
|
49 #include <linux/vmalloc.h> |
| 2 | 50 |
| 4 | 51 #define YCHAR char |
| 52 #define YUCHAR unsigned char | |
| 53 #define _Y(x) x | |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
54 #define yaffs_strcat(a, b) strcat(a, b) |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
55 #define yaffs_strcpy(a, b) strcpy(a, b) |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
56 #define yaffs_strncpy(a, b, c) strncpy(a, b, c) |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
57 #define yaffs_strncmp(a, b, c) strncmp(a, b, c) |
|
326
490a804b7bd3
Change to strnlen() and strncpy() to avoid problems from unbounded strings
charles <charles>
parents:
306
diff
changeset
|
58 #define yaffs_strnlen(s,m) strnlen(s,m) |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
59 #define yaffs_sprintf sprintf |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
60 #define yaffs_toupper(a) toupper(a) |
| 2 | 61 |
| 4 | 62 #define Y_INLINE inline |
| 2 | 63 |
| 64 #define YAFFS_LOSTNFOUND_NAME "lost+found" | |
| 65 #define YAFFS_LOSTNFOUND_PREFIX "obj" | |
| 66 | |
| 77 | 67 /* #define YPRINTF(x) printk x */ |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
68 #define YMALLOC(x) kmalloc(x, GFP_NOFS) |
| 2 | 69 #define YFREE(x) kfree(x) |
|
90
59da3290b07c
Add support for vmallocing large blockInfos
charles <charles>
parents:
80
diff
changeset
|
70 #define YMALLOC_ALT(x) vmalloc(x) |
|
59da3290b07c
Add support for vmallocing large blockInfos
charles <charles>
parents:
80
diff
changeset
|
71 #define YFREE_ALT(x) vfree(x) |
| 131 | 72 #define YMALLOC_DMA(x) YMALLOC(x) |
| 73 | |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
74 /* KR - added for use in scan so processes aren't blocked indefinitely. */ |
| 131 | 75 #define YYIELD() schedule() |
| 2 | 76 |
| 290 | 77 #define YAFFS_ROOT_MODE 0755 |
| 78 #define YAFFS_LOSTNFOUND_MODE 0700 | |
| 2 | 79 |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
80 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0)) |
| 4 | 81 #define Y_CURRENT_TIME CURRENT_TIME.tv_sec |
| 82 #define Y_TIME_CONVERT(x) (x).tv_sec | |
| 83 #else | |
| 84 #define Y_CURRENT_TIME CURRENT_TIME | |
| 85 #define Y_TIME_CONVERT(x) (x) | |
| 86 #endif | |
| 2 | 87 |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
88 #define yaffs_SumCompare(x, y) ((x) == (y)) |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
89 #define yaffs_strcmp(a, b) strcmp(a, b) |
| 2 | 90 |
| 91 #define TENDSTR "\n" | |
|
409
b5309c9b6d7f
yaffs Some cleanups.
Charles Manning <cdhmanning@gmail.com>
parents:
342
diff
changeset
|
92 #define TSTR(x) KERN_DEBUG x |
|
261
8177f03a9e68
Change string concats to work with all OSs
charles <charles>
parents:
258
diff
changeset
|
93 #define TCONT(x) x |
| 2 | 94 #define TOUT(p) printk p |
| 95 | |
| 179 | 96 #define compile_time_assertion(assertion) \ |
| 97 ({ int x = __builtin_choose_expr(assertion, 0, (void)0); (void) x; }) | |
| 98 | |
| 2 | 99 #elif defined CONFIG_YAFFS_DIRECT |
| 100 | |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
101 #define MTD_VERSION_CODE MTD_VERSION(2, 6, 22) |
|
197
afde55f67a0a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin <colin>
parents:
190
diff
changeset
|
102 |
| 77 | 103 /* Direct interface */ |
| 4 | 104 #include "ydirectenv.h" |
| 2 | 105 |
| 106 #elif defined CONFIG_YAFFS_UTIL | |
| 107 | |
| 77 | 108 /* Stuff for YAFFS utilities */ |
| 2 | 109 |
| 110 #include "stdlib.h" | |
| 111 #include "stdio.h" | |
| 112 #include "string.h" | |
| 113 | |
| 4 | 114 #include "devextras.h" |
| 115 | |
| 2 | 116 #define YMALLOC(x) malloc(x) |
| 117 #define YFREE(x) free(x) | |
|
90
59da3290b07c
Add support for vmallocing large blockInfos
charles <charles>
parents:
80
diff
changeset
|
118 #define YMALLOC_ALT(x) malloc(x) |
|
59da3290b07c
Add support for vmallocing large blockInfos
charles <charles>
parents:
80
diff
changeset
|
119 #define YFREE_ALT(x) free(x) |
| 2 | 120 |
| 4 | 121 #define YCHAR char |
| 122 #define YUCHAR unsigned char | |
| 123 #define _Y(x) x | |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
124 #define yaffs_strcat(a, b) strcat(a, b) |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
125 #define yaffs_strcpy(a, b) strcpy(a, b) |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
126 #define yaffs_strncpy(a, b, c) strncpy(a, b, c) |
|
326
490a804b7bd3
Change to strnlen() and strncpy() to avoid problems from unbounded strings
charles <charles>
parents:
306
diff
changeset
|
127 #define yaffs_strnlen(s,m) strnlen(s,m) |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
128 #define yaffs_sprintf sprintf |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
129 #define yaffs_toupper(a) toupper(a) |
| 4 | 130 |
| 131 #define Y_INLINE inline | |
| 2 | 132 |
| 77 | 133 /* #define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s)) */ |
| 134 /* #define YALERT(s) YINFO(s) */ | |
| 2 | 135 |
| 136 #define TENDSTR "\n" | |
| 137 #define TSTR(x) x | |
| 138 #define TOUT(p) printf p | |
| 139 | |
| 140 #define YAFFS_LOSTNFOUND_NAME "lost+found" | |
| 141 #define YAFFS_LOSTNFOUND_PREFIX "obj" | |
| 77 | 142 /* #define YPRINTF(x) printf x */ |
| 2 | 143 |
| 290 | 144 #define YAFFS_ROOT_MODE 0755 |
| 145 #define YAFFS_LOSTNFOUND_MODE 0700 | |
| 2 | 146 |
|
271
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
147 #define yaffs_SumCompare(x, y) ((x) == (y)) |
|
c0dfae9e8073
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey <wookey>
parents:
261
diff
changeset
|
148 #define yaffs_strcmp(a, b) strcmp(a, b) |
| 2 | 149 |
| 150 #else | |
| 77 | 151 /* Should have specified a configuration type */ |
| 2 | 152 #error Unknown configuration |
| 153 | |
| 77 | 154 #endif |
| 2 | 155 |
| 156 | |
|
204
0f70320a2274
Check in inband tags, some extra yaffs direct functions and some other changes
charles <charles>
parents:
198
diff
changeset
|
157 #ifndef YBUG |
|
413
d94b1449bddc
yaffs: Integrate Android tree differences
Charles Manning <cdhmanning@gmail.com>
parents:
409
diff
changeset
|
158 #define YBUG() do {\ |
|
d94b1449bddc
yaffs: Integrate Android tree differences
Charles Manning <cdhmanning@gmail.com>
parents:
409
diff
changeset
|
159 T(YAFFS_TRACE_BUG,\ |
|
d94b1449bddc
yaffs: Integrate Android tree differences
Charles Manning <cdhmanning@gmail.com>
parents:
409
diff
changeset
|
160 (TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),\ |
|
d94b1449bddc
yaffs: Integrate Android tree differences
Charles Manning <cdhmanning@gmail.com>
parents:
409
diff
changeset
|
161 __LINE__));\ |
|
d94b1449bddc
yaffs: Integrate Android tree differences
Charles Manning <cdhmanning@gmail.com>
parents:
409
diff
changeset
|
162 } while (0) |
| 2 | 163 #endif |
| 164 | |
| 165 #endif |
