]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/mtd/mtd-abi.h
mtd: Update copyright notices
[net-next-2.6.git] / include / mtd / mtd-abi.h
CommitLineData
1da177e4 1/*
a1452a37
DW
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 *
1da177e4
LT
18 */
19
20#ifndef __MTD_ABI_H__
21#define __MTD_ABI_H__
22
ccef7ab5
AB
23#include <linux/types.h>
24
1da177e4 25struct erase_info_user {
ccef7ab5
AB
26 __u32 start;
27 __u32 length;
1da177e4
LT
28};
29
0dc54e9f
KC
30struct erase_info_user64 {
31 __u64 start;
32 __u64 length;
33};
34
1da177e4 35struct mtd_oob_buf {
ccef7ab5
AB
36 __u32 start;
37 __u32 length;
1da177e4
LT
38 unsigned char __user *ptr;
39};
40
aea7cea9
KC
41struct mtd_oob_buf64 {
42 __u64 start;
43 __u32 pad;
44 __u32 length;
45 __u64 usr_ptr;
46};
47
1da177e4 48#define MTD_ABSENT 0
21c8db9e
DW
49#define MTD_RAM 1
50#define MTD_ROM 2
1da177e4
LT
51#define MTD_NORFLASH 3
52#define MTD_NANDFLASH 4
8f15fd55 53#define MTD_DATAFLASH 6
801c135c 54#define MTD_UBIVOLUME 7
1da177e4 55
8ca9ed5d 56#define MTD_WRITEABLE 0x400 /* Device is writeable */
5fa43394 57#define MTD_BIT_WRITEABLE 0x800 /* Single bits can be flipped */
92cbfdcc 58#define MTD_NO_ERASE 0x1000 /* No erase necessary */
e619a75f 59#define MTD_POWERUP_LOCK 0x2000 /* Always locked after reset */
1da177e4
LT
60
61// Some common devices / combinations of capabilities
62#define MTD_CAP_ROM 0
92cbfdcc 63#define MTD_CAP_RAM (MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE)
5fa43394 64#define MTD_CAP_NORFLASH (MTD_WRITEABLE | MTD_BIT_WRITEABLE)
8ca9ed5d 65#define MTD_CAP_NANDFLASH (MTD_WRITEABLE)
1da177e4 66
1da177e4
LT
67/* ECC byte placement */
68#define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended)
69#define MTD_NANDECC_PLACE 1 // Use the given placement in the structure (YAFFS1 legacy mode)
70#define MTD_NANDECC_AUTOPLACE 2 // Use the default placement scheme
71#define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read)
90e260c8 72#define MTD_NANDECC_AUTOPL_USR 4 // Use the given autoplacement scheme rather than using the default
1da177e4 73
31f4233b
NP
74/* OTP mode selection */
75#define MTD_OTP_OFF 0
76#define MTD_OTP_FACTORY 1
77#define MTD_OTP_USER 2
78
1da177e4 79struct mtd_info_user {
ccef7ab5
AB
80 __u8 type;
81 __u32 flags;
82 __u32 size; // Total size of the MTD
83 __u32 erasesize;
84 __u32 writesize;
85 __u32 oobsize; // Amount of OOB data per block (e.g. 16)
64f60710
AB
86 /* The below two fields are obsolete and broken, do not use them
87 * (TODO: remove at some point) */
ccef7ab5
AB
88 __u32 ecctype;
89 __u32 eccsize;
1da177e4
LT
90};
91
92struct region_info_user {
ccef7ab5 93 __u32 offset; /* At which this region starts,
1da177e4 94 * from the beginning of the MTD */
ccef7ab5
AB
95 __u32 erasesize; /* For this region */
96 __u32 numblocks; /* Number of blocks in this region */
97 __u32 regionindex;
1da177e4
LT
98};
99
f77814dd 100struct otp_info {
ccef7ab5
AB
101 __u32 start;
102 __u32 length;
103 __u32 locked;
f77814dd
NP
104};
105
5bd34c09
TG
106#define MEMGETINFO _IOR('M', 1, struct mtd_info_user)
107#define MEMERASE _IOW('M', 2, struct erase_info_user)
108#define MEMWRITEOOB _IOWR('M', 3, struct mtd_oob_buf)
109#define MEMREADOOB _IOWR('M', 4, struct mtd_oob_buf)
110#define MEMLOCK _IOW('M', 5, struct erase_info_user)
111#define MEMUNLOCK _IOW('M', 6, struct erase_info_user)
1da177e4
LT
112#define MEMGETREGIONCOUNT _IOR('M', 7, int)
113#define MEMGETREGIONINFO _IOWR('M', 8, struct region_info_user)
114#define MEMSETOOBSEL _IOW('M', 9, struct nand_oobinfo)
115#define MEMGETOOBSEL _IOR('M', 10, struct nand_oobinfo)
85efde6f
AB
116#define MEMGETBADBLOCK _IOW('M', 11, __kernel_loff_t)
117#define MEMSETBADBLOCK _IOW('M', 12, __kernel_loff_t)
31f4233b
NP
118#define OTPSELECT _IOR('M', 13, int)
119#define OTPGETREGIONCOUNT _IOW('M', 14, int)
120#define OTPGETREGIONINFO _IOW('M', 15, struct otp_info)
5bd34c09
TG
121#define OTPLOCK _IOR('M', 16, struct otp_info)
122#define ECCGETLAYOUT _IOR('M', 17, struct nand_ecclayout)
f1a28c02
TG
123#define ECCGETSTATS _IOR('M', 18, struct mtd_ecc_stats)
124#define MTDFILEMODE _IO('M', 19)
0dc54e9f 125#define MEMERASE64 _IOW('M', 20, struct erase_info_user64)
aea7cea9
KC
126#define MEMWRITEOOB64 _IOWR('M', 21, struct mtd_oob_buf64)
127#define MEMREADOOB64 _IOWR('M', 22, struct mtd_oob_buf64)
9938424f 128#define MEMISLOCKED _IOR('M', 23, struct erase_info_user)
1da177e4 129
5bd34c09
TG
130/*
131 * Obsolete legacy interface. Keep it in order not to break userspace
132 * interfaces
133 */
1da177e4 134struct nand_oobinfo {
ccef7ab5
AB
135 __u32 useecc;
136 __u32 eccbytes;
137 __u32 oobfree[8][2];
138 __u32 eccpos[32];
1da177e4
LT
139};
140
5bd34c09 141struct nand_oobfree {
ccef7ab5
AB
142 __u32 offset;
143 __u32 length;
5bd34c09
TG
144};
145
146#define MTD_MAX_OOBFREE_ENTRIES 8
147/*
148 * ECC layout control structure. Exported to userspace for
149 * diagnosis and to allow creation of raw images
150 */
151struct nand_ecclayout {
ccef7ab5
AB
152 __u32 eccbytes;
153 __u32 eccpos[64];
154 __u32 oobavail;
5bd34c09
TG
155 struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES];
156};
157
f1a28c02 158/**
ea9b6dcc 159 * struct mtd_ecc_stats - error correction stats
f1a28c02
TG
160 *
161 * @corrected: number of corrected bits
162 * @failed: number of uncorrectable errors
163 * @badblocks: number of bad blocks in this partition
164 * @bbtblocks: number of blocks reserved for bad block tables
165 */
166struct mtd_ecc_stats {
ccef7ab5
AB
167 __u32 corrected;
168 __u32 failed;
169 __u32 badblocks;
170 __u32 bbtblocks;
f1a28c02
TG
171};
172
173/*
174 * Read/write file modes for access to MTD
175 */
176enum mtd_file_modes {
177 MTD_MODE_NORMAL = MTD_OTP_OFF,
178 MTD_MODE_OTP_FACTORY = MTD_OTP_FACTORY,
179 MTD_MODE_OTP_USER = MTD_OTP_USER,
180 MTD_MODE_RAW,
181};
182
1da177e4 183#endif /* __MTD_ABI_H__ */