2 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
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.
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.
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
20 #include <linux/device.h>
23 #include <linux/err.h>
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/slab.h>
28 #include <linux/sched.h>
29 #include <linux/mutex.h>
30 #include <linux/backing-dev.h>
31 #include <linux/compat.h>
32 #include <linux/mount.h>
33 #include <linux/blkpg.h>
34 #include <linux/mtd/mtd.h>
35 #include <linux/mtd/partitions.h>
36 #include <linux/mtd/map.h>
38 #include <asm/uaccess.h>
40 #define MTD_INODE_FS_MAGIC 0x11307854
41 static DEFINE_MUTEX(mtd_mutex
);
42 static struct vfsmount
*mtd_inode_mnt __read_mostly
;
45 * Data structure to hold the pointer to the mtd device as well
46 * as mode information of various use cases.
48 struct mtd_file_info
{
51 enum mtd_file_modes mode
;
54 static loff_t
mtdchar_lseek(struct file
*file
, loff_t offset
, int orig
)
56 struct mtd_file_info
*mfi
= file
->private_data
;
57 struct mtd_info
*mtd
= mfi
->mtd
;
63 offset
+= file
->f_pos
;
72 if (offset
>= 0 && offset
<= mtd
->size
)
73 return file
->f_pos
= offset
;
80 static int mtdchar_open(struct inode
*inode
, struct file
*file
)
82 int minor
= iminor(inode
);
83 int devnum
= minor
>> 1;
86 struct mtd_file_info
*mfi
;
87 struct inode
*mtd_ino
;
89 pr_debug("MTD_open\n");
91 /* You can't open the RO devices RW */
92 if ((file
->f_mode
& FMODE_WRITE
) && (minor
& 1))
95 mutex_lock(&mtd_mutex
);
96 mtd
= get_mtd_device(NULL
, devnum
);
103 if (mtd
->type
== MTD_ABSENT
) {
109 mtd_ino
= iget_locked(mtd_inode_mnt
->mnt_sb
, devnum
);
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
);
121 file
->f_mapping
= mtd_ino
->i_mapping
;
123 /* You can't open it RW if it's not a writeable device */
124 if ((file
->f_mode
& FMODE_WRITE
) && !(mtd
->flags
& MTD_WRITEABLE
)) {
131 mfi
= kzalloc(sizeof(*mfi
), GFP_KERNEL
);
140 file
->private_data
= mfi
;
143 mutex_unlock(&mtd_mutex
);
147 /*====================================================================*/
149 static int mtdchar_close(struct inode
*inode
, struct file
*file
)
151 struct mtd_file_info
*mfi
= file
->private_data
;
152 struct mtd_info
*mtd
= mfi
->mtd
;
154 pr_debug("MTD_close\n");
156 /* Only sync if opened RW */
157 if ((file
->f_mode
& FMODE_WRITE
))
163 file
->private_data
= NULL
;
167 } /* mtdchar_close */
169 /* Back in June 2001, dwmw2 wrote:
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.
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.
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.
187 static ssize_t
mtdchar_read(struct file
*file
, char __user
*buf
, size_t count
,
190 struct mtd_file_info
*mfi
= file
->private_data
;
191 struct mtd_info
*mtd
= mfi
->mtd
;
193 size_t total_retlen
=0;
199 pr_debug("MTD_read\n");
201 if (*ppos
+ count
> mtd
->size
)
202 count
= mtd
->size
- *ppos
;
207 kbuf
= mtd_kmalloc_up_to(mtd
, &size
);
212 len
= min_t(size_t, count
, size
);
215 case MTD_FILE_MODE_OTP_FACTORY
:
216 ret
= mtd_read_fact_prot_reg(mtd
, *ppos
, len
,
219 case MTD_FILE_MODE_OTP_USER
:
220 ret
= mtd_read_user_prot_reg(mtd
, *ppos
, len
,
223 case MTD_FILE_MODE_RAW
:
225 struct mtd_oob_ops ops
;
227 ops
.mode
= MTD_OPS_RAW
;
232 ret
= mtd_read_oob(mtd
, *ppos
, &ops
);
237 ret
= mtd_read(mtd
, *ppos
, len
, &retlen
, kbuf
);
239 /* Nand returns -EBADMSG on ECC errors, but it returns
240 * the data. For our userspace tools it is important
241 * to dump areas with ECC errors!
242 * For kernel internal usage it also might return -EUCLEAN
243 * to signal the caller that a bitflip has occurred and has
244 * been corrected by the ECC algorithm.
245 * Userspace software which accesses NAND this way
246 * must be aware of the fact that it deals with NAND
248 if (!ret
|| mtd_is_bitflip_or_eccerr(ret
)) {
250 if (copy_to_user(buf
, kbuf
, retlen
)) {
255 total_retlen
+= retlen
;
273 static ssize_t
mtdchar_write(struct file
*file
, const char __user
*buf
, size_t count
,
276 struct mtd_file_info
*mfi
= file
->private_data
;
277 struct mtd_info
*mtd
= mfi
->mtd
;
281 size_t total_retlen
=0;
285 pr_debug("MTD_write\n");
287 if (*ppos
== mtd
->size
)
290 if (*ppos
+ count
> mtd
->size
)
291 count
= mtd
->size
- *ppos
;
296 kbuf
= mtd_kmalloc_up_to(mtd
, &size
);
301 len
= min_t(size_t, count
, size
);
303 if (copy_from_user(kbuf
, buf
, len
)) {
309 case MTD_FILE_MODE_OTP_FACTORY
:
312 case MTD_FILE_MODE_OTP_USER
:
313 ret
= mtd_write_user_prot_reg(mtd
, *ppos
, len
,
317 case MTD_FILE_MODE_RAW
:
319 struct mtd_oob_ops ops
;
321 ops
.mode
= MTD_OPS_RAW
;
327 ret
= mtd_write_oob(mtd
, *ppos
, &ops
);
333 ret
= mtd_write(mtd
, *ppos
, len
, &retlen
, kbuf
);
337 total_retlen
+= retlen
;
349 } /* mtdchar_write */
351 /*======================================================================
353 IOCTL calls for getting device parameters.
355 ======================================================================*/
356 static void mtdchar_erase_callback (struct erase_info
*instr
)
358 wake_up((wait_queue_head_t
*)instr
->priv
);
361 #ifdef CONFIG_HAVE_MTD_OTP
362 static int otp_select_filemode(struct mtd_file_info
*mfi
, int mode
)
364 struct mtd_info
*mtd
= mfi
->mtd
;
369 * Make a fake call to mtd_read_fact_prot_reg() to check if OTP
370 * operations are supported.
372 if (mtd_read_fact_prot_reg(mtd
, -1, -1, &retlen
, NULL
) == -EOPNOTSUPP
)
376 case MTD_OTP_FACTORY
:
377 mfi
->mode
= MTD_FILE_MODE_OTP_FACTORY
;
380 mfi
->mode
= MTD_FILE_MODE_OTP_USER
;
390 # define otp_select_filemode(f,m) -EOPNOTSUPP
393 static int mtdchar_writeoob(struct file
*file
, struct mtd_info
*mtd
,
394 uint64_t start
, uint32_t length
, void __user
*ptr
,
395 uint32_t __user
*retp
)
397 struct mtd_file_info
*mfi
= file
->private_data
;
398 struct mtd_oob_ops ops
;
402 if (!(file
->f_mode
& FMODE_WRITE
))
411 ret
= access_ok(VERIFY_READ
, ptr
, length
) ? 0 : -EFAULT
;
417 ops
.ooboffs
= start
& (mtd
->writesize
- 1);
419 ops
.mode
= (mfi
->mode
== MTD_FILE_MODE_RAW
) ? MTD_OPS_RAW
:
422 if (ops
.ooboffs
&& ops
.ooblen
> (mtd
->oobsize
- ops
.ooboffs
))
425 ops
.oobbuf
= memdup_user(ptr
, length
);
426 if (IS_ERR(ops
.oobbuf
))
427 return PTR_ERR(ops
.oobbuf
);
429 start
&= ~((uint64_t)mtd
->writesize
- 1);
430 ret
= mtd_write_oob(mtd
, start
, &ops
);
432 if (ops
.oobretlen
> 0xFFFFFFFFU
)
434 retlen
= ops
.oobretlen
;
435 if (copy_to_user(retp
, &retlen
, sizeof(length
)))
442 static int mtdchar_readoob(struct file
*file
, struct mtd_info
*mtd
,
443 uint64_t start
, uint32_t length
, void __user
*ptr
,
444 uint32_t __user
*retp
)
446 struct mtd_file_info
*mfi
= file
->private_data
;
447 struct mtd_oob_ops ops
;
453 if (!access_ok(VERIFY_WRITE
, ptr
, length
))
457 ops
.ooboffs
= start
& (mtd
->writesize
- 1);
459 ops
.mode
= (mfi
->mode
== MTD_FILE_MODE_RAW
) ? MTD_OPS_RAW
:
462 if (ops
.ooboffs
&& ops
.ooblen
> (mtd
->oobsize
- ops
.ooboffs
))
465 ops
.oobbuf
= kmalloc(length
, GFP_KERNEL
);
469 start
&= ~((uint64_t)mtd
->writesize
- 1);
470 ret
= mtd_read_oob(mtd
, start
, &ops
);
472 if (put_user(ops
.oobretlen
, retp
))
474 else if (ops
.oobretlen
&& copy_to_user(ptr
, ops
.oobbuf
,
481 * NAND returns -EBADMSG on ECC errors, but it returns the OOB
482 * data. For our userspace tools it is important to dump areas
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.
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.
492 if (mtd_is_bitflip_or_eccerr(ret
))
499 * Copies (and truncates, if necessary) data from the larger struct,
500 * nand_ecclayout, to the smaller, deprecated layout struct,
501 * nand_ecclayout_user. This is necessary only to support the deprecated
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).
506 static int shrink_ecclayout(const struct nand_ecclayout
*from
,
507 struct nand_ecclayout_user
*to
)
514 memset(to
, 0, sizeof(*to
));
516 to
->eccbytes
= min((int)from
->eccbytes
, MTD_MAX_ECCPOS_ENTRIES
);
517 for (i
= 0; i
< to
->eccbytes
; i
++)
518 to
->eccpos
[i
] = from
->eccpos
[i
];
520 for (i
= 0; i
< MTD_MAX_OOBFREE_ENTRIES
; i
++) {
521 if (from
->oobfree
[i
].length
== 0 &&
522 from
->oobfree
[i
].offset
== 0)
524 to
->oobavail
+= from
->oobfree
[i
].length
;
525 to
->oobfree
[i
] = from
->oobfree
[i
];
531 static int mtdchar_blkpg_ioctl(struct mtd_info
*mtd
,
532 struct blkpg_ioctl_arg __user
*arg
)
534 struct blkpg_ioctl_arg a
;
535 struct blkpg_partition p
;
537 if (!capable(CAP_SYS_ADMIN
))
540 if (copy_from_user(&a
, arg
, sizeof(struct blkpg_ioctl_arg
)))
543 if (copy_from_user(&p
, a
.data
, sizeof(struct blkpg_partition
)))
547 case BLKPG_ADD_PARTITION
:
549 /* Only master mtd device must be used to add partitions */
550 if (mtd_is_partition(mtd
))
553 return mtd_add_partition(mtd
, p
.devname
, p
.start
, p
.length
);
555 case BLKPG_DEL_PARTITION
:
560 return mtd_del_partition(mtd
, p
.pno
);
567 static int mtdchar_write_ioctl(struct mtd_info
*mtd
,
568 struct mtd_write_req __user
*argp
)
570 struct mtd_write_req req
;
571 struct mtd_oob_ops ops
;
572 void __user
*usr_data
, *usr_oob
;
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
))
583 ops
.len
= (size_t)req
.len
;
584 ops
.ooblen
= (size_t)req
.ooblen
;
587 usr_data
= (void __user
*)(uintptr_t)req
.usr_data
;
588 usr_oob
= (void __user
*)(uintptr_t)req
.usr_oob
;
591 ops
.datbuf
= memdup_user(usr_data
, ops
.len
);
592 if (IS_ERR(ops
.datbuf
))
593 return PTR_ERR(ops
.datbuf
);
599 ops
.oobbuf
= memdup_user(usr_oob
, ops
.ooblen
);
600 if (IS_ERR(ops
.oobbuf
)) {
602 return PTR_ERR(ops
.oobbuf
);
608 ret
= mtd_write_oob(mtd
, (loff_t
)req
.start
, &ops
);
616 static int mtdchar_ioctl(struct file
*file
, u_int cmd
, u_long arg
)
618 struct mtd_file_info
*mfi
= file
->private_data
;
619 struct mtd_info
*mtd
= mfi
->mtd
;
620 void __user
*argp
= (void __user
*)arg
;
623 struct mtd_info_user info
;
625 pr_debug("MTD_ioctl\n");
627 size
= (cmd
& IOCSIZE_MASK
) >> IOCSIZE_SHIFT
;
629 if (!access_ok(VERIFY_READ
, argp
, size
))
633 if (!access_ok(VERIFY_WRITE
, argp
, size
))
638 case MEMGETREGIONCOUNT
:
639 if (copy_to_user(argp
, &(mtd
->numeraseregions
), sizeof(int)))
643 case MEMGETREGIONINFO
:
646 struct mtd_erase_region_info
*kr
;
647 struct region_info_user __user
*ur
= argp
;
649 if (get_user(ur_idx
, &(ur
->regionindex
)))
652 if (ur_idx
>= mtd
->numeraseregions
)
655 kr
= &(mtd
->eraseregions
[ur_idx
]);
657 if (put_user(kr
->offset
, &(ur
->offset
))
658 || put_user(kr
->erasesize
, &(ur
->erasesize
))
659 || put_user(kr
->numblocks
, &(ur
->numblocks
)))
666 memset(&info
, 0, sizeof(info
));
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
;
673 /* The below field is obsolete */
675 if (copy_to_user(argp
, &info
, sizeof(struct mtd_info_user
)))
682 struct erase_info
*erase
;
684 if(!(file
->f_mode
& FMODE_WRITE
))
687 erase
=kzalloc(sizeof(struct erase_info
),GFP_KERNEL
);
691 wait_queue_head_t waitq
;
692 DECLARE_WAITQUEUE(wait
, current
);
694 init_waitqueue_head(&waitq
);
696 if (cmd
== MEMERASE64
) {
697 struct erase_info_user64 einfo64
;
699 if (copy_from_user(&einfo64
, argp
,
700 sizeof(struct erase_info_user64
))) {
704 erase
->addr
= einfo64
.start
;
705 erase
->len
= einfo64
.length
;
707 struct erase_info_user einfo32
;
709 if (copy_from_user(&einfo32
, argp
,
710 sizeof(struct erase_info_user
))) {
714 erase
->addr
= einfo32
.start
;
715 erase
->len
= einfo32
.length
;
718 erase
->callback
= mtdchar_erase_callback
;
719 erase
->priv
= (unsigned long)&waitq
;
722 FIXME: Allow INTERRUPTIBLE. Which means
723 not having the wait_queue head on the stack.
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.
730 ret
= mtd_erase(mtd
, erase
);
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
)
737 remove_wait_queue(&waitq
, &wait
);
738 set_current_state(TASK_RUNNING
);
740 ret
= (erase
->state
== MTD_ERASE_FAILED
)?-EIO
:0;
749 struct mtd_oob_buf buf
;
750 struct mtd_oob_buf __user
*buf_user
= argp
;
752 /* NOTE: writes return length to buf_user->length */
753 if (copy_from_user(&buf
, argp
, sizeof(buf
)))
756 ret
= mtdchar_writeoob(file
, mtd
, buf
.start
, buf
.length
,
757 buf
.ptr
, &buf_user
->length
);
763 struct mtd_oob_buf buf
;
764 struct mtd_oob_buf __user
*buf_user
= argp
;
766 /* NOTE: writes return length to buf_user->start */
767 if (copy_from_user(&buf
, argp
, sizeof(buf
)))
770 ret
= mtdchar_readoob(file
, mtd
, buf
.start
, buf
.length
,
771 buf
.ptr
, &buf_user
->start
);
777 struct mtd_oob_buf64 buf
;
778 struct mtd_oob_buf64 __user
*buf_user
= argp
;
780 if (copy_from_user(&buf
, argp
, sizeof(buf
)))
783 ret
= mtdchar_writeoob(file
, mtd
, buf
.start
, buf
.length
,
784 (void __user
*)(uintptr_t)buf
.usr_ptr
,
791 struct mtd_oob_buf64 buf
;
792 struct mtd_oob_buf64 __user
*buf_user
= argp
;
794 if (copy_from_user(&buf
, argp
, sizeof(buf
)))
797 ret
= mtdchar_readoob(file
, mtd
, buf
.start
, buf
.length
,
798 (void __user
*)(uintptr_t)buf
.usr_ptr
,
805 ret
= mtdchar_write_ioctl(mtd
,
806 (struct mtd_write_req __user
*)arg
);
812 struct erase_info_user einfo
;
814 if (copy_from_user(&einfo
, argp
, sizeof(einfo
)))
817 ret
= mtd_lock(mtd
, einfo
.start
, einfo
.length
);
823 struct erase_info_user einfo
;
825 if (copy_from_user(&einfo
, argp
, sizeof(einfo
)))
828 ret
= mtd_unlock(mtd
, einfo
.start
, einfo
.length
);
834 struct erase_info_user einfo
;
836 if (copy_from_user(&einfo
, argp
, sizeof(einfo
)))
839 ret
= mtd_is_locked(mtd
, einfo
.start
, einfo
.length
);
843 /* Legacy interface */
846 struct nand_oobinfo oi
;
850 if (mtd
->ecclayout
->eccbytes
> ARRAY_SIZE(oi
.eccpos
))
853 oi
.useecc
= MTD_NANDECC_AUTOPLACE
;
854 memcpy(&oi
.eccpos
, mtd
->ecclayout
->eccpos
, sizeof(oi
.eccpos
));
855 memcpy(&oi
.oobfree
, mtd
->ecclayout
->oobfree
,
857 oi
.eccbytes
= mtd
->ecclayout
->eccbytes
;
859 if (copy_to_user(argp
, &oi
, sizeof(struct nand_oobinfo
)))
868 if (copy_from_user(&offs
, argp
, sizeof(loff_t
)))
870 return mtd_block_isbad(mtd
, offs
);
878 if (copy_from_user(&offs
, argp
, sizeof(loff_t
)))
880 return mtd_block_markbad(mtd
, offs
);
884 #ifdef CONFIG_HAVE_MTD_OTP
888 if (copy_from_user(&mode
, argp
, sizeof(int)))
891 mfi
->mode
= MTD_FILE_MODE_NORMAL
;
893 ret
= otp_select_filemode(mfi
, mode
);
899 case OTPGETREGIONCOUNT
:
900 case OTPGETREGIONINFO
:
902 struct otp_info
*buf
= kmalloc(4096, GFP_KERNEL
);
906 case MTD_FILE_MODE_OTP_FACTORY
:
907 ret
= mtd_get_fact_prot_info(mtd
, buf
, 4096);
909 case MTD_FILE_MODE_OTP_USER
:
910 ret
= mtd_get_user_prot_info(mtd
, buf
, 4096);
917 if (cmd
== OTPGETREGIONCOUNT
) {
918 int nbr
= ret
/ sizeof(struct otp_info
);
919 ret
= copy_to_user(argp
, &nbr
, sizeof(int));
921 ret
= copy_to_user(argp
, buf
, ret
);
931 struct otp_info oinfo
;
933 if (mfi
->mode
!= MTD_FILE_MODE_OTP_USER
)
935 if (copy_from_user(&oinfo
, argp
, sizeof(oinfo
)))
937 ret
= mtd_lock_user_prot_reg(mtd
, oinfo
.start
, oinfo
.length
);
942 /* This ioctl is being deprecated - it truncates the ECC layout */
945 struct nand_ecclayout_user
*usrlay
;
950 usrlay
= kmalloc(sizeof(*usrlay
), GFP_KERNEL
);
954 shrink_ecclayout(mtd
->ecclayout
, usrlay
);
956 if (copy_to_user(argp
, usrlay
, sizeof(*usrlay
)))
964 if (copy_to_user(argp
, &mtd
->ecc_stats
,
965 sizeof(struct mtd_ecc_stats
)))
975 case MTD_FILE_MODE_OTP_FACTORY
:
976 case MTD_FILE_MODE_OTP_USER
:
977 ret
= otp_select_filemode(mfi
, arg
);
980 case MTD_FILE_MODE_RAW
:
981 if (!mtd_has_oob(mtd
))
985 case MTD_FILE_MODE_NORMAL
:
996 ret
= mtdchar_blkpg_ioctl(mtd
,
997 (struct blkpg_ioctl_arg __user
*)arg
);
1003 /* No reread partition feature. Just return ok */
1013 } /* memory_ioctl */
1015 static long mtdchar_unlocked_ioctl(struct file
*file
, u_int cmd
, u_long arg
)
1019 mutex_lock(&mtd_mutex
);
1020 ret
= mtdchar_ioctl(file
, cmd
, arg
);
1021 mutex_unlock(&mtd_mutex
);
1026 #ifdef CONFIG_COMPAT
1028 struct mtd_oob_buf32
{
1031 compat_caddr_t ptr
; /* unsigned char* */
1034 #define MEMWRITEOOB32 _IOWR('M', 3, struct mtd_oob_buf32)
1035 #define MEMREADOOB32 _IOWR('M', 4, struct mtd_oob_buf32)
1037 static long mtdchar_compat_ioctl(struct file
*file
, unsigned int cmd
,
1040 struct mtd_file_info
*mfi
= file
->private_data
;
1041 struct mtd_info
*mtd
= mfi
->mtd
;
1042 void __user
*argp
= compat_ptr(arg
);
1045 mutex_lock(&mtd_mutex
);
1050 struct mtd_oob_buf32 buf
;
1051 struct mtd_oob_buf32 __user
*buf_user
= argp
;
1053 if (copy_from_user(&buf
, argp
, sizeof(buf
)))
1056 ret
= mtdchar_writeoob(file
, mtd
, buf
.start
,
1057 buf
.length
, compat_ptr(buf
.ptr
),
1064 struct mtd_oob_buf32 buf
;
1065 struct mtd_oob_buf32 __user
*buf_user
= argp
;
1067 /* NOTE: writes return length to buf->start */
1068 if (copy_from_user(&buf
, argp
, sizeof(buf
)))
1071 ret
= mtdchar_readoob(file
, mtd
, buf
.start
,
1072 buf
.length
, compat_ptr(buf
.ptr
),
1077 ret
= mtdchar_ioctl(file
, cmd
, (unsigned long)argp
);
1080 mutex_unlock(&mtd_mutex
);
1085 #endif /* CONFIG_COMPAT */
1088 * try to determine where a shared mapping can be made
1089 * - only supported for NOMMU at the moment (MMU can't doesn't copy private
1093 static unsigned long mtdchar_get_unmapped_area(struct file
*file
,
1096 unsigned long pgoff
,
1097 unsigned long flags
)
1099 struct mtd_file_info
*mfi
= file
->private_data
;
1100 struct mtd_info
*mtd
= mfi
->mtd
;
1101 unsigned long offset
;
1105 return (unsigned long) -EINVAL
;
1107 if (len
> mtd
->size
|| pgoff
>= (mtd
->size
>> PAGE_SHIFT
))
1108 return (unsigned long) -EINVAL
;
1110 offset
= pgoff
<< PAGE_SHIFT
;
1111 if (offset
> mtd
->size
- len
)
1112 return (unsigned long) -EINVAL
;
1114 ret
= mtd_get_unmapped_area(mtd
, len
, offset
, flags
);
1115 return ret
== -EOPNOTSUPP
? -ENOSYS
: ret
;
1120 * set up a mapping for shared memory segments
1122 static int mtdchar_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1125 struct mtd_file_info
*mfi
= file
->private_data
;
1126 struct mtd_info
*mtd
= mfi
->mtd
;
1127 struct map_info
*map
= mtd
->priv
;
1128 unsigned long start
;
1132 if (mtd
->type
== MTD_RAM
|| mtd
->type
== MTD_ROM
) {
1133 off
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1135 len
= PAGE_ALIGN((start
& ~PAGE_MASK
) + map
->size
);
1137 if ((vma
->vm_end
- vma
->vm_start
+ off
) > len
)
1141 vma
->vm_pgoff
= off
>> PAGE_SHIFT
;
1142 vma
->vm_flags
|= VM_IO
| VM_RESERVED
;
1144 #ifdef pgprot_noncached
1145 if (file
->f_flags
& O_DSYNC
|| off
>= __pa(high_memory
))
1146 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
1148 if (io_remap_pfn_range(vma
, vma
->vm_start
, off
>> PAGE_SHIFT
,
1149 vma
->vm_end
- vma
->vm_start
,
1157 return vma
->vm_flags
& VM_SHARED
? 0 : -ENOSYS
;
1161 static const struct file_operations mtd_fops
= {
1162 .owner
= THIS_MODULE
,
1163 .llseek
= mtdchar_lseek
,
1164 .read
= mtdchar_read
,
1165 .write
= mtdchar_write
,
1166 .unlocked_ioctl
= mtdchar_unlocked_ioctl
,
1167 #ifdef CONFIG_COMPAT
1168 .compat_ioctl
= mtdchar_compat_ioctl
,
1170 .open
= mtdchar_open
,
1171 .release
= mtdchar_close
,
1172 .mmap
= mtdchar_mmap
,
1174 .get_unmapped_area
= mtdchar_get_unmapped_area
,
1178 static struct dentry
*mtd_inodefs_mount(struct file_system_type
*fs_type
,
1179 int flags
, const char *dev_name
, void *data
)
1181 return mount_pseudo(fs_type
, "mtd_inode:", NULL
, NULL
, MTD_INODE_FS_MAGIC
);
1184 static struct file_system_type mtd_inodefs_type
= {
1185 .name
= "mtd_inodefs",
1186 .mount
= mtd_inodefs_mount
,
1187 .kill_sb
= kill_anon_super
,
1190 static void mtdchar_notify_add(struct mtd_info
*mtd
)
1194 static void mtdchar_notify_remove(struct mtd_info
*mtd
)
1196 struct inode
*mtd_ino
= ilookup(mtd_inode_mnt
->mnt_sb
, mtd
->index
);
1199 /* Destroy the inode if it exists */
1200 clear_nlink(mtd_ino
);
1205 static struct mtd_notifier mtdchar_notifier
= {
1206 .add
= mtdchar_notify_add
,
1207 .remove
= mtdchar_notify_remove
,
1210 static int __init
init_mtdchar(void)
1214 ret
= __register_chrdev(MTD_CHAR_MAJOR
, 0, 1 << MINORBITS
,
1217 pr_notice("Can't allocate major number %d for "
1218 "Memory Technology Devices.\n", MTD_CHAR_MAJOR
);
1222 ret
= register_filesystem(&mtd_inodefs_type
);
1224 pr_notice("Can't register mtd_inodefs filesystem: %d\n", ret
);
1225 goto err_unregister_chdev
;
1228 mtd_inode_mnt
= kern_mount(&mtd_inodefs_type
);
1229 if (IS_ERR(mtd_inode_mnt
)) {
1230 ret
= PTR_ERR(mtd_inode_mnt
);
1231 pr_notice("Error mounting mtd_inodefs filesystem: %d\n", ret
);
1232 goto err_unregister_filesystem
;
1234 register_mtd_user(&mtdchar_notifier
);
1238 err_unregister_filesystem
:
1239 unregister_filesystem(&mtd_inodefs_type
);
1240 err_unregister_chdev
:
1241 __unregister_chrdev(MTD_CHAR_MAJOR
, 0, 1 << MINORBITS
, "mtd");
1245 static void __exit
cleanup_mtdchar(void)
1247 unregister_mtd_user(&mtdchar_notifier
);
1248 kern_unmount(mtd_inode_mnt
);
1249 unregister_filesystem(&mtd_inodefs_type
);
1250 __unregister_chrdev(MTD_CHAR_MAJOR
, 0, 1 << MINORBITS
, "mtd");
1253 module_init(init_mtdchar
);
1254 module_exit(cleanup_mtdchar
);
1256 MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR
);
1258 MODULE_LICENSE("GPL");
1259 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
1260 MODULE_DESCRIPTION("Direct character-device access to MTD devices");
1261 MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR
);