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