jffs_fm.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS -- Journaling Flash File System, Linux implementation.
  3.  *
  4.  * Copyright (C) 1999, 2000  Axis Communications AB.
  5.  *
  6.  * Created by Finn Hakansson <finn@axis.com>.
  7.  *
  8.  * This is free software; you can redistribute it and/or modify it
  9.  * under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * $Id: jffs_fm.h,v 1.14 2001/12/10 17:37:12 asanochkin Exp $
  14.  *
  15.  * Ported to Linux 2.3.x and MTD:
  16.  * Copyright (C) 2000  Alexander Larsson (alex@cendio.se), Cendio Systems AB
  17.  *
  18.  */
  19. #ifndef __LINUX_JFFS_FM_H__
  20. #define __LINUX_JFFS_FM_H__
  21. #include <linux/types.h>
  22. #include <linux/jffs.h>
  23. #include <linux/mtd/mtd.h>
  24. #include <linux/config.h>
  25. /* The alignment between two nodes in the flash memory.  */
  26. #define JFFS_ALIGN_SIZE 4
  27. /* Mark the on-flash space as obsolete when appropriate.  */
  28. #define JFFS_MARK_OBSOLETE 0
  29. #ifndef CONFIG_JFFS_FS_VERBOSE
  30. #define CONFIG_JFFS_FS_VERBOSE 1
  31. #endif
  32. #if CONFIG_JFFS_FS_VERBOSE > 0
  33. #define D(x) x
  34. #define D1(x) D(x)
  35. #else
  36. #define D(x)
  37. #define D1(x)
  38. #endif
  39. #if CONFIG_JFFS_FS_VERBOSE > 1
  40. #define D2(x) D(x)
  41. #else
  42. #define D2(x)
  43. #endif
  44. #if CONFIG_JFFS_FS_VERBOSE > 2
  45. #define D3(x) D(x)
  46. #else
  47. #define D3(x)
  48. #endif
  49. #define ASSERT(x) x
  50. /* How many padding bytes should be inserted between two chunks of data
  51.    on the flash?  */
  52. #define JFFS_GET_PAD_BYTES(size) ( (JFFS_ALIGN_SIZE-1) & -(__u32)(size) )
  53. #define JFFS_PAD(size) ( (size + (JFFS_ALIGN_SIZE-1)) & ~(JFFS_ALIGN_SIZE-1) )
  54. void jffs_free_fm(struct jffs_fm *n);
  55. struct jffs_fm *jffs_alloc_fm(void);
  56. struct jffs_node_ref
  57. {
  58. struct jffs_node *node;
  59. struct jffs_node_ref *next;
  60. };
  61. /* The struct jffs_fm represents a chunk of data in the flash memory.  */
  62. struct jffs_fm
  63. {
  64. __u32 offset;
  65. __u32 size;
  66. struct jffs_fm *prev;
  67. struct jffs_fm *next;
  68. struct jffs_node_ref *nodes; /* USED if != 0.  */
  69. };
  70. struct jffs_fmcontrol
  71. {
  72. __u32 flash_size;
  73. __u32 used_size;
  74. __u32 dirty_size;
  75. __u32 free_size;
  76. __u32 sector_size;
  77. __u32 min_free_size;  /* The minimum free space needed to be able
  78.  to perform garbage collections.  */
  79. __u32 max_chunk_size; /* The maximum size of a chunk of data.  */
  80. struct mtd_info *mtd;
  81. struct jffs_control *c;
  82. struct jffs_fm *head;
  83. struct jffs_fm *tail;
  84. struct jffs_fm *head_extra;
  85. struct jffs_fm *tail_extra;
  86. struct semaphore biglock;
  87. };
  88. /* Notice the two members head_extra and tail_extra in the jffs_control
  89.    structure above. Those are only used during the scanning of the flash
  90.    memory; while the file system is being built. If the data in the flash
  91.    memory is organized like
  92.       +----------------+------------------+----------------+
  93.       |  USED / DIRTY  |       FREE       |  USED / DIRTY  |
  94.       +----------------+------------------+----------------+
  95.    then the scan is split in two parts. The first scanned part of the
  96.    flash memory is organized through the members head and tail. The
  97.    second scanned part is organized with head_extra and tail_extra. When
  98.    the scan is completed, the two lists are merged together. The jffs_fm
  99.    struct that head_extra references is the logical beginning of the
  100.    flash memory so it will be referenced by the head member.  */
  101. struct jffs_fmcontrol *jffs_build_begin(struct jffs_control *c, kdev_t dev);
  102. int jffs_build_end(struct jffs_fmcontrol *fmc, __u32 head_offset);
  103. void jffs_cleanup_fmcontrol(struct jffs_fmcontrol *fmc);
  104. int jffs_fmalloc(struct jffs_fmcontrol *fmc, __u32 size,
  105.  struct jffs_node *node, struct jffs_fm **result);
  106. int jffs_fmfree(struct jffs_fmcontrol *fmc, struct jffs_fm *fm,
  107. struct jffs_node *node);
  108. __u32 jffs_free_size1(struct jffs_fmcontrol *fmc);
  109. __u32 jffs_free_size2(struct jffs_fmcontrol *fmc);
  110. void jffs_sync_erase(struct jffs_fmcontrol *fmc, int erased_size);
  111. struct jffs_fm *jffs_cut_node(struct jffs_fmcontrol *fmc, __u32 size);
  112. struct jffs_node *jffs_get_oldest_node(struct jffs_fmcontrol *fmc);
  113. long jffs_erasable_size(struct jffs_fmcontrol *fmc);
  114. struct jffs_fm *jffs_fmalloced(struct jffs_fmcontrol *fmc, __u32 offset,
  115.        __u32 size, struct jffs_node *node);
  116. int jffs_add_node(struct jffs_node *node);
  117. void jffs_fmfree_partly(struct jffs_fmcontrol *fmc, struct jffs_fm *fm,
  118. __u32 size);
  119. void jffs_print_fmcontrol(struct jffs_fmcontrol *fmc);
  120. void jffs_print_fm(struct jffs_fm *fm);
  121. void jffs_print_node_ref(struct jffs_node_ref *ref);
  122. #endif /* __LINUX_JFFS_FM_H__  */