mtd-abi.h 12 KB

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