mtd-abi.h 9.4 KB

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