Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Character-device access to raw MTD devices. |
| 3 | * |
| 4 | */ |
| 5 | |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 6 | #include <linux/device.h> |
| 7 | #include <linux/fs.h> |
Andrew Morton | 0c1eafd | 2007-08-10 13:01:06 -0700 | [diff] [blame] | 8 | #include <linux/mm.h> |
Artem Bityutskiy | 9c74034 | 2006-10-11 14:52:47 +0300 | [diff] [blame] | 9 | #include <linux/err.h> |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 10 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/module.h> |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 13 | #include <linux/slab.h> |
| 14 | #include <linux/sched.h> |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 15 | #include <linux/smp_lock.h> |
David Howells | 402d326 | 2009-02-12 10:40:00 +0000 | [diff] [blame] | 16 | #include <linux/backing-dev.h> |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 17 | #include <linux/compat.h> |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 18 | #include <linux/mount.h> |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/mtd/mtd.h> |
| 21 | #include <linux/mtd/compatmac.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 23 | #include <asm/uaccess.h> |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 24 | |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 25 | #define MTD_INODE_FS_MAGIC 0x11307854 |
| 26 | static struct vfsmount *mtd_inode_mnt __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Nicolas Pitre | 045e9a5 | 2005-02-08 19:12:53 +0000 | [diff] [blame] | 28 | /* |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 29 | * Data structure to hold the pointer to the mtd device as well |
| 30 | * as mode information ofr various use cases. |
Nicolas Pitre | 045e9a5 | 2005-02-08 19:12:53 +0000 | [diff] [blame] | 31 | */ |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 32 | struct mtd_file_info { |
| 33 | struct mtd_info *mtd; |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 34 | struct inode *ino; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 35 | enum mtd_file_modes mode; |
| 36 | }; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | static loff_t mtd_lseek (struct file *file, loff_t offset, int orig) |
| 39 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 40 | struct mtd_file_info *mfi = file->private_data; |
| 41 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | switch (orig) { |
Josef 'Jeff' Sipek | ea59830 | 2006-09-16 21:09:29 -0400 | [diff] [blame] | 44 | case SEEK_SET: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | break; |
Josef 'Jeff' Sipek | ea59830 | 2006-09-16 21:09:29 -0400 | [diff] [blame] | 46 | case SEEK_CUR: |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 47 | offset += file->f_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | break; |
Josef 'Jeff' Sipek | ea59830 | 2006-09-16 21:09:29 -0400 | [diff] [blame] | 49 | case SEEK_END: |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 50 | offset += mtd->size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | break; |
| 52 | default: |
| 53 | return -EINVAL; |
| 54 | } |
| 55 | |
Herbert Valerio Riedel | 1887f51 | 2006-06-24 00:03:36 +0200 | [diff] [blame] | 56 | if (offset >= 0 && offset <= mtd->size) |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 57 | return file->f_pos = offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 59 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | |
| 63 | |
| 64 | static int mtd_open(struct inode *inode, struct file *file) |
| 65 | { |
| 66 | int minor = iminor(inode); |
| 67 | int devnum = minor >> 1; |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 68 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | struct mtd_info *mtd; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 70 | struct mtd_file_info *mfi; |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 71 | struct inode *mtd_ino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | DEBUG(MTD_DEBUG_LEVEL0, "MTD_open\n"); |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | /* You can't open the RO devices RW */ |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 76 | if ((file->f_mode & FMODE_WRITE) && (minor & 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | return -EACCES; |
| 78 | |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 79 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | mtd = get_mtd_device(NULL, devnum); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 81 | |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 82 | if (IS_ERR(mtd)) { |
| 83 | ret = PTR_ERR(mtd); |
| 84 | goto out; |
| 85 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 86 | |
David Howells | 402d326 | 2009-02-12 10:40:00 +0000 | [diff] [blame] | 87 | if (mtd->type == MTD_ABSENT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | put_mtd_device(mtd); |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 89 | ret = -ENODEV; |
| 90 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 93 | mtd_ino = iget_locked(mtd_inode_mnt->mnt_sb, devnum); |
| 94 | if (!mtd_ino) { |
| 95 | put_mtd_device(mtd); |
| 96 | ret = -ENOMEM; |
| 97 | goto out; |
| 98 | } |
| 99 | if (mtd_ino->i_state & I_NEW) { |
| 100 | mtd_ino->i_private = mtd; |
| 101 | mtd_ino->i_mode = S_IFCHR; |
| 102 | mtd_ino->i_data.backing_dev_info = mtd->backing_dev_info; |
| 103 | unlock_new_inode(mtd_ino); |
| 104 | } |
| 105 | file->f_mapping = mtd_ino->i_mapping; |
David Howells | 402d326 | 2009-02-12 10:40:00 +0000 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | /* You can't open it RW if it's not a writeable device */ |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 108 | if ((file->f_mode & FMODE_WRITE) && !(mtd->flags & MTD_WRITEABLE)) { |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 109 | iput(mtd_ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | put_mtd_device(mtd); |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 111 | ret = -EACCES; |
| 112 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 114 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 115 | mfi = kzalloc(sizeof(*mfi), GFP_KERNEL); |
| 116 | if (!mfi) { |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 117 | iput(mtd_ino); |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 118 | put_mtd_device(mtd); |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 119 | ret = -ENOMEM; |
| 120 | goto out; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 121 | } |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 122 | mfi->ino = mtd_ino; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 123 | mfi->mtd = mtd; |
| 124 | file->private_data = mfi; |
| 125 | |
Jonathan Corbet | 6071239 | 2008-05-15 10:10:37 -0600 | [diff] [blame] | 126 | out: |
| 127 | unlock_kernel(); |
| 128 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } /* mtd_open */ |
| 130 | |
| 131 | /*====================================================================*/ |
| 132 | |
| 133 | static int mtd_close(struct inode *inode, struct file *file) |
| 134 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 135 | struct mtd_file_info *mfi = file->private_data; |
| 136 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n"); |
| 139 | |
Joakim Tjernlund | 7eafaed | 2007-06-27 00:56:40 +0200 | [diff] [blame] | 140 | /* Only sync if opened RW */ |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 141 | if ((file->f_mode & FMODE_WRITE) && mtd->sync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | mtd->sync(mtd); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 143 | |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 144 | iput(mfi->ino); |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | put_mtd_device(mtd); |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 147 | file->private_data = NULL; |
| 148 | kfree(mfi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | return 0; |
| 151 | } /* mtd_close */ |
| 152 | |
| 153 | /* FIXME: This _really_ needs to die. In 2.5, we should lock the |
| 154 | userspace buffer down and use it directly with readv/writev. |
| 155 | */ |
| 156 | #define MAX_KMALLOC_SIZE 0x20000 |
| 157 | |
| 158 | static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos) |
| 159 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 160 | struct mtd_file_info *mfi = file->private_data; |
| 161 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | size_t retlen=0; |
| 163 | size_t total_retlen=0; |
| 164 | int ret=0; |
| 165 | int len; |
| 166 | char *kbuf; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | DEBUG(MTD_DEBUG_LEVEL0,"MTD_read\n"); |
| 169 | |
| 170 | if (*ppos + count > mtd->size) |
| 171 | count = mtd->size - *ppos; |
| 172 | |
| 173 | if (!count) |
| 174 | return 0; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | /* FIXME: Use kiovec in 2.5 to lock down the user's buffers |
| 177 | and pass them directly to the MTD functions */ |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 178 | |
| 179 | if (count > MAX_KMALLOC_SIZE) |
| 180 | kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL); |
| 181 | else |
| 182 | kbuf=kmalloc(count, GFP_KERNEL); |
| 183 | |
| 184 | if (!kbuf) |
| 185 | return -ENOMEM; |
| 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | while (count) { |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 188 | |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 189 | if (count > MAX_KMALLOC_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | len = MAX_KMALLOC_SIZE; |
| 191 | else |
| 192 | len = count; |
| 193 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 194 | switch (mfi->mode) { |
| 195 | case MTD_MODE_OTP_FACTORY: |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 196 | ret = mtd->read_fact_prot_reg(mtd, *ppos, len, &retlen, kbuf); |
| 197 | break; |
| 198 | case MTD_MODE_OTP_USER: |
| 199 | ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf); |
| 200 | break; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 201 | case MTD_MODE_RAW: |
| 202 | { |
| 203 | struct mtd_oob_ops ops; |
| 204 | |
| 205 | ops.mode = MTD_OOB_RAW; |
| 206 | ops.datbuf = kbuf; |
| 207 | ops.oobbuf = NULL; |
| 208 | ops.len = len; |
| 209 | |
| 210 | ret = mtd->read_oob(mtd, *ppos, &ops); |
| 211 | retlen = ops.retlen; |
| 212 | break; |
| 213 | } |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 214 | default: |
Thomas Gleixner | f4a43cf | 2006-05-28 11:01:53 +0200 | [diff] [blame] | 215 | ret = mtd->read(mtd, *ppos, len, &retlen, kbuf); |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* Nand returns -EBADMSG on ecc errors, but it returns |
| 218 | * the data. For our userspace tools it is important |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 219 | * to dump areas with ecc errors ! |
Thomas Gleixner | 9a1fcdf | 2006-05-29 14:56:39 +0200 | [diff] [blame] | 220 | * For kernel internal usage it also might return -EUCLEAN |
| 221 | * to signal the caller that a bitflip has occured and has |
| 222 | * been corrected by the ECC algorithm. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | * Userspace software which accesses NAND this way |
| 224 | * must be aware of the fact that it deals with NAND |
| 225 | */ |
Thomas Gleixner | 9a1fcdf | 2006-05-29 14:56:39 +0200 | [diff] [blame] | 226 | if (!ret || (ret == -EUCLEAN) || (ret == -EBADMSG)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | *ppos += retlen; |
| 228 | if (copy_to_user(buf, kbuf, retlen)) { |
Thomas Gleixner | f4a43cf | 2006-05-28 11:01:53 +0200 | [diff] [blame] | 229 | kfree(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | return -EFAULT; |
| 231 | } |
| 232 | else |
| 233 | total_retlen += retlen; |
| 234 | |
| 235 | count -= retlen; |
| 236 | buf += retlen; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 237 | if (retlen == 0) |
| 238 | count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | else { |
| 241 | kfree(kbuf); |
| 242 | return ret; |
| 243 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 247 | kfree(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | return total_retlen; |
| 249 | } /* mtd_read */ |
| 250 | |
| 251 | static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos) |
| 252 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 253 | struct mtd_file_info *mfi = file->private_data; |
| 254 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | char *kbuf; |
| 256 | size_t retlen; |
| 257 | size_t total_retlen=0; |
| 258 | int ret=0; |
| 259 | int len; |
| 260 | |
| 261 | DEBUG(MTD_DEBUG_LEVEL0,"MTD_write\n"); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 262 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | if (*ppos == mtd->size) |
| 264 | return -ENOSPC; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | if (*ppos + count > mtd->size) |
| 267 | count = mtd->size - *ppos; |
| 268 | |
| 269 | if (!count) |
| 270 | return 0; |
| 271 | |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 272 | if (count > MAX_KMALLOC_SIZE) |
| 273 | kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL); |
| 274 | else |
| 275 | kbuf=kmalloc(count, GFP_KERNEL); |
| 276 | |
| 277 | if (!kbuf) |
| 278 | return -ENOMEM; |
| 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | while (count) { |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 281 | |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 282 | if (count > MAX_KMALLOC_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | len = MAX_KMALLOC_SIZE; |
| 284 | else |
| 285 | len = count; |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | if (copy_from_user(kbuf, buf, len)) { |
| 288 | kfree(kbuf); |
| 289 | return -EFAULT; |
| 290 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 291 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 292 | switch (mfi->mode) { |
| 293 | case MTD_MODE_OTP_FACTORY: |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 294 | ret = -EROFS; |
| 295 | break; |
| 296 | case MTD_MODE_OTP_USER: |
| 297 | if (!mtd->write_user_prot_reg) { |
| 298 | ret = -EOPNOTSUPP; |
| 299 | break; |
| 300 | } |
| 301 | ret = mtd->write_user_prot_reg(mtd, *ppos, len, &retlen, kbuf); |
| 302 | break; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 303 | |
| 304 | case MTD_MODE_RAW: |
| 305 | { |
| 306 | struct mtd_oob_ops ops; |
| 307 | |
| 308 | ops.mode = MTD_OOB_RAW; |
| 309 | ops.datbuf = kbuf; |
| 310 | ops.oobbuf = NULL; |
| 311 | ops.len = len; |
| 312 | |
| 313 | ret = mtd->write_oob(mtd, *ppos, &ops); |
| 314 | retlen = ops.retlen; |
| 315 | break; |
| 316 | } |
| 317 | |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 318 | default: |
| 319 | ret = (*(mtd->write))(mtd, *ppos, len, &retlen, kbuf); |
| 320 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | if (!ret) { |
| 322 | *ppos += retlen; |
| 323 | total_retlen += retlen; |
| 324 | count -= retlen; |
| 325 | buf += retlen; |
| 326 | } |
| 327 | else { |
| 328 | kfree(kbuf); |
| 329 | return ret; |
| 330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | } |
| 332 | |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 333 | kfree(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | return total_retlen; |
| 335 | } /* mtd_write */ |
| 336 | |
| 337 | /*====================================================================== |
| 338 | |
| 339 | IOCTL calls for getting device parameters. |
| 340 | |
| 341 | ======================================================================*/ |
| 342 | static void mtdchar_erase_callback (struct erase_info *instr) |
| 343 | { |
| 344 | wake_up((wait_queue_head_t *)instr->priv); |
| 345 | } |
| 346 | |
David Brownell | 34a8244 | 2008-07-30 12:35:05 -0700 | [diff] [blame] | 347 | #ifdef CONFIG_HAVE_MTD_OTP |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 348 | static int otp_select_filemode(struct mtd_file_info *mfi, int mode) |
| 349 | { |
| 350 | struct mtd_info *mtd = mfi->mtd; |
| 351 | int ret = 0; |
| 352 | |
| 353 | switch (mode) { |
| 354 | case MTD_OTP_FACTORY: |
| 355 | if (!mtd->read_fact_prot_reg) |
| 356 | ret = -EOPNOTSUPP; |
| 357 | else |
| 358 | mfi->mode = MTD_MODE_OTP_FACTORY; |
| 359 | break; |
| 360 | case MTD_OTP_USER: |
| 361 | if (!mtd->read_fact_prot_reg) |
| 362 | ret = -EOPNOTSUPP; |
| 363 | else |
| 364 | mfi->mode = MTD_MODE_OTP_USER; |
| 365 | break; |
| 366 | default: |
| 367 | ret = -EINVAL; |
| 368 | case MTD_OTP_OFF: |
| 369 | break; |
| 370 | } |
| 371 | return ret; |
| 372 | } |
| 373 | #else |
| 374 | # define otp_select_filemode(f,m) -EOPNOTSUPP |
| 375 | #endif |
| 376 | |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 377 | static int mtd_do_writeoob(struct file *file, struct mtd_info *mtd, |
| 378 | uint64_t start, uint32_t length, void __user *ptr, |
| 379 | uint32_t __user *retp) |
| 380 | { |
| 381 | struct mtd_oob_ops ops; |
| 382 | uint32_t retlen; |
| 383 | int ret = 0; |
| 384 | |
| 385 | if (!(file->f_mode & FMODE_WRITE)) |
| 386 | return -EPERM; |
| 387 | |
| 388 | if (length > 4096) |
| 389 | return -EINVAL; |
| 390 | |
| 391 | if (!mtd->write_oob) |
| 392 | ret = -EOPNOTSUPP; |
| 393 | else |
Roel Kluin | 0040476 | 2010-01-29 10:35:04 +0100 | [diff] [blame] | 394 | ret = access_ok(VERIFY_READ, ptr, length) ? 0 : -EFAULT; |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 395 | |
| 396 | if (ret) |
| 397 | return ret; |
| 398 | |
| 399 | ops.ooblen = length; |
| 400 | ops.ooboffs = start & (mtd->oobsize - 1); |
| 401 | ops.datbuf = NULL; |
| 402 | ops.mode = MTD_OOB_PLACE; |
| 403 | |
| 404 | if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs)) |
| 405 | return -EINVAL; |
| 406 | |
Julia Lawall | df1f1d1 | 2010-05-22 10:22:49 +0200 | [diff] [blame^] | 407 | ops.oobbuf = memdup_user(ptr, length); |
| 408 | if (IS_ERR(ops.oobbuf)) |
| 409 | return PTR_ERR(ops.oobbuf); |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 410 | |
| 411 | start &= ~((uint64_t)mtd->oobsize - 1); |
| 412 | ret = mtd->write_oob(mtd, start, &ops); |
| 413 | |
| 414 | if (ops.oobretlen > 0xFFFFFFFFU) |
| 415 | ret = -EOVERFLOW; |
| 416 | retlen = ops.oobretlen; |
| 417 | if (copy_to_user(retp, &retlen, sizeof(length))) |
| 418 | ret = -EFAULT; |
| 419 | |
| 420 | kfree(ops.oobbuf); |
| 421 | return ret; |
| 422 | } |
| 423 | |
| 424 | static int mtd_do_readoob(struct mtd_info *mtd, uint64_t start, |
| 425 | uint32_t length, void __user *ptr, uint32_t __user *retp) |
| 426 | { |
| 427 | struct mtd_oob_ops ops; |
| 428 | int ret = 0; |
| 429 | |
| 430 | if (length > 4096) |
| 431 | return -EINVAL; |
| 432 | |
| 433 | if (!mtd->read_oob) |
| 434 | ret = -EOPNOTSUPP; |
| 435 | else |
| 436 | ret = access_ok(VERIFY_WRITE, ptr, |
| 437 | length) ? 0 : -EFAULT; |
| 438 | if (ret) |
| 439 | return ret; |
| 440 | |
| 441 | ops.ooblen = length; |
| 442 | ops.ooboffs = start & (mtd->oobsize - 1); |
| 443 | ops.datbuf = NULL; |
| 444 | ops.mode = MTD_OOB_PLACE; |
| 445 | |
| 446 | if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs)) |
| 447 | return -EINVAL; |
| 448 | |
| 449 | ops.oobbuf = kmalloc(length, GFP_KERNEL); |
| 450 | if (!ops.oobbuf) |
| 451 | return -ENOMEM; |
| 452 | |
| 453 | start &= ~((uint64_t)mtd->oobsize - 1); |
| 454 | ret = mtd->read_oob(mtd, start, &ops); |
| 455 | |
| 456 | if (put_user(ops.oobretlen, retp)) |
| 457 | ret = -EFAULT; |
| 458 | else if (ops.oobretlen && copy_to_user(ptr, ops.oobbuf, |
| 459 | ops.oobretlen)) |
| 460 | ret = -EFAULT; |
| 461 | |
| 462 | kfree(ops.oobbuf); |
| 463 | return ret; |
| 464 | } |
| 465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | static int mtd_ioctl(struct inode *inode, struct file *file, |
| 467 | u_int cmd, u_long arg) |
| 468 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 469 | struct mtd_file_info *mfi = file->private_data; |
| 470 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | void __user *argp = (void __user *)arg; |
| 472 | int ret = 0; |
| 473 | u_long size; |
Joern Engel | 73c619e | 2006-05-30 14:25:35 +0200 | [diff] [blame] | 474 | struct mtd_info_user info; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | DEBUG(MTD_DEBUG_LEVEL0, "MTD_ioctl\n"); |
| 477 | |
| 478 | size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT; |
| 479 | if (cmd & IOC_IN) { |
| 480 | if (!access_ok(VERIFY_READ, argp, size)) |
| 481 | return -EFAULT; |
| 482 | } |
| 483 | if (cmd & IOC_OUT) { |
| 484 | if (!access_ok(VERIFY_WRITE, argp, size)) |
| 485 | return -EFAULT; |
| 486 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | switch (cmd) { |
| 489 | case MEMGETREGIONCOUNT: |
| 490 | if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int))) |
| 491 | return -EFAULT; |
| 492 | break; |
| 493 | |
| 494 | case MEMGETREGIONINFO: |
| 495 | { |
Zev Weiss | b67c5f8 | 2008-09-01 05:02:12 -0700 | [diff] [blame] | 496 | uint32_t ur_idx; |
| 497 | struct mtd_erase_region_info *kr; |
H Hartley Sweeten | bcc98a4 | 2010-01-15 11:25:38 -0700 | [diff] [blame] | 498 | struct region_info_user __user *ur = argp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Zev Weiss | b67c5f8 | 2008-09-01 05:02:12 -0700 | [diff] [blame] | 500 | if (get_user(ur_idx, &(ur->regionindex))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | return -EFAULT; |
| 502 | |
Zev Weiss | b67c5f8 | 2008-09-01 05:02:12 -0700 | [diff] [blame] | 503 | kr = &(mtd->eraseregions[ur_idx]); |
| 504 | |
| 505 | if (put_user(kr->offset, &(ur->offset)) |
| 506 | || put_user(kr->erasesize, &(ur->erasesize)) |
| 507 | || put_user(kr->numblocks, &(ur->numblocks))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | return -EFAULT; |
Zev Weiss | b67c5f8 | 2008-09-01 05:02:12 -0700 | [diff] [blame] | 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | break; |
| 511 | } |
| 512 | |
| 513 | case MEMGETINFO: |
Joern Engel | 73c619e | 2006-05-30 14:25:35 +0200 | [diff] [blame] | 514 | info.type = mtd->type; |
| 515 | info.flags = mtd->flags; |
| 516 | info.size = mtd->size; |
| 517 | info.erasesize = mtd->erasesize; |
| 518 | info.writesize = mtd->writesize; |
| 519 | info.oobsize = mtd->oobsize; |
Artem Bityutskiy | 64f6071 | 2007-01-30 10:50:43 +0200 | [diff] [blame] | 520 | /* The below fields are obsolete */ |
| 521 | info.ecctype = -1; |
| 522 | info.eccsize = 0; |
Joern Engel | 73c619e | 2006-05-30 14:25:35 +0200 | [diff] [blame] | 523 | if (copy_to_user(argp, &info, sizeof(struct mtd_info_user))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | return -EFAULT; |
| 525 | break; |
| 526 | |
| 527 | case MEMERASE: |
Kevin Cernekee | 0dc54e9 | 2009-04-08 22:52:28 -0700 | [diff] [blame] | 528 | case MEMERASE64: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | { |
| 530 | struct erase_info *erase; |
| 531 | |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 532 | if(!(file->f_mode & FMODE_WRITE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | return -EPERM; |
| 534 | |
Burman Yan | 95b93a0 | 2006-11-15 21:10:29 +0200 | [diff] [blame] | 535 | erase=kzalloc(sizeof(struct erase_info),GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | if (!erase) |
| 537 | ret = -ENOMEM; |
| 538 | else { |
| 539 | wait_queue_head_t waitq; |
| 540 | DECLARE_WAITQUEUE(wait, current); |
| 541 | |
| 542 | init_waitqueue_head(&waitq); |
| 543 | |
Kevin Cernekee | 0dc54e9 | 2009-04-08 22:52:28 -0700 | [diff] [blame] | 544 | if (cmd == MEMERASE64) { |
| 545 | struct erase_info_user64 einfo64; |
| 546 | |
| 547 | if (copy_from_user(&einfo64, argp, |
| 548 | sizeof(struct erase_info_user64))) { |
| 549 | kfree(erase); |
| 550 | return -EFAULT; |
| 551 | } |
| 552 | erase->addr = einfo64.start; |
| 553 | erase->len = einfo64.length; |
| 554 | } else { |
| 555 | struct erase_info_user einfo32; |
| 556 | |
| 557 | if (copy_from_user(&einfo32, argp, |
| 558 | sizeof(struct erase_info_user))) { |
| 559 | kfree(erase); |
| 560 | return -EFAULT; |
| 561 | } |
| 562 | erase->addr = einfo32.start; |
| 563 | erase->len = einfo32.length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | } |
| 565 | erase->mtd = mtd; |
| 566 | erase->callback = mtdchar_erase_callback; |
| 567 | erase->priv = (unsigned long)&waitq; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | /* |
| 570 | FIXME: Allow INTERRUPTIBLE. Which means |
| 571 | not having the wait_queue head on the stack. |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | If the wq_head is on the stack, and we |
| 574 | leave because we got interrupted, then the |
| 575 | wq_head is no longer there when the |
| 576 | callback routine tries to wake us up. |
| 577 | */ |
| 578 | ret = mtd->erase(mtd, erase); |
| 579 | if (!ret) { |
| 580 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 581 | add_wait_queue(&waitq, &wait); |
| 582 | if (erase->state != MTD_ERASE_DONE && |
| 583 | erase->state != MTD_ERASE_FAILED) |
| 584 | schedule(); |
| 585 | remove_wait_queue(&waitq, &wait); |
| 586 | set_current_state(TASK_RUNNING); |
| 587 | |
| 588 | ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0; |
| 589 | } |
| 590 | kfree(erase); |
| 591 | } |
| 592 | break; |
| 593 | } |
| 594 | |
| 595 | case MEMWRITEOOB: |
| 596 | { |
| 597 | struct mtd_oob_buf buf; |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 598 | struct mtd_oob_buf __user *buf_user = argp; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 599 | |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 600 | /* NOTE: writes return length to buf_user->length */ |
| 601 | if (copy_from_user(&buf, argp, sizeof(buf))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | ret = -EFAULT; |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 603 | else |
| 604 | ret = mtd_do_writeoob(file, mtd, buf.start, buf.length, |
| 605 | buf.ptr, &buf_user->length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | case MEMREADOOB: |
| 610 | { |
| 611 | struct mtd_oob_buf buf; |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 612 | struct mtd_oob_buf __user *buf_user = argp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 614 | /* NOTE: writes return length to buf_user->start */ |
| 615 | if (copy_from_user(&buf, argp, sizeof(buf))) |
| 616 | ret = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | else |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 618 | ret = mtd_do_readoob(mtd, buf.start, buf.length, |
| 619 | buf.ptr, &buf_user->start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | break; |
| 621 | } |
| 622 | |
Kevin Cernekee | aea7cea | 2009-04-08 22:53:49 -0700 | [diff] [blame] | 623 | case MEMWRITEOOB64: |
| 624 | { |
| 625 | struct mtd_oob_buf64 buf; |
| 626 | struct mtd_oob_buf64 __user *buf_user = argp; |
| 627 | |
| 628 | if (copy_from_user(&buf, argp, sizeof(buf))) |
| 629 | ret = -EFAULT; |
| 630 | else |
| 631 | ret = mtd_do_writeoob(file, mtd, buf.start, buf.length, |
| 632 | (void __user *)(uintptr_t)buf.usr_ptr, |
| 633 | &buf_user->length); |
| 634 | break; |
| 635 | } |
| 636 | |
| 637 | case MEMREADOOB64: |
| 638 | { |
| 639 | struct mtd_oob_buf64 buf; |
| 640 | struct mtd_oob_buf64 __user *buf_user = argp; |
| 641 | |
| 642 | if (copy_from_user(&buf, argp, sizeof(buf))) |
| 643 | ret = -EFAULT; |
| 644 | else |
| 645 | ret = mtd_do_readoob(mtd, buf.start, buf.length, |
| 646 | (void __user *)(uintptr_t)buf.usr_ptr, |
| 647 | &buf_user->length); |
| 648 | break; |
| 649 | } |
| 650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | case MEMLOCK: |
| 652 | { |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 653 | struct erase_info_user einfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 655 | if (copy_from_user(&einfo, argp, sizeof(einfo))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | return -EFAULT; |
| 657 | |
| 658 | if (!mtd->lock) |
| 659 | ret = -EOPNOTSUPP; |
| 660 | else |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 661 | ret = mtd->lock(mtd, einfo.start, einfo.length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | break; |
| 663 | } |
| 664 | |
| 665 | case MEMUNLOCK: |
| 666 | { |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 667 | struct erase_info_user einfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 669 | if (copy_from_user(&einfo, argp, sizeof(einfo))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | return -EFAULT; |
| 671 | |
| 672 | if (!mtd->unlock) |
| 673 | ret = -EOPNOTSUPP; |
| 674 | else |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 675 | ret = mtd->unlock(mtd, einfo.start, einfo.length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | break; |
| 677 | } |
| 678 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 679 | /* Legacy interface */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | case MEMGETOOBSEL: |
| 681 | { |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 682 | struct nand_oobinfo oi; |
| 683 | |
| 684 | if (!mtd->ecclayout) |
| 685 | return -EOPNOTSUPP; |
| 686 | if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos)) |
| 687 | return -EINVAL; |
| 688 | |
| 689 | oi.useecc = MTD_NANDECC_AUTOPLACE; |
| 690 | memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos)); |
| 691 | memcpy(&oi.oobfree, mtd->ecclayout->oobfree, |
| 692 | sizeof(oi.oobfree)); |
Ricard Wanderlöf | d25ade7 | 2006-10-17 17:27:11 +0200 | [diff] [blame] | 693 | oi.eccbytes = mtd->ecclayout->eccbytes; |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 694 | |
| 695 | if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | return -EFAULT; |
| 697 | break; |
| 698 | } |
| 699 | |
| 700 | case MEMGETBADBLOCK: |
| 701 | { |
| 702 | loff_t offs; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 703 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | if (copy_from_user(&offs, argp, sizeof(loff_t))) |
| 705 | return -EFAULT; |
| 706 | if (!mtd->block_isbad) |
| 707 | ret = -EOPNOTSUPP; |
| 708 | else |
| 709 | return mtd->block_isbad(mtd, offs); |
| 710 | break; |
| 711 | } |
| 712 | |
| 713 | case MEMSETBADBLOCK: |
| 714 | { |
| 715 | loff_t offs; |
| 716 | |
| 717 | if (copy_from_user(&offs, argp, sizeof(loff_t))) |
| 718 | return -EFAULT; |
| 719 | if (!mtd->block_markbad) |
| 720 | ret = -EOPNOTSUPP; |
| 721 | else |
| 722 | return mtd->block_markbad(mtd, offs); |
| 723 | break; |
| 724 | } |
| 725 | |
David Brownell | 34a8244 | 2008-07-30 12:35:05 -0700 | [diff] [blame] | 726 | #ifdef CONFIG_HAVE_MTD_OTP |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 727 | case OTPSELECT: |
| 728 | { |
| 729 | int mode; |
| 730 | if (copy_from_user(&mode, argp, sizeof(int))) |
| 731 | return -EFAULT; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 732 | |
| 733 | mfi->mode = MTD_MODE_NORMAL; |
| 734 | |
| 735 | ret = otp_select_filemode(mfi, mode); |
| 736 | |
Nicolas Pitre | 81dba48 | 2005-04-01 16:36:15 +0100 | [diff] [blame] | 737 | file->f_pos = 0; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 738 | break; |
| 739 | } |
| 740 | |
| 741 | case OTPGETREGIONCOUNT: |
| 742 | case OTPGETREGIONINFO: |
| 743 | { |
| 744 | struct otp_info *buf = kmalloc(4096, GFP_KERNEL); |
| 745 | if (!buf) |
| 746 | return -ENOMEM; |
| 747 | ret = -EOPNOTSUPP; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 748 | switch (mfi->mode) { |
| 749 | case MTD_MODE_OTP_FACTORY: |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 750 | if (mtd->get_fact_prot_info) |
| 751 | ret = mtd->get_fact_prot_info(mtd, buf, 4096); |
| 752 | break; |
| 753 | case MTD_MODE_OTP_USER: |
| 754 | if (mtd->get_user_prot_info) |
| 755 | ret = mtd->get_user_prot_info(mtd, buf, 4096); |
| 756 | break; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 757 | default: |
| 758 | break; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 759 | } |
| 760 | if (ret >= 0) { |
| 761 | if (cmd == OTPGETREGIONCOUNT) { |
| 762 | int nbr = ret / sizeof(struct otp_info); |
| 763 | ret = copy_to_user(argp, &nbr, sizeof(int)); |
| 764 | } else |
| 765 | ret = copy_to_user(argp, buf, ret); |
| 766 | if (ret) |
| 767 | ret = -EFAULT; |
| 768 | } |
| 769 | kfree(buf); |
| 770 | break; |
| 771 | } |
| 772 | |
| 773 | case OTPLOCK: |
| 774 | { |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 775 | struct otp_info oinfo; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 776 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 777 | if (mfi->mode != MTD_MODE_OTP_USER) |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 778 | return -EINVAL; |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 779 | if (copy_from_user(&oinfo, argp, sizeof(oinfo))) |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 780 | return -EFAULT; |
| 781 | if (!mtd->lock_user_prot_reg) |
| 782 | return -EOPNOTSUPP; |
Harvey Harrison | 175428b | 2008-07-03 23:40:14 -0700 | [diff] [blame] | 783 | ret = mtd->lock_user_prot_reg(mtd, oinfo.start, oinfo.length); |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 784 | break; |
| 785 | } |
| 786 | #endif |
| 787 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 788 | case ECCGETLAYOUT: |
| 789 | { |
| 790 | if (!mtd->ecclayout) |
| 791 | return -EOPNOTSUPP; |
| 792 | |
Ricard Wanderlöf | d25ade7 | 2006-10-17 17:27:11 +0200 | [diff] [blame] | 793 | if (copy_to_user(argp, mtd->ecclayout, |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 794 | sizeof(struct nand_ecclayout))) |
| 795 | return -EFAULT; |
| 796 | break; |
| 797 | } |
| 798 | |
| 799 | case ECCGETSTATS: |
| 800 | { |
| 801 | if (copy_to_user(argp, &mtd->ecc_stats, |
| 802 | sizeof(struct mtd_ecc_stats))) |
| 803 | return -EFAULT; |
| 804 | break; |
| 805 | } |
| 806 | |
| 807 | case MTDFILEMODE: |
| 808 | { |
| 809 | mfi->mode = 0; |
| 810 | |
| 811 | switch(arg) { |
| 812 | case MTD_MODE_OTP_FACTORY: |
| 813 | case MTD_MODE_OTP_USER: |
| 814 | ret = otp_select_filemode(mfi, arg); |
| 815 | break; |
| 816 | |
| 817 | case MTD_MODE_RAW: |
| 818 | if (!mtd->read_oob || !mtd->write_oob) |
| 819 | return -EOPNOTSUPP; |
| 820 | mfi->mode = arg; |
| 821 | |
| 822 | case MTD_MODE_NORMAL: |
| 823 | break; |
| 824 | default: |
| 825 | ret = -EINVAL; |
| 826 | } |
| 827 | file->f_pos = 0; |
| 828 | break; |
| 829 | } |
| 830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | default: |
| 832 | ret = -ENOTTY; |
| 833 | } |
| 834 | |
| 835 | return ret; |
| 836 | } /* memory_ioctl */ |
| 837 | |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 838 | #ifdef CONFIG_COMPAT |
| 839 | |
| 840 | struct mtd_oob_buf32 { |
| 841 | u_int32_t start; |
| 842 | u_int32_t length; |
| 843 | compat_caddr_t ptr; /* unsigned char* */ |
| 844 | }; |
| 845 | |
| 846 | #define MEMWRITEOOB32 _IOWR('M', 3, struct mtd_oob_buf32) |
| 847 | #define MEMREADOOB32 _IOWR('M', 4, struct mtd_oob_buf32) |
| 848 | |
| 849 | static long mtd_compat_ioctl(struct file *file, unsigned int cmd, |
| 850 | unsigned long arg) |
| 851 | { |
Kevin Cernekee | 668ff9a | 2009-04-14 21:59:22 -0700 | [diff] [blame] | 852 | struct inode *inode = file->f_path.dentry->d_inode; |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 853 | struct mtd_file_info *mfi = file->private_data; |
| 854 | struct mtd_info *mtd = mfi->mtd; |
David Woodhouse | 0b6585c | 2009-05-29 16:09:08 +0100 | [diff] [blame] | 855 | void __user *argp = compat_ptr(arg); |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 856 | int ret = 0; |
| 857 | |
| 858 | lock_kernel(); |
| 859 | |
| 860 | switch (cmd) { |
| 861 | case MEMWRITEOOB32: |
| 862 | { |
| 863 | struct mtd_oob_buf32 buf; |
| 864 | struct mtd_oob_buf32 __user *buf_user = argp; |
| 865 | |
| 866 | if (copy_from_user(&buf, argp, sizeof(buf))) |
| 867 | ret = -EFAULT; |
| 868 | else |
| 869 | ret = mtd_do_writeoob(file, mtd, buf.start, |
| 870 | buf.length, compat_ptr(buf.ptr), |
| 871 | &buf_user->length); |
| 872 | break; |
| 873 | } |
| 874 | |
| 875 | case MEMREADOOB32: |
| 876 | { |
| 877 | struct mtd_oob_buf32 buf; |
| 878 | struct mtd_oob_buf32 __user *buf_user = argp; |
| 879 | |
| 880 | /* NOTE: writes return length to buf->start */ |
| 881 | if (copy_from_user(&buf, argp, sizeof(buf))) |
| 882 | ret = -EFAULT; |
| 883 | else |
| 884 | ret = mtd_do_readoob(mtd, buf.start, |
| 885 | buf.length, compat_ptr(buf.ptr), |
| 886 | &buf_user->start); |
| 887 | break; |
| 888 | } |
| 889 | default: |
David Woodhouse | 0b6585c | 2009-05-29 16:09:08 +0100 | [diff] [blame] | 890 | ret = mtd_ioctl(inode, file, cmd, (unsigned long)argp); |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 891 | } |
| 892 | |
| 893 | unlock_kernel(); |
| 894 | |
| 895 | return ret; |
| 896 | } |
| 897 | |
| 898 | #endif /* CONFIG_COMPAT */ |
| 899 | |
David Howells | 402d326 | 2009-02-12 10:40:00 +0000 | [diff] [blame] | 900 | /* |
| 901 | * try to determine where a shared mapping can be made |
| 902 | * - only supported for NOMMU at the moment (MMU can't doesn't copy private |
| 903 | * mappings) |
| 904 | */ |
| 905 | #ifndef CONFIG_MMU |
| 906 | static unsigned long mtd_get_unmapped_area(struct file *file, |
| 907 | unsigned long addr, |
| 908 | unsigned long len, |
| 909 | unsigned long pgoff, |
| 910 | unsigned long flags) |
| 911 | { |
| 912 | struct mtd_file_info *mfi = file->private_data; |
| 913 | struct mtd_info *mtd = mfi->mtd; |
| 914 | |
| 915 | if (mtd->get_unmapped_area) { |
| 916 | unsigned long offset; |
| 917 | |
| 918 | if (addr != 0) |
| 919 | return (unsigned long) -EINVAL; |
| 920 | |
| 921 | if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT)) |
| 922 | return (unsigned long) -EINVAL; |
| 923 | |
| 924 | offset = pgoff << PAGE_SHIFT; |
| 925 | if (offset > mtd->size - len) |
| 926 | return (unsigned long) -EINVAL; |
| 927 | |
| 928 | return mtd->get_unmapped_area(mtd, len, offset, flags); |
| 929 | } |
| 930 | |
| 931 | /* can't map directly */ |
| 932 | return (unsigned long) -ENOSYS; |
| 933 | } |
| 934 | #endif |
| 935 | |
| 936 | /* |
| 937 | * set up a mapping for shared memory segments |
| 938 | */ |
| 939 | static int mtd_mmap(struct file *file, struct vm_area_struct *vma) |
| 940 | { |
| 941 | #ifdef CONFIG_MMU |
| 942 | struct mtd_file_info *mfi = file->private_data; |
| 943 | struct mtd_info *mtd = mfi->mtd; |
| 944 | |
| 945 | if (mtd->type == MTD_RAM || mtd->type == MTD_ROM) |
| 946 | return 0; |
| 947 | return -ENOSYS; |
| 948 | #else |
| 949 | return vma->vm_flags & VM_SHARED ? 0 : -ENOSYS; |
| 950 | #endif |
| 951 | } |
| 952 | |
Arjan van de Ven | d54b1fd | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 953 | static const struct file_operations mtd_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | .owner = THIS_MODULE, |
| 955 | .llseek = mtd_lseek, |
| 956 | .read = mtd_read, |
| 957 | .write = mtd_write, |
| 958 | .ioctl = mtd_ioctl, |
Kevin Cernekee | 9771854 | 2009-04-08 22:53:13 -0700 | [diff] [blame] | 959 | #ifdef CONFIG_COMPAT |
| 960 | .compat_ioctl = mtd_compat_ioctl, |
| 961 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | .open = mtd_open, |
| 963 | .release = mtd_close, |
David Howells | 402d326 | 2009-02-12 10:40:00 +0000 | [diff] [blame] | 964 | .mmap = mtd_mmap, |
| 965 | #ifndef CONFIG_MMU |
| 966 | .get_unmapped_area = mtd_get_unmapped_area, |
| 967 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | }; |
| 969 | |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 970 | static int mtd_inodefs_get_sb(struct file_system_type *fs_type, int flags, |
| 971 | const char *dev_name, void *data, |
| 972 | struct vfsmount *mnt) |
| 973 | { |
| 974 | return get_sb_pseudo(fs_type, "mtd_inode:", NULL, MTD_INODE_FS_MAGIC, |
| 975 | mnt); |
| 976 | } |
| 977 | |
| 978 | static struct file_system_type mtd_inodefs_type = { |
| 979 | .name = "mtd_inodefs", |
| 980 | .get_sb = mtd_inodefs_get_sb, |
| 981 | .kill_sb = kill_anon_super, |
| 982 | }; |
| 983 | |
| 984 | static void mtdchar_notify_add(struct mtd_info *mtd) |
| 985 | { |
| 986 | } |
| 987 | |
| 988 | static void mtdchar_notify_remove(struct mtd_info *mtd) |
| 989 | { |
| 990 | struct inode *mtd_ino = ilookup(mtd_inode_mnt->mnt_sb, mtd->index); |
| 991 | |
| 992 | if (mtd_ino) { |
| 993 | /* Destroy the inode if it exists */ |
| 994 | mtd_ino->i_nlink = 0; |
| 995 | iput(mtd_ino); |
| 996 | } |
| 997 | } |
| 998 | |
| 999 | static struct mtd_notifier mtdchar_notifier = { |
| 1000 | .add = mtdchar_notify_add, |
| 1001 | .remove = mtdchar_notify_remove, |
| 1002 | }; |
| 1003 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | static int __init init_mtdchar(void) |
| 1005 | { |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 1006 | int ret; |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 1007 | |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 1008 | ret = __register_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, |
Ben Hutchings | dad0db3 | 2010-01-29 21:00:04 +0000 | [diff] [blame] | 1009 | "mtd", &mtd_fops); |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 1010 | if (ret < 0) { |
| 1011 | pr_notice("Can't allocate major number %d for " |
| 1012 | "Memory Technology Devices.\n", MTD_CHAR_MAJOR); |
| 1013 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } |
| 1015 | |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 1016 | ret = register_filesystem(&mtd_inodefs_type); |
| 1017 | if (ret) { |
| 1018 | pr_notice("Can't register mtd_inodefs filesystem: %d\n", ret); |
| 1019 | goto err_unregister_chdev; |
| 1020 | } |
| 1021 | |
| 1022 | mtd_inode_mnt = kern_mount(&mtd_inodefs_type); |
| 1023 | if (IS_ERR(mtd_inode_mnt)) { |
| 1024 | ret = PTR_ERR(mtd_inode_mnt); |
| 1025 | pr_notice("Error mounting mtd_inodefs filesystem: %d\n", ret); |
| 1026 | goto err_unregister_filesystem; |
| 1027 | } |
| 1028 | register_mtd_user(&mtdchar_notifier); |
| 1029 | |
| 1030 | return ret; |
| 1031 | |
| 1032 | err_unregister_filesystem: |
| 1033 | unregister_filesystem(&mtd_inodefs_type); |
| 1034 | err_unregister_chdev: |
| 1035 | __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd"); |
| 1036 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | static void __exit cleanup_mtdchar(void) |
| 1040 | { |
Kirill A. Shutemov | cd87423 | 2010-05-17 16:55:47 +0300 | [diff] [blame] | 1041 | unregister_mtd_user(&mtdchar_notifier); |
| 1042 | mntput(mtd_inode_mnt); |
| 1043 | unregister_filesystem(&mtd_inodefs_type); |
Ben Hutchings | dad0db3 | 2010-01-29 21:00:04 +0000 | [diff] [blame] | 1044 | __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
| 1047 | module_init(init_mtdchar); |
| 1048 | module_exit(cleanup_mtdchar); |
| 1049 | |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 1050 | MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
| 1052 | MODULE_LICENSE("GPL"); |
| 1053 | MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>"); |
| 1054 | MODULE_DESCRIPTION("Direct character-device access to MTD devices"); |
Scott James Remnant | 90160e1 | 2009-03-02 18:42:39 +0000 | [diff] [blame] | 1055 | MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR); |