Mercurial > yaffs-ecoscentric
annotate packages/fs/yaffs/current/src/yportenv.h @ 310:a097a8d2aa15
Merge upstream up to Thu Oct 08 02:57:59 2009 +0100
| author | Ross Younger <wry@ecoscentric.com> |
|---|---|
| date | Tue, 03 Nov 2009 15:33:54 +0000 |
| parents | yportenv.h@b6d23e273df3 yportenv.h@9c8ff034abb0 |
| children | 1c56b1df53d8 |
| rev | line source |
|---|---|
| 2 | 1 /* |
|
205
f95fdc6123fb
Cleanup patch - Remove all trailing whitespace and fix a few typos.
wookey
parents:
204
diff
changeset
|
2 * YAFFS: Yet another Flash File System . A NAND-flash specific file system. |
| 2 | 3 * |
| 174 | 4 * Copyright (C) 2002-2007 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 */ | |
| 79 | 15 |
| 174 | 16 |
| 2 | 17 #ifndef __YPORTENV_H__ |
| 18 #define __YPORTENV_H__ | |
| 19 | |
|
300
9c8ff034abb0
Graft in 20090826 source snapshot
Ross Younger <wry@ecoscentric.com>
parents:
298
diff
changeset
|
20 #include "ecos-yaffs.h" |
|
9c8ff034abb0
Graft in 20090826 source snapshot
Ross Younger <wry@ecoscentric.com>
parents:
298
diff
changeset
|
21 |
|
204
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
22 /* |
|
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
23 * Define the MTD version in terms of Linux Kernel versions |
|
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
24 * This allows yaffs to be used independantly of the kernel |
|
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
25 * as well as with it. |
|
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
26 */ |
|
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
27 |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
28 #define MTD_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c)) |
|
204
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
29 |
| 2 | 30 #if defined CONFIG_YAFFS_WINCE |
| 31 | |
| 4 | 32 #include "ywinceenv.h" |
| 2 | 33 |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
34 #elif defined __KERNEL__ |
| 2 | 35 |
|
83
51cad800e99c
Modified Makefile to allow 'out of kernel tree' module building for 2.6.x
marty
parents:
79
diff
changeset
|
36 #include "moduleconfig.h" |
|
51cad800e99c
Modified Makefile to allow 'out of kernel tree' module building for 2.6.x
marty
parents:
79
diff
changeset
|
37 |
| 79 | 38 /* Linux kernel */ |
|
204
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
39 |
| 172 | 40 #include <linux/version.h> |
|
204
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
41 #define MTD_VERSION_CODE LINUX_VERSION_CODE |
|
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
42 |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
43 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19)) |
| 41 | 44 #include <linux/config.h> |
| 172 | 45 #endif |
| 41 | 46 #include <linux/kernel.h> |
| 47 #include <linux/mm.h> | |
| 196 | 48 #include <linux/sched.h> |
| 41 | 49 #include <linux/string.h> |
| 50 #include <linux/slab.h> | |
| 93 | 51 #include <linux/vmalloc.h> |
| 2 | 52 |
| 4 | 53 #define YCHAR char |
| 54 #define YUCHAR unsigned char | |
| 55 #define _Y(x) x | |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
56 #define yaffs_strcat(a, b) strcat(a, b) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
57 #define yaffs_strcpy(a, b) strcpy(a, b) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
58 #define yaffs_strncpy(a, b, c) strncpy(a, b, c) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
59 #define yaffs_strncmp(a, b, c) strncmp(a, b, c) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
60 #define yaffs_strlen(s) strlen(s) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
61 #define yaffs_sprintf sprintf |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
62 #define yaffs_toupper(a) toupper(a) |
| 2 | 63 |
| 4 | 64 #define Y_INLINE inline |
| 2 | 65 |
| 66 #define YAFFS_LOSTNFOUND_NAME "lost+found" | |
| 67 #define YAFFS_LOSTNFOUND_PREFIX "obj" | |
| 68 | |
| 79 | 69 /* #define YPRINTF(x) printk x */ |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
70 #define YMALLOC(x) kmalloc(x, GFP_NOFS) |
| 2 | 71 #define YFREE(x) kfree(x) |
| 93 | 72 #define YMALLOC_ALT(x) vmalloc(x) |
| 73 #define YFREE_ALT(x) vfree(x) | |
| 137 | 74 #define YMALLOC_DMA(x) YMALLOC(x) |
| 75 | |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
76 /* KR - added for use in scan so processes aren't blocked indefinitely. */ |
| 137 | 77 #define YYIELD() schedule() |
| 2 | 78 |
| 307 | 79 #define YAFFS_ROOT_MODE 0755 |
| 80 #define YAFFS_LOSTNFOUND_MODE 0700 | |
| 2 | 81 |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
82 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0)) |
| 4 | 83 #define Y_CURRENT_TIME CURRENT_TIME.tv_sec |
| 84 #define Y_TIME_CONVERT(x) (x).tv_sec | |
| 85 #else | |
| 86 #define Y_CURRENT_TIME CURRENT_TIME | |
| 87 #define Y_TIME_CONVERT(x) (x) | |
| 88 #endif | |
| 2 | 89 |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
90 #define yaffs_SumCompare(x, y) ((x) == (y)) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
91 #define yaffs_strcmp(a, b) strcmp(a, b) |
| 2 | 92 |
| 93 #define TENDSTR "\n" | |
| 6 | 94 #define TSTR(x) KERN_WARNING x |
| 272 | 95 #define TCONT(x) x |
| 2 | 96 #define TOUT(p) printk p |
| 97 | |
| 185 | 98 #define yaffs_trace(mask, fmt, args...) \ |
| 99 do { if ((mask) & (yaffs_traceMask|YAFFS_TRACE_ERROR)) \ | |
| 100 printk(KERN_WARNING "yaffs: " fmt, ## args); \ | |
| 101 } while (0) | |
| 102 | |
| 103 #define compile_time_assertion(assertion) \ | |
| 104 ({ int x = __builtin_choose_expr(assertion, 0, (void)0); (void) x; }) | |
| 105 | |
| 2 | 106 #elif defined CONFIG_YAFFS_DIRECT |
| 107 | |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
108 #define MTD_VERSION_CODE MTD_VERSION(2, 6, 22) |
|
204
5ee93b08ed3a
Replace KERNEL_VERSION with MTD_VERSION so that builds which don't use
colin
parents:
196
diff
changeset
|
109 |
| 79 | 110 /* Direct interface */ |
| 4 | 111 #include "ydirectenv.h" |
| 2 | 112 |
| 113 #elif defined CONFIG_YAFFS_UTIL | |
| 114 | |
| 79 | 115 /* Stuff for YAFFS utilities */ |
| 2 | 116 |
| 117 #include "stdlib.h" | |
| 118 #include "stdio.h" | |
| 119 #include "string.h" | |
| 120 | |
| 4 | 121 #include "devextras.h" |
| 122 | |
| 2 | 123 #define YMALLOC(x) malloc(x) |
| 124 #define YFREE(x) free(x) | |
| 93 | 125 #define YMALLOC_ALT(x) malloc(x) |
| 126 #define YFREE_ALT(x) free(x) | |
| 2 | 127 |
| 4 | 128 #define YCHAR char |
| 129 #define YUCHAR unsigned char | |
| 130 #define _Y(x) x | |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
131 #define yaffs_strcat(a, b) strcat(a, b) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
132 #define yaffs_strcpy(a, b) strcpy(a, b) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
133 #define yaffs_strncpy(a, b, c) strncpy(a, b, c) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
134 #define yaffs_strlen(s) strlen(s) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
135 #define yaffs_sprintf sprintf |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
136 #define yaffs_toupper(a) toupper(a) |
| 4 | 137 |
| 138 #define Y_INLINE inline | |
| 2 | 139 |
| 79 | 140 /* #define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s)) */ |
| 141 /* #define YALERT(s) YINFO(s) */ | |
| 2 | 142 |
| 143 #define TENDSTR "\n" | |
| 144 #define TSTR(x) x | |
| 145 #define TOUT(p) printf p | |
| 146 | |
| 147 #define YAFFS_LOSTNFOUND_NAME "lost+found" | |
| 148 #define YAFFS_LOSTNFOUND_PREFIX "obj" | |
| 79 | 149 /* #define YPRINTF(x) printf x */ |
| 2 | 150 |
| 307 | 151 #define YAFFS_ROOT_MODE 0755 |
| 152 #define YAFFS_LOSTNFOUND_MODE 0700 | |
| 2 | 153 |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
154 #define yaffs_SumCompare(x, y) ((x) == (y)) |
|
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
155 #define yaffs_strcmp(a, b) strcmp(a, b) |
| 2 | 156 |
|
300
9c8ff034abb0
Graft in 20090826 source snapshot
Ross Younger <wry@ecoscentric.com>
parents:
298
diff
changeset
|
157 #elif defined CYGPKG_FS_YAFFS |
|
9c8ff034abb0
Graft in 20090826 source snapshot
Ross Younger <wry@ecoscentric.com>
parents:
298
diff
changeset
|
158 |
|
9c8ff034abb0
Graft in 20090826 source snapshot
Ross Younger <wry@ecoscentric.com>
parents:
298
diff
changeset
|
159 #include "ecos-yport.h" |
|
9c8ff034abb0
Graft in 20090826 source snapshot
Ross Younger <wry@ecoscentric.com>
parents:
298
diff
changeset
|
160 |
| 2 | 161 #else |
| 79 | 162 /* Should have specified a configuration type */ |
| 2 | 163 #error Unknown configuration |
| 164 | |
| 79 | 165 #endif |
| 2 | 166 |
| 185 | 167 /* see yaffs_fs.c */ |
| 168 extern unsigned int yaffs_traceMask; | |
| 169 extern unsigned int yaffs_wr_attempts; | |
| 2 | 170 |
| 182 | 171 /* |
| 172 * Tracing flags. | |
| 173 * The flags masked in YAFFS_TRACE_ALWAYS are always traced. | |
| 174 */ | |
|
205
f95fdc6123fb
Cleanup patch - Remove all trailing whitespace and fix a few typos.
wookey
parents:
204
diff
changeset
|
175 |
| 4 | 176 #define YAFFS_TRACE_OS 0x00000002 |
| 177 #define YAFFS_TRACE_ALLOCATE 0x00000004 | |
| 178 #define YAFFS_TRACE_SCAN 0x00000008 | |
| 179 #define YAFFS_TRACE_BAD_BLOCKS 0x00000010 | |
| 180 #define YAFFS_TRACE_ERASE 0x00000020 | |
| 181 #define YAFFS_TRACE_GC 0x00000040 | |
| 182 #define YAFFS_TRACE_WRITE 0x00000080 | |
| 183 #define YAFFS_TRACE_TRACING 0x00000100 | |
| 184 #define YAFFS_TRACE_DELETION 0x00000200 | |
| 185 #define YAFFS_TRACE_BUFFERS 0x00000400 | |
| 186 #define YAFFS_TRACE_NANDACCESS 0x00000800 | |
| 187 #define YAFFS_TRACE_GC_DETAIL 0x00001000 | |
| 7 | 188 #define YAFFS_TRACE_SCAN_DEBUG 0x00002000 |
| 189 #define YAFFS_TRACE_MTD 0x00004000 | |
| 131 | 190 #define YAFFS_TRACE_CHECKPOINT 0x00008000 |
| 182 | 191 |
| 192 #define YAFFS_TRACE_VERIFY 0x00010000 | |
| 193 #define YAFFS_TRACE_VERIFY_NAND 0x00020000 | |
| 194 #define YAFFS_TRACE_VERIFY_FULL 0x00040000 | |
| 195 #define YAFFS_TRACE_VERIFY_ALL 0x000F0000 | |
| 196 | |
| 197 | |
| 198 #define YAFFS_TRACE_ERROR 0x40000000 | |
| 4 | 199 #define YAFFS_TRACE_BUG 0x80000000 |
| 182 | 200 #define YAFFS_TRACE_ALWAYS 0xF0000000 |
| 2 | 201 |
| 182 | 202 |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
203 #define T(mask, p) do { if ((mask) & (yaffs_traceMask | YAFFS_TRACE_ALWAYS)) TOUT(p); } while (0) |
| 2 | 204 |
|
211
fad21fd1971d
Check in inband tags, some extra yaffs direct functions and some other changes
charles
parents:
205
diff
changeset
|
205 #ifndef YBUG |
|
282
c8620405d086
Major whitespace/style changes to match Linux checkpatch.pl code style
wookey
parents:
272
diff
changeset
|
206 #define YBUG() do {T(YAFFS_TRACE_BUG, (TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR), __LINE__)); } while (0) |
| 2 | 207 #endif |
| 208 | |
| 209 #endif |
