yportenv.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:3k
源码类别:

uCOS

开发平台:

C/C++

  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. //by threewater use yaffs direct mode
  25. #define CONFIG_YAFFS_DIRECT
  26. #if defined CONFIG_YAFFS_WINCE
  27. #include "ywinceenv.h"
  28. #elif  defined __KERNEL__
  29. // Linux kernel
  30. #include "linux/kernel.h"
  31. #include "linux/version.h"
  32. #include "linux/mm.h"
  33. #include "linux/string.h"
  34. #include "linux/slab.h"
  35. #define YAFFS_LOSTNFOUND_NAME "lost+found"
  36. #define YAFFS_LOSTNFOUND_PREFIX "obj"
  37. //#define YPRINTF(x) printk x
  38. #define YMALLOC(x) kmalloc(x,GFP_KERNEL)
  39. #define YFREE(x)   kfree(x)
  40. #define YAFFS_ROOT_MODE 0666
  41. #define YAFFS_LOSTNFOUND_MODE 0666
  42. #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
  43. #define Y_CURRENT_TIME CURRENT_TIME.tv_sec
  44. #define Y_TIME_CONVERT(x) (x).tv_sec
  45. #else
  46. #define Y_CURRENT_TIME CURRENT_TIME
  47. #define Y_TIME_CONVERT(x) (x)
  48. #endif
  49. #define yaffs_SumCompare(x,y) ((x) == (y))
  50. #define yaffs_strcmp(a,b) strcmp(a,b)
  51. #define TENDSTR "n"
  52. #define TSTR(x) KERN_DEBUG x
  53. #define TOUT(p) printk p
  54. #elif defined CONFIG_YAFFS_DIRECT
  55. // Direct interface
  56. #include "ydirectenv.h"
  57. #elif defined CONFIG_YAFFS_UTIL
  58. // Stuff for YAFFS utilities
  59. #include "stdlib.h"
  60. #include "stdio.h"
  61. #include "string.h"
  62. #include "devextras.h"
  63. #define YMALLOC(x) malloc(x)
  64. #define YFREE(x)   free(x)
  65. //#define YINFO(s) YPRINTF(( __FILE__ " %d %sn",__LINE__,s))
  66. //#define YALERT(s) YINFO(s)
  67. #define TENDSTR "n"
  68. #define TSTR(x) x
  69. #define TOUT(p) printf p
  70. #define YAFFS_LOSTNFOUND_NAME "lost+found"
  71. #define YAFFS_LOSTNFOUND_PREFIX "obj"
  72. //#define YPRINTF(x) printf x
  73. #define CURRENT_TIME 0
  74. #define YAFFS_ROOT_MODE 0666
  75. #define YAFFS_LOSTNFOUND_MODE 0666
  76. #define yaffs_SumCompare(x,y) ((x) == (y))
  77. #define yaffs_strcmp(a,b) strcmp(a,b)
  78. #else
  79. // Should have specified a configuration type
  80. #error Unknown configuration
  81. #endif 
  82. extern unsigned yaffs_traceMask;
  83. #define YAFFS_TRACE_ERROR 0x0001
  84. #define YAFFS_TRACE_OS 0x0002
  85. #define YAFFS_TRACE_ALLOCATE 0x0004
  86. #define YAFFS_TRACE_SCAN 0x0008
  87. #define YAFFS_TRACE_BAD_BLOCKS 0x0010
  88. #define YAFFS_TRACE_ERASE 0x0020
  89. #define YAFFS_TRACE_GC 0x0040
  90. #define YAFFS_TRACE_TRACING 0x0100
  91. #define YAFFS_TRACE_ALWAYS 0x0200
  92. #define YAFFS_TRACE_BUG 0x8000
  93. #define T(mask,p) do{ if((mask) & (yaffs_traceMask | YAFFS_TRACE_ERROR)) TOUT(p);} while(0) 
  94. #ifndef CONFIG_YAFFS_WINCE
  95. #define YBUG() T(YAFFS_TRACE_BUG,(TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),__LINE__))
  96. #endif
  97. #endif