blob: f43e9b49b751bd479e033e154cc0440689f9ff52 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Thomas Gleixner61ecfa82005-11-07 11:15:31 +00002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * struct flchip definition
Thomas Gleixner61ecfa82005-11-07 11:15:31 +00004 *
5 * Contains information about the location and state of a given flash device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * (C) 2000 Red Hat. GPLd.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#ifndef __MTD_FLASHCHIP_H__
11#define __MTD_FLASHCHIP_H__
12
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
Thomas Gleixner61ecfa82005-11-07 11:15:31 +000015 * has asm/spinlock.h, or 2.4, which has linux/spinlock.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17#include <linux/sched.h>
Stefani Seiboldc4e77372010-04-18 22:46:44 +020018#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Thomas Gleixner61ecfa82005-11-07 11:15:31 +000020typedef enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 FL_READY,
22 FL_STATUS,
23 FL_CFI_QUERY,
24 FL_JEDEC_QUERY,
25 FL_ERASING,
26 FL_ERASE_SUSPENDING,
27 FL_ERASE_SUSPENDED,
28 FL_WRITING,
29 FL_WRITING_TO_BUFFER,
Nicolas Pitref77814d2005-02-08 17:11:19 +000030 FL_OTP_WRITE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 FL_WRITE_SUSPENDING,
32 FL_WRITE_SUSPENDED,
33 FL_PM_SUSPENDED,
34 FL_SYNCING,
35 FL_UNLOADING,
36 FL_LOCKING,
37 FL_UNLOCKING,
38 FL_POINT,
39 FL_XIP_WHILE_ERASING,
40 FL_XIP_WHILE_WRITING,
Kevin Haoc4a9f882007-10-02 13:56:04 -070041 FL_SHUTDOWN,
Alessandro Rubini30631cb2009-09-20 23:28:14 +020042 /* These 2 come from nand_state_t, which has been unified here */
43 FL_READING,
44 FL_CACHEDPRG,
Mika Korhonen72073022009-10-23 07:50:43 +020045 /* These 4 come from onenand_state_t, which has been unified here */
Alessandro Rubini30631cb2009-09-20 23:28:14 +020046 FL_RESETING,
47 FL_OTPING,
Mika Korhonen72073022009-10-23 07:50:43 +020048 FL_PREPARING_ERASE,
49 FL_VERIFYING_ERASE,
Alessandro Rubini30631cb2009-09-20 23:28:14 +020050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 FL_UNKNOWN
52} flstate_t;
53
54
55
Thomas Gleixner61ecfa82005-11-07 11:15:31 +000056/* NOTE: confusingly, this can be used to refer to more than one chip at a time,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 if they're interleaved. This can even refer to individual partitions on
58 the same physical chip when present. */
59
60struct flchip {
61 unsigned long start; /* Offset within the map */
62 // unsigned long len;
63 /* We omit len for now, because when we group them together
64 we insist that they're all of the same size, and the chip size
65 is held in the next level up. If we get more versatile later,
66 it'll make it a damn sight harder to find which chip we want from
67 a given offset, and we'll want to add the per-chip length field
68 back in.
69 */
70 int ref_point_counter;
71 flstate_t state;
72 flstate_t oldstate;
73
Ben Dooks0514cd92005-03-14 18:27:18 +000074 unsigned int write_suspended:1;
75 unsigned int erase_suspended:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned long in_progress_block_addr;
77
Stefani Seiboldc4e77372010-04-18 22:46:44 +020078 struct mutex mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 wait_queue_head_t wq; /* Wait on here when we're waiting for the chip
80 to be ready */
81 int word_write_time;
82 int buffer_write_time;
83 int erase_time;
84
Anders Grafströme93cafe2008-08-05 18:37:41 +020085 int word_write_time_max;
86 int buffer_write_time_max;
87 int erase_time_max;
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 void *priv;
90};
91
92/* This is used to handle contention on write/erase operations
93 between partitions of the same physical chip. */
94struct flchip_shared {
95 spinlock_t lock;
96 struct flchip *writing;
97 struct flchip *erasing;
98};
99
100
101#endif /* __MTD_FLASHCHIP_H__ */