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