3 * struct flchip definition
5 * Contains information about the location and state of a given flash device
7 * (C) 2000 Red Hat. GPLd.
9 * $Id: flashchip.h,v 1.18 2005/11/07 11:14:54 gleixner Exp $
13 #ifndef __MTD_FLASHCHIP_H__
14 #define __MTD_FLASHCHIP_H__
16 /* For spinlocks. sched.h includes spinlock.h from whichever directory it
17 * happens to be in - so we don't have to care whether we're on 2.2, which
18 * has asm/spinlock.h, or 2.4, which has linux/spinlock.h
20 #include <linux/sched.h>
49 /* NOTE: confusingly, this can be used to refer to more than one chip at a time,
50 if they're interleaved. This can even refer to individual partitions on
51 the same physical chip when present. */
54 unsigned long start; /* Offset within the map */
56 /* We omit len for now, because when we group them together
57 we insist that they're all of the same size, and the chip size
58 is held in the next level up. If we get more versatile later,
59 it'll make it a damn sight harder to find which chip we want from
60 a given offset, and we'll want to add the per-chip length field
63 int ref_point_counter;
67 unsigned int write_suspended:1;
68 unsigned int erase_suspended:1;
69 unsigned long in_progress_block_addr;
72 spinlock_t _spinlock; /* We do it like this because sometimes they'll be shared. */
73 wait_queue_head_t wq; /* Wait on here when we're waiting for the chip
76 int buffer_write_time;
82 /* This is used to handle contention on write/erase operations
83 between partitions of the same physical chip. */
84 struct flchip_shared {
86 struct flchip *writing;
87 struct flchip *erasing;
91 #endif /* __MTD_FLASHCHIP_H__ */