logfs: do not use 'mtd->block_isbad' directly
[deliverable/linux.git] / drivers / mtd / mtdchar.c
CommitLineData
1da177e4 1/*
a1452a37
DW
2 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
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
1da177e4
LT
17 *
18 */
19
15fdc52f
TG
20#include <linux/device.h>
21#include <linux/fs.h>
0c1eafdb 22#include <linux/mm.h>
9c74034f 23#include <linux/err.h>
15fdc52f 24#include <linux/init.h>
1da177e4
LT
25#include <linux/kernel.h>
26#include <linux/module.h>
15fdc52f
TG
27#include <linux/slab.h>
28#include <linux/sched.h>
5aa82940 29#include <linux/mutex.h>
402d3265 30#include <linux/backing-dev.h>
97718540 31#include <linux/compat.h>
cd874237 32#include <linux/mount.h>
d0f7959e 33#include <linux/blkpg.h>
1da177e4 34#include <linux/mtd/mtd.h>
d0f7959e 35#include <linux/mtd/partitions.h>
dd02b67d 36#include <linux/mtd/map.h>
1da177e4 37
15fdc52f 38#include <asm/uaccess.h>
9bc7b387 39
cd874237 40#define MTD_INODE_FS_MAGIC 0x11307854
5aa82940 41static DEFINE_MUTEX(mtd_mutex);
cd874237 42static struct vfsmount *mtd_inode_mnt __read_mostly;
1da177e4 43
045e9a5d 44/*
f1a28c02 45 * Data structure to hold the pointer to the mtd device as well
92394b5c 46 * as mode information of various use cases.
045e9a5d 47 */
f1a28c02
TG
48struct mtd_file_info {
49 struct mtd_info *mtd;
cd874237 50 struct inode *ino;
f1a28c02
TG
51 enum mtd_file_modes mode;
52};
31f4233b 53
969e57ad 54static loff_t mtdchar_lseek(struct file *file, loff_t offset, int orig)
1da177e4 55{
f1a28c02
TG
56 struct mtd_file_info *mfi = file->private_data;
57 struct mtd_info *mtd = mfi->mtd;
1da177e4
LT
58
59 switch (orig) {
ea59830d 60 case SEEK_SET:
1da177e4 61 break;
ea59830d 62 case SEEK_CUR:
8b491d75 63 offset += file->f_pos;
1da177e4 64 break;
ea59830d 65 case SEEK_END:
8b491d75 66 offset += mtd->size;
1da177e4
LT
67 break;
68 default:
69 return -EINVAL;
70 }
71
1887f517 72 if (offset >= 0 && offset <= mtd->size)
8b491d75 73 return file->f_pos = offset;
1da177e4 74
8b491d75 75 return -EINVAL;
1da177e4
LT
76}
77
78
79
969e57ad 80static int mtdchar_open(struct inode *inode, struct file *file)
1da177e4
LT
81{
82 int minor = iminor(inode);
83 int devnum = minor >> 1;
6071239e 84 int ret = 0;
1da177e4 85 struct mtd_info *mtd;
f1a28c02 86 struct mtd_file_info *mfi;
cd874237 87 struct inode *mtd_ino;
1da177e4 88
289c0522 89 pr_debug("MTD_open\n");
1da177e4 90
1da177e4 91 /* You can't open the RO devices RW */
aeb5d727 92 if ((file->f_mode & FMODE_WRITE) && (minor & 1))
1da177e4
LT
93 return -EACCES;
94
5aa82940 95 mutex_lock(&mtd_mutex);
1da177e4 96 mtd = get_mtd_device(NULL, devnum);
97894cda 97
6071239e
JC
98 if (IS_ERR(mtd)) {
99 ret = PTR_ERR(mtd);
100 goto out;
101 }
97894cda 102
402d3265 103 if (mtd->type == MTD_ABSENT) {
1da177e4 104 put_mtd_device(mtd);
6071239e
JC
105 ret = -ENODEV;
106 goto out;
1da177e4
LT
107 }
108
cd874237
KS
109 mtd_ino = iget_locked(mtd_inode_mnt->mnt_sb, devnum);
110 if (!mtd_ino) {
111 put_mtd_device(mtd);
112 ret = -ENOMEM;
113 goto out;
114 }
115 if (mtd_ino->i_state & I_NEW) {
116 mtd_ino->i_private = mtd;
117 mtd_ino->i_mode = S_IFCHR;
118 mtd_ino->i_data.backing_dev_info = mtd->backing_dev_info;
119 unlock_new_inode(mtd_ino);
120 }
121 file->f_mapping = mtd_ino->i_mapping;
402d3265 122
1da177e4 123 /* You can't open it RW if it's not a writeable device */
aeb5d727 124 if ((file->f_mode & FMODE_WRITE) && !(mtd->flags & MTD_WRITEABLE)) {
cd874237 125 iput(mtd_ino);
1da177e4 126 put_mtd_device(mtd);
6071239e
JC
127 ret = -EACCES;
128 goto out;
1da177e4 129 }
97894cda 130
f1a28c02
TG
131 mfi = kzalloc(sizeof(*mfi), GFP_KERNEL);
132 if (!mfi) {
cd874237 133 iput(mtd_ino);
f1a28c02 134 put_mtd_device(mtd);
6071239e
JC
135 ret = -ENOMEM;
136 goto out;
f1a28c02 137 }
cd874237 138 mfi->ino = mtd_ino;
f1a28c02
TG
139 mfi->mtd = mtd;
140 file->private_data = mfi;
141
6071239e 142out:
5aa82940 143 mutex_unlock(&mtd_mutex);
6071239e 144 return ret;
969e57ad 145} /* mtdchar_open */
1da177e4
LT
146
147/*====================================================================*/
148
969e57ad 149static int mtdchar_close(struct inode *inode, struct file *file)
1da177e4 150{
f1a28c02
TG
151 struct mtd_file_info *mfi = file->private_data;
152 struct mtd_info *mtd = mfi->mtd;
1da177e4 153
289c0522 154 pr_debug("MTD_close\n");
1da177e4 155
7eafaed5 156 /* Only sync if opened RW */
327cf292 157 if ((file->f_mode & FMODE_WRITE))
85f2f2a8 158 mtd_sync(mtd);
97894cda 159
cd874237
KS
160 iput(mfi->ino);
161
1da177e4 162 put_mtd_device(mtd);
f1a28c02
TG
163 file->private_data = NULL;
164 kfree(mfi);
1da177e4
LT
165
166 return 0;
969e57ad 167} /* mtdchar_close */
1da177e4 168
3e45cf5e
GE
169/* Back in June 2001, dwmw2 wrote:
170 *
171 * FIXME: This _really_ needs to die. In 2.5, we should lock the
172 * userspace buffer down and use it directly with readv/writev.
173 *
174 * The implementation below, using mtd_kmalloc_up_to, mitigates
175 * allocation failures when the system is under low-memory situations
176 * or if memory is highly fragmented at the cost of reducing the
177 * performance of the requested transfer due to a smaller buffer size.
178 *
179 * A more complex but more memory-efficient implementation based on
180 * get_user_pages and iovecs to cover extents of those pages is a
181 * longer-term goal, as intimated by dwmw2 above. However, for the
182 * write case, this requires yet more complex head and tail transfer
183 * handling when those head and tail offsets and sizes are such that
184 * alignment requirements are not met in the NAND subdriver.
185 */
1da177e4 186
969e57ad
AB
187static ssize_t mtdchar_read(struct file *file, char __user *buf, size_t count,
188 loff_t *ppos)
1da177e4 189{
f1a28c02
TG
190 struct mtd_file_info *mfi = file->private_data;
191 struct mtd_info *mtd = mfi->mtd;
30fa9848 192 size_t retlen;
1da177e4
LT
193 size_t total_retlen=0;
194 int ret=0;
195 int len;
3e45cf5e 196 size_t size = count;
1da177e4 197 char *kbuf;
97894cda 198
289c0522 199 pr_debug("MTD_read\n");
1da177e4
LT
200
201 if (*ppos + count > mtd->size)
202 count = mtd->size - *ppos;
203
204 if (!count)
205 return 0;
97894cda 206
3e45cf5e 207 kbuf = mtd_kmalloc_up_to(mtd, &size);
b802c074
TG
208 if (!kbuf)
209 return -ENOMEM;
210
1da177e4 211 while (count) {
3e45cf5e 212 len = min_t(size_t, count, size);
1da177e4 213
f1a28c02 214 switch (mfi->mode) {
beb133fc 215 case MTD_FILE_MODE_OTP_FACTORY:
d264f72a
AB
216 ret = mtd_read_fact_prot_reg(mtd, *ppos, len,
217 &retlen, kbuf);
31f4233b 218 break;
beb133fc 219 case MTD_FILE_MODE_OTP_USER:
4ea1cabb
AB
220 ret = mtd_read_user_prot_reg(mtd, *ppos, len,
221 &retlen, kbuf);
31f4233b 222 break;
beb133fc 223 case MTD_FILE_MODE_RAW:
f1a28c02
TG
224 {
225 struct mtd_oob_ops ops;
226
0612b9dd 227 ops.mode = MTD_OPS_RAW;
f1a28c02
TG
228 ops.datbuf = kbuf;
229 ops.oobbuf = NULL;
230 ops.len = len;
231
fd2819bb 232 ret = mtd_read_oob(mtd, *ppos, &ops);
f1a28c02
TG
233 retlen = ops.retlen;
234 break;
235 }
31f4233b 236 default:
329ad399 237 ret = mtd_read(mtd, *ppos, len, &retlen, kbuf);
31f4233b 238 }
7854d3f7 239 /* Nand returns -EBADMSG on ECC errors, but it returns
1da177e4 240 * the data. For our userspace tools it is important
7854d3f7 241 * to dump areas with ECC errors!
9a1fcdfd 242 * For kernel internal usage it also might return -EUCLEAN
25985edc 243 * to signal the caller that a bitflip has occurred and has
9a1fcdfd 244 * been corrected by the ECC algorithm.
1da177e4
LT
245 * Userspace software which accesses NAND this way
246 * must be aware of the fact that it deals with NAND
247 */
d57f4054 248 if (!ret || mtd_is_bitflip_or_eccerr(ret)) {
1da177e4
LT
249 *ppos += retlen;
250 if (copy_to_user(buf, kbuf, retlen)) {
f4a43cfc 251 kfree(kbuf);
1da177e4
LT
252 return -EFAULT;
253 }
254 else
255 total_retlen += retlen;
256
257 count -= retlen;
258 buf += retlen;
31f4233b
NP
259 if (retlen == 0)
260 count = 0;
1da177e4
LT
261 }
262 else {
263 kfree(kbuf);
264 return ret;
265 }
97894cda 266
1da177e4
LT
267 }
268
b802c074 269 kfree(kbuf);
1da177e4 270 return total_retlen;
969e57ad 271} /* mtdchar_read */
1da177e4 272
969e57ad
AB
273static ssize_t mtdchar_write(struct file *file, const char __user *buf, size_t count,
274 loff_t *ppos)
1da177e4 275{
f1a28c02
TG
276 struct mtd_file_info *mfi = file->private_data;
277 struct mtd_info *mtd = mfi->mtd;
3e45cf5e 278 size_t size = count;
1da177e4
LT
279 char *kbuf;
280 size_t retlen;
281 size_t total_retlen=0;
282 int ret=0;
283 int len;
284
289c0522 285 pr_debug("MTD_write\n");
97894cda 286
1da177e4
LT
287 if (*ppos == mtd->size)
288 return -ENOSPC;
97894cda 289
1da177e4
LT
290 if (*ppos + count > mtd->size)
291 count = mtd->size - *ppos;
292
293 if (!count)
294 return 0;
295
3e45cf5e 296 kbuf = mtd_kmalloc_up_to(mtd, &size);
b802c074
TG
297 if (!kbuf)
298 return -ENOMEM;
299
1da177e4 300 while (count) {
3e45cf5e 301 len = min_t(size_t, count, size);
1da177e4 302
1da177e4
LT
303 if (copy_from_user(kbuf, buf, len)) {
304 kfree(kbuf);
305 return -EFAULT;
306 }
97894cda 307
f1a28c02 308 switch (mfi->mode) {
beb133fc 309 case MTD_FILE_MODE_OTP_FACTORY:
31f4233b
NP
310 ret = -EROFS;
311 break;
beb133fc 312 case MTD_FILE_MODE_OTP_USER:
482b43ad
AB
313 ret = mtd_write_user_prot_reg(mtd, *ppos, len,
314 &retlen, kbuf);
31f4233b 315 break;
f1a28c02 316
beb133fc 317 case MTD_FILE_MODE_RAW:
f1a28c02
TG
318 {
319 struct mtd_oob_ops ops;
320
0612b9dd 321 ops.mode = MTD_OPS_RAW;
f1a28c02
TG
322 ops.datbuf = kbuf;
323 ops.oobbuf = NULL;
bf514081 324 ops.ooboffs = 0;
f1a28c02
TG
325 ops.len = len;
326
a2cc5ba0 327 ret = mtd_write_oob(mtd, *ppos, &ops);
f1a28c02
TG
328 retlen = ops.retlen;
329 break;
330 }
331
31f4233b 332 default:
eda95cbf 333 ret = mtd_write(mtd, *ppos, len, &retlen, kbuf);
31f4233b 334 }
1da177e4
LT
335 if (!ret) {
336 *ppos += retlen;
337 total_retlen += retlen;
338 count -= retlen;
339 buf += retlen;
340 }
341 else {
342 kfree(kbuf);
343 return ret;
344 }
1da177e4
LT
345 }
346
b802c074 347 kfree(kbuf);
1da177e4 348 return total_retlen;
969e57ad 349} /* mtdchar_write */
1da177e4
LT
350
351/*======================================================================
352
353 IOCTL calls for getting device parameters.
354
355======================================================================*/
356static void mtdchar_erase_callback (struct erase_info *instr)
357{
358 wake_up((wait_queue_head_t *)instr->priv);
359}
360
34a82443 361#ifdef CONFIG_HAVE_MTD_OTP
f1a28c02
TG
362static int otp_select_filemode(struct mtd_file_info *mfi, int mode)
363{
364 struct mtd_info *mtd = mfi->mtd;
b6de3d6c 365 size_t retlen;
f1a28c02
TG
366 int ret = 0;
367
b6de3d6c
AB
368 /*
369 * Make a fake call to mtd_read_fact_prot_reg() to check if OTP
370 * operations are supported.
371 */
372 if (mtd_read_fact_prot_reg(mtd, -1, -1, &retlen, NULL) == -EOPNOTSUPP)
373 return -EOPNOTSUPP;
374
f1a28c02
TG
375 switch (mode) {
376 case MTD_OTP_FACTORY:
b6de3d6c 377 mfi->mode = MTD_FILE_MODE_OTP_FACTORY;
f1a28c02
TG
378 break;
379 case MTD_OTP_USER:
b6de3d6c 380 mfi->mode = MTD_FILE_MODE_OTP_USER;
f1a28c02
TG
381 break;
382 default:
383 ret = -EINVAL;
384 case MTD_OTP_OFF:
385 break;
386 }
387 return ret;
388}
389#else
390# define otp_select_filemode(f,m) -EOPNOTSUPP
391#endif
392
969e57ad 393static int mtdchar_writeoob(struct file *file, struct mtd_info *mtd,
97718540
KC
394 uint64_t start, uint32_t length, void __user *ptr,
395 uint32_t __user *retp)
396{
9ce244b3 397 struct mtd_file_info *mfi = file->private_data;
97718540
KC
398 struct mtd_oob_ops ops;
399 uint32_t retlen;
400 int ret = 0;
401
402 if (!(file->f_mode & FMODE_WRITE))
403 return -EPERM;
404
405 if (length > 4096)
406 return -EINVAL;
407
408 if (!mtd->write_oob)
409 ret = -EOPNOTSUPP;
410 else
0040476b 411 ret = access_ok(VERIFY_READ, ptr, length) ? 0 : -EFAULT;
97718540
KC
412
413 if (ret)
414 return ret;
415
416 ops.ooblen = length;
305b93f1 417 ops.ooboffs = start & (mtd->writesize - 1);
97718540 418 ops.datbuf = NULL;
beb133fc 419 ops.mode = (mfi->mode == MTD_FILE_MODE_RAW) ? MTD_OPS_RAW :
0612b9dd 420 MTD_OPS_PLACE_OOB;
97718540
KC
421
422 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
423 return -EINVAL;
424
df1f1d1c
JL
425 ops.oobbuf = memdup_user(ptr, length);
426 if (IS_ERR(ops.oobbuf))
427 return PTR_ERR(ops.oobbuf);
97718540 428
305b93f1 429 start &= ~((uint64_t)mtd->writesize - 1);
a2cc5ba0 430 ret = mtd_write_oob(mtd, start, &ops);
97718540
KC
431
432 if (ops.oobretlen > 0xFFFFFFFFU)
433 ret = -EOVERFLOW;
434 retlen = ops.oobretlen;
435 if (copy_to_user(retp, &retlen, sizeof(length)))
436 ret = -EFAULT;
437
438 kfree(ops.oobbuf);
439 return ret;
440}
441
969e57ad 442static int mtdchar_readoob(struct file *file, struct mtd_info *mtd,
c46f6483
BN
443 uint64_t start, uint32_t length, void __user *ptr,
444 uint32_t __user *retp)
97718540 445{
c46f6483 446 struct mtd_file_info *mfi = file->private_data;
97718540
KC
447 struct mtd_oob_ops ops;
448 int ret = 0;
449
450 if (length > 4096)
451 return -EINVAL;
452
dac2639f
AB
453 if (!access_ok(VERIFY_WRITE, ptr, length))
454 return -EFAULT;
97718540
KC
455
456 ops.ooblen = length;
305b93f1 457 ops.ooboffs = start & (mtd->writesize - 1);
97718540 458 ops.datbuf = NULL;
beb133fc 459 ops.mode = (mfi->mode == MTD_FILE_MODE_RAW) ? MTD_OPS_RAW :
0612b9dd 460 MTD_OPS_PLACE_OOB;
97718540
KC
461
462 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
463 return -EINVAL;
464
465 ops.oobbuf = kmalloc(length, GFP_KERNEL);
466 if (!ops.oobbuf)
467 return -ENOMEM;
468
305b93f1 469 start &= ~((uint64_t)mtd->writesize - 1);
fd2819bb 470 ret = mtd_read_oob(mtd, start, &ops);
97718540
KC
471
472 if (put_user(ops.oobretlen, retp))
473 ret = -EFAULT;
474 else if (ops.oobretlen && copy_to_user(ptr, ops.oobbuf,
475 ops.oobretlen))
476 ret = -EFAULT;
477
478 kfree(ops.oobbuf);
041e4575
BN
479
480 /*
481 * NAND returns -EBADMSG on ECC errors, but it returns the OOB
482 * data. For our userspace tools it is important to dump areas
483 * with ECC errors!
484 * For kernel internal usage it also might return -EUCLEAN
485 * to signal the caller that a bitflip has occured and has
486 * been corrected by the ECC algorithm.
487 *
c478d7e4
BN
488 * Note: currently the standard NAND function, nand_read_oob_std,
489 * does not calculate ECC for the OOB area, so do not rely on
490 * this behavior unless you have replaced it with your own.
041e4575 491 */
d57f4054 492 if (mtd_is_bitflip_or_eccerr(ret))
041e4575
BN
493 return 0;
494
97718540
KC
495 return ret;
496}
497
cc26c3cd
BN
498/*
499 * Copies (and truncates, if necessary) data from the larger struct,
500 * nand_ecclayout, to the smaller, deprecated layout struct,
92394b5c 501 * nand_ecclayout_user. This is necessary only to support the deprecated
cc26c3cd
BN
502 * API ioctl ECCGETLAYOUT while allowing all new functionality to use
503 * nand_ecclayout flexibly (i.e. the struct may change size in new
504 * releases without requiring major rewrites).
505 */
506static int shrink_ecclayout(const struct nand_ecclayout *from,
507 struct nand_ecclayout_user *to)
508{
509 int i;
510
511 if (!from || !to)
512 return -EINVAL;
513
514 memset(to, 0, sizeof(*to));
515
0ceacf36 516 to->eccbytes = min((int)from->eccbytes, MTD_MAX_ECCPOS_ENTRIES);
cc26c3cd
BN
517 for (i = 0; i < to->eccbytes; i++)
518 to->eccpos[i] = from->eccpos[i];
519
520 for (i = 0; i < MTD_MAX_OOBFREE_ENTRIES; i++) {
521 if (from->oobfree[i].length == 0 &&
522 from->oobfree[i].offset == 0)
523 break;
524 to->oobavail += from->oobfree[i].length;
525 to->oobfree[i] = from->oobfree[i];
526 }
527
528 return 0;
529}
530
969e57ad 531static int mtdchar_blkpg_ioctl(struct mtd_info *mtd,
d0f7959e
RT
532 struct blkpg_ioctl_arg __user *arg)
533{
534 struct blkpg_ioctl_arg a;
535 struct blkpg_partition p;
536
537 if (!capable(CAP_SYS_ADMIN))
538 return -EPERM;
539
d0f7959e
RT
540 if (copy_from_user(&a, arg, sizeof(struct blkpg_ioctl_arg)))
541 return -EFAULT;
542
543 if (copy_from_user(&p, a.data, sizeof(struct blkpg_partition)))
544 return -EFAULT;
545
546 switch (a.op) {
547 case BLKPG_ADD_PARTITION:
548
a7e93dcd
RT
549 /* Only master mtd device must be used to add partitions */
550 if (mtd_is_partition(mtd))
551 return -EINVAL;
552
d0f7959e
RT
553 return mtd_add_partition(mtd, p.devname, p.start, p.length);
554
555 case BLKPG_DEL_PARTITION:
556
557 if (p.pno < 0)
558 return -EINVAL;
559
560 return mtd_del_partition(mtd, p.pno);
561
562 default:
563 return -EINVAL;
564 }
565}
d0f7959e 566
969e57ad 567static int mtdchar_write_ioctl(struct mtd_info *mtd,
e99d8b08
BN
568 struct mtd_write_req __user *argp)
569{
570 struct mtd_write_req req;
571 struct mtd_oob_ops ops;
572 void __user *usr_data, *usr_oob;
573 int ret;
574
575 if (copy_from_user(&req, argp, sizeof(req)) ||
576 !access_ok(VERIFY_READ, req.usr_data, req.len) ||
577 !access_ok(VERIFY_READ, req.usr_oob, req.ooblen))
578 return -EFAULT;
579 if (!mtd->write_oob)
580 return -EOPNOTSUPP;
581
582 ops.mode = req.mode;
583 ops.len = (size_t)req.len;
584 ops.ooblen = (size_t)req.ooblen;
585 ops.ooboffs = 0;
586
587 usr_data = (void __user *)(uintptr_t)req.usr_data;
588 usr_oob = (void __user *)(uintptr_t)req.usr_oob;
589
590 if (req.usr_data) {
591 ops.datbuf = memdup_user(usr_data, ops.len);
592 if (IS_ERR(ops.datbuf))
593 return PTR_ERR(ops.datbuf);
594 } else {
595 ops.datbuf = NULL;
596 }
597
598 if (req.usr_oob) {
599 ops.oobbuf = memdup_user(usr_oob, ops.ooblen);
600 if (IS_ERR(ops.oobbuf)) {
601 kfree(ops.datbuf);
602 return PTR_ERR(ops.oobbuf);
603 }
604 } else {
605 ops.oobbuf = NULL;
606 }
607
a2cc5ba0 608 ret = mtd_write_oob(mtd, (loff_t)req.start, &ops);
e99d8b08
BN
609
610 kfree(ops.datbuf);
611 kfree(ops.oobbuf);
612
613 return ret;
614}
615
969e57ad 616static int mtdchar_ioctl(struct file *file, u_int cmd, u_long arg)
1da177e4 617{
f1a28c02
TG
618 struct mtd_file_info *mfi = file->private_data;
619 struct mtd_info *mtd = mfi->mtd;
1da177e4
LT
620 void __user *argp = (void __user *)arg;
621 int ret = 0;
622 u_long size;
73c619ea 623 struct mtd_info_user info;
97894cda 624
289c0522 625 pr_debug("MTD_ioctl\n");
1da177e4
LT
626
627 size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT;
628 if (cmd & IOC_IN) {
629 if (!access_ok(VERIFY_READ, argp, size))
630 return -EFAULT;
631 }
632 if (cmd & IOC_OUT) {
633 if (!access_ok(VERIFY_WRITE, argp, size))
634 return -EFAULT;
635 }
97894cda 636
1da177e4
LT
637 switch (cmd) {
638 case MEMGETREGIONCOUNT:
639 if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int)))
640 return -EFAULT;
641 break;
642
643 case MEMGETREGIONINFO:
644 {
b67c5f87
ZW
645 uint32_t ur_idx;
646 struct mtd_erase_region_info *kr;
bcc98a46 647 struct region_info_user __user *ur = argp;
1da177e4 648
b67c5f87 649 if (get_user(ur_idx, &(ur->regionindex)))
1da177e4
LT
650 return -EFAULT;
651
5e59be1f
DC
652 if (ur_idx >= mtd->numeraseregions)
653 return -EINVAL;
654
b67c5f87
ZW
655 kr = &(mtd->eraseregions[ur_idx]);
656
657 if (put_user(kr->offset, &(ur->offset))
658 || put_user(kr->erasesize, &(ur->erasesize))
659 || put_user(kr->numblocks, &(ur->numblocks)))
1da177e4 660 return -EFAULT;
b67c5f87 661
1da177e4
LT
662 break;
663 }
664
665 case MEMGETINFO:
a0c5a394 666 memset(&info, 0, sizeof(info));
73c619ea
JE
667 info.type = mtd->type;
668 info.flags = mtd->flags;
669 info.size = mtd->size;
670 info.erasesize = mtd->erasesize;
671 info.writesize = mtd->writesize;
672 info.oobsize = mtd->oobsize;
19fb4341
BN
673 /* The below field is obsolete */
674 info.padding = 0;
73c619ea 675 if (copy_to_user(argp, &info, sizeof(struct mtd_info_user)))
1da177e4
LT
676 return -EFAULT;
677 break;
678
679 case MEMERASE:
0dc54e9f 680 case MEMERASE64:
1da177e4
LT
681 {
682 struct erase_info *erase;
683
aeb5d727 684 if(!(file->f_mode & FMODE_WRITE))
1da177e4
LT
685 return -EPERM;
686
95b93a0c 687 erase=kzalloc(sizeof(struct erase_info),GFP_KERNEL);
1da177e4
LT
688 if (!erase)
689 ret = -ENOMEM;
690 else {
691 wait_queue_head_t waitq;
692 DECLARE_WAITQUEUE(wait, current);
693
694 init_waitqueue_head(&waitq);
695
0dc54e9f
KC
696 if (cmd == MEMERASE64) {
697 struct erase_info_user64 einfo64;
698
699 if (copy_from_user(&einfo64, argp,
700 sizeof(struct erase_info_user64))) {
701 kfree(erase);
702 return -EFAULT;
703 }
704 erase->addr = einfo64.start;
705 erase->len = einfo64.length;
706 } else {
707 struct erase_info_user einfo32;
708
709 if (copy_from_user(&einfo32, argp,
710 sizeof(struct erase_info_user))) {
711 kfree(erase);
712 return -EFAULT;
713 }
714 erase->addr = einfo32.start;
715 erase->len = einfo32.length;
1da177e4
LT
716 }
717 erase->mtd = mtd;
718 erase->callback = mtdchar_erase_callback;
719 erase->priv = (unsigned long)&waitq;
97894cda 720
1da177e4
LT
721 /*
722 FIXME: Allow INTERRUPTIBLE. Which means
723 not having the wait_queue head on the stack.
97894cda 724
1da177e4
LT
725 If the wq_head is on the stack, and we
726 leave because we got interrupted, then the
727 wq_head is no longer there when the
728 callback routine tries to wake us up.
729 */
7e1f0dc0 730 ret = mtd_erase(mtd, erase);
1da177e4
LT
731 if (!ret) {
732 set_current_state(TASK_UNINTERRUPTIBLE);
733 add_wait_queue(&waitq, &wait);
734 if (erase->state != MTD_ERASE_DONE &&
735 erase->state != MTD_ERASE_FAILED)
736 schedule();
737 remove_wait_queue(&waitq, &wait);
738 set_current_state(TASK_RUNNING);
739
740 ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0;
741 }
742 kfree(erase);
743 }
744 break;
745 }
746
747 case MEMWRITEOOB:
748 {
749 struct mtd_oob_buf buf;
97718540 750 struct mtd_oob_buf __user *buf_user = argp;
1da177e4 751
97718540
KC
752 /* NOTE: writes return length to buf_user->length */
753 if (copy_from_user(&buf, argp, sizeof(buf)))
1da177e4 754 ret = -EFAULT;
97718540 755 else
969e57ad 756 ret = mtdchar_writeoob(file, mtd, buf.start, buf.length,
97718540 757 buf.ptr, &buf_user->length);
1da177e4 758 break;
1da177e4
LT
759 }
760
761 case MEMREADOOB:
762 {
763 struct mtd_oob_buf buf;
97718540 764 struct mtd_oob_buf __user *buf_user = argp;
8593fbc6 765
97718540
KC
766 /* NOTE: writes return length to buf_user->start */
767 if (copy_from_user(&buf, argp, sizeof(buf)))
1da177e4 768 ret = -EFAULT;
97718540 769 else
969e57ad 770 ret = mtdchar_readoob(file, mtd, buf.start, buf.length,
97718540 771 buf.ptr, &buf_user->start);
1da177e4
LT
772 break;
773 }
774
aea7cea9
KC
775 case MEMWRITEOOB64:
776 {
777 struct mtd_oob_buf64 buf;
778 struct mtd_oob_buf64 __user *buf_user = argp;
779
780 if (copy_from_user(&buf, argp, sizeof(buf)))
781 ret = -EFAULT;
782 else
969e57ad 783 ret = mtdchar_writeoob(file, mtd, buf.start, buf.length,
aea7cea9
KC
784 (void __user *)(uintptr_t)buf.usr_ptr,
785 &buf_user->length);
786 break;
787 }
788
789 case MEMREADOOB64:
790 {
791 struct mtd_oob_buf64 buf;
792 struct mtd_oob_buf64 __user *buf_user = argp;
793
794 if (copy_from_user(&buf, argp, sizeof(buf)))
795 ret = -EFAULT;
796 else
969e57ad 797 ret = mtdchar_readoob(file, mtd, buf.start, buf.length,
aea7cea9
KC
798 (void __user *)(uintptr_t)buf.usr_ptr,
799 &buf_user->length);
800 break;
801 }
802
e99d8b08
BN
803 case MEMWRITE:
804 {
969e57ad 805 ret = mtdchar_write_ioctl(mtd,
e99d8b08
BN
806 (struct mtd_write_req __user *)arg);
807 break;
808 }
809
1da177e4
LT
810 case MEMLOCK:
811 {
175428b2 812 struct erase_info_user einfo;
1da177e4 813
175428b2 814 if (copy_from_user(&einfo, argp, sizeof(einfo)))
1da177e4
LT
815 return -EFAULT;
816
38134565 817 ret = mtd_lock(mtd, einfo.start, einfo.length);
1da177e4
LT
818 break;
819 }
820
821 case MEMUNLOCK:
822 {
175428b2 823 struct erase_info_user einfo;
1da177e4 824
175428b2 825 if (copy_from_user(&einfo, argp, sizeof(einfo)))
1da177e4
LT
826 return -EFAULT;
827
38134565 828 ret = mtd_unlock(mtd, einfo.start, einfo.length);
1da177e4
LT
829 break;
830 }
831
9938424f
RC
832 case MEMISLOCKED:
833 {
834 struct erase_info_user einfo;
835
836 if (copy_from_user(&einfo, argp, sizeof(einfo)))
837 return -EFAULT;
838
38134565 839 ret = mtd_is_locked(mtd, einfo.start, einfo.length);
9938424f
RC
840 break;
841 }
842
5bd34c09 843 /* Legacy interface */
1da177e4
LT
844 case MEMGETOOBSEL:
845 {
5bd34c09
TG
846 struct nand_oobinfo oi;
847
848 if (!mtd->ecclayout)
849 return -EOPNOTSUPP;
850 if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos))
851 return -EINVAL;
852
853 oi.useecc = MTD_NANDECC_AUTOPLACE;
854 memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos));
855 memcpy(&oi.oobfree, mtd->ecclayout->oobfree,
856 sizeof(oi.oobfree));
d25ade71 857 oi.eccbytes = mtd->ecclayout->eccbytes;
5bd34c09
TG
858
859 if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo)))
1da177e4
LT
860 return -EFAULT;
861 break;
862 }
863
864 case MEMGETBADBLOCK:
865 {
866 loff_t offs;
97894cda 867
1da177e4
LT
868 if (copy_from_user(&offs, argp, sizeof(loff_t)))
869 return -EFAULT;
8f461a73 870 return mtd_block_isbad(mtd, offs);
1da177e4
LT
871 break;
872 }
873
874 case MEMSETBADBLOCK:
875 {
876 loff_t offs;
877
878 if (copy_from_user(&offs, argp, sizeof(loff_t)))
879 return -EFAULT;
880 if (!mtd->block_markbad)
881 ret = -EOPNOTSUPP;
882 else
5942ddbc 883 return mtd_block_markbad(mtd, offs);
1da177e4
LT
884 break;
885 }
886
34a82443 887#ifdef CONFIG_HAVE_MTD_OTP
31f4233b
NP
888 case OTPSELECT:
889 {
890 int mode;
891 if (copy_from_user(&mode, argp, sizeof(int)))
892 return -EFAULT;
f1a28c02 893
beb133fc 894 mfi->mode = MTD_FILE_MODE_NORMAL;
f1a28c02
TG
895
896 ret = otp_select_filemode(mfi, mode);
897
81dba488 898 file->f_pos = 0;
31f4233b
NP
899 break;
900 }
901
902 case OTPGETREGIONCOUNT:
903 case OTPGETREGIONINFO:
904 {
905 struct otp_info *buf = kmalloc(4096, GFP_KERNEL);
906 if (!buf)
907 return -ENOMEM;
f1a28c02 908 switch (mfi->mode) {
beb133fc 909 case MTD_FILE_MODE_OTP_FACTORY:
87e858a9 910 ret = mtd_get_fact_prot_info(mtd, buf, 4096);
31f4233b 911 break;
beb133fc 912 case MTD_FILE_MODE_OTP_USER:
87e858a9 913 ret = mtd_get_user_prot_info(mtd, buf, 4096);
31f4233b 914 break;
f1a28c02 915 default:
87e858a9 916 ret = -EINVAL;
f1a28c02 917 break;
31f4233b
NP
918 }
919 if (ret >= 0) {
920 if (cmd == OTPGETREGIONCOUNT) {
921 int nbr = ret / sizeof(struct otp_info);
922 ret = copy_to_user(argp, &nbr, sizeof(int));
923 } else
924 ret = copy_to_user(argp, buf, ret);
925 if (ret)
926 ret = -EFAULT;
927 }
928 kfree(buf);
929 break;
930 }
931
932 case OTPLOCK:
933 {
175428b2 934 struct otp_info oinfo;
31f4233b 935
beb133fc 936 if (mfi->mode != MTD_FILE_MODE_OTP_USER)
31f4233b 937 return -EINVAL;
175428b2 938 if (copy_from_user(&oinfo, argp, sizeof(oinfo)))
31f4233b 939 return -EFAULT;
4403dbfb 940 ret = mtd_lock_user_prot_reg(mtd, oinfo.start, oinfo.length);
31f4233b
NP
941 break;
942 }
943#endif
944
7854d3f7 945 /* This ioctl is being deprecated - it truncates the ECC layout */
f1a28c02
TG
946 case ECCGETLAYOUT:
947 {
cc26c3cd
BN
948 struct nand_ecclayout_user *usrlay;
949
f1a28c02
TG
950 if (!mtd->ecclayout)
951 return -EOPNOTSUPP;
952
cc26c3cd
BN
953 usrlay = kmalloc(sizeof(*usrlay), GFP_KERNEL);
954 if (!usrlay)
955 return -ENOMEM;
956
957 shrink_ecclayout(mtd->ecclayout, usrlay);
958
959 if (copy_to_user(argp, usrlay, sizeof(*usrlay)))
960 ret = -EFAULT;
961 kfree(usrlay);
f1a28c02
TG
962 break;
963 }
964
965 case ECCGETSTATS:
966 {
967 if (copy_to_user(argp, &mtd->ecc_stats,
968 sizeof(struct mtd_ecc_stats)))
969 return -EFAULT;
970 break;
971 }
972
973 case MTDFILEMODE:
974 {
975 mfi->mode = 0;
976
977 switch(arg) {
beb133fc
BN
978 case MTD_FILE_MODE_OTP_FACTORY:
979 case MTD_FILE_MODE_OTP_USER:
f1a28c02
TG
980 ret = otp_select_filemode(mfi, arg);
981 break;
982
beb133fc 983 case MTD_FILE_MODE_RAW:
fc002e3c 984 if (!mtd_has_oob(mtd))
f1a28c02
TG
985 return -EOPNOTSUPP;
986 mfi->mode = arg;
987
beb133fc 988 case MTD_FILE_MODE_NORMAL:
f1a28c02
TG
989 break;
990 default:
991 ret = -EINVAL;
992 }
993 file->f_pos = 0;
994 break;
995 }
996
d0f7959e
RT
997 case BLKPG:
998 {
969e57ad 999 ret = mtdchar_blkpg_ioctl(mtd,
d0f7959e
RT
1000 (struct blkpg_ioctl_arg __user *)arg);
1001 break;
1002 }
1003
1004 case BLKRRPART:
1005 {
1006 /* No reread partition feature. Just return ok */
1007 ret = 0;
1008 break;
1009 }
d0f7959e 1010
1da177e4
LT
1011 default:
1012 ret = -ENOTTY;
1013 }
1014
1015 return ret;
1016} /* memory_ioctl */
1017
969e57ad 1018static long mtdchar_unlocked_ioctl(struct file *file, u_int cmd, u_long arg)
55929332
AB
1019{
1020 int ret;
1021
5aa82940 1022 mutex_lock(&mtd_mutex);
969e57ad 1023 ret = mtdchar_ioctl(file, cmd, arg);
5aa82940 1024 mutex_unlock(&mtd_mutex);
55929332
AB
1025
1026 return ret;
1027}
1028
97718540
KC
1029#ifdef CONFIG_COMPAT
1030
1031struct mtd_oob_buf32 {
1032 u_int32_t start;
1033 u_int32_t length;
1034 compat_caddr_t ptr; /* unsigned char* */
1035};
1036
1037#define MEMWRITEOOB32 _IOWR('M', 3, struct mtd_oob_buf32)
1038#define MEMREADOOB32 _IOWR('M', 4, struct mtd_oob_buf32)
1039
969e57ad 1040static long mtdchar_compat_ioctl(struct file *file, unsigned int cmd,
97718540
KC
1041 unsigned long arg)
1042{
1043 struct mtd_file_info *mfi = file->private_data;
1044 struct mtd_info *mtd = mfi->mtd;
0b6585ce 1045 void __user *argp = compat_ptr(arg);
97718540
KC
1046 int ret = 0;
1047
5aa82940 1048 mutex_lock(&mtd_mutex);
97718540
KC
1049
1050 switch (cmd) {
1051 case MEMWRITEOOB32:
1052 {
1053 struct mtd_oob_buf32 buf;
1054 struct mtd_oob_buf32 __user *buf_user = argp;
1055
1056 if (copy_from_user(&buf, argp, sizeof(buf)))
1057 ret = -EFAULT;
1058 else
969e57ad 1059 ret = mtdchar_writeoob(file, mtd, buf.start,
97718540
KC
1060 buf.length, compat_ptr(buf.ptr),
1061 &buf_user->length);
1062 break;
1063 }
1064
1065 case MEMREADOOB32:
1066 {
1067 struct mtd_oob_buf32 buf;
1068 struct mtd_oob_buf32 __user *buf_user = argp;
1069
1070 /* NOTE: writes return length to buf->start */
1071 if (copy_from_user(&buf, argp, sizeof(buf)))
1072 ret = -EFAULT;
1073 else
969e57ad 1074 ret = mtdchar_readoob(file, mtd, buf.start,
97718540
KC
1075 buf.length, compat_ptr(buf.ptr),
1076 &buf_user->start);
1077 break;
1078 }
1079 default:
969e57ad 1080 ret = mtdchar_ioctl(file, cmd, (unsigned long)argp);
97718540
KC
1081 }
1082
5aa82940 1083 mutex_unlock(&mtd_mutex);
97718540
KC
1084
1085 return ret;
1086}
1087
1088#endif /* CONFIG_COMPAT */
1089
402d3265
DH
1090/*
1091 * try to determine where a shared mapping can be made
1092 * - only supported for NOMMU at the moment (MMU can't doesn't copy private
1093 * mappings)
1094 */
1095#ifndef CONFIG_MMU
969e57ad 1096static unsigned long mtdchar_get_unmapped_area(struct file *file,
402d3265
DH
1097 unsigned long addr,
1098 unsigned long len,
1099 unsigned long pgoff,
1100 unsigned long flags)
1101{
1102 struct mtd_file_info *mfi = file->private_data;
1103 struct mtd_info *mtd = mfi->mtd;
cd621274
AB
1104 unsigned long offset;
1105 int ret;
402d3265 1106
cd621274
AB
1107 if (addr != 0)
1108 return (unsigned long) -EINVAL;
402d3265 1109
cd621274
AB
1110 if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
1111 return (unsigned long) -EINVAL;
402d3265 1112
cd621274
AB
1113 offset = pgoff << PAGE_SHIFT;
1114 if (offset > mtd->size - len)
1115 return (unsigned long) -EINVAL;
402d3265 1116
cd621274
AB
1117 ret = mtd_get_unmapped_area(mtd, len, offset, flags);
1118 return ret == -EOPNOTSUPP ? -ENOSYS : ret;
402d3265
DH
1119}
1120#endif
1121
1122/*
1123 * set up a mapping for shared memory segments
1124 */
969e57ad 1125static int mtdchar_mmap(struct file *file, struct vm_area_struct *vma)
402d3265
DH
1126{
1127#ifdef CONFIG_MMU
1128 struct mtd_file_info *mfi = file->private_data;
1129 struct mtd_info *mtd = mfi->mtd;
dd02b67d
AG
1130 struct map_info *map = mtd->priv;
1131 unsigned long start;
1132 unsigned long off;
1133 u32 len;
1134
1135 if (mtd->type == MTD_RAM || mtd->type == MTD_ROM) {
1136 off = vma->vm_pgoff << PAGE_SHIFT;
1137 start = map->phys;
1138 len = PAGE_ALIGN((start & ~PAGE_MASK) + map->size);
1139 start &= PAGE_MASK;
1140 if ((vma->vm_end - vma->vm_start + off) > len)
1141 return -EINVAL;
1142
1143 off += start;
1144 vma->vm_pgoff = off >> PAGE_SHIFT;
1145 vma->vm_flags |= VM_IO | VM_RESERVED;
1146
1147#ifdef pgprot_noncached
1148 if (file->f_flags & O_DSYNC || off >= __pa(high_memory))
1149 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1150#endif
1151 if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
1152 vma->vm_end - vma->vm_start,
1153 vma->vm_page_prot))
1154 return -EAGAIN;
402d3265 1155
402d3265 1156 return 0;
dd02b67d 1157 }
402d3265
DH
1158 return -ENOSYS;
1159#else
1160 return vma->vm_flags & VM_SHARED ? 0 : -ENOSYS;
1161#endif
1162}
1163
d54b1fdb 1164static const struct file_operations mtd_fops = {
1da177e4 1165 .owner = THIS_MODULE,
969e57ad
AB
1166 .llseek = mtdchar_lseek,
1167 .read = mtdchar_read,
1168 .write = mtdchar_write,
1169 .unlocked_ioctl = mtdchar_unlocked_ioctl,
97718540 1170#ifdef CONFIG_COMPAT
969e57ad 1171 .compat_ioctl = mtdchar_compat_ioctl,
97718540 1172#endif
969e57ad
AB
1173 .open = mtdchar_open,
1174 .release = mtdchar_close,
1175 .mmap = mtdchar_mmap,
402d3265 1176#ifndef CONFIG_MMU
969e57ad 1177 .get_unmapped_area = mtdchar_get_unmapped_area,
402d3265 1178#endif
1da177e4
LT
1179};
1180
51139ada
AV
1181static struct dentry *mtd_inodefs_mount(struct file_system_type *fs_type,
1182 int flags, const char *dev_name, void *data)
cd874237 1183{
c74a1cbb 1184 return mount_pseudo(fs_type, "mtd_inode:", NULL, NULL, MTD_INODE_FS_MAGIC);
cd874237
KS
1185}
1186
1187static struct file_system_type mtd_inodefs_type = {
1188 .name = "mtd_inodefs",
51139ada 1189 .mount = mtd_inodefs_mount,
cd874237
KS
1190 .kill_sb = kill_anon_super,
1191};
1192
1193static void mtdchar_notify_add(struct mtd_info *mtd)
1194{
1195}
1196
1197static void mtdchar_notify_remove(struct mtd_info *mtd)
1198{
1199 struct inode *mtd_ino = ilookup(mtd_inode_mnt->mnt_sb, mtd->index);
1200
1201 if (mtd_ino) {
1202 /* Destroy the inode if it exists */
6d6b77f1 1203 clear_nlink(mtd_ino);
cd874237
KS
1204 iput(mtd_ino);
1205 }
1206}
1207
1208static struct mtd_notifier mtdchar_notifier = {
1209 .add = mtdchar_notify_add,
1210 .remove = mtdchar_notify_remove,
1211};
1212
1da177e4
LT
1213static int __init init_mtdchar(void)
1214{
cd874237 1215 int ret;
1f24b5a8 1216
cd874237 1217 ret = __register_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS,
dad0db31 1218 "mtd", &mtd_fops);
cd874237
KS
1219 if (ret < 0) {
1220 pr_notice("Can't allocate major number %d for "
1221 "Memory Technology Devices.\n", MTD_CHAR_MAJOR);
1222 return ret;
9bc7b387
TP
1223 }
1224
cd874237
KS
1225 ret = register_filesystem(&mtd_inodefs_type);
1226 if (ret) {
1227 pr_notice("Can't register mtd_inodefs filesystem: %d\n", ret);
1228 goto err_unregister_chdev;
1229 }
1230
1231 mtd_inode_mnt = kern_mount(&mtd_inodefs_type);
1232 if (IS_ERR(mtd_inode_mnt)) {
1233 ret = PTR_ERR(mtd_inode_mnt);
1234 pr_notice("Error mounting mtd_inodefs filesystem: %d\n", ret);
1235 goto err_unregister_filesystem;
1236 }
1237 register_mtd_user(&mtdchar_notifier);
1238
1239 return ret;
1240
1241err_unregister_filesystem:
1242 unregister_filesystem(&mtd_inodefs_type);
1243err_unregister_chdev:
1244 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd");
1245 return ret;
1da177e4
LT
1246}
1247
1248static void __exit cleanup_mtdchar(void)
1249{
cd874237 1250 unregister_mtd_user(&mtdchar_notifier);
423e0ab0 1251 kern_unmount(mtd_inode_mnt);
cd874237 1252 unregister_filesystem(&mtd_inodefs_type);
dad0db31 1253 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd");
1da177e4
LT
1254}
1255
1256module_init(init_mtdchar);
1257module_exit(cleanup_mtdchar);
1258
1f24b5a8 1259MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR);
1da177e4
LT
1260
1261MODULE_LICENSE("GPL");
1262MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
1263MODULE_DESCRIPTION("Direct character-device access to MTD devices");
90160e13 1264MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR);
This page took 0.690389 seconds and 5 git commands to generate.