ubi.h 42 KB

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