blob: 2c8a16f49ca252a1ed85aabee631af3b665e35c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Character-device access to raw MTD devices.
3 *
4 */
5
Thomas Gleixner15fdc522005-11-07 00:14:42 +01006#include <linux/device.h>
7#include <linux/fs.h>
Andrew Morton0c1eafd2007-08-10 13:01:06 -07008#include <linux/mm.h>
Artem Bityutskiy9c740342006-10-11 14:52:47 +03009#include <linux/err.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010010#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>
Jonathan Corbet60712392008-05-15 10:10:37 -060015#include <linux/smp_lock.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010016
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-Hartmana9b12612008-07-21 20:03:34 -070029 device_create(mtd_class, NULL, MKDEV(MTD_CHAR_MAJOR, mtd->index*2),
30 NULL, "mtd%d", mtd->index);
Thomas Gleixner97894cd2005-11-07 11:15:26 +000031
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -070032 device_create(mtd_class, NULL, 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
Tony Jonesa98894a2007-09-25 02:03:03 +020041 device_destroy(mtd_class, MKDEV(MTD_CHAR_MAJOR, mtd->index*2));
42 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;
Jonathan Corbet60712392008-05-15 10:10:37 -060089 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct mtd_info *mtd;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020091 struct mtd_file_info *mfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 DEBUG(MTD_DEBUG_LEVEL0, "MTD_open\n");
94
95 if (devnum >= MAX_MTD_DEVICES)
96 return -ENODEV;
97
98 /* You can't open the RO devices RW */
Al Viroaeb5d722008-09-02 15:28:45 -040099 if ((file->f_mode & FMODE_WRITE) && (minor & 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return -EACCES;
101
Jonathan Corbet60712392008-05-15 10:10:37 -0600102 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 mtd = get_mtd_device(NULL, devnum);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000104
Jonathan Corbet60712392008-05-15 10:10:37 -0600105 if (IS_ERR(mtd)) {
106 ret = PTR_ERR(mtd);
107 goto out;
108 }
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);
Jonathan Corbet60712392008-05-15 10:10:37 -0600112 ret = -ENODEV;
113 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* You can't open it RW if it's not a writeable device */
Al Viroaeb5d722008-09-02 15:28:45 -0400117 if ((file->f_mode & FMODE_WRITE) && !(mtd->flags & MTD_WRITEABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 put_mtd_device(mtd);
Jonathan Corbet60712392008-05-15 10:10:37 -0600119 ret = -EACCES;
120 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000122
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200123 mfi = kzalloc(sizeof(*mfi), GFP_KERNEL);
124 if (!mfi) {
125 put_mtd_device(mtd);
Jonathan Corbet60712392008-05-15 10:10:37 -0600126 ret = -ENOMEM;
127 goto out;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200128 }
129 mfi->mtd = mtd;
130 file->private_data = mfi;
131
Jonathan Corbet60712392008-05-15 10:10:37 -0600132out:
133 unlock_kernel();
134 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135} /* mtd_open */
136
137/*====================================================================*/
138
139static int mtd_close(struct inode *inode, struct file *file)
140{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200141 struct mtd_file_info *mfi = file->private_data;
142 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 DEBUG(MTD_DEBUG_LEVEL0, "MTD_close\n");
145
Joakim Tjernlund7eafaed2007-06-27 00:56:40 +0200146 /* Only sync if opened RW */
Al Viroaeb5d722008-09-02 15:28:45 -0400147 if ((file->f_mode & FMODE_WRITE) && mtd->sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 mtd->sync(mtd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 put_mtd_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200151 file->private_data = NULL;
152 kfree(mfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 return 0;
155} /* mtd_close */
156
157/* FIXME: This _really_ needs to die. In 2.5, we should lock the
158 userspace buffer down and use it directly with readv/writev.
159*/
160#define MAX_KMALLOC_SIZE 0x20000
161
162static ssize_t mtd_read(struct file *file, char __user *buf, size_t count,loff_t *ppos)
163{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200164 struct mtd_file_info *mfi = file->private_data;
165 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 size_t retlen=0;
167 size_t total_retlen=0;
168 int ret=0;
169 int len;
170 char *kbuf;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 DEBUG(MTD_DEBUG_LEVEL0,"MTD_read\n");
173
174 if (*ppos + count > mtd->size)
175 count = mtd->size - *ppos;
176
177 if (!count)
178 return 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* FIXME: Use kiovec in 2.5 to lock down the user's buffers
181 and pass them directly to the MTD functions */
Thago Galesib802c072006-04-17 17:38:15 +0100182
183 if (count > MAX_KMALLOC_SIZE)
184 kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL);
185 else
186 kbuf=kmalloc(count, GFP_KERNEL);
187
188 if (!kbuf)
189 return -ENOMEM;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100192
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000193 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 len = MAX_KMALLOC_SIZE;
195 else
196 len = count;
197
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200198 switch (mfi->mode) {
199 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000200 ret = mtd->read_fact_prot_reg(mtd, *ppos, len, &retlen, kbuf);
201 break;
202 case MTD_MODE_OTP_USER:
203 ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
204 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200205 case MTD_MODE_RAW:
206 {
207 struct mtd_oob_ops ops;
208
209 ops.mode = MTD_OOB_RAW;
210 ops.datbuf = kbuf;
211 ops.oobbuf = NULL;
212 ops.len = len;
213
214 ret = mtd->read_oob(mtd, *ppos, &ops);
215 retlen = ops.retlen;
216 break;
217 }
Nicolas Pitre31f42332005-02-08 17:45:55 +0000218 default:
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200219 ret = mtd->read(mtd, *ppos, len, &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /* Nand returns -EBADMSG on ecc errors, but it returns
222 * the data. For our userspace tools it is important
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000223 * to dump areas with ecc errors !
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200224 * For kernel internal usage it also might return -EUCLEAN
225 * to signal the caller that a bitflip has occured and has
226 * been corrected by the ECC algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * Userspace software which accesses NAND this way
228 * must be aware of the fact that it deals with NAND
229 */
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200230 if (!ret || (ret == -EUCLEAN) || (ret == -EBADMSG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 *ppos += retlen;
232 if (copy_to_user(buf, kbuf, retlen)) {
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200233 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return -EFAULT;
235 }
236 else
237 total_retlen += retlen;
238
239 count -= retlen;
240 buf += retlen;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000241 if (retlen == 0)
242 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244 else {
245 kfree(kbuf);
246 return ret;
247 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
Thago Galesib802c072006-04-17 17:38:15 +0100251 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return total_retlen;
253} /* mtd_read */
254
255static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count,loff_t *ppos)
256{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200257 struct mtd_file_info *mfi = file->private_data;
258 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 char *kbuf;
260 size_t retlen;
261 size_t total_retlen=0;
262 int ret=0;
263 int len;
264
265 DEBUG(MTD_DEBUG_LEVEL0,"MTD_write\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (*ppos == mtd->size)
268 return -ENOSPC;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (*ppos + count > mtd->size)
271 count = mtd->size - *ppos;
272
273 if (!count)
274 return 0;
275
Thago Galesib802c072006-04-17 17:38:15 +0100276 if (count > MAX_KMALLOC_SIZE)
277 kbuf=kmalloc(MAX_KMALLOC_SIZE, GFP_KERNEL);
278 else
279 kbuf=kmalloc(count, GFP_KERNEL);
280
281 if (!kbuf)
282 return -ENOMEM;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 while (count) {
Thago Galesib802c072006-04-17 17:38:15 +0100285
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000286 if (count > MAX_KMALLOC_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 len = MAX_KMALLOC_SIZE;
288 else
289 len = count;
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (copy_from_user(kbuf, buf, len)) {
292 kfree(kbuf);
293 return -EFAULT;
294 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000295
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200296 switch (mfi->mode) {
297 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000298 ret = -EROFS;
299 break;
300 case MTD_MODE_OTP_USER:
301 if (!mtd->write_user_prot_reg) {
302 ret = -EOPNOTSUPP;
303 break;
304 }
305 ret = mtd->write_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
306 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200307
308 case MTD_MODE_RAW:
309 {
310 struct mtd_oob_ops ops;
311
312 ops.mode = MTD_OOB_RAW;
313 ops.datbuf = kbuf;
314 ops.oobbuf = NULL;
315 ops.len = len;
316
317 ret = mtd->write_oob(mtd, *ppos, &ops);
318 retlen = ops.retlen;
319 break;
320 }
321
Nicolas Pitre31f42332005-02-08 17:45:55 +0000322 default:
323 ret = (*(mtd->write))(mtd, *ppos, len, &retlen, kbuf);
324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (!ret) {
326 *ppos += retlen;
327 total_retlen += retlen;
328 count -= retlen;
329 buf += retlen;
330 }
331 else {
332 kfree(kbuf);
333 return ret;
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
Thago Galesib802c072006-04-17 17:38:15 +0100337 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return total_retlen;
339} /* mtd_write */
340
341/*======================================================================
342
343 IOCTL calls for getting device parameters.
344
345======================================================================*/
346static void mtdchar_erase_callback (struct erase_info *instr)
347{
348 wake_up((wait_queue_head_t *)instr->priv);
349}
350
David Brownell34a82442008-07-30 12:35:05 -0700351#ifdef CONFIG_HAVE_MTD_OTP
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200352static int otp_select_filemode(struct mtd_file_info *mfi, int mode)
353{
354 struct mtd_info *mtd = mfi->mtd;
355 int ret = 0;
356
357 switch (mode) {
358 case MTD_OTP_FACTORY:
359 if (!mtd->read_fact_prot_reg)
360 ret = -EOPNOTSUPP;
361 else
362 mfi->mode = MTD_MODE_OTP_FACTORY;
363 break;
364 case MTD_OTP_USER:
365 if (!mtd->read_fact_prot_reg)
366 ret = -EOPNOTSUPP;
367 else
368 mfi->mode = MTD_MODE_OTP_USER;
369 break;
370 default:
371 ret = -EINVAL;
372 case MTD_OTP_OFF:
373 break;
374 }
375 return ret;
376}
377#else
378# define otp_select_filemode(f,m) -EOPNOTSUPP
379#endif
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static int mtd_ioctl(struct inode *inode, struct file *file,
382 u_int cmd, u_long arg)
383{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200384 struct mtd_file_info *mfi = file->private_data;
385 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 void __user *argp = (void __user *)arg;
387 int ret = 0;
388 u_long size;
Joern Engel73c619e2006-05-30 14:25:35 +0200389 struct mtd_info_user info;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 DEBUG(MTD_DEBUG_LEVEL0, "MTD_ioctl\n");
392
393 size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT;
394 if (cmd & IOC_IN) {
395 if (!access_ok(VERIFY_READ, argp, size))
396 return -EFAULT;
397 }
398 if (cmd & IOC_OUT) {
399 if (!access_ok(VERIFY_WRITE, argp, size))
400 return -EFAULT;
401 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 switch (cmd) {
404 case MEMGETREGIONCOUNT:
405 if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int)))
406 return -EFAULT;
407 break;
408
409 case MEMGETREGIONINFO:
410 {
Zev Weissb67c5f82008-09-01 05:02:12 -0700411 uint32_t ur_idx;
412 struct mtd_erase_region_info *kr;
413 struct region_info_user *ur = (struct region_info_user *) argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Zev Weissb67c5f82008-09-01 05:02:12 -0700415 if (get_user(ur_idx, &(ur->regionindex)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return -EFAULT;
417
Zev Weissb67c5f82008-09-01 05:02:12 -0700418 kr = &(mtd->eraseregions[ur_idx]);
419
420 if (put_user(kr->offset, &(ur->offset))
421 || put_user(kr->erasesize, &(ur->erasesize))
422 || put_user(kr->numblocks, &(ur->numblocks)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return -EFAULT;
Zev Weissb67c5f82008-09-01 05:02:12 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 break;
426 }
427
428 case MEMGETINFO:
Joern Engel73c619e2006-05-30 14:25:35 +0200429 info.type = mtd->type;
430 info.flags = mtd->flags;
431 info.size = mtd->size;
432 info.erasesize = mtd->erasesize;
433 info.writesize = mtd->writesize;
434 info.oobsize = mtd->oobsize;
Artem Bityutskiy64f60712007-01-30 10:50:43 +0200435 /* The below fields are obsolete */
436 info.ecctype = -1;
437 info.eccsize = 0;
Joern Engel73c619e2006-05-30 14:25:35 +0200438 if (copy_to_user(argp, &info, sizeof(struct mtd_info_user)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return -EFAULT;
440 break;
441
442 case MEMERASE:
443 {
444 struct erase_info *erase;
445
Al Viroaeb5d722008-09-02 15:28:45 -0400446 if(!(file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return -EPERM;
448
Burman Yan95b93a02006-11-15 21:10:29 +0200449 erase=kzalloc(sizeof(struct erase_info),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (!erase)
451 ret = -ENOMEM;
452 else {
Adrian Hunter69423d92008-12-10 13:37:21 +0000453 struct erase_info_user einfo;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 wait_queue_head_t waitq;
456 DECLARE_WAITQUEUE(wait, current);
457
458 init_waitqueue_head(&waitq);
459
Adrian Hunter69423d92008-12-10 13:37:21 +0000460 if (copy_from_user(&einfo, argp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sizeof(struct erase_info_user))) {
462 kfree(erase);
463 return -EFAULT;
464 }
Adrian Hunter69423d92008-12-10 13:37:21 +0000465 erase->addr = einfo.start;
466 erase->len = einfo.length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 erase->mtd = mtd;
468 erase->callback = mtdchar_erase_callback;
469 erase->priv = (unsigned long)&waitq;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /*
472 FIXME: Allow INTERRUPTIBLE. Which means
473 not having the wait_queue head on the stack.
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 If the wq_head is on the stack, and we
476 leave because we got interrupted, then the
477 wq_head is no longer there when the
478 callback routine tries to wake us up.
479 */
480 ret = mtd->erase(mtd, erase);
481 if (!ret) {
482 set_current_state(TASK_UNINTERRUPTIBLE);
483 add_wait_queue(&waitq, &wait);
484 if (erase->state != MTD_ERASE_DONE &&
485 erase->state != MTD_ERASE_FAILED)
486 schedule();
487 remove_wait_queue(&waitq, &wait);
488 set_current_state(TASK_RUNNING);
489
490 ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0;
491 }
492 kfree(erase);
493 }
494 break;
495 }
496
497 case MEMWRITEOOB:
498 {
499 struct mtd_oob_buf buf;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200500 struct mtd_oob_ops ops;
Harvey Harrison5f692832008-07-03 23:40:13 -0700501 struct mtd_oob_buf __user *user_buf = argp;
David Scidmoree9d8d482007-12-11 17:44:30 -0600502 uint32_t retlen;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000503
Al Viroaeb5d722008-09-02 15:28:45 -0400504 if(!(file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return -EPERM;
506
507 if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf)))
508 return -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000509
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200510 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return -EINVAL;
512
513 if (!mtd->write_oob)
514 ret = -EOPNOTSUPP;
515 else
516 ret = access_ok(VERIFY_READ, buf.ptr,
517 buf.length) ? 0 : EFAULT;
518
519 if (ret)
520 return ret;
521
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200522 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200523 ops.ooboffs = buf.start & (mtd->oobsize - 1);
524 ops.datbuf = NULL;
525 ops.mode = MTD_OOB_PLACE;
526
Vitaly Wool70145682006-11-03 18:20:38 +0300527 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200528 return -EINVAL;
529
530 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
531 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000533
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200534 if (copy_from_user(ops.oobbuf, buf.ptr, buf.length)) {
535 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return -EFAULT;
537 }
538
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200539 buf.start &= ~(mtd->oobsize - 1);
540 ret = mtd->write_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
David Scidmoree9d8d482007-12-11 17:44:30 -0600542 if (ops.oobretlen > 0xFFFFFFFFU)
543 ret = -EOVERFLOW;
544 retlen = ops.oobretlen;
Harvey Harrison5f692832008-07-03 23:40:13 -0700545 if (copy_to_user(&user_buf->length, &retlen, sizeof(buf.length)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 ret = -EFAULT;
547
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200548 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 break;
550
551 }
552
553 case MEMREADOOB:
554 {
555 struct mtd_oob_buf buf;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200556 struct mtd_oob_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (copy_from_user(&buf, argp, sizeof(struct mtd_oob_buf)))
559 return -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000560
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200561 if (buf.length > 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return -EINVAL;
563
564 if (!mtd->read_oob)
565 ret = -EOPNOTSUPP;
566 else
567 ret = access_ok(VERIFY_WRITE, buf.ptr,
568 buf.length) ? 0 : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (ret)
570 return ret;
571
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200572 ops.ooblen = buf.length;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200573 ops.ooboffs = buf.start & (mtd->oobsize - 1);
574 ops.datbuf = NULL;
575 ops.mode = MTD_OOB_PLACE;
576
Thomas Gleixner408b4832007-04-13 19:50:48 +0200577 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200578 return -EINVAL;
579
580 ops.oobbuf = kmalloc(buf.length, GFP_KERNEL);
581 if (!ops.oobbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return -ENOMEM;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000583
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200584 buf.start &= ~(mtd->oobsize - 1);
585 ret = mtd->read_oob(mtd, buf.start, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Vitaly Wool70145682006-11-03 18:20:38 +0300587 if (put_user(ops.oobretlen, (uint32_t __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 ret = -EFAULT;
Vitaly Wool70145682006-11-03 18:20:38 +0300589 else if (ops.oobretlen && copy_to_user(buf.ptr, ops.oobbuf,
590 ops.oobretlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 ret = -EFAULT;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000592
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200593 kfree(ops.oobbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595 }
596
597 case MEMLOCK:
598 {
Harvey Harrison175428b2008-07-03 23:40:14 -0700599 struct erase_info_user einfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Harvey Harrison175428b2008-07-03 23:40:14 -0700601 if (copy_from_user(&einfo, argp, sizeof(einfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return -EFAULT;
603
604 if (!mtd->lock)
605 ret = -EOPNOTSUPP;
606 else
Harvey Harrison175428b2008-07-03 23:40:14 -0700607 ret = mtd->lock(mtd, einfo.start, einfo.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 break;
609 }
610
611 case MEMUNLOCK:
612 {
Harvey Harrison175428b2008-07-03 23:40:14 -0700613 struct erase_info_user einfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Harvey Harrison175428b2008-07-03 23:40:14 -0700615 if (copy_from_user(&einfo, argp, sizeof(einfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return -EFAULT;
617
618 if (!mtd->unlock)
619 ret = -EOPNOTSUPP;
620 else
Harvey Harrison175428b2008-07-03 23:40:14 -0700621 ret = mtd->unlock(mtd, einfo.start, einfo.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 break;
623 }
624
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200625 /* Legacy interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 case MEMGETOOBSEL:
627 {
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200628 struct nand_oobinfo oi;
629
630 if (!mtd->ecclayout)
631 return -EOPNOTSUPP;
632 if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos))
633 return -EINVAL;
634
635 oi.useecc = MTD_NANDECC_AUTOPLACE;
636 memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos));
637 memcpy(&oi.oobfree, mtd->ecclayout->oobfree,
638 sizeof(oi.oobfree));
Ricard Wanderlöfd25ade72006-10-17 17:27:11 +0200639 oi.eccbytes = mtd->ecclayout->eccbytes;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200640
641 if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return -EFAULT;
643 break;
644 }
645
646 case MEMGETBADBLOCK:
647 {
648 loff_t offs;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (copy_from_user(&offs, argp, sizeof(loff_t)))
651 return -EFAULT;
652 if (!mtd->block_isbad)
653 ret = -EOPNOTSUPP;
654 else
655 return mtd->block_isbad(mtd, offs);
656 break;
657 }
658
659 case MEMSETBADBLOCK:
660 {
661 loff_t offs;
662
663 if (copy_from_user(&offs, argp, sizeof(loff_t)))
664 return -EFAULT;
665 if (!mtd->block_markbad)
666 ret = -EOPNOTSUPP;
667 else
668 return mtd->block_markbad(mtd, offs);
669 break;
670 }
671
David Brownell34a82442008-07-30 12:35:05 -0700672#ifdef CONFIG_HAVE_MTD_OTP
Nicolas Pitre31f42332005-02-08 17:45:55 +0000673 case OTPSELECT:
674 {
675 int mode;
676 if (copy_from_user(&mode, argp, sizeof(int)))
677 return -EFAULT;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200678
679 mfi->mode = MTD_MODE_NORMAL;
680
681 ret = otp_select_filemode(mfi, mode);
682
Nicolas Pitre81dba482005-04-01 16:36:15 +0100683 file->f_pos = 0;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000684 break;
685 }
686
687 case OTPGETREGIONCOUNT:
688 case OTPGETREGIONINFO:
689 {
690 struct otp_info *buf = kmalloc(4096, GFP_KERNEL);
691 if (!buf)
692 return -ENOMEM;
693 ret = -EOPNOTSUPP;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200694 switch (mfi->mode) {
695 case MTD_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000696 if (mtd->get_fact_prot_info)
697 ret = mtd->get_fact_prot_info(mtd, buf, 4096);
698 break;
699 case MTD_MODE_OTP_USER:
700 if (mtd->get_user_prot_info)
701 ret = mtd->get_user_prot_info(mtd, buf, 4096);
702 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200703 default:
704 break;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000705 }
706 if (ret >= 0) {
707 if (cmd == OTPGETREGIONCOUNT) {
708 int nbr = ret / sizeof(struct otp_info);
709 ret = copy_to_user(argp, &nbr, sizeof(int));
710 } else
711 ret = copy_to_user(argp, buf, ret);
712 if (ret)
713 ret = -EFAULT;
714 }
715 kfree(buf);
716 break;
717 }
718
719 case OTPLOCK:
720 {
Harvey Harrison175428b2008-07-03 23:40:14 -0700721 struct otp_info oinfo;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000722
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200723 if (mfi->mode != MTD_MODE_OTP_USER)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000724 return -EINVAL;
Harvey Harrison175428b2008-07-03 23:40:14 -0700725 if (copy_from_user(&oinfo, argp, sizeof(oinfo)))
Nicolas Pitre31f42332005-02-08 17:45:55 +0000726 return -EFAULT;
727 if (!mtd->lock_user_prot_reg)
728 return -EOPNOTSUPP;
Harvey Harrison175428b2008-07-03 23:40:14 -0700729 ret = mtd->lock_user_prot_reg(mtd, oinfo.start, oinfo.length);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000730 break;
731 }
732#endif
733
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200734 case ECCGETLAYOUT:
735 {
736 if (!mtd->ecclayout)
737 return -EOPNOTSUPP;
738
Ricard Wanderlöfd25ade72006-10-17 17:27:11 +0200739 if (copy_to_user(argp, mtd->ecclayout,
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200740 sizeof(struct nand_ecclayout)))
741 return -EFAULT;
742 break;
743 }
744
745 case ECCGETSTATS:
746 {
747 if (copy_to_user(argp, &mtd->ecc_stats,
748 sizeof(struct mtd_ecc_stats)))
749 return -EFAULT;
750 break;
751 }
752
753 case MTDFILEMODE:
754 {
755 mfi->mode = 0;
756
757 switch(arg) {
758 case MTD_MODE_OTP_FACTORY:
759 case MTD_MODE_OTP_USER:
760 ret = otp_select_filemode(mfi, arg);
761 break;
762
763 case MTD_MODE_RAW:
764 if (!mtd->read_oob || !mtd->write_oob)
765 return -EOPNOTSUPP;
766 mfi->mode = arg;
767
768 case MTD_MODE_NORMAL:
769 break;
770 default:
771 ret = -EINVAL;
772 }
773 file->f_pos = 0;
774 break;
775 }
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 default:
778 ret = -ENOTTY;
779 }
780
781 return ret;
782} /* memory_ioctl */
783
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800784static const struct file_operations mtd_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 .owner = THIS_MODULE,
786 .llseek = mtd_lseek,
787 .read = mtd_read,
788 .write = mtd_write,
789 .ioctl = mtd_ioctl,
790 .open = mtd_open,
791 .release = mtd_close,
792};
793
794static int __init init_mtdchar(void)
795{
796 if (register_chrdev(MTD_CHAR_MAJOR, "mtd", &mtd_fops)) {
797 printk(KERN_NOTICE "Can't allocate major number %d for Memory Technology Devices.\n",
798 MTD_CHAR_MAJOR);
799 return -EAGAIN;
800 }
801
Todd Poynor9bc7b382005-06-30 01:23:27 +0100802 mtd_class = class_create(THIS_MODULE, "mtd");
803
804 if (IS_ERR(mtd_class)) {
805 printk(KERN_ERR "Error creating mtd class.\n");
806 unregister_chrdev(MTD_CHAR_MAJOR, "mtd");
Coywolf Qi Hunt3a7a8822005-07-04 12:15:28 -0500807 return PTR_ERR(mtd_class);
Todd Poynor9bc7b382005-06-30 01:23:27 +0100808 }
809
810 register_mtd_user(&notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return 0;
812}
813
814static void __exit cleanup_mtdchar(void)
815{
Todd Poynor9bc7b382005-06-30 01:23:27 +0100816 unregister_mtd_user(&notifier);
817 class_destroy(mtd_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 unregister_chrdev(MTD_CHAR_MAJOR, "mtd");
819}
820
821module_init(init_mtdchar);
822module_exit(cleanup_mtdchar);
823
824
825MODULE_LICENSE("GPL");
826MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
827MODULE_DESCRIPTION("Direct character-device access to MTD devices");
Scott James Remnant90160e12009-03-02 18:42:39 +0000828MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR);