partitions.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * MTD partitioning layer definitions
  3.  *
  4.  * (C) 2000 Nicolas Pitre <nico@cam.org>
  5.  *
  6.  * This code is GPL
  7.  *
  8.  * $Id: partitions.h,v 1.8 2002/03/08 16:34:36 rkaiser Exp $
  9.  */
  10. #ifndef MTD_PARTITIONS_H
  11. #define MTD_PARTITIONS_H
  12. #include <linux/types.h>
  13. /*
  14.  * Partition definition structure:
  15.  * 
  16.  * An array of struct partition is passed along with a MTD object to
  17.  * add_mtd_partitions() to create them.
  18.  *
  19.  * For each partition, these fields are available:
  20.  * name: string that will be used to label the partition's MTD device.
  21.  * size: the partition size; if defined as MTDPART_SIZ_FULL, the partition 
  22.  *  will extend to the end of the master MTD device.
  23.  * offset: absolute starting position within the master MTD device; if 
  24.  *  defined as MTDPART_OFS_APPEND, the partition will start where the 
  25.  *  previous one ended; if MTDPART_OFS_NXTBLK, at the next erase block.
  26.  * mask_flags: contains flags that have to be masked (removed) from the 
  27.  *  master MTD flag set for the corresponding MTD partition.
  28.  *  For example, to force a read-only partition, simply adding 
  29.  *  MTD_WRITEABLE to the mask_flags will do the trick.
  30.  *
  31.  * Note: writeable partitions require their size and offset be 
  32.  * erasesize aligned (e.g. use MTDPART_OFS_NEXTBLK).
  33.  */ 
  34. struct mtd_partition {
  35. char *name; /* identifier string */
  36. u_int32_t size; /* partition size */
  37. u_int32_t offset; /* offset within the master MTD space */
  38. u_int32_t mask_flags; /* master MTD flags to mask out for this partition */
  39. struct mtd_info **mtdp; /* pointer to store the MTD object */
  40. };
  41. #define MTDPART_OFS_NXTBLK (-2)
  42. #define MTDPART_OFS_APPEND (-1)
  43. #define MTDPART_SIZ_FULL (0)
  44. int add_mtd_partitions(struct mtd_info *, struct mtd_partition *, int);
  45. int del_mtd_partitions(struct mtd_info *);
  46. #endif