*** empty log message ***
[yaffs/.git] / yportenv.h
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
3  * yportenv.h: Portable services used by yaffs. This is done to allow
4  * simple migration from kernel space into app space for testing.
5  *
6  * Copyright (C) 2002 Aleph One Ltd.
7  *   for Toby Churchill Ltd and Brightstar Engineering
8  *
9  * Created by Charles Manning <charles@aleph1.co.uk>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 2.1 as
13  * published by the Free Software Foundation.
14  *
15  *
16  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
17  *
18  * $Id: yportenv.h,v 1.11 2004-09-19 09:21:33 charles Exp $
19  *
20  */
21  
22 #ifndef __YPORTENV_H__
23 #define __YPORTENV_H__
24
25
26 #if defined CONFIG_YAFFS_WINCE
27
28 #include "ywinceenv.h"
29
30 #elif  defined __KERNEL__
31
32
33
34 // Linux kernel
35 #include "linux/kernel.h"
36 #include "linux/mm.h"
37 #include "linux/string.h"
38 #include "linux/slab.h"
39
40
41 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
42 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
43
44 //#define YPRINTF(x) printk x
45 #define YMALLOC(x) kmalloc(x,GFP_KERNEL)
46 #define YFREE(x)   kfree(x)
47
48 #define YAFFS_ROOT_MODE                         0666
49 #define YAFFS_LOSTNFOUND_MODE           0666
50
51
52 #define yaffs_SumCompare(x,y) ((x) == (y))
53 #define yaffs_strcmp(a,b) strcmp(a,b)
54
55 #define TENDSTR "\n"
56 #define TSTR(x) KERN_DEBUG x
57 #define TOUT(p) printk p
58
59
60 #elif defined CONFIG_YAFFS_DIRECT
61
62 // Direct interface
63 #include "ydirectenv.h"
64
65 #elif defined CONFIG_YAFFS_UTIL
66
67 // Stuff for YAFFS utilities
68
69 #include "stdlib.h"
70 #include "stdio.h"
71 #include "string.h"
72
73 #define YMALLOC(x) malloc(x)
74 #define YFREE(x)   free(x)
75
76
77 //#define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s))
78 //#define YALERT(s) YINFO(s)
79
80
81 #define TENDSTR "\n"
82 #define TSTR(x) x
83 #define TOUT(p) printf p
84
85
86 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
87 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
88 //#define YPRINTF(x) printf x
89
90
91 #define CURRENT_TIME 0
92 #define YAFFS_ROOT_MODE                         0666
93 #define YAFFS_LOSTNFOUND_MODE           0666
94
95 #define yaffs_SumCompare(x,y) ((x) == (y))
96 #define yaffs_strcmp(a,b) strcmp(a,b)
97
98 #else
99 // Should have specified a configuration type
100 #error Unknown configuration
101
102 #endif 
103
104
105 extern unsigned yaffs_traceMask;
106
107 #define YAFFS_TRACE_ERROR               0x0001
108 #define YAFFS_TRACE_OS                  0x0002
109 #define YAFFS_TRACE_ALLOCATE    0x0004
110 #define YAFFS_TRACE_SCAN                0x0008
111 #define YAFFS_TRACE_BAD_BLOCKS  0x0010
112 #define YAFFS_TRACE_ERASE               0x0020
113 #define YAFFS_TRACE_GC                  0x0040
114 #define YAFFS_TRACE_TRACING             0x0100
115 #define YAFFS_TRACE_ALWAYS              0x0200
116 #define YAFFS_TRACE_BUG                 0x8000
117
118 #define T(mask,p) do{ if((mask) & (yaffs_traceMask | YAFFS_TRACE_ERROR)) TOUT(p);} while(0) 
119
120
121 #ifndef CONFIG_YAFFS_WINCE
122 #define YBUG() T(YAFFS_TRACE_BUG,(TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),__LINE__))
123 #endif
124
125 #endif