blob: 69fb5dafa9ad61382ec7c06da28a2851ab88efee [file] [log] [blame]
Thomas Gleixnerfd534e92019-05-23 11:14:39 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
David Woodhousea1452a32010-08-08 20:58:20 +01003 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
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>
Arnd Bergmann5aa82942010-06-02 14:28:52 +020015#include <linux/mutex.h>
David Howells402d3262009-02-12 10:40:00 +000016#include <linux/backing-dev.h>
Kevin Cernekee97718542009-04-08 22:53:13 -070017#include <linux/compat.h>
Kirill A. Shutemovcd874232010-05-17 16:55:47 +030018#include <linux/mount.h>
Roman Tereshonkovd0f79592010-09-17 13:31:42 +030019#include <linux/blkpg.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070020#include <linux/magic.h>
Ezequiel Garciaf83c3832013-10-13 18:05:23 -030021#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mtd/mtd.h>
Roman Tereshonkovd0f79592010-09-17 13:31:42 +030023#include <linux/mtd/partitions.h>
Anatolij Gustschindd02b672010-06-15 09:30:15 +020024#include <linux/mtd/map.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080026#include <linux/uaccess.h>
Todd Poynor9bc7b382005-06-30 01:23:27 +010027
Artem Bityutskiy660685d2013-03-14 13:27:40 +020028#include "mtdcore.h"
29
Arnd Bergmann5aa82942010-06-02 14:28:52 +020030static DEFINE_MUTEX(mtd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Nicolas Pitre045e9a52005-02-08 19:12:53 +000032/*
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020033 * Data structure to hold the pointer to the mtd device as well
Brian Norris92394b5c2011-07-20 09:53:42 -070034 * as mode information of various use cases.
Nicolas Pitre045e9a52005-02-08 19:12:53 +000035 */
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020036struct mtd_file_info {
37 struct mtd_info *mtd;
38 enum mtd_file_modes mode;
39};
Nicolas Pitre31f42332005-02-08 17:45:55 +000040
Artem Bityutskiy969e57a2011-12-23 17:27:46 +020041static loff_t mtdchar_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020043 struct mtd_file_info *mfi = file->private_data;
Al Virob9599572013-06-16 20:27:42 +040044 return fixed_size_llseek(file, offset, orig, mfi->mtd->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Artem Bityutskiy969e57a2011-12-23 17:27:46 +020047static int mtdchar_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 int minor = iminor(inode);
50 int devnum = minor >> 1;
Jonathan Corbet60712392008-05-15 10:10:37 -060051 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct mtd_info *mtd;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020053 struct mtd_file_info *mfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Brian Norris289c0522011-07-19 10:06:09 -070055 pr_debug("MTD_open\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 /* You can't open the RO devices RW */
Al Viroaeb5d722008-09-02 15:28:45 -040058 if ((file->f_mode & FMODE_WRITE) && (minor & 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return -EACCES;
60
Arnd Bergmann5aa82942010-06-02 14:28:52 +020061 mutex_lock(&mtd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 mtd = get_mtd_device(NULL, devnum);
Thomas Gleixner97894cd2005-11-07 11:15:26 +000063
Jonathan Corbet60712392008-05-15 10:10:37 -060064 if (IS_ERR(mtd)) {
65 ret = PTR_ERR(mtd);
66 goto out;
67 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +000068
David Howells402d3262009-02-12 10:40:00 +000069 if (mtd->type == MTD_ABSENT) {
Jonathan Corbet60712392008-05-15 10:10:37 -060070 ret = -ENODEV;
Al Viroc65390f2012-04-09 01:36:28 -040071 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /* You can't open it RW if it's not a writeable device */
Al Viroaeb5d722008-09-02 15:28:45 -040075 if ((file->f_mode & FMODE_WRITE) && !(mtd->flags & MTD_WRITEABLE)) {
Jonathan Corbet60712392008-05-15 10:10:37 -060076 ret = -EACCES;
Christoph Hellwigb4caecd2015-01-14 10:42:32 +010077 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +000079
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020080 mfi = kzalloc(sizeof(*mfi), GFP_KERNEL);
81 if (!mfi) {
Jonathan Corbet60712392008-05-15 10:10:37 -060082 ret = -ENOMEM;
Christoph Hellwigb4caecd2015-01-14 10:42:32 +010083 goto out1;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020084 }
85 mfi->mtd = mtd;
86 file->private_data = mfi;
Al Viroc65390f2012-04-09 01:36:28 -040087 mutex_unlock(&mtd_mutex);
88 return 0;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +020089
Al Viroc65390f2012-04-09 01:36:28 -040090out1:
91 put_mtd_device(mtd);
Jonathan Corbet60712392008-05-15 10:10:37 -060092out:
Arnd Bergmann5aa82942010-06-02 14:28:52 +020093 mutex_unlock(&mtd_mutex);
Jonathan Corbet60712392008-05-15 10:10:37 -060094 return ret;
Artem Bityutskiy969e57a2011-12-23 17:27:46 +020095} /* mtdchar_open */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/*====================================================================*/
98
Artem Bityutskiy969e57a2011-12-23 17:27:46 +020099static int mtdchar_close(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200101 struct mtd_file_info *mfi = file->private_data;
102 struct mtd_info *mtd = mfi->mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Brian Norris289c0522011-07-19 10:06:09 -0700104 pr_debug("MTD_close\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Joakim Tjernlund7eafaed2007-06-27 00:56:40 +0200106 /* Only sync if opened RW */
Artem Bityutskiy327cf292011-12-30 16:35:35 +0200107 if ((file->f_mode & FMODE_WRITE))
Artem Bityutskiy85f2f2a2011-12-23 19:03:12 +0200108 mtd_sync(mtd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 put_mtd_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200111 file->private_data = NULL;
112 kfree(mfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 return 0;
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200115} /* mtdchar_close */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Grant Erickson3e45cf52011-04-08 08:51:33 -0700117/* Back in June 2001, dwmw2 wrote:
118 *
119 * FIXME: This _really_ needs to die. In 2.5, we should lock the
120 * userspace buffer down and use it directly with readv/writev.
121 *
122 * The implementation below, using mtd_kmalloc_up_to, mitigates
123 * allocation failures when the system is under low-memory situations
124 * or if memory is highly fragmented at the cost of reducing the
125 * performance of the requested transfer due to a smaller buffer size.
126 *
127 * A more complex but more memory-efficient implementation based on
128 * get_user_pages and iovecs to cover extents of those pages is a
129 * longer-term goal, as intimated by dwmw2 above. However, for the
130 * write case, this requires yet more complex head and tail transfer
131 * handling when those head and tail offsets and sizes are such that
132 * alignment requirements are not met in the NAND subdriver.
133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200135static ssize_t mtdchar_read(struct file *file, char __user *buf, size_t count,
136 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200138 struct mtd_file_info *mfi = file->private_data;
139 struct mtd_info *mtd = mfi->mtd;
Artem Bityutskiy30fa9842011-12-29 15:16:28 +0200140 size_t retlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 size_t total_retlen=0;
142 int ret=0;
143 int len;
Grant Erickson3e45cf52011-04-08 08:51:33 -0700144 size_t size = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 char *kbuf;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000146
Brian Norris289c0522011-07-19 10:06:09 -0700147 pr_debug("MTD_read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Jann Horn6c6bc9e2018-07-07 05:37:22 +0200149 if (*ppos + count > mtd->size) {
150 if (*ppos < mtd->size)
151 count = mtd->size - *ppos;
152 else
153 count = 0;
154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (!count)
157 return 0;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000158
Grant Erickson3e45cf52011-04-08 08:51:33 -0700159 kbuf = mtd_kmalloc_up_to(mtd, &size);
Thago Galesib802c072006-04-17 17:38:15 +0100160 if (!kbuf)
161 return -ENOMEM;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 while (count) {
Grant Erickson3e45cf52011-04-08 08:51:33 -0700164 len = min_t(size_t, count, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200166 switch (mfi->mode) {
Brian Norrisbeb133f2011-08-30 18:45:41 -0700167 case MTD_FILE_MODE_OTP_FACTORY:
Artem Bityutskiyd264f722011-12-23 18:40:06 +0200168 ret = mtd_read_fact_prot_reg(mtd, *ppos, len,
169 &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000170 break;
Brian Norrisbeb133f2011-08-30 18:45:41 -0700171 case MTD_FILE_MODE_OTP_USER:
Artem Bityutskiy4ea1cab2011-12-23 18:47:59 +0200172 ret = mtd_read_user_prot_reg(mtd, *ppos, len,
173 &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000174 break;
Brian Norrisbeb133f2011-08-30 18:45:41 -0700175 case MTD_FILE_MODE_RAW:
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200176 {
Miquel Raynal717bc8a2019-09-19 21:06:21 +0200177 struct mtd_oob_ops ops = {};
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200178
Brian Norris0612b9d2011-08-30 18:45:40 -0700179 ops.mode = MTD_OPS_RAW;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200180 ops.datbuf = kbuf;
181 ops.oobbuf = NULL;
182 ops.len = len;
183
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200184 ret = mtd_read_oob(mtd, *ppos, &ops);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200185 retlen = ops.retlen;
186 break;
187 }
Nicolas Pitre31f42332005-02-08 17:45:55 +0000188 default:
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200189 ret = mtd_read(mtd, *ppos, len, &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000190 }
Brian Norris7854d3f2011-06-23 14:12:08 -0700191 /* Nand returns -EBADMSG on ECC errors, but it returns
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * the data. For our userspace tools it is important
Brian Norris7854d3f2011-06-23 14:12:08 -0700193 * to dump areas with ECC errors!
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200194 * For kernel internal usage it also might return -EUCLEAN
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300195 * to signal the caller that a bitflip has occurred and has
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +0200196 * been corrected by the ECC algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * Userspace software which accesses NAND this way
198 * must be aware of the fact that it deals with NAND
199 */
Brian Norrisd57f40542011-09-20 18:34:25 -0700200 if (!ret || mtd_is_bitflip_or_eccerr(ret)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 *ppos += retlen;
202 if (copy_to_user(buf, kbuf, retlen)) {
Thomas Gleixnerf4a43cf2006-05-28 11:01:53 +0200203 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return -EFAULT;
205 }
206 else
207 total_retlen += retlen;
208
209 count -= retlen;
210 buf += retlen;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000211 if (retlen == 0)
212 count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214 else {
215 kfree(kbuf);
216 return ret;
217 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
Thago Galesib802c072006-04-17 17:38:15 +0100221 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return total_retlen;
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200223} /* mtdchar_read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200225static ssize_t mtdchar_write(struct file *file, const char __user *buf, size_t count,
226 loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200228 struct mtd_file_info *mfi = file->private_data;
229 struct mtd_info *mtd = mfi->mtd;
Grant Erickson3e45cf52011-04-08 08:51:33 -0700230 size_t size = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 char *kbuf;
232 size_t retlen;
233 size_t total_retlen=0;
234 int ret=0;
235 int len;
236
Brian Norris289c0522011-07-19 10:06:09 -0700237 pr_debug("MTD_write\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000238
Jann Horn6c6bc9e2018-07-07 05:37:22 +0200239 if (*ppos >= mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return -ENOSPC;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (*ppos + count > mtd->size)
243 count = mtd->size - *ppos;
244
245 if (!count)
246 return 0;
247
Grant Erickson3e45cf52011-04-08 08:51:33 -0700248 kbuf = mtd_kmalloc_up_to(mtd, &size);
Thago Galesib802c072006-04-17 17:38:15 +0100249 if (!kbuf)
250 return -ENOMEM;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 while (count) {
Grant Erickson3e45cf52011-04-08 08:51:33 -0700253 len = min_t(size_t, count, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (copy_from_user(kbuf, buf, len)) {
256 kfree(kbuf);
257 return -EFAULT;
258 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000259
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200260 switch (mfi->mode) {
Brian Norrisbeb133f2011-08-30 18:45:41 -0700261 case MTD_FILE_MODE_OTP_FACTORY:
Nicolas Pitre31f42332005-02-08 17:45:55 +0000262 ret = -EROFS;
263 break;
Brian Norrisbeb133f2011-08-30 18:45:41 -0700264 case MTD_FILE_MODE_OTP_USER:
Artem Bityutskiy482b43a2011-12-23 18:50:04 +0200265 ret = mtd_write_user_prot_reg(mtd, *ppos, len,
266 &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000267 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200268
Brian Norrisbeb133f2011-08-30 18:45:41 -0700269 case MTD_FILE_MODE_RAW:
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200270 {
Miquel Raynal717bc8a2019-09-19 21:06:21 +0200271 struct mtd_oob_ops ops = {};
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200272
Brian Norris0612b9d2011-08-30 18:45:40 -0700273 ops.mode = MTD_OPS_RAW;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200274 ops.datbuf = kbuf;
275 ops.oobbuf = NULL;
Peter Wippichbf514082011-06-06 15:50:58 +0200276 ops.ooboffs = 0;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200277 ops.len = len;
278
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200279 ret = mtd_write_oob(mtd, *ppos, &ops);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200280 retlen = ops.retlen;
281 break;
282 }
283
Nicolas Pitre31f42332005-02-08 17:45:55 +0000284 default:
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200285 ret = mtd_write(mtd, *ppos, len, &retlen, kbuf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000286 }
Christian Riesch9a78bc82014-03-06 12:42:37 +0100287
288 /*
289 * Return -ENOSPC only if no data could be written at all.
290 * Otherwise just return the number of bytes that actually
291 * have been written.
292 */
293 if ((ret == -ENOSPC) && (total_retlen))
294 break;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (!ret) {
297 *ppos += retlen;
298 total_retlen += retlen;
299 count -= retlen;
300 buf += retlen;
301 }
302 else {
303 kfree(kbuf);
304 return ret;
305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
Thago Galesib802c072006-04-17 17:38:15 +0100308 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return total_retlen;
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200310} /* mtdchar_write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312/*======================================================================
313
314 IOCTL calls for getting device parameters.
315
316======================================================================*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200318static int otp_select_filemode(struct mtd_file_info *mfi, int mode)
319{
320 struct mtd_info *mtd = mfi->mtd;
Artem Bityutskiyb6de3d62011-12-29 10:06:32 +0200321 size_t retlen;
Artem Bityutskiyb6de3d62011-12-29 10:06:32 +0200322
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200323 switch (mode) {
324 case MTD_OTP_FACTORY:
Uwe Kleine-König5dc63fa2013-03-04 17:35:24 +0100325 if (mtd_read_fact_prot_reg(mtd, -1, 0, &retlen, NULL) ==
326 -EOPNOTSUPP)
327 return -EOPNOTSUPP;
328
Artem Bityutskiyb6de3d62011-12-29 10:06:32 +0200329 mfi->mode = MTD_FILE_MODE_OTP_FACTORY;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200330 break;
331 case MTD_OTP_USER:
Uwe Kleine-König5dc63fa2013-03-04 17:35:24 +0100332 if (mtd_read_user_prot_reg(mtd, -1, 0, &retlen, NULL) ==
333 -EOPNOTSUPP)
334 return -EOPNOTSUPP;
335
Artem Bityutskiyb6de3d62011-12-29 10:06:32 +0200336 mfi->mode = MTD_FILE_MODE_OTP_USER;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200337 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200338 case MTD_OTP_OFF:
Uwe Kleine-König5dc63fa2013-03-04 17:35:24 +0100339 mfi->mode = MTD_FILE_MODE_NORMAL;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200340 break;
Uwe Kleine-König5dc63fa2013-03-04 17:35:24 +0100341 default:
342 return -EINVAL;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200343 }
Uwe Kleine-König5dc63fa2013-03-04 17:35:24 +0100344
345 return 0;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200346}
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200347
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200348static int mtdchar_writeoob(struct file *file, struct mtd_info *mtd,
Kevin Cernekee97718542009-04-08 22:53:13 -0700349 uint64_t start, uint32_t length, void __user *ptr,
350 uint32_t __user *retp)
351{
Miquel Raynal46b58892020-01-14 10:09:52 +0100352 struct mtd_info *master = mtd_get_master(mtd);
Brian Norris9ce244b2011-08-30 18:45:37 -0700353 struct mtd_file_info *mfi = file->private_data;
Miquel Raynal717bc8a2019-09-19 21:06:21 +0200354 struct mtd_oob_ops ops = {};
Kevin Cernekee97718542009-04-08 22:53:13 -0700355 uint32_t retlen;
356 int ret = 0;
357
Kevin Cernekee97718542009-04-08 22:53:13 -0700358 if (length > 4096)
359 return -EINVAL;
360
Miquel Raynal46b58892020-01-14 10:09:52 +0100361 if (!master->_write_oob)
Al Viro0db188f2017-09-29 13:55:19 -0400362 return -EOPNOTSUPP;
Kevin Cernekee97718542009-04-08 22:53:13 -0700363
364 ops.ooblen = length;
Brian Norris305b93f2011-08-23 17:17:32 -0700365 ops.ooboffs = start & (mtd->writesize - 1);
Kevin Cernekee97718542009-04-08 22:53:13 -0700366 ops.datbuf = NULL;
Brian Norrisbeb133f2011-08-30 18:45:41 -0700367 ops.mode = (mfi->mode == MTD_FILE_MODE_RAW) ? MTD_OPS_RAW :
Brian Norris0612b9d2011-08-30 18:45:40 -0700368 MTD_OPS_PLACE_OOB;
Kevin Cernekee97718542009-04-08 22:53:13 -0700369
370 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
371 return -EINVAL;
372
Julia Lawalldf1f1d12010-05-22 10:22:49 +0200373 ops.oobbuf = memdup_user(ptr, length);
374 if (IS_ERR(ops.oobbuf))
375 return PTR_ERR(ops.oobbuf);
Kevin Cernekee97718542009-04-08 22:53:13 -0700376
Brian Norris305b93f2011-08-23 17:17:32 -0700377 start &= ~((uint64_t)mtd->writesize - 1);
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200378 ret = mtd_write_oob(mtd, start, &ops);
Kevin Cernekee97718542009-04-08 22:53:13 -0700379
380 if (ops.oobretlen > 0xFFFFFFFFU)
381 ret = -EOVERFLOW;
382 retlen = ops.oobretlen;
383 if (copy_to_user(retp, &retlen, sizeof(length)))
384 ret = -EFAULT;
385
386 kfree(ops.oobbuf);
387 return ret;
388}
389
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200390static int mtdchar_readoob(struct file *file, struct mtd_info *mtd,
Brian Norrisc46f6482011-08-30 18:45:38 -0700391 uint64_t start, uint32_t length, void __user *ptr,
392 uint32_t __user *retp)
Kevin Cernekee97718542009-04-08 22:53:13 -0700393{
Brian Norrisc46f6482011-08-30 18:45:38 -0700394 struct mtd_file_info *mfi = file->private_data;
Miquel Raynal717bc8a2019-09-19 21:06:21 +0200395 struct mtd_oob_ops ops = {};
Kevin Cernekee97718542009-04-08 22:53:13 -0700396 int ret = 0;
397
398 if (length > 4096)
399 return -EINVAL;
400
Kevin Cernekee97718542009-04-08 22:53:13 -0700401 ops.ooblen = length;
Brian Norris305b93f2011-08-23 17:17:32 -0700402 ops.ooboffs = start & (mtd->writesize - 1);
Kevin Cernekee97718542009-04-08 22:53:13 -0700403 ops.datbuf = NULL;
Brian Norrisbeb133f2011-08-30 18:45:41 -0700404 ops.mode = (mfi->mode == MTD_FILE_MODE_RAW) ? MTD_OPS_RAW :
Brian Norris0612b9d2011-08-30 18:45:40 -0700405 MTD_OPS_PLACE_OOB;
Kevin Cernekee97718542009-04-08 22:53:13 -0700406
407 if (ops.ooboffs && ops.ooblen > (mtd->oobsize - ops.ooboffs))
408 return -EINVAL;
409
410 ops.oobbuf = kmalloc(length, GFP_KERNEL);
411 if (!ops.oobbuf)
412 return -ENOMEM;
413
Brian Norris305b93f2011-08-23 17:17:32 -0700414 start &= ~((uint64_t)mtd->writesize - 1);
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200415 ret = mtd_read_oob(mtd, start, &ops);
Kevin Cernekee97718542009-04-08 22:53:13 -0700416
417 if (put_user(ops.oobretlen, retp))
418 ret = -EFAULT;
419 else if (ops.oobretlen && copy_to_user(ptr, ops.oobbuf,
420 ops.oobretlen))
421 ret = -EFAULT;
422
423 kfree(ops.oobbuf);
Brian Norris041e4572011-06-23 16:45:24 -0700424
425 /*
426 * NAND returns -EBADMSG on ECC errors, but it returns the OOB
427 * data. For our userspace tools it is important to dump areas
428 * with ECC errors!
429 * For kernel internal usage it also might return -EUCLEAN
Nobuhiro Iwamatsu5d708ec2017-01-27 10:36:38 +0900430 * to signal the caller that a bitflip has occurred and has
Brian Norris041e4572011-06-23 16:45:24 -0700431 * been corrected by the ECC algorithm.
432 *
Brian Norrisc478d7e2011-06-28 16:29:00 -0700433 * Note: currently the standard NAND function, nand_read_oob_std,
434 * does not calculate ECC for the OOB area, so do not rely on
435 * this behavior unless you have replaced it with your own.
Brian Norris041e4572011-06-23 16:45:24 -0700436 */
Brian Norrisd57f40542011-09-20 18:34:25 -0700437 if (mtd_is_bitflip_or_eccerr(ret))
Brian Norris041e4572011-06-23 16:45:24 -0700438 return 0;
439
Kevin Cernekee97718542009-04-08 22:53:13 -0700440 return ret;
441}
442
Brian Norriscc26c3c2010-08-24 18:12:00 -0700443/*
Boris Brezillonaab616e2016-02-04 10:16:18 +0100444 * Copies (and truncates, if necessary) OOB layout information to the
445 * deprecated layout struct, nand_ecclayout_user. This is necessary only to
446 * support the deprecated API ioctl ECCGETLAYOUT while allowing all new
447 * functionality to use mtd_ooblayout_ops flexibly (i.e. mtd_ooblayout_ops
448 * can describe any kind of OOB layout with almost zero overhead from a
449 * memory usage point of view).
Brian Norriscc26c3c2010-08-24 18:12:00 -0700450 */
Boris Brezillonc2b78452016-02-03 20:10:30 +0100451static int shrink_ecclayout(struct mtd_info *mtd,
452 struct nand_ecclayout_user *to)
Brian Norriscc26c3c2010-08-24 18:12:00 -0700453{
Boris Brezillonc2b78452016-02-03 20:10:30 +0100454 struct mtd_oob_region oobregion;
455 int i, section = 0, ret;
Brian Norriscc26c3c2010-08-24 18:12:00 -0700456
Boris Brezillonc2b78452016-02-03 20:10:30 +0100457 if (!mtd || !to)
Brian Norriscc26c3c2010-08-24 18:12:00 -0700458 return -EINVAL;
459
460 memset(to, 0, sizeof(*to));
461
Boris Brezillonc2b78452016-02-03 20:10:30 +0100462 to->eccbytes = 0;
463 for (i = 0; i < MTD_MAX_ECCPOS_ENTRIES;) {
464 u32 eccpos;
465
OuYang ZhiZhong6de56492018-03-11 15:59:07 +0800466 ret = mtd_ooblayout_ecc(mtd, section++, &oobregion);
Boris Brezillonc2b78452016-02-03 20:10:30 +0100467 if (ret < 0) {
468 if (ret != -ERANGE)
469 return ret;
470
471 break;
472 }
473
474 eccpos = oobregion.offset;
475 for (; i < MTD_MAX_ECCPOS_ENTRIES &&
476 eccpos < oobregion.offset + oobregion.length; i++) {
477 to->eccpos[i] = eccpos++;
478 to->eccbytes++;
479 }
480 }
Brian Norriscc26c3c2010-08-24 18:12:00 -0700481
482 for (i = 0; i < MTD_MAX_OOBFREE_ENTRIES; i++) {
Boris Brezillonc2b78452016-02-03 20:10:30 +0100483 ret = mtd_ooblayout_free(mtd, i, &oobregion);
484 if (ret < 0) {
485 if (ret != -ERANGE)
486 return ret;
487
Brian Norriscc26c3c2010-08-24 18:12:00 -0700488 break;
Boris Brezillonc2b78452016-02-03 20:10:30 +0100489 }
490
491 to->oobfree[i].offset = oobregion.offset;
492 to->oobfree[i].length = oobregion.length;
493 to->oobavail += to->oobfree[i].length;
Brian Norriscc26c3c2010-08-24 18:12:00 -0700494 }
495
496 return 0;
497}
498
Boris Brezillonc2b78452016-02-03 20:10:30 +0100499static int get_oobinfo(struct mtd_info *mtd, struct nand_oobinfo *to)
500{
501 struct mtd_oob_region oobregion;
502 int i, section = 0, ret;
503
504 if (!mtd || !to)
505 return -EINVAL;
506
507 memset(to, 0, sizeof(*to));
508
509 to->eccbytes = 0;
510 for (i = 0; i < ARRAY_SIZE(to->eccpos);) {
511 u32 eccpos;
512
OuYang ZhiZhong6de56492018-03-11 15:59:07 +0800513 ret = mtd_ooblayout_ecc(mtd, section++, &oobregion);
Boris Brezillonc2b78452016-02-03 20:10:30 +0100514 if (ret < 0) {
515 if (ret != -ERANGE)
516 return ret;
517
518 break;
519 }
520
521 if (oobregion.length + i > ARRAY_SIZE(to->eccpos))
522 return -EINVAL;
523
524 eccpos = oobregion.offset;
525 for (; eccpos < oobregion.offset + oobregion.length; i++) {
526 to->eccpos[i] = eccpos++;
527 to->eccbytes++;
528 }
529 }
530
531 for (i = 0; i < 8; i++) {
532 ret = mtd_ooblayout_free(mtd, i, &oobregion);
533 if (ret < 0) {
534 if (ret != -ERANGE)
535 return ret;
536
537 break;
538 }
539
540 to->oobfree[i][0] = oobregion.offset;
541 to->oobfree[i][1] = oobregion.length;
542 }
543
544 to->useecc = MTD_NANDECC_AUTOPLACE;
545
546 return 0;
547}
548
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200549static int mtdchar_blkpg_ioctl(struct mtd_info *mtd,
Brian Norris53bb7242015-09-21 13:26:59 -0700550 struct blkpg_ioctl_arg *arg)
Roman Tereshonkovd0f79592010-09-17 13:31:42 +0300551{
Roman Tereshonkovd0f79592010-09-17 13:31:42 +0300552 struct blkpg_partition p;
553
554 if (!capable(CAP_SYS_ADMIN))
555 return -EPERM;
556
Brian Norris53bb7242015-09-21 13:26:59 -0700557 if (copy_from_user(&p, arg->data, sizeof(p)))
Roman Tereshonkovd0f79592010-09-17 13:31:42 +0300558 return -EFAULT;
559
Brian Norris53bb7242015-09-21 13:26:59 -0700560 switch (arg->op) {
Roman Tereshonkovd0f79592010-09-17 13:31:42 +0300561 case BLKPG_ADD_PARTITION:
562
Roman Tereshonkova7e93dc2010-11-23 14:17:17 +0200563 /* Only master mtd device must be used to add partitions */
564 if (mtd_is_partition(mtd))
565 return -EINVAL;
566
Brian Norris1cc8d842014-07-21 19:08:13 -0700567 /* Sanitize user input */
568 p.devname[BLKPG_DEVNAMELTH - 1] = '\0';
569
Roman Tereshonkovd0f79592010-09-17 13:31:42 +0300570 return mtd_add_partition(mtd, p.devname, p.start, p.length);
571
572 case BLKPG_DEL_PARTITION:
573
574 if (p.pno < 0)
575 return -EINVAL;
576
577 return mtd_del_partition(mtd, p.pno);
578
579 default:
580 return -EINVAL;
581 }
582}
Roman Tereshonkovd0f79592010-09-17 13:31:42 +0300583
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200584static int mtdchar_write_ioctl(struct mtd_info *mtd,
Brian Norrise99d8b02011-09-09 09:59:03 -0700585 struct mtd_write_req __user *argp)
586{
Miquel Raynal46b58892020-01-14 10:09:52 +0100587 struct mtd_info *master = mtd_get_master(mtd);
Brian Norrise99d8b02011-09-09 09:59:03 -0700588 struct mtd_write_req req;
Miquel Raynal717bc8a2019-09-19 21:06:21 +0200589 struct mtd_oob_ops ops = {};
Geert Uytterhoevenf62cde42014-05-01 20:40:54 +0200590 const void __user *usr_data, *usr_oob;
Brian Norrise99d8b02011-09-09 09:59:03 -0700591 int ret;
592
Geert Uytterhoevenf62cde42014-05-01 20:40:54 +0200593 if (copy_from_user(&req, argp, sizeof(req)))
Brian Norrise99d8b02011-09-09 09:59:03 -0700594 return -EFAULT;
Geert Uytterhoevenf62cde42014-05-01 20:40:54 +0200595
596 usr_data = (const void __user *)(uintptr_t)req.usr_data;
597 usr_oob = (const void __user *)(uintptr_t)req.usr_oob;
Geert Uytterhoevenf62cde42014-05-01 20:40:54 +0200598
Miquel Raynal46b58892020-01-14 10:09:52 +0100599 if (!master->_write_oob)
Brian Norrise99d8b02011-09-09 09:59:03 -0700600 return -EOPNOTSUPP;
Brian Norrise99d8b02011-09-09 09:59:03 -0700601 ops.mode = req.mode;
602 ops.len = (size_t)req.len;
603 ops.ooblen = (size_t)req.ooblen;
604 ops.ooboffs = 0;
605
Geert Uytterhoevenf62cde42014-05-01 20:40:54 +0200606 if (usr_data) {
Brian Norrise99d8b02011-09-09 09:59:03 -0700607 ops.datbuf = memdup_user(usr_data, ops.len);
608 if (IS_ERR(ops.datbuf))
609 return PTR_ERR(ops.datbuf);
610 } else {
611 ops.datbuf = NULL;
612 }
613
Geert Uytterhoevenf62cde42014-05-01 20:40:54 +0200614 if (usr_oob) {
Brian Norrise99d8b02011-09-09 09:59:03 -0700615 ops.oobbuf = memdup_user(usr_oob, ops.ooblen);
616 if (IS_ERR(ops.oobbuf)) {
617 kfree(ops.datbuf);
618 return PTR_ERR(ops.oobbuf);
619 }
620 } else {
621 ops.oobbuf = NULL;
622 }
623
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200624 ret = mtd_write_oob(mtd, (loff_t)req.start, &ops);
Brian Norrise99d8b02011-09-09 09:59:03 -0700625
626 kfree(ops.datbuf);
627 kfree(ops.oobbuf);
628
629 return ret;
630}
631
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200632static int mtdchar_ioctl(struct file *file, u_int cmd, u_long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200634 struct mtd_file_info *mfi = file->private_data;
635 struct mtd_info *mtd = mfi->mtd;
Miquel Raynal46b58892020-01-14 10:09:52 +0100636 struct mtd_info *master = mtd_get_master(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 void __user *argp = (void __user *)arg;
638 int ret = 0;
Joern Engel73c619e2006-05-30 14:25:35 +0200639 struct mtd_info_user info;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000640
Brian Norris289c0522011-07-19 10:06:09 -0700641 pr_debug("MTD_ioctl\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Greg Kroah-Hartmanf7e6b192020-07-16 13:53:46 +0200643 /*
644 * Check the file mode to require "dangerous" commands to have write
645 * permissions.
646 */
647 switch (cmd) {
648 /* "safe" commands */
649 case MEMGETREGIONCOUNT:
650 case MEMGETREGIONINFO:
651 case MEMGETINFO:
652 case MEMREADOOB:
653 case MEMREADOOB64:
Greg Kroah-Hartmanf7e6b192020-07-16 13:53:46 +0200654 case MEMISLOCKED:
655 case MEMGETOOBSEL:
656 case MEMGETBADBLOCK:
Greg Kroah-Hartmanf7e6b192020-07-16 13:53:46 +0200657 case OTPSELECT:
658 case OTPGETREGIONCOUNT:
659 case OTPGETREGIONINFO:
Greg Kroah-Hartmanf7e6b192020-07-16 13:53:46 +0200660 case ECCGETLAYOUT:
661 case ECCGETSTATS:
662 case MTDFILEMODE:
663 case BLKPG:
664 case BLKRRPART:
665 break;
666
667 /* "dangerous" commands */
668 case MEMERASE:
669 case MEMERASE64:
Michael Walle7b655272021-03-03 16:57:35 +0100670 case MEMLOCK:
671 case MEMUNLOCK:
672 case MEMSETBADBLOCK:
Greg Kroah-Hartmanf7e6b192020-07-16 13:53:46 +0200673 case MEMWRITEOOB:
674 case MEMWRITEOOB64:
675 case MEMWRITE:
Michael Walle7b655272021-03-03 16:57:35 +0100676 case OTPLOCK:
Greg Kroah-Hartmanf7e6b192020-07-16 13:53:46 +0200677 if (!(file->f_mode & FMODE_WRITE))
678 return -EPERM;
679 break;
680
681 default:
682 return -ENOTTY;
683 }
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 switch (cmd) {
686 case MEMGETREGIONCOUNT:
687 if (copy_to_user(argp, &(mtd->numeraseregions), sizeof(int)))
688 return -EFAULT;
689 break;
690
691 case MEMGETREGIONINFO:
692 {
Zev Weissb67c5f82008-09-01 05:02:12 -0700693 uint32_t ur_idx;
694 struct mtd_erase_region_info *kr;
H Hartley Sweetenbcc98a42010-01-15 11:25:38 -0700695 struct region_info_user __user *ur = argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Zev Weissb67c5f82008-09-01 05:02:12 -0700697 if (get_user(ur_idx, &(ur->regionindex)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return -EFAULT;
699
Dan Carpenter5e59be12010-09-08 21:39:56 +0200700 if (ur_idx >= mtd->numeraseregions)
701 return -EINVAL;
702
Zev Weissb67c5f82008-09-01 05:02:12 -0700703 kr = &(mtd->eraseregions[ur_idx]);
704
705 if (put_user(kr->offset, &(ur->offset))
706 || put_user(kr->erasesize, &(ur->erasesize))
707 || put_user(kr->numblocks, &(ur->numblocks)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -EFAULT;
Zev Weissb67c5f82008-09-01 05:02:12 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 break;
711 }
712
713 case MEMGETINFO:
Vasiliy Kulikova0c5a392010-11-06 17:41:24 +0300714 memset(&info, 0, sizeof(info));
Joern Engel73c619e2006-05-30 14:25:35 +0200715 info.type = mtd->type;
716 info.flags = mtd->flags;
717 info.size = mtd->size;
718 info.erasesize = mtd->erasesize;
719 info.writesize = mtd->writesize;
720 info.oobsize = mtd->oobsize;
Brian Norris19fb4342011-08-30 18:45:46 -0700721 /* The below field is obsolete */
722 info.padding = 0;
Joern Engel73c619e2006-05-30 14:25:35 +0200723 if (copy_to_user(argp, &info, sizeof(struct mtd_info_user)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return -EFAULT;
725 break;
726
727 case MEMERASE:
Kevin Cernekee0dc54e92009-04-08 22:52:28 -0700728 case MEMERASE64:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 {
730 struct erase_info *erase;
731
Burman Yan95b93a02006-11-15 21:10:29 +0200732 erase=kzalloc(sizeof(struct erase_info),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (!erase)
734 ret = -ENOMEM;
735 else {
Kevin Cernekee0dc54e92009-04-08 22:52:28 -0700736 if (cmd == MEMERASE64) {
737 struct erase_info_user64 einfo64;
738
739 if (copy_from_user(&einfo64, argp,
740 sizeof(struct erase_info_user64))) {
741 kfree(erase);
742 return -EFAULT;
743 }
744 erase->addr = einfo64.start;
745 erase->len = einfo64.length;
746 } else {
747 struct erase_info_user einfo32;
748
749 if (copy_from_user(&einfo32, argp,
750 sizeof(struct erase_info_user))) {
751 kfree(erase);
752 return -EFAULT;
753 }
754 erase->addr = einfo32.start;
755 erase->len = einfo32.length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000757
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +0200758 ret = mtd_erase(mtd, erase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 kfree(erase);
760 }
761 break;
762 }
763
764 case MEMWRITEOOB:
765 {
766 struct mtd_oob_buf buf;
Kevin Cernekee97718542009-04-08 22:53:13 -0700767 struct mtd_oob_buf __user *buf_user = argp;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000768
Kevin Cernekee97718542009-04-08 22:53:13 -0700769 /* NOTE: writes return length to buf_user->length */
770 if (copy_from_user(&buf, argp, sizeof(buf)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 ret = -EFAULT;
Kevin Cernekee97718542009-04-08 22:53:13 -0700772 else
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200773 ret = mtdchar_writeoob(file, mtd, buf.start, buf.length,
Kevin Cernekee97718542009-04-08 22:53:13 -0700774 buf.ptr, &buf_user->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
778 case MEMREADOOB:
779 {
780 struct mtd_oob_buf buf;
Kevin Cernekee97718542009-04-08 22:53:13 -0700781 struct mtd_oob_buf __user *buf_user = argp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Kevin Cernekee97718542009-04-08 22:53:13 -0700783 /* NOTE: writes return length to buf_user->start */
784 if (copy_from_user(&buf, argp, sizeof(buf)))
785 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 else
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200787 ret = mtdchar_readoob(file, mtd, buf.start, buf.length,
Kevin Cernekee97718542009-04-08 22:53:13 -0700788 buf.ptr, &buf_user->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
790 }
791
Kevin Cernekeeaea7cea2009-04-08 22:53:49 -0700792 case MEMWRITEOOB64:
793 {
794 struct mtd_oob_buf64 buf;
795 struct mtd_oob_buf64 __user *buf_user = argp;
796
797 if (copy_from_user(&buf, argp, sizeof(buf)))
798 ret = -EFAULT;
799 else
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200800 ret = mtdchar_writeoob(file, mtd, buf.start, buf.length,
Kevin Cernekeeaea7cea2009-04-08 22:53:49 -0700801 (void __user *)(uintptr_t)buf.usr_ptr,
802 &buf_user->length);
803 break;
804 }
805
806 case MEMREADOOB64:
807 {
808 struct mtd_oob_buf64 buf;
809 struct mtd_oob_buf64 __user *buf_user = argp;
810
811 if (copy_from_user(&buf, argp, sizeof(buf)))
812 ret = -EFAULT;
813 else
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200814 ret = mtdchar_readoob(file, mtd, buf.start, buf.length,
Kevin Cernekeeaea7cea2009-04-08 22:53:49 -0700815 (void __user *)(uintptr_t)buf.usr_ptr,
816 &buf_user->length);
817 break;
818 }
819
Brian Norrise99d8b02011-09-09 09:59:03 -0700820 case MEMWRITE:
821 {
Artem Bityutskiy969e57a2011-12-23 17:27:46 +0200822 ret = mtdchar_write_ioctl(mtd,
Brian Norrise99d8b02011-09-09 09:59:03 -0700823 (struct mtd_write_req __user *)arg);
824 break;
825 }
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 case MEMLOCK:
828 {
Harvey Harrison175428b2008-07-03 23:40:14 -0700829 struct erase_info_user einfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Harvey Harrison175428b2008-07-03 23:40:14 -0700831 if (copy_from_user(&einfo, argp, sizeof(einfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return -EFAULT;
833
Artem Bityutskiy38134562011-12-30 17:00:35 +0200834 ret = mtd_lock(mtd, einfo.start, einfo.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 break;
836 }
837
838 case MEMUNLOCK:
839 {
Harvey Harrison175428b2008-07-03 23:40:14 -0700840 struct erase_info_user einfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Harvey Harrison175428b2008-07-03 23:40:14 -0700842 if (copy_from_user(&einfo, argp, sizeof(einfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return -EFAULT;
844
Artem Bityutskiy38134562011-12-30 17:00:35 +0200845 ret = mtd_unlock(mtd, einfo.start, einfo.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 break;
847 }
848
Richard Cochran99384242010-06-14 18:10:33 +0200849 case MEMISLOCKED:
850 {
851 struct erase_info_user einfo;
852
853 if (copy_from_user(&einfo, argp, sizeof(einfo)))
854 return -EFAULT;
855
Artem Bityutskiy38134562011-12-30 17:00:35 +0200856 ret = mtd_is_locked(mtd, einfo.start, einfo.length);
Richard Cochran99384242010-06-14 18:10:33 +0200857 break;
858 }
859
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200860 /* Legacy interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 case MEMGETOOBSEL:
862 {
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200863 struct nand_oobinfo oi;
864
Miquel Raynal46b58892020-01-14 10:09:52 +0100865 if (!master->ooblayout)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200866 return -EOPNOTSUPP;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200867
Boris Brezillonc2b78452016-02-03 20:10:30 +0100868 ret = get_oobinfo(mtd, &oi);
869 if (ret)
870 return ret;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +0200871
872 if (copy_to_user(argp, &oi, sizeof(struct nand_oobinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return -EFAULT;
874 break;
875 }
876
877 case MEMGETBADBLOCK:
878 {
879 loff_t offs;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (copy_from_user(&offs, argp, sizeof(loff_t)))
882 return -EFAULT;
Artem Bityutskiy8f461a72012-01-02 13:48:54 +0200883 return mtd_block_isbad(mtd, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
885 }
886
887 case MEMSETBADBLOCK:
888 {
889 loff_t offs;
890
891 if (copy_from_user(&offs, argp, sizeof(loff_t)))
892 return -EFAULT;
Artem Bityutskiy800ffd32012-01-02 13:59:12 +0200893 return mtd_block_markbad(mtd, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 break;
895 }
896
Nicolas Pitre31f42332005-02-08 17:45:55 +0000897 case OTPSELECT:
898 {
899 int mode;
900 if (copy_from_user(&mode, argp, sizeof(int)))
901 return -EFAULT;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200902
Brian Norrisbeb133f2011-08-30 18:45:41 -0700903 mfi->mode = MTD_FILE_MODE_NORMAL;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200904
905 ret = otp_select_filemode(mfi, mode);
906
Nicolas Pitre81dba482005-04-01 16:36:15 +0100907 file->f_pos = 0;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000908 break;
909 }
910
911 case OTPGETREGIONCOUNT:
912 case OTPGETREGIONINFO:
913 {
914 struct otp_info *buf = kmalloc(4096, GFP_KERNEL);
Christian Riesch4b78fc42014-01-28 09:29:44 +0100915 size_t retlen;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000916 if (!buf)
917 return -ENOMEM;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200918 switch (mfi->mode) {
Brian Norrisbeb133f2011-08-30 18:45:41 -0700919 case MTD_FILE_MODE_OTP_FACTORY:
Christian Riesch4b78fc42014-01-28 09:29:44 +0100920 ret = mtd_get_fact_prot_info(mtd, 4096, &retlen, buf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000921 break;
Brian Norrisbeb133f2011-08-30 18:45:41 -0700922 case MTD_FILE_MODE_OTP_USER:
Christian Riesch4b78fc42014-01-28 09:29:44 +0100923 ret = mtd_get_user_prot_info(mtd, 4096, &retlen, buf);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000924 break;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200925 default:
Artem Bityutskiy87e858a92011-12-28 18:47:46 +0200926 ret = -EINVAL;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200927 break;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000928 }
Christian Riesch4b78fc42014-01-28 09:29:44 +0100929 if (!ret) {
Nicolas Pitre31f42332005-02-08 17:45:55 +0000930 if (cmd == OTPGETREGIONCOUNT) {
Christian Riesch4b78fc42014-01-28 09:29:44 +0100931 int nbr = retlen / sizeof(struct otp_info);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000932 ret = copy_to_user(argp, &nbr, sizeof(int));
933 } else
Christian Riesch4b78fc42014-01-28 09:29:44 +0100934 ret = copy_to_user(argp, buf, retlen);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000935 if (ret)
936 ret = -EFAULT;
937 }
938 kfree(buf);
939 break;
940 }
941
942 case OTPLOCK:
943 {
Harvey Harrison175428b2008-07-03 23:40:14 -0700944 struct otp_info oinfo;
Nicolas Pitre31f42332005-02-08 17:45:55 +0000945
Brian Norrisbeb133f2011-08-30 18:45:41 -0700946 if (mfi->mode != MTD_FILE_MODE_OTP_USER)
Nicolas Pitre31f42332005-02-08 17:45:55 +0000947 return -EINVAL;
Harvey Harrison175428b2008-07-03 23:40:14 -0700948 if (copy_from_user(&oinfo, argp, sizeof(oinfo)))
Nicolas Pitre31f42332005-02-08 17:45:55 +0000949 return -EFAULT;
Artem Bityutskiy4403dbfb2011-12-23 18:55:49 +0200950 ret = mtd_lock_user_prot_reg(mtd, oinfo.start, oinfo.length);
Nicolas Pitre31f42332005-02-08 17:45:55 +0000951 break;
952 }
Nicolas Pitre31f42332005-02-08 17:45:55 +0000953
Brian Norris7854d3f2011-06-23 14:12:08 -0700954 /* This ioctl is being deprecated - it truncates the ECC layout */
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200955 case ECCGETLAYOUT:
956 {
Brian Norriscc26c3c2010-08-24 18:12:00 -0700957 struct nand_ecclayout_user *usrlay;
958
Miquel Raynal46b58892020-01-14 10:09:52 +0100959 if (!master->ooblayout)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200960 return -EOPNOTSUPP;
961
Brian Norriscc26c3c2010-08-24 18:12:00 -0700962 usrlay = kmalloc(sizeof(*usrlay), GFP_KERNEL);
963 if (!usrlay)
964 return -ENOMEM;
965
Boris Brezillonc2b78452016-02-03 20:10:30 +0100966 shrink_ecclayout(mtd, usrlay);
Brian Norriscc26c3c2010-08-24 18:12:00 -0700967
968 if (copy_to_user(argp, usrlay, sizeof(*usrlay)))
969 ret = -EFAULT;
970 kfree(usrlay);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200971 break;
972 }
973
974 case ECCGETSTATS:
975 {
976 if (copy_to_user(argp, &mtd->ecc_stats,
977 sizeof(struct mtd_ecc_stats)))
978 return -EFAULT;
979 break;
980 }
981
982 case MTDFILEMODE:
983 {
984 mfi->mode = 0;
985
986 switch(arg) {
Brian Norrisbeb133f2011-08-30 18:45:41 -0700987 case MTD_FILE_MODE_OTP_FACTORY:
988 case MTD_FILE_MODE_OTP_USER:
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200989 ret = otp_select_filemode(mfi, arg);
990 break;
991
Brian Norrisbeb133f2011-08-30 18:45:41 -0700992 case MTD_FILE_MODE_RAW:
Artem Bityutskiyfc002e32011-12-28 18:35:07 +0200993 if (!mtd_has_oob(mtd))
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200994 return -EOPNOTSUPP;
995 mfi->mode = arg;
996
Brian Norrisbeb133f2011-08-30 18:45:41 -0700997 case MTD_FILE_MODE_NORMAL:
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200998 break;
999 default:
1000 ret = -EINVAL;
1001 }
1002 file->f_pos = 0;
1003 break;
1004 }
1005
Roman Tereshonkovd0f79592010-09-17 13:31:42 +03001006 case BLKPG:
1007 {
Brian Norris53bb7242015-09-21 13:26:59 -07001008 struct blkpg_ioctl_arg __user *blk_arg = argp;
1009 struct blkpg_ioctl_arg a;
1010
1011 if (copy_from_user(&a, blk_arg, sizeof(a)))
1012 ret = -EFAULT;
1013 else
1014 ret = mtdchar_blkpg_ioctl(mtd, &a);
Roman Tereshonkovd0f79592010-09-17 13:31:42 +03001015 break;
1016 }
1017
1018 case BLKRRPART:
1019 {
1020 /* No reread partition feature. Just return ok */
1021 ret = 0;
1022 break;
1023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
1026 return ret;
1027} /* memory_ioctl */
1028
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001029static long mtdchar_unlocked_ioctl(struct file *file, u_int cmd, u_long arg)
Arnd Bergmann55929332010-04-27 00:24:05 +02001030{
1031 int ret;
1032
Arnd Bergmann5aa82942010-06-02 14:28:52 +02001033 mutex_lock(&mtd_mutex);
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001034 ret = mtdchar_ioctl(file, cmd, arg);
Arnd Bergmann5aa82942010-06-02 14:28:52 +02001035 mutex_unlock(&mtd_mutex);
Arnd Bergmann55929332010-04-27 00:24:05 +02001036
1037 return ret;
1038}
1039
Kevin Cernekee97718542009-04-08 22:53:13 -07001040#ifdef CONFIG_COMPAT
1041
1042struct mtd_oob_buf32 {
1043 u_int32_t start;
1044 u_int32_t length;
1045 compat_caddr_t ptr; /* unsigned char* */
1046};
1047
1048#define MEMWRITEOOB32 _IOWR('M', 3, struct mtd_oob_buf32)
1049#define MEMREADOOB32 _IOWR('M', 4, struct mtd_oob_buf32)
1050
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001051static long mtdchar_compat_ioctl(struct file *file, unsigned int cmd,
Kevin Cernekee97718542009-04-08 22:53:13 -07001052 unsigned long arg)
1053{
1054 struct mtd_file_info *mfi = file->private_data;
1055 struct mtd_info *mtd = mfi->mtd;
David Woodhouse0b6585c2009-05-29 16:09:08 +01001056 void __user *argp = compat_ptr(arg);
Kevin Cernekee97718542009-04-08 22:53:13 -07001057 int ret = 0;
1058
Arnd Bergmann5aa82942010-06-02 14:28:52 +02001059 mutex_lock(&mtd_mutex);
Kevin Cernekee97718542009-04-08 22:53:13 -07001060
1061 switch (cmd) {
1062 case MEMWRITEOOB32:
1063 {
1064 struct mtd_oob_buf32 buf;
1065 struct mtd_oob_buf32 __user *buf_user = argp;
1066
Greg Kroah-Hartmanf7e6b192020-07-16 13:53:46 +02001067 if (!(file->f_mode & FMODE_WRITE)) {
1068 ret = -EPERM;
1069 break;
1070 }
1071
Kevin Cernekee97718542009-04-08 22:53:13 -07001072 if (copy_from_user(&buf, argp, sizeof(buf)))
1073 ret = -EFAULT;
1074 else
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001075 ret = mtdchar_writeoob(file, mtd, buf.start,
Kevin Cernekee97718542009-04-08 22:53:13 -07001076 buf.length, compat_ptr(buf.ptr),
1077 &buf_user->length);
1078 break;
1079 }
1080
1081 case MEMREADOOB32:
1082 {
1083 struct mtd_oob_buf32 buf;
1084 struct mtd_oob_buf32 __user *buf_user = argp;
1085
1086 /* NOTE: writes return length to buf->start */
1087 if (copy_from_user(&buf, argp, sizeof(buf)))
1088 ret = -EFAULT;
1089 else
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001090 ret = mtdchar_readoob(file, mtd, buf.start,
Kevin Cernekee97718542009-04-08 22:53:13 -07001091 buf.length, compat_ptr(buf.ptr),
1092 &buf_user->start);
1093 break;
1094 }
Brian Norris53bb7242015-09-21 13:26:59 -07001095
1096 case BLKPG:
1097 {
1098 /* Convert from blkpg_compat_ioctl_arg to blkpg_ioctl_arg */
1099 struct blkpg_compat_ioctl_arg __user *uarg = argp;
1100 struct blkpg_compat_ioctl_arg compat_arg;
1101 struct blkpg_ioctl_arg a;
1102
1103 if (copy_from_user(&compat_arg, uarg, sizeof(compat_arg))) {
1104 ret = -EFAULT;
1105 break;
1106 }
1107
1108 memset(&a, 0, sizeof(a));
1109 a.op = compat_arg.op;
1110 a.flags = compat_arg.flags;
1111 a.datalen = compat_arg.datalen;
1112 a.data = compat_ptr(compat_arg.data);
1113
1114 ret = mtdchar_blkpg_ioctl(mtd, &a);
1115 break;
1116 }
1117
Kevin Cernekee97718542009-04-08 22:53:13 -07001118 default:
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001119 ret = mtdchar_ioctl(file, cmd, (unsigned long)argp);
Kevin Cernekee97718542009-04-08 22:53:13 -07001120 }
1121
Arnd Bergmann5aa82942010-06-02 14:28:52 +02001122 mutex_unlock(&mtd_mutex);
Kevin Cernekee97718542009-04-08 22:53:13 -07001123
1124 return ret;
1125}
1126
1127#endif /* CONFIG_COMPAT */
1128
David Howells402d3262009-02-12 10:40:00 +00001129/*
1130 * try to determine where a shared mapping can be made
1131 * - only supported for NOMMU at the moment (MMU can't doesn't copy private
1132 * mappings)
1133 */
1134#ifndef CONFIG_MMU
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001135static unsigned long mtdchar_get_unmapped_area(struct file *file,
David Howells402d3262009-02-12 10:40:00 +00001136 unsigned long addr,
1137 unsigned long len,
1138 unsigned long pgoff,
1139 unsigned long flags)
1140{
1141 struct mtd_file_info *mfi = file->private_data;
1142 struct mtd_info *mtd = mfi->mtd;
Artem Bityutskiycd621272011-12-30 14:31:57 +02001143 unsigned long offset;
1144 int ret;
David Howells402d3262009-02-12 10:40:00 +00001145
Artem Bityutskiycd621272011-12-30 14:31:57 +02001146 if (addr != 0)
1147 return (unsigned long) -EINVAL;
David Howells402d3262009-02-12 10:40:00 +00001148
Artem Bityutskiycd621272011-12-30 14:31:57 +02001149 if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
1150 return (unsigned long) -EINVAL;
David Howells402d3262009-02-12 10:40:00 +00001151
Artem Bityutskiycd621272011-12-30 14:31:57 +02001152 offset = pgoff << PAGE_SHIFT;
1153 if (offset > mtd->size - len)
1154 return (unsigned long) -EINVAL;
David Howells402d3262009-02-12 10:40:00 +00001155
Artem Bityutskiycd621272011-12-30 14:31:57 +02001156 ret = mtd_get_unmapped_area(mtd, len, offset, flags);
Vladimir Zapolskiyb9995932013-10-28 18:08:15 +02001157 return ret == -EOPNOTSUPP ? -ENODEV : ret;
David Howells402d3262009-02-12 10:40:00 +00001158}
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001159
1160static unsigned mtdchar_mmap_capabilities(struct file *file)
1161{
1162 struct mtd_file_info *mfi = file->private_data;
1163
1164 return mtd_mmap_capabilities(mfi->mtd);
1165}
David Howells402d3262009-02-12 10:40:00 +00001166#endif
1167
1168/*
1169 * set up a mapping for shared memory segments
1170 */
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001171static int mtdchar_mmap(struct file *file, struct vm_area_struct *vma)
David Howells402d3262009-02-12 10:40:00 +00001172{
1173#ifdef CONFIG_MMU
1174 struct mtd_file_info *mfi = file->private_data;
1175 struct mtd_info *mtd = mfi->mtd;
Anatolij Gustschindd02b672010-06-15 09:30:15 +02001176 struct map_info *map = mtd->priv;
David Howells402d3262009-02-12 10:40:00 +00001177
David Woodhousef5cf8f02012-10-09 15:08:10 +01001178 /* This is broken because it assumes the MTD device is map-based
1179 and that mtd->priv is a valid struct map_info. It should be
1180 replaced with something that uses the mtd_get_unmapped_area()
1181 operation properly. */
1182 if (0 /*mtd->type == MTD_RAM || mtd->type == MTD_ROM*/) {
Anatolij Gustschindd02b672010-06-15 09:30:15 +02001183#ifdef pgprot_noncached
Linus Torvalds8558e4a2013-04-19 09:53:07 -07001184 if (file->f_flags & O_DSYNC || map->phys >= __pa(high_memory))
Anatolij Gustschindd02b672010-06-15 09:30:15 +02001185 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1186#endif
Linus Torvalds8558e4a2013-04-19 09:53:07 -07001187 return vm_iomap_memory(vma, map->phys, map->size);
Anatolij Gustschindd02b672010-06-15 09:30:15 +02001188 }
Vladimir Zapolskiyb9995932013-10-28 18:08:15 +02001189 return -ENODEV;
David Howells402d3262009-02-12 10:40:00 +00001190#else
Vladimir Zapolskiyb9995932013-10-28 18:08:15 +02001191 return vma->vm_flags & VM_SHARED ? 0 : -EACCES;
David Howells402d3262009-02-12 10:40:00 +00001192#endif
1193}
1194
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08001195static const struct file_operations mtd_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 .owner = THIS_MODULE,
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001197 .llseek = mtdchar_lseek,
1198 .read = mtdchar_read,
1199 .write = mtdchar_write,
1200 .unlocked_ioctl = mtdchar_unlocked_ioctl,
Kevin Cernekee97718542009-04-08 22:53:13 -07001201#ifdef CONFIG_COMPAT
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001202 .compat_ioctl = mtdchar_compat_ioctl,
Kevin Cernekee97718542009-04-08 22:53:13 -07001203#endif
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001204 .open = mtdchar_open,
1205 .release = mtdchar_close,
1206 .mmap = mtdchar_mmap,
David Howells402d3262009-02-12 10:40:00 +00001207#ifndef CONFIG_MMU
Artem Bityutskiy969e57a2011-12-23 17:27:46 +02001208 .get_unmapped_area = mtdchar_get_unmapped_area,
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01001209 .mmap_capabilities = mtdchar_mmap_capabilities,
David Howells402d3262009-02-12 10:40:00 +00001210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211};
1212
Artem Bityutskiy660685d2013-03-14 13:27:40 +02001213int __init init_mtdchar(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Kirill A. Shutemovcd874232010-05-17 16:55:47 +03001215 int ret;
David Brownell1f24b5a2009-03-26 00:42:41 -07001216
Kirill A. Shutemovcd874232010-05-17 16:55:47 +03001217 ret = __register_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS,
Ben Hutchingsdad0db32010-01-29 21:00:04 +00001218 "mtd", &mtd_fops);
Kirill A. Shutemovcd874232010-05-17 16:55:47 +03001219 if (ret < 0) {
Artem Bityutskiy57ae2b62013-03-15 12:59:36 +02001220 pr_err("Can't allocate major number %d for MTD\n",
1221 MTD_CHAR_MAJOR);
Kirill A. Shutemovcd874232010-05-17 16:55:47 +03001222 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
Kirill A. Shutemovcd874232010-05-17 16:55:47 +03001225 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Artem Bityutskiy660685d2013-03-14 13:27:40 +02001228void __exit cleanup_mtdchar(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Ben Hutchingsdad0db32010-01-29 21:00:04 +00001230 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Scott James Remnant90160e12009-03-02 18:42:39 +00001233MODULE_ALIAS_CHARDEV_MAJOR(MTD_CHAR_MAJOR);