blob: fb8b4f7e48d3a14a295f5661b9014908f1110dd4 [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
Thomas Gleixner15fdc522005-11-07 00:14:42 +01008#include <linux/device.h>
9#include <linux/fs.h>
10#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/module.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010013#include <linux/slab.h>
14#include <linux/sched.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/mtd/mtd.h>
17#include <linux/mtd/compatmac.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Thomas Gleixner15fdc522005-11-07 00:14:42 +010019#include <asm/uaccess.h>
Todd Poynor9bc7b382005-06-30 01:23:27 +010020
21static struct class *mtd_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23static void mtd_notify_add(struct mtd_info* mtd)
24{
25 if (!mtd)
26 return;
27
Greg Kroah-Hartman53f46542005-10-27 22:25:43 -070028 class_device_create(mtd_class, NULL, MKDEV(MTD_CHAR_MAJOR, mtd->index*2),
Todd Poynor9bc7b382005-06-30 01:23:27 +010029 NULL, "mtd%d", mtd->index);
Thomas Gleixner97894cd2005-11-07 11:15:26 +000030
Greg Kroah-Hartman53f46542005-10-27 22:25:43 -070031 class_device_create(mtd_class, NULL,
Todd Poynor9bc7b382005-06-30 01:23:27 +010032 MKDEV(MTD_CHAR_MAJOR, mtd->index*2+1),
33 NULL, "mtd%dro", mtd->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
36static void mtd_notify_remove(struct mtd_info* mtd)
37{
38 if (!mtd)
39 return;
Todd Poynor9bc7b382005-06-30 01:23:27 +010040
41 class_device_destroy(mtd_class, MKDEV(MTD_CHAR_MAJOR, mtd->index*2));
42 class_device_destroy(mtd_class, MKDEV(MTD_CHAR_MAJOR, mtd->index*2+1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
45static struct mtd_notifier notifier = {
46 .add = mtd_notify_add,
47 .remove = mtd_notify_remove,
48};
49
Nicolas Pitre045e9a52005-02-08 19:12:53 +000050/*
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020051 * Data structure to hold the pointer to the mtd device as well
52 * as mode information ofr various use cases.
Nicolas Pitre045e9a52005-02-08 19:12:53 +000053 */
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020054struct mtd_file_info {
55 struct mtd_info *mtd;
56 enum mtd_file_modes mode;
57};
Nicolas Pitre31f42332005-02-08 17:45:55 +000058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static loff_t mtd_lseek (struct file *file, loff_t offset, int orig)
60{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020061 struct mtd_file_info *mfi = file->private_data;
62 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 switch (orig) {
65 case 0:
66 /* SEEK_SET */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 break;
68 case 1:
69 /* SEEK_CUR */
Todd Poynor8b491d72005-08-04 02:05:51 +010070 offset += file->f_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 break;
72 case 2:
73 /* SEEK_END */
Todd Poynor8b491d72005-08-04 02:05:51 +010074 offset += mtd->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 break;
76 default:
77 return -EINVAL;
78 }
79
Herbert Valerio Riedel1887f512006-06-24 00:03:36 +020080 if (offset >= 0 && offset <= mtd->size)
Todd Poynor8b491d72005-08-04 02:05:51 +010081 return file->f_pos = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Todd Poynor8b491d72005-08-04 02:05:51 +010083 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
86
87
88static int mtd_open(struct inode *inode, struct file *file)
89{
90 int minor = iminor(inode);
91 int devnum = minor >> 1;
92 struct mtd_info *mtd;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020093 struct mtd_file_info *mfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 DEBUG(MTD_DEBUG_LEVEL0, "MTD_open\n");
96
97 if (devnum >= MAX_MTD_DEVICES)
98 return -ENODEV;
99
100 /* You can't open the RO devices RW */
101 if ((file->f_mode & 2) && (minor & 1))
102 return -EACCES;
103
104 mtd = get_mtd_device(NULL, devnum);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (!mtd)
107 return -ENODEV;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (MTD_ABSENT == mtd->type) {
110 put_mtd_device(mtd);
111 return -ENODEV;
112 }
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* You can't open it RW if it's not a writeable device */
115 if ((file->f_mode & 2) && !(mtd->flags & MTD_WRITEABLE)) {
116 put_mtd_device(mtd);
117 return -EACCES;
118 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000119
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200120 mfi = kzalloc(sizeof(*mfi), GFP_KERNEL);
121 if (!mfi) {
122 put_mtd_device(mtd);
123 return -ENOMEM;
124 }
125 mfi->mtd = mtd;
126 file->private_data = mfi;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return 0;
129} /* mtd_open */
130
131/*====================================================================*/
132
133static int mtd_close(struct inode *inode, struct file *file)
134{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200135 struct mtd_file_info *mfi = file->private_data;
136 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n");
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (mtd->sync)
141 mtd->sync(mtd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 put_mtd_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200144 file->private_data = NULL;
145 kfree(mfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 return 0;
148} /* mtd_close */
149
150/* FIXME: This _really_ needs to die. In 2.5, we should lock the
151 userspace buffer down and use it directly with readv/writev.
152*/
153#define MAX_KMALLOC_SIZE 0x20000
154
155static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos)
156{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200157 struct mtd_file_info *mfi = file->private_data;
158 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 size_t retlen=0;
160 size_t total_retlen=0;
161 int ret=0;
162 int len;
163 char *kbuf;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 DEBUG(MTD_DEBUG_LEVEL0,"MTD_read\n");
166
167 if (*ppos + count > mtd->size)
168 count = mtd->size - *ppos;
169
170 if (!count)
171 return 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* FIXME: Use kiovec in 2.5 to lock down the user's buffers
174 and pass them directly to the MTD functions */
Thago Galesib802c072006-04-17 17:38:15 +0100175
176 if (count > MAX_KMALLOC_SIZE)
177 kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL);
178 else
179 kbuf=kmalloc(count, GFP_KERNEL);
180
181 if (!kbuf)
182 return -ENOMEM;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100185
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000186 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 len = MAX_KMALLOC_SIZE;
188 else
189 len = count;
190
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200191 switch (mfi->mode) {
192 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000193 ret = mtd->read_fact_prot_reg(mtd, *ppos, len, &retlen, kbuf);
194 break;
195 case MTD_MODE_OTP_USER:
196 ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
197 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200198 case MTD_MODE_RAW:
199 {
200 struct mtd_oob_ops ops;
201
202 ops.mode = MTD_OOB_RAW;
203 ops.datbuf = kbuf;
204 ops.oobbuf = NULL;
205 ops.len = len;
206
207 ret = mtd->read_oob(mtd, *ppos, &ops);
208 retlen = ops.retlen;
209 break;
210 }
Nicolas Pitre31f42332005-02-08 17:45:55 +0000211 default:
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200212 ret = mtd->read(mtd, *ppos, len, &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* Nand returns -EBADMSG on ecc errors, but it returns
215 * the data. For our userspace tools it is important
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000216 * to dump areas with ecc errors !
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200217 * For kernel internal usage it also might return -EUCLEAN
218 * to signal the caller that a bitflip has occured and has
219 * been corrected by the ECC algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * Userspace software which accesses NAND this way
221 * must be aware of the fact that it deals with NAND
222 */
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200223 if (!ret || (ret == -EUCLEAN) || (ret == -EBADMSG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *ppos += retlen;
225 if (copy_to_user(buf, kbuf, retlen)) {
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200226 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return -EFAULT;
228 }
229 else
230 total_retlen += retlen;
231
232 count -= retlen;
233 buf += retlen;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000234 if (retlen == 0)
235 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 else {
238 kfree(kbuf);
239 return ret;
240 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243
Thago Galesib802c072006-04-17 17:38:15 +0100244 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return total_retlen;
246} /* mtd_read */
247
248static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos)
249{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200250 struct mtd_file_info *mfi = file->private_data;
251 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 char *kbuf;
253 size_t retlen;
254 size_t total_retlen=0;
255 int ret=0;
256 int len;
257
258 DEBUG(MTD_DEBUG_LEVEL0,"MTD_write\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (*ppos == mtd->size)
261 return -ENOSPC;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (*ppos + count > mtd->size)
264 count = mtd->size - *ppos;
265
266 if (!count)
267 return 0;
268
Thago Galesib802c072006-04-17 17:38:15 +0100269 if (count > MAX_KMALLOC_SIZE)
270 kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL);
271 else
272 kbuf=kmalloc(count, GFP_KERNEL);
273
274 if (!kbuf)
275 return -ENOMEM;
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100278
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000279 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 len = MAX_KMALLOC_SIZE;
281 else
282 len = count;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (copy_from_user(kbuf, buf, len)) {
285 kfree(kbuf);
286 return -EFAULT;
287 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000288
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200289 switch (mfi->mode) {
290 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000291 ret = -EROFS;
292 break;
293 case MTD_MODE_OTP_USER:
294 if (!mtd->write_user_prot_reg) {
295 ret = -EOPNOTSUPP;
296 break;
297 }
298 ret = mtd->write_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
299 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200300
301 case MTD_MODE_RAW:
302 {
303 struct mtd_oob_ops ops;
304
305 ops.mode = MTD_OOB_RAW;
306 ops.datbuf = kbuf;
307 ops.oobbuf = NULL;
308 ops.len = len;
309
310 ret = mtd->write_oob(mtd, *ppos, &ops);
311 retlen = ops.retlen;
312 break;
313 }
314
Nicolas Pitre31f42332005-02-08 17:45:55 +0000315 default:
316 ret = (*(mtd->write))(mtd, *ppos, len, &retlen, kbuf);
317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (!ret) {
319 *ppos += retlen;
320 total_retlen += retlen;
321 count -= retlen;
322 buf += retlen;
323 }
324 else {
325 kfree(kbuf);
326 return ret;
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
Thago Galesib802c072006-04-17 17:38:15 +0100330 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return total_retlen;
332} /* mtd_write */
333
334/*======================================================================
335
336 IOCTL calls for getting device parameters.
337
338======================================================================*/
339static void mtdchar_erase_callback (struct erase_info *instr)
340{
341 wake_up((wait_queue_head_t *)instr->priv);
342}
343
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200344#if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP)
345static int otp_select_filemode(struct mtd_file_info *mfi, int mode)
346{
347 struct mtd_info *mtd = mfi->mtd;
348 int ret = 0;
349
350 switch (mode) {
351 case MTD_OTP_FACTORY:
352 if (!mtd->read_fact_prot_reg)
353 ret = -EOPNOTSUPP;
354 else
355 mfi->mode = MTD_MODE_OTP_FACTORY;
356 break;
357 case MTD_OTP_USER:
358 if (!mtd->read_fact_prot_reg)
359 ret = -EOPNOTSUPP;
360 else
361 mfi->mode = MTD_MODE_OTP_USER;
362 break;
363 default:
364 ret = -EINVAL;
365 case MTD_OTP_OFF:
366 break;
367 }
368 return ret;
369}
370#else
371# define otp_select_filemode(f,m) -EOPNOTSUPP
372#endif
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static int mtd_ioctl(struct inode *inode, struct file *file,
375 u_int cmd, u_long arg)
376{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200377 struct mtd_file_info *mfi = file->private_data;
378 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 void __user *argp = (void __user *)arg;
380 int ret = 0;
381 u_long size;
Joern Engel73c619e2006-05-30 14:25:35 +0200382 struct mtd_info_user info;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 DEBUG(MTD_DEBUG_LEVEL0, "MTD_ioctl\n");
385
386 size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT;
387 if (cmd & IOC_IN) {
388 if (!access_ok(VERIFY_READ, argp, size))
389 return -EFAULT;
390 }
391 if (cmd & IOC_OUT) {
392 if (!access_ok(VERIFY_WRITE, argp, size))
393 return -EFAULT;
394 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 switch (cmd) {
397 case MEMGETREGIONCOUNT:
398 if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int)))
399 return -EFAULT;
400 break;
401
402 case MEMGETREGIONINFO:
403 {
404 struct region_info_user ur;
405
406 if (copy_from_user(&ur, argp, sizeof(struct region_info_user)))
407 return -EFAULT;
408
409 if (ur.regionindex >= mtd->numeraseregions)
410 return -EINVAL;
411 if (copy_to_user(argp, &(mtd->eraseregions[ur.regionindex]),
412 sizeof(struct mtd_erase_region_info)))
413 return -EFAULT;
414 break;
415 }
416
417 case MEMGETINFO:
Joern Engel73c619e2006-05-30 14:25:35 +0200418 info.type = mtd->type;
419 info.flags = mtd->flags;
420 info.size = mtd->size;
421 info.erasesize = mtd->erasesize;
422 info.writesize = mtd->writesize;
423 info.oobsize = mtd->oobsize;
424 info.ecctype = mtd->ecctype;
425 info.eccsize = mtd->eccsize;
426 if (copy_to_user(argp, &info, sizeof(struct mtd_info_user)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -EFAULT;
428 break;
429
430 case MEMERASE:
431 {
432 struct erase_info *erase;
433
434 if(!(file->f_mode & 2))
435 return -EPERM;
436
437 erase=kmalloc(sizeof(struct erase_info),GFP_KERNEL);
438 if (!erase)
439 ret = -ENOMEM;
440 else {
441 wait_queue_head_t waitq;
442 DECLARE_WAITQUEUE(wait, current);
443
444 init_waitqueue_head(&waitq);
445
446 memset (erase,0,sizeof(struct erase_info));
447 if (copy_from_user(&erase->addr, argp,
448 sizeof(struct erase_info_user))) {
449 kfree(erase);
450 return -EFAULT;
451 }
452 erase->mtd = mtd;
453 erase->callback = mtdchar_erase_callback;
454 erase->priv = (unsigned long)&waitq;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /*
457 FIXME: Allow INTERRUPTIBLE. Which means
458 not having the wait_queue head on the stack.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 If the wq_head is on the stack, and we
461 leave because we got interrupted, then the
462 wq_head is no longer there when the
463 callback routine tries to wake us up.
464 */
465 ret = mtd->erase(mtd, erase);
466 if (!ret) {
467 set_current_state(TASK_UNINTERRUPTIBLE);
468 add_wait_queue(&waitq, &wait);
469 if (erase->state != MTD_ERASE_DONE &&
470 erase->state != MTD_ERASE_FAILED)
471 schedule();
472 remove_wait_queue(&waitq, &wait);
473 set_current_state(TASK_RUNNING);
474
475 ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0;
476 }
477 kfree(erase);
478 }
479 break;
480 }
481
482 case MEMWRITEOOB:
483 {
484 struct mtd_oob_buf buf;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200485 struct mtd_oob_ops ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if(!(file->f_mode & 2))
488 return -EPERM;
489
490 if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf)))
491 return -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000492
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200493 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return -EINVAL;
495
496 if (!mtd->write_oob)
497 ret = -EOPNOTSUPP;
498 else
499 ret = access_ok(VERIFY_READ, buf.ptr,
500 buf.length) ? 0 : EFAULT;
501
502 if (ret)
503 return ret;
504
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200505 ops.len = buf.length;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200506 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200507 ops.ooboffs = buf.start & (mtd->oobsize - 1);
508 ops.datbuf = NULL;
509 ops.mode = MTD_OOB_PLACE;
510
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200511 if (ops.ooboffs && ops.len > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200512 return -EINVAL;
513
514 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
515 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000517
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200518 if (copy_from_user(ops.oobbuf, buf.ptr, buf.length)) {
519 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -EFAULT;
521 }
522
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200523 buf.start &= ~(mtd->oobsize - 1);
524 ret = mtd->write_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200526 if (copy_to_user(argp + sizeof(uint32_t), &ops.retlen,
527 sizeof(uint32_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 ret = -EFAULT;
529
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200530 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 break;
532
533 }
534
535 case MEMREADOOB:
536 {
537 struct mtd_oob_buf buf;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200538 struct mtd_oob_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf)))
541 return -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000542
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200543 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return -EINVAL;
545
546 if (!mtd->read_oob)
547 ret = -EOPNOTSUPP;
548 else
549 ret = access_ok(VERIFY_WRITE, buf.ptr,
550 buf.length) ? 0 : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (ret)
552 return ret;
553
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200554 ops.len = buf.length;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200555 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200556 ops.ooboffs = buf.start & (mtd->oobsize - 1);
557 ops.datbuf = NULL;
558 ops.mode = MTD_OOB_PLACE;
559
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200560 if (ops.ooboffs && ops.len > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200561 return -EINVAL;
562
563 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
564 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000566
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200567 buf.start &= ~(mtd->oobsize - 1);
568 ret = mtd->read_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200570 if (put_user(ops.retlen, (uint32_t __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 ret = -EFAULT;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200572 else if (ops.retlen && copy_to_user(buf.ptr, ops.oobbuf,
573 ops.retlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 ret = -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000575
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200576 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 break;
578 }
579
580 case MEMLOCK:
581 {
582 struct erase_info_user info;
583
584 if (copy_from_user(&info, argp, sizeof(info)))
585 return -EFAULT;
586
587 if (!mtd->lock)
588 ret = -EOPNOTSUPP;
589 else
590 ret = mtd->lock(mtd, info.start, info.length);
591 break;
592 }
593
594 case MEMUNLOCK:
595 {
596 struct erase_info_user info;
597
598 if (copy_from_user(&info, argp, sizeof(info)))
599 return -EFAULT;
600
601 if (!mtd->unlock)
602 ret = -EOPNOTSUPP;
603 else
604 ret = mtd->unlock(mtd, info.start, info.length);
605 break;
606 }
607
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200608 /* Legacy interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 case MEMGETOOBSEL:
610 {
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200611 struct nand_oobinfo oi;
612
613 if (!mtd->ecclayout)
614 return -EOPNOTSUPP;
615 if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos))
616 return -EINVAL;
617
618 oi.useecc = MTD_NANDECC_AUTOPLACE;
619 memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos));
620 memcpy(&oi.oobfree, mtd->ecclayout->oobfree,
621 sizeof(oi.oobfree));
622
623 if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return -EFAULT;
625 break;
626 }
627
628 case MEMGETBADBLOCK:
629 {
630 loff_t offs;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (copy_from_user(&offs, argp, sizeof(loff_t)))
633 return -EFAULT;
634 if (!mtd->block_isbad)
635 ret = -EOPNOTSUPP;
636 else
637 return mtd->block_isbad(mtd, offs);
638 break;
639 }
640
641 case MEMSETBADBLOCK:
642 {
643 loff_t offs;
644
645 if (copy_from_user(&offs, argp, sizeof(loff_t)))
646 return -EFAULT;
647 if (!mtd->block_markbad)
648 ret = -EOPNOTSUPP;
649 else
650 return mtd->block_markbad(mtd, offs);
651 break;
652 }
653
Kyungmin Park493c6462006-05-12 17:03:07 +0300654#if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000655 case OTPSELECT:
656 {
657 int mode;
658 if (copy_from_user(&mode, argp, sizeof(int)))
659 return -EFAULT;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200660
661 mfi->mode = MTD_MODE_NORMAL;
662
663 ret = otp_select_filemode(mfi, mode);
664
Nicolas Pitre81dba482005-04-01 16:36:15 +0100665 file->f_pos = 0;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000666 break;
667 }
668
669 case OTPGETREGIONCOUNT:
670 case OTPGETREGIONINFO:
671 {
672 struct otp_info *buf = kmalloc(4096, GFP_KERNEL);
673 if (!buf)
674 return -ENOMEM;
675 ret = -EOPNOTSUPP;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200676 switch (mfi->mode) {
677 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000678 if (mtd->get_fact_prot_info)
679 ret = mtd->get_fact_prot_info(mtd, buf, 4096);
680 break;
681 case MTD_MODE_OTP_USER:
682 if (mtd->get_user_prot_info)
683 ret = mtd->get_user_prot_info(mtd, buf, 4096);
684 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200685 default:
686 break;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000687 }
688 if (ret >= 0) {
689 if (cmd == OTPGETREGIONCOUNT) {
690 int nbr = ret / sizeof(struct otp_info);
691 ret = copy_to_user(argp, &nbr, sizeof(int));
692 } else
693 ret = copy_to_user(argp, buf, ret);
694 if (ret)
695 ret = -EFAULT;
696 }
697 kfree(buf);
698 break;
699 }
700
701 case OTPLOCK:
702 {
703 struct otp_info info;
704
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200705 if (mfi->mode != MTD_MODE_OTP_USER)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000706 return -EINVAL;
707 if (copy_from_user(&info, argp, sizeof(info)))
708 return -EFAULT;
709 if (!mtd->lock_user_prot_reg)
710 return -EOPNOTSUPP;
711 ret = mtd->lock_user_prot_reg(mtd, info.start, info.length);
712 break;
713 }
714#endif
715
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200716 case ECCGETLAYOUT:
717 {
718 if (!mtd->ecclayout)
719 return -EOPNOTSUPP;
720
721 if (copy_to_user(argp, &mtd->ecclayout,
722 sizeof(struct nand_ecclayout)))
723 return -EFAULT;
724 break;
725 }
726
727 case ECCGETSTATS:
728 {
729 if (copy_to_user(argp, &mtd->ecc_stats,
730 sizeof(struct mtd_ecc_stats)))
731 return -EFAULT;
732 break;
733 }
734
735 case MTDFILEMODE:
736 {
737 mfi->mode = 0;
738
739 switch(arg) {
740 case MTD_MODE_OTP_FACTORY:
741 case MTD_MODE_OTP_USER:
742 ret = otp_select_filemode(mfi, arg);
743 break;
744
745 case MTD_MODE_RAW:
746 if (!mtd->read_oob || !mtd->write_oob)
747 return -EOPNOTSUPP;
748 mfi->mode = arg;
749
750 case MTD_MODE_NORMAL:
751 break;
752 default:
753 ret = -EINVAL;
754 }
755 file->f_pos = 0;
756 break;
757 }
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 default:
760 ret = -ENOTTY;
761 }
762
763 return ret;
764} /* memory_ioctl */
765
766static struct file_operations mtd_fops = {
767 .owner = THIS_MODULE,
768 .llseek = mtd_lseek,
769 .read = mtd_read,
770 .write = mtd_write,
771 .ioctl = mtd_ioctl,
772 .open = mtd_open,
773 .release = mtd_close,
774};
775
776static int __init init_mtdchar(void)
777{
778 if (register_chrdev(MTD_CHAR_MAJOR, "mtd", &mtd_fops)) {
779 printk(KERN_NOTICE "Can't allocate major number %d for Memory Technology Devices.\n",
780 MTD_CHAR_MAJOR);
781 return -EAGAIN;
782 }
783
Todd Poynor9bc7b382005-06-30 01:23:27 +0100784 mtd_class = class_create(THIS_MODULE, "mtd");
785
786 if (IS_ERR(mtd_class)) {
787 printk(KERN_ERR "Error creating mtd class.\n");
788 unregister_chrdev(MTD_CHAR_MAJOR, "mtd");
Coywolf Qi Hunt3a7a8822005-07-04 12:15:28 -0500789 return PTR_ERR(mtd_class);
Todd Poynor9bc7b382005-06-30 01:23:27 +0100790 }
791
792 register_mtd_user(&notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return 0;
794}
795
796static void __exit cleanup_mtdchar(void)
797{
Todd Poynor9bc7b382005-06-30 01:23:27 +0100798 unregister_mtd_user(&notifier);
799 class_destroy(mtd_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 unregister_chrdev(MTD_CHAR_MAJOR, "mtd");
801}
802
803module_init(init_mtdchar);
804module_exit(cleanup_mtdchar);
805
806
807MODULE_LICENSE("GPL");
808MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
809MODULE_DESCRIPTION("Direct character-device access to MTD devices");