Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Wolfgang Denk | 7b9bc3a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 2 | /* |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 3 | * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al. |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 4 | * |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __MTD_MTD_H__ |
| 8 | #define __MTD_MTD_H__ |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 9 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 10 | #ifndef __UBOOT__ |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 11 | #include <linux/types.h> |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 12 | #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 Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 21 | #include <mtd/mtd-abi.h> |
Masahiro Yamada | 56a931c | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 22 | #include <linux/errno.h> |
Miquel Raynal | 6382e0c | 2018-09-29 12:58:27 +0200 | [diff] [blame] | 23 | #include <linux/list.h> |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 24 | #include <div64.h> |
Brian Norris | 4cf0fa9 | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 25 | #if IS_ENABLED(CONFIG_DM) |
| 26 | #include <dm/device.h> |
| 27 | #endif |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 28 | |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 29 | #define MAX_MTD_DEVICES 32 |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 30 | #endif |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 31 | |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 32 | #define MTD_ERASE_PENDING 0x01 |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 33 | #define MTD_ERASING 0x02 |
| 34 | #define MTD_ERASE_SUSPEND 0x04 |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 35 | #define MTD_ERASE_DONE 0x08 |
| 36 | #define MTD_ERASE_FAILED 0x10 |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 37 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 38 | #define MTD_FAIL_ADDR_UNKNOWN -1LL |
Stefan Roese | 586b3a6 | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 39 | |
Kyungmin Park | 396b0c4 | 2008-08-13 09:11:02 +0900 | [diff] [blame] | 40 | /* |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 41 | * 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 Park | 396b0c4 | 2008-08-13 09:11:02 +0900 | [diff] [blame] | 44 | */ |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 45 | struct erase_info { |
| 46 | struct mtd_info *mtd; |
Stefan Roese | 586b3a6 | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 47 | uint64_t addr; |
| 48 | uint64_t len; |
| 49 | uint64_t fail_addr; |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 50 | u_long time; |
| 51 | u_long retries; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 52 | unsigned dev; |
| 53 | unsigned cell; |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 54 | u_long priv; |
| 55 | u_char state; |
| 56 | struct erase_info *next; |
Marek Vasut | 971d9a1 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 57 | int scrub; |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | struct mtd_erase_region_info { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 61 | 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 Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 64 | unsigned long *lockmap; /* If keeping bitmap of locks */ |
| 65 | }; |
| 66 | |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 67 | /** |
| 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 Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 78 | * mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW) |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 79 | * @datbuf: data buffer - if NULL only oob data are read/written |
| 80 | * @oobbuf: oob data buffer |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 81 | */ |
| 82 | struct mtd_oob_ops { |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 83 | unsigned int mode; |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 84 | 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 Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 91 | }; |
| 92 | |
Prabhakar Kushwaha | 4d2ba17 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 93 | #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 Paladugu | f16bd95 | 2015-04-28 18:16:03 +0530 | [diff] [blame] | 102 | #define MTD_MAX_ECCPOS_ENTRIES_LARGE 680 |
Prabhakar Kushwaha | 4d2ba17 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 103 | #endif |
Boris Brezillon | e1b1e3a | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 104 | /** |
| 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 | */ |
| 114 | struct mtd_oob_region { |
| 115 | u32 offset; |
| 116 | u32 length; |
| 117 | }; |
Prabhakar Kushwaha | 4d2ba17 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 118 | |
| 119 | /* |
Boris Brezillon | e1b1e3a | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 120 | * 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 | */ |
| 128 | struct mtd_ooblayout_ops { |
| 129 | int (*ecc)(struct mtd_info *mtd, int section, |
| 130 | struct mtd_oob_region *oobecc); |
Simon Glass | 62fd1a4 | 2020-02-03 07:35:56 -0700 | [diff] [blame] | 131 | int (*rfree)(struct mtd_info *mtd, int section, |
| 132 | struct mtd_oob_region *oobfree); |
Boris Brezillon | e1b1e3a | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | /* |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 136 | * 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 Kushwaha | 4d2ba17 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 140 | */ |
| 141 | struct nand_ecclayout { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 142 | __u32 eccbytes; |
| 143 | __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE]; |
| 144 | __u32 oobavail; |
Prabhakar Kushwaha | 4d2ba17 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 145 | struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE]; |
| 146 | }; |
| 147 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 148 | struct module; /* only needed for owner field in mtd_info */ |
| 149 | |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 150 | struct mtd_info { |
| 151 | u_char type; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 152 | uint32_t flags; |
| 153 | uint64_t size; // Total size of the MTD |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 154 | |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 155 | /* "Major" erase size for the device. Naïve users may take this |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 156 | * to be the only erase size available, or may use the more detailed |
| 157 | * information below if they desire |
| 158 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 159 | uint32_t erasesize; |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 160 | /* 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 Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 167 | 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 Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 179 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 180 | uint32_t oobsize; // Amount of OOB data per block (e.g. 16) |
| 181 | uint32_t oobavail; // Available OOB bytes per block |
Wolfgang Denk | 7b9bc3a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 182 | |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 183 | /* |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 184 | * 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 Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 194 | * 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 Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 202 | // Kernel-only stuff starts here. |
| 203 | #ifndef __UBOOT__ |
Scott Wood | 3628f00 | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 204 | const char *name; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 205 | #else |
| 206 | char *name; |
| 207 | #endif |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 208 | int index; |
| 209 | |
Boris Brezillon | e1b1e3a | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 210 | /* OOB layout description */ |
| 211 | const struct mtd_ooblayout_ops *ooblayout; |
| 212 | |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 213 | /* ECC layout structure pointer - read only! */ |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 214 | struct nand_ecclayout *ecclayout; |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 215 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 216 | /* the ecc step size. */ |
| 217 | unsigned int ecc_step_size; |
| 218 | |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 219 | /* max number of correctible bit errors per ecc step */ |
| 220 | unsigned int ecc_strength; |
| 221 | |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 222 | /* Data for variable erase regions. If numeraseregions is zero, |
Wolfgang Denk | 7b9bc3a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 223 | * it means that the whole device has erasesize as given above. |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 224 | */ |
| 225 | int numeraseregions; |
Wolfgang Denk | 7b9bc3a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 226 | struct mtd_erase_region_info *eraseregions; |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 227 | |
Scott Wood | 3628f00 | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 228 | /* |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 229 | * Do not call via these pointers, use corresponding mtd_*() |
| 230 | * wrappers instead. |
Scott Wood | 3628f00 | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 231 | */ |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 232 | int (*_erase) (struct mtd_info *mtd, struct erase_info *instr); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 233 | #ifndef __UBOOT__ |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 234 | int (*_point) (struct mtd_info *mtd, loff_t from, size_t len, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 235 | 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 Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 242 | int (*_read) (struct mtd_info *mtd, loff_t from, size_t len, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 243 | size_t *retlen, u_char *buf); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 244 | int (*_write) (struct mtd_info *mtd, loff_t to, size_t len, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 245 | 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 Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 248 | int (*_read_oob) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 249 | struct mtd_oob_ops *ops); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 250 | int (*_write_oob) (struct mtd_info *mtd, loff_t to, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 251 | struct mtd_oob_ops *ops); |
Heiko Schocher | 081fe9e | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 252 | int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len, |
| 253 | size_t *retlen, struct otp_info *buf); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 254 | int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 255 | size_t len, size_t *retlen, u_char *buf); |
Heiko Schocher | 081fe9e | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 256 | int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len, |
| 257 | size_t *retlen, struct otp_info *buf); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 258 | int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 259 | 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 Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 262 | int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 263 | 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 Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 268 | 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 Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 271 | int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
Ezequiel Garcia | fc9d57c | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 272 | int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 273 | int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs); |
| 274 | int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 275 | #ifndef __UBOOT__ |
| 276 | int (*_suspend) (struct mtd_info *mtd); |
| 277 | void (*_resume) (struct mtd_info *mtd); |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 278 | void (*_reboot) (struct mtd_info *mtd); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 279 | #endif |
Wolfgang Denk | 7b9bc3a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 280 | /* |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 281 | * 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 Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 283 | */ |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 284 | int (*_get_device) (struct mtd_info *mtd); |
| 285 | void (*_put_device) (struct mtd_info *mtd); |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 286 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 287 | #ifndef __UBOOT__ |
| 288 | /* Backing device capabilities for this device |
| 289 | * - provides mmap capabilities |
| 290 | */ |
| 291 | struct backing_dev_info *backing_dev_info; |
| 292 | |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 293 | 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 Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 301 | void *priv; |
| 302 | |
| 303 | struct module *owner; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 304 | #ifndef __UBOOT__ |
| 305 | struct device dev; |
Thomas Chou | e51b65e | 2015-11-07 14:20:31 +0800 | [diff] [blame] | 306 | #else |
| 307 | struct udevice *dev; |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 308 | #endif |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 309 | int usecount; |
Miquel Raynal | 6382e0c | 2018-09-29 12:58:27 +0200 | [diff] [blame] | 310 | |
| 311 | /* MTD devices do not have any parent. MTD partitions do. */ |
| 312 | struct mtd_info *parent; |
| 313 | |
| 314 | /* |
| 315 | * Offset of the partition relatively to the parent offset. |
| 316 | * Is 0 for real MTD devices (ie. not partitions). |
| 317 | */ |
| 318 | u64 offset; |
| 319 | |
| 320 | /* |
| 321 | * List node used to add an MTD partition to the parent |
| 322 | * partition list. |
| 323 | */ |
| 324 | struct list_head node; |
| 325 | |
| 326 | /* |
| 327 | * List of partitions attached to this MTD device (the parent |
| 328 | * MTD device can itself be a partition). |
| 329 | */ |
| 330 | struct list_head partitions; |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 331 | }; |
| 332 | |
Brian Norris | 4cf0fa9 | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 333 | #if IS_ENABLED(CONFIG_DM) |
Simon Glass | 1b349e3 | 2020-12-19 10:40:00 -0700 | [diff] [blame] | 334 | static inline void mtd_set_ofnode(struct mtd_info *mtd, ofnode node) |
Brian Norris | 4cf0fa9 | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 335 | { |
Simon Glass | a7ece58 | 2020-12-19 10:40:14 -0700 | [diff] [blame] | 336 | dev_set_ofnode(mtd->dev, node); |
Brian Norris | 4cf0fa9 | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 337 | } |
| 338 | |
Simon Glass | 1b349e3 | 2020-12-19 10:40:00 -0700 | [diff] [blame] | 339 | static inline const ofnode mtd_get_ofnode(struct mtd_info *mtd) |
Brian Norris | 4cf0fa9 | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 340 | { |
Simon Glass | a7ece58 | 2020-12-19 10:40:14 -0700 | [diff] [blame] | 341 | return dev_ofnode(mtd->dev); |
Brian Norris | 4cf0fa9 | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 342 | } |
| 343 | #else |
| 344 | struct device_node; |
| 345 | |
| 346 | static inline void mtd_set_of_node(struct mtd_info *mtd, |
| 347 | const struct device_node *np) |
| 348 | { |
| 349 | } |
| 350 | |
| 351 | static inline const struct device_node *mtd_get_of_node(struct mtd_info *mtd) |
| 352 | { |
| 353 | return NULL; |
| 354 | } |
| 355 | #endif |
| 356 | |
Miquel Raynal | 6382e0c | 2018-09-29 12:58:27 +0200 | [diff] [blame] | 357 | static inline bool mtd_is_partition(const struct mtd_info *mtd) |
| 358 | { |
| 359 | return mtd->parent; |
| 360 | } |
| 361 | |
| 362 | static inline bool mtd_has_partitions(const struct mtd_info *mtd) |
| 363 | { |
| 364 | return !list_empty(&mtd->partitions); |
| 365 | } |
| 366 | |
Boris Brezillon | 7dfad31 | 2018-12-02 10:54:30 +0100 | [diff] [blame] | 367 | bool mtd_partitions_used(struct mtd_info *master); |
| 368 | |
Boris Brezillon | e1b1e3a | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 369 | int mtd_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 370 | struct mtd_oob_region *oobecc); |
| 371 | int mtd_ooblayout_find_eccregion(struct mtd_info *mtd, int eccbyte, |
| 372 | int *section, |
| 373 | struct mtd_oob_region *oobregion); |
| 374 | int mtd_ooblayout_get_eccbytes(struct mtd_info *mtd, u8 *eccbuf, |
| 375 | const u8 *oobbuf, int start, int nbytes); |
| 376 | int mtd_ooblayout_set_eccbytes(struct mtd_info *mtd, const u8 *eccbuf, |
| 377 | u8 *oobbuf, int start, int nbytes); |
| 378 | int mtd_ooblayout_free(struct mtd_info *mtd, int section, |
| 379 | struct mtd_oob_region *oobfree); |
| 380 | int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf, |
| 381 | const u8 *oobbuf, int start, int nbytes); |
| 382 | int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf, |
| 383 | u8 *oobbuf, int start, int nbytes); |
| 384 | int mtd_ooblayout_count_freebytes(struct mtd_info *mtd); |
| 385 | int mtd_ooblayout_count_eccbytes(struct mtd_info *mtd); |
| 386 | |
| 387 | static inline void mtd_set_ooblayout(struct mtd_info *mtd, |
| 388 | const struct mtd_ooblayout_ops *ooblayout) |
| 389 | { |
| 390 | mtd->ooblayout = ooblayout; |
| 391 | } |
| 392 | |
Miquel Raynal | b4c6fb2 | 2018-11-18 21:11:46 +0100 | [diff] [blame] | 393 | static inline u32 mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops) |
Scott Wood | 52ab7ce | 2016-05-30 13:57:58 -0500 | [diff] [blame] | 394 | { |
| 395 | return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize; |
| 396 | } |
| 397 | |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 398 | int mtd_erase(struct mtd_info *mtd, struct erase_info *instr); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 399 | #ifndef __UBOOT__ |
| 400 | int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 401 | void **virt, resource_size_t *phys); |
| 402 | int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len); |
| 403 | #endif |
| 404 | unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len, |
| 405 | unsigned long offset, unsigned long flags); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 406 | int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 407 | u_char *buf); |
| 408 | int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 409 | const u_char *buf); |
| 410 | int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 411 | const u_char *buf); |
| 412 | |
| 413 | int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops); |
Ezequiel Garcia | 18e7541 | 2018-08-16 17:30:00 +0200 | [diff] [blame] | 414 | int mtd_write_oob(struct mtd_info *mtd, loff_t to, struct mtd_oob_ops *ops); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 415 | |
Heiko Schocher | 081fe9e | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 416 | int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 417 | struct otp_info *buf); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 418 | int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 419 | size_t *retlen, u_char *buf); |
Heiko Schocher | 081fe9e | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 420 | int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 421 | struct otp_info *buf); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 422 | int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 423 | size_t *retlen, u_char *buf); |
| 424 | int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len, |
| 425 | size_t *retlen, u_char *buf); |
| 426 | int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len); |
| 427 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 428 | #ifndef __UBOOT__ |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 429 | int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, |
| 430 | unsigned long count, loff_t to, size_t *retlen); |
| 431 | #endif |
| 432 | |
| 433 | static inline void mtd_sync(struct mtd_info *mtd) |
| 434 | { |
| 435 | if (mtd->_sync) |
| 436 | mtd->_sync(mtd); |
| 437 | } |
| 438 | |
| 439 | int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 440 | int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 441 | int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
Ezequiel Garcia | fc9d57c | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 442 | int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs); |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 443 | int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs); |
| 444 | int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs); |
| 445 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 446 | #ifndef __UBOOT__ |
| 447 | static inline int mtd_suspend(struct mtd_info *mtd) |
| 448 | { |
| 449 | return mtd->_suspend ? mtd->_suspend(mtd) : 0; |
| 450 | } |
| 451 | |
| 452 | static inline void mtd_resume(struct mtd_info *mtd) |
| 453 | { |
| 454 | if (mtd->_resume) |
| 455 | mtd->_resume(mtd); |
| 456 | } |
| 457 | #endif |
| 458 | |
Stefan Roese | 586b3a6 | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 459 | static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd) |
| 460 | { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 461 | if (mtd->erasesize_shift) |
| 462 | return sz >> mtd->erasesize_shift; |
Stefan Roese | 586b3a6 | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 463 | do_div(sz, mtd->erasesize); |
| 464 | return sz; |
| 465 | } |
| 466 | |
| 467 | static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd) |
| 468 | { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 469 | if (mtd->erasesize_shift) |
| 470 | return sz & mtd->erasesize_mask; |
Stefan Roese | 586b3a6 | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 471 | return do_div(sz, mtd->erasesize); |
| 472 | } |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 473 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 474 | static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd) |
| 475 | { |
| 476 | if (mtd->writesize_shift) |
| 477 | return sz >> mtd->writesize_shift; |
| 478 | do_div(sz, mtd->writesize); |
| 479 | return sz; |
| 480 | } |
| 481 | |
| 482 | static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd) |
| 483 | { |
| 484 | if (mtd->writesize_shift) |
| 485 | return sz & mtd->writesize_mask; |
| 486 | return do_div(sz, mtd->writesize); |
| 487 | } |
| 488 | |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 489 | static inline int mtd_has_oob(const struct mtd_info *mtd) |
| 490 | { |
| 491 | return mtd->_read_oob && mtd->_write_oob; |
| 492 | } |
| 493 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 494 | static inline int mtd_type_is_nand(const struct mtd_info *mtd) |
| 495 | { |
| 496 | return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH; |
| 497 | } |
| 498 | |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 499 | static inline int mtd_can_have_bb(const struct mtd_info *mtd) |
| 500 | { |
| 501 | return !!mtd->_block_isbad; |
| 502 | } |
| 503 | |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 504 | /* Kernel-side ioctl definitions */ |
| 505 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 506 | struct mtd_partition; |
| 507 | struct mtd_part_parser_data; |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 508 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 509 | extern int mtd_device_parse_register(struct mtd_info *mtd, |
| 510 | const char * const *part_probe_types, |
| 511 | struct mtd_part_parser_data *parser_data, |
| 512 | const struct mtd_partition *defparts, |
| 513 | int defnr_parts); |
| 514 | #define mtd_device_register(master, parts, nr_parts) \ |
| 515 | mtd_device_parse_register(master, NULL, NULL, parts, nr_parts) |
| 516 | extern int mtd_device_unregister(struct mtd_info *master); |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 517 | extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 518 | extern int __get_mtd_device(struct mtd_info *mtd); |
| 519 | extern void __put_mtd_device(struct mtd_info *mtd); |
William Juul | 52c0796 | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 520 | extern struct mtd_info *get_mtd_device_nm(const char *name); |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 521 | extern void put_mtd_device(struct mtd_info *mtd); |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 522 | |
| 523 | |
| 524 | #ifndef __UBOOT__ |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 525 | struct mtd_notifier { |
| 526 | void (*add)(struct mtd_info *mtd); |
| 527 | void (*remove)(struct mtd_info *mtd); |
| 528 | struct list_head list; |
| 529 | }; |
| 530 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 531 | |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 532 | extern void register_mtd_user (struct mtd_notifier *new); |
| 533 | extern int unregister_mtd_user (struct mtd_notifier *old); |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 534 | #endif |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 535 | void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size); |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 536 | |
Sergey Lapin | 3a38a55 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 537 | static inline int mtd_is_bitflip(int err) { |
| 538 | return err == -EUCLEAN; |
| 539 | } |
| 540 | |
| 541 | static inline int mtd_is_eccerr(int err) { |
| 542 | return err == -EBADMSG; |
| 543 | } |
| 544 | |
| 545 | static inline int mtd_is_bitflip_or_eccerr(int err) { |
| 546 | return mtd_is_bitflip(err) || mtd_is_eccerr(err); |
| 547 | } |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 548 | |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 549 | unsigned mtd_mmap_capabilities(struct mtd_info *mtd); |
| 550 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 551 | #ifdef __UBOOT__ |
| 552 | /* drivers/mtd/mtdcore.h */ |
| 553 | int add_mtd_device(struct mtd_info *mtd); |
Heiko Schocher | b24c427 | 2014-07-15 16:08:42 +0200 | [diff] [blame] | 554 | int del_mtd_device(struct mtd_info *mtd); |
Boris Brezillon | db0d805 | 2018-12-02 10:54:24 +0100 | [diff] [blame] | 555 | |
| 556 | #ifdef CONFIG_MTD_PARTITIONS |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 557 | int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int); |
| 558 | int del_mtd_partitions(struct mtd_info *); |
Boris Brezillon | db0d805 | 2018-12-02 10:54:24 +0100 | [diff] [blame] | 559 | #else |
| 560 | static inline int add_mtd_partitions(struct mtd_info *mtd, |
| 561 | const struct mtd_partition *parts, |
| 562 | int nparts) |
| 563 | { |
| 564 | return 0; |
| 565 | } |
| 566 | |
| 567 | static inline int del_mtd_partitions(struct mtd_info *mtd) |
| 568 | { |
| 569 | return 0; |
| 570 | } |
| 571 | #endif |
Heiko Schocher | 7e5a16c | 2015-04-27 07:42:05 +0200 | [diff] [blame] | 572 | |
Marek Behún | 544a8c9 | 2021-05-26 14:08:19 +0200 | [diff] [blame] | 573 | #if defined(CONFIG_MTD_PARTITIONS) && CONFIG_IS_ENABLED(DM) && \ |
| 574 | CONFIG_IS_ENABLED(OF_CONTROL) |
| 575 | int add_mtd_partitions_of(struct mtd_info *master); |
| 576 | #else |
| 577 | static inline int add_mtd_partitions_of(struct mtd_info *master) |
| 578 | { |
| 579 | return 0; |
| 580 | } |
| 581 | #endif |
| 582 | |
Miquel Raynal | fff4be3 | 2018-08-16 17:30:05 +0200 | [diff] [blame] | 583 | struct mtd_info *__mtd_next_device(int i); |
| 584 | #define mtd_for_each_device(mtd) \ |
| 585 | for ((mtd) = __mtd_next_device(0); \ |
| 586 | (mtd) != NULL; \ |
| 587 | (mtd) = __mtd_next_device(mtd->index + 1)) |
| 588 | |
Steve Rae | 6eb14ff | 2016-06-29 13:50:59 -0700 | [diff] [blame] | 589 | /* drivers/mtd/mtdcore.c */ |
| 590 | void mtd_get_len_incl_bad(struct mtd_info *mtd, uint64_t offset, |
| 591 | const uint64_t length, uint64_t *len_incl_bad, |
| 592 | int *truncated); |
Boris Brezillon | 059e4a6 | 2018-12-02 10:54:22 +0100 | [diff] [blame] | 593 | bool mtd_dev_list_updated(void); |
Miquel Raynal | 1a08e99 | 2018-09-29 12:58:26 +0200 | [diff] [blame] | 594 | |
| 595 | /* drivers/mtd/mtd_uboot.c */ |
| 596 | int mtd_search_alternate_name(const char *mtdname, char *altname, |
| 597 | unsigned int max_len); |
| 598 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 599 | #endif |
Wolfgang Denk | 2f9b7e4 | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 600 | #endif /* __MTD_MTD_H__ */ |