blob: 354e3a0bc47eb64c8e344030e4e528d690198d16 [file] [log] [blame]
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001/*
Wolfgang Denk932394a2005-08-17 12:55:25 +02002 * Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al.
3 *
4 * Released under GPL
5 */
6
7#ifndef __MTD_MTD_H__
8#define __MTD_MTD_H__
William Juulcfa460a2007-10-31 13:53:06 +01009
Wolfgang Denk932394a2005-08-17 12:55:25 +020010#include <linux/types.h>
11#include <linux/mtd/mtd-abi.h>
12
William Juulcfa460a2007-10-31 13:53:06 +010013#define MTD_CHAR_MAJOR 90
14#define MTD_BLOCK_MAJOR 31
15#define MAX_MTD_DEVICES 32
Wolfgang Denk932394a2005-08-17 12:55:25 +020016
Wolfgang Denk53677ef2008-05-20 16:00:29 +020017#define MTD_ERASE_PENDING 0x01
Wolfgang Denk932394a2005-08-17 12:55:25 +020018#define MTD_ERASING 0x02
19#define MTD_ERASE_SUSPEND 0x04
20#define MTD_ERASE_DONE 0x08
21#define MTD_ERASE_FAILED 0x10
22
Kyungmin Parkd438d502008-08-13 09:11:02 +090023/*
24 * Enumeration for NAND/OneNAND flash chip state
25 */
26enum {
27 FL_READY,
28 FL_READING,
29 FL_WRITING,
30 FL_ERASING,
31 FL_SYNCING,
32 FL_CACHEDPRG,
33 FL_RESETING,
34 FL_UNLOCKING,
35 FL_LOCKING,
36 FL_PM_SUSPENDED,
37};
38
Wolfgang Denk932394a2005-08-17 12:55:25 +020039/* If the erase fails, fail_addr might indicate exactly which block failed. If
40 fail_addr = 0xffffffff, the failure was not at the device level or was not
41 specific to any particular block. */
42struct erase_info {
43 struct mtd_info *mtd;
44 u_int32_t addr;
45 u_int32_t len;
46 u_int32_t fail_addr;
47 u_long time;
48 u_long retries;
49 u_int dev;
50 u_int cell;
51 void (*callback) (struct erase_info *self);
52 u_long priv;
53 u_char state;
54 struct erase_info *next;
55};
56
57struct mtd_erase_region_info {
58 u_int32_t offset; /* At which this region starts, from the beginning of the MTD */
59 u_int32_t erasesize; /* For this region */
60 u_int32_t numblocks; /* Number of blocks of erasesize in this region */
William Juulcfa460a2007-10-31 13:53:06 +010061 unsigned long *lockmap; /* If keeping bitmap of locks */
62};
63
64/*
65 * oob operation modes
66 *
67 * MTD_OOB_PLACE: oob data are placed at the given offset
68 * MTD_OOB_AUTO: oob data are automatically placed at the free areas
69 * which are defined by the ecclayout
70 * MTD_OOB_RAW: mode to read raw data+oob in one chunk. The oob data
71 * is inserted into the data. Thats a raw image of the
72 * flash contents.
73 */
74typedef enum {
75 MTD_OOB_PLACE,
76 MTD_OOB_AUTO,
77 MTD_OOB_RAW,
78} mtd_oob_mode_t;
79
80/**
81 * struct mtd_oob_ops - oob operation operands
82 * @mode: operation mode
83 *
84 * @len: number of data bytes to write/read
85 *
86 * @retlen: number of data bytes written/read
87 *
88 * @ooblen: number of oob bytes to write/read
89 * @oobretlen: number of oob bytes written/read
90 * @ooboffs: offset of oob data in the oob area (only relevant when
91 * mode = MTD_OOB_PLACE)
92 * @datbuf: data buffer - if NULL only oob data are read/written
93 * @oobbuf: oob data buffer
94 *
95 * Note, it is allowed to read more then one OOB area at one go, but not write.
96 * The interface assumes that the OOB write requests program only one page's
97 * OOB area.
98 */
99struct mtd_oob_ops {
100 mtd_oob_mode_t mode;
101 size_t len;
102 size_t retlen;
103 size_t ooblen;
104 size_t oobretlen;
105 uint32_t ooboffs;
106 uint8_t *datbuf;
107 uint8_t *oobbuf;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200108};
109
110struct mtd_info {
111 u_char type;
112 u_int32_t flags;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200113 u_int32_t size; /* Total size of the MTD */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200114
William Juulcfa460a2007-10-31 13:53:06 +0100115 /* "Major" erase size for the device. Naïve users may take this
Wolfgang Denk932394a2005-08-17 12:55:25 +0200116 * to be the only erase size available, or may use the more detailed
117 * information below if they desire
118 */
119 u_int32_t erasesize;
William Juulcfa460a2007-10-31 13:53:06 +0100120 /* Minimal writable flash unit size. In case of NOR flash it is 1 (even
121 * though individual bits can be cleared), in case of NAND flash it is
122 * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR
123 * it is of ECC block size, etc. It is illegal to have writesize = 0.
124 * Any driver registering a struct mtd_info must ensure a writesize of
125 * 1 or larger.
126 */
127 u_int32_t writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200128
Wolfgang Denk4b070802008-08-14 14:41:06 +0200129 u_int32_t oobsize; /* Amount of OOB data per block (e.g. 16) */
130 u_int32_t oobavail; /* Available OOB bytes per block */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200131
Wolfgang Denk4b070802008-08-14 14:41:06 +0200132 /* Kernel-only stuff starts here. */
Scott Woodc45912d2008-10-24 16:20:43 -0500133 const char *name;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200134 int index;
135
William Juulcfa460a2007-10-31 13:53:06 +0100136 /* ecc layout structure pointer - read only ! */
137 struct nand_ecclayout *ecclayout;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200138
139 /* Data for variable erase regions. If numeraseregions is zero,
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200140 * it means that the whole device has erasesize as given above.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200141 */
142 int numeraseregions;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200143 struct mtd_erase_region_info *eraseregions;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200144
Scott Woodc45912d2008-10-24 16:20:43 -0500145 /*
146 * Erase is an asynchronous operation. Device drivers are supposed
147 * to call instr->callback() whenever the operation completes, even
148 * if it completes with a failure.
149 * Callers are supposed to pass a callback function and wait for it
150 * to be called before writing to the block.
151 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200152 int (*erase) (struct mtd_info *mtd, struct erase_info *instr);
153
154 /* This stuff for eXecute-In-Place */
Scott Woodc45912d2008-10-24 16:20:43 -0500155 /* phys is optional and may be set to NULL */
156 int (*point) (struct mtd_info *mtd, loff_t from, size_t len,
157 size_t *retlen, void **virt, phys_addr_t *phys);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200158
159 /* We probably shouldn't allow XIP if the unpoint isn't a NULL */
Scott Woodc45912d2008-10-24 16:20:43 -0500160 void (*unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200161
162
163 int (*read) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
164 int (*write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf);
165
Scott Woodc45912d2008-10-24 16:20:43 -0500166 /* In blackbox flight recorder like scenarios we want to make successful
167 writes in interrupt context. panic_write() is only intended to be
168 called when its known the kernel is about to panic and we need the
169 write to succeed. Since the kernel is not going to be running for much
170 longer, this function can break locks and delay to ensure the write
171 succeeds (but not sleep). */
172
173 int (*panic_write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf);
174
William Juulcfa460a2007-10-31 13:53:06 +0100175 int (*read_oob) (struct mtd_info *mtd, loff_t from,
176 struct mtd_oob_ops *ops);
177 int (*write_oob) (struct mtd_info *mtd, loff_t to,
178 struct mtd_oob_ops *ops);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200179
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200180 /*
181 * Methods to access the protection register area, present in some
Wolfgang Denk932394a2005-08-17 12:55:25 +0200182 * flash devices. The user data is one time programmable but the
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200183 * factory data is read only.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200184 */
William Juulcfa460a2007-10-31 13:53:06 +0100185 int (*get_fact_prot_info) (struct mtd_info *mtd, struct otp_info *buf, size_t len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200186 int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
William Juulcfa460a2007-10-31 13:53:06 +0100187 int (*get_user_prot_info) (struct mtd_info *mtd, struct otp_info *buf, size_t len);
188 int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200189 int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
William Juulcfa460a2007-10-31 13:53:06 +0100190 int (*lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len);
191
192/* XXX U-BOOT XXX */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200193#if 0
William Juulcfa460a2007-10-31 13:53:06 +0100194 /* kvec-based read/write methods.
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200195 NB: The 'count' parameter is the number of _vectors_, each of
Wolfgang Denk932394a2005-08-17 12:55:25 +0200196 which contains an (ofs, len) tuple.
197 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200198 int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200199#endif
William Juulcfa460a2007-10-31 13:53:06 +0100200
Wolfgang Denk932394a2005-08-17 12:55:25 +0200201 /* Sync */
202 void (*sync) (struct mtd_info *mtd);
William Juulcfa460a2007-10-31 13:53:06 +0100203
Wolfgang Denk932394a2005-08-17 12:55:25 +0200204 /* Chip-supported device locking */
205 int (*lock) (struct mtd_info *mtd, loff_t ofs, size_t len);
206 int (*unlock) (struct mtd_info *mtd, loff_t ofs, size_t len);
207
208 /* Power Management functions */
209 int (*suspend) (struct mtd_info *mtd);
210 void (*resume) (struct mtd_info *mtd);
William Juulcfa460a2007-10-31 13:53:06 +0100211
Wolfgang Denk932394a2005-08-17 12:55:25 +0200212 /* Bad block management functions */
213 int (*block_isbad) (struct mtd_info *mtd, loff_t ofs);
214 int (*block_markbad) (struct mtd_info *mtd, loff_t ofs);
215
William Juulcfa460a2007-10-31 13:53:06 +0100216/* XXX U-BOOT XXX */
217#if 0
218 struct notifier_block reboot_notifier; /* default mode before reboot */
219#endif
220
221 /* ECC status information */
222 struct mtd_ecc_stats ecc_stats;
223 /* Subpage shift (NAND) */
224 int subpage_sft;
225
Wolfgang Denk932394a2005-08-17 12:55:25 +0200226 void *priv;
227
228 struct module *owner;
229 int usecount;
William Juulcfa460a2007-10-31 13:53:06 +0100230
231 /* If the driver is something smart, like UBI, it may need to maintain
232 * its own reference counting. The below functions are only for driver.
233 * The driver may register its callbacks. These callbacks are not
234 * supposed to be called by MTD users */
235 int (*get_device) (struct mtd_info *mtd);
236 void (*put_device) (struct mtd_info *mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200237};
238
239
240 /* Kernel-side ioctl definitions */
241
242extern int add_mtd_device(struct mtd_info *mtd);
243extern int del_mtd_device (struct mtd_info *mtd);
244
245extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
William Juulcfa460a2007-10-31 13:53:06 +0100246extern struct mtd_info *get_mtd_device_nm(const char *name);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200247
248extern void put_mtd_device(struct mtd_info *mtd);
249
William Juulcfa460a2007-10-31 13:53:06 +0100250/* XXX U-BOOT XXX */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200251#if 0
252struct mtd_notifier {
253 void (*add)(struct mtd_info *mtd);
254 void (*remove)(struct mtd_info *mtd);
255 struct list_head list;
256};
257
Wolfgang Denk932394a2005-08-17 12:55:25 +0200258extern void register_mtd_user (struct mtd_notifier *new);
259extern int unregister_mtd_user (struct mtd_notifier *old);
260
261int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
262 unsigned long count, loff_t to, size_t *retlen);
263
264int default_mtd_readv(struct mtd_info *mtd, struct kvec *vecs,
265 unsigned long count, loff_t from, size_t *retlen);
266#endif
267
Wolfgang Denk932394a2005-08-17 12:55:25 +0200268#ifdef CONFIG_MTD_PARTITIONS
269void mtd_erase_callback(struct erase_info *instr);
270#else
271static inline void mtd_erase_callback(struct erase_info *instr)
272{
273 if (instr->callback)
274 instr->callback(instr);
275}
276#endif
277
278/*
279 * Debugging macro and defines
280 */
281#define MTD_DEBUG_LEVEL0 (0) /* Quiet */
282#define MTD_DEBUG_LEVEL1 (1) /* Audible */
283#define MTD_DEBUG_LEVEL2 (2) /* Loud */
284#define MTD_DEBUG_LEVEL3 (3) /* Noisy */
285
286#ifdef CONFIG_MTD_DEBUG
Scott Wood3167c532008-06-20 12:38:57 -0500287#define MTDDEBUG(n, args...) \
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200288 do { \
Wolfgang Denk932394a2005-08-17 12:55:25 +0200289 if (n <= CONFIG_MTD_DEBUG_VERBOSE) \
290 printk(KERN_INFO args); \
291 } while(0)
292#else /* CONFIG_MTD_DEBUG */
Scott Woodc45912d2008-10-24 16:20:43 -0500293#define MTDDEBUG(n, args...) \
294 do { \
295 if (0) \
296 printk(KERN_INFO args); \
297 } while(0)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200298#endif /* CONFIG_MTD_DEBUG */
299
300#endif /* __MTD_MTD_H__ */