⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ubi.h

📁 基于linux-2.6.28的mtd驱动
💻 H
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) International Business Machines Corp., 2006 * Copyright (c) Nokia Corporation, 2006, 2007 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See * the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Artem Bityutskiy (Битюцкий Артём) */#ifndef __UBI_UBI_H__#define __UBI_UBI_H__#include <linux/init.h>#include <linux/types.h>#include <linux/list.h>#include <linux/rbtree.h>#include <linux/sched.h>#include <linux/wait.h>#include <linux/mutex.h>#include <linux/rwsem.h>#include <linux/spinlock.h>#include <linux/fs.h>#include <linux/cdev.h>#include <linux/device.h>#include <linux/string.h>#include <linux/vmalloc.h>#include <linux/mtd/mtd.h>#include <linux/mtd/ubi.h>#include "ubi-media.h"#include "scan.h"#include "debug.h"/* Maximum number of supported UBI devices */#define UBI_MAX_DEVICES 32/* UBI name used for character devices, sysfs, etc */#define UBI_NAME_STR "ubi"/* Normal UBI messages */#define ubi_msg(fmt, ...) printk(KERN_NOTICE "UBI: " fmt "\n", ##__VA_ARGS__)/* UBI warning messages */#define ubi_warn(fmt, ...) printk(KERN_WARNING "UBI warning: %s: " fmt "\n", \				  __func__, ##__VA_ARGS__)/* UBI error messages */#define ubi_err(fmt, ...) printk(KERN_ERR "UBI error: %s: " fmt "\n", \				 __func__, ##__VA_ARGS__)/* Lowest number PEBs reserved for bad PEB handling */#define MIN_RESEVED_PEBS 2/* Background thread name pattern */#define UBI_BGT_NAME_PATTERN "ubi_bgt%dd"/* This marker in the EBA table means that the LEB is um-mapped */#define UBI_LEB_UNMAPPED -1/* * In case of errors, UBI tries to repeat the operation several times before * returning error. The below constant defines how many times UBI re-tries. */#define UBI_IO_RETRIES 3/* * Error codes returned by the I/O sub-system. * * UBI_IO_PEB_EMPTY: the physical eraseblock is empty, i.e. it contains only *                   %0xFF bytes * UBI_IO_PEB_FREE: the physical eraseblock is free, i.e. it contains only a *                  valid erase counter header, and the rest are %0xFF bytes * UBI_IO_BAD_EC_HDR: the erase counter header is corrupted (bad magic or CRC) * UBI_IO_BAD_VID_HDR: the volume identifier header is corrupted (bad magic or *                     CRC) * UBI_IO_BITFLIPS: bit-flips were detected and corrected */enum {	UBI_IO_PEB_EMPTY = 1,	UBI_IO_PEB_FREE,	UBI_IO_BAD_EC_HDR,	UBI_IO_BAD_VID_HDR,	UBI_IO_BITFLIPS};/** * struct ubi_wl_entry - wear-leveling entry. * @rb: link in the corresponding RB-tree * @ec: erase counter * @pnum: physical eraseblock number * * This data structure is used in the WL sub-system. Each physical eraseblock * has a corresponding &struct wl_entry object which may be kept in different * RB-trees. See WL sub-system for details. */struct ubi_wl_entry {	struct rb_node rb;	int ec;	int pnum;};/** * struct ubi_ltree_entry - an entry in the lock tree. * @rb: links RB-tree nodes * @vol_id: volume ID of the locked logical eraseblock * @lnum: locked logical eraseblock number * @users: how many tasks are using this logical eraseblock or wait for it * @mutex: read/write mutex to implement read/write access serialization to *         the (@vol_id, @lnum) logical eraseblock * * This data structure is used in the EBA sub-system to implement per-LEB * locking. When a logical eraseblock is being locked - corresponding * &struct ubi_ltree_entry object is inserted to the lock tree (@ubi->ltree). * See EBA sub-system for details. */struct ubi_ltree_entry {	struct rb_node rb;	int vol_id;	int lnum;	int users;	struct rw_semaphore mutex;};/** * struct ubi_rename_entry - volume re-name description data structure. * @new_name_len: new volume name length * @new_name: new volume name * @remove: if not zero, this volume should be removed, not re-named * @desc: descriptor of the volume * @list: links re-name entries into a list * * This data structure is utilized in the multiple volume re-name code. Namely, * UBI first creates a list of &struct ubi_rename_entry objects from the * &struct ubi_rnvol_req request object, and then utilizes this list to do all * the job. */struct ubi_rename_entry {	int new_name_len;	char new_name[UBI_VOL_NAME_MAX + 1];	int remove;	struct ubi_volume_desc *desc;	struct list_head list;};struct ubi_volume_desc;/** * struct ubi_volume - UBI volume description data structure. * @dev: device object to make use of the the Linux device model * @cdev: character device object to create character device * @ubi: reference to the UBI device description object * @vol_id: volume ID * @ref_count: volume reference count * @readers: number of users holding this volume in read-only mode * @writers: number of users holding this volume in read-write mode * @exclusive: whether somebody holds this volume in exclusive mode * * @reserved_pebs: how many physical eraseblocks are reserved for this volume * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME) * @usable_leb_size: logical eraseblock size without padding * @used_ebs: how many logical eraseblocks in this volume contain data * @last_eb_bytes: how many bytes are stored in the last logical eraseblock * @used_bytes: how many bytes of data this volume contains * @alignment: volume alignment * @data_pad: how many bytes are not used at the end of physical eraseblocks to *            satisfy the requested alignment * @name_len: volume name length * @name: volume name * * @upd_ebs: how many eraseblocks are expected to be updated * @ch_lnum: LEB number which is being changing by the atomic LEB change *           operation * @ch_dtype: data persistency type which is being changing by the atomic LEB *            change operation * @upd_bytes: how many bytes are expected to be received for volume update or *             atomic LEB change * @upd_received: how many bytes were already received for volume update or *                atomic LEB change * @upd_buf: update buffer which is used to collect update data or data for *           atomic LEB change * * @eba_tbl: EBA table of this volume (LEB->PEB mapping) * @checked: %1 if this static volume was checked * @corrupted: %1 if the volume is corrupted (static volumes only) * @upd_marker: %1 if the update marker is set for this volume * @updating: %1 if the volume is being updated * @changing_leb: %1 if the atomic LEB change ioctl command is in progress * * @gluebi_desc: gluebi UBI volume descriptor * @gluebi_refcount: reference count of the gluebi MTD device * @gluebi_mtd: MTD device description object of the gluebi MTD device * * The @corrupted field indicates that the volume's contents is corrupted. * Since UBI protects only static volumes, this field is not relevant to * dynamic volumes - it is user's responsibility to assure their data * integrity. * * The @upd_marker flag indicates that this volume is either being updated at * the moment or is damaged because of an unclean reboot. */struct ubi_volume {	struct device dev;	struct cdev cdev;	struct ubi_device *ubi;	int vol_id;	int ref_count;	int readers;	int writers;	int exclusive;	int reserved_pebs;	int vol_type;	int usable_leb_size;	int used_ebs;	int last_eb_bytes;	long long used_bytes;	int alignment;	int data_pad;	int name_len;	char name[UBI_VOL_NAME_MAX + 1];	int upd_ebs;	int ch_lnum;	int ch_dtype;	long long upd_bytes;	long long upd_received;	void *upd_buf;	int *eba_tbl;	unsigned int checked:1;	unsigned int corrupted:1;	unsigned int upd_marker:1;	unsigned int updating:1;	unsigned int changing_leb:1;#ifdef CONFIG_MTD_UBI_GLUEBI	/*	 * Gluebi-related stuff may be compiled out.	 * Note: this should not be built into UBI but should be a separate	 * ubimtd driver which works on top of UBI and emulates MTD devices.	 */	struct ubi_volume_desc *gluebi_desc;	int gluebi_refcount;	struct mtd_info gluebi_mtd;#endif};/** * struct ubi_volume_desc - UBI volume descriptor returned when it is opened. * @vol: reference to the corresponding volume description object * @mode: open mode (%UBI_READONLY, %UBI_READWRITE, or %UBI_EXCLUSIVE) */struct ubi_volume_desc {	struct ubi_volume *vol;	int mode;};struct ubi_wl_entry;/** * struct ubi_device - UBI device description structure * @dev: UBI device object to use the the Linux device model * @cdev: character device object to create character device * @ubi_num: UBI device number * @ubi_name: UBI device name * @vol_count: number of volumes in this UBI device * @volumes: volumes of this UBI device * @volumes_lock: protects @volumes, @rsvd_pebs, @avail_pebs, beb_rsvd_pebs, *                @beb_rsvd_level, @bad_peb_count, @good_peb_count, @vol_count, *                @vol->readers, @vol->writers, @vol->exclusive, *                @vol->ref_count, @vol->mapping and @vol->eba_tbl. * @ref_count: count of references on the UBI device * * @rsvd_pebs: count of reserved physical eraseblocks * @avail_pebs: count of available physical eraseblocks * @beb_rsvd_pebs: how many physical eraseblocks are reserved for bad PEB *                 handling * @beb_rsvd_level: normal level of PEBs reserved for bad PEB handling * * @autoresize_vol_id: ID of the volume which has to be auto-resized at the end *                     of UBI ititializetion * @vtbl_slots: how many slots are available in the volume table * @vtbl_size: size of the volume table in bytes * @vtbl: in-RAM volume table copy * @volumes_mutex: protects on-flash volume table and serializes volume *                 changes, like creation, deletion, update, re-size and re-name * * @max_ec: current highest erase counter value * @mean_ec: current mean erase counter value * * @global_sqnum: global sequence number * @ltree_lock: protects the lock tree and @global_sqnum * @ltree: the lock tree * @alc_mutex: serializes "atomic LEB change" operations * * @used: RB-tree of used physical eraseblocks * @free: RB-tree of free physical eraseblocks * @scrub: RB-tree of physical eraseblocks which need scrubbing * @prot: protection trees * @prot.pnum: protection tree indexed by physical eraseblock numbers * @prot.aec: protection tree indexed by absolute erase counter value * @wl_lock: protects the @used, @free, @prot, @lookuptbl, @abs_ec, @move_from, *           @move_to, @move_to_put @erase_pending, @wl_scheduled, and @works *           fields * @move_mutex: serializes eraseblock moves * @work_sem: sycnhronizes the WL worker with use tasks * @wl_scheduled: non-zero if the wear-leveling was scheduled * @lookuptbl: a table to quickly find a &struct ubi_wl_entry object for any *             physical eraseblock * @abs_ec: absolute erase counter * @move_from: physical eraseblock from where the data is being moved * @move_to: physical eraseblock where the data is being moved to * @move_to_put: if the "to" PEB was put * @works: list of pending works * @works_count: count of pending works * @bgt_thread: background thread description object * @thread_enabled: if the background thread is enabled * @bgt_name: background thread name * * @flash_size: underlying MTD device size (in bytes)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -