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