| 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 | 4180f24 | 2011-08-30 18:45:44 -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 | 4180f24 | 2011-08-30 18:45:44 -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 | 
| Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 53 | *			which are defined by the internal ecclayout | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 54 | * @MTD_OPS_RAW:	data are transferred as-is, with no error correction; | 
|  | 55 | *			this mode implies %MTD_OPS_PLACE_OOB | 
|  | 56 | * | 
|  | 57 | * These modes can be passed to ioctl(MEMWRITE) and are also used internally. | 
|  | 58 | * See notes on "MTD file modes" for discussion on %MTD_OPS_RAW vs. | 
|  | 59 | * %MTD_FILE_MODE_RAW. | 
| Brian Norris | 905c6bc | 2011-08-30 18:45:39 -0700 | [diff] [blame] | 60 | */ | 
|  | 61 | enum { | 
| Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 62 | MTD_OPS_PLACE_OOB = 0, | 
|  | 63 | MTD_OPS_AUTO_OOB = 1, | 
|  | 64 | MTD_OPS_RAW = 2, | 
| Brian Norris | 905c6bc | 2011-08-30 18:45:39 -0700 | [diff] [blame] | 65 | }; | 
|  | 66 |  | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 67 | /** | 
|  | 68 | * struct mtd_write_req - data structure for requesting a write operation | 
|  | 69 | * | 
|  | 70 | * @start:	start address | 
|  | 71 | * @len:	length of data buffer | 
|  | 72 | * @ooblen:	length of OOB buffer | 
|  | 73 | * @usr_data:	user-provided data buffer | 
|  | 74 | * @usr_oob:	user-provided OOB buffer | 
|  | 75 | * @mode:	MTD mode (see "MTD operation modes") | 
|  | 76 | * @padding:	reserved, must be set to 0 | 
|  | 77 | * | 
|  | 78 | * This structure supports ioctl(MEMWRITE) operations, allowing data and/or OOB | 
|  | 79 | * writes in various modes. To write to OOB-only, set @usr_data == NULL, and to | 
|  | 80 | * write data-only, set @usr_oob == NULL. However, setting both @usr_data and | 
|  | 81 | * @usr_oob to NULL is not allowed. | 
|  | 82 | */ | 
| Brian Norris | e99d8b0 | 2011-09-09 09:59:03 -0700 | [diff] [blame] | 83 | struct mtd_write_req { | 
|  | 84 | __u64 start; | 
|  | 85 | __u64 len; | 
|  | 86 | __u64 ooblen; | 
|  | 87 | __u64 usr_data; | 
|  | 88 | __u64 usr_oob; | 
|  | 89 | __u8 mode; | 
|  | 90 | __u8 padding[7]; | 
|  | 91 | }; | 
|  | 92 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | #define MTD_ABSENT		0 | 
| David Woodhouse | 21c8db9 | 2006-06-14 21:39:48 +0100 | [diff] [blame] | 94 | #define MTD_RAM			1 | 
|  | 95 | #define MTD_ROM			2 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | #define MTD_NORFLASH		3 | 
|  | 97 | #define MTD_NANDFLASH		4 | 
| Andrew Victor | 8f15fd5 | 2005-02-09 09:17:45 +0000 | [diff] [blame] | 98 | #define MTD_DATAFLASH		6 | 
| Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 99 | #define MTD_UBIVOLUME		7 | 
| Rohit Hassan Sathyanarayan | 17a2282 | 2010-09-27 16:02:03 +0530 | [diff] [blame] | 100 | #define MTD_MLCNANDFLASH	8 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 |  | 
| Joern Engel | 8ca9ed5 | 2006-05-22 23:17:23 +0200 | [diff] [blame] | 102 | #define MTD_WRITEABLE		0x400	/* Device is writeable */ | 
| Joern Engel | 5fa4339 | 2006-05-22 23:18:29 +0200 | [diff] [blame] | 103 | #define MTD_BIT_WRITEABLE	0x800	/* Single bits can be flipped */ | 
| Joern Engel | 92cbfdc | 2006-05-30 14:25:24 +0200 | [diff] [blame] | 104 | #define MTD_NO_ERASE		0x1000	/* No erase necessary */ | 
| Justin Treon | e619a75 | 2008-01-30 10:25:49 -0800 | [diff] [blame] | 105 | #define MTD_POWERUP_LOCK	0x2000	/* Always locked after reset */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 |  | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 107 | /* Some common devices / combinations of capabilities */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #define MTD_CAP_ROM		0 | 
| Joern Engel | 92cbfdc | 2006-05-30 14:25:24 +0200 | [diff] [blame] | 109 | #define MTD_CAP_RAM		(MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE) | 
| Joern Engel | 5fa4339 | 2006-05-22 23:18:29 +0200 | [diff] [blame] | 110 | #define MTD_CAP_NORFLASH	(MTD_WRITEABLE | MTD_BIT_WRITEABLE) | 
| Joern Engel | 8ca9ed5 | 2006-05-22 23:17:23 +0200 | [diff] [blame] | 111 | #define MTD_CAP_NANDFLASH	(MTD_WRITEABLE) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 |  | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 113 | /* Obsolete ECC byte placement modes (used with obsolete MEMGETOOBSEL) */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | #define MTD_NANDECC_OFF		0	// Switch off ECC (Not recommended) | 
|  | 115 | #define MTD_NANDECC_PLACE	1	// Use the given placement in the structure (YAFFS1 legacy mode) | 
|  | 116 | #define MTD_NANDECC_AUTOPLACE	2	// Use the default placement scheme | 
|  | 117 | #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] | 118 | #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] | 119 |  | 
| Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 120 | /* OTP mode selection */ | 
|  | 121 | #define MTD_OTP_OFF		0 | 
|  | 122 | #define MTD_OTP_FACTORY		1 | 
|  | 123 | #define MTD_OTP_USER		2 | 
|  | 124 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | struct mtd_info_user { | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 126 | __u8 type; | 
|  | 127 | __u32 flags; | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 128 | __u32 size;	/* Total size of the MTD */ | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 129 | __u32 erasesize; | 
|  | 130 | __u32 writesize; | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 131 | __u32 oobsize;	/* Amount of OOB data per block (e.g. 16) */ | 
| Brian Norris | 19fb434 | 2011-08-30 18:45:46 -0700 | [diff] [blame] | 132 | __u64 padding;	/* Old obsolete field; do not use */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | }; | 
|  | 134 |  | 
|  | 135 | struct region_info_user { | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 136 | __u32 offset;		/* At which this region starts, | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 137 | * from the beginning of the MTD */ | 
|  | 138 | __u32 erasesize;	/* For this region */ | 
|  | 139 | __u32 numblocks;	/* Number of blocks in this region */ | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 140 | __u32 regionindex; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | }; | 
|  | 142 |  | 
| Nicolas Pitre | f77814d | 2005-02-08 17:11:19 +0000 | [diff] [blame] | 143 | struct otp_info { | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 144 | __u32 start; | 
|  | 145 | __u32 length; | 
|  | 146 | __u32 locked; | 
| Nicolas Pitre | f77814d | 2005-02-08 17:11:19 +0000 | [diff] [blame] | 147 | }; | 
|  | 148 |  | 
| Brian Norris | 93fad71 | 2011-08-23 17:17:34 -0700 | [diff] [blame] | 149 | /* | 
|  | 150 | * Note, the following ioctl existed in the past and was removed: | 
|  | 151 | * #define MEMSETOOBSEL           _IOW('M', 9, struct nand_oobinfo) | 
|  | 152 | * Try to avoid adding a new ioctl with the same ioctl number. | 
|  | 153 | */ | 
|  | 154 |  | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 155 | /* Get basic MTD characteristics info (better to use sysfs) */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 156 | #define MEMGETINFO		_IOR('M', 1, struct mtd_info_user) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 157 | /* Erase segment of MTD */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 158 | #define MEMERASE		_IOW('M', 2, struct erase_info_user) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 159 | /* Write out-of-band data from MTD */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 160 | #define MEMWRITEOOB		_IOWR('M', 3, struct mtd_oob_buf) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 161 | /* Read out-of-band data from MTD */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 162 | #define MEMREADOOB		_IOWR('M', 4, struct mtd_oob_buf) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 163 | /* Lock a chip (for MTD that supports it) */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 164 | #define MEMLOCK			_IOW('M', 5, struct erase_info_user) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 165 | /* Unlock a chip (for MTD that supports it) */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 166 | #define MEMUNLOCK		_IOW('M', 6, struct erase_info_user) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 167 | /* Get the number of different erase regions */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | #define MEMGETREGIONCOUNT	_IOR('M', 7, int) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 169 | /* Get information about the erase region for a specific index */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | #define MEMGETREGIONINFO	_IOWR('M', 8, struct region_info_user) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 171 | /* Get info about OOB modes (e.g., RAW, PLACE, AUTO) - legacy interface */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | #define MEMGETOOBSEL		_IOR('M', 10, struct nand_oobinfo) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 173 | /* Check if an eraseblock is bad */ | 
| Arnd Bergmann | 85efde6 | 2009-02-26 00:51:39 +0100 | [diff] [blame] | 174 | #define MEMGETBADBLOCK		_IOW('M', 11, __kernel_loff_t) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 175 | /* Mark an eraseblock as bad */ | 
| Arnd Bergmann | 85efde6 | 2009-02-26 00:51:39 +0100 | [diff] [blame] | 176 | #define MEMSETBADBLOCK		_IOW('M', 12, __kernel_loff_t) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 177 | /* Set OTP (One-Time Programmable) mode (factory vs. user) */ | 
| Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 178 | #define OTPSELECT		_IOR('M', 13, int) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 179 | /* Get number of OTP (One-Time Programmable) regions */ | 
| Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 180 | #define OTPGETREGIONCOUNT	_IOW('M', 14, int) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 181 | /* Get all OTP (One-Time Programmable) info about MTD */ | 
| Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 182 | #define OTPGETREGIONINFO	_IOW('M', 15, struct otp_info) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 183 | /* Lock a given range of user data (must be in mode %MTD_FILE_MODE_OTP_USER) */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 184 | #define OTPLOCK			_IOR('M', 16, struct otp_info) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 185 | /* Get ECC layout (deprecated) */ | 
| Brian Norris | cc26c3c | 2010-08-24 18:12:00 -0700 | [diff] [blame] | 186 | #define ECCGETLAYOUT		_IOR('M', 17, struct nand_ecclayout_user) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 187 | /* Get statistics about corrected/uncorrected errors */ | 
| Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 188 | #define ECCGETSTATS		_IOR('M', 18, struct mtd_ecc_stats) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 189 | /* Set MTD mode on a per-file-descriptor basis (see "MTD file modes") */ | 
| Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 190 | #define MTDFILEMODE		_IO('M', 19) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 191 | /* Erase segment of MTD (supports 64-bit address) */ | 
| Kevin Cernekee | 0dc54e9 | 2009-04-08 22:52:28 -0700 | [diff] [blame] | 192 | #define MEMERASE64		_IOW('M', 20, struct erase_info_user64) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 193 | /* Write data to OOB (64-bit version) */ | 
| Kevin Cernekee | aea7cea | 2009-04-08 22:53:49 -0700 | [diff] [blame] | 194 | #define MEMWRITEOOB64		_IOWR('M', 21, struct mtd_oob_buf64) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 195 | /* Read data from OOB (64-bit version) */ | 
| Kevin Cernekee | aea7cea | 2009-04-08 22:53:49 -0700 | [diff] [blame] | 196 | #define MEMREADOOB64		_IOWR('M', 22, struct mtd_oob_buf64) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 197 | /* Check if chip is locked (for MTD that supports it) */ | 
| Richard Cochran | 9938424 | 2010-06-14 18:10:33 +0200 | [diff] [blame] | 198 | #define MEMISLOCKED		_IOR('M', 23, struct erase_info_user) | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 199 | /* | 
|  | 200 | * Most generic write interface; can write in-band and/or out-of-band in various | 
| Artem Bityutskiy | 2b00668 | 2011-12-12 23:24:59 +0200 | [diff] [blame] | 201 | * modes (see "struct mtd_write_req"). This ioctl is not supported for flashes | 
|  | 202 | * without OOB, e.g., NOR flash. | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 203 | */ | 
| Brian Norris | e99d8b0 | 2011-09-09 09:59:03 -0700 | [diff] [blame] | 204 | #define MEMWRITE		_IOWR('M', 24, struct mtd_write_req) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 |  | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 206 | /* | 
|  | 207 | * Obsolete legacy interface. Keep it in order not to break userspace | 
|  | 208 | * interfaces | 
|  | 209 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | struct nand_oobinfo { | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 211 | __u32 useecc; | 
|  | 212 | __u32 eccbytes; | 
|  | 213 | __u32 oobfree[8][2]; | 
|  | 214 | __u32 eccpos[32]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | }; | 
|  | 216 |  | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 217 | struct nand_oobfree { | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 218 | __u32 offset; | 
|  | 219 | __u32 length; | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 220 | }; | 
|  | 221 |  | 
|  | 222 | #define MTD_MAX_OOBFREE_ENTRIES	8 | 
| Brian Norris | 0ceacf3 | 2010-09-19 23:57:12 -0700 | [diff] [blame] | 223 | #define MTD_MAX_ECCPOS_ENTRIES	64 | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 224 | /* | 
| Brian Norris | 0ceacf3 | 2010-09-19 23:57:12 -0700 | [diff] [blame] | 225 | * OBSOLETE: ECC layout control structure. Exported to user-space via ioctl | 
|  | 226 | * ECCGETLAYOUT for backwards compatbility and should not be mistaken as a | 
|  | 227 | * complete set of ECC information. The ioctl truncates the larger internal | 
|  | 228 | * structure to retain binary compatibility with the static declaration of the | 
|  | 229 | * ioctl. Note that the "MTD_MAX_..._ENTRIES" macros represent the max size of | 
|  | 230 | * 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] | 231 | */ | 
| Brian Norris | cc26c3c | 2010-08-24 18:12:00 -0700 | [diff] [blame] | 232 | struct nand_ecclayout_user { | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 233 | __u32 eccbytes; | 
| Brian Norris | 0ceacf3 | 2010-09-19 23:57:12 -0700 | [diff] [blame] | 234 | __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES]; | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 235 | __u32 oobavail; | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 236 | struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES]; | 
|  | 237 | }; | 
|  | 238 |  | 
| Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 239 | /** | 
| Randy Dunlap | ea9b6dc | 2006-06-28 21:48:38 -0700 | [diff] [blame] | 240 | * struct mtd_ecc_stats - error correction stats | 
| Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 241 | * | 
|  | 242 | * @corrected:	number of corrected bits | 
|  | 243 | * @failed:	number of uncorrectable errors | 
|  | 244 | * @badblocks:	number of bad blocks in this partition | 
|  | 245 | * @bbtblocks:	number of blocks reserved for bad block tables | 
|  | 246 | */ | 
|  | 247 | struct mtd_ecc_stats { | 
| Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 248 | __u32 corrected; | 
|  | 249 | __u32 failed; | 
|  | 250 | __u32 badblocks; | 
|  | 251 | __u32 bbtblocks; | 
| Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 252 | }; | 
|  | 253 |  | 
|  | 254 | /* | 
| Brian Norris | 4180f24 | 2011-08-30 18:45:44 -0700 | [diff] [blame] | 255 | * MTD file modes - for read/write access to MTD | 
|  | 256 | * | 
|  | 257 | * @MTD_FILE_MODE_NORMAL:	OTP disabled, ECC enabled | 
|  | 258 | * @MTD_FILE_MODE_OTP_FACTORY:	OTP enabled in factory mode | 
|  | 259 | * @MTD_FILE_MODE_OTP_USER:	OTP enabled in user mode | 
|  | 260 | * @MTD_FILE_MODE_RAW:		OTP disabled, ECC disabled | 
|  | 261 | * | 
|  | 262 | * These modes can be set via ioctl(MTDFILEMODE). The mode mode will be retained | 
|  | 263 | * separately for each open file descriptor. | 
|  | 264 | * | 
|  | 265 | * Note: %MTD_FILE_MODE_RAW provides the same functionality as %MTD_OPS_RAW - | 
|  | 266 | * raw access to the flash, without error correction or autoplacement schemes. | 
|  | 267 | * Wherever possible, the MTD_OPS_* mode will override the MTD_FILE_MODE_* mode | 
|  | 268 | * (e.g., when using ioctl(MEMWRITE)), but in some cases, the MTD_FILE_MODE is | 
|  | 269 | * used out of necessity (e.g., `write()', ioctl(MEMWRITEOOB64)). | 
| Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 270 | */ | 
|  | 271 | enum mtd_file_modes { | 
| Brian Norris | beb133f | 2011-08-30 18:45:41 -0700 | [diff] [blame] | 272 | MTD_FILE_MODE_NORMAL = MTD_OTP_OFF, | 
|  | 273 | MTD_FILE_MODE_OTP_FACTORY = MTD_OTP_FACTORY, | 
|  | 274 | MTD_FILE_MODE_OTP_USER = MTD_OTP_USER, | 
|  | 275 | MTD_FILE_MODE_RAW, | 
| Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 276 | }; | 
|  | 277 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | #endif /* __MTD_ABI_H__ */ |