blob: 0c41140465e2fb3760786a3d6347bd610a1ec33d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002/*
Heiko Schocherf5895d12014-06-24 10:10:04 +02003 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02004 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02005 */
6
7#ifndef __MTD_MTD_H__
8#define __MTD_MTD_H__
William Juul52c07962007-10-31 13:53:06 +01009
Heiko Schocherf5895d12014-06-24 10:10:04 +020010#ifndef __UBOOT__
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020011#include <linux/types.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020012#include <linux/uio.h>
13#include <linux/notifier.h>
14#include <linux/device.h>
15
16#include <mtd/mtd-abi.h>
17
18#include <asm/div64.h>
19#else
20#include <linux/compat.h>
Sergey Lapin3a38a552013-01-14 03:46:50 +000021#include <mtd/mtd-abi.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090022#include <linux/errno.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020023#include <div64.h>
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020024
William Juul52c07962007-10-31 13:53:06 +010025#define MAX_MTD_DEVICES 32
Heiko Schocherf5895d12014-06-24 10:10:04 +020026#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020027
Wolfgang Denka1be4762008-05-20 16:00:29 +020028#define MTD_ERASE_PENDING 0x01
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020029#define MTD_ERASING 0x02
30#define MTD_ERASE_SUSPEND 0x04
Heiko Schocherf5895d12014-06-24 10:10:04 +020031#define MTD_ERASE_DONE 0x08
32#define MTD_ERASE_FAILED 0x10
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020033
Heiko Schocherf5895d12014-06-24 10:10:04 +020034#define MTD_FAIL_ADDR_UNKNOWN -1LL
Stefan Roese586b3a62009-05-11 16:03:55 +020035
Kyungmin Park396b0c42008-08-13 09:11:02 +090036/*
Heiko Schocherf5895d12014-06-24 10:10:04 +020037 * If the erase fails, fail_addr might indicate exactly which block failed. If
38 * fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level
39 * or was not specific to any particular block.
Kyungmin Park396b0c42008-08-13 09:11:02 +090040 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020041struct erase_info {
42 struct mtd_info *mtd;
Stefan Roese586b3a62009-05-11 16:03:55 +020043 uint64_t addr;
44 uint64_t len;
45 uint64_t fail_addr;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020046 u_long time;
47 u_long retries;
Heiko Schocherf5895d12014-06-24 10:10:04 +020048 unsigned dev;
49 unsigned cell;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020050 void (*callback) (struct erase_info *self);
51 u_long priv;
52 u_char state;
53 struct erase_info *next;
Marek Vasut971d9a12011-09-12 06:04:06 +020054 int scrub;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020055};
56
57struct mtd_erase_region_info {
Heiko Schocherf5895d12014-06-24 10:10:04 +020058 uint64_t offset; /* At which this region starts, from the beginning of the MTD */
59 uint32_t erasesize; /* For this region */
60 uint32_t numblocks; /* Number of blocks of erasesize in this region */
William Juul52c07962007-10-31 13:53:06 +010061 unsigned long *lockmap; /* If keeping bitmap of locks */
62};
63
William Juul52c07962007-10-31 13:53:06 +010064/**
65 * struct mtd_oob_ops - oob operation operands
66 * @mode: operation mode
67 *
68 * @len: number of data bytes to write/read
69 *
70 * @retlen: number of data bytes written/read
71 *
72 * @ooblen: number of oob bytes to write/read
73 * @oobretlen: number of oob bytes written/read
74 * @ooboffs: offset of oob data in the oob area (only relevant when
Sergey Lapin3a38a552013-01-14 03:46:50 +000075 * mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW)
William Juul52c07962007-10-31 13:53:06 +010076 * @datbuf: data buffer - if NULL only oob data are read/written
77 * @oobbuf: oob data buffer
78 *
Heiko Schocherf5895d12014-06-24 10:10:04 +020079 * Note, it is allowed to read more than one OOB area at one go, but not write.
William Juul52c07962007-10-31 13:53:06 +010080 * The interface assumes that the OOB write requests program only one page's
81 * OOB area.
82 */
83struct mtd_oob_ops {
Sergey Lapin3a38a552013-01-14 03:46:50 +000084 unsigned int mode;
William Juul52c07962007-10-31 13:53:06 +010085 size_t len;
86 size_t retlen;
87 size_t ooblen;
88 size_t oobretlen;
89 uint32_t ooboffs;
90 uint8_t *datbuf;
91 uint8_t *oobbuf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020092};
93
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +053094#ifdef CONFIG_SYS_NAND_MAX_OOBFREE
95#define MTD_MAX_OOBFREE_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_OOBFREE
96#else
97#define MTD_MAX_OOBFREE_ENTRIES_LARGE 32
98#endif
99
100#ifdef CONFIG_SYS_NAND_MAX_ECCPOS
101#define MTD_MAX_ECCPOS_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_ECCPOS
102#else
Siva Durga Prasad Paladuguf16bd952015-04-28 18:16:03 +0530103#define MTD_MAX_ECCPOS_ENTRIES_LARGE 680
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530104#endif
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900105/**
106 * struct mtd_oob_region - oob region definition
107 * @offset: region offset
108 * @length: region length
109 *
110 * This structure describes a region of the OOB area, and is used
111 * to retrieve ECC or free bytes sections.
112 * Each section is defined by an offset within the OOB area and a
113 * length.
114 */
115struct mtd_oob_region {
116 u32 offset;
117 u32 length;
118};
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530119
120/*
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900121 * struct mtd_ooblayout_ops - NAND OOB layout operations
122 * @ecc: function returning an ECC region in the OOB area.
123 * Should return -ERANGE if %section exceeds the total number of
124 * ECC sections.
125 * @free: function returning a free region in the OOB area.
126 * Should return -ERANGE if %section exceeds the total number of
127 * free sections.
128 */
129struct mtd_ooblayout_ops {
130 int (*ecc)(struct mtd_info *mtd, int section,
131 struct mtd_oob_region *oobecc);
132 int (*free)(struct mtd_info *mtd, int section,
133 struct mtd_oob_region *oobfree);
134};
135
136/*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200137 * Internal ECC layout control structure. For historical reasons, there is a
138 * similar, smaller struct nand_ecclayout_user (in mtd-abi.h) that is retained
139 * for export to user-space via the ECCGETLAYOUT ioctl.
140 * nand_ecclayout should be expandable in the future simply by the above macros.
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530141 */
142struct nand_ecclayout {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200143 __u32 eccbytes;
144 __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE];
145 __u32 oobavail;
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530146 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE];
147};
148
Heiko Schocherf5895d12014-06-24 10:10:04 +0200149struct module; /* only needed for owner field in mtd_info */
150
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200151struct mtd_info {
152 u_char type;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200153 uint32_t flags;
154 uint64_t size; // Total size of the MTD
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200155
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +0200156 /* "Major" erase size for the device. Naïve users may take this
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200157 * to be the only erase size available, or may use the more detailed
158 * information below if they desire
159 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200160 uint32_t erasesize;
William Juul52c07962007-10-31 13:53:06 +0100161 /* Minimal writable flash unit size. In case of NOR flash it is 1 (even
162 * though individual bits can be cleared), in case of NAND flash it is
163 * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR
164 * it is of ECC block size, etc. It is illegal to have writesize = 0.
165 * Any driver registering a struct mtd_info must ensure a writesize of
166 * 1 or larger.
167 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200168 uint32_t writesize;
169
170 /*
171 * Size of the write buffer used by the MTD. MTD devices having a write
172 * buffer can write multiple writesize chunks at a time. E.g. while
173 * writing 4 * writesize bytes to a device with 2 * writesize bytes
174 * buffer the MTD driver can (but doesn't have to) do 2 writesize
175 * operations, but not 4. Currently, all NANDs have writebufsize
176 * equivalent to writesize (NAND page size). Some NOR flashes do have
177 * writebufsize greater than writesize.
178 */
179 uint32_t writebufsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200180
Heiko Schocherf5895d12014-06-24 10:10:04 +0200181 uint32_t oobsize; // Amount of OOB data per block (e.g. 16)
182 uint32_t oobavail; // Available OOB bytes per block
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200183
Sergey Lapin3a38a552013-01-14 03:46:50 +0000184 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200185 * If erasesize is a power of 2 then the shift is stored in
186 * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize.
187 */
188 unsigned int erasesize_shift;
189 unsigned int writesize_shift;
190 /* Masks based on erasesize_shift and writesize_shift */
191 unsigned int erasesize_mask;
192 unsigned int writesize_mask;
193
194 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000195 * read ops return -EUCLEAN if max number of bitflips corrected on any
196 * one region comprising an ecc step equals or exceeds this value.
197 * Settable by driver, else defaults to ecc_strength. User can override
198 * in sysfs. N.B. The meaning of the -EUCLEAN return code has changed;
199 * see Documentation/ABI/testing/sysfs-class-mtd for more detail.
200 */
201 unsigned int bitflip_threshold;
202
Heiko Schocherf5895d12014-06-24 10:10:04 +0200203 // Kernel-only stuff starts here.
204#ifndef __UBOOT__
Scott Wood3628f002008-10-24 16:20:43 -0500205 const char *name;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200206#else
207 char *name;
208#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200209 int index;
210
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900211 /* OOB layout description */
212 const struct mtd_ooblayout_ops *ooblayout;
213
Sergey Lapin3a38a552013-01-14 03:46:50 +0000214 /* ECC layout structure pointer - read only! */
William Juul52c07962007-10-31 13:53:06 +0100215 struct nand_ecclayout *ecclayout;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200216
Heiko Schocherf5895d12014-06-24 10:10:04 +0200217 /* the ecc step size. */
218 unsigned int ecc_step_size;
219
Sergey Lapin3a38a552013-01-14 03:46:50 +0000220 /* max number of correctible bit errors per ecc step */
221 unsigned int ecc_strength;
222
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200223 /* Data for variable erase regions. If numeraseregions is zero,
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200224 * it means that the whole device has erasesize as given above.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200225 */
226 int numeraseregions;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200227 struct mtd_erase_region_info *eraseregions;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200228
Scott Wood3628f002008-10-24 16:20:43 -0500229 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000230 * Do not call via these pointers, use corresponding mtd_*()
231 * wrappers instead.
Scott Wood3628f002008-10-24 16:20:43 -0500232 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000233 int (*_erase) (struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200234#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000235 int (*_point) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200236 size_t *retlen, void **virt, resource_size_t *phys);
237 int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
238#endif
239 unsigned long (*_get_unmapped_area) (struct mtd_info *mtd,
240 unsigned long len,
241 unsigned long offset,
242 unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000243 int (*_read) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200244 size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000245 int (*_write) (struct mtd_info *mtd, loff_t to, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200246 size_t *retlen, const u_char *buf);
247 int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len,
248 size_t *retlen, const u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000249 int (*_read_oob) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200250 struct mtd_oob_ops *ops);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000251 int (*_write_oob) (struct mtd_info *mtd, loff_t to,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200252 struct mtd_oob_ops *ops);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200253 int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len,
254 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000255 int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200256 size_t len, size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200257 int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len,
258 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000259 int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200260 size_t len, size_t *retlen, u_char *buf);
261 int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to,
262 size_t len, size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000263 int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200264 size_t len);
265#ifndef __UBOOT__
266 int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs,
267 unsigned long count, loff_t to, size_t *retlen);
268#endif
Sergey Lapin3a38a552013-01-14 03:46:50 +0000269 void (*_sync) (struct mtd_info *mtd);
270 int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
271 int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200272 int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300273 int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000274 int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs);
275 int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200276#ifndef __UBOOT__
277 int (*_suspend) (struct mtd_info *mtd);
278 void (*_resume) (struct mtd_info *mtd);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200279 void (*_reboot) (struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200280#endif
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200281 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000282 * If the driver is something smart, like UBI, it may need to maintain
283 * its own reference counting. The below functions are only for driver.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200284 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000285 int (*_get_device) (struct mtd_info *mtd);
286 void (*_put_device) (struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100287
Heiko Schocherf5895d12014-06-24 10:10:04 +0200288#ifndef __UBOOT__
289 /* Backing device capabilities for this device
290 * - provides mmap capabilities
291 */
292 struct backing_dev_info *backing_dev_info;
293
William Juul52c07962007-10-31 13:53:06 +0100294 struct notifier_block reboot_notifier; /* default mode before reboot */
295#endif
296
297 /* ECC status information */
298 struct mtd_ecc_stats ecc_stats;
299 /* Subpage shift (NAND) */
300 int subpage_sft;
301
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200302 void *priv;
303
304 struct module *owner;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200305#ifndef __UBOOT__
306 struct device dev;
Thomas Choue51b65e2015-11-07 14:20:31 +0800307#else
308 struct udevice *dev;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200309#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200310 int usecount;
311};
312
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900313int mtd_ooblayout_ecc(struct mtd_info *mtd, int section,
314 struct mtd_oob_region *oobecc);
315int mtd_ooblayout_find_eccregion(struct mtd_info *mtd, int eccbyte,
316 int *section,
317 struct mtd_oob_region *oobregion);
318int mtd_ooblayout_get_eccbytes(struct mtd_info *mtd, u8 *eccbuf,
319 const u8 *oobbuf, int start, int nbytes);
320int mtd_ooblayout_set_eccbytes(struct mtd_info *mtd, const u8 *eccbuf,
321 u8 *oobbuf, int start, int nbytes);
322int mtd_ooblayout_free(struct mtd_info *mtd, int section,
323 struct mtd_oob_region *oobfree);
324int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf,
325 const u8 *oobbuf, int start, int nbytes);
326int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf,
327 u8 *oobbuf, int start, int nbytes);
328int mtd_ooblayout_count_freebytes(struct mtd_info *mtd);
329int mtd_ooblayout_count_eccbytes(struct mtd_info *mtd);
330
331static inline void mtd_set_ooblayout(struct mtd_info *mtd,
332 const struct mtd_ooblayout_ops *ooblayout)
333{
334 mtd->ooblayout = ooblayout;
335}
336
Scott Wood52ab7ce2016-05-30 13:57:58 -0500337static inline int mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops)
338{
339 return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize;
340}
341
Sergey Lapin3a38a552013-01-14 03:46:50 +0000342int mtd_erase(struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200343#ifndef __UBOOT__
344int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
345 void **virt, resource_size_t *phys);
346int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
347#endif
348unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len,
349 unsigned long offset, unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000350int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
351 u_char *buf);
352int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
353 const u_char *buf);
354int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
355 const u_char *buf);
356
357int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops);
358
359static inline int mtd_write_oob(struct mtd_info *mtd, loff_t to,
360 struct mtd_oob_ops *ops)
361{
362 ops->retlen = ops->oobretlen = 0;
363 if (!mtd->_write_oob)
364 return -EOPNOTSUPP;
365 if (!(mtd->flags & MTD_WRITEABLE))
366 return -EROFS;
367 return mtd->_write_oob(mtd, to, ops);
368}
369
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200370int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
371 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000372int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
373 size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200374int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
375 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000376int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
377 size_t *retlen, u_char *buf);
378int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len,
379 size_t *retlen, u_char *buf);
380int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len);
381
Heiko Schocherf5895d12014-06-24 10:10:04 +0200382#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000383int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
384 unsigned long count, loff_t to, size_t *retlen);
385#endif
386
387static inline void mtd_sync(struct mtd_info *mtd)
388{
389 if (mtd->_sync)
390 mtd->_sync(mtd);
391}
392
393int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
394int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
395int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300396int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000397int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs);
398int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs);
399
Heiko Schocherf5895d12014-06-24 10:10:04 +0200400#ifndef __UBOOT__
401static inline int mtd_suspend(struct mtd_info *mtd)
402{
403 return mtd->_suspend ? mtd->_suspend(mtd) : 0;
404}
405
406static inline void mtd_resume(struct mtd_info *mtd)
407{
408 if (mtd->_resume)
409 mtd->_resume(mtd);
410}
411#endif
412
Stefan Roese586b3a62009-05-11 16:03:55 +0200413static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd)
414{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200415 if (mtd->erasesize_shift)
416 return sz >> mtd->erasesize_shift;
Stefan Roese586b3a62009-05-11 16:03:55 +0200417 do_div(sz, mtd->erasesize);
418 return sz;
419}
420
421static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd)
422{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200423 if (mtd->erasesize_shift)
424 return sz & mtd->erasesize_mask;
Stefan Roese586b3a62009-05-11 16:03:55 +0200425 return do_div(sz, mtd->erasesize);
426}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200427
Heiko Schocherf5895d12014-06-24 10:10:04 +0200428static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd)
429{
430 if (mtd->writesize_shift)
431 return sz >> mtd->writesize_shift;
432 do_div(sz, mtd->writesize);
433 return sz;
434}
435
436static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd)
437{
438 if (mtd->writesize_shift)
439 return sz & mtd->writesize_mask;
440 return do_div(sz, mtd->writesize);
441}
442
Sergey Lapin3a38a552013-01-14 03:46:50 +0000443static inline int mtd_has_oob(const struct mtd_info *mtd)
444{
445 return mtd->_read_oob && mtd->_write_oob;
446}
447
Heiko Schocherf5895d12014-06-24 10:10:04 +0200448static inline int mtd_type_is_nand(const struct mtd_info *mtd)
449{
450 return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH;
451}
452
Sergey Lapin3a38a552013-01-14 03:46:50 +0000453static inline int mtd_can_have_bb(const struct mtd_info *mtd)
454{
455 return !!mtd->_block_isbad;
456}
457
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200458 /* Kernel-side ioctl definitions */
459
Heiko Schocherf5895d12014-06-24 10:10:04 +0200460struct mtd_partition;
461struct mtd_part_parser_data;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200462
Heiko Schocherf5895d12014-06-24 10:10:04 +0200463extern int mtd_device_parse_register(struct mtd_info *mtd,
464 const char * const *part_probe_types,
465 struct mtd_part_parser_data *parser_data,
466 const struct mtd_partition *defparts,
467 int defnr_parts);
468#define mtd_device_register(master, parts, nr_parts) \
469 mtd_device_parse_register(master, NULL, NULL, parts, nr_parts)
470extern int mtd_device_unregister(struct mtd_info *master);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200471extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200472extern int __get_mtd_device(struct mtd_info *mtd);
473extern void __put_mtd_device(struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100474extern struct mtd_info *get_mtd_device_nm(const char *name);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200475extern void put_mtd_device(struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200476
477
478#ifndef __UBOOT__
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200479struct mtd_notifier {
480 void (*add)(struct mtd_info *mtd);
481 void (*remove)(struct mtd_info *mtd);
482 struct list_head list;
483};
484
Heiko Schocherf5895d12014-06-24 10:10:04 +0200485
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200486extern void register_mtd_user (struct mtd_notifier *new);
487extern int unregister_mtd_user (struct mtd_notifier *old);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200488#endif
Heiko Schocherf5895d12014-06-24 10:10:04 +0200489void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200490
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200491#ifdef CONFIG_MTD_PARTITIONS
492void mtd_erase_callback(struct erase_info *instr);
493#else
494static inline void mtd_erase_callback(struct erase_info *instr)
495{
496 if (instr->callback)
497 instr->callback(instr);
498}
499#endif
500
Sergey Lapin3a38a552013-01-14 03:46:50 +0000501static inline int mtd_is_bitflip(int err) {
502 return err == -EUCLEAN;
503}
504
505static inline int mtd_is_eccerr(int err) {
506 return err == -EBADMSG;
507}
508
509static inline int mtd_is_bitflip_or_eccerr(int err) {
510 return mtd_is_bitflip(err) || mtd_is_eccerr(err);
511}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200512
Heiko Schocher94b66de2015-10-22 06:19:21 +0200513unsigned mtd_mmap_capabilities(struct mtd_info *mtd);
514
Heiko Schocherf5895d12014-06-24 10:10:04 +0200515#ifdef __UBOOT__
516/* drivers/mtd/mtdcore.h */
517int add_mtd_device(struct mtd_info *mtd);
Heiko Schocherb24c4272014-07-15 16:08:42 +0200518int del_mtd_device(struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200519int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int);
520int del_mtd_partitions(struct mtd_info *);
Heiko Schocher7e5a16c2015-04-27 07:42:05 +0200521
522int mtd_arg_off(const char *arg, int *idx, loff_t *off, loff_t *size,
Masahiro Yamada26256d22015-07-01 21:35:49 +0900523 loff_t *maxsize, int devtype, uint64_t chipsize);
Heiko Schocher7e5a16c2015-04-27 07:42:05 +0200524int mtd_arg_off_size(int argc, char *const argv[], int *idx, loff_t *off,
Masahiro Yamada26256d22015-07-01 21:35:49 +0900525 loff_t *size, loff_t *maxsize, int devtype,
526 uint64_t chipsize);
Steve Rae6eb14ff2016-06-29 13:50:59 -0700527
528/* drivers/mtd/mtdcore.c */
529void mtd_get_len_incl_bad(struct mtd_info *mtd, uint64_t offset,
530 const uint64_t length, uint64_t *len_incl_bad,
531 int *truncated);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200532#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200533#endif /* __MTD_MTD_H__ */