Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
David Woodhouse | a1452a3 | 2010-08-08 20:58:20 +0100 | [diff] [blame] | 2 | * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 17 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #ifndef __MTD_ABI_H__ |
| 21 | #define __MTD_ABI_H__ |
| 22 | |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 23 | #include <linux/types.h> |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | struct erase_info_user { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 26 | __u32 start; |
| 27 | __u32 length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
Kevin Cernekee | 0dc54e9 | 2009-04-08 22:52:28 -0700 | [diff] [blame] | 30 | struct erase_info_user64 { |
| 31 | __u64 start; |
| 32 | __u64 length; |
| 33 | }; |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | struct mtd_oob_buf { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 36 | __u32 start; |
| 37 | __u32 length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | unsigned char __user *ptr; |
| 39 | }; |
| 40 | |
Kevin Cernekee | aea7cea | 2009-04-08 22:53:49 -0700 | [diff] [blame] | 41 | struct mtd_oob_buf64 { |
| 42 | __u64 start; |
| 43 | __u32 pad; |
| 44 | __u32 length; |
| 45 | __u64 usr_ptr; |
| 46 | }; |
| 47 | |
Brian Norris | 905c6bc | 2011-08-30 18:45:39 -0700 | [diff] [blame] | 48 | /* |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame^] | 49 | * MTD operation modes |
Brian Norris | 905c6bc | 2011-08-30 18:45:39 -0700 | [diff] [blame] | 50 | * |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame^] | 51 | * MTD_OPS_PLACE_OOB: oob data are placed at the given offset (default) |
| 52 | * MTD_OPS_AUTO_OOB: oob data are automatically placed at the free areas |
| 53 | * which are defined by the internal ecclayout |
| 54 | * MTD_OPS_RAW: mode to read or write oob and data without doing ECC |
Brian Norris | 905c6bc | 2011-08-30 18:45:39 -0700 | [diff] [blame] | 55 | * checking |
| 56 | */ |
| 57 | enum { |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame^] | 58 | MTD_OPS_PLACE_OOB = 0, |
| 59 | MTD_OPS_AUTO_OOB = 1, |
| 60 | MTD_OPS_RAW = 2, |
Brian Norris | 905c6bc | 2011-08-30 18:45:39 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define MTD_ABSENT 0 |
David Woodhouse | 21c8db9 | 2006-06-14 21:39:48 +0100 | [diff] [blame] | 64 | #define MTD_RAM 1 |
| 65 | #define MTD_ROM 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #define MTD_NORFLASH 3 |
| 67 | #define MTD_NANDFLASH 4 |
Andrew Victor | 8f15fd5 | 2005-02-09 09:17:45 +0000 | [diff] [blame] | 68 | #define MTD_DATAFLASH 6 |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 69 | #define MTD_UBIVOLUME 7 |
Rohit Hassan Sathyanarayan | 17a2282 | 2010-09-27 16:02:03 +0530 | [diff] [blame] | 70 | #define MTD_MLCNANDFLASH 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Joern Engel | 8ca9ed5 | 2006-05-22 23:17:23 +0200 | [diff] [blame] | 72 | #define MTD_WRITEABLE 0x400 /* Device is writeable */ |
Joern Engel | 5fa4339 | 2006-05-22 23:18:29 +0200 | [diff] [blame] | 73 | #define MTD_BIT_WRITEABLE 0x800 /* Single bits can be flipped */ |
Joern Engel | 92cbfdc | 2006-05-30 14:25:24 +0200 | [diff] [blame] | 74 | #define MTD_NO_ERASE 0x1000 /* No erase necessary */ |
Justin Treon | e619a75 | 2008-01-30 10:25:49 -0800 | [diff] [blame] | 75 | #define MTD_POWERUP_LOCK 0x2000 /* Always locked after reset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | // Some common devices / combinations of capabilities |
| 78 | #define MTD_CAP_ROM 0 |
Joern Engel | 92cbfdc | 2006-05-30 14:25:24 +0200 | [diff] [blame] | 79 | #define MTD_CAP_RAM (MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE) |
Joern Engel | 5fa4339 | 2006-05-22 23:18:29 +0200 | [diff] [blame] | 80 | #define MTD_CAP_NORFLASH (MTD_WRITEABLE | MTD_BIT_WRITEABLE) |
Joern Engel | 8ca9ed5 | 2006-05-22 23:17:23 +0200 | [diff] [blame] | 81 | #define MTD_CAP_NANDFLASH (MTD_WRITEABLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | /* ECC byte placement */ |
| 84 | #define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended) |
| 85 | #define MTD_NANDECC_PLACE 1 // Use the given placement in the structure (YAFFS1 legacy mode) |
| 86 | #define MTD_NANDECC_AUTOPLACE 2 // Use the default placement scheme |
| 87 | #define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read) |
Thomas Gleixner | 90e260c | 2005-05-19 17:10:26 +0100 | [diff] [blame] | 88 | #define MTD_NANDECC_AUTOPL_USR 4 // Use the given autoplacement scheme rather than using the default |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 90 | /* OTP mode selection */ |
| 91 | #define MTD_OTP_OFF 0 |
| 92 | #define MTD_OTP_FACTORY 1 |
| 93 | #define MTD_OTP_USER 2 |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | struct mtd_info_user { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 96 | __u8 type; |
| 97 | __u32 flags; |
| 98 | __u32 size; // Total size of the MTD |
| 99 | __u32 erasesize; |
| 100 | __u32 writesize; |
| 101 | __u32 oobsize; // Amount of OOB data per block (e.g. 16) |
Artem Bityutskiy | 64f6071 | 2007-01-30 10:50:43 +0200 | [diff] [blame] | 102 | /* The below two fields are obsolete and broken, do not use them |
| 103 | * (TODO: remove at some point) */ |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 104 | __u32 ecctype; |
| 105 | __u32 eccsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | struct region_info_user { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 109 | __u32 offset; /* At which this region starts, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | * from the beginning of the MTD */ |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 111 | __u32 erasesize; /* For this region */ |
| 112 | __u32 numblocks; /* Number of blocks in this region */ |
| 113 | __u32 regionindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | }; |
| 115 | |
Nicolas Pitre | f77814d | 2005-02-08 17:11:19 +0000 | [diff] [blame] | 116 | struct otp_info { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 117 | __u32 start; |
| 118 | __u32 length; |
| 119 | __u32 locked; |
Nicolas Pitre | f77814d | 2005-02-08 17:11:19 +0000 | [diff] [blame] | 120 | }; |
| 121 | |
Brian Norris | 93fad71 | 2011-08-23 17:17:34 -0700 | [diff] [blame] | 122 | /* |
| 123 | * Note, the following ioctl existed in the past and was removed: |
| 124 | * #define MEMSETOOBSEL _IOW('M', 9, struct nand_oobinfo) |
| 125 | * Try to avoid adding a new ioctl with the same ioctl number. |
| 126 | */ |
| 127 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 128 | #define MEMGETINFO _IOR('M', 1, struct mtd_info_user) |
| 129 | #define MEMERASE _IOW('M', 2, struct erase_info_user) |
| 130 | #define MEMWRITEOOB _IOWR('M', 3, struct mtd_oob_buf) |
| 131 | #define MEMREADOOB _IOWR('M', 4, struct mtd_oob_buf) |
| 132 | #define MEMLOCK _IOW('M', 5, struct erase_info_user) |
| 133 | #define MEMUNLOCK _IOW('M', 6, struct erase_info_user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | #define MEMGETREGIONCOUNT _IOR('M', 7, int) |
| 135 | #define MEMGETREGIONINFO _IOWR('M', 8, struct region_info_user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | #define MEMGETOOBSEL _IOR('M', 10, struct nand_oobinfo) |
Arnd Bergmann | 85efde6 | 2009-02-26 00:51:39 +0100 | [diff] [blame] | 137 | #define MEMGETBADBLOCK _IOW('M', 11, __kernel_loff_t) |
| 138 | #define MEMSETBADBLOCK _IOW('M', 12, __kernel_loff_t) |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 139 | #define OTPSELECT _IOR('M', 13, int) |
| 140 | #define OTPGETREGIONCOUNT _IOW('M', 14, int) |
| 141 | #define OTPGETREGIONINFO _IOW('M', 15, struct otp_info) |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 142 | #define OTPLOCK _IOR('M', 16, struct otp_info) |
Brian Norris | cc26c3c | 2010-08-24 18:12:00 -0700 | [diff] [blame] | 143 | #define ECCGETLAYOUT _IOR('M', 17, struct nand_ecclayout_user) |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 144 | #define ECCGETSTATS _IOR('M', 18, struct mtd_ecc_stats) |
| 145 | #define MTDFILEMODE _IO('M', 19) |
Kevin Cernekee | 0dc54e9 | 2009-04-08 22:52:28 -0700 | [diff] [blame] | 146 | #define MEMERASE64 _IOW('M', 20, struct erase_info_user64) |
Kevin Cernekee | aea7cea | 2009-04-08 22:53:49 -0700 | [diff] [blame] | 147 | #define MEMWRITEOOB64 _IOWR('M', 21, struct mtd_oob_buf64) |
| 148 | #define MEMREADOOB64 _IOWR('M', 22, struct mtd_oob_buf64) |
Richard Cochran | 9938424 | 2010-06-14 18:10:33 +0200 | [diff] [blame] | 149 | #define MEMISLOCKED _IOR('M', 23, struct erase_info_user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 151 | /* |
| 152 | * Obsolete legacy interface. Keep it in order not to break userspace |
| 153 | * interfaces |
| 154 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | struct nand_oobinfo { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 156 | __u32 useecc; |
| 157 | __u32 eccbytes; |
| 158 | __u32 oobfree[8][2]; |
| 159 | __u32 eccpos[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 162 | struct nand_oobfree { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 163 | __u32 offset; |
| 164 | __u32 length; |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 165 | }; |
| 166 | |
| 167 | #define MTD_MAX_OOBFREE_ENTRIES 8 |
Brian Norris | 0ceacf3 | 2010-09-19 23:57:12 -0700 | [diff] [blame] | 168 | #define MTD_MAX_ECCPOS_ENTRIES 64 |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 169 | /* |
Brian Norris | 0ceacf3 | 2010-09-19 23:57:12 -0700 | [diff] [blame] | 170 | * OBSOLETE: ECC layout control structure. Exported to user-space via ioctl |
| 171 | * ECCGETLAYOUT for backwards compatbility and should not be mistaken as a |
| 172 | * complete set of ECC information. The ioctl truncates the larger internal |
| 173 | * structure to retain binary compatibility with the static declaration of the |
| 174 | * ioctl. Note that the "MTD_MAX_..._ENTRIES" macros represent the max size of |
| 175 | * the user struct, not the MAX size of the internal struct nand_ecclayout. |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 176 | */ |
Brian Norris | cc26c3c | 2010-08-24 18:12:00 -0700 | [diff] [blame] | 177 | struct nand_ecclayout_user { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 178 | __u32 eccbytes; |
Brian Norris | 0ceacf3 | 2010-09-19 23:57:12 -0700 | [diff] [blame] | 179 | __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES]; |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 180 | __u32 oobavail; |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 181 | struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES]; |
| 182 | }; |
| 183 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 184 | /** |
Randy Dunlap | ea9b6dc | 2006-06-28 21:48:38 -0700 | [diff] [blame] | 185 | * struct mtd_ecc_stats - error correction stats |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 186 | * |
| 187 | * @corrected: number of corrected bits |
| 188 | * @failed: number of uncorrectable errors |
| 189 | * @badblocks: number of bad blocks in this partition |
| 190 | * @bbtblocks: number of blocks reserved for bad block tables |
| 191 | */ |
| 192 | struct mtd_ecc_stats { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 193 | __u32 corrected; |
| 194 | __u32 failed; |
| 195 | __u32 badblocks; |
| 196 | __u32 bbtblocks; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 197 | }; |
| 198 | |
| 199 | /* |
| 200 | * Read/write file modes for access to MTD |
| 201 | */ |
| 202 | enum mtd_file_modes { |
| 203 | MTD_MODE_NORMAL = MTD_OTP_OFF, |
| 204 | MTD_MODE_OTP_FACTORY = MTD_OTP_FACTORY, |
| 205 | MTD_MODE_OTP_USER = MTD_OTP_USER, |
| 206 | MTD_MODE_RAW, |
| 207 | }; |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | #endif /* __MTD_ABI_H__ */ |