blob: af45e63bf9c1202299485b43b7489498433e5943 [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>
Miquel Raynal6382e0c2018-09-29 12:58:27 +020023#include <linux/list.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020024#include <div64.h>
Brian Norris4cf0fa92018-08-16 17:30:03 +020025#if IS_ENABLED(CONFIG_DM)
26#include <dm/device.h>
27#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020028
William Juul52c07962007-10-31 13:53:06 +010029#define MAX_MTD_DEVICES 32
Heiko Schocherf5895d12014-06-24 10:10:04 +020030#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020031
Wolfgang Denka1be4762008-05-20 16:00:29 +020032#define MTD_ERASE_PENDING 0x01
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020033#define MTD_ERASING 0x02
34#define MTD_ERASE_SUSPEND 0x04
Heiko Schocherf5895d12014-06-24 10:10:04 +020035#define MTD_ERASE_DONE 0x08
36#define MTD_ERASE_FAILED 0x10
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020037
Heiko Schocherf5895d12014-06-24 10:10:04 +020038#define MTD_FAIL_ADDR_UNKNOWN -1LL
Stefan Roese586b3a62009-05-11 16:03:55 +020039
Kyungmin Park396b0c42008-08-13 09:11:02 +090040/*
Heiko Schocherf5895d12014-06-24 10:10:04 +020041 * If the erase fails, fail_addr might indicate exactly which block failed. If
42 * fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level
43 * or was not specific to any particular block.
Kyungmin Park396b0c42008-08-13 09:11:02 +090044 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020045struct erase_info {
46 struct mtd_info *mtd;
Stefan Roese586b3a62009-05-11 16:03:55 +020047 uint64_t addr;
48 uint64_t len;
49 uint64_t fail_addr;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020050 u_long time;
51 u_long retries;
Heiko Schocherf5895d12014-06-24 10:10:04 +020052 unsigned dev;
53 unsigned cell;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020054 u_long priv;
55 u_char state;
56 struct erase_info *next;
Marek Vasut971d9a12011-09-12 06:04:06 +020057 int scrub;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020058};
59
60struct mtd_erase_region_info {
Heiko Schocherf5895d12014-06-24 10:10:04 +020061 uint64_t offset; /* At which this region starts, from the beginning of the MTD */
62 uint32_t erasesize; /* For this region */
63 uint32_t numblocks; /* Number of blocks of erasesize in this region */
William Juul52c07962007-10-31 13:53:06 +010064 unsigned long *lockmap; /* If keeping bitmap of locks */
65};
66
William Juul52c07962007-10-31 13:53:06 +010067/**
68 * struct mtd_oob_ops - oob operation operands
69 * @mode: operation mode
70 *
71 * @len: number of data bytes to write/read
72 *
73 * @retlen: number of data bytes written/read
74 *
75 * @ooblen: number of oob bytes to write/read
76 * @oobretlen: number of oob bytes written/read
77 * @ooboffs: offset of oob data in the oob area (only relevant when
Sergey Lapin3a38a552013-01-14 03:46:50 +000078 * mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW)
William Juul52c07962007-10-31 13:53:06 +010079 * @datbuf: data buffer - if NULL only oob data are read/written
80 * @oobbuf: oob data buffer
William Juul52c07962007-10-31 13:53:06 +010081 */
82struct mtd_oob_ops {
Sergey Lapin3a38a552013-01-14 03:46:50 +000083 unsigned int mode;
William Juul52c07962007-10-31 13:53:06 +010084 size_t len;
85 size_t retlen;
86 size_t ooblen;
87 size_t oobretlen;
88 uint32_t ooboffs;
89 uint8_t *datbuf;
90 uint8_t *oobbuf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020091};
92
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +053093#ifdef CONFIG_SYS_NAND_MAX_OOBFREE
94#define MTD_MAX_OOBFREE_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_OOBFREE
95#else
96#define MTD_MAX_OOBFREE_ENTRIES_LARGE 32
97#endif
98
99#ifdef CONFIG_SYS_NAND_MAX_ECCPOS
100#define MTD_MAX_ECCPOS_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_ECCPOS
101#else
Siva Durga Prasad Paladuguf16bd952015-04-28 18:16:03 +0530102#define MTD_MAX_ECCPOS_ENTRIES_LARGE 680
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530103#endif
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900104/**
105 * struct mtd_oob_region - oob region definition
106 * @offset: region offset
107 * @length: region length
108 *
109 * This structure describes a region of the OOB area, and is used
110 * to retrieve ECC or free bytes sections.
111 * Each section is defined by an offset within the OOB area and a
112 * length.
113 */
114struct mtd_oob_region {
115 u32 offset;
116 u32 length;
117};
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530118
119/*
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900120 * struct mtd_ooblayout_ops - NAND OOB layout operations
121 * @ecc: function returning an ECC region in the OOB area.
122 * Should return -ERANGE if %section exceeds the total number of
123 * ECC sections.
124 * @free: function returning a free region in the OOB area.
125 * Should return -ERANGE if %section exceeds the total number of
126 * free sections.
127 */
128struct mtd_ooblayout_ops {
129 int (*ecc)(struct mtd_info *mtd, int section,
130 struct mtd_oob_region *oobecc);
Simon Glass62fd1a42020-02-03 07:35:56 -0700131 int (*rfree)(struct mtd_info *mtd, int section,
132 struct mtd_oob_region *oobfree);
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900133};
134
135/*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200136 * Internal ECC layout control structure. For historical reasons, there is a
137 * similar, smaller struct nand_ecclayout_user (in mtd-abi.h) that is retained
138 * for export to user-space via the ECCGETLAYOUT ioctl.
139 * nand_ecclayout should be expandable in the future simply by the above macros.
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530140 */
141struct nand_ecclayout {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200142 __u32 eccbytes;
143 __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE];
144 __u32 oobavail;
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530145 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE];
146};
147
Heiko Schocherf5895d12014-06-24 10:10:04 +0200148struct module; /* only needed for owner field in mtd_info */
149
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200150struct mtd_info {
151 u_char type;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200152 uint32_t flags;
153 uint64_t size; // Total size of the MTD
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200154
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +0200155 /* "Major" erase size for the device. Naïve users may take this
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200156 * to be the only erase size available, or may use the more detailed
157 * information below if they desire
158 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200159 uint32_t erasesize;
William Juul52c07962007-10-31 13:53:06 +0100160 /* Minimal writable flash unit size. In case of NOR flash it is 1 (even
161 * though individual bits can be cleared), in case of NAND flash it is
162 * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR
163 * it is of ECC block size, etc. It is illegal to have writesize = 0.
164 * Any driver registering a struct mtd_info must ensure a writesize of
165 * 1 or larger.
166 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200167 uint32_t writesize;
168
169 /*
170 * Size of the write buffer used by the MTD. MTD devices having a write
171 * buffer can write multiple writesize chunks at a time. E.g. while
172 * writing 4 * writesize bytes to a device with 2 * writesize bytes
173 * buffer the MTD driver can (but doesn't have to) do 2 writesize
174 * operations, but not 4. Currently, all NANDs have writebufsize
175 * equivalent to writesize (NAND page size). Some NOR flashes do have
176 * writebufsize greater than writesize.
177 */
178 uint32_t writebufsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200179
Heiko Schocherf5895d12014-06-24 10:10:04 +0200180 uint32_t oobsize; // Amount of OOB data per block (e.g. 16)
181 uint32_t oobavail; // Available OOB bytes per block
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200182
Sergey Lapin3a38a552013-01-14 03:46:50 +0000183 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200184 * If erasesize is a power of 2 then the shift is stored in
185 * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize.
186 */
187 unsigned int erasesize_shift;
188 unsigned int writesize_shift;
189 /* Masks based on erasesize_shift and writesize_shift */
190 unsigned int erasesize_mask;
191 unsigned int writesize_mask;
192
193 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000194 * read ops return -EUCLEAN if max number of bitflips corrected on any
195 * one region comprising an ecc step equals or exceeds this value.
196 * Settable by driver, else defaults to ecc_strength. User can override
197 * in sysfs. N.B. The meaning of the -EUCLEAN return code has changed;
198 * see Documentation/ABI/testing/sysfs-class-mtd for more detail.
199 */
200 unsigned int bitflip_threshold;
201
Heiko Schocherf5895d12014-06-24 10:10:04 +0200202 // Kernel-only stuff starts here.
203#ifndef __UBOOT__
Scott Wood3628f002008-10-24 16:20:43 -0500204 const char *name;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200205#else
206 char *name;
207#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200208 int index;
209
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900210 /* OOB layout description */
211 const struct mtd_ooblayout_ops *ooblayout;
212
Sergey Lapin3a38a552013-01-14 03:46:50 +0000213 /* ECC layout structure pointer - read only! */
William Juul52c07962007-10-31 13:53:06 +0100214 struct nand_ecclayout *ecclayout;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200215
Heiko Schocherf5895d12014-06-24 10:10:04 +0200216 /* the ecc step size. */
217 unsigned int ecc_step_size;
218
Sergey Lapin3a38a552013-01-14 03:46:50 +0000219 /* max number of correctible bit errors per ecc step */
220 unsigned int ecc_strength;
221
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200222 /* Data for variable erase regions. If numeraseregions is zero,
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200223 * it means that the whole device has erasesize as given above.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200224 */
225 int numeraseregions;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200226 struct mtd_erase_region_info *eraseregions;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200227
Scott Wood3628f002008-10-24 16:20:43 -0500228 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000229 * Do not call via these pointers, use corresponding mtd_*()
230 * wrappers instead.
Scott Wood3628f002008-10-24 16:20:43 -0500231 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000232 int (*_erase) (struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200233#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000234 int (*_point) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200235 size_t *retlen, void **virt, resource_size_t *phys);
236 int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
237#endif
238 unsigned long (*_get_unmapped_area) (struct mtd_info *mtd,
239 unsigned long len,
240 unsigned long offset,
241 unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000242 int (*_read) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200243 size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000244 int (*_write) (struct mtd_info *mtd, loff_t to, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200245 size_t *retlen, const u_char *buf);
246 int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len,
247 size_t *retlen, const u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000248 int (*_read_oob) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200249 struct mtd_oob_ops *ops);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000250 int (*_write_oob) (struct mtd_info *mtd, loff_t to,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200251 struct mtd_oob_ops *ops);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200252 int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len,
253 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000254 int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200255 size_t len, size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200256 int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len,
257 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000258 int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200259 size_t len, size_t *retlen, u_char *buf);
260 int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to,
261 size_t len, size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000262 int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200263 size_t len);
264#ifndef __UBOOT__
265 int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs,
266 unsigned long count, loff_t to, size_t *retlen);
267#endif
Sergey Lapin3a38a552013-01-14 03:46:50 +0000268 void (*_sync) (struct mtd_info *mtd);
269 int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
270 int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200271 int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300272 int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000273 int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs);
274 int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200275#ifndef __UBOOT__
276 int (*_suspend) (struct mtd_info *mtd);
277 void (*_resume) (struct mtd_info *mtd);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200278 void (*_reboot) (struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200279#endif
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200280 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000281 * If the driver is something smart, like UBI, it may need to maintain
282 * its own reference counting. The below functions are only for driver.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200283 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000284 int (*_get_device) (struct mtd_info *mtd);
285 void (*_put_device) (struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100286
Heiko Schocherf5895d12014-06-24 10:10:04 +0200287#ifndef __UBOOT__
288 /* Backing device capabilities for this device
289 * - provides mmap capabilities
290 */
291 struct backing_dev_info *backing_dev_info;
292
William Juul52c07962007-10-31 13:53:06 +0100293 struct notifier_block reboot_notifier; /* default mode before reboot */
294#endif
295
296 /* ECC status information */
297 struct mtd_ecc_stats ecc_stats;
298 /* Subpage shift (NAND) */
299 int subpage_sft;
300
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200301 void *priv;
302
303 struct module *owner;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200304#ifndef __UBOOT__
305 struct device dev;
Thomas Choue51b65e2015-11-07 14:20:31 +0800306#else
307 struct udevice *dev;
Patrice Chotardbee32872022-03-21 09:13:36 +0100308 ofnode flash_node;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200309#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200310 int usecount;
Miquel Raynal6382e0c2018-09-29 12:58:27 +0200311
312 /* MTD devices do not have any parent. MTD partitions do. */
313 struct mtd_info *parent;
314
315 /*
316 * Offset of the partition relatively to the parent offset.
317 * Is 0 for real MTD devices (ie. not partitions).
318 */
319 u64 offset;
320
321 /*
322 * List node used to add an MTD partition to the parent
323 * partition list.
324 */
325 struct list_head node;
326
327 /*
328 * List of partitions attached to this MTD device (the parent
329 * MTD device can itself be a partition).
330 */
331 struct list_head partitions;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200332};
333
Brian Norris4cf0fa92018-08-16 17:30:03 +0200334#if IS_ENABLED(CONFIG_DM)
Simon Glass1b349e32020-12-19 10:40:00 -0700335static inline void mtd_set_ofnode(struct mtd_info *mtd, ofnode node)
Brian Norris4cf0fa92018-08-16 17:30:03 +0200336{
Simon Glassa7ece582020-12-19 10:40:14 -0700337 dev_set_ofnode(mtd->dev, node);
Brian Norris4cf0fa92018-08-16 17:30:03 +0200338}
339
Simon Glass1b349e32020-12-19 10:40:00 -0700340static inline const ofnode mtd_get_ofnode(struct mtd_info *mtd)
Brian Norris4cf0fa92018-08-16 17:30:03 +0200341{
Simon Glassa7ece582020-12-19 10:40:14 -0700342 return dev_ofnode(mtd->dev);
Brian Norris4cf0fa92018-08-16 17:30:03 +0200343}
344#else
345struct device_node;
346
347static inline void mtd_set_of_node(struct mtd_info *mtd,
348 const struct device_node *np)
349{
350}
351
352static inline const struct device_node *mtd_get_of_node(struct mtd_info *mtd)
353{
354 return NULL;
355}
356#endif
357
Miquel Raynal6382e0c2018-09-29 12:58:27 +0200358static inline bool mtd_is_partition(const struct mtd_info *mtd)
359{
360 return mtd->parent;
361}
362
363static inline bool mtd_has_partitions(const struct mtd_info *mtd)
364{
365 return !list_empty(&mtd->partitions);
366}
367
Boris Brezillon7dfad312018-12-02 10:54:30 +0100368bool mtd_partitions_used(struct mtd_info *master);
369
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900370int mtd_ooblayout_ecc(struct mtd_info *mtd, int section,
371 struct mtd_oob_region *oobecc);
372int mtd_ooblayout_find_eccregion(struct mtd_info *mtd, int eccbyte,
373 int *section,
374 struct mtd_oob_region *oobregion);
375int mtd_ooblayout_get_eccbytes(struct mtd_info *mtd, u8 *eccbuf,
376 const u8 *oobbuf, int start, int nbytes);
377int mtd_ooblayout_set_eccbytes(struct mtd_info *mtd, const u8 *eccbuf,
378 u8 *oobbuf, int start, int nbytes);
379int mtd_ooblayout_free(struct mtd_info *mtd, int section,
380 struct mtd_oob_region *oobfree);
381int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf,
382 const u8 *oobbuf, int start, int nbytes);
383int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf,
384 u8 *oobbuf, int start, int nbytes);
385int mtd_ooblayout_count_freebytes(struct mtd_info *mtd);
386int mtd_ooblayout_count_eccbytes(struct mtd_info *mtd);
387
388static inline void mtd_set_ooblayout(struct mtd_info *mtd,
389 const struct mtd_ooblayout_ops *ooblayout)
390{
391 mtd->ooblayout = ooblayout;
392}
393
Miquel Raynalb4c6fb22018-11-18 21:11:46 +0100394static inline u32 mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops)
Scott Wood52ab7ce2016-05-30 13:57:58 -0500395{
396 return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize;
397}
398
Sergey Lapin3a38a552013-01-14 03:46:50 +0000399int mtd_erase(struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200400#ifndef __UBOOT__
401int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
402 void **virt, resource_size_t *phys);
403int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
404#endif
405unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len,
406 unsigned long offset, unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000407int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
408 u_char *buf);
409int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
410 const u_char *buf);
411int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
412 const u_char *buf);
413
414int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops);
Ezequiel Garcia18e75412018-08-16 17:30:00 +0200415int mtd_write_oob(struct mtd_info *mtd, loff_t to, struct mtd_oob_ops *ops);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000416
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200417int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
418 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000419int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
420 size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200421int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
422 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000423int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
424 size_t *retlen, u_char *buf);
425int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len,
426 size_t *retlen, u_char *buf);
427int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len);
428
Heiko Schocherf5895d12014-06-24 10:10:04 +0200429#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000430int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
431 unsigned long count, loff_t to, size_t *retlen);
432#endif
433
434static inline void mtd_sync(struct mtd_info *mtd)
435{
436 if (mtd->_sync)
437 mtd->_sync(mtd);
438}
439
440int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
441int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
442int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300443int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000444int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs);
445int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs);
446
Heiko Schocherf5895d12014-06-24 10:10:04 +0200447#ifndef __UBOOT__
448static inline int mtd_suspend(struct mtd_info *mtd)
449{
450 return mtd->_suspend ? mtd->_suspend(mtd) : 0;
451}
452
453static inline void mtd_resume(struct mtd_info *mtd)
454{
455 if (mtd->_resume)
456 mtd->_resume(mtd);
457}
458#endif
459
Stefan Roese586b3a62009-05-11 16:03:55 +0200460static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd)
461{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200462 if (mtd->erasesize_shift)
463 return sz >> mtd->erasesize_shift;
Stefan Roese586b3a62009-05-11 16:03:55 +0200464 do_div(sz, mtd->erasesize);
465 return sz;
466}
467
468static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd)
469{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200470 if (mtd->erasesize_shift)
471 return sz & mtd->erasesize_mask;
Stefan Roese586b3a62009-05-11 16:03:55 +0200472 return do_div(sz, mtd->erasesize);
473}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200474
Heiko Schocherf5895d12014-06-24 10:10:04 +0200475static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd)
476{
477 if (mtd->writesize_shift)
478 return sz >> mtd->writesize_shift;
479 do_div(sz, mtd->writesize);
480 return sz;
481}
482
483static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd)
484{
485 if (mtd->writesize_shift)
486 return sz & mtd->writesize_mask;
487 return do_div(sz, mtd->writesize);
488}
489
Sergey Lapin3a38a552013-01-14 03:46:50 +0000490static inline int mtd_has_oob(const struct mtd_info *mtd)
491{
492 return mtd->_read_oob && mtd->_write_oob;
493}
494
Heiko Schocherf5895d12014-06-24 10:10:04 +0200495static inline int mtd_type_is_nand(const struct mtd_info *mtd)
496{
497 return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH;
498}
499
Sergey Lapin3a38a552013-01-14 03:46:50 +0000500static inline int mtd_can_have_bb(const struct mtd_info *mtd)
501{
502 return !!mtd->_block_isbad;
503}
504
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200505 /* Kernel-side ioctl definitions */
506
Heiko Schocherf5895d12014-06-24 10:10:04 +0200507struct mtd_partition;
508struct mtd_part_parser_data;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200509
Heiko Schocherf5895d12014-06-24 10:10:04 +0200510extern int mtd_device_parse_register(struct mtd_info *mtd,
511 const char * const *part_probe_types,
512 struct mtd_part_parser_data *parser_data,
513 const struct mtd_partition *defparts,
514 int defnr_parts);
515#define mtd_device_register(master, parts, nr_parts) \
516 mtd_device_parse_register(master, NULL, NULL, parts, nr_parts)
517extern int mtd_device_unregister(struct mtd_info *master);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200518extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200519extern int __get_mtd_device(struct mtd_info *mtd);
520extern void __put_mtd_device(struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100521extern struct mtd_info *get_mtd_device_nm(const char *name);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200522extern void put_mtd_device(struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200523
524
525#ifndef __UBOOT__
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200526struct mtd_notifier {
527 void (*add)(struct mtd_info *mtd);
528 void (*remove)(struct mtd_info *mtd);
529 struct list_head list;
530};
531
Heiko Schocherf5895d12014-06-24 10:10:04 +0200532
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200533extern void register_mtd_user (struct mtd_notifier *new);
534extern int unregister_mtd_user (struct mtd_notifier *old);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200535#endif
Heiko Schocherf5895d12014-06-24 10:10:04 +0200536void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200537
Sergey Lapin3a38a552013-01-14 03:46:50 +0000538static inline int mtd_is_bitflip(int err) {
539 return err == -EUCLEAN;
540}
541
542static inline int mtd_is_eccerr(int err) {
543 return err == -EBADMSG;
544}
545
546static inline int mtd_is_bitflip_or_eccerr(int err) {
547 return mtd_is_bitflip(err) || mtd_is_eccerr(err);
548}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200549
Heiko Schocher94b66de2015-10-22 06:19:21 +0200550unsigned mtd_mmap_capabilities(struct mtd_info *mtd);
551
Heiko Schocherf5895d12014-06-24 10:10:04 +0200552#ifdef __UBOOT__
553/* drivers/mtd/mtdcore.h */
554int add_mtd_device(struct mtd_info *mtd);
Heiko Schocherb24c4272014-07-15 16:08:42 +0200555int del_mtd_device(struct mtd_info *mtd);
Boris Brezillondb0d8052018-12-02 10:54:24 +0100556
557#ifdef CONFIG_MTD_PARTITIONS
Heiko Schocherf5895d12014-06-24 10:10:04 +0200558int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int);
559int del_mtd_partitions(struct mtd_info *);
Boris Brezillondb0d8052018-12-02 10:54:24 +0100560#else
561static inline int add_mtd_partitions(struct mtd_info *mtd,
562 const struct mtd_partition *parts,
563 int nparts)
564{
565 return 0;
566}
567
568static inline int del_mtd_partitions(struct mtd_info *mtd)
569{
570 return 0;
571}
572#endif
Heiko Schocher7e5a16c2015-04-27 07:42:05 +0200573
Marek Behún544a8c92021-05-26 14:08:19 +0200574#if defined(CONFIG_MTD_PARTITIONS) && CONFIG_IS_ENABLED(DM) && \
575 CONFIG_IS_ENABLED(OF_CONTROL)
576int add_mtd_partitions_of(struct mtd_info *master);
577#else
578static inline int add_mtd_partitions_of(struct mtd_info *master)
579{
580 return 0;
581}
582#endif
583
Miquel Raynalfff4be32018-08-16 17:30:05 +0200584struct mtd_info *__mtd_next_device(int i);
585#define mtd_for_each_device(mtd) \
586 for ((mtd) = __mtd_next_device(0); \
587 (mtd) != NULL; \
588 (mtd) = __mtd_next_device(mtd->index + 1))
589
Steve Rae6eb14ff2016-06-29 13:50:59 -0700590/* drivers/mtd/mtdcore.c */
591void mtd_get_len_incl_bad(struct mtd_info *mtd, uint64_t offset,
592 const uint64_t length, uint64_t *len_incl_bad,
593 int *truncated);
Boris Brezillon059e4a62018-12-02 10:54:22 +0100594bool mtd_dev_list_updated(void);
Miquel Raynal1a08e992018-09-29 12:58:26 +0200595
596/* drivers/mtd/mtd_uboot.c */
597int mtd_search_alternate_name(const char *mtdname, char *altname,
598 unsigned int max_len);
599
Heiko Schocherf5895d12014-06-24 10:10:04 +0200600#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200601#endif /* __MTD_MTD_H__ */