ubi.h 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) International Business Machines Corp., 2006
  4. * Copyright (c) Nokia Corporation, 2006, 2007
  5. *
  6. * Author: Artem Bityutskiy (Битюцкий Артём)
  7. */
  8. #ifndef __UBI_UBI_H__
  9. #define __UBI_UBI_H__
  10. #ifndef __UBOOT__
  11. #include <linux/types.h>
  12. #include <linux/list.h>
  13. #include <linux/rbtree.h>
  14. #include <linux/sched.h>
  15. #include <linux/wait.h>
  16. #include <linux/mutex.h>
  17. #include <linux/rwsem.h>
  18. #include <linux/spinlock.h>
  19. #include <linux/fs.h>
  20. #include <linux/cdev.h>
  21. #include <linux/device.h>
  22. #include <linux/slab.h>
  23. #include <linux/string.h>
  24. #include <linux/vmalloc.h>
  25. #include <linux/notifier.h>
  26. #include <asm/pgtable.h>
  27. #else
  28. #include <ubi_uboot.h>
  29. #endif
  30. #include <linux/mtd/mtd.h>
  31. #include <linux/mtd/ubi.h>
  32. #include "ubi-media.h"
  33. #include <mtd/ubi-user.h>
  34. /* Maximum number of supported UBI devices */
  35. #define UBI_MAX_DEVICES 32
  36. /* UBI name used for character devices, sysfs, etc */
  37. #define UBI_NAME_STR "ubi"
  38. /* Normal UBI messages */
  39. #ifdef CONFIG_UBI_SILENCE_MSG
  40. #define ubi_msg(ubi, fmt, ...)
  41. #else
  42. #define ubi_msg(ubi, fmt, ...) printk(UBI_NAME_STR "%d: " fmt "\n", \
  43. ubi->ubi_num, ##__VA_ARGS__)
  44. #endif
  45. /* UBI warning messages */
  46. #define ubi_warn(ubi, fmt, ...) pr_warn(UBI_NAME_STR "%d warning: %s: " fmt "\n", \
  47. ubi->ubi_num, __func__, ##__VA_ARGS__)
  48. /* UBI error messages */
  49. #define ubi_err(ubi, fmt, ...) pr_err(UBI_NAME_STR "%d error: %s: " fmt "\n", \
  50. ubi->ubi_num, __func__, ##__VA_ARGS__)
  51. /* Background thread name pattern */
  52. #define UBI_BGT_NAME_PATTERN "ubi_bgt%dd"
  53. /*
  54. * This marker in the EBA table means that the LEB is um-mapped.
  55. * NOTE! It has to have the same value as %UBI_ALL.
  56. */
  57. #define UBI_LEB_UNMAPPED -1
  58. /*
  59. * In case of errors, UBI tries to repeat the operation several times before
  60. * returning error. The below constant defines how many times UBI re-tries.
  61. */
  62. #define UBI_IO_RETRIES 3
  63. /*
  64. * Length of the protection queue. The length is effectively equivalent to the
  65. * number of (global) erase cycles PEBs are protected from the wear-leveling
  66. * worker.
  67. */
  68. #define UBI_PROT_QUEUE_LEN 10
  69. /* The volume ID/LEB number/erase counter is unknown */
  70. #define UBI_UNKNOWN -1
  71. /*
  72. * The UBI debugfs directory name pattern and maximum name length (3 for "ubi"
  73. * + 2 for the number plus 1 for the trailing zero byte.
  74. */
  75. #define UBI_DFS_DIR_NAME "ubi%d"
  76. #define UBI_DFS_DIR_LEN (3 + 2 + 1)
  77. /*
  78. * Error codes returned by the I/O sub-system.
  79. *
  80. * UBI_IO_FF: the read region of flash contains only 0xFFs
  81. * UBI_IO_FF_BITFLIPS: the same as %UBI_IO_FF, but also also there was a data
  82. * integrity error reported by the MTD driver
  83. * (uncorrectable ECC error in case of NAND)
  84. * UBI_IO_BAD_HDR: the EC or VID header is corrupted (bad magic or CRC)
  85. * UBI_IO_BAD_HDR_EBADMSG: the same as %UBI_IO_BAD_HDR, but also there was a
  86. * data integrity error reported by the MTD driver
  87. * (uncorrectable ECC error in case of NAND)
  88. * UBI_IO_BITFLIPS: bit-flips were detected and corrected
  89. *
  90. * Note, it is probably better to have bit-flip and ebadmsg as flags which can
  91. * be or'ed with other error code. But this is a big change because there are
  92. * may callers, so it does not worth the risk of introducing a bug
  93. */
  94. enum {
  95. UBI_IO_FF = 1,
  96. UBI_IO_FF_BITFLIPS,
  97. UBI_IO_BAD_HDR,
  98. UBI_IO_BAD_HDR_EBADMSG,
  99. UBI_IO_BITFLIPS,
  100. };
  101. /*
  102. * Return codes of the 'ubi_eba_copy_leb()' function.
  103. *
  104. * MOVE_CANCEL_RACE: canceled because the volume is being deleted, the source
  105. * PEB was put meanwhile, or there is I/O on the source PEB
  106. * MOVE_SOURCE_RD_ERR: canceled because there was a read error from the source
  107. * PEB
  108. * MOVE_TARGET_RD_ERR: canceled because there was a read error from the target
  109. * PEB
  110. * MOVE_TARGET_WR_ERR: canceled because there was a write error to the target
  111. * PEB
  112. * MOVE_TARGET_BITFLIPS: canceled because a bit-flip was detected in the
  113. * target PEB
  114. * MOVE_RETRY: retry scrubbing the PEB
  115. */
  116. enum {
  117. MOVE_CANCEL_RACE = 1,
  118. MOVE_SOURCE_RD_ERR,
  119. MOVE_TARGET_RD_ERR,
  120. MOVE_TARGET_WR_ERR,
  121. MOVE_TARGET_BITFLIPS,
  122. MOVE_RETRY,
  123. };
  124. /*
  125. * Return codes of the fastmap sub-system
  126. *
  127. * UBI_NO_FASTMAP: No fastmap super block was found
  128. * UBI_BAD_FASTMAP: A fastmap was found but it's unusable
  129. */
  130. enum {
  131. UBI_NO_FASTMAP = 1,
  132. UBI_BAD_FASTMAP,
  133. };
  134. /*
  135. * Flags for emulate_power_cut in ubi_debug_info
  136. *
  137. * POWER_CUT_EC_WRITE: Emulate a power cut when writing an EC header
  138. * POWER_CUT_VID_WRITE: Emulate a power cut when writing a VID header
  139. */
  140. enum {
  141. POWER_CUT_EC_WRITE = 0x01,
  142. POWER_CUT_VID_WRITE = 0x02,
  143. };
  144. /**
  145. * struct ubi_wl_entry - wear-leveling entry.
  146. * @u.rb: link in the corresponding (free/used) RB-tree
  147. * @u.list: link in the protection queue
  148. * @ec: erase counter
  149. * @pnum: physical eraseblock number
  150. *
  151. * This data structure is used in the WL sub-system. Each physical eraseblock
  152. * has a corresponding &struct wl_entry object which may be kept in different
  153. * RB-trees. See WL sub-system for details.
  154. */
  155. struct ubi_wl_entry {
  156. union {
  157. struct rb_node rb;
  158. struct list_head list;
  159. } u;
  160. int ec;
  161. int pnum;
  162. };
  163. /**
  164. * struct ubi_ltree_entry - an entry in the lock tree.
  165. * @rb: links RB-tree nodes
  166. * @vol_id: volume ID of the locked logical eraseblock
  167. * @lnum: locked logical eraseblock number
  168. * @users: how many tasks are using this logical eraseblock or wait for it
  169. * @mutex: read/write mutex to implement read/write access serialization to
  170. * the (@vol_id, @lnum) logical eraseblock
  171. *
  172. * This data structure is used in the EBA sub-system to implement per-LEB
  173. * locking. When a logical eraseblock is being locked - corresponding
  174. * &struct ubi_ltree_entry object is inserted to the lock tree (@ubi->ltree).
  175. * See EBA sub-system for details.
  176. */
  177. struct ubi_ltree_entry {
  178. struct rb_node rb;
  179. int vol_id;
  180. int lnum;
  181. int users;
  182. struct rw_semaphore mutex;
  183. };
  184. /**
  185. * struct ubi_rename_entry - volume re-name description data structure.
  186. * @new_name_len: new volume name length
  187. * @new_name: new volume name
  188. * @remove: if not zero, this volume should be removed, not re-named
  189. * @desc: descriptor of the volume
  190. * @list: links re-name entries into a list
  191. *
  192. * This data structure is utilized in the multiple volume re-name code. Namely,
  193. * UBI first creates a list of &struct ubi_rename_entry objects from the
  194. * &struct ubi_rnvol_req request object, and then utilizes this list to do all
  195. * the job.
  196. */
  197. struct ubi_rename_entry {
  198. int new_name_len;
  199. char new_name[UBI_VOL_NAME_MAX + 1];
  200. int remove;
  201. struct ubi_volume_desc *desc;
  202. struct list_head list;
  203. };
  204. struct ubi_volume_desc;
  205. /**
  206. * struct ubi_fastmap_layout - in-memory fastmap data structure.
  207. * @e: PEBs used by the current fastmap
  208. * @to_be_tortured: if non-zero tortured this PEB
  209. * @used_blocks: number of used PEBs
  210. * @max_pool_size: maximal size of the user pool
  211. * @max_wl_pool_size: maximal size of the pool used by the WL sub-system
  212. */
  213. struct ubi_fastmap_layout {
  214. struct ubi_wl_entry *e[UBI_FM_MAX_BLOCKS];
  215. int to_be_tortured[UBI_FM_MAX_BLOCKS];
  216. int used_blocks;
  217. int max_pool_size;
  218. int max_wl_pool_size;
  219. };
  220. /**
  221. * struct ubi_fm_pool - in-memory fastmap pool
  222. * @pebs: PEBs in this pool
  223. * @used: number of used PEBs
  224. * @size: total number of PEBs in this pool
  225. * @max_size: maximal size of the pool
  226. *
  227. * A pool gets filled with up to max_size.
  228. * If all PEBs within the pool are used a new fastmap will be written
  229. * to the flash and the pool gets refilled with empty PEBs.
  230. *
  231. */
  232. struct ubi_fm_pool {
  233. int pebs[UBI_FM_MAX_POOL_SIZE];
  234. int used;
  235. int size;
  236. int max_size;
  237. };
  238. /**
  239. * struct ubi_volume - UBI volume description data structure.
  240. * @dev: device object to make use of the the Linux device model
  241. * @cdev: character device object to create character device
  242. * @ubi: reference to the UBI device description object
  243. * @vol_id: volume ID
  244. * @ref_count: volume reference count
  245. * @readers: number of users holding this volume in read-only mode
  246. * @writers: number of users holding this volume in read-write mode
  247. * @exclusive: whether somebody holds this volume in exclusive mode
  248. * @metaonly: whether somebody is altering only meta data of this volume
  249. *
  250. * @reserved_pebs: how many physical eraseblocks are reserved for this volume
  251. * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME)
  252. * @usable_leb_size: logical eraseblock size without padding
  253. * @used_ebs: how many logical eraseblocks in this volume contain data
  254. * @last_eb_bytes: how many bytes are stored in the last logical eraseblock
  255. * @used_bytes: how many bytes of data this volume contains
  256. * @alignment: volume alignment
  257. * @data_pad: how many bytes are not used at the end of physical eraseblocks to
  258. * satisfy the requested alignment
  259. * @name_len: volume name length
  260. * @name: volume name
  261. *
  262. * @upd_ebs: how many eraseblocks are expected to be updated
  263. * @ch_lnum: LEB number which is being changing by the atomic LEB change
  264. * operation
  265. * @upd_bytes: how many bytes are expected to be received for volume update or
  266. * atomic LEB change
  267. * @upd_received: how many bytes were already received for volume update or
  268. * atomic LEB change
  269. * @upd_buf: update buffer which is used to collect update data or data for
  270. * atomic LEB change
  271. *
  272. * @eba_tbl: EBA table of this volume (LEB->PEB mapping)
  273. * @checked: %1 if this static volume was checked
  274. * @corrupted: %1 if the volume is corrupted (static volumes only)
  275. * @upd_marker: %1 if the update marker is set for this volume
  276. * @updating: %1 if the volume is being updated
  277. * @changing_leb: %1 if the atomic LEB change ioctl command is in progress
  278. * @direct_writes: %1 if direct writes are enabled for this volume
  279. *
  280. * The @corrupted field indicates that the volume's contents is corrupted.
  281. * Since UBI protects only static volumes, this field is not relevant to
  282. * dynamic volumes - it is user's responsibility to assure their data
  283. * integrity.
  284. *
  285. * The @upd_marker flag indicates that this volume is either being updated at
  286. * the moment or is damaged because of an unclean reboot.
  287. */
  288. struct ubi_volume {
  289. struct device dev;
  290. struct cdev cdev;
  291. struct ubi_device *ubi;
  292. int vol_id;
  293. int ref_count;
  294. int readers;
  295. int writers;
  296. int exclusive;
  297. int metaonly;
  298. int reserved_pebs;
  299. int vol_type;
  300. int usable_leb_size;
  301. int used_ebs;
  302. #ifndef __UBOOT__
  303. int last_eb_bytes;
  304. #else
  305. u32 last_eb_bytes;
  306. #endif
  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. *
  436. * @used: RB-tree of used physical eraseblocks
  437. * @erroneous: RB-tree of erroneous used physical eraseblocks
  438. * @free: RB-tree of free physical eraseblocks
  439. * @free_count: Contains the number of elements in @free
  440. * @scrub: RB-tree of physical eraseblocks which need scrubbing
  441. * @pq: protection queue (contain physical eraseblocks which are temporarily
  442. * protected from the wear-leveling worker)
  443. * @pq_head: protection queue head
  444. * @wl_lock: protects the @used, @free, @pq, @pq_head, @lookuptbl, @move_from,
  445. * @move_to, @move_to_put @erase_pending, @wl_scheduled, @works,
  446. * @erroneous, @erroneous_peb_count, @fm_work_scheduled, @fm_pool,
  447. * and @fm_wl_pool fields
  448. * @move_mutex: serializes eraseblock moves
  449. * @work_sem: used to wait for all the scheduled works to finish and prevent
  450. * new works from being submitted
  451. * @wl_scheduled: non-zero if the wear-leveling was scheduled
  452. * @lookuptbl: a table to quickly find a &struct ubi_wl_entry object for any
  453. * physical eraseblock
  454. * @move_from: physical eraseblock from where the data is being moved
  455. * @move_to: physical eraseblock where the data is being moved to
  456. * @move_to_put: if the "to" PEB was put
  457. * @works: list of pending works
  458. * @works_count: count of pending works
  459. * @bgt_thread: background thread description object
  460. * @thread_enabled: if the background thread is enabled
  461. * @bgt_name: background thread name
  462. *
  463. * @flash_size: underlying MTD device size (in bytes)
  464. * @peb_count: count of physical eraseblocks on the MTD device
  465. * @peb_size: physical eraseblock size
  466. * @bad_peb_limit: top limit of expected bad physical eraseblocks
  467. * @bad_peb_count: count of bad physical eraseblocks
  468. * @good_peb_count: count of good physical eraseblocks
  469. * @corr_peb_count: count of corrupted physical eraseblocks (preserved and not
  470. * used by UBI)
  471. * @erroneous_peb_count: count of erroneous physical eraseblocks in @erroneous
  472. * @max_erroneous: maximum allowed amount of erroneous physical eraseblocks
  473. * @min_io_size: minimal input/output unit size of the underlying MTD device
  474. * @hdrs_min_io_size: minimal I/O unit size used for VID and EC headers
  475. * @ro_mode: if the UBI device is in read-only mode
  476. * @leb_size: logical eraseblock size
  477. * @leb_start: starting offset of logical eraseblocks within physical
  478. * eraseblocks
  479. * @ec_hdr_alsize: size of the EC header aligned to @hdrs_min_io_size
  480. * @vid_hdr_alsize: size of the VID header aligned to @hdrs_min_io_size
  481. * @vid_hdr_offset: starting offset of the volume identifier header (might be
  482. * unaligned)
  483. * @vid_hdr_aloffset: starting offset of the VID header aligned to
  484. * @hdrs_min_io_size
  485. * @vid_hdr_shift: contains @vid_hdr_offset - @vid_hdr_aloffset
  486. * @bad_allowed: whether the MTD device admits of bad physical eraseblocks or
  487. * not
  488. * @nor_flash: non-zero if working on top of NOR flash
  489. * @max_write_size: maximum amount of bytes the underlying flash can write at a
  490. * time (MTD write buffer size)
  491. * @mtd: MTD device descriptor
  492. *
  493. * @peb_buf: a buffer of PEB size used for different purposes
  494. * @buf_mutex: protects @peb_buf
  495. * @ckvol_mutex: serializes static volume checking when opening
  496. *
  497. * @dbg: debugging information for this UBI device
  498. */
  499. struct ubi_device {
  500. struct cdev cdev;
  501. struct device dev;
  502. int ubi_num;
  503. char ubi_name[sizeof(UBI_NAME_STR)+5];
  504. int vol_count;
  505. struct ubi_volume *volumes[UBI_MAX_VOLUMES+UBI_INT_VOL_COUNT];
  506. spinlock_t volumes_lock;
  507. int ref_count;
  508. int image_seq;
  509. int rsvd_pebs;
  510. int avail_pebs;
  511. int beb_rsvd_pebs;
  512. int beb_rsvd_level;
  513. int bad_peb_limit;
  514. int autoresize_vol_id;
  515. int vtbl_slots;
  516. int vtbl_size;
  517. struct ubi_vtbl_record *vtbl;
  518. struct mutex device_mutex;
  519. int max_ec;
  520. /* Note, mean_ec is not updated run-time - should be fixed */
  521. int mean_ec;
  522. /* EBA sub-system's stuff */
  523. unsigned long long global_sqnum;
  524. spinlock_t ltree_lock;
  525. struct rb_root ltree;
  526. struct mutex alc_mutex;
  527. /* Fastmap stuff */
  528. int fm_disabled;
  529. struct ubi_fastmap_layout *fm;
  530. struct ubi_fm_pool fm_pool;
  531. struct ubi_fm_pool fm_wl_pool;
  532. struct rw_semaphore fm_eba_sem;
  533. struct rw_semaphore fm_protect;
  534. void *fm_buf;
  535. size_t fm_size;
  536. #ifndef __UBOOT__
  537. struct work_struct fm_work;
  538. #endif
  539. int fm_work_scheduled;
  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. * @corr_peb_count: count of PEBs in the @corr list
  661. * @empty_peb_count: count of PEBs which are presumably empty (contain only
  662. * 0xFF bytes)
  663. * @alien_peb_count: count of PEBs in the @alien list
  664. * @bad_peb_count: count of bad physical eraseblocks
  665. * @maybe_bad_peb_count: count of bad physical eraseblocks which are not marked
  666. * as bad yet, but which look like bad
  667. * @vols_found: number of volumes found
  668. * @highest_vol_id: highest volume ID
  669. * @is_empty: flag indicating whether the MTD device is empty or not
  670. * @min_ec: lowest erase counter value
  671. * @max_ec: highest erase counter value
  672. * @max_sqnum: highest sequence number value
  673. * @mean_ec: mean erase counter value
  674. * @ec_sum: a temporary variable used when calculating @mean_ec
  675. * @ec_count: a temporary variable used when calculating @mean_ec
  676. * @aeb_slab_cache: slab cache for &struct ubi_ainf_peb objects
  677. *
  678. * This data structure contains the result of attaching an MTD device and may
  679. * be used by other UBI sub-systems to build final UBI data structures, further
  680. * error-recovery and so on.
  681. */
  682. struct ubi_attach_info {
  683. struct rb_root volumes;
  684. struct list_head corr;
  685. struct list_head free;
  686. struct list_head erase;
  687. struct list_head alien;
  688. int corr_peb_count;
  689. int empty_peb_count;
  690. int alien_peb_count;
  691. int bad_peb_count;
  692. int maybe_bad_peb_count;
  693. int vols_found;
  694. int highest_vol_id;
  695. int is_empty;
  696. int min_ec;
  697. int max_ec;
  698. unsigned long long max_sqnum;
  699. int mean_ec;
  700. uint64_t ec_sum;
  701. int ec_count;
  702. struct kmem_cache *aeb_slab_cache;
  703. };
  704. /**
  705. * struct ubi_work - UBI work description data structure.
  706. * @list: a link in the list of pending works
  707. * @func: worker function
  708. * @e: physical eraseblock to erase
  709. * @vol_id: the volume ID on which this erasure is being performed
  710. * @lnum: the logical eraseblock number
  711. * @torture: if the physical eraseblock has to be tortured
  712. * @anchor: produce a anchor PEB to by used by fastmap
  713. *
  714. * The @func pointer points to the worker function. If the @shutdown argument is
  715. * not zero, the worker has to free the resources and exit immediately as the
  716. * WL sub-system is shutting down.
  717. * The worker has to return zero in case of success and a negative error code in
  718. * case of failure.
  719. */
  720. struct ubi_work {
  721. struct list_head list;
  722. int (*func)(struct ubi_device *ubi, struct ubi_work *wrk, int shutdown);
  723. /* The below fields are only relevant to erasure works */
  724. struct ubi_wl_entry *e;
  725. int vol_id;
  726. int lnum;
  727. int torture;
  728. int anchor;
  729. };
  730. #include "debug.h"
  731. extern struct kmem_cache *ubi_wl_entry_slab;
  732. extern const struct file_operations ubi_ctrl_cdev_operations;
  733. extern const struct file_operations ubi_cdev_operations;
  734. extern const struct file_operations ubi_vol_cdev_operations;
  735. extern struct class ubi_class;
  736. extern struct mutex ubi_devices_mutex;
  737. extern struct blocking_notifier_head ubi_notifiers;
  738. /* attach.c */
  739. int ubi_add_to_av(struct ubi_device *ubi, struct ubi_attach_info *ai, int pnum,
  740. int ec, const struct ubi_vid_hdr *vid_hdr, int bitflips);
  741. struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
  742. int vol_id);
  743. void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av);
  744. struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
  745. struct ubi_attach_info *ai);
  746. int ubi_attach(struct ubi_device *ubi, int force_scan);
  747. void ubi_destroy_ai(struct ubi_attach_info *ai);
  748. /* vtbl.c */
  749. int ubi_change_vtbl_record(struct ubi_device *ubi, int idx,
  750. struct ubi_vtbl_record *vtbl_rec);
  751. int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
  752. struct list_head *rename_list);
  753. int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai);
  754. /* vmt.c */
  755. int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req);
  756. int ubi_remove_volume(struct ubi_volume_desc *desc, int no_vtbl);
  757. int ubi_resize_volume(struct ubi_volume_desc *desc, int reserved_pebs);
  758. int ubi_rename_volumes(struct ubi_device *ubi, struct list_head *rename_list);
  759. int ubi_add_volume(struct ubi_device *ubi, struct ubi_volume *vol);
  760. void ubi_free_volume(struct ubi_device *ubi, struct ubi_volume *vol);
  761. /* upd.c */
  762. int ubi_start_update(struct ubi_device *ubi, struct ubi_volume *vol,
  763. long long bytes);
  764. int ubi_more_update_data(struct ubi_device *ubi, struct ubi_volume *vol,
  765. const void __user *buf, int count);
  766. int ubi_start_leb_change(struct ubi_device *ubi, struct ubi_volume *vol,
  767. const struct ubi_leb_change_req *req);
  768. int ubi_more_leb_change_data(struct ubi_device *ubi, struct ubi_volume *vol,
  769. const void __user *buf, int count);
  770. /* misc.c */
  771. int ubi_calc_data_len(const struct ubi_device *ubi, const void *buf,
  772. int length);
  773. int ubi_check_volume(struct ubi_device *ubi, int vol_id);
  774. void ubi_update_reserved(struct ubi_device *ubi);
  775. void ubi_calculate_reserved(struct ubi_device *ubi);
  776. int ubi_check_pattern(const void *buf, uint8_t patt, int size);
  777. /* gluebi.c */
  778. #ifdef CONFIG_MTD_UBI_GLUEBI
  779. int ubi_create_gluebi(struct ubi_device *ubi, struct ubi_volume *vol);
  780. int ubi_destroy_gluebi(struct ubi_volume *vol);
  781. void ubi_gluebi_updated(struct ubi_volume *vol);
  782. #else
  783. #define ubi_create_gluebi(ubi, vol) 0
  784. static inline int ubi_destroy_gluebi(struct ubi_volume *vol)
  785. {
  786. return 0;
  787. }
  788. #define ubi_gluebi_updated(vol)
  789. #endif
  790. /* eba.c */
  791. int ubi_eba_unmap_leb(struct ubi_device *ubi, struct ubi_volume *vol,
  792. int lnum);
  793. int ubi_eba_read_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
  794. void *buf, int offset, int len, int check);
  795. int ubi_eba_read_leb_sg(struct ubi_device *ubi, struct ubi_volume *vol,
  796. struct ubi_sgl *sgl, int lnum, int offset, int len,
  797. int check);
  798. int ubi_eba_write_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
  799. const void *buf, int offset, int len);
  800. int ubi_eba_write_leb_st(struct ubi_device *ubi, struct ubi_volume *vol,
  801. int lnum, const void *buf, int len, int used_ebs);
  802. int ubi_eba_atomic_leb_change(struct ubi_device *ubi, struct ubi_volume *vol,
  803. int lnum, const void *buf, int len);
  804. int ubi_eba_copy_leb(struct ubi_device *ubi, int from, int to,
  805. struct ubi_vid_hdr *vid_hdr);
  806. int ubi_eba_init(struct ubi_device *ubi, struct ubi_attach_info *ai);
  807. unsigned long long ubi_next_sqnum(struct ubi_device *ubi);
  808. int self_check_eba(struct ubi_device *ubi, struct ubi_attach_info *ai_fastmap,
  809. struct ubi_attach_info *ai_scan);
  810. /* wl.c */
  811. int ubi_wl_get_peb(struct ubi_device *ubi);
  812. int ubi_wl_put_peb(struct ubi_device *ubi, int vol_id, int lnum,
  813. int pnum, int torture);
  814. int ubi_wl_flush(struct ubi_device *ubi, int vol_id, int lnum);
  815. int ubi_wl_scrub_peb(struct ubi_device *ubi, int pnum);
  816. int ubi_wl_init(struct ubi_device *ubi, struct ubi_attach_info *ai);
  817. void ubi_wl_close(struct ubi_device *ubi);
  818. int ubi_thread(void *u);
  819. struct ubi_wl_entry *ubi_wl_get_fm_peb(struct ubi_device *ubi, int anchor);
  820. int ubi_wl_put_fm_peb(struct ubi_device *ubi, struct ubi_wl_entry *used_e,
  821. int lnum, int torture);
  822. int ubi_is_erase_work(struct ubi_work *wrk);
  823. void ubi_refill_pools(struct ubi_device *ubi);
  824. int ubi_ensure_anchor_pebs(struct ubi_device *ubi);
  825. /* io.c */
  826. int ubi_io_read(const struct ubi_device *ubi, void *buf, int pnum, int offset,
  827. int len);
  828. int ubi_io_write(struct ubi_device *ubi, const void *buf, int pnum, int offset,
  829. int len);
  830. int ubi_io_sync_erase(struct ubi_device *ubi, int pnum, int torture);
  831. int ubi_io_is_bad(const struct ubi_device *ubi, int pnum);
  832. int ubi_io_mark_bad(const struct ubi_device *ubi, int pnum);
  833. int ubi_io_read_ec_hdr(struct ubi_device *ubi, int pnum,
  834. struct ubi_ec_hdr *ec_hdr, int verbose);
  835. int ubi_io_write_ec_hdr(struct ubi_device *ubi, int pnum,
  836. struct ubi_ec_hdr *ec_hdr);
  837. int ubi_io_read_vid_hdr(struct ubi_device *ubi, int pnum,
  838. struct ubi_vid_hdr *vid_hdr, int verbose);
  839. int ubi_io_write_vid_hdr(struct ubi_device *ubi, int pnum,
  840. struct ubi_vid_hdr *vid_hdr);
  841. /* build.c */
  842. int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num,
  843. int vid_hdr_offset, int max_beb_per1024);
  844. int ubi_detach_mtd_dev(int ubi_num, int anyway);
  845. struct ubi_device *ubi_get_device(int ubi_num);
  846. void ubi_put_device(struct ubi_device *ubi);
  847. struct ubi_device *ubi_get_by_major(int major);
  848. int ubi_major2num(int major);
  849. int ubi_volume_notify(struct ubi_device *ubi, struct ubi_volume *vol,
  850. int ntype);
  851. int ubi_notify_all(struct ubi_device *ubi, int ntype,
  852. struct notifier_block *nb);
  853. int ubi_enumerate_volumes(struct notifier_block *nb);
  854. void ubi_free_internal_volumes(struct ubi_device *ubi);
  855. /* kapi.c */
  856. void ubi_do_get_device_info(struct ubi_device *ubi, struct ubi_device_info *di);
  857. void ubi_do_get_volume_info(struct ubi_device *ubi, struct ubi_volume *vol,
  858. struct ubi_volume_info *vi);
  859. /* scan.c */
  860. int ubi_compare_lebs(struct ubi_device *ubi, const struct ubi_ainf_peb *aeb,
  861. int pnum, const struct ubi_vid_hdr *vid_hdr);
  862. /* fastmap.c */
  863. #ifdef CONFIG_MTD_UBI_FASTMAP
  864. size_t ubi_calc_fm_size(struct ubi_device *ubi);
  865. int ubi_update_fastmap(struct ubi_device *ubi);
  866. int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
  867. int fm_anchor);
  868. #else
  869. static inline int ubi_update_fastmap(struct ubi_device *ubi) { return 0; }
  870. #endif
  871. /* block.c */
  872. #ifdef CONFIG_MTD_UBI_BLOCK
  873. int ubiblock_init(void);
  874. void ubiblock_exit(void);
  875. int ubiblock_create(struct ubi_volume_info *vi);
  876. int ubiblock_remove(struct ubi_volume_info *vi);
  877. #else
  878. static inline int ubiblock_init(void) { return 0; }
  879. static inline void ubiblock_exit(void) {}
  880. static inline int ubiblock_create(struct ubi_volume_info *vi)
  881. {
  882. return -ENOSYS;
  883. }
  884. static inline int ubiblock_remove(struct ubi_volume_info *vi)
  885. {
  886. return -ENOSYS;
  887. }
  888. #endif
  889. /*
  890. * ubi_for_each_free_peb - walk the UBI free RB tree.
  891. * @ubi: UBI device description object
  892. * @e: a pointer to a ubi_wl_entry to use as cursor
  893. * @pos: a pointer to RB-tree entry type to use as a loop counter
  894. */
  895. #define ubi_for_each_free_peb(ubi, e, tmp_rb) \
  896. ubi_rb_for_each_entry((tmp_rb), (e), &(ubi)->free, u.rb)
  897. /*
  898. * ubi_for_each_used_peb - walk the UBI used RB tree.
  899. * @ubi: UBI device description object
  900. * @e: a pointer to a ubi_wl_entry to use as cursor
  901. * @pos: a pointer to RB-tree entry type to use as a loop counter
  902. */
  903. #define ubi_for_each_used_peb(ubi, e, tmp_rb) \
  904. ubi_rb_for_each_entry((tmp_rb), (e), &(ubi)->used, u.rb)
  905. /*
  906. * ubi_for_each_scub_peb - walk the UBI scub RB tree.
  907. * @ubi: UBI device description object
  908. * @e: a pointer to a ubi_wl_entry to use as cursor
  909. * @pos: a pointer to RB-tree entry type to use as a loop counter
  910. */
  911. #define ubi_for_each_scrub_peb(ubi, e, tmp_rb) \
  912. ubi_rb_for_each_entry((tmp_rb), (e), &(ubi)->scrub, u.rb)
  913. /*
  914. * ubi_for_each_protected_peb - walk the UBI protection queue.
  915. * @ubi: UBI device description object
  916. * @i: a integer used as counter
  917. * @e: a pointer to a ubi_wl_entry to use as cursor
  918. */
  919. #define ubi_for_each_protected_peb(ubi, i, e) \
  920. for ((i) = 0; (i) < UBI_PROT_QUEUE_LEN; (i)++) \
  921. list_for_each_entry((e), &(ubi->pq[(i)]), u.list)
  922. /*
  923. * ubi_rb_for_each_entry - walk an RB-tree.
  924. * @rb: a pointer to type 'struct rb_node' to use as a loop counter
  925. * @pos: a pointer to RB-tree entry type to use as a loop counter
  926. * @root: RB-tree's root
  927. * @member: the name of the 'struct rb_node' within the RB-tree entry
  928. */
  929. #define ubi_rb_for_each_entry(rb, pos, root, member) \
  930. for (rb = rb_first(root), \
  931. pos = (rb ? container_of(rb, typeof(*pos), member) : NULL); \
  932. rb; \
  933. rb = rb_next(rb), \
  934. pos = (rb ? container_of(rb, typeof(*pos), member) : NULL))
  935. /*
  936. * ubi_move_aeb_to_list - move a PEB from the volume tree to a list.
  937. *
  938. * @av: volume attaching information
  939. * @aeb: attaching eraseblock information
  940. * @list: the list to move to
  941. */
  942. static inline void ubi_move_aeb_to_list(struct ubi_ainf_volume *av,
  943. struct ubi_ainf_peb *aeb,
  944. struct list_head *list)
  945. {
  946. rb_erase(&aeb->u.rb, &av->root);
  947. list_add_tail(&aeb->u.list, list);
  948. }
  949. /**
  950. * ubi_zalloc_vid_hdr - allocate a volume identifier header object.
  951. * @ubi: UBI device description object
  952. * @gfp_flags: GFP flags to allocate with
  953. *
  954. * This function returns a pointer to the newly allocated and zero-filled
  955. * volume identifier header object in case of success and %NULL in case of
  956. * failure.
  957. */
  958. static inline struct ubi_vid_hdr *
  959. ubi_zalloc_vid_hdr(const struct ubi_device *ubi, gfp_t gfp_flags)
  960. {
  961. void *vid_hdr;
  962. vid_hdr = kzalloc(ubi->vid_hdr_alsize, gfp_flags);
  963. if (!vid_hdr)
  964. return NULL;
  965. /*
  966. * VID headers may be stored at un-aligned flash offsets, so we shift
  967. * the pointer.
  968. */
  969. return vid_hdr + ubi->vid_hdr_shift;
  970. }
  971. /**
  972. * ubi_free_vid_hdr - free a volume identifier header object.
  973. * @ubi: UBI device description object
  974. * @vid_hdr: the object to free
  975. */
  976. static inline void ubi_free_vid_hdr(const struct ubi_device *ubi,
  977. struct ubi_vid_hdr *vid_hdr)
  978. {
  979. void *p = vid_hdr;
  980. if (!p)
  981. return;
  982. kfree(p - ubi->vid_hdr_shift);
  983. }
  984. /*
  985. * This function is equivalent to 'ubi_io_read()', but @offset is relative to
  986. * the beginning of the logical eraseblock, not to the beginning of the
  987. * physical eraseblock.
  988. */
  989. static inline int ubi_io_read_data(const struct ubi_device *ubi, void *buf,
  990. int pnum, int offset, int len)
  991. {
  992. ubi_assert(offset >= 0);
  993. return ubi_io_read(ubi, buf, pnum, offset + ubi->leb_start, len);
  994. }
  995. /*
  996. * This function is equivalent to 'ubi_io_write()', but @offset is relative to
  997. * the beginning of the logical eraseblock, not to the beginning of the
  998. * physical eraseblock.
  999. */
  1000. static inline int ubi_io_write_data(struct ubi_device *ubi, const void *buf,
  1001. int pnum, int offset, int len)
  1002. {
  1003. ubi_assert(offset >= 0);
  1004. return ubi_io_write(ubi, buf, pnum, offset + ubi->leb_start, len);
  1005. }
  1006. /**
  1007. * ubi_ro_mode - switch to read-only mode.
  1008. * @ubi: UBI device description object
  1009. */
  1010. static inline void ubi_ro_mode(struct ubi_device *ubi)
  1011. {
  1012. if (!ubi->ro_mode) {
  1013. ubi->ro_mode = 1;
  1014. ubi_warn(ubi, "switch to read-only mode");
  1015. dump_stack();
  1016. }
  1017. }
  1018. /**
  1019. * vol_id2idx - get table index by volume ID.
  1020. * @ubi: UBI device description object
  1021. * @vol_id: volume ID
  1022. */
  1023. static inline int vol_id2idx(const struct ubi_device *ubi, int vol_id)
  1024. {
  1025. if (vol_id >= UBI_INTERNAL_VOL_START)
  1026. return vol_id - UBI_INTERNAL_VOL_START + ubi->vtbl_slots;
  1027. else
  1028. return vol_id;
  1029. }
  1030. /**
  1031. * idx2vol_id - get volume ID by table index.
  1032. * @ubi: UBI device description object
  1033. * @idx: table index
  1034. */
  1035. static inline int idx2vol_id(const struct ubi_device *ubi, int idx)
  1036. {
  1037. if (idx >= ubi->vtbl_slots)
  1038. return idx - ubi->vtbl_slots + UBI_INTERNAL_VOL_START;
  1039. else
  1040. return idx;
  1041. }
  1042. #ifdef __UBOOT__
  1043. void ubi_do_worker(struct ubi_device *ubi);
  1044. #endif
  1045. #endif /* !__UBI_UBI_H__ */