Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 2 | * $Id: mtdchar.c,v 1.76 2005/11/07 11:14:20 gleixner Exp $ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Character-device access to raw MTD devices. |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #include <linux/config.h> |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 9 | #include <linux/device.h> |
| 10 | #include <linux/fs.h> |
| 11 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/module.h> |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 14 | #include <linux/slab.h> |
| 15 | #include <linux/sched.h> |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/mtd/mtd.h> |
| 18 | #include <linux/mtd/compatmac.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Thomas Gleixner | 15fdc52 | 2005-11-07 00:14:42 +0100 | [diff] [blame] | 20 | #include <asm/uaccess.h> |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 21 | |
| 22 | static struct class *mtd_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | static void mtd_notify_add(struct mtd_info* mtd) |
| 25 | { |
| 26 | if (!mtd) |
| 27 | return; |
| 28 | |
Greg Kroah-Hartman | 53f4654 | 2005-10-27 22:25:43 -0700 | [diff] [blame] | 29 | class_device_create(mtd_class, NULL, MKDEV(MTD_CHAR_MAJOR, mtd->index*2), |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 30 | NULL, "mtd%d", mtd->index); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 31 | |
Greg Kroah-Hartman | 53f4654 | 2005-10-27 22:25:43 -0700 | [diff] [blame] | 32 | class_device_create(mtd_class, NULL, |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 33 | MKDEV(MTD_CHAR_MAJOR, mtd->index*2+1), |
| 34 | NULL, "mtd%dro", mtd->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | static void mtd_notify_remove(struct mtd_info* mtd) |
| 38 | { |
| 39 | if (!mtd) |
| 40 | return; |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 41 | |
| 42 | class_device_destroy(mtd_class, MKDEV(MTD_CHAR_MAJOR, mtd->index*2)); |
| 43 | class_device_destroy(mtd_class, MKDEV(MTD_CHAR_MAJOR, mtd->index*2+1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static struct mtd_notifier notifier = { |
| 47 | .add = mtd_notify_add, |
| 48 | .remove = mtd_notify_remove, |
| 49 | }; |
| 50 | |
Nicolas Pitre | 045e9a5 | 2005-02-08 19:12:53 +0000 | [diff] [blame] | 51 | /* |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 52 | * Data structure to hold the pointer to the mtd device as well |
| 53 | * as mode information ofr various use cases. |
Nicolas Pitre | 045e9a5 | 2005-02-08 19:12:53 +0000 | [diff] [blame] | 54 | */ |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 55 | struct mtd_file_info { |
| 56 | struct mtd_info *mtd; |
| 57 | enum mtd_file_modes mode; |
| 58 | }; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | static loff_t mtd_lseek (struct file *file, loff_t offset, int orig) |
| 61 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 62 | struct mtd_file_info *mfi = file->private_data; |
| 63 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | switch (orig) { |
| 66 | case 0: |
| 67 | /* SEEK_SET */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | break; |
| 69 | case 1: |
| 70 | /* SEEK_CUR */ |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 71 | offset += file->f_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | break; |
| 73 | case 2: |
| 74 | /* SEEK_END */ |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 75 | offset += mtd->size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | break; |
| 77 | default: |
| 78 | return -EINVAL; |
| 79 | } |
| 80 | |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 81 | if (offset >= 0 && offset < mtd->size) |
| 82 | return file->f_pos = offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Todd Poynor | 8b491d7 | 2005-08-04 02:05:51 +0100 | [diff] [blame] | 84 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | |
| 88 | |
| 89 | static int mtd_open(struct inode *inode, struct file *file) |
| 90 | { |
| 91 | int minor = iminor(inode); |
| 92 | int devnum = minor >> 1; |
| 93 | struct mtd_info *mtd; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 94 | struct mtd_file_info *mfi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | DEBUG(MTD_DEBUG_LEVEL0, "MTD_open\n"); |
| 97 | |
| 98 | if (devnum >= MAX_MTD_DEVICES) |
| 99 | return -ENODEV; |
| 100 | |
| 101 | /* You can't open the RO devices RW */ |
| 102 | if ((file->f_mode & 2) && (minor & 1)) |
| 103 | return -EACCES; |
| 104 | |
| 105 | mtd = get_mtd_device(NULL, devnum); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | if (!mtd) |
| 108 | return -ENODEV; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | if (MTD_ABSENT == mtd->type) { |
| 111 | put_mtd_device(mtd); |
| 112 | return -ENODEV; |
| 113 | } |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | /* You can't open it RW if it's not a writeable device */ |
| 116 | if ((file->f_mode & 2) && !(mtd->flags & MTD_WRITEABLE)) { |
| 117 | put_mtd_device(mtd); |
| 118 | return -EACCES; |
| 119 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 120 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 121 | mfi = kzalloc(sizeof(*mfi), GFP_KERNEL); |
| 122 | if (!mfi) { |
| 123 | put_mtd_device(mtd); |
| 124 | return -ENOMEM; |
| 125 | } |
| 126 | mfi->mtd = mtd; |
| 127 | file->private_data = mfi; |
| 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | return 0; |
| 130 | } /* mtd_open */ |
| 131 | |
| 132 | /*====================================================================*/ |
| 133 | |
| 134 | static int mtd_close(struct inode *inode, struct file *file) |
| 135 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 136 | struct mtd_file_info *mfi = file->private_data; |
| 137 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n"); |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | if (mtd->sync) |
| 142 | mtd->sync(mtd); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | put_mtd_device(mtd); |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 145 | file->private_data = NULL; |
| 146 | kfree(mfi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
| 148 | return 0; |
| 149 | } /* mtd_close */ |
| 150 | |
| 151 | /* FIXME: This _really_ needs to die. In 2.5, we should lock the |
| 152 | userspace buffer down and use it directly with readv/writev. |
| 153 | */ |
| 154 | #define MAX_KMALLOC_SIZE 0x20000 |
| 155 | |
| 156 | static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos) |
| 157 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 158 | struct mtd_file_info *mfi = file->private_data; |
| 159 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | size_t retlen=0; |
| 161 | size_t total_retlen=0; |
| 162 | int ret=0; |
| 163 | int len; |
| 164 | char *kbuf; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | DEBUG(MTD_DEBUG_LEVEL0,"MTD_read\n"); |
| 167 | |
| 168 | if (*ppos + count > mtd->size) |
| 169 | count = mtd->size - *ppos; |
| 170 | |
| 171 | if (!count) |
| 172 | return 0; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* FIXME: Use kiovec in 2.5 to lock down the user's buffers |
| 175 | and pass them directly to the MTD functions */ |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 176 | |
| 177 | if (count > MAX_KMALLOC_SIZE) |
| 178 | kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL); |
| 179 | else |
| 180 | kbuf=kmalloc(count, GFP_KERNEL); |
| 181 | |
| 182 | if (!kbuf) |
| 183 | return -ENOMEM; |
| 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | while (count) { |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 186 | |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 187 | if (count > MAX_KMALLOC_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | len = MAX_KMALLOC_SIZE; |
| 189 | else |
| 190 | len = count; |
| 191 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 192 | switch (mfi->mode) { |
| 193 | case MTD_MODE_OTP_FACTORY: |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 194 | ret = mtd->read_fact_prot_reg(mtd, *ppos, len, &retlen, kbuf); |
| 195 | break; |
| 196 | case MTD_MODE_OTP_USER: |
| 197 | ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf); |
| 198 | break; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 199 | case MTD_MODE_RAW: |
| 200 | { |
| 201 | struct mtd_oob_ops ops; |
| 202 | |
| 203 | ops.mode = MTD_OOB_RAW; |
| 204 | ops.datbuf = kbuf; |
| 205 | ops.oobbuf = NULL; |
| 206 | ops.len = len; |
| 207 | |
| 208 | ret = mtd->read_oob(mtd, *ppos, &ops); |
| 209 | retlen = ops.retlen; |
| 210 | break; |
| 211 | } |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 212 | default: |
Thomas Gleixner | f4a43cf | 2006-05-28 11:01:53 +0200 | [diff] [blame] | 213 | ret = mtd->read(mtd, *ppos, len, &retlen, kbuf); |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 214 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | /* Nand returns -EBADMSG on ecc errors, but it returns |
| 216 | * the data. For our userspace tools it is important |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 217 | * to dump areas with ecc errors ! |
Thomas Gleixner | 9a1fcdf | 2006-05-29 14:56:39 +0200 | [diff] [blame] | 218 | * For kernel internal usage it also might return -EUCLEAN |
| 219 | * to signal the caller that a bitflip has occured and has |
| 220 | * been corrected by the ECC algorithm. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | * Userspace software which accesses NAND this way |
| 222 | * must be aware of the fact that it deals with NAND |
| 223 | */ |
Thomas Gleixner | 9a1fcdf | 2006-05-29 14:56:39 +0200 | [diff] [blame] | 224 | if (!ret || (ret == -EUCLEAN) || (ret == -EBADMSG)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | *ppos += retlen; |
| 226 | if (copy_to_user(buf, kbuf, retlen)) { |
Thomas Gleixner | f4a43cf | 2006-05-28 11:01:53 +0200 | [diff] [blame] | 227 | kfree(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | return -EFAULT; |
| 229 | } |
| 230 | else |
| 231 | total_retlen += retlen; |
| 232 | |
| 233 | count -= retlen; |
| 234 | buf += retlen; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 235 | if (retlen == 0) |
| 236 | count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 238 | else { |
| 239 | kfree(kbuf); |
| 240 | return ret; |
| 241 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 245 | kfree(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | return total_retlen; |
| 247 | } /* mtd_read */ |
| 248 | |
| 249 | static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos) |
| 250 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 251 | struct mtd_file_info *mfi = file->private_data; |
| 252 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | char *kbuf; |
| 254 | size_t retlen; |
| 255 | size_t total_retlen=0; |
| 256 | int ret=0; |
| 257 | int len; |
| 258 | |
| 259 | DEBUG(MTD_DEBUG_LEVEL0,"MTD_write\n"); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (*ppos == mtd->size) |
| 262 | return -ENOSPC; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | if (*ppos + count > mtd->size) |
| 265 | count = mtd->size - *ppos; |
| 266 | |
| 267 | if (!count) |
| 268 | return 0; |
| 269 | |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 270 | if (count > MAX_KMALLOC_SIZE) |
| 271 | kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL); |
| 272 | else |
| 273 | kbuf=kmalloc(count, GFP_KERNEL); |
| 274 | |
| 275 | if (!kbuf) |
| 276 | return -ENOMEM; |
| 277 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | while (count) { |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 279 | |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 280 | if (count > MAX_KMALLOC_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | len = MAX_KMALLOC_SIZE; |
| 282 | else |
| 283 | len = count; |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | if (copy_from_user(kbuf, buf, len)) { |
| 286 | kfree(kbuf); |
| 287 | return -EFAULT; |
| 288 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 289 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 290 | switch (mfi->mode) { |
| 291 | case MTD_MODE_OTP_FACTORY: |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 292 | ret = -EROFS; |
| 293 | break; |
| 294 | case MTD_MODE_OTP_USER: |
| 295 | if (!mtd->write_user_prot_reg) { |
| 296 | ret = -EOPNOTSUPP; |
| 297 | break; |
| 298 | } |
| 299 | ret = mtd->write_user_prot_reg(mtd, *ppos, len, &retlen, kbuf); |
| 300 | break; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 301 | |
| 302 | case MTD_MODE_RAW: |
| 303 | { |
| 304 | struct mtd_oob_ops ops; |
| 305 | |
| 306 | ops.mode = MTD_OOB_RAW; |
| 307 | ops.datbuf = kbuf; |
| 308 | ops.oobbuf = NULL; |
| 309 | ops.len = len; |
| 310 | |
| 311 | ret = mtd->write_oob(mtd, *ppos, &ops); |
| 312 | retlen = ops.retlen; |
| 313 | break; |
| 314 | } |
| 315 | |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 316 | default: |
| 317 | ret = (*(mtd->write))(mtd, *ppos, len, &retlen, kbuf); |
| 318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | if (!ret) { |
| 320 | *ppos += retlen; |
| 321 | total_retlen += retlen; |
| 322 | count -= retlen; |
| 323 | buf += retlen; |
| 324 | } |
| 325 | else { |
| 326 | kfree(kbuf); |
| 327 | return ret; |
| 328 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Thago Galesi | b802c07 | 2006-04-17 17:38:15 +0100 | [diff] [blame] | 331 | kfree(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | return total_retlen; |
| 333 | } /* mtd_write */ |
| 334 | |
| 335 | /*====================================================================== |
| 336 | |
| 337 | IOCTL calls for getting device parameters. |
| 338 | |
| 339 | ======================================================================*/ |
| 340 | static void mtdchar_erase_callback (struct erase_info *instr) |
| 341 | { |
| 342 | wake_up((wait_queue_head_t *)instr->priv); |
| 343 | } |
| 344 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 345 | #if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP) |
| 346 | static int otp_select_filemode(struct mtd_file_info *mfi, int mode) |
| 347 | { |
| 348 | struct mtd_info *mtd = mfi->mtd; |
| 349 | int ret = 0; |
| 350 | |
| 351 | switch (mode) { |
| 352 | case MTD_OTP_FACTORY: |
| 353 | if (!mtd->read_fact_prot_reg) |
| 354 | ret = -EOPNOTSUPP; |
| 355 | else |
| 356 | mfi->mode = MTD_MODE_OTP_FACTORY; |
| 357 | break; |
| 358 | case MTD_OTP_USER: |
| 359 | if (!mtd->read_fact_prot_reg) |
| 360 | ret = -EOPNOTSUPP; |
| 361 | else |
| 362 | mfi->mode = MTD_MODE_OTP_USER; |
| 363 | break; |
| 364 | default: |
| 365 | ret = -EINVAL; |
| 366 | case MTD_OTP_OFF: |
| 367 | break; |
| 368 | } |
| 369 | return ret; |
| 370 | } |
| 371 | #else |
| 372 | # define otp_select_filemode(f,m) -EOPNOTSUPP |
| 373 | #endif |
| 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | static int mtd_ioctl(struct inode *inode, struct file *file, |
| 376 | u_int cmd, u_long arg) |
| 377 | { |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 378 | struct mtd_file_info *mfi = file->private_data; |
| 379 | struct mtd_info *mtd = mfi->mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | void __user *argp = (void __user *)arg; |
| 381 | int ret = 0; |
| 382 | u_long size; |
Joern Engel | 73c619e | 2006-05-30 14:25:35 +0200 | [diff] [blame^] | 383 | struct mtd_info_user info; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | DEBUG(MTD_DEBUG_LEVEL0, "MTD_ioctl\n"); |
| 386 | |
| 387 | size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT; |
| 388 | if (cmd & IOC_IN) { |
| 389 | if (!access_ok(VERIFY_READ, argp, size)) |
| 390 | return -EFAULT; |
| 391 | } |
| 392 | if (cmd & IOC_OUT) { |
| 393 | if (!access_ok(VERIFY_WRITE, argp, size)) |
| 394 | return -EFAULT; |
| 395 | } |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | switch (cmd) { |
| 398 | case MEMGETREGIONCOUNT: |
| 399 | if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int))) |
| 400 | return -EFAULT; |
| 401 | break; |
| 402 | |
| 403 | case MEMGETREGIONINFO: |
| 404 | { |
| 405 | struct region_info_user ur; |
| 406 | |
| 407 | if (copy_from_user(&ur, argp, sizeof(struct region_info_user))) |
| 408 | return -EFAULT; |
| 409 | |
| 410 | if (ur.regionindex >= mtd->numeraseregions) |
| 411 | return -EINVAL; |
| 412 | if (copy_to_user(argp, &(mtd->eraseregions[ur.regionindex]), |
| 413 | sizeof(struct mtd_erase_region_info))) |
| 414 | return -EFAULT; |
| 415 | break; |
| 416 | } |
| 417 | |
| 418 | case MEMGETINFO: |
Joern Engel | 73c619e | 2006-05-30 14:25:35 +0200 | [diff] [blame^] | 419 | info.type = mtd->type; |
| 420 | info.flags = mtd->flags; |
| 421 | info.size = mtd->size; |
| 422 | info.erasesize = mtd->erasesize; |
| 423 | info.writesize = mtd->writesize; |
| 424 | info.oobsize = mtd->oobsize; |
| 425 | info.ecctype = mtd->ecctype; |
| 426 | info.eccsize = mtd->eccsize; |
| 427 | if (copy_to_user(argp, &info, sizeof(struct mtd_info_user))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | return -EFAULT; |
| 429 | break; |
| 430 | |
| 431 | case MEMERASE: |
| 432 | { |
| 433 | struct erase_info *erase; |
| 434 | |
| 435 | if(!(file->f_mode & 2)) |
| 436 | return -EPERM; |
| 437 | |
| 438 | erase=kmalloc(sizeof(struct erase_info),GFP_KERNEL); |
| 439 | if (!erase) |
| 440 | ret = -ENOMEM; |
| 441 | else { |
| 442 | wait_queue_head_t waitq; |
| 443 | DECLARE_WAITQUEUE(wait, current); |
| 444 | |
| 445 | init_waitqueue_head(&waitq); |
| 446 | |
| 447 | memset (erase,0,sizeof(struct erase_info)); |
| 448 | if (copy_from_user(&erase->addr, argp, |
| 449 | sizeof(struct erase_info_user))) { |
| 450 | kfree(erase); |
| 451 | return -EFAULT; |
| 452 | } |
| 453 | erase->mtd = mtd; |
| 454 | erase->callback = mtdchar_erase_callback; |
| 455 | erase->priv = (unsigned long)&waitq; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 456 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | /* |
| 458 | FIXME: Allow INTERRUPTIBLE. Which means |
| 459 | not having the wait_queue head on the stack. |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 460 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | If the wq_head is on the stack, and we |
| 462 | leave because we got interrupted, then the |
| 463 | wq_head is no longer there when the |
| 464 | callback routine tries to wake us up. |
| 465 | */ |
| 466 | ret = mtd->erase(mtd, erase); |
| 467 | if (!ret) { |
| 468 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 469 | add_wait_queue(&waitq, &wait); |
| 470 | if (erase->state != MTD_ERASE_DONE && |
| 471 | erase->state != MTD_ERASE_FAILED) |
| 472 | schedule(); |
| 473 | remove_wait_queue(&waitq, &wait); |
| 474 | set_current_state(TASK_RUNNING); |
| 475 | |
| 476 | ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0; |
| 477 | } |
| 478 | kfree(erase); |
| 479 | } |
| 480 | break; |
| 481 | } |
| 482 | |
| 483 | case MEMWRITEOOB: |
| 484 | { |
| 485 | struct mtd_oob_buf buf; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 486 | struct mtd_oob_ops ops; |
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 | if(!(file->f_mode & 2)) |
| 489 | return -EPERM; |
| 490 | |
| 491 | if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf))) |
| 492 | return -EFAULT; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 493 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 494 | if (buf.length > 4096) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | return -EINVAL; |
| 496 | |
| 497 | if (!mtd->write_oob) |
| 498 | ret = -EOPNOTSUPP; |
| 499 | else |
| 500 | ret = access_ok(VERIFY_READ, buf.ptr, |
| 501 | buf.length) ? 0 : EFAULT; |
| 502 | |
| 503 | if (ret) |
| 504 | return ret; |
| 505 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 506 | ops.len = buf.length; |
| 507 | ops.ooblen = mtd->oobsize; |
| 508 | ops.ooboffs = buf.start & (mtd->oobsize - 1); |
| 509 | ops.datbuf = NULL; |
| 510 | ops.mode = MTD_OOB_PLACE; |
| 511 | |
| 512 | if (ops.ooboffs && ops.len > (ops.ooblen - ops.ooboffs)) |
| 513 | return -EINVAL; |
| 514 | |
| 515 | ops.oobbuf = kmalloc(buf.length, GFP_KERNEL); |
| 516 | if (!ops.oobbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | return -ENOMEM; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 518 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 519 | if (copy_from_user(ops.oobbuf, buf.ptr, buf.length)) { |
| 520 | kfree(ops.oobbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | return -EFAULT; |
| 522 | } |
| 523 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 524 | buf.start &= ~(mtd->oobsize - 1); |
| 525 | ret = mtd->write_oob(mtd, buf.start, &ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 527 | if (copy_to_user(argp + sizeof(uint32_t), &ops.retlen, |
| 528 | sizeof(uint32_t))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | ret = -EFAULT; |
| 530 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 531 | kfree(ops.oobbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | break; |
| 533 | |
| 534 | } |
| 535 | |
| 536 | case MEMREADOOB: |
| 537 | { |
| 538 | struct mtd_oob_buf buf; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 539 | struct mtd_oob_ops ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
| 541 | if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf))) |
| 542 | return -EFAULT; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 543 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 544 | if (buf.length > 4096) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | return -EINVAL; |
| 546 | |
| 547 | if (!mtd->read_oob) |
| 548 | ret = -EOPNOTSUPP; |
| 549 | else |
| 550 | ret = access_ok(VERIFY_WRITE, buf.ptr, |
| 551 | buf.length) ? 0 : -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | if (ret) |
| 553 | return ret; |
| 554 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 555 | ops.len = buf.length; |
| 556 | ops.ooblen = mtd->oobsize; |
| 557 | ops.ooboffs = buf.start & (mtd->oobsize - 1); |
| 558 | ops.datbuf = NULL; |
| 559 | ops.mode = MTD_OOB_PLACE; |
| 560 | |
| 561 | if (ops.ooboffs && ops.len > (ops.ooblen - ops.ooboffs)) |
| 562 | return -EINVAL; |
| 563 | |
| 564 | ops.oobbuf = kmalloc(buf.length, GFP_KERNEL); |
| 565 | if (!ops.oobbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | return -ENOMEM; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 567 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 568 | buf.start &= ~(mtd->oobsize - 1); |
| 569 | ret = mtd->read_oob(mtd, buf.start, &ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 571 | if (put_user(ops.retlen, (uint32_t __user *)argp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | ret = -EFAULT; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 573 | else if (ops.retlen && copy_to_user(buf.ptr, ops.oobbuf, |
| 574 | ops.retlen)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | ret = -EFAULT; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 576 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 577 | kfree(ops.oobbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | break; |
| 579 | } |
| 580 | |
| 581 | case MEMLOCK: |
| 582 | { |
| 583 | struct erase_info_user info; |
| 584 | |
| 585 | if (copy_from_user(&info, argp, sizeof(info))) |
| 586 | return -EFAULT; |
| 587 | |
| 588 | if (!mtd->lock) |
| 589 | ret = -EOPNOTSUPP; |
| 590 | else |
| 591 | ret = mtd->lock(mtd, info.start, info.length); |
| 592 | break; |
| 593 | } |
| 594 | |
| 595 | case MEMUNLOCK: |
| 596 | { |
| 597 | struct erase_info_user info; |
| 598 | |
| 599 | if (copy_from_user(&info, argp, sizeof(info))) |
| 600 | return -EFAULT; |
| 601 | |
| 602 | if (!mtd->unlock) |
| 603 | ret = -EOPNOTSUPP; |
| 604 | else |
| 605 | ret = mtd->unlock(mtd, info.start, info.length); |
| 606 | break; |
| 607 | } |
| 608 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 609 | /* Legacy interface */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | case MEMGETOOBSEL: |
| 611 | { |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 612 | struct nand_oobinfo oi; |
| 613 | |
| 614 | if (!mtd->ecclayout) |
| 615 | return -EOPNOTSUPP; |
| 616 | if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos)) |
| 617 | return -EINVAL; |
| 618 | |
| 619 | oi.useecc = MTD_NANDECC_AUTOPLACE; |
| 620 | memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos)); |
| 621 | memcpy(&oi.oobfree, mtd->ecclayout->oobfree, |
| 622 | sizeof(oi.oobfree)); |
| 623 | |
| 624 | if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | return -EFAULT; |
| 626 | break; |
| 627 | } |
| 628 | |
| 629 | case MEMGETBADBLOCK: |
| 630 | { |
| 631 | loff_t offs; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | if (copy_from_user(&offs, argp, sizeof(loff_t))) |
| 634 | return -EFAULT; |
| 635 | if (!mtd->block_isbad) |
| 636 | ret = -EOPNOTSUPP; |
| 637 | else |
| 638 | return mtd->block_isbad(mtd, offs); |
| 639 | break; |
| 640 | } |
| 641 | |
| 642 | case MEMSETBADBLOCK: |
| 643 | { |
| 644 | loff_t offs; |
| 645 | |
| 646 | if (copy_from_user(&offs, argp, sizeof(loff_t))) |
| 647 | return -EFAULT; |
| 648 | if (!mtd->block_markbad) |
| 649 | ret = -EOPNOTSUPP; |
| 650 | else |
| 651 | return mtd->block_markbad(mtd, offs); |
| 652 | break; |
| 653 | } |
| 654 | |
Kyungmin Park | 493c646 | 2006-05-12 17:03:07 +0300 | [diff] [blame] | 655 | #if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP) |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 656 | case OTPSELECT: |
| 657 | { |
| 658 | int mode; |
| 659 | if (copy_from_user(&mode, argp, sizeof(int))) |
| 660 | return -EFAULT; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 661 | |
| 662 | mfi->mode = MTD_MODE_NORMAL; |
| 663 | |
| 664 | ret = otp_select_filemode(mfi, mode); |
| 665 | |
Nicolas Pitre | 81dba48 | 2005-04-01 16:36:15 +0100 | [diff] [blame] | 666 | file->f_pos = 0; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 667 | break; |
| 668 | } |
| 669 | |
| 670 | case OTPGETREGIONCOUNT: |
| 671 | case OTPGETREGIONINFO: |
| 672 | { |
| 673 | struct otp_info *buf = kmalloc(4096, GFP_KERNEL); |
| 674 | if (!buf) |
| 675 | return -ENOMEM; |
| 676 | ret = -EOPNOTSUPP; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 677 | switch (mfi->mode) { |
| 678 | case MTD_MODE_OTP_FACTORY: |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 679 | if (mtd->get_fact_prot_info) |
| 680 | ret = mtd->get_fact_prot_info(mtd, buf, 4096); |
| 681 | break; |
| 682 | case MTD_MODE_OTP_USER: |
| 683 | if (mtd->get_user_prot_info) |
| 684 | ret = mtd->get_user_prot_info(mtd, buf, 4096); |
| 685 | break; |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 686 | default: |
| 687 | break; |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 688 | } |
| 689 | if (ret >= 0) { |
| 690 | if (cmd == OTPGETREGIONCOUNT) { |
| 691 | int nbr = ret / sizeof(struct otp_info); |
| 692 | ret = copy_to_user(argp, &nbr, sizeof(int)); |
| 693 | } else |
| 694 | ret = copy_to_user(argp, buf, ret); |
| 695 | if (ret) |
| 696 | ret = -EFAULT; |
| 697 | } |
| 698 | kfree(buf); |
| 699 | break; |
| 700 | } |
| 701 | |
| 702 | case OTPLOCK: |
| 703 | { |
| 704 | struct otp_info info; |
| 705 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 706 | if (mfi->mode != MTD_MODE_OTP_USER) |
Nicolas Pitre | 31f4233 | 2005-02-08 17:45:55 +0000 | [diff] [blame] | 707 | return -EINVAL; |
| 708 | if (copy_from_user(&info, argp, sizeof(info))) |
| 709 | return -EFAULT; |
| 710 | if (!mtd->lock_user_prot_reg) |
| 711 | return -EOPNOTSUPP; |
| 712 | ret = mtd->lock_user_prot_reg(mtd, info.start, info.length); |
| 713 | break; |
| 714 | } |
| 715 | #endif |
| 716 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 717 | case ECCGETLAYOUT: |
| 718 | { |
| 719 | if (!mtd->ecclayout) |
| 720 | return -EOPNOTSUPP; |
| 721 | |
| 722 | if (copy_to_user(argp, &mtd->ecclayout, |
| 723 | sizeof(struct nand_ecclayout))) |
| 724 | return -EFAULT; |
| 725 | break; |
| 726 | } |
| 727 | |
| 728 | case ECCGETSTATS: |
| 729 | { |
| 730 | if (copy_to_user(argp, &mtd->ecc_stats, |
| 731 | sizeof(struct mtd_ecc_stats))) |
| 732 | return -EFAULT; |
| 733 | break; |
| 734 | } |
| 735 | |
| 736 | case MTDFILEMODE: |
| 737 | { |
| 738 | mfi->mode = 0; |
| 739 | |
| 740 | switch(arg) { |
| 741 | case MTD_MODE_OTP_FACTORY: |
| 742 | case MTD_MODE_OTP_USER: |
| 743 | ret = otp_select_filemode(mfi, arg); |
| 744 | break; |
| 745 | |
| 746 | case MTD_MODE_RAW: |
| 747 | if (!mtd->read_oob || !mtd->write_oob) |
| 748 | return -EOPNOTSUPP; |
| 749 | mfi->mode = arg; |
| 750 | |
| 751 | case MTD_MODE_NORMAL: |
| 752 | break; |
| 753 | default: |
| 754 | ret = -EINVAL; |
| 755 | } |
| 756 | file->f_pos = 0; |
| 757 | break; |
| 758 | } |
| 759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | default: |
| 761 | ret = -ENOTTY; |
| 762 | } |
| 763 | |
| 764 | return ret; |
| 765 | } /* memory_ioctl */ |
| 766 | |
| 767 | static struct file_operations mtd_fops = { |
| 768 | .owner = THIS_MODULE, |
| 769 | .llseek = mtd_lseek, |
| 770 | .read = mtd_read, |
| 771 | .write = mtd_write, |
| 772 | .ioctl = mtd_ioctl, |
| 773 | .open = mtd_open, |
| 774 | .release = mtd_close, |
| 775 | }; |
| 776 | |
| 777 | static int __init init_mtdchar(void) |
| 778 | { |
| 779 | if (register_chrdev(MTD_CHAR_MAJOR, "mtd", &mtd_fops)) { |
| 780 | printk(KERN_NOTICE "Can't allocate major number %d for Memory Technology Devices.\n", |
| 781 | MTD_CHAR_MAJOR); |
| 782 | return -EAGAIN; |
| 783 | } |
| 784 | |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 785 | mtd_class = class_create(THIS_MODULE, "mtd"); |
| 786 | |
| 787 | if (IS_ERR(mtd_class)) { |
| 788 | printk(KERN_ERR "Error creating mtd class.\n"); |
| 789 | unregister_chrdev(MTD_CHAR_MAJOR, "mtd"); |
Coywolf Qi Hunt | 3a7a882 | 2005-07-04 12:15:28 -0500 | [diff] [blame] | 790 | return PTR_ERR(mtd_class); |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | register_mtd_user(¬ifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | return 0; |
| 795 | } |
| 796 | |
| 797 | static void __exit cleanup_mtdchar(void) |
| 798 | { |
Todd Poynor | 9bc7b38 | 2005-06-30 01:23:27 +0100 | [diff] [blame] | 799 | unregister_mtd_user(¬ifier); |
| 800 | class_destroy(mtd_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | unregister_chrdev(MTD_CHAR_MAJOR, "mtd"); |
| 802 | } |
| 803 | |
| 804 | module_init(init_mtdchar); |
| 805 | module_exit(cleanup_mtdchar); |
| 806 | |
| 807 | |
| 808 | MODULE_LICENSE("GPL"); |
| 809 | MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>"); |
| 810 | MODULE_DESCRIPTION("Direct character-device access to MTD devices"); |