xref: /openbmc/linux/include/linux/mtd/mtd.h (revision 4a575865)
1fd534e9bSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
21da177e4SLinus Torvalds /*
3a1452a37SDavid Woodhouse  * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al.
41da177e4SLinus Torvalds  */
51da177e4SLinus Torvalds 
61da177e4SLinus Torvalds #ifndef __MTD_MTD_H__
71da177e4SLinus Torvalds #define __MTD_MTD_H__
81da177e4SLinus Torvalds 
91da177e4SLinus Torvalds #include <linux/types.h>
101da177e4SLinus Torvalds #include <linux/uio.h>
1146b5889cSMiquel Raynal #include <linux/list.h>
12963a6fb0SNicolas Pitre #include <linux/notifier.h>
131f24b5a8SDavid Brownell #include <linux/device.h>
1428309572SCédric Le Goater #include <linux/of.h>
15c4dfa25aSAlban Bedel #include <linux/nvmem-provider.h>
161da177e4SLinus Torvalds 
171da177e4SLinus Torvalds #include <mtd/mtd-abi.h>
181da177e4SLinus Torvalds 
1969423d99SAdrian Hunter #include <asm/div64.h>
2069423d99SAdrian Hunter 
2169423d99SAdrian Hunter #define MTD_FAIL_ADDR_UNKNOWN -1LL
22bb0eb217SAdrian Hunter 
238f347c42SBoris Brezillon struct mtd_info;
248f347c42SBoris Brezillon 
25e2e24e8eSBrian Norris /*
26e2e24e8eSBrian Norris  * If the erase fails, fail_addr might indicate exactly which block failed. If
27e2e24e8eSBrian Norris  * fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level
28e2e24e8eSBrian Norris  * or was not specific to any particular block.
29e2e24e8eSBrian Norris  */
301da177e4SLinus Torvalds struct erase_info {
3169423d99SAdrian Hunter 	uint64_t addr;
3269423d99SAdrian Hunter 	uint64_t len;
3369423d99SAdrian Hunter 	uint64_t fail_addr;
341da177e4SLinus Torvalds };
351da177e4SLinus Torvalds 
361da177e4SLinus Torvalds struct mtd_erase_region_info {
3769423d99SAdrian Hunter 	uint64_t offset;		/* At which this region starts, from the beginning of the MTD */
3826cdb67cSDavid Woodhouse 	uint32_t erasesize;		/* For this region */
3926cdb67cSDavid Woodhouse 	uint32_t numblocks;		/* Number of blocks of erasesize in this region */
400ecbc81aSRodolfo Giometti 	unsigned long *lockmap;		/* If keeping bitmap of locks */
411da177e4SLinus Torvalds };
421da177e4SLinus Torvalds 
438593fbc6SThomas Gleixner /**
448593fbc6SThomas Gleixner  * struct mtd_oob_ops - oob operation operands
458593fbc6SThomas Gleixner  * @mode:	operation mode
468593fbc6SThomas Gleixner  *
477014568bSVitaly Wool  * @len:	number of data bytes to write/read
488593fbc6SThomas Gleixner  *
497014568bSVitaly Wool  * @retlen:	number of data bytes written/read
508593fbc6SThomas Gleixner  *
517014568bSVitaly Wool  * @ooblen:	number of oob bytes to write/read
527014568bSVitaly Wool  * @oobretlen:	number of oob bytes written/read
538593fbc6SThomas Gleixner  * @ooboffs:	offset of oob data in the oob area (only relevant when
544180f24aSBrian Norris  *		mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW)
558593fbc6SThomas Gleixner  * @datbuf:	data buffer - if NULL only oob data are read/written
568593fbc6SThomas Gleixner  * @oobbuf:	oob data buffer
5773a4421cSArtem Bityutskiy  *
58d70420bcSMiquel Raynal  * Note, some MTD drivers do not allow you to write more than one OOB area at
59d70420bcSMiquel Raynal  * one go. If you try to do that on such an MTD device, -EINVAL will be
60d70420bcSMiquel Raynal  * returned. If you want to make your implementation portable on all kind of MTD
61d70420bcSMiquel Raynal  * devices you should split the write request into several sub-requests when the
62d70420bcSMiquel Raynal  * request crosses a page boundary.
638593fbc6SThomas Gleixner  */
648593fbc6SThomas Gleixner struct mtd_oob_ops {
65905c6bcdSBrian Norris 	unsigned int	mode;
668593fbc6SThomas Gleixner 	size_t		len;
678593fbc6SThomas Gleixner 	size_t		retlen;
688593fbc6SThomas Gleixner 	size_t		ooblen;
697014568bSVitaly Wool 	size_t		oobretlen;
708593fbc6SThomas Gleixner 	uint32_t	ooboffs;
718593fbc6SThomas Gleixner 	uint8_t		*datbuf;
728593fbc6SThomas Gleixner 	uint8_t		*oobbuf;
738593fbc6SThomas Gleixner };
748593fbc6SThomas Gleixner 
7575eb2cecSBoris Brezillon /**
7675eb2cecSBoris Brezillon  * struct mtd_oob_region - oob region definition
7775eb2cecSBoris Brezillon  * @offset: region offset
7875eb2cecSBoris Brezillon  * @length: region length
7975eb2cecSBoris Brezillon  *
8075eb2cecSBoris Brezillon  * This structure describes a region of the OOB area, and is used
8175eb2cecSBoris Brezillon  * to retrieve ECC or free bytes sections.
8275eb2cecSBoris Brezillon  * Each section is defined by an offset within the OOB area and a
8375eb2cecSBoris Brezillon  * length.
8475eb2cecSBoris Brezillon  */
8575eb2cecSBoris Brezillon struct mtd_oob_region {
8675eb2cecSBoris Brezillon 	u32 offset;
8775eb2cecSBoris Brezillon 	u32 length;
8875eb2cecSBoris Brezillon };
8975eb2cecSBoris Brezillon 
90adbbc3bcSBoris Brezillon /*
91adbbc3bcSBoris Brezillon  * struct mtd_ooblayout_ops - NAND OOB layout operations
92adbbc3bcSBoris Brezillon  * @ecc: function returning an ECC region in the OOB area.
93adbbc3bcSBoris Brezillon  *	 Should return -ERANGE if %section exceeds the total number of
94adbbc3bcSBoris Brezillon  *	 ECC sections.
95adbbc3bcSBoris Brezillon  * @free: function returning a free region in the OOB area.
96adbbc3bcSBoris Brezillon  *	  Should return -ERANGE if %section exceeds the total number of
97adbbc3bcSBoris Brezillon  *	  free sections.
98adbbc3bcSBoris Brezillon  */
99adbbc3bcSBoris Brezillon struct mtd_ooblayout_ops {
100adbbc3bcSBoris Brezillon 	int (*ecc)(struct mtd_info *mtd, int section,
101adbbc3bcSBoris Brezillon 		   struct mtd_oob_region *oobecc);
102adbbc3bcSBoris Brezillon 	int (*free)(struct mtd_info *mtd, int section,
103adbbc3bcSBoris Brezillon 		    struct mtd_oob_region *oobfree);
104adbbc3bcSBoris Brezillon };
105adbbc3bcSBoris Brezillon 
106477b0229SBoris Brezillon /**
107477b0229SBoris Brezillon  * struct mtd_pairing_info - page pairing information
108477b0229SBoris Brezillon  *
109477b0229SBoris Brezillon  * @pair: pair id
110477b0229SBoris Brezillon  * @group: group id
111477b0229SBoris Brezillon  *
112477b0229SBoris Brezillon  * The term "pair" is used here, even though TLC NANDs might group pages by 3
113477b0229SBoris Brezillon  * (3 bits in a single cell). A pair should regroup all pages that are sharing
114477b0229SBoris Brezillon  * the same cell. Pairs are then indexed in ascending order.
115477b0229SBoris Brezillon  *
116477b0229SBoris Brezillon  * @group is defining the position of a page in a given pair. It can also be
117477b0229SBoris Brezillon  * seen as the bit position in the cell: page attached to bit 0 belongs to
118477b0229SBoris Brezillon  * group 0, page attached to bit 1 belongs to group 1, etc.
119477b0229SBoris Brezillon  *
120477b0229SBoris Brezillon  * Example:
121477b0229SBoris Brezillon  * The H27UCG8T2BTR-BC datasheet describes the following pairing scheme:
122477b0229SBoris Brezillon  *
123477b0229SBoris Brezillon  *		group-0		group-1
124477b0229SBoris Brezillon  *
125477b0229SBoris Brezillon  *  pair-0	page-0		page-4
126477b0229SBoris Brezillon  *  pair-1	page-1		page-5
127477b0229SBoris Brezillon  *  pair-2	page-2		page-8
128477b0229SBoris Brezillon  *  ...
129477b0229SBoris Brezillon  *  pair-127	page-251	page-255
130477b0229SBoris Brezillon  *
131477b0229SBoris Brezillon  *
132477b0229SBoris Brezillon  * Note that the "group" and "pair" terms were extracted from Samsung and
133477b0229SBoris Brezillon  * Hynix datasheets, and might be referenced under other names in other
134477b0229SBoris Brezillon  * datasheets (Micron is describing this concept as "shared pages").
135477b0229SBoris Brezillon  */
136477b0229SBoris Brezillon struct mtd_pairing_info {
137477b0229SBoris Brezillon 	int pair;
138477b0229SBoris Brezillon 	int group;
139477b0229SBoris Brezillon };
140477b0229SBoris Brezillon 
141477b0229SBoris Brezillon /**
142477b0229SBoris Brezillon  * struct mtd_pairing_scheme - page pairing scheme description
143477b0229SBoris Brezillon  *
144477b0229SBoris Brezillon  * @ngroups: number of groups. Should be related to the number of bits
145477b0229SBoris Brezillon  *	     per cell.
146477b0229SBoris Brezillon  * @get_info: converts a write-unit (page number within an erase block) into
147477b0229SBoris Brezillon  *	      mtd_pairing information (pair + group). This function should
148477b0229SBoris Brezillon  *	      fill the info parameter based on the wunit index or return
149477b0229SBoris Brezillon  *	      -EINVAL if the wunit parameter is invalid.
150477b0229SBoris Brezillon  * @get_wunit: converts pairing information into a write-unit (page) number.
151477b0229SBoris Brezillon  *	       This function should return the wunit index pointed by the
152477b0229SBoris Brezillon  *	       pairing information described in the info argument. It should
153477b0229SBoris Brezillon  *	       return -EINVAL, if there's no wunit corresponding to the
154477b0229SBoris Brezillon  *	       passed pairing information.
155477b0229SBoris Brezillon  *
156477b0229SBoris Brezillon  * See mtd_pairing_info documentation for a detailed explanation of the
157477b0229SBoris Brezillon  * pair and group concepts.
158477b0229SBoris Brezillon  *
159477b0229SBoris Brezillon  * The mtd_pairing_scheme structure provides a generic solution to represent
160477b0229SBoris Brezillon  * NAND page pairing scheme. Instead of exposing two big tables to do the
161477b0229SBoris Brezillon  * write-unit <-> (pair + group) conversions, we ask the MTD drivers to
162477b0229SBoris Brezillon  * implement the ->get_info() and ->get_wunit() functions.
163477b0229SBoris Brezillon  *
164477b0229SBoris Brezillon  * MTD users will then be able to query these information by using the
165477b0229SBoris Brezillon  * mtd_pairing_info_to_wunit() and mtd_wunit_to_pairing_info() helpers.
166477b0229SBoris Brezillon  *
167477b0229SBoris Brezillon  * @ngroups is here to help MTD users iterating over all the pages in a
168477b0229SBoris Brezillon  * given pair. This value can be retrieved by MTD users using the
169477b0229SBoris Brezillon  * mtd_pairing_groups() helper.
170477b0229SBoris Brezillon  *
171477b0229SBoris Brezillon  * Examples are given in the mtd_pairing_info_to_wunit() and
172477b0229SBoris Brezillon  * mtd_wunit_to_pairing_info() documentation.
173477b0229SBoris Brezillon  */
174477b0229SBoris Brezillon struct mtd_pairing_scheme {
175477b0229SBoris Brezillon 	int ngroups;
176477b0229SBoris Brezillon 	int (*get_info)(struct mtd_info *mtd, int wunit,
177477b0229SBoris Brezillon 			struct mtd_pairing_info *info);
178477b0229SBoris Brezillon 	int (*get_wunit)(struct mtd_info *mtd,
179477b0229SBoris Brezillon 			 const struct mtd_pairing_info *info);
180477b0229SBoris Brezillon };
181477b0229SBoris Brezillon 
182de477254SPaul Gortmaker struct module;	/* only needed for owner field in mtd_info */
183de477254SPaul Gortmaker 
184e8e3edb9SMario Rugiero /**
185e8e3edb9SMario Rugiero  * struct mtd_debug_info - debugging information for an MTD device.
186e8e3edb9SMario Rugiero  *
187e8e3edb9SMario Rugiero  * @dfs_dir: direntry object of the MTD device debugfs directory
188e8e3edb9SMario Rugiero  */
189e8e3edb9SMario Rugiero struct mtd_debug_info {
190e8e3edb9SMario Rugiero 	struct dentry *dfs_dir;
191e8e3edb9SMario Rugiero };
192e8e3edb9SMario Rugiero 
19346b5889cSMiquel Raynal /**
19446b5889cSMiquel Raynal  * struct mtd_part - MTD partition specific fields
19546b5889cSMiquel Raynal  *
19646b5889cSMiquel Raynal  * @node: list node used to add an MTD partition to the parent partition list
19746b5889cSMiquel Raynal  * @offset: offset of the partition relatively to the parent offset
1989e3307a1SBoris Brezillon  * @size: partition size. Should be equal to mtd->size unless
1999e3307a1SBoris Brezillon  *	  MTD_SLC_ON_MLC_EMULATION is set
20046b5889cSMiquel Raynal  * @flags: original flags (before the mtdpart logic decided to tweak them based
20146b5889cSMiquel Raynal  *	   on flash constraints, like eraseblock/pagesize alignment)
20246b5889cSMiquel Raynal  *
20346b5889cSMiquel Raynal  * This struct is embedded in mtd_info and contains partition-specific
20446b5889cSMiquel Raynal  * properties/fields.
20546b5889cSMiquel Raynal  */
20646b5889cSMiquel Raynal struct mtd_part {
20746b5889cSMiquel Raynal 	struct list_head node;
20846b5889cSMiquel Raynal 	u64 offset;
2099e3307a1SBoris Brezillon 	u64 size;
21046b5889cSMiquel Raynal 	u32 flags;
21146b5889cSMiquel Raynal };
21246b5889cSMiquel Raynal 
21346b5889cSMiquel Raynal /**
21446b5889cSMiquel Raynal  * struct mtd_master - MTD master specific fields
21546b5889cSMiquel Raynal  *
21646b5889cSMiquel Raynal  * @partitions_lock: lock protecting accesses to the partition list. Protects
21746b5889cSMiquel Raynal  *		     not only the master partition list, but also all
21846b5889cSMiquel Raynal  *		     sub-partitions.
21946b5889cSMiquel Raynal  * @suspended: et to 1 when the device is suspended, 0 otherwise
22046b5889cSMiquel Raynal  *
22146b5889cSMiquel Raynal  * This struct is embedded in mtd_info and contains master-specific
22246b5889cSMiquel Raynal  * properties/fields. The master is the root MTD device from the MTD partition
22346b5889cSMiquel Raynal  * point of view.
22446b5889cSMiquel Raynal  */
22546b5889cSMiquel Raynal struct mtd_master {
22646b5889cSMiquel Raynal 	struct mutex partitions_lock;
2271ad55288SAlexander Sverdlin 	struct mutex chrdev_lock;
22846b5889cSMiquel Raynal 	unsigned int suspended : 1;
22946b5889cSMiquel Raynal };
23046b5889cSMiquel Raynal 
2311da177e4SLinus Torvalds struct mtd_info {
2321da177e4SLinus Torvalds 	u_char type;
23326cdb67cSDavid Woodhouse 	uint32_t flags;
23469423d99SAdrian Hunter 	uint64_t size;	 // Total size of the MTD
2351da177e4SLinus Torvalds 
236151e7659SDavid Woodhouse 	/* "Major" erase size for the device. Naïve users may take this
2371da177e4SLinus Torvalds 	 * to be the only erase size available, or may use the more detailed
2381da177e4SLinus Torvalds 	 * information below if they desire
2391da177e4SLinus Torvalds 	 */
24026cdb67cSDavid Woodhouse 	uint32_t erasesize;
241783ed81fSArtem B. Bityutskiy 	/* Minimal writable flash unit size. In case of NOR flash it is 1 (even
242783ed81fSArtem B. Bityutskiy 	 * though individual bits can be cleared), in case of NAND flash it is
243783ed81fSArtem B. Bityutskiy 	 * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR
244783ed81fSArtem B. Bityutskiy 	 * it is of ECC block size, etc. It is illegal to have writesize = 0.
245783ed81fSArtem B. Bityutskiy 	 * Any driver registering a struct mtd_info must ensure a writesize of
246783ed81fSArtem B. Bityutskiy 	 * 1 or larger.
24728318776SJoern Engel 	 */
24826cdb67cSDavid Woodhouse 	uint32_t writesize;
2491da177e4SLinus Torvalds 
2500e4ca7e5SAnatolij Gustschin 	/*
2510e4ca7e5SAnatolij Gustschin 	 * Size of the write buffer used by the MTD. MTD devices having a write
2520e4ca7e5SAnatolij Gustschin 	 * buffer can write multiple writesize chunks at a time. E.g. while
2530e4ca7e5SAnatolij Gustschin 	 * writing 4 * writesize bytes to a device with 2 * writesize bytes
2540e4ca7e5SAnatolij Gustschin 	 * buffer the MTD driver can (but doesn't have to) do 2 writesize
2550e4ca7e5SAnatolij Gustschin 	 * operations, but not 4. Currently, all NANDs have writebufsize
2560e4ca7e5SAnatolij Gustschin 	 * equivalent to writesize (NAND page size). Some NOR flashes do have
2570e4ca7e5SAnatolij Gustschin 	 * writebufsize greater than writesize.
2580e4ca7e5SAnatolij Gustschin 	 */
2590e4ca7e5SAnatolij Gustschin 	uint32_t writebufsize;
2600e4ca7e5SAnatolij Gustschin 
26126cdb67cSDavid Woodhouse 	uint32_t oobsize;   // Amount of OOB data per block (e.g. 16)
26226cdb67cSDavid Woodhouse 	uint32_t oobavail;  // Available OOB bytes per block
2631da177e4SLinus Torvalds 
26469423d99SAdrian Hunter 	/*
26569423d99SAdrian Hunter 	 * If erasesize is a power of 2 then the shift is stored in
26669423d99SAdrian Hunter 	 * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize.
26769423d99SAdrian Hunter 	 */
26869423d99SAdrian Hunter 	unsigned int erasesize_shift;
26969423d99SAdrian Hunter 	unsigned int writesize_shift;
27069423d99SAdrian Hunter 	/* Masks based on erasesize_shift and writesize_shift */
27169423d99SAdrian Hunter 	unsigned int erasesize_mask;
27269423d99SAdrian Hunter 	unsigned int writesize_mask;
2731da177e4SLinus Torvalds 
274d062d4edSMike Dunn 	/*
275d062d4edSMike Dunn 	 * read ops return -EUCLEAN if max number of bitflips corrected on any
276d062d4edSMike Dunn 	 * one region comprising an ecc step equals or exceeds this value.
277d062d4edSMike Dunn 	 * Settable by driver, else defaults to ecc_strength.  User can override
278d062d4edSMike Dunn 	 * in sysfs.  N.B. The meaning of the -EUCLEAN return code has changed;
279d062d4edSMike Dunn 	 * see Documentation/ABI/testing/sysfs-class-mtd for more detail.
280d062d4edSMike Dunn 	 */
281d062d4edSMike Dunn 	unsigned int bitflip_threshold;
282d062d4edSMike Dunn 
283971e4aeeSPavel Machek 	/* Kernel-only stuff starts here. */
284eadcf0d7SGreg Kroah-Hartman 	const char *name;
2851da177e4SLinus Torvalds 	int index;
2861da177e4SLinus Torvalds 
287adbbc3bcSBoris Brezillon 	/* OOB layout description */
288adbbc3bcSBoris Brezillon 	const struct mtd_ooblayout_ops *ooblayout;
289adbbc3bcSBoris Brezillon 
290477b0229SBoris Brezillon 	/* NAND pairing scheme, only provided for MLC/TLC NANDs */
291477b0229SBoris Brezillon 	const struct mtd_pairing_scheme *pairing;
292477b0229SBoris Brezillon 
293c41a0582SHuang Shijie 	/* the ecc step size. */
294c41a0582SHuang Shijie 	unsigned int ecc_step_size;
295c41a0582SHuang Shijie 
29686c2072bSMike Dunn 	/* max number of correctible bit errors per ecc step */
2971d0b95b0SMike Dunn 	unsigned int ecc_strength;
2981d0b95b0SMike Dunn 
2991da177e4SLinus Torvalds 	/* Data for variable erase regions. If numeraseregions is zero,
3001da177e4SLinus Torvalds 	 * it means that the whole device has erasesize as given above.
3011da177e4SLinus Torvalds 	 */
3021da177e4SLinus Torvalds 	int numeraseregions;
3031da177e4SLinus Torvalds 	struct mtd_erase_region_info *eraseregions;
3041da177e4SLinus Torvalds 
305b38178eeSJörn Engel 	/*
3067e1f0dc0SArtem Bityutskiy 	 * Do not call via these pointers, use corresponding mtd_*()
3077e1f0dc0SArtem Bityutskiy 	 * wrappers instead.
308b38178eeSJörn Engel 	 */
3093c3c10bbSArtem Bityutskiy 	int (*_erase) (struct mtd_info *mtd, struct erase_info *instr);
3103c3c10bbSArtem Bityutskiy 	int (*_point) (struct mtd_info *mtd, loff_t from, size_t len,
311a98889f3SJared Hulbert 		       size_t *retlen, void **virt, resource_size_t *phys);
3125e4e6e3fSArtem Bityutskiy 	int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
3133c3c10bbSArtem Bityutskiy 	int (*_read) (struct mtd_info *mtd, loff_t from, size_t len,
314329ad399SArtem Bityutskiy 		      size_t *retlen, u_char *buf);
3153c3c10bbSArtem Bityutskiy 	int (*_write) (struct mtd_info *mtd, loff_t to, size_t len,
316eda95cbfSArtem Bityutskiy 		       size_t *retlen, const u_char *buf);
3173c3c10bbSArtem Bityutskiy 	int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len,
3187ae79d7fSArtem Bityutskiy 			     size_t *retlen, const u_char *buf);
3193c3c10bbSArtem Bityutskiy 	int (*_read_oob) (struct mtd_info *mtd, loff_t from,
320fd2819bbSArtem Bityutskiy 			  struct mtd_oob_ops *ops);
3213c3c10bbSArtem Bityutskiy 	int (*_write_oob) (struct mtd_info *mtd, loff_t to,
322a2cc5ba0SArtem Bityutskiy 			   struct mtd_oob_ops *ops);
3234b78fc42SChristian Riesch 	int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len,
3244b78fc42SChristian Riesch 				    size_t *retlen, struct otp_info *buf);
3253c3c10bbSArtem Bityutskiy 	int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from,
326d264f72aSArtem Bityutskiy 				    size_t len, size_t *retlen, u_char *buf);
3274b78fc42SChristian Riesch 	int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len,
3284b78fc42SChristian Riesch 				    size_t *retlen, struct otp_info *buf);
3293c3c10bbSArtem Bityutskiy 	int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from,
3304ea1cabbSArtem Bityutskiy 				    size_t len, size_t *retlen, u_char *buf);
3313c3c10bbSArtem Bityutskiy 	int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to,
3321df1fc8cSTudor Ambarus 				     size_t len, size_t *retlen,
3331df1fc8cSTudor Ambarus 				     const u_char *buf);
3343c3c10bbSArtem Bityutskiy 	int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from,
3354403dbfbSArtem Bityutskiy 				    size_t len);
336e3c1f1c9SMichael Walle 	int (*_erase_user_prot_reg) (struct mtd_info *mtd, loff_t from,
337e3c1f1c9SMichael Walle 				     size_t len);
3383c3c10bbSArtem Bityutskiy 	int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs,
339b0a31f7bSArtem Bityutskiy 			unsigned long count, loff_t to, size_t *retlen);
3403c3c10bbSArtem Bityutskiy 	void (*_sync) (struct mtd_info *mtd);
3413c3c10bbSArtem Bityutskiy 	int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
3423c3c10bbSArtem Bityutskiy 	int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
3433c3c10bbSArtem Bityutskiy 	int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len);
3448471bb73SEzequiel Garcia 	int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs);
3453c3c10bbSArtem Bityutskiy 	int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs);
3463c3c10bbSArtem Bityutskiy 	int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs);
3476080ef6eSJeff Westfahl 	int (*_max_bad_blocks) (struct mtd_info *mtd, loff_t ofs, size_t len);
3483c3c10bbSArtem Bityutskiy 	int (*_suspend) (struct mtd_info *mtd);
3493c3c10bbSArtem Bityutskiy 	void (*_resume) (struct mtd_info *mtd);
3503efe41beSBrian Norris 	void (*_reboot) (struct mtd_info *mtd);
351a88d2dc6SArtem Bityutskiy 	/*
352a88d2dc6SArtem Bityutskiy 	 * If the driver is something smart, like UBI, it may need to maintain
353a88d2dc6SArtem Bityutskiy 	 * its own reference counting. The below functions are only for driver.
354a88d2dc6SArtem Bityutskiy 	 */
3553c3c10bbSArtem Bityutskiy 	int (*_get_device) (struct mtd_info *mtd);
3563c3c10bbSArtem Bityutskiy 	void (*_put_device) (struct mtd_info *mtd);
357402d3265SDavid Howells 
3589f897bfdSKamal Dasu 	/*
3599f897bfdSKamal Dasu 	 * flag indicates a panic write, low level drivers can take appropriate
3609f897bfdSKamal Dasu 	 * action if required to ensure writes go through
3619f897bfdSKamal Dasu 	 */
3629f897bfdSKamal Dasu 	bool oops_panic_write;
3639f897bfdSKamal Dasu 
364963a6fb0SNicolas Pitre 	struct notifier_block reboot_notifier;  /* default mode before reboot */
365963a6fb0SNicolas Pitre 
3667fac4648SThomas Gleixner 	/* ECC status information */
3677fac4648SThomas Gleixner 	struct mtd_ecc_stats ecc_stats;
36829072b96SThomas Gleixner 	/* Subpage shift (NAND) */
36929072b96SThomas Gleixner 	int subpage_sft;
3707fac4648SThomas Gleixner 
3711da177e4SLinus Torvalds 	void *priv;
3721da177e4SLinus Torvalds 
3731da177e4SLinus Torvalds 	struct module *owner;
3741f24b5a8SDavid Brownell 	struct device dev;
3751da177e4SLinus Torvalds 	int usecount;
376e8e3edb9SMario Rugiero 	struct mtd_debug_info dbg;
377c4dfa25aSAlban Bedel 	struct nvmem_device *nvmem;
3784b361cfaSMichael Walle 	struct nvmem_device *otp_user_nvmem;
3794b361cfaSMichael Walle 	struct nvmem_device *otp_factory_nvmem;
38046b5889cSMiquel Raynal 
38146b5889cSMiquel Raynal 	/*
38246b5889cSMiquel Raynal 	 * Parent device from the MTD partition point of view.
38346b5889cSMiquel Raynal 	 *
38446b5889cSMiquel Raynal 	 * MTD masters do not have any parent, MTD partitions do. The parent
38546b5889cSMiquel Raynal 	 * MTD device can itself be a partition.
38646b5889cSMiquel Raynal 	 */
38746b5889cSMiquel Raynal 	struct mtd_info *parent;
38846b5889cSMiquel Raynal 
38946b5889cSMiquel Raynal 	/* List of partitions attached to this MTD device */
39046b5889cSMiquel Raynal 	struct list_head partitions;
39146b5889cSMiquel Raynal 
39246b5889cSMiquel Raynal 	struct mtd_part part;
39346b5889cSMiquel Raynal 	struct mtd_master master;
3941da177e4SLinus Torvalds };
39546b5889cSMiquel Raynal 
39646b5889cSMiquel Raynal static inline struct mtd_info *mtd_get_master(struct mtd_info *mtd)
39746b5889cSMiquel Raynal {
39846b5889cSMiquel Raynal 	while (mtd->parent)
39946b5889cSMiquel Raynal 		mtd = mtd->parent;
40046b5889cSMiquel Raynal 
40146b5889cSMiquel Raynal 	return mtd;
40246b5889cSMiquel Raynal }
40346b5889cSMiquel Raynal 
40446b5889cSMiquel Raynal static inline u64 mtd_get_master_ofs(struct mtd_info *mtd, u64 ofs)
40546b5889cSMiquel Raynal {
40646b5889cSMiquel Raynal 	while (mtd->parent) {
40746b5889cSMiquel Raynal 		ofs += mtd->part.offset;
40846b5889cSMiquel Raynal 		mtd = mtd->parent;
40946b5889cSMiquel Raynal 	}
41046b5889cSMiquel Raynal 
41146b5889cSMiquel Raynal 	return ofs;
41246b5889cSMiquel Raynal }
41346b5889cSMiquel Raynal 
41446b5889cSMiquel Raynal static inline bool mtd_is_partition(const struct mtd_info *mtd)
41546b5889cSMiquel Raynal {
41646b5889cSMiquel Raynal 	return mtd->parent;
41746b5889cSMiquel Raynal }
41846b5889cSMiquel Raynal 
41946b5889cSMiquel Raynal static inline bool mtd_has_partitions(const struct mtd_info *mtd)
42046b5889cSMiquel Raynal {
42146b5889cSMiquel Raynal 	return !list_empty(&mtd->partitions);
42246b5889cSMiquel Raynal }
4231da177e4SLinus Torvalds 
42475eb2cecSBoris Brezillon int mtd_ooblayout_ecc(struct mtd_info *mtd, int section,
42575eb2cecSBoris Brezillon 		      struct mtd_oob_region *oobecc);
42675eb2cecSBoris Brezillon int mtd_ooblayout_find_eccregion(struct mtd_info *mtd, int eccbyte,
42775eb2cecSBoris Brezillon 				 int *section,
42875eb2cecSBoris Brezillon 				 struct mtd_oob_region *oobregion);
42975eb2cecSBoris Brezillon int mtd_ooblayout_get_eccbytes(struct mtd_info *mtd, u8 *eccbuf,
43075eb2cecSBoris Brezillon 			       const u8 *oobbuf, int start, int nbytes);
43175eb2cecSBoris Brezillon int mtd_ooblayout_set_eccbytes(struct mtd_info *mtd, const u8 *eccbuf,
43275eb2cecSBoris Brezillon 			       u8 *oobbuf, int start, int nbytes);
43375eb2cecSBoris Brezillon int mtd_ooblayout_free(struct mtd_info *mtd, int section,
43475eb2cecSBoris Brezillon 		       struct mtd_oob_region *oobfree);
43575eb2cecSBoris Brezillon int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf,
43675eb2cecSBoris Brezillon 				const u8 *oobbuf, int start, int nbytes);
43775eb2cecSBoris Brezillon int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf,
43875eb2cecSBoris Brezillon 				u8 *oobbuf, int start, int nbytes);
43975eb2cecSBoris Brezillon int mtd_ooblayout_count_freebytes(struct mtd_info *mtd);
44075eb2cecSBoris Brezillon int mtd_ooblayout_count_eccbytes(struct mtd_info *mtd);
44175eb2cecSBoris Brezillon 
442adbbc3bcSBoris Brezillon static inline void mtd_set_ooblayout(struct mtd_info *mtd,
443adbbc3bcSBoris Brezillon 				     const struct mtd_ooblayout_ops *ooblayout)
444036d6543SBoris Brezillon {
445adbbc3bcSBoris Brezillon 	mtd->ooblayout = ooblayout;
446036d6543SBoris Brezillon }
447036d6543SBoris Brezillon 
448477b0229SBoris Brezillon static inline void mtd_set_pairing_scheme(struct mtd_info *mtd,
449477b0229SBoris Brezillon 				const struct mtd_pairing_scheme *pairing)
450477b0229SBoris Brezillon {
451477b0229SBoris Brezillon 	mtd->pairing = pairing;
452477b0229SBoris Brezillon }
453477b0229SBoris Brezillon 
45428b8b26bSBrian Norris static inline void mtd_set_of_node(struct mtd_info *mtd,
45528b8b26bSBrian Norris 				   struct device_node *np)
45628b8b26bSBrian Norris {
45728b8b26bSBrian Norris 	mtd->dev.of_node = np;
45828309572SCédric Le Goater 	if (!mtd->name)
45928309572SCédric Le Goater 		of_property_read_string(np, "label", &mtd->name);
46028b8b26bSBrian Norris }
46128b8b26bSBrian Norris 
46228b8b26bSBrian Norris static inline struct device_node *mtd_get_of_node(struct mtd_info *mtd)
46328b8b26bSBrian Norris {
4644a67c9fdSRafał Miłecki 	return dev_of_node(&mtd->dev);
46528b8b26bSBrian Norris }
46628b8b26bSBrian Norris 
4674348433dSMiquel Raynal static inline u32 mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops)
46829f1058aSBoris BREZILLON {
46929f1058aSBoris BREZILLON 	return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize;
47029f1058aSBoris BREZILLON }
47129f1058aSBoris BREZILLON 
4726080ef6eSJeff Westfahl static inline int mtd_max_bad_blocks(struct mtd_info *mtd,
4736080ef6eSJeff Westfahl 				     loff_t ofs, size_t len)
4746080ef6eSJeff Westfahl {
47546b5889cSMiquel Raynal 	struct mtd_info *master = mtd_get_master(mtd);
47646b5889cSMiquel Raynal 
47746b5889cSMiquel Raynal 	if (!master->_max_bad_blocks)
4786080ef6eSJeff Westfahl 		return -ENOTSUPP;
4796080ef6eSJeff Westfahl 
4806080ef6eSJeff Westfahl 	if (mtd->size < (len + ofs) || ofs < 0)
4816080ef6eSJeff Westfahl 		return -EINVAL;
4826080ef6eSJeff Westfahl 
48346b5889cSMiquel Raynal 	return master->_max_bad_blocks(master, mtd_get_master_ofs(mtd, ofs),
48446b5889cSMiquel Raynal 				       len);
4856080ef6eSJeff Westfahl }
4866080ef6eSJeff Westfahl 
487477b0229SBoris Brezillon int mtd_wunit_to_pairing_info(struct mtd_info *mtd, int wunit,
488477b0229SBoris Brezillon 			      struct mtd_pairing_info *info);
489477b0229SBoris Brezillon int mtd_pairing_info_to_wunit(struct mtd_info *mtd,
490477b0229SBoris Brezillon 			      const struct mtd_pairing_info *info);
491477b0229SBoris Brezillon int mtd_pairing_groups(struct mtd_info *mtd);
4928273a0c9SArtem Bityutskiy int mtd_erase(struct mtd_info *mtd, struct erase_info *instr);
4938273a0c9SArtem Bityutskiy int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
4948273a0c9SArtem Bityutskiy 	      void **virt, resource_size_t *phys);
4958273a0c9SArtem Bityutskiy int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
4968273a0c9SArtem Bityutskiy unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len,
4978273a0c9SArtem Bityutskiy 				    unsigned long offset, unsigned long flags);
4988273a0c9SArtem Bityutskiy int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen,
4998273a0c9SArtem Bityutskiy 	     u_char *buf);
5008273a0c9SArtem Bityutskiy int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
5018273a0c9SArtem Bityutskiy 	      const u_char *buf);
5028273a0c9SArtem Bityutskiy int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen,
5038273a0c9SArtem Bityutskiy 		    const u_char *buf);
5047ae79d7fSArtem Bityutskiy 
505d2d48480SBrian Norris int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops);
5060c034fe3SEzequiel Garcia int mtd_write_oob(struct mtd_info *mtd, loff_t to, struct mtd_oob_ops *ops);
507a2cc5ba0SArtem Bityutskiy 
5084b78fc42SChristian Riesch int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
5094b78fc42SChristian Riesch 			   struct otp_info *buf);
510de3cac93SArtem Bityutskiy int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
511de3cac93SArtem Bityutskiy 			   size_t *retlen, u_char *buf);
5124b78fc42SChristian Riesch int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen,
5134b78fc42SChristian Riesch 			   struct otp_info *buf);
514de3cac93SArtem Bityutskiy int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len,
515de3cac93SArtem Bityutskiy 			   size_t *retlen, u_char *buf);
516de3cac93SArtem Bityutskiy int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len,
5171df1fc8cSTudor Ambarus 			    size_t *retlen, const u_char *buf);
518de3cac93SArtem Bityutskiy int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len);
519e3c1f1c9SMichael Walle int mtd_erase_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len);
5204403dbfbSArtem Bityutskiy 
5211dbebd32SArtem Bityutskiy int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
5221dbebd32SArtem Bityutskiy 	       unsigned long count, loff_t to, size_t *retlen);
523b0a31f7bSArtem Bityutskiy 
52485f2f2a8SArtem Bityutskiy static inline void mtd_sync(struct mtd_info *mtd)
52585f2f2a8SArtem Bityutskiy {
52646b5889cSMiquel Raynal 	struct mtd_info *master = mtd_get_master(mtd);
52746b5889cSMiquel Raynal 
52846b5889cSMiquel Raynal 	if (master->_sync)
52946b5889cSMiquel Raynal 		master->_sync(master);
53085f2f2a8SArtem Bityutskiy }
53185f2f2a8SArtem Bityutskiy 
5328273a0c9SArtem Bityutskiy int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
5338273a0c9SArtem Bityutskiy int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
5348273a0c9SArtem Bityutskiy int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len);
5358471bb73SEzequiel Garcia int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs);
5368273a0c9SArtem Bityutskiy int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs);
5378273a0c9SArtem Bityutskiy int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs);
538e95e9786SArtem Bityutskiy 
5393fe4bae8SArtem Bityutskiy static inline int mtd_suspend(struct mtd_info *mtd)
5403fe4bae8SArtem Bityutskiy {
54146b5889cSMiquel Raynal 	struct mtd_info *master = mtd_get_master(mtd);
54246b5889cSMiquel Raynal 	int ret;
54346b5889cSMiquel Raynal 
54446b5889cSMiquel Raynal 	if (master->master.suspended)
54546b5889cSMiquel Raynal 		return 0;
54646b5889cSMiquel Raynal 
54746b5889cSMiquel Raynal 	ret = master->_suspend ? master->_suspend(master) : 0;
54846b5889cSMiquel Raynal 	if (ret)
54946b5889cSMiquel Raynal 		return ret;
55046b5889cSMiquel Raynal 
55146b5889cSMiquel Raynal 	master->master.suspended = 1;
55246b5889cSMiquel Raynal 	return 0;
5533fe4bae8SArtem Bityutskiy }
5543fe4bae8SArtem Bityutskiy 
555ead995f8SArtem Bityutskiy static inline void mtd_resume(struct mtd_info *mtd)
556ead995f8SArtem Bityutskiy {
55746b5889cSMiquel Raynal 	struct mtd_info *master = mtd_get_master(mtd);
55846b5889cSMiquel Raynal 
55946b5889cSMiquel Raynal 	if (!master->master.suspended)
56046b5889cSMiquel Raynal 		return;
56146b5889cSMiquel Raynal 
56246b5889cSMiquel Raynal 	if (master->_resume)
56346b5889cSMiquel Raynal 		master->_resume(master);
56446b5889cSMiquel Raynal 
56546b5889cSMiquel Raynal 	master->master.suspended = 0;
566ead995f8SArtem Bityutskiy }
567ead995f8SArtem Bityutskiy 
56826cdb67cSDavid Woodhouse static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd)
56969423d99SAdrian Hunter {
57069423d99SAdrian Hunter 	if (mtd->erasesize_shift)
57169423d99SAdrian Hunter 		return sz >> mtd->erasesize_shift;
57269423d99SAdrian Hunter 	do_div(sz, mtd->erasesize);
57369423d99SAdrian Hunter 	return sz;
57469423d99SAdrian Hunter }
57569423d99SAdrian Hunter 
57626cdb67cSDavid Woodhouse static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd)
57769423d99SAdrian Hunter {
57869423d99SAdrian Hunter 	if (mtd->erasesize_shift)
57969423d99SAdrian Hunter 		return sz & mtd->erasesize_mask;
58069423d99SAdrian Hunter 	return do_div(sz, mtd->erasesize);
58169423d99SAdrian Hunter }
58269423d99SAdrian Hunter 
583f72071b8SBoris Brezillon /**
584f72071b8SBoris Brezillon  * mtd_align_erase_req - Adjust an erase request to align things on eraseblock
585f72071b8SBoris Brezillon  *			 boundaries.
586f72071b8SBoris Brezillon  * @mtd: the MTD device this erase request applies on
587f72071b8SBoris Brezillon  * @req: the erase request to adjust
588f72071b8SBoris Brezillon  *
589f72071b8SBoris Brezillon  * This function will adjust @req->addr and @req->len to align them on
590f72071b8SBoris Brezillon  * @mtd->erasesize. Of course we expect @mtd->erasesize to be != 0.
591f72071b8SBoris Brezillon  */
592f72071b8SBoris Brezillon static inline void mtd_align_erase_req(struct mtd_info *mtd,
593f72071b8SBoris Brezillon 				       struct erase_info *req)
594f72071b8SBoris Brezillon {
595f72071b8SBoris Brezillon 	u32 mod;
596f72071b8SBoris Brezillon 
597f72071b8SBoris Brezillon 	if (WARN_ON(!mtd->erasesize))
598f72071b8SBoris Brezillon 		return;
599f72071b8SBoris Brezillon 
600f72071b8SBoris Brezillon 	mod = mtd_mod_by_eb(req->addr, mtd);
601f72071b8SBoris Brezillon 	if (mod) {
602f72071b8SBoris Brezillon 		req->addr -= mod;
603f72071b8SBoris Brezillon 		req->len += mod;
604f72071b8SBoris Brezillon 	}
605f72071b8SBoris Brezillon 
606f72071b8SBoris Brezillon 	mod = mtd_mod_by_eb(req->addr + req->len, mtd);
607f72071b8SBoris Brezillon 	if (mod)
608f72071b8SBoris Brezillon 		req->len += mtd->erasesize - mod;
609f72071b8SBoris Brezillon }
610f72071b8SBoris Brezillon 
61126cdb67cSDavid Woodhouse static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd)
61269423d99SAdrian Hunter {
61369423d99SAdrian Hunter 	if (mtd->writesize_shift)
61469423d99SAdrian Hunter 		return sz >> mtd->writesize_shift;
61569423d99SAdrian Hunter 	do_div(sz, mtd->writesize);
61669423d99SAdrian Hunter 	return sz;
61769423d99SAdrian Hunter }
61869423d99SAdrian Hunter 
61926cdb67cSDavid Woodhouse static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd)
62069423d99SAdrian Hunter {
62169423d99SAdrian Hunter 	if (mtd->writesize_shift)
62269423d99SAdrian Hunter 		return sz & mtd->writesize_mask;
62369423d99SAdrian Hunter 	return do_div(sz, mtd->writesize);
62469423d99SAdrian Hunter }
6251da177e4SLinus Torvalds 
626477b0229SBoris Brezillon static inline int mtd_wunit_per_eb(struct mtd_info *mtd)
627477b0229SBoris Brezillon {
6289e3307a1SBoris Brezillon 	struct mtd_info *master = mtd_get_master(mtd);
6299e3307a1SBoris Brezillon 
6309e3307a1SBoris Brezillon 	return master->erasesize / mtd->writesize;
631477b0229SBoris Brezillon }
632477b0229SBoris Brezillon 
633477b0229SBoris Brezillon static inline int mtd_offset_to_wunit(struct mtd_info *mtd, loff_t offs)
634477b0229SBoris Brezillon {
635477b0229SBoris Brezillon 	return mtd_div_by_ws(mtd_mod_by_eb(offs, mtd), mtd);
636477b0229SBoris Brezillon }
637477b0229SBoris Brezillon 
638477b0229SBoris Brezillon static inline loff_t mtd_wunit_to_offset(struct mtd_info *mtd, loff_t base,
639477b0229SBoris Brezillon 					 int wunit)
640477b0229SBoris Brezillon {
641477b0229SBoris Brezillon 	return base + (wunit * mtd->writesize);
642477b0229SBoris Brezillon }
643477b0229SBoris Brezillon 
644477b0229SBoris Brezillon 
645fc002e3cSArtem Bityutskiy static inline int mtd_has_oob(const struct mtd_info *mtd)
646fc002e3cSArtem Bityutskiy {
64746b5889cSMiquel Raynal 	struct mtd_info *master = mtd_get_master((struct mtd_info *)mtd);
64846b5889cSMiquel Raynal 
64946b5889cSMiquel Raynal 	return master->_read_oob && master->_write_oob;
650fc002e3cSArtem Bityutskiy }
651fc002e3cSArtem Bityutskiy 
652818b9739SHuang Shijie static inline int mtd_type_is_nand(const struct mtd_info *mtd)
653818b9739SHuang Shijie {
654818b9739SHuang Shijie 	return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH;
655818b9739SHuang Shijie }
656818b9739SHuang Shijie 
6578f461a73SArtem Bityutskiy static inline int mtd_can_have_bb(const struct mtd_info *mtd)
6588f461a73SArtem Bityutskiy {
65946b5889cSMiquel Raynal 	struct mtd_info *master = mtd_get_master((struct mtd_info *)mtd);
66046b5889cSMiquel Raynal 
66146b5889cSMiquel Raynal 	return !!master->_block_isbad;
6628f461a73SArtem Bityutskiy }
6638f461a73SArtem Bityutskiy 
6641da177e4SLinus Torvalds 	/* Kernel-side ioctl definitions */
6651da177e4SLinus Torvalds 
666f5671ab3SJamie Iles struct mtd_partition;
667c7975330SDmitry Eremin-Solenikov struct mtd_part_parser_data;
668f5671ab3SJamie Iles 
6691c4c215cSDmitry Eremin-Solenikov extern int mtd_device_parse_register(struct mtd_info *mtd,
67026a47346SArtem Bityutskiy 				     const char * const *part_probe_types,
671c7975330SDmitry Eremin-Solenikov 				     struct mtd_part_parser_data *parser_data,
6721c4c215cSDmitry Eremin-Solenikov 				     const struct mtd_partition *defparts,
6731c4c215cSDmitry Eremin-Solenikov 				     int defnr_parts);
67415c60a50SDmitry Eremin-Solenikov #define mtd_device_register(master, parts, nr_parts)	\
67515c60a50SDmitry Eremin-Solenikov 	mtd_device_parse_register(master, NULL, NULL, parts, nr_parts)
676f5671ab3SJamie Iles extern int mtd_device_unregister(struct mtd_info *master);
6771da177e4SLinus Torvalds extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
6783bd45657SMaxim Levitsky extern int __get_mtd_device(struct mtd_info *mtd);
6793bd45657SMaxim Levitsky extern void __put_mtd_device(struct mtd_info *mtd);
680*4a575865SRafał Miłecki extern struct mtd_info *of_get_mtd_device_by_node(struct device_node *np);
6817799308fSArtem Bityutskiy extern struct mtd_info *get_mtd_device_nm(const char *name);
6821da177e4SLinus Torvalds extern void put_mtd_device(struct mtd_info *mtd);
6831da177e4SLinus Torvalds 
6841da177e4SLinus Torvalds 
6851da177e4SLinus Torvalds struct mtd_notifier {
6861da177e4SLinus Torvalds 	void (*add)(struct mtd_info *mtd);
6871da177e4SLinus Torvalds 	void (*remove)(struct mtd_info *mtd);
6881da177e4SLinus Torvalds 	struct list_head list;
6891da177e4SLinus Torvalds };
6901da177e4SLinus Torvalds 
6911da177e4SLinus Torvalds 
6921da177e4SLinus Torvalds extern void register_mtd_user (struct mtd_notifier *new);
6931da177e4SLinus Torvalds extern int unregister_mtd_user (struct mtd_notifier *old);
69433b53716SGrant Erickson void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size);
69533b53716SGrant Erickson 
6967387ce77SBrian Norris static inline int mtd_is_bitflip(int err) {
6977387ce77SBrian Norris 	return err == -EUCLEAN;
6987387ce77SBrian Norris }
6991da177e4SLinus Torvalds 
7007387ce77SBrian Norris static inline int mtd_is_eccerr(int err) {
7017387ce77SBrian Norris 	return err == -EBADMSG;
7027387ce77SBrian Norris }
7031da177e4SLinus Torvalds 
7047387ce77SBrian Norris static inline int mtd_is_bitflip_or_eccerr(int err) {
7057387ce77SBrian Norris 	return mtd_is_bitflip(err) || mtd_is_eccerr(err);
7067387ce77SBrian Norris }
7071da177e4SLinus Torvalds 
708b4caecd4SChristoph Hellwig unsigned mtd_mmap_capabilities(struct mtd_info *mtd);
709b4caecd4SChristoph Hellwig 
710ad5e35f5SMiquel Raynal #ifdef CONFIG_DEBUG_FS
711ad5e35f5SMiquel Raynal bool mtd_check_expert_analysis_mode(void);
712ad5e35f5SMiquel Raynal #else
713ad5e35f5SMiquel Raynal static inline bool mtd_check_expert_analysis_mode(void) { return false; }
714ad5e35f5SMiquel Raynal #endif
715ad5e35f5SMiquel Raynal 
71667b967ddSMiquel Raynal 
7171da177e4SLinus Torvalds #endif /* __MTD_MTD_H__ */
718