blob: b177e750efc364b91b646a81d9fa9570cfec5430 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Core registration and callback routines for MTD
3 * drivers and users.
4 *
Jörn Engela33eb6b2010-04-27 09:40:52 +02005 * bdi bits are:
6 * Copyright © 2006 Red Hat, Inc. All Rights Reserved.
7 * Written by David Howells (dhowells@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/string.h>
14#include <linux/timer.h>
15#include <linux/major.h>
16#include <linux/fs.h>
Artem Bityutskiy77993082006-10-11 14:52:44 +030017#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/ioctl.h>
19#include <linux/init.h>
20#include <linux/mtd/compatmac.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/proc_fs.h>
Jörn Engela33eb6b2010-04-27 09:40:52 +020022#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <linux/mtd/mtd.h>
25
Ben Dooks356d70f2007-05-28 20:28:34 +010026#include "mtdcore.h"
Jörn Engela33eb6b2010-04-27 09:40:52 +020027/*
28 * backing device capabilities for non-mappable devices (such as NAND flash)
29 * - permits private mappings, copies are taken of the data
30 */
31struct backing_dev_info mtd_bdi_unmappable = {
32 .capabilities = BDI_CAP_MAP_COPY,
33};
34
35/*
36 * backing device capabilities for R/O mappable devices (such as ROM)
37 * - permits private mappings, copies are taken of the data
38 * - permits non-writable shared mappings
39 */
40struct backing_dev_info mtd_bdi_ro_mappable = {
41 .capabilities = (BDI_CAP_MAP_COPY | BDI_CAP_MAP_DIRECT |
42 BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP),
43};
44
45/*
46 * backing device capabilities for writable mappable devices (such as RAM)
47 * - permits private mappings, copies are taken of the data
48 * - permits non-writable shared mappings
49 */
50struct backing_dev_info mtd_bdi_rw_mappable = {
51 .capabilities = (BDI_CAP_MAP_COPY | BDI_CAP_MAP_DIRECT |
52 BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP |
53 BDI_CAP_WRITE_MAP),
54};
Ben Dooks356d70f2007-05-28 20:28:34 +010055
David Woodhouse15bce402009-04-05 07:40:58 -070056static int mtd_cls_suspend(struct device *dev, pm_message_t state);
57static int mtd_cls_resume(struct device *dev);
David Brownell1f24b5a2009-03-26 00:42:41 -070058
David Woodhouse15bce402009-04-05 07:40:58 -070059static struct class mtd_class = {
60 .name = "mtd",
61 .owner = THIS_MODULE,
62 .suspend = mtd_cls_suspend,
63 .resume = mtd_cls_resume,
64};
David Brownell1f24b5a2009-03-26 00:42:41 -070065
Thomas Gleixner97894cd2005-11-07 11:15:26 +000066/* These are exported solely for the purpose of mtd_blkdevs.c. You
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 should not use them for _anything_ else */
Ingo Molnar48b19262006-03-31 02:29:41 -080068DEFINE_MUTEX(mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct mtd_info *mtd_table[MAX_MTD_DEVICES];
70
71EXPORT_SYMBOL_GPL(mtd_table_mutex);
72EXPORT_SYMBOL_GPL(mtd_table);
73
74static LIST_HEAD(mtd_notifiers);
75
David Brownell1f24b5a2009-03-26 00:42:41 -070076
77#if defined(CONFIG_MTD_CHAR) || defined(CONFIG_MTD_CHAR_MODULE)
78#define MTD_DEVT(index) MKDEV(MTD_CHAR_MAJOR, (index)*2)
79#else
80#define MTD_DEVT(index) 0
81#endif
82
83/* REVISIT once MTD uses the driver model better, whoever allocates
84 * the mtd_info will probably want to use the release() hook...
85 */
86static void mtd_release(struct device *dev)
87{
Denis V. Lunev2fdb1142009-04-12 08:14:46 +010088 dev_t index = MTD_DEVT(dev_to_mtd(dev)->index);
David Brownell1f24b5a2009-03-26 00:42:41 -070089
90 /* remove /dev/mtdXro node if needed */
Denis V. Lunev2fdb1142009-04-12 08:14:46 +010091 if (index)
David Woodhouse15bce402009-04-05 07:40:58 -070092 device_destroy(&mtd_class, index + 1);
93}
94
95static int mtd_cls_suspend(struct device *dev, pm_message_t state)
96{
97 struct mtd_info *mtd = dev_to_mtd(dev);
Saeed Bishara6afc4fd2009-07-28 04:56:43 -070098
99 if (mtd && mtd->suspend)
David Woodhouse15bce402009-04-05 07:40:58 -0700100 return mtd->suspend(mtd);
101 else
102 return 0;
103}
104
105static int mtd_cls_resume(struct device *dev)
106{
107 struct mtd_info *mtd = dev_to_mtd(dev);
108
Saeed Bishara6afc4fd2009-07-28 04:56:43 -0700109 if (mtd && mtd->resume)
David Woodhouse15bce402009-04-05 07:40:58 -0700110 mtd->resume(mtd);
111 return 0;
David Brownell1f24b5a2009-03-26 00:42:41 -0700112}
113
114static ssize_t mtd_type_show(struct device *dev,
115 struct device_attribute *attr, char *buf)
116{
117 struct mtd_info *mtd = dev_to_mtd(dev);
118 char *type;
119
120 switch (mtd->type) {
121 case MTD_ABSENT:
122 type = "absent";
123 break;
124 case MTD_RAM:
125 type = "ram";
126 break;
127 case MTD_ROM:
128 type = "rom";
129 break;
130 case MTD_NORFLASH:
131 type = "nor";
132 break;
133 case MTD_NANDFLASH:
134 type = "nand";
135 break;
136 case MTD_DATAFLASH:
137 type = "dataflash";
138 break;
139 case MTD_UBIVOLUME:
140 type = "ubi";
141 break;
142 default:
143 type = "unknown";
144 }
145
146 return snprintf(buf, PAGE_SIZE, "%s\n", type);
147}
Kevin Cernekee694bb7f2009-04-03 13:00:45 -0700148static DEVICE_ATTR(type, S_IRUGO, mtd_type_show, NULL);
149
150static ssize_t mtd_flags_show(struct device *dev,
151 struct device_attribute *attr, char *buf)
152{
153 struct mtd_info *mtd = dev_to_mtd(dev);
154
155 return snprintf(buf, PAGE_SIZE, "0x%lx\n", (unsigned long)mtd->flags);
156
157}
158static DEVICE_ATTR(flags, S_IRUGO, mtd_flags_show, NULL);
159
160static ssize_t mtd_size_show(struct device *dev,
161 struct device_attribute *attr, char *buf)
162{
163 struct mtd_info *mtd = dev_to_mtd(dev);
164
165 return snprintf(buf, PAGE_SIZE, "%llu\n",
166 (unsigned long long)mtd->size);
167
168}
169static DEVICE_ATTR(size, S_IRUGO, mtd_size_show, NULL);
170
171static ssize_t mtd_erasesize_show(struct device *dev,
172 struct device_attribute *attr, char *buf)
173{
174 struct mtd_info *mtd = dev_to_mtd(dev);
175
176 return snprintf(buf, PAGE_SIZE, "%lu\n", (unsigned long)mtd->erasesize);
177
178}
179static DEVICE_ATTR(erasesize, S_IRUGO, mtd_erasesize_show, NULL);
180
181static ssize_t mtd_writesize_show(struct device *dev,
182 struct device_attribute *attr, char *buf)
183{
184 struct mtd_info *mtd = dev_to_mtd(dev);
185
186 return snprintf(buf, PAGE_SIZE, "%lu\n", (unsigned long)mtd->writesize);
187
188}
189static DEVICE_ATTR(writesize, S_IRUGO, mtd_writesize_show, NULL);
190
Artem Bityutskiye7693542009-04-18 12:29:42 +0300191static ssize_t mtd_subpagesize_show(struct device *dev,
192 struct device_attribute *attr, char *buf)
193{
194 struct mtd_info *mtd = dev_to_mtd(dev);
195 unsigned int subpagesize = mtd->writesize >> mtd->subpage_sft;
196
197 return snprintf(buf, PAGE_SIZE, "%u\n", subpagesize);
198
199}
200static DEVICE_ATTR(subpagesize, S_IRUGO, mtd_subpagesize_show, NULL);
201
Kevin Cernekee694bb7f2009-04-03 13:00:45 -0700202static ssize_t mtd_oobsize_show(struct device *dev,
203 struct device_attribute *attr, char *buf)
204{
205 struct mtd_info *mtd = dev_to_mtd(dev);
206
207 return snprintf(buf, PAGE_SIZE, "%lu\n", (unsigned long)mtd->oobsize);
208
209}
210static DEVICE_ATTR(oobsize, S_IRUGO, mtd_oobsize_show, NULL);
211
212static ssize_t mtd_numeraseregions_show(struct device *dev,
213 struct device_attribute *attr, char *buf)
214{
215 struct mtd_info *mtd = dev_to_mtd(dev);
216
217 return snprintf(buf, PAGE_SIZE, "%u\n", mtd->numeraseregions);
218
219}
220static DEVICE_ATTR(numeraseregions, S_IRUGO, mtd_numeraseregions_show,
221 NULL);
222
223static ssize_t mtd_name_show(struct device *dev,
224 struct device_attribute *attr, char *buf)
225{
226 struct mtd_info *mtd = dev_to_mtd(dev);
227
228 return snprintf(buf, PAGE_SIZE, "%s\n", mtd->name);
229
230}
231static DEVICE_ATTR(name, S_IRUGO, mtd_name_show, NULL);
David Brownell1f24b5a2009-03-26 00:42:41 -0700232
233static struct attribute *mtd_attrs[] = {
Kevin Cernekee694bb7f2009-04-03 13:00:45 -0700234 &dev_attr_type.attr,
235 &dev_attr_flags.attr,
236 &dev_attr_size.attr,
237 &dev_attr_erasesize.attr,
238 &dev_attr_writesize.attr,
Artem Bityutskiye7693542009-04-18 12:29:42 +0300239 &dev_attr_subpagesize.attr,
Kevin Cernekee694bb7f2009-04-03 13:00:45 -0700240 &dev_attr_oobsize.attr,
241 &dev_attr_numeraseregions.attr,
242 &dev_attr_name.attr,
David Brownell1f24b5a2009-03-26 00:42:41 -0700243 NULL,
244};
245
H Hartley Sweetenfca91082009-08-06 16:05:32 -0700246static struct attribute_group mtd_group = {
David Brownell1f24b5a2009-03-26 00:42:41 -0700247 .attrs = mtd_attrs,
248};
249
David Woodhouse6469f542009-09-20 05:55:36 -0700250static const struct attribute_group *mtd_groups[] = {
David Brownell1f24b5a2009-03-26 00:42:41 -0700251 &mtd_group,
252 NULL,
253};
254
255static struct device_type mtd_devtype = {
256 .name = "mtd",
257 .groups = mtd_groups,
258 .release = mtd_release,
259};
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/**
262 * add_mtd_device - register an MTD device
263 * @mtd: pointer to new MTD device info structure
264 *
265 * Add a device to the list of MTD devices present in the system, and
266 * notify each currently active MTD 'user' of its arrival. Returns
267 * zero on success or 1 on failure, which currently will only happen
268 * if the number of present devices exceeds MAX_MTD_DEVICES (i.e. 16)
David Brownell1f24b5a2009-03-26 00:42:41 -0700269 * or there's a sysfs error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
271
272int add_mtd_device(struct mtd_info *mtd)
273{
274 int i;
275
David Howells402d3262009-02-12 10:40:00 +0000276 if (!mtd->backing_dev_info) {
277 switch (mtd->type) {
278 case MTD_RAM:
279 mtd->backing_dev_info = &mtd_bdi_rw_mappable;
280 break;
281 case MTD_ROM:
282 mtd->backing_dev_info = &mtd_bdi_ro_mappable;
283 break;
284 default:
285 mtd->backing_dev_info = &mtd_bdi_unmappable;
286 break;
287 }
288 }
289
Artem B. Bityutskiy783ed812006-06-14 19:53:44 +0400290 BUG_ON(mtd->writesize == 0);
Ingo Molnar48b19262006-03-31 02:29:41 -0800291 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 for (i=0; i < MAX_MTD_DEVICES; i++)
294 if (!mtd_table[i]) {
matthias@kaehlcke.net2606c792008-05-31 15:28:09 +0200295 struct mtd_notifier *not;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 mtd_table[i] = mtd;
298 mtd->index = i;
299 mtd->usecount = 0;
300
Adrian Hunter69423d92008-12-10 13:37:21 +0000301 if (is_power_of_2(mtd->erasesize))
302 mtd->erasesize_shift = ffs(mtd->erasesize) - 1;
303 else
304 mtd->erasesize_shift = 0;
305
306 if (is_power_of_2(mtd->writesize))
307 mtd->writesize_shift = ffs(mtd->writesize) - 1;
308 else
309 mtd->writesize_shift = 0;
310
311 mtd->erasesize_mask = (1 << mtd->erasesize_shift) - 1;
312 mtd->writesize_mask = (1 << mtd->writesize_shift) - 1;
313
Håvard Skinnemoen187ef152006-09-22 10:07:08 +0100314 /* Some chips always power up locked. Unlock them now */
315 if ((mtd->flags & MTD_WRITEABLE)
Justin Treone619a752008-01-30 10:25:49 -0800316 && (mtd->flags & MTD_POWERUP_LOCK) && mtd->unlock) {
Håvard Skinnemoen187ef152006-09-22 10:07:08 +0100317 if (mtd->unlock(mtd, 0, mtd->size))
318 printk(KERN_WARNING
319 "%s: unlock failed, "
320 "writes may not work\n",
321 mtd->name);
322 }
323
David Brownell1f24b5a2009-03-26 00:42:41 -0700324 /* Caller should have set dev.parent to match the
325 * physical device.
326 */
327 mtd->dev.type = &mtd_devtype;
David Woodhouse15bce402009-04-05 07:40:58 -0700328 mtd->dev.class = &mtd_class;
David Brownell1f24b5a2009-03-26 00:42:41 -0700329 mtd->dev.devt = MTD_DEVT(i);
330 dev_set_name(&mtd->dev, "mtd%d", i);
Saeed Bishara6afc4fd2009-07-28 04:56:43 -0700331 dev_set_drvdata(&mtd->dev, mtd);
David Brownell1f24b5a2009-03-26 00:42:41 -0700332 if (device_register(&mtd->dev) != 0) {
333 mtd_table[i] = NULL;
334 break;
335 }
336
337 if (MTD_DEVT(i))
David Woodhouse15bce402009-04-05 07:40:58 -0700338 device_create(&mtd_class, mtd->dev.parent,
David Brownell1f24b5a2009-03-26 00:42:41 -0700339 MTD_DEVT(i) + 1,
340 NULL, "mtd%dro", i);
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 DEBUG(0, "mtd: Giving out device %d to %s\n",i, mtd->name);
343 /* No need to get a refcount on the module containing
344 the notifier, since we hold the mtd_table_mutex */
Chris Malley71a928c2008-05-19 20:11:50 +0100345 list_for_each_entry(not, &mtd_notifiers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 not->add(mtd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000347
Ingo Molnar48b19262006-03-31 02:29:41 -0800348 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* We _know_ we aren't being removed, because
350 our caller is still holding us here. So none
351 of this try_ nonsense, and no bitching about it
352 either. :) */
353 __module_get(THIS_MODULE);
354 return 0;
355 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000356
Ingo Molnar48b19262006-03-31 02:29:41 -0800357 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 1;
359}
360
361/**
362 * del_mtd_device - unregister an MTD device
363 * @mtd: pointer to MTD device info structure
364 *
365 * Remove a device from the list of MTD devices present in the system,
366 * and notify each currently active MTD 'user' of its departure.
367 * Returns zero on success or 1 on failure, which currently will happen
368 * if the requested device does not appear to be present in the list.
369 */
370
371int del_mtd_device (struct mtd_info *mtd)
372{
373 int ret;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000374
Ingo Molnar48b19262006-03-31 02:29:41 -0800375 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (mtd_table[mtd->index] != mtd) {
378 ret = -ENODEV;
379 } else if (mtd->usecount) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000380 printk(KERN_NOTICE "Removing MTD device #%d (%s) with use count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 mtd->index, mtd->name, mtd->usecount);
382 ret = -EBUSY;
383 } else {
matthias@kaehlcke.net856613c2008-05-31 15:28:10 +0200384 struct mtd_notifier *not;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Kevin Cernekee694bb7f2009-04-03 13:00:45 -0700386 device_unregister(&mtd->dev);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* No need to get a refcount on the module containing
389 the notifier, since we hold the mtd_table_mutex */
Chris Malley71a928c2008-05-19 20:11:50 +0100390 list_for_each_entry(not, &mtd_notifiers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 not->remove(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 mtd_table[mtd->index] = NULL;
394
395 module_put(THIS_MODULE);
396 ret = 0;
397 }
398
Ingo Molnar48b19262006-03-31 02:29:41 -0800399 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return ret;
401}
402
403/**
404 * register_mtd_user - register a 'user' of MTD devices.
405 * @new: pointer to notifier info structure
406 *
407 * Registers a pair of callbacks function to be called upon addition
408 * or removal of MTD devices. Causes the 'add' callback to be immediately
409 * invoked for each MTD device currently present in the system.
410 */
411
412void register_mtd_user (struct mtd_notifier *new)
413{
414 int i;
415
Ingo Molnar48b19262006-03-31 02:29:41 -0800416 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 list_add(&new->list, &mtd_notifiers);
419
420 __module_get(THIS_MODULE);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 for (i=0; i< MAX_MTD_DEVICES; i++)
423 if (mtd_table[i])
424 new->add(mtd_table[i]);
425
Ingo Molnar48b19262006-03-31 02:29:41 -0800426 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429/**
Artem B. Bityuckiy49450792005-02-18 14:34:54 +0000430 * unregister_mtd_user - unregister a 'user' of MTD devices.
431 * @old: pointer to notifier info structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
433 * Removes a callback function pair from the list of 'users' to be
434 * notified upon addition or removal of MTD devices. Causes the
435 * 'remove' callback to be immediately invoked for each MTD device
436 * currently present in the system.
437 */
438
439int unregister_mtd_user (struct mtd_notifier *old)
440{
441 int i;
442
Ingo Molnar48b19262006-03-31 02:29:41 -0800443 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 module_put(THIS_MODULE);
446
447 for (i=0; i< MAX_MTD_DEVICES; i++)
448 if (mtd_table[i])
449 old->remove(mtd_table[i]);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 list_del(&old->list);
Ingo Molnar48b19262006-03-31 02:29:41 -0800452 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
454}
455
456
457/**
458 * get_mtd_device - obtain a validated handle for an MTD device
459 * @mtd: last known address of the required MTD device
460 * @num: internal device number of the required MTD device
461 *
462 * Given a number and NULL address, return the num'th entry in the device
463 * table, if any. Given an address and num == -1, search the device table
464 * for a device with that address and return if it's still present. Given
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300465 * both, return the num'th driver only if its address matches. Return
466 * error code if not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
470{
471 struct mtd_info *ret = NULL;
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300472 int i, err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Ingo Molnar48b19262006-03-31 02:29:41 -0800474 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 if (num == -1) {
477 for (i=0; i< MAX_MTD_DEVICES; i++)
478 if (mtd_table[i] == mtd)
479 ret = mtd_table[i];
Roel Kluin35016dd2009-11-03 20:49:18 +0100480 } else if (num >= 0 && num < MAX_MTD_DEVICES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 ret = mtd_table[num];
482 if (mtd && mtd != ret)
483 ret = NULL;
484 }
485
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300486 if (!ret)
487 goto out_unlock;
488
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300489 if (!try_module_get(ret->owner))
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300490 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300492 if (ret->get_device) {
493 err = ret->get_device(ret);
494 if (err)
495 goto out_put;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300498 ret->usecount++;
Ingo Molnar48b19262006-03-31 02:29:41 -0800499 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return ret;
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300501
502out_put:
503 module_put(ret->owner);
504out_unlock:
505 mutex_unlock(&mtd_table_mutex);
506 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Artem Bityutskiy77993082006-10-11 14:52:44 +0300509/**
510 * get_mtd_device_nm - obtain a validated handle for an MTD device by
511 * device name
512 * @name: MTD device name to open
513 *
514 * This function returns MTD device description structure in case of
515 * success and an error code in case of failure.
516 */
517
518struct mtd_info *get_mtd_device_nm(const char *name)
519{
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300520 int i, err = -ENODEV;
521 struct mtd_info *mtd = NULL;
Artem Bityutskiy77993082006-10-11 14:52:44 +0300522
523 mutex_lock(&mtd_table_mutex);
524
525 for (i = 0; i < MAX_MTD_DEVICES; i++) {
526 if (mtd_table[i] && !strcmp(name, mtd_table[i]->name)) {
527 mtd = mtd_table[i];
528 break;
529 }
530 }
531
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300532 if (!mtd)
Artem Bityutskiy77993082006-10-11 14:52:44 +0300533 goto out_unlock;
534
535 if (!try_module_get(mtd->owner))
536 goto out_unlock;
537
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300538 if (mtd->get_device) {
539 err = mtd->get_device(mtd);
540 if (err)
541 goto out_put;
542 }
Artem Bityutskiy77993082006-10-11 14:52:44 +0300543
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300544 mtd->usecount++;
Artem Bityutskiy77993082006-10-11 14:52:44 +0300545 mutex_unlock(&mtd_table_mutex);
546 return mtd;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300547
548out_put:
549 module_put(mtd->owner);
550out_unlock:
551 mutex_unlock(&mtd_table_mutex);
552 return ERR_PTR(err);
Artem Bityutskiy77993082006-10-11 14:52:44 +0300553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555void put_mtd_device(struct mtd_info *mtd)
556{
557 int c;
558
Ingo Molnar48b19262006-03-31 02:29:41 -0800559 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 c = --mtd->usecount;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300561 if (mtd->put_device)
562 mtd->put_device(mtd);
Ingo Molnar48b19262006-03-31 02:29:41 -0800563 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 BUG_ON(c < 0);
565
566 module_put(mtd->owner);
567}
568
569/* default_mtd_writev - default mtd writev method for MTD devices that
David Woodhousedd36f262006-11-29 16:33:03 +0000570 * don't implement their own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
572
573int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
574 unsigned long count, loff_t to, size_t *retlen)
575{
576 unsigned long i;
577 size_t totlen = 0, thislen;
578 int ret = 0;
579
580 if(!mtd->write) {
581 ret = -EROFS;
582 } else {
583 for (i=0; i<count; i++) {
584 if (!vecs[i].iov_len)
585 continue;
586 ret = mtd->write(mtd, to, vecs[i].iov_len, &thislen, vecs[i].iov_base);
587 totlen += thislen;
588 if (ret || thislen != vecs[i].iov_len)
589 break;
590 to += vecs[i].iov_len;
591 }
592 }
593 if (retlen)
594 *retlen = totlen;
595 return ret;
596}
597
David Woodhousedd36f262006-11-29 16:33:03 +0000598EXPORT_SYMBOL_GPL(add_mtd_device);
599EXPORT_SYMBOL_GPL(del_mtd_device);
600EXPORT_SYMBOL_GPL(get_mtd_device);
601EXPORT_SYMBOL_GPL(get_mtd_device_nm);
602EXPORT_SYMBOL_GPL(put_mtd_device);
603EXPORT_SYMBOL_GPL(register_mtd_user);
604EXPORT_SYMBOL_GPL(unregister_mtd_user);
605EXPORT_SYMBOL_GPL(default_mtd_writev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Pavel Machek2d2dce02006-03-31 02:29:49 -0800607#ifdef CONFIG_PROC_FS
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609/*====================================================================*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610/* Support for /proc/mtd */
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612static struct proc_dir_entry *proc_mtd;
613
614static inline int mtd_proc_info (char *buf, int i)
615{
616 struct mtd_info *this = mtd_table[i];
617
618 if (!this)
619 return 0;
620
Adrian Hunter69423d92008-12-10 13:37:21 +0000621 return sprintf(buf, "mtd%d: %8.8llx %8.8x \"%s\"\n", i,
622 (unsigned long long)this->size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 this->erasesize, this->name);
624}
625
626static int mtd_read_proc (char *page, char **start, off_t off, int count,
627 int *eof, void *data_unused)
628{
629 int len, l, i;
630 off_t begin = 0;
631
Ingo Molnar48b19262006-03-31 02:29:41 -0800632 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 len = sprintf(page, "dev: size erasesize name\n");
635 for (i=0; i< MAX_MTD_DEVICES; i++) {
636
637 l = mtd_proc_info(page + len, i);
638 len += l;
639 if (len+begin > off+count)
640 goto done;
641 if (len+begin < off) {
642 begin += len;
643 len = 0;
644 }
645 }
646
647 *eof = 1;
648
649done:
Ingo Molnar48b19262006-03-31 02:29:41 -0800650 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (off >= len+begin)
652 return 0;
653 *start = page + (off-begin);
654 return ((count < begin+len-off) ? count : begin+len-off);
655}
656
Kevin Cernekee45b09072009-04-04 11:03:04 -0700657#endif /* CONFIG_PROC_FS */
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659/*====================================================================*/
660/* Init code */
661
Jens Axboe0661b1a2010-04-27 09:49:47 +0200662static int __init mtd_bdi_init(struct backing_dev_info *bdi, const char *name)
663{
664 int ret;
665
666 ret = bdi_init(bdi);
667 if (!ret)
668 ret = bdi_register(bdi, NULL, name);
669
670 if (ret)
671 bdi_destroy(bdi);
672
673 return ret;
674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676static int __init init_mtd(void)
677{
David Woodhouse15bce402009-04-05 07:40:58 -0700678 int ret;
Kevin Cernekee694bb7f2009-04-03 13:00:45 -0700679
Jens Axboe0661b1a2010-04-27 09:49:47 +0200680 ret = class_register(&mtd_class);
681 if (ret)
682 goto err_reg;
683
684 ret = mtd_bdi_init(&mtd_bdi_unmappable, "mtd-unmap");
685 if (ret)
686 goto err_bdi1;
687
688 ret = mtd_bdi_init(&mtd_bdi_ro_mappable, "mtd-romap");
689 if (ret)
690 goto err_bdi2;
691
692 ret = mtd_bdi_init(&mtd_bdi_rw_mappable, "mtd-rwmap");
693 if (ret)
694 goto err_bdi3;
695
Kevin Cernekee45b09072009-04-04 11:03:04 -0700696#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if ((proc_mtd = create_proc_entry( "mtd", 0, NULL )))
698 proc_mtd->read_proc = mtd_read_proc;
Kevin Cernekee45b09072009-04-04 11:03:04 -0700699#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return 0;
Jens Axboe0661b1a2010-04-27 09:49:47 +0200701
702err_bdi3:
703 bdi_destroy(&mtd_bdi_ro_mappable);
704err_bdi2:
705 bdi_destroy(&mtd_bdi_unmappable);
706err_bdi1:
707 class_unregister(&mtd_class);
708err_reg:
709 pr_err("Error registering mtd class or bdi: %d\n", ret);
710 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713static void __exit cleanup_mtd(void)
714{
Kevin Cernekee45b09072009-04-04 11:03:04 -0700715#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (proc_mtd)
717 remove_proc_entry( "mtd", NULL);
Kevin Cernekee45b09072009-04-04 11:03:04 -0700718#endif /* CONFIG_PROC_FS */
David Woodhouse15bce402009-04-05 07:40:58 -0700719 class_unregister(&mtd_class);
Jens Axboe0661b1a2010-04-27 09:49:47 +0200720 bdi_destroy(&mtd_bdi_unmappable);
721 bdi_destroy(&mtd_bdi_ro_mappable);
722 bdi_destroy(&mtd_bdi_rw_mappable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725module_init(init_mtd);
726module_exit(cleanup_mtd);
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728MODULE_LICENSE("GPL");
729MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
730MODULE_DESCRIPTION("Core MTD registration and access routines");