blob: aa18d45b264bb2d3aef9c71792401ac1d7ccece5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Thomas Gleixner97894cd2005-11-07 11:15:26 +00002 * $Id: mtdchar.c,v 1.76 2005/11/07 11:14:20 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Character-device access to raw MTD devices.
5 *
6 */
7
8#include <linux/config.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +01009#include <linux/device.h>
10#include <linux/fs.h>
11#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/module.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010014#include <linux/slab.h>
15#include <linux/sched.h>
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mtd/mtd.h>
18#include <linux/mtd/compatmac.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Thomas Gleixner15fdc522005-11-07 00:14:42 +010020#include <asm/uaccess.h>
Todd Poynor9bc7b382005-06-30 01:23:27 +010021
22static struct class *mtd_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24static void mtd_notify_add(struct mtd_info* mtd)
25{
26 if (!mtd)
27 return;
28
Greg Kroah-Hartman53f46542005-10-27 22:25:43 -070029 class_device_create(mtd_class, NULL, MKDEV(MTD_CHAR_MAJOR, mtd->index*2),
Todd Poynor9bc7b382005-06-30 01:23:27 +010030 NULL, "mtd%d", mtd->index);
Thomas Gleixner97894cd2005-11-07 11:15:26 +000031
Greg Kroah-Hartman53f46542005-10-27 22:25:43 -070032 class_device_create(mtd_class, NULL,
Todd Poynor9bc7b382005-06-30 01:23:27 +010033 MKDEV(MTD_CHAR_MAJOR, mtd->index*2+1),
34 NULL, "mtd%dro", mtd->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
37static void mtd_notify_remove(struct mtd_info* mtd)
38{
39 if (!mtd)
40 return;
Todd Poynor9bc7b382005-06-30 01:23:27 +010041
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 Torvalds1da177e2005-04-16 15:20:36 -070044}
45
46static struct mtd_notifier notifier = {
47 .add = mtd_notify_add,
48 .remove = mtd_notify_remove,
49};
50
Nicolas Pitre045e9a52005-02-08 19:12:53 +000051/*
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020052 * Data structure to hold the pointer to the mtd device as well
53 * as mode information ofr various use cases.
Nicolas Pitre045e9a52005-02-08 19:12:53 +000054 */
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020055struct mtd_file_info {
56 struct mtd_info *mtd;
57 enum mtd_file_modes mode;
58};
Nicolas Pitre31f42332005-02-08 17:45:55 +000059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static loff_t mtd_lseek (struct file *file, loff_t offset, int orig)
61{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020062 struct mtd_file_info *mfi = file->private_data;
63 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 switch (orig) {
66 case 0:
67 /* SEEK_SET */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 break;
69 case 1:
70 /* SEEK_CUR */
Todd Poynor8b491d72005-08-04 02:05:51 +010071 offset += file->f_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 break;
73 case 2:
74 /* SEEK_END */
Todd Poynor8b491d72005-08-04 02:05:51 +010075 offset += mtd->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 break;
77 default:
78 return -EINVAL;
79 }
80
Todd Poynor8b491d72005-08-04 02:05:51 +010081 if (offset >= 0 && offset < mtd->size)
82 return file->f_pos = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Todd Poynor8b491d72005-08-04 02:05:51 +010084 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87
88
89static 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 Gleixnerf1a28c02006-05-30 00:37:34 +020094 struct mtd_file_info *mfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
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 Gleixner97894cd2005-11-07 11:15:26 +0000106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (!mtd)
108 return -ENODEV;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (MTD_ABSENT == mtd->type) {
111 put_mtd_device(mtd);
112 return -ENODEV;
113 }
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 /* 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 Gleixner97894cd2005-11-07 11:15:26 +0000120
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200121 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 Torvalds1da177e2005-04-16 15:20:36 -0700129 return 0;
130} /* mtd_open */
131
132/*====================================================================*/
133
134static int mtd_close(struct inode *inode, struct file *file)
135{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200136 struct mtd_file_info *mfi = file->private_data;
137 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n");
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (mtd->sync)
142 mtd->sync(mtd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 put_mtd_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200145 file->private_data = NULL;
146 kfree(mfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
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
156static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos)
157{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200158 struct mtd_file_info *mfi = file->private_data;
159 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 size_t retlen=0;
161 size_t total_retlen=0;
162 int ret=0;
163 int len;
164 char *kbuf;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 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 Gleixner97894cd2005-11-07 11:15:26 +0000173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* FIXME: Use kiovec in 2.5 to lock down the user's buffers
175 and pass them directly to the MTD functions */
Thago Galesib802c072006-04-17 17:38:15 +0100176
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 Torvalds1da177e2005-04-16 15:20:36 -0700185 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100186
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000187 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 len = MAX_KMALLOC_SIZE;
189 else
190 len = count;
191
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200192 switch (mfi->mode) {
193 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000194 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 Gleixnerf1a28c02006-05-30 00:37:34 +0200199 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 Pitre31f42332005-02-08 17:45:55 +0000212 default:
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200213 ret = mtd->read(mtd, *ppos, len, &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 /* Nand returns -EBADMSG on ecc errors, but it returns
216 * the data. For our userspace tools it is important
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000217 * to dump areas with ecc errors !
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200218 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700221 * Userspace software which accesses NAND this way
222 * must be aware of the fact that it deals with NAND
223 */
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200224 if (!ret || (ret == -EUCLEAN) || (ret == -EBADMSG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 *ppos += retlen;
226 if (copy_to_user(buf, kbuf, retlen)) {
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200227 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return -EFAULT;
229 }
230 else
231 total_retlen += retlen;
232
233 count -= retlen;
234 buf += retlen;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000235 if (retlen == 0)
236 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238 else {
239 kfree(kbuf);
240 return ret;
241 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
Thago Galesib802c072006-04-17 17:38:15 +0100245 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return total_retlen;
247} /* mtd_read */
248
249static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos)
250{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200251 struct mtd_file_info *mfi = file->private_data;
252 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 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 Gleixner97894cd2005-11-07 11:15:26 +0000260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (*ppos == mtd->size)
262 return -ENOSPC;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (*ppos + count > mtd->size)
265 count = mtd->size - *ppos;
266
267 if (!count)
268 return 0;
269
Thago Galesib802c072006-04-17 17:38:15 +0100270 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 Torvalds1da177e2005-04-16 15:20:36 -0700278 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100279
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000280 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 len = MAX_KMALLOC_SIZE;
282 else
283 len = count;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (copy_from_user(kbuf, buf, len)) {
286 kfree(kbuf);
287 return -EFAULT;
288 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000289
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200290 switch (mfi->mode) {
291 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000292 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 Gleixnerf1a28c02006-05-30 00:37:34 +0200301
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 Pitre31f42332005-02-08 17:45:55 +0000316 default:
317 ret = (*(mtd->write))(mtd, *ppos, len, &retlen, kbuf);
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 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 Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
Thago Galesib802c072006-04-17 17:38:15 +0100331 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return total_retlen;
333} /* mtd_write */
334
335/*======================================================================
336
337 IOCTL calls for getting device parameters.
338
339======================================================================*/
340static void mtdchar_erase_callback (struct erase_info *instr)
341{
342 wake_up((wait_queue_head_t *)instr->priv);
343}
344
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200345#if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP)
346static 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 Torvalds1da177e2005-04-16 15:20:36 -0700375static int mtd_ioctl(struct inode *inode, struct file *file,
376 u_int cmd, u_long arg)
377{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200378 struct mtd_file_info *mfi = file->private_data;
379 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 void __user *argp = (void __user *)arg;
381 int ret = 0;
382 u_long size;
Joern Engel73c619e2006-05-30 14:25:35 +0200383 struct mtd_info_user info;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 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 Gleixner97894cd2005-11-07 11:15:26 +0000396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 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 Engel73c619e2006-05-30 14:25:35 +0200419 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 Torvalds1da177e2005-04-16 15:20:36 -0700428 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 Gleixner97894cd2005-11-07 11:15:26 +0000456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /*
458 FIXME: Allow INTERRUPTIBLE. Which means
459 not having the wait_queue head on the stack.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 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 Gleixner8593fbc2006-05-29 03:26:58 +0200486 struct mtd_oob_ops ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 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 Gleixner97894cd2005-11-07 11:15:26 +0000493
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200494 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 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 Gleixner8593fbc2006-05-29 03:26:58 +0200506 ops.len = buf.length;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200507 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200508 ops.ooboffs = buf.start & (mtd->oobsize - 1);
509 ops.datbuf = NULL;
510 ops.mode = MTD_OOB_PLACE;
511
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200512 if (ops.ooboffs && ops.len > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200513 return -EINVAL;
514
515 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
516 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000518
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200519 if (copy_from_user(ops.oobbuf, buf.ptr, buf.length)) {
520 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return -EFAULT;
522 }
523
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200524 buf.start &= ~(mtd->oobsize - 1);
525 ret = mtd->write_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200527 if (copy_to_user(argp + sizeof(uint32_t), &ops.retlen,
528 sizeof(uint32_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 ret = -EFAULT;
530
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200531 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 break;
533
534 }
535
536 case MEMREADOOB:
537 {
538 struct mtd_oob_buf buf;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200539 struct mtd_oob_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf)))
542 return -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000543
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200544 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 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 Torvalds1da177e2005-04-16 15:20:36 -0700552 if (ret)
553 return ret;
554
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200555 ops.len = buf.length;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200556 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200557 ops.ooboffs = buf.start & (mtd->oobsize - 1);
558 ops.datbuf = NULL;
559 ops.mode = MTD_OOB_PLACE;
560
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200561 if (ops.ooboffs && ops.len > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200562 return -EINVAL;
563
564 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
565 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000567
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200568 buf.start &= ~(mtd->oobsize - 1);
569 ret = mtd->read_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200571 if (put_user(ops.retlen, (uint32_t __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 ret = -EFAULT;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200573 else if (ops.retlen && copy_to_user(buf.ptr, ops.oobbuf,
574 ops.retlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 ret = -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000576
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200577 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 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 Gleixner5bd34c02006-05-27 22:16:10 +0200609 /* Legacy interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 case MEMGETOOBSEL:
611 {
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200612 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 Torvalds1da177e2005-04-16 15:20:36 -0700625 return -EFAULT;
626 break;
627 }
628
629 case MEMGETBADBLOCK:
630 {
631 loff_t offs;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 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 Park493c6462006-05-12 17:03:07 +0300655#if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000656 case OTPSELECT:
657 {
658 int mode;
659 if (copy_from_user(&mode, argp, sizeof(int)))
660 return -EFAULT;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200661
662 mfi->mode = MTD_MODE_NORMAL;
663
664 ret = otp_select_filemode(mfi, mode);
665
Nicolas Pitre81dba482005-04-01 16:36:15 +0100666 file->f_pos = 0;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000667 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 Gleixnerf1a28c02006-05-30 00:37:34 +0200677 switch (mfi->mode) {
678 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000679 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 Gleixnerf1a28c02006-05-30 00:37:34 +0200686 default:
687 break;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000688 }
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 Gleixnerf1a28c02006-05-30 00:37:34 +0200706 if (mfi->mode != MTD_MODE_OTP_USER)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000707 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 Gleixnerf1a28c02006-05-30 00:37:34 +0200717 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 Torvalds1da177e2005-04-16 15:20:36 -0700760 default:
761 ret = -ENOTTY;
762 }
763
764 return ret;
765} /* memory_ioctl */
766
767static 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
777static 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 Poynor9bc7b382005-06-30 01:23:27 +0100785 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 Hunt3a7a8822005-07-04 12:15:28 -0500790 return PTR_ERR(mtd_class);
Todd Poynor9bc7b382005-06-30 01:23:27 +0100791 }
792
793 register_mtd_user(&notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return 0;
795}
796
797static void __exit cleanup_mtdchar(void)
798{
Todd Poynor9bc7b382005-06-30 01:23:27 +0100799 unregister_mtd_user(&notifier);
800 class_destroy(mtd_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 unregister_chrdev(MTD_CHAR_MAJOR, "mtd");
802}
803
804module_init(init_mtdchar);
805module_exit(cleanup_mtdchar);
806
807
808MODULE_LICENSE("GPL");
809MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
810MODULE_DESCRIPTION("Direct character-device access to MTD devices");