Wolfgang Denk | ac7eb8a3 | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1 | /* |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 2 | * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 3 | * |
| 4 | * Released under GPL |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 5 | * |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __MTD_MTD_H__ |
| 9 | #define __MTD_MTD_H__ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 10 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 11 | #define __UBOOT__ |
| 12 | #ifndef __UBOOT__ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 13 | #include <linux/types.h> |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 14 | #include <linux/uio.h> |
| 15 | #include <linux/notifier.h> |
| 16 | #include <linux/device.h> |
| 17 | |
| 18 | #include <mtd/mtd-abi.h> |
| 19 | |
| 20 | #include <asm/div64.h> |
| 21 | #else |
| 22 | #include <linux/compat.h> |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 23 | #include <mtd/mtd-abi.h> |
| 24 | #include <asm/errno.h> |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 25 | #include <div64.h> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 26 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 27 | #define MAX_MTD_DEVICES 32 |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 28 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 29 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 30 | #define MTD_ERASE_PENDING 0x01 |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 31 | #define MTD_ERASING 0x02 |
| 32 | #define MTD_ERASE_SUSPEND 0x04 |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 33 | #define MTD_ERASE_DONE 0x08 |
| 34 | #define MTD_ERASE_FAILED 0x10 |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 35 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 36 | #define MTD_FAIL_ADDR_UNKNOWN -1LL |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 37 | |
Kyungmin Park | d438d50 | 2008-08-13 09:11:02 +0900 | [diff] [blame] | 38 | /* |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 39 | * If the erase fails, fail_addr might indicate exactly which block failed. If |
| 40 | * fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level |
| 41 | * or was not specific to any particular block. |
Kyungmin Park | d438d50 | 2008-08-13 09:11:02 +0900 | [diff] [blame] | 42 | */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 43 | struct erase_info { |
| 44 | struct mtd_info *mtd; |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 45 | uint64_t addr; |
| 46 | uint64_t len; |
| 47 | uint64_t fail_addr; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 48 | u_long time; |
| 49 | u_long retries; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 50 | unsigned dev; |
| 51 | unsigned cell; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 52 | void (*callback) (struct erase_info *self); |
| 53 | u_long priv; |
| 54 | u_char state; |
| 55 | struct erase_info *next; |
Marek Vasut | 6d41419 | 2011-09-12 06:04:06 +0200 | [diff] [blame] | 56 | int scrub; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | struct mtd_erase_region_info { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 60 | uint64_t offset; /* At which this region starts, from the beginning of the MTD */ |
| 61 | uint32_t erasesize; /* For this region */ |
| 62 | uint32_t numblocks; /* Number of blocks of erasesize in this region */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 63 | unsigned long *lockmap; /* If keeping bitmap of locks */ |
| 64 | }; |
| 65 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 66 | /** |
| 67 | * struct mtd_oob_ops - oob operation operands |
| 68 | * @mode: operation mode |
| 69 | * |
| 70 | * @len: number of data bytes to write/read |
| 71 | * |
| 72 | * @retlen: number of data bytes written/read |
| 73 | * |
| 74 | * @ooblen: number of oob bytes to write/read |
| 75 | * @oobretlen: number of oob bytes written/read |
| 76 | * @ooboffs: offset of oob data in the oob area (only relevant when |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 77 | * mode = MTD_OPS_PLACE_OOB or MTD_OPS_RAW) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 78 | * @datbuf: data buffer - if NULL only oob data are read/written |
| 79 | * @oobbuf: oob data buffer |
| 80 | * |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 81 | * Note, it is allowed to read more than one OOB area at one go, but not write. |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 82 | * The interface assumes that the OOB write requests program only one page's |
| 83 | * OOB area. |
| 84 | */ |
| 85 | struct mtd_oob_ops { |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 86 | unsigned int mode; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 87 | size_t len; |
| 88 | size_t retlen; |
| 89 | size_t ooblen; |
| 90 | size_t oobretlen; |
| 91 | uint32_t ooboffs; |
| 92 | uint8_t *datbuf; |
| 93 | uint8_t *oobbuf; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 94 | }; |
| 95 | |
Prabhakar Kushwaha | 68ec9c8 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 96 | #ifdef CONFIG_SYS_NAND_MAX_OOBFREE |
| 97 | #define MTD_MAX_OOBFREE_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_OOBFREE |
| 98 | #else |
| 99 | #define MTD_MAX_OOBFREE_ENTRIES_LARGE 32 |
| 100 | #endif |
| 101 | |
| 102 | #ifdef CONFIG_SYS_NAND_MAX_ECCPOS |
| 103 | #define MTD_MAX_ECCPOS_ENTRIES_LARGE CONFIG_SYS_NAND_MAX_ECCPOS |
| 104 | #else |
| 105 | #define MTD_MAX_ECCPOS_ENTRIES_LARGE 640 |
| 106 | #endif |
| 107 | |
| 108 | /* |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 109 | * Internal ECC layout control structure. For historical reasons, there is a |
| 110 | * similar, smaller struct nand_ecclayout_user (in mtd-abi.h) that is retained |
| 111 | * for export to user-space via the ECCGETLAYOUT ioctl. |
| 112 | * 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] | 113 | */ |
| 114 | struct nand_ecclayout { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 115 | __u32 eccbytes; |
| 116 | __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE]; |
| 117 | __u32 oobavail; |
Prabhakar Kushwaha | 68ec9c8 | 2013-10-04 13:47:58 +0530 | [diff] [blame] | 118 | struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE]; |
| 119 | }; |
| 120 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 121 | struct module; /* only needed for owner field in mtd_info */ |
| 122 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 123 | struct mtd_info { |
| 124 | u_char type; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 125 | uint32_t flags; |
| 126 | uint64_t size; // Total size of the MTD |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 127 | |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 128 | /* "Major" erase size for the device. Naïve users may take this |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 129 | * to be the only erase size available, or may use the more detailed |
| 130 | * information below if they desire |
| 131 | */ |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 132 | uint32_t erasesize; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 133 | /* Minimal writable flash unit size. In case of NOR flash it is 1 (even |
| 134 | * though individual bits can be cleared), in case of NAND flash it is |
| 135 | * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR |
| 136 | * it is of ECC block size, etc. It is illegal to have writesize = 0. |
| 137 | * Any driver registering a struct mtd_info must ensure a writesize of |
| 138 | * 1 or larger. |
| 139 | */ |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 140 | uint32_t writesize; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 141 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 142 | /* |
| 143 | * Size of the write buffer used by the MTD. MTD devices having a write |
| 144 | * buffer can write multiple writesize chunks at a time. E.g. while |
| 145 | * writing 4 * writesize bytes to a device with 2 * writesize bytes |
| 146 | * buffer the MTD driver can (but doesn't have to) do 2 writesize |
| 147 | * operations, but not 4. Currently, all NANDs have writebufsize |
| 148 | * equivalent to writesize (NAND page size). Some NOR flashes do have |
| 149 | * writebufsize greater than writesize. |
| 150 | */ |
| 151 | uint32_t writebufsize; |
| 152 | |
| 153 | uint32_t oobsize; // Amount of OOB data per block (e.g. 16) |
| 154 | uint32_t oobavail; // Available OOB bytes per block |
| 155 | |
| 156 | /* |
| 157 | * If erasesize is a power of 2 then the shift is stored in |
| 158 | * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize. |
| 159 | */ |
| 160 | unsigned int erasesize_shift; |
| 161 | unsigned int writesize_shift; |
| 162 | /* Masks based on erasesize_shift and writesize_shift */ |
| 163 | unsigned int erasesize_mask; |
| 164 | unsigned int writesize_mask; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 165 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 166 | /* |
| 167 | * read ops return -EUCLEAN if max number of bitflips corrected on any |
| 168 | * one region comprising an ecc step equals or exceeds this value. |
| 169 | * Settable by driver, else defaults to ecc_strength. User can override |
| 170 | * in sysfs. N.B. The meaning of the -EUCLEAN return code has changed; |
| 171 | * see Documentation/ABI/testing/sysfs-class-mtd for more detail. |
| 172 | */ |
| 173 | unsigned int bitflip_threshold; |
| 174 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 175 | // Kernel-only stuff starts here. |
| 176 | #ifndef __UBOOT__ |
Scott Wood | c45912d | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 177 | const char *name; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 178 | #else |
| 179 | char *name; |
| 180 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 181 | int index; |
| 182 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 183 | /* ECC layout structure pointer - read only! */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 184 | struct nand_ecclayout *ecclayout; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 185 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 186 | /* the ecc step size. */ |
| 187 | unsigned int ecc_step_size; |
| 188 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 189 | /* max number of correctible bit errors per ecc step */ |
| 190 | unsigned int ecc_strength; |
| 191 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 192 | /* Data for variable erase regions. If numeraseregions is zero, |
Wolfgang Denk | ac7eb8a3 | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 193 | * it means that the whole device has erasesize as given above. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 194 | */ |
| 195 | int numeraseregions; |
Wolfgang Denk | ac7eb8a3 | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 196 | struct mtd_erase_region_info *eraseregions; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 197 | |
Scott Wood | c45912d | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 198 | /* |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 199 | * Do not call via these pointers, use corresponding mtd_*() |
| 200 | * wrappers instead. |
Scott Wood | c45912d | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 201 | */ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 202 | int (*_erase) (struct mtd_info *mtd, struct erase_info *instr); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 203 | #ifndef __UBOOT__ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 204 | int (*_point) (struct mtd_info *mtd, loff_t from, size_t len, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 205 | size_t *retlen, void **virt, resource_size_t *phys); |
| 206 | int (*_unpoint) (struct mtd_info *mtd, loff_t from, size_t len); |
| 207 | #endif |
| 208 | unsigned long (*_get_unmapped_area) (struct mtd_info *mtd, |
| 209 | unsigned long len, |
| 210 | unsigned long offset, |
| 211 | unsigned long flags); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 212 | int (*_read) (struct mtd_info *mtd, loff_t from, size_t len, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 213 | size_t *retlen, u_char *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 214 | int (*_write) (struct mtd_info *mtd, loff_t to, size_t len, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 215 | size_t *retlen, const u_char *buf); |
| 216 | int (*_panic_write) (struct mtd_info *mtd, loff_t to, size_t len, |
| 217 | size_t *retlen, const u_char *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 218 | int (*_read_oob) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 219 | struct mtd_oob_ops *ops); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 220 | int (*_write_oob) (struct mtd_info *mtd, loff_t to, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 221 | struct mtd_oob_ops *ops); |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame^] | 222 | int (*_get_fact_prot_info) (struct mtd_info *mtd, size_t len, |
| 223 | size_t *retlen, struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 224 | int (*_read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 225 | size_t len, size_t *retlen, u_char *buf); |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame^] | 226 | int (*_get_user_prot_info) (struct mtd_info *mtd, size_t len, |
| 227 | size_t *retlen, struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 228 | int (*_read_user_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 229 | size_t len, size_t *retlen, u_char *buf); |
| 230 | int (*_write_user_prot_reg) (struct mtd_info *mtd, loff_t to, |
| 231 | size_t len, size_t *retlen, u_char *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 232 | int (*_lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 233 | size_t len); |
| 234 | #ifndef __UBOOT__ |
| 235 | int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs, |
| 236 | unsigned long count, loff_t to, size_t *retlen); |
| 237 | #endif |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 238 | void (*_sync) (struct mtd_info *mtd); |
| 239 | int (*_lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 240 | int (*_unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 241 | int (*_is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 242 | int (*_block_isbad) (struct mtd_info *mtd, loff_t ofs); |
| 243 | int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 244 | #ifndef __UBOOT__ |
| 245 | int (*_suspend) (struct mtd_info *mtd); |
| 246 | void (*_resume) (struct mtd_info *mtd); |
| 247 | #endif |
Wolfgang Denk | ac7eb8a3 | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 248 | /* |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 249 | * If the driver is something smart, like UBI, it may need to maintain |
| 250 | * its own reference counting. The below functions are only for driver. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 251 | */ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 252 | int (*_get_device) (struct mtd_info *mtd); |
| 253 | void (*_put_device) (struct mtd_info *mtd); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 254 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 255 | #ifndef __UBOOT__ |
| 256 | /* Backing device capabilities for this device |
| 257 | * - provides mmap capabilities |
| 258 | */ |
| 259 | struct backing_dev_info *backing_dev_info; |
| 260 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 261 | struct notifier_block reboot_notifier; /* default mode before reboot */ |
| 262 | #endif |
| 263 | |
| 264 | /* ECC status information */ |
| 265 | struct mtd_ecc_stats ecc_stats; |
| 266 | /* Subpage shift (NAND) */ |
| 267 | int subpage_sft; |
| 268 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 269 | void *priv; |
| 270 | |
| 271 | struct module *owner; |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 272 | #ifndef __UBOOT__ |
| 273 | struct device dev; |
| 274 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 275 | int usecount; |
| 276 | }; |
| 277 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 278 | int mtd_erase(struct mtd_info *mtd, struct erase_info *instr); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 279 | #ifndef __UBOOT__ |
| 280 | int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 281 | void **virt, resource_size_t *phys); |
| 282 | int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len); |
| 283 | #endif |
| 284 | unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len, |
| 285 | unsigned long offset, unsigned long flags); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 286 | int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 287 | u_char *buf); |
| 288 | int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 289 | const u_char *buf); |
| 290 | int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 291 | const u_char *buf); |
| 292 | |
| 293 | int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops); |
| 294 | |
| 295 | static inline int mtd_write_oob(struct mtd_info *mtd, loff_t to, |
| 296 | struct mtd_oob_ops *ops) |
| 297 | { |
| 298 | ops->retlen = ops->oobretlen = 0; |
| 299 | if (!mtd->_write_oob) |
| 300 | return -EOPNOTSUPP; |
| 301 | if (!(mtd->flags & MTD_WRITEABLE)) |
| 302 | return -EROFS; |
| 303 | return mtd->_write_oob(mtd, to, ops); |
| 304 | } |
| 305 | |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame^] | 306 | int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 307 | struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 308 | int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 309 | size_t *retlen, u_char *buf); |
Heiko Schocher | 4e67c57 | 2014-07-15 16:08:43 +0200 | [diff] [blame^] | 310 | int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 311 | struct otp_info *buf); |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 312 | int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 313 | size_t *retlen, u_char *buf); |
| 314 | int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len, |
| 315 | size_t *retlen, u_char *buf); |
| 316 | int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len); |
| 317 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 318 | #ifndef __UBOOT__ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 319 | int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, |
| 320 | unsigned long count, loff_t to, size_t *retlen); |
| 321 | #endif |
| 322 | |
| 323 | static inline void mtd_sync(struct mtd_info *mtd) |
| 324 | { |
| 325 | if (mtd->_sync) |
| 326 | mtd->_sync(mtd); |
| 327 | } |
| 328 | |
| 329 | int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 330 | int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 331 | int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 332 | int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs); |
| 333 | int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs); |
| 334 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 335 | #ifndef __UBOOT__ |
| 336 | static inline int mtd_suspend(struct mtd_info *mtd) |
| 337 | { |
| 338 | return mtd->_suspend ? mtd->_suspend(mtd) : 0; |
| 339 | } |
| 340 | |
| 341 | static inline void mtd_resume(struct mtd_info *mtd) |
| 342 | { |
| 343 | if (mtd->_resume) |
| 344 | mtd->_resume(mtd); |
| 345 | } |
| 346 | #endif |
| 347 | |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 348 | static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd) |
| 349 | { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 350 | if (mtd->erasesize_shift) |
| 351 | return sz >> mtd->erasesize_shift; |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 352 | do_div(sz, mtd->erasesize); |
| 353 | return sz; |
| 354 | } |
| 355 | |
| 356 | static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd) |
| 357 | { |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 358 | if (mtd->erasesize_shift) |
| 359 | return sz & mtd->erasesize_mask; |
Stefan Roese | 8d2effe | 2009-05-11 16:03:55 +0200 | [diff] [blame] | 360 | return do_div(sz, mtd->erasesize); |
| 361 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 362 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 363 | static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd) |
| 364 | { |
| 365 | if (mtd->writesize_shift) |
| 366 | return sz >> mtd->writesize_shift; |
| 367 | do_div(sz, mtd->writesize); |
| 368 | return sz; |
| 369 | } |
| 370 | |
| 371 | static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd) |
| 372 | { |
| 373 | if (mtd->writesize_shift) |
| 374 | return sz & mtd->writesize_mask; |
| 375 | return do_div(sz, mtd->writesize); |
| 376 | } |
| 377 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 378 | static inline int mtd_has_oob(const struct mtd_info *mtd) |
| 379 | { |
| 380 | return mtd->_read_oob && mtd->_write_oob; |
| 381 | } |
| 382 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 383 | static inline int mtd_type_is_nand(const struct mtd_info *mtd) |
| 384 | { |
| 385 | return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH; |
| 386 | } |
| 387 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 388 | static inline int mtd_can_have_bb(const struct mtd_info *mtd) |
| 389 | { |
| 390 | return !!mtd->_block_isbad; |
| 391 | } |
| 392 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 393 | /* Kernel-side ioctl definitions */ |
| 394 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 395 | struct mtd_partition; |
| 396 | struct mtd_part_parser_data; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 397 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 398 | extern int mtd_device_parse_register(struct mtd_info *mtd, |
| 399 | const char * const *part_probe_types, |
| 400 | struct mtd_part_parser_data *parser_data, |
| 401 | const struct mtd_partition *defparts, |
| 402 | int defnr_parts); |
| 403 | #define mtd_device_register(master, parts, nr_parts) \ |
| 404 | mtd_device_parse_register(master, NULL, NULL, parts, nr_parts) |
| 405 | extern int mtd_device_unregister(struct mtd_info *master); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 406 | 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] | 407 | extern int __get_mtd_device(struct mtd_info *mtd); |
| 408 | extern void __put_mtd_device(struct mtd_info *mtd); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 409 | extern struct mtd_info *get_mtd_device_nm(const char *name); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 410 | extern void put_mtd_device(struct mtd_info *mtd); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 411 | |
| 412 | |
| 413 | #ifndef __UBOOT__ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 414 | struct mtd_notifier { |
| 415 | void (*add)(struct mtd_info *mtd); |
| 416 | void (*remove)(struct mtd_info *mtd); |
| 417 | struct list_head list; |
| 418 | }; |
| 419 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 420 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 421 | extern void register_mtd_user (struct mtd_notifier *new); |
| 422 | extern int unregister_mtd_user (struct mtd_notifier *old); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 423 | #endif |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 424 | 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] | 425 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 426 | #ifdef CONFIG_MTD_PARTITIONS |
| 427 | void mtd_erase_callback(struct erase_info *instr); |
| 428 | #else |
| 429 | static inline void mtd_erase_callback(struct erase_info *instr) |
| 430 | { |
| 431 | if (instr->callback) |
| 432 | instr->callback(instr); |
| 433 | } |
| 434 | #endif |
| 435 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 436 | #ifdef __UBOOT__ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 437 | /* |
| 438 | * Debugging macro and defines |
| 439 | */ |
| 440 | #define MTD_DEBUG_LEVEL0 (0) /* Quiet */ |
| 441 | #define MTD_DEBUG_LEVEL1 (1) /* Audible */ |
| 442 | #define MTD_DEBUG_LEVEL2 (2) /* Loud */ |
| 443 | #define MTD_DEBUG_LEVEL3 (3) /* Noisy */ |
| 444 | |
| 445 | #ifdef CONFIG_MTD_DEBUG |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 446 | #define pr_debug(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args) |
Scott Wood | 3167c53 | 2008-06-20 12:38:57 -0500 | [diff] [blame] | 447 | #define MTDDEBUG(n, args...) \ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 448 | do { \ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 449 | if (n <= CONFIG_MTD_DEBUG_VERBOSE) \ |
| 450 | printk(KERN_INFO args); \ |
| 451 | } while(0) |
| 452 | #else /* CONFIG_MTD_DEBUG */ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 453 | #define pr_debug(args...) |
Scott Wood | c45912d | 2008-10-24 16:20:43 -0500 | [diff] [blame] | 454 | #define MTDDEBUG(n, args...) \ |
| 455 | do { \ |
| 456 | if (0) \ |
| 457 | printk(KERN_INFO args); \ |
| 458 | } while(0) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 459 | #endif /* CONFIG_MTD_DEBUG */ |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 460 | #define pr_info(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args) |
| 461 | #define pr_warn(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args) |
| 462 | #define pr_err(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args) |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 463 | #define pr_crit(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args) |
| 464 | #define pr_cont(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args) |
| 465 | #define pr_notice(args...) MTDDEBUG(MTD_DEBUG_LEVEL0, args) |
| 466 | #endif |
| 467 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 468 | static inline int mtd_is_bitflip(int err) { |
| 469 | return err == -EUCLEAN; |
| 470 | } |
| 471 | |
| 472 | static inline int mtd_is_eccerr(int err) { |
| 473 | return err == -EBADMSG; |
| 474 | } |
| 475 | |
| 476 | static inline int mtd_is_bitflip_or_eccerr(int err) { |
| 477 | return mtd_is_bitflip(err) || mtd_is_eccerr(err); |
| 478 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 479 | |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 480 | #ifdef __UBOOT__ |
| 481 | /* drivers/mtd/mtdcore.h */ |
| 482 | int add_mtd_device(struct mtd_info *mtd); |
Heiko Schocher | ddf7bcf | 2014-07-15 16:08:42 +0200 | [diff] [blame] | 483 | int del_mtd_device(struct mtd_info *mtd); |
Heiko Schocher | ff94bc4 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 484 | int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int); |
| 485 | int del_mtd_partitions(struct mtd_info *); |
| 486 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 487 | #endif /* __MTD_MTD_H__ */ |