Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) International Business Machines Corp., 2006 |
| 4 | * |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 5 | * Author: Artem Bityutskiy (Битюцкий Артём) |
| 6 | */ |
| 7 | |
| 8 | #ifndef __UBI_DEBUG_H__ |
| 9 | #define __UBI_DEBUG_H__ |
| 10 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 11 | void ubi_dump_flash(struct ubi_device *ubi, int pnum, int offset, int len); |
| 12 | void ubi_dump_ec_hdr(const struct ubi_ec_hdr *ec_hdr); |
| 13 | void ubi_dump_vid_hdr(const struct ubi_vid_hdr *vid_hdr); |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 14 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 15 | #ifndef __UBOOT__ |
| 16 | #include <linux/random.h> |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 17 | #endif |
| 18 | |
Alexey Brodkin | 2d2fa49 | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 19 | #include <hexdump.h> |
| 20 | |
Eran Matityahu | a59fb30 | 2019-02-13 20:55:43 +0200 | [diff] [blame] | 21 | #ifndef __UBOOT__ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 22 | #define ubi_assert(expr) do { \ |
| 23 | if (unlikely(!(expr))) { \ |
| 24 | pr_crit("UBI assert failed in %s at %u (pid %d)\n", \ |
| 25 | __func__, __LINE__, current->pid); \ |
| 26 | dump_stack(); \ |
| 27 | } \ |
| 28 | } while (0) |
Eran Matityahu | a59fb30 | 2019-02-13 20:55:43 +0200 | [diff] [blame] | 29 | #else |
Pali Rohár | 38ed4e7 | 2022-07-10 13:38:07 +0200 | [diff] [blame] | 30 | #include <log.h> |
| 31 | #define ubi_assert(expr) assert(expr) |
Eran Matityahu | a59fb30 | 2019-02-13 20:55:43 +0200 | [diff] [blame] | 32 | #endif |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 33 | |
Alexey Brodkin | 2d2fa49 | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 34 | #define ubi_dbg_print_hex_dump(ps, pt, r, g, b, len, a) \ |
| 35 | print_hex_dump(ps, pt, r, g, b, len, a) |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 36 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 37 | #define ubi_dbg_msg(type, fmt, ...) \ |
| 38 | pr_debug("UBI DBG " type " (pid %d): " fmt "\n", current->pid, \ |
| 39 | ##__VA_ARGS__) |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 40 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 41 | /* General debugging messages */ |
| 42 | #define dbg_gen(fmt, ...) ubi_dbg_msg("gen", fmt, ##__VA_ARGS__) |
| 43 | /* Messages from the eraseblock association sub-system */ |
| 44 | #define dbg_eba(fmt, ...) ubi_dbg_msg("eba", fmt, ##__VA_ARGS__) |
| 45 | /* Messages from the wear-leveling sub-system */ |
| 46 | #define dbg_wl(fmt, ...) ubi_dbg_msg("wl", fmt, ##__VA_ARGS__) |
| 47 | /* Messages from the input/output sub-system */ |
| 48 | #define dbg_io(fmt, ...) ubi_dbg_msg("io", fmt, ##__VA_ARGS__) |
| 49 | /* Initialization and build messages */ |
| 50 | #define dbg_bld(fmt, ...) ubi_dbg_msg("bld", fmt, ##__VA_ARGS__) |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 51 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 52 | void ubi_dump_vol_info(const struct ubi_volume *vol); |
| 53 | void ubi_dump_vtbl_record(const struct ubi_vtbl_record *r, int idx); |
| 54 | void ubi_dump_av(const struct ubi_ainf_volume *av); |
| 55 | void ubi_dump_aeb(const struct ubi_ainf_peb *aeb, int type); |
| 56 | void ubi_dump_mkvol_req(const struct ubi_mkvol_req *req); |
| 57 | int ubi_self_check_all_ff(struct ubi_device *ubi, int pnum, int offset, |
| 58 | int len); |
| 59 | int ubi_debugfs_init(void); |
| 60 | void ubi_debugfs_exit(void); |
| 61 | int ubi_debugfs_init_dev(struct ubi_device *ubi); |
| 62 | void ubi_debugfs_exit_dev(struct ubi_device *ubi); |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 63 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 64 | /** |
| 65 | * ubi_dbg_is_bgt_disabled - if the background thread is disabled. |
| 66 | * @ubi: UBI device description object |
| 67 | * |
| 68 | * Returns non-zero if the UBI background thread is disabled for testing |
| 69 | * purposes. |
| 70 | */ |
| 71 | static inline int ubi_dbg_is_bgt_disabled(const struct ubi_device *ubi) |
| 72 | { |
| 73 | return ubi->dbg.disable_bgt; |
| 74 | } |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 75 | |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 76 | /** |
| 77 | * ubi_dbg_is_bitflip - if it is time to emulate a bit-flip. |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 78 | * @ubi: UBI device description object |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 79 | * |
| 80 | * Returns non-zero if a bit-flip should be emulated, otherwise returns zero. |
| 81 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 82 | static inline int ubi_dbg_is_bitflip(const struct ubi_device *ubi) |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 83 | { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 84 | if (ubi->dbg.emulate_bitflips) |
| 85 | return !(prandom_u32() % 200); |
| 86 | return 0; |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 87 | } |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 88 | |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 89 | /** |
| 90 | * ubi_dbg_is_write_failure - if it is time to emulate a write failure. |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 91 | * @ubi: UBI device description object |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 92 | * |
| 93 | * Returns non-zero if a write failure should be emulated, otherwise returns |
| 94 | * zero. |
| 95 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 96 | static inline int ubi_dbg_is_write_failure(const struct ubi_device *ubi) |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 97 | { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 98 | if (ubi->dbg.emulate_io_failures) |
| 99 | return !(prandom_u32() % 500); |
| 100 | return 0; |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 101 | } |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 102 | |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 103 | /** |
| 104 | * ubi_dbg_is_erase_failure - if its time to emulate an erase failure. |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 105 | * @ubi: UBI device description object |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 106 | * |
| 107 | * Returns non-zero if an erase failure should be emulated, otherwise returns |
| 108 | * zero. |
| 109 | */ |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 110 | static inline int ubi_dbg_is_erase_failure(const struct ubi_device *ubi) |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 111 | { |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 112 | if (ubi->dbg.emulate_io_failures) |
| 113 | return !(prandom_u32() % 400); |
| 114 | return 0; |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 115 | } |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 116 | |
Heiko Schocher | f5895d1 | 2014-06-24 10:10:04 +0200 | [diff] [blame] | 117 | static inline int ubi_dbg_chk_io(const struct ubi_device *ubi) |
| 118 | { |
| 119 | return ubi->dbg.chk_io; |
| 120 | } |
| 121 | |
| 122 | static inline int ubi_dbg_chk_gen(const struct ubi_device *ubi) |
| 123 | { |
| 124 | return ubi->dbg.chk_gen; |
| 125 | } |
Heiko Schocher | 94b66de | 2015-10-22 06:19:21 +0200 | [diff] [blame] | 126 | |
| 127 | static inline int ubi_dbg_chk_fastmap(const struct ubi_device *ubi) |
| 128 | { |
| 129 | return ubi->dbg.chk_fastmap; |
| 130 | } |
| 131 | |
| 132 | static inline void ubi_enable_dbg_chk_fastmap(struct ubi_device *ubi) |
| 133 | { |
| 134 | ubi->dbg.chk_fastmap = 1; |
| 135 | } |
| 136 | |
| 137 | int ubi_dbg_power_cut(struct ubi_device *ubi, int caller); |
Kyungmin Park | c880c53 | 2008-11-19 16:25:44 +0100 | [diff] [blame] | 138 | #endif /* !__UBI_DEBUG_H__ */ |