igb: Add device support for flashless SKU of i210 device
[deliverable/linux.git] / drivers / mtd / mtdchar.c
CommitLineData
1da177e4 1/*
a1452a37
DW
2 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4
LT
17 *
18 */
19
15fdc52f
TG
20#include <linux/device.h>
21#include <linux/fs.h>
0c1eafdb 22#include <linux/mm.h>
9c74034f 23#include <linux/err.h>
15fdc52f 24#include <linux/init.h>
1da177e4
LT
25#include <linux/kernel.h>
26#include <linux/module.h>
15fdc52f
TG
27#include <linux/slab.h>
28#include <linux/sched.h>
5aa82940 29#include <linux/mutex.h>
402d3265 30#include <linux/backing-dev.h>
97718540 31#include <linux/compat.h>
cd874237 32#include <linux/mount.h>
d0f7959e 33#include <linux/blkpg.h>
b502bd11 34#include <linux/magic.h>
1da177e4 35#include <linux/mtd/mtd.h>
d0f7959e 36#include <linux/mtd/partitions.h>
dd02b67d 37#include <linux/mtd/map.h>
1da177e4 38
15fdc52f 39#include <asm/uaccess.h>
9bc7b387 40
660685d9
AB
41#include "mtdcore.h"
42
5aa82940 43static DEFINE_MUTEX(mtd_mutex);
1da177e4 44
045e9a5d 45/*
f1a28c02 46 * Data structure to hold the pointer to the mtd device as well
92394b5c 47 * as mode information of various use cases.
045e9a5d 48 */
f1a28c02
TG
49struct mtd_file_info {
50 struct mtd_info *mtd;
cd874237 51 struct inode *ino;
f1a28c02
TG
52 enum mtd_file_modes mode;
53};
31f4233b 54
969e57ad 55static loff_t mtdchar_lseek(struct file *file, loff_t offset, int orig)
1da177e4 56{
f1a28c02 57 struct mtd_file_info *mfi = file->private_data;
b959957f 58 return fixed_size_llseek(file, offset, orig, mfi->mtd->size);
1da177e4
LT
59}
60
00292bbf
AV
61static int count;
62static struct vfsmount *mnt;
63static struct file_system_type mtd_inodefs_type;
1da177e4 64
969e57ad 65static int mtdchar_open(struct inode *inode, struct file *file)
1da177e4
LT
66{
67 int minor = iminor(inode);
68 int devnum = minor >> 1;
6071239e 69 int ret = 0;
1da177e4 70 struct mtd_info *mtd;
f1a28c02 71 struct mtd_file_info *mfi;
cd874237 72 struct inode *mtd_ino;
1da177e4 73
289c0522 74 pr_debug("MTD_open\n");
1da177e4 75
1da177e4 76 /* You can't open the RO devices RW */
aeb5d727 77 if ((file->f_mode & FMODE_WRITE) && (minor & 1))
1da177e4
LT
78 return -EACCES;
79
00292bbf
AV
80 ret = simple_pin_fs(&mtd_inodefs_type, &mnt, &count);
81 if (ret)
82 return ret;
83
5aa82940 84 mutex_lock(&mtd_mutex);
1da177e4 85 mtd = get_mtd_device(NULL, devnum);
97894cda 86
6071239e
JC
87 if (IS_ERR(mtd)) {
88 ret = PTR_ERR(mtd);
89 goto out;
90 }
97894cda 91
402d3265 92 if (mtd->type == MTD_ABSENT) {
6071239e 93 ret = -ENODEV;
c65390f4 94 goto out1;
1da177e4
LT
95 }
96
00292bbf 97 mtd_ino = iget_locked(mnt->mnt_sb, devnum);
cd874237 98 if (!mtd_ino) {
cd874237 99 ret = -ENOMEM;
c65390f4 100 goto out1;
cd874237
KS
101 }
102 if (mtd_ino->i_state & I_NEW) {
103 mtd_ino->i_private = mtd;
104 mtd_ino->i_mode = S_IFCHR;
105 mtd_ino->i_data.backing_dev_info = mtd->backing_dev_info;
106 unlock_new_inode(mtd_ino);
107 }
108 file->f_mapping = mtd_ino->i_mapping;
402d3265 109
1da177e4 110 /* You can't open it RW if it's not a writeable device */
aeb5d727 111 if ((file->f_mode & FMODE_WRITE) && !(mtd->flags & MTD_WRITEABLE)) {
6071239e 112 ret = -EACCES;
c65390f4 113 goto out2;
1da177e4 114 }
97894cda 115
f1a28c02
TG
116 mfi = kzalloc(sizeof(*mfi), GFP_KERNEL);
117 if (!mfi) {
6071239e 118 ret = -ENOMEM;
c65390f4 119 goto out2;
f1a28c02 120 }
cd874237 121 mfi->ino = mtd_ino;
f1a28c02
TG
122 mfi->mtd = mtd;
123 file->private_data = mfi;
c65390f4
AV
124 mutex_unlock(&mtd_mutex);
125 return 0;
f1a28c02 126
c65390f4
AV
127out2:
128 iput(mtd_ino);
129out1:
130 put_mtd_device(mtd);
6071239e 131out:
5aa82940 132 mutex_unlock(&mtd_mutex);
00292bbf 133 simple_release_fs(&mnt, &count);
6071239e 134 return ret;
969e57ad 135} /* mtdchar_open */
1da177e4
LT
136
137/*====================================================================*/
138
969e57ad 139static int mtdchar_close(struct inode *inode, struct file *file)
1da177e4 140{
f1a28c02
TG
141 struct mtd_file_info *mfi = file->private_data;
142 struct mtd_info *mtd = mfi->mtd;
1da177e4 143
289c0522 144 pr_debug("MTD_close\n");
1da177e4 145
7eafaed5 146 /* Only sync if opened RW */
327cf292 147 if ((file->f_mode & FMODE_WRITE))
85f2f2a8 148 mtd_sync(mtd);
97894cda 149
cd874237
KS
150 iput(mfi->ino);
151
1da177e4 152 put_mtd_device(mtd);
f1a28c02
TG
153 file->private_data = NULL;
154 kfree(mfi);
00292bbf 155 simple_release_fs(&mnt, &count);
1da177e4
LT
156
157 return 0;
969e57ad 158} /* mtdchar_close */
1da177e4 159
3e45cf5e
GE
160/* Back in June 2001, dwmw2 wrote:
161 *
162 * FIXME: This _really_ needs to die. In 2.5, we should lock the
163 * userspace buffer down and use it directly with readv/writev.
164 *
165 * The implementation below, using mtd_kmalloc_up_to, mitigates
166 * allocation failures when the system is under low-memory situations
167 * or if memory is highly fragmented at the cost of reducing the
168 * performance of the requested transfer due to a smaller buffer size.
169 *
170 * A more complex but more memory-efficient implementation based on
171 * get_user_pages and iovecs to cover extents of those pages is a
172 * longer-term goal, as intimated by dwmw2 above. However, for the
173 * write case, this requires yet more complex head and tail transfer
174 * handling when those head and tail offsets and sizes are such that
175 * alignment requirements are not met in the NAND subdriver.
176 */
1da177e4 177
969e57ad
AB
178static ssize_t mtdchar_read(struct file *file, char __user *buf, size_t count,
179 loff_t *ppos)
1da177e4 180{
f1a28c02
TG
181 struct mtd_file_info *mfi = file->private_data;
182 struct mtd_info *mtd = mfi->mtd;
30fa9848 183 size_t retlen;
1da177e4
LT
184 size_t total_retlen=0;
185 int ret=0;
186 int len;
3e45cf5e 187 size_t size = count;
1da177e4 188 char *kbuf;
97894cda 189
289c0522 190 pr_debug("MTD_read\n");
1da177e4
LT
191
192 if (*ppos + count > mtd->size)
193 count = mtd->size - *ppos;
194
195 if (!count)
196 return 0;
97894cda 197
3e45cf5e 198 kbuf = mtd_kmalloc_up_to(mtd, &size);
b802c074
TG
199 if (!kbuf)
200 return -ENOMEM;
201
1da177e4 202 while (count) {
3e45cf5e 203 len = min_t(size_t, count, size);
1da177e4 204
f1a28c02 205 switch (mfi->mode) {
beb133fc 206 case MTD_FILE_MODE_OTP_FACTORY:
d264f72a
AB
207 ret = mtd_read_fact_prot_reg(mtd, *ppos, len,
208 &retlen, kbuf);
31f4233b 209 break;
beb133fc 210 case MTD_FILE_MODE_OTP_USER:
4ea1cabb
AB
211 ret = mtd_read_user_prot_reg(mtd, *ppos, len,
212 &retlen, kbuf);
31f4233b 213 break;
beb133fc 214 case MTD_FILE_MODE_RAW:
f1a28c02
TG
215 {
216 struct mtd_oob_ops ops;
217
0612b9dd 218 ops.mode = MTD_OPS_RAW;
f1a28c02
TG
219 ops.datbuf = kbuf;
220 ops.oobbuf = NULL;
221 ops.len = len;
222
fd2819bb 223 ret = mtd_read_oob(mtd, *ppos, &ops);
f1a28c02
TG
224 retlen = ops.retlen;
225 break;
226 }
31f4233b 227 default:
329ad399 228 ret = mtd_read(mtd, *ppos, len, &retlen, kbuf);
31f4233b 229 }
7854d3f7 230 /* Nand returns -EBADMSG on ECC errors, but it returns
1da177e4 231 * the data. For our userspace tools it is important
7854d3f7 232 * to dump areas with ECC errors!
9a1fcdfd 233 * For kernel internal usage it also might return -EUCLEAN
25985edc 234 * to signal the caller that a bitflip has occurred and has
9a1fcdfd 235 * been corrected by the ECC algorithm.
1da177e4
LT
236 * Userspace software which accesses NAND this way
237 * must be aware of the fact that it deals with NAND
238 */
d57f4054 239 if (!ret || mtd_is_bitflip_or_eccerr(ret)) {
1da177e4
LT
240 *ppos += retlen;
241 if (copy_to_user(buf, kbuf, retlen)) {
f4a43cfc 242 kfree(kbuf);
1da177e4
LT
243 return -EFAULT;
244 }
245 else
246 total_retlen += retlen;
247
248 count -= retlen;
249 buf += retlen;
31f4233b
NP
250 if (retlen == 0)
251 count = 0;
1da177e4
LT
252 }
253 else {
254 kfree(kbuf);
255 return ret;
256 }
97894cda 257
1da177e4
LT
258 }
259
b802c074 260 kfree(kbuf);
1da177e4 261 return total_retlen;
969e57ad 262} /* mtdchar_read */
1da177e4 263
969e57ad
AB
264static ssize_t mtdchar_write(struct file *file, const char __user *buf, size_t count,
265 loff_t *ppos)
1da177e4 266{
f1a28c02
TG
267 struct mtd_file_info *mfi = file->private_data;
268 struct mtd_info *mtd = mfi->mtd;
3e45cf5e 269 size_t size = count;
1da177e4
LT
270 char *kbuf;
271 size_t retlen;
272 size_t total_retlen=0;
273 int ret=0;
274 int len;
275
289c0522 276 pr_debug("MTD_write\n");
97894cda 277
1da177e4
LT
278 if (*ppos == mtd->size)
279 return -ENOSPC;
97894cda 280
1da177e4
LT
281 if (*ppos + count > mtd->size)
282 count = mtd->size - *ppos;
283
284 if (!count)
285 return 0;
286
3e45cf5e 287 kbuf = mtd_kmalloc_up_to(mtd, &size);
b802c074
TG
288 if (!kbuf)
289 return -ENOMEM;
290
1da177e4 291 while (count) {
3e45cf5e 292 len = min_t(size_t, count, size);
1da177e4 293
1da177e4
LT
294 if (copy_from_user(kbuf, buf, len)) {
295 kfree(kbuf);
296 return -EFAULT;
297 }
97894cda 298
f1a28c02 299 switch (mfi->mode) {
beb133fc 300 case MTD_FILE_MODE_OTP_FACTORY:
31f4233b
NP
301 ret = -EROFS;
302 break;
beb133fc 303 case MTD_FILE_MODE_OTP_USER:
482b43ad
AB
304 ret = mtd_write_user_prot_reg(mtd, *ppos, len,
305 &retlen, kbuf);
31f4233b 306 break;
f1a28c02 307
beb133fc 308 case MTD_FILE_MODE_RAW:
f1a28c02
TG
309 {
310 struct mtd_oob_ops ops;
311
0612b9dd 312 ops.mode = MTD_OPS_RAW;
f1a28c02
TG
313 ops.datbuf = kbuf;
314 ops.oobbuf = NULL;
bf514081 315 ops.ooboffs = 0;
f1a28c02
TG
316 ops.len = len;
317
a2cc5ba0 318 ret = mtd_write_oob(mtd, *ppos, &ops);
f1a28c02
TG
319 retlen = ops.retlen;
320 break;
321 }
322
31f4233b 323 default:
eda95cbf 324 ret = mtd_write(mtd, *ppos, len, &retlen, kbuf);
31f4233b 325 }
1da177e4
LT
326 if (!ret) {
327 *ppos += retlen;
328 total_retlen += retlen;
329 count -= retlen;
330 buf += retlen;
331 }
332 else {
333 kfree(kbuf);
334 return ret;
335 }
1da177e4
LT
336 }
337
b802c074 338 kfree(kbuf);
1da177e4 339 return total_retlen;
969e57ad 340} /* mtdchar_write */
1da177e4
LT
341
342/*======================================================================
343
344 IOCTL calls for getting device parameters.
345
346======================================================================*/
347static void mtdchar_erase_callback (struct erase_info *instr)
348{
349 wake_up((wait_queue_head_t *)instr->priv);
350}
351
f1a28c02
TG
352static int otp_select_filemode(struct mtd_file_info *mfi, int mode)
353{
354 struct mtd_info *mtd = mfi->mtd;
b6de3d6c 355 size_t retlen;
b6de3d6c 356
f1a28c02
TG
357 switch (mode) {
358 case MTD_OTP_FACTORY:
5dc63fa2
UKK
359 if (mtd_read_fact_prot_reg(mtd, -1, 0, &retlen, NULL) ==
360 -EOPNOTSUPP)
361 return -EOPNOTSUPP;
362
b6de3d6c 363 mfi->mode = MTD_FILE_MODE_OTP_FACTORY;
f1a28c02
TG
364 break;
365 case MTD_OTP_USER:
5dc63fa2
UKK
366 if (mtd_read_user_prot_reg(mtd, -1, 0, &retlen, NULL) ==
367 -EOPNOTSUPP)
368 return -EOPNOTSUPP;
369
b6de3d6c 370 mfi->mode = MTD_FILE_MODE_OTP_USER;
f1a28c02 371 break;
f1a28c02 372 case MTD_OTP_OFF:
5dc63fa2 373 mfi->mode = MTD_FILE_MODE_NORMAL;
f1a28c02 374 break;
5dc63fa2
UKK
375 default:
376 return -EINVAL;
f1a28c02 377 }
5dc63fa2
UKK
378
379 return 0;
f1a28c02 380}
f1a28c02 381
969e57ad 382static int mtdchar_writeoob(struct file *file, struct mtd_info *mtd,
97718540
KC
383 uint64_t start, uint32_t length, void __user *ptr,
384 uint32_t __user *retp)
385{
9ce244b3 386 struct mtd_file_info *mfi = file->private_data;
97718540
KC
387 struct mtd_oob_ops ops;
388 uint32_t retlen;
389 int ret = 0;
390
391 if (!(file->f_mode & FMODE_WRITE))
392 return -EPERM;
393
394 if (length > 4096)
395 return -EINVAL;
396
3c3c10bb 397 if (!mtd->_write_oob)
97718540
KC
398 ret = -EOPNOTSUPP;
399 else
0040476b 400 ret = access_ok(VERIFY_READ, ptr, length) ? 0 : -EFAULT;
97718540
KC
401
402 if (ret)
403 return ret;
404
405 ops.ooblen = length;
305b93f1 406 ops.ooboffs = start & (mtd->writesize - 1);
97718540 407 ops.datbuf = NULL;
beb133fc 408 ops.mode = (mfi->mode == MTD_FILE_MODE_RAW) ? MTD_OPS_RAW :
0612b9dd 409 MTD_OPS_PLACE_OOB;
97718540
KC
410
411 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
412 return -EINVAL;
413
df1f1d1c
JL
414 ops.oobbuf = memdup_user(ptr, length);
415 if (IS_ERR(ops.oobbuf))
416 return PTR_ERR(ops.oobbuf);
97718540 417
305b93f1 418 start &= ~((uint64_t)mtd->writesize - 1);
a2cc5ba0 419 ret = mtd_write_oob(mtd, start, &ops);
97718540
KC
420
421 if (ops.oobretlen > 0xFFFFFFFFU)
422 ret = -EOVERFLOW;
423 retlen = ops.oobretlen;
424 if (copy_to_user(retp, &retlen, sizeof(length)))
425 ret = -EFAULT;
426
427 kfree(ops.oobbuf);
428 return ret;
429}
430
969e57ad 431static int mtdchar_readoob(struct file *file, struct mtd_info *mtd,
c46f6483
BN
432 uint64_t start, uint32_t length, void __user *ptr,
433 uint32_t __user *retp)
97718540 434{
c46f6483 435 struct mtd_file_info *mfi = file->private_data;
97718540
KC
436 struct mtd_oob_ops ops;
437 int ret = 0;
438
439 if (length > 4096)
440 return -EINVAL;
441
dac2639f
AB
442 if (!access_ok(VERIFY_WRITE, ptr, length))
443 return -EFAULT;
97718540
KC
444
445 ops.ooblen = length;
305b93f1 446 ops.ooboffs = start & (mtd->writesize - 1);
97718540 447 ops.datbuf = NULL;
beb133fc 448 ops.mode = (mfi->mode == MTD_FILE_MODE_RAW) ? MTD_OPS_RAW :
0612b9dd 449 MTD_OPS_PLACE_OOB;
97718540
KC
450
451 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
452 return -EINVAL;
453
454 ops.oobbuf = kmalloc(length, GFP_KERNEL);
455 if (!ops.oobbuf)
456 return -ENOMEM;
457
305b93f1 458 start &= ~((uint64_t)mtd->writesize - 1);
fd2819bb 459 ret = mtd_read_oob(mtd, start, &ops);
97718540
KC
460
461 if (put_user(ops.oobretlen, retp))
462 ret = -EFAULT;
463 else if (ops.oobretlen && copy_to_user(ptr, ops.oobbuf,
464 ops.oobretlen))
465 ret = -EFAULT;
466
467 kfree(ops.oobbuf);
041e4575
BN
468
469 /*
470 * NAND returns -EBADMSG on ECC errors, but it returns the OOB
471 * data. For our userspace tools it is important to dump areas
472 * with ECC errors!
473 * For kernel internal usage it also might return -EUCLEAN
474 * to signal the caller that a bitflip has occured and has
475 * been corrected by the ECC algorithm.
476 *
c478d7e4
BN
477 * Note: currently the standard NAND function, nand_read_oob_std,
478 * does not calculate ECC for the OOB area, so do not rely on
479 * this behavior unless you have replaced it with your own.
041e4575 480 */
d57f4054 481 if (mtd_is_bitflip_or_eccerr(ret))
041e4575
BN
482 return 0;
483
97718540
KC
484 return ret;
485}
486
cc26c3cd
BN
487/*
488 * Copies (and truncates, if necessary) data from the larger struct,
489 * nand_ecclayout, to the smaller, deprecated layout struct,
92394b5c 490 * nand_ecclayout_user. This is necessary only to support the deprecated
cc26c3cd
BN
491 * API ioctl ECCGETLAYOUT while allowing all new functionality to use
492 * nand_ecclayout flexibly (i.e. the struct may change size in new
493 * releases without requiring major rewrites).
494 */
495static int shrink_ecclayout(const struct nand_ecclayout *from,
496 struct nand_ecclayout_user *to)
497{
498 int i;
499
500 if (!from || !to)
501 return -EINVAL;
502
503 memset(to, 0, sizeof(*to));
504
0ceacf36 505 to->eccbytes = min((int)from->eccbytes, MTD_MAX_ECCPOS_ENTRIES);
cc26c3cd
BN
506 for (i = 0; i < to->eccbytes; i++)
507 to->eccpos[i] = from->eccpos[i];
508
509 for (i = 0; i < MTD_MAX_OOBFREE_ENTRIES; i++) {
510 if (from->oobfree[i].length == 0 &&
511 from->oobfree[i].offset == 0)
512 break;
513 to->oobavail += from->oobfree[i].length;
514 to->oobfree[i] = from->oobfree[i];
515 }
516
517 return 0;
518}
519
969e57ad 520static int mtdchar_blkpg_ioctl(struct mtd_info *mtd,
d0f7959e
RT
521 struct blkpg_ioctl_arg __user *arg)
522{
523 struct blkpg_ioctl_arg a;
524 struct blkpg_partition p;
525
526 if (!capable(CAP_SYS_ADMIN))
527 return -EPERM;
528
d0f7959e
RT
529 if (copy_from_user(&a, arg, sizeof(struct blkpg_ioctl_arg)))
530 return -EFAULT;
531
532 if (copy_from_user(&p, a.data, sizeof(struct blkpg_partition)))
533 return -EFAULT;
534
535 switch (a.op) {
536 case BLKPG_ADD_PARTITION:
537
a7e93dcd
RT
538 /* Only master mtd device must be used to add partitions */
539 if (mtd_is_partition(mtd))
540 return -EINVAL;
541
d0f7959e
RT
542 return mtd_add_partition(mtd, p.devname, p.start, p.length);
543
544 case BLKPG_DEL_PARTITION:
545
546 if (p.pno < 0)
547 return -EINVAL;
548
549 return mtd_del_partition(mtd, p.pno);
550
551 default:
552 return -EINVAL;
553 }
554}
d0f7959e 555
969e57ad 556static int mtdchar_write_ioctl(struct mtd_info *mtd,
e99d8b08
BN
557 struct mtd_write_req __user *argp)
558{
559 struct mtd_write_req req;
560 struct mtd_oob_ops ops;
561 void __user *usr_data, *usr_oob;
562 int ret;
563
564 if (copy_from_user(&req, argp, sizeof(req)) ||
565 !access_ok(VERIFY_READ, req.usr_data, req.len) ||
566 !access_ok(VERIFY_READ, req.usr_oob, req.ooblen))
567 return -EFAULT;
3c3c10bb 568 if (!mtd->_write_oob)
e99d8b08
BN
569 return -EOPNOTSUPP;
570
571 ops.mode = req.mode;
572 ops.len = (size_t)req.len;
573 ops.ooblen = (size_t)req.ooblen;
574 ops.ooboffs = 0;
575
576 usr_data = (void __user *)(uintptr_t)req.usr_data;
577 usr_oob = (void __user *)(uintptr_t)req.usr_oob;
578
579 if (req.usr_data) {
580 ops.datbuf = memdup_user(usr_data, ops.len);
581 if (IS_ERR(ops.datbuf))
582 return PTR_ERR(ops.datbuf);
583 } else {
584 ops.datbuf = NULL;
585 }
586
587 if (req.usr_oob) {
588 ops.oobbuf = memdup_user(usr_oob, ops.ooblen);
589 if (IS_ERR(ops.oobbuf)) {
590 kfree(ops.datbuf);
591 return PTR_ERR(ops.oobbuf);
592 }
593 } else {
594 ops.oobbuf = NULL;
595 }
596
a2cc5ba0 597 ret = mtd_write_oob(mtd, (loff_t)req.start, &ops);
e99d8b08
BN
598
599 kfree(ops.datbuf);
600 kfree(ops.oobbuf);
601
602 return ret;
603}
604
969e57ad 605static int mtdchar_ioctl(struct file *file, u_int cmd, u_long arg)
1da177e4 606{
f1a28c02
TG
607 struct mtd_file_info *mfi = file->private_data;
608 struct mtd_info *mtd = mfi->mtd;
1da177e4
LT
609 void __user *argp = (void __user *)arg;
610 int ret = 0;
611 u_long size;
73c619ea 612 struct mtd_info_user info;
97894cda 613
289c0522 614 pr_debug("MTD_ioctl\n");
1da177e4
LT
615
616 size = (cmd & IOCSIZE_MASK) >> IOCSIZE_SHIFT;
617 if (cmd & IOC_IN) {
618 if (!access_ok(VERIFY_READ, argp, size))
619 return -EFAULT;
620 }
621 if (cmd & IOC_OUT) {
622 if (!access_ok(VERIFY_WRITE, argp, size))
623 return -EFAULT;
624 }
97894cda 625
1da177e4
LT
626 switch (cmd) {
627 case MEMGETREGIONCOUNT:
628 if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int)))
629 return -EFAULT;
630 break;
631
632 case MEMGETREGIONINFO:
633 {
b67c5f87
ZW
634 uint32_t ur_idx;
635 struct mtd_erase_region_info *kr;
bcc98a46 636 struct region_info_user __user *ur = argp;
1da177e4 637
b67c5f87 638 if (get_user(ur_idx, &(ur->regionindex)))
1da177e4
LT
639 return -EFAULT;
640
5e59be1f
DC
641 if (ur_idx >= mtd->numeraseregions)
642 return -EINVAL;
643
b67c5f87
ZW
644 kr = &(mtd->eraseregions[ur_idx]);
645
646 if (put_user(kr->offset, &(ur->offset))
647 || put_user(kr->erasesize, &(ur->erasesize))
648 || put_user(kr->numblocks, &(ur->numblocks)))
1da177e4 649 return -EFAULT;
b67c5f87 650
1da177e4
LT
651 break;
652 }
653
654 case MEMGETINFO:
a0c5a394 655 memset(&info, 0, sizeof(info));
73c619ea
JE
656 info.type = mtd->type;
657 info.flags = mtd->flags;
658 info.size = mtd->size;
659 info.erasesize = mtd->erasesize;
660 info.writesize = mtd->writesize;
661 info.oobsize = mtd->oobsize;
19fb4341
BN
662 /* The below field is obsolete */
663 info.padding = 0;
73c619ea 664 if (copy_to_user(argp, &info, sizeof(struct mtd_info_user)))
1da177e4
LT
665 return -EFAULT;
666 break;
667
668 case MEMERASE:
0dc54e9f 669 case MEMERASE64:
1da177e4
LT
670 {
671 struct erase_info *erase;
672
aeb5d727 673 if(!(file->f_mode & FMODE_WRITE))
1da177e4
LT
674 return -EPERM;
675
95b93a0c 676 erase=kzalloc(sizeof(struct erase_info),GFP_KERNEL);
1da177e4
LT
677 if (!erase)
678 ret = -ENOMEM;
679 else {
680 wait_queue_head_t waitq;
681 DECLARE_WAITQUEUE(wait, current);
682
683 init_waitqueue_head(&waitq);
684
0dc54e9f
KC
685 if (cmd == MEMERASE64) {
686 struct erase_info_user64 einfo64;
687
688 if (copy_from_user(&einfo64, argp,
689 sizeof(struct erase_info_user64))) {
690 kfree(erase);
691 return -EFAULT;
692 }
693 erase->addr = einfo64.start;
694 erase->len = einfo64.length;
695 } else {
696 struct erase_info_user einfo32;
697
698 if (copy_from_user(&einfo32, argp,
699 sizeof(struct erase_info_user))) {
700 kfree(erase);
701 return -EFAULT;
702 }
703 erase->addr = einfo32.start;
704 erase->len = einfo32.length;
1da177e4
LT
705 }
706 erase->mtd = mtd;
707 erase->callback = mtdchar_erase_callback;
708 erase->priv = (unsigned long)&waitq;
97894cda 709
1da177e4
LT
710 /*
711 FIXME: Allow INTERRUPTIBLE. Which means
712 not having the wait_queue head on the stack.
97894cda 713
1da177e4
LT
714 If the wq_head is on the stack, and we
715 leave because we got interrupted, then the
716 wq_head is no longer there when the
717 callback routine tries to wake us up.
718 */
7e1f0dc0 719 ret = mtd_erase(mtd, erase);
1da177e4
LT
720 if (!ret) {
721 set_current_state(TASK_UNINTERRUPTIBLE);
722 add_wait_queue(&waitq, &wait);
723 if (erase->state != MTD_ERASE_DONE &&
724 erase->state != MTD_ERASE_FAILED)
725 schedule();
726 remove_wait_queue(&waitq, &wait);
727 set_current_state(TASK_RUNNING);
728
729 ret = (erase->state == MTD_ERASE_FAILED)?-EIO:0;
730 }
731 kfree(erase);
732 }
733 break;
734 }
735
736 case MEMWRITEOOB:
737 {
738 struct mtd_oob_buf buf;
97718540 739 struct mtd_oob_buf __user *buf_user = argp;
1da177e4 740
97718540
KC
741 /* NOTE: writes return length to buf_user->length */
742 if (copy_from_user(&buf, argp, sizeof(buf)))
1da177e4 743 ret = -EFAULT;
97718540 744 else
969e57ad 745 ret = mtdchar_writeoob(file, mtd, buf.start, buf.length,
97718540 746 buf.ptr, &buf_user->length);
1da177e4 747 break;
1da177e4
LT
748 }
749
750 case MEMREADOOB:
751 {
752 struct mtd_oob_buf buf;
97718540 753 struct mtd_oob_buf __user *buf_user = argp;
8593fbc6 754
97718540
KC
755 /* NOTE: writes return length to buf_user->start */
756 if (copy_from_user(&buf, argp, sizeof(buf)))
1da177e4 757 ret = -EFAULT;
97718540 758 else
969e57ad 759 ret = mtdchar_readoob(file, mtd, buf.start, buf.length,
97718540 760 buf.ptr, &buf_user->start);
1da177e4
LT
761 break;
762 }
763
aea7cea9
KC
764 case MEMWRITEOOB64:
765 {
766 struct mtd_oob_buf64 buf;
767 struct mtd_oob_buf64 __user *buf_user = argp;
768
769 if (copy_from_user(&buf, argp, sizeof(buf)))
770 ret = -EFAULT;
771 else
969e57ad 772 ret = mtdchar_writeoob(file, mtd, buf.start, buf.length,
aea7cea9
KC
773 (void __user *)(uintptr_t)buf.usr_ptr,
774 &buf_user->length);
775 break;
776 }
777
778 case MEMREADOOB64:
779 {
780 struct mtd_oob_buf64 buf;
781 struct mtd_oob_buf64 __user *buf_user = argp;
782
783 if (copy_from_user(&buf, argp, sizeof(buf)))
784 ret = -EFAULT;
785 else
969e57ad 786 ret = mtdchar_readoob(file, mtd, buf.start, buf.length,
aea7cea9
KC
787 (void __user *)(uintptr_t)buf.usr_ptr,
788 &buf_user->length);
789 break;
790 }
791
e99d8b08
BN
792 case MEMWRITE:
793 {
969e57ad 794 ret = mtdchar_write_ioctl(mtd,
e99d8b08
BN
795 (struct mtd_write_req __user *)arg);
796 break;
797 }
798
1da177e4
LT
799 case MEMLOCK:
800 {
175428b2 801 struct erase_info_user einfo;
1da177e4 802
175428b2 803 if (copy_from_user(&einfo, argp, sizeof(einfo)))
1da177e4
LT
804 return -EFAULT;
805
38134565 806 ret = mtd_lock(mtd, einfo.start, einfo.length);
1da177e4
LT
807 break;
808 }
809
810 case MEMUNLOCK:
811 {
175428b2 812 struct erase_info_user einfo;
1da177e4 813
175428b2 814 if (copy_from_user(&einfo, argp, sizeof(einfo)))
1da177e4
LT
815 return -EFAULT;
816
38134565 817 ret = mtd_unlock(mtd, einfo.start, einfo.length);
1da177e4
LT
818 break;
819 }
820
9938424f
RC
821 case MEMISLOCKED:
822 {
823 struct erase_info_user einfo;
824
825 if (copy_from_user(&einfo, argp, sizeof(einfo)))
826 return -EFAULT;
827
38134565 828 ret = mtd_is_locked(mtd, einfo.start, einfo.length);
9938424f
RC
829 break;
830 }
831
5bd34c09 832 /* Legacy interface */
1da177e4
LT
833 case MEMGETOOBSEL:
834 {
5bd34c09
TG
835 struct nand_oobinfo oi;
836
837 if (!mtd->ecclayout)
838 return -EOPNOTSUPP;
839 if (mtd->ecclayout->eccbytes > ARRAY_SIZE(oi.eccpos))
840 return -EINVAL;
841
842 oi.useecc = MTD_NANDECC_AUTOPLACE;
843 memcpy(&oi.eccpos, mtd->ecclayout->eccpos, sizeof(oi.eccpos));
844 memcpy(&oi.oobfree, mtd->ecclayout->oobfree,
845 sizeof(oi.oobfree));
d25ade71 846 oi.eccbytes = mtd->ecclayout->eccbytes;
5bd34c09
TG
847
848 if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo)))
1da177e4
LT
849 return -EFAULT;
850 break;
851 }
852
853 case MEMGETBADBLOCK:
854 {
855 loff_t offs;
97894cda 856
1da177e4
LT
857 if (copy_from_user(&offs, argp, sizeof(loff_t)))
858 return -EFAULT;
8f461a73 859 return mtd_block_isbad(mtd, offs);
1da177e4
LT
860 break;
861 }
862
863 case MEMSETBADBLOCK:
864 {
865 loff_t offs;
866
867 if (copy_from_user(&offs, argp, sizeof(loff_t)))
868 return -EFAULT;
800ffd34 869 return mtd_block_markbad(mtd, offs);
1da177e4
LT
870 break;
871 }
872
31f4233b
NP
873 case OTPSELECT:
874 {
875 int mode;
876 if (copy_from_user(&mode, argp, sizeof(int)))
877 return -EFAULT;
f1a28c02 878
beb133fc 879 mfi->mode = MTD_FILE_MODE_NORMAL;
f1a28c02
TG
880
881 ret = otp_select_filemode(mfi, mode);
882
81dba488 883 file->f_pos = 0;
31f4233b
NP
884 break;
885 }
886
887 case OTPGETREGIONCOUNT:
888 case OTPGETREGIONINFO:
889 {
890 struct otp_info *buf = kmalloc(4096, GFP_KERNEL);
891 if (!buf)
892 return -ENOMEM;
f1a28c02 893 switch (mfi->mode) {
beb133fc 894 case MTD_FILE_MODE_OTP_FACTORY:
87e858a9 895 ret = mtd_get_fact_prot_info(mtd, buf, 4096);
31f4233b 896 break;
beb133fc 897 case MTD_FILE_MODE_OTP_USER:
87e858a9 898 ret = mtd_get_user_prot_info(mtd, buf, 4096);
31f4233b 899 break;
f1a28c02 900 default:
87e858a9 901 ret = -EINVAL;
f1a28c02 902 break;
31f4233b
NP
903 }
904 if (ret >= 0) {
905 if (cmd == OTPGETREGIONCOUNT) {
906 int nbr = ret / sizeof(struct otp_info);
907 ret = copy_to_user(argp, &nbr, sizeof(int));
908 } else
909 ret = copy_to_user(argp, buf, ret);
910 if (ret)
911 ret = -EFAULT;
912 }
913 kfree(buf);
914 break;
915 }
916
917 case OTPLOCK:
918 {
175428b2 919 struct otp_info oinfo;
31f4233b 920
beb133fc 921 if (mfi->mode != MTD_FILE_MODE_OTP_USER)
31f4233b 922 return -EINVAL;
175428b2 923 if (copy_from_user(&oinfo, argp, sizeof(oinfo)))
31f4233b 924 return -EFAULT;
4403dbfb 925 ret = mtd_lock_user_prot_reg(mtd, oinfo.start, oinfo.length);
31f4233b
NP
926 break;
927 }
31f4233b 928
7854d3f7 929 /* This ioctl is being deprecated - it truncates the ECC layout */
f1a28c02
TG
930 case ECCGETLAYOUT:
931 {
cc26c3cd
BN
932 struct nand_ecclayout_user *usrlay;
933
f1a28c02
TG
934 if (!mtd->ecclayout)
935 return -EOPNOTSUPP;
936
cc26c3cd
BN
937 usrlay = kmalloc(sizeof(*usrlay), GFP_KERNEL);
938 if (!usrlay)
939 return -ENOMEM;
940
941 shrink_ecclayout(mtd->ecclayout, usrlay);
942
943 if (copy_to_user(argp, usrlay, sizeof(*usrlay)))
944 ret = -EFAULT;
945 kfree(usrlay);
f1a28c02
TG
946 break;
947 }
948
949 case ECCGETSTATS:
950 {
951 if (copy_to_user(argp, &mtd->ecc_stats,
952 sizeof(struct mtd_ecc_stats)))
953 return -EFAULT;
954 break;
955 }
956
957 case MTDFILEMODE:
958 {
959 mfi->mode = 0;
960
961 switch(arg) {
beb133fc
BN
962 case MTD_FILE_MODE_OTP_FACTORY:
963 case MTD_FILE_MODE_OTP_USER:
f1a28c02
TG
964 ret = otp_select_filemode(mfi, arg);
965 break;
966
beb133fc 967 case MTD_FILE_MODE_RAW:
fc002e3c 968 if (!mtd_has_oob(mtd))
f1a28c02
TG
969 return -EOPNOTSUPP;
970 mfi->mode = arg;
971
beb133fc 972 case MTD_FILE_MODE_NORMAL:
f1a28c02
TG
973 break;
974 default:
975 ret = -EINVAL;
976 }
977 file->f_pos = 0;
978 break;
979 }
980
d0f7959e
RT
981 case BLKPG:
982 {
969e57ad 983 ret = mtdchar_blkpg_ioctl(mtd,
d0f7959e
RT
984 (struct blkpg_ioctl_arg __user *)arg);
985 break;
986 }
987
988 case BLKRRPART:
989 {
990 /* No reread partition feature. Just return ok */
991 ret = 0;
992 break;
993 }
d0f7959e 994
1da177e4
LT
995 default:
996 ret = -ENOTTY;
997 }
998
999 return ret;
1000} /* memory_ioctl */
1001
969e57ad 1002static long mtdchar_unlocked_ioctl(struct file *file, u_int cmd, u_long arg)
55929332
AB
1003{
1004 int ret;
1005
5aa82940 1006 mutex_lock(&mtd_mutex);
969e57ad 1007 ret = mtdchar_ioctl(file, cmd, arg);
5aa82940 1008 mutex_unlock(&mtd_mutex);
55929332
AB
1009
1010 return ret;
1011}
1012
97718540
KC
1013#ifdef CONFIG_COMPAT
1014
1015struct mtd_oob_buf32 {
1016 u_int32_t start;
1017 u_int32_t length;
1018 compat_caddr_t ptr; /* unsigned char* */
1019};
1020
1021#define MEMWRITEOOB32 _IOWR('M', 3, struct mtd_oob_buf32)
1022#define MEMREADOOB32 _IOWR('M', 4, struct mtd_oob_buf32)
1023
969e57ad 1024static long mtdchar_compat_ioctl(struct file *file, unsigned int cmd,
97718540
KC
1025 unsigned long arg)
1026{
1027 struct mtd_file_info *mfi = file->private_data;
1028 struct mtd_info *mtd = mfi->mtd;
0b6585ce 1029 void __user *argp = compat_ptr(arg);
97718540
KC
1030 int ret = 0;
1031
5aa82940 1032 mutex_lock(&mtd_mutex);
97718540
KC
1033
1034 switch (cmd) {
1035 case MEMWRITEOOB32:
1036 {
1037 struct mtd_oob_buf32 buf;
1038 struct mtd_oob_buf32 __user *buf_user = argp;
1039
1040 if (copy_from_user(&buf, argp, sizeof(buf)))
1041 ret = -EFAULT;
1042 else
969e57ad 1043 ret = mtdchar_writeoob(file, mtd, buf.start,
97718540
KC
1044 buf.length, compat_ptr(buf.ptr),
1045 &buf_user->length);
1046 break;
1047 }
1048
1049 case MEMREADOOB32:
1050 {
1051 struct mtd_oob_buf32 buf;
1052 struct mtd_oob_buf32 __user *buf_user = argp;
1053
1054 /* NOTE: writes return length to buf->start */
1055 if (copy_from_user(&buf, argp, sizeof(buf)))
1056 ret = -EFAULT;
1057 else
969e57ad 1058 ret = mtdchar_readoob(file, mtd, buf.start,
97718540
KC
1059 buf.length, compat_ptr(buf.ptr),
1060 &buf_user->start);
1061 break;
1062 }
1063 default:
969e57ad 1064 ret = mtdchar_ioctl(file, cmd, (unsigned long)argp);
97718540
KC
1065 }
1066
5aa82940 1067 mutex_unlock(&mtd_mutex);
97718540
KC
1068
1069 return ret;
1070}
1071
1072#endif /* CONFIG_COMPAT */
1073
402d3265
DH
1074/*
1075 * try to determine where a shared mapping can be made
1076 * - only supported for NOMMU at the moment (MMU can't doesn't copy private
1077 * mappings)
1078 */
1079#ifndef CONFIG_MMU
969e57ad 1080static unsigned long mtdchar_get_unmapped_area(struct file *file,
402d3265
DH
1081 unsigned long addr,
1082 unsigned long len,
1083 unsigned long pgoff,
1084 unsigned long flags)
1085{
1086 struct mtd_file_info *mfi = file->private_data;
1087 struct mtd_info *mtd = mfi->mtd;
cd621274
AB
1088 unsigned long offset;
1089 int ret;
402d3265 1090
cd621274
AB
1091 if (addr != 0)
1092 return (unsigned long) -EINVAL;
402d3265 1093
cd621274
AB
1094 if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
1095 return (unsigned long) -EINVAL;
402d3265 1096
cd621274
AB
1097 offset = pgoff << PAGE_SHIFT;
1098 if (offset > mtd->size - len)
1099 return (unsigned long) -EINVAL;
402d3265 1100
cd621274
AB
1101 ret = mtd_get_unmapped_area(mtd, len, offset, flags);
1102 return ret == -EOPNOTSUPP ? -ENOSYS : ret;
402d3265
DH
1103}
1104#endif
1105
1106/*
1107 * set up a mapping for shared memory segments
1108 */
969e57ad 1109static int mtdchar_mmap(struct file *file, struct vm_area_struct *vma)
402d3265
DH
1110{
1111#ifdef CONFIG_MMU
1112 struct mtd_file_info *mfi = file->private_data;
1113 struct mtd_info *mtd = mfi->mtd;
dd02b67d 1114 struct map_info *map = mtd->priv;
dd02b67d 1115
f5cf8f07
DW
1116 /* This is broken because it assumes the MTD device is map-based
1117 and that mtd->priv is a valid struct map_info. It should be
1118 replaced with something that uses the mtd_get_unmapped_area()
1119 operation properly. */
1120 if (0 /*mtd->type == MTD_RAM || mtd->type == MTD_ROM*/) {
dd02b67d 1121#ifdef pgprot_noncached
8558e4a2 1122 if (file->f_flags & O_DSYNC || map->phys >= __pa(high_memory))
dd02b67d
AG
1123 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1124#endif
8558e4a2 1125 return vm_iomap_memory(vma, map->phys, map->size);
dd02b67d 1126 }
402d3265
DH
1127 return -ENOSYS;
1128#else
1129 return vma->vm_flags & VM_SHARED ? 0 : -ENOSYS;
1130#endif
1131}
1132
d54b1fdb 1133static const struct file_operations mtd_fops = {
1da177e4 1134 .owner = THIS_MODULE,
969e57ad
AB
1135 .llseek = mtdchar_lseek,
1136 .read = mtdchar_read,
1137 .write = mtdchar_write,
1138 .unlocked_ioctl = mtdchar_unlocked_ioctl,
97718540 1139#ifdef CONFIG_COMPAT
969e57ad 1140 .compat_ioctl = mtdchar_compat_ioctl,
97718540 1141#endif
969e57ad
AB
1142 .open = mtdchar_open,
1143 .release = mtdchar_close,
1144 .mmap = mtdchar_mmap,
402d3265 1145#ifndef CONFIG_MMU
969e57ad 1146 .get_unmapped_area = mtdchar_get_unmapped_area,
402d3265 1147#endif
1da177e4
LT
1148};
1149
00292bbf
AV
1150static const struct super_operations mtd_ops = {
1151 .drop_inode = generic_delete_inode,
1152 .statfs = simple_statfs,
1153};
1154
51139ada
AV
1155static struct dentry *mtd_inodefs_mount(struct file_system_type *fs_type,
1156 int flags, const char *dev_name, void *data)
cd874237 1157{
00292bbf 1158 return mount_pseudo(fs_type, "mtd_inode:", &mtd_ops, NULL, MTD_INODE_FS_MAGIC);
cd874237
KS
1159}
1160
1161static struct file_system_type mtd_inodefs_type = {
1162 .name = "mtd_inodefs",
51139ada 1163 .mount = mtd_inodefs_mount,
cd874237
KS
1164 .kill_sb = kill_anon_super,
1165};
7f78e035 1166MODULE_ALIAS_FS("mtd_inodefs");
cd874237 1167
660685d9 1168int __init init_mtdchar(void)
1da177e4 1169{
cd874237 1170 int ret;
1f24b5a8 1171
cd874237 1172 ret = __register_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS,
dad0db31 1173 "mtd", &mtd_fops);
cd874237 1174 if (ret < 0) {
57ae2b60
AB
1175 pr_err("Can't allocate major number %d for MTD\n",
1176 MTD_CHAR_MAJOR);
cd874237 1177 return ret;
9bc7b387
TP
1178 }
1179
cd874237
KS
1180 ret = register_filesystem(&mtd_inodefs_type);
1181 if (ret) {
57ae2b60
AB
1182 pr_err("Can't register mtd_inodefs filesystem, error %d\n",
1183 ret);
cd874237
KS
1184 goto err_unregister_chdev;
1185 }
57ae2b60 1186
cd874237
KS
1187 return ret;
1188
cd874237
KS
1189err_unregister_chdev:
1190 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd");
1191 return ret;
1da177e4
LT
1192}
1193
660685d9 1194void __exit cleanup_mtdchar(void)
1da177e4 1195{
cd874237 1196 unregister_filesystem(&mtd_inodefs_type);
dad0db31 1197 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd");
1da177e4
LT
1198}
1199
90160e13 1200MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR);
This page took 0.614347 seconds and 5 git commands to generate.