blob: 6751fb52c5a5fd82f89078af0eda6387fd319cd1 [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
Tom Rini97a05122022-04-11 17:11:21 -040028#include <dm/ofnode.h>
Alexey Romanov8e1fd2e2024-07-18 08:46:05 +030029#include <blk.h>
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020030
William Juul52c07962007-10-31 13:53:06 +010031#define MAX_MTD_DEVICES 32
Heiko Schocherf5895d12014-06-24 10:10:04 +020032#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020033
Wolfgang Denka1be4762008-05-20 16:00:29 +020034#define MTD_ERASE_PENDING 0x01
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020035#define MTD_ERASING 0x02
36#define MTD_ERASE_SUSPEND 0x04
Heiko Schocherf5895d12014-06-24 10:10:04 +020037#define MTD_ERASE_DONE 0x08
38#define MTD_ERASE_FAILED 0x10
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020039
Heiko Schocherf5895d12014-06-24 10:10:04 +020040#define MTD_FAIL_ADDR_UNKNOWN -1LL
Stefan Roese586b3a62009-05-11 16:03:55 +020041
Kyungmin Park396b0c42008-08-13 09:11:02 +090042/*
Heiko Schocherf5895d12014-06-24 10:10:04 +020043 * If the erase fails, fail_addr might indicate exactly which block failed. If
44 * fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level
45 * or was not specific to any particular block.
Kyungmin Park396b0c42008-08-13 09:11:02 +090046 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020047struct erase_info {
48 struct mtd_info *mtd;
Stefan Roese586b3a62009-05-11 16:03:55 +020049 uint64_t addr;
50 uint64_t len;
51 uint64_t fail_addr;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020052 u_long time;
53 u_long retries;
Heiko Schocherf5895d12014-06-24 10:10:04 +020054 unsigned dev;
55 unsigned cell;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020056 u_long priv;
57 u_char state;
58 struct erase_info *next;
Marek Vasut971d9a12011-09-12 06:04:06 +020059 int scrub;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020060};
61
62struct mtd_erase_region_info {
Heiko Schocherf5895d12014-06-24 10:10:04 +020063 uint64_t offset; /* At which this region starts, from the beginning of the MTD */
64 uint32_t erasesize; /* For this region */
65 uint32_t numblocks; /* Number of blocks of erasesize in this region */
William Juul52c07962007-10-31 13:53:06 +010066 unsigned long *lockmap; /* If keeping bitmap of locks */
67};
68
William Juul52c07962007-10-31 13:53:06 +010069/**
70 * struct mtd_oob_ops - oob operation operands
71 * @mode: operation mode
72 *
73 * @len: number of data bytes to write/read
74 *
75 * @retlen: number of data bytes written/read
76 *
77 * @ooblen: number of oob bytes to write/read
78 * @oobretlen: number of oob bytes written/read
79 * @ooboffs: offset of oob data in the oob area (only relevant when
Sergey Lapin3a38a552013-01-14 03:46:50 +000080 * mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW)
William Juul52c07962007-10-31 13:53:06 +010081 * @datbuf: data buffer - if NULL only oob data are read/written
82 * @oobbuf: oob data buffer
William Juul52c07962007-10-31 13:53:06 +010083 */
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
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900106/**
107 * struct mtd_oob_region - oob region definition
108 * @offset: region offset
109 * @length: region length
110 *
111 * This structure describes a region of the OOB area, and is used
112 * to retrieve ECC or free bytes sections.
113 * Each section is defined by an offset within the OOB area and a
114 * length.
115 */
116struct mtd_oob_region {
117 u32 offset;
118 u32 length;
119};
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530120
121/*
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900122 * struct mtd_ooblayout_ops - NAND OOB layout operations
123 * @ecc: function returning an ECC region in the OOB area.
124 * Should return -ERANGE if %section exceeds the total number of
125 * ECC sections.
Fabio Estevamd23a58d2022-10-07 11:35:53 -0300126 * @rfree: function returning a free region in the OOB area.
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900127 * Should return -ERANGE if %section exceeds the total number of
128 * free sections.
129 */
130struct mtd_ooblayout_ops {
131 int (*ecc)(struct mtd_info *mtd, int section,
132 struct mtd_oob_region *oobecc);
Simon Glass62fd1a42020-02-03 07:35:56 -0700133 int (*rfree)(struct mtd_info *mtd, int section,
134 struct mtd_oob_region *oobfree);
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900135};
136
137/*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200138 * Internal ECC layout control structure. For historical reasons, there is a
139 * similar, smaller struct nand_ecclayout_user (in mtd-abi.h) that is retained
140 * for export to user-space via the ECCGETLAYOUT ioctl.
141 * nand_ecclayout should be expandable in the future simply by the above macros.
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530142 */
143struct nand_ecclayout {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200144 __u32 eccbytes;
145 __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE];
146 __u32 oobavail;
Prabhakar Kushwaha4d2ba172013-10-04 13:47:58 +0530147 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE];
148};
149
Heiko Schocherf5895d12014-06-24 10:10:04 +0200150struct module; /* only needed for owner field in mtd_info */
151
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200152struct mtd_info {
153 u_char type;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200154 uint32_t flags;
155 uint64_t size; // Total size of the MTD
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200156
Michal Simekcc046dc2024-04-16 08:55:19 +0200157 /* "Major" erase size for the device. Naive users may take this
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200158 * to be the only erase size available, or may use the more detailed
159 * information below if they desire
160 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200161 uint32_t erasesize;
William Juul52c07962007-10-31 13:53:06 +0100162 /* Minimal writable flash unit size. In case of NOR flash it is 1 (even
163 * though individual bits can be cleared), in case of NAND flash it is
164 * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR
165 * it is of ECC block size, etc. It is illegal to have writesize = 0.
166 * Any driver registering a struct mtd_info must ensure a writesize of
167 * 1 or larger.
168 */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200169 uint32_t writesize;
170
171 /*
172 * Size of the write buffer used by the MTD. MTD devices having a write
173 * buffer can write multiple writesize chunks at a time. E.g. while
174 * writing 4 * writesize bytes to a device with 2 * writesize bytes
175 * buffer the MTD driver can (but doesn't have to) do 2 writesize
176 * operations, but not 4. Currently, all NANDs have writebufsize
177 * equivalent to writesize (NAND page size). Some NOR flashes do have
178 * writebufsize greater than writesize.
179 */
180 uint32_t writebufsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200181
Heiko Schocherf5895d12014-06-24 10:10:04 +0200182 uint32_t oobsize; // Amount of OOB data per block (e.g. 16)
183 uint32_t oobavail; // Available OOB bytes per block
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200184
Sergey Lapin3a38a552013-01-14 03:46:50 +0000185 /*
Heiko Schocherf5895d12014-06-24 10:10:04 +0200186 * If erasesize is a power of 2 then the shift is stored in
187 * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize.
188 */
189 unsigned int erasesize_shift;
190 unsigned int writesize_shift;
191 /* Masks based on erasesize_shift and writesize_shift */
192 unsigned int erasesize_mask;
193 unsigned int writesize_mask;
194
195 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000196 * read ops return -EUCLEAN if max number of bitflips corrected on any
197 * one region comprising an ecc step equals or exceeds this value.
198 * Settable by driver, else defaults to ecc_strength. User can override
199 * in sysfs. N.B. The meaning of the -EUCLEAN return code has changed;
200 * see Documentation/ABI/testing/sysfs-class-mtd for more detail.
201 */
202 unsigned int bitflip_threshold;
203
Heiko Schocherf5895d12014-06-24 10:10:04 +0200204 // Kernel-only stuff starts here.
205#ifndef __UBOOT__
Scott Wood3628f002008-10-24 16:20:43 -0500206 const char *name;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200207#else
208 char *name;
209#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200210 int index;
211
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900212 /* OOB layout description */
213 const struct mtd_ooblayout_ops *ooblayout;
214
Sergey Lapin3a38a552013-01-14 03:46:50 +0000215 /* ECC layout structure pointer - read only! */
William Juul52c07962007-10-31 13:53:06 +0100216 struct nand_ecclayout *ecclayout;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200217
Heiko Schocherf5895d12014-06-24 10:10:04 +0200218 /* the ecc step size. */
219 unsigned int ecc_step_size;
220
Sergey Lapin3a38a552013-01-14 03:46:50 +0000221 /* max number of correctible bit errors per ecc step */
222 unsigned int ecc_strength;
223
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200224 /* Data for variable erase regions. If numeraseregions is zero,
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200225 * it means that the whole device has erasesize as given above.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200226 */
227 int numeraseregions;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200228 struct mtd_erase_region_info *eraseregions;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200229
Scott Wood3628f002008-10-24 16:20:43 -0500230 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000231 * Do not call via these pointers, use corresponding mtd_*()
232 * wrappers instead.
Scott Wood3628f002008-10-24 16:20:43 -0500233 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000234 int (*_erase) (struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200235#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000236 int (*_point) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200237 size_t *retlen, void **virt, resource_size_t *phys);
238 int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
239#endif
240 unsigned long (*_get_unmapped_area) (struct mtd_info *mtd,
241 unsigned long len,
242 unsigned long offset,
243 unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000244 int (*_read) (struct mtd_info *mtd, loff_t from, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200245 size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000246 int (*_write) (struct mtd_info *mtd, loff_t to, size_t len,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200247 size_t *retlen, const u_char *buf);
248 int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len,
249 size_t *retlen, const u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000250 int (*_read_oob) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200251 struct mtd_oob_ops *ops);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000252 int (*_write_oob) (struct mtd_info *mtd, loff_t to,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200253 struct mtd_oob_ops *ops);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200254 int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len,
255 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000256 int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200257 size_t len, size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200258 int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len,
259 size_t *retlen, struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000260 int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200261 size_t len, size_t *retlen, u_char *buf);
262 int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to,
263 size_t len, size_t *retlen, u_char *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000264 int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from,
Heiko Schocherf5895d12014-06-24 10:10:04 +0200265 size_t len);
266#ifndef __UBOOT__
267 int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs,
268 unsigned long count, loff_t to, size_t *retlen);
269#endif
Sergey Lapin3a38a552013-01-14 03:46:50 +0000270 void (*_sync) (struct mtd_info *mtd);
271 int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
272 int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200273 int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300274 int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000275 int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs);
276 int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200277#ifndef __UBOOT__
278 int (*_suspend) (struct mtd_info *mtd);
279 void (*_resume) (struct mtd_info *mtd);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200280 void (*_reboot) (struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200281#endif
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200282 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000283 * If the driver is something smart, like UBI, it may need to maintain
284 * its own reference counting. The below functions are only for driver.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200285 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000286 int (*_get_device) (struct mtd_info *mtd);
287 void (*_put_device) (struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100288
Heiko Schocherf5895d12014-06-24 10:10:04 +0200289#ifndef __UBOOT__
290 /* Backing device capabilities for this device
291 * - provides mmap capabilities
292 */
293 struct backing_dev_info *backing_dev_info;
294
William Juul52c07962007-10-31 13:53:06 +0100295 struct notifier_block reboot_notifier; /* default mode before reboot */
296#endif
297
298 /* ECC status information */
299 struct mtd_ecc_stats ecc_stats;
300 /* Subpage shift (NAND) */
301 int subpage_sft;
302
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200303 void *priv;
304
305 struct module *owner;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200306#ifndef __UBOOT__
307 struct device dev;
Thomas Choue51b65e2015-11-07 14:20:31 +0800308#else
309 struct udevice *dev;
Patrice Chotardbee32872022-03-21 09:13:36 +0100310 ofnode flash_node;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200311#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200312 int usecount;
Miquel Raynal6382e0c2018-09-29 12:58:27 +0200313
314 /* MTD devices do not have any parent. MTD partitions do. */
315 struct mtd_info *parent;
316
317 /*
318 * Offset of the partition relatively to the parent offset.
319 * Is 0 for real MTD devices (ie. not partitions).
320 */
321 u64 offset;
322
323 /*
324 * List node used to add an MTD partition to the parent
325 * partition list.
326 */
327 struct list_head node;
328
329 /*
330 * List of partitions attached to this MTD device (the parent
331 * MTD device can itself be a partition).
332 */
333 struct list_head partitions;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200334};
335
Brian Norris4cf0fa92018-08-16 17:30:03 +0200336#if IS_ENABLED(CONFIG_DM)
Simon Glass1b349e32020-12-19 10:40:00 -0700337static inline void mtd_set_ofnode(struct mtd_info *mtd, ofnode node)
Brian Norris4cf0fa92018-08-16 17:30:03 +0200338{
Simon Glassa7ece582020-12-19 10:40:14 -0700339 dev_set_ofnode(mtd->dev, node);
Brian Norris4cf0fa92018-08-16 17:30:03 +0200340}
341
Simon Glass1b349e32020-12-19 10:40:00 -0700342static inline const ofnode mtd_get_ofnode(struct mtd_info *mtd)
Brian Norris4cf0fa92018-08-16 17:30:03 +0200343{
Simon Glassa7ece582020-12-19 10:40:14 -0700344 return dev_ofnode(mtd->dev);
Brian Norris4cf0fa92018-08-16 17:30:03 +0200345}
346#else
347struct device_node;
348
349static inline void mtd_set_of_node(struct mtd_info *mtd,
350 const struct device_node *np)
351{
352}
353
354static inline const struct device_node *mtd_get_of_node(struct mtd_info *mtd)
355{
356 return NULL;
357}
358#endif
359
Miquel Raynal6382e0c2018-09-29 12:58:27 +0200360static inline bool mtd_is_partition(const struct mtd_info *mtd)
361{
362 return mtd->parent;
363}
364
365static inline bool mtd_has_partitions(const struct mtd_info *mtd)
366{
367 return !list_empty(&mtd->partitions);
368}
369
Boris Brezillon7dfad312018-12-02 10:54:30 +0100370bool mtd_partitions_used(struct mtd_info *master);
371
Boris Brezillone1b1e3a2017-11-22 02:38:23 +0900372int mtd_ooblayout_ecc(struct mtd_info *mtd, int section,
373 struct mtd_oob_region *oobecc);
374int mtd_ooblayout_find_eccregion(struct mtd_info *mtd, int eccbyte,
375 int *section,
376 struct mtd_oob_region *oobregion);
377int mtd_ooblayout_get_eccbytes(struct mtd_info *mtd, u8 *eccbuf,
378 const u8 *oobbuf, int start, int nbytes);
379int mtd_ooblayout_set_eccbytes(struct mtd_info *mtd, const u8 *eccbuf,
380 u8 *oobbuf, int start, int nbytes);
381int mtd_ooblayout_free(struct mtd_info *mtd, int section,
382 struct mtd_oob_region *oobfree);
383int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf,
384 const u8 *oobbuf, int start, int nbytes);
385int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf,
386 u8 *oobbuf, int start, int nbytes);
387int mtd_ooblayout_count_freebytes(struct mtd_info *mtd);
388int mtd_ooblayout_count_eccbytes(struct mtd_info *mtd);
389
390static inline void mtd_set_ooblayout(struct mtd_info *mtd,
391 const struct mtd_ooblayout_ops *ooblayout)
392{
393 mtd->ooblayout = ooblayout;
394}
395
Miquel Raynalb4c6fb22018-11-18 21:11:46 +0100396static inline u32 mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops)
Scott Wood52ab7ce2016-05-30 13:57:58 -0500397{
398 return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize;
399}
400
Sergey Lapin3a38a552013-01-14 03:46:50 +0000401int mtd_erase(struct mtd_info *mtd, struct erase_info *instr);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200402#ifndef __UBOOT__
403int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
404 void **virt, resource_size_t *phys);
405int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
406#endif
407unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len,
408 unsigned long offset, unsigned long flags);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000409int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
410 u_char *buf);
411int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
412 const u_char *buf);
413int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
414 const u_char *buf);
415
Alexey Romanov8e1fd2e2024-07-18 08:46:05 +0300416#if CONFIG_IS_ENABLED(MTD_BLOCK)
417static inline struct mtd_info *blk_desc_to_mtd(struct blk_desc *bdesc)
418{
419 void *priv = dev_get_priv(bdesc->bdev);
420
421 if (!priv)
422 return NULL;
423
424 return *((struct mtd_info **)priv);
425}
426
427int mtd_bind(struct udevice *dev, struct mtd_info **mtd);
428#else
429static inline struct mtd_info *blk_desc_to_mtd(struct blk_desc *bdesc)
430{
431 return NULL;
432}
433
434static inline int mtd_bind(struct udevice *dev, struct mtd_info **mtd)
435{
436 return -EOPNOTSUPP;
437}
438#endif
439
Sergey Lapin3a38a552013-01-14 03:46:50 +0000440int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops);
Ezequiel Garcia18e75412018-08-16 17:30:00 +0200441int mtd_write_oob(struct mtd_info *mtd, loff_t to, struct mtd_oob_ops *ops);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000442
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200443int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
444 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000445int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
446 size_t *retlen, u_char *buf);
Heiko Schocher081fe9e2014-07-15 16:08:43 +0200447int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
448 struct otp_info *buf);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000449int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
450 size_t *retlen, u_char *buf);
451int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len,
452 size_t *retlen, u_char *buf);
453int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len);
454
Heiko Schocherf5895d12014-06-24 10:10:04 +0200455#ifndef __UBOOT__
Sergey Lapin3a38a552013-01-14 03:46:50 +0000456int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
457 unsigned long count, loff_t to, size_t *retlen);
458#endif
459
460static inline void mtd_sync(struct mtd_info *mtd)
461{
462 if (mtd->_sync)
463 mtd->_sync(mtd);
464}
465
466int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
467int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
468int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -0300469int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000470int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs);
471int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs);
472
Heiko Schocherf5895d12014-06-24 10:10:04 +0200473#ifndef __UBOOT__
474static inline int mtd_suspend(struct mtd_info *mtd)
475{
476 return mtd->_suspend ? mtd->_suspend(mtd) : 0;
477}
478
479static inline void mtd_resume(struct mtd_info *mtd)
480{
481 if (mtd->_resume)
482 mtd->_resume(mtd);
483}
484#endif
485
Stefan Roese586b3a62009-05-11 16:03:55 +0200486static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd)
487{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200488 if (mtd->erasesize_shift)
489 return sz >> mtd->erasesize_shift;
Stefan Roese586b3a62009-05-11 16:03:55 +0200490 do_div(sz, mtd->erasesize);
491 return sz;
492}
493
494static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd)
495{
Heiko Schocherf5895d12014-06-24 10:10:04 +0200496 if (mtd->erasesize_shift)
497 return sz & mtd->erasesize_mask;
Stefan Roese586b3a62009-05-11 16:03:55 +0200498 return do_div(sz, mtd->erasesize);
499}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200500
Heiko Schocherf5895d12014-06-24 10:10:04 +0200501static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd)
502{
503 if (mtd->writesize_shift)
504 return sz >> mtd->writesize_shift;
505 do_div(sz, mtd->writesize);
506 return sz;
507}
508
509static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd)
510{
511 if (mtd->writesize_shift)
512 return sz & mtd->writesize_mask;
513 return do_div(sz, mtd->writesize);
514}
515
Sergey Lapin3a38a552013-01-14 03:46:50 +0000516static inline int mtd_has_oob(const struct mtd_info *mtd)
517{
518 return mtd->_read_oob && mtd->_write_oob;
519}
520
Heiko Schocherf5895d12014-06-24 10:10:04 +0200521static inline int mtd_type_is_nand(const struct mtd_info *mtd)
522{
523 return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH;
524}
525
Sergey Lapin3a38a552013-01-14 03:46:50 +0000526static inline int mtd_can_have_bb(const struct mtd_info *mtd)
527{
528 return !!mtd->_block_isbad;
529}
530
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200531 /* Kernel-side ioctl definitions */
532
Heiko Schocherf5895d12014-06-24 10:10:04 +0200533struct mtd_partition;
534struct mtd_part_parser_data;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200535
Heiko Schocherf5895d12014-06-24 10:10:04 +0200536extern int mtd_device_parse_register(struct mtd_info *mtd,
537 const char * const *part_probe_types,
538 struct mtd_part_parser_data *parser_data,
539 const struct mtd_partition *defparts,
540 int defnr_parts);
541#define mtd_device_register(master, parts, nr_parts) \
542 mtd_device_parse_register(master, NULL, NULL, parts, nr_parts)
543extern int mtd_device_unregister(struct mtd_info *master);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200544extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200545extern int __get_mtd_device(struct mtd_info *mtd);
546extern void __put_mtd_device(struct mtd_info *mtd);
William Juul52c07962007-10-31 13:53:06 +0100547extern struct mtd_info *get_mtd_device_nm(const char *name);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200548extern void put_mtd_device(struct mtd_info *mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200549
Heiko Schocherf5895d12014-06-24 10:10:04 +0200550#ifndef __UBOOT__
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200551struct mtd_notifier {
552 void (*add)(struct mtd_info *mtd);
553 void (*remove)(struct mtd_info *mtd);
554 struct list_head list;
555};
556
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200557extern void register_mtd_user (struct mtd_notifier *new);
558extern int unregister_mtd_user (struct mtd_notifier *old);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200559#endif
Heiko Schocherf5895d12014-06-24 10:10:04 +0200560void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200561
Sergey Lapin3a38a552013-01-14 03:46:50 +0000562static inline int mtd_is_bitflip(int err) {
563 return err == -EUCLEAN;
564}
565
566static inline int mtd_is_eccerr(int err) {
567 return err == -EBADMSG;
568}
569
570static inline int mtd_is_bitflip_or_eccerr(int err) {
571 return mtd_is_bitflip(err) || mtd_is_eccerr(err);
572}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200573
Heiko Schocher94b66de2015-10-22 06:19:21 +0200574unsigned mtd_mmap_capabilities(struct mtd_info *mtd);
575
Heiko Schocherf5895d12014-06-24 10:10:04 +0200576#ifdef __UBOOT__
577/* drivers/mtd/mtdcore.h */
Sean Anderson55d6f042023-11-04 16:37:48 -0400578#if CONFIG_IS_ENABLED(MTD)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200579int add_mtd_device(struct mtd_info *mtd);
Heiko Schocherb24c4272014-07-15 16:08:42 +0200580int del_mtd_device(struct mtd_info *mtd);
Sean Anderson55d6f042023-11-04 16:37:48 -0400581#else
582static inline int add_mtd_device(struct mtd_info *mtd)
583{
584 return -ENOSYS;
585}
586
587static inline int del_mtd_device(struct mtd_info *mtd)
588{
589 return -ENOSYS;
590}
591#endif
Boris Brezillondb0d8052018-12-02 10:54:24 +0100592
593#ifdef CONFIG_MTD_PARTITIONS
Heiko Schocherf5895d12014-06-24 10:10:04 +0200594int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int);
595int del_mtd_partitions(struct mtd_info *);
Boris Brezillondb0d8052018-12-02 10:54:24 +0100596#else
597static inline int add_mtd_partitions(struct mtd_info *mtd,
598 const struct mtd_partition *parts,
599 int nparts)
600{
601 return 0;
602}
603
604static inline int del_mtd_partitions(struct mtd_info *mtd)
605{
606 return 0;
607}
608#endif
Heiko Schocher7e5a16c2015-04-27 07:42:05 +0200609
Marek Behún544a8c92021-05-26 14:08:19 +0200610#if defined(CONFIG_MTD_PARTITIONS) && CONFIG_IS_ENABLED(DM) && \
611 CONFIG_IS_ENABLED(OF_CONTROL)
612int add_mtd_partitions_of(struct mtd_info *master);
613#else
614static inline int add_mtd_partitions_of(struct mtd_info *master)
615{
616 return 0;
617}
618#endif
619
Miquel Raynalfff4be32018-08-16 17:30:05 +0200620struct mtd_info *__mtd_next_device(int i);
621#define mtd_for_each_device(mtd) \
622 for ((mtd) = __mtd_next_device(0); \
623 (mtd) != NULL; \
624 (mtd) = __mtd_next_device(mtd->index + 1))
625
Steve Rae6eb14ff2016-06-29 13:50:59 -0700626/* drivers/mtd/mtdcore.c */
627void mtd_get_len_incl_bad(struct mtd_info *mtd, uint64_t offset,
628 const uint64_t length, uint64_t *len_incl_bad,
629 int *truncated);
Boris Brezillon059e4a62018-12-02 10:54:22 +0100630bool mtd_dev_list_updated(void);
Miquel Raynal1a08e992018-09-29 12:58:26 +0200631
632/* drivers/mtd/mtd_uboot.c */
633int mtd_search_alternate_name(const char *mtdname, char *altname,
634 unsigned int max_len);
635
Heiko Schocherf5895d12014-06-24 10:10:04 +0200636#endif
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200637#endif /* __MTD_MTD_H__ */