UBI: small debugging code optimization
[pandora-kernel.git] / drivers / mtd / ubi / build.c
1 /*
2  * Copyright (c) International Business Machines Corp., 2006
3  * Copyright (c) Nokia Corporation, 2007
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13  * the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Author: Artem Bityutskiy (Битюцкий Артём),
20  *         Frank Haverkamp
21  */
22
23 /*
24  * This file includes UBI initialization and building of UBI devices.
25  *
26  * When UBI is initialized, it attaches all the MTD devices specified as the
27  * module load parameters or the kernel boot parameters. If MTD devices were
28  * specified, UBI does not attach any MTD device, but it is possible to do
29  * later using the "UBI control device".
30  *
31  * At the moment we only attach UBI devices by scanning, which will become a
32  * bottleneck when flashes reach certain large size. Then one may improve UBI
33  * and add other methods, although it does not seem to be easy to do.
34  */
35
36 #include <linux/err.h>
37 #include <linux/module.h>
38 #include <linux/moduleparam.h>
39 #include <linux/stringify.h>
40 #include <linux/stat.h>
41 #include <linux/miscdevice.h>
42 #include <linux/log2.h>
43 #include <linux/kthread.h>
44 #include "ubi.h"
45
46 #if 0
47         #define gprintk(fmt, x... ) printk( "%s: " fmt, __FUNCTION__ , ## x)
48 #else
49         #define gprintk(x...) do { } while (0)
50 #endif
51
52
53 /* Maximum length of the 'mtd=' parameter */
54 #define MTD_PARAM_LEN_MAX 64
55
56
57 /* add by Nancy begin */
58
59 /* These are exported solely for the purpose of mtd_blkdevs.c. You
60    should not use them for _anything_ else */
61 DEFINE_MUTEX(vol_table_mutex);
62 struct ubi_volume *vol_table[UBI_MAX_VOLUMES];
63
64 EXPORT_SYMBOL_GPL(vol_table_mutex);
65 EXPORT_SYMBOL_GPL(vol_table);
66
67 static LIST_HEAD(vol_notifiers);
68
69 /**
70  *      add_mtd_device - register an MTD device
71  *      @mtd: pointer to new MTD device info structure
72  *
73  *      Add a device to the list of MTD devices present in the system, and
74  *      notify each currently active MTD 'user' of its arrival. Returns
75  *      zero on success or 1 on failure, which currently will only happen
76  *      if the number of present devices exceeds MAX_MTD_DEVICES (i.e. 16)
77  */
78
79 int add_vol_device(struct ubi_volume *vol)
80 {
81         int i;
82
83 gprintk("1 vol->vol_id = %d, vol->ubi->ubi_num = %d\n", vol->vol_id, vol->ubi->ubi_num);
84
85         if( vol->ubi->ubi_num != 1 )
86                 return 0; // just return
87
88         mutex_lock(&vol_table_mutex);
89         if( !vol_table[vol->vol_id] )  // vol->vol_id°¡ 0ÀΠ³à¼®ÀÌ NULLÀΠ°æ¿ì
90         {
91                 struct list_head *this;
92
93                 vol_table[vol->vol_id] = vol;
94                 gprintk("val_table add\n");                     
95
96                 /* No need to get a refcount on the module containing
97                    the notifier, since we hold the mtd_table_mutex */
98                 list_for_each(this, &vol_notifiers) {
99                         struct vol_notifier *not = list_entry(this, struct vol_notifier, list);
100                         not->add(vol);
101                 }
102
103                 mutex_unlock(&vol_table_mutex);
104                 /* We _know_ we aren't being removed, because
105                    our caller is still holding us here. So none
106                    of this try_ nonsense, and no bitching about it
107                    either. :) */
108                 __module_get(THIS_MODULE);
109                 return 0;
110         }
111         mutex_unlock(&vol_table_mutex);
112         return 1;
113 }
114
115 /**
116  *      del_mtd_device - unregister an MTD device
117  *      @mtd: pointer to MTD device info structure
118  *
119  *      Remove a device from the list of MTD devices present in the system,
120  *      and notify each currently active MTD 'user' of its departure.
121  *      Returns zero on success or 1 on failure, which currently will happen
122  *      if the requested device does not appear to be present in the list.
123  */
124
125 int del_vol_device (struct ubi_volume *vol)
126 {
127         int ret;
128
129         mutex_lock(&vol_table_mutex);
130         if (vol_table[vol->vol_id] != vol) {
131                 ret = -ENODEV;
132         } else if (vol->readers ||vol->writers || vol->exclusive) {
133                 printk(KERN_NOTICE "Removing MTD device #%d (%s) with use count 0\n",
134                        vol->vol_id, vol->name);
135                 ret = -EBUSY;
136         } else {
137                 struct list_head *this;
138
139                 /* No need to get a refcount on the module containing
140                    the notifier, since we hold the mtd_table_mutex */
141                 list_for_each(this, &vol_notifiers) {
142                         struct vol_notifier *not = list_entry(this, struct vol_notifier, list);
143                         not->remove(vol);
144                 }
145
146                 vol_table[vol->vol_id] = NULL;
147
148                 module_put(THIS_MODULE);
149                 ret = 0;
150         }
151         mutex_unlock(&vol_table_mutex);
152         return ret;
153 }
154
155 /**
156  *      register_mtd_user - register a 'user' of MTD devices.
157  *      @new: pointer to notifier info structure
158  *
159  *      Registers a pair of callbacks function to be called upon addition
160  *      or removal of MTD devices. Causes the 'add' callback to be immediately
161  *      invoked for each MTD device currently present in the system.
162  */
163
164 void register_vol_user(struct vol_notifier *new)
165 {
166         int i;
167 gprintk("1\n");
168         mutex_lock(&vol_table_mutex);
169
170         list_add(&new->list, &vol_notifiers);
171
172         __module_get(THIS_MODULE);
173
174         for (i=0; i< UBI_MAX_VOLUMES;  i++)
175                 if (vol_table[i])
176                         new->add(vol_table[i]);
177
178         mutex_unlock(&vol_table_mutex);
179 }
180
181 /**
182  *      unregister_mtd_user - unregister a 'user' of MTD devices.
183  *      @old: pointer to notifier info structure
184  *
185  *      Removes a callback function pair from the list of 'users' to be
186  *      notified upon addition or removal of MTD devices. Causes the
187  *      'remove' callback to be immediately invoked for each MTD device
188  *      currently present in the system.
189  */
190
191 int unregister_vol_user(struct vol_notifier *old)
192 {
193         int i;
194
195 gprintk("1\n");
196         mutex_lock(&vol_table_mutex);
197
198         module_put(THIS_MODULE);
199
200         for (i=0; i< UBI_MAX_VOLUMES; i++)
201                 if (vol_table[i])
202                         old->remove(vol_table[i]);
203
204         list_del(&old->list);
205         mutex_unlock(&vol_table_mutex);
206         return 0;
207 }
208 EXPORT_SYMBOL_GPL(add_vol_device);
209 EXPORT_SYMBOL_GPL(del_vol_device);
210 EXPORT_SYMBOL_GPL(register_vol_user);
211 EXPORT_SYMBOL_GPL(unregister_vol_user);
212
213 /* add by Nancy end*/
214
215
216
217
218 /**
219  * struct mtd_dev_param - MTD device parameter description data structure.
220  * @name: MTD device name or number string
221  * @vid_hdr_offs: VID header offset
222  */
223 struct mtd_dev_param {
224         char name[MTD_PARAM_LEN_MAX];
225         int vid_hdr_offs;
226 };
227
228 /* Numbers of elements set in the @mtd_dev_param array */
229 static int mtd_devs;
230
231 /* MTD devices specification parameters */
232 static struct mtd_dev_param mtd_dev_param[UBI_MAX_DEVICES];
233
234 /* Root UBI "class" object (corresponds to '/<sysfs>/class/ubi/') */
235 struct class *ubi_class;
236
237 /* Slab cache for wear-leveling entries */
238 struct kmem_cache *ubi_wl_entry_slab;
239
240 /* UBI control character device */
241 static struct miscdevice ubi_ctrl_cdev = {
242         .minor = MISC_DYNAMIC_MINOR,
243         .name = "ubi_ctrl",
244         .fops = &ubi_ctrl_cdev_operations,
245 };
246
247 /* All UBI devices in system */
248 static struct ubi_device *ubi_devices[UBI_MAX_DEVICES];
249
250 /* Serializes UBI devices creations and removals */
251 DEFINE_MUTEX(ubi_devices_mutex);
252
253 /* Protects @ubi_devices and @ubi->ref_count */
254 static DEFINE_SPINLOCK(ubi_devices_lock);
255 EXPORT_SYMBOL_GPL(ubi_devices_lock);
256
257 /* "Show" method for files in '/<sysfs>/class/ubi/' */
258 static ssize_t ubi_version_show(struct class *class, char *buf)
259 {
260         return sprintf(buf, "%d\n", UBI_VERSION);
261 }
262
263 /* UBI version attribute ('/<sysfs>/class/ubi/version') */
264 static struct class_attribute ubi_version =
265         __ATTR(version, S_IRUGO, ubi_version_show, NULL);
266
267 static ssize_t dev_attribute_show(struct device *dev,
268                                   struct device_attribute *attr, char *buf);
269
270 /* UBI device attributes (correspond to files in '/<sysfs>/class/ubi/ubiX') */
271 static struct device_attribute dev_eraseblock_size =
272         __ATTR(eraseblock_size, S_IRUGO, dev_attribute_show, NULL);
273 static struct device_attribute dev_avail_eraseblocks =
274         __ATTR(avail_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
275 static struct device_attribute dev_total_eraseblocks =
276         __ATTR(total_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
277 static struct device_attribute dev_volumes_count =
278         __ATTR(volumes_count, S_IRUGO, dev_attribute_show, NULL);
279 static struct device_attribute dev_max_ec =
280         __ATTR(max_ec, S_IRUGO, dev_attribute_show, NULL);
281 static struct device_attribute dev_reserved_for_bad =
282         __ATTR(reserved_for_bad, S_IRUGO, dev_attribute_show, NULL);
283 static struct device_attribute dev_bad_peb_count =
284         __ATTR(bad_peb_count, S_IRUGO, dev_attribute_show, NULL);
285 static struct device_attribute dev_max_vol_count =
286         __ATTR(max_vol_count, S_IRUGO, dev_attribute_show, NULL);
287 static struct device_attribute dev_min_io_size =
288         __ATTR(min_io_size, S_IRUGO, dev_attribute_show, NULL);
289 static struct device_attribute dev_bgt_enabled =
290         __ATTR(bgt_enabled, S_IRUGO, dev_attribute_show, NULL);
291 static struct device_attribute dev_mtd_num =
292         __ATTR(mtd_num, S_IRUGO, dev_attribute_show, NULL);
293
294 /**
295  * ubi_get_device - get UBI device.
296  * @ubi_num: UBI device number
297  *
298  * This function returns UBI device description object for UBI device number
299  * @ubi_num, or %NULL if the device does not exist. This function increases the
300  * device reference count to prevent removal of the device. In other words, the
301  * device cannot be removed if its reference count is not zero.
302  */
303 struct ubi_device *ubi_get_device(int ubi_num)
304 {
305         struct ubi_device *ubi;
306
307         spin_lock(&ubi_devices_lock);
308         ubi = ubi_devices[ubi_num];
309         if (ubi) {
310                 ubi_assert(ubi->ref_count >= 0);
311                 ubi->ref_count += 1;
312                 gprintk("ubi_num = %d, refcount = %d\n", ubi_num, ubi->ref_count);
313                 get_device(&ubi->dev);
314         }
315         spin_unlock(&ubi_devices_lock);
316
317         return ubi;
318 }
319
320 /**
321  * ubi_put_device - drop an UBI device reference.
322  * @ubi: UBI device description object
323  */
324 void ubi_put_device(struct ubi_device *ubi)
325 {
326         spin_lock(&ubi_devices_lock);
327         ubi->ref_count -= 1;
328         put_device(&ubi->dev);
329         spin_unlock(&ubi_devices_lock);
330 }
331
332 /**
333  * ubi_get_by_major - get UBI device by character device major number.
334  * @major: major number
335  *
336  * This function is similar to 'ubi_get_device()', but it searches the device
337  * by its major number.
338  */
339 struct ubi_device *ubi_get_by_major(int major)
340 {
341         int i;
342         struct ubi_device *ubi;
343
344         spin_lock(&ubi_devices_lock);
345         for (i = 0; i < UBI_MAX_DEVICES; i++) {
346                 ubi = ubi_devices[i];
347                 if (ubi && MAJOR(ubi->cdev.dev) == major) {
348                         ubi_assert(ubi->ref_count >= 0);
349                         ubi->ref_count += 1;
350                         get_device(&ubi->dev);
351                         spin_unlock(&ubi_devices_lock);
352                         return ubi;
353                 }
354         }
355         spin_unlock(&ubi_devices_lock);
356
357         return NULL;
358 }
359
360 /**
361  * ubi_major2num - get UBI device number by character device major number.
362  * @major: major number
363  *
364  * This function searches UBI device number object by its major number. If UBI
365  * device was not found, this function returns -ENODEV, otherwise the UBI device
366  * number is returned.
367  */
368 int ubi_major2num(int major)
369 {
370         int i, ubi_num = -ENODEV;
371
372         spin_lock(&ubi_devices_lock);
373         for (i = 0; i < UBI_MAX_DEVICES; i++) {
374                 struct ubi_device *ubi = ubi_devices[i];
375 gprintk("major = %d, i = %d, ubi->ubi_num = %d\n", major, i, ubi->ubi_num);
376                 if ( (ubi && MAJOR(ubi->cdev.dev) == major) ||
377                         (ubi && ubi->bdev_major == major)) {
378                         
379                         ubi_num = ubi->ubi_num;
380                         break;
381                 }
382         }
383         spin_unlock(&ubi_devices_lock);
384
385         return ubi_num;
386 }
387 EXPORT_SYMBOL_GPL(ubi_major2num);
388
389
390 /* "Show" method for files in '/<sysfs>/class/ubi/ubiX/' */
391 static ssize_t dev_attribute_show(struct device *dev,
392                                   struct device_attribute *attr, char *buf)
393 {
394         ssize_t ret;
395         struct ubi_device *ubi;
396
397         /*
398          * The below code looks weird, but it actually makes sense. We get the
399          * UBI device reference from the contained 'struct ubi_device'. But it
400          * is unclear if the device was removed or not yet. Indeed, if the
401          * device was removed before we increased its reference count,
402          * 'ubi_get_device()' will return -ENODEV and we fail.
403          *
404          * Remember, 'struct ubi_device' is freed in the release function, so
405          * we still can use 'ubi->ubi_num'.
406          */
407         ubi = container_of(dev, struct ubi_device, dev);
408         ubi = ubi_get_device(ubi->ubi_num);
409         if (!ubi)
410                 return -ENODEV;
411
412         if (attr == &dev_eraseblock_size)
413                 ret = sprintf(buf, "%d\n", ubi->leb_size);
414         else if (attr == &dev_avail_eraseblocks)
415                 ret = sprintf(buf, "%d\n", ubi->avail_pebs);
416         else if (attr == &dev_total_eraseblocks)
417                 ret = sprintf(buf, "%d\n", ubi->good_peb_count);
418         else if (attr == &dev_volumes_count)
419                 ret = sprintf(buf, "%d\n", ubi->vol_count - UBI_INT_VOL_COUNT);
420         else if (attr == &dev_max_ec)
421                 ret = sprintf(buf, "%d\n", ubi->max_ec);
422         else if (attr == &dev_reserved_for_bad)
423                 ret = sprintf(buf, "%d\n", ubi->beb_rsvd_pebs);
424         else if (attr == &dev_bad_peb_count)
425                 ret = sprintf(buf, "%d\n", ubi->bad_peb_count);
426         else if (attr == &dev_max_vol_count)
427                 ret = sprintf(buf, "%d\n", ubi->vtbl_slots);
428         else if (attr == &dev_min_io_size)
429                 ret = sprintf(buf, "%d\n", ubi->min_io_size);
430         else if (attr == &dev_bgt_enabled)
431                 ret = sprintf(buf, "%d\n", ubi->thread_enabled);
432         else if (attr == &dev_mtd_num)
433                 ret = sprintf(buf, "%d\n", ubi->mtd->index);
434         else
435                 ret = -EINVAL;
436
437         ubi_put_device(ubi);
438         return ret;
439 }
440
441 static void dev_release(struct device *dev)
442 {
443         struct ubi_device *ubi = container_of(dev, struct ubi_device, dev);
444
445         kfree(ubi);
446 }
447
448 /**
449  * ubi_sysfs_init - initialize sysfs for an UBI device.
450  * @ubi: UBI device description object
451  *
452  * This function returns zero in case of success and a negative error code in
453  * case of failure.
454  */
455 static int ubi_sysfs_init(struct ubi_device *ubi)
456 {
457         int err;
458
459         ubi->dev.release = dev_release;
460         ubi->dev.devt = ubi->cdev.dev;
461         ubi->dev.class = ubi_class;
462         sprintf(&ubi->dev.bus_id[0], UBI_NAME_STR"%d", ubi->ubi_num);
463         err = device_register(&ubi->dev);
464         if (err)
465                 return err;
466
467         err = device_create_file(&ubi->dev, &dev_eraseblock_size);
468         if (err)
469                 return err;
470         err = device_create_file(&ubi->dev, &dev_avail_eraseblocks);
471         if (err)
472                 return err;
473         err = device_create_file(&ubi->dev, &dev_total_eraseblocks);
474         if (err)
475                 return err;
476         err = device_create_file(&ubi->dev, &dev_volumes_count);
477         if (err)
478                 return err;
479         err = device_create_file(&ubi->dev, &dev_max_ec);
480         if (err)
481                 return err;
482         err = device_create_file(&ubi->dev, &dev_reserved_for_bad);
483         if (err)
484                 return err;
485         err = device_create_file(&ubi->dev, &dev_bad_peb_count);
486         if (err)
487                 return err;
488         err = device_create_file(&ubi->dev, &dev_max_vol_count);
489         if (err)
490                 return err;
491         err = device_create_file(&ubi->dev, &dev_min_io_size);
492         if (err)
493                 return err;
494         err = device_create_file(&ubi->dev, &dev_bgt_enabled);
495         if (err)
496                 return err;
497         err = device_create_file(&ubi->dev, &dev_mtd_num);
498         return err;
499 }
500
501 /**
502  * ubi_sysfs_close - close sysfs for an UBI device.
503  * @ubi: UBI device description object
504  */
505 static void ubi_sysfs_close(struct ubi_device *ubi)
506 {
507         device_remove_file(&ubi->dev, &dev_mtd_num);
508         device_remove_file(&ubi->dev, &dev_bgt_enabled);
509         device_remove_file(&ubi->dev, &dev_min_io_size);
510         device_remove_file(&ubi->dev, &dev_max_vol_count);
511         device_remove_file(&ubi->dev, &dev_bad_peb_count);
512         device_remove_file(&ubi->dev, &dev_reserved_for_bad);
513         device_remove_file(&ubi->dev, &dev_max_ec);
514         device_remove_file(&ubi->dev, &dev_volumes_count);
515         device_remove_file(&ubi->dev, &dev_total_eraseblocks);
516         device_remove_file(&ubi->dev, &dev_avail_eraseblocks);
517         device_remove_file(&ubi->dev, &dev_eraseblock_size);
518         device_unregister(&ubi->dev);
519 }
520
521 /**
522  * kill_volumes - destroy all volumes.
523  * @ubi: UBI device description object
524  */
525 static void kill_volumes(struct ubi_device *ubi)
526 {
527         int i;
528
529         for (i = 0; i < ubi->vtbl_slots; i++)
530                 if (ubi->volumes[i])
531                         ubi_free_volume(ubi, ubi->volumes[i]);
532 }
533
534 /**
535  * free_user_volumes - free all user volumes.
536  * @ubi: UBI device description object
537  *
538  * Normally the volumes are freed at the release function of the volume device
539  * objects. However, on error paths the volumes have to be freed before the
540  * device objects have been initialized.
541  */
542 static void free_user_volumes(struct ubi_device *ubi)
543 {
544         int i;
545
546         for (i = 0; i < ubi->vtbl_slots; i++)
547                 if (ubi->volumes[i]) {
548                         kfree(ubi->volumes[i]->eba_tbl);
549                         kfree(ubi->volumes[i]);
550                 }
551 }
552
553 /**
554  * uif_init - initialize user interfaces for an UBI device.
555  * @ubi: UBI device description object
556  *
557  * This function returns zero in case of success and a negative error code in
558  * case of failure. Note, this function destroys all volumes if it failes.
559  */
560 static int uif_init(struct ubi_device *ubi)
561 {
562         int i, err;
563         dev_t dev;
564
565         sprintf(ubi->ubi_name, UBI_NAME_STR "%d", ubi->ubi_num);
566
567         /*
568          * Major numbers for the UBI character devices are allocated
569          * dynamically. Major numbers of volume character devices are
570          * equivalent to ones of the corresponding UBI character device. Minor
571          * numbers of UBI character devices are 0, while minor numbers of
572          * volume character devices start from 1. Thus, we allocate one major
573          * number and ubi->vtbl_slots + 1 minor numbers.
574          */
575         err = alloc_chrdev_region(&dev, 0, ubi->vtbl_slots + 1, ubi->ubi_name);
576         if (err) {
577                 ubi_err("cannot register UBI character devices");
578                 return err;
579         }
580
581         ubi_assert(MINOR(dev) == 0);
582         cdev_init(&ubi->cdev, &ubi_cdev_operations);
583         dbg_gen("%s major is %u", ubi->ubi_name, MAJOR(dev));
584         ubi->cdev.owner = THIS_MODULE;
585
586         err = cdev_add(&ubi->cdev, dev, 1);
587         if (err) {
588                 ubi_err("cannot add character device");
589                 goto out_unreg;
590         }
591
592         err = ubi_sysfs_init(ubi);
593         if (err)
594                 goto out_sysfs;
595
596         for (i = 0; i < ubi->vtbl_slots; i++)
597                 if (ubi->volumes[i]) {
598                         err = ubi_add_volume(ubi, ubi->volumes[i]);
599                         if (err) {
600                                 ubi_err("cannot add volume %d", i);
601                                 goto out_volumes;
602                         }
603                 }
604
605         return 0;
606
607 out_volumes:
608         kill_volumes(ubi);
609 out_sysfs:
610         ubi_sysfs_close(ubi);
611         cdev_del(&ubi->cdev);
612 out_unreg:
613         unregister_chrdev_region(ubi->cdev.dev, ubi->vtbl_slots + 1);
614         ubi_err("cannot initialize UBI %s, error %d", ubi->ubi_name, err);
615         return err;
616 }
617
618 /**
619  * uif_close - close user interfaces for an UBI device.
620  * @ubi: UBI device description object
621  *
622  * Note, since this function un-registers UBI volume device objects (@vol->dev),
623  * the memory allocated voe the volumes is freed as well (in the release
624  * function).
625  */
626 static void uif_close(struct ubi_device *ubi)
627 {
628         kill_volumes(ubi);
629         ubi_sysfs_close(ubi);
630         cdev_del(&ubi->cdev);
631         unregister_chrdev_region(ubi->cdev.dev, ubi->vtbl_slots + 1);
632 }
633
634 /**
635  * free_internal_volumes - free internal volumes.
636  * @ubi: UBI device description object
637  */
638 static void free_internal_volumes(struct ubi_device *ubi)
639 {
640         int i;
641
642         for (i = ubi->vtbl_slots;
643              i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
644                 kfree(ubi->volumes[i]->eba_tbl);
645                 kfree(ubi->volumes[i]);
646         }
647 }
648
649 /**
650  * attach_by_scanning - attach an MTD device using scanning method.
651  * @ubi: UBI device descriptor
652  *
653  * This function returns zero in case of success and a negative error code in
654  * case of failure.
655  *
656  * Note, currently this is the only method to attach UBI devices. Hopefully in
657  * the future we'll have more scalable attaching methods and avoid full media
658  * scanning. But even in this case scanning will be needed as a fall-back
659  * attaching method if there are some on-flash table corruptions.
660  */
661 static int attach_by_scanning(struct ubi_device *ubi)
662 {
663         int err;
664         struct ubi_scan_info *si;
665
666         si = ubi_scan(ubi);
667         if (IS_ERR(si))
668                 return PTR_ERR(si);
669
670         ubi->bad_peb_count = si->bad_peb_count;
671         ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count;
672         ubi->max_ec = si->max_ec;
673         ubi->mean_ec = si->mean_ec;
674
675         err = ubi_read_volume_table(ubi, si);
676         if (err)
677                 goto out_si;
678
679         err = ubi_wl_init_scan(ubi, si);
680         if (err)
681                 goto out_vtbl;
682
683         err = ubi_eba_init_scan(ubi, si);
684         if (err)
685                 goto out_wl;
686
687         ubi_scan_destroy_si(si);
688         return 0;
689
690 out_wl:
691         ubi_wl_close(ubi);
692 out_vtbl:
693         free_internal_volumes(ubi);
694         vfree(ubi->vtbl);
695 out_si:
696         ubi_scan_destroy_si(si);
697         return err;
698 }
699
700 /**
701  * io_init - initialize I/O sub-system for a given UBI device.
702  * @ubi: UBI device description object
703  *
704  * If @ubi->vid_hdr_offset or @ubi->leb_start is zero, default offsets are
705  * assumed:
706  *   o EC header is always at offset zero - this cannot be changed;
707  *   o VID header starts just after the EC header at the closest address
708  *     aligned to @io->hdrs_min_io_size;
709  *   o data starts just after the VID header at the closest address aligned to
710  *     @io->min_io_size
711  *
712  * This function returns zero in case of success and a negative error code in
713  * case of failure.
714  */
715 static int io_init(struct ubi_device *ubi)
716 {
717         if (ubi->mtd->numeraseregions != 0) {
718                 /*
719                  * Some flashes have several erase regions. Different regions
720                  * may have different eraseblock size and other
721                  * characteristics. It looks like mostly multi-region flashes
722                  * have one "main" region and one or more small regions to
723                  * store boot loader code or boot parameters or whatever. I
724                  * guess we should just pick the largest region. But this is
725                  * not implemented.
726                  */
727                 ubi_err("multiple regions, not implemented");
728                 return -EINVAL;
729         }
730
731         if (ubi->vid_hdr_offset < 0)
732                 return -EINVAL;
733
734         /*
735          * Note, in this implementation we support MTD devices with 0x7FFFFFFF
736          * physical eraseblocks maximum.
737          */
738
739         ubi->peb_size   = ubi->mtd->erasesize;
740         ubi->peb_count  = ubi->mtd->size / ubi->mtd->erasesize;
741         ubi->flash_size = ubi->mtd->size;
742
743         if (ubi->mtd->block_isbad && ubi->mtd->block_markbad)
744                 ubi->bad_allowed = 1;
745
746         ubi->min_io_size = ubi->mtd->writesize;
747         ubi->hdrs_min_io_size = ubi->mtd->writesize >> ubi->mtd->subpage_sft;
748
749         /*
750          * Make sure minimal I/O unit is power of 2. Note, there is no
751          * fundamental reason for this assumption. It is just an optimization
752          * which allows us to avoid costly division operations.
753          */
754         if (!is_power_of_2(ubi->min_io_size)) {
755                 ubi_err("min. I/O unit (%d) is not power of 2",
756                         ubi->min_io_size);
757                 return -EINVAL;
758         }
759
760         ubi_assert(ubi->hdrs_min_io_size > 0);
761         ubi_assert(ubi->hdrs_min_io_size <= ubi->min_io_size);
762         ubi_assert(ubi->min_io_size % ubi->hdrs_min_io_size == 0);
763
764         /* Calculate default aligned sizes of EC and VID headers */
765         ubi->ec_hdr_alsize = ALIGN(UBI_EC_HDR_SIZE, ubi->hdrs_min_io_size);
766         ubi->vid_hdr_alsize = ALIGN(UBI_VID_HDR_SIZE, ubi->hdrs_min_io_size);
767
768         dbg_msg("min_io_size      %d", ubi->min_io_size);
769         dbg_msg("hdrs_min_io_size %d", ubi->hdrs_min_io_size);
770         dbg_msg("ec_hdr_alsize    %d", ubi->ec_hdr_alsize);
771         dbg_msg("vid_hdr_alsize   %d", ubi->vid_hdr_alsize);
772
773         if (ubi->vid_hdr_offset == 0)
774                 /* Default offset */
775                 ubi->vid_hdr_offset = ubi->vid_hdr_aloffset =
776                                       ubi->ec_hdr_alsize;
777         else {
778                 ubi->vid_hdr_aloffset = ubi->vid_hdr_offset &
779                                                 ~(ubi->hdrs_min_io_size - 1);
780                 ubi->vid_hdr_shift = ubi->vid_hdr_offset -
781                                                 ubi->vid_hdr_aloffset;
782         }
783
784         /* Similar for the data offset */
785         ubi->leb_start = ubi->vid_hdr_offset + UBI_EC_HDR_SIZE;
786         ubi->leb_start = ALIGN(ubi->leb_start, ubi->min_io_size);
787
788         dbg_msg("vid_hdr_offset   %d", ubi->vid_hdr_offset);
789         dbg_msg("vid_hdr_aloffset %d", ubi->vid_hdr_aloffset);
790         dbg_msg("vid_hdr_shift    %d", ubi->vid_hdr_shift);
791         dbg_msg("leb_start        %d", ubi->leb_start);
792
793         /* The shift must be aligned to 32-bit boundary */
794         if (ubi->vid_hdr_shift % 4) {
795                 ubi_err("unaligned VID header shift %d",
796                         ubi->vid_hdr_shift);
797                 return -EINVAL;
798         }
799
800         /* Check sanity */
801         if (ubi->vid_hdr_offset < UBI_EC_HDR_SIZE ||
802             ubi->leb_start < ubi->vid_hdr_offset + UBI_VID_HDR_SIZE ||
803             ubi->leb_start > ubi->peb_size - UBI_VID_HDR_SIZE ||
804             ubi->leb_start & (ubi->min_io_size - 1)) {
805                 ubi_err("bad VID header (%d) or data offsets (%d)",
806                         ubi->vid_hdr_offset, ubi->leb_start);
807                 return -EINVAL;
808         }
809
810         /*
811          * It may happen that EC and VID headers are situated in one minimal
812          * I/O unit. In this case we can only accept this UBI image in
813          * read-only mode.
814          */
815         if (ubi->vid_hdr_offset + UBI_VID_HDR_SIZE <= ubi->hdrs_min_io_size) {
816                 ubi_warn("EC and VID headers are in the same minimal I/O unit, "
817                          "switch to read-only mode");
818                 ubi->ro_mode = 1;
819         }
820
821         ubi->leb_size = ubi->peb_size - ubi->leb_start;
822
823         if (!(ubi->mtd->flags & MTD_WRITEABLE)) {
824                 ubi_msg("MTD device %d is write-protected, attach in "
825                         "read-only mode", ubi->mtd->index);
826                 ubi->ro_mode = 1;
827         }
828
829 #ifdef  CONFIG_POLLUX_KERNEL_BOOT_MESSAGE_ENABLE
830         ubi_msg("physical eraseblock size:   %d bytes (%d KiB)",
831                 ubi->peb_size, ubi->peb_size >> 10);
832         ubi_msg("logical eraseblock size:    %d bytes", ubi->leb_size);
833         ubi_msg("smallest flash I/O unit:    %d", ubi->min_io_size);
834         if (ubi->hdrs_min_io_size != ubi->min_io_size)
835                 ubi_msg("sub-page size:              %d",
836                         ubi->hdrs_min_io_size);
837         ubi_msg("VID header offset:          %d (aligned %d)",
838                 ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
839         ubi_msg("data offset:                %d", ubi->leb_start);
840 #endif
841
842         /*
843          * Note, ideally, we have to initialize ubi->bad_peb_count here. But
844          * unfortunately, MTD does not provide this information. We should loop
845          * over all physical eraseblocks and invoke mtd->block_is_bad() for
846          * each physical eraseblock. So, we skip ubi->bad_peb_count
847          * uninitialized and initialize it after scanning.
848          */
849
850         return 0;
851 }
852
853 /**
854  * autoresize - re-size the volume which has the "auto-resize" flag set.
855  * @ubi: UBI device description object
856  * @vol_id: ID of the volume to re-size
857  *
858  * This function re-sizes the volume marked by the @UBI_VTBL_AUTORESIZE_FLG in
859  * the volume table to the largest possible size. See comments in ubi-header.h
860  * for more description of the flag. Returns zero in case of success and a
861  * negative error code in case of failure.
862  */
863 static int autoresize(struct ubi_device *ubi, int vol_id)
864 {
865         struct ubi_volume_desc desc;
866         struct ubi_volume *vol = ubi->volumes[vol_id];
867         int err, old_reserved_pebs = vol->reserved_pebs;
868
869         /*
870          * Clear the auto-resize flag in the volume in-memory copy of the
871          * volume table, and 'ubi_resize_volume()' will propagate this change
872          * to the flash.
873          */
874         ubi->vtbl[vol_id].flags &= ~UBI_VTBL_AUTORESIZE_FLG;
875
876         if (ubi->avail_pebs == 0) {
877                 struct ubi_vtbl_record vtbl_rec;
878
879                 /*
880                  * No available PEBs to re-size the volume, clear the flag on
881                  * flash and exit.
882                  */
883                 memcpy(&vtbl_rec, &ubi->vtbl[vol_id],
884                        sizeof(struct ubi_vtbl_record));
885                 err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
886                 if (err)
887                         ubi_err("cannot clean auto-resize flag for volume %d",
888                                 vol_id);
889         } else {
890                 desc.vol = vol;
891                 err = ubi_resize_volume(&desc,
892                                         old_reserved_pebs + ubi->avail_pebs);
893                 if (err)
894                         ubi_err("cannot auto-resize volume %d", vol_id);
895         }
896
897         if (err)
898                 return err;
899
900         ubi_msg("volume %d (\"%s\") re-sized from %d to %d LEBs", vol_id,
901                 vol->name, old_reserved_pebs, vol->reserved_pebs);
902         return 0;
903 }
904
905
906 /* add by Nancy */
907 static int bdev_init(struct ubi_device *ubi){
908         int i;
909         for(i=0; i<ubi->vtbl_slots; i++)
910                 if(ubi->volumes[i])
911                         add_vol_device(ubi->volumes[i]);
912         return 0;
913 }
914
915
916
917 /**
918  * ubi_attach_mtd_dev - attach an MTD device.
919  * @mtd: MTD device description object
920  * @ubi_num: number to assign to the new UBI device
921  * @vid_hdr_offset: VID header offset
922  *
923  * This function attaches MTD device @mtd_dev to UBI and assign @ubi_num number
924  * to the newly created UBI device, unless @ubi_num is %UBI_DEV_NUM_AUTO, in
925  * which case this function finds a vacant device number and assigns it
926  * automatically. Returns the new UBI device number in case of success and a
927  * negative error code in case of failure.
928  *
929  * Note, the invocations of this function has to be serialized by the
930  * @ubi_devices_mutex.
931  */
932 int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num, int vid_hdr_offset)
933 {
934         struct ubi_device *ubi;
935         int i, err, do_free = 1;
936
937         /*
938          * Check if we already have the same MTD device attached.
939          *
940          * Note, this function assumes that UBI devices creations and deletions
941          * are serialized, so it does not take the &ubi_devices_lock.
942          */
943         for (i = 0; i < UBI_MAX_DEVICES; i++) {
944                 ubi = ubi_devices[i];
945                 if (ubi && mtd->index == ubi->mtd->index) {
946                         dbg_err("mtd%d is already attached to ubi%d",
947                                 mtd->index, i);
948                         return -EEXIST;
949                 }
950         }
951
952         /*
953          * Make sure this MTD device is not emulated on top of an UBI volume
954          * already. Well, generally this recursion works fine, but there are
955          * different problems like the UBI module takes a reference to itself
956          * by attaching (and thus, opening) the emulated MTD device. This
957          * results in inability to unload the module. And in general it makes
958          * no sense to attach emulated MTD devices, so we prohibit this.
959          */
960         if (mtd->type == MTD_UBIVOLUME) {
961                 ubi_err("refuse attaching mtd%d - it is already emulated on "
962                         "top of UBI", mtd->index);
963                 return -EINVAL;
964         }
965
966         if (ubi_num == UBI_DEV_NUM_AUTO) {
967                 /* Search for an empty slot in the @ubi_devices array */
968                 for (ubi_num = 0; ubi_num < UBI_MAX_DEVICES; ubi_num++)
969                         if (!ubi_devices[ubi_num])
970                                 break;
971                 if (ubi_num == UBI_MAX_DEVICES) {
972                         dbg_err("only %d UBI devices may be created",
973                                 UBI_MAX_DEVICES);
974                         return -ENFILE;
975                 }
976         } else {
977                 if (ubi_num >= UBI_MAX_DEVICES)
978                         return -EINVAL;
979
980                 /* Make sure ubi_num is not busy */
981                 if (ubi_devices[ubi_num]) {
982                         dbg_err("ubi%d already exists", ubi_num);
983                         return -EEXIST;
984                 }
985         }
986
987         ubi = kzalloc(sizeof(struct ubi_device), GFP_KERNEL);
988         if (!ubi)
989                 return -ENOMEM;
990
991         ubi->mtd = mtd;
992         ubi->ubi_num = ubi_num;
993         ubi->vid_hdr_offset = vid_hdr_offset;
994         ubi->autoresize_vol_id = -1;
995
996         mutex_init(&ubi->buf_mutex);
997         mutex_init(&ubi->ckvol_mutex);
998         mutex_init(&ubi->device_mutex);
999         spin_lock_init(&ubi->volumes_lock);
1000
1001 #ifdef  CONFIG_POLLUX_KERNEL_BOOT_MESSAGE_ENABLE
1002         ubi_msg("attaching mtd%d to ubi%d", mtd->index, ubi_num);
1003 #endif
1004
1005         err = io_init(ubi);
1006         if (err)
1007                 goto out_free;
1008
1009         err = -ENOMEM;
1010         ubi->peb_buf1 = vmalloc(ubi->peb_size);
1011         if (!ubi->peb_buf1)
1012                 goto out_free;
1013
1014         ubi->peb_buf2 = vmalloc(ubi->peb_size);
1015         if (!ubi->peb_buf2)
1016                 goto out_free;
1017
1018 #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
1019         mutex_init(&ubi->dbg_buf_mutex);
1020         ubi->dbg_peb_buf = vmalloc(ubi->peb_size);
1021         if (!ubi->dbg_peb_buf)
1022                 goto out_free;
1023 #endif
1024
1025         err = attach_by_scanning(ubi);
1026         if (err) {
1027                 dbg_err("failed to attach by scanning, error %d", err);
1028                 goto out_free;
1029         }
1030
1031         if (ubi->autoresize_vol_id != -1) {
1032                 err = autoresize(ubi, ubi->autoresize_vol_id);
1033                 if (err)
1034                         goto out_detach;
1035         }
1036
1037         err = uif_init(ubi);
1038         if (err)
1039                 goto out_nofree;
1040
1041         if( ubi_num == 1 )
1042         {
1043                 gprintk("..............aaaaaaaaaaaa...........\n");
1044                 err = bdev_init(ubi);
1045                 if(err)
1046                         goto out_nofree; // ghcstop: change out_detach ==> out_nofree
1047         }
1048
1049         ubi->bgt_thread = kthread_create(ubi_thread, ubi, ubi->bgt_name);
1050         if (IS_ERR(ubi->bgt_thread)) {
1051                 err = PTR_ERR(ubi->bgt_thread);
1052                 ubi_err("cannot spawn \"%s\", error %d", ubi->bgt_name,
1053                         err);
1054                 goto out_uif;
1055         }
1056
1057 #ifdef  CONFIG_POLLUX_KERNEL_BOOT_MESSAGE_ENABLE
1058         ubi_msg("attached mtd%d to ubi%d", mtd->index, ubi_num);
1059         ubi_msg("MTD device name:            \"%s\"", mtd->name);
1060         ubi_msg("MTD device size:            %llu MiB", ubi->flash_size >> 20);
1061         ubi_msg("number of good PEBs:        %d", ubi->good_peb_count);
1062         ubi_msg("number of bad PEBs:         %d", ubi->bad_peb_count);
1063         ubi_msg("max. allowed volumes:       %d", ubi->vtbl_slots);
1064         ubi_msg("wear-leveling threshold:    %d", CONFIG_MTD_UBI_WL_THRESHOLD);
1065         ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
1066         ubi_msg("number of user volumes:     %d",
1067                 ubi->vol_count - UBI_INT_VOL_COUNT);
1068         ubi_msg("available PEBs:             %d", ubi->avail_pebs);
1069         ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
1070         ubi_msg("number of PEBs reserved for bad PEB handling: %d",
1071                 ubi->beb_rsvd_pebs);
1072         ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
1073 #endif
1074
1075
1076         if (!DBG_DISABLE_BGT)
1077                 ubi->thread_enabled = 1;
1078         wake_up_process(ubi->bgt_thread);
1079
1080         ubi_devices[ubi_num] = ubi;
1081         return ubi_num;
1082
1083 out_uif:
1084         uif_close(ubi);
1085 out_nofree:
1086         do_free = 0;
1087 out_detach:
1088         ubi_wl_close(ubi);
1089         if (do_free)
1090                 free_user_volumes(ubi);
1091         free_internal_volumes(ubi);
1092         vfree(ubi->vtbl);
1093 out_free:
1094         vfree(ubi->peb_buf1);
1095         vfree(ubi->peb_buf2);
1096 #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
1097         vfree(ubi->dbg_peb_buf);
1098 #endif
1099         kfree(ubi);
1100         return err;
1101 }
1102
1103 /**
1104  * ubi_detach_mtd_dev - detach an MTD device.
1105  * @ubi_num: UBI device number to detach from
1106  * @anyway: detach MTD even if device reference count is not zero
1107  *
1108  * This function destroys an UBI device number @ubi_num and detaches the
1109  * underlying MTD device. Returns zero in case of success and %-EBUSY if the
1110  * UBI device is busy and cannot be destroyed, and %-EINVAL if it does not
1111  * exist.
1112  *
1113  * Note, the invocations of this function has to be serialized by the
1114  * @ubi_devices_mutex.
1115  */
1116 int ubi_detach_mtd_dev(int ubi_num, int anyway)
1117 {
1118         struct ubi_device *ubi;
1119
1120         if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES)
1121                 return -EINVAL;
1122
1123         spin_lock(&ubi_devices_lock);
1124         ubi = ubi_devices[ubi_num];
1125         if (!ubi) {
1126                 spin_unlock(&ubi_devices_lock);
1127                 return -EINVAL;
1128         }
1129
1130         if (ubi->ref_count) {
1131                 if (!anyway) {
1132                         spin_unlock(&ubi_devices_lock);
1133                         return -EBUSY;
1134                 }
1135                 /* This may only happen if there is a bug */
1136                 ubi_err("%s reference count %d, destroy anyway",
1137                         ubi->ubi_name, ubi->ref_count);
1138         }
1139         ubi_devices[ubi_num] = NULL;
1140         spin_unlock(&ubi_devices_lock);
1141
1142         ubi_assert(ubi_num == ubi->ubi_num);
1143         dbg_msg("detaching mtd%d from ubi%d", ubi->mtd->index, ubi_num);
1144
1145         /*
1146          * Before freeing anything, we have to stop the background thread to
1147          * prevent it from doing anything on this device while we are freeing.
1148          */
1149         if (ubi->bgt_thread)
1150                 kthread_stop(ubi->bgt_thread);
1151
1152         /*
1153          * Get a reference to the device in order to prevent 'dev_release()'
1154          * from freeing @ubi object.
1155          */
1156         get_device(&ubi->dev);
1157
1158         uif_close(ubi);
1159         ubi_wl_close(ubi);
1160         free_internal_volumes(ubi);
1161         vfree(ubi->vtbl);
1162         put_mtd_device(ubi->mtd);
1163         vfree(ubi->peb_buf1);
1164         vfree(ubi->peb_buf2);
1165 #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
1166         vfree(ubi->dbg_peb_buf);
1167 #endif
1168         ubi_msg("mtd%d is detached from ubi%d", ubi->mtd->index, ubi->ubi_num);
1169         put_device(&ubi->dev);
1170         return 0;
1171 }
1172
1173 /**
1174  * find_mtd_device - open an MTD device by its name or number.
1175  * @mtd_dev: name or number of the device
1176  *
1177  * This function tries to open and MTD device described by @mtd_dev string,
1178  * which is first treated as an ASCII number, and if it is not true, it is
1179  * treated as MTD device name. Returns MTD device description object in case of
1180  * success and a negative error code in case of failure.
1181  */
1182 static struct mtd_info * __init open_mtd_device(const char *mtd_dev)
1183 {
1184         struct mtd_info *mtd;
1185         int mtd_num;
1186         char *endp;
1187
1188         mtd_num = simple_strtoul(mtd_dev, &endp, 0);
1189         if (*endp != '\0' || mtd_dev == endp) {
1190                 /*
1191                  * This does not look like an ASCII integer, probably this is
1192                  * MTD device name.
1193                  */
1194                 mtd = get_mtd_device_nm(mtd_dev);
1195         } else
1196                 mtd = get_mtd_device(NULL, mtd_num);
1197
1198         return mtd;
1199 }
1200
1201 static int __init ubi_init(void)
1202 {
1203         int err, i, k;
1204
1205         /* Ensure that EC and VID headers have correct size */
1206         BUILD_BUG_ON(sizeof(struct ubi_ec_hdr) != 64);
1207         BUILD_BUG_ON(sizeof(struct ubi_vid_hdr) != 64);
1208
1209         if (mtd_devs > UBI_MAX_DEVICES) {
1210                 ubi_err("too many MTD devices, maximum is %d", UBI_MAX_DEVICES);
1211                 return -EINVAL;
1212         }
1213
1214         /* Create base sysfs directory and sysfs files */
1215         ubi_class = class_create(THIS_MODULE, UBI_NAME_STR);
1216         if (IS_ERR(ubi_class)) {
1217                 err = PTR_ERR(ubi_class);
1218                 ubi_err("cannot create UBI class");
1219                 goto out;
1220         }
1221
1222         err = class_create_file(ubi_class, &ubi_version);
1223         if (err) {
1224                 ubi_err("cannot create sysfs file");
1225                 goto out_class;
1226         }
1227
1228         err = misc_register(&ubi_ctrl_cdev);
1229         if (err) {
1230                 ubi_err("cannot register device");
1231                 goto out_version;
1232         }
1233
1234         ubi_wl_entry_slab = kmem_cache_create("ubi_wl_entry_slab",
1235                                               sizeof(struct ubi_wl_entry),
1236                                               0, 0, NULL);
1237         if (!ubi_wl_entry_slab)
1238                 goto out_dev_unreg;
1239
1240         /* Attach MTD devices */
1241         for (i = 0; i < mtd_devs; i++) {
1242                 struct mtd_dev_param *p = &mtd_dev_param[i];
1243                 struct mtd_info *mtd;
1244
1245                 cond_resched();
1246
1247                 mtd = open_mtd_device(p->name);
1248                 if (IS_ERR(mtd)) {
1249                         err = PTR_ERR(mtd);
1250                         goto out_detach;
1251                 }
1252
1253                 mutex_lock(&ubi_devices_mutex);
1254                 err = ubi_attach_mtd_dev(mtd, UBI_DEV_NUM_AUTO,
1255                                          p->vid_hdr_offs);
1256                 mutex_unlock(&ubi_devices_mutex);
1257                 if (err < 0) {
1258                         put_mtd_device(mtd);
1259                         ubi_err("cannot attach mtd%d", mtd->index);
1260                         goto out_detach;
1261                 }
1262         }
1263
1264         return 0;
1265
1266 out_detach:
1267         for (k = 0; k < i; k++)
1268                 if (ubi_devices[k]) {
1269                         mutex_lock(&ubi_devices_mutex);
1270                         ubi_detach_mtd_dev(ubi_devices[k]->ubi_num, 1);
1271                         mutex_unlock(&ubi_devices_mutex);
1272                 }
1273         kmem_cache_destroy(ubi_wl_entry_slab);
1274 out_dev_unreg:
1275         misc_deregister(&ubi_ctrl_cdev);
1276 out_version:
1277         class_remove_file(ubi_class, &ubi_version);
1278 out_class:
1279         class_destroy(ubi_class);
1280 out:
1281         ubi_err("UBI error: cannot initialize UBI, error %d", err);
1282         return err;
1283 }
1284 module_init(ubi_init);
1285
1286 static void __exit ubi_exit(void)
1287 {
1288         int i;
1289
1290         for (i = 0; i < UBI_MAX_DEVICES; i++)
1291                 if (ubi_devices[i]) {
1292                         mutex_lock(&ubi_devices_mutex);
1293                         ubi_detach_mtd_dev(ubi_devices[i]->ubi_num, 1);
1294                         mutex_unlock(&ubi_devices_mutex);
1295                 }
1296         kmem_cache_destroy(ubi_wl_entry_slab);
1297         misc_deregister(&ubi_ctrl_cdev);
1298         class_remove_file(ubi_class, &ubi_version);
1299         class_destroy(ubi_class);
1300 }
1301 module_exit(ubi_exit);
1302
1303 /**
1304  * bytes_str_to_int - convert a number of bytes string into an integer.
1305  * @str: the string to convert
1306  *
1307  * This function returns positive resulting integer in case of success and a
1308  * negative error code in case of failure.
1309  */
1310 static int __init bytes_str_to_int(const char *str)
1311 {
1312         char *endp;
1313         unsigned long result;
1314
1315         result = simple_strtoul(str, &endp, 0);
1316         if (str == endp || result < 0) {
1317                 printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
1318                        str);
1319                 return -EINVAL;
1320         }
1321
1322         switch (*endp) {
1323         case 'G':
1324                 result *= 1024;
1325         case 'M':
1326                 result *= 1024;
1327         case 'K':
1328                 result *= 1024;
1329                 if (endp[1] == 'i' && endp[2] == 'B')
1330                         endp += 2;
1331         case '\0':
1332                 break;
1333         default:
1334                 printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
1335                        str);
1336                 return -EINVAL;
1337         }
1338
1339         return result;
1340 }
1341
1342 /**
1343  * ubi_mtd_param_parse - parse the 'mtd=' UBI parameter.
1344  * @val: the parameter value to parse
1345  * @kp: not used
1346  *
1347  * This function returns zero in case of success and a negative error code in
1348  * case of error.
1349  */
1350 static int __init ubi_mtd_param_parse(const char *val, struct kernel_param *kp)
1351 {
1352         int i, len;
1353         struct mtd_dev_param *p;
1354         char buf[MTD_PARAM_LEN_MAX];
1355         char *pbuf = &buf[0];
1356         char *tokens[2] = {NULL, NULL};
1357
1358         if (!val)
1359                 return -EINVAL;
1360
1361         if (mtd_devs == UBI_MAX_DEVICES) {
1362                 printk(KERN_ERR "UBI error: too many parameters, max. is %d\n",
1363                        UBI_MAX_DEVICES);
1364                 return -EINVAL;
1365         }
1366
1367         len = strnlen(val, MTD_PARAM_LEN_MAX);
1368         if (len == MTD_PARAM_LEN_MAX) {
1369                 printk(KERN_ERR "UBI error: parameter \"%s\" is too long, "
1370                        "max. is %d\n", val, MTD_PARAM_LEN_MAX);
1371                 return -EINVAL;
1372         }
1373
1374         if (len == 0) {
1375                 printk(KERN_WARNING "UBI warning: empty 'mtd=' parameter - "
1376                        "ignored\n");
1377                 return 0;
1378         }
1379
1380         strcpy(buf, val);
1381
1382         /* Get rid of the final newline */
1383         if (buf[len - 1] == '\n')
1384                 buf[len - 1] = '\0';
1385
1386         for (i = 0; i < 2; i++)
1387                 tokens[i] = strsep(&pbuf, ",");
1388
1389         if (pbuf) {
1390                 printk(KERN_ERR "UBI error: too many arguments at \"%s\"\n",
1391                        val);
1392                 return -EINVAL;
1393         }
1394
1395         p = &mtd_dev_param[mtd_devs];
1396         strcpy(&p->name[0], tokens[0]);
1397
1398         if (tokens[1])
1399                 p->vid_hdr_offs = bytes_str_to_int(tokens[1]);
1400
1401         if (p->vid_hdr_offs < 0)
1402                 return p->vid_hdr_offs;
1403
1404         mtd_devs += 1;
1405         return 0;
1406 }
1407
1408 module_param_call(mtd, ubi_mtd_param_parse, NULL, NULL, 000);
1409 MODULE_PARM_DESC(mtd, "MTD devices to attach. Parameter format: "
1410                       "mtd=<name|num>[,<vid_hdr_offs>].\n"
1411                       "Multiple \"mtd\" parameters may be specified.\n"
1412                       "MTD devices may be specified by their number or name.\n"
1413                       "Optional \"vid_hdr_offs\" parameter specifies UBI VID "
1414                       "header position and data starting position to be used "
1415                       "by UBI.\n"
1416                       "Example: mtd=content,1984 mtd=4 - attach MTD device"
1417                       "with name \"content\" using VID header offset 1984, and "
1418                       "MTD device number 4 with default VID header offset.");
1419
1420 MODULE_VERSION(__stringify(UBI_VERSION));
1421 MODULE_DESCRIPTION("UBI - Unsorted Block Images");
1422 MODULE_AUTHOR("Artem Bityutskiy");
1423 MODULE_LICENSE("GPL");