mtd: tests: ignore corrected bitflips in OOB on mtd_readtest
[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
TG
45 * Data structure to hold the pointer to the mtd device as well
46 * as mode information ofr 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
1da177e4
LT
54static loff_t mtd_lseek (struct file *file, loff_t offset, int orig)
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
80static int mtd_open(struct inode *inode, struct file *file)
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
LT
88
89 DEBUG(MTD_DEBUG_LEVEL0, "MTD_open\n");
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;
1da177e4
LT
145} /* mtd_open */
146
147/*====================================================================*/
148
149static int mtd_close(struct inode *inode, struct file *file)
150{
f1a28c02
TG
151 struct mtd_file_info *mfi = file->private_data;
152 struct mtd_info *mtd = mfi->mtd;
1da177e4
LT
153
154 DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n");
155
7eafaed5 156 /* Only sync if opened RW */
aeb5d727 157 if ((file->f_mode & FMODE_WRITE) && mtd->sync)
1da177e4 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;
167} /* mtd_close */
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
LT
186
187static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos)
188{
f1a28c02
TG
189 struct mtd_file_info *mfi = file->private_data;
190 struct mtd_info *mtd = mfi->mtd;
1da177e4
LT
191 size_t retlen=0;
192 size_t total_retlen=0;
193 int ret=0;
194 int len;
3e45cf5e 195 size_t size = count;
1da177e4 196 char *kbuf;
97894cda 197
1da177e4
LT
198 DEBUG(MTD_DEBUG_LEVEL0,"MTD_read\n");
199
200 if (*ppos + count > mtd->size)
201 count = mtd->size - *ppos;
202
203 if (!count)
204 return 0;
97894cda 205
3e45cf5e 206 kbuf = mtd_kmalloc_up_to(mtd, &size);
b802c074
TG
207 if (!kbuf)
208 return -ENOMEM;
209
1da177e4 210 while (count) {
3e45cf5e 211 len = min_t(size_t, count, size);
1da177e4 212
f1a28c02
TG
213 switch (mfi->mode) {
214 case MTD_MODE_OTP_FACTORY:
31f4233b
NP
215 ret = mtd->read_fact_prot_reg(mtd, *ppos, len, &retlen, kbuf);
216 break;
217 case MTD_MODE_OTP_USER:
218 ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
219 break;
f1a28c02
TG
220 case MTD_MODE_RAW:
221 {
222 struct mtd_oob_ops ops;
223
224 ops.mode = MTD_OOB_RAW;
225 ops.datbuf = kbuf;
226 ops.oobbuf = NULL;
227 ops.len = len;
228
229 ret = mtd->read_oob(mtd, *ppos, &ops);
230 retlen = ops.retlen;
231 break;
232 }
31f4233b 233 default:
f4a43cfc 234 ret = mtd->read(mtd, *ppos, len, &retlen, kbuf);
31f4233b 235 }
7854d3f7 236 /* Nand returns -EBADMSG on ECC errors, but it returns
1da177e4 237 * the data. For our userspace tools it is important
7854d3f7 238 * to dump areas with ECC errors!
9a1fcdfd 239 * For kernel internal usage it also might return -EUCLEAN
25985edc 240 * to signal the caller that a bitflip has occurred and has
9a1fcdfd 241 * been corrected by the ECC algorithm.
1da177e4
LT
242 * Userspace software which accesses NAND this way
243 * must be aware of the fact that it deals with NAND
244 */
9a1fcdfd 245 if (!ret || (ret == -EUCLEAN) || (ret == -EBADMSG)) {
1da177e4
LT
246 *ppos += retlen;
247 if (copy_to_user(buf, kbuf, retlen)) {
f4a43cfc 248 kfree(kbuf);
1da177e4
LT
249 return -EFAULT;
250 }
251 else
252 total_retlen += retlen;
253
254 count -= retlen;
255 buf += retlen;
31f4233b
NP
256 if (retlen == 0)
257 count = 0;
1da177e4
LT
258 }
259 else {
260 kfree(kbuf);
261 return ret;
262 }
97894cda 263
1da177e4
LT
264 }
265
b802c074 266 kfree(kbuf);
1da177e4
LT
267 return total_retlen;
268} /* mtd_read */
269
270static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos)
271{
f1a28c02
TG
272 struct mtd_file_info *mfi = file->private_data;
273 struct mtd_info *mtd = mfi->mtd;
3e45cf5e 274 size_t size = count;
1da177e4
LT
275 char *kbuf;
276 size_t retlen;
277 size_t total_retlen=0;
278 int ret=0;
279 int len;
280
281 DEBUG(MTD_DEBUG_LEVEL0,"MTD_write\n");
97894cda 282
1da177e4
LT
283 if (*ppos == mtd->size)
284 return -ENOSPC;
97894cda 285
1da177e4
LT
286 if (*ppos + count > mtd->size)
287 count = mtd->size - *ppos;
288
289 if (!count)
290 return 0;
291
3e45cf5e 292 kbuf = mtd_kmalloc_up_to(mtd, &size);
b802c074
TG
293 if (!kbuf)
294 return -ENOMEM;
295
1da177e4 296 while (count) {
3e45cf5e 297 len = min_t(size_t, count, size);
1da177e4 298
1da177e4
LT
299 if (copy_from_user(kbuf, buf, len)) {
300 kfree(kbuf);
301 return -EFAULT;
302 }
97894cda 303
f1a28c02
TG
304 switch (mfi->mode) {
305 case MTD_MODE_OTP_FACTORY:
31f4233b
NP
306 ret = -EROFS;
307 break;
308 case MTD_MODE_OTP_USER:
309 if (!mtd->write_user_prot_reg) {
310 ret = -EOPNOTSUPP;
311 break;
312 }
313 ret = mtd->write_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
314 break;
f1a28c02
TG
315
316 case MTD_MODE_RAW:
317 {
318 struct mtd_oob_ops ops;
319
320 ops.mode = MTD_OOB_RAW;
321 ops.datbuf = kbuf;
322 ops.oobbuf = NULL;
bf514081 323 ops.ooboffs = 0;
f1a28c02
TG
324 ops.len = len;
325
326 ret = mtd->write_oob(mtd, *ppos, &ops);
327 retlen = ops.retlen;
328 break;
329 }
330
31f4233b
NP
331 default:
332 ret = (*(mtd->write))(mtd, *ppos, len, &retlen, kbuf);
333 }
1da177e4
LT
334 if (!ret) {
335 *ppos += retlen;
336 total_retlen += retlen;
337 count -= retlen;
338 buf += retlen;
339 }
340 else {
341 kfree(kbuf);
342 return ret;
343 }
1da177e4
LT
344 }
345
b802c074 346 kfree(kbuf);
1da177e4
LT
347 return total_retlen;
348} /* mtd_write */
349
350/*======================================================================
351
352 IOCTL calls for getting device parameters.
353
354======================================================================*/
355static void mtdchar_erase_callback (struct erase_info *instr)
356{
357 wake_up((wait_queue_head_t *)instr->priv);
358}
359
34a82443 360#ifdef CONFIG_HAVE_MTD_OTP
f1a28c02
TG
361static int otp_select_filemode(struct mtd_file_info *mfi, int mode)
362{
363 struct mtd_info *mtd = mfi->mtd;
364 int ret = 0;
365
366 switch (mode) {
367 case MTD_OTP_FACTORY:
368 if (!mtd->read_fact_prot_reg)
369 ret = -EOPNOTSUPP;
370 else
371 mfi->mode = MTD_MODE_OTP_FACTORY;
372 break;
373 case MTD_OTP_USER:
374 if (!mtd->read_fact_prot_reg)
375 ret = -EOPNOTSUPP;
376 else
377 mfi->mode = MTD_MODE_OTP_USER;
378 break;
379 default:
380 ret = -EINVAL;
381 case MTD_OTP_OFF:
382 break;
383 }
384 return ret;
385}
386#else
387# define otp_select_filemode(f,m) -EOPNOTSUPP
388#endif
389
97718540
KC
390static int mtd_do_writeoob(struct file *file, struct mtd_info *mtd,
391 uint64_t start, uint32_t length, void __user *ptr,
392 uint32_t __user *retp)
393{
394 struct mtd_oob_ops ops;
395 uint32_t retlen;
396 int ret = 0;
397
398 if (!(file->f_mode & FMODE_WRITE))
399 return -EPERM;
400
401 if (length > 4096)
402 return -EINVAL;
403
404 if (!mtd->write_oob)
405 ret = -EOPNOTSUPP;
406 else
0040476b 407 ret = access_ok(VERIFY_READ, ptr, length) ? 0 : -EFAULT;
97718540
KC
408
409 if (ret)
410 return ret;
411
412 ops.ooblen = length;
413 ops.ooboffs = start & (mtd->oobsize - 1);
414 ops.datbuf = NULL;
415 ops.mode = MTD_OOB_PLACE;
416
417 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
418 return -EINVAL;
419
df1f1d1c
JL
420 ops.oobbuf = memdup_user(ptr, length);
421 if (IS_ERR(ops.oobbuf))
422 return PTR_ERR(ops.oobbuf);
97718540
KC
423
424 start &= ~((uint64_t)mtd->oobsize - 1);
425 ret = mtd->write_oob(mtd, start, &ops);
426
427 if (ops.oobretlen > 0xFFFFFFFFU)
428 ret = -EOVERFLOW;
429 retlen = ops.oobretlen;
430 if (copy_to_user(retp, &retlen, sizeof(length)))
431 ret = -EFAULT;
432
433 kfree(ops.oobbuf);
434 return ret;
435}
436
437static int mtd_do_readoob(struct mtd_info *mtd, uint64_t start,
438 uint32_t length, void __user *ptr, uint32_t __user *retp)
439{
440 struct mtd_oob_ops ops;
441 int ret = 0;
442
443 if (length > 4096)
444 return -EINVAL;
445
446 if (!mtd->read_oob)
447 ret = -EOPNOTSUPP;
448 else
449 ret = access_ok(VERIFY_WRITE, ptr,
450 length) ? 0 : -EFAULT;
451 if (ret)
452 return ret;
453
454 ops.ooblen = length;
455 ops.ooboffs = start & (mtd->oobsize - 1);
456 ops.datbuf = NULL;
457 ops.mode = MTD_OOB_PLACE;
458
459 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
460 return -EINVAL;
461
462 ops.oobbuf = kmalloc(length, GFP_KERNEL);
463 if (!ops.oobbuf)
464 return -ENOMEM;
465
466 start &= ~((uint64_t)mtd->oobsize - 1);
467 ret = mtd->read_oob(mtd, start, &ops);
468
469 if (put_user(ops.oobretlen, retp))
470 ret = -EFAULT;
471 else if (ops.oobretlen && copy_to_user(ptr, ops.oobbuf,
472 ops.oobretlen))
473 ret = -EFAULT;
474
475 kfree(ops.oobbuf);
041e4575
BN
476
477 /*
478 * NAND returns -EBADMSG on ECC errors, but it returns the OOB
479 * data. For our userspace tools it is important to dump areas
480 * with ECC errors!
481 * For kernel internal usage it also might return -EUCLEAN
482 * to signal the caller that a bitflip has occured and has
483 * been corrected by the ECC algorithm.
484 *
485 * Note: most NAND ECC algorithms do not calculate ECC
486 * for the OOB area.
487 */
488 if (ret == -EUCLEAN || ret == -EBADMSG)
489 return 0;
490
97718540
KC
491 return ret;
492}
493
cc26c3cd
BN
494/*
495 * Copies (and truncates, if necessary) data from the larger struct,
496 * nand_ecclayout, to the smaller, deprecated layout struct,
497 * nand_ecclayout_user. This is necessary only to suppport the deprecated
498 * API ioctl ECCGETLAYOUT while allowing all new functionality to use
499 * nand_ecclayout flexibly (i.e. the struct may change size in new
500 * releases without requiring major rewrites).
501 */
502static int shrink_ecclayout(const struct nand_ecclayout *from,
503 struct nand_ecclayout_user *to)
504{
505 int i;
506
507 if (!from || !to)
508 return -EINVAL;
509
510 memset(to, 0, sizeof(*to));
511
0ceacf36 512 to->eccbytes = min((int)from->eccbytes, MTD_MAX_ECCPOS_ENTRIES);
cc26c3cd
BN
513 for (i = 0; i < to->eccbytes; i++)
514 to->eccpos[i] = from->eccpos[i];
515
516 for (i = 0; i < MTD_MAX_OOBFREE_ENTRIES; i++) {
517 if (from->oobfree[i].length == 0 &&
518 from->oobfree[i].offset == 0)
519 break;
520 to->oobavail += from->oobfree[i].length;
521 to->oobfree[i] = from->oobfree[i];
522 }
523
524 return 0;
525}
526
d0f7959e
RT
527static int mtd_blkpg_ioctl(struct mtd_info *mtd,
528 struct blkpg_ioctl_arg __user *arg)
529{
530 struct blkpg_ioctl_arg a;
531 struct blkpg_partition p;
532
533 if (!capable(CAP_SYS_ADMIN))
534 return -EPERM;
535
d0f7959e
RT
536 if (copy_from_user(&a, arg, sizeof(struct blkpg_ioctl_arg)))
537 return -EFAULT;
538
539 if (copy_from_user(&p, a.data, sizeof(struct blkpg_partition)))
540 return -EFAULT;
541
542 switch (a.op) {
543 case BLKPG_ADD_PARTITION:
544
a7e93dcd
RT
545 /* Only master mtd device must be used to add partitions */
546 if (mtd_is_partition(mtd))
547 return -EINVAL;
548
d0f7959e
RT
549 return mtd_add_partition(mtd, p.devname, p.start, p.length);
550
551 case BLKPG_DEL_PARTITION:
552
553 if (p.pno < 0)
554 return -EINVAL;
555
556 return mtd_del_partition(mtd, p.pno);
557
558 default:
559 return -EINVAL;
560 }
561}
d0f7959e 562
55929332 563static int mtd_ioctl(struct file *file, u_int cmd, u_long arg)
1da177e4 564{
f1a28c02
TG
565 struct mtd_file_info *mfi = file->private_data;
566 struct mtd_info *mtd = mfi->mtd;
1da177e4
LT
567 void __user *argp = (void __user *)arg;
568 int ret = 0;
569 u_long size;
73c619ea 570 struct mtd_info_user info;
97894cda 571
1da177e4
LT
572 DEBUG(MTD_DEBUG_LEVEL0, "MTD_ioctl\n");
573
574 size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT;
575 if (cmd & IOC_IN) {
576 if (!access_ok(VERIFY_READ, argp, size))
577 return -EFAULT;
578 }
579 if (cmd & IOC_OUT) {
580 if (!access_ok(VERIFY_WRITE, argp, size))
581 return -EFAULT;
582 }
97894cda 583
1da177e4
LT
584 switch (cmd) {
585 case MEMGETREGIONCOUNT:
586 if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int)))
587 return -EFAULT;
588 break;
589
590 case MEMGETREGIONINFO:
591 {
b67c5f87
ZW
592 uint32_t ur_idx;
593 struct mtd_erase_region_info *kr;
bcc98a46 594 struct region_info_user __user *ur = argp;
1da177e4 595
b67c5f87 596 if (get_user(ur_idx, &(ur->regionindex)))
1da177e4
LT
597 return -EFAULT;
598
5e59be1f
DC
599 if (ur_idx >= mtd->numeraseregions)
600 return -EINVAL;
601
b67c5f87
ZW
602 kr = &(mtd->eraseregions[ur_idx]);
603
604 if (put_user(kr->offset, &(ur->offset))
605 || put_user(kr->erasesize, &(ur->erasesize))
606 || put_user(kr->numblocks, &(ur->numblocks)))
1da177e4 607 return -EFAULT;
b67c5f87 608
1da177e4
LT
609 break;
610 }
611
612 case MEMGETINFO:
a0c5a394 613 memset(&info, 0, sizeof(info));
73c619ea
JE
614 info.type = mtd->type;
615 info.flags = mtd->flags;
616 info.size = mtd->size;
617 info.erasesize = mtd->erasesize;
618 info.writesize = mtd->writesize;
619 info.oobsize = mtd->oobsize;
64f60710
AB
620 /* The below fields are obsolete */
621 info.ecctype = -1;
73c619ea 622 if (copy_to_user(argp, &info, sizeof(struct mtd_info_user)))
1da177e4
LT
623 return -EFAULT;
624 break;
625
626 case MEMERASE:
0dc54e9f 627 case MEMERASE64:
1da177e4
LT
628 {
629 struct erase_info *erase;
630
aeb5d727 631 if(!(file->f_mode & FMODE_WRITE))
1da177e4
LT
632 return -EPERM;
633
95b93a0c 634 erase=kzalloc(sizeof(struct erase_info),GFP_KERNEL);
1da177e4
LT
635 if (!erase)
636 ret = -ENOMEM;
637 else {
638 wait_queue_head_t waitq;
639 DECLARE_WAITQUEUE(wait, current);
640
641 init_waitqueue_head(&waitq);
642
0dc54e9f
KC
643 if (cmd == MEMERASE64) {
644 struct erase_info_user64 einfo64;
645
646 if (copy_from_user(&einfo64, argp,
647 sizeof(struct erase_info_user64))) {
648 kfree(erase);
649 return -EFAULT;
650 }
651 erase->addr = einfo64.start;
652 erase->len = einfo64.length;
653 } else {
654 struct erase_info_user einfo32;
655
656 if (copy_from_user(&einfo32, argp,
657 sizeof(struct erase_info_user))) {
658 kfree(erase);
659 return -EFAULT;
660 }
661 erase->addr = einfo32.start;
662 erase->len = einfo32.length;
1da177e4
LT
663 }
664 erase->mtd = mtd;
665 erase->callback = mtdchar_erase_callback;
666 erase->priv = (unsigned long)&waitq;
97894cda 667
1da177e4
LT
668 /*
669 FIXME: Allow INTERRUPTIBLE. Which means
670 not having the wait_queue head on the stack.
97894cda 671
1da177e4
LT
672 If the wq_head is on the stack, and we
673 leave because we got interrupted, then the
674 wq_head is no longer there when the
675 callback routine tries to wake us up.
676 */
677 ret = mtd->erase(mtd, erase);
678 if (!ret) {
679 set_current_state(TASK_UNINTERRUPTIBLE);
680 add_wait_queue(&waitq, &wait);
681 if (erase->state != MTD_ERASE_DONE &&
682 erase->state != MTD_ERASE_FAILED)
683 schedule();
684 remove_wait_queue(&waitq, &wait);
685 set_current_state(TASK_RUNNING);
686
687 ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0;
688 }
689 kfree(erase);
690 }
691 break;
692 }
693
694 case MEMWRITEOOB:
695 {
696 struct mtd_oob_buf buf;
97718540 697 struct mtd_oob_buf __user *buf_user = argp;
1da177e4 698
97718540
KC
699 /* NOTE: writes return length to buf_user->length */
700 if (copy_from_user(&buf, argp, sizeof(buf)))
1da177e4 701 ret = -EFAULT;
97718540
KC
702 else
703 ret = mtd_do_writeoob(file, mtd, buf.start, buf.length,
704 buf.ptr, &buf_user->length);
1da177e4 705 break;
1da177e4
LT
706 }
707
708 case MEMREADOOB:
709 {
710 struct mtd_oob_buf buf;
97718540 711 struct mtd_oob_buf __user *buf_user = argp;
8593fbc6 712
97718540
KC
713 /* NOTE: writes return length to buf_user->start */
714 if (copy_from_user(&buf, argp, sizeof(buf)))
1da177e4 715 ret = -EFAULT;
97718540
KC
716 else
717 ret = mtd_do_readoob(mtd, buf.start, buf.length,
718 buf.ptr, &buf_user->start);
1da177e4
LT
719 break;
720 }
721
aea7cea9
KC
722 case MEMWRITEOOB64:
723 {
724 struct mtd_oob_buf64 buf;
725 struct mtd_oob_buf64 __user *buf_user = argp;
726
727 if (copy_from_user(&buf, argp, sizeof(buf)))
728 ret = -EFAULT;
729 else
730 ret = mtd_do_writeoob(file, mtd, buf.start, buf.length,
731 (void __user *)(uintptr_t)buf.usr_ptr,
732 &buf_user->length);
733 break;
734 }
735
736 case MEMREADOOB64:
737 {
738 struct mtd_oob_buf64 buf;
739 struct mtd_oob_buf64 __user *buf_user = argp;
740
741 if (copy_from_user(&buf, argp, sizeof(buf)))
742 ret = -EFAULT;
743 else
744 ret = mtd_do_readoob(mtd, buf.start, buf.length,
745 (void __user *)(uintptr_t)buf.usr_ptr,
746 &buf_user->length);
747 break;
748 }
749
1da177e4
LT
750 case MEMLOCK:
751 {
175428b2 752 struct erase_info_user einfo;
1da177e4 753
175428b2 754 if (copy_from_user(&einfo, argp, sizeof(einfo)))
1da177e4
LT
755 return -EFAULT;
756
757 if (!mtd->lock)
758 ret = -EOPNOTSUPP;
759 else
175428b2 760 ret = mtd->lock(mtd, einfo.start, einfo.length);
1da177e4
LT
761 break;
762 }
763
764 case MEMUNLOCK:
765 {
175428b2 766 struct erase_info_user einfo;
1da177e4 767
175428b2 768 if (copy_from_user(&einfo, argp, sizeof(einfo)))
1da177e4
LT
769 return -EFAULT;
770
771 if (!mtd->unlock)
772 ret = -EOPNOTSUPP;
773 else
175428b2 774 ret = mtd->unlock(mtd, einfo.start, einfo.length);
1da177e4
LT
775 break;
776 }
777
9938424f
RC
778 case MEMISLOCKED:
779 {
780 struct erase_info_user einfo;
781
782 if (copy_from_user(&einfo, argp, sizeof(einfo)))
783 return -EFAULT;
784
785 if (!mtd->is_locked)
786 ret = -EOPNOTSUPP;
787 else
788 ret = mtd->is_locked(mtd, einfo.start, einfo.length);
789 break;
790 }
791
5bd34c09 792 /* Legacy interface */
1da177e4
LT
793 case MEMGETOOBSEL:
794 {
5bd34c09
TG
795 struct nand_oobinfo oi;
796
797 if (!mtd->ecclayout)
798 return -EOPNOTSUPP;
799 if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos))
800 return -EINVAL;
801
802 oi.useecc = MTD_NANDECC_AUTOPLACE;
803 memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos));
804 memcpy(&oi.oobfree, mtd->ecclayout->oobfree,
805 sizeof(oi.oobfree));
d25ade71 806 oi.eccbytes = mtd->ecclayout->eccbytes;
5bd34c09
TG
807
808 if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo)))
1da177e4
LT
809 return -EFAULT;
810 break;
811 }
812
813 case MEMGETBADBLOCK:
814 {
815 loff_t offs;
97894cda 816
1da177e4
LT
817 if (copy_from_user(&offs, argp, sizeof(loff_t)))
818 return -EFAULT;
819 if (!mtd->block_isbad)
820 ret = -EOPNOTSUPP;
821 else
822 return mtd->block_isbad(mtd, offs);
823 break;
824 }
825
826 case MEMSETBADBLOCK:
827 {
828 loff_t offs;
829
830 if (copy_from_user(&offs, argp, sizeof(loff_t)))
831 return -EFAULT;
832 if (!mtd->block_markbad)
833 ret = -EOPNOTSUPP;
834 else
835 return mtd->block_markbad(mtd, offs);
836 break;
837 }
838
34a82443 839#ifdef CONFIG_HAVE_MTD_OTP
31f4233b
NP
840 case OTPSELECT:
841 {
842 int mode;
843 if (copy_from_user(&mode, argp, sizeof(int)))
844 return -EFAULT;
f1a28c02
TG
845
846 mfi->mode = MTD_MODE_NORMAL;
847
848 ret = otp_select_filemode(mfi, mode);
849
81dba488 850 file->f_pos = 0;
31f4233b
NP
851 break;
852 }
853
854 case OTPGETREGIONCOUNT:
855 case OTPGETREGIONINFO:
856 {
857 struct otp_info *buf = kmalloc(4096, GFP_KERNEL);
858 if (!buf)
859 return -ENOMEM;
860 ret = -EOPNOTSUPP;
f1a28c02
TG
861 switch (mfi->mode) {
862 case MTD_MODE_OTP_FACTORY:
31f4233b
NP
863 if (mtd->get_fact_prot_info)
864 ret = mtd->get_fact_prot_info(mtd, buf, 4096);
865 break;
866 case MTD_MODE_OTP_USER:
867 if (mtd->get_user_prot_info)
868 ret = mtd->get_user_prot_info(mtd, buf, 4096);
869 break;
f1a28c02
TG
870 default:
871 break;
31f4233b
NP
872 }
873 if (ret >= 0) {
874 if (cmd == OTPGETREGIONCOUNT) {
875 int nbr = ret / sizeof(struct otp_info);
876 ret = copy_to_user(argp, &nbr, sizeof(int));
877 } else
878 ret = copy_to_user(argp, buf, ret);
879 if (ret)
880 ret = -EFAULT;
881 }
882 kfree(buf);
883 break;
884 }
885
886 case OTPLOCK:
887 {
175428b2 888 struct otp_info oinfo;
31f4233b 889
f1a28c02 890 if (mfi->mode != MTD_MODE_OTP_USER)
31f4233b 891 return -EINVAL;
175428b2 892 if (copy_from_user(&oinfo, argp, sizeof(oinfo)))
31f4233b
NP
893 return -EFAULT;
894 if (!mtd->lock_user_prot_reg)
895 return -EOPNOTSUPP;
175428b2 896 ret = mtd->lock_user_prot_reg(mtd, oinfo.start, oinfo.length);
31f4233b
NP
897 break;
898 }
899#endif
900
7854d3f7 901 /* This ioctl is being deprecated - it truncates the ECC layout */
f1a28c02
TG
902 case ECCGETLAYOUT:
903 {
cc26c3cd
BN
904 struct nand_ecclayout_user *usrlay;
905
f1a28c02
TG
906 if (!mtd->ecclayout)
907 return -EOPNOTSUPP;
908
cc26c3cd
BN
909 usrlay = kmalloc(sizeof(*usrlay), GFP_KERNEL);
910 if (!usrlay)
911 return -ENOMEM;
912
913 shrink_ecclayout(mtd->ecclayout, usrlay);
914
915 if (copy_to_user(argp, usrlay, sizeof(*usrlay)))
916 ret = -EFAULT;
917 kfree(usrlay);
f1a28c02
TG
918 break;
919 }
920
921 case ECCGETSTATS:
922 {
923 if (copy_to_user(argp, &mtd->ecc_stats,
924 sizeof(struct mtd_ecc_stats)))
925 return -EFAULT;
926 break;
927 }
928
929 case MTDFILEMODE:
930 {
931 mfi->mode = 0;
932
933 switch(arg) {
934 case MTD_MODE_OTP_FACTORY:
935 case MTD_MODE_OTP_USER:
936 ret = otp_select_filemode(mfi, arg);
937 break;
938
939 case MTD_MODE_RAW:
940 if (!mtd->read_oob || !mtd->write_oob)
941 return -EOPNOTSUPP;
942 mfi->mode = arg;
943
944 case MTD_MODE_NORMAL:
945 break;
946 default:
947 ret = -EINVAL;
948 }
949 file->f_pos = 0;
950 break;
951 }
952
d0f7959e
RT
953 case BLKPG:
954 {
955 ret = mtd_blkpg_ioctl(mtd,
956 (struct blkpg_ioctl_arg __user *)arg);
957 break;
958 }
959
960 case BLKRRPART:
961 {
962 /* No reread partition feature. Just return ok */
963 ret = 0;
964 break;
965 }
d0f7959e 966
1da177e4
LT
967 default:
968 ret = -ENOTTY;
969 }
970
971 return ret;
972} /* memory_ioctl */
973
55929332
AB
974static long mtd_unlocked_ioctl(struct file *file, u_int cmd, u_long arg)
975{
976 int ret;
977
5aa82940 978 mutex_lock(&mtd_mutex);
55929332 979 ret = mtd_ioctl(file, cmd, arg);
5aa82940 980 mutex_unlock(&mtd_mutex);
55929332
AB
981
982 return ret;
983}
984
97718540
KC
985#ifdef CONFIG_COMPAT
986
987struct mtd_oob_buf32 {
988 u_int32_t start;
989 u_int32_t length;
990 compat_caddr_t ptr; /* unsigned char* */
991};
992
993#define MEMWRITEOOB32 _IOWR('M', 3, struct mtd_oob_buf32)
994#define MEMREADOOB32 _IOWR('M', 4, struct mtd_oob_buf32)
995
996static long mtd_compat_ioctl(struct file *file, unsigned int cmd,
997 unsigned long arg)
998{
999 struct mtd_file_info *mfi = file->private_data;
1000 struct mtd_info *mtd = mfi->mtd;
0b6585ce 1001 void __user *argp = compat_ptr(arg);
97718540
KC
1002 int ret = 0;
1003
5aa82940 1004 mutex_lock(&mtd_mutex);
97718540
KC
1005
1006 switch (cmd) {
1007 case MEMWRITEOOB32:
1008 {
1009 struct mtd_oob_buf32 buf;
1010 struct mtd_oob_buf32 __user *buf_user = argp;
1011
1012 if (copy_from_user(&buf, argp, sizeof(buf)))
1013 ret = -EFAULT;
1014 else
1015 ret = mtd_do_writeoob(file, mtd, buf.start,
1016 buf.length, compat_ptr(buf.ptr),
1017 &buf_user->length);
1018 break;
1019 }
1020
1021 case MEMREADOOB32:
1022 {
1023 struct mtd_oob_buf32 buf;
1024 struct mtd_oob_buf32 __user *buf_user = argp;
1025
1026 /* NOTE: writes return length to buf->start */
1027 if (copy_from_user(&buf, argp, sizeof(buf)))
1028 ret = -EFAULT;
1029 else
1030 ret = mtd_do_readoob(mtd, buf.start,
1031 buf.length, compat_ptr(buf.ptr),
1032 &buf_user->start);
1033 break;
1034 }
1035 default:
55929332 1036 ret = mtd_ioctl(file, cmd, (unsigned long)argp);
97718540
KC
1037 }
1038
5aa82940 1039 mutex_unlock(&mtd_mutex);
97718540
KC
1040
1041 return ret;
1042}
1043
1044#endif /* CONFIG_COMPAT */
1045
402d3265
DH
1046/*
1047 * try to determine where a shared mapping can be made
1048 * - only supported for NOMMU at the moment (MMU can't doesn't copy private
1049 * mappings)
1050 */
1051#ifndef CONFIG_MMU
1052static unsigned long mtd_get_unmapped_area(struct file *file,
1053 unsigned long addr,
1054 unsigned long len,
1055 unsigned long pgoff,
1056 unsigned long flags)
1057{
1058 struct mtd_file_info *mfi = file->private_data;
1059 struct mtd_info *mtd = mfi->mtd;
1060
1061 if (mtd->get_unmapped_area) {
1062 unsigned long offset;
1063
1064 if (addr != 0)
1065 return (unsigned long) -EINVAL;
1066
1067 if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
1068 return (unsigned long) -EINVAL;
1069
1070 offset = pgoff << PAGE_SHIFT;
1071 if (offset > mtd->size - len)
1072 return (unsigned long) -EINVAL;
1073
1074 return mtd->get_unmapped_area(mtd, len, offset, flags);
1075 }
1076
1077 /* can't map directly */
1078 return (unsigned long) -ENOSYS;
1079}
1080#endif
1081
1082/*
1083 * set up a mapping for shared memory segments
1084 */
1085static int mtd_mmap(struct file *file, struct vm_area_struct *vma)
1086{
1087#ifdef CONFIG_MMU
1088 struct mtd_file_info *mfi = file->private_data;
1089 struct mtd_info *mtd = mfi->mtd;
dd02b67d
AG
1090 struct map_info *map = mtd->priv;
1091 unsigned long start;
1092 unsigned long off;
1093 u32 len;
1094
1095 if (mtd->type == MTD_RAM || mtd->type == MTD_ROM) {
1096 off = vma->vm_pgoff << PAGE_SHIFT;
1097 start = map->phys;
1098 len = PAGE_ALIGN((start & ~PAGE_MASK) + map->size);
1099 start &= PAGE_MASK;
1100 if ((vma->vm_end - vma->vm_start + off) > len)
1101 return -EINVAL;
1102
1103 off += start;
1104 vma->vm_pgoff = off >> PAGE_SHIFT;
1105 vma->vm_flags |= VM_IO | VM_RESERVED;
1106
1107#ifdef pgprot_noncached
1108 if (file->f_flags & O_DSYNC || off >= __pa(high_memory))
1109 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1110#endif
1111 if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
1112 vma->vm_end - vma->vm_start,
1113 vma->vm_page_prot))
1114 return -EAGAIN;
402d3265 1115
402d3265 1116 return 0;
dd02b67d 1117 }
402d3265
DH
1118 return -ENOSYS;
1119#else
1120 return vma->vm_flags & VM_SHARED ? 0 : -ENOSYS;
1121#endif
1122}
1123
d54b1fdb 1124static const struct file_operations mtd_fops = {
1da177e4
LT
1125 .owner = THIS_MODULE,
1126 .llseek = mtd_lseek,
1127 .read = mtd_read,
1128 .write = mtd_write,
55929332 1129 .unlocked_ioctl = mtd_unlocked_ioctl,
97718540
KC
1130#ifdef CONFIG_COMPAT
1131 .compat_ioctl = mtd_compat_ioctl,
1132#endif
1da177e4
LT
1133 .open = mtd_open,
1134 .release = mtd_close,
402d3265
DH
1135 .mmap = mtd_mmap,
1136#ifndef CONFIG_MMU
1137 .get_unmapped_area = mtd_get_unmapped_area,
1138#endif
1da177e4
LT
1139};
1140
51139ada
AV
1141static struct dentry *mtd_inodefs_mount(struct file_system_type *fs_type,
1142 int flags, const char *dev_name, void *data)
cd874237 1143{
c74a1cbb 1144 return mount_pseudo(fs_type, "mtd_inode:", NULL, NULL, MTD_INODE_FS_MAGIC);
cd874237
KS
1145}
1146
1147static struct file_system_type mtd_inodefs_type = {
1148 .name = "mtd_inodefs",
51139ada 1149 .mount = mtd_inodefs_mount,
cd874237
KS
1150 .kill_sb = kill_anon_super,
1151};
1152
1153static void mtdchar_notify_add(struct mtd_info *mtd)
1154{
1155}
1156
1157static void mtdchar_notify_remove(struct mtd_info *mtd)
1158{
1159 struct inode *mtd_ino = ilookup(mtd_inode_mnt->mnt_sb, mtd->index);
1160
1161 if (mtd_ino) {
1162 /* Destroy the inode if it exists */
1163 mtd_ino->i_nlink = 0;
1164 iput(mtd_ino);
1165 }
1166}
1167
1168static struct mtd_notifier mtdchar_notifier = {
1169 .add = mtdchar_notify_add,
1170 .remove = mtdchar_notify_remove,
1171};
1172
1da177e4
LT
1173static int __init init_mtdchar(void)
1174{
cd874237 1175 int ret;
1f24b5a8 1176
cd874237 1177 ret = __register_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS,
dad0db31 1178 "mtd", &mtd_fops);
cd874237
KS
1179 if (ret < 0) {
1180 pr_notice("Can't allocate major number %d for "
1181 "Memory Technology Devices.\n", MTD_CHAR_MAJOR);
1182 return ret;
9bc7b387
TP
1183 }
1184
cd874237
KS
1185 ret = register_filesystem(&mtd_inodefs_type);
1186 if (ret) {
1187 pr_notice("Can't register mtd_inodefs filesystem: %d\n", ret);
1188 goto err_unregister_chdev;
1189 }
1190
1191 mtd_inode_mnt = kern_mount(&mtd_inodefs_type);
1192 if (IS_ERR(mtd_inode_mnt)) {
1193 ret = PTR_ERR(mtd_inode_mnt);
1194 pr_notice("Error mounting mtd_inodefs filesystem: %d\n", ret);
1195 goto err_unregister_filesystem;
1196 }
1197 register_mtd_user(&mtdchar_notifier);
1198
1199 return ret;
1200
1201err_unregister_filesystem:
1202 unregister_filesystem(&mtd_inodefs_type);
1203err_unregister_chdev:
1204 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd");
1205 return ret;
1da177e4
LT
1206}
1207
1208static void __exit cleanup_mtdchar(void)
1209{
cd874237 1210 unregister_mtd_user(&mtdchar_notifier);
423e0ab0 1211 kern_unmount(mtd_inode_mnt);
cd874237 1212 unregister_filesystem(&mtd_inodefs_type);
dad0db31 1213 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd");
1da177e4
LT
1214}
1215
1216module_init(init_mtdchar);
1217module_exit(cleanup_mtdchar);
1218
1f24b5a8 1219MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR);
1da177e4
LT
1220
1221MODULE_LICENSE("GPL");
1222MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
1223MODULE_DESCRIPTION("Direct character-device access to MTD devices");
90160e13 1224MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR);
This page took 0.558078 seconds and 5 git commands to generate.