scan.h 5.8 KB
Newer Older
A
Artem B. Bityutskiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
/*
 * Copyright (c) International Business Machines Corp., 2006
 *
 * 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_SCAN_H__
#define __UBI_SCAN_H__

/* The erase counter value for this physical eraseblock is unknown */
#define UBI_SCAN_UNKNOWN_EC (-1)

/**
 * struct ubi_scan_leb - scanning information about a physical eraseblock.
 * @ec: erase counter (%UBI_SCAN_UNKNOWN_EC if it is unknown)
 * @pnum: physical eraseblock number
 * @lnum: logical eraseblock number
 * @scrub: if this physical eraseblock needs scrubbing
 * @sqnum: sequence number
 * @u: unions RB-tree or @list links
 * @u.rb: link in the per-volume RB-tree of &struct ubi_scan_leb objects
 * @u.list: link in one of the eraseblock lists
 *
 * One object of this type is allocated for each physical eraseblock during
 * scanning.
 */
struct ubi_scan_leb {
	int ec;
	int pnum;
	int lnum;
	int scrub;
	unsigned long long sqnum;
	union {
		struct rb_node rb;
		struct list_head list;
	} u;
};

/**
 * struct ubi_scan_volume - scanning information about a volume.
 * @vol_id: volume ID
 * @highest_lnum: highest logical eraseblock number in this volume
 * @leb_count: number of logical eraseblocks in this volume
 * @vol_type: volume type
 * @used_ebs: number of used logical eraseblocks in this volume (only for
A
Artem Bityutskiy 已提交
60
 *            static volumes)
A
Artem B. Bityutskiy 已提交
61
 * @last_data_size: amount of data in the last logical eraseblock of this
A
Artem Bityutskiy 已提交
62 63
 *                  volume (always equivalent to the usable logical eraseblock
 *                  size in case of dynamic volumes)
A
Artem B. Bityutskiy 已提交
64
 * @data_pad: how many bytes at the end of logical eraseblocks of this volume
A
Artem Bityutskiy 已提交
65
 *            are not used (due to volume alignment)
A
Artem B. Bityutskiy 已提交
66 67 68
 * @compat: compatibility flags of this volume
 * @rb: link in the volume RB-tree
 * @root: root of the RB-tree containing all the eraseblock belonging to this
A
Artem Bityutskiy 已提交
69
 *        volume (&struct ubi_scan_leb objects)
A
Artem B. Bityutskiy 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
 *
 * One object of this type is allocated for each volume during scanning.
 */
struct ubi_scan_volume {
	int vol_id;
	int highest_lnum;
	int leb_count;
	int vol_type;
	int used_ebs;
	int last_data_size;
	int data_pad;
	int compat;
	struct rb_node rb;
	struct rb_root root;
};

/**
 * struct ubi_scan_info - UBI scanning information.
 * @volumes: root of the volume RB-tree
 * @corr: list of corrupted physical eraseblocks
 * @free: list of free physical eraseblocks
 * @erase: list of physical eraseblocks which have to be erased
 * @alien: list of physical eraseblocks which should not be used by UBI (e.g.,
A
Artem Bityutskiy 已提交
93
 *         those belonging to "preserve"-compatible internal volumes)
94 95 96 97 98 99 100
 * @used_peb_count: count of used PEBs
 * @corr_peb_count: count of PEBs in the @corr list
 * @read_err_count: count of PEBs read with error (%UBI_IO_BAD_HDR_READ was
 *                  returned)
 * @free_peb_count: count of PEBs in the @free list
 * @erase_peb_count: count of PEBs in the @erase list
 * @alien_peb_count: count of PEBs in the @alien list
A
Artem B. Bityutskiy 已提交
101 102 103 104 105 106 107 108 109 110 111 112
 * @bad_peb_count: count of bad physical eraseblocks
 * @vols_found: number of volumes found during scanning
 * @highest_vol_id: highest volume ID
 * @is_empty: flag indicating whether the MTD device is empty or not
 * @min_ec: lowest erase counter value
 * @max_ec: highest erase counter value
 * @max_sqnum: highest sequence number value
 * @mean_ec: mean erase counter value
 * @ec_sum: a temporary variable used when calculating @mean_ec
 * @ec_count: a temporary variable used when calculating @mean_ec
 *
 * This data structure contains the result of scanning and may be used by other
A
Artem Bityutskiy 已提交
113 114
 * UBI sub-systems to build final UBI data structures, further error-recovery
 * and so on.
A
Artem B. Bityutskiy 已提交
115 116 117 118 119 120 121
 */
struct ubi_scan_info {
	struct rb_root volumes;
	struct list_head corr;
	struct list_head free;
	struct list_head erase;
	struct list_head alien;
122 123 124 125 126 127
	int used_peb_count;
	int corr_peb_count;
	int read_err_count;
	int free_peb_count;
	int erase_peb_count;
	int alien_peb_count;
A
Artem B. Bityutskiy 已提交
128 129 130 131 132 133 134 135
	int bad_peb_count;
	int vols_found;
	int highest_vol_id;
	int is_empty;
	int min_ec;
	int max_ec;
	unsigned long long max_sqnum;
	int mean_ec;
A
Artem Bityutskiy 已提交
136
	uint64_t ec_sum;
A
Artem B. Bityutskiy 已提交
137 138 139 140 141 142 143
	int ec_count;
};

struct ubi_device;
struct ubi_vid_hdr;

/*
A
Artem Bityutskiy 已提交
144
 * ubi_scan_move_to_list - move a PEB from the volume tree to a list.
A
Artem B. Bityutskiy 已提交
145 146
 *
 * @sv: volume scanning information
147
 * @seb: scanning eraseblock information
A
Artem B. Bityutskiy 已提交
148 149 150 151 152 153 154 155 156 157
 * @list: the list to move to
 */
static inline void ubi_scan_move_to_list(struct ubi_scan_volume *sv,
					 struct ubi_scan_leb *seb,
					 struct list_head *list)
{
		rb_erase(&seb->u.rb, &sv->root);
		list_add_tail(&seb->u.list, list);
}

158
int ubi_scan_add_used(struct ubi_device *ubi, struct ubi_scan_info *si,
A
Artem B. Bityutskiy 已提交
159 160 161 162 163 164 165
		      int pnum, int ec, const struct ubi_vid_hdr *vid_hdr,
		      int bitflips);
struct ubi_scan_volume *ubi_scan_find_sv(const struct ubi_scan_info *si,
					 int vol_id);
struct ubi_scan_leb *ubi_scan_find_seb(const struct ubi_scan_volume *sv,
				       int lnum);
void ubi_scan_rm_volume(struct ubi_scan_info *si, struct ubi_scan_volume *sv);
166
struct ubi_scan_leb *ubi_scan_get_free_peb(struct ubi_device *ubi,
A
Artem B. Bityutskiy 已提交
167
					   struct ubi_scan_info *si);
168 169
int ubi_scan_erase_peb(struct ubi_device *ubi, const struct ubi_scan_info *si,
		       int pnum, int ec);
A
Artem B. Bityutskiy 已提交
170 171 172 173
struct ubi_scan_info *ubi_scan(struct ubi_device *ubi);
void ubi_scan_destroy_si(struct ubi_scan_info *si);

#endif /* !__UBI_SCAN_H__ */