Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 2 | /* |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 3 | * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 4 | * |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __MTD_MTD_H__ |
| 8 | #define __MTD_MTD_H__ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 9 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 10 | #ifndef __UBOOT__ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 11 | #include <linux/types.h> |
Heiko Schocher | ff94bc4 | 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 | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 21 | #include <mtd/mtd-abi.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 22 | #include <linux/errno.h> |
Miquel Raynal | 2a74930 | 2018-09-29 12:58:27 +0200 | [diff] [blame] | 23 | #include <linux/list.h> |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 24 | #include <div64.h> |
Brian Norris | 9bfc3fd | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 25 | #if IS_ENABLED(CONFIG_DM) |
| 26 | #include <dm/device.h> |
| 27 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 28 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 29 | #define MAX_MTD_DEVICES 32 |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 30 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 31 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 32 | #define MTD_ERASE_PENDING 0x01 |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 33 | #define MTD_ERASING 0x02 |
| 34 | #define MTD_ERASE_SUSPEND 0x04 |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 35 | #define MTD_ERASE_DONE 0x08 |
| 36 | #define MTD_ERASE_FAILED 0x10 |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 37 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 38 | #define MTD_FAIL_ADDR_UNKNOWN -1LL |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 39 | |
Kyungmin Park | d438d50 | 2008-08-13 09:11:02 +0900 | [diff] [blame] | 40 | /* |
Heiko Schocher | ff94bc4 | 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 | d438d50 | 2008-08-13 09:11:02 +0900 | [diff] [blame] | 44 | */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 45 | struct erase_info { |
| 46 | struct mtd_info *mtd; |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 47 | uint64_t addr; |
| 48 | uint64_t len; |
| 49 | uint64_t fail_addr; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 50 | u_long time; |
| 51 | u_long retries; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 52 | unsigned dev; |
| 53 | unsigned cell; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 54 | void (*callback) (struct erase_info *self); |
| 55 | u_long priv; |
| 56 | u_char state; |
| 57 | struct erase_info *next; |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 58 | int scrub; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | struct mtd_erase_region_info { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 62 | uint64_t offset; /* At which this region starts, from the beginning of the MTD */ |
| 63 | uint32_t erasesize; /* For this region */ |
| 64 | uint32_t numblocks; /* Number of blocks of erasesize in this region */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 65 | unsigned long *lockmap; /* If keeping bitmap of locks */ |
| 66 | }; |
| 67 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 68 | /** |
| 69 | * struct mtd_oob_ops - oob operation operands |
| 70 | * @mode: operation mode |
| 71 | * |
| 72 | * @len: number of data bytes to write/read |
| 73 | * |
| 74 | * @retlen: number of data bytes written/read |
| 75 | * |
| 76 | * @ooblen: number of oob bytes to write/read |
| 77 | * @oobretlen: number of oob bytes written/read |
| 78 | * @ooboffs: offset of oob data in the oob area (only relevant when |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 79 | * mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 80 | * @datbuf: data buffer - if NULL only oob data are read/written |
| 81 | * @oobbuf: oob data buffer |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 82 | */ |
| 83 | struct mtd_oob_ops { |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 84 | unsigned int mode; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 85 | size_t len; |
| 86 | size_t retlen; |
| 87 | size_t ooblen; |
| 88 | size_t oobretlen; |
| 89 | uint32_t ooboffs; |
| 90 | uint8_t *datbuf; |
| 91 | uint8_t *oobbuf; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 92 | }; |
| 93 | |
Prabhakar Kushwaha | 68ec9c8 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 94 | #ifdef CONFIG_SYS_NAND_MAX_OOBFREE |
| 95 | #define MTD_MAX_OOBFREE_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_OOBFREE |
| 96 | #else |
| 97 | #define MTD_MAX_OOBFREE_ENTRIES_LARGE 32 |
| 98 | #endif |
| 99 | |
| 100 | #ifdef CONFIG_SYS_NAND_MAX_ECCPOS |
| 101 | #define MTD_MAX_ECCPOS_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_ECCPOS |
| 102 | #else |
Siva Durga Prasad Paladugu | 2580a2a | 2015-04-28 18:16:03 +0530 | [diff] [blame] | 103 | #define MTD_MAX_ECCPOS_ENTRIES_LARGE 680 |
Prabhakar Kushwaha | 68ec9c8 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 104 | #endif |
Boris Brezillon | 13f3b04 | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 105 | /** |
| 106 | * struct mtd_oob_region - oob region definition |
| 107 | * @offset: region offset |
| 108 | * @length: region length |
| 109 | * |
| 110 | * This structure describes a region of the OOB area, and is used |
| 111 | * to retrieve ECC or free bytes sections. |
| 112 | * Each section is defined by an offset within the OOB area and a |
| 113 | * length. |
| 114 | */ |
| 115 | struct mtd_oob_region { |
| 116 | u32 offset; |
| 117 | u32 length; |
| 118 | }; |
| 119 | |
| 120 | /* |
| 121 | * struct mtd_ooblayout_ops - NAND OOB layout operations |
| 122 | * @ecc: function returning an ECC region in the OOB area. |
| 123 | * Should return -ERANGE if %section exceeds the total number of |
| 124 | * ECC sections. |
| 125 | * @free: function returning a free region in the OOB area. |
| 126 | * Should return -ERANGE if %section exceeds the total number of |
| 127 | * free sections. |
| 128 | */ |
| 129 | struct mtd_ooblayout_ops { |
| 130 | int (*ecc)(struct mtd_info *mtd, int section, |
| 131 | struct mtd_oob_region *oobecc); |
| 132 | int (*free)(struct mtd_info *mtd, int section, |
| 133 | struct mtd_oob_region *oobfree); |
| 134 | }; |
Prabhakar Kushwaha | 68ec9c8 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 135 | |
| 136 | /* |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 137 | * Internal ECC layout control structure. For historical reasons, there is a |
| 138 | * similar, smaller struct nand_ecclayout_user (in mtd-abi.h) that is retained |
| 139 | * for export to user-space via the ECCGETLAYOUT ioctl. |
| 140 | * nand_ecclayout should be expandable in the future simply by the above macros. |
Prabhakar Kushwaha | 68ec9c8 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 141 | */ |
| 142 | struct nand_ecclayout { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 143 | __u32 eccbytes; |
| 144 | __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE]; |
| 145 | __u32 oobavail; |
Prabhakar Kushwaha | 68ec9c8 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 146 | struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE]; |
| 147 | }; |
| 148 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 149 | struct module; /* only needed for owner field in mtd_info */ |
| 150 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 151 | struct mtd_info { |
| 152 | u_char type; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 153 | uint32_t flags; |
| 154 | uint64_t size; // Total size of the MTD |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 155 | |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 156 | /* "Major" erase size for the device. Naïve users may take this |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 157 | * to be the only erase size available, or may use the more detailed |
| 158 | * information below if they desire |
| 159 | */ |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 160 | uint32_t erasesize; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 161 | /* Minimal writable flash unit size. In case of NOR flash it is 1 (even |
| 162 | * though individual bits can be cleared), in case of NAND flash it is |
| 163 | * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR |
| 164 | * it is of ECC block size, etc. It is illegal to have writesize = 0. |
| 165 | * Any driver registering a struct mtd_info must ensure a writesize of |
| 166 | * 1 or larger. |
| 167 | */ |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 168 | uint32_t writesize; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 169 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 170 | /* |
| 171 | * Size of the write buffer used by the MTD. MTD devices having a write |
| 172 | * buffer can write multiple writesize chunks at a time. E.g. while |
| 173 | * writing 4 * writesize bytes to a device with 2 * writesize bytes |
| 174 | * buffer the MTD driver can (but doesn't have to) do 2 writesize |
| 175 | * operations, but not 4. Currently, all NANDs have writebufsize |
| 176 | * equivalent to writesize (NAND page size). Some NOR flashes do have |
| 177 | * writebufsize greater than writesize. |
| 178 | */ |
| 179 | uint32_t writebufsize; |
| 180 | |
| 181 | uint32_t oobsize; // Amount of OOB data per block (e.g. 16) |
| 182 | uint32_t oobavail; // Available OOB bytes per block |
| 183 | |
| 184 | /* |
| 185 | * If erasesize is a power of 2 then the shift is stored in |
| 186 | * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize. |
| 187 | */ |
| 188 | unsigned int erasesize_shift; |
| 189 | unsigned int writesize_shift; |
| 190 | /* Masks based on erasesize_shift and writesize_shift */ |
| 191 | unsigned int erasesize_mask; |
| 192 | unsigned int writesize_mask; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 193 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 194 | /* |
| 195 | * read ops return -EUCLEAN if max number of bitflips corrected on any |
| 196 | * one region comprising an ecc step equals or exceeds this value. |
| 197 | * Settable by driver, else defaults to ecc_strength. User can override |
| 198 | * in sysfs. N.B. The meaning of the -EUCLEAN return code has changed; |
| 199 | * see Documentation/ABI/testing/sysfs-class-mtd for more detail. |
| 200 | */ |
| 201 | unsigned int bitflip_threshold; |
| 202 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 203 | // Kernel-only stuff starts here. |
| 204 | #ifndef __UBOOT__ |
Scott Wood | c45912d | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 205 | const char *name; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 206 | #else |
| 207 | char *name; |
| 208 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 209 | int index; |
| 210 | |
Boris Brezillon | 13f3b04 | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 211 | /* OOB layout description */ |
| 212 | const struct mtd_ooblayout_ops *ooblayout; |
| 213 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 214 | /* ECC layout structure pointer - read only! */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 215 | struct nand_ecclayout *ecclayout; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 216 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 217 | /* the ecc step size. */ |
| 218 | unsigned int ecc_step_size; |
| 219 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 220 | /* max number of correctible bit errors per ecc step */ |
| 221 | unsigned int ecc_strength; |
| 222 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 223 | /* Data for variable erase regions. If numeraseregions is zero, |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 224 | * it means that the whole device has erasesize as given above. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 225 | */ |
| 226 | int numeraseregions; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 227 | struct mtd_erase_region_info *eraseregions; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 228 | |
Scott Wood | c45912d | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 229 | /* |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 230 | * Do not call via these pointers, use corresponding mtd_*() |
| 231 | * wrappers instead. |
Scott Wood | c45912d | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 232 | */ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 233 | int (*_erase) (struct mtd_info *mtd, struct erase_info *instr); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 234 | #ifndef __UBOOT__ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 235 | int (*_point) (struct mtd_info *mtd, loff_t from, size_t len, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 236 | size_t *retlen, void **virt, resource_size_t *phys); |
| 237 | int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len); |
| 238 | #endif |
| 239 | unsigned long (*_get_unmapped_area) (struct mtd_info *mtd, |
| 240 | unsigned long len, |
| 241 | unsigned long offset, |
| 242 | unsigned long flags); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 243 | int (*_read) (struct mtd_info *mtd, loff_t from, size_t len, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 244 | size_t *retlen, u_char *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 245 | int (*_write) (struct mtd_info *mtd, loff_t to, size_t len, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 246 | size_t *retlen, const u_char *buf); |
| 247 | int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len, |
| 248 | size_t *retlen, const u_char *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 249 | int (*_read_oob) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 250 | struct mtd_oob_ops *ops); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 251 | int (*_write_oob) (struct mtd_info *mtd, loff_t to, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 252 | struct mtd_oob_ops *ops); |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 253 | int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len, |
| 254 | size_t *retlen, struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 255 | int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 256 | size_t len, size_t *retlen, u_char *buf); |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 257 | int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len, |
| 258 | size_t *retlen, struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 259 | int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 260 | size_t len, size_t *retlen, u_char *buf); |
| 261 | int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to, |
| 262 | size_t len, size_t *retlen, u_char *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 263 | int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 264 | size_t len); |
| 265 | #ifndef __UBOOT__ |
| 266 | int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs, |
| 267 | unsigned long count, loff_t to, size_t *retlen); |
| 268 | #endif |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 269 | void (*_sync) (struct mtd_info *mtd); |
| 270 | int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 271 | int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 272 | int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
Ezequiel Garcia | 86a720a | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 273 | int (*_block_isreserved) (struct mtd_info *mtd, loff_t ofs); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 274 | int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs); |
| 275 | int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 276 | #ifndef __UBOOT__ |
| 277 | int (*_suspend) (struct mtd_info *mtd); |
| 278 | void (*_resume) (struct mtd_info *mtd); |
Heiko Schocher | 0195a7b | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 279 | void (*_reboot) (struct mtd_info *mtd); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 280 | #endif |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 281 | /* |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 282 | * If the driver is something smart, like UBI, it may need to maintain |
| 283 | * its own reference counting. The below functions are only for driver. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 284 | */ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 285 | int (*_get_device) (struct mtd_info *mtd); |
| 286 | void (*_put_device) (struct mtd_info *mtd); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 287 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 288 | #ifndef __UBOOT__ |
| 289 | /* Backing device capabilities for this device |
| 290 | * - provides mmap capabilities |
| 291 | */ |
| 292 | struct backing_dev_info *backing_dev_info; |
| 293 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 294 | struct notifier_block reboot_notifier; /* default mode before reboot */ |
| 295 | #endif |
| 296 | |
| 297 | /* ECC status information */ |
| 298 | struct mtd_ecc_stats ecc_stats; |
| 299 | /* Subpage shift (NAND) */ |
| 300 | int subpage_sft; |
| 301 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 302 | void *priv; |
| 303 | |
| 304 | struct module *owner; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 305 | #ifndef __UBOOT__ |
| 306 | struct device dev; |
Thomas Chou | d858799 | 2015-11-07 14:20:31 +0800 | [diff] [blame] | 307 | #else |
| 308 | struct udevice *dev; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 309 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 310 | int usecount; |
Miquel Raynal | 2a74930 | 2018-09-29 12:58:27 +0200 | [diff] [blame] | 311 | |
| 312 | /* MTD devices do not have any parent. MTD partitions do. */ |
| 313 | struct mtd_info *parent; |
| 314 | |
| 315 | /* |
| 316 | * Offset of the partition relatively to the parent offset. |
| 317 | * Is 0 for real MTD devices (ie. not partitions). |
| 318 | */ |
| 319 | u64 offset; |
| 320 | |
| 321 | /* |
| 322 | * List node used to add an MTD partition to the parent |
| 323 | * partition list. |
| 324 | */ |
| 325 | struct list_head node; |
| 326 | |
| 327 | /* |
| 328 | * List of partitions attached to this MTD device (the parent |
| 329 | * MTD device can itself be a partition). |
| 330 | */ |
| 331 | struct list_head partitions; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 332 | }; |
| 333 | |
Brian Norris | 9bfc3fd | 2018-08-16 17:30:03 +0200 | [diff] [blame] | 334 | #if IS_ENABLED(CONFIG_DM) |
| 335 | static inline void mtd_set_of_node(struct mtd_info *mtd, |
| 336 | const struct device_node *np) |
| 337 | { |
| 338 | mtd->dev->node.np = np; |
| 339 | } |
| 340 | |
| 341 | static inline const struct device_node *mtd_get_of_node(struct mtd_info *mtd) |
| 342 | { |
| 343 | return mtd->dev->node.np; |
| 344 | } |
| 345 | #else |
| 346 | struct device_node; |
| 347 | |
| 348 | static inline void mtd_set_of_node(struct mtd_info *mtd, |
| 349 | const struct device_node *np) |
| 350 | { |
| 351 | } |
| 352 | |
| 353 | static inline const struct device_node *mtd_get_of_node(struct mtd_info *mtd) |
| 354 | { |
| 355 | return NULL; |
| 356 | } |
| 357 | #endif |
| 358 | |
Miquel Raynal | 2a74930 | 2018-09-29 12:58:27 +0200 | [diff] [blame] | 359 | static inline bool mtd_is_partition(const struct mtd_info *mtd) |
| 360 | { |
| 361 | return mtd->parent; |
| 362 | } |
| 363 | |
| 364 | static inline bool mtd_has_partitions(const struct mtd_info *mtd) |
| 365 | { |
| 366 | return !list_empty(&mtd->partitions); |
| 367 | } |
| 368 | |
Boris Brezillon | 4a5594f | 2018-12-02 10:54:30 +0100 | [diff] [blame] | 369 | bool mtd_partitions_used(struct mtd_info *master); |
| 370 | |
Boris Brezillon | 13f3b04 | 2017-11-22 02:38:23 +0900 | [diff] [blame] | 371 | int mtd_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 372 | struct mtd_oob_region *oobecc); |
| 373 | int mtd_ooblayout_find_eccregion(struct mtd_info *mtd, int eccbyte, |
| 374 | int *section, |
| 375 | struct mtd_oob_region *oobregion); |
| 376 | int mtd_ooblayout_get_eccbytes(struct mtd_info *mtd, u8 *eccbuf, |
| 377 | const u8 *oobbuf, int start, int nbytes); |
| 378 | int mtd_ooblayout_set_eccbytes(struct mtd_info *mtd, const u8 *eccbuf, |
| 379 | u8 *oobbuf, int start, int nbytes); |
| 380 | int mtd_ooblayout_free(struct mtd_info *mtd, int section, |
| 381 | struct mtd_oob_region *oobfree); |
| 382 | int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf, |
| 383 | const u8 *oobbuf, int start, int nbytes); |
| 384 | int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf, |
| 385 | u8 *oobbuf, int start, int nbytes); |
| 386 | int mtd_ooblayout_count_freebytes(struct mtd_info *mtd); |
| 387 | int mtd_ooblayout_count_eccbytes(struct mtd_info *mtd); |
| 388 | |
| 389 | static inline void mtd_set_ooblayout(struct mtd_info *mtd, |
| 390 | const struct mtd_ooblayout_ops *ooblayout) |
| 391 | { |
| 392 | mtd->ooblayout = ooblayout; |
| 393 | } |
| 394 | |
Miquel Raynal | a55036b | 2018-11-18 21:11:46 +0100 | [diff] [blame] | 395 | static inline u32 mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops) |
Scott Wood | ceee07b | 2016-05-30 13:57:58 -0500 | [diff] [blame] | 396 | { |
| 397 | return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize; |
| 398 | } |
| 399 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 400 | int mtd_erase(struct mtd_info *mtd, struct erase_info *instr); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 401 | #ifndef __UBOOT__ |
| 402 | int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 403 | void **virt, resource_size_t *phys); |
| 404 | int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len); |
| 405 | #endif |
| 406 | unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len, |
| 407 | unsigned long offset, unsigned long flags); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 408 | int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 409 | u_char *buf); |
| 410 | int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 411 | const u_char *buf); |
| 412 | int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 413 | const u_char *buf); |
| 414 | |
| 415 | int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops); |
Ezequiel Garcia | 5f50d82 | 2018-08-16 17:30:00 +0200 | [diff] [blame] | 416 | int mtd_write_oob(struct mtd_info *mtd, loff_t to, struct mtd_oob_ops *ops); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 417 | |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 418 | int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 419 | struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 420 | int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 421 | size_t *retlen, u_char *buf); |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame] | 422 | int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 423 | struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 424 | int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 425 | size_t *retlen, u_char *buf); |
| 426 | int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len, |
| 427 | size_t *retlen, u_char *buf); |
| 428 | int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len); |
| 429 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 430 | #ifndef __UBOOT__ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 431 | int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, |
| 432 | unsigned long count, loff_t to, size_t *retlen); |
| 433 | #endif |
| 434 | |
| 435 | static inline void mtd_sync(struct mtd_info *mtd) |
| 436 | { |
| 437 | if (mtd->_sync) |
| 438 | mtd->_sync(mtd); |
| 439 | } |
| 440 | |
| 441 | int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 442 | int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 443 | int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
Ezequiel Garcia | 86a720a | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 444 | int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 445 | int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs); |
| 446 | int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs); |
| 447 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 448 | #ifndef __UBOOT__ |
| 449 | static inline int mtd_suspend(struct mtd_info *mtd) |
| 450 | { |
| 451 | return mtd->_suspend ? mtd->_suspend(mtd) : 0; |
| 452 | } |
| 453 | |
| 454 | static inline void mtd_resume(struct mtd_info *mtd) |
| 455 | { |
| 456 | if (mtd->_resume) |
| 457 | mtd->_resume(mtd); |
| 458 | } |
| 459 | #endif |
| 460 | |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 461 | static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd) |
| 462 | { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 463 | if (mtd->erasesize_shift) |
| 464 | return sz >> mtd->erasesize_shift; |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 465 | do_div(sz, mtd->erasesize); |
| 466 | return sz; |
| 467 | } |
| 468 | |
| 469 | static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd) |
| 470 | { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 471 | if (mtd->erasesize_shift) |
| 472 | return sz & mtd->erasesize_mask; |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 473 | return do_div(sz, mtd->erasesize); |
| 474 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 475 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 476 | static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd) |
| 477 | { |
| 478 | if (mtd->writesize_shift) |
| 479 | return sz >> mtd->writesize_shift; |
| 480 | do_div(sz, mtd->writesize); |
| 481 | return sz; |
| 482 | } |
| 483 | |
| 484 | static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd) |
| 485 | { |
| 486 | if (mtd->writesize_shift) |
| 487 | return sz & mtd->writesize_mask; |
| 488 | return do_div(sz, mtd->writesize); |
| 489 | } |
| 490 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 491 | static inline int mtd_has_oob(const struct mtd_info *mtd) |
| 492 | { |
| 493 | return mtd->_read_oob && mtd->_write_oob; |
| 494 | } |
| 495 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 496 | static inline int mtd_type_is_nand(const struct mtd_info *mtd) |
| 497 | { |
| 498 | return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH; |
| 499 | } |
| 500 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 501 | static inline int mtd_can_have_bb(const struct mtd_info *mtd) |
| 502 | { |
| 503 | return !!mtd->_block_isbad; |
| 504 | } |
| 505 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 506 | /* Kernel-side ioctl definitions */ |
| 507 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 508 | struct mtd_partition; |
| 509 | struct mtd_part_parser_data; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 510 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 511 | extern int mtd_device_parse_register(struct mtd_info *mtd, |
| 512 | const char * const *part_probe_types, |
| 513 | struct mtd_part_parser_data *parser_data, |
| 514 | const struct mtd_partition *defparts, |
| 515 | int defnr_parts); |
| 516 | #define mtd_device_register(master, parts, nr_parts) \ |
| 517 | mtd_device_parse_register(master, NULL, NULL, parts, nr_parts) |
| 518 | extern int mtd_device_unregister(struct mtd_info *master); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 519 | extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 520 | extern int __get_mtd_device(struct mtd_info *mtd); |
| 521 | extern void __put_mtd_device(struct mtd_info *mtd); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 522 | extern struct mtd_info *get_mtd_device_nm(const char *name); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 523 | extern void put_mtd_device(struct mtd_info *mtd); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 524 | |
| 525 | |
| 526 | #ifndef __UBOOT__ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 527 | struct mtd_notifier { |
| 528 | void (*add)(struct mtd_info *mtd); |
| 529 | void (*remove)(struct mtd_info *mtd); |
| 530 | struct list_head list; |
| 531 | }; |
| 532 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 533 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 534 | extern void register_mtd_user (struct mtd_notifier *new); |
| 535 | extern int unregister_mtd_user (struct mtd_notifier *old); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 536 | #endif |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 537 | void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 538 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 539 | #ifdef CONFIG_MTD_PARTITIONS |
| 540 | void mtd_erase_callback(struct erase_info *instr); |
| 541 | #else |
| 542 | static inline void mtd_erase_callback(struct erase_info *instr) |
| 543 | { |
| 544 | if (instr->callback) |
| 545 | instr->callback(instr); |
| 546 | } |
| 547 | #endif |
| 548 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 549 | static inline int mtd_is_bitflip(int err) { |
| 550 | return err == -EUCLEAN; |
| 551 | } |
| 552 | |
| 553 | static inline int mtd_is_eccerr(int err) { |
| 554 | return err == -EBADMSG; |
| 555 | } |
| 556 | |
| 557 | static inline int mtd_is_bitflip_or_eccerr(int err) { |
| 558 | return mtd_is_bitflip(err) || mtd_is_eccerr(err); |
| 559 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 560 | |
Heiko Schocher | 0195a7b | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 561 | unsigned mtd_mmap_capabilities(struct mtd_info *mtd); |
| 562 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 563 | #ifdef __UBOOT__ |
| 564 | /* drivers/mtd/mtdcore.h */ |
| 565 | int add_mtd_device(struct mtd_info *mtd); |
Heiko Schocher | ddf7bcf | 2014-07-15 16:08:42 +0200 | [diff] [blame] | 566 | int del_mtd_device(struct mtd_info *mtd); |
Boris Brezillon | a02820f | 2018-12-02 10:54:24 +0100 | [diff] [blame] | 567 | |
| 568 | #ifdef CONFIG_MTD_PARTITIONS |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 569 | int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int); |
| 570 | int del_mtd_partitions(struct mtd_info *); |
Boris Brezillon | a02820f | 2018-12-02 10:54:24 +0100 | [diff] [blame] | 571 | #else |
| 572 | static inline int add_mtd_partitions(struct mtd_info *mtd, |
| 573 | const struct mtd_partition *parts, |
| 574 | int nparts) |
| 575 | { |
| 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | static inline int del_mtd_partitions(struct mtd_info *mtd) |
| 580 | { |
| 581 | return 0; |
| 582 | } |
| 583 | #endif |
Heiko Schocher | 09c3280 | 2015-04-27 07:42:05 +0200 | [diff] [blame] | 584 | |
Miquel Raynal | d02f1d3 | 2018-08-16 17:30:05 +0200 | [diff] [blame] | 585 | struct mtd_info *__mtd_next_device(int i); |
| 586 | #define mtd_for_each_device(mtd) \ |
| 587 | for ((mtd) = __mtd_next_device(0); \ |
| 588 | (mtd) != NULL; \ |
| 589 | (mtd) = __mtd_next_device(mtd->index + 1)) |
| 590 | |
Heiko Schocher | 09c3280 | 2015-04-27 07:42:05 +0200 | [diff] [blame] | 591 | int mtd_arg_off(const char *arg, int *idx, loff_t *off, loff_t *size, |
Masahiro Yamada | f18d111 | 2015-07-01 21:35:49 +0900 | [diff] [blame] | 592 | loff_t *maxsize, int devtype, uint64_t chipsize); |
Heiko Schocher | 09c3280 | 2015-04-27 07:42:05 +0200 | [diff] [blame] | 593 | int mtd_arg_off_size(int argc, char *const argv[], int *idx, loff_t *off, |
Masahiro Yamada | f18d111 | 2015-07-01 21:35:49 +0900 | [diff] [blame] | 594 | loff_t *size, loff_t *maxsize, int devtype, |
| 595 | uint64_t chipsize); |
Steve Rae | 59441ac | 2016-06-29 13:50:59 -0700 | [diff] [blame] | 596 | |
| 597 | /* drivers/mtd/mtdcore.c */ |
| 598 | void mtd_get_len_incl_bad(struct mtd_info *mtd, uint64_t offset, |
| 599 | const uint64_t length, uint64_t *len_incl_bad, |
| 600 | int *truncated); |
Boris Brezillon | 4c47fd0 | 2018-12-02 10:54:22 +0100 | [diff] [blame] | 601 | bool mtd_dev_list_updated(void); |
Miquel Raynal | ff4afa8 | 2018-09-29 12:58:26 +0200 | [diff] [blame] | 602 | |
| 603 | /* drivers/mtd/mtd_uboot.c */ |
| 604 | int mtd_search_alternate_name(const char *mtdname, char *altname, |
| 605 | unsigned int max_len); |
| 606 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 607 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 608 | #endif /* __MTD_MTD_H__ */ |