blob: e3d3fc73fd62cbf2900086ec18114e59c1dc0d28 [file] [log] [blame]
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001/*
Heiko Schocherf5895d12014-06-24 10:10:04 +02002 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02003 *
4 * Released under GPL
Heiko Schocherf5895d12014-06-24 10:10:04 +02005 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02006 */
7
8#ifndef __MTD_MTD_H__
9#define __MTD_MTD_H__
William Juul52c07962007-10-31 13:53:06 +010010
Heiko Schocherf5895d12014-06-24 10:10:04 +020011#ifndef __UBOOT__
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020012#include <linux/types.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020013#include <linux/uio.h>
14#include <linux/notifier.h>
15#include <linux/device.h>
16
17#include <mtd/mtd-abi.h>
18
19#include <asm/div64.h>
20#else
21#include <linux/compat.h>
Sergey Lapin3a38a552013-01-14 03:46:50 +000022#include <mtd/mtd-abi.h>
23#include <asm/errno.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020024#include <div64.h>
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020025
William Juul52c07962007-10-31 13:53:06 +010026#define MAX_MTD_DEVICES 32
Heiko Schocherf5895d12014-06-24 10:10:04 +020027#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020028
Wolfgang Denka1be4762008-05-20 16:00:29 +020029#define MTD_ERASE_PENDING 0x01
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020030#define MTD_ERASING 0x02
31#define MTD_ERASE_SUSPEND 0x04
Heiko Schocherf5895d12014-06-24 10:10:04 +020032#define MTD_ERASE_DONE 0x08
33#define MTD_ERASE_FAILED 0x10
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020034
Heiko Schocherf5895d12014-06-24 10:10:04 +020035#define MTD_FAIL_ADDR_UNKNOWN -1LL
Stefan Roese586b3a62009-05-11 16:03:55 +020036
Kyungmin Park396b0c42008-08-13 09:11:02 +090037/*
Heiko Schocherf5895d12014-06-24 10:10:04 +020038 * If the erase fails, fail_addr might indicate exactly which block failed. If
39 * fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level
40 * or was not specific to any particular block.
Kyungmin Park396b0c42008-08-13 09:11:02 +090041 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020042struct erase_info {
43 struct mtd_info *mtd;
Stefan Roese586b3a62009-05-11 16:03:55 +020044 uint64_t addr;
45 uint64_t len;
46 uint64_t fail_addr;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020047 u_long time;
48 u_long retries;
Heiko Schocherf5895d12014-06-24 10:10:04 +020049 unsigned dev;
50 unsigned cell;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020051 void (*callback) (struct erase_info *self);
52 u_long priv;
53 u_char state;
54 struct erase_info *next;
Marek Vasut971d9a12011-09-12 06:04:06 +020055 int scrub;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020056};
57
58struct mtd_erase_region_info {
Heiko Schocherf5895d12014-06-24 10:10:04 +020059 uint64_t offset; /* At which this region starts, from the beginning of the MTD */
60 uint32_t erasesize; /* For this region */
61 uint32_t numblocks; /* Number of blocks of erasesize in this region */
William Juul52c07962007-10-31 13:53:06 +010062 unsigned long *lockmap; /* If keeping bitmap of locks */
63};
64
William Juul52c07962007-10-31 13:53:06 +010065/**
66 * struct mtd_oob_ops - oob operation operands
67 * @mode: operation mode
68 *
69 * @len: number of data bytes to write/read
70 *
71 * @retlen: number of data bytes written/read
72 *
73 * @ooblen: number of oob bytes to write/read
74 * @oobretlen: number of oob bytes written/read
75 * @ooboffs: offset of oob data in the oob area (only relevant when
Sergey Lapin3a38a552013-01-14 03:46:50 +000076 * mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW)
William Juul52c07962007-10-31 13:53:06 +010077 * @datbuf: data buffer - if NULL only oob data are read/written
78 * @oobbuf: oob data buffer
79 *
Heiko Schocherf5895d12014-06-24 10:10:04 +020080 * Note, it is allowed to read more than one OOB area at one go, but not write.
William Juul52c07962007-10-31 13:53:06 +010081 * The interface assumes that the OOB write requests program only one page's
82 * OOB area.
83 */
84struct mtd_oob_ops {
Sergey Lapin3a38a552013-01-14 03:46:50 +000085 unsigned int mode;
William Juul52c07962007-10-31 13:53:06 +010086 size_t len;
87 size_t retlen;
88 size_t ooblen;
89 size_t oobretlen;
90 uint32_t ooboffs;
91 uint8_t *datbuf;
92 uint8_t *oobbuf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020093};
94
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +053095#ifdef CONFIG_SYS_NAND_MAX_OOBFREE
96#define MTD_MAX_OOBFREE_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_OOBFREE
97#else
98#define MTD_MAX_OOBFREE_ENTRIES_LARGE 32
99#endif
100
101#ifdef CONFIG_SYS_NAND_MAX_ECCPOS
102#define MTD_MAX_ECCPOS_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_ECCPOS
103#else
Siva Durga Prasad Paladuguf16bd952015-04-28 18:16:03 +0530104#define MTD_MAX_ECCPOS_ENTRIES_LARGE 680
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530105#endif
106
107/*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200108 * Internal ECC layout control structure. For historical reasons, there is a
109 * similar, smaller struct nand_ecclayout_user (in mtd-abi.h) that is retained
110 * for export to user-space via the ECCGETLAYOUT ioctl.
111 * nand_ecclayout should be expandable in the future simply by the above macros.
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530112 */
113struct nand_ecclayout {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200114 __u32 eccbytes;
115 __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE];
116 __u32 oobavail;
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530117 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE];
118};
119
Heiko Schocherf5895d12014-06-24 10:10:04 +0200120struct module; /* only needed for owner field in mtd_info */
121
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200122struct mtd_info {
123 u_char type;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200124 uint32_t flags;
125 uint64_t size; // Total size of the MTD
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200126
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +0200127 /* "Major" erase size for the device. Naïve users may take this
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200128 * to be the only erase size available, or may use the more detailed
129 * information below if they desire
130 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200131 uint32_t erasesize;
William Juul52c07962007-10-31 13:53:06 +0100132 /* Minimal writable flash unit size. In case of NOR flash it is 1 (even
133 * though individual bits can be cleared), in case of NAND flash it is
134 * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR
135 * it is of ECC block size, etc. It is illegal to have writesize = 0.
136 * Any driver registering a struct mtd_info must ensure a writesize of
137 * 1 or larger.
138 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200139 uint32_t writesize;
140
141 /*
142 * Size of the write buffer used by the MTD. MTD devices having a write
143 * buffer can write multiple writesize chunks at a time. E.g. while
144 * writing 4 * writesize bytes to a device with 2 * writesize bytes
145 * buffer the MTD driver can (but doesn't have to) do 2 writesize
146 * operations, but not 4. Currently, all NANDs have writebufsize
147 * equivalent to writesize (NAND page size). Some NOR flashes do have
148 * writebufsize greater than writesize.
149 */
150 uint32_t writebufsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200151
Heiko Schocherf5895d12014-06-24 10:10:04 +0200152 uint32_t oobsize; // Amount of OOB data per block (e.g. 16)
153 uint32_t oobavail; // Available OOB bytes per block
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200154
Sergey Lapin3a38a552013-01-14 03:46:50 +0000155 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200156 * If erasesize is a power of 2 then the shift is stored in
157 * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize.
158 */
159 unsigned int erasesize_shift;
160 unsigned int writesize_shift;
161 /* Masks based on erasesize_shift and writesize_shift */
162 unsigned int erasesize_mask;
163 unsigned int writesize_mask;
164
165 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000166 * read ops return -EUCLEAN if max number of bitflips corrected on any
167 * one region comprising an ecc step equals or exceeds this value.
168 * Settable by driver, else defaults to ecc_strength. User can override
169 * in sysfs. N.B. The meaning of the -EUCLEAN return code has changed;
170 * see Documentation/ABI/testing/sysfs-class-mtd for more detail.
171 */
172 unsigned int bitflip_threshold;
173
Heiko Schocherf5895d12014-06-24 10:10:04 +0200174 // Kernel-only stuff starts here.
175#ifndef __UBOOT__
Scott Wood3628f002008-10-24 16:20:43 -0500176 const char *name;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200177#else
178 char *name;
179#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200180 int index;
181
Sergey Lapin3a38a552013-01-14 03:46:50 +0000182 /* ECC layout structure pointer - read only! */
William Juul52c07962007-10-31 13:53:06 +0100183 struct nand_ecclayout *ecclayout;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200184
Heiko Schocherf5895d12014-06-24 10:10:04 +0200185 /* the ecc step size. */
186 unsigned int ecc_step_size;
187
Sergey Lapin3a38a552013-01-14 03:46:50 +0000188 /* max number of correctible bit errors per ecc step */
189 unsigned int ecc_strength;
190
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200191 /* Data for variable erase regions. If numeraseregions is zero,
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200192 * it means that the whole device has erasesize as given above.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200193 */
194 int numeraseregions;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200195 struct mtd_erase_region_info *eraseregions;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200196
Scott Wood3628f002008-10-24 16:20:43 -0500197 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000198 * Do not call via these pointers, use corresponding mtd_*()
199 * wrappers instead.
Scott Wood3628f002008-10-24 16:20:43 -0500200 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000201 int (*_erase) (struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200202#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000203 int (*_point) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200204 size_t *retlen, void **virt, resource_size_t *phys);
205 int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
206#endif
207 unsigned long (*_get_unmapped_area) (struct mtd_info *mtd,
208 unsigned long len,
209 unsigned long offset,
210 unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000211 int (*_read) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200212 size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000213 int (*_write) (struct mtd_info *mtd, loff_t to, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200214 size_t *retlen, const u_char *buf);
215 int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len,
216 size_t *retlen, const u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000217 int (*_read_oob) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200218 struct mtd_oob_ops *ops);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000219 int (*_write_oob) (struct mtd_info *mtd, loff_t to,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200220 struct mtd_oob_ops *ops);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200221 int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len,
222 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000223 int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200224 size_t len, size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200225 int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len,
226 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000227 int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200228 size_t len, size_t *retlen, u_char *buf);
229 int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to,
230 size_t len, size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000231 int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200232 size_t len);
233#ifndef __UBOOT__
234 int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs,
235 unsigned long count, loff_t to, size_t *retlen);
236#endif
Sergey Lapin3a38a552013-01-14 03:46:50 +0000237 void (*_sync) (struct mtd_info *mtd);
238 int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
239 int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200240 int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300241 int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000242 int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs);
243 int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200244#ifndef __UBOOT__
245 int (*_suspend) (struct mtd_info *mtd);
246 void (*_resume) (struct mtd_info *mtd);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200247 void (*_reboot) (struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200248#endif
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200249 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000250 * If the driver is something smart, like UBI, it may need to maintain
251 * its own reference counting. The below functions are only for driver.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200252 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000253 int (*_get_device) (struct mtd_info *mtd);
254 void (*_put_device) (struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100255
Heiko Schocherf5895d12014-06-24 10:10:04 +0200256#ifndef __UBOOT__
257 /* Backing device capabilities for this device
258 * - provides mmap capabilities
259 */
260 struct backing_dev_info *backing_dev_info;
261
William Juul52c07962007-10-31 13:53:06 +0100262 struct notifier_block reboot_notifier; /* default mode before reboot */
263#endif
264
265 /* ECC status information */
266 struct mtd_ecc_stats ecc_stats;
267 /* Subpage shift (NAND) */
268 int subpage_sft;
269
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200270 void *priv;
271
272 struct module *owner;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200273#ifndef __UBOOT__
274 struct device dev;
275#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200276 int usecount;
277};
278
Sergey Lapin3a38a552013-01-14 03:46:50 +0000279int mtd_erase(struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200280#ifndef __UBOOT__
281int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
282 void **virt, resource_size_t *phys);
283int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
284#endif
285unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len,
286 unsigned long offset, unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000287int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
288 u_char *buf);
289int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
290 const u_char *buf);
291int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
292 const u_char *buf);
293
294int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops);
295
296static inline int mtd_write_oob(struct mtd_info *mtd, loff_t to,
297 struct mtd_oob_ops *ops)
298{
299 ops->retlen = ops->oobretlen = 0;
300 if (!mtd->_write_oob)
301 return -EOPNOTSUPP;
302 if (!(mtd->flags & MTD_WRITEABLE))
303 return -EROFS;
304 return mtd->_write_oob(mtd, to, ops);
305}
306
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200307int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
308 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000309int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
310 size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200311int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
312 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000313int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
314 size_t *retlen, u_char *buf);
315int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len,
316 size_t *retlen, u_char *buf);
317int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len);
318
Heiko Schocherf5895d12014-06-24 10:10:04 +0200319#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000320int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
321 unsigned long count, loff_t to, size_t *retlen);
322#endif
323
324static inline void mtd_sync(struct mtd_info *mtd)
325{
326 if (mtd->_sync)
327 mtd->_sync(mtd);
328}
329
330int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
331int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
332int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300333int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000334int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs);
335int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs);
336
Heiko Schocherf5895d12014-06-24 10:10:04 +0200337#ifndef __UBOOT__
338static inline int mtd_suspend(struct mtd_info *mtd)
339{
340 return mtd->_suspend ? mtd->_suspend(mtd) : 0;
341}
342
343static inline void mtd_resume(struct mtd_info *mtd)
344{
345 if (mtd->_resume)
346 mtd->_resume(mtd);
347}
348#endif
349
Stefan Roese586b3a62009-05-11 16:03:55 +0200350static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd)
351{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200352 if (mtd->erasesize_shift)
353 return sz >> mtd->erasesize_shift;
Stefan Roese586b3a62009-05-11 16:03:55 +0200354 do_div(sz, mtd->erasesize);
355 return sz;
356}
357
358static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd)
359{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200360 if (mtd->erasesize_shift)
361 return sz & mtd->erasesize_mask;
Stefan Roese586b3a62009-05-11 16:03:55 +0200362 return do_div(sz, mtd->erasesize);
363}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200364
Heiko Schocherf5895d12014-06-24 10:10:04 +0200365static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd)
366{
367 if (mtd->writesize_shift)
368 return sz >> mtd->writesize_shift;
369 do_div(sz, mtd->writesize);
370 return sz;
371}
372
373static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd)
374{
375 if (mtd->writesize_shift)
376 return sz & mtd->writesize_mask;
377 return do_div(sz, mtd->writesize);
378}
379
Sergey Lapin3a38a552013-01-14 03:46:50 +0000380static inline int mtd_has_oob(const struct mtd_info *mtd)
381{
382 return mtd->_read_oob && mtd->_write_oob;
383}
384
Heiko Schocherf5895d12014-06-24 10:10:04 +0200385static inline int mtd_type_is_nand(const struct mtd_info *mtd)
386{
387 return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH;
388}
389
Sergey Lapin3a38a552013-01-14 03:46:50 +0000390static inline int mtd_can_have_bb(const struct mtd_info *mtd)
391{
392 return !!mtd->_block_isbad;
393}
394
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200395 /* Kernel-side ioctl definitions */
396
Heiko Schocherf5895d12014-06-24 10:10:04 +0200397struct mtd_partition;
398struct mtd_part_parser_data;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200399
Heiko Schocherf5895d12014-06-24 10:10:04 +0200400extern int mtd_device_parse_register(struct mtd_info *mtd,
401 const char * const *part_probe_types,
402 struct mtd_part_parser_data *parser_data,
403 const struct mtd_partition *defparts,
404 int defnr_parts);
405#define mtd_device_register(master, parts, nr_parts) \
406 mtd_device_parse_register(master, NULL, NULL, parts, nr_parts)
407extern int mtd_device_unregister(struct mtd_info *master);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200408extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200409extern int __get_mtd_device(struct mtd_info *mtd);
410extern void __put_mtd_device(struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100411extern struct mtd_info *get_mtd_device_nm(const char *name);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200412extern void put_mtd_device(struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200413
414
415#ifndef __UBOOT__
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200416struct mtd_notifier {
417 void (*add)(struct mtd_info *mtd);
418 void (*remove)(struct mtd_info *mtd);
419 struct list_head list;
420};
421
Heiko Schocherf5895d12014-06-24 10:10:04 +0200422
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200423extern void register_mtd_user (struct mtd_notifier *new);
424extern int unregister_mtd_user (struct mtd_notifier *old);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200425#endif
Heiko Schocherf5895d12014-06-24 10:10:04 +0200426void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200427
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200428#ifdef CONFIG_MTD_PARTITIONS
429void mtd_erase_callback(struct erase_info *instr);
430#else
431static inline void mtd_erase_callback(struct erase_info *instr)
432{
433 if (instr->callback)
434 instr->callback(instr);
435}
436#endif
437
Heiko Schocherf5895d12014-06-24 10:10:04 +0200438#ifdef __UBOOT__
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200439/*
440 * Debugging macro and defines
441 */
442#define MTD_DEBUG_LEVEL0 (0) /* Quiet */
443#define MTD_DEBUG_LEVEL1 (1) /* Audible */
444#define MTD_DEBUG_LEVEL2 (2) /* Loud */
445#define MTD_DEBUG_LEVEL3 (3) /* Noisy */
446
447#ifdef CONFIG_MTD_DEBUG
Sergey Lapin3a38a552013-01-14 03:46:50 +0000448#define pr_debug(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args)
Scott Wooddf83c472008-06-20 12:38:57 -0500449#define MTDDEBUG(n, args...) \
Wolfgang Denka1be4762008-05-20 16:00:29 +0200450 do { \
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200451 if (n <= CONFIG_MTD_DEBUG_VERBOSE) \
452 printk(KERN_INFO args); \
453 } while(0)
454#else /* CONFIG_MTD_DEBUG */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000455#define pr_debug(args...)
Scott Wood3628f002008-10-24 16:20:43 -0500456#define MTDDEBUG(n, args...) \
457 do { \
458 if (0) \
459 printk(KERN_INFO args); \
460 } while(0)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200461#endif /* CONFIG_MTD_DEBUG */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000462#define pr_info(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args)
463#define pr_warn(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args)
464#define pr_err(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200465#define pr_crit(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args)
466#define pr_cont(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args)
467#define pr_notice(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args)
468#endif
469
Sergey Lapin3a38a552013-01-14 03:46:50 +0000470static inline int mtd_is_bitflip(int err) {
471 return err == -EUCLEAN;
472}
473
474static inline int mtd_is_eccerr(int err) {
475 return err == -EBADMSG;
476}
477
478static inline int mtd_is_bitflip_or_eccerr(int err) {
479 return mtd_is_bitflip(err) || mtd_is_eccerr(err);
480}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200481
Heiko Schocher94b66de2015-10-22 06:19:21 +0200482unsigned mtd_mmap_capabilities(struct mtd_info *mtd);
483
Heiko Schocherf5895d12014-06-24 10:10:04 +0200484#ifdef __UBOOT__
485/* drivers/mtd/mtdcore.h */
486int add_mtd_device(struct mtd_info *mtd);
Heiko Schocherb24c4272014-07-15 16:08:42 +0200487int del_mtd_device(struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200488int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int);
489int del_mtd_partitions(struct mtd_info *);
Heiko Schocher7e5a16c2015-04-27 07:42:05 +0200490
491int mtd_arg_off(const char *arg, int *idx, loff_t *off, loff_t *size,
Masahiro Yamada26256d22015-07-01 21:35:49 +0900492 loff_t *maxsize, int devtype, uint64_t chipsize);
Heiko Schocher7e5a16c2015-04-27 07:42:05 +0200493int mtd_arg_off_size(int argc, char *const argv[], int *idx, loff_t *off,
Masahiro Yamada26256d22015-07-01 21:35:49 +0900494 loff_t *size, loff_t *maxsize, int devtype,
495 uint64_t chipsize);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200496#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200497#endif /* __MTD_MTD_H__ */