blob: a9d246949820a9b0b61aef86061ddf341be21f92 [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 */
Chris Malley71a928c2008-05-19 20:11:50 +010073 list_for_each_entry(not, &mtd_notifiers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 not->add(mtd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +000075
Ingo Molnar48b19262006-03-31 02:29:41 -080076 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 /* We _know_ we aren't being removed, because
78 our caller is still holding us here. So none
79 of this try_ nonsense, and no bitching about it
80 either. :) */
81 __module_get(THIS_MODULE);
82 return 0;
83 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +000084
Ingo Molnar48b19262006-03-31 02:29:41 -080085 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return 1;
87}
88
89/**
90 * del_mtd_device - unregister an MTD device
91 * @mtd: pointer to MTD device info structure
92 *
93 * Remove a device from the list of MTD devices present in the system,
94 * and notify each currently active MTD 'user' of its departure.
95 * Returns zero on success or 1 on failure, which currently will happen
96 * if the requested device does not appear to be present in the list.
97 */
98
99int del_mtd_device (struct mtd_info *mtd)
100{
101 int ret;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000102
Ingo Molnar48b19262006-03-31 02:29:41 -0800103 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 if (mtd_table[mtd->index] != mtd) {
106 ret = -ENODEV;
107 } else if (mtd->usecount) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000108 printk(KERN_NOTICE "Removing MTD device #%d (%s) with use count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 mtd->index, mtd->name, mtd->usecount);
110 ret = -EBUSY;
111 } else {
matthias@kaehlcke.net856613c2008-05-31 15:28:10 +0200112 struct mtd_notifier *not;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 /* No need to get a refcount on the module containing
115 the notifier, since we hold the mtd_table_mutex */
Chris Malley71a928c2008-05-19 20:11:50 +0100116 list_for_each_entry(not, &mtd_notifiers, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 not->remove(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 mtd_table[mtd->index] = NULL;
120
121 module_put(THIS_MODULE);
122 ret = 0;
123 }
124
Ingo Molnar48b19262006-03-31 02:29:41 -0800125 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return ret;
127}
128
129/**
130 * register_mtd_user - register a 'user' of MTD devices.
131 * @new: pointer to notifier info structure
132 *
133 * Registers a pair of callbacks function to be called upon addition
134 * or removal of MTD devices. Causes the 'add' callback to be immediately
135 * invoked for each MTD device currently present in the system.
136 */
137
138void register_mtd_user (struct mtd_notifier *new)
139{
140 int i;
141
Ingo Molnar48b19262006-03-31 02:29:41 -0800142 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 list_add(&new->list, &mtd_notifiers);
145
146 __module_get(THIS_MODULE);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 for (i=0; i< MAX_MTD_DEVICES; i++)
149 if (mtd_table[i])
150 new->add(mtd_table[i]);
151
Ingo Molnar48b19262006-03-31 02:29:41 -0800152 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155/**
Artem B. Bityuckiy49450792005-02-18 14:34:54 +0000156 * unregister_mtd_user - unregister a 'user' of MTD devices.
157 * @old: pointer to notifier info structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 *
159 * Removes a callback function pair from the list of 'users' to be
160 * notified upon addition or removal of MTD devices. Causes the
161 * 'remove' callback to be immediately invoked for each MTD device
162 * currently present in the system.
163 */
164
165int unregister_mtd_user (struct mtd_notifier *old)
166{
167 int i;
168
Ingo Molnar48b19262006-03-31 02:29:41 -0800169 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 module_put(THIS_MODULE);
172
173 for (i=0; i< MAX_MTD_DEVICES; i++)
174 if (mtd_table[i])
175 old->remove(mtd_table[i]);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 list_del(&old->list);
Ingo Molnar48b19262006-03-31 02:29:41 -0800178 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return 0;
180}
181
182
183/**
184 * get_mtd_device - obtain a validated handle for an MTD device
185 * @mtd: last known address of the required MTD device
186 * @num: internal device number of the required MTD device
187 *
188 * Given a number and NULL address, return the num'th entry in the device
189 * table, if any. Given an address and num == -1, search the device table
190 * for a device with that address and return if it's still present. Given
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300191 * both, return the num'th driver only if its address matches. Return
192 * error code if not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
196{
197 struct mtd_info *ret = NULL;
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300198 int i, err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Ingo Molnar48b19262006-03-31 02:29:41 -0800200 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 if (num == -1) {
203 for (i=0; i< MAX_MTD_DEVICES; i++)
204 if (mtd_table[i] == mtd)
205 ret = mtd_table[i];
206 } else if (num < MAX_MTD_DEVICES) {
207 ret = mtd_table[num];
208 if (mtd && mtd != ret)
209 ret = NULL;
210 }
211
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300212 if (!ret)
213 goto out_unlock;
214
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300215 if (!try_module_get(ret->owner))
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300216 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300218 if (ret->get_device) {
219 err = ret->get_device(ret);
220 if (err)
221 goto out_put;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300224 ret->usecount++;
Ingo Molnar48b19262006-03-31 02:29:41 -0800225 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return ret;
Artem Bityutskiy9c740342006-10-11 14:52:47 +0300227
228out_put:
229 module_put(ret->owner);
230out_unlock:
231 mutex_unlock(&mtd_table_mutex);
232 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Artem Bityutskiy77993082006-10-11 14:52:44 +0300235/**
236 * get_mtd_device_nm - obtain a validated handle for an MTD device by
237 * device name
238 * @name: MTD device name to open
239 *
240 * This function returns MTD device description structure in case of
241 * success and an error code in case of failure.
242 */
243
244struct mtd_info *get_mtd_device_nm(const char *name)
245{
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300246 int i, err = -ENODEV;
247 struct mtd_info *mtd = NULL;
Artem Bityutskiy77993082006-10-11 14:52:44 +0300248
249 mutex_lock(&mtd_table_mutex);
250
251 for (i = 0; i < MAX_MTD_DEVICES; i++) {
252 if (mtd_table[i] && !strcmp(name, mtd_table[i]->name)) {
253 mtd = mtd_table[i];
254 break;
255 }
256 }
257
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300258 if (!mtd)
Artem Bityutskiy77993082006-10-11 14:52:44 +0300259 goto out_unlock;
260
261 if (!try_module_get(mtd->owner))
262 goto out_unlock;
263
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300264 if (mtd->get_device) {
265 err = mtd->get_device(mtd);
266 if (err)
267 goto out_put;
268 }
Artem Bityutskiy77993082006-10-11 14:52:44 +0300269
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300270 mtd->usecount++;
Artem Bityutskiy77993082006-10-11 14:52:44 +0300271 mutex_unlock(&mtd_table_mutex);
272 return mtd;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300273
274out_put:
275 module_put(mtd->owner);
276out_unlock:
277 mutex_unlock(&mtd_table_mutex);
278 return ERR_PTR(err);
Artem Bityutskiy77993082006-10-11 14:52:44 +0300279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281void put_mtd_device(struct mtd_info *mtd)
282{
283 int c;
284
Ingo Molnar48b19262006-03-31 02:29:41 -0800285 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 c = --mtd->usecount;
Artem Bityutskiy9fe912c2006-10-11 14:52:45 +0300287 if (mtd->put_device)
288 mtd->put_device(mtd);
Ingo Molnar48b19262006-03-31 02:29:41 -0800289 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 BUG_ON(c < 0);
291
292 module_put(mtd->owner);
293}
294
295/* default_mtd_writev - default mtd writev method for MTD devices that
David Woodhousedd36f262006-11-29 16:33:03 +0000296 * don't implement their own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
298
299int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
300 unsigned long count, loff_t to, size_t *retlen)
301{
302 unsigned long i;
303 size_t totlen = 0, thislen;
304 int ret = 0;
305
306 if(!mtd->write) {
307 ret = -EROFS;
308 } else {
309 for (i=0; i<count; i++) {
310 if (!vecs[i].iov_len)
311 continue;
312 ret = mtd->write(mtd, to, vecs[i].iov_len, &thislen, vecs[i].iov_base);
313 totlen += thislen;
314 if (ret || thislen != vecs[i].iov_len)
315 break;
316 to += vecs[i].iov_len;
317 }
318 }
319 if (retlen)
320 *retlen = totlen;
321 return ret;
322}
323
David Woodhousedd36f262006-11-29 16:33:03 +0000324EXPORT_SYMBOL_GPL(add_mtd_device);
325EXPORT_SYMBOL_GPL(del_mtd_device);
326EXPORT_SYMBOL_GPL(get_mtd_device);
327EXPORT_SYMBOL_GPL(get_mtd_device_nm);
328EXPORT_SYMBOL_GPL(put_mtd_device);
329EXPORT_SYMBOL_GPL(register_mtd_user);
330EXPORT_SYMBOL_GPL(unregister_mtd_user);
331EXPORT_SYMBOL_GPL(default_mtd_writev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Pavel Machek2d2dce02006-03-31 02:29:49 -0800333#ifdef CONFIG_PROC_FS
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*====================================================================*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/* Support for /proc/mtd */
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static struct proc_dir_entry *proc_mtd;
339
340static inline int mtd_proc_info (char *buf, int i)
341{
342 struct mtd_info *this = mtd_table[i];
343
344 if (!this)
345 return 0;
346
347 return sprintf(buf, "mtd%d: %8.8x %8.8x \"%s\"\n", i, this->size,
348 this->erasesize, this->name);
349}
350
351static int mtd_read_proc (char *page, char **start, off_t off, int count,
352 int *eof, void *data_unused)
353{
354 int len, l, i;
355 off_t begin = 0;
356
Ingo Molnar48b19262006-03-31 02:29:41 -0800357 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 len = sprintf(page, "dev: size erasesize name\n");
360 for (i=0; i< MAX_MTD_DEVICES; i++) {
361
362 l = mtd_proc_info(page + len, i);
363 len += l;
364 if (len+begin > off+count)
365 goto done;
366 if (len+begin < off) {
367 begin += len;
368 len = 0;
369 }
370 }
371
372 *eof = 1;
373
374done:
Ingo Molnar48b19262006-03-31 02:29:41 -0800375 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (off >= len+begin)
377 return 0;
378 *start = page + (off-begin);
379 return ((count < begin+len-off) ? count : begin+len-off);
380}
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382/*====================================================================*/
383/* Init code */
384
385static int __init init_mtd(void)
386{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if ((proc_mtd = create_proc_entry( "mtd", 0, NULL )))
388 proc_mtd->read_proc = mtd_read_proc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 0;
390}
391
392static void __exit cleanup_mtd(void)
393{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (proc_mtd)
395 remove_proc_entry( "mtd", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398module_init(init_mtd);
399module_exit(cleanup_mtd);
400
Pavel Machek2d2dce02006-03-31 02:29:49 -0800401#endif /* CONFIG_PROC_FS */
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404MODULE_LICENSE("GPL");
405MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
406MODULE_DESCRIPTION("Core MTD registration and access routines");