blob: 1a16046b1d97a148afc2609aa647c4888bacef3c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Woodhousea1452a32010-08-08 20:58:20 +01002 * 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 Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
20#ifndef __MTD_ABI_H__
21#define __MTD_ABI_H__
22
Arnd Bergmannccef7ab2009-02-26 00:51:41 +010023#include <linux/types.h>
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025struct erase_info_user {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +010026 __u32 start;
27 __u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
29
Kevin Cernekee0dc54e92009-04-08 22:52:28 -070030struct erase_info_user64 {
31 __u64 start;
32 __u64 length;
33};
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035struct mtd_oob_buf {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +010036 __u32 start;
37 __u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 unsigned char __user *ptr;
39};
40
Kevin Cernekeeaea7cea2009-04-08 22:53:49 -070041struct mtd_oob_buf64 {
42 __u64 start;
43 __u32 pad;
44 __u32 length;
45 __u64 usr_ptr;
46};
47
Brian Norris905c6bc2011-08-30 18:45:39 -070048/*
Brian Norris0612b9d2011-08-30 18:45:40 -070049 * MTD operation modes
Brian Norris905c6bc2011-08-30 18:45:39 -070050 *
Brian Norris0612b9d2011-08-30 18:45:40 -070051 * 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
53 * which are defined by the internal ecclayout
54 * MTD_OPS_RAW: mode to read or write oob and data without doing ECC
Brian Norris905c6bc2011-08-30 18:45:39 -070055 * checking
56 */
57enum {
Brian Norris0612b9d2011-08-30 18:45:40 -070058 MTD_OPS_PLACE_OOB = 0,
59 MTD_OPS_AUTO_OOB = 1,
60 MTD_OPS_RAW = 2,
Brian Norris905c6bc2011-08-30 18:45:39 -070061};
62
Brian Norrise99d8b02011-09-09 09:59:03 -070063struct mtd_write_req {
64 __u64 start;
65 __u64 len;
66 __u64 ooblen;
67 __u64 usr_data;
68 __u64 usr_oob;
69 __u8 mode;
70 __u8 padding[7];
71};
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define MTD_ABSENT 0
David Woodhouse21c8db92006-06-14 21:39:48 +010074#define MTD_RAM 1
75#define MTD_ROM 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define MTD_NORFLASH 3
77#define MTD_NANDFLASH 4
Andrew Victor8f15fd52005-02-09 09:17:45 +000078#define MTD_DATAFLASH 6
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040079#define MTD_UBIVOLUME 7
Rohit Hassan Sathyanarayan17a22822010-09-27 16:02:03 +053080#define MTD_MLCNANDFLASH 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Joern Engel8ca9ed52006-05-22 23:17:23 +020082#define MTD_WRITEABLE 0x400 /* Device is writeable */
Joern Engel5fa43392006-05-22 23:18:29 +020083#define MTD_BIT_WRITEABLE 0x800 /* Single bits can be flipped */
Joern Engel92cbfdc2006-05-30 14:25:24 +020084#define MTD_NO_ERASE 0x1000 /* No erase necessary */
Justin Treone619a752008-01-30 10:25:49 -080085#define MTD_POWERUP_LOCK 0x2000 /* Always locked after reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87// Some common devices / combinations of capabilities
88#define MTD_CAP_ROM 0
Joern Engel92cbfdc2006-05-30 14:25:24 +020089#define MTD_CAP_RAM (MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE)
Joern Engel5fa43392006-05-22 23:18:29 +020090#define MTD_CAP_NORFLASH (MTD_WRITEABLE | MTD_BIT_WRITEABLE)
Joern Engel8ca9ed52006-05-22 23:17:23 +020091#define MTD_CAP_NANDFLASH (MTD_WRITEABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/* ECC byte placement */
94#define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended)
95#define MTD_NANDECC_PLACE 1 // Use the given placement in the structure (YAFFS1 legacy mode)
96#define MTD_NANDECC_AUTOPLACE 2 // Use the default placement scheme
97#define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read)
Thomas Gleixner90e260c2005-05-19 17:10:26 +010098#define MTD_NANDECC_AUTOPL_USR 4 // Use the given autoplacement scheme rather than using the default
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Nicolas Pitre31f42332005-02-08 17:45:55 +0000100/* OTP mode selection */
101#define MTD_OTP_OFF 0
102#define MTD_OTP_FACTORY 1
103#define MTD_OTP_USER 2
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105struct mtd_info_user {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100106 __u8 type;
107 __u32 flags;
108 __u32 size; // Total size of the MTD
109 __u32 erasesize;
110 __u32 writesize;
111 __u32 oobsize; // Amount of OOB data per block (e.g. 16)
Artem Bityutskiy64f60712007-01-30 10:50:43 +0200112 /* The below two fields are obsolete and broken, do not use them
113 * (TODO: remove at some point) */
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100114 __u32 ecctype;
115 __u32 eccsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118struct region_info_user {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100119 __u32 offset; /* At which this region starts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 * from the beginning of the MTD */
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100121 __u32 erasesize; /* For this region */
122 __u32 numblocks; /* Number of blocks in this region */
123 __u32 regionindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
Nicolas Pitref77814d2005-02-08 17:11:19 +0000126struct otp_info {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100127 __u32 start;
128 __u32 length;
129 __u32 locked;
Nicolas Pitref77814d2005-02-08 17:11:19 +0000130};
131
Brian Norris93fad712011-08-23 17:17:34 -0700132/*
133 * Note, the following ioctl existed in the past and was removed:
134 * #define MEMSETOOBSEL _IOW('M', 9, struct nand_oobinfo)
135 * Try to avoid adding a new ioctl with the same ioctl number.
136 */
137
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200138#define MEMGETINFO _IOR('M', 1, struct mtd_info_user)
139#define MEMERASE _IOW('M', 2, struct erase_info_user)
140#define MEMWRITEOOB _IOWR('M', 3, struct mtd_oob_buf)
141#define MEMREADOOB _IOWR('M', 4, struct mtd_oob_buf)
142#define MEMLOCK _IOW('M', 5, struct erase_info_user)
143#define MEMUNLOCK _IOW('M', 6, struct erase_info_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define MEMGETREGIONCOUNT _IOR('M', 7, int)
145#define MEMGETREGIONINFO _IOWR('M', 8, struct region_info_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#define MEMGETOOBSEL _IOR('M', 10, struct nand_oobinfo)
Arnd Bergmann85efde62009-02-26 00:51:39 +0100147#define MEMGETBADBLOCK _IOW('M', 11, __kernel_loff_t)
148#define MEMSETBADBLOCK _IOW('M', 12, __kernel_loff_t)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000149#define OTPSELECT _IOR('M', 13, int)
150#define OTPGETREGIONCOUNT _IOW('M', 14, int)
151#define OTPGETREGIONINFO _IOW('M', 15, struct otp_info)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200152#define OTPLOCK _IOR('M', 16, struct otp_info)
Brian Norriscc26c3c2010-08-24 18:12:00 -0700153#define ECCGETLAYOUT _IOR('M', 17, struct nand_ecclayout_user)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200154#define ECCGETSTATS _IOR('M', 18, struct mtd_ecc_stats)
155#define MTDFILEMODE _IO('M', 19)
Kevin Cernekee0dc54e92009-04-08 22:52:28 -0700156#define MEMERASE64 _IOW('M', 20, struct erase_info_user64)
Kevin Cernekeeaea7cea2009-04-08 22:53:49 -0700157#define MEMWRITEOOB64 _IOWR('M', 21, struct mtd_oob_buf64)
158#define MEMREADOOB64 _IOWR('M', 22, struct mtd_oob_buf64)
Richard Cochran99384242010-06-14 18:10:33 +0200159#define MEMISLOCKED _IOR('M', 23, struct erase_info_user)
Brian Norrise99d8b02011-09-09 09:59:03 -0700160#define MEMWRITE _IOWR('M', 24, struct mtd_write_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200162/*
163 * Obsolete legacy interface. Keep it in order not to break userspace
164 * interfaces
165 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166struct nand_oobinfo {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100167 __u32 useecc;
168 __u32 eccbytes;
169 __u32 oobfree[8][2];
170 __u32 eccpos[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200173struct nand_oobfree {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100174 __u32 offset;
175 __u32 length;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200176};
177
178#define MTD_MAX_OOBFREE_ENTRIES 8
Brian Norris0ceacf32010-09-19 23:57:12 -0700179#define MTD_MAX_ECCPOS_ENTRIES 64
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200180/*
Brian Norris0ceacf32010-09-19 23:57:12 -0700181 * OBSOLETE: ECC layout control structure. Exported to user-space via ioctl
182 * ECCGETLAYOUT for backwards compatbility and should not be mistaken as a
183 * complete set of ECC information. The ioctl truncates the larger internal
184 * structure to retain binary compatibility with the static declaration of the
185 * ioctl. Note that the "MTD_MAX_..._ENTRIES" macros represent the max size of
186 * the user struct, not the MAX size of the internal struct nand_ecclayout.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200187 */
Brian Norriscc26c3c2010-08-24 18:12:00 -0700188struct nand_ecclayout_user {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100189 __u32 eccbytes;
Brian Norris0ceacf32010-09-19 23:57:12 -0700190 __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES];
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100191 __u32 oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200192 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES];
193};
194
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200195/**
Randy Dunlapea9b6dc2006-06-28 21:48:38 -0700196 * struct mtd_ecc_stats - error correction stats
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200197 *
198 * @corrected: number of corrected bits
199 * @failed: number of uncorrectable errors
200 * @badblocks: number of bad blocks in this partition
201 * @bbtblocks: number of blocks reserved for bad block tables
202 */
203struct mtd_ecc_stats {
Arnd Bergmannccef7ab2009-02-26 00:51:41 +0100204 __u32 corrected;
205 __u32 failed;
206 __u32 badblocks;
207 __u32 bbtblocks;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200208};
209
210/*
211 * Read/write file modes for access to MTD
212 */
213enum mtd_file_modes {
Brian Norrisbeb133f2011-08-30 18:45:41 -0700214 MTD_FILE_MODE_NORMAL = MTD_OTP_OFF,
215 MTD_FILE_MODE_OTP_FACTORY = MTD_OTP_FACTORY,
216 MTD_FILE_MODE_OTP_USER = MTD_OTP_USER,
217 MTD_FILE_MODE_RAW,
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200218};
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#endif /* __MTD_ABI_H__ */