blob: 70c0b9a9e6e35ea6b04fdd143f2e3fe9f19c2981 [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
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/*
Artem Bityutskiy9f961b52007-12-16 16:59:31 +020024 * 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.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040034 */
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>
Artem Bityutskiy9f961b52007-12-16 16:59:31 +020041#include <linux/miscdevice.h>
Vignesh Babu7753f162007-06-12 10:31:05 +053042#include <linux/log2.h>
Artem Bityutskiycdfa7882007-12-17 20:33:20 +020043#include <linux/kthread.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040044#include "ubi.h"
45
46/* Maximum length of the 'mtd=' parameter */
47#define MTD_PARAM_LEN_MAX 64
48
49/**
50 * struct mtd_dev_param - MTD device parameter description data structure.
51 * @name: MTD device name or number string
52 * @vid_hdr_offs: VID header offset
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040053 */
54struct mtd_dev_param
55{
56 char name[MTD_PARAM_LEN_MAX];
57 int vid_hdr_offs;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040058};
59
60/* Numbers of elements set in the @mtd_dev_param array */
61static int mtd_devs = 0;
62
63/* MTD devices specification parameters */
64static struct mtd_dev_param mtd_dev_param[UBI_MAX_DEVICES];
65
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040066/* Root UBI "class" object (corresponds to '/<sysfs>/class/ubi/') */
67struct class *ubi_class;
68
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +020069/* Slab cache for lock-tree entries */
70struct kmem_cache *ubi_ltree_slab;
71
Artem Bityutskiy06b68ba2007-12-16 12:49:01 +020072/* Slab cache for wear-leveling entries */
73struct kmem_cache *ubi_wl_entry_slab;
74
Artem Bityutskiy9f961b52007-12-16 16:59:31 +020075/* UBI control character device */
76static struct miscdevice ubi_ctrl_cdev = {
77 .minor = MISC_DYNAMIC_MINOR,
78 .name = "ubi_ctrl",
79 .fops = &ubi_ctrl_cdev_operations,
80};
Artem Bityutskiy06b68ba2007-12-16 12:49:01 +020081
Artem Bityutskiye73f4452007-12-17 17:37:26 +020082/* All UBI devices in system */
83static struct ubi_device *ubi_devices[UBI_MAX_DEVICES];
84
Artem Bityutskiycdfa7882007-12-17 20:33:20 +020085/* Serializes UBI devices creations and removals */
86DEFINE_MUTEX(ubi_devices_mutex);
87
Artem Bityutskiye73f4452007-12-17 17:37:26 +020088/* Protects @ubi_devices and @ubi->ref_count */
89static DEFINE_SPINLOCK(ubi_devices_lock);
90
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040091/* "Show" method for files in '/<sysfs>/class/ubi/' */
92static ssize_t ubi_version_show(struct class *class, char *buf)
93{
94 return sprintf(buf, "%d\n", UBI_VERSION);
95}
96
97/* UBI version attribute ('/<sysfs>/class/ubi/version') */
98static struct class_attribute ubi_version =
99 __ATTR(version, S_IRUGO, ubi_version_show, NULL);
100
101static ssize_t dev_attribute_show(struct device *dev,
102 struct device_attribute *attr, char *buf);
103
104/* UBI device attributes (correspond to files in '/<sysfs>/class/ubi/ubiX') */
105static struct device_attribute dev_eraseblock_size =
106 __ATTR(eraseblock_size, S_IRUGO, dev_attribute_show, NULL);
107static struct device_attribute dev_avail_eraseblocks =
108 __ATTR(avail_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
109static struct device_attribute dev_total_eraseblocks =
110 __ATTR(total_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
111static struct device_attribute dev_volumes_count =
112 __ATTR(volumes_count, S_IRUGO, dev_attribute_show, NULL);
113static struct device_attribute dev_max_ec =
114 __ATTR(max_ec, S_IRUGO, dev_attribute_show, NULL);
115static struct device_attribute dev_reserved_for_bad =
116 __ATTR(reserved_for_bad, S_IRUGO, dev_attribute_show, NULL);
117static struct device_attribute dev_bad_peb_count =
118 __ATTR(bad_peb_count, S_IRUGO, dev_attribute_show, NULL);
119static struct device_attribute dev_max_vol_count =
120 __ATTR(max_vol_count, S_IRUGO, dev_attribute_show, NULL);
121static struct device_attribute dev_min_io_size =
122 __ATTR(min_io_size, S_IRUGO, dev_attribute_show, NULL);
123static struct device_attribute dev_bgt_enabled =
124 __ATTR(bgt_enabled, S_IRUGO, dev_attribute_show, NULL);
125
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200126/**
127 * ubi_get_device - get UBI device.
128 * @ubi_num: UBI device number
129 *
130 * This function returns UBI device description object for UBI device number
131 * @ubi_num, or %NULL if the device does not exist. This function increases the
132 * device reference count to prevent removal of the device. In other words, the
133 * device cannot be removed if its reference count is not zero.
134 */
135struct ubi_device *ubi_get_device(int ubi_num)
136{
137 struct ubi_device *ubi;
138
139 spin_lock(&ubi_devices_lock);
140 ubi = ubi_devices[ubi_num];
141 if (ubi) {
142 ubi_assert(ubi->ref_count >= 0);
143 ubi->ref_count += 1;
144 get_device(&ubi->dev);
145 }
146 spin_unlock(&ubi_devices_lock);
147
148 return ubi;
149}
150
151/**
152 * ubi_put_device - drop an UBI device reference.
153 * @ubi: UBI device description object
154 */
155void ubi_put_device(struct ubi_device *ubi)
156{
157 spin_lock(&ubi_devices_lock);
158 ubi->ref_count -= 1;
159 put_device(&ubi->dev);
160 spin_unlock(&ubi_devices_lock);
161}
162
163/**
164 * ubi_get_by_major - get UBI device description object by character device
165 * major number.
166 * @major: major number
167 *
168 * This function is similar to 'ubi_get_device()', but it searches the device
169 * by its major number.
170 */
171struct ubi_device *ubi_get_by_major(int major)
172{
173 int i;
174 struct ubi_device *ubi;
175
176 spin_lock(&ubi_devices_lock);
177 for (i = 0; i < UBI_MAX_DEVICES; i++) {
178 ubi = ubi_devices[i];
179 if (ubi && MAJOR(ubi->cdev.dev) == major) {
180 ubi_assert(ubi->ref_count >= 0);
181 ubi->ref_count += 1;
182 get_device(&ubi->dev);
183 spin_unlock(&ubi_devices_lock);
184 return ubi;
185 }
186 }
187 spin_unlock(&ubi_devices_lock);
188
189 return NULL;
190}
191
192/**
193 * ubi_major2num - get UBI device number by character device major number.
194 * @major: major number
195 *
196 * This function searches UBI device number object by its major number. If UBI
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200197 * device was not found, this function returns -ENODEV, otherwise the UBI device
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200198 * number is returned.
199 */
200int ubi_major2num(int major)
201{
202 int i, ubi_num = -ENODEV;
203
204 spin_lock(&ubi_devices_lock);
205 for (i = 0; i < UBI_MAX_DEVICES; i++) {
206 struct ubi_device *ubi = ubi_devices[i];
207
208 if (ubi && MAJOR(ubi->cdev.dev) == major) {
209 ubi_num = ubi->ubi_num;
210 break;
211 }
212 }
213 spin_unlock(&ubi_devices_lock);
214
215 return ubi_num;
216}
217
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400218/* "Show" method for files in '/<sysfs>/class/ubi/ubiX/' */
219static ssize_t dev_attribute_show(struct device *dev,
220 struct device_attribute *attr, char *buf)
221{
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200222 ssize_t ret;
223 struct ubi_device *ubi;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400224
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200225 /*
226 * The below code looks weird, but it actually makes sense. We get the
227 * UBI device reference from the contained 'struct ubi_device'. But it
228 * is unclear if the device was removed or not yet. Indeed, if the
229 * device was removed before we increased its reference count,
230 * 'ubi_get_device()' will return -ENODEV and we fail.
231 *
232 * Remember, 'struct ubi_device' is freed in the release function, so
233 * we still can use 'ubi->ubi_num'.
234 */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400235 ubi = container_of(dev, struct ubi_device, dev);
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200236 ubi = ubi_get_device(ubi->ubi_num);
237 if (!ubi)
238 return -ENODEV;
239
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400240 if (attr == &dev_eraseblock_size)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200241 ret = sprintf(buf, "%d\n", ubi->leb_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400242 else if (attr == &dev_avail_eraseblocks)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200243 ret = sprintf(buf, "%d\n", ubi->avail_pebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400244 else if (attr == &dev_total_eraseblocks)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200245 ret = sprintf(buf, "%d\n", ubi->good_peb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400246 else if (attr == &dev_volumes_count)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200247 ret = sprintf(buf, "%d\n", ubi->vol_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400248 else if (attr == &dev_max_ec)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200249 ret = sprintf(buf, "%d\n", ubi->max_ec);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400250 else if (attr == &dev_reserved_for_bad)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200251 ret = sprintf(buf, "%d\n", ubi->beb_rsvd_pebs);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400252 else if (attr == &dev_bad_peb_count)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200253 ret = sprintf(buf, "%d\n", ubi->bad_peb_count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400254 else if (attr == &dev_max_vol_count)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200255 ret = sprintf(buf, "%d\n", ubi->vtbl_slots);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400256 else if (attr == &dev_min_io_size)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200257 ret = sprintf(buf, "%d\n", ubi->min_io_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400258 else if (attr == &dev_bgt_enabled)
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200259 ret = sprintf(buf, "%d\n", ubi->thread_enabled);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400260 else
261 BUG();
262
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200263 ubi_put_device(ubi);
264 return ret;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400265}
266
267/* Fake "release" method for UBI devices */
268static void dev_release(struct device *dev) { }
269
270/**
271 * ubi_sysfs_init - initialize sysfs for an UBI device.
272 * @ubi: UBI device description object
273 *
274 * This function returns zero in case of success and a negative error code in
275 * case of failure.
276 */
277static int ubi_sysfs_init(struct ubi_device *ubi)
278{
279 int err;
280
281 ubi->dev.release = dev_release;
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200282 ubi->dev.devt = ubi->cdev.dev;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400283 ubi->dev.class = ubi_class;
284 sprintf(&ubi->dev.bus_id[0], UBI_NAME_STR"%d", ubi->ubi_num);
285 err = device_register(&ubi->dev);
286 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200287 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400288
289 err = device_create_file(&ubi->dev, &dev_eraseblock_size);
290 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200291 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400292 err = device_create_file(&ubi->dev, &dev_avail_eraseblocks);
293 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200294 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400295 err = device_create_file(&ubi->dev, &dev_total_eraseblocks);
296 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200297 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400298 err = device_create_file(&ubi->dev, &dev_volumes_count);
299 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200300 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400301 err = device_create_file(&ubi->dev, &dev_max_ec);
302 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200303 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400304 err = device_create_file(&ubi->dev, &dev_reserved_for_bad);
305 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200306 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400307 err = device_create_file(&ubi->dev, &dev_bad_peb_count);
308 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200309 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400310 err = device_create_file(&ubi->dev, &dev_max_vol_count);
311 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200312 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400313 err = device_create_file(&ubi->dev, &dev_min_io_size);
314 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200315 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400316 err = device_create_file(&ubi->dev, &dev_bgt_enabled);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400317 return err;
318}
319
320/**
321 * ubi_sysfs_close - close sysfs for an UBI device.
322 * @ubi: UBI device description object
323 */
324static void ubi_sysfs_close(struct ubi_device *ubi)
325{
326 device_remove_file(&ubi->dev, &dev_bgt_enabled);
327 device_remove_file(&ubi->dev, &dev_min_io_size);
328 device_remove_file(&ubi->dev, &dev_max_vol_count);
329 device_remove_file(&ubi->dev, &dev_bad_peb_count);
330 device_remove_file(&ubi->dev, &dev_reserved_for_bad);
331 device_remove_file(&ubi->dev, &dev_max_ec);
332 device_remove_file(&ubi->dev, &dev_volumes_count);
333 device_remove_file(&ubi->dev, &dev_total_eraseblocks);
334 device_remove_file(&ubi->dev, &dev_avail_eraseblocks);
335 device_remove_file(&ubi->dev, &dev_eraseblock_size);
336 device_unregister(&ubi->dev);
337}
338
339/**
340 * kill_volumes - destroy all volumes.
341 * @ubi: UBI device description object
342 */
343static void kill_volumes(struct ubi_device *ubi)
344{
345 int i;
346
347 for (i = 0; i < ubi->vtbl_slots; i++)
348 if (ubi->volumes[i])
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200349 ubi_free_volume(ubi, ubi->volumes[i]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400350}
351
352/**
353 * uif_init - initialize user interfaces for an UBI device.
354 * @ubi: UBI device description object
355 *
356 * This function returns zero in case of success and a negative error code in
357 * case of failure.
358 */
359static int uif_init(struct ubi_device *ubi)
360{
361 int i, err;
362 dev_t dev;
363
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200364 mutex_init(&ubi->volumes_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400365 spin_lock_init(&ubi->volumes_lock);
366
367 sprintf(ubi->ubi_name, UBI_NAME_STR "%d", ubi->ubi_num);
368
369 /*
370 * Major numbers for the UBI character devices are allocated
371 * dynamically. Major numbers of volume character devices are
372 * equivalent to ones of the corresponding UBI character device. Minor
373 * numbers of UBI character devices are 0, while minor numbers of
374 * volume character devices start from 1. Thus, we allocate one major
375 * number and ubi->vtbl_slots + 1 minor numbers.
376 */
377 err = alloc_chrdev_region(&dev, 0, ubi->vtbl_slots + 1, ubi->ubi_name);
378 if (err) {
379 ubi_err("cannot register UBI character devices");
380 return err;
381 }
382
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200383 ubi_assert(MINOR(dev) == 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400384 cdev_init(&ubi->cdev, &ubi_cdev_operations);
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200385 dbg_msg("%s major is %u", ubi->ubi_name, MAJOR(dev));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400386 ubi->cdev.owner = THIS_MODULE;
387
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400388 err = cdev_add(&ubi->cdev, dev, 1);
389 if (err) {
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200390 ubi_err("cannot add character device");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400391 goto out_unreg;
392 }
393
394 err = ubi_sysfs_init(ubi);
395 if (err)
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200396 goto out_sysfs;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400397
398 for (i = 0; i < ubi->vtbl_slots; i++)
399 if (ubi->volumes[i]) {
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200400 err = ubi_add_volume(ubi, ubi->volumes[i]);
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200401 if (err) {
402 ubi_err("cannot add volume %d", i);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400403 goto out_volumes;
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200404 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400405 }
406
407 return 0;
408
409out_volumes:
410 kill_volumes(ubi);
Artem Bityutskiydb6e5772007-12-17 15:48:49 +0200411out_sysfs:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400412 ubi_sysfs_close(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400413 cdev_del(&ubi->cdev);
414out_unreg:
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200415 unregister_chrdev_region(ubi->cdev.dev, ubi->vtbl_slots + 1);
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200416 ubi_err("cannot initialize UBI %s, error %d", ubi->ubi_name, err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400417 return err;
418}
419
420/**
421 * uif_close - close user interfaces for an UBI device.
422 * @ubi: UBI device description object
423 */
424static void uif_close(struct ubi_device *ubi)
425{
426 kill_volumes(ubi);
427 ubi_sysfs_close(ubi);
428 cdev_del(&ubi->cdev);
Artem Bityutskiy49dfc292007-12-15 18:13:56 +0200429 unregister_chrdev_region(ubi->cdev.dev, ubi->vtbl_slots + 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400430}
431
432/**
433 * attach_by_scanning - attach an MTD device using scanning method.
434 * @ubi: UBI device descriptor
435 *
436 * This function returns zero in case of success and a negative error code in
437 * case of failure.
438 *
439 * Note, currently this is the only method to attach UBI devices. Hopefully in
440 * the future we'll have more scalable attaching methods and avoid full media
441 * scanning. But even in this case scanning will be needed as a fall-back
442 * attaching method if there are some on-flash table corruptions.
443 */
444static int attach_by_scanning(struct ubi_device *ubi)
445{
446 int err;
447 struct ubi_scan_info *si;
448
449 si = ubi_scan(ubi);
450 if (IS_ERR(si))
451 return PTR_ERR(si);
452
453 ubi->bad_peb_count = si->bad_peb_count;
454 ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count;
455 ubi->max_ec = si->max_ec;
456 ubi->mean_ec = si->mean_ec;
457
458 err = ubi_read_volume_table(ubi, si);
459 if (err)
460 goto out_si;
461
462 err = ubi_wl_init_scan(ubi, si);
463 if (err)
464 goto out_vtbl;
465
466 err = ubi_eba_init_scan(ubi, si);
467 if (err)
468 goto out_wl;
469
470 ubi_scan_destroy_si(si);
471 return 0;
472
473out_wl:
474 ubi_wl_close(ubi);
475out_vtbl:
Vinit Agnihotrid7f0c4d2007-06-15 15:31:22 +0530476 vfree(ubi->vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400477out_si:
478 ubi_scan_destroy_si(si);
479 return err;
480}
481
482/**
483 * io_init - initialize I/O unit for a given UBI device.
484 * @ubi: UBI device description object
485 *
486 * If @ubi->vid_hdr_offset or @ubi->leb_start is zero, default offsets are
487 * assumed:
488 * o EC header is always at offset zero - this cannot be changed;
489 * o VID header starts just after the EC header at the closest address
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200490 * aligned to @io->hdrs_min_io_size;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400491 * o data starts just after the VID header at the closest address aligned to
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200492 * @io->min_io_size
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400493 *
494 * This function returns zero in case of success and a negative error code in
495 * case of failure.
496 */
497static int io_init(struct ubi_device *ubi)
498{
499 if (ubi->mtd->numeraseregions != 0) {
500 /*
501 * Some flashes have several erase regions. Different regions
502 * may have different eraseblock size and other
503 * characteristics. It looks like mostly multi-region flashes
504 * have one "main" region and one or more small regions to
505 * store boot loader code or boot parameters or whatever. I
506 * guess we should just pick the largest region. But this is
507 * not implemented.
508 */
509 ubi_err("multiple regions, not implemented");
510 return -EINVAL;
511 }
512
Artem Bityutskiydd38fcc2007-12-19 21:43:32 +0200513 if (ubi->vid_hdr_offset < 0)
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200514 return -EINVAL;
515
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400516 /*
517 * Note, in this implementation we support MTD devices with 0x7FFFFFFF
518 * physical eraseblocks maximum.
519 */
520
521 ubi->peb_size = ubi->mtd->erasesize;
522 ubi->peb_count = ubi->mtd->size / ubi->mtd->erasesize;
523 ubi->flash_size = ubi->mtd->size;
524
525 if (ubi->mtd->block_isbad && ubi->mtd->block_markbad)
526 ubi->bad_allowed = 1;
527
528 ubi->min_io_size = ubi->mtd->writesize;
529 ubi->hdrs_min_io_size = ubi->mtd->writesize >> ubi->mtd->subpage_sft;
530
531 /* Make sure minimal I/O unit is power of 2 */
Vignesh Babu7753f162007-06-12 10:31:05 +0530532 if (!is_power_of_2(ubi->min_io_size)) {
Artem Bityutskiy01f7b302007-12-15 19:56:51 +0200533 ubi_err("min. I/O unit (%d) is not power of 2",
534 ubi->min_io_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400535 return -EINVAL;
536 }
537
538 ubi_assert(ubi->hdrs_min_io_size > 0);
539 ubi_assert(ubi->hdrs_min_io_size <= ubi->min_io_size);
540 ubi_assert(ubi->min_io_size % ubi->hdrs_min_io_size == 0);
541
542 /* Calculate default aligned sizes of EC and VID headers */
543 ubi->ec_hdr_alsize = ALIGN(UBI_EC_HDR_SIZE, ubi->hdrs_min_io_size);
544 ubi->vid_hdr_alsize = ALIGN(UBI_VID_HDR_SIZE, ubi->hdrs_min_io_size);
545
546 dbg_msg("min_io_size %d", ubi->min_io_size);
547 dbg_msg("hdrs_min_io_size %d", ubi->hdrs_min_io_size);
548 dbg_msg("ec_hdr_alsize %d", ubi->ec_hdr_alsize);
549 dbg_msg("vid_hdr_alsize %d", ubi->vid_hdr_alsize);
550
551 if (ubi->vid_hdr_offset == 0)
552 /* Default offset */
553 ubi->vid_hdr_offset = ubi->vid_hdr_aloffset =
554 ubi->ec_hdr_alsize;
555 else {
556 ubi->vid_hdr_aloffset = ubi->vid_hdr_offset &
557 ~(ubi->hdrs_min_io_size - 1);
558 ubi->vid_hdr_shift = ubi->vid_hdr_offset -
559 ubi->vid_hdr_aloffset;
560 }
561
562 /* Similar for the data offset */
Artem Bityutskiydd38fcc2007-12-19 21:43:32 +0200563 ubi->leb_start = ubi->vid_hdr_offset + ubi->vid_hdr_alsize;
564 ubi->leb_start = ALIGN(ubi->leb_start, ubi->min_io_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400565
566 dbg_msg("vid_hdr_offset %d", ubi->vid_hdr_offset);
567 dbg_msg("vid_hdr_aloffset %d", ubi->vid_hdr_aloffset);
568 dbg_msg("vid_hdr_shift %d", ubi->vid_hdr_shift);
569 dbg_msg("leb_start %d", ubi->leb_start);
570
571 /* The shift must be aligned to 32-bit boundary */
572 if (ubi->vid_hdr_shift % 4) {
573 ubi_err("unaligned VID header shift %d",
574 ubi->vid_hdr_shift);
575 return -EINVAL;
576 }
577
578 /* Check sanity */
579 if (ubi->vid_hdr_offset < UBI_EC_HDR_SIZE ||
580 ubi->leb_start < ubi->vid_hdr_offset + UBI_VID_HDR_SIZE ||
581 ubi->leb_start > ubi->peb_size - UBI_VID_HDR_SIZE ||
582 ubi->leb_start % ubi->min_io_size) {
583 ubi_err("bad VID header (%d) or data offsets (%d)",
584 ubi->vid_hdr_offset, ubi->leb_start);
585 return -EINVAL;
586 }
587
588 /*
589 * It may happen that EC and VID headers are situated in one minimal
590 * I/O unit. In this case we can only accept this UBI image in
591 * read-only mode.
592 */
593 if (ubi->vid_hdr_offset + UBI_VID_HDR_SIZE <= ubi->hdrs_min_io_size) {
594 ubi_warn("EC and VID headers are in the same minimal I/O unit, "
595 "switch to read-only mode");
596 ubi->ro_mode = 1;
597 }
598
599 ubi->leb_size = ubi->peb_size - ubi->leb_start;
600
601 if (!(ubi->mtd->flags & MTD_WRITEABLE)) {
602 ubi_msg("MTD device %d is write-protected, attach in "
603 "read-only mode", ubi->mtd->index);
604 ubi->ro_mode = 1;
605 }
606
607 dbg_msg("leb_size %d", ubi->leb_size);
608 dbg_msg("ro_mode %d", ubi->ro_mode);
609
610 /*
611 * Note, ideally, we have to initialize ubi->bad_peb_count here. But
612 * unfortunately, MTD does not provide this information. We should loop
613 * over all physical eraseblocks and invoke mtd->block_is_bad() for
614 * each physical eraseblock. So, we skip ubi->bad_peb_count
615 * uninitialized and initialize it after scanning.
616 */
617
618 return 0;
619}
620
621/**
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200622 * ubi_attach_mtd_dev - attach an MTD device.
623 * @mtd_dev: MTD device description object
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200624 * @ubi_num: number to assign to the new UBI device
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400625 * @vid_hdr_offset: VID header offset
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400626 *
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200627 * This function attaches MTD device @mtd_dev to UBI and assign @ubi_num number
628 * to the newly created UBI device, unless @ubi_num is %UBI_DEV_NUM_AUTO, in
629 * which case this function finds a vacant device nubert and assings it
630 * automatically. Returns the new UBI device number in case of success and a
631 * negative error code in case of failure.
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200632 *
633 * Note, the invocations of this function has to be serialized by the
634 * @ubi_devices_mutex.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400635 */
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200636int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num, int vid_hdr_offset)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400637{
638 struct ubi_device *ubi;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400639 int i, err;
640
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200641 /*
642 * Check if we already have the same MTD device attached.
643 *
644 * Note, this function assumes that UBI devices creations and deletions
645 * are serialized, so it does not take the &ubi_devices_lock.
646 */
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200647 for (i = 0; i < UBI_MAX_DEVICES; i++) {
Artem Bityutskiyb96bf4c2007-12-16 13:01:03 +0200648 ubi = ubi_devices[i];
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200649 if (ubi && mtd->index == ubi->mtd->index) {
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200650 dbg_err("mtd%d is already attached to ubi%d",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400651 mtd->index, i);
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200652 return -EEXIST;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400653 }
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200654 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400655
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200656 /*
657 * Make sure this MTD device is not emulated on top of an UBI volume
658 * already. Well, generally this recursion works fine, but there are
659 * different problems like the UBI module takes a reference to itself
660 * by attaching (and thus, opening) the emulated MTD device. This
661 * results in inability to unload the module. And in general it makes
662 * no sense to attach emulated MTD devices, so we prohibit this.
663 */
664 if (mtd->type == MTD_UBIVOLUME) {
665 ubi_err("refuse attaching mtd%d - it is already emulated on "
666 "top of UBI", mtd->index);
667 return -EINVAL;
668 }
Artem Bityutskiyb96bf4c2007-12-16 13:01:03 +0200669
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200670 if (ubi_num == UBI_DEV_NUM_AUTO) {
671 /* Search for an empty slot in the @ubi_devices array */
672 for (ubi_num = 0; ubi_num < UBI_MAX_DEVICES; ubi_num++)
673 if (!ubi_devices[ubi_num])
674 break;
675 if (ubi_num == UBI_MAX_DEVICES) {
676 dbg_err("only %d UBI devices may be created", UBI_MAX_DEVICES);
677 return -ENFILE;
678 }
679 } else {
680 if (ubi_num >= UBI_MAX_DEVICES)
681 return -EINVAL;
682
683 /* Make sure ubi_num is not busy */
684 if (ubi_devices[ubi_num]) {
685 dbg_err("ubi%d already exists", ubi_num);
686 return -EEXIST;
687 }
Artem Bityutskiyb96bf4c2007-12-16 13:01:03 +0200688 }
689
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200690 ubi = kzalloc(sizeof(struct ubi_device), GFP_KERNEL);
691 if (!ubi)
692 return -ENOMEM;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400693
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200694 ubi->mtd = mtd;
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200695 ubi->ubi_num = ubi_num;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400696 ubi->vid_hdr_offset = vid_hdr_offset;
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200697
Artem Bityutskiydd38fcc2007-12-19 21:43:32 +0200698 dbg_msg("attaching mtd%d to ubi%d: VID header offset %d",
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200699 mtd->index, ubi_num, vid_hdr_offset);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200700
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400701 err = io_init(ubi);
702 if (err)
703 goto out_free;
704
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300705 mutex_init(&ubi->buf_mutex);
706 ubi->peb_buf1 = vmalloc(ubi->peb_size);
707 if (!ubi->peb_buf1)
708 goto out_free;
709
710 ubi->peb_buf2 = vmalloc(ubi->peb_size);
711 if (!ubi->peb_buf2)
712 goto out_free;
713
714#ifdef CONFIG_MTD_UBI_DEBUG
715 mutex_init(&ubi->dbg_buf_mutex);
716 ubi->dbg_peb_buf = vmalloc(ubi->peb_size);
717 if (!ubi->dbg_peb_buf)
718 goto out_free;
719#endif
720
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400721 err = attach_by_scanning(ubi);
722 if (err) {
723 dbg_err("failed to attach by scanning, error %d", err);
724 goto out_free;
725 }
726
727 err = uif_init(ubi);
728 if (err)
729 goto out_detach;
730
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200731 ubi->bgt_thread = kthread_create(ubi_thread, ubi, ubi->bgt_name);
732 if (IS_ERR(ubi->bgt_thread)) {
733 err = PTR_ERR(ubi->bgt_thread);
734 ubi_err("cannot spawn \"%s\", error %d", ubi->bgt_name,
735 err);
736 goto out_uif;
737 }
738
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200739 ubi_msg("attached mtd%d to ubi%d", mtd->index, ubi_num);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200740 ubi_msg("MTD device name: \"%s\"", mtd->name);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400741 ubi_msg("MTD device size: %llu MiB", ubi->flash_size >> 20);
742 ubi_msg("physical eraseblock size: %d bytes (%d KiB)",
743 ubi->peb_size, ubi->peb_size >> 10);
744 ubi_msg("logical eraseblock size: %d bytes", ubi->leb_size);
745 ubi_msg("number of good PEBs: %d", ubi->good_peb_count);
746 ubi_msg("number of bad PEBs: %d", ubi->bad_peb_count);
747 ubi_msg("smallest flash I/O unit: %d", ubi->min_io_size);
748 ubi_msg("VID header offset: %d (aligned %d)",
749 ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
750 ubi_msg("data offset: %d", ubi->leb_start);
751 ubi_msg("max. allowed volumes: %d", ubi->vtbl_slots);
752 ubi_msg("wear-leveling threshold: %d", CONFIG_MTD_UBI_WL_THRESHOLD);
753 ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
754 ubi_msg("number of user volumes: %d",
755 ubi->vol_count - UBI_INT_VOL_COUNT);
756 ubi_msg("available PEBs: %d", ubi->avail_pebs);
757 ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
758 ubi_msg("number of PEBs reserved for bad PEB handling: %d",
759 ubi->beb_rsvd_pebs);
760 ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
761
762 /* Enable the background thread */
763 if (!DBG_DISABLE_BGT) {
764 ubi->thread_enabled = 1;
765 wake_up_process(ubi->bgt_thread);
766 }
767
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200768 ubi_devices[ubi_num] = ubi;
769 return ubi_num;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400770
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200771out_uif:
772 uif_close(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400773out_detach:
774 ubi_eba_close(ubi);
775 ubi_wl_close(ubi);
Vinit Agnihotrid7f0c4d2007-06-15 15:31:22 +0530776 vfree(ubi->vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400777out_free:
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300778 vfree(ubi->peb_buf1);
779 vfree(ubi->peb_buf2);
780#ifdef CONFIG_MTD_UBI_DEBUG
781 vfree(ubi->dbg_peb_buf);
782#endif
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400783 kfree(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400784 return err;
785}
786
787/**
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200788 * ubi_detach_mtd_dev - detach an MTD device.
789 * @ubi_num: UBI device number to detach from
790 * @anyway: detach MTD even if device reference count is not zero
791 *
792 * This function destroys an UBI device number @ubi_num and detaches the
793 * underlying MTD device. Returns zero in case of success and %-EBUSY if the
794 * UBI device is busy and cannot be destroyed, and %-EINVAL if it does not
795 * exist.
796 *
797 * Note, the invocations of this function has to be serialized by the
798 * @ubi_devices_mutex.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400799 */
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200800int ubi_detach_mtd_dev(int ubi_num, int anyway)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400801{
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200802 struct ubi_device *ubi;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400803
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200804 if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES)
805 return -EINVAL;
806
807 spin_lock(&ubi_devices_lock);
808 ubi = ubi_devices[ubi_num];
809 if (!ubi) {
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200810 spin_unlock(&ubi_devices_lock);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200811 return -EINVAL;
812 }
813
814 if (ubi->ref_count) {
815 if (!anyway) {
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200816 spin_unlock(&ubi_devices_lock);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200817 return -EBUSY;
818 }
819 /* This may only happen if there is a bug */
820 ubi_err("%s reference count %d, destroy anyway",
821 ubi->ubi_name, ubi->ref_count);
822 }
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200823 ubi_devices[ubi_num] = NULL;
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200824 spin_unlock(&ubi_devices_lock);
825
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200826 ubi_assert(ubi_num == ubi->ubi_num);
827 dbg_msg("detaching mtd%d from ubi%d", ubi->mtd->index, ubi_num);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200828
829 /*
830 * Before freeing anything, we have to stop the background thread to
831 * prevent it from doing anything on this device while we are freeing.
832 */
833 if (ubi->bgt_thread)
834 kthread_stop(ubi->bgt_thread);
835
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400836 uif_close(ubi);
837 ubi_eba_close(ubi);
838 ubi_wl_close(ubi);
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +0300839 vfree(ubi->vtbl);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400840 put_mtd_device(ubi->mtd);
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300841 vfree(ubi->peb_buf1);
842 vfree(ubi->peb_buf2);
843#ifdef CONFIG_MTD_UBI_DEBUG
844 vfree(ubi->dbg_peb_buf);
845#endif
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200846 ubi_msg("mtd%d is detached from ubi%d", ubi->mtd->index, ubi->ubi_num);
847 kfree(ubi);
848 return 0;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400849}
850
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200851/**
852 * ltree_entry_ctor - lock tree entries slab cache constructor.
853 * @obj: the lock-tree entry to construct
854 * @cache: the lock tree entry slab cache
855 * @flags: constructor flags
856 */
857static void ltree_entry_ctor(struct kmem_cache *cache, void *obj)
858{
859 struct ubi_ltree_entry *le = obj;
860
861 le->users = 0;
862 init_rwsem(&le->mutex);
863}
864
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200865/**
866 * find_mtd_device - open an MTD device by its name or number.
867 * @mtd_dev: name or number of the device
868 *
869 * This function tries to open and MTD device with name @mtd_dev, and if it
870 * fails, then it tries to interpret the @mtd_dev string as an ASCII-coded
871 * integer and open an MTD device with this number. Returns MTD device
872 * description object in case of success and a negative error code in case of
873 * failure.
874 */
875static struct mtd_info * __init open_mtd_device(const char *mtd_dev)
876{
877 struct mtd_info *mtd;
878
879 mtd = get_mtd_device_nm(mtd_dev);
880 if (IS_ERR(mtd)) {
881 int mtd_num;
882 char *endp;
883
884 if (PTR_ERR(mtd) != -ENODEV)
885 return mtd;
886
887 /*
888 * Probably this is not MTD device name but MTD device number -
889 * check this out.
890 */
891 mtd_num = simple_strtoul(mtd_dev, &endp, 0);
892 if (*endp != '\0' || mtd_dev == endp) {
893 ubi_err("incorrect MTD device: \"%s\"", mtd_dev);
894 return ERR_PTR(-ENODEV);
895 }
896
897 mtd = get_mtd_device(NULL, mtd_num);
898 if (IS_ERR(mtd))
899 return mtd;
900 }
901
902 return mtd;
903}
904
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400905static int __init ubi_init(void)
906{
907 int err, i, k;
908
909 /* Ensure that EC and VID headers have correct size */
910 BUILD_BUG_ON(sizeof(struct ubi_ec_hdr) != 64);
911 BUILD_BUG_ON(sizeof(struct ubi_vid_hdr) != 64);
912
913 if (mtd_devs > UBI_MAX_DEVICES) {
Artem Bityutskiy458dbb32007-12-19 17:03:42 +0200914 printk(KERN_ERR "UBI error: too many MTD devices, "
915 "maximum is %d\n", UBI_MAX_DEVICES);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400916 return -EINVAL;
917 }
918
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200919 /* Create base sysfs directory and sysfs files */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400920 ubi_class = class_create(THIS_MODULE, UBI_NAME_STR);
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200921 if (IS_ERR(ubi_class)) {
922 err = PTR_ERR(ubi_class);
923 printk(KERN_ERR "UBI error: cannot create UBI class\n");
924 goto out;
925 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400926
927 err = class_create_file(ubi_class, &ubi_version);
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200928 if (err) {
929 printk(KERN_ERR "UBI error: cannot create sysfs file\n");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400930 goto out_class;
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200931 }
932
933 err = misc_register(&ubi_ctrl_cdev);
934 if (err) {
935 printk(KERN_ERR "UBI error: cannot register device\n");
936 goto out_version;
937 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400938
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200939 ubi_ltree_slab = kmem_cache_create("ubi_ltree_slab",
940 sizeof(struct ubi_ltree_entry), 0,
941 0, &ltree_entry_ctor);
942 if (!ubi_ltree_slab)
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200943 goto out_dev_unreg;
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200944
Artem Bityutskiy06b68ba2007-12-16 12:49:01 +0200945 ubi_wl_entry_slab = kmem_cache_create("ubi_wl_entry_slab",
946 sizeof(struct ubi_wl_entry),
947 0, 0, NULL);
948 if (!ubi_wl_entry_slab)
949 goto out_ltree;
950
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400951 /* Attach MTD devices */
952 for (i = 0; i < mtd_devs; i++) {
953 struct mtd_dev_param *p = &mtd_dev_param[i];
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200954 struct mtd_info *mtd;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400955
956 cond_resched();
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200957
958 mtd = open_mtd_device(p->name);
959 if (IS_ERR(mtd)) {
960 err = PTR_ERR(mtd);
961 goto out_detach;
962 }
963
964 mutex_lock(&ubi_devices_mutex);
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200965 err = ubi_attach_mtd_dev(mtd, UBI_DEV_NUM_AUTO,
966 p->vid_hdr_offs);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200967 mutex_unlock(&ubi_devices_mutex);
968 if (err < 0) {
969 put_mtd_device(mtd);
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200970 printk(KERN_ERR "UBI error: cannot attach %s\n",
971 p->name);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400972 goto out_detach;
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200973 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400974 }
975
976 return 0;
977
978out_detach:
979 for (k = 0; k < i; k++)
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200980 if (ubi_devices[k]) {
981 mutex_lock(&ubi_devices_mutex);
982 ubi_detach_mtd_dev(ubi_devices[k]->ubi_num, 1);
983 mutex_unlock(&ubi_devices_mutex);
984 }
Artem Bityutskiy06b68ba2007-12-16 12:49:01 +0200985 kmem_cache_destroy(ubi_wl_entry_slab);
986out_ltree:
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200987 kmem_cache_destroy(ubi_ltree_slab);
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200988out_dev_unreg:
989 misc_deregister(&ubi_ctrl_cdev);
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200990out_version:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400991 class_remove_file(ubi_class, &ubi_version);
992out_class:
993 class_destroy(ubi_class);
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200994out:
995 printk(KERN_ERR "UBI error: cannot initialize UBI, error %d\n", err);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400996 return err;
997}
998module_init(ubi_init);
999
1000static void __exit ubi_exit(void)
1001{
Artem Bityutskiyb96bf4c2007-12-16 13:01:03 +02001002 int i;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001003
Artem Bityutskiyb96bf4c2007-12-16 13:01:03 +02001004 for (i = 0; i < UBI_MAX_DEVICES; i++)
Artem Bityutskiycdfa7882007-12-17 20:33:20 +02001005 if (ubi_devices[i]) {
1006 mutex_lock(&ubi_devices_mutex);
1007 ubi_detach_mtd_dev(ubi_devices[i]->ubi_num, 1);
1008 mutex_unlock(&ubi_devices_mutex);
1009 }
Artem Bityutskiy06b68ba2007-12-16 12:49:01 +02001010 kmem_cache_destroy(ubi_wl_entry_slab);
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +02001011 kmem_cache_destroy(ubi_ltree_slab);
Artem Bityutskiy9f961b52007-12-16 16:59:31 +02001012 misc_deregister(&ubi_ctrl_cdev);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001013 class_remove_file(ubi_class, &ubi_version);
1014 class_destroy(ubi_class);
1015}
1016module_exit(ubi_exit);
1017
1018/**
1019 * bytes_str_to_int - convert a string representing number of bytes to an
1020 * integer.
1021 * @str: the string to convert
1022 *
1023 * This function returns positive resulting integer in case of success and a
1024 * negative error code in case of failure.
1025 */
1026static int __init bytes_str_to_int(const char *str)
1027{
1028 char *endp;
1029 unsigned long result;
1030
1031 result = simple_strtoul(str, &endp, 0);
1032 if (str == endp || result < 0) {
Artem Bityutskiy458dbb32007-12-19 17:03:42 +02001033 printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
1034 str);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001035 return -EINVAL;
1036 }
1037
1038 switch (*endp) {
1039 case 'G':
1040 result *= 1024;
1041 case 'M':
1042 result *= 1024;
1043 case 'K':
1044 case 'k':
1045 result *= 1024;
1046 if (endp[1] == 'i' && (endp[2] == '\0' ||
1047 endp[2] == 'B' || endp[2] == 'b'))
1048 endp += 2;
1049 case '\0':
1050 break;
1051 default:
Artem Bityutskiy458dbb32007-12-19 17:03:42 +02001052 printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
1053 str);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001054 return -EINVAL;
1055 }
1056
1057 return result;
1058}
1059
1060/**
1061 * ubi_mtd_param_parse - parse the 'mtd=' UBI parameter.
1062 * @val: the parameter value to parse
1063 * @kp: not used
1064 *
1065 * This function returns zero in case of success and a negative error code in
1066 * case of error.
1067 */
1068static int __init ubi_mtd_param_parse(const char *val, struct kernel_param *kp)
1069{
1070 int i, len;
1071 struct mtd_dev_param *p;
1072 char buf[MTD_PARAM_LEN_MAX];
1073 char *pbuf = &buf[0];
1074 char *tokens[3] = {NULL, NULL, NULL};
1075
Artem Bityutskiy77c722d2007-12-16 16:46:57 +02001076 if (!val)
1077 return -EINVAL;
1078
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001079 if (mtd_devs == UBI_MAX_DEVICES) {
Artem Bityutskiy458dbb32007-12-19 17:03:42 +02001080 printk(KERN_ERR "UBI error: too many parameters, max. is %d\n",
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001081 UBI_MAX_DEVICES);
1082 return -EINVAL;
1083 }
1084
1085 len = strnlen(val, MTD_PARAM_LEN_MAX);
1086 if (len == MTD_PARAM_LEN_MAX) {
Artem Bityutskiy458dbb32007-12-19 17:03:42 +02001087 printk(KERN_ERR "UBI error: parameter \"%s\" is too long, "
1088 "max. is %d\n", val, MTD_PARAM_LEN_MAX);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001089 return -EINVAL;
1090 }
1091
1092 if (len == 0) {
Artem Bityutskiy458dbb32007-12-19 17:03:42 +02001093 printk(KERN_WARNING "UBI warning: empty 'mtd=' parameter - "
1094 "ignored\n");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001095 return 0;
1096 }
1097
1098 strcpy(buf, val);
1099
1100 /* Get rid of the final newline */
1101 if (buf[len - 1] == '\n')
Artem Bityutskiy503990e2007-07-11 16:03:29 +03001102 buf[len - 1] = '\0';
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001103
1104 for (i = 0; i < 3; i++)
1105 tokens[i] = strsep(&pbuf, ",");
1106
1107 if (pbuf) {
Artem Bityutskiy458dbb32007-12-19 17:03:42 +02001108 printk(KERN_ERR "UBI error: too many arguments at \"%s\"\n",
1109 val);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001110 return -EINVAL;
1111 }
1112
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001113 p = &mtd_dev_param[mtd_devs];
1114 strcpy(&p->name[0], tokens[0]);
1115
1116 if (tokens[1])
1117 p->vid_hdr_offs = bytes_str_to_int(tokens[1]);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001118
1119 if (p->vid_hdr_offs < 0)
1120 return p->vid_hdr_offs;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001121
1122 mtd_devs += 1;
1123 return 0;
1124}
1125
1126module_param_call(mtd, ubi_mtd_param_parse, NULL, NULL, 000);
1127MODULE_PARM_DESC(mtd, "MTD devices to attach. Parameter format: "
Artem Bityutskiydd38fcc2007-12-19 21:43:32 +02001128 "mtd=<name|num>[,<vid_hdr_offs>].\n"
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001129 "Multiple \"mtd\" parameters may be specified.\n"
Artem Bityutskiydd38fcc2007-12-19 21:43:32 +02001130 "MTD devices may be specified by their number or name.\n"
1131 "Optional \"vid_hdr_offs\" parameter specifies UBI VID "
1132 "header position and data starting position to be used "
1133 "by UBI.\n"
1134 "Example: mtd=content,1984 mtd=4 - attach MTD device"
1135 "with name \"content\" using VID header offset 1984, and "
1136 "MTD device number 4 with default VID header offset.");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001137
1138MODULE_VERSION(__stringify(UBI_VERSION));
1139MODULE_DESCRIPTION("UBI - Unsorted Block Images");
1140MODULE_AUTHOR("Artem Bityutskiy");
1141MODULE_LICENSE("GPL");