2 * Core registration and callback routines for MTD
6 * Copyright © 2006 Red Hat, Inc. All Rights Reserved.
7 * Written by David Howells (dhowells@redhat.com)
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/ptrace.h>
13 #include <linux/string.h>
14 #include <linux/timer.h>
15 #include <linux/major.h>
17 #include <linux/err.h>
18 #include <linux/ioctl.h>
19 #include <linux/init.h>
20 #include <linux/mtd/compatmac.h>
21 #include <linux/proc_fs.h>
22 #include <linux/backing-dev.h>
24 #include <linux/mtd/mtd.h>
28 * backing device capabilities for non-mappable devices (such as NAND flash)
29 * - permits private mappings, copies are taken of the data
31 struct backing_dev_info mtd_bdi_unmappable
= {
32 .capabilities
= BDI_CAP_MAP_COPY
,
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
40 struct 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
),
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
50 struct 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
|
56 static int mtd_cls_suspend(struct device
*dev
, pm_message_t state
);
57 static int mtd_cls_resume(struct device
*dev
);
59 static struct class mtd_class
= {
62 .suspend
= mtd_cls_suspend
,
63 .resume
= mtd_cls_resume
,
66 /* These are exported solely for the purpose of mtd_blkdevs.c. You
67 should not use them for _anything_ else */
68 DEFINE_MUTEX(mtd_table_mutex
);
69 struct mtd_info
*mtd_table
[MAX_MTD_DEVICES
];
71 EXPORT_SYMBOL_GPL(mtd_table_mutex
);
72 EXPORT_SYMBOL_GPL(mtd_table
);
74 static LIST_HEAD(mtd_notifiers
);
77 #if defined(CONFIG_MTD_CHAR) || defined(CONFIG_MTD_CHAR_MODULE)
78 #define MTD_DEVT(index) MKDEV(MTD_CHAR_MAJOR, (index)*2)
80 #define MTD_DEVT(index) 0
83 /* REVISIT once MTD uses the driver model better, whoever allocates
84 * the mtd_info will probably want to use the release() hook...
86 static void mtd_release(struct device
*dev
)
88 dev_t index
= MTD_DEVT(dev_to_mtd(dev
)->index
);
90 /* remove /dev/mtdXro node if needed */
92 device_destroy(&mtd_class
, index
+ 1);
95 static int mtd_cls_suspend(struct device
*dev
, pm_message_t state
)
97 struct mtd_info
*mtd
= dev_to_mtd(dev
);
99 if (mtd
&& mtd
->suspend
)
100 return mtd
->suspend(mtd
);
105 static int mtd_cls_resume(struct device
*dev
)
107 struct mtd_info
*mtd
= dev_to_mtd(dev
);
109 if (mtd
&& mtd
->resume
)
114 static ssize_t
mtd_type_show(struct device
*dev
,
115 struct device_attribute
*attr
, char *buf
)
117 struct mtd_info
*mtd
= dev_to_mtd(dev
);
146 return snprintf(buf
, PAGE_SIZE
, "%s\n", type
);
148 static DEVICE_ATTR(type
, S_IRUGO
, mtd_type_show
, NULL
);
150 static ssize_t
mtd_flags_show(struct device
*dev
,
151 struct device_attribute
*attr
, char *buf
)
153 struct mtd_info
*mtd
= dev_to_mtd(dev
);
155 return snprintf(buf
, PAGE_SIZE
, "0x%lx\n", (unsigned long)mtd
->flags
);
158 static DEVICE_ATTR(flags
, S_IRUGO
, mtd_flags_show
, NULL
);
160 static ssize_t
mtd_size_show(struct device
*dev
,
161 struct device_attribute
*attr
, char *buf
)
163 struct mtd_info
*mtd
= dev_to_mtd(dev
);
165 return snprintf(buf
, PAGE_SIZE
, "%llu\n",
166 (unsigned long long)mtd
->size
);
169 static DEVICE_ATTR(size
, S_IRUGO
, mtd_size_show
, NULL
);
171 static ssize_t
mtd_erasesize_show(struct device
*dev
,
172 struct device_attribute
*attr
, char *buf
)
174 struct mtd_info
*mtd
= dev_to_mtd(dev
);
176 return snprintf(buf
, PAGE_SIZE
, "%lu\n", (unsigned long)mtd
->erasesize
);
179 static DEVICE_ATTR(erasesize
, S_IRUGO
, mtd_erasesize_show
, NULL
);
181 static ssize_t
mtd_writesize_show(struct device
*dev
,
182 struct device_attribute
*attr
, char *buf
)
184 struct mtd_info
*mtd
= dev_to_mtd(dev
);
186 return snprintf(buf
, PAGE_SIZE
, "%lu\n", (unsigned long)mtd
->writesize
);
189 static DEVICE_ATTR(writesize
, S_IRUGO
, mtd_writesize_show
, NULL
);
191 static ssize_t
mtd_subpagesize_show(struct device
*dev
,
192 struct device_attribute
*attr
, char *buf
)
194 struct mtd_info
*mtd
= dev_to_mtd(dev
);
195 unsigned int subpagesize
= mtd
->writesize
>> mtd
->subpage_sft
;
197 return snprintf(buf
, PAGE_SIZE
, "%u\n", subpagesize
);
200 static DEVICE_ATTR(subpagesize
, S_IRUGO
, mtd_subpagesize_show
, NULL
);
202 static ssize_t
mtd_oobsize_show(struct device
*dev
,
203 struct device_attribute
*attr
, char *buf
)
205 struct mtd_info
*mtd
= dev_to_mtd(dev
);
207 return snprintf(buf
, PAGE_SIZE
, "%lu\n", (unsigned long)mtd
->oobsize
);
210 static DEVICE_ATTR(oobsize
, S_IRUGO
, mtd_oobsize_show
, NULL
);
212 static ssize_t
mtd_numeraseregions_show(struct device
*dev
,
213 struct device_attribute
*attr
, char *buf
)
215 struct mtd_info
*mtd
= dev_to_mtd(dev
);
217 return snprintf(buf
, PAGE_SIZE
, "%u\n", mtd
->numeraseregions
);
220 static DEVICE_ATTR(numeraseregions
, S_IRUGO
, mtd_numeraseregions_show
,
223 static ssize_t
mtd_name_show(struct device
*dev
,
224 struct device_attribute
*attr
, char *buf
)
226 struct mtd_info
*mtd
= dev_to_mtd(dev
);
228 return snprintf(buf
, PAGE_SIZE
, "%s\n", mtd
->name
);
231 static DEVICE_ATTR(name
, S_IRUGO
, mtd_name_show
, NULL
);
233 static struct attribute
*mtd_attrs
[] = {
235 &dev_attr_flags
.attr
,
237 &dev_attr_erasesize
.attr
,
238 &dev_attr_writesize
.attr
,
239 &dev_attr_subpagesize
.attr
,
240 &dev_attr_oobsize
.attr
,
241 &dev_attr_numeraseregions
.attr
,
246 static struct attribute_group mtd_group
= {
250 static const struct attribute_group
*mtd_groups
[] = {
255 static struct device_type mtd_devtype
= {
257 .groups
= mtd_groups
,
258 .release
= mtd_release
,
262 * add_mtd_device - register an MTD device
263 * @mtd: pointer to new MTD device info structure
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)
269 * or there's a sysfs error.
272 int add_mtd_device(struct mtd_info
*mtd
)
276 if (!mtd
->backing_dev_info
) {
279 mtd
->backing_dev_info
= &mtd_bdi_rw_mappable
;
282 mtd
->backing_dev_info
= &mtd_bdi_ro_mappable
;
285 mtd
->backing_dev_info
= &mtd_bdi_unmappable
;
290 BUG_ON(mtd
->writesize
== 0);
291 mutex_lock(&mtd_table_mutex
);
293 for (i
=0; i
< MAX_MTD_DEVICES
; i
++)
295 struct mtd_notifier
*not;
301 if (is_power_of_2(mtd
->erasesize
))
302 mtd
->erasesize_shift
= ffs(mtd
->erasesize
) - 1;
304 mtd
->erasesize_shift
= 0;
306 if (is_power_of_2(mtd
->writesize
))
307 mtd
->writesize_shift
= ffs(mtd
->writesize
) - 1;
309 mtd
->writesize_shift
= 0;
311 mtd
->erasesize_mask
= (1 << mtd
->erasesize_shift
) - 1;
312 mtd
->writesize_mask
= (1 << mtd
->writesize_shift
) - 1;
314 /* Some chips always power up locked. Unlock them now */
315 if ((mtd
->flags
& MTD_WRITEABLE
)
316 && (mtd
->flags
& MTD_POWERUP_LOCK
) && mtd
->unlock
) {
317 if (mtd
->unlock(mtd
, 0, mtd
->size
))
319 "%s: unlock failed, "
320 "writes may not work\n",
324 /* Caller should have set dev.parent to match the
327 mtd
->dev
.type
= &mtd_devtype
;
328 mtd
->dev
.class = &mtd_class
;
329 mtd
->dev
.devt
= MTD_DEVT(i
);
330 dev_set_name(&mtd
->dev
, "mtd%d", i
);
331 dev_set_drvdata(&mtd
->dev
, mtd
);
332 if (device_register(&mtd
->dev
) != 0) {
338 device_create(&mtd_class
, mtd
->dev
.parent
,
342 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 */
345 list_for_each_entry(not, &mtd_notifiers
, list
)
348 mutex_unlock(&mtd_table_mutex
);
349 /* 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
353 __module_get(THIS_MODULE
);
357 mutex_unlock(&mtd_table_mutex
);
362 * del_mtd_device - unregister an MTD device
363 * @mtd: pointer to MTD device info structure
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.
371 int del_mtd_device (struct mtd_info
*mtd
)
375 mutex_lock(&mtd_table_mutex
);
377 if (mtd_table
[mtd
->index
] != mtd
) {
379 } else if (mtd
->usecount
) {
380 printk(KERN_NOTICE
"Removing MTD device #%d (%s) with use count %d\n",
381 mtd
->index
, mtd
->name
, mtd
->usecount
);
384 struct mtd_notifier
*not;
386 device_unregister(&mtd
->dev
);
388 /* No need to get a refcount on the module containing
389 the notifier, since we hold the mtd_table_mutex */
390 list_for_each_entry(not, &mtd_notifiers
, list
)
393 mtd_table
[mtd
->index
] = NULL
;
395 module_put(THIS_MODULE
);
399 mutex_unlock(&mtd_table_mutex
);
404 * register_mtd_user - register a 'user' of MTD devices.
405 * @new: pointer to notifier info structure
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.
412 void register_mtd_user (struct mtd_notifier
*new)
416 mutex_lock(&mtd_table_mutex
);
418 list_add(&new->list
, &mtd_notifiers
);
420 __module_get(THIS_MODULE
);
422 for (i
=0; i
< MAX_MTD_DEVICES
; i
++)
424 new->add(mtd_table
[i
]);
426 mutex_unlock(&mtd_table_mutex
);
430 * unregister_mtd_user - unregister a 'user' of MTD devices.
431 * @old: pointer to notifier info structure
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.
439 int unregister_mtd_user (struct mtd_notifier
*old
)
443 mutex_lock(&mtd_table_mutex
);
445 module_put(THIS_MODULE
);
447 for (i
=0; i
< MAX_MTD_DEVICES
; i
++)
449 old
->remove(mtd_table
[i
]);
451 list_del(&old
->list
);
452 mutex_unlock(&mtd_table_mutex
);
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
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
465 * both, return the num'th driver only if its address matches. Return
469 struct mtd_info
*get_mtd_device(struct mtd_info
*mtd
, int num
)
471 struct mtd_info
*ret
= NULL
;
472 int i
, err
= -ENODEV
;
474 mutex_lock(&mtd_table_mutex
);
477 for (i
=0; i
< MAX_MTD_DEVICES
; i
++)
478 if (mtd_table
[i
] == mtd
)
480 } else if (num
>= 0 && num
< MAX_MTD_DEVICES
) {
481 ret
= mtd_table
[num
];
482 if (mtd
&& mtd
!= ret
)
489 if (!try_module_get(ret
->owner
))
492 if (ret
->get_device
) {
493 err
= ret
->get_device(ret
);
499 mutex_unlock(&mtd_table_mutex
);
503 module_put(ret
->owner
);
505 mutex_unlock(&mtd_table_mutex
);
510 * get_mtd_device_nm - obtain a validated handle for an MTD device by
512 * @name: MTD device name to open
514 * This function returns MTD device description structure in case of
515 * success and an error code in case of failure.
518 struct mtd_info
*get_mtd_device_nm(const char *name
)
520 int i
, err
= -ENODEV
;
521 struct mtd_info
*mtd
= NULL
;
523 mutex_lock(&mtd_table_mutex
);
525 for (i
= 0; i
< MAX_MTD_DEVICES
; i
++) {
526 if (mtd_table
[i
] && !strcmp(name
, mtd_table
[i
]->name
)) {
535 if (!try_module_get(mtd
->owner
))
538 if (mtd
->get_device
) {
539 err
= mtd
->get_device(mtd
);
545 mutex_unlock(&mtd_table_mutex
);
549 module_put(mtd
->owner
);
551 mutex_unlock(&mtd_table_mutex
);
555 void put_mtd_device(struct mtd_info
*mtd
)
559 mutex_lock(&mtd_table_mutex
);
562 mtd
->put_device(mtd
);
563 mutex_unlock(&mtd_table_mutex
);
566 module_put(mtd
->owner
);
569 /* default_mtd_writev - default mtd writev method for MTD devices that
570 * don't implement their own
573 int default_mtd_writev(struct mtd_info
*mtd
, const struct kvec
*vecs
,
574 unsigned long count
, loff_t to
, size_t *retlen
)
577 size_t totlen
= 0, thislen
;
583 for (i
=0; i
<count
; i
++) {
584 if (!vecs
[i
].iov_len
)
586 ret
= mtd
->write(mtd
, to
, vecs
[i
].iov_len
, &thislen
, vecs
[i
].iov_base
);
588 if (ret
|| thislen
!= vecs
[i
].iov_len
)
590 to
+= vecs
[i
].iov_len
;
598 EXPORT_SYMBOL_GPL(add_mtd_device
);
599 EXPORT_SYMBOL_GPL(del_mtd_device
);
600 EXPORT_SYMBOL_GPL(get_mtd_device
);
601 EXPORT_SYMBOL_GPL(get_mtd_device_nm
);
602 EXPORT_SYMBOL_GPL(put_mtd_device
);
603 EXPORT_SYMBOL_GPL(register_mtd_user
);
604 EXPORT_SYMBOL_GPL(unregister_mtd_user
);
605 EXPORT_SYMBOL_GPL(default_mtd_writev
);
607 #ifdef CONFIG_PROC_FS
609 /*====================================================================*/
610 /* Support for /proc/mtd */
612 static struct proc_dir_entry
*proc_mtd
;
614 static inline int mtd_proc_info (char *buf
, int i
)
616 struct mtd_info
*this = mtd_table
[i
];
621 return sprintf(buf
, "mtd%d: %8.8llx %8.8x \"%s\"\n", i
,
622 (unsigned long long)this->size
,
623 this->erasesize
, this->name
);
626 static int mtd_read_proc (char *page
, char **start
, off_t off
, int count
,
627 int *eof
, void *data_unused
)
632 mutex_lock(&mtd_table_mutex
);
634 len
= sprintf(page
, "dev: size erasesize name\n");
635 for (i
=0; i
< MAX_MTD_DEVICES
; i
++) {
637 l
= mtd_proc_info(page
+ len
, i
);
639 if (len
+begin
> off
+count
)
641 if (len
+begin
< off
) {
650 mutex_unlock(&mtd_table_mutex
);
651 if (off
>= len
+begin
)
653 *start
= page
+ (off
-begin
);
654 return ((count
< begin
+len
-off
) ? count
: begin
+len
-off
);
657 #endif /* CONFIG_PROC_FS */
659 /*====================================================================*/
662 static int __init
mtd_bdi_init(struct backing_dev_info
*bdi
, const char *name
)
668 ret
= bdi_register(bdi
, NULL
, name
);
676 static int __init
init_mtd(void)
680 ret
= class_register(&mtd_class
);
684 ret
= mtd_bdi_init(&mtd_bdi_unmappable
, "mtd-unmap");
688 ret
= mtd_bdi_init(&mtd_bdi_ro_mappable
, "mtd-romap");
692 ret
= mtd_bdi_init(&mtd_bdi_rw_mappable
, "mtd-rwmap");
696 #ifdef CONFIG_PROC_FS
697 if ((proc_mtd
= create_proc_entry( "mtd", 0, NULL
)))
698 proc_mtd
->read_proc
= mtd_read_proc
;
699 #endif /* CONFIG_PROC_FS */
703 bdi_destroy(&mtd_bdi_ro_mappable
);
705 bdi_destroy(&mtd_bdi_unmappable
);
707 class_unregister(&mtd_class
);
709 pr_err("Error registering mtd class or bdi: %d\n", ret
);
713 static void __exit
cleanup_mtd(void)
715 #ifdef CONFIG_PROC_FS
717 remove_proc_entry( "mtd", NULL
);
718 #endif /* CONFIG_PROC_FS */
719 class_unregister(&mtd_class
);
720 bdi_destroy(&mtd_bdi_unmappable
);
721 bdi_destroy(&mtd_bdi_ro_mappable
);
722 bdi_destroy(&mtd_bdi_rw_mappable
);
725 module_init(init_mtd
);
726 module_exit(cleanup_mtd
);
728 MODULE_LICENSE("GPL");
729 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
730 MODULE_DESCRIPTION("Core MTD registration and access routines");