1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#ifndef __MTD_MTD_H__
21#define __MTD_MTD_H__
22
23#include <linux/types.h>
24#include <linux/uio.h>
25#include <linux/notifier.h>
26#include <linux/device.h>
27
28#include <mtd/mtd-abi.h>
29
30#include <asm/div64.h>
31
32#define MTD_CHAR_MAJOR 90
33#define MTD_BLOCK_MAJOR 31
34
35#define MTD_ERASE_PENDING 0x01
36#define MTD_ERASING 0x02
37#define MTD_ERASE_SUSPEND 0x04
38#define MTD_ERASE_DONE 0x08
39#define MTD_ERASE_FAILED 0x10
40
41#define MTD_FAIL_ADDR_UNKNOWN -1LL
42
43
44
45
46
47
48struct erase_info {
49 struct mtd_info *mtd;
50 uint64_t addr;
51 uint64_t len;
52 uint64_t fail_addr;
53 u_long time;
54 u_long retries;
55 unsigned dev;
56 unsigned cell;
57 void (*callback) (struct erase_info *self);
58 u_long priv;
59 u_char state;
60 struct erase_info *next;
61};
62
63struct mtd_erase_region_info {
64 uint64_t offset;
65 uint32_t erasesize;
66 uint32_t numblocks;
67 unsigned long *lockmap;
68};
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89struct mtd_oob_ops {
90 unsigned int mode;
91 size_t len;
92 size_t retlen;
93 size_t ooblen;
94 size_t oobretlen;
95 uint32_t ooboffs;
96 uint8_t *datbuf;
97 uint8_t *oobbuf;
98};
99
100#define MTD_MAX_OOBFREE_ENTRIES_LARGE 32
101#define MTD_MAX_ECCPOS_ENTRIES_LARGE 640
102
103
104
105
106
107
108struct nand_ecclayout {
109 __u32 eccbytes;
110 __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE];
111 __u32 oobavail;
112 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE];
113};
114
115struct module;
116
117struct mtd_info {
118 u_char type;
119 uint32_t flags;
120 uint64_t size;
121
122
123
124
125
126 uint32_t erasesize;
127
128
129
130
131
132
133
134 uint32_t writesize;
135
136
137
138
139
140
141
142
143
144
145 uint32_t writebufsize;
146
147 uint32_t oobsize;
148 uint32_t oobavail;
149
150
151
152
153
154 unsigned int erasesize_shift;
155 unsigned int writesize_shift;
156
157 unsigned int erasesize_mask;
158 unsigned int writesize_mask;
159
160
161
162
163
164
165
166
167 unsigned int bitflip_threshold;
168
169
170 const char *name;
171 int index;
172
173
174 struct nand_ecclayout *ecclayout;
175
176
177 unsigned int ecc_strength;
178
179
180
181
182 int numeraseregions;
183 struct mtd_erase_region_info *eraseregions;
184
185
186
187
188
189 int (*_erase) (struct mtd_info *mtd, struct erase_info *instr);
190 int (*_point) (struct mtd_info *mtd, loff_t from, size_t len,
191 size_t *retlen, void **virt, resource_size_t *phys);
192 int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
193 unsigned long (*_get_unmapped_area) (struct mtd_info *mtd,
194 unsigned long len,
195 unsigned long offset,
196 unsigned long flags);
197 int (*_read) (struct mtd_info *mtd, loff_t from, size_t len,
198 size_t *retlen, u_char *buf);
199 int (*_write) (struct mtd_info *mtd, loff_t to, size_t len,
200 size_t *retlen, const u_char *buf);
201 int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len,
202 size_t *retlen, const u_char *buf);
203 int (*_read_oob) (struct mtd_info *mtd, loff_t from,
204 struct mtd_oob_ops *ops);
205 int (*_write_oob) (struct mtd_info *mtd, loff_t to,
206 struct mtd_oob_ops *ops);
207 int (*_get_fact_prot_info) (struct mtd_info *mtd, struct otp_info *buf,
208 size_t len);
209 int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from,
210 size_t len, size_t *retlen, u_char *buf);
211 int (*_get_user_prot_info) (struct mtd_info *mtd, struct otp_info *buf,
212 size_t len);
213 int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from,
214 size_t len, size_t *retlen, u_char *buf);
215 int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to,
216 size_t len, size_t *retlen, u_char *buf);
217 int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from,
218 size_t len);
219 int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs,
220 unsigned long count, loff_t to, size_t *retlen);
221 void (*_sync) (struct mtd_info *mtd);
222 int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
223 int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
224 int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
225 int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs);
226 int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs);
227 int (*_suspend) (struct mtd_info *mtd);
228 void (*_resume) (struct mtd_info *mtd);
229
230
231
232
233 int (*_get_device) (struct mtd_info *mtd);
234 void (*_put_device) (struct mtd_info *mtd);
235
236
237
238
239 struct backing_dev_info *backing_dev_info;
240
241 struct notifier_block reboot_notifier;
242
243
244 struct mtd_ecc_stats ecc_stats;
245
246 int subpage_sft;
247
248 void *priv;
249
250 struct module *owner;
251 struct device dev;
252 int usecount;
253};
254
255int mtd_erase(struct mtd_info *mtd, struct erase_info *instr);
256int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
257 void **virt, resource_size_t *phys);
258int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
259unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len,
260 unsigned long offset, unsigned long flags);
261int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
262 u_char *buf);
263int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
264 const u_char *buf);
265int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
266 const u_char *buf);
267
268int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops);
269
270static inline int mtd_write_oob(struct mtd_info *mtd, loff_t to,
271 struct mtd_oob_ops *ops)
272{
273 ops->retlen = ops->oobretlen = 0;
274 if (!mtd->_write_oob)
275 return -EOPNOTSUPP;
276 if (!(mtd->flags & MTD_WRITEABLE))
277 return -EROFS;
278 return mtd->_write_oob(mtd, to, ops);
279}
280
281int mtd_get_fact_prot_info(struct mtd_info *mtd, struct otp_info *buf,
282 size_t len);
283int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
284 size_t *retlen, u_char *buf);
285int mtd_get_user_prot_info(struct mtd_info *mtd, struct otp_info *buf,
286 size_t len);
287int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
288 size_t *retlen, u_char *buf);
289int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len,
290 size_t *retlen, u_char *buf);
291int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len);
292
293int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
294 unsigned long count, loff_t to, size_t *retlen);
295
296static inline void mtd_sync(struct mtd_info *mtd)
297{
298 if (mtd->_sync)
299 mtd->_sync(mtd);
300}
301
302int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
303int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
304int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len);
305int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs);
306int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs);
307
308static inline int mtd_suspend(struct mtd_info *mtd)
309{
310 return mtd->_suspend ? mtd->_suspend(mtd) : 0;
311}
312
313static inline void mtd_resume(struct mtd_info *mtd)
314{
315 if (mtd->_resume)
316 mtd->_resume(mtd);
317}
318
319static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd)
320{
321 if (mtd->erasesize_shift)
322 return sz >> mtd->erasesize_shift;
323 do_div(sz, mtd->erasesize);
324 return sz;
325}
326
327static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd)
328{
329 if (mtd->erasesize_shift)
330 return sz & mtd->erasesize_mask;
331 return do_div(sz, mtd->erasesize);
332}
333
334static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd)
335{
336 if (mtd->writesize_shift)
337 return sz >> mtd->writesize_shift;
338 do_div(sz, mtd->writesize);
339 return sz;
340}
341
342static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd)
343{
344 if (mtd->writesize_shift)
345 return sz & mtd->writesize_mask;
346 return do_div(sz, mtd->writesize);
347}
348
349static inline int mtd_has_oob(const struct mtd_info *mtd)
350{
351 return mtd->_read_oob && mtd->_write_oob;
352}
353
354static inline int mtd_can_have_bb(const struct mtd_info *mtd)
355{
356 return !!mtd->_block_isbad;
357}
358
359
360
361struct mtd_partition;
362struct mtd_part_parser_data;
363
364extern int mtd_device_parse_register(struct mtd_info *mtd,
365 const char * const *part_probe_types,
366 struct mtd_part_parser_data *parser_data,
367 const struct mtd_partition *defparts,
368 int defnr_parts);
369#define mtd_device_register(master, parts, nr_parts) \
370 mtd_device_parse_register(master, NULL, NULL, parts, nr_parts)
371extern int mtd_device_unregister(struct mtd_info *master);
372extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
373extern int __get_mtd_device(struct mtd_info *mtd);
374extern void __put_mtd_device(struct mtd_info *mtd);
375extern struct mtd_info *get_mtd_device_nm(const char *name);
376extern void put_mtd_device(struct mtd_info *mtd);
377
378
379struct mtd_notifier {
380 void (*add)(struct mtd_info *mtd);
381 void (*remove)(struct mtd_info *mtd);
382 struct list_head list;
383};
384
385
386extern void register_mtd_user (struct mtd_notifier *new);
387extern int unregister_mtd_user (struct mtd_notifier *old);
388void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size);
389
390void mtd_erase_callback(struct erase_info *instr);
391
392static inline int mtd_is_bitflip(int err) {
393 return err == -EUCLEAN;
394}
395
396static inline int mtd_is_eccerr(int err) {
397 return err == -EBADMSG;
398}
399
400static inline int mtd_is_bitflip_or_eccerr(int err) {
401 return mtd_is_bitflip(err) || mtd_is_eccerr(err);
402}
403
404#endif
405