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.14 2004/06/15 16:44:59 nico 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>
45 /* NOTE: confusingly, this can be used to refer to more than one chip at a time,
46 if they're interleaved. This can even refer to individual partitions on
47 the same physical chip when present. */
50 unsigned long start
; /* Offset within the map */
52 /* We omit len for now, because when we group them together
53 we insist that they're all of the same size, and the chip size
54 is held in the next level up. If we get more versatile later,
55 it'll make it a damn sight harder to find which chip we want from
56 a given offset, and we'll want to add the per-chip length field
59 int ref_point_counter
;
63 int write_suspended
:1;
64 int erase_suspended
:1;
65 unsigned long in_progress_block_addr
;
68 spinlock_t _spinlock
; /* We do it like this because sometimes they'll be shared. */
69 wait_queue_head_t wq
; /* Wait on here when we're waiting for the chip
72 int buffer_write_time
;
78 /* This is used to handle contention on write/erase operations
79 between partitions of the same physical chip. */
80 struct flchip_shared
{
82 struct flchip
*writing
;
83 struct flchip
*erasing
;
87 #endif /* __MTD_FLASHCHIP_H__ */