Added files that support the ability to "patchin" yaffs2 into the 2.6
[yaffs2.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.6 2005-07-31 00:26:57 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/config.h>
36 #include <linux/kernel.h>
37 #include <linux/version.h>
38 #include <linux/mm.h>
39 #include <linux/string.h>
40 #include <linux/slab.h>
41
42 #define YCHAR char
43 #define YUCHAR unsigned char
44 #define _Y(x)     x
45 #define yaffs_strcpy(a,b)    strcpy(a,b)
46 #define yaffs_strncpy(a,b,c) strncpy(a,b,c)
47 #define yaffs_strlen(s)      strlen(s)
48 #define yaffs_sprintf        sprintf
49 #define yaffs_toupper(a)     toupper(a)
50
51 #define Y_INLINE inline
52
53 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
54 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
55
56 //#define YPRINTF(x) printk x
57 #define YMALLOC(x) kmalloc(x,GFP_KERNEL)
58 #define YFREE(x)   kfree(x)
59
60 #define YAFFS_ROOT_MODE                         0666
61 #define YAFFS_LOSTNFOUND_MODE           0666
62
63 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
64 #define Y_CURRENT_TIME CURRENT_TIME.tv_sec
65 #define Y_TIME_CONVERT(x) (x).tv_sec
66 #else
67 #define Y_CURRENT_TIME CURRENT_TIME
68 #define Y_TIME_CONVERT(x) (x)
69 #endif
70
71 #define yaffs_SumCompare(x,y) ((x) == (y))
72 #define yaffs_strcmp(a,b) strcmp(a,b)
73
74 #define TENDSTR "\n"
75 #define TSTR(x) KERN_WARNING x
76 #define TOUT(p) printk p
77
78
79 #elif defined CONFIG_YAFFS_DIRECT
80
81 // Direct interface
82 #include "ydirectenv.h"
83
84 #elif defined CONFIG_YAFFS_UTIL
85
86 // Stuff for YAFFS utilities
87
88 #include "stdlib.h"
89 #include "stdio.h"
90 #include "string.h"
91
92 #include "devextras.h"
93
94 #define YMALLOC(x) malloc(x)
95 #define YFREE(x)   free(x)
96
97
98 #define YCHAR char
99 #define YUCHAR unsigned char
100 #define _Y(x)     x
101 #define yaffs_strcpy(a,b)    strcpy(a,b)
102 #define yaffs_strncpy(a,b,c) strncpy(a,b,c)
103 #define yaffs_strlen(s)      strlen(s)
104 #define yaffs_sprintf        sprintf
105 #define yaffs_toupper(a)     toupper(a)
106
107 #define Y_INLINE inline
108
109 //#define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s))
110 //#define YALERT(s) YINFO(s)
111
112
113 #define TENDSTR "\n"
114 #define TSTR(x) x
115 #define TOUT(p) printf p
116
117
118 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
119 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
120 //#define YPRINTF(x) printf x
121
122
123 #define YAFFS_ROOT_MODE                         0666
124 #define YAFFS_LOSTNFOUND_MODE           0666
125
126 #define yaffs_SumCompare(x,y) ((x) == (y))
127 #define yaffs_strcmp(a,b) strcmp(a,b)
128
129 #else
130 // Should have specified a configuration type
131 #error Unknown configuration
132
133 #endif 
134
135
136 extern unsigned yaffs_traceMask;
137
138 #define YAFFS_TRACE_ERROR               0x00000001
139 #define YAFFS_TRACE_OS                  0x00000002
140 #define YAFFS_TRACE_ALLOCATE            0x00000004
141 #define YAFFS_TRACE_SCAN                0x00000008
142 #define YAFFS_TRACE_BAD_BLOCKS          0x00000010
143 #define YAFFS_TRACE_ERASE               0x00000020
144 #define YAFFS_TRACE_GC                  0x00000040
145 #define YAFFS_TRACE_WRITE               0x00000080
146 #define YAFFS_TRACE_TRACING             0x00000100
147 #define YAFFS_TRACE_DELETION            0x00000200
148 #define YAFFS_TRACE_BUFFERS             0x00000400
149 #define YAFFS_TRACE_NANDACCESS          0x00000800
150 #define YAFFS_TRACE_GC_DETAIL           0x00001000
151 #define YAFFS_TRACE_SCAN_DEBUG          0x00002000
152 #define YAFFS_TRACE_MTD                 0x00004000
153 #define YAFFS_TRACE_ALWAYS              0x40000000
154 #define YAFFS_TRACE_BUG                 0x80000000
155
156 #define T(mask,p) do{ if((mask) & (yaffs_traceMask | YAFFS_TRACE_ERROR)) TOUT(p);} while(0) 
157
158
159 #ifndef CONFIG_YAFFS_WINCE
160 #define YBUG() T(YAFFS_TRACE_BUG,(TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),__LINE__))
161 #endif
162
163 #endif
164
165