blktrans.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: blktrans.h,v 1.5 2003/06/23 12:00:08 dwmw2 Exp $
  3.  *
  4.  * (C) 2003 David Woodhouse <dwmw2@infradead.org>
  5.  *
  6.  * Interface to Linux block layer for MTD 'translation layers'.
  7.  *
  8.  */
  9. #ifndef __MTD_TRANS_H__
  10. #define __MTD_TRANS_H__
  11. #include <asm/semaphore.h>
  12. struct hd_geometry;
  13. struct mtd_info;
  14. struct mtd_blktrans_ops;
  15. struct file;
  16. struct inode;
  17. struct mtd_blktrans_dev {
  18. struct mtd_blktrans_ops *tr;
  19. struct list_head list;
  20. struct mtd_info *mtd;
  21. struct semaphore sem;
  22. int devnum;
  23. int blksize;
  24. unsigned long size;
  25. int readonly;
  26. void *blkcore_priv; /* gendisk in 2.5, devfs_handle in 2.4 */
  27. };
  28. struct blkcore_priv; /* Differs for 2.4 and 2.5 kernels; private */
  29. struct mtd_blktrans_ops {
  30. char *name;
  31. int major;
  32. int part_bits;
  33. /* Access functions */
  34. int (*readsect)(struct mtd_blktrans_dev *dev,
  35.     unsigned long block, char *buffer);
  36. int (*writesect)(struct mtd_blktrans_dev *dev,
  37.      unsigned long block, char *buffer);
  38. /* Block layer ioctls */
  39. int (*getgeo)(struct mtd_blktrans_dev *dev, struct hd_geometry *geo);
  40. int (*flush)(struct mtd_blktrans_dev *dev);
  41. /* Called with mtd_table_mutex held; no race with add/remove */
  42. int (*open)(struct mtd_blktrans_dev *dev);
  43. int (*release)(struct mtd_blktrans_dev *dev);
  44. /* Called on {de,}registration and on subsequent addition/removal
  45.    of devices, with mtd_table_mutex held. */
  46. void (*add_mtd)(struct mtd_blktrans_ops *tr, struct mtd_info *mtd);
  47. void (*remove_dev)(struct mtd_blktrans_dev *dev);
  48. struct list_head devs;
  49. struct list_head list;
  50. struct module *owner;
  51. struct mtd_blkcore_priv *blkcore_priv;
  52. };
  53. extern int register_mtd_blktrans(struct mtd_blktrans_ops *tr);
  54. extern int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr);
  55. extern int add_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
  56. extern int del_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
  57.  
  58. #endif /* __MTD_TRANS_H__ */