diff options
-rw-r--r-- | drivers/mtd/mtdchar.c | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c index a8e69dd2b2e4..c27e65e3e291 100644 --- a/drivers/mtd/mtdchar.c +++ b/drivers/mtd/mtdchar.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/mount.h> | 18 | #include <linux/mount.h> |
19 | 19 | ||
20 | #include <linux/mtd/mtd.h> | 20 | #include <linux/mtd/mtd.h> |
21 | #include <linux/mtd/map.h> | ||
21 | #include <linux/mtd/compatmac.h> | 22 | #include <linux/mtd/compatmac.h> |
22 | 23 | ||
23 | #include <asm/uaccess.h> | 24 | #include <asm/uaccess.h> |
@@ -955,9 +956,34 @@ static int mtd_mmap(struct file *file, struct vm_area_struct *vma) | |||
955 | #ifdef CONFIG_MMU | 956 | #ifdef CONFIG_MMU |
956 | struct mtd_file_info *mfi = file->private_data; | 957 | struct mtd_file_info *mfi = file->private_data; |
957 | struct mtd_info *mtd = mfi->mtd; | 958 | struct mtd_info *mtd = mfi->mtd; |
959 | struct map_info *map = mtd->priv; | ||
960 | unsigned long start; | ||
961 | unsigned long off; | ||
962 | u32 len; | ||
963 | |||
964 | if (mtd->type == MTD_RAM || mtd->type == MTD_ROM) { | ||
965 | off = vma->vm_pgoff << PAGE_SHIFT; | ||
966 | start = map->phys; | ||
967 | len = PAGE_ALIGN((start & ~PAGE_MASK) + map->size); | ||
968 | start &= PAGE_MASK; | ||
969 | if ((vma->vm_end - vma->vm_start + off) > len) | ||
970 | return -EINVAL; | ||
971 | |||
972 | off += start; | ||
973 | vma->vm_pgoff = off >> PAGE_SHIFT; | ||
974 | vma->vm_flags |= VM_IO | VM_RESERVED; | ||
975 | |||
976 | #ifdef pgprot_noncached | ||
977 | if (file->f_flags & O_DSYNC || off >= __pa(high_memory)) | ||
978 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); | ||
979 | #endif | ||
980 | if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT, | ||
981 | vma->vm_end - vma->vm_start, | ||
982 | vma->vm_page_prot)) | ||
983 | return -EAGAIN; | ||
958 | 984 | ||
959 | if (mtd->type == MTD_RAM || mtd->type == MTD_ROM) | ||
960 | return 0; | 985 | return 0; |
986 | } | ||
961 | return -ENOSYS; | 987 | return -ENOSYS; |
962 | #else | 988 | #else |
963 | return vma->vm_flags & VM_SHARED ? 0 : -ENOSYS; | 989 | return vma->vm_flags & VM_SHARED ? 0 : -ENOSYS; |