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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * struct flchip definition
  3.  * 
  4.  * Contains information about the location and state of a given flash device 
  5.  *
  6.  * (C) 2000 Red Hat. GPLd.
  7.  *
  8.  * $Id: flashchip.h,v 1.7 2001/01/18 03:52:36 nico Exp $
  9.  *
  10.  */
  11. #ifndef __MTD_FLASHCHIP_H__
  12. #define __MTD_FLASHCHIP_H__
  13. /* For spinlocks. sched.h includes spinlock.h from whichever directory it
  14.  * happens to be in - so we don't have to care whether we're on 2.2, which
  15.  * has asm/spinlock.h, or 2.4, which has linux/spinlock.h 
  16.  */
  17. #include <linux/sched.h>
  18. typedef enum { 
  19. FL_READY,
  20. FL_STATUS,
  21. FL_CFI_QUERY,
  22. FL_JEDEC_QUERY,
  23. FL_ERASING,
  24. FL_ERASE_SUSPENDING,
  25. FL_ERASE_SUSPENDED,
  26. FL_WRITING,
  27. FL_WRITING_TO_BUFFER,
  28. FL_WRITE_SUSPENDING,
  29. FL_WRITE_SUSPENDED,
  30. FL_PM_SUSPENDED,
  31. FL_SYNCING,
  32. FL_UNLOADING,
  33. FL_LOCKING,
  34. FL_UNLOCKING,
  35. FL_UNKNOWN
  36. } flstate_t;
  37. /* NOTE: confusingly, this can be used to refer to more than one chip at a time, 
  38.    if they're interleaved. */
  39. struct flchip {
  40. unsigned long start; /* Offset within the map */
  41. // unsigned long len;
  42. /* We omit len for now, because when we group them together
  43.    we insist that they're all of the same size, and the chip size
  44.    is held in the next level up. If we get more versatile later,
  45.    it'll make it a damn sight harder to find which chip we want from
  46.    a given offset, and we'll want to add the per-chip length field
  47.    back in.
  48. */
  49. flstate_t state;
  50. flstate_t oldstate;
  51. spinlock_t *mutex;
  52. spinlock_t _spinlock; /* We do it like this because sometimes they'll be shared. */
  53. wait_queue_head_t wq; /* Wait on here when we're waiting for the chip
  54.      to be ready */
  55. int word_write_time;
  56. int buffer_write_time;
  57. int erase_time;
  58. };
  59. #endif /* __MTD_FLASHCHIP_H__ */