2 * Block Translation Table library
3 * Copyright (c) 2014-2015, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 #include <linux/badblocks.h>
19 #include <linux/types.h>
21 #define BTT_SIG_LEN 16
22 #define BTT_SIG "BTT_ARENA_INFO\0"
23 #define MAP_ENT_SIZE 4
24 #define MAP_TRIM_SHIFT 31
25 #define MAP_TRIM_MASK (1 << MAP_TRIM_SHIFT)
26 #define MAP_ERR_SHIFT 30
27 #define MAP_ERR_MASK (1 << MAP_ERR_SHIFT)
28 #define MAP_LBA_MASK (~((1 << MAP_TRIM_SHIFT) | (1 << MAP_ERR_SHIFT)))
29 #define MAP_ENT_NORMAL 0xC0000000
30 #define LOG_GRP_SIZE sizeof(struct log_group)
31 #define LOG_ENT_SIZE sizeof(struct log_entry)
32 #define ARENA_MIN_SIZE (1UL << 24) /* 16 MB */
33 #define ARENA_MAX_SIZE (1ULL << 39) /* 512 GB */
34 #define RTT_VALID (1UL << 31)
36 #define BTT_PG_SIZE 4096
37 #define BTT_DEFAULT_NFREE ND_MAX_LANES
38 #define LOG_SEQ_INIT 1
40 #define IB_FLAG_ERROR 0x00000001
41 #define IB_FLAG_ERROR_MASK 0x00000001
43 #define ent_lba(ent) (ent & MAP_LBA_MASK)
44 #define ent_e_flag(ent) (!!(ent & MAP_ERR_MASK))
45 #define ent_z_flag(ent) (!!(ent & MAP_TRIM_MASK))
46 #define set_e_flag(ent) (ent |= MAP_ERR_MASK)
55 * A log group represents one log 'lane', and consists of four log entries.
56 * Two of the four entries are valid entries, and the remaining two are
57 * padding. Due to an old bug in the padding location, we need to perform a
58 * test to determine the padding scheme being used, and use that scheme
61 * In kernels prior to 4.15, 'log group' would have actual log entries at
62 * indices (0, 2) and padding at indices (1, 3), where as the correct/updated
63 * format has log entries at indices (0, 1) and padding at indices (2, 3).
65 * Old (pre 4.15) format:
66 * +-----------------+-----------------+
69 * | lba/old/new/seq | pad |
70 * +-----------------------------------+
73 * | lba/old/new/seq | pad |
74 * +-----------------+-----------------+
77 * +-----------------+-----------------+
80 * | lba/old/new/seq | lba/old/new/seq |
81 * +-----------------------------------+
85 * +-----------------+-----------------+
87 * We detect during start-up which format is in use, and set
88 * arena->log_index[(0, 1)] with the detected format.
99 struct log_entry ent
[4];
103 u8 signature
[BTT_SIG_LEN
];
107 __le16 version_major
;
108 __le16 version_minor
;
109 __le32 external_lbasize
;
110 __le32 external_nlba
;
111 __le32 internal_lbasize
;
112 __le32 internal_nlba
;
131 struct aligned_lock
{
134 u8 cacheline_padding
[L1_CACHE_BYTES
];
139 * struct arena_info - handle for an arena
140 * @size: Size in bytes this arena occupies on the raw device.
141 * This includes arena metadata.
142 * @external_lba_start: The first external LBA in this arena.
143 * @internal_nlba: Number of internal blocks available in the arena
144 * including nfree reserved blocks
145 * @internal_lbasize: Internal and external lba sizes may be different as
146 * we can round up 'odd' external lbasizes such as 520B
148 * @external_nlba: Number of blocks contributed by the arena to the number
149 * reported to upper layers. (internal_nlba - nfree)
150 * @external_lbasize: LBA size as exposed to upper layers.
151 * @nfree: A reserve number of 'free' blocks that is used to
152 * handle incoming writes.
153 * @version_major: Metadata layout version major.
154 * @version_minor: Metadata layout version minor.
155 * @sector_size: The Linux sector size - 512 or 4096
156 * @nextoff: Offset in bytes to the start of the next arena.
157 * @infooff: Offset in bytes to the info block of this arena.
158 * @dataoff: Offset in bytes to the data area of this arena.
159 * @mapoff: Offset in bytes to the map area of this arena.
160 * @logoff: Offset in bytes to the log area of this arena.
161 * @info2off: Offset in bytes to the backup info block of this arena.
162 * @freelist: Pointer to in-memory list of free blocks
163 * @rtt: Pointer to in-memory "Read Tracking Table"
164 * @map_locks: Spinlocks protecting concurrent map writes
165 * @nd_btt: Pointer to parent nd_btt structure.
166 * @list: List head for list of arenas
167 * @debugfs_dir: Debugfs dentry
168 * @flags: Arena flags - may signify error states.
169 * @log_index: Indices of the valid log entries in a log_group
171 * arena_info is a per-arena handle. Once an arena is narrowed down for an
172 * IO, this struct is passed around for the duration of the IO.
175 u64 size
; /* Total bytes for this arena */
176 u64 external_lba_start
;
178 u32 internal_lbasize
;
180 u32 external_lbasize
;
185 /* Byte offsets to the different on-media structures */
192 /* Pointers to other in-memory structures for this arena */
193 struct free_entry
*freelist
;
195 struct aligned_lock
*map_locks
;
196 struct nd_btt
*nd_btt
;
197 struct list_head list
;
198 struct dentry
*debugfs_dir
;
201 struct mutex err_lock
;
206 * struct btt - handle for a BTT instance
207 * @btt_disk: Pointer to the gendisk for BTT device
208 * @btt_queue: Pointer to the request queue for the BTT device
209 * @arena_list: Head of the list of arenas
210 * @debugfs_dir: Debugfs dentry
211 * @nd_btt: Parent nd_btt struct
212 * @nlba: Number of logical blocks exposed to the upper layers
213 * after removing the amount of space needed by metadata
214 * @rawsize: Total size in bytes of the available backing device
215 * @lbasize: LBA size as requested and presented to upper layers.
216 * This is sector_size + size of any metadata.
217 * @sector_size: The Linux sector size - 512 or 4096
218 * @lanes: Per-lane spinlocks
219 * @init_lock: Mutex used for the BTT initialization
220 * @init_state: Flag describing the initialization state for the BTT
221 * @num_arenas: Number of arenas in the BTT instance
224 struct gendisk
*btt_disk
;
225 struct request_queue
*btt_queue
;
226 struct list_head arena_list
;
227 struct dentry
*debugfs_dir
;
228 struct nd_btt
*nd_btt
;
230 unsigned long long rawsize
;
233 struct nd_region
*nd_region
;
234 struct mutex init_lock
;
237 struct badblocks
*phys_bb
;
240 bool nd_btt_arena_is_valid(struct nd_btt
*nd_btt
, struct btt_sb
*super
);
241 int nd_btt_version(struct nd_btt
*nd_btt
, struct nd_namespace_common
*ndns
,
242 struct btt_sb
*btt_sb
);