1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_BADBLOCKS_H
3 #define _LINUX_BADBLOCKS_H
5 #include <linux/seqlock.h>
6 #include <linux/device.h>
7 #include <linux/kernel.h>
8 #include <linux/stddef.h>
9 #include <linux/types.h>
11 #define BB_LEN_MASK (0x00000000000001FFULL)
12 #define BB_OFFSET_MASK (0x7FFFFFFFFFFFFE00ULL)
13 #define BB_ACK_MASK (0x8000000000000000ULL)
14 #define BB_MAX_LEN 512
15 #define BB_OFFSET(x) (((x) & BB_OFFSET_MASK) >> 9)
16 #define BB_LEN(x) (((x) & BB_LEN_MASK) + 1)
17 #define BB_ACK(x) (!!((x) & BB_ACK_MASK))
18 #define BB_END(x) (BB_OFFSET(x) + BB_LEN(x))
19 #define BB_MAKE(a, l, ack) (((a)<<9) | ((l)-1) | ((u64)(!!(ack)) << 63))
21 /* Bad block numbers are stored sorted in a single page.
22 * 64bits is used for each block or extent.
23 * 54 bits are sector number, 9 bits are extent size,
24 * 1 bit is an 'acknowledged' flag.
26 #define MAX_BADBLOCKS (PAGE_SIZE/8)
29 struct device
*dev
; /* set by devm_init_badblocks */
30 int count
; /* count of bad blocks */
31 int unacked_exist
; /* there probably are unacknowledged
32 * bad blocks. This is only cleared
33 * when a read discovers none
35 int shift
; /* shift from sectors to block size
36 * a -ve shift means badblocks are
38 u64
*page
; /* badblock list */
42 sector_t size
; /* in sectors */
45 struct badblocks_context
{
51 int badblocks_check(struct badblocks
*bb
, sector_t s
, int sectors
,
52 sector_t
*first_bad
, int *bad_sectors
);
53 int badblocks_set(struct badblocks
*bb
, sector_t s
, int sectors
,
55 int badblocks_clear(struct badblocks
*bb
, sector_t s
, int sectors
);
56 void ack_all_badblocks(struct badblocks
*bb
);
57 ssize_t
badblocks_show(struct badblocks
*bb
, char *page
, int unack
);
58 ssize_t
badblocks_store(struct badblocks
*bb
, const char *page
, size_t len
,
60 int badblocks_init(struct badblocks
*bb
, int enable
);
61 void badblocks_exit(struct badblocks
*bb
);
63 int devm_init_badblocks(struct device
*dev
, struct badblocks
*bb
);
64 static inline void devm_exit_badblocks(struct device
*dev
, struct badblocks
*bb
)
67 dev_WARN_ONCE(dev
, 1, "%s: badblocks instance not associated\n",
74 static inline int badblocks_full(struct badblocks
*bb
)
76 return (bb
->count
>= MAX_BADBLOCKS
);
79 static inline int badblocks_empty(struct badblocks
*bb
)
81 return (bb
->count
== 0);
84 static inline void set_changed(struct badblocks
*bb
)
90 static inline void clear_changed(struct badblocks
*bb
)