ubi.h 42 KB

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