blob: 866c8e0d57e4c331c49b0781a146e0f9f128de34 [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) {
Josef 'Jeff' Sipekea598302006-09-16 21:09:29 -040065 case SEEK_SET:
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 break;
Josef 'Jeff' Sipekea598302006-09-16 21:09:29 -040067 case SEEK_CUR:
Todd Poynor8b491d72005-08-04 02:05:51 +010068 offset += file->f_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 break;
Josef 'Jeff' Sipekea598302006-09-16 21:09:29 -040070 case SEEK_END:
Todd Poynor8b491d72005-08-04 02:05:51 +010071 offset += mtd->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 break;
73 default:
74 return -EINVAL;
75 }
76
Herbert Valerio Riedel1887f512006-06-24 00:03:36 +020077 if (offset >= 0 && offset <= mtd->size)
Todd Poynor8b491d72005-08-04 02:05:51 +010078 return file->f_pos = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Todd Poynor8b491d72005-08-04 02:05:51 +010080 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83
84
85static int mtd_open(struct inode *inode, struct file *file)
86{
87 int minor = iminor(inode);
88 int devnum = minor >> 1;
89 struct mtd_info *mtd;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020090 struct mtd_file_info *mfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 DEBUG(MTD_DEBUG_LEVEL0, "MTD_open\n");
93
94 if (devnum >= MAX_MTD_DEVICES)
95 return -ENODEV;
96
97 /* You can't open the RO devices RW */
98 if ((file->f_mode & 2) && (minor & 1))
99 return -EACCES;
100
101 mtd = get_mtd_device(NULL, devnum);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (!mtd)
104 return -ENODEV;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (MTD_ABSENT == mtd->type) {
107 put_mtd_device(mtd);
108 return -ENODEV;
109 }
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 /* You can't open it RW if it's not a writeable device */
112 if ((file->f_mode & 2) && !(mtd->flags & MTD_WRITEABLE)) {
113 put_mtd_device(mtd);
114 return -EACCES;
115 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000116
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200117 mfi = kzalloc(sizeof(*mfi), GFP_KERNEL);
118 if (!mfi) {
119 put_mtd_device(mtd);
120 return -ENOMEM;
121 }
122 mfi->mtd = mtd;
123 file->private_data = mfi;
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return 0;
126} /* mtd_open */
127
128/*====================================================================*/
129
130static int mtd_close(struct inode *inode, struct file *file)
131{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200132 struct mtd_file_info *mfi = file->private_data;
133 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n");
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (mtd->sync)
138 mtd->sync(mtd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 put_mtd_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200141 file->private_data = NULL;
142 kfree(mfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 return 0;
145} /* mtd_close */
146
147/* FIXME: This _really_ needs to die. In 2.5, we should lock the
148 userspace buffer down and use it directly with readv/writev.
149*/
150#define MAX_KMALLOC_SIZE 0x20000
151
152static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos)
153{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200154 struct mtd_file_info *mfi = file->private_data;
155 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 size_t retlen=0;
157 size_t total_retlen=0;
158 int ret=0;
159 int len;
160 char *kbuf;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 DEBUG(MTD_DEBUG_LEVEL0,"MTD_read\n");
163
164 if (*ppos + count > mtd->size)
165 count = mtd->size - *ppos;
166
167 if (!count)
168 return 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 /* FIXME: Use kiovec in 2.5 to lock down the user's buffers
171 and pass them directly to the MTD functions */
Thago Galesib802c072006-04-17 17:38:15 +0100172
173 if (count > MAX_KMALLOC_SIZE)
174 kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL);
175 else
176 kbuf=kmalloc(count, GFP_KERNEL);
177
178 if (!kbuf)
179 return -ENOMEM;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100182
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000183 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 len = MAX_KMALLOC_SIZE;
185 else
186 len = count;
187
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200188 switch (mfi->mode) {
189 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000190 ret = mtd->read_fact_prot_reg(mtd, *ppos, len, &retlen, kbuf);
191 break;
192 case MTD_MODE_OTP_USER:
193 ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
194 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200195 case MTD_MODE_RAW:
196 {
197 struct mtd_oob_ops ops;
198
199 ops.mode = MTD_OOB_RAW;
200 ops.datbuf = kbuf;
201 ops.oobbuf = NULL;
202 ops.len = len;
203
204 ret = mtd->read_oob(mtd, *ppos, &ops);
205 retlen = ops.retlen;
206 break;
207 }
Nicolas Pitre31f42332005-02-08 17:45:55 +0000208 default:
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200209 ret = mtd->read(mtd, *ppos, len, &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Nand returns -EBADMSG on ecc errors, but it returns
212 * the data. For our userspace tools it is important
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000213 * to dump areas with ecc errors !
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200214 * For kernel internal usage it also might return -EUCLEAN
215 * to signal the caller that a bitflip has occured and has
216 * been corrected by the ECC algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 * Userspace software which accesses NAND this way
218 * must be aware of the fact that it deals with NAND
219 */
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200220 if (!ret || (ret == -EUCLEAN) || (ret == -EBADMSG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 *ppos += retlen;
222 if (copy_to_user(buf, kbuf, retlen)) {
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200223 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return -EFAULT;
225 }
226 else
227 total_retlen += retlen;
228
229 count -= retlen;
230 buf += retlen;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000231 if (retlen == 0)
232 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234 else {
235 kfree(kbuf);
236 return ret;
237 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
Thago Galesib802c072006-04-17 17:38:15 +0100241 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return total_retlen;
243} /* mtd_read */
244
245static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos)
246{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200247 struct mtd_file_info *mfi = file->private_data;
248 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 char *kbuf;
250 size_t retlen;
251 size_t total_retlen=0;
252 int ret=0;
253 int len;
254
255 DEBUG(MTD_DEBUG_LEVEL0,"MTD_write\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (*ppos == mtd->size)
258 return -ENOSPC;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (*ppos + count > mtd->size)
261 count = mtd->size - *ppos;
262
263 if (!count)
264 return 0;
265
Thago Galesib802c072006-04-17 17:38:15 +0100266 if (count > MAX_KMALLOC_SIZE)
267 kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL);
268 else
269 kbuf=kmalloc(count, GFP_KERNEL);
270
271 if (!kbuf)
272 return -ENOMEM;
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100275
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000276 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 len = MAX_KMALLOC_SIZE;
278 else
279 len = count;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (copy_from_user(kbuf, buf, len)) {
282 kfree(kbuf);
283 return -EFAULT;
284 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000285
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200286 switch (mfi->mode) {
287 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000288 ret = -EROFS;
289 break;
290 case MTD_MODE_OTP_USER:
291 if (!mtd->write_user_prot_reg) {
292 ret = -EOPNOTSUPP;
293 break;
294 }
295 ret = mtd->write_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
296 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200297
298 case MTD_MODE_RAW:
299 {
300 struct mtd_oob_ops ops;
301
302 ops.mode = MTD_OOB_RAW;
303 ops.datbuf = kbuf;
304 ops.oobbuf = NULL;
305 ops.len = len;
306
307 ret = mtd->write_oob(mtd, *ppos, &ops);
308 retlen = ops.retlen;
309 break;
310 }
311
Nicolas Pitre31f42332005-02-08 17:45:55 +0000312 default:
313 ret = (*(mtd->write))(mtd, *ppos, len, &retlen, kbuf);
314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (!ret) {
316 *ppos += retlen;
317 total_retlen += retlen;
318 count -= retlen;
319 buf += retlen;
320 }
321 else {
322 kfree(kbuf);
323 return ret;
324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326
Thago Galesib802c072006-04-17 17:38:15 +0100327 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return total_retlen;
329} /* mtd_write */
330
331/*======================================================================
332
333 IOCTL calls for getting device parameters.
334
335======================================================================*/
336static void mtdchar_erase_callback (struct erase_info *instr)
337{
338 wake_up((wait_queue_head_t *)instr->priv);
339}
340
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200341#if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP)
342static int otp_select_filemode(struct mtd_file_info *mfi, int mode)
343{
344 struct mtd_info *mtd = mfi->mtd;
345 int ret = 0;
346
347 switch (mode) {
348 case MTD_OTP_FACTORY:
349 if (!mtd->read_fact_prot_reg)
350 ret = -EOPNOTSUPP;
351 else
352 mfi->mode = MTD_MODE_OTP_FACTORY;
353 break;
354 case MTD_OTP_USER:
355 if (!mtd->read_fact_prot_reg)
356 ret = -EOPNOTSUPP;
357 else
358 mfi->mode = MTD_MODE_OTP_USER;
359 break;
360 default:
361 ret = -EINVAL;
362 case MTD_OTP_OFF:
363 break;
364 }
365 return ret;
366}
367#else
368# define otp_select_filemode(f,m) -EOPNOTSUPP
369#endif
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371static int mtd_ioctl(struct inode *inode, struct file *file,
372 u_int cmd, u_long arg)
373{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200374 struct mtd_file_info *mfi = file->private_data;
375 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 void __user *argp = (void __user *)arg;
377 int ret = 0;
378 u_long size;
Joern Engel73c619e2006-05-30 14:25:35 +0200379 struct mtd_info_user info;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 DEBUG(MTD_DEBUG_LEVEL0, "MTD_ioctl\n");
382
383 size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT;
384 if (cmd & IOC_IN) {
385 if (!access_ok(VERIFY_READ, argp, size))
386 return -EFAULT;
387 }
388 if (cmd & IOC_OUT) {
389 if (!access_ok(VERIFY_WRITE, argp, size))
390 return -EFAULT;
391 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 switch (cmd) {
394 case MEMGETREGIONCOUNT:
395 if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int)))
396 return -EFAULT;
397 break;
398
399 case MEMGETREGIONINFO:
400 {
401 struct region_info_user ur;
402
403 if (copy_from_user(&ur, argp, sizeof(struct region_info_user)))
404 return -EFAULT;
405
406 if (ur.regionindex >= mtd->numeraseregions)
407 return -EINVAL;
408 if (copy_to_user(argp, &(mtd->eraseregions[ur.regionindex]),
409 sizeof(struct mtd_erase_region_info)))
410 return -EFAULT;
411 break;
412 }
413
414 case MEMGETINFO:
Joern Engel73c619e2006-05-30 14:25:35 +0200415 info.type = mtd->type;
416 info.flags = mtd->flags;
417 info.size = mtd->size;
418 info.erasesize = mtd->erasesize;
419 info.writesize = mtd->writesize;
420 info.oobsize = mtd->oobsize;
421 info.ecctype = mtd->ecctype;
422 info.eccsize = mtd->eccsize;
423 if (copy_to_user(argp, &info, sizeof(struct mtd_info_user)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -EFAULT;
425 break;
426
427 case MEMERASE:
428 {
429 struct erase_info *erase;
430
431 if(!(file->f_mode & 2))
432 return -EPERM;
433
434 erase=kmalloc(sizeof(struct erase_info),GFP_KERNEL);
435 if (!erase)
436 ret = -ENOMEM;
437 else {
438 wait_queue_head_t waitq;
439 DECLARE_WAITQUEUE(wait, current);
440
441 init_waitqueue_head(&waitq);
442
443 memset (erase,0,sizeof(struct erase_info));
444 if (copy_from_user(&erase->addr, argp,
445 sizeof(struct erase_info_user))) {
446 kfree(erase);
447 return -EFAULT;
448 }
449 erase->mtd = mtd;
450 erase->callback = mtdchar_erase_callback;
451 erase->priv = (unsigned long)&waitq;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /*
454 FIXME: Allow INTERRUPTIBLE. Which means
455 not having the wait_queue head on the stack.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 If the wq_head is on the stack, and we
458 leave because we got interrupted, then the
459 wq_head is no longer there when the
460 callback routine tries to wake us up.
461 */
462 ret = mtd->erase(mtd, erase);
463 if (!ret) {
464 set_current_state(TASK_UNINTERRUPTIBLE);
465 add_wait_queue(&waitq, &wait);
466 if (erase->state != MTD_ERASE_DONE &&
467 erase->state != MTD_ERASE_FAILED)
468 schedule();
469 remove_wait_queue(&waitq, &wait);
470 set_current_state(TASK_RUNNING);
471
472 ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0;
473 }
474 kfree(erase);
475 }
476 break;
477 }
478
479 case MEMWRITEOOB:
480 {
481 struct mtd_oob_buf buf;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200482 struct mtd_oob_ops ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if(!(file->f_mode & 2))
485 return -EPERM;
486
487 if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf)))
488 return -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000489
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200490 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return -EINVAL;
492
493 if (!mtd->write_oob)
494 ret = -EOPNOTSUPP;
495 else
496 ret = access_ok(VERIFY_READ, buf.ptr,
497 buf.length) ? 0 : EFAULT;
498
499 if (ret)
500 return ret;
501
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200502 ops.len = buf.length;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200503 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200504 ops.ooboffs = buf.start & (mtd->oobsize - 1);
505 ops.datbuf = NULL;
506 ops.mode = MTD_OOB_PLACE;
507
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200508 if (ops.ooboffs && ops.len > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200509 return -EINVAL;
510
511 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
512 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000514
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200515 if (copy_from_user(ops.oobbuf, buf.ptr, buf.length)) {
516 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -EFAULT;
518 }
519
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200520 buf.start &= ~(mtd->oobsize - 1);
521 ret = mtd->write_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200523 if (copy_to_user(argp + sizeof(uint32_t), &ops.retlen,
524 sizeof(uint32_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 ret = -EFAULT;
526
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200527 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
529
530 }
531
532 case MEMREADOOB:
533 {
534 struct mtd_oob_buf buf;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200535 struct mtd_oob_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf)))
538 return -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000539
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200540 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return -EINVAL;
542
543 if (!mtd->read_oob)
544 ret = -EOPNOTSUPP;
545 else
546 ret = access_ok(VERIFY_WRITE, buf.ptr,
547 buf.length) ? 0 : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (ret)
549 return ret;
550
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200551 ops.len = buf.length;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200552 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200553 ops.ooboffs = buf.start & (mtd->oobsize - 1);
554 ops.datbuf = NULL;
555 ops.mode = MTD_OOB_PLACE;
556
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200557 if (ops.ooboffs && ops.len > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200558 return -EINVAL;
559
560 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
561 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000563
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200564 buf.start &= ~(mtd->oobsize - 1);
565 ret = mtd->read_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200567 if (put_user(ops.retlen, (uint32_t __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 ret = -EFAULT;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200569 else if (ops.retlen && copy_to_user(buf.ptr, ops.oobbuf,
570 ops.retlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 ret = -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000572
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200573 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 break;
575 }
576
577 case MEMLOCK:
578 {
579 struct erase_info_user info;
580
581 if (copy_from_user(&info, argp, sizeof(info)))
582 return -EFAULT;
583
584 if (!mtd->lock)
585 ret = -EOPNOTSUPP;
586 else
587 ret = mtd->lock(mtd, info.start, info.length);
588 break;
589 }
590
591 case MEMUNLOCK:
592 {
593 struct erase_info_user info;
594
595 if (copy_from_user(&info, argp, sizeof(info)))
596 return -EFAULT;
597
598 if (!mtd->unlock)
599 ret = -EOPNOTSUPP;
600 else
601 ret = mtd->unlock(mtd, info.start, info.length);
602 break;
603 }
604
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200605 /* Legacy interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 case MEMGETOOBSEL:
607 {
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200608 struct nand_oobinfo oi;
609
610 if (!mtd->ecclayout)
611 return -EOPNOTSUPP;
612 if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos))
613 return -EINVAL;
614
615 oi.useecc = MTD_NANDECC_AUTOPLACE;
616 memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos));
617 memcpy(&oi.oobfree, mtd->ecclayout->oobfree,
618 sizeof(oi.oobfree));
Ricard Wanderlöfd25ade72006-10-17 17:27:11 +0200619 oi.eccbytes = mtd->ecclayout->eccbytes;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200620
621 if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return -EFAULT;
623 break;
624 }
625
626 case MEMGETBADBLOCK:
627 {
628 loff_t offs;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (copy_from_user(&offs, argp, sizeof(loff_t)))
631 return -EFAULT;
632 if (!mtd->block_isbad)
633 ret = -EOPNOTSUPP;
634 else
635 return mtd->block_isbad(mtd, offs);
636 break;
637 }
638
639 case MEMSETBADBLOCK:
640 {
641 loff_t offs;
642
643 if (copy_from_user(&offs, argp, sizeof(loff_t)))
644 return -EFAULT;
645 if (!mtd->block_markbad)
646 ret = -EOPNOTSUPP;
647 else
648 return mtd->block_markbad(mtd, offs);
649 break;
650 }
651
Kyungmin Park493c6462006-05-12 17:03:07 +0300652#if defined(CONFIG_MTD_OTP) || defined(CONFIG_MTD_ONENAND_OTP)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000653 case OTPSELECT:
654 {
655 int mode;
656 if (copy_from_user(&mode, argp, sizeof(int)))
657 return -EFAULT;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200658
659 mfi->mode = MTD_MODE_NORMAL;
660
661 ret = otp_select_filemode(mfi, mode);
662
Nicolas Pitre81dba482005-04-01 16:36:15 +0100663 file->f_pos = 0;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000664 break;
665 }
666
667 case OTPGETREGIONCOUNT:
668 case OTPGETREGIONINFO:
669 {
670 struct otp_info *buf = kmalloc(4096, GFP_KERNEL);
671 if (!buf)
672 return -ENOMEM;
673 ret = -EOPNOTSUPP;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200674 switch (mfi->mode) {
675 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000676 if (mtd->get_fact_prot_info)
677 ret = mtd->get_fact_prot_info(mtd, buf, 4096);
678 break;
679 case MTD_MODE_OTP_USER:
680 if (mtd->get_user_prot_info)
681 ret = mtd->get_user_prot_info(mtd, buf, 4096);
682 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200683 default:
684 break;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000685 }
686 if (ret >= 0) {
687 if (cmd == OTPGETREGIONCOUNT) {
688 int nbr = ret / sizeof(struct otp_info);
689 ret = copy_to_user(argp, &nbr, sizeof(int));
690 } else
691 ret = copy_to_user(argp, buf, ret);
692 if (ret)
693 ret = -EFAULT;
694 }
695 kfree(buf);
696 break;
697 }
698
699 case OTPLOCK:
700 {
701 struct otp_info info;
702
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200703 if (mfi->mode != MTD_MODE_OTP_USER)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000704 return -EINVAL;
705 if (copy_from_user(&info, argp, sizeof(info)))
706 return -EFAULT;
707 if (!mtd->lock_user_prot_reg)
708 return -EOPNOTSUPP;
709 ret = mtd->lock_user_prot_reg(mtd, info.start, info.length);
710 break;
711 }
712#endif
713
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200714 case ECCGETLAYOUT:
715 {
716 if (!mtd->ecclayout)
717 return -EOPNOTSUPP;
718
Ricard Wanderlöfd25ade72006-10-17 17:27:11 +0200719 if (copy_to_user(argp, mtd->ecclayout,
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200720 sizeof(struct nand_ecclayout)))
721 return -EFAULT;
722 break;
723 }
724
725 case ECCGETSTATS:
726 {
727 if (copy_to_user(argp, &mtd->ecc_stats,
728 sizeof(struct mtd_ecc_stats)))
729 return -EFAULT;
730 break;
731 }
732
733 case MTDFILEMODE:
734 {
735 mfi->mode = 0;
736
737 switch(arg) {
738 case MTD_MODE_OTP_FACTORY:
739 case MTD_MODE_OTP_USER:
740 ret = otp_select_filemode(mfi, arg);
741 break;
742
743 case MTD_MODE_RAW:
744 if (!mtd->read_oob || !mtd->write_oob)
745 return -EOPNOTSUPP;
746 mfi->mode = arg;
747
748 case MTD_MODE_NORMAL:
749 break;
750 default:
751 ret = -EINVAL;
752 }
753 file->f_pos = 0;
754 break;
755 }
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 default:
758 ret = -ENOTTY;
759 }
760
761 return ret;
762} /* memory_ioctl */
763
764static struct file_operations mtd_fops = {
765 .owner = THIS_MODULE,
766 .llseek = mtd_lseek,
767 .read = mtd_read,
768 .write = mtd_write,
769 .ioctl = mtd_ioctl,
770 .open = mtd_open,
771 .release = mtd_close,
772};
773
774static int __init init_mtdchar(void)
775{
776 if (register_chrdev(MTD_CHAR_MAJOR, "mtd", &mtd_fops)) {
777 printk(KERN_NOTICE "Can't allocate major number %d for Memory Technology Devices.\n",
778 MTD_CHAR_MAJOR);
779 return -EAGAIN;
780 }
781
Todd Poynor9bc7b382005-06-30 01:23:27 +0100782 mtd_class = class_create(THIS_MODULE, "mtd");
783
784 if (IS_ERR(mtd_class)) {
785 printk(KERN_ERR "Error creating mtd class.\n");
786 unregister_chrdev(MTD_CHAR_MAJOR, "mtd");
Coywolf Qi Hunt3a7a8822005-07-04 12:15:28 -0500787 return PTR_ERR(mtd_class);
Todd Poynor9bc7b382005-06-30 01:23:27 +0100788 }
789
790 register_mtd_user(&notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return 0;
792}
793
794static void __exit cleanup_mtdchar(void)
795{
Todd Poynor9bc7b382005-06-30 01:23:27 +0100796 unregister_mtd_user(&notifier);
797 class_destroy(mtd_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 unregister_chrdev(MTD_CHAR_MAJOR, "mtd");
799}
800
801module_init(init_mtdchar);
802module_exit(cleanup_mtdchar);
803
804
805MODULE_LICENSE("GPL");
806MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
807MODULE_DESCRIPTION("Direct character-device access to MTD devices");