blob: b9f4bcb154bf5d073ce80286eb5b315cdf191760 [file] [log] [blame]
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001/*
Heiko Schocherf5895d12014-06-24 10:10:04 +02002 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02003 *
Heiko Schocherf5895d12014-06-24 10:10:04 +02004 * SPDX-License-Identifier: GPL-2.0+
5 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02006 */
7
8#ifndef __MTD_ABI_H__
9#define __MTD_ABI_H__
10
Heiko Schocherf5895d12014-06-24 10:10:04 +020011#define __UBOOT__
12#ifdef __UBOOT__
Mike Frysinger11d1a092012-04-09 13:39:55 +000013#include <linux/compat.h>
William Juul52c07962007-10-31 13:53:06 +010014#endif
15
Kim Phillips632fe9c2012-10-29 13:34:24 +000016#include <linux/compiler.h>
17
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020018struct erase_info_user {
Heiko Schocherf5895d12014-06-24 10:10:04 +020019 __u32 start;
20 __u32 length;
21};
22
23struct erase_info_user64 {
24 __u64 start;
25 __u64 length;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020026};
27
28struct mtd_oob_buf {
Heiko Schocherf5895d12014-06-24 10:10:04 +020029 __u32 start;
30 __u32 length;
William Juul52c07962007-10-31 13:53:06 +010031 unsigned char __user *ptr;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020032};
33
Heiko Schocherf5895d12014-06-24 10:10:04 +020034struct mtd_oob_buf64 {
35 __u64 start;
36 __u32 pad;
37 __u32 length;
38 __u64 usr_ptr;
39};
40
41/**
Sergey Lapin3a38a552013-01-14 03:46:50 +000042 * 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 */
54enum {
55 MTD_OPS_PLACE_OOB = 0,
56 MTD_OPS_AUTO_OOB = 1,
57 MTD_OPS_RAW = 2,
58};
59
Heiko Schocherf5895d12014-06-24 10:10:04 +020060/**
61 * struct mtd_write_req - data structure for requesting a write operation
62 *
63 * @start: start address
64 * @len: length of data buffer
65 * @ooblen: length of OOB buffer
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 */
76struct 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
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020086#define MTD_ABSENT 0
87#define MTD_RAM 1
88#define MTD_ROM 2
89#define MTD_NORFLASH 3
Heiko Schocherf5895d12014-06-24 10:10:04 +020090#define MTD_NANDFLASH 4 /* SLC NAND */
William Juul52c07962007-10-31 13:53:06 +010091#define MTD_DATAFLASH 6
92#define MTD_UBIVOLUME 7
Heiko Schocherf5895d12014-06-24 10:10:04 +020093#define MTD_MLCNANDFLASH 8 /* MLC NAND (including TLC) */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020094
William Juul52c07962007-10-31 13:53:06 +010095#define MTD_WRITEABLE 0x400 /* Device is writeable */
96#define MTD_BIT_WRITEABLE 0x800 /* Single bits can be flipped */
97#define MTD_NO_ERASE 0x1000 /* No erase necessary */
Heiko Schocherf5895d12014-06-24 10:10:04 +020098#define MTD_POWERUP_LOCK 0x2000 /* Always locked after reset */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020099
Wolfgang Denk74e0dde2008-08-14 14:41:06 +0200100/* Some common devices / combinations of capabilities */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200101#define MTD_CAP_ROM 0
William Juul52c07962007-10-31 13:53:06 +0100102#define MTD_CAP_RAM (MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE)
103#define MTD_CAP_NORFLASH (MTD_WRITEABLE | MTD_BIT_WRITEABLE)
104#define MTD_CAP_NANDFLASH (MTD_WRITEABLE)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200105
Heiko Schocherf5895d12014-06-24 10:10:04 +0200106/* Obsolete ECC byte placement modes (used with obsolete MEMGETOOBSEL) */
107#define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended)
108#define MTD_NANDECC_PLACE 1 // Use the given placement in the structure (YAFFS1 legacy mode)
109#define MTD_NANDECC_AUTOPLACE 2 // Use the default placement scheme
110#define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read)
111#define MTD_NANDECC_AUTOPL_USR 4 // Use the given autoplacement scheme rather than using the default
William Juul52c07962007-10-31 13:53:06 +0100112
113/* OTP mode selection */
114#define MTD_OTP_OFF 0
115#define MTD_OTP_FACTORY 1
116#define MTD_OTP_USER 2
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200117
118struct mtd_info_user {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200119 __u8 type;
120 __u32 flags;
121 __u32 size; /* Total size of the MTD */
122 __u32 erasesize;
123 __u32 writesize;
124 __u32 oobsize; /* Amount of OOB data per block (e.g. 16) */
125 __u64 padding; /* Old obsolete field; do not use */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200126};
127
128struct region_info_user {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200129 __u32 offset; /* At which this region starts,
130 * from the beginning of the MTD */
131 __u32 erasesize; /* For this region */
132 __u32 numblocks; /* Number of blocks in this region */
133 __u32 regionindex;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200134};
135
William Juul52c07962007-10-31 13:53:06 +0100136struct otp_info {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200137 __u32 start;
138 __u32 length;
139 __u32 locked;
William Juul52c07962007-10-31 13:53:06 +0100140};
141
Heiko Schocherf5895d12014-06-24 10:10:04 +0200142/*
143 * Note, the following ioctl existed in the past and was removed:
144 * #define MEMSETOOBSEL _IOW('M', 9, struct nand_oobinfo)
145 * Try to avoid adding a new ioctl with the same ioctl number.
146 */
147
Sergey Lapin3a38a552013-01-14 03:46:50 +0000148/* Get basic MTD characteristics info (better to use sysfs) */
William Juul52c07962007-10-31 13:53:06 +0100149#define MEMGETINFO _IOR('M', 1, struct mtd_info_user)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000150/* Erase segment of MTD */
William Juul52c07962007-10-31 13:53:06 +0100151#define MEMERASE _IOW('M', 2, struct erase_info_user)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000152/* Write out-of-band data from MTD */
William Juul52c07962007-10-31 13:53:06 +0100153#define MEMWRITEOOB _IOWR('M', 3, struct mtd_oob_buf)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000154/* Read out-of-band data from MTD */
William Juul52c07962007-10-31 13:53:06 +0100155#define MEMREADOOB _IOWR('M', 4, struct mtd_oob_buf)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000156/* Lock a chip (for MTD that supports it) */
William Juul52c07962007-10-31 13:53:06 +0100157#define MEMLOCK _IOW('M', 5, struct erase_info_user)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000158/* Unlock a chip (for MTD that supports it) */
William Juul52c07962007-10-31 13:53:06 +0100159#define MEMUNLOCK _IOW('M', 6, struct erase_info_user)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000160/* Get the number of different erase regions */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200161#define MEMGETREGIONCOUNT _IOR('M', 7, int)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000162/* Get information about the erase region for a specific index */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200163#define MEMGETREGIONINFO _IOWR('M', 8, struct region_info_user)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000164/* Get info about OOB modes (e.g., RAW, PLACE, AUTO) - legacy interface */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200165#define MEMGETOOBSEL _IOR('M', 10, struct nand_oobinfo)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000166/* Check if an eraseblock is bad */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200167#define MEMGETBADBLOCK _IOW('M', 11, __kernel_loff_t)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000168/* Mark an eraseblock as bad */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200169#define MEMSETBADBLOCK _IOW('M', 12, __kernel_loff_t)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000170/* Set OTP (One-Time Programmable) mode (factory vs. user) */
William Juul52c07962007-10-31 13:53:06 +0100171#define OTPSELECT _IOR('M', 13, int)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000172/* Get number of OTP (One-Time Programmable) regions */
William Juul52c07962007-10-31 13:53:06 +0100173#define OTPGETREGIONCOUNT _IOW('M', 14, int)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000174/* Get all OTP (One-Time Programmable) info about MTD */
William Juul52c07962007-10-31 13:53:06 +0100175#define OTPGETREGIONINFO _IOW('M', 15, struct otp_info)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000176/* Lock a given range of user data (must be in mode %MTD_FILE_MODE_OTP_USER) */
William Juul52c07962007-10-31 13:53:06 +0100177#define OTPLOCK _IOR('M', 16, struct otp_info)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000178/* Get ECC layout (deprecated) */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200179#define ECCGETLAYOUT _IOR('M', 17, struct nand_ecclayout_user)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000180/* Get statistics about corrected/uncorrected errors */
William Juul52c07962007-10-31 13:53:06 +0100181#define ECCGETSTATS _IOR('M', 18, struct mtd_ecc_stats)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000182/* Set MTD mode on a per-file-descriptor basis (see "MTD file modes") */
William Juul52c07962007-10-31 13:53:06 +0100183#define MTDFILEMODE _IO('M', 19)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200184/* Erase segment of MTD (supports 64-bit address) */
185#define MEMERASE64 _IOW('M', 20, struct erase_info_user64)
186/* Write data to OOB (64-bit version) */
187#define MEMWRITEOOB64 _IOWR('M', 21, struct mtd_oob_buf64)
188/* Read data from OOB (64-bit version) */
189#define MEMREADOOB64 _IOWR('M', 22, struct mtd_oob_buf64)
190/* Check if chip is locked (for MTD that supports it) */
191#define MEMISLOCKED _IOR('M', 23, struct erase_info_user)
192/*
193 * Most generic write interface; can write in-band and/or out-of-band in various
194 * modes (see "struct mtd_write_req"). This ioctl is not supported for flashes
195 * without OOB, e.g., NOR flash.
196 */
197#define MEMWRITE _IOWR('M', 24, struct mtd_write_req)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200198
William Juul52c07962007-10-31 13:53:06 +0100199/*
200 * Obsolete legacy interface. Keep it in order not to break userspace
201 * interfaces
202 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200203struct nand_oobinfo {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200204 __u32 useecc;
205 __u32 eccbytes;
206 __u32 oobfree[8][2];
207 __u32 eccpos[32];
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200208};
209
William Juul52c07962007-10-31 13:53:06 +0100210struct nand_oobfree {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200211 __u32 offset;
212 __u32 length;
William Juul52c07962007-10-31 13:53:06 +0100213};
214
Heiko Schocherf5895d12014-06-24 10:10:04 +0200215#define MTD_MAX_OOBFREE_ENTRIES 8
216#define MTD_MAX_ECCPOS_ENTRIES 64
217/*
218 * OBSOLETE: ECC layout control structure. Exported to user-space via ioctl
219 * ECCGETLAYOUT for backwards compatbility and should not be mistaken as a
220 * complete set of ECC information. The ioctl truncates the larger internal
221 * structure to retain binary compatibility with the static declaration of the
222 * ioctl. Note that the "MTD_MAX_..._ENTRIES" macros represent the max size of
223 * the user struct, not the MAX size of the internal struct nand_ecclayout.
224 */
225struct nand_ecclayout_user {
226 __u32 eccbytes;
227 __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES];
228 __u32 oobavail;
229 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES];
230};
231
William Juul52c07962007-10-31 13:53:06 +0100232/**
233 * struct mtd_ecc_stats - error correction stats
234 *
235 * @corrected: number of corrected bits
236 * @failed: number of uncorrectable errors
237 * @badblocks: number of bad blocks in this partition
238 * @bbtblocks: number of blocks reserved for bad block tables
239 */
240struct mtd_ecc_stats {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200241 __u32 corrected;
242 __u32 failed;
243 __u32 badblocks;
244 __u32 bbtblocks;
William Juul52c07962007-10-31 13:53:06 +0100245};
246
247/*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000248 * MTD file modes - for read/write access to MTD
249 *
250 * @MTD_FILE_MODE_NORMAL: OTP disabled, ECC enabled
251 * @MTD_FILE_MODE_OTP_FACTORY: OTP enabled in factory mode
252 * @MTD_FILE_MODE_OTP_USER: OTP enabled in user mode
253 * @MTD_FILE_MODE_RAW: OTP disabled, ECC disabled
254 *
255 * These modes can be set via ioctl(MTDFILEMODE). The mode mode will be retained
256 * separately for each open file descriptor.
257 *
258 * Note: %MTD_FILE_MODE_RAW provides the same functionality as %MTD_OPS_RAW -
259 * raw access to the flash, without error correction or autoplacement schemes.
260 * Wherever possible, the MTD_OPS_* mode will override the MTD_FILE_MODE_* mode
261 * (e.g., when using ioctl(MEMWRITE)), but in some cases, the MTD_FILE_MODE is
262 * used out of necessity (e.g., `write()', ioctl(MEMWRITEOOB64)).
William Juul52c07962007-10-31 13:53:06 +0100263 */
264enum mtd_file_modes {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200265 MTD_FILE_MODE_NORMAL = MTD_OTP_OFF,
266 MTD_FILE_MODE_OTP_FACTORY = MTD_OTP_FACTORY,
267 MTD_FILE_MODE_OTP_USER = MTD_OTP_USER,
268 MTD_FILE_MODE_RAW,
William Juul52c07962007-10-31 13:53:06 +0100269};
270
Heiko Schocherf5895d12014-06-24 10:10:04 +0200271static inline int mtd_type_is_nand_user(const struct mtd_info_user *mtd)
272{
273 return mtd->type == MTD_NANDFLASH || mtd->type == MTD_MLCNANDFLASH;
274}
275
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200276#endif /* __MTD_ABI_H__ */