blob: a548c1d28fa818a5485aa5524a2527eff269edf0 [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, 2006, 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 */
21
22#ifndef __UBI_UBI_H__
23#define __UBI_UBI_H__
24
25#include <linux/init.h>
26#include <linux/types.h>
27#include <linux/list.h>
28#include <linux/rbtree.h>
29#include <linux/sched.h>
30#include <linux/wait.h>
31#include <linux/mutex.h>
32#include <linux/rwsem.h>
33#include <linux/spinlock.h>
34#include <linux/fs.h>
35#include <linux/cdev.h>
36#include <linux/device.h>
37#include <linux/string.h>
Artem Bityutskiy92ad8f32007-05-06 16:12:54 +030038#include <linux/vmalloc.h>
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040039#include <linux/mtd/mtd.h>
40
41#include <mtd/ubi-header.h>
42#include <linux/mtd/ubi.h>
43
44#include "scan.h"
45#include "debug.h"
46
47/* Maximum number of supported UBI devices */
48#define UBI_MAX_DEVICES 32
49
50/* UBI name used for character devices, sysfs, etc */
51#define UBI_NAME_STR "ubi"
52
53/* Normal UBI messages */
54#define ubi_msg(fmt, ...) printk(KERN_NOTICE "UBI: " fmt "\n", ##__VA_ARGS__)
55/* UBI warning messages */
56#define ubi_warn(fmt, ...) printk(KERN_WARNING "UBI warning: %s: " fmt "\n", \
57 __FUNCTION__, ##__VA_ARGS__)
58/* UBI error messages */
59#define ubi_err(fmt, ...) printk(KERN_ERR "UBI error: %s: " fmt "\n", \
60 __FUNCTION__, ##__VA_ARGS__)
61
62/* Lowest number PEBs reserved for bad PEB handling */
63#define MIN_RESEVED_PEBS 2
64
65/* Background thread name pattern */
66#define UBI_BGT_NAME_PATTERN "ubi_bgt%dd"
67
68/* This marker in the EBA table means that the LEB is um-mapped */
69#define UBI_LEB_UNMAPPED -1
70
71/*
72 * In case of errors, UBI tries to repeat the operation several times before
73 * returning error. The below constant defines how many times UBI re-tries.
74 */
75#define UBI_IO_RETRIES 3
76
77/*
78 * Error codes returned by the I/O unit.
79 *
80 * UBI_IO_PEB_EMPTY: the physical eraseblock is empty, i.e. it contains only
81 * 0xFF bytes
82 * UBI_IO_PEB_FREE: the physical eraseblock is free, i.e. it contains only a
83 * valid erase counter header, and the rest are %0xFF bytes
84 * UBI_IO_BAD_EC_HDR: the erase counter header is corrupted (bad magic or CRC)
85 * UBI_IO_BAD_VID_HDR: the volume identifier header is corrupted (bad magic or
86 * CRC)
87 * UBI_IO_BITFLIPS: bit-flips were detected and corrected
88 */
89enum {
90 UBI_IO_PEB_EMPTY = 1,
91 UBI_IO_PEB_FREE,
92 UBI_IO_BAD_EC_HDR,
93 UBI_IO_BAD_VID_HDR,
94 UBI_IO_BITFLIPS
95};
96
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +020097/**
Artem Bityutskiy06b68ba2007-12-16 12:49:01 +020098 * struct ubi_wl_entry - wear-leveling entry.
99 * @rb: link in the corresponding RB-tree
100 * @ec: erase counter
101 * @pnum: physical eraseblock number
102 *
103 * This data structure is used in the WL unit. Each physical eraseblock has a
104 * corresponding &struct wl_entry object which may be kept in different
105 * RB-trees. See WL unit for details.
106 */
107struct ubi_wl_entry {
108 struct rb_node rb;
109 int ec;
110 int pnum;
111};
112
113/**
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200114 * struct ubi_ltree_entry - an entry in the lock tree.
115 * @rb: links RB-tree nodes
116 * @vol_id: volume ID of the locked logical eraseblock
117 * @lnum: locked logical eraseblock number
118 * @users: how many tasks are using this logical eraseblock or wait for it
119 * @mutex: read/write mutex to implement read/write access serialization to
120 * the (@vol_id, @lnum) logical eraseblock
121 *
122 * This data structure is used in the EBA unit to implement per-LEB locking.
123 * When a logical eraseblock is being locked - corresponding
124 * &struct ubi_ltree_entry object is inserted to the lock tree (@ubi->ltree).
125 * See EBA unit for details.
126 */
127struct ubi_ltree_entry {
128 struct rb_node rb;
129 int vol_id;
130 int lnum;
131 int users;
132 struct rw_semaphore mutex;
133};
134
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400135struct ubi_volume_desc;
136
137/**
138 * struct ubi_volume - UBI volume description data structure.
139 * @dev: device object to make use of the the Linux device model
140 * @cdev: character device object to create character device
141 * @ubi: reference to the UBI device description object
142 * @vol_id: volume ID
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200143 * @ref_count: volume reference count
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400144 * @readers: number of users holding this volume in read-only mode
145 * @writers: number of users holding this volume in read-write mode
146 * @exclusive: whether somebody holds this volume in exclusive mode
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400147 *
148 * @reserved_pebs: how many physical eraseblocks are reserved for this volume
149 * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME)
150 * @usable_leb_size: logical eraseblock size without padding
151 * @used_ebs: how many logical eraseblocks in this volume contain data
152 * @last_eb_bytes: how many bytes are stored in the last logical eraseblock
153 * @used_bytes: how many bytes of data this volume contains
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400154 * @alignment: volume alignment
155 * @data_pad: how many bytes are not used at the end of physical eraseblocks to
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200156 * satisfy the requested alignment
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400157 * @name_len: volume name length
158 * @name: volume name
159 *
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400160 * @upd_ebs: how many eraseblocks are expected to be updated
Artem Bityutskiye6538792008-01-24 18:48:21 +0200161 * @ch_lnum: LEB number which is being changing by the atomic LEB change
162 * operation
163 * @ch_dtype: data persistency type which is being changing by the atomic LEB
164 * change operation
165 * @upd_bytes: how many bytes are expected to be received for volume update or
166 * atomic LEB change
167 * @upd_received: how many bytes were already received for volume update or
168 * atomic LEB change
169 * @upd_buf: update buffer which is used to collect update data or data for
170 * atomic LEB change
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400171 *
172 * @eba_tbl: EBA table of this volume (LEB->PEB mapping)
Artem Bityutskiy896c0c02008-01-16 14:24:14 +0200173 * @checked: %1 if this static volume was checked
174 * @corrupted: %1 if the volume is corrupted (static volumes only)
175 * @upd_marker: %1 if the update marker is set for this volume
176 * @updating: %1 if the volume is being updated
Artem Bityutskiye6538792008-01-24 18:48:21 +0200177 * @changing_leb: %1 if the atomic LEB change ioctl command is in progress
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400178 *
179 * @gluebi_desc: gluebi UBI volume descriptor
180 * @gluebi_refcount: reference count of the gluebi MTD device
181 * @gluebi_mtd: MTD device description object of the gluebi MTD device
182 *
183 * The @corrupted field indicates that the volume's contents is corrupted.
184 * Since UBI protects only static volumes, this field is not relevant to
185 * dynamic volumes - it is user's responsibility to assure their data
186 * integrity.
187 *
188 * The @upd_marker flag indicates that this volume is either being updated at
189 * the moment or is damaged because of an unclean reboot.
190 */
191struct ubi_volume {
192 struct device dev;
193 struct cdev cdev;
194 struct ubi_device *ubi;
195 int vol_id;
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200196 int ref_count;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400197 int readers;
198 int writers;
199 int exclusive;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400200
201 int reserved_pebs;
202 int vol_type;
203 int usable_leb_size;
204 int used_ebs;
205 int last_eb_bytes;
206 long long used_bytes;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400207 int alignment;
208 int data_pad;
209 int name_len;
210 char name[UBI_VOL_NAME_MAX+1];
211
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400212 int upd_ebs;
Artem Bityutskiye6538792008-01-24 18:48:21 +0200213 int ch_lnum;
214 int ch_dtype;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400215 long long upd_bytes;
216 long long upd_received;
217 void *upd_buf;
218
219 int *eba_tbl;
Harvey Harrison8eee9f12008-02-15 10:47:51 +0200220 unsigned int checked:1;
221 unsigned int corrupted:1;
222 unsigned int upd_marker:1;
223 unsigned int updating:1;
224 unsigned int changing_leb:1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400225
226#ifdef CONFIG_MTD_UBI_GLUEBI
Artem Bityutskiye6538792008-01-24 18:48:21 +0200227 /*
228 * Gluebi-related stuff may be compiled out.
229 * TODO: this should not be built into UBI but should be a separate
230 * ubimtd driver which works on top of UBI and emulates MTD devices.
231 */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400232 struct ubi_volume_desc *gluebi_desc;
233 int gluebi_refcount;
234 struct mtd_info gluebi_mtd;
235#endif
236};
237
238/**
239 * struct ubi_volume_desc - descriptor of the UBI volume returned when it is
240 * opened.
241 * @vol: reference to the corresponding volume description object
242 * @mode: open mode (%UBI_READONLY, %UBI_READWRITE, or %UBI_EXCLUSIVE)
243 */
244struct ubi_volume_desc {
245 struct ubi_volume *vol;
246 int mode;
247};
248
249struct ubi_wl_entry;
250
251/**
252 * struct ubi_device - UBI device description structure
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200253 * @dev: UBI device object to use the the Linux device model
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400254 * @cdev: character device object to create character device
255 * @ubi_num: UBI device number
256 * @ubi_name: UBI device name
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400257 * @vol_count: number of volumes in this UBI device
258 * @volumes: volumes of this UBI device
259 * @volumes_lock: protects @volumes, @rsvd_pebs, @avail_pebs, beb_rsvd_pebs,
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200260 * @beb_rsvd_level, @bad_peb_count, @good_peb_count, @vol_count,
261 * @vol->readers, @vol->writers, @vol->exclusive,
262 * @vol->ref_count, @vol->mapping and @vol->eba_tbl.
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200263 * @ref_count: count of references on the UBI device
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400264 *
265 * @rsvd_pebs: count of reserved physical eraseblocks
266 * @avail_pebs: count of available physical eraseblocks
267 * @beb_rsvd_pebs: how many physical eraseblocks are reserved for bad PEB
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200268 * handling
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400269 * @beb_rsvd_level: normal level of PEBs reserved for bad PEB handling
270 *
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200271 * @autoresize_vol_id: ID of the volume which has to be auto-resized at the end
272 * of UBI ititializetion
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400273 * @vtbl_slots: how many slots are available in the volume table
274 * @vtbl_size: size of the volume table in bytes
275 * @vtbl: in-RAM volume table copy
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200276 * @volumes_mutex: protects on-flash volume table and serializes volume
277 * changes, like creation, deletion, update, resize
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400278 *
279 * @max_ec: current highest erase counter value
280 * @mean_ec: current mean erase counter value
281 *
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300282 * @global_sqnum: global sequence number
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400283 * @ltree_lock: protects the lock tree and @global_sqnum
284 * @ltree: the lock tree
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300285 * @alc_mutex: serializes "atomic LEB change" operations
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400286 *
287 * @used: RB-tree of used physical eraseblocks
288 * @free: RB-tree of free physical eraseblocks
289 * @scrub: RB-tree of physical eraseblocks which need scrubbing
290 * @prot: protection trees
291 * @prot.pnum: protection tree indexed by physical eraseblock numbers
292 * @prot.aec: protection tree indexed by absolute erase counter value
293 * @wl_lock: protects the @used, @free, @prot, @lookuptbl, @abs_ec, @move_from,
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200294 * @move_to, @move_to_put @erase_pending, @wl_scheduled, and @works
295 * fields
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200296 * @move_mutex: serializes eraseblock moves
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400297 * @wl_scheduled: non-zero if the wear-leveling was scheduled
298 * @lookuptbl: a table to quickly find a &struct ubi_wl_entry object for any
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200299 * physical eraseblock
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400300 * @abs_ec: absolute erase counter
301 * @move_from: physical eraseblock from where the data is being moved
302 * @move_to: physical eraseblock where the data is being moved to
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400303 * @move_to_put: if the "to" PEB was put
304 * @works: list of pending works
305 * @works_count: count of pending works
306 * @bgt_thread: background thread description object
307 * @thread_enabled: if the background thread is enabled
308 * @bgt_name: background thread name
309 *
310 * @flash_size: underlying MTD device size (in bytes)
311 * @peb_count: count of physical eraseblocks on the MTD device
312 * @peb_size: physical eraseblock size
313 * @bad_peb_count: count of bad physical eraseblocks
314 * @good_peb_count: count of good physical eraseblocks
315 * @min_io_size: minimal input/output unit size of the underlying MTD device
316 * @hdrs_min_io_size: minimal I/O unit size used for VID and EC headers
317 * @ro_mode: if the UBI device is in read-only mode
318 * @leb_size: logical eraseblock size
319 * @leb_start: starting offset of logical eraseblocks within physical
320 * eraseblocks
321 * @ec_hdr_alsize: size of the EC header aligned to @hdrs_min_io_size
322 * @vid_hdr_alsize: size of the VID header aligned to @hdrs_min_io_size
323 * @vid_hdr_offset: starting offset of the volume identifier header (might be
324 * unaligned)
325 * @vid_hdr_aloffset: starting offset of the VID header aligned to
326 * @hdrs_min_io_size
327 * @vid_hdr_shift: contains @vid_hdr_offset - @vid_hdr_aloffset
328 * @bad_allowed: whether the MTD device admits of bad physical eraseblocks or
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200329 * not
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400330 * @mtd: MTD device descriptor
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300331 *
332 * @peb_buf1: a buffer of PEB size used for different purposes
333 * @peb_buf2: another buffer of PEB size used for different purposes
334 * @buf_mutex: proptects @peb_buf1 and @peb_buf2
Artem Bityutskiyd05c77a2007-12-17 15:42:57 +0200335 * @dbg_peb_buf: buffer of PEB size used for debugging
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300336 * @dbg_buf_mutex: proptects @dbg_peb_buf
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400337 */
338struct ubi_device {
339 struct cdev cdev;
340 struct device dev;
341 int ubi_num;
342 char ubi_name[sizeof(UBI_NAME_STR)+5];
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400343 int vol_count;
344 struct ubi_volume *volumes[UBI_MAX_VOLUMES+UBI_INT_VOL_COUNT];
345 spinlock_t volumes_lock;
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200346 int ref_count;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400347
348 int rsvd_pebs;
349 int avail_pebs;
350 int beb_rsvd_pebs;
351 int beb_rsvd_level;
352
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200353 int autoresize_vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400354 int vtbl_slots;
355 int vtbl_size;
356 struct ubi_vtbl_record *vtbl;
Artem Bityutskiycae0a772007-12-17 12:46:48 +0200357 struct mutex volumes_mutex;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400358
359 int max_ec;
Artem Bityutskiy4ccf8cf2008-01-16 15:44:24 +0200360 /* TODO: mean_ec is not updated run-time, fix */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400361 int mean_ec;
362
363 /* EBA unit's stuff */
364 unsigned long long global_sqnum;
365 spinlock_t ltree_lock;
366 struct rb_root ltree;
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300367 struct mutex alc_mutex;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400368
369 /* Wear-leveling unit's stuff */
370 struct rb_root used;
371 struct rb_root free;
372 struct rb_root scrub;
373 struct {
374 struct rb_root pnum;
375 struct rb_root aec;
376 } prot;
377 spinlock_t wl_lock;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200378 struct mutex move_mutex;
Artem Bityutskiy593dd332007-12-18 15:54:35 +0200379 struct rw_semaphore work_sem;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400380 int wl_scheduled;
381 struct ubi_wl_entry **lookuptbl;
382 unsigned long long abs_ec;
383 struct ubi_wl_entry *move_from;
384 struct ubi_wl_entry *move_to;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400385 int move_to_put;
386 struct list_head works;
387 int works_count;
388 struct task_struct *bgt_thread;
389 int thread_enabled;
390 char bgt_name[sizeof(UBI_BGT_NAME_PATTERN)+2];
391
392 /* I/O unit's stuff */
393 long long flash_size;
394 int peb_count;
395 int peb_size;
396 int bad_peb_count;
397 int good_peb_count;
398 int min_io_size;
399 int hdrs_min_io_size;
400 int ro_mode;
401 int leb_size;
402 int leb_start;
403 int ec_hdr_alsize;
404 int vid_hdr_alsize;
405 int vid_hdr_offset;
406 int vid_hdr_aloffset;
407 int vid_hdr_shift;
408 int bad_allowed;
409 struct mtd_info *mtd;
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300410
411 void *peb_buf1;
412 void *peb_buf2;
413 struct mutex buf_mutex;
Artem Bityutskiy783b2732007-12-25 18:13:33 +0200414 struct mutex ckvol_mutex;
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300415#ifdef CONFIG_MTD_UBI_DEBUG
416 void *dbg_peb_buf;
417 struct mutex dbg_buf_mutex;
418#endif
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400419};
420
Artem Bityutskiy06b68ba2007-12-16 12:49:01 +0200421extern struct kmem_cache *ubi_wl_entry_slab;
Artem Bityutskiy9f961b52007-12-16 16:59:31 +0200422extern struct file_operations ubi_ctrl_cdev_operations;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400423extern struct file_operations ubi_cdev_operations;
424extern struct file_operations ubi_vol_cdev_operations;
425extern struct class *ubi_class;
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200426extern struct mutex ubi_devices_mutex;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400427
428/* vtbl.c */
429int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
430 struct ubi_vtbl_record *vtbl_rec);
431int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_scan_info *si);
432
433/* vmt.c */
434int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req);
435int ubi_remove_volume(struct ubi_volume_desc *desc);
436int ubi_resize_volume(struct ubi_volume_desc *desc, int reserved_pebs);
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200437int ubi_add_volume(struct ubi_device *ubi, struct ubi_volume *vol);
438void ubi_free_volume(struct ubi_device *ubi, struct ubi_volume *vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400439
440/* upd.c */
Artem Bityutskiy1b68d0e2008-01-24 17:04:01 +0200441int ubi_start_update(struct ubi_device *ubi, struct ubi_volume *vol,
442 long long bytes);
443int ubi_more_update_data(struct ubi_device *ubi, struct ubi_volume *vol,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400444 const void __user *buf, int count);
Artem Bityutskiye6538792008-01-24 18:48:21 +0200445int ubi_start_leb_change(struct ubi_device *ubi, struct ubi_volume *vol,
446 const struct ubi_leb_change_req *req);
447int ubi_more_leb_change_data(struct ubi_device *ubi, struct ubi_volume *vol,
448 const void __user *buf, int count);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400449
450/* misc.c */
451int ubi_calc_data_len(const struct ubi_device *ubi, const void *buf, int length);
452int ubi_check_volume(struct ubi_device *ubi, int vol_id);
453void ubi_calculate_reserved(struct ubi_device *ubi);
454
455/* gluebi.c */
456#ifdef CONFIG_MTD_UBI_GLUEBI
457int ubi_create_gluebi(struct ubi_device *ubi, struct ubi_volume *vol);
458int ubi_destroy_gluebi(struct ubi_volume *vol);
Artem Bityutskiy941dfb02007-05-05 16:33:13 +0300459void ubi_gluebi_updated(struct ubi_volume *vol);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400460#else
461#define ubi_create_gluebi(ubi, vol) 0
462#define ubi_destroy_gluebi(vol) 0
Artem Bityutskiy941dfb02007-05-05 16:33:13 +0300463#define ubi_gluebi_updated(vol)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400464#endif
465
466/* eba.c */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200467int ubi_eba_unmap_leb(struct ubi_device *ubi, struct ubi_volume *vol,
468 int lnum);
469int ubi_eba_read_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
470 void *buf, int offset, int len, int check);
471int ubi_eba_write_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400472 const void *buf, int offset, int len, int dtype);
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200473int ubi_eba_write_leb_st(struct ubi_device *ubi, struct ubi_volume *vol,
474 int lnum, const void *buf, int len, int dtype,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400475 int used_ebs);
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200476int ubi_eba_atomic_leb_change(struct ubi_device *ubi, struct ubi_volume *vol,
477 int lnum, const void *buf, int len, int dtype);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400478int ubi_eba_copy_leb(struct ubi_device *ubi, int from, int to,
479 struct ubi_vid_hdr *vid_hdr);
480int ubi_eba_init_scan(struct ubi_device *ubi, struct ubi_scan_info *si);
481void ubi_eba_close(const struct ubi_device *ubi);
482
483/* wl.c */
484int ubi_wl_get_peb(struct ubi_device *ubi, int dtype);
485int ubi_wl_put_peb(struct ubi_device *ubi, int pnum, int torture);
486int ubi_wl_flush(struct ubi_device *ubi);
487int ubi_wl_scrub_peb(struct ubi_device *ubi, int pnum);
488int ubi_wl_init_scan(struct ubi_device *ubi, struct ubi_scan_info *si);
489void ubi_wl_close(struct ubi_device *ubi);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200490int ubi_thread(void *u);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400491
492/* io.c */
493int ubi_io_read(const struct ubi_device *ubi, void *buf, int pnum, int offset,
494 int len);
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300495int ubi_io_write(struct ubi_device *ubi, const void *buf, int pnum, int offset,
496 int len);
497int ubi_io_sync_erase(struct ubi_device *ubi, int pnum, int torture);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400498int ubi_io_is_bad(const struct ubi_device *ubi, int pnum);
499int ubi_io_mark_bad(const struct ubi_device *ubi, int pnum);
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300500int ubi_io_read_ec_hdr(struct ubi_device *ubi, int pnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400501 struct ubi_ec_hdr *ec_hdr, int verbose);
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300502int ubi_io_write_ec_hdr(struct ubi_device *ubi, int pnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400503 struct ubi_ec_hdr *ec_hdr);
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300504int ubi_io_read_vid_hdr(struct ubi_device *ubi, int pnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400505 struct ubi_vid_hdr *vid_hdr, int verbose);
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300506int ubi_io_write_vid_hdr(struct ubi_device *ubi, int pnum,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400507 struct ubi_vid_hdr *vid_hdr);
508
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200509/* build.c */
Artem Bityutskiy897a3162007-12-18 18:23:39 +0200510int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num, int vid_hdr_offset);
Artem Bityutskiycdfa7882007-12-17 20:33:20 +0200511int ubi_detach_mtd_dev(int ubi_num, int anyway);
Artem Bityutskiye73f4452007-12-17 17:37:26 +0200512struct ubi_device *ubi_get_device(int ubi_num);
513void ubi_put_device(struct ubi_device *ubi);
514struct ubi_device *ubi_get_by_major(int major);
515int ubi_major2num(int major);
516
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400517/*
518 * ubi_rb_for_each_entry - walk an RB-tree.
519 * @rb: a pointer to type 'struct rb_node' to to use as a loop counter
520 * @pos: a pointer to RB-tree entry type to use as a loop counter
521 * @root: RB-tree's root
522 * @member: the name of the 'struct rb_node' within the RB-tree entry
523 */
524#define ubi_rb_for_each_entry(rb, pos, root, member) \
525 for (rb = rb_first(root), \
526 pos = (rb ? container_of(rb, typeof(*pos), member) : NULL); \
527 rb; \
528 rb = rb_next(rb), pos = container_of(rb, typeof(*pos), member))
529
530/**
531 * ubi_zalloc_vid_hdr - allocate a volume identifier header object.
532 * @ubi: UBI device description object
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300533 * @gfp_flags: GFP flags to allocate with
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400534 *
535 * This function returns a pointer to the newly allocated and zero-filled
536 * volume identifier header object in case of success and %NULL in case of
537 * failure.
538 */
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300539static inline struct ubi_vid_hdr *
540ubi_zalloc_vid_hdr(const struct ubi_device *ubi, gfp_t gfp_flags)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400541{
542 void *vid_hdr;
543
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300544 vid_hdr = kzalloc(ubi->vid_hdr_alsize, gfp_flags);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400545 if (!vid_hdr)
546 return NULL;
547
548 /*
549 * VID headers may be stored at un-aligned flash offsets, so we shift
550 * the pointer.
551 */
552 return vid_hdr + ubi->vid_hdr_shift;
553}
554
555/**
556 * ubi_free_vid_hdr - free a volume identifier header object.
557 * @ubi: UBI device description object
558 * @vid_hdr: the object to free
559 */
560static inline void ubi_free_vid_hdr(const struct ubi_device *ubi,
561 struct ubi_vid_hdr *vid_hdr)
562{
563 void *p = vid_hdr;
564
565 if (!p)
566 return;
567
568 kfree(p - ubi->vid_hdr_shift);
569}
570
571/*
572 * This function is equivalent to 'ubi_io_read()', but @offset is relative to
573 * the beginning of the logical eraseblock, not to the beginning of the
574 * physical eraseblock.
575 */
576static inline int ubi_io_read_data(const struct ubi_device *ubi, void *buf,
577 int pnum, int offset, int len)
578{
579 ubi_assert(offset >= 0);
580 return ubi_io_read(ubi, buf, pnum, offset + ubi->leb_start, len);
581}
582
583/*
584 * This function is equivalent to 'ubi_io_write()', but @offset is relative to
585 * the beginning of the logical eraseblock, not to the beginning of the
586 * physical eraseblock.
587 */
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300588static inline int ubi_io_write_data(struct ubi_device *ubi, const void *buf,
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400589 int pnum, int offset, int len)
590{
591 ubi_assert(offset >= 0);
592 return ubi_io_write(ubi, buf, pnum, offset + ubi->leb_start, len);
593}
594
595/**
596 * ubi_ro_mode - switch to read-only mode.
597 * @ubi: UBI device description object
598 */
599static inline void ubi_ro_mode(struct ubi_device *ubi)
600{
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200601 if (!ubi->ro_mode) {
602 ubi->ro_mode = 1;
603 ubi_warn("switch to read-only mode");
604 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400605}
606
607/**
608 * vol_id2idx - get table index by volume ID.
609 * @ubi: UBI device description object
610 * @vol_id: volume ID
611 */
612static inline int vol_id2idx(const struct ubi_device *ubi, int vol_id)
613{
614 if (vol_id >= UBI_INTERNAL_VOL_START)
615 return vol_id - UBI_INTERNAL_VOL_START + ubi->vtbl_slots;
616 else
617 return vol_id;
618}
619
620/**
621 * idx2vol_id - get volume ID by table index.
622 * @ubi: UBI device description object
623 * @idx: table index
624 */
625static inline int idx2vol_id(const struct ubi_device *ubi, int idx)
626{
627 if (idx >= ubi->vtbl_slots)
628 return idx - ubi->vtbl_slots + UBI_INTERNAL_VOL_START;
629 else
630 return idx;
631}
632
633#endif /* !__UBI_UBI_H__ */