ubi.h 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148
  1. /*
  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. #ifndef __UBI_UBI_H__
  22. #define __UBI_UBI_H__
  23. #include <linux/types.h>
  24. #include <linux/list.h>
  25. #include <linux/rbtree.h>
  26. #include <linux/sched.h>
  27. #include <linux/wait.h>
  28. #include <linux/mutex.h>
  29. #include <linux/rwsem.h>
  30. #include <linux/spinlock.h>
  31. #include <linux/fs.h>
  32. #include <linux/cdev.h>
  33. #include <linux/device.h>
  34. #include <linux/slab.h>
  35. #include <linux/string.h>
  36. #include <linux/vmalloc.h>
  37. #include <linux/notifier.h>
  38. #include <linux/mtd/mtd.h>
  39. #include <linux/mtd/ubi.h>
  40. #include <asm/pgtable.h>
  41. #include "ubi-media.h"
  42. /* Maximum number of supported UBI devices */
  43. #define UBI_MAX_DEVICES 32
  44. /* UBI name used for character devices, sysfs, etc */
  45. #define UBI_NAME_STR "ubi"
  46. /* Normal UBI messages */
  47. #define ubi_msg(ubi, fmt, ...) pr_notice(UBI_NAME_STR "%d: " fmt "\n", \
  48. ubi->ubi_num, ##__VA_ARGS__)
  49. /* UBI warning messages */
  50. #define ubi_warn(ubi, fmt, ...) pr_warn(UBI_NAME_STR "%d warning: %s: " fmt "\n", \
  51. ubi->ubi_num, __func__, ##__VA_ARGS__)
  52. /* UBI error messages */
  53. #define ubi_err(ubi, fmt, ...) pr_err(UBI_NAME_STR "%d error: %s: " fmt "\n", \
  54. ubi->ubi_num, __func__, ##__VA_ARGS__)
  55. /* Background thread name pattern */
  56. #define UBI_BGT_NAME_PATTERN "ubi_bgt%dd"
  57. /*
  58. * This marker in the EBA table means that the LEB is um-mapped.
  59. * NOTE! It has to have the same value as %UBI_ALL.
  60. */
  61. #define UBI_LEB_UNMAPPED -1
  62. /*
  63. * In case of errors, UBI tries to repeat the operation several times before
  64. * returning error. The below constant defines how many times UBI re-tries.
  65. */
  66. #define UBI_IO_RETRIES 3
  67. /*
  68. * Length of the protection queue. The length is effectively equivalent to the
  69. * number of (global) erase cycles PEBs are protected from the wear-leveling
  70. * worker.
  71. */
  72. #define UBI_PROT_QUEUE_LEN 10
  73. /* The volume ID/LEB number/erase counter is unknown */
  74. #define UBI_UNKNOWN -1
  75. /*
  76. * The UBI debugfs directory name pattern and maximum name length (3 for "ubi"
  77. * + 2 for the number plus 1 for the trailing zero byte.
  78. */
  79. #define UBI_DFS_DIR_NAME "ubi%d"
  80. #define UBI_DFS_DIR_LEN (3 + 2 + 1)
  81. /*
  82. * Error codes returned by the I/O sub-system.
  83. *
  84. * UBI_IO_FF: the read region of flash contains only 0xFFs
  85. * UBI_IO_FF_BITFLIPS: the same as %UBI_IO_FF, but also also there was a data
  86. * integrity error reported by the MTD driver
  87. * (uncorrectable ECC error in case of NAND)
  88. * UBI_IO_BAD_HDR: the EC or VID header is corrupted (bad magic or CRC)
  89. * UBI_IO_BAD_HDR_EBADMSG: the same as %UBI_IO_BAD_HDR, but also there was a
  90. * data integrity error reported by the MTD driver
  91. * (uncorrectable ECC error in case of NAND)
  92. * UBI_IO_BITFLIPS: bit-flips were detected and corrected
  93. *
  94. * Note, it is probably better to have bit-flip and ebadmsg as flags which can
  95. * be or'ed with other error code. But this is a big change because there are
  96. * may callers, so it does not worth the risk of introducing a bug
  97. */
  98. enum {
  99. UBI_IO_FF = 1,
  100. UBI_IO_FF_BITFLIPS,
  101. UBI_IO_BAD_HDR,
  102. UBI_IO_BAD_HDR_EBADMSG,
  103. UBI_IO_BITFLIPS,
  104. };
  105. /*
  106. * Return codes of the 'ubi_eba_copy_leb()' function.
  107. *
  108. * MOVE_CANCEL_RACE: canceled because the volume is being deleted, the source
  109. * PEB was put meanwhile, or there is I/O on the source PEB
  110. * MOVE_SOURCE_RD_ERR: canceled because there was a read error from the source
  111. * PEB
  112. * MOVE_TARGET_RD_ERR: canceled because there was a read error from the target
  113. * PEB
  114. * MOVE_TARGET_WR_ERR: canceled because there was a write error to the target
  115. * PEB
  116. * MOVE_TARGET_BITFLIPS: canceled because a bit-flip was detected in the
  117. * target PEB
  118. * MOVE_RETRY: retry scrubbing the PEB
  119. */
  120. enum {
  121. MOVE_CANCEL_RACE = 1,
  122. MOVE_SOURCE_RD_ERR,
  123. MOVE_TARGET_RD_ERR,
  124. MOVE_TARGET_WR_ERR,
  125. MOVE_TARGET_BITFLIPS,
  126. MOVE_RETRY,
  127. };
  128. /*
  129. * Return codes of the fastmap sub-system
  130. *
  131. * UBI_NO_FASTMAP: No fastmap super block was found
  132. * UBI_BAD_FASTMAP: A fastmap was found but it's unusable
  133. */
  134. enum {
  135. UBI_NO_FASTMAP = 1,
  136. UBI_BAD_FASTMAP,
  137. };
  138. /*
  139. * Flags for emulate_power_cut in ubi_debug_info
  140. *
  141. * POWER_CUT_EC_WRITE: Emulate a power cut when writing an EC header
  142. * POWER_CUT_VID_WRITE: Emulate a power cut when writing a VID header
  143. */
  144. enum {
  145. POWER_CUT_EC_WRITE = 0x01,
  146. POWER_CUT_VID_WRITE = 0x02,
  147. };
  148. /**
  149. * struct ubi_wl_entry - wear-leveling entry.
  150. * @u.rb: link in the corresponding (free/used) RB-tree
  151. * @u.list: link in the protection queue
  152. * @ec: erase counter
  153. * @pnum: physical eraseblock number
  154. *
  155. * This data structure is used in the WL sub-system. Each physical eraseblock
  156. * has a corresponding &struct wl_entry object which may be kept in different
  157. * RB-trees. See WL sub-system for details.
  158. */
  159. struct ubi_wl_entry {
  160. union {
  161. struct rb_node rb;
  162. struct list_head list;
  163. } u;
  164. int ec;
  165. int pnum;
  166. };
  167. /**
  168. * struct ubi_ltree_entry - an entry in the lock tree.
  169. * @rb: links RB-tree nodes
  170. * @vol_id: volume ID of the locked logical eraseblock
  171. * @lnum: locked logical eraseblock number
  172. * @users: how many tasks are using this logical eraseblock or wait for it
  173. * @mutex: read/write mutex to implement read/write access serialization to
  174. * the (@vol_id, @lnum) logical eraseblock
  175. *
  176. * This data structure is used in the EBA sub-system to implement per-LEB
  177. * locking. When a logical eraseblock is being locked - corresponding
  178. * &struct ubi_ltree_entry object is inserted to the lock tree (@ubi->ltree).
  179. * See EBA sub-system for details.
  180. */
  181. struct ubi_ltree_entry {
  182. struct rb_node rb;
  183. int vol_id;
  184. int lnum;
  185. int users;
  186. struct rw_semaphore mutex;
  187. };
  188. /**
  189. * struct ubi_rename_entry - volume re-name description data structure.
  190. * @new_name_len: new volume name length
  191. * @new_name: new volume name
  192. * @remove: if not zero, this volume should be removed, not re-named
  193. * @desc: descriptor of the volume
  194. * @list: links re-name entries into a list
  195. *
  196. * This data structure is utilized in the multiple volume re-name code. Namely,
  197. * UBI first creates a list of &struct ubi_rename_entry objects from the
  198. * &struct ubi_rnvol_req request object, and then utilizes this list to do all
  199. * the job.
  200. */
  201. struct ubi_rename_entry {
  202. int new_name_len;
  203. char new_name[UBI_VOL_NAME_MAX + 1];
  204. int remove;
  205. struct ubi_volume_desc *desc;
  206. struct list_head list;
  207. };
  208. struct ubi_volume_desc;
  209. /**
  210. * struct ubi_fastmap_layout - in-memory fastmap data structure.
  211. * @e: PEBs used by the current fastmap
  212. * @to_be_tortured: if non-zero tortured this PEB
  213. * @used_blocks: number of used PEBs
  214. * @max_pool_size: maximal size of the user pool
  215. * @max_wl_pool_size: maximal size of the pool used by the WL sub-system
  216. */
  217. struct ubi_fastmap_layout {
  218. struct ubi_wl_entry *e[UBI_FM_MAX_BLOCKS];
  219. int to_be_tortured[UBI_FM_MAX_BLOCKS];
  220. int used_blocks;
  221. int max_pool_size;
  222. int max_wl_pool_size;
  223. };
  224. /**
  225. * struct ubi_fm_pool - in-memory fastmap pool
  226. * @pebs: PEBs in this pool
  227. * @used: number of used PEBs
  228. * @size: total number of PEBs in this pool
  229. * @max_size: maximal size of the pool
  230. *
  231. * A pool gets filled with up to max_size.
  232. * If all PEBs within the pool are used a new fastmap will be written
  233. * to the flash and the pool gets refilled with empty PEBs.
  234. *
  235. */
  236. struct ubi_fm_pool {
  237. int pebs[UBI_FM_MAX_POOL_SIZE];
  238. int used;
  239. int size;
  240. int max_size;
  241. };
  242. /**
  243. * struct ubi_volume - UBI volume description data structure.
  244. * @dev: device object to make use of the the Linux device model
  245. * @cdev: character device object to create character device
  246. * @ubi: reference to the UBI device description object
  247. * @vol_id: volume ID
  248. * @ref_count: volume reference count
  249. * @readers: number of users holding this volume in read-only mode
  250. * @writers: number of users holding this volume in read-write mode
  251. * @exclusive: whether somebody holds this volume in exclusive mode
  252. * @metaonly: whether somebody is altering only meta data of this volume
  253. *
  254. * @reserved_pebs: how many physical eraseblocks are reserved for this volume
  255. * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME)
  256. * @usable_leb_size: logical eraseblock size without padding
  257. * @used_ebs: how many logical eraseblocks in this volume contain data
  258. * @last_eb_bytes: how many bytes are stored in the last logical eraseblock
  259. * @used_bytes: how many bytes of data this volume contains
  260. * @alignment: volume alignment
  261. * @data_pad: how many bytes are not used at the end of physical eraseblocks to
  262. * satisfy the requested alignment
  263. * @name_len: volume name length
  264. * @name: volume name
  265. *
  266. * @upd_ebs: how many eraseblocks are expected to be updated
  267. * @ch_lnum: LEB number which is being changing by the atomic LEB change
  268. * operation
  269. * @upd_bytes: how many bytes are expected to be received for volume update or
  270. * atomic LEB change
  271. * @upd_received: how many bytes were already received for volume update or
  272. * atomic LEB change
  273. * @upd_buf: update buffer which is used to collect update data or data for
  274. * atomic LEB change
  275. *
  276. * @eba_tbl: EBA table of this volume (LEB->PEB mapping)
  277. * @checked: %1 if this static volume was checked
  278. * @corrupted: %1 if the volume is corrupted (static volumes only)
  279. * @upd_marker: %1 if the update marker is set for this volume
  280. * @updating: %1 if the volume is being updated
  281. * @changing_leb: %1 if the atomic LEB change ioctl command is in progress
  282. * @direct_writes: %1 if direct writes are enabled for this volume
  283. *
  284. * The @corrupted field indicates that the volume's contents is corrupted.
  285. * Since UBI protects only static volumes, this field is not relevant to
  286. * dynamic volumes - it is user's responsibility to assure their data
  287. * integrity.
  288. *
  289. * The @upd_marker flag indicates that this volume is either being updated at
  290. * the moment or is damaged because of an unclean reboot.
  291. */
  292. struct ubi_volume {
  293. struct device dev;
  294. struct cdev cdev;
  295. struct ubi_device *ubi;
  296. int vol_id;
  297. int ref_count;
  298. int readers;
  299. int writers;
  300. int exclusive;
  301. int metaonly;
  302. int reserved_pebs;
  303. int vol_type;
  304. int usable_leb_size;
  305. int used_ebs;
  306. int last_eb_bytes;
  307. long long used_bytes;
  308. int alignment;
  309. int data_pad;
  310. int name_len;
  311. char name[UBI_VOL_NAME_MAX + 1];
  312. int upd_ebs;
  313. int ch_lnum;
  314. long long upd_bytes;
  315. long long upd_received;
  316. void *upd_buf;
  317. int *eba_tbl;
  318. unsigned int checked:1;
  319. unsigned int corrupted:1;
  320. unsigned int upd_marker:1;
  321. unsigned int updating:1;
  322. unsigned int changing_leb:1;
  323. unsigned int direct_writes:1;
  324. };
  325. /**
  326. * struct ubi_volume_desc - UBI volume descriptor returned when it is opened.
  327. * @vol: reference to the corresponding volume description object
  328. * @mode: open mode (%UBI_READONLY, %UBI_READWRITE, %UBI_EXCLUSIVE
  329. * or %UBI_METAONLY)
  330. */
  331. struct ubi_volume_desc {
  332. struct ubi_volume *vol;
  333. int mode;
  334. };
  335. struct ubi_wl_entry;
  336. /**
  337. * struct ubi_debug_info - debugging information for an UBI device.
  338. *
  339. * @chk_gen: if UBI general extra checks are enabled
  340. * @chk_io: if UBI I/O extra checks are enabled
  341. * @chk_fastmap: if UBI fastmap extra checks are enabled
  342. * @disable_bgt: disable the background task for testing purposes
  343. * @emulate_bitflips: emulate bit-flips for testing purposes
  344. * @emulate_io_failures: emulate write/erase failures for testing purposes
  345. * @emulate_power_cut: emulate power cut for testing purposes
  346. * @power_cut_counter: count down for writes left until emulated power cut
  347. * @power_cut_min: minimum number of writes before emulating a power cut
  348. * @power_cut_max: maximum number of writes until emulating a power cut
  349. * @dfs_dir_name: name of debugfs directory containing files of this UBI device
  350. * @dfs_dir: direntry object of the UBI device debugfs directory
  351. * @dfs_chk_gen: debugfs knob to enable UBI general extra checks
  352. * @dfs_chk_io: debugfs knob to enable UBI I/O extra checks
  353. * @dfs_chk_fastmap: debugfs knob to enable UBI fastmap extra checks
  354. * @dfs_disable_bgt: debugfs knob to disable the background task
  355. * @dfs_emulate_bitflips: debugfs knob to emulate bit-flips
  356. * @dfs_emulate_io_failures: debugfs knob to emulate write/erase failures
  357. * @dfs_emulate_power_cut: debugfs knob to emulate power cuts
  358. * @dfs_power_cut_min: debugfs knob for minimum writes before power cut
  359. * @dfs_power_cut_max: debugfs knob for maximum writes until power cut
  360. */
  361. struct ubi_debug_info {
  362. unsigned int chk_gen:1;
  363. unsigned int chk_io:1;
  364. unsigned int chk_fastmap:1;
  365. unsigned int disable_bgt:1;
  366. unsigned int emulate_bitflips:1;
  367. unsigned int emulate_io_failures:1;
  368. unsigned int emulate_power_cut:2;
  369. unsigned int power_cut_counter;
  370. unsigned int power_cut_min;
  371. unsigned int power_cut_max;
  372. char dfs_dir_name[UBI_DFS_DIR_LEN + 1];
  373. struct dentry *dfs_dir;
  374. struct dentry *dfs_chk_gen;
  375. struct dentry *dfs_chk_io;
  376. struct dentry *dfs_chk_fastmap;
  377. struct dentry *dfs_disable_bgt;
  378. struct dentry *dfs_emulate_bitflips;
  379. struct dentry *dfs_emulate_io_failures;
  380. struct dentry *dfs_emulate_power_cut;
  381. struct dentry *dfs_power_cut_min;
  382. struct dentry *dfs_power_cut_max;
  383. };
  384. /**
  385. * struct ubi_device - UBI device description structure
  386. * @dev: UBI device object to use the the Linux device model
  387. * @cdev: character device object to create character device
  388. * @ubi_num: UBI device number
  389. * @ubi_name: UBI device name
  390. * @vol_count: number of volumes in this UBI device
  391. * @volumes: volumes of this UBI device
  392. * @volumes_lock: protects @volumes, @rsvd_pebs, @avail_pebs, beb_rsvd_pebs,
  393. * @beb_rsvd_level, @bad_peb_count, @good_peb_count, @vol_count,
  394. * @vol->readers, @vol->writers, @vol->exclusive,
  395. * @vol->metaonly, @vol->ref_count, @vol->mapping and
  396. * @vol->eba_tbl.
  397. * @ref_count: count of references on the UBI device
  398. * @image_seq: image sequence number recorded on EC headers
  399. *
  400. * @rsvd_pebs: count of reserved physical eraseblocks
  401. * @avail_pebs: count of available physical eraseblocks
  402. * @beb_rsvd_pebs: how many physical eraseblocks are reserved for bad PEB
  403. * handling
  404. * @beb_rsvd_level: normal level of PEBs reserved for bad PEB handling
  405. *
  406. * @autoresize_vol_id: ID of the volume which has to be auto-resized at the end
  407. * of UBI initialization
  408. * @vtbl_slots: how many slots are available in the volume table
  409. * @vtbl_size: size of the volume table in bytes
  410. * @vtbl: in-RAM volume table copy
  411. * @device_mutex: protects on-flash volume table and serializes volume
  412. * creation, deletion, update, re-size, re-name and set
  413. * property
  414. *
  415. * @max_ec: current highest erase counter value
  416. * @mean_ec: current mean erase counter value
  417. *
  418. * @global_sqnum: global sequence number
  419. * @ltree_lock: protects the lock tree and @global_sqnum
  420. * @ltree: the lock tree
  421. * @alc_mutex: serializes "atomic LEB change" operations
  422. *
  423. * @fm_disabled: non-zero if fastmap is disabled (default)
  424. * @fm: in-memory data structure of the currently used fastmap
  425. * @fm_pool: in-memory data structure of the fastmap pool
  426. * @fm_wl_pool: in-memory data structure of the fastmap pool used by the WL
  427. * sub-system
  428. * @fm_protect: serializes ubi_update_fastmap(), protects @fm_buf and makes sure
  429. * that critical sections cannot be interrupted by ubi_update_fastmap()
  430. * @fm_buf: vmalloc()'d buffer which holds the raw fastmap
  431. * @fm_size: fastmap size in bytes
  432. * @fm_eba_sem: allows ubi_update_fastmap() to block EBA table changes
  433. * @fm_work: fastmap work queue
  434. * @fm_work_scheduled: non-zero if fastmap work was scheduled
  435. * @fast_attach: non-zero if UBI was attached by fastmap
  436. *
  437. * @used: RB-tree of used physical eraseblocks
  438. * @erroneous: RB-tree of erroneous used physical eraseblocks
  439. * @free: RB-tree of free physical eraseblocks
  440. * @free_count: Contains the number of elements in @free
  441. * @scrub: RB-tree of physical eraseblocks which need scrubbing
  442. * @pq: protection queue (contain physical eraseblocks which are temporarily
  443. * protected from the wear-leveling worker)
  444. * @pq_head: protection queue head
  445. * @wl_lock: protects the @used, @free, @pq, @pq_head, @lookuptbl, @move_from,
  446. * @move_to, @move_to_put @erase_pending, @wl_scheduled, @works,
  447. * @erroneous, @erroneous_peb_count, @fm_work_scheduled, @fm_pool,
  448. * and @fm_wl_pool fields
  449. * @move_mutex: serializes eraseblock moves
  450. * @work_sem: used to wait for all the scheduled works to finish and prevent
  451. * new works from being submitted
  452. * @wl_scheduled: non-zero if the wear-leveling was scheduled
  453. * @lookuptbl: a table to quickly find a &struct ubi_wl_entry object for any
  454. * physical eraseblock
  455. * @move_from: physical eraseblock from where the data is being moved
  456. * @move_to: physical eraseblock where the data is being moved to
  457. * @move_to_put: if the "to" PEB was put
  458. * @works: list of pending works
  459. * @works_count: count of pending works
  460. * @bgt_thread: background thread description object
  461. * @thread_enabled: if the background thread is enabled
  462. * @bgt_name: background thread name
  463. *
  464. * @flash_size: underlying MTD device size (in bytes)
  465. * @peb_count: count of physical eraseblocks on the MTD device
  466. * @peb_size: physical eraseblock size
  467. * @bad_peb_limit: top limit of expected bad physical eraseblocks
  468. * @bad_peb_count: count of bad physical eraseblocks
  469. * @good_peb_count: count of good physical eraseblocks
  470. * @corr_peb_count: count of corrupted physical eraseblocks (preserved and not
  471. * used by UBI)
  472. * @erroneous_peb_count: count of erroneous physical eraseblocks in @erroneous
  473. * @max_erroneous: maximum allowed amount of erroneous physical eraseblocks
  474. * @min_io_size: minimal input/output unit size of the underlying MTD device
  475. * @hdrs_min_io_size: minimal I/O unit size used for VID and EC headers
  476. * @ro_mode: if the UBI device is in read-only mode
  477. * @leb_size: logical eraseblock size
  478. * @leb_start: starting offset of logical eraseblocks within physical
  479. * eraseblocks
  480. * @ec_hdr_alsize: size of the EC header aligned to @hdrs_min_io_size
  481. * @vid_hdr_alsize: size of the VID header aligned to @hdrs_min_io_size
  482. * @vid_hdr_offset: starting offset of the volume identifier header (might be
  483. * unaligned)
  484. * @vid_hdr_aloffset: starting offset of the VID header aligned to
  485. * @hdrs_min_io_size
  486. * @vid_hdr_shift: contains @vid_hdr_offset - @vid_hdr_aloffset
  487. * @bad_allowed: whether the MTD device admits of bad physical eraseblocks or
  488. * not
  489. * @nor_flash: non-zero if working on top of NOR flash
  490. * @max_write_size: maximum amount of bytes the underlying flash can write at a
  491. * time (MTD write buffer size)
  492. * @mtd: MTD device descriptor
  493. *
  494. * @peb_buf: a buffer of PEB size used for different purposes
  495. * @buf_mutex: protects @peb_buf
  496. * @ckvol_mutex: serializes static volume checking when opening
  497. *
  498. * @dbg: debugging information for this UBI device
  499. */
  500. struct ubi_device {
  501. struct cdev cdev;
  502. struct device dev;
  503. int ubi_num;
  504. char ubi_name[sizeof(UBI_NAME_STR)+5];
  505. int vol_count;
  506. struct ubi_volume *volumes[UBI_MAX_VOLUMES+UBI_INT_VOL_COUNT];
  507. spinlock_t volumes_lock;
  508. int ref_count;
  509. int image_seq;
  510. int rsvd_pebs;
  511. int avail_pebs;
  512. int beb_rsvd_pebs;
  513. int beb_rsvd_level;
  514. int bad_peb_limit;
  515. int autoresize_vol_id;
  516. int vtbl_slots;
  517. int vtbl_size;
  518. struct ubi_vtbl_record *vtbl;
  519. struct mutex device_mutex;
  520. int max_ec;
  521. /* Note, mean_ec is not updated run-time - should be fixed */
  522. int mean_ec;
  523. /* EBA sub-system's stuff */
  524. unsigned long long global_sqnum;
  525. spinlock_t ltree_lock;
  526. struct rb_root ltree;
  527. struct mutex alc_mutex;
  528. /* Fastmap stuff */
  529. int fm_disabled;
  530. struct ubi_fastmap_layout *fm;
  531. struct ubi_fm_pool fm_pool;
  532. struct ubi_fm_pool fm_wl_pool;
  533. struct rw_semaphore fm_eba_sem;
  534. struct rw_semaphore fm_protect;
  535. void *fm_buf;
  536. size_t fm_size;
  537. struct work_struct fm_work;
  538. int fm_work_scheduled;
  539. int fast_attach;
  540. /* Wear-leveling sub-system's stuff */
  541. struct rb_root used;
  542. struct rb_root erroneous;
  543. struct rb_root free;
  544. int free_count;
  545. struct rb_root scrub;
  546. struct list_head pq[UBI_PROT_QUEUE_LEN];
  547. int pq_head;
  548. spinlock_t wl_lock;
  549. struct mutex move_mutex;
  550. struct rw_semaphore work_sem;
  551. int wl_scheduled;
  552. struct ubi_wl_entry **lookuptbl;
  553. struct ubi_wl_entry *move_from;
  554. struct ubi_wl_entry *move_to;
  555. int move_to_put;
  556. struct list_head works;
  557. int works_count;
  558. struct task_struct *bgt_thread;
  559. int thread_enabled;
  560. char bgt_name[sizeof(UBI_BGT_NAME_PATTERN)+2];
  561. /* I/O sub-system's stuff */
  562. long long flash_size;
  563. int peb_count;
  564. int peb_size;
  565. int bad_peb_count;
  566. int good_peb_count;
  567. int corr_peb_count;
  568. int erroneous_peb_count;
  569. int max_erroneous;
  570. int min_io_size;
  571. int hdrs_min_io_size;
  572. int ro_mode;
  573. int leb_size;
  574. int leb_start;
  575. int ec_hdr_alsize;
  576. int vid_hdr_alsize;
  577. int vid_hdr_offset;
  578. int vid_hdr_aloffset;
  579. int vid_hdr_shift;
  580. unsigned int bad_allowed:1;
  581. unsigned int nor_flash:1;
  582. int max_write_size;
  583. struct mtd_info *mtd;
  584. void *peb_buf;
  585. struct mutex buf_mutex;
  586. struct mutex ckvol_mutex;
  587. struct ubi_debug_info dbg;
  588. };
  589. /**
  590. * struct ubi_ainf_peb - attach information about a physical eraseblock.
  591. * @ec: erase counter (%UBI_UNKNOWN if it is unknown)
  592. * @pnum: physical eraseblock number
  593. * @vol_id: ID of the volume this LEB belongs to
  594. * @lnum: logical eraseblock number
  595. * @scrub: if this physical eraseblock needs scrubbing
  596. * @copy_flag: this LEB is a copy (@copy_flag is set in VID header of this LEB)
  597. * @sqnum: sequence number
  598. * @u: unions RB-tree or @list links
  599. * @u.rb: link in the per-volume RB-tree of &struct ubi_ainf_peb objects
  600. * @u.list: link in one of the eraseblock lists
  601. *
  602. * One object of this type is allocated for each physical eraseblock when
  603. * attaching an MTD device. Note, if this PEB does not belong to any LEB /
  604. * volume, the @vol_id and @lnum fields are initialized to %UBI_UNKNOWN.
  605. */
  606. struct ubi_ainf_peb {
  607. int ec;
  608. int pnum;
  609. int vol_id;
  610. int lnum;
  611. unsigned int scrub:1;
  612. unsigned int copy_flag:1;
  613. unsigned long long sqnum;
  614. union {
  615. struct rb_node rb;
  616. struct list_head list;
  617. } u;
  618. };
  619. /**
  620. * struct ubi_ainf_volume - attaching information about a volume.
  621. * @vol_id: volume ID
  622. * @highest_lnum: highest logical eraseblock number in this volume
  623. * @leb_count: number of logical eraseblocks in this volume
  624. * @vol_type: volume type
  625. * @used_ebs: number of used logical eraseblocks in this volume (only for
  626. * static volumes)
  627. * @last_data_size: amount of data in the last logical eraseblock of this
  628. * volume (always equivalent to the usable logical eraseblock
  629. * size in case of dynamic volumes)
  630. * @data_pad: how many bytes at the end of logical eraseblocks of this volume
  631. * are not used (due to volume alignment)
  632. * @compat: compatibility flags of this volume
  633. * @rb: link in the volume RB-tree
  634. * @root: root of the RB-tree containing all the eraseblock belonging to this
  635. * volume (&struct ubi_ainf_peb objects)
  636. *
  637. * One object of this type is allocated for each volume when attaching an MTD
  638. * device.
  639. */
  640. struct ubi_ainf_volume {
  641. int vol_id;
  642. int highest_lnum;
  643. int leb_count;
  644. int vol_type;
  645. int used_ebs;
  646. int last_data_size;
  647. int data_pad;
  648. int compat;
  649. struct rb_node rb;
  650. struct rb_root root;
  651. };
  652. /**
  653. * struct ubi_attach_info - MTD device attaching information.
  654. * @volumes: root of the volume RB-tree
  655. * @corr: list of corrupted physical eraseblocks
  656. * @free: list of free physical eraseblocks
  657. * @erase: list of physical eraseblocks which have to be erased
  658. * @alien: list of physical eraseblocks which should not be used by UBI (e.g.,
  659. * those belonging to "preserve"-compatible internal volumes)
  660. * @fastmap: list of physical eraseblocks which relate to fastmap (e.g.,
  661. * eraseblocks of the current and not yet erased old fastmap blocks)
  662. * @corr_peb_count: count of PEBs in the @corr list
  663. * @empty_peb_count: count of PEBs which are presumably empty (contain only
  664. * 0xFF bytes)
  665. * @alien_peb_count: count of PEBs in the @alien list
  666. * @bad_peb_count: count of bad physical eraseblocks
  667. * @maybe_bad_peb_count: count of bad physical eraseblocks which are not marked
  668. * as bad yet, but which look like bad
  669. * @vols_found: number of volumes found
  670. * @highest_vol_id: highest volume ID
  671. * @is_empty: flag indicating whether the MTD device is empty or not
  672. * @force_full_scan: flag indicating whether we need to do a full scan and drop
  673. all existing Fastmap data structures
  674. * @min_ec: lowest erase counter value
  675. * @max_ec: highest erase counter value
  676. * @max_sqnum: highest sequence number value
  677. * @mean_ec: mean erase counter value
  678. * @ec_sum: a temporary variable used when calculating @mean_ec
  679. * @ec_count: a temporary variable used when calculating @mean_ec
  680. * @aeb_slab_cache: slab cache for &struct ubi_ainf_peb objects
  681. *
  682. * This data structure contains the result of attaching an MTD device and may
  683. * be used by other UBI sub-systems to build final UBI data structures, further
  684. * error-recovery and so on.
  685. */
  686. struct ubi_attach_info {
  687. struct rb_root volumes;
  688. struct list_head corr;
  689. struct list_head free;
  690. struct list_head erase;
  691. struct list_head alien;
  692. struct list_head fastmap;
  693. int corr_peb_count;
  694. int empty_peb_count;
  695. int alien_peb_count;
  696. int bad_peb_count;
  697. int maybe_bad_peb_count;
  698. int vols_found;
  699. int highest_vol_id;
  700. int is_empty;
  701. int force_full_scan;
  702. int min_ec;
  703. int max_ec;
  704. unsigned long long max_sqnum;
  705. int mean_ec;
  706. uint64_t ec_sum;
  707. int ec_count;
  708. struct kmem_cache *aeb_slab_cache;
  709. };
  710. /**
  711. * struct ubi_work - UBI work description data structure.
  712. * @list: a link in the list of pending works
  713. * @func: worker function
  714. * @e: physical eraseblock to erase
  715. * @vol_id: the volume ID on which this erasure is being performed
  716. * @lnum: the logical eraseblock number
  717. * @torture: if the physical eraseblock has to be tortured
  718. * @anchor: produce a anchor PEB to by used by fastmap
  719. *
  720. * The @func pointer points to the worker function. If the @shutdown argument is
  721. * not zero, the worker has to free the resources and exit immediately as the
  722. * WL sub-system is shutting down.
  723. * The worker has to return zero in case of success and a negative error code in
  724. * case of failure.
  725. */
  726. struct ubi_work {
  727. struct list_head list;
  728. int (*func)(struct ubi_device *ubi, struct ubi_work *wrk, int shutdown);
  729. /* The below fields are only relevant to erasure works */
  730. struct ubi_wl_entry *e;
  731. int vol_id;
  732. int lnum;
  733. int torture;
  734. int anchor;
  735. };
  736. #include "debug.h"
  737. extern struct kmem_cache *ubi_wl_entry_slab;
  738. extern const struct file_operations ubi_ctrl_cdev_operations;
  739. extern const struct file_operations ubi_cdev_operations;
  740. extern const struct file_operations ubi_vol_cdev_operations;
  741. extern struct class ubi_class;
  742. extern struct mutex ubi_devices_mutex;
  743. extern struct blocking_notifier_head ubi_notifiers;
  744. /* attach.c */
  745. int ubi_add_to_av(struct ubi_device *ubi, struct ubi_attach_info *ai, int pnum,
  746. int ec, const struct ubi_vid_hdr *vid_hdr, int bitflips);
  747. struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
  748. int vol_id);
  749. void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av);
  750. struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
  751. struct ubi_attach_info *ai);
  752. int ubi_attach(struct ubi_device *ubi, int force_scan);
  753. void ubi_destroy_ai(struct ubi_attach_info *ai);
  754. /* vtbl.c */
  755. int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
  756. struct ubi_vtbl_record *vtbl_rec);
  757. int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
  758. struct list_head *rename_list);
  759. int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai);
  760. /* vmt.c */
  761. int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req);
  762. int ubi_remove_volume(struct ubi_volume_desc *desc, int no_vtbl);
  763. int ubi_resize_volume(struct ubi_volume_desc *desc, int reserved_pebs);
  764. int ubi_rename_volumes(struct ubi_device *ubi, struct list_head *rename_list);
  765. int ubi_add_volume(struct ubi_device *ubi, struct ubi_volume *vol);
  766. void ubi_free_volume(struct ubi_device *ubi, struct ubi_volume *vol);
  767. /* upd.c */
  768. int ubi_start_update(struct ubi_device *ubi, struct ubi_volume *vol,
  769. long long bytes);
  770. int ubi_more_update_data(struct ubi_device *ubi, struct ubi_volume *vol,
  771. const void __user *buf, int count);
  772. int ubi_start_leb_change(struct ubi_device *ubi, struct ubi_volume *vol,
  773. const struct ubi_leb_change_req *req);
  774. int ubi_more_leb_change_data(struct ubi_device *ubi, struct ubi_volume *vol,
  775. const void __user *buf, int count);
  776. /* misc.c */
  777. int ubi_calc_data_len(const struct ubi_device *ubi, const void *buf,
  778. int length);
  779. int ubi_check_volume(struct ubi_device *ubi, int vol_id);
  780. void ubi_update_reserved(struct ubi_device *ubi);
  781. void ubi_calculate_reserved(struct ubi_device *ubi);
  782. int ubi_check_pattern(const void *buf, uint8_t patt, int size);
  783. /* eba.c */
  784. int ubi_eba_unmap_leb(struct ubi_device *ubi, struct ubi_volume *vol,
  785. int lnum);
  786. int ubi_eba_read_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
  787. void *buf, int offset, int len, int check);
  788. int ubi_eba_read_leb_sg(struct ubi_device *ubi, struct ubi_volume *vol,
  789. struct ubi_sgl *sgl, int lnum, int offset, int len,
  790. int check);
  791. int ubi_eba_write_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
  792. const void *buf, int offset, int len);
  793. int ubi_eba_write_leb_st(struct ubi_device *ubi, struct ubi_volume *vol,
  794. int lnum, const void *buf, int len, int used_ebs);
  795. int ubi_eba_atomic_leb_change(struct ubi_device *ubi, struct ubi_volume *vol,
  796. int lnum, const void *buf, int len);
  797. int ubi_eba_copy_leb(struct ubi_device *ubi, int from, int to,
  798. struct ubi_vid_hdr *vid_hdr);
  799. int ubi_eba_init(struct ubi_device *ubi, struct ubi_attach_info *ai);
  800. unsigned long long ubi_next_sqnum(struct ubi_device *ubi);
  801. int self_check_eba(struct ubi_device *ubi, struct ubi_attach_info *ai_fastmap,
  802. struct ubi_attach_info *ai_scan);
  803. /* wl.c */
  804. int ubi_wl_get_peb(struct ubi_device *ubi);
  805. int ubi_wl_put_peb(struct ubi_device *ubi, int vol_id, int lnum,
  806. int pnum, int torture);
  807. int ubi_wl_flush(struct ubi_device *ubi, int vol_id, int lnum);
  808. int ubi_wl_scrub_peb(struct ubi_device *ubi, int pnum);
  809. int ubi_wl_init(struct ubi_device *ubi, struct ubi_attach_info *ai);
  810. void ubi_wl_close(struct ubi_device *ubi);
  811. int ubi_thread(void *u);
  812. struct ubi_wl_entry *ubi_wl_get_fm_peb(struct ubi_device *ubi, int anchor);
  813. int ubi_wl_put_fm_peb(struct ubi_device *ubi, struct ubi_wl_entry *used_e,
  814. int lnum, int torture);
  815. int ubi_is_erase_work(struct ubi_work *wrk);
  816. void ubi_refill_pools(struct ubi_device *ubi);
  817. int ubi_ensure_anchor_pebs(struct ubi_device *ubi);
  818. /* io.c */
  819. int ubi_io_read(const struct ubi_device *ubi, void *buf, int pnum, int offset,
  820. int len);
  821. int ubi_io_write(struct ubi_device *ubi, const void *buf, int pnum, int offset,
  822. int len);
  823. int ubi_io_sync_erase(struct ubi_device *ubi, int pnum, int torture);
  824. int ubi_io_is_bad(const struct ubi_device *ubi, int pnum);
  825. int ubi_io_mark_bad(const struct ubi_device *ubi, int pnum);
  826. int ubi_io_read_ec_hdr(struct ubi_device *ubi, int pnum,
  827. struct ubi_ec_hdr *ec_hdr, int verbose);
  828. int ubi_io_write_ec_hdr(struct ubi_device *ubi, int pnum,
  829. struct ubi_ec_hdr *ec_hdr);
  830. int ubi_io_read_vid_hdr(struct ubi_device *ubi, int pnum,
  831. struct ubi_vid_hdr *vid_hdr, int verbose);
  832. int ubi_io_write_vid_hdr(struct ubi_device *ubi, int pnum,
  833. struct ubi_vid_hdr *vid_hdr);
  834. /* build.c */
  835. int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num,
  836. int vid_hdr_offset, int max_beb_per1024);
  837. int ubi_detach_mtd_dev(int ubi_num, int anyway);
  838. struct ubi_device *ubi_get_device(int ubi_num);
  839. void ubi_put_device(struct ubi_device *ubi);
  840. struct ubi_device *ubi_get_by_major(int major);
  841. int ubi_major2num(int major);
  842. int ubi_volume_notify(struct ubi_device *ubi, struct ubi_volume *vol,
  843. int ntype);
  844. int ubi_notify_all(struct ubi_device *ubi, int ntype,
  845. struct notifier_block *nb);
  846. int ubi_enumerate_volumes(struct notifier_block *nb);
  847. void ubi_free_internal_volumes(struct ubi_device *ubi);
  848. /* kapi.c */
  849. void ubi_do_get_device_info(struct ubi_device *ubi, struct ubi_device_info *di);
  850. void ubi_do_get_volume_info(struct ubi_device *ubi, struct ubi_volume *vol,
  851. struct ubi_volume_info *vi);
  852. /* scan.c */
  853. int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
  854. int pnum, const struct ubi_vid_hdr *vid_hdr);
  855. /* fastmap.c */
  856. #ifdef CONFIG_MTD_UBI_FASTMAP
  857. size_t ubi_calc_fm_size(struct ubi_device *ubi);
  858. int ubi_update_fastmap(struct ubi_device *ubi);
  859. int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
  860. struct ubi_attach_info *scan_ai);
  861. #else
  862. static inline int ubi_update_fastmap(struct ubi_device *ubi) { return 0; }
  863. #endif
  864. /* block.c */
  865. #ifdef CONFIG_MTD_UBI_BLOCK
  866. int ubiblock_init(void);
  867. void ubiblock_exit(void);
  868. int ubiblock_create(struct ubi_volume_info *vi);
  869. int ubiblock_remove(struct ubi_volume_info *vi);
  870. #else
  871. static inline int ubiblock_init(void) { return 0; }
  872. static inline void ubiblock_exit(void) {}
  873. static inline int ubiblock_create(struct ubi_volume_info *vi)
  874. {
  875. return -ENOSYS;
  876. }
  877. static inline int ubiblock_remove(struct ubi_volume_info *vi)
  878. {
  879. return -ENOSYS;
  880. }
  881. #endif
  882. /*
  883. * ubi_for_each_free_peb - walk the UBI free RB tree.
  884. * @ubi: UBI device description object
  885. * @e: a pointer to a ubi_wl_entry to use as cursor
  886. * @pos: a pointer to RB-tree entry type to use as a loop counter
  887. */
  888. #define ubi_for_each_free_peb(ubi, e, tmp_rb) \
  889. ubi_rb_for_each_entry((tmp_rb), (e), &(ubi)->free, u.rb)
  890. /*
  891. * ubi_for_each_used_peb - walk the UBI used RB tree.
  892. * @ubi: UBI device description object
  893. * @e: a pointer to a ubi_wl_entry to use as cursor
  894. * @pos: a pointer to RB-tree entry type to use as a loop counter
  895. */
  896. #define ubi_for_each_used_peb(ubi, e, tmp_rb) \
  897. ubi_rb_for_each_entry((tmp_rb), (e), &(ubi)->used, u.rb)
  898. /*
  899. * ubi_for_each_scub_peb - walk the UBI scub RB tree.
  900. * @ubi: UBI device description object
  901. * @e: a pointer to a ubi_wl_entry to use as cursor
  902. * @pos: a pointer to RB-tree entry type to use as a loop counter
  903. */
  904. #define ubi_for_each_scrub_peb(ubi, e, tmp_rb) \
  905. ubi_rb_for_each_entry((tmp_rb), (e), &(ubi)->scrub, u.rb)
  906. /*
  907. * ubi_for_each_protected_peb - walk the UBI protection queue.
  908. * @ubi: UBI device description object
  909. * @i: a integer used as counter
  910. * @e: a pointer to a ubi_wl_entry to use as cursor
  911. */
  912. #define ubi_for_each_protected_peb(ubi, i, e) \
  913. for ((i) = 0; (i) < UBI_PROT_QUEUE_LEN; (i)++) \
  914. list_for_each_entry((e), &(ubi->pq[(i)]), u.list)
  915. /*
  916. * ubi_rb_for_each_entry - walk an RB-tree.
  917. * @rb: a pointer to type 'struct rb_node' to use as a loop counter
  918. * @pos: a pointer to RB-tree entry type to use as a loop counter
  919. * @root: RB-tree's root
  920. * @member: the name of the 'struct rb_node' within the RB-tree entry
  921. */
  922. #define ubi_rb_for_each_entry(rb, pos, root, member) \
  923. for (rb = rb_first(root), \
  924. pos = (rb ? container_of(rb, typeof(*pos), member) : NULL); \
  925. rb; \
  926. rb = rb_next(rb), \
  927. pos = (rb ? container_of(rb, typeof(*pos), member) : NULL))
  928. /*
  929. * ubi_move_aeb_to_list - move a PEB from the volume tree to a list.
  930. *
  931. * @av: volume attaching information
  932. * @aeb: attaching eraseblock information
  933. * @list: the list to move to
  934. */
  935. static inline void ubi_move_aeb_to_list(struct ubi_ainf_volume *av,
  936. struct ubi_ainf_peb *aeb,
  937. struct list_head *list)
  938. {
  939. rb_erase(&aeb->u.rb, &av->root);
  940. list_add_tail(&aeb->u.list, list);
  941. }
  942. /**
  943. * ubi_zalloc_vid_hdr - allocate a volume identifier header object.
  944. * @ubi: UBI device description object
  945. * @gfp_flags: GFP flags to allocate with
  946. *
  947. * This function returns a pointer to the newly allocated and zero-filled
  948. * volume identifier header object in case of success and %NULL in case of
  949. * failure.
  950. */
  951. static inline struct ubi_vid_hdr *
  952. ubi_zalloc_vid_hdr(const struct ubi_device *ubi, gfp_t gfp_flags)
  953. {
  954. void *vid_hdr;
  955. vid_hdr = kzalloc(ubi->vid_hdr_alsize, gfp_flags);
  956. if (!vid_hdr)
  957. return NULL;
  958. /*
  959. * VID headers may be stored at un-aligned flash offsets, so we shift
  960. * the pointer.
  961. */
  962. return vid_hdr + ubi->vid_hdr_shift;
  963. }
  964. /**
  965. * ubi_free_vid_hdr - free a volume identifier header object.
  966. * @ubi: UBI device description object
  967. * @vid_hdr: the object to free
  968. */
  969. static inline void ubi_free_vid_hdr(const struct ubi_device *ubi,
  970. struct ubi_vid_hdr *vid_hdr)
  971. {
  972. void *p = vid_hdr;
  973. if (!p)
  974. return;
  975. kfree(p - ubi->vid_hdr_shift);
  976. }
  977. /*
  978. * This function is equivalent to 'ubi_io_read()', but @offset is relative to
  979. * the beginning of the logical eraseblock, not to the beginning of the
  980. * physical eraseblock.
  981. */
  982. static inline int ubi_io_read_data(const struct ubi_device *ubi, void *buf,
  983. int pnum, int offset, int len)
  984. {
  985. ubi_assert(offset >= 0);
  986. return ubi_io_read(ubi, buf, pnum, offset + ubi->leb_start, len);
  987. }
  988. /*
  989. * This function is equivalent to 'ubi_io_write()', but @offset is relative to
  990. * the beginning of the logical eraseblock, not to the beginning of the
  991. * physical eraseblock.
  992. */
  993. static inline int ubi_io_write_data(struct ubi_device *ubi, const void *buf,
  994. int pnum, int offset, int len)
  995. {
  996. ubi_assert(offset >= 0);
  997. return ubi_io_write(ubi, buf, pnum, offset + ubi->leb_start, len);
  998. }
  999. /**
  1000. * ubi_ro_mode - switch to read-only mode.
  1001. * @ubi: UBI device description object
  1002. */
  1003. static inline void ubi_ro_mode(struct ubi_device *ubi)
  1004. {
  1005. if (!ubi->ro_mode) {
  1006. ubi->ro_mode = 1;
  1007. ubi_warn(ubi, "switch to read-only mode");
  1008. dump_stack();
  1009. }
  1010. }
  1011. /**
  1012. * vol_id2idx - get table index by volume ID.
  1013. * @ubi: UBI device description object
  1014. * @vol_id: volume ID
  1015. */
  1016. static inline int vol_id2idx(const struct ubi_device *ubi, int vol_id)
  1017. {
  1018. if (vol_id >= UBI_INTERNAL_VOL_START)
  1019. return vol_id - UBI_INTERNAL_VOL_START + ubi->vtbl_slots;
  1020. else
  1021. return vol_id;
  1022. }
  1023. /**
  1024. * idx2vol_id - get volume ID by table index.
  1025. * @ubi: UBI device description object
  1026. * @idx: table index
  1027. */
  1028. static inline int idx2vol_id(const struct ubi_device *ubi, int idx)
  1029. {
  1030. if (idx >= ubi->vtbl_slots)
  1031. return idx - ubi->vtbl_slots + UBI_INTERNAL_VOL_START;
  1032. else
  1033. return idx;
  1034. }
  1035. /**
  1036. * ubi_is_fm_vol - check whether a volume ID is a Fastmap volume.
  1037. * @vol_id: volume ID
  1038. */
  1039. static inline bool ubi_is_fm_vol(int vol_id)
  1040. {
  1041. switch (vol_id) {
  1042. case UBI_FM_SB_VOLUME_ID:
  1043. case UBI_FM_DATA_VOLUME_ID:
  1044. return true;
  1045. }
  1046. return false;
  1047. }
  1048. /**
  1049. * ubi_find_fm_block - check whether a PEB is part of the current Fastmap.
  1050. * @ubi: UBI device description object
  1051. * @pnum: physical eraseblock to look for
  1052. *
  1053. * This function returns a wear leveling object if @pnum relates to the current
  1054. * fastmap, @NULL otherwise.
  1055. */
  1056. static inline struct ubi_wl_entry *ubi_find_fm_block(const struct ubi_device *ubi,
  1057. int pnum)
  1058. {
  1059. int i;
  1060. if (ubi->fm) {
  1061. for (i = 0; i < ubi->fm->used_blocks; i++) {
  1062. if (ubi->fm->e[i]->pnum == pnum)
  1063. return ubi->fm->e[i];
  1064. }
  1065. }
  1066. return NULL;
  1067. }
  1068. #endif /* !__UBI_UBI_H__ */