Change yboot.c to LGPL as was intended
[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.14 2004-10-10 18:03:35 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/version.h"
37 #include "linux/mm.h"
38 #include "linux/string.h"
39 #include "linux/slab.h"
40
41
42 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
43 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
44
45 //#define YPRINTF(x) printk x
46 #define YMALLOC(x) kmalloc(x,GFP_KERNEL)
47 #define YFREE(x)   kfree(x)
48
49 #define YAFFS_ROOT_MODE                         0666
50 #define YAFFS_LOSTNFOUND_MODE           0666
51
52 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
53 #define Y_CURRENT_TIME CURRENT_TIME.tv_sec
54 #define Y_TIME_CONVERT(x) (x).tv_sec
55 #else
56 #define Y_CURRENT_TIME CURRENT_TIME
57 #define Y_TIME_CONVERT(x) (x)
58 #endif
59
60 #define yaffs_SumCompare(x,y) ((x) == (y))
61 #define yaffs_strcmp(a,b) strcmp(a,b)
62
63 #define TENDSTR "\n"
64 #define TSTR(x) KERN_DEBUG x
65 #define TOUT(p) printk p
66
67
68 #elif defined CONFIG_YAFFS_DIRECT
69
70 // Direct interface
71 #include "ydirectenv.h"
72
73 #elif defined CONFIG_YAFFS_UTIL
74
75 // Stuff for YAFFS utilities
76
77 #include "stdlib.h"
78 #include "stdio.h"
79 #include "string.h"
80
81 #include "devextras.h"
82
83 #define YMALLOC(x) malloc(x)
84 #define YFREE(x)   free(x)
85
86
87 //#define YINFO(s) YPRINTF(( __FILE__ " %d %s\n",__LINE__,s))
88 //#define YALERT(s) YINFO(s)
89
90
91 #define TENDSTR "\n"
92 #define TSTR(x) x
93 #define TOUT(p) printf p
94
95
96 #define YAFFS_LOSTNFOUND_NAME           "lost+found"
97 #define YAFFS_LOSTNFOUND_PREFIX         "obj"
98 //#define YPRINTF(x) printf x
99
100
101 #define CURRENT_TIME 0
102 #define YAFFS_ROOT_MODE                         0666
103 #define YAFFS_LOSTNFOUND_MODE           0666
104
105 #define yaffs_SumCompare(x,y) ((x) == (y))
106 #define yaffs_strcmp(a,b) strcmp(a,b)
107
108 #else
109 // Should have specified a configuration type
110 #error Unknown configuration
111
112 #endif 
113
114
115 extern unsigned yaffs_traceMask;
116
117 #define YAFFS_TRACE_ERROR               0x0001
118 #define YAFFS_TRACE_OS                  0x0002
119 #define YAFFS_TRACE_ALLOCATE    0x0004
120 #define YAFFS_TRACE_SCAN                0x0008
121 #define YAFFS_TRACE_BAD_BLOCKS  0x0010
122 #define YAFFS_TRACE_ERASE               0x0020
123 #define YAFFS_TRACE_GC                  0x0040
124 #define YAFFS_TRACE_TRACING             0x0100
125 #define YAFFS_TRACE_ALWAYS              0x0200
126 #define YAFFS_TRACE_BUG                 0x8000
127
128 #define T(mask,p) do{ if((mask) & (yaffs_traceMask | YAFFS_TRACE_ERROR)) TOUT(p);} while(0) 
129
130
131 #ifndef CONFIG_YAFFS_WINCE
132 #define YBUG() T(YAFFS_TRACE_BUG,(TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),__LINE__))
133 #endif
134
135 #endif
136
137