blob: 4373790401d3931ac75d456fb908ba59a6cc8ad6 [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 *
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
8#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/ptrace.h>
10#include <linux/slab.h>
11#include <linux/string.h>
12#include <linux/timer.h>
13#include <linux/major.h>
14#include <linux/fs.h>
Artem Bityutskiy77993082006-10-11 14:52:44 +030015#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ioctl.h>
17#include <linux/init.h>
18#include <linux/mtd/compatmac.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <linux/mtd/mtd.h>
22
Ben Dooks356d70f2007-05-28 20:28:34 +010023#include "mtdcore.h"
24
Thomas Gleixner97894cd2005-11-07 11:15:26 +000025/* These are exported solely for the purpose of mtd_blkdevs.c. You
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 should not use them for _anything_ else */
Ingo Molnar48b19262006-03-31 02:29:41 -080027DEFINE_MUTEX(mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028struct mtd_info *mtd_table[MAX_MTD_DEVICES];
29
30EXPORT_SYMBOL_GPL(mtd_table_mutex);
31EXPORT_SYMBOL_GPL(mtd_table);
32
33static LIST_HEAD(mtd_notifiers);
34
35/**
36 * add_mtd_device - register an MTD device
37 * @mtd: pointer to new MTD device info structure
38 *
39 * Add a device to the list of MTD devices present in the system, and
40 * notify each currently active MTD 'user' of its arrival. Returns
41 * zero on success or 1 on failure, which currently will only happen
42 * if the number of present devices exceeds MAX_MTD_DEVICES (i.e. 16)
43 */
44
45int add_mtd_device(struct mtd_info *mtd)
46{
47 int i;
48
Artem B. Bityutskiy783ed812006-06-14 19:53:44 +040049 BUG_ON(mtd->writesize == 0);
Ingo Molnar48b19262006-03-31 02:29:41 -080050 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 for (i=0; i < MAX_MTD_DEVICES; i++)
53 if (!mtd_table[i]) {
matthias@kaehlcke.net2606c792008-05-31 15:28:09 +020054 struct mtd_notifier *not;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 mtd_table[i] = mtd;
57 mtd->index = i;
58 mtd->usecount = 0;
59
Håvard Skinnemoen187ef152006-09-22 10:07:08 +010060 /* Some chips always power up locked. Unlock them now */
61 if ((mtd->flags & MTD_WRITEABLE)
Justin Treone619a752008-01-30 10:25:49 -080062 && (mtd->flags & MTD_POWERUP_LOCK) && mtd->unlock) {
Håvard Skinnemoen187ef152006-09-22 10:07:08 +010063 if (mtd->unlock(mtd, 0, mtd->size))
64 printk(KERN_WARNING
65 "%s: unlock failed, "
66 "writes may not work\n",
67 mtd->name);
68 }
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 DEBUG(0, "mtd: Giving out device %d to %s\n",i, mtd->name);
71 /* No need to get a refcount on the module containing
72 the notifier, since we hold the mtd_table_mutex */
matthias@kaehlcke.net2606c792008-05-31 15:28:09 +020073 list_for_each_entry(not, &mtd_notifiers, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 not->add(mtd);
75 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +000076
Ingo Molnar48b19262006-03-31 02:29:41 -080077 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 /* We _know_ we aren't being removed, because
79 our caller is still holding us here. So none
80 of this try_ nonsense, and no bitching about it
81 either. :) */
82 __module_get(THIS_MODULE);
83 return 0;
84 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +000085
Ingo Molnar48b19262006-03-31 02:29:41 -080086 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return 1;
88}
89
90/**
91 * del_mtd_device - unregister an MTD device
92 * @mtd: pointer to MTD device info structure
93 *
94 * Remove a device from the list of MTD devices present in the system,
95 * and notify each currently active MTD 'user' of its departure.
96 * Returns zero on success or 1 on failure, which currently will happen
97 * if the requested device does not appear to be present in the list.
98 */
99
100int del_mtd_device (struct mtd_info *mtd)
101{
102 int ret;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000103
Ingo Molnar48b19262006-03-31 02:29:41 -0800104 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 if (mtd_table[mtd->index] != mtd) {
107 ret = -ENODEV;
108 } else if (mtd->usecount) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000109 printk(KERN_NOTICE "Removing MTD device #%d (%s) with use count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 mtd->index, mtd->name, mtd->usecount);
111 ret = -EBUSY;
112 } else {
matthias@kaehlcke.net856613c2008-05-31 15:28:10 +0200113 struct mtd_notifier *not;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /* No need to get a refcount on the module containing
116 the notifier, since we hold the mtd_table_mutex */
matthias@kaehlcke.net856613c2008-05-31 15:28:10 +0200117 list_for_each_entry(not, &mtd_notifiers, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 not->remove(mtd);
119 }
120
121 mtd_table[mtd->index] = NULL;
122
123 module_put(THIS_MODULE);
124 ret = 0;
125 }
126
Ingo Molnar48b19262006-03-31 02:29:41 -0800127 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return ret;
129}
130
131/**
132 * register_mtd_user - register a 'user' of MTD devices.
133 * @new: pointer to notifier info structure
134 *
135 * Registers a pair of callbacks function to be called upon addition
136 * or removal of MTD devices. Causes the 'add' callback to be immediately
137 * invoked for each MTD device currently present in the system.
138 */
139
140void register_mtd_user (struct mtd_notifier *new)
141{
142 int i;
143
Ingo Molnar48b19262006-03-31 02:29:41 -0800144 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 list_add(&new->list, &mtd_notifiers);
147
148 __module_get(THIS_MODULE);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 for (i=0; i< MAX_MTD_DEVICES; i++)
151 if (mtd_table[i])
152 new->add(mtd_table[i]);
153
Ingo Molnar48b19262006-03-31 02:29:41 -0800154 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157/**
Artem B. Bityuckiy49450792005-02-18 14:34:54 +0000158 * unregister_mtd_user - unregister a 'user' of MTD devices.
159 * @old: pointer to notifier info structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 *
161 * Removes a callback function pair from the list of 'users' to be
162 * notified upon addition or removal of MTD devices. Causes the
163 * 'remove' callback to be immediately invoked for each MTD device
164 * currently present in the system.
165 */
166
167int unregister_mtd_user (struct mtd_notifier *old)
168{
169 int i;
170
Ingo Molnar48b19262006-03-31 02:29:41 -0800171 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 module_put(THIS_MODULE);
174
175 for (i=0; i< MAX_MTD_DEVICES; i++)
176 if (mtd_table[i])
177 old->remove(mtd_table[i]);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 list_del(&old->list);
Ingo Molnar48b19262006-03-31 02:29:41 -0800180 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return 0;
182}
183
184
185/**
186 * get_mtd_device - obtain a validated handle for an MTD device
187 * @mtd: last known address of the required MTD device
188 * @num: internal device number of the required MTD device
189 *
190 * Given a number and NULL address, return the num'th entry in the device
191 * table, if any. Given an address and num == -1, search the device table
192 * for a device with that address and return if it's still present. Given
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300193 * both, return the num'th driver only if its address matches. Return
194 * error code if not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
198{
199 struct mtd_info *ret = NULL;
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300200 int i, err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Ingo Molnar48b19262006-03-31 02:29:41 -0800202 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 if (num == -1) {
205 for (i=0; i< MAX_MTD_DEVICES; i++)
206 if (mtd_table[i] == mtd)
207 ret = mtd_table[i];
208 } else if (num < MAX_MTD_DEVICES) {
209 ret = mtd_table[num];
210 if (mtd && mtd != ret)
211 ret = NULL;
212 }
213
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300214 if (!ret)
215 goto out_unlock;
216
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300217 if (!try_module_get(ret->owner))
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300218 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300220 if (ret->get_device) {
221 err = ret->get_device(ret);
222 if (err)
223 goto out_put;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300226 ret->usecount++;
Ingo Molnar48b19262006-03-31 02:29:41 -0800227 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return ret;
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300229
230out_put:
231 module_put(ret->owner);
232out_unlock:
233 mutex_unlock(&mtd_table_mutex);
234 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Artem Bityutskiy77993082006-10-11 14:52:44 +0300237/**
238 * get_mtd_device_nm - obtain a validated handle for an MTD device by
239 * device name
240 * @name: MTD device name to open
241 *
242 * This function returns MTD device description structure in case of
243 * success and an error code in case of failure.
244 */
245
246struct mtd_info *get_mtd_device_nm(const char *name)
247{
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300248 int i, err = -ENODEV;
249 struct mtd_info *mtd = NULL;
Artem Bityutskiy77993082006-10-11 14:52:44 +0300250
251 mutex_lock(&mtd_table_mutex);
252
253 for (i = 0; i < MAX_MTD_DEVICES; i++) {
254 if (mtd_table[i] && !strcmp(name, mtd_table[i]->name)) {
255 mtd = mtd_table[i];
256 break;
257 }
258 }
259
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300260 if (!mtd)
Artem Bityutskiy77993082006-10-11 14:52:44 +0300261 goto out_unlock;
262
263 if (!try_module_get(mtd->owner))
264 goto out_unlock;
265
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300266 if (mtd->get_device) {
267 err = mtd->get_device(mtd);
268 if (err)
269 goto out_put;
270 }
Artem Bityutskiy77993082006-10-11 14:52:44 +0300271
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300272 mtd->usecount++;
Artem Bityutskiy77993082006-10-11 14:52:44 +0300273 mutex_unlock(&mtd_table_mutex);
274 return mtd;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300275
276out_put:
277 module_put(mtd->owner);
278out_unlock:
279 mutex_unlock(&mtd_table_mutex);
280 return ERR_PTR(err);
Artem Bityutskiy77993082006-10-11 14:52:44 +0300281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283void put_mtd_device(struct mtd_info *mtd)
284{
285 int c;
286
Ingo Molnar48b19262006-03-31 02:29:41 -0800287 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 c = --mtd->usecount;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300289 if (mtd->put_device)
290 mtd->put_device(mtd);
Ingo Molnar48b19262006-03-31 02:29:41 -0800291 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 BUG_ON(c < 0);
293
294 module_put(mtd->owner);
295}
296
297/* default_mtd_writev - default mtd writev method for MTD devices that
David Woodhousedd36f262006-11-29 16:33:03 +0000298 * don't implement their own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 */
300
301int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
302 unsigned long count, loff_t to, size_t *retlen)
303{
304 unsigned long i;
305 size_t totlen = 0, thislen;
306 int ret = 0;
307
308 if(!mtd->write) {
309 ret = -EROFS;
310 } else {
311 for (i=0; i<count; i++) {
312 if (!vecs[i].iov_len)
313 continue;
314 ret = mtd->write(mtd, to, vecs[i].iov_len, &thislen, vecs[i].iov_base);
315 totlen += thislen;
316 if (ret || thislen != vecs[i].iov_len)
317 break;
318 to += vecs[i].iov_len;
319 }
320 }
321 if (retlen)
322 *retlen = totlen;
323 return ret;
324}
325
David Woodhousedd36f262006-11-29 16:33:03 +0000326EXPORT_SYMBOL_GPL(add_mtd_device);
327EXPORT_SYMBOL_GPL(del_mtd_device);
328EXPORT_SYMBOL_GPL(get_mtd_device);
329EXPORT_SYMBOL_GPL(get_mtd_device_nm);
330EXPORT_SYMBOL_GPL(put_mtd_device);
331EXPORT_SYMBOL_GPL(register_mtd_user);
332EXPORT_SYMBOL_GPL(unregister_mtd_user);
333EXPORT_SYMBOL_GPL(default_mtd_writev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Pavel Machek2d2dce02006-03-31 02:29:49 -0800335#ifdef CONFIG_PROC_FS
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337/*====================================================================*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338/* Support for /proc/mtd */
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static struct proc_dir_entry *proc_mtd;
341
342static inline int mtd_proc_info (char *buf, int i)
343{
344 struct mtd_info *this = mtd_table[i];
345
346 if (!this)
347 return 0;
348
349 return sprintf(buf, "mtd%d: %8.8x %8.8x \"%s\"\n", i, this->size,
350 this->erasesize, this->name);
351}
352
353static int mtd_read_proc (char *page, char **start, off_t off, int count,
354 int *eof, void *data_unused)
355{
356 int len, l, i;
357 off_t begin = 0;
358
Ingo Molnar48b19262006-03-31 02:29:41 -0800359 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 len = sprintf(page, "dev: size erasesize name\n");
362 for (i=0; i< MAX_MTD_DEVICES; i++) {
363
364 l = mtd_proc_info(page + len, i);
365 len += l;
366 if (len+begin > off+count)
367 goto done;
368 if (len+begin < off) {
369 begin += len;
370 len = 0;
371 }
372 }
373
374 *eof = 1;
375
376done:
Ingo Molnar48b19262006-03-31 02:29:41 -0800377 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (off >= len+begin)
379 return 0;
380 *start = page + (off-begin);
381 return ((count < begin+len-off) ? count : begin+len-off);
382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*====================================================================*/
385/* Init code */
386
387static int __init init_mtd(void)
388{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if ((proc_mtd = create_proc_entry( "mtd", 0, NULL )))
390 proc_mtd->read_proc = mtd_read_proc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392}
393
394static void __exit cleanup_mtd(void)
395{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (proc_mtd)
397 remove_proc_entry( "mtd", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400module_init(init_mtd);
401module_exit(cleanup_mtd);
402
Pavel Machek2d2dce02006-03-31 02:29:49 -0800403#endif /* CONFIG_PROC_FS */
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406MODULE_LICENSE("GPL");
407MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
408MODULE_DESCRIPTION("Core MTD registration and access routines");